From feed9154c0ccd8b42b46cc7ddcc65e46fb08eed4 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 23 Oct 2017 16:50:20 +0800 Subject: [PATCH 0001/1611] kbfs: normal users only --- nixos/modules/services/network-filesystems/kbfs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/network-filesystems/kbfs.nix b/nixos/modules/services/network-filesystems/kbfs.nix index 7b2eea3b585..263b70d04a5 100644 --- a/nixos/modules/services/network-filesystems/kbfs.nix +++ b/nixos/modules/services/network-filesystems/kbfs.nix @@ -48,6 +48,7 @@ in { requires = [ "keybase.service" ]; after = [ "keybase.service" ]; path = [ "/run/wrappers" ]; + unitConfig.ConditionUser = "!@system"; serviceConfig = { ExecStartPre = "${pkgs.coreutils}/bin/mkdir -p ${cfg.mountPoint}"; ExecStart = "${pkgs.kbfs}/bin/kbfsfuse ${toString cfg.extraFlags} ${cfg.mountPoint}"; From 8b846473be221e19275badab3d521692bc5207c3 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 23 Oct 2017 16:50:29 +0800 Subject: [PATCH 0002/1611] keybase: normal users only --- nixos/modules/services/networking/keybase.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/keybase.nix b/nixos/modules/services/networking/keybase.nix index 7c7982ee8ea..e656ce689de 100644 --- a/nixos/modules/services/networking/keybase.nix +++ b/nixos/modules/services/networking/keybase.nix @@ -26,6 +26,7 @@ in { systemd.user.services.keybase = { description = "Keybase service"; + unitConfig.ConditionUser = "!@system"; serviceConfig = { ExecStart = '' ${pkgs.keybase}/bin/keybase -d service --auto-forked From 0f04bbdc31f75031602d384adedb7292c720e44d Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 23 Oct 2017 16:54:00 +0800 Subject: [PATCH 0003/1611] ssh-agent: normal users only --- nixos/modules/programs/ssh.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index e0fbba897fa..775bf427645 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -202,6 +202,7 @@ in systemd.user.services.ssh-agent = mkIf cfg.startAgent { description = "SSH Agent"; wantedBy = [ "default.target" ]; + unitConfig.ConditionUser = "!@system"; serviceConfig = { ExecStartPre = "${pkgs.coreutils}/bin/rm -f %t/ssh-agent"; ExecStart = From f5752b30eaeb6c5d4eaec725ef7b0710ab9c6f64 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 25 Dec 2018 00:42:50 -0800 Subject: [PATCH 0004/1611] opencollada: 1.6.67 -> 1.6.68 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/opencollada/versions --- pkgs/development/libraries/opencollada/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/opencollada/default.nix b/pkgs/development/libraries/opencollada/default.nix index d3e1482feb4..cd3da4a7960 100644 --- a/pkgs/development/libraries/opencollada/default.nix +++ b/pkgs/development/libraries/opencollada/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "opencollada-${version}"; - version = "1.6.67"; + version = "1.6.68"; src = fetchFromGitHub { owner = "KhronosGroup"; repo = "OpenCOLLADA"; rev = "v${version}"; - sha256 = "0x1h2ns0y05bdvn3i5s600jz6nb8qw8qqgg54njz7833bcy913mj"; + sha256 = "1ym16fxx9qhf952vva71sdzgbm7ifis0h1n5fj1bfdj8zvvkbw5w"; }; nativeBuildInputs = [ pkgconfig ]; From c0d2f924590918b0176aaf1f84ccf372ce4f13c4 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Tue, 25 Dec 2018 20:35:43 +0100 Subject: [PATCH 0005/1611] cmake: use multiple outputs for GNUInstallDirs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CMake contains a module for more granular installation directories: https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html Let’s set the paths so that projects using the module can be more easily split into multiple outputs. --- .../tools/build-managers/cmake/setup-hook.sh | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh index f095103ee04..0df64bc34c8 100755 --- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh +++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh @@ -68,8 +68,20 @@ cmakeConfigurePhase() { # executable. This flag makes the shared library accessible from its # nix/store directory. cmakeFlags="-DCMAKE_INSTALL_NAME_DIR=${!outputLib}/lib $cmakeFlags" + + # This ensures correct paths with multiple output derivations + # It requires the project to use variables from GNUInstallDirs module + # https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html + cmakeFlags="-DCMAKE_INSTALL_BINDIR=${!outputBin}/bin $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_SBINDIR=${!outputBin}/sbin $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputInclude}/include $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_OLDINCLUDEDIR=${!outputInclude}/include $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_MANDIR=${!outputMan}/share/man $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_INFODIR=${!outputInfo}/share/info $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_DOCDIR=${!outputDoc}/share/doc/${shareDocName} $cmakeFlags" cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags" - cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_LIBEXECDIR=${!outputLib}/libexec $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_LOCALEDIR=${!outputLib}/share/locale $cmakeFlags" # Avoid cmake resetting the rpath of binaries, on make install # And build always Release, to ensure optimisation flags From 813c6d46641976befcfdfdb1bdaaf7a84bb34d03 Mon Sep 17 00:00:00 2001 From: Kirill Elagin Date: Sun, 6 Jan 2019 14:41:22 +0300 Subject: [PATCH 0006/1611] git, gitweb: Fix git-instaweb * Make the build system embed the correct path to gitweb into git-instaweb * Move gitweb fixups to the git expression, to make sure that gitweb used by git-instaweb is functional * This will increase the closure size of git, but only with perlSupport --- .../git-and-tools/git/default.nix | 17 ++++++++++++++--- .../git-and-tools/gitweb/default.nix | 13 +------------ 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 46e88b1e0fc..9c405d0aba8 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -14,6 +14,7 @@ , darwin , withLibsecret ? false , pkgconfig, glib, libsecret +, gzip # needed at runtime by gitweb.cgi }: assert sendEmailSupport -> perlSupport; @@ -22,6 +23,8 @@ assert svnSupport -> perlSupport; let version = "2.19.2"; svn = subversionClient.override { perlBindings = perlSupport; }; + + gitwebPerlLibs = with perlPackages; [ CGI HTMLParser CGIFast FCGI FCGIProcManager HTMLTagCloud ]; in stdenv.mkDerivation { @@ -84,6 +87,7 @@ stdenv.mkDerivation { makeFlags = [ "prefix=\${out}" + "gitwebdir=\${gitweb}" # put in separate package for simpler maintenance "SHELL_PATH=${stdenv.shell}" ] ++ (if perlSupport then ["PERL_PATH=${perlPackages.perl}/bin/perl"] else ["NO_PERL=1"]) @@ -169,9 +173,6 @@ stdenv.mkDerivation { # HTTP(s) transports for pushing ln -s $out/libexec/git-core/git-http-backend $out/bin/git-http-backend '' + stdenv.lib.optionalString perlSupport '' - # put in separate package for simpler maintenance - mv $out/share/gitweb $gitweb/ - # wrap perl commands makeWrapper "$out/share/git/contrib/credential/netrc/git-credential-netrc" $out/bin/git-credential-netrc \ --set PERL5LIB "$out/${perlPackages.perl.libPrefix}:${perlPackages.makePerlPath perlLibs}" @@ -185,6 +186,16 @@ stdenv.mkDerivation { --set GITPERLLIB "$out/${perlPackages.perl.libPrefix}:${perlPackages.makePerlPath perlLibs}" wrapProgram $out/libexec/git-core/git-cvsexportcommit \ --set GITPERLLIB "$out/${perlPackages.perl.libPrefix}:${perlPackages.makePerlPath perlLibs}" + + # gzip (and optionally bzip2, xz, zip) are runtime dependencies for + # gitweb.cgi, need to patch so that it's found + sed -i -e "s|'compressor' => \['gzip'|'compressor' => ['${gzip}/bin/gzip'|" \ + $gitweb/gitweb.cgi + # Give access to CGI.pm and friends (was removed from perl core in 5.22) + for p in ${stdenv.lib.concatStringsSep " " gitwebPerlLibs}; do + sed -i -e "/use CGI /i use lib \"$p/${perlPackages.perl.libPrefix}\";" \ + "$gitweb/gitweb.cgi" + done '' + (if svnSupport then '' diff --git a/pkgs/applications/version-management/git-and-tools/gitweb/default.nix b/pkgs/applications/version-management/git-and-tools/gitweb/default.nix index a98dd5bc586..f165fa6b05c 100644 --- a/pkgs/applications/version-management/git-and-tools/gitweb/default.nix +++ b/pkgs/applications/version-management/git-and-tools/gitweb/default.nix @@ -1,8 +1,7 @@ -{ stdenv, git, gzip, perlPackages, fetchFromGitHub +{ stdenv, git, fetchFromGitHub , gitwebTheme ? false }: let - gitwebPerlLibs = with perlPackages; [ CGI HTMLParser CGIFast FCGI FCGIProcManager HTMLTagCloud ]; gitwebThemeSrc = fetchFromGitHub { owner = "kogakure"; repo = "gitweb-theme"; @@ -18,16 +17,6 @@ in stdenv.mkDerivation { mkdir $out mv * $out - # gzip (and optionally bzip2, xz, zip) are runtime dependencies for - # gitweb.cgi, need to patch so that it's found - sed -i -e "s|'compressor' => \['gzip'|'compressor' => ['${gzip}/bin/gzip'|" \ - $out/gitweb.cgi - # Give access to CGI.pm and friends (was removed from perl core in 5.22) - for p in ${stdenv.lib.concatStringsSep " " gitwebPerlLibs}; do - sed -i -e "/use CGI /i use lib \"$p/${perlPackages.perl.libPrefix}\";" \ - "$out/gitweb.cgi" - done - ${stdenv.lib.optionalString gitwebTheme "cp ${gitwebThemeSrc}/* $out/static"} ''; From 047def418ee726a43b46bce6d93f26e2dd705cb4 Mon Sep 17 00:00:00 2001 From: Kirill Elagin Date: Sun, 6 Jan 2019 16:09:20 +0300 Subject: [PATCH 0007/1611] git: Do not split gitweb output This partially reverts 9029ed933c69287c64a30d40b6b4f9f1ace7dd94 as `git-instaweb`, which comes with git, needs on gitweb and having them in separate outputs results in a cycle. --- .../git-and-tools/git/default.nix | 7 +++--- .../git-and-tools/gitweb/default.nix | 23 ++++++++++--------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 9c405d0aba8..8be4dcc95c8 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { sha256 = "1scbggzghkzzfqg4ky3qh7h9w87c3zya4ls5disz7dbx56is7sgw"; }; - outputs = [ "out" ] ++ stdenv.lib.optional perlSupport "gitweb"; + outputs = [ "out" ]; hardeningDisable = [ "format" ]; @@ -87,7 +87,6 @@ stdenv.mkDerivation { makeFlags = [ "prefix=\${out}" - "gitwebdir=\${gitweb}" # put in separate package for simpler maintenance "SHELL_PATH=${stdenv.shell}" ] ++ (if perlSupport then ["PERL_PATH=${perlPackages.perl}/bin/perl"] else ["NO_PERL=1"]) @@ -190,11 +189,11 @@ stdenv.mkDerivation { # gzip (and optionally bzip2, xz, zip) are runtime dependencies for # gitweb.cgi, need to patch so that it's found sed -i -e "s|'compressor' => \['gzip'|'compressor' => ['${gzip}/bin/gzip'|" \ - $gitweb/gitweb.cgi + $out/share/gitweb/gitweb.cgi # Give access to CGI.pm and friends (was removed from perl core in 5.22) for p in ${stdenv.lib.concatStringsSep " " gitwebPerlLibs}; do sed -i -e "/use CGI /i use lib \"$p/${perlPackages.perl.libPrefix}\";" \ - "$gitweb/gitweb.cgi" + "$out/share/gitweb/gitweb.cgi" done '' diff --git a/pkgs/applications/version-management/git-and-tools/gitweb/default.nix b/pkgs/applications/version-management/git-and-tools/gitweb/default.nix index f165fa6b05c..afd90ba4969 100644 --- a/pkgs/applications/version-management/git-and-tools/gitweb/default.nix +++ b/pkgs/applications/version-management/git-and-tools/gitweb/default.nix @@ -1,4 +1,4 @@ -{ stdenv, git, fetchFromGitHub +{ stdenv, buildEnv, git, fetchFromGitHub , gitwebTheme ? false }: let @@ -6,19 +6,20 @@ let owner = "kogakure"; repo = "gitweb-theme"; rev = "049b88e664a359f8ec25dc6f531b7e2aa60dd1a2"; - sha256 = "0wksqma41z36dbv6w6iplkjfdm0ha3njp222fakyh4lismajr71p"; + extraPostFetch = '' + mkdir -p "$TMPDIR/gitwebTheme" + mv "$out"/* "$TMPDIR/gitwebTheme/" + mkdir "$out/static" + mv "$TMPDIR/gitwebTheme"/* "$out/static/" + ''; + sha256 = "17hypq6jvhy6zhh26lp3nyi52npfd5wy5752k6sq0shk4na2acqi"; }; -in stdenv.mkDerivation { +in buildEnv { name = "gitweb-${stdenv.lib.getVersion git}"; - src = git.gitweb; - - installPhase = '' - mkdir $out - mv * $out - - ${stdenv.lib.optionalString gitwebTheme "cp ${gitwebThemeSrc}/* $out/static"} - ''; + ignoreCollisions = true; + paths = stdenv.lib.optional gitwebTheme "${gitwebThemeSrc}" + ++ [ "${git}/share/gitweb" ]; meta = git.meta // { maintainers = with stdenv.lib.maintainers; [ gnidorah ]; From 0b059cc9561672215c178ccd02f97fd7bf2308f8 Mon Sep 17 00:00:00 2001 From: Florian Franzen Date: Sat, 9 Mar 2019 20:46:23 +0100 Subject: [PATCH 0008/1611] qtbase: Fix paths returned by qmake -query --- pkgs/development/libraries/qt-5/modules/qtbase.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index 92ac8a24201..b3d12fcea46 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -175,7 +175,7 @@ stdenv.mkDerivation { NIX_OUTPUT_BIN = $bin NIX_OUTPUT_DEV = $dev NIX_OUTPUT_OUT = $out - NIX_OUTPUT_DOC = $dev/$qtDocPrefix + NIX_OUTPUT_DOC = $out/$qtDocPrefix NIX_OUTPUT_QML = $bin/$qtQmlPrefix NIX_OUTPUT_PLUGIN = $bin/$qtPluginPrefix EOF @@ -376,6 +376,18 @@ stdenv.mkDerivation { moveToOutput bin "$dev" '' + # Fix paths returned by qmake -query + + '' + cat > $dev/bin/qt.conf < Date: Sun, 14 Apr 2019 11:30:26 +0300 Subject: [PATCH 0009/1611] treemacs-magit: needs git at build time --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index 6f15d33f78b..1eaa2aa7282 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -235,6 +235,12 @@ self: # upstream issue: missing file header textmate = markBroken super.textmate; + treemacs-magit = super.treemacs-magit.overrideAttrs (attrs: { + # searches for Git at build time + nativeBuildInputs = + (attrs.nativeBuildInputs or []) ++ [ external.git ]; + }); + # missing OCaml utop = markBroken super.utop; From dfd2fb6d190d7d1565acd676ee9656e77c740962 Mon Sep 17 00:00:00 2001 From: Ben Hamlin Date: Sat, 27 Apr 2019 19:08:23 -0700 Subject: [PATCH 0010/1611] evcxr: init at 0.3.3 --- maintainers/maintainer-list.nix | 5 + .../interpreters/evcxr/cargo-lock.patch | 830 ++++++++++++++++++ .../interpreters/evcxr/default.nix | 28 + pkgs/top-level/all-packages.nix | 2 + 4 files changed, 865 insertions(+) create mode 100644 pkgs/development/interpreters/evcxr/cargo-lock.patch create mode 100644 pkgs/development/interpreters/evcxr/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 4f6e9b1084f..8a639c6b798 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3900,6 +3900,11 @@ github = "proglodyte"; name = "Proglodyte"; }; + protoben = { + email = "protob3n@gmail.com"; + github = "protoben"; + name = "Ben Hamlin"; + }; prusnak = { email = "stick@gk2.sk"; github = "prusnak"; diff --git a/pkgs/development/interpreters/evcxr/cargo-lock.patch b/pkgs/development/interpreters/evcxr/cargo-lock.patch new file mode 100644 index 00000000000..55b03711a68 --- /dev/null +++ b/pkgs/development/interpreters/evcxr/cargo-lock.patch @@ -0,0 +1,830 @@ +diff --git a/Cargo.lock b/Cargo.lock +new file mode 100644 +index 0000000..ea69beb +--- /dev/null ++++ b/Cargo.lock +@@ -0,0 +1,824 @@ ++[[package]] ++name = "aho-corasick" ++version = "0.6.10" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "argon2rs" ++version = "0.2.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)", ++ "scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "arrayvec" ++version = "0.4.10" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "autocfg" ++version = "0.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "backtrace" ++version = "0.3.15" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "backtrace-sys" ++version = "0.1.28" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "base64" ++version = "0.10.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "bitflags" ++version = "1.0.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "blake2-rfc" ++version = "0.2.18" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", ++ "constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "block-buffer" ++version = "0.7.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "block-padding" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "byte-tools" ++version = "0.3.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "byteorder" ++version = "1.3.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "cc" ++version = "1.0.35" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "cfg-if" ++version = "0.1.7" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "chrono" ++version = "0.4.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", ++ "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ++ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "cloudabi" ++version = "0.0.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "colored" ++version = "1.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "constant_time_eq" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "crypto-mac" ++version = "0.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "digest" ++version = "0.8.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "dirs" ++version = "1.0.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "error-chain" ++version = "0.10.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "evcxr" ++version = "0.3.3" ++dependencies = [ ++ "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", ++ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "sig 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "evcxr_jupyter" ++version = "0.3.3" ++dependencies = [ ++ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ++ "colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "evcxr 0.3.3", ++ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)", ++ "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", ++ "zmq 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "evcxr_repl" ++version = "0.3.3" ++dependencies = [ ++ "colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "evcxr 0.3.3", ++ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rustyline 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "evcxr_runtime" ++version = "1.1.0" ++dependencies = [ ++ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "failure" ++version = "0.1.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", ++ "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "failure_derive" ++version = "0.1.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", ++ "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "fake-simd" ++version = "0.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "fuchsia-cprng" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "generic-array" ++version = "0.12.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "hex" ++version = "0.3.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "hmac" ++version = "0.7.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "json" ++version = "0.11.13" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "lazy_static" ++version = "1.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "libc" ++version = "0.2.51" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "libloading" ++version = "0.5.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "log" ++version = "0.3.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "log" ++version = "0.4.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "memchr" ++version = "2.2.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "metadeps" ++version = "1.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", ++ "toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "nix" ++version = "0.11.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "nodrop" ++version = "0.1.13" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "num-integer" ++version = "0.1.39" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "num-traits" ++version = "0.2.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "opaque-debug" ++version = "0.2.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "pkg-config" ++version = "0.3.14" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "proc-macro2" ++version = "0.4.27" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "quote" ++version = "0.6.12" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand" ++version = "0.6.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_chacha" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_core" ++version = "0.3.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_core" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "rand_hc" ++version = "0.1.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_isaac" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_jitter" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_os" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_pcg" ++version = "0.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand_xorshift" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rdrand" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "redox_syscall" ++version = "0.1.54" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "redox_users" ++version = "0.3.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "regex" ++version = "1.1.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", ++ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", ++ "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", ++ "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "regex-syntax" ++version = "0.6.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "remove_dir_all" ++version = "0.5.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rustc-demangle" ++version = "0.1.14" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "rustyline" ++version = "3.0.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", ++ "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "utf8parse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "scoped_threadpool" ++version = "0.1.9" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "sha2" ++version = "0.8.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "sig" ++version = "1.0.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "subtle" ++version = "1.0.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "syn" ++version = "0.15.27" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", ++ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "synstructure" ++version = "0.10.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", ++ "syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)", ++ "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "tempfile" ++version = "3.0.7" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", ++ "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "thread_local" ++version = "0.3.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "time" ++version = "0.1.42" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "toml" ++version = "0.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "typenum" ++version = "1.10.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "ucd-util" ++version = "0.1.3" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "unicode-segmentation" ++version = "1.2.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "unicode-width" ++version = "0.1.5" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "unicode-xid" ++version = "0.1.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "utf8-ranges" ++version = "1.0.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "utf8parse" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "uuid" ++version = "0.7.4" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "void" ++version = "1.0.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "winapi" ++version = "0.3.7" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "winapi-i686-pc-windows-gnu" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "winapi-x86_64-pc-windows-gnu" ++version = "0.4.0" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] ++name = "zmq" ++version = "0.8.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", ++ "zmq-sys 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "zmq-sys" ++version = "0.8.2" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "metadeps 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[metadata] ++"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" ++"checksum argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3f67b0b6a86dae6e67ff4ca2b6201396074996379fba2b92ff649126f37cb392" ++"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" ++"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" ++"checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637" ++"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" ++"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" ++"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" ++"checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" ++"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" ++"checksum block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d75255892aeb580d3c566f213a2b6fdc1c66667839f45719ee1d30ebf2aea591" ++"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" ++"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" ++"checksum cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83" ++"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" ++"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" ++"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" ++"checksum colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e9a455e156a4271e12fd0246238c380b1e223e3736663c7a18ed8b6362028a9" ++"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" ++"checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" ++"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c" ++"checksum dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" ++"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" ++"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" ++"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" ++"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" ++"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" ++"checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" ++"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" ++"checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" ++"checksum json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be" ++"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" ++"checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" ++"checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" ++"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" ++"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" ++"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" ++"checksum metadeps 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "73b122901b3a675fac8cecf68dcb2f0d3036193bc861d1ac0e1c337f7d5254c2" ++"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" ++"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" ++"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" ++"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" ++"checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" ++"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" ++"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" ++"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" ++"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" ++"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" ++"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" ++"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" ++"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" ++"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" ++"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" ++"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" ++"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" ++"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" ++"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" ++"checksum redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)" = "12229c14a0f65c4f1cb046a3b52047cdd9da1f4b30f8a39c5063c8bae515e252" ++"checksum redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3fe5204c3a17e97dde73f285d49be585df59ed84b50a872baf416e73b62c3828" ++"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" ++"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" ++"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" ++"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" ++"checksum rustyline 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb02ba7748691403057542ee60a1e7688fdfb46bd3bee752b8977537ee003ae2" ++"checksum scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" ++"checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" ++"checksum sig 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6567e29578f9bfade6a5d94a32b9a4256348358d2a3f448cab0021f9a02614a2" ++"checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" ++"checksum syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)" = "525bd55255f03c816e5d7f615587bd13030c7103354fadb104993dcee6a788ec" ++"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" ++"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" ++"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" ++"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" ++"checksum toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "736b60249cb25337bc196faa43ee12c705e426f3d55c214d73a4e7be06f92cb4" ++"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" ++"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" ++"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" ++"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" ++"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" ++"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" ++"checksum utf8parse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d" ++"checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" ++"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" ++"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" ++"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" ++"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" ++"checksum zmq 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e6e33f05ebc9a1cb360e5db1f8ed6e5512ece86aed271654b0f171d04c24c23" ++"checksum zmq-sys 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3cc251d25f3c6ffc54dfa3e8d808598825f8ccfee3a008dfc7866ffe325dcb3" diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix new file mode 100644 index 00000000000..5270922f387 --- /dev/null +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -0,0 +1,28 @@ +{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, zeromq }: + +rustPlatform.buildRustPackage rec { + name = "evcxr-${version}"; + version = "0.3.3"; + + src = fetchFromGitHub { + owner = "google"; + repo = "evcxr"; + rev = "ae07ccf08723b7aec0de57d540822b89088ca036"; + sha256 = "1apc93z9vvf6qks5x2pad45rnrj9kjl812rj78w5zmmizccp2fhf"; + }; + + cargoSha256 = "1pvw1jfi4p0cla4xxzgxh1jskvbmsyi4l5cimiis7093hyjs0svw"; + cargoPatches = [ ./cargo-lock.patch ]; + + nativeBuildInputs = [ pkgconfig zeromq ]; + buildInputs = [ cargo makeWrapper ]; + postInstall = "wrapProgram $out/bin/evcxr --prefix PATH : ${cargo}/bin"; + + meta = { + description = "An evaluation context for Rust, including a CLI REPL and a Jupyter kernel"; + homepage = "https://github.com/google/evcxr"; + license = stdenv.lib.licenses.asl20; + maintainers = [ stdenv.lib.maintainers.protoben ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 904fc2a01a7..f3ee9ec71f6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8031,6 +8031,8 @@ in duktape = callPackage ../development/interpreters/duktape { }; + evcxr = callPackage ../development/interpreters/evcxr { }; + beam = callPackage ./beam-packages.nix { }; inherit (beam.interpreters) From 8ae2212da3e02eb9e3bf6e71ca1bf0d2d8177f07 Mon Sep 17 00:00:00 2001 From: Ben Hamlin Date: Fri, 3 May 2019 10:06:43 -0700 Subject: [PATCH 0011/1611] evcxr: makeWrapper -> nativeBuildInputs and omit Jupyter kernel The Jupyter kernel should be its own package. Omitting it and its dependencies here. --- .../interpreters/evcxr/cargo-lock.patch | 328 +++++------------- .../interpreters/evcxr/default.nix | 15 +- 2 files changed, 100 insertions(+), 243 deletions(-) diff --git a/pkgs/development/interpreters/evcxr/cargo-lock.patch b/pkgs/development/interpreters/evcxr/cargo-lock.patch index 55b03711a68..6feaf12844c 100644 --- a/pkgs/development/interpreters/evcxr/cargo-lock.patch +++ b/pkgs/development/interpreters/evcxr/cargo-lock.patch @@ -1,9 +1,11 @@ diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 -index 0000000..ea69beb +index 0000000..edf585d --- /dev/null +++ b/Cargo.lock -@@ -0,0 +1,824 @@ +@@ -0,0 +1,661 @@ ++# This file is automatically @generated by Cargo. ++# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.6.10" @@ -13,6 +15,11 @@ index 0000000..ea69beb +] + +[[package]] ++name = "approx" ++version = "0.1.1" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] +name = "argon2rs" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -42,7 +49,7 @@ index 0000000..ea69beb + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] @@ -52,8 +59,8 @@ index 0000000..ea69beb +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] @@ -66,7 +73,7 @@ index 0000000..ea69beb + +[[package]] +name = "bitflags" -+version = "1.0.4" ++version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] @@ -79,37 +86,13 @@ index 0000000..ea69beb +] + +[[package]] -+name = "block-buffer" -+version = "0.7.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", -+ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -+ "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -+ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "block-padding" -+version = "0.1.3" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "byte-tools" -+version = "0.3.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "byteorder" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cc" -+version = "1.0.35" ++version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] @@ -118,13 +101,13 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "chrono" -+version = "0.4.6" ++name = "cgmath" ++version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", -+ "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", -+ "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", ++ "approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] @@ -132,15 +115,16 @@ index 0000000..ea69beb +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", ++ "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "colored" -+version = "1.7.0" ++version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] @@ -149,38 +133,16 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "crypto-mac" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "digest" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "dirs" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_users 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] -+name = "error-chain" -+version = "0.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "evcxr" +version = "0.3.3" +dependencies = [ @@ -188,7 +150,7 @@ index 0000000..ea69beb + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -199,27 +161,10 @@ index 0000000..ea69beb +] + +[[package]] -+name = "evcxr_jupyter" -+version = "0.3.3" -+dependencies = [ -+ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", -+ "colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", -+ "evcxr 0.3.3", -+ "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", -+ "hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", -+ "hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)", -+ "sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", -+ "zmq 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "evcxr_repl" +version = "0.3.3" +dependencies = [ -+ "colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "evcxr 0.3.3", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", @@ -256,38 +201,11 @@ index 0000000..ea69beb +] + +[[package]] -+name = "fake-simd" -+version = "0.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "generic-array" -+version = "0.12.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "hex" -+version = "0.3.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] -+name = "hmac" -+version = "0.7.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "json" +version = "0.11.13" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -299,7 +217,7 @@ index 0000000..ea69beb + +[[package]] +name = "libc" -+version = "0.2.51" ++version = "0.2.54" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] @@ -307,20 +225,12 @@ index 0000000..ea69beb +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" -+version = "0.3.9" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ @@ -333,24 +243,14 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "metadeps" -+version = "1.1.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", -+ "toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -+ "cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)", ++ "bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + @@ -360,8 +260,8 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "num-integer" -+version = "0.1.39" ++name = "num-traits" ++version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", @@ -373,16 +273,6 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "opaque-debug" -+version = "0.2.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] -+name = "pkg-config" -+version = "0.3.14" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "proc-macro2" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -400,16 +290,28 @@ index 0000000..ea69beb + +[[package]] +name = "rand" ++version = "0.4.6" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++dependencies = [ ++ "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", ++] ++ ++[[package]] ++name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -+ "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -456,10 +358,10 @@ index 0000000..ea69beb + +[[package]] +name = "rand_jitter" -+version = "0.1.3" ++version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] @@ -471,7 +373,7 @@ index 0000000..ea69beb +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", @@ -547,6 +449,11 @@ index 0000000..ea69beb +] + +[[package]] ++name = "rgb" ++version = "0.8.13" ++source = "registry+https://github.com/rust-lang/crates.io-index" ++ ++[[package]] +name = "rustc-demangle" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -557,7 +464,7 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -573,30 +480,14 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "sha2" -+version = "0.8.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", -+ "digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", -+ "fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -+ "opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "sig" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] -+name = "subtle" -+version = "1.0.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "syn" +version = "0.15.27" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -623,7 +514,7 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", ++ "libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -639,26 +530,6 @@ index 0000000..ea69beb +] + +[[package]] -+name = "time" -+version = "0.1.42" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", -+ "redox_syscall 0.1.54 (registry+https://github.com/rust-lang/crates.io-index)", -+ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "toml" -+version = "0.2.1" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] -+name = "typenum" -+version = "1.10.0" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+ -+[[package]] +name = "ucd-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -689,14 +560,6 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "uuid" -+version = "0.7.4" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" @@ -721,78 +584,58 @@ index 0000000..ea69beb +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] -+name = "zmq" -+version = "0.8.2" ++name = "winconsole" ++version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", -+ "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", -+ "zmq-sys 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", -+] -+ -+[[package]] -+name = "zmq-sys" -+version = "0.8.2" -+source = "registry+https://github.com/rust-lang/crates.io-index" -+dependencies = [ -+ "libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)", -+ "metadeps 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ++ "rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)", ++ "winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" ++"checksum approx 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "08abcc3b4e9339e33a3d0a5ed15d84a687350c05689d825e0f6655eef9e76a94" +"checksum argon2rs 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3f67b0b6a86dae6e67ff4ca2b6201396074996379fba2b92ff649126f37cb392" +"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" +"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" +"checksum backtrace 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "f106c02a3604afcdc0df5d36cc47b44b55917dbaf3d808f71c163a0ddba64637" +"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" -+"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" ++"checksum bitflags 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bd1fa8ad26490b0a5cfec99089952250301b6716cdeaa7c9ab229598fb82ab66" +"checksum blake2-rfc 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6d530bdd2d52966a6d03b7a964add7ae1a288d25214066fd4b600f0f796400" -+"checksum block-buffer 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" -+"checksum block-padding 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d75255892aeb580d3c566f213a2b6fdc1c66667839f45719ee1d30ebf2aea591" -+"checksum byte-tools 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" +"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" -+"checksum cc 1.0.35 (registry+https://github.com/rust-lang/crates.io-index)" = "5e5f3fee5eeb60324c2781f1e41286bdee933850fff9b3c672587fed5ec58c83" ++"checksum cc 1.0.36 (registry+https://github.com/rust-lang/crates.io-index)" = "a0c56216487bb80eec9c4516337b2588a4f2a2290d72a1416d930e4dcdb0c90d" +"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" -+"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" ++"checksum cgmath 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)" = "64a4b57c8f4e3a2e9ac07e0f6abc9c24b6fc9e1b54c3478cfb598f3d0023e51c" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" -+"checksum colored 1.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e9a455e156a4271e12fd0246238c380b1e223e3736663c7a18ed8b6362028a9" ++"checksum colored 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6cdb90b60f2927f8d76139c72dbde7e10c3a2bc47c8594c9c7a66529f2687c03" +"checksum constant_time_eq 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "8ff012e225ce166d4422e0e78419d901719760f62ae2b7969ca6b564d1b54a9e" -+"checksum crypto-mac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4434400df11d95d556bac068ddfedd482915eb18fe8bea89bc80b6e4b1c179e5" -+"checksum digest 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05f47366984d3ad862010e22c7ce81a7dbcaebbdfb37241a620f8b6596ee135c" +"checksum dirs 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901" -+"checksum error-chain 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9435d864e017c3c6afeac1654189b06cdb491cf2ff73dbf0d73b0f292f42ff8" +"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" +"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" -+"checksum fake-simd 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" -+"checksum generic-array 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3c0f28c2f5bfb5960175af447a2da7c18900693738343dc896ffbcabd9839592" -+"checksum hex 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77" -+"checksum hmac 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f127a908633569f208325f86f71255d3363c79721d7f9fe31cd5569908819771" +"checksum json 0.11.13 (registry+https://github.com/rust-lang/crates.io-index)" = "9ad0485404155f45cce53a40d4b2d6ac356418300daed05273d9e26f91c390be" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" -+"checksum libc 0.2.51 (registry+https://github.com/rust-lang/crates.io-index)" = "bedcc7a809076656486ffe045abeeac163da1b558e963a31e29fbfbeba916917" ++"checksum libc 0.2.54 (registry+https://github.com/rust-lang/crates.io-index)" = "c6785aa7dd976f5fbf3b71cfd9cd49d7f783c1ff565a858d71031c6c313aa5c6" +"checksum libloading 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9c3ad660d7cb8c5822cd83d10897b0f1f1526792737a179e73896152f85b88c2" -+"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" -+"checksum metadeps 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "73b122901b3a675fac8cecf68dcb2f0d3036193bc861d1ac0e1c337f7d5254c2" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" -+"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" ++"checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" +"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" -+"checksum opaque-debug 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "93f5bb2e8e8dec81642920ccff6b61f1eb94fa3020c5a325c9851ff604152409" -+"checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" +"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" +"checksum quote 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "faf4799c5d274f3868a4aae320a0a182cbd2baee377b378f080e16a23e9d80db" ++"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" -+"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" ++"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" @@ -802,29 +645,40 @@ index 0000000..ea69beb +"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" +"checksum regex-syntax 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "dcfd8681eebe297b81d98498869d4aae052137651ad7b96822f09ceb690d0a96" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" ++"checksum rgb 0.8.13 (registry+https://github.com/rust-lang/crates.io-index)" = "4f089652ca87f5a82a62935ec6172a534066c7b97be003cc8f702ee9a7a59c92" +"checksum rustc-demangle 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = "ccc78bfd5acd7bf3e89cffcf899e5cb1a52d6fafa8dec2739ad70c9577a57288" +"checksum rustyline 3.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "eb02ba7748691403057542ee60a1e7688fdfb46bd3bee752b8977537ee003ae2" +"checksum scoped_threadpool 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8" -+"checksum sha2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b4d8bfd0e469f417657573d8451fb33d16cfe0989359b93baf3a1ffc639543d" +"checksum sig 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6567e29578f9bfade6a5d94a32b9a4256348358d2a3f448cab0021f9a02614a2" -+"checksum subtle 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2d67a5a62ba6e01cb2192ff309324cb4875d0c451d55fe2319433abe7a05a8ee" +"checksum syn 0.15.27 (registry+https://github.com/rust-lang/crates.io-index)" = "525bd55255f03c816e5d7f615587bd13030c7103354fadb104993dcee6a788ec" +"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" -+"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" -+"checksum toml 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "736b60249cb25337bc196faa43ee12c705e426f3d55c214d73a4e7be06f92cb4" -+"checksum typenum 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169" +"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" +"checksum unicode-segmentation 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "aa6024fc12ddfd1c6dbc14a80fa2324d4568849869b779f6bd37e5e4c03344d1" +"checksum unicode-width 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "882386231c45df4700b275c7ff55b6f3698780a650026380e72dabe76fa46526" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum utf8parse 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d" -+"checksum uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)" = "90dbc611eb48397705a6b0f6e917da23ae517e4d127123d2cf7674206627d32a" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum winapi 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "f10e386af2b13e47c89e7236a7a14a086791a2b88ebad6df9bf42040195cf770" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" -+"checksum zmq 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3e6e33f05ebc9a1cb360e5db1f8ed6e5512ece86aed271654b0f171d04c24c23" -+"checksum zmq-sys 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3cc251d25f3c6ffc54dfa3e8d808598825f8ccfee3a008dfc7866ffe325dcb3" ++"checksum winconsole 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ef84b96d10db72dd980056666d7f1e7663ce93d82fa33b63e71c966f4cf5032" +diff --git a/Cargo.toml b/Cargo.toml +index d09a342..5377ed0 100644 +--- a/Cargo.toml ++++ b/Cargo.toml +@@ -2,10 +2,9 @@ + members = [ + "evcxr", + "evcxr_repl", +- "evcxr_jupyter", + "evcxr_runtime", + ] + + exclude = [ + "runtimes" +-] +\ No newline at end of file ++] diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix index 5270922f387..3a517cb03be 100644 --- a/pkgs/development/interpreters/evcxr/default.nix +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -1,4 +1,4 @@ -{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, zeromq }: +{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv }: rustPlatform.buildRustPackage rec { name = "evcxr-${version}"; @@ -11,15 +11,18 @@ rustPlatform.buildRustPackage rec { sha256 = "1apc93z9vvf6qks5x2pad45rnrj9kjl812rj78w5zmmizccp2fhf"; }; - cargoSha256 = "1pvw1jfi4p0cla4xxzgxh1jskvbmsyi4l5cimiis7093hyjs0svw"; + cargoSha256 = "0bd6yna8yyrqjv4w7qr2923nljbjjlbkyad6vjlgfp33yn2pz1iv"; cargoPatches = [ ./cargo-lock.patch ]; - nativeBuildInputs = [ pkgconfig zeromq ]; - buildInputs = [ cargo makeWrapper ]; - postInstall = "wrapProgram $out/bin/evcxr --prefix PATH : ${cargo}/bin"; + nativeBuildInputs = [ pkgconfig makeWrapper ]; + buildInputs = [ cargo ]; + postInstall = '' + wrapProgram $out/bin/evcxr --prefix PATH : ${cargo}/bin + rm $out/bin/testing_runtime + ''; meta = { - description = "An evaluation context for Rust, including a CLI REPL and a Jupyter kernel"; + description = "An evaluation context for Rust"; homepage = "https://github.com/google/evcxr"; license = stdenv.lib.licenses.asl20; maintainers = [ stdenv.lib.maintainers.protoben ]; From 517c52ec2e6d55553cee8df6fefda6d0cb022c41 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 2 Aug 2018 21:20:21 +0200 Subject: [PATCH 0012/1611] postgresql: always create the $out/bin directory This is needed because some PostgreSQL plugins don't have a bin directory. If only these plugins are listed in cfg.extraPlugins buildEnv will turn $out/bin into a symbolic link to ${pg}/bin. Lateron we try to rm $out/bin/{pg_config,postgres,pg_ctl} which will then fail because $out/bin will be read-only. --- nixos/modules/services/databases/postgresql.nix | 5 ++++- pkgs/servers/sql/postgresql/ext/pg_cron.nix | 1 - pkgs/servers/sql/postgresql/ext/pg_similarity.nix | 1 - pkgs/servers/sql/postgresql/ext/pgjwt.nix | 1 - pkgs/servers/sql/postgresql/ext/pgroonga.nix | 1 - pkgs/servers/sql/postgresql/ext/pgrouting.nix | 1 - pkgs/servers/sql/postgresql/ext/plv8.nix | 1 - pkgs/servers/sql/postgresql/ext/timescaledb.nix | 7 ------- pkgs/servers/sql/postgresql/ext/tsearch_extras.nix | 1 - 9 files changed, 4 insertions(+), 15 deletions(-) diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix index 87b236dd5fd..197932c2f6c 100644 --- a/nixos/modules/services/databases/postgresql.nix +++ b/nixos/modules/services/databases/postgresql.nix @@ -12,10 +12,13 @@ let else pkgs.buildEnv { name = "postgresql-and-plugins-${(builtins.parseDrvName pg.name).version}"; paths = [ pg pg.lib ] ++ cfg.extraPlugins; + # We include /bin to ensure the $out/bin directory is created which is + # needed because we'll be removing files from that directory in postBuild + # below. See #22653 + pathsToLink = [ "/" "/bin" ]; buildInputs = [ pkgs.makeWrapper ]; postBuild = '' - mkdir -p $out/bin rm $out/bin/{pg_config,postgres,pg_ctl} cp --target-directory=$out/bin ${pg}/bin/{postgres,pg_config,pg_ctl} wrapProgram $out/bin/postgres --set NIX_PGLIBDIR $out/lib diff --git a/pkgs/servers/sql/postgresql/ext/pg_cron.nix b/pkgs/servers/sql/postgresql/ext/pg_cron.nix index 494e6dbac4f..8a31d198129 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_cron.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_cron.nix @@ -14,7 +14,6 @@ stdenv.mkDerivation rec { }; installPhase = '' - mkdir -p $out/bin # For buildEnv to setup proper symlinks. See #22653 mkdir -p $out/{lib,share/extension} cp *.so $out/lib diff --git a/pkgs/servers/sql/postgresql/ext/pg_similarity.nix b/pkgs/servers/sql/postgresql/ext/pg_similarity.nix index 32945c9fa62..aa204eec5a6 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_similarity.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_similarity.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation { buildInputs = [ postgresql gcc ]; buildPhase = "USE_PGXS=1 make"; installPhase = '' - mkdir -p $out/bin # for buildEnv to setup proper symlinks install -D pg_similarity.so -t $out/lib/ install -D ./{pg_similarity--unpackaged--1.0.sql,pg_similarity--1.0.sql,pg_similarity.control} -t $out/share/extension ''; diff --git a/pkgs/servers/sql/postgresql/ext/pgjwt.nix b/pkgs/servers/sql/postgresql/ext/pgjwt.nix index ab7ba8943a7..3185e226574 100644 --- a/pkgs/servers/sql/postgresql/ext/pgjwt.nix +++ b/pkgs/servers/sql/postgresql/ext/pgjwt.nix @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { buildPhase = ":"; installPhase = '' - mkdir -p $out/bin # current postgresql extension mechanism in nixos requires bin directory mkdir -p $out/share/extension cp pg*sql *.control $out/share/extension ''; diff --git a/pkgs/servers/sql/postgresql/ext/pgroonga.nix b/pkgs/servers/sql/postgresql/ext/pgroonga.nix index 2fc190d8e00..c07153e1971 100644 --- a/pkgs/servers/sql/postgresql/ext/pgroonga.nix +++ b/pkgs/servers/sql/postgresql/ext/pgroonga.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { makeFlags = [ "HAVE_MSGPACK=1" ]; installPhase = '' - mkdir -p $out/bin install -D pgroonga.so -t $out/lib/ install -D ./{pgroonga-*.sql,pgroonga.control} -t $out/share/extension ''; diff --git a/pkgs/servers/sql/postgresql/ext/pgrouting.nix b/pkgs/servers/sql/postgresql/ext/pgrouting.nix index 722c70b2e89..bdb3fcae3dc 100644 --- a/pkgs/servers/sql/postgresql/ext/pgrouting.nix +++ b/pkgs/servers/sql/postgresql/ext/pgrouting.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { }; installPhase = '' - mkdir -p $out/bin # for buildEnv, see https://github.com/NixOS/nixpkgs/issues/22653 install -D lib/*.so -t $out/lib install -D sql/pgrouting--${version}.sql -t $out/share/extension install -D sql/common/pgrouting.control -t $out/share/extension diff --git a/pkgs/servers/sql/postgresql/ext/plv8.nix b/pkgs/servers/sql/postgresql/ext/plv8.nix index b6446f292c6..603349d9d65 100644 --- a/pkgs/servers/sql/postgresql/ext/plv8.nix +++ b/pkgs/servers/sql/postgresql/ext/plv8.nix @@ -23,7 +23,6 @@ stdenv.mkDerivation rec { buildPhase = "make -f Makefile.shared all"; installPhase = '' - mkdir -p $out/bin install -D plv8*.so -t $out/lib install -D {plls,plcoffee,plv8}{--${version}.sql,.control} -t $out/share/extension ''; diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix index 9a664bc2518..d6986f936bb 100644 --- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix +++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix @@ -34,13 +34,6 @@ stdenv.mkDerivation rec { done ''; - postInstall = '' - # work around an annoying bug, by creating $out/bin, so buildEnv doesn't freak out later - # see https://github.com/NixOS/nixpkgs/issues/22653 - - mkdir -p $out/bin - ''; - meta = with stdenv.lib; { description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space"; homepage = https://www.timescale.com/; diff --git a/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix b/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix index b43a9c51be0..8b9e9322b47 100644 --- a/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix +++ b/pkgs/servers/sql/postgresql/ext/tsearch_extras.nix @@ -15,7 +15,6 @@ stdenv.mkDerivation rec { buildInputs = [ postgresql ]; installPhase = '' - mkdir -p $out/bin install -D tsearch_extras.so -t $out/lib/ install -D ./{tsearch_extras--1.0.sql,tsearch_extras.control} -t $out/share/extension ''; From 482d0c7bf40628c9bff8c3e219b8eb33e39d9935 Mon Sep 17 00:00:00 2001 From: hlolli Date: Tue, 14 May 2019 16:13:31 +0200 Subject: [PATCH 0013/1611] graalvm: rc15->19.0.0 --- .../compilers/graalvm/001_mx.py.patch | 24 ++++---- .../development/compilers/graalvm/default.nix | 57 ++++++++++++------- 2 files changed, 49 insertions(+), 32 deletions(-) diff --git a/pkgs/development/compilers/graalvm/001_mx.py.patch b/pkgs/development/compilers/graalvm/001_mx.py.patch index 25a9efa9641..a87a030aa39 100644 --- a/pkgs/development/compilers/graalvm/001_mx.py.patch +++ b/pkgs/development/compilers/graalvm/001_mx.py.patch @@ -1,8 +1,8 @@ diff --git a/mx.py b/mx.py -index d119b62..471fe98 100644 +index af7a9c2..08c0ea8 100755 --- a/mx.py +++ b/mx.py -@@ -4961,30 +4961,6 @@ class PackedResourceLibrary(ResourceLibrary): +@@ -4976,30 +4976,6 @@ class PackedResourceLibrary(ResourceLibrary): def get_path(self, resolve): extract_path = _make_absolute(self.extract_path, self.suite.dir) @@ -33,7 +33,7 @@ index d119b62..471fe98 100644 return extract_path def _check_download_needed(self): -@@ -5885,7 +5861,7 @@ class HgConfig(VC): +@@ -5900,7 +5876,7 @@ class HgConfig(VC): def update_to_branch(self, vcdir, branch, abortOnError=True): cmd = ['update', branch] @@ -42,7 +42,7 @@ index d119b62..471fe98 100644 def add(self, vcdir, path, abortOnError=True): return self.run(['hg', '-q', '-R', vcdir, 'add', path]) == 0 -@@ -5922,7 +5898,7 @@ class HgConfig(VC): +@@ -5937,7 +5913,7 @@ class HgConfig(VC): return None def parent_info(self, vcdir, abortOnError=True): @@ -51,7 +51,7 @@ index d119b62..471fe98 100644 author, date = out.split("|||") ts, _ = date.split(" ") return self._sanitize_parent_info({ -@@ -8287,46 +8263,8 @@ class SuiteImport: +@@ -8301,46 +8277,8 @@ class SuiteImport: version = import_dict.get("version") suite_dir = None version_from = import_dict.get("versionFrom") @@ -100,7 +100,7 @@ index d119b62..471fe98 100644 @staticmethod def get_source_urls(source, kind=None): -@@ -8367,8 +8305,6 @@ class Suite(object): +@@ -8381,8 +8319,6 @@ class Suite(object): :type dists: list[Distribution] """ def __init__(self, mxDir, primary, internal, importing_suite, load, vc, vc_dir, dynamicallyImported=False): @@ -109,7 +109,7 @@ index d119b62..471fe98 100644 self.imported_by = [] if primary else [importing_suite] self.mxDir = mxDir self.dir = dirname(mxDir) -@@ -8396,7 +8332,7 @@ class Suite(object): +@@ -8410,7 +8346,7 @@ class Suite(object): self._outputRoot = None self._preloaded_suite_dict = None self.vc = vc @@ -118,7 +118,7 @@ index d119b62..471fe98 100644 self._preload_suite_dict() self._init_imports() if load: -@@ -9295,7 +9231,9 @@ def get_dynamic_imports(): +@@ -9310,7 +9246,9 @@ def get_dynamic_imports(): class SourceSuite(Suite): """A source suite""" def __init__(self, mxDir, primary=False, load=True, internal=False, importing_suite=None, dynamicallyImported=False): @@ -129,7 +129,7 @@ index d119b62..471fe98 100644 Suite.__init__(self, mxDir, primary, internal, importing_suite, load, vc, vc_dir, dynamicallyImported=dynamicallyImported) logvv("SourceSuite.__init__({}), got vc={}, vc_dir={}".format(mxDir, self.vc, self.vc_dir)) self.projects = [] -@@ -9344,17 +9282,7 @@ class SourceSuite(Suite): +@@ -9359,17 +9297,7 @@ class SourceSuite(Suite): """ Gets the release tag from VC or create a time based once if VC is unavailable """ @@ -148,7 +148,7 @@ index d119b62..471fe98 100644 def scm_metadata(self, abortOnError=False): scm = self.scm -@@ -12526,55 +12454,8 @@ def _attempt_download(url, path, jarEntryName=None): +@@ -12541,55 +12469,8 @@ def _attempt_download(url, path, jarEntryName=None): return False def download(path, urls, verbose=False, abortOnError=True, verifyOnly=False): @@ -206,7 +206,7 @@ index d119b62..471fe98 100644 def update_file(path, content, showDiff=False): """ -@@ -13378,6 +13259,7 @@ class Archiver(SafeFileCreation): +@@ -13393,6 +13274,7 @@ class Archiver(SafeFileCreation): def _add_zip(self, filename, archive_name, provenance): self._add_provenance(archive_name, provenance) @@ -214,7 +214,7 @@ index d119b62..471fe98 100644 self.zf.write(filename, archive_name) def _add_str_zip(self, data, archive_name, provenance): -@@ -18526,12 +18408,35 @@ def _find_suite_import(importing_suite, suite_import, fatalIfMissing=True, load= +@@ -18541,12 +18423,35 @@ def _find_suite_import(importing_suite, suite_import, fatalIfMissing=True, load= Attempts to locate an existing suite in the local context Returns the path to the mx.name dir if found else None """ diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 3cb0d7430ab..b343e20e55f 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -1,10 +1,10 @@ { stdenv, lib, fetchFromGitHub, fetchurl, fetchzip, fetchgit, mercurial, python27, - zlib, makeWrapper, openjdk, unzip, git, clang, llvm, which, icu, ruby, bzip2 + zlib, makeWrapper, openjdk, unzip, git, clang, llvm, which, icu, ruby, bzip2, glibc # gfortran, readline, bzip2, lzma, pcre, curl, ed, tree ## WIP: fastr deps }: let - version = "1.0.0-rc15"; + version = "19.0.0"; truffleMake = ./truffle.make; R = fetchurl { url = "http://cran.rstudio.com/src/base/R-3/R-3.5.1.tar.gz"; @@ -36,7 +36,7 @@ let hg checkout ${lib.escapeShellArg "vm${version}"} ''; - # pre-download some cache entries ('mx' will not be able to download under nixbld1) + # pre-download some cache entries ('mx' will not be able to download under nixbld) makeMxCache = list: stdenv.mkDerivation { name = "mx-cache"; @@ -118,8 +118,8 @@ let rec { sha1 = "280c265b789e041c02e5c97815793dfc283fb1e6"; name = "LIBFFI_SOURCES_${sha1}/libffi-sources.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/libffi-3.2.1.tar.gz; } rec { sha1 = "8819cea8bfe22c9c63f55465e296b3855ea41786"; name = "TruffleJSON_${sha1}/trufflejson.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/trufflejson-20180130.jar; } rec { sha1 = "9712a8124c40298015f04a74f61b3d81a51513af"; name = "CHECKSTYLE_8.8_${sha1}/checkstyle-8.8.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/checkstyle-8.8-all.jar; } - rec { sha1 = "5a5574f03b58465226166a638641a384b9f44445"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-655.tar.gz; } - rec { sha1 = "64f07398bac9897e9b8123edeaf5cf9ff19517b5"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-655-linux-amd64.tar.gz; } + rec { sha1 = "aee7dd2a9663701df57a96e501b9219a7c90cbc3"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-670.tar.gz; } + rec { sha1 = "e607a0c40716f4a232de3726ab101f5c54798cfa"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-670-linux-amd64.tar.gz; } rec { sha1 = "e6e60889b7211a80b21052a249bd7e0f88f79fee"; name = "Java-WebSocket_${sha1}/java-websocket.jar"; url = mirror://maven/org/java-websocket/Java-WebSocket/1.3.9/Java-WebSocket-1.3.9.jar; } rec { sha1 = "7a4d00d5ec5febd252a6182e8b6e87a0a9821f81"; name = "ICU4J_${sha1}/icu4j.jar"; url = mirror://maven/com/ibm/icu/icu4j/62.1/icu4j-62.1.jar; } # This duplication of asm with underscore and minus is totally weird @@ -149,14 +149,14 @@ let ]; graal-mxcachegit = [ - { sha256 = "0siryzvmj9h8zkyr0d3gy9fqgyxb9s5xs15rf7lnx9zh3ykq549y"; name = "graaljs"; - url = "http://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } - { sha256 = "1ii3mwa0c2zk9vm51hyrymdz3whfihm6sccd2r5ja2v53jcdc1a3"; name = "truffleruby"; + { sha256 = "0idc2jn69pyrj2xivisrc8p59zd49jbz67476j8z3rfaf0hqnr3z"; name = "graaljs"; + url = "http://github.com/graalvm/graaljs.git"; rev = "fd578bf87e2bbf668482d4928603bdc63b9a0d97"; } + { sha256 = "1zyaaygzd8fc1a1684h75h21k8rs2rnhkr5y217wlazyd78j65nr"; name = "truffleruby"; url = "http://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } - { sha256 = "1nz8yqg2k9shpmhj3jv7k2icfg72cm55baf354rsh1pqanay8qb7"; name = "fastr"; + { sha256 = "0kyzx5y2kag08m9vla5x117al9ijs10783qpnv8b7zr116fwi28h"; name = "fastr"; url = "http://github.com/oracle/fastr.git"; rev = "vm-${version}"; } - { sha256 = "1c8nnrl30fys22gk3y6dvxzq0fq1a5hjkqrw15p68cwpz9wma4gi"; name = "graalpython"; - url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } + { sha256 = "1v4dqml2kwy1qiirw09vjsivp7mbmc5pmflskvc4x5m841dwgsgb"; name = "graalpython"; + url = "https://github.com/graalvm/graalpython.git"; rev = "0c20d4d09329323f5b74137000c6e0a4645053ad"; } ]; ninja-syntax = python27.pkgs.buildPythonPackage rec { @@ -180,13 +180,13 @@ let in rec { mx = stdenv.mkDerivation rec { - version = "5.215.4"; + version = "5.216.4"; pname = "mx"; src = fetchFromGitHub { owner = "graalvm"; repo = "mx"; rev = version; - sha256 = "0wrwfiwqjw6xp0bvp2g15jn6yrjb9w6jw1xnwvkyhkw1s6m0w0z1"; + sha256 = "0m4yy3i64r7sc46y04cfbb5834lc9j3wzmmbbjgx3d53s9wqrvyr"; }; nativeBuildInputs = [ makeWrapper ]; prePatch = '' @@ -219,19 +219,19 @@ in rec { meta = with stdenv.lib; { homepage = https://github.com/graalvm/mx; description = "Command-line tool used for the development of Graal projects"; - license = licenses.unfree; + license = licenses.gpl2; platforms = python27.meta.platforms; }; }; jvmci8 = stdenv.mkDerivation rec { - version = "0.58"; + version = "19-b01"; name = "jvmci-${version}"; src = fetchFromGitHub { owner = "graalvm"; repo = "graal-jvmci-8"; rev = "jvmci-${version}"; - sha256 = "0p8icn3d99zggsh6pqb15dz1j186ck442sjpn2cv43n4nvdmmp1m"; + sha256 = "1l75z3jjc4i0vc3qs9xba4mvy3y8ba860yf7kpywlfl0xh51jm10"; }; buildInputs = [ mx mercurial openjdk ]; postUnpack = '' @@ -249,6 +249,9 @@ in rec { # The hotspot version name regex fix substituteInPlace mx.jvmci/mx_jvmci.py \ --replace "\\d+.\\d+-b\\d+" "\\d+.\\d+-bga" + substituteInPlace src/share/vm/jvmci/jvmciCompilerToVM.cpp \ + --replace 'method->name_and_sig_as_C_string(), method->native_function(), entry' \ + 'method->name_and_sig_as_C_string(), p2i(method->native_function()), p2i(entry)' || exit -1 ''; hardeningDisable = [ "fortify" ]; NIX_CFLAGS_COMPILE = [ @@ -270,7 +273,7 @@ in rec { ''; dontFixup = true; # do not nuke path of ffmpeg etc dontStrip = true; # why? see in oraclejdk derivation - meta = openjdk.meta // { inherit (graalvm8.meta) platforms; }; + inherit (openjdk) meta; inherit (openjdk) postFixup; }; @@ -281,7 +284,7 @@ in rec { owner = "oracle"; repo = "graal"; rev = "vm-${version}"; - sha256 = "18fqah8x7gwz02ji40b4vyqav9x5dw703xwikjc117wlyymb1k56"; + sha256 = "07gy4xvjhrnl74v0vnixgfvgjp0dba0l8l7qlh28pfrc97dkcm9r"; }; patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ]; buildInputs = [ mx zlib mercurial jvmci8 git clang llvm @@ -324,6 +327,10 @@ in rec { # Patch the native-image template, as it will be run during build chmod +x vm/mx.vm/launcher_template.sh && patchShebangs vm/mx.vm + # Prevent random errors from too low maxRuntimecompilemethods + substituteInPlace truffle/mx.truffle/tools-truffle.properties \ + --replace '-H:MaxRuntimeCompileMethods=1400' \ + '-H:MaxRuntimeCompileMethods=28000' ''; buildPhase = '' @@ -349,15 +356,20 @@ in rec { installPhase = '' mkdir -p $out - cp -rf $MX_ALT_OUTPUT_ROOT/vm/linux-amd64/GRAALVM_CMP_GU_GVM_INS_JS_LIBPOLY_NFI_NJS_POLY_POLYNATIVE_PRO_PYN_RGX_SLG_SVM_SVMAG_SVMCF_SVML_TFL_VVM/graalvm-unknown-${version}/* $out + rm -rf $MX_ALT_OUTPUT_ROOT/vm/linux-amd64/GRAALVM_*STAGE1* + cp -rf $MX_ALT_OUTPUT_ROOT/vm/linux-amd64/GRAALVM*/graalvm-unknown-${version}/* $out # BUG workaround http://mail.openjdk.java.net/pipermail/graal-dev/2017-December/005141.html substituteInPlace $out/jre/lib/security/java.security \ --replace file:/dev/random file:/dev/./urandom \ --replace NativePRNGBlocking SHA1PRNG + # copy static and dynamic libraries needed for static compilation + cp -rf ${glibc}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/ + cp ${glibc.static}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/ + cp ${zlib.static}/lib/libz.a $out/jre/lib/svm/clibraries/linux-amd64/libz.a # Organize the out dir mkdir -p $out/share && mv $out/man $out/share - rm $out/ASSEMBLY_EXCEPTION $out/release $out/LICENSE $out/THIRD_PARTY_README + rm $out/ASSEMBLY_EXCEPTION $out/release $out/LICENSE $out/THIRD_PARTY_README $out/*.txt $out/*.md ''; dontFixup = true; # do not nuke path of ffmpeg etc @@ -381,6 +393,11 @@ in rec { $out/bin/native-image --no-server HelloWorld ./helloworld ./helloworld | fgrep 'Hello World' + + # Ahead-Of-Time compilation with --static + $out/bin/native-image --no-server --static HelloWorld + ./helloworld + ./helloworld | fgrep 'Hello World' ''; passthru.home = graalvm8; From 4fb96fb1bb06342d61800f014bf2e0e047829c62 Mon Sep 17 00:00:00 2001 From: volth Date: Tue, 14 May 2019 19:06:39 +0000 Subject: [PATCH 0014/1611] graalvm8: fix build --- .../development/compilers/graalvm/default.nix | 22 ++++++++----------- 1 file changed, 9 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index b343e20e55f..741ce7aca74 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -118,8 +118,8 @@ let rec { sha1 = "280c265b789e041c02e5c97815793dfc283fb1e6"; name = "LIBFFI_SOURCES_${sha1}/libffi-sources.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/libffi-3.2.1.tar.gz; } rec { sha1 = "8819cea8bfe22c9c63f55465e296b3855ea41786"; name = "TruffleJSON_${sha1}/trufflejson.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/trufflejson-20180130.jar; } rec { sha1 = "9712a8124c40298015f04a74f61b3d81a51513af"; name = "CHECKSTYLE_8.8_${sha1}/checkstyle-8.8.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/checkstyle-8.8-all.jar; } - rec { sha1 = "aee7dd2a9663701df57a96e501b9219a7c90cbc3"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-670.tar.gz; } - rec { sha1 = "e607a0c40716f4a232de3726ab101f5c54798cfa"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm-670-linux-amd64.tar.gz; } + rec { sha1 = "d8fa9c04a7c3095b1a8013efd70d6b813fba51db"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-8.tar.gz; } + rec { sha1 = "8510f966695ec4221f83e9ff3fc1e303172f8740"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-8-linux-amd64.tar.gz; } rec { sha1 = "e6e60889b7211a80b21052a249bd7e0f88f79fee"; name = "Java-WebSocket_${sha1}/java-websocket.jar"; url = mirror://maven/org/java-websocket/Java-WebSocket/1.3.9/Java-WebSocket-1.3.9.jar; } rec { sha1 = "7a4d00d5ec5febd252a6182e8b6e87a0a9821f81"; name = "ICU4J_${sha1}/icu4j.jar"; url = mirror://maven/com/ibm/icu/icu4j/62.1/icu4j-62.1.jar; } # This duplication of asm with underscore and minus is totally weird @@ -149,14 +149,10 @@ let ]; graal-mxcachegit = [ - { sha256 = "0idc2jn69pyrj2xivisrc8p59zd49jbz67476j8z3rfaf0hqnr3z"; name = "graaljs"; - url = "http://github.com/graalvm/graaljs.git"; rev = "fd578bf87e2bbf668482d4928603bdc63b9a0d97"; } - { sha256 = "1zyaaygzd8fc1a1684h75h21k8rs2rnhkr5y217wlazyd78j65nr"; name = "truffleruby"; - url = "http://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } - { sha256 = "0kyzx5y2kag08m9vla5x117al9ijs10783qpnv8b7zr116fwi28h"; name = "fastr"; - url = "http://github.com/oracle/fastr.git"; rev = "vm-${version}"; } - { sha256 = "1v4dqml2kwy1qiirw09vjsivp7mbmc5pmflskvc4x5m841dwgsgb"; name = "graalpython"; - url = "https://github.com/graalvm/graalpython.git"; rev = "0c20d4d09329323f5b74137000c6e0a4645053ad"; } + { sha256 = "0vj37hxmklq9i3pz7l2sqcan6xhmb0rmbn2m41mw744x4qz8m8na"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } + { sha256 = "1zyaaygzd8fc1a1684h75h21k8rs2rnhkr5y217wlazyd78j65nr"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } + { sha256 = "0kyzx5y2kag08m9vla5x117al9ijs10783qpnv8b7zr116fwi28h"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; } + { sha256 = "1r3afr4176lvk3jyha0sbaaripizla12vcsjlflh7r06w7gxqz3m"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } ]; ninja-syntax = python27.pkgs.buildPythonPackage rec { @@ -284,7 +280,7 @@ in rec { owner = "oracle"; repo = "graal"; rev = "vm-${version}"; - sha256 = "07gy4xvjhrnl74v0vnixgfvgjp0dba0l8l7qlh28pfrc97dkcm9r"; + sha256 = "1yimynf1x1wdp8y7rrw3ygpzv6p92n186wg22vh0zyhczl8w6x4f"; }; patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ]; buildInputs = [ mx zlib mercurial jvmci8 git clang llvm @@ -328,7 +324,7 @@ in rec { # Patch the native-image template, as it will be run during build chmod +x vm/mx.vm/launcher_template.sh && patchShebangs vm/mx.vm # Prevent random errors from too low maxRuntimecompilemethods - substituteInPlace truffle/mx.truffle/tools-truffle.properties \ + substituteInPlace truffle/mx.truffle/macro-truffle.properties \ --replace '-H:MaxRuntimeCompileMethods=1400' \ '-H:MaxRuntimeCompileMethods=28000' ''; @@ -369,7 +365,6 @@ in rec { cp ${zlib.static}/lib/libz.a $out/jre/lib/svm/clibraries/linux-amd64/libz.a # Organize the out dir mkdir -p $out/share && mv $out/man $out/share - rm $out/ASSEMBLY_EXCEPTION $out/release $out/LICENSE $out/THIRD_PARTY_README $out/*.txt $out/*.md ''; dontFixup = true; # do not nuke path of ffmpeg etc @@ -400,6 +395,7 @@ in rec { ./helloworld | fgrep 'Hello World' ''; + enableParallelBuilding = true; passthru.home = graalvm8; meta = with stdenv.lib; { From 670f257f9c6d007e52fc6cae31eed2836a587c0a Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 2 Jun 2019 20:31:37 -0700 Subject: [PATCH 0015/1611] serviio: 1.10.1 -> 2.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/serviio/versions --- pkgs/servers/serviio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/serviio/default.nix b/pkgs/servers/serviio/default.nix index 5c4a3543143..2ab3bf66685 100644 --- a/pkgs/servers/serviio/default.nix +++ b/pkgs/servers/serviio/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "serviio-${version}"; - version = "1.10.1"; + version = "2.0"; src = fetchurl { url = "http://download.serviio.org/releases/${name}-linux.tar.gz"; - sha256 = "0gxa29mzwvr0xvvi2qizyvf68ma5s3405q58f1pcgadbb68jwx6q"; + sha256 = "1zq1ax0pdxfn0nw0vm7s23ik47w8nwh1n83a7yka8dnknxjf5nng"; }; phases = ["unpackPhase" "installPhase"]; From 26317b02aeae3ae5f086f22822ccd9695df03bb8 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Thu, 11 Apr 2019 19:41:47 +0200 Subject: [PATCH 0016/1611] nixos/network-interfaces: always apply privacy extensions Fixes #56306 --- nixos/modules/tasks/network-interfaces.nix | 12 +++++++++--- nixos/tests/ipv6.nix | 11 +++++++++-- 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index f9b0eb330bf..e14cafa9b12 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -1087,7 +1087,14 @@ in virtualisation.vswitch = mkIf (cfg.vswitches != { }) { enable = true; }; - services.udev.packages = mkIf (cfg.wlanInterfaces != {}) [ + services.udev.packages = [ + (pkgs.writeTextFile rec { + name = "99-ipv6-privacy-extensions.rules"; + destination = "/etc/udev/rules.d/99-${name}"; + text = '' + ACTION=="add", SUBSYSTEM=="net", RUN+="${pkgs.procps}/bin/sysctl net.ipv6.conf.%k.use_tempaddr=2" + ''; + }) ] ++ lib.optional (cfg.wlanInterfaces != {}) (pkgs.writeTextFile { name = "99-zzz-40-wlanInterfaces.rules"; destination = "/etc/udev/rules.d/99-zzz-40-wlanInterfaces.rules"; @@ -1161,8 +1168,7 @@ in # Generate the same systemd events for both 'add' and 'move' udev events. ACTION=="move", SUBSYSTEM=="net", ENV{DEVTYPE}=="wlan", NAME=="${device}", ${systemdAttrs curInterface._iName} ''); - }) ]; - + }); }; } diff --git a/nixos/tests/ipv6.nix b/nixos/tests/ipv6.nix index 14f24c29cfe..d11eba764da 100644 --- a/nixos/tests/ipv6.nix +++ b/nixos/tests/ipv6.nix @@ -1,14 +1,16 @@ # Test of IPv6 functionality in NixOS, including whether router # solicication/advertisement using radvd works. -import ./make-test.nix ({ pkgs, ...} : { +import ./make-test.nix ({ pkgs, lib, ...} : { name = "ipv6"; meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ eelco ]; }; nodes = - { client = { ... }: { }; + # Remove the interface configuration provided by makeTest so that the + # interfaces are all configured implicitly + { client = { ... }: { networking.interfaces = lib.mkForce {}; }; server = { ... }: @@ -73,6 +75,11 @@ import ./make-test.nix ({ pkgs, ...} : { $client->succeed("curl --fail -g http://[$serverIp]"); $client->fail("curl --fail -g http://[$clientIp]"); }; + subtest "privacy extensions", sub { + my $ip = waitForAddress $client, "eth1", "global temporary"; + # Default route should have "src " in it + $client->succeed("ip r g ::2 | grep $ip"); + }; # TODO: test reachability of a machine on another network. ''; From ab225fc1ab94b5fc8136566d56ec9044b05fcaa0 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Mon, 20 May 2019 20:32:58 +0200 Subject: [PATCH 0017/1611] release notes: document IPv6 privacy extensions change --- nixos/doc/manual/release-notes/rl-1909.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index 6c958583993..5d4a7b2848d 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -112,6 +112,19 @@ + + + IPv6 Privacy Extensions are now enabled by default for undeclared + interfaces. The previous behaviour was quite misleading — even though + the default value for + was + true, undeclared interfaces would not prefer temporary + addresses. Now, interfaces not mentioned in the config will prefer + temporary addresses. EUI64 addresses can still be set as preferred by + explicitly setting the option to false for the + interface in question. + + Since Bittorrent Sync was superseded by Resilio Sync in 2016, the From e69a9990953c9eb11193ebaedabb93cad19e32cc Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Sun, 9 Jun 2019 20:45:16 -0500 Subject: [PATCH 0018/1611] networkmanager_strongswan: 1.4.4 -> 1.4.5 --- pkgs/tools/networking/network-manager/strongswan.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/network-manager/strongswan.nix b/pkgs/tools/networking/network-manager/strongswan.nix index 17460bc72f7..6b69b97552a 100644 --- a/pkgs/tools/networking/network-manager/strongswan.nix +++ b/pkgs/tools/networking/network-manager/strongswan.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; pname = "NetworkManager-strongswan"; - version = "1.4.4"; + version = "1.4.5"; src = fetchurl { url = "https://download.strongswan.org/NetworkManager/${name}.tar.bz2"; - sha256 = "1xhj5cipwbihf0cna8lpicpz7cd8fgkagpmg0xvj6pshymm5jbcd"; + sha256 = "015xcj42pd84apa0j0n9r3fhldp42mj72dqvl2xf4r9gwg5nhfrl"; }; buildInputs = [ networkmanager strongswanNM libsecret gtk3 gnome3.networkmanagerapplet ]; From ec0e3acd581ddf21bc4768ab545b7d57a96d3e31 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Sun, 9 Jun 2019 22:11:57 -0500 Subject: [PATCH 0019/1611] xvfb_run: fix hash --- pkgs/tools/misc/xvfb-run/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index bfc2a03e6cb..779742dc79a 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -3,7 +3,7 @@ let xvfb_run = fetchurl { url = https://projects.archlinux.org/svntogit/packages.git/plain/trunk/xvfb-run?h=packages/xorg-server; - sha256 = "1f9mrhqy0l72i3674n98bqlq9a10h0rh9qfjiwvivz3hjhq5c0gz"; + sha256 = "1307mz4nr8ga3qz73i8hbcdphky75rq8lrvfk2zm4kmv6pkbk611"; }; in stdenv.mkDerivation { From c4be9091b3d8f3dc13c3e9ef57e2607b495b6914 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 10 Jun 2019 05:16:56 -0500 Subject: [PATCH 0020/1611] xvfb_run: pin xorg-server package Co-Authored-By: Jan Tojnar --- pkgs/tools/misc/xvfb-run/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index 779742dc79a..a8999d33b44 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -2,7 +2,8 @@ , xauth, utillinux, which, fontsConf, gawk, coreutils }: let xvfb_run = fetchurl { - url = https://projects.archlinux.org/svntogit/packages.git/plain/trunk/xvfb-run?h=packages/xorg-server; + # https://git.archlinux.org/svntogit/packages.git/?h=packages/xorg-server + url = https://git.archlinux.org/svntogit/packages.git/plain/trunk/xvfb-run?h=packages/xorg-server&id=9cb733cefa92af3fca608fb051d5251160c9bbff; sha256 = "1307mz4nr8ga3qz73i8hbcdphky75rq8lrvfk2zm4kmv6pkbk611"; }; in From 5cc47dc5df76385e9fa8c55ca55037f70c75eb0a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 10 Jun 2019 11:21:26 -0500 Subject: [PATCH 0021/1611] xvfb_run: fix name Co-Authored-By: Jan Tojnar --- pkgs/tools/misc/xvfb-run/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index a8999d33b44..d6adbde5ea9 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -2,6 +2,7 @@ , xauth, utillinux, which, fontsConf, gawk, coreutils }: let xvfb_run = fetchurl { + name = "xvfb-run"; # https://git.archlinux.org/svntogit/packages.git/?h=packages/xorg-server url = https://git.archlinux.org/svntogit/packages.git/plain/trunk/xvfb-run?h=packages/xorg-server&id=9cb733cefa92af3fca608fb051d5251160c9bbff; sha256 = "1307mz4nr8ga3qz73i8hbcdphky75rq8lrvfk2zm4kmv6pkbk611"; From 53547096a997ebd4b96fd7d74d2d2002991de21f Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Tue, 11 Jun 2019 23:02:49 +0200 Subject: [PATCH 0022/1611] sidequest: init at 0.3.1 --- maintainers/maintainer-list.nix | 5 ++ pkgs/applications/misc/sidequest/default.nix | 69 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 76 insertions(+) create mode 100644 pkgs/applications/misc/sidequest/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 91f5f7c26f1..16cca728043 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2415,6 +2415,11 @@ email = "me@joelt.io"; name = "Joel Taylor"; }; + joepie91 = { + email = "admin@cryto.net"; + name = "Sven Slootweg"; + github = "joepie91"; + }; johanot = { email = "write@ownrisk.dk"; github = "johanot"; diff --git a/pkgs/applications/misc/sidequest/default.nix b/pkgs/applications/misc/sidequest/default.nix new file mode 100644 index 00000000000..1ec2665c676 --- /dev/null +++ b/pkgs/applications/misc/sidequest/default.nix @@ -0,0 +1,69 @@ +{ stdenv, lib, fetchurl, buildFHSUserEnv, makeDesktopItem, makeWrapper, atomEnv, libuuid, at-spi2-atk, icu, openssl, zlib }: + let + pname = "sidequest"; + version = "0.3.1"; + + desktopItem = makeDesktopItem rec { + name = "SideQuest"; + exec = "SideQuest"; + desktopName = name; + genericName = "VR App Store"; + categories = "Settings;PackageManager;"; + }; + + sidequest = stdenv.mkDerivation { + inherit pname version; + + src = fetchurl { + url = "https://github.com/the-expanse/SideQuest/releases/download/${version}/SideQuest-linux-x64.tar.gz"; + sha256 = "1hj398zzp1x74zhp9rlhqzm9a0ck6zh9bj39g6fpvc38zab5dj1p"; + }; + + buildInputs = [ makeWrapper ]; + + buildCommand = '' + mkdir -p "$out/lib/SideQuest" "$out/bin" + tar -xzf "$src" -C "$out/lib/SideQuest" --strip-components 1 + + ln -s "$out/lib/SideQuest/SideQuest" "$out/bin" + + fixupPhase + + # mkdir -p "$out/share/applications" + # ln -s "${desktopItem}/share/applications/*" "$out/share/applications" + + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${atomEnv.libPath}/lib:${lib.makeLibraryPath [libuuid at-spi2-atk]}:$out/lib/SideQuest" \ + "$out/lib/SideQuest/SideQuest" + ''; + }; + in buildFHSUserEnv { + name = "SideQuest"; + + passthru = { + inherit pname version; + + meta = with stdenv.lib; { + description = "An open app store and side-loading tool for Android-based VR devices such as the Oculus Go, Oculus Quest or Moverio BT 300"; + homepage = "https://github.com/the-expanse/SideQuest"; + downloadPage = "https://github.com/the-expanse/SideQuest/releases"; + license = licenses.mit; + maintainers = [ maintainers.joepie91 ]; + platforms = [ "x86_64-linux" ]; + }; + }; + + targetPkgs = pkgs: [ + sidequest + # Needed in the environment on runtime, to make QuestSaberPatch work + icu openssl zlib + ]; + + extraInstallCommands = '' + mkdir -p "$out/share/applications" + ln -s "${desktopItem}/share/applications/*" "$out/share/applications" + ''; + + runScript = "SideQuest"; + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8a6ed1f0bee..6ca709bd086 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24102,6 +24102,8 @@ in sequelpro = callPackage ../applications/misc/sequelpro {}; + sidequest = callPackage ../applications/misc/sidequest {}; + maphosts = callPackage ../tools/networking/maphosts {}; zimg = callPackage ../development/libraries/zimg { }; From 113bb2e0d79ea2463bd7a4012c577133b80fddae Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 16 Jun 2019 12:23:06 -0700 Subject: [PATCH 0023/1611] cups-filters: 1.23.0 -> 1.25.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cups-filters/versions --- pkgs/misc/cups/filters.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/cups/filters.nix b/pkgs/misc/cups/filters.nix index 8b05975c167..2a0a4369860 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.23.0"; + version = "1.25.0"; src = fetchurl { url = "https://openprinting.org/download/cups-filters/${name}.tar.xz"; - sha256 = "1lyzxf03kdfvkbb6p7hxlarbb35lq5bh094g49v3bz9z4z9065p2"; + sha256 = "1laiscq8yvynw862calkgbz9irrdkmd5l821q6a6wik1ifd186c1"; }; nativeBuildInputs = [ pkgconfig makeWrapper ]; From 1be8ba08d35f9ccf99b9f2628630c7237e3f3687 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Mon, 17 Jun 2019 16:09:25 +1000 Subject: [PATCH 0024/1611] strelka: 2.9.5 -> 2.9.10 --- pkgs/applications/science/biology/strelka/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/biology/strelka/default.nix b/pkgs/applications/science/biology/strelka/default.nix index 1527f5d3dda..e7f5eab8bfa 100644 --- a/pkgs/applications/science/biology/strelka/default.nix +++ b/pkgs/applications/science/biology/strelka/default.nix @@ -2,16 +2,17 @@ stdenv.mkDerivation rec { name = "strelka-${version}"; - version = "2.9.5"; + version = "2.9.10"; src = fetchFromGitHub { owner = "Illumina"; repo = "strelka"; rev = "v${version}"; - sha256 = "0x4a6nkx1jnyag9svghsdjz1fz6q7qx5pn77wphdfnk81f9yspf8"; + sha256 = "1nykbmim1124xh22nrhrsn8xgjb3s2y7akrdapn9sl1gdych4ppf"; }; - buildInputs = [ cmake zlib python2 ]; + nativeBuildInputs = [ cmake ]; + buildInputs = [ zlib python2 ]; preConfigure = '' sed -i 's|/usr/bin/env python|${python2}/bin/python|' src/python/lib/makeRunScript.py From 19946b0ab150a1afd372860bbb87c637792f0e16 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Mon, 17 Jun 2019 19:06:13 +0200 Subject: [PATCH 0025/1611] skopeo: 0.1.36 -> 0.1.37 Signed-off-by: Vincent Demeester --- pkgs/development/tools/skopeo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/skopeo/default.nix b/pkgs/development/tools/skopeo/default.nix index 6dfda2bbfe6..d8899de205f 100644 --- a/pkgs/development/tools/skopeo/default.nix +++ b/pkgs/development/tools/skopeo/default.nix @@ -5,13 +5,13 @@ with stdenv.lib; let - version = "0.1.36"; + version = "0.1.37"; src = fetchFromGitHub { rev = "v${version}"; owner = "containers"; repo = "skopeo"; - sha256 = "0q0d6dzx9q57fim0drxs7l45500f3228wq50vzj232x5qx5h00sj"; + sha256 = "1ly5yq3aj4ciqn6hbhvxqp1im81pbas9smdhbbks7iwjvh944d62"; }; defaultPolicyFile = runCommand "skopeo-default-policy.json" {} "cp ${src}/default-policy.json $out"; From b20cdceaecbee4ebd1d7e6677a9cd333e40d8805 Mon Sep 17 00:00:00 2001 From: Benjamin Esham Date: Sat, 15 Jun 2019 21:38:26 -0400 Subject: [PATCH 0026/1611] chrome-export: init at 2.0.2 --- pkgs/tools/misc/chrome-export/default.nix | 37 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 39 insertions(+) create mode 100644 pkgs/tools/misc/chrome-export/default.nix diff --git a/pkgs/tools/misc/chrome-export/default.nix b/pkgs/tools/misc/chrome-export/default.nix new file mode 100644 index 00000000000..8639f6f6f79 --- /dev/null +++ b/pkgs/tools/misc/chrome-export/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchFromGitHub +, python3 +}: + +stdenv.mkDerivation rec { + pname = "chrome-export"; + version = "2.0.2"; + + src = fetchFromGitHub { + owner = "bdesham"; + repo = pname; + rev = "v${version}"; + sha256 = "0p1914wfjggjavw7a0dh2nb7z97z3wrkwrpwxkdc2pj5w5lv405m"; + }; + + buildInputs = [ python3 ]; + + dontBuild = true; + installPhase = '' + mkdir -p $out/bin + cp export-chrome-bookmarks export-chrome-history $out/bin + mkdir -p $out/share/man/man1 + cp man_pages/*.1 $out/share/man/man1 + ''; + doInstallCheck = true; + installCheckPhase = '' + bash test/run_tests $out/bin + ''; + + meta = with stdenv.lib; { + description = "Scripts to save Google Chrome's bookmarks and history as HTML bookmarks files"; + homepage = "https://github.com/bdesham/chrome-export"; + license = [ licenses.isc ]; + maintainers = [ maintainers.bdesham ]; + platforms = python3.meta.platforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9b81ca38714..39e495562f6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24155,6 +24155,8 @@ in vdrPlugins = recurseIntoAttrs (callPackages ../applications/video/vdr/plugins.nix { }); wrapVdr = callPackage ../applications/video/vdr/wrapper.nix {}; + chrome-export = callPackage ../tools/misc/chrome-export {}; + chrome-gnome-shell = callPackage ../desktops/gnome-3/extensions/chrome-gnome-shell {}; chrome-token-signing = libsForQt5.callPackage ../tools/security/chrome-token-signing {}; From 7b6ef636abe4bec258caacfdda1e40dbf3de1edc Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Wed, 19 Jun 2019 17:44:24 -0700 Subject: [PATCH 0027/1611] pythonPackages.docker: 3.7.2 -> 4.0.1 --- .../python-modules/docker/default.nix | 29 +++++++++++-------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/docker/default.nix b/pkgs/development/python-modules/docker/default.nix index fc6169f1b13..74274bea988 100644 --- a/pkgs/development/python-modules/docker/default.nix +++ b/pkgs/development/python-modules/docker/default.nix @@ -1,33 +1,38 @@ -{ stdenv, buildPythonPackage, fetchPypi -, six, requests, websocket_client -, ipaddress, backports_ssl_match_hostname, docker_pycreds +{ stdenv, buildPythonPackage, fetchPypi, isPy27 +, six, requests, websocket_client, mock, pytest +, paramiko, backports_ssl_match_hostname }: + buildPythonPackage rec { - version = "3.7.2"; + version = "4.0.1"; pname = "docker"; src = fetchPypi { inherit pname version; - sha256 = "c456ded5420af5860441219ff8e51cdec531d65f4a9e948ccd4133e063b72f50"; + sha256 = "1284sqy3r6nxyz43vrpzqf25hsidpr0v4cgnbvavg2dl47bkf77n"; }; propagatedBuildInputs = [ six requests websocket_client - ipaddress - backports_ssl_match_hostname - docker_pycreds + paramiko + ] ++ stdenv.lib.optional isPy27 backports_ssl_match_hostname; + + checkInputs = [ + mock + pytest ]; - # Flake8 version conflict - doCheck = false; + # Other tests touch network + checkPhase = '' + ${pytest}/bin/pytest tests/unit/ + ''; meta = with stdenv.lib; { description = "An API client for docker written in Python"; homepage = https://github.com/docker/docker-py; license = licenses.asl20; - maintainers = with maintainers; [ - ]; + maintainers = with maintainers; [ jonringer ]; }; } From b8c22dc88da8fb821182ae1471ff45203b874e6d Mon Sep 17 00:00:00 2001 From: volth Date: Fri, 21 Jun 2019 11:04:42 +0000 Subject: [PATCH 0028/1611] graalvm8-19.0.0: minor fixes --- .../development/compilers/graalvm/default.nix | 27 +++++++++++++------ 1 file changed, 19 insertions(+), 8 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 741ce7aca74..2cf92b4e18e 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, fetchurl, fetchzip, fetchgit, mercurial, python27, +{ stdenv, lib, fetchFromGitHub, fetchurl, fetchzip, fetchgit, mercurial, python27, setJavaClassPath, zlib, makeWrapper, openjdk, unzip, git, clang, llvm, which, icu, ruby, bzip2, glibc # gfortran, readline, bzip2, lzma, pcre, curl, ed, tree ## WIP: fastr deps }: @@ -267,8 +267,21 @@ in rec { mv openjdk1.8.0_*/linux-amd64/product/* $out install -v -m0555 -D $MX_CACHE_DIR/hsdis*/hsdis.so $out/jre/lib/amd64/hsdis-amd64.so ''; - dontFixup = true; # do not nuke path of ffmpeg etc - dontStrip = true; # why? see in oraclejdk derivation + # copy-paste openjdk's preFixup + preFixup = '' + # Propagate the setJavaClassPath setup hook from the JRE so that + # any package that depends on the JRE has $CLASSPATH set up + # properly. + mkdir -p $out/nix-support + printWords ${setJavaClassPath} > $out/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; fi + EOF + ''; + dontStrip = true; # stripped javac crashes with "segmentaion fault" inherit (openjdk) meta; inherit (openjdk) postFixup; }; @@ -363,12 +376,10 @@ in rec { cp -rf ${glibc}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/ cp ${glibc.static}/lib/* $out/jre/lib/svm/clibraries/linux-amd64/ cp ${zlib.static}/lib/libz.a $out/jre/lib/svm/clibraries/linux-amd64/libz.a - # Organize the out dir - mkdir -p $out/share && mv $out/man $out/share ''; - dontFixup = true; # do not nuke path of ffmpeg etc - dontStrip = true; # why? see in oraclejdk derivation + inherit (jvmci8) preFixup; + dontStrip = true; # stripped javac crashes with "segmentaion fault" doInstallCheck = true; installCheckPhase = '' echo ${lib.escapeShellArg '' @@ -403,7 +414,7 @@ in rec { description = "High-Performance Polyglot VM"; license = licenses.gpl2; maintainers = with maintainers; [ volth hlolli ]; - platforms = [ "x86_64-linux" ]; + platforms = [ "x86_64-linux" "aarch64-linux" ]; }; }; } From f42e605e63d957861c2928c0b8d2ca3239833a05 Mon Sep 17 00:00:00 2001 From: volth Date: Fri, 21 Jun 2019 11:55:56 +0000 Subject: [PATCH 0029/1611] graalvm8: 19.0.0 -> 19.0.2 --- .../development/compilers/graalvm/default.nix | 46 +++++++++---------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 2cf92b4e18e..7a527e28793 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -4,7 +4,7 @@ }: let - version = "19.0.0"; + version = "19.0.2"; truffleMake = ./truffle.make; R = fetchurl { url = "http://cran.rstudio.com/src/base/R-3/R-3.5.1.tar.gz"; @@ -66,31 +66,27 @@ let }; jvmci8-mxcache = [ - rec { sha1 = "977b33afe2344a9ee801fd3317c54d8e1f9d7a79"; name = "JACOCOCORE_0.8.2_${sha1}/jacococore-0.8.2.jar"; url = mirror://maven/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2.jar; } - rec { sha1 = "46f38efb779fb08216379e1a196396f4e22bbe41"; name = "JACOCOCORE_0.8.2_${sha1}/jacococore-0.8.2.sources.jar"; url = mirror://maven/org/jacoco/org.jacoco.core/0.8.2/org.jacoco.core-0.8.2-sources.jar; } - rec { sha1 = "50e133cdfd2d31ca5702b73615be70f801d3ae26"; name = "JACOCOREPORT_0.8.2_${sha1}/jacocoreport-0.8.2.jar"; url = mirror://maven/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2.jar; } - rec { sha1 = "7488cd6e42cc4fa85b51200b7f451465692e033b"; name = "JACOCOREPORT_0.8.2_${sha1}/jacocoreport-0.8.2.sources.jar"; url = mirror://maven/org/jacoco/org.jacoco.report/0.8.2/org.jacoco.report-0.8.2-sources.jar; } - rec { sha1 = "4806883004063feb978b8811f00d5ea2138750bb"; name = "JACOCOAGENT_0.8.2_${sha1}/jacocoagent-0.8.2.jar"; url = mirror://maven/org/jacoco/org.jacoco.agent/0.8.2/org.jacoco.agent-0.8.2-runtime.jar; } + rec { sha1 = "53addc878614171ff0fcbc8f78aed12175c22cdb"; name = "JACOCOCORE_0.8.4_${sha1}/jacococore-0.8.4.jar"; url = mirror://maven/org/jacoco/org.jacoco.core/0.8.4/org.jacoco.core-0.8.4.jar; } + rec { sha1 = "9bd1fa334d941005bc9ab3ac92478a590f5b7d73"; name = "JACOCOCORE_0.8.4_${sha1}/jacococore-0.8.4.sources.jar"; url = mirror://maven/org/jacoco/org.jacoco.core/0.8.4/org.jacoco.core-0.8.4-sources.jar; } + rec { sha1 = "e5ca9511493b7e3bc2cabdb8ded92e855f3aac32"; name = "JACOCOREPORT_0.8.4_${sha1}/jacocoreport-0.8.4.jar"; url = mirror://maven/org/jacoco/org.jacoco.report/0.8.4/org.jacoco.report-0.8.4.jar; } + rec { sha1 = "eb61e479b35b467954f28a565c094c563b790e19"; name = "JACOCOREPORT_0.8.4_${sha1}/jacocoreport-0.8.4.sources.jar"; url = mirror://maven/org/jacoco/org.jacoco.report/0.8.4/org.jacoco.report-0.8.4-sources.jar; } + rec { sha1 = "869021a6d90cfb008b12e83fccbe42eca29e5355"; name = "JACOCOAGENT_0.8.4_${sha1}/jacocoagent-0.8.4.jar"; url = mirror://maven/org/jacoco/org.jacoco.agent/0.8.4/org.jacoco.agent-0.8.4-runtime.jar; } rec { sha1 = "306816fb57cf94f108a43c95731b08934dcae15c"; name = "JOPTSIMPLE_4_6_${sha1}/joptsimple-4-6.jar"; url = mirror://maven/net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6.jar; } rec { sha1 = "9cd14a61d7aa7d554f251ef285a6f2c65caf7b65"; name = "JOPTSIMPLE_4_6_${sha1}/joptsimple-4-6.sources.jar"; url = mirror://maven/net/sf/jopt-simple/jopt-simple/4.6/jopt-simple-4.6-sources.jar; } - rec { sha1 = "b852fb028de645ad2852bbe998e084d253f450a5"; name = "JMH_GENERATOR_ANNPROCESS_1_18_${sha1}/jmh-generator-annprocess-1-18.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.18/jmh-generator-annprocess-1.18.jar; } - rec { sha1 = "d455b0dc6108b5e6f1fb4f6cf1c7b4cbedbecc97"; name = "JMH_GENERATOR_ANNPROCESS_1_18_${sha1}/jmh-generator-annprocess-1-18.sources.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.18/jmh-generator-annprocess-1.18-sources.jar; } - rec { sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar; } - rec { sha1 = "fb48e2a97df95f8b9dced54a1a37749d2a64d2ae"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.sources.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21-sources.jar; } - rec { sha1 = "c01b6798f81b0fc2c5faa70cbe468c275d4b50c7"; name = "ASM_6.2.1_${sha1}/asm-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar; } - rec { sha1 = "cee28077ac7a63d3de0b205ec314d83944ff6267"; name = "ASM_6.2.1_${sha1}/asm-6.2.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1-sources.jar; } - rec { sha1 = "332b022092ecec53cdb6272dc436884b2d940615"; name = "ASM_TREE_6.2.1_${sha1}/asm-tree-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar; } - rec { sha1 = "072bd64989090e4ed58e4657e3d4481d96f643af"; name = "ASM_TREE_6.2.1_${sha1}/asm-tree-6.2.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1-sources.jar; } - rec { sha1 = "e8b876c5ccf226cae2f44ed2c436ad3407d0ec1d"; name = "ASM_ANALYSIS_6.2.1_${sha1}/asm-analysis-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1.jar; } - rec { sha1 = "b0b249bd185677648692e7c57b488b6d7c2a6653"; name = "ASM_ANALYSIS_6.2.1_${sha1}/asm-analysis-6.2.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-analysis/6.2.1/asm-analysis-6.2.1-sources.jar; } - rec { sha1 = "eaf31376d741a3e2017248a4c759209fe25c77d3"; name = "ASM_COMMONS_6.2.1_${sha1}/asm-commons-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1.jar; } - rec { sha1 = "667fa0f9d370e7848b0e3d173942855a91fd1daf"; name = "ASM_COMMONS_6.2.1_${sha1}/asm-commons-6.2.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-commons/6.2.1/asm-commons-6.2.1-sources.jar; } + rec { sha1 = "fa29aa438674ff19d5e1386d2c3527a0267f291e"; name = "ASM_7.1_${sha1}/asm-7.1.jar"; url = mirror://maven/org/ow2/asm/asm/7.1/asm-7.1.jar; } + rec { sha1 = "9d170062d595240da35301362b079e5579c86f49"; name = "ASM_7.1_${sha1}/asm-7.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm/7.1/asm-7.1-sources.jar; } + rec { sha1 = "a3662cf1c1d592893ffe08727f78db35392fa302"; name = "ASM_TREE_7.1_${sha1}/asm-tree-7.1.jar"; url = mirror://maven/org/ow2/asm/asm-tree/7.1/asm-tree-7.1.jar; } + rec { sha1 = "157238292b551de8680505fa2d19590d136e25b9"; name = "ASM_TREE_7.1_${sha1}/asm-tree-7.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-tree/7.1/asm-tree-7.1-sources.jar; } + rec { sha1 = "379e0250f7a4a42c66c5e94e14d4c4491b3c2ed3"; name = "ASM_ANALYSIS_7.1_${sha1}/asm-analysis-7.1.jar"; url = mirror://maven/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1.jar; } + rec { sha1 = "36789198124eb075f1a5efa18a0a7812fb16f47f"; name = "ASM_ANALYSIS_7.1_${sha1}/asm-analysis-7.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-analysis/7.1/asm-analysis-7.1-sources.jar; } + rec { sha1 = "431dc677cf5c56660c1c9004870de1ed1ea7ce6c"; name = "ASM_COMMONS_7.1_${sha1}/asm-commons-7.1.jar"; url = mirror://maven/org/ow2/asm/asm-commons/7.1/asm-commons-7.1.jar; } + rec { sha1 = "a62ff3ae6e37affda7c6fb7d63b89194c6d006ee"; name = "ASM_COMMONS_7.1_${sha1}/asm-commons-7.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm-commons/7.1/asm-commons-7.1-sources.jar; } rec { sha1 = "ec2544ab27e110d2d431bdad7d538ed509b21e62"; name = "COMMONS_MATH3_3_2_${sha1}/commons-math3-3-2.jar"; url = mirror://maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2.jar; } rec { sha1 = "cd098e055bf192a60c81d81893893e6e31a6482f"; name = "COMMONS_MATH3_3_2_${sha1}/commons-math3-3-2.sources.jar"; url = mirror://maven/org/apache/commons/commons-math3/3.2/commons-math3-3.2-sources.jar; } - rec { sha1 = "0174aa0077e9db596e53d7f9ec37556d9392d5a6"; name = "JMH_1_18_${sha1}/jmh-1-18.jar"; url = mirror://maven/org/openjdk/jmh/jmh-core/1.18/jmh-core-1.18.jar; } - rec { sha1 = "7ff1e1aafea436b6aa8b29a8b8f1c2d66be26f5b"; name = "JMH_1_18_${sha1}/jmh-1-18.sources.jar"; url = mirror://maven/org/openjdk/jmh/jmh-core/1.18/jmh-core-1.18-sources.jar; } rec { sha1 = "442447101f63074c61063858033fbfde8a076873"; name = "JMH_1_21_${sha1}/jmh-1-21.jar"; url = mirror://maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21.jar; } rec { sha1 = "a6fe84788bf8cf762b0e561bf48774c2ea74e370"; name = "JMH_1_21_${sha1}/jmh-1-21.sources.jar"; url = mirror://maven/org/openjdk/jmh/jmh-core/1.21/jmh-core-1.21-sources.jar; } + rec { sha1 = "7aac374614a8a76cad16b91f1a4419d31a7dcda3"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21.jar; } + rec { sha1 = "fb48e2a97df95f8b9dced54a1a37749d2a64d2ae"; name = "JMH_GENERATOR_ANNPROCESS_1_21_${sha1}/jmh-generator-annprocess-1-21.sources.jar"; url = mirror://maven/org/openjdk/jmh/jmh-generator-annprocess/1.21/jmh-generator-annprocess-1.21-sources.jar; } rec { sha1 = "2973d150c0dc1fefe998f834810d68f278ea58ec"; name = "JUNIT_${sha1}/junit.jar"; url = mirror://maven/junit/junit/4.12/junit-4.12.jar; } rec { sha1 = "a6c32b40bf3d76eca54e3c601e5d1470c86fcdfa"; name = "JUNIT_${sha1}/junit.sources.jar"; url = mirror://maven/junit/junit/4.12/junit-4.12-sources.jar; } rec { sha1 = "42a25dc3219429f0e5d060061f71acb49bf010a0"; name = "HAMCREST_${sha1}/hamcrest.jar"; url = mirror://maven/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar; } @@ -176,13 +172,13 @@ let in rec { mx = stdenv.mkDerivation rec { - version = "5.216.4"; + version = "5.224.1"; pname = "mx"; src = fetchFromGitHub { owner = "graalvm"; repo = "mx"; rev = version; - sha256 = "0m4yy3i64r7sc46y04cfbb5834lc9j3wzmmbbjgx3d53s9wqrvyr"; + sha256 = "1gf8fbzn6mfg3p71mxx89ks4n6zlr6ia9zj2sq0dflp4aa0acx6q"; }; nativeBuildInputs = [ makeWrapper ]; prePatch = '' @@ -221,13 +217,13 @@ in rec { }; jvmci8 = stdenv.mkDerivation rec { - version = "19-b01"; + version = "19-b04"; name = "jvmci-${version}"; src = fetchFromGitHub { owner = "graalvm"; repo = "graal-jvmci-8"; rev = "jvmci-${version}"; - sha256 = "1l75z3jjc4i0vc3qs9xba4mvy3y8ba860yf7kpywlfl0xh51jm10"; + sha256 = "062vd8cxs74nn47xcdymycb7vrlyk139g2rbhdayfw02jvvhanyv"; }; buildInputs = [ mx mercurial openjdk ]; postUnpack = '' @@ -293,7 +289,7 @@ in rec { owner = "oracle"; repo = "graal"; rev = "vm-${version}"; - sha256 = "1yimynf1x1wdp8y7rrw3ygpzv6p92n186wg22vh0zyhczl8w6x4f"; + sha256 = "168qqngxjri4qw3v6khlnfkl05rlynpflcjq1h3gq6rhasvgr92f"; }; patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ]; buildInputs = [ mx zlib mercurial jvmci8 git clang llvm From a656af619832b1707ca9a5bf4947552c43795fd8 Mon Sep 17 00:00:00 2001 From: volth Date: Fri, 21 Jun 2019 17:09:30 +0000 Subject: [PATCH 0030/1611] graalvm8: fix sha256 hashes --- pkgs/development/compilers/graalvm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 7a527e28793..06adde908f0 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -145,10 +145,10 @@ let ]; graal-mxcachegit = [ - { sha256 = "0vj37hxmklq9i3pz7l2sqcan6xhmb0rmbn2m41mw744x4qz8m8na"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } + { sha256 = "1dyzxng70mfgfpl2blpjllmlqpdxi69jp7251z36lq36igin3lr2"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } { sha256 = "1zyaaygzd8fc1a1684h75h21k8rs2rnhkr5y217wlazyd78j65nr"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } { sha256 = "0kyzx5y2kag08m9vla5x117al9ijs10783qpnv8b7zr116fwi28h"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; } - { sha256 = "1r3afr4176lvk3jyha0sbaaripizla12vcsjlflh7r06w7gxqz3m"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } + { sha256 = "17gphvzsl08q3mn9gclvkkpcdkjir9bhnibls2x1cas0n5x3v4mw"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } ]; ninja-syntax = python27.pkgs.buildPythonPackage rec { From f73ca21c848e8ca86f8db3db38681502a46d5099 Mon Sep 17 00:00:00 2001 From: Kevin Rauscher Date: Fri, 21 Jun 2019 20:51:07 +0200 Subject: [PATCH 0031/1611] mopidy-iris: 3.38.0 -> 3.39.0 --- pkgs/applications/audio/mopidy/iris.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/iris.nix b/pkgs/applications/audio/mopidy/iris.nix index 4a704740178..3a663fd33c8 100644 --- a/pkgs/applications/audio/mopidy/iris.nix +++ b/pkgs/applications/audio/mopidy/iris.nix @@ -2,11 +2,11 @@ pythonPackages.buildPythonApplication rec { pname = "Mopidy-Iris"; - version = "3.38.0"; + version = "3.39.0"; src = pythonPackages.fetchPypi { inherit pname version; - sha256 = "0w86g037jdihh6a16x7y82qk8yk30frkj23k9axcj9fjyp30r0x5"; + sha256 = "1d2g66gvm7yaz4nbxlh23lj2xfkhi3hsg2k646m1za510f8dzlag"; }; propagatedBuildInputs = [ From 8f45108517ca8f41dbec5c0b47bde8796b949aa3 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sun, 16 Jun 2019 22:35:40 +0800 Subject: [PATCH 0032/1611] librime: 1.5.0 -> 1.5.3 --- pkgs/development/libraries/librime/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/librime/default.nix b/pkgs/development/libraries/librime/default.nix index 71362fd7ef7..e1d0a51a668 100644 --- a/pkgs/development/libraries/librime/default.nix +++ b/pkgs/development/libraries/librime/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "librime"; - version = "1.5.0"; + version = "1.5.3"; src = fetchFromGitHub { owner = "rime"; repo = "librime"; rev = "${version}"; - sha256 = "10wvh1l4317yzcys4rzlkw42i6cj5p8g62r1xzyjw32ky2d0ndxl"; + sha256 = "0xskhdhk7dgpc71r39pfzxi5vrlzy90aqj1gzv8nnapq91p2awhv"; }; nativeBuildInputs = [ cmake ]; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - homepage = https://rime.im/; + homepage = "https://rime.im/"; description = "Rime Input Method Engine, the core library"; license = licenses.bsd3; maintainers = with maintainers; [ sifmelcara ]; From a8ad0834c95c360fcf42f718ce276c7e33d98527 Mon Sep 17 00:00:00 2001 From: "Christopher A. Williamson" Date: Sat, 22 Jun 2019 21:15:17 +0100 Subject: [PATCH 0033/1611] rambox-pro: 1.1.2 -> 1.1.4 Upgraded the rambox-pro package I previously created from 1.1.2 to 1.1.4 and added necessary changes to accomplish this. --- .../networking/instant-messengers/rambox/pro.nix | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/rambox/pro.nix b/pkgs/applications/networking/instant-messengers/rambox/pro.nix index 1106aa86a0a..ffa55a88c8a 100644 --- a/pkgs/applications/networking/instant-messengers/rambox/pro.nix +++ b/pkgs/applications/networking/instant-messengers/rambox/pro.nix @@ -2,26 +2,19 @@ stdenv.mkDerivation rec { pname = "rambox-pro"; - version = "1.1.2"; + version = "1.1.4"; dontBuild = true; dontStrip = true; - buildInputs = [ nss xorg.libxkbfile ]; + buildInputs = [ nss xorg.libXext xorg.libxkbfile xorg.libXScrnSaver ]; nativeBuildInputs = [ autoPatchelfHook makeWrapper nodePackages.asar ]; src = fetchurl { url = "https://github.com/ramboxapp/download/releases/download/v${version}/RamboxPro-${version}-linux-x64.tar.gz"; - sha256 = "0rrfpl371hp278b02b9b6745ax29yrdfmxrmkxv6d158jzlv0dlr"; + sha256 = "0vwh3km3h46bgynd10s8ijl3aj5sskzncdj14h3k7h4sibd8r71a"; }; - postPatch = '' - substituteInPlace resources/app.asar.unpacked/node_modules/ad-block/vendor/depot_tools/create-chromium-git-src \ - --replace "/usr/bin/env -S bash -e" "${stdenv.shell}" - substituteInPlace resources/app.asar.unpacked/node_modules/ad-block/node_modules/bloom-filter-cpp/vendor/depot_tools/create-chromium-git-src \ - --replace "/usr/bin/env -S bash -e" "${stdenv.shell}" - ''; - installPhase = '' mkdir -p $out/bin $out/opt/RamboxPro $out/share/applications asar e resources/app.asar $out/opt/RamboxPro/resources/app.asar.unpacked From 93f818b35465d56166f8e3e5933aba809cf1f349 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Sun, 23 Jun 2019 01:56:39 +0200 Subject: [PATCH 0034/1611] gst-plugins-good: Remove jack2 by default --- pkgs/development/libraries/gstreamer/good/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index b76142c9d86..f4a37bc2d81 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { ] ++ optional gtkSupport gtk3 # for gtksink ++ optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ] - ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 libgudev jack2 ] + ++ optionals stdenv.isLinux [ libv4l libpulseaudio libavc1394 libiec61883 libgudev ] ++ optionals (stdenv.isLinux && enableJack) [ jack2 ]; From 96c957f92cabf2b77b8df1950f46c22dda65c186 Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Wed, 26 Jun 2019 18:38:14 +0200 Subject: [PATCH 0035/1611] wine: Set WINELOADER in wrapper, wrap also wine64. Fixes #63170. Note that this brings back wrapping of wine64 which was removed in #28486 because the underlying issue is now fixed. --- pkgs/misc/emulators/wine/base.nix | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index e86db53c88a..8edf7ad3959 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -95,10 +95,25 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) { ((map (links "share/wine/gecko") geckos) ++ (map (links "share/wine/mono") monos))} '' + lib.optionalString supportFlags.gstreamerSupport '' - for i in wine ; do - if [ -e "$out/bin/$i" ]; then - wrapProgram "$out/bin/$i" \ + # Wrapping Wine is tricky. + # https://github.com/NixOS/nixpkgs/issues/63170 + # https://github.com/NixOS/nixpkgs/issues/28486 + # The main problem is that wine-preloader opens and loads the wine(64) binary, and + # breakage occurs if it finds a shell script instead of the real binary. We solve this + # by setting WINELOADER to point to the original binary. Additionally, the locations + # of the 32-bit and 64-bit binaries must differ only by the presence of "64" at the + # end, due to the logic Wine uses to find the other binary (see get_alternate_loader + # in dlls/kernel32/process.c). Therefore we do not use wrapProgram which would move + # the binaries to ".wine-wrapped" and ".wine64-wrapped", but use makeWrapper directly, + # and move the binaries to ".wine" and ".wine64". + for i in wine wine64 ; do + prog="$out/bin/$i" + if [ -e "$prog" ]; then + hidden="$(dirname "$prog")/.$(basename "$prog")" + mv "$prog" "$hidden" + makeWrapper "$hidden" "$prog" \ --argv0 "" \ + --set WINELOADER "$hidden" \ --prefix GST_PLUGIN_SYSTEM_PATH_1_0 ":" "$GST_PLUGIN_SYSTEM_PATH_1_0" fi done From 8ac6e24571bd7fdb5fd84053d2929ab373a285d6 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Wed, 5 Jun 2019 23:30:20 +0200 Subject: [PATCH 0036/1611] haskellPackages: Don't ignore overrides This prevented haskell.packages.${compiler} overlays from propagating to haskellPackages. --- pkgs/top-level/all-packages.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 526bbfcf035..610686d4a3b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7491,9 +7491,7 @@ in haskell = callPackage ./haskell-packages.nix { }; - haskellPackages = dontRecurseIntoAttrs (haskell.packages.ghc865.override { - overrides = haskell.packageOverrides; - }); + haskellPackages = dontRecurseIntoAttrs haskell.packages.ghc865; inherit (haskellPackages) ghc; From 29c694786883f3ba6b6d04853a589019a04a529c Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 28 Jun 2019 01:26:08 -0500 Subject: [PATCH 0037/1611] protobuf3_8: init at 3.8.0 --- pkgs/development/libraries/protobuf/3.8.nix | 6 ++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 7 insertions(+) create mode 100644 pkgs/development/libraries/protobuf/3.8.nix diff --git a/pkgs/development/libraries/protobuf/3.8.nix b/pkgs/development/libraries/protobuf/3.8.nix new file mode 100644 index 00000000000..2ea03643b3a --- /dev/null +++ b/pkgs/development/libraries/protobuf/3.8.nix @@ -0,0 +1,6 @@ +{ callPackage, ... }: + +callPackage ./generic-v3.nix { + version = "3.8.0"; + sha256 = "0vll02a6k46k720wfh25sl4hdai0130s3ix2l1wh6j1lm9pi7bm8"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b56dbe6c15..be69cdaf8fe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12732,6 +12732,7 @@ in protobuf = protobuf3_7; + protobuf3_8 = callPackage ../development/libraries/protobuf/3.8.nix { }; protobuf3_7 = callPackage ../development/libraries/protobuf/3.7.nix { }; protobuf3_6 = callPackage ../development/libraries/protobuf/3.6.nix { }; protobuf3_1 = callPackage ../development/libraries/protobuf/3.1.nix { }; From f496357585d6110d97cb55ad699a09ca003ed82b Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Fri, 28 Jun 2019 16:25:57 -0400 Subject: [PATCH 0038/1611] cc-wrapper: use -iframework instead of -F This avoids dumping -Wall warnings when they appear in framework headers. As a result, we are closer to how regular headers are included (via -isystem). Also remove ccIncludeFlag lookup, this was unused & not very useful. --- pkgs/build-support/cc-wrapper/setup-hook.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/build-support/cc-wrapper/setup-hook.sh b/pkgs/build-support/cc-wrapper/setup-hook.sh index 28060de7411..211b5063291 100644 --- a/pkgs/build-support/cc-wrapper/setup-hook.sh +++ b/pkgs/build-support/cc-wrapper/setup-hook.sh @@ -70,12 +70,12 @@ ccWrapper_addCVars () { local role_post role_pre getHostRoleEnvHook - if [[ -d "$1/include" ]]; then - export NIX_${role_pre}CFLAGS_COMPILE+=" ${ccIncludeFlag:--isystem} $1/include" + if [ -d "$1/include" ]; then + export NIX_${role_pre}CFLAGS_COMPILE+=" -isystem $1/include" fi - if [[ -d "$1/Library/Frameworks" ]]; then - export NIX_${role_pre}CFLAGS_COMPILE+=" -F$1/Library/Frameworks" + if [ -d "$1/Library/Frameworks" ]; then + export NIX_${role_pre}CFLAGS_COMPILE+=" -iframework $1/Library/Frameworks" fi } From 7581301a114c8222c81a0dbe9d88fc7c251f4ac4 Mon Sep 17 00:00:00 2001 From: gnidorah Date: Sun, 16 Jun 2019 12:37:29 +0300 Subject: [PATCH 0039/1611] orbment: remove obsoleted package --- .../window-managers/orbment/bemenu.nix | 26 ------------ .../window-managers/orbment/default.nix | 41 ------------------- pkgs/top-level/all-packages.nix | 2 - 3 files changed, 69 deletions(-) delete mode 100644 pkgs/applications/window-managers/orbment/bemenu.nix delete mode 100644 pkgs/applications/window-managers/orbment/default.nix diff --git a/pkgs/applications/window-managers/orbment/bemenu.nix b/pkgs/applications/window-managers/orbment/bemenu.nix deleted file mode 100644 index 065b81948c2..00000000000 --- a/pkgs/applications/window-managers/orbment/bemenu.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig -, pango, wayland, libxkbcommon }: - -stdenv.mkDerivation rec { - name = "bemenu-2017-02-14"; - - src = fetchFromGitHub { - owner = "Cloudef"; - repo = "bemenu"; - rev = "d6261274cf0b3aa51ce8ea7418a79495b20ad558"; - sha256 = "08bc623y5yjbz7q83lhl6rb0xs6ji17z79c260bx0fgin8sfj5x8"; - }; - - nativeBuildInputs = [ cmake pkgconfig ]; - - buildInputs = [ pango wayland libxkbcommon ]; - - enableParallelBuilding = true; - - meta = with stdenv.lib; { - description = "A dynamic menu library and client program inspired by dmenu"; - homepage = src.meta.homepage; - license = with licenses; [ gpl3 lgpl3 ]; - platforms = platforms.linux; - }; -} diff --git a/pkgs/applications/window-managers/orbment/default.nix b/pkgs/applications/window-managers/orbment/default.nix deleted file mode 100644 index 6bf6f44d423..00000000000 --- a/pkgs/applications/window-managers/orbment/default.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ lib, stdenv, fetchgit, cmake, pkgconfig, makeWrapper, callPackage -, wlc, dbus, wayland, libxkbcommon, pixman, libinput, udev, zlib, libpng -, libdrm, libX11 -, westonLite -}: - -let - bemenu = callPackage ./bemenu.nix {}; -in stdenv.mkDerivation rec { - name = "orbment-${version}"; - version = "git-2016-08-13"; - - src = fetchgit { - url = "https://github.com/Cloudef/orbment"; - rev = "01dcfff9719e20261a6d8c761c0cc2f8fa0d0de5"; - sha256 = "04mv9nh847vijr01zrs47fzmnwfhdx09vi3ddv843mx10yx7lqdb"; - fetchSubmodules = true; - }; - - nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; - - buildInputs = [ - wlc dbus wayland libxkbcommon pixman libinput udev zlib libpng libX11 - libdrm - ]; - - postFixup = '' - wrapProgram $out/bin/orbment \ - --prefix PATH : "${stdenv.lib.makeBinPath [ bemenu westonLite ]}" - ''; - - enableParallelBuilding = true; - - meta = { - description = "Modular Wayland compositor"; - homepage = src.url; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 54f2cab11d4..e3d98b49275 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18439,8 +18439,6 @@ in wlc = callPackage ../development/libraries/wlc { }; wlroots = callPackage ../development/libraries/wlroots { }; - orbment = callPackage ../applications/window-managers/orbment { }; - sway = callPackage ../applications/window-managers/sway { }; swaybg = callPackage ../applications/window-managers/sway/bg.nix { }; swayidle = callPackage ../applications/window-managers/sway/idle.nix { }; From bc849619be4408d6dd3d953d421c72abac432e8e Mon Sep 17 00:00:00 2001 From: gnidorah Date: Sun, 16 Jun 2019 12:43:19 +0300 Subject: [PATCH 0040/1611] velox: remove obsoleted package --- .../window-managers/velox/default.nix | 59 ------------------- .../window-managers/velox/dmenu.nix | 37 ------------ .../applications/window-managers/velox/st.nix | 40 ------------- .../window-managers/velox/swc.nix | 36 ----------- .../window-managers/velox/wld.nix | 32 ---------- pkgs/top-level/all-packages.nix | 5 -- 6 files changed, 209 deletions(-) delete mode 100644 pkgs/applications/window-managers/velox/default.nix delete mode 100644 pkgs/applications/window-managers/velox/dmenu.nix delete mode 100644 pkgs/applications/window-managers/velox/st.nix delete mode 100644 pkgs/applications/window-managers/velox/swc.nix delete mode 100644 pkgs/applications/window-managers/velox/wld.nix diff --git a/pkgs/applications/window-managers/velox/default.nix b/pkgs/applications/window-managers/velox/default.nix deleted file mode 100644 index f8cb6c26683..00000000000 --- a/pkgs/applications/window-managers/velox/default.nix +++ /dev/null @@ -1,59 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, pkgconfig, makeWrapper, newScope -, libxkbcommon -, wayland, pixman, fontconfig -, stConf ? null, stPatches ? [] -}: - -let - callPackage = newScope self; - self = { - swc = callPackage ./swc.nix {}; - wld = callPackage ./wld.nix {}; - dmenu-velox = callPackage ./dmenu.nix {}; - st-velox = callPackage ./st.nix { - conf = stConf; - patches = stPatches; - }; - }; -in with self; stdenv.mkDerivation rec { - name = "velox-${version}"; - version = "git-2017-07-04"; - - src = fetchFromGitHub { - owner = "michaelforney"; - repo = "velox"; - rev = "0b1d3d62861653d92d0a1056855a84fcef661bc0"; - sha256 = "0p5ra5p5w21wl696rmv0vdnl7jnri5iwnxfs6nl6miwydhq2dmci"; - }; - - nativeBuildInputs = [ pkgconfig makeWrapper ]; - - buildInputs = [ swc libxkbcommon wld wayland pixman fontconfig ]; - - propagatedUserEnvPkgs = [ swc ]; - - makeFlags = "PREFIX=$(out)"; - preBuild = '' - substituteInPlace config.c \ - --replace /etc/velox.conf $out/etc/velox.conf - ''; - installPhase = '' - PREFIX=$out make install - mkdir -p $out/etc - cp velox.conf.sample $out/etc/velox.conf - ''; - postFixup = '' - wrapProgram $out/bin/velox \ - --prefix PATH : "${stdenv.lib.makeBinPath [ dmenu-velox st-velox ]}" - ''; - - enableParallelBuilding = false; # https://hydra.nixos.org/build/79799608 - - meta = { - description = "velox window manager"; - homepage = "https://github.com/michaelforney/velox"; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; - }; -} diff --git a/pkgs/applications/window-managers/velox/dmenu.nix b/pkgs/applications/window-managers/velox/dmenu.nix deleted file mode 100644 index 01360e5af0b..00000000000 --- a/pkgs/applications/window-managers/velox/dmenu.nix +++ /dev/null @@ -1,37 +0,0 @@ -{stdenv, fetchFromGitHub #, libX11, libXinerama, enableXft, libXft, zlib -, swc, wld, wayland, libxkbcommon, pixman, fontconfig -}: - -with stdenv.lib; - -stdenv.mkDerivation rec { - name = "dmenu-velox-${version}"; - version = "git-2017-04-07"; - - src = fetchFromGitHub { - owner = "michaelforney"; - repo = "dmenu"; - rev = "f385d9d18813071b4b4257bf8d4d572daeda0e70"; - sha256 = "14j8jv0nlybinhzkgd6dplvng9zy8p292prlx39w0k4fm6x5nv6y"; - }; - - buildInputs = [ swc wld wayland libxkbcommon pixman fontconfig ]; - - postPatch = '' - sed -ri -e 's!\<(dmenu|dmenu_path)\>!'"$out/bin"'/&!g' dmenu_run - ''; - - preConfigure = [ - ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g; s@/usr/share/swc@${swc}/share/swc@g" config.mk'' - ]; - - enableParallelBuilding = true; - - meta = { - description = "A generic, highly customizable, and efficient menu for the X Window System"; - homepage = https://tools.suckless.org/dmenu; - license = stdenv.lib.licenses.mit; - maintainers = with stdenv.lib.maintainers; [ ]; - platforms = with stdenv.lib.platforms; all; - }; -} diff --git a/pkgs/applications/window-managers/velox/st.nix b/pkgs/applications/window-managers/velox/st.nix deleted file mode 100644 index 2d73df65046..00000000000 --- a/pkgs/applications/window-managers/velox/st.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ stdenv, fetchFromGitHub, pkgconfig, writeText -, ncurses, wayland, wayland-protocols, wld, libxkbcommon, fontconfig, pixman -, conf, patches }: - -with stdenv.lib; - -stdenv.mkDerivation rec { - name = "st-velox-${version}"; - version = "git-2016-12-22"; - - src = fetchFromGitHub { - owner = "michaelforney"; - repo = "st"; - rev = "b27f17da65f74b0a923952601873524e03b4d047"; - sha256 = "17aa4bz5g14jvqghk2c8mw77hb8786s07pv814rmlk7nnsavmp3i"; - }; - - inherit patches; - - configFile = optionalString (conf!=null) (writeText "config.def.h" conf); - preBuild = optionalString (conf!=null) "cp ${configFile} config.def.h"; - - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ ncurses wayland wayland-protocols wld libxkbcommon fontconfig pixman ]; - - NIX_LDFLAGS = "-lfontconfig"; - - installPhase = '' - TERMINFO=$out/share/terminfo make install PREFIX=$out - ''; - - enableParallelBuilding = true; - - meta = { - homepage = https://st.suckless.org/; - license = licenses.mit; - maintainers = with maintainers; [ ]; - platforms = with platforms; linux; - }; -} diff --git a/pkgs/applications/window-managers/velox/swc.nix b/pkgs/applications/window-managers/velox/swc.nix deleted file mode 100644 index a2f98b8b65e..00000000000 --- a/pkgs/applications/window-managers/velox/swc.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, pkgconfig -, wld, wayland, wayland-protocols, fontconfig, pixman, libdrm, libinput, libevdev, libxkbcommon, libxcb, xcbutilwm -}: - -stdenv.mkDerivation rec { - name = "swc-${version}"; - version = "git-2017-06-28"; - - src = fetchFromGitHub { - owner = "michaelforney"; - repo = "swc"; - rev = "5b20050872f8ad29cfc97729f8af47b6b3df5393"; - sha256 = "1lxpm17v5d8png6ixc0zn0w00xgrhz2n5b8by9vx6800b18246z8"; - }; - - nativeBuildInputs = [ pkgconfig ]; - - buildInputs = [ wld wayland wayland-protocols fontconfig pixman libdrm libinput libevdev libxkbcommon libxcb xcbutilwm ]; - - prePatch = '' - substituteInPlace launch/local.mk --replace 4755 755 - ''; - - makeFlags = "PREFIX=$(out)"; - installPhase = "PREFIX=$out make install"; - - enableParallelBuilding = true; - - meta = { - description = "A library for making a simple Wayland compositor"; - homepage = src.meta.homepage; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; - }; -} diff --git a/pkgs/applications/window-managers/velox/wld.nix b/pkgs/applications/window-managers/velox/wld.nix deleted file mode 100644 index d85f8212ec4..00000000000 --- a/pkgs/applications/window-managers/velox/wld.nix +++ /dev/null @@ -1,32 +0,0 @@ -{ lib, stdenv, fetchFromGitHub, pkgconfig -, wayland, fontconfig, pixman, freetype, libdrm -}: - -stdenv.mkDerivation rec { - name = "wld-${version}"; - version = "git-2017-10-31"; - - src = fetchFromGitHub { - owner = "michaelforney"; - repo = "wld"; - rev = "b4e902bbecb678c45485b52c3aa183cbc932c595"; - sha256 = "0j2n776flnzyw3vhxl0r8h1c48wrihi4g6bs2z8j4hbw5pnwq1k6"; - }; - - nativeBuildInputs = [ pkgconfig ]; - - buildInputs = [ wayland fontconfig pixman freetype libdrm ]; - - makeFlags = "PREFIX=$(out)"; - installPhase = "PREFIX=$out make install"; - - enableParallelBuilding = true; - - meta = { - description = "A primitive drawing library targeted at Wayland"; - homepage = src.meta.homepage; - license = lib.licenses.mit; - platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e3d98b49275..05d53d3f811 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18448,11 +18448,6 @@ in pulseSupport = config.pulseaudio or false; }; - velox = callPackage ../applications/window-managers/velox { - stConf = config.st.conf or null; - stPatches = config.st.patches or null; - }; - i3 = callPackage ../applications/window-managers/i3 { xcb-util-cursor = if stdenv.isDarwin then xcb-util-cursor-HEAD else xcb-util-cursor; }; From dccd2ca171bb98d39d6866908d7b2c5ea9397613 Mon Sep 17 00:00:00 2001 From: gnidorah Date: Sun, 16 Jun 2019 19:18:24 +0300 Subject: [PATCH 0041/1611] wlc: put under way-cooler --- pkgs/applications/window-managers/way-cooler/default.nix | 4 +++- .../window-managers/way-cooler/wlc.nix} | 0 pkgs/top-level/all-packages.nix | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) rename pkgs/{development/libraries/wlc/default.nix => applications/window-managers/way-cooler/wlc.nix} (100%) diff --git a/pkgs/applications/window-managers/way-cooler/default.nix b/pkgs/applications/window-managers/way-cooler/default.nix index 8f35cb620ca..6ed9c526ba4 100644 --- a/pkgs/applications/window-managers/way-cooler/default.nix +++ b/pkgs/applications/window-managers/way-cooler/default.nix @@ -1,8 +1,10 @@ { stdenv, fetchurl, makeWrapper, symlinkJoin, writeShellScriptBin, callPackage, defaultCrateOverrides -, wayland, wlc, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk_pixbuf +, wayland, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk_pixbuf }: let + wlc = callPackage ./wlc.nix {}; + # refer to # https://github.com/way-cooler/way-cooler.github.io/blob/master/way-cooler-release-i3-default.sh # for version numbers diff --git a/pkgs/development/libraries/wlc/default.nix b/pkgs/applications/window-managers/way-cooler/wlc.nix similarity index 100% rename from pkgs/development/libraries/wlc/default.nix rename to pkgs/applications/window-managers/way-cooler/wlc.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05d53d3f811..5113f96502c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18436,7 +18436,6 @@ in super-productivity = callPackage ../applications/networking/super-productivity { }; - wlc = callPackage ../development/libraries/wlc { }; wlroots = callPackage ../development/libraries/wlroots { }; sway = callPackage ../applications/window-managers/sway { }; From 63fcc2a0a928a54a0068e9564bf3fe36005269f8 Mon Sep 17 00:00:00 2001 From: Ding Xiang Fei Date: Sat, 29 Jun 2019 19:17:21 +0800 Subject: [PATCH 0042/1611] apparmor: make apparmor cross-compile --- pkgs/os-specific/linux/apparmor/cross.patch | 19 +++++++++++++++++++ pkgs/os-specific/linux/apparmor/default.nix | 6 ++++-- 2 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 pkgs/os-specific/linux/apparmor/cross.patch diff --git a/pkgs/os-specific/linux/apparmor/cross.patch b/pkgs/os-specific/linux/apparmor/cross.patch new file mode 100644 index 00000000000..f7e95ecfb40 --- /dev/null +++ b/pkgs/os-specific/linux/apparmor/cross.patch @@ -0,0 +1,19 @@ +--- a/parser/libapparmor_re/Makefile 2018-10-14 07:38:06.000000000 +0800 ++++ b/parser/libapparmor_re/Makefile 2019-06-28 16:16:33.741916660 +0800 +@@ -10,6 +10,7 @@ + + TARGET=libapparmor_re.a + ++AR ?= ar + CFLAGS ?= -g -Wall -O2 ${EXTRA_CFLAGS} -std=gnu++0x + CXXFLAGS := ${CFLAGS} ${INCLUDE_APPARMOR} + +@@ -22,7 +23,7 @@ + UNITTESTS = tst_parse + + libapparmor_re.a: parse.o expr-tree.o hfa.o chfa.o aare_rules.o +- ar ${ARFLAGS} $@ $^ ++ ${AR} ${ARFLAGS} $@ $^ + + expr-tree.o: expr-tree.cc expr-tree.h + diff --git a/pkgs/os-specific/linux/apparmor/default.nix b/pkgs/os-specific/linux/apparmor/default.nix index ccad9795301..06c37d00d5e 100644 --- a/pkgs/os-specific/linux/apparmor/default.nix +++ b/pkgs/os-specific/linux/apparmor/default.nix @@ -49,7 +49,9 @@ let sha256 = "1m4dx901biqgnr4w4wz8a2z9r9dxyw7wv6m6mqglqwf2lxinqmp4"; }) # (alpine patches {1,4,5,6,8} are needed for apparmor 2.11, but not 2.12) - ]; + ] ++ [ + ./cross.patch + ]; # Set to `true` after the next FIXME gets fixed or this gets some # common derivation infra. Too much copy-paste to fix one by one. @@ -185,7 +187,7 @@ let ''; inherit patches; postPatch = "cd ./parser"; - makeFlags = ''LANGS= USE_SYSTEM=1 INCLUDEDIR=${libapparmor}/include''; + makeFlags = ''LANGS= USE_SYSTEM=1 INCLUDEDIR=${libapparmor}/include AR=${stdenv.cc.bintools.targetPrefix}ar''; installFlags = ''DESTDIR=$(out) DISTRO=unknown''; inherit doCheck; From e702468f6b73154b712b4ebdf5bc1410e6198eaf Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 22 Jun 2019 16:03:42 -0400 Subject: [PATCH 0043/1611] nixos/redmine: add database.createLocally option --- nixos/modules/services/misc/redmine.nix | 57 +++++++++++++++++++++---- nixos/tests/redmine.nix | 24 +---------- 2 files changed, 51 insertions(+), 30 deletions(-) diff --git a/nixos/modules/services/misc/redmine.nix b/nixos/modules/services/misc/redmine.nix index 91ddf2c3edf..b0cc11e7c8b 100644 --- a/nixos/modules/services/misc/redmine.nix +++ b/nixos/modules/services/misc/redmine.nix @@ -11,11 +11,11 @@ let production: adapter: ${cfg.database.type} database: ${cfg.database.name} - host: ${cfg.database.host} + host: ${if (cfg.database.type == "postgresql" && cfg.database.socket != null) then cfg.database.socket else cfg.database.host} port: ${toString cfg.database.port} username: ${cfg.database.user} password: #dbpass# - ${optionalString (cfg.database.socket != null) "socket: ${cfg.database.socket}"} + ${optionalString (cfg.database.type == "mysql2" && cfg.database.socket != null) "socket: ${cfg.database.socket}"} ''; configurationYml = pkgs.writeText "configuration.yml" '' @@ -50,6 +50,9 @@ let ''; }); + mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql2"; + pgsqlLocal = cfg.database.createLocally && cfg.database.type == "postgresql"; + in { @@ -169,13 +172,14 @@ in host = mkOption { type = types.str; - default = (if cfg.database.socket != null then "localhost" else "127.0.0.1"); + default = "localhost"; description = "Database host address."; }; port = mkOption { type = types.int; - default = 3306; + default = if cfg.database.type == "postgresql" then 5432 else 3306; + defaultText = "3306"; description = "Database host port."; }; @@ -213,10 +217,20 @@ in socket = mkOption { type = types.nullOr types.path; - default = null; + default = + if mysqlLocal then "/run/mysqld/mysqld.sock" + else if pgsqlLocal then "/run/postgresql" + else null; + defaultText = "/run/mysqld/mysqld.sock"; example = "/run/mysqld/mysqld.sock"; description = "Path to the unix socket file to use for authentication."; }; + + createLocally = mkOption { + type = types.bool; + default = true; + description = "Create the database and database user locally."; + }; }; }; }; @@ -227,11 +241,38 @@ in { assertion = cfg.database.passwordFile != null || cfg.database.password != "" || cfg.database.socket != null; message = "one of services.redmine.database.socket, services.redmine.database.passwordFile, or services.redmine.database.password must be set"; } - { assertion = cfg.database.socket != null -> (cfg.database.type == "mysql2"); - message = "Socket authentication is only available for the mysql2 database type"; + { assertion = cfg.database.createLocally -> cfg.database.user == cfg.user; + message = "services.redmine.database.user must be set to ${cfg.user} if services.redmine.database.createLocally is set true"; + } + { assertion = cfg.database.createLocally -> cfg.database.socket != null; + message = "services.redmine.database.socket must be set if services.redmine.database.createLocally is set to true"; + } + { assertion = cfg.database.createLocally -> cfg.database.host == "localhost"; + message = "services.redmine.database.host must be set to localhost if services.redmine.database.createLocally is set to true"; } ]; + services.mysql = mkIf mysqlLocal { + enable = true; + package = mkDefault pkgs.mariadb; + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { name = cfg.database.user; + ensurePermissions = { "${cfg.database.name}.*" = "ALL PRIVILEGES"; }; + } + ]; + }; + + services.postgresql = mkIf pgsqlLocal { + enable = true; + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { name = cfg.database.user; + ensurePermissions = { "DATABASE ${cfg.database.name}" = "ALL PRIVILEGES"; }; + } + ]; + }; + environment.systemPackages = [ cfg.package ]; # create symlinks for the basic directory layout the redmine package expects @@ -259,7 +300,7 @@ in ]; systemd.services.redmine = { - after = [ "network.target" (if cfg.database.type == "mysql2" then "mysql.service" else "postgresql.service") ]; + after = [ "network.target" ] ++ optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; wantedBy = [ "multi-user.target" ]; environment.RAILS_ENV = "production"; environment.RAILS_CACHE = "${cfg.stateDir}/cache"; diff --git a/nixos/tests/redmine.nix b/nixos/tests/redmine.nix index cbdb5c8d295..2d4df288b05 100644 --- a/nixos/tests/redmine.nix +++ b/nixos/tests/redmine.nix @@ -10,19 +10,9 @@ let mysqlTest = package: makeTest { machine = { config, pkgs, ... }: - { services.mysql.enable = true; - services.mysql.package = pkgs.mariadb; - services.mysql.ensureDatabases = [ "redmine" ]; - services.mysql.ensureUsers = [ - { name = "redmine"; - ensurePermissions = { "redmine.*" = "ALL PRIVILEGES"; }; - } - ]; - - services.redmine.enable = true; + { services.redmine.enable = true; services.redmine.package = package; services.redmine.database.type = "mysql2"; - services.redmine.database.socket = "/run/mysqld/mysqld.sock"; services.redmine.plugins = { redmine_env_auth = pkgs.fetchurl { url = https://github.com/Intera/redmine_env_auth/archive/0.7.zip; @@ -48,19 +38,9 @@ let pgsqlTest = package: makeTest { machine = { config, pkgs, ... }: - { services.postgresql.enable = true; - services.postgresql.ensureDatabases = [ "redmine" ]; - services.postgresql.ensureUsers = [ - { name = "redmine"; - ensurePermissions = { "DATABASE redmine" = "ALL PRIVILEGES"; }; - } - ]; - - services.redmine.enable = true; + { services.redmine.enable = true; services.redmine.package = package; services.redmine.database.type = "postgresql"; - services.redmine.database.host = ""; - services.redmine.database.port = 5432; services.redmine.plugins = { redmine_env_auth = pkgs.fetchurl { url = https://github.com/Intera/redmine_env_auth/archive/0.7.zip; From 26a5f320961f5c57f1797b17337f0fcc406ac50a Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 22 Jun 2019 16:16:24 -0400 Subject: [PATCH 0044/1611] nixos/redmine: cosmetic cleanup --- nixos/modules/services/misc/redmine.nix | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/nixos/modules/services/misc/redmine.nix b/nixos/modules/services/misc/redmine.nix index b0cc11e7c8b..24b9e27ac2d 100644 --- a/nixos/modules/services/misc/redmine.nix +++ b/nixos/modules/services/misc/redmine.nix @@ -1,8 +1,10 @@ { config, lib, pkgs, ... }: -with lib; - let + inherit (lib) mkDefault mkEnableOption mkIf mkOption types; + inherit (lib) concatStringsSep literalExample mapAttrsToList; + inherit (lib) optional optionalAttrs optionalString singleton versionAtLeast; + cfg = config.services.redmine; bundle = "${cfg.package}/share/redmine/bin/bundle"; @@ -58,11 +60,7 @@ in { options = { services.redmine = { - enable = mkOption { - type = types.bool; - default = false; - description = "Enable the Redmine service."; - }; + enable = mkEnableOption "Redmine"; # default to the 4.x series not forcing major version upgrade of those on the 3.x series package = mkOption { @@ -110,7 +108,8 @@ in description = '' Extra configuration in configuration.yml. - See https://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration + See + for details. ''; example = literalExample '' email_delivery: @@ -127,7 +126,8 @@ in description = '' Extra configuration in additional_environment.rb. - See https://svn.redmine.org/redmine/trunk/config/additional_environment.rb.example + See + for details. ''; example = literalExample '' config.logger.level = Logger::DEBUG @@ -273,8 +273,6 @@ in ]; }; - environment.systemPackages = [ cfg.package ]; - # create symlinks for the basic directory layout the redmine package expects systemd.tmpfiles.rules = [ "d '${cfg.stateDir}' 0750 ${cfg.user} ${cfg.group} - -" From 76a765d1a1876b2f3cd35c263af0c05d82326cff Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 09:45:42 -0700 Subject: [PATCH 0045/1611] gobject-introspection: 1.60.1 -> 1.60.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gobject-introspection/versions --- pkgs/development/libraries/gobject-introspection/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index b1fdb916b5c..43695d8db58 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -9,7 +9,7 @@ let pname = "gobject-introspection"; - version = "1.60.1"; + version = "1.60.2"; in with stdenv.lib; stdenv.mkDerivation rec { @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1cr4r3lh5alrks9q2ycs1kn2crnkhrhn2wrmibng6dndkr4x2i6q"; + sha256 = "172ymc1vbg2rclq1rszx4y32vm900nn1mc4qg1a4mqxjiwvf5pzz"; }; outputs = [ "out" "dev" "man" ]; From 903a46534af2e06c91c3b2dd5c53ec4ecd6129e8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 09:58:07 -0700 Subject: [PATCH 0046/1611] gpac: 0.7.1 -> 0.8.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gpac/versions --- pkgs/applications/video/gpac/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/gpac/default.nix b/pkgs/applications/video/gpac/default.nix index 7a8b66d2d28..1c625de0dbc 100644 --- a/pkgs/applications/video/gpac/default.nix +++ b/pkgs/applications/video/gpac/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, pkgconfig, zlib }: stdenv.mkDerivation rec { - version = "0.7.1"; + version = "0.8.0"; name = "gpac-${version}"; src = fetchFromGitHub { owner = "gpac"; repo = "gpac"; rev = "v${version}"; - sha256 = "197c5968p5bzvk0ga347fwgkqh4j1v3z65wlx65c5m9gwfxz2k2q"; + sha256 = "1w1dyrn6900yi8ngchfzy5hvxr6yc60blvdq8y8mczimmmq8khb5"; }; # this is the bare minimum configuration, as I'm only interested in MP4Box From b068f0b82d622d3ba1a9fb0d8463a1499b44bd10 Mon Sep 17 00:00:00 2001 From: cdyson37 Date: Mon, 1 Jul 2019 21:25:14 +0100 Subject: [PATCH 0047/1611] Delete build-node-package.nix I think this file was orphaned in in `daf76db4a57` "top-level: get rid of npm2nix build". I only noticed because it looked quite interesting and I couldn't find a way to use it! --- .../web/nodejs/build-node-package.nix | 333 ------------------ 1 file changed, 333 deletions(-) delete mode 100644 pkgs/development/web/nodejs/build-node-package.nix diff --git a/pkgs/development/web/nodejs/build-node-package.nix b/pkgs/development/web/nodejs/build-node-package.nix deleted file mode 100644 index 5ce324e7a60..00000000000 --- a/pkgs/development/web/nodejs/build-node-package.nix +++ /dev/null @@ -1,333 +0,0 @@ -{ stdenv, runCommand, nodejs, neededNatives}: - -{ - name, version ? "", src, - - # by default name of nodejs interpreter e.g. "nodejs-${name}" - namePrefix ? nodejs.interpreterName + "-", - - # Node package name - pkgName ? - if version != "" then stdenv.lib.removeSuffix "-${version}" name else - (builtins.parseDrvName name).name, - - # List or attribute set of dependencies - deps ? {}, - - # List or attribute set of peer depencies - peerDependencies ? {}, - - # List or attribute set of optional dependencies - optionalDependencies ? {}, - - # List of optional dependencies to skip - skipOptionalDependencies ? [], - - # Whether package is binary or library - bin ? false, - - # Additional flags passed to npm install - flags ? "", - - # Command to be run before shell hook - preShellHook ? "", - - # Command to be run after shell hook - postShellHook ? "", - - # Same as https://docs.npmjs.com/files/package.json#os - os ? [], - - # Same as https://docs.npmjs.com/files/package.json#cpu - cpu ? [], - - # Attribute set of already resolved deps (internal), - # for avoiding infinite recursion - resolvedDeps ? {}, - - ... -} @ args: - -with stdenv.lib; - -let - self = let - sources = runCommand "node-sources" {} '' - tar --no-same-owner --no-same-permissions -xf ${nodejs.src} - mv $(find . -type d -mindepth 1 -maxdepth 1) $out - ''; - - platforms = if os == [] then nodejs.meta.platforms else - fold (entry: platforms: - let - filterPlatforms = - stdenv.lib.platforms.${removePrefix "!" entry} or []; - in - # Ignore unknown platforms - if filterPlatforms == [] then (if platforms == [] then nodejs.meta.platforms else platforms) - else - if hasPrefix "!" entry then - subtractLists (intersectLists filterPlatforms nodejs.meta.platforms) platforms - else - platforms ++ (intersectLists filterPlatforms nodejs.meta.platforms) - ) [] os; - - mapDependencies = deps: f: rec { - # Convert deps to attribute set - attrDeps = if isAttrs deps then deps else - (listToAttrs (map (dep: nameValuePair dep.name dep) deps)); - - # All required node modules, without already resolved dependencies - # Also override with already resolved dependencies - requiredDeps = mapAttrs (name: dep: - dep.override { - resolvedDeps = resolvedDeps // { "${name}" = self; }; - } - ) (filterAttrs f (removeAttrs attrDeps (attrNames resolvedDeps))); - - # Recursive dependencies that we want to avoid with shim creation - recursiveDeps = filterAttrs f (removeAttrs attrDeps (attrNames requiredDeps)); - }; - - _dependencies = mapDependencies deps (name: dep: - dep.pkgName != pkgName); - _optionalDependencies = mapDependencies optionalDependencies (name: dep: - (builtins.tryEval dep).success && - !(elem dep.pkgName skipOptionalDependencies) - ); - _peerDependencies = mapDependencies peerDependencies (name: dep: - dep.pkgName != pkgName); - - requiredDependencies = - _dependencies.requiredDeps // - _optionalDependencies.requiredDeps // - _peerDependencies.requiredDeps; - - recursiveDependencies = - _dependencies.recursiveDeps // - _optionalDependencies.recursiveDeps // - _peerDependencies.recursiveDeps; - - patchShebangs = dir: '' - node=`type -p node` - coffee=`type -p coffee || true` - find -L ${dir} -type f -print0 | xargs -0 grep -Il . | \ - xargs sed --follow-symlinks -i \ - -e 's@#!/usr/bin/env node@#!'"$node"'@' \ - -e 's@#!/usr/bin/env coffee@#!'"$coffee"'@' \ - -e 's@#!/.*/node@#!'"$node"'@' \ - -e 's@#!/.*/coffee@#!'"$coffee"'@' || true - ''; - - in stdenv.mkDerivation ({ - inherit src; - - configurePhase = '' - runHook preConfigure - - ${patchShebangs "./"} - - # Some version specifiers (latest, unstable, URLs, file paths) force NPM - # to make remote connections or consult paths outside the Nix store. - # The following JavaScript replaces these by * to prevent that: - # Also some packages require a specific npm version because npm may - # resovle dependencies differently, but npm is not used by Nix for dependency - # reslution, so these requirements are dropped. - - ( - cat </dev/null || true - - mkdir ../build-dir - ( - cd ../build-dir - mkdir node_modules - - # Symlink or copy dependencies for node modules - # copy is needed if dependency has recursive dependencies, - # because node can't follow symlinks while resolving recursive deps. - ${concatMapStrings (dep: - if dep.recursiveDeps == [] then '' - ln -sv ${dep}/lib/node_modules/${dep.pkgName} node_modules/ - '' else '' - cp -R ${dep}/lib/node_modules/${dep.pkgName} node_modules/ - '' - ) (attrValues requiredDependencies)} - - # Create shims for recursive dependenceies - ${concatMapStrings (dep: '' - mkdir -p node_modules/${dep.pkgName} - cat > node_modules/${dep.pkgName}/package.json </dev/null || true - if [ -d "$out/lib/node_modules/.bin" ]; then - ln -sv $out/lib/node_modules/.bin $out/bin - ${patchShebangs "$out/lib/node_modules/.bin/*"} - fi - ) - - runHook postInstall - ''; - - preFixup = '' - find $out -type f -print0 | xargs -0 sed -i 's|${src}|${src.name}|g' - ''; - - shellHook = '' - ${preShellHook} - export PATH=${nodejs}/bin:$(pwd)/node_modules/.bin:$PATH - mkdir -p node_modules - ${concatMapStrings (dep: '' - ln -sfv ${dep}/lib/node_modules/${dep.pkgName} node_modules/ - '') (attrValues requiredDependencies)} - ${postShellHook} - ''; - - # Stipping does not make a lot of sense in node packages - dontStrip = true; - - meta = { - inherit platforms; - maintainers = [ stdenv.lib.maintainers.offline ]; - }; - - passthru.pkgName = pkgName; - } // (filterAttrs (n: v: all (k: n != k) ["deps" "resolvedDeps" "optionalDependencies"]) args) // { - name = namePrefix + name; - - # Run the node setup hook when this package is a build input - propagatedNativeBuildInputs = (args.propagatedNativeBuildInputs or []) ++ [ nodejs ]; - - nativeBuildInputs = - (args.nativeBuildInputs or []) ++ neededNatives ++ - (attrValues requiredDependencies); - - # Expose list of recursive dependencies upstream, up to the package that - # caused recursive dependency - recursiveDeps = - (flatten ( - map (dep: remove name dep.recursiveDeps) (attrValues requiredDependencies) - )) ++ - (attrNames recursiveDependencies); - }); - -in self From caf77ac57cb87a2ea69273cf36488fd41a7bc09c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 18:23:53 -0700 Subject: [PATCH 0048/1611] mopidy: 2.2.2 -> 2.2.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mopidy/versions --- pkgs/applications/audio/mopidy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index 9015a8c749a..c1379c57fe5 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -4,13 +4,13 @@ pythonPackages.buildPythonApplication rec { pname = "mopidy"; - version = "2.2.2"; + version = "2.2.3"; src = fetchFromGitHub { owner = "mopidy"; repo = "mopidy"; rev = "v${version}"; - sha256 = "01vl162c7ssf69b0m65ys9fxnsqnfa1whwbprnc063lkcnrnlkr1"; + sha256 = "0i9rpnlmgrnkgmr9hyx9sky9gzj2cjhay84a0yaijwcb9nmr8nnc"; }; nativeBuildInputs = [ wrapGAppsHook ]; From ceab72e21b98e2c39cfc952aad8348a1a18d8efe Mon Sep 17 00:00:00 2001 From: Ding Xiang Fei Date: Fri, 28 Jun 2019 02:15:42 +0800 Subject: [PATCH 0049/1611] dockerTools: use skopeo on the right platform --- pkgs/build-support/docker/default.nix | 49 ++++++++++++++++----------- 1 file changed, 29 insertions(+), 20 deletions(-) diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix index 72d0a61887e..ae3d93ff3db 100644 --- a/pkgs/build-support/docker/default.nix +++ b/pkgs/build-support/docker/default.nix @@ -1,37 +1,41 @@ { - symlinkJoin, + cacert, + callPackage, + closureInfo, coreutils, docker, e2fsprogs, findutils, go, - jshon, jq, + jshon, lib, - pkgs, - pigz, + moreutils, nix, - runCommand, + pigz, + referencesByPopularity, rsync, + runCommand, + runtimeShell, shadow, + skopeo, + stdenv, storeDir ? builtins.storeDir, + substituteAll, + symlinkJoin, utillinux, vmTools, writeReferencesToFile, - referencesByPopularity, writeScript, writeText, - closureInfo, - substituteAll, - runtimeShell }: # WARNING: this API is unstable and may be subject to backwards-incompatible changes in the future. rec { - examples = import ./examples.nix { - inherit pkgs buildImage pullImage shadowSetup buildImageWithNixDb; + examples = callPackage ./examples.nix { + inherit buildImage pullImage shadowSetup buildImageWithNixDb; }; pullImage = let @@ -57,13 +61,13 @@ rec { inherit imageDigest; imageName = finalImageName; imageTag = finalImageTag; - impureEnvVars = pkgs.stdenv.lib.fetchers.proxyImpureEnvVars; + impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars; outputHashMode = "flat"; outputHashAlgo = "sha256"; outputHash = sha256; - nativeBuildInputs = lib.singleton (pkgs.skopeo); - SSL_CERT_FILE = "${pkgs.cacert.out}/etc/ssl/certs/ca-bundle.crt"; + nativeBuildInputs = lib.singleton skopeo; + SSL_CERT_FILE = "${cacert.out}/etc/ssl/certs/ca-bundle.crt"; sourceURL = "docker://${imageName}@${imageDigest}"; destNameTag = "${finalImageName}:${finalImageTag}"; @@ -156,7 +160,8 @@ rec { postMount ? "", postUmount ? "" }: - vmTools.runInLinuxVM ( + let + result = vmTools.runInLinuxVM ( runCommand name { preVM = vmTools.createEmptyImage { size = diskSize; @@ -166,8 +171,6 @@ rec { nativeBuildInputs = [ utillinux e2fsprogs jshon rsync jq ]; } '' - rm -rf $out - mkdir disk mkfs /dev/${vmTools.hd} mount /dev/${vmTools.hd} disk @@ -250,6 +253,12 @@ rec { ${postUmount} ''); + in + runCommand name {} '' + mkdir -p $out + cd ${result} + cp layer.tar json VERSION $out + ''; exportImage = { name ? fromImage.name, fromImage, fromImageName ? null, fromImageTag ? null, diskSize ? 1024 }: runWithOverlay { @@ -489,7 +498,7 @@ rec { (cd layer; ${extraCommandsScript}) echo "Packing layer..." - mkdir $out + mkdir -p $out tar -C layer --hard-dereference --sort=name --mtime="@$SOURCE_DATE_EPOCH" -cf $out/layer.tar . # Compute the tar checksum and add it to the output json. @@ -670,7 +679,7 @@ rec { extraCommands; }; result = runCommand "docker-image-${baseName}.tar.gz" { - nativeBuildInputs = [ jshon pigz coreutils findutils jq ]; + nativeBuildInputs = [ jshon pigz coreutils findutils jq moreutils ]; # Image name and tag must be lowercase imageName = lib.toLower name; imageTag = if tag == null then "" else lib.toLower tag; @@ -784,7 +793,7 @@ rec { # originally this used `sed -i "1i$layerID" layer-list`, but # would fail if layer-list was completely empty. echo "$layerID/layer.tar" - ) | ${pkgs.moreutils}/bin/sponge layer-list + ) | sponge layer-list # Create image json and image manifest imageJson=$(cat ${baseJson} | jq ". + {\"rootfs\": {\"diff_ids\": [], \"type\": \"layers\"}}") From fef4dc526f72b9c71695efe535e44e085e34b2e9 Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Tue, 2 Jul 2019 03:07:08 -0600 Subject: [PATCH 0050/1611] nixos/programs/shell.nix: don't use unnecessary GNU-specific option --- nixos/modules/programs/shell.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/shell.nix b/nixos/modules/programs/shell.nix index 9842e2bef64..b7f7b91b5fb 100644 --- a/nixos/modules/programs/shell.nix +++ b/nixos/modules/programs/shell.nix @@ -12,7 +12,7 @@ with lib; '' # Set up the per-user profile. mkdir -m 0755 -p "$NIX_USER_PROFILE_DIR" - if [ "$(stat --printf '%u' "$NIX_USER_PROFILE_DIR")" != "$(id -u)" ]; then + if [ "$(stat -c '%u' "$NIX_USER_PROFILE_DIR")" != "$(id -u)" ]; then echo "WARNING: the per-user profile dir $NIX_USER_PROFILE_DIR should belong to user id $(id -u)" >&2 fi @@ -34,7 +34,7 @@ with lib; # Create the per-user garbage collector roots directory. NIX_USER_GCROOTS_DIR="/nix/var/nix/gcroots/per-user/$USER" mkdir -m 0755 -p "$NIX_USER_GCROOTS_DIR" - if [ "$(stat --printf '%u' "$NIX_USER_GCROOTS_DIR")" != "$(id -u)" ]; then + if [ "$(stat -c '%u' "$NIX_USER_GCROOTS_DIR")" != "$(id -u)" ]; then echo "WARNING: the per-user gcroots dir $NIX_USER_GCROOTS_DIR should belong to user id $(id -u)" >&2 fi From 234bf650c03596ba767cf7531065dc9d3b9ebf5c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 2 Jul 2019 03:28:02 -0700 Subject: [PATCH 0051/1611] python37Packages.deap: 1.2.2 -> 1.3.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-deap/versions --- pkgs/development/python-modules/deap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/deap/default.nix b/pkgs/development/python-modules/deap/default.nix index fbc915c8eb0..d67a9d48042 100644 --- a/pkgs/development/python-modules/deap/default.nix +++ b/pkgs/development/python-modules/deap/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "deap"; - version = "1.2.2"; + version = "1.3.0"; src = fetchPypi { inherit pname version; - sha256 = "95c63e66d755ec206c80fdb2908851c0bef420ee8651ad7be4f0578e9e909bcf"; + sha256 = "102r11pxb36xkq5bjv1lpkss77v278f5xdv6lvkbjdvqryydf3yd"; }; propagatedBuildInputs = [ numpy matplotlib ]; From 569a11b400a3b0afcffedf8517f66a172ce75b5b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 2 Jul 2019 06:32:14 -0700 Subject: [PATCH 0052/1611] python37Packages.owslib: 0.17.1 -> 0.18.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-owslib/versions --- pkgs/development/python-modules/owslib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/owslib/default.nix b/pkgs/development/python-modules/owslib/default.nix index 22b9360a56a..7921b0a7a14 100644 --- a/pkgs/development/python-modules/owslib/default.nix +++ b/pkgs/development/python-modules/owslib/default.nix @@ -1,11 +1,11 @@ { lib, buildPythonPackage, fetchPypi, dateutil, requests, pytz, pyproj , pytest } : buildPythonPackage rec { pname = "OWSLib"; - version = "0.17.1"; + version = "0.18.0"; src = fetchPypi { inherit pname version; - sha256 = "19dm6dxj9hsiq0bnb4d6ms3sh2hcss9d9fhpjgkwxzrw9mlzvrxj"; + sha256 = "018p2ypmpbbcgl0hp92s0vig1wirh41lj0wy62aafn5050pmqr7m"; }; buildInputs = [ pytest ]; From 63445c00d415f6b87a37e03928d98253e965076b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 2 Jul 2019 13:38:09 -0700 Subject: [PATCH 0053/1611] rednotebook: 2.8 -> 2.11.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rednotebook/versions --- pkgs/applications/editors/rednotebook/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix index de9a089ec8c..1b53bb7e7f0 100644 --- a/pkgs/applications/editors/rednotebook/default.nix +++ b/pkgs/applications/editors/rednotebook/default.nix @@ -5,13 +5,13 @@ buildPythonApplication rec { pname = "rednotebook"; - version = "2.8"; + version = "2.11.1"; src = fetchFromGitHub { owner = "jendrikseipp"; repo = "rednotebook"; rev = "v${version}"; - sha256 = "0k75lw3p6jx30ngvn8iipk1763gazkbrsad3fpl3sqppaqaggryj"; + sha256 = "04c7a0wgmdl88v9386y1052c38ajbkryiwhqps5lx34d4g7r6hm1"; }; # We have not packaged tests. From bdac12e2c387164c47fcdb756d97df3752101ac8 Mon Sep 17 00:00:00 2001 From: volth Date: Tue, 2 Jul 2019 23:35:02 +0000 Subject: [PATCH 0054/1611] graal8: 19.0.2 -> 19.1.0 --- .../development/compilers/graalvm/default.nix | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 06adde908f0..37709a332b9 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -4,7 +4,7 @@ }: let - version = "19.0.2"; + version = "19.1.0"; truffleMake = ./truffle.make; R = fetchurl { url = "http://cran.rstudio.com/src/base/R-3/R-3.5.1.tar.gz"; @@ -114,11 +114,11 @@ let rec { sha1 = "280c265b789e041c02e5c97815793dfc283fb1e6"; name = "LIBFFI_SOURCES_${sha1}/libffi-sources.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/libffi-3.2.1.tar.gz; } rec { sha1 = "8819cea8bfe22c9c63f55465e296b3855ea41786"; name = "TruffleJSON_${sha1}/trufflejson.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/trufflejson-20180130.jar; } rec { sha1 = "9712a8124c40298015f04a74f61b3d81a51513af"; name = "CHECKSTYLE_8.8_${sha1}/checkstyle-8.8.jar"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/checkstyle-8.8-all.jar; } - rec { sha1 = "d8fa9c04a7c3095b1a8013efd70d6b813fba51db"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-8.tar.gz; } - rec { sha1 = "8510f966695ec4221f83e9ff3fc1e303172f8740"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-8-linux-amd64.tar.gz; } + rec { sha1 = "158ba6f2b346469b5f8083d1700c3f55b8b9082c"; name = "VISUALVM_COMMON_${sha1}/visualvm-common.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-11.tar.gz; } + rec { sha1 = "eb5ffa476ed2f6fac0ecd4bb2ae32741f9646932"; name = "VISUALVM_PLATFORM_SPECIFIC_${sha1}/visualvm-platform-specific.tar.gz"; url = https://lafo.ssw.uni-linz.ac.at/pub/graal-external-deps/visualvm/visualvm-19_0_0-11-linux-amd64.tar.gz; } rec { sha1 = "e6e60889b7211a80b21052a249bd7e0f88f79fee"; name = "Java-WebSocket_${sha1}/java-websocket.jar"; url = mirror://maven/org/java-websocket/Java-WebSocket/1.3.9/Java-WebSocket-1.3.9.jar; } rec { sha1 = "7a4d00d5ec5febd252a6182e8b6e87a0a9821f81"; name = "ICU4J_${sha1}/icu4j.jar"; url = mirror://maven/com/ibm/icu/icu4j/62.1/icu4j-62.1.jar; } - # This duplication of asm with underscore and minus is totally weird + # This duplication of asm with underscore and minus is totally weird rec { sha1 = "c01b6798f81b0fc2c5faa70cbe468c275d4b50c7"; name = "ASM-6.2.1_${sha1}/asm-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1.jar; } rec { sha1 = "cee28077ac7a63d3de0b205ec314d83944ff6267"; name = "ASM-6.2.1_${sha1}/asm-6.2.1.sources.jar"; url = mirror://maven/org/ow2/asm/asm/6.2.1/asm-6.2.1-sources.jar; } rec { sha1 = "332b022092ecec53cdb6272dc436884b2d940615"; name = "ASM_TREE-6.2.1_${sha1}/asm-tree-6.2.1.jar"; url = mirror://maven/org/ow2/asm/asm-tree/6.2.1/asm-tree-6.2.1.jar; } @@ -145,10 +145,10 @@ let ]; graal-mxcachegit = [ - { sha256 = "1dyzxng70mfgfpl2blpjllmlqpdxi69jp7251z36lq36igin3lr2"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } - { sha256 = "1zyaaygzd8fc1a1684h75h21k8rs2rnhkr5y217wlazyd78j65nr"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } - { sha256 = "0kyzx5y2kag08m9vla5x117al9ijs10783qpnv8b7zr116fwi28h"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; } - { sha256 = "17gphvzsl08q3mn9gclvkkpcdkjir9bhnibls2x1cas0n5x3v4mw"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } + { sha256 = "0wmdqbiydrr3rhcxgfxa644gsdqndhmqqn93kw6l4c9yzgnkk3w1"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } + { sha256 = "0ai5x4n1c2lcfkfpp29zn1bcmp3khc5hvssyw1qr1l2zy79fxwjp"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } + { sha256 = "010079qsl6dff3yca8vlzcahq9z1ppyr758shjkm1f7izwphjv7p"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; } + { sha256 = "00r9wdd7xfj1q6w91kwz9zcaapi8hd6yq19inyq1jklab8r68psi"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } ]; ninja-syntax = python27.pkgs.buildPythonPackage rec { @@ -172,13 +172,13 @@ let in rec { mx = stdenv.mkDerivation rec { - version = "5.224.1"; + version = "5.224.10"; pname = "mx"; src = fetchFromGitHub { owner = "graalvm"; repo = "mx"; rev = version; - sha256 = "1gf8fbzn6mfg3p71mxx89ks4n6zlr6ia9zj2sq0dflp4aa0acx6q"; + sha256 = "13qa31flabsflsbjcm785zfxrgp6sgdxcmglz2bw0rcfcln00zq4"; }; nativeBuildInputs = [ makeWrapper ]; prePatch = '' @@ -217,13 +217,13 @@ in rec { }; jvmci8 = stdenv.mkDerivation rec { - version = "19-b04"; + version = "20-b04"; name = "jvmci-${version}"; src = fetchFromGitHub { owner = "graalvm"; repo = "graal-jvmci-8"; rev = "jvmci-${version}"; - sha256 = "062vd8cxs74nn47xcdymycb7vrlyk139g2rbhdayfw02jvvhanyv"; + sha256 = "1k9szvnl5j3vg645si7s9lb93bkfl4ifc2z8ngnlb23ircsn3qdx"; }; buildInputs = [ mx mercurial openjdk ]; postUnpack = '' @@ -289,7 +289,7 @@ in rec { owner = "oracle"; repo = "graal"; rev = "vm-${version}"; - sha256 = "168qqngxjri4qw3v6khlnfkl05rlynpflcjq1h3gq6rhasvgr92f"; + sha256 = "00142hyspgjblj8j49qmdvgc24193n0g95fh2if9c7574q3zspvd"; }; patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ]; buildInputs = [ mx zlib mercurial jvmci8 git clang llvm @@ -410,7 +410,7 @@ in rec { description = "High-Performance Polyglot VM"; license = licenses.gpl2; maintainers = with maintainers; [ volth hlolli ]; - platforms = [ "x86_64-linux" "aarch64-linux" ]; + platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; }; }; } From b9ea613f436588eae942b2986381e9766e682958 Mon Sep 17 00:00:00 2001 From: leo60228 Date: Thu, 10 Jan 2019 14:08:01 -0500 Subject: [PATCH 0055/1611] pytest: disable tests on pypy Bug in tests. See https://github.com/pytest-dev/pytest/issues/3460 --- pkgs/development/python-modules/pytest/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest/default.nix b/pkgs/development/python-modules/pytest/default.nix index c74d59fd992..96001a2d952 100644 --- a/pkgs/development/python-modules/pytest/default.nix +++ b/pkgs/development/python-modules/pytest/default.nix @@ -1,6 +1,6 @@ { stdenv, buildPythonPackage, pythonOlder, fetchPypi, attrs, hypothesis, py , setuptools_scm, setuptools, six, pluggy, funcsigs, isPy3k, more-itertools -, atomicwrites, mock, writeText, pathlib2, wcwidth, packaging +, atomicwrites, mock, writeText, pathlib2, wcwidth, packaging, isPyPy }: buildPythonPackage rec { version = "4.6.3"; @@ -22,6 +22,7 @@ buildPythonPackage rec { ++ stdenv.lib.optionals (!isPy3k) [ funcsigs ] ++ stdenv.lib.optionals (pythonOlder "3.6") [ pathlib2 ]; + doCheck = !isPyPy; # https://github.com/pytest-dev/pytest/issues/3460 checkPhase = '' runHook preCheck $out/bin/py.test -x testing/ -k "not test_collect_pyargs_with_testpaths" From f38fbf853f7043ba9cb7b25785f3bf3c221be019 Mon Sep 17 00:00:00 2001 From: leo60228 Date: Thu, 10 Jan 2019 14:09:27 -0500 Subject: [PATCH 0056/1611] numpy: enable on pypy (without tests) Some tests fail according to PyPy docs: http://doc.pypy.org/en/latest/faq.html#should-i-install-numpy-or-numpypy --- pkgs/development/python-modules/numpy/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix index d82adaeea28..a02e7ee4c5f 100644 --- a/pkgs/development/python-modules/numpy/default.nix +++ b/pkgs/development/python-modules/numpy/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchPypi, python, buildPythonPackage, gfortran, pytest, blas, writeTextFile }: +{ lib, fetchPypi, python, buildPythonPackage, gfortran, pytest, blas, writeTextFile, isPyPy }: let blasImplementation = lib.nameFromURL blas.name "-"; @@ -45,6 +45,8 @@ in buildPythonPackage rec { enableParallelBuilding = true; + doCheck = !isPyPy; # numpy 1.16+ hits a bug in pypy's ctypes, using either numpy or pypy HEAD fixes this (https://github.com/numpy/numpy/issues/13807) + checkPhase = '' runHook preCheck pushd dist From 93f185df6555de235e7d188682ea54767d8cfbc2 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Wed, 3 Jul 2019 12:26:47 -0700 Subject: [PATCH 0057/1611] nixos/nscd: no longer need to wait for readiness This postStart step was introduced on 2014-04-24 with the comment that "Nscd forks into the background before it's ready to accept connections." However, that was fixed upstream almost two months earlier, on 2014-03-03, with the comment that "This, along with setting the nscd service type to forking in its systemd configuration file, allows systemd to be certain that the nscd service is ready and is accepting connections." The fix was released several months later in glibc 2.20, which was merged in NixOS sometime before 15.09, so it certainly should be safe to remove this workaround by now. --- nixos/modules/services/system/nscd.nix | 9 --------- 1 file changed, 9 deletions(-) diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index fd1570d1198..d9444a279ea 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -75,15 +75,6 @@ in "${pkgs.glibc.bin}/sbin/nscd --invalidate hosts" ]; }; - - # Urgggggh... Nscd forks before opening its socket and writing - # its pid. So wait until it's ready. - postStart = - '' - while ! ${pkgs.glibc.bin}/sbin/nscd -g > /dev/null; do - sleep 0.2 - done - ''; }; }; From 597563d248470857470481681e3d187866c4a3b7 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Wed, 3 Jul 2019 12:39:48 -0700 Subject: [PATCH 0058/1611] nixos/nscd: let systemd manage directories Previously this module created both /var/db/nscd and /run/nscd using shell commands in a preStart script. Note that both of these paths are hard-coded in the nscd source. (Well, the latter is actually /var/run/nscd but /var/run is a symlink to /run so it works out the same.) /var/db/nscd is only used if the nscd.conf "persistent" option is turned on for one or more databases, which it is not in our default config file. I'm not even sure persistent mode can work under systemd, since `nscd --shutdown` is not synchronous so systemd will always unceremoniously kill nscd without reliably giving it time to mark the databases as unused. Nonetheless, if someone wants to use that option, they can ensure the directory exists using systemd.tmpfiles.rules. systemd can create /run/nscd for us with the RuntimeDirectory directive, with the added benefit of causing systemd to delete the directory on service stop or restart. The default value of RuntimeDirectoryMode is 755, the same as the mode which this module was using before. I don't think the `rm -f /run/nscd/nscd.pid` was necessary after NixOS switched to systemd and used its PIDFile directive, because systemd deletes the specified file after the service stops, and because the file can't persist across reboots since /run is a tmpfs. Even if the file still exists when nscd starts, it's only a problem if the pid it contains has been reused by another process, which is unlikely. Anyway, this change makes that deletion even less necessary, because now systemd deletes the entire /run/nscd directory when the service stops. --- nixos/modules/services/system/nscd.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index d9444a279ea..14644003539 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -51,13 +51,6 @@ in environment = { LD_LIBRARY_PATH = nssModulesPath; }; - preStart = - '' - mkdir -m 0755 -p /run/nscd - rm -f /run/nscd/nscd.pid - mkdir -m 0755 -p /var/db/nscd - ''; - restartTriggers = [ config.environment.etc.hosts.source config.environment.etc."nsswitch.conf".source @@ -67,6 +60,7 @@ in serviceConfig = { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd"; Type = "forking"; + RuntimeDirectory = "nscd"; PIDFile = "/run/nscd/nscd.pid"; Restart = "always"; ExecReload = From c2b76fa13cf7cacc16f1040f43d379402b518149 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 17 Jun 2019 23:12:07 +0200 Subject: [PATCH 0059/1611] darwin-frameworks: remove CF CoreFoundation is included by the stdenv, moving the decision of what version should be used there makes it possible to override it entirely rather then prepending flags like cf-private does which can be unreliable. --- pkgs/os-specific/darwin/apple-sdk/default.nix | 4 +- .../darwin/apple-sdk/frameworks.nix | 76 +++++++++---------- pkgs/top-level/darwin-packages.nix | 4 + 3 files changed, 44 insertions(+), 40 deletions(-) diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index 2e3ae22e0b2..908116e0c62 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -156,7 +156,7 @@ in rec { __propagatedImpureHostDeps = [ "/usr/lib/libXplugin.1.dylib" ]; propagatedBuildInputs = with frameworks; [ - OpenGL ApplicationServices Carbon IOKit pkgs.darwin.CF CoreGraphics CoreServices CoreText + OpenGL ApplicationServices Carbon IOKit CoreGraphics CoreServices CoreText ]; installPhase = '' @@ -222,7 +222,7 @@ in rec { bareFrameworks = stdenv.lib.mapAttrs framework (import ./frameworks.nix { inherit frameworks libs; - inherit (pkgs.darwin) CF cf-private libobjc; + inherit (pkgs.darwin) cf-private libobjc; }); frameworks = bareFrameworks // overrides bareFrameworks; diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix index 03c800b8dae..4ed85f903d6 100644 --- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix +++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix @@ -2,81 +2,81 @@ # Epic weird knot-tying happening here. # TODO: clean up the process for generating this and include it -{ frameworks, libs, CF, libobjc, cf-private }: +{ frameworks, libs, libobjc, cf-private }: with frameworks; with libs; { AGL = [ Carbon OpenGL ]; AVFoundation = [ ApplicationServices CoreGraphics ]; AVKit = []; Accounts = []; - AddressBook = [ Carbon CF ]; + AddressBook = [ Carbon ]; AppKit = [ AudioToolbox AudioUnit Foundation QuartzCore ]; AppKitScripting = []; AppleScriptKit = []; AppleScriptObjC = []; - AudioToolbox = [ CoreAudio CF CoreMIDI ]; - AudioUnit = [ AudioToolbox Carbon CoreAudio CF ]; + AudioToolbox = [ CoreAudio CoreMIDI ]; + AudioUnit = [ AudioToolbox Carbon CoreAudio ]; AudioVideoBridging = [ Foundation ]; Automator = []; - CFNetwork = [ CF ]; + CFNetwork = []; CalendarStore = []; Cocoa = [ AppKit ]; Collaboration = []; # Impure version of CoreFoundation, this should not be used unless another # framework includes headers that are not available in the pure version. CoreFoundation = []; - CoreAudio = [ CF IOKit ]; + CoreAudio = [ IOKit ]; CoreAudioKit = [ AudioUnit ]; CoreData = []; - CoreGraphics = [ Accelerate CF IOKit IOSurface SystemConfiguration ]; - CoreImage = [ ]; + CoreGraphics = [ Accelerate IOKit IOSurface SystemConfiguration ]; + CoreImage = []; CoreLocation = []; - CoreMIDI = [ CF ]; + CoreMIDI = []; CoreMIDIServer = []; - CoreMedia = [ ApplicationServices AudioToolbox AudioUnit CoreAudio CF CoreGraphics CoreVideo ]; - CoreMediaIO = [ CF CoreMedia ]; - CoreText = [ CF CoreGraphics ]; - CoreVideo = [ ApplicationServices CF CoreGraphics IOSurface OpenGL ]; + CoreMedia = [ ApplicationServices AudioToolbox AudioUnit CoreAudio CoreGraphics CoreVideo ]; + CoreMediaIO = [ CoreMedia ]; + CoreText = [ CoreGraphics ]; + CoreVideo = [ ApplicationServices CoreGraphics IOSurface OpenGL ]; CoreWLAN = [ SecurityFoundation ]; DVDPlayback = []; - DirectoryService = [ CF ]; - DiscRecording = [ CF CoreServices IOKit ]; + DirectoryService = []; + DiscRecording = [ CoreServices IOKit ]; DiscRecordingUI = []; - DiskArbitration = [ CF IOKit ]; + DiskArbitration = [ IOKit ]; EventKit = []; ExceptionHandling = []; FWAUserLib = []; - ForceFeedback = [ CF IOKit ]; + ForceFeedback = [ IOKit ]; Foundation = [ cf-private libobjc Security ApplicationServices SystemConfiguration ]; - GLKit = [ CF ]; + GLKit = [ ]; GLUT = [ OpenGL ]; GSS = []; GameController = []; GameKit = [ Foundation ]; Hypervisor = []; - ICADevices = [ Carbon CF IOBluetooth ]; + ICADevices = [ Carbon IOBluetooth ]; IMServicePlugIn = []; IOBluetoothUI = [ IOBluetooth ]; - IOKit = [ CF ]; - IOSurface = [ CF IOKit xpc ]; + IOKit = []; + IOSurface = [ IOKit xpc ]; ImageCaptureCore = []; - ImageIO = [ CF CoreGraphics ]; + ImageIO = [ CoreGraphics ]; InputMethodKit = [ Carbon ]; InstallerPlugins = []; InstantMessage = []; JavaFrameEmbedding = []; - JavaScriptCore = [ CF ]; + JavaScriptCore = []; Kerberos = []; - Kernel = [ CF IOKit ]; + Kernel = [ IOKit ]; LDAP = []; - LatentSemanticMapping = [ Carbon CF ]; + LatentSemanticMapping = [ Carbon ]; MapKit = []; - MediaAccessibility = [ CF CoreGraphics CoreText QuartzCore ]; - MediaToolbox = [ AudioToolbox AudioUnit CF CoreMedia ]; + MediaAccessibility = [ CoreGraphics CoreText QuartzCore ]; + MediaToolbox = [ AudioToolbox AudioUnit CoreMedia ]; Metal = []; MetalKit = [ ModelIO Metal ]; ModelIO = [ ]; - NetFS = [ CF ]; + NetFS = []; OSAKit = [ Carbon ]; OpenAL = []; OpenCL = [ IOSurface OpenGL ]; @@ -85,37 +85,37 @@ with frameworks; with libs; { PreferencePanes = []; PubSub = []; QTKit = [ CoreMediaIO CoreMedia MediaToolbox QuickTime VideoToolbox ]; - QuickLook = [ ApplicationServices CF ]; + QuickLook = [ ApplicationServices ]; SceneKit = []; ScreenSaver = []; Scripting = []; ScriptingBridge = []; - Security = [ CF IOKit ]; + Security = [ IOKit ]; SecurityFoundation = []; SecurityInterface = [ Security ]; - ServiceManagement = [ CF Security ]; + ServiceManagement = [ Security ]; Social = []; SpriteKit = []; StoreKit = []; SyncServices = []; - SystemConfiguration = [ CF Security ]; + SystemConfiguration = [ Security ]; TWAIN = [ Carbon ]; Tcl = []; - VideoDecodeAcceleration = [ CF CoreVideo ]; - VideoToolbox = [ CF CoreMedia CoreVideo ]; + VideoDecodeAcceleration = [ CoreVideo ]; + VideoToolbox = [ CoreMedia CoreVideo ]; WebKit = [ ApplicationServices Carbon JavaScriptCore OpenGL ]; # Umbrellas Accelerate = [ CoreWLAN IOBluetooth ]; - ApplicationServices = [ CF CoreServices CoreText ImageIO ]; - Carbon = [ ApplicationServices CF CoreServices Foundation IOKit Security QuartzCore ]; + ApplicationServices = [ CoreServices CoreText ImageIO ]; + Carbon = [ ApplicationServices CoreServices Foundation IOKit Security QuartzCore ]; CoreBluetooth = []; - CoreServices = [ CFNetwork CoreAudio CoreData CF DiskArbitration Security NetFS OpenDirectory ServiceManagement ]; + CoreServices = [ CFNetwork CoreAudio CoreData DiskArbitration Security NetFS OpenDirectory ServiceManagement ]; IOBluetooth = [ IOKit ]; JavaVM = []; OpenDirectory = []; Quartz = [ QuickLook QTKit ]; - QuartzCore = [ ApplicationServices CF CoreVideo OpenCL CoreImage Metal ]; + QuartzCore = [ ApplicationServices CoreVideo OpenCL CoreImage Metal ]; QuickTime = [ ApplicationServices AudioUnit Carbon CoreAudio CoreServices OpenGL QuartzCore ]; vmnet = []; diff --git a/pkgs/top-level/darwin-packages.nix b/pkgs/top-level/darwin-packages.nix index 1753ac9dc7a..cde23437011 100644 --- a/pkgs/top-level/darwin-packages.nix +++ b/pkgs/top-level/darwin-packages.nix @@ -10,6 +10,10 @@ in callPackage = newScope (darwin.apple_sdk.frameworks // darwin); + stdenvNoCF = stdenv.override { + extraBuildInputs = []; + }; + apple_sdk = callPackage ../os-specific/darwin/apple-sdk { }; binutils-unwrapped = callPackage ../os-specific/darwin/binutils { From 73d9cac3776b705c8d265b0c9c2ddaf18bc48b46 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 17 Jun 2019 23:09:06 +0200 Subject: [PATCH 0060/1611] darwin-frameworks: replace cf-private and move it's setup-hook The only remaining use-case for cf-private are symbols that are not available in the opensource build. This generally solved the problem because of it's setup-hook. --- .../cf-setup-hook.sh} | 9 +-- pkgs/os-specific/darwin/apple-sdk/default.nix | 6 +- .../darwin/apple-sdk/frameworks.nix | 6 +- .../os-specific/darwin/cf-private/default.nix | 58 ------------------- pkgs/top-level/darwin-packages.nix | 5 +- 5 files changed, 13 insertions(+), 71 deletions(-) rename pkgs/os-specific/darwin/{cf-private/setup-hook.sh => apple-sdk/cf-setup-hook.sh} (64%) delete mode 100644 pkgs/os-specific/darwin/cf-private/default.nix diff --git a/pkgs/os-specific/darwin/cf-private/setup-hook.sh b/pkgs/os-specific/darwin/apple-sdk/cf-setup-hook.sh similarity index 64% rename from pkgs/os-specific/darwin/cf-private/setup-hook.sh rename to pkgs/os-specific/darwin/apple-sdk/cf-setup-hook.sh index ae9ed5d1584..66e24fe5877 100644 --- a/pkgs/os-specific/darwin/cf-private/setup-hook.sh +++ b/pkgs/os-specific/darwin/apple-sdk/cf-setup-hook.sh @@ -1,12 +1,9 @@ -prependSearchPath() { - NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks ${NIX_CFLAGS_COMPILE}" -} - -linkWithRealCF() { +linkSystemCoreFoundationFramework() { + NIX_CFLAGS_COMPILE="-F@out@/Library/Frameworks $NIX_CFLAGS_COMPILE" # gross! many symbols (such as _OBJC_CLASS_$_NSArray) are defined in system CF, but not # in the opensource release # if the package needs private headers, we assume they also want to link with system CF NIX_LDFLAGS+=" /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation" } -preConfigureHooks+=(prependSearchPath linkWithRealCF) +preConfigureHooks+=(linkSystemCoreFoundationFramework) diff --git a/pkgs/os-specific/darwin/apple-sdk/default.nix b/pkgs/os-specific/darwin/apple-sdk/default.nix index 908116e0c62..4d33fc0f3f8 100644 --- a/pkgs/os-specific/darwin/apple-sdk/default.nix +++ b/pkgs/os-specific/darwin/apple-sdk/default.nix @@ -187,6 +187,10 @@ in rec { ]; }); + CoreFoundation = stdenv.lib.overrideDerivation super.CoreFoundation (drv: { + setupHook = ./cf-setup-hook.sh; + }); + CoreMedia = stdenv.lib.overrideDerivation super.CoreMedia (drv: { __propagatedImpureHostDeps = drv.__propagatedImpureHostDeps ++ [ "/System/Library/Frameworks/CoreImage.framework" @@ -222,7 +226,7 @@ in rec { bareFrameworks = stdenv.lib.mapAttrs framework (import ./frameworks.nix { inherit frameworks libs; - inherit (pkgs.darwin) cf-private libobjc; + inherit (pkgs.darwin) libobjc; }); frameworks = bareFrameworks // overrides bareFrameworks; diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix index 4ed85f903d6..28570714b60 100644 --- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix +++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix @@ -2,7 +2,7 @@ # Epic weird knot-tying happening here. # TODO: clean up the process for generating this and include it -{ frameworks, libs, libobjc, cf-private }: +{ frameworks, libs, libobjc, }: with frameworks; with libs; { AGL = [ Carbon OpenGL ]; @@ -47,8 +47,8 @@ with frameworks; with libs; { ExceptionHandling = []; FWAUserLib = []; ForceFeedback = [ IOKit ]; - Foundation = [ cf-private libobjc Security ApplicationServices SystemConfiguration ]; - GLKit = [ ]; + Foundation = [ libobjc CoreFoundation Security ApplicationServices SystemConfiguration ]; + GLKit = []; GLUT = [ OpenGL ]; GSS = []; GameController = []; diff --git a/pkgs/os-specific/darwin/cf-private/default.nix b/pkgs/os-specific/darwin/cf-private/default.nix deleted file mode 100644 index eb5f651a1a0..00000000000 --- a/pkgs/os-specific/darwin/cf-private/default.nix +++ /dev/null @@ -1,58 +0,0 @@ -{ CF, apple_sdk }: - -# cf-private is a bit weird, but boils down to CF with a weird setup-hook that -# makes a build link against the system CoreFoundation rather than our pure one. -# The reason it exists is that although our CF headers and build are pretty legit -# now, the underlying runtime is quite different. Apple's in a bit of flux around CF -# right now, and support three different backends for it: swift, "C", and an ObjC -# one. The former two can be built from public sources, but the ObjC one isn't really -# public. Unfortunately, it's also one of the core underpinnings of a lot of Mac- -# specific behavior, and defines a lot of symbols that some Objective C apps depend -# on, even though one might expect those symbols to derive from Foundation. So if -# your app relies on NSArray and several other basic ObjC types, it turns out that -# because of their magic "toll-free bridging" support, the symbols for those types -# live in CoreFoundation with an ObjC runtime. And because that isn't public, we have -# this hack in place to let people link properly anyway. Phew! -# -# This can be revisited if Apple ever decide to release the ObjC backend in a publicly -# buildable form. -# -# This doesn't really need to rebuild CF, but it's cheap, and adding a setup hook to -# an existing package was annoying. We need a buildEnv that knows how to add those -CF.overrideAttrs (orig: { - # PLEASE if you add things to this derivation, explain in reasonable detail why - # you're adding them and when the workaround can go away. This whole derivation is - # a workaround and if you don't explain what you're working around, it makes it - # very hard for people to clean it up later. - - name = "${orig.name}-private"; - setupHook = ./setup-hook.sh; - - # TODO: consider re-adding https://github.com/NixOS/nixpkgs/blob/master/pkgs/os-specific/darwin/apple-source-releases/CF/cf-bridging.patch - # once the missing headers are in and see if that fixes all need for this. - - # This can go away once https://bugs.swift.org/browse/SR-8741 happens, which is - # looking more likely these days with the friendly people at Apple! We only need - # the header because the setup hook takes care of linking us against a version - # of the framework with the functionality built into it. The main user I know of - # this is watchman, who can almost certainly switch to the pure CF once the header - # and functionality is merged in. - installPhase = orig.installPhase + '' - basepath="Library/Frameworks/CoreFoundation.framework/Headers" - - # Append the include at top level or nobody will notice the header we're about to add - sed -i '/CFNotificationCenter.h/a #include ' \ - "$out/$basepath/CoreFoundation.h" - - cp ${apple_sdk.frameworks.CoreFoundation}/$basepath/CFFileDescriptor.h $out/$basepath/CFFileDescriptor.h - '' + - # This one is less likely to go away, but I'll mention it anyway. The issue is at - # https://bugs.swift.org/browse/SR-8744, and the main user I know of is qtbase - '' - path="$basepath/CFURLEnumerator.h" - sed -i '/CFNotificationCenter.h/a #include ' \ - "$out/$basepath/CoreFoundation.h" - - cp ${apple_sdk.frameworks.CoreFoundation}/$path $out/$path - ''; -}) diff --git a/pkgs/top-level/darwin-packages.nix b/pkgs/top-level/darwin-packages.nix index cde23437011..5ef05061e8d 100644 --- a/pkgs/top-level/darwin-packages.nix +++ b/pkgs/top-level/darwin-packages.nix @@ -36,9 +36,8 @@ in libcxxabi = pkgs.libcxxabi; }; - cf-private = callPackage ../os-specific/darwin/cf-private { - inherit (darwin) CF apple_sdk; - }; + # TODO: remove alias. + cf-private = darwin.apple_sdk.frameworks.CoreFoundation; DarwinTools = callPackage ../os-specific/darwin/DarwinTools { }; From 8ea702a484b85dcb7bbf20e4d63ff102e55c74c4 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:11:03 +0200 Subject: [PATCH 0061/1611] darwin-frameworks: add import CoreFoundation to CoreServices --- pkgs/os-specific/darwin/apple-sdk/frameworks.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix index 28570714b60..c803bf42187 100644 --- a/pkgs/os-specific/darwin/apple-sdk/frameworks.nix +++ b/pkgs/os-specific/darwin/apple-sdk/frameworks.nix @@ -110,7 +110,8 @@ with frameworks; with libs; { ApplicationServices = [ CoreServices CoreText ImageIO ]; Carbon = [ ApplicationServices CoreServices Foundation IOKit Security QuartzCore ]; CoreBluetooth = []; - CoreServices = [ CFNetwork CoreAudio CoreData DiskArbitration Security NetFS OpenDirectory ServiceManagement ]; + # TODO: figure out which part of the umbrella depends on CoreFoundation and move it there. + CoreServices = [ CFNetwork CoreFoundation CoreAudio CoreData DiskArbitration Security NetFS OpenDirectory ServiceManagement ]; IOBluetooth = [ IOKit ]; JavaVM = []; OpenDirectory = []; From 8c6eef6328cc74c00d555c7e7b1ecf64feafd0c2 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:27:41 +0200 Subject: [PATCH 0062/1611] alacritty: remove cf-private --- pkgs/applications/misc/alacritty/default.nix | 8 +------- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/misc/alacritty/default.nix b/pkgs/applications/misc/alacritty/default.nix index 490c83bed07..dddf8d93412 100644 --- a/pkgs/applications/misc/alacritty/default.nix +++ b/pkgs/applications/misc/alacritty/default.nix @@ -24,9 +24,7 @@ wayland, # Darwin Frameworks - cf-private, AppKit, - CoreFoundation, CoreGraphics, CoreServices, CoreText, @@ -74,11 +72,7 @@ in buildRustPackage rec { ]; buildInputs = rpathLibs - ++ lib.optionals stdenv.isDarwin [ - AppKit CoreFoundation CoreGraphics CoreServices CoreText Foundation OpenGL - # Needed for CFURLResourceIsReachable symbols. - cf-private - ]; + ++ lib.optionals stdenv.isDarwin [ AppKit CoreGraphics CoreServices CoreText Foundation OpenGL ]; outputs = [ "out" "terminfo" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 09ded301f91..256e33e676c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -522,8 +522,7 @@ in alacritty = callPackage ../applications/misc/alacritty { inherit (xorg) libXcursor libXxf86vm libXi; - inherit (darwin) cf-private; - inherit (darwin.apple_sdk.frameworks) AppKit CoreFoundation CoreGraphics CoreServices CoreText Foundation OpenGL; + inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL; }; aldo = callPackage ../applications/radio/aldo { }; From f401da6af8e8896e685c62e57932cf807a123e72 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:30:07 +0200 Subject: [PATCH 0063/1611] atomicparsley: remove cf-private --- pkgs/tools/video/atomicparsley/default.nix | 8 ++------ pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/video/atomicparsley/default.nix b/pkgs/tools/video/atomicparsley/default.nix index f0ad4297c00..711a3c00a12 100644 --- a/pkgs/tools/video/atomicparsley/default.nix +++ b/pkgs/tools/video/atomicparsley/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchhg, autoreconfHook, zlib, cf-private, Cocoa }: +{ stdenv, fetchhg, autoreconfHook, zlib, Cocoa }: stdenv.mkDerivation rec { name = "atomicparsley-${version}"; @@ -12,11 +12,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ zlib ] - ++ stdenv.lib.optionals stdenv.isDarwin [ - Cocoa - # Needed for OBJC_CLASS_$_NSDictionary symbols. - cf-private - ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ]; configureFlags = stdenv.lib.optionals (stdenv.hostPlatform != stdenv.buildPlatform) [ # AC_FUNC_MALLOC is broken on cross builds. diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 256e33e676c..c992f13a4b3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -610,7 +610,6 @@ in }; atomicparsley = callPackage ../tools/video/atomicparsley { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa; }; From 6172dd89c86535a713829b73ae5b98fbf6d41d96 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:41:13 +0200 Subject: [PATCH 0064/1611] contacts: remove cf-private --- pkgs/tools/misc/contacts/default.nix | 9 ++------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/misc/contacts/default.nix b/pkgs/tools/misc/contacts/default.nix index b262626b136..a7d230d8e89 100644 --- a/pkgs/tools/misc/contacts/default.nix +++ b/pkgs/tools/misc/contacts/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, xcbuildHook, cf-private, Foundation, AddressBook }: +{ stdenv, fetchurl, xcbuildHook, Foundation, AddressBook }: stdenv.mkDerivation rec { version = "1.1a-3"; @@ -10,12 +10,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ xcbuildHook ]; - - buildInputs = [ - Foundation AddressBook - # Needed for OBJC_CLASS_$_NSArray symbols. - cf-private - ]; + buildInputs = [ Foundation AddressBook ]; installPhase = '' mkdir -p $out/bin diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c992f13a4b3..bcd1fc0a6b6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1329,7 +1329,6 @@ in codec2 = callPackage ../development/libraries/codec2 { }; contacts = callPackage ../tools/misc/contacts { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Foundation AddressBook; xcbuildHook = xcbuild6Hook; }; From 11bd54cda3258771f02f8c4263cc47d79b47f1f5 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:49:59 +0200 Subject: [PATCH 0065/1611] noti: remove cf-private --- pkgs/tools/misc/noti/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/noti/default.nix b/pkgs/tools/misc/noti/default.nix index 43165b4f54b..23646abe787 100644 --- a/pkgs/tools/misc/noti/default.nix +++ b/pkgs/tools/misc/noti/default.nix @@ -1,4 +1,4 @@ -{ stdenv, buildGoPackage, fetchFromGitHub, cf-private, Cocoa }: +{ stdenv, buildGoPackage, fetchFromGitHub, Cocoa }: buildGoPackage rec { name = "noti-${version}"; @@ -11,7 +11,7 @@ buildGoPackage rec { sha256 = "1chsqfqk0pnhx5k2nr4c16cpb8m6zv69l1jvv4v4903zgfzcm823"; }; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Cocoa cf-private /* For OBJC_CLASS_$_NSDate */ ]; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Cocoa ]; # TODO: Remove this when we update apple_sdk NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.isDarwin [ "-fno-objc-arc" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bcd1fc0a6b6..af4df503d7e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1739,7 +1739,6 @@ in noteshrink = callPackage ../tools/misc/noteshrink { }; noti = callPackage ../tools/misc/noti { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa; }; From 956c197ee613d0f6b4bff68d3e45765b5f0f01e1 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:50:52 +0200 Subject: [PATCH 0066/1611] dolphin-emu: remove cf-private --- pkgs/misc/emulators/dolphin-emu/master.nix | 4 ++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/dolphin-emu/master.nix b/pkgs/misc/emulators/dolphin-emu/master.nix index d44560b4ddf..6f32e91044c 100644 --- a/pkgs/misc/emulators/dolphin-emu/master.nix +++ b/pkgs/misc/emulators/dolphin-emu/master.nix @@ -5,7 +5,7 @@ , soundtouch, sfml, vulkan-loader ? null, libpulseaudio ? null # - Inputs used for Darwin -, CoreBluetooth, cf-private, ForceFeedback, IOKit, OpenGL, libpng, hidapi }: +, CoreBluetooth, ForceFeedback, IOKit, OpenGL, libpng, hidapi }: let desktopItem = makeDesktopItem { @@ -41,7 +41,7 @@ in stdenv.mkDerivation rec { ] ++ stdenv.lib.optionals stdenv.isLinux [ bluez udev libevdev alsaLib vulkan-loader ] ++ stdenv.lib.optionals stdenv.isDarwin [ - CoreBluetooth cf-private OpenGL ForceFeedback IOKit + CoreBluetooth OpenGL ForceFeedback IOKit ]; cmakeFlags = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index af4df503d7e..c5eb41b6a05 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2552,7 +2552,6 @@ in dolphinEmu = callPackage ../misc/emulators/dolphin-emu { }; dolphinEmuMaster = callPackage ../misc/emulators/dolphin-emu/master.nix { inherit (darwin.apple_sdk.frameworks) CoreBluetooth ForceFeedback IOKit OpenGL; - inherit (darwin) cf-private; }; doomseeker = qt5.callPackage ../applications/misc/doomseeker { }; From 41d1294eab95d5e0406ea6bfd9c033b8d564de8c Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:52:00 +0200 Subject: [PATCH 0067/1611] keybase: remove cf-private --- pkgs/tools/security/keybase/default.nix | 8 ++------ pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix index 02a322a1802..dc95ae706b2 100644 --- a/pkgs/tools/security/keybase/default.nix +++ b/pkgs/tools/security/keybase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchurl, cf-private +{ stdenv, lib, buildGoPackage, fetchurl , AVFoundation, AudioToolbox, ImageIO, CoreMedia , Foundation, CoreGraphics, MediaToolbox }: @@ -17,11 +17,7 @@ buildGoPackage rec { sha256 = "14c0876mxz3xa2k4d665kf8j6k3hc6qybkj0gr4pr9c9gs70cgjh"; }; - buildInputs = lib.optionals stdenv.isDarwin [ - AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox - # Needed for OBJC_CLASS_$_NSData symbols. - cf-private - ]; + buildInputs = lib.optionals stdenv.isDarwin [ AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox ]; buildFlags = [ "-tags production" ]; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c5eb41b6a05..d2aaf869efe 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3970,7 +3970,6 @@ in kexpand = callPackage ../development/tools/kexpand { }; keybase = callPackage ../tools/security/keybase { - inherit (darwin) cf-private; # Reasoning for the inherited apple_sdk.frameworks: # 1. specific compiler errors about: AVFoundation, AudioToolbox, MediaToolbox # 2. the rest are added from here: https://github.com/keybase/client/blob/68bb8c893c5214040d86ea36f2f86fbb7fac8d39/go/chat/attachments/preview_darwin.go#L7 From e7765ba8e5ca5731ea8c5d6bb44b5d7d0214f7f1 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:53:18 +0200 Subject: [PATCH 0068/1611] pinentry-mac: remove cf-private --- pkgs/tools/security/pinentry/mac.nix | 9 ++------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/security/pinentry/mac.nix b/pkgs/tools/security/pinentry/mac.nix index 8168aa94b3d..1fbb52985fb 100644 --- a/pkgs/tools/security/pinentry/mac.nix +++ b/pkgs/tools/security/pinentry/mac.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, xcbuildHook, libiconv, Cocoa, ncurses, cf-private }: +{ stdenv, fetchFromGitHub, xcbuildHook, libiconv, ncurses, Cocoa }: stdenv.mkDerivation rec { name = "pinentry-mac-0.9.4"; @@ -11,12 +11,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ xcbuildHook ]; - - buildInputs = [ - libiconv Cocoa ncurses - # Needed for OBJC_CLASS_$_NSArray symbols. - cf-private - ]; + buildInputs = [ libiconv ncurses Cocoa ]; installPhase = '' mkdir -p $out/Applications diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d2aaf869efe..431a0bebf53 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5283,7 +5283,6 @@ in }; pinentry_mac = callPackage ../tools/security/pinentry/mac.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa; xcbuildHook = xcbuild6Hook; }; From c2205238abde57996e4aba1085c4e76bbeb529c3 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:55:22 +0200 Subject: [PATCH 0069/1611] watchman: remove cf-private --- pkgs/development/tools/watchman/default.nix | 25 ++++++++++----------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 12 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/watchman/default.nix b/pkgs/development/tools/watchman/default.nix index b349ecf61e1..4a056db6c0c 100644 --- a/pkgs/development/tools/watchman/default.nix +++ b/pkgs/development/tools/watchman/default.nix @@ -1,12 +1,11 @@ -{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre, - libtool, pkgconfig, openssl, - confFile ? config.watchman.confFile or null, - withApple ? stdenv.isDarwin, CoreServices, CoreFoundation +{ stdenv, lib, config, fetchFromGitHub, autoconf, automake, pcre +, libtool, pkgconfig, openssl +, confFile ? config.watchman.confFile or null +, withApple ? stdenv.isDarwin, CoreServices }: stdenv.mkDerivation rec { name = "watchman-${version}"; - version = "4.9.0"; src = fetchFromGitHub { @@ -16,18 +15,18 @@ stdenv.mkDerivation rec { sha256 = "0fdaj5pmicm6j17d5q7px800m5rmam1a400x3hv1iiifnmhgnkal"; }; - buildInputs = [ pcre openssl ] - ++ lib.optionals withApple [ CoreFoundation CoreServices ]; nativeBuildInputs = [ autoconf automake pkgconfig libtool ]; + buildInputs = [ pcre openssl ] + ++ lib.optionals withApple [ CoreServices ]; configureFlags = [ - "--enable-lenient" - "--enable-conffile=${if confFile == null then "no" else confFile}" - "--with-pcre=yes" + "--enable-lenient" + "--enable-conffile=${if confFile == null then "no" else confFile}" + "--with-pcre=yes" - # For security considerations re: --disable-statedir, see: - # https://github.com/facebook/watchman/issues/178 - "--disable-statedir" + # For security considerations re: --disable-statedir, see: + # https://github.com/facebook/watchman/issues/178 + "--disable-statedir" ]; prePatch = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 431a0bebf53..0d1eaff6488 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6558,7 +6558,6 @@ in watchman = callPackage ../development/tools/watchman { inherit (darwin.apple_sdk.frameworks) CoreServices; - CoreFoundation = darwin.cf-private; }; wavefunctioncollapse = callPackage ../tools/graphics/wavefunctioncollapse {}; From 4b64dfaee99e042919c2a56892bb76585e799aff Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:56:22 +0200 Subject: [PATCH 0070/1611] cargo-web: remove cf-private --- pkgs/development/tools/cargo-web/default.nix | 8 ++------ pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/development/tools/cargo-web/default.nix b/pkgs/development/tools/cargo-web/default.nix index 262a3d31742..fa45ba689df 100644 --- a/pkgs/development/tools/cargo-web/default.nix +++ b/pkgs/development/tools/cargo-web/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, openssl, perl, pkgconfig, rustPlatform -, CoreServices, Security, cf-private +, CoreServices, Security }: rustPlatform.buildRustPackage rec { @@ -16,11 +16,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "1f4sj260q4rlzbajwimya1yhh90hmmbhr47yfg9i8xcv5cg0cqjn"; nativeBuildInputs = [ openssl perl pkgconfig ]; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ - CoreServices Security - # Needed for CFURLResourceIsReachable symbols. - cf-private - ]; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices Security ]; meta = with stdenv.lib; { description = "A Cargo subcommand for the client-side Web"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d1eaff6488..b9697376d74 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8032,7 +8032,6 @@ in cargo-web = callPackage ../development/tools/cargo-web { inherit (darwin.apple_sdk.frameworks) CoreServices Security; - inherit (darwin) cf-private; }; carnix = (callPackage ../build-support/rust/carnix.nix { }).carnix { }; From 7fffb620ace134e3e56a1b3cea0acadf9eebed85 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 19:56:59 +0200 Subject: [PATCH 0071/1611] flow: remove cf-private --- pkgs/development/tools/analysis/flow/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 62c781e1c9d..80cfd6231bf 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, ocamlPackages, cf-private, CoreServices }: +{ stdenv, fetchFromGitHub, ocamlPackages, CoreServices }: stdenv.mkDerivation rec { pname = "flow"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { ''; buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ]) - ++ stdenv.lib.optionals stdenv.isDarwin [ cf-private CoreServices ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; meta = with stdenv.lib; { description = "A static type checker for JavaScript"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b9697376d74..650062dc065 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9233,7 +9233,6 @@ in flow = callPackage ../development/tools/analysis/flow { inherit (darwin.apple_sdk.frameworks) CoreServices; - inherit (darwin) cf-private; }; foreman = callPackage ../tools/system/foreman { }; From 6f16de27d29a128c0e8115618176cded7fb571f2 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:01:18 +0200 Subject: [PATCH 0072/1611] ffmpeg-full: remove cf-private --- pkgs/development/libraries/ffmpeg-full/default.nix | 12 ++---------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix index db606cc02d6..e16aee9f5ca 100644 --- a/pkgs/development/libraries/ffmpeg-full/default.nix +++ b/pkgs/development/libraries/ffmpeg-full/default.nix @@ -139,7 +139,7 @@ * Darwin frameworks */ , Cocoa, CoreAudio, CoreServices, AVFoundation, MediaToolbox -, VideoDecodeAcceleration, cf-private +, VideoDecodeAcceleration }: /* Maintainer notes: @@ -419,7 +419,7 @@ stdenv.mkDerivation rec { ++ optional nvenc nv-codec-headers ++ optionals stdenv.isDarwin [ Cocoa CoreServices CoreAudio AVFoundation MediaToolbox VideoDecodeAcceleration - libiconv cf-private /* For _OBJC_EHTYPE_$_NSException */ ]; + libiconv ]; buildFlags = [ "all" ] ++ optional qtFaststartProgram "tools/qt-faststart"; # Build qt-faststart executable @@ -427,14 +427,6 @@ stdenv.mkDerivation rec { # Hacky framework patching technique borrowed from the phantomjs2 package postInstall = optionalString qtFaststartProgram '' cp -a tools/qt-faststart $out/bin/ - '' + optionalString stdenv.isDarwin '' - FILES=($(ls $out/bin/*)) - FILES+=($(ls $out/lib/*.dylib)) - for f in ''${FILES[@]}; do - if [ ! -h "$f" ]; then - install_name_tool -change ${cf-private}/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation "$f" - fi - done ''; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 650062dc065..ac138bd858f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10389,7 +10389,6 @@ in vid-stab = if stdenv.isDarwin then null else vid-stab; x265 = if stdenv.isDarwin then null else x265; xavs = if stdenv.isDarwin then null else xavs; - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices CoreAudio AVFoundation MediaToolbox VideoDecodeAcceleration; From 91b595945e6fe98fa3bea50aa07f6e0f217c6c47 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:05:27 +0200 Subject: [PATCH 0073/1611] fltk: remove cf-private --- pkgs/development/libraries/fltk/1.4.nix | 32 +++++++++------------ pkgs/development/libraries/fltk/default.nix | 31 +++++++++----------- pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 27 insertions(+), 38 deletions(-) diff --git a/pkgs/development/libraries/fltk/1.4.nix b/pkgs/development/libraries/fltk/1.4.nix index 3cdebe184d7..cad4419a26c 100644 --- a/pkgs/development/libraries/fltk/1.4.nix +++ b/pkgs/development/libraries/fltk/1.4.nix @@ -1,11 +1,13 @@ { stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi , freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng -, libtiff, freetype, cf-private, Cocoa, AGL, GLUT +, libtiff, freetype, Cocoa, AGL, GLUT }: let version = "1.4.x-r13121"; -in stdenv.mkDerivation { +in + +stdenv.mkDerivation { name = "fltk-${version}"; src = fetchurl { @@ -13,19 +15,16 @@ in stdenv.mkDerivation { sha256 = "1v8wxvxcbk99i82x2v5fpqg5vj8n7g8a38g30ry7nzcjn5sf3r63"; }; - preConfigure = "make clean"; - patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ]; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ] + ++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ]; - buildInputs = [ - libGLU_combined - libjpeg - zlib - libpng - libXft - ]; + propagatedBuildInputs = [ xorgproto ] + ++ (if stdenv.isDarwin + then [ freetype libtiff ] + else [ xlibsWrapper libXi freeglut ]); configureFlags = [ "--enable-gl" @@ -35,18 +34,15 @@ in stdenv.mkDerivation { "--enable-xft" ]; - propagatedBuildInputs = [ xorgproto ] - ++ (if stdenv.isDarwin - then [ Cocoa AGL GLUT freetype libtiff cf-private /* Needed for NSDefaultRunLoopMode */ ] - else [ xlibsWrapper libXi freeglut ]); + preConfigure = "make clean"; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { description = "A C++ cross-platform lightweight GUI library"; homepage = http://www.fltk.org; - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - license = stdenv.lib.licenses.gpl2; + platforms = platforms.linux ++ platforms.darwin; + license = licenses.gpl2; }; } diff --git a/pkgs/development/libraries/fltk/default.nix b/pkgs/development/libraries/fltk/default.nix index 60773d29d3d..bb9f8fe76c9 100644 --- a/pkgs/development/libraries/fltk/default.nix +++ b/pkgs/development/libraries/fltk/default.nix @@ -1,11 +1,13 @@ { stdenv, fetchurl, pkgconfig, xlibsWrapper, xorgproto, libXi , freeglut, libGLU_combined, libjpeg, zlib, libXft, libpng -, libtiff, freetype, cf-private, Cocoa, AGL, GLUT +, libtiff, freetype, Cocoa, AGL, GLUT }: let version = "1.3.5"; -in stdenv.mkDerivation { +in + +stdenv.mkDerivation { name = "fltk-${version}"; src = fetchurl { @@ -16,14 +18,13 @@ in stdenv.mkDerivation { patches = stdenv.lib.optionals stdenv.isDarwin [ ./nsosv.patch ]; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libGLU_combined libjpeg zlib libpng libXft ] + ++ stdenv.lib.optional stdenv.isDarwin [ AGL Cocoa GLUT ]; - buildInputs = [ - libGLU_combined - libjpeg - zlib - libpng - libXft - ]; + propagatedBuildInputs = [ xorgproto ] + ++ (if stdenv.isDarwin + then [ freetype libtiff ] + else [ xlibsWrapper libXi freeglut ]); configureFlags = [ "--enable-gl" @@ -33,18 +34,12 @@ in stdenv.mkDerivation { "--enable-xft" ]; - propagatedBuildInputs = [ xorgproto ] - ++ (if stdenv.isDarwin - then [ Cocoa AGL GLUT freetype libtiff cf-private /* Needed for NSDefaultRunLoopMode */ ] - else [ xlibsWrapper libXi freeglut ]); - enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { description = "A C++ cross-platform lightweight GUI library"; homepage = http://www.fltk.org; - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - license = stdenv.lib.licenses.gpl2; + platforms = platforms.linux ++ platforms.darwin; + license = licenses.gpl2; }; - } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ac138bd858f..298eb3f3843 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10416,11 +10416,9 @@ in flite = callPackage ../development/libraries/flite { }; fltk13 = callPackage ../development/libraries/fltk { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa AGL GLUT; }; fltk14 = callPackage ../development/libraries/fltk/1.4.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa AGL GLUT; }; fltk = res.fltk13; From c585330a2117f8a77d0ebfd2bf8011ef8a6144d7 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:10:14 +0200 Subject: [PATCH 0074/1611] glfw: remove cf-private --- pkgs/development/libraries/glfw/3.x.nix | 11 +++-------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/glfw/3.x.nix b/pkgs/development/libraries/glfw/3.x.nix index 668fe436e91..339ce1e5b12 100644 --- a/pkgs/development/libraries/glfw/3.x.nix +++ b/pkgs/development/libraries/glfw/3.x.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchFromGitHub, cmake, libGL, libXrandr, libXinerama, libXcursor, libX11 -, cf-private, Cocoa, Kernel, fixDarwinDylibNames +, Cocoa, Kernel, fixDarwinDylibNames }: stdenv.mkDerivation rec { @@ -19,13 +19,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - buildInputs = [ - libX11 libXrandr libXinerama libXcursor - ] ++ lib.optionals stdenv.isDarwin [ - Cocoa Kernel fixDarwinDylibNames - # Needed for NSDefaultRunLoopMode symbols. - cf-private - ]; + buildInputs = [ libX11 libXrandr libXinerama libXcursor ] + ++ lib.optionals stdenv.isDarwin [ Cocoa Kernel fixDarwinDylibNames ]; cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 298eb3f3843..7172ef4be8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10581,7 +10581,6 @@ in glfw = glfw3; glfw2 = callPackage ../development/libraries/glfw/2.x.nix { }; glfw3 = callPackage ../development/libraries/glfw/3.x.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa Kernel; }; From ecf667b34acb3dfc84cc8424d330213743785a96 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:11:51 +0200 Subject: [PATCH 0075/1611] libui: remove cf-private --- pkgs/development/libraries/libui/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libui/default.nix b/pkgs/development/libraries/libui/default.nix index dcc406accbd..446d30c609e 100644 --- a/pkgs/development/libraries/libui/default.nix +++ b/pkgs/development/libraries/libui/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, cmake, pkgconfig, gtk3, cf-private, Cocoa }: +{ stdenv, fetchgit, cmake, pkgconfig, gtk3, Cocoa }: let shortName = "libui"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig ]; buildInputs = stdenv.lib.optional stdenv.isLinux gtk3 - ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa cf-private /* For NSDefaultRunLoopMode */ ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa ]; preConfigure = stdenv.lib.optionalString stdenv.isDarwin '' sed -i 's/set(CMAKE_OSX_DEPLOYMENT_TARGET "10.8")//' ./CMakeLists.txt diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7172ef4be8c..81b7754fb03 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12056,7 +12056,6 @@ in libuecc = callPackage ../development/libraries/libuecc { }; libui = callPackage ../development/libraries/libui { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa; }; From 2f9a546b9682f4c729bada6650ff38ae1f2f34d5 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:14:17 +0200 Subject: [PATCH 0076/1611] opencv: remove cf-private --- pkgs/development/libraries/opencv/3.x.nix | 4 ++-- pkgs/development/libraries/opencv/4.x.nix | 4 ++-- pkgs/development/libraries/opencv/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 3 --- 4 files changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index 5e78f9f92ec..43a68abf825 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -31,7 +31,7 @@ , enableDC1394 ? false, libdc1394 , enableDocs ? false, doxygen, graphviz-nox -, cf-private, AVFoundation, Cocoa, VideoDecodeAcceleration, bzip2 +, AVFoundation, Cocoa, VideoDecodeAcceleration, bzip2 }: let @@ -206,7 +206,7 @@ stdenv.mkDerivation rec { ++ lib.optionals enableTesseract [ tesseract leptonica ] ++ lib.optional enableTbb tbb ++ lib.optional enableCuda cudatoolkit - ++ lib.optionals stdenv.isDarwin [ cf-private AVFoundation Cocoa VideoDecodeAcceleration bzip2 ] + ++ lib.optionals stdenv.isDarwin [ bzip2 AVFoundation Cocoa VideoDecodeAcceleration ] ++ lib.optionals enableDocs [ doxygen graphviz-nox ]; propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; diff --git a/pkgs/development/libraries/opencv/4.x.nix b/pkgs/development/libraries/opencv/4.x.nix index b4ad2bcb867..f96e6bf94bb 100644 --- a/pkgs/development/libraries/opencv/4.x.nix +++ b/pkgs/development/libraries/opencv/4.x.nix @@ -31,7 +31,7 @@ , enableDC1394 ? false, libdc1394 , enableDocs ? false, doxygen, graphviz-nox -, cf-private, AVFoundation, Cocoa, VideoDecodeAcceleration, bzip2 +, AVFoundation, Cocoa, VideoDecodeAcceleration, bzip2 }: let @@ -213,7 +213,7 @@ stdenv.mkDerivation rec { ++ lib.optionals enableTesseract [ tesseract leptonica ] ++ lib.optional enableTbb tbb ++ lib.optional enableCuda cudatoolkit - ++ lib.optionals stdenv.isDarwin [ cf-private AVFoundation Cocoa VideoDecodeAcceleration bzip2 ] + ++ lib.optionals stdenv.isDarwin [ bzip2 AVFoundation Cocoa VideoDecodeAcceleration ] ++ lib.optionals enableDocs [ doxygen graphviz-nox ]; propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; diff --git a/pkgs/development/libraries/opencv/default.nix b/pkgs/development/libraries/opencv/default.nix index 123b8807a74..784071c6e4d 100644 --- a/pkgs/development/libraries/opencv/default.nix +++ b/pkgs/development/libraries/opencv/default.nix @@ -10,7 +10,7 @@ , enableFfmpeg ? false, ffmpeg , enableGStreamer ? false, gst_all_1 , enableEigen ? true, eigen -, cf-private, Cocoa, QTKit +, Cocoa, QTKit }: let @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { ++ lib.optional enableFfmpeg ffmpeg ++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ]) ++ lib.optional enableEigen eigen - ++ lib.optionals stdenv.isDarwin [ Cocoa QTKit cf-private /* For NSDefaultRunLoopMode */ ] + ++ lib.optionals stdenv.isDarwin [ Cocoa QTKit ] ; propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 81b7754fb03..ea0ea7c6bb9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12516,12 +12516,10 @@ in openct = callPackage ../development/libraries/openct { }; opencv = callPackage ../development/libraries/opencv { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa QTKit; }; opencv3 = callPackage ../development/libraries/opencv/3.x.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AVFoundation Cocoa VideoDecodeAcceleration; }; @@ -12530,7 +12528,6 @@ in }; opencv4 = callPackage ../development/libraries/opencv/4.x.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AVFoundation Cocoa VideoDecodeAcceleration; }; From 0fb071fd00b9e043cc72bf74d8a4294ec0db425e Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:23:50 +0200 Subject: [PATCH 0077/1611] pcl: remove cf-private --- pkgs/development/libraries/pcl/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix index fd2b9feff68..33158129469 100644 --- a/pkgs/development/libraries/pcl/default.nix +++ b/pkgs/development/libraries/pcl/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, cmake , qhull, flann, boost, vtk, eigen, pkgconfig, qtbase -, libusb1, libpcap, libXt, libpng, Cocoa, AGL, cf-private, OpenGL +, libusb1, libpcap, libXt, libpng, Cocoa, AGL, OpenGL }: stdenv.mkDerivation rec { @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig cmake ]; buildInputs = [ qhull flann boost eigen libusb1 libpcap libpng vtk qtbase libXt ] + ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa AGL ]; - ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa AGL cf-private ]; cmakeFlags = stdenv.lib.optionals stdenv.isDarwin [ "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ea0ea7c6bb9..d27f2e5a7a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12611,7 +12611,6 @@ in pcg_c = callPackage ../development/libraries/pcg-c { }; pcl = libsForQt5.callPackage ../development/libraries/pcl { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa AGL OpenGL; }; From cbfbe9ca1ec40856c9456b11f2ee7f20a7d21f22 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:28:41 +0200 Subject: [PATCH 0078/1611] qt: remove cf-private --- pkgs/development/libraries/qt-4.x/4.8/default.nix | 4 ++-- pkgs/development/libraries/qt-5/5.11/default.nix | 10 +++------- pkgs/development/libraries/qt-5/5.12/default.nix | 10 +++------- pkgs/development/libraries/qt-5/5.6/default.nix | 5 +---- pkgs/development/libraries/qt-5/5.9/default.nix | 9 ++------- pkgs/development/libraries/qt-5/modules/qtbase.nix | 2 -- .../libraries/qt-5/modules/qtconnectivity.nix | 4 ++-- .../development/libraries/qt-5/modules/qtmacextras.nix | 6 ++---- .../development/libraries/qt-5/modules/qtwebengine.nix | 8 -------- pkgs/development/libraries/qt-5/modules/qtwebkit.nix | 2 +- pkgs/development/libraries/qt-5/modules/qtwebview.nix | 10 ++-------- pkgs/top-level/all-packages.nix | 6 +----- 12 files changed, 19 insertions(+), 57 deletions(-) diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index 34ef7463817..afd2a01e722 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -14,7 +14,7 @@ , examples ? false , demos ? false # darwin support -, cf-private, libobjc, ApplicationServices, OpenGL, Cocoa, AGL, libcxx +, libobjc, ApplicationServices, OpenGL, Cocoa, AGL, libcxx }: let @@ -189,7 +189,7 @@ stdenv.mkDerivation rec { postgresql sqlite libjpeg libmng libtiff icu ] ++ lib.optionals (mysql != null) [ mysql.connector-c ] ++ lib.optionals gtkStyle [ gtk2 gdk_pixbuf ] - ++ lib.optionals stdenv.isDarwin [ cf-private ApplicationServices OpenGL Cocoa AGL libcxx libobjc ]; + ++ lib.optionals stdenv.isDarwin [ ApplicationServices OpenGL Cocoa AGL libcxx libobjc ]; nativeBuildInputs = [ perl pkgconfig which ]; diff --git a/pkgs/development/libraries/qt-5/5.11/default.nix b/pkgs/development/libraries/qt-5/5.11/default.nix index f43329d3553..fe01b89081f 100644 --- a/pkgs/development/libraries/qt-5/5.11/default.nix +++ b/pkgs/development/libraries/qt-5/5.11/default.nix @@ -20,7 +20,7 @@ top-level attribute to `top-level/all-packages.nix`. stdenv, fetchurl, fetchFromGitHub, makeSetupHook, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, - cf-private, llvmPackages_5, + llvmPackages_5, # options developerBuild ? false, @@ -92,17 +92,13 @@ let }; qtcharts = callPackage ../modules/qtcharts.nix {}; - qtconnectivity = callPackage ../modules/qtconnectivity.nix { - inherit cf-private; - }; + qtconnectivity = callPackage ../modules/qtconnectivity.nix {}; qtdeclarative = callPackage ../modules/qtdeclarative.nix {}; qtdoc = callPackage ../modules/qtdoc.nix {}; qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {}; qtimageformats = callPackage ../modules/qtimageformats.nix {}; qtlocation = callPackage ../modules/qtlocation.nix { }; - qtmacextras = callPackage ../modules/qtmacextras.nix { - inherit cf-private; - }; + qtmacextras = callPackage ../modules/qtmacextras.nix {}; qtmultimedia = callPackage ../modules/qtmultimedia.nix { inherit gstreamer gst-plugins-base; }; diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix index 2aa7d0f71ee..57b89dd4386 100644 --- a/pkgs/development/libraries/qt-5/5.12/default.nix +++ b/pkgs/development/libraries/qt-5/5.12/default.nix @@ -20,7 +20,7 @@ top-level attribute to `top-level/all-packages.nix`. stdenv, fetchurl, fetchFromGitHub, makeSetupHook, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, - cf-private, llvmPackages_5, + llvmPackages_5, # options developerBuild ? false, @@ -97,17 +97,13 @@ let }; qtcharts = callPackage ../modules/qtcharts.nix {}; - qtconnectivity = callPackage ../modules/qtconnectivity.nix { - inherit cf-private; - }; + qtconnectivity = callPackage ../modules/qtconnectivity.nix {}; qtdeclarative = callPackage ../modules/qtdeclarative.nix {}; qtdoc = callPackage ../modules/qtdoc.nix {}; qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {}; qtimageformats = callPackage ../modules/qtimageformats.nix {}; qtlocation = callPackage ../modules/qtlocation.nix {}; - qtmacextras = callPackage ../modules/qtmacextras.nix { - inherit cf-private; - }; + qtmacextras = callPackage ../modules/qtmacextras.nix {}; qtmultimedia = callPackage ../modules/qtmultimedia.nix { inherit gstreamer gst-plugins-base; }; diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix index e493fc169ab..bf0ae42ea1f 100644 --- a/pkgs/development/libraries/qt-5/5.6/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -29,7 +29,6 @@ existing packages here and modify it as necessary. stdenv, fetchurl, fetchpatch, makeSetupHook, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, - cf-private, # options developerBuild ? false, @@ -133,9 +132,7 @@ let /* qtactiveqt = not packaged */ /* qtandroidextras = not packaged */ /* qtcanvas3d = not packaged */ - qtconnectivity = callPackage ../modules/qtconnectivity.nix { - inherit cf-private; - }; + qtconnectivity = callPackage ../modules/qtconnectivity.nix {}; qtdeclarative = callPackage ../modules/qtdeclarative.nix {}; qtdoc = callPackage ../modules/qtdoc.nix {}; qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {}; diff --git a/pkgs/development/libraries/qt-5/5.9/default.nix b/pkgs/development/libraries/qt-5/5.9/default.nix index 9baca8124bd..e59b6b90105 100644 --- a/pkgs/development/libraries/qt-5/5.9/default.nix +++ b/pkgs/development/libraries/qt-5/5.9/default.nix @@ -20,7 +20,6 @@ top-level attribute to `top-level/all-packages.nix`. stdenv, fetchurl, fetchpatch, makeSetupHook, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, - cf-private, # options developerBuild ? false, @@ -94,17 +93,13 @@ let }; qtcharts = callPackage ../modules/qtcharts.nix {}; - qtconnectivity = callPackage ../modules/qtconnectivity.nix { - inherit cf-private; - }; + qtconnectivity = callPackage ../modules/qtconnectivity.nix {}; qtdeclarative = callPackage ../modules/qtdeclarative.nix {}; qtdoc = callPackage ../modules/qtdoc.nix {}; qtgraphicaleffects = callPackage ../modules/qtgraphicaleffects.nix {}; qtimageformats = callPackage ../modules/qtimageformats.nix {}; qtlocation = callPackage ../modules/qtlocation.nix {}; - qtmacextras = callPackage ../modules/qtmacextras.nix { - inherit cf-private; - }; + qtmacextras = callPackage ../modules/qtmacextras.nix {}; qtmultimedia = callPackage ../modules/qtmultimedia.nix { inherit gstreamer gst-plugins-base; }; diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index 2c050a105b8..458946b803d 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -78,8 +78,6 @@ stdenv.mkDerivation { [ libinput ] ++ lib.optional withGtk3 gtk3 ) - # Needed for OBJC_CLASS_$_NSDate symbols. - ++ lib.optional stdenv.isDarwin darwin.cf-private ++ lib.optional developerBuild gdb ++ lib.optional (cups != null) cups ++ lib.optional (mysql != null) mysql.connector-c diff --git a/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix b/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix index 17e7f0ee7cf..36a736d03dc 100644 --- a/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix +++ b/pkgs/development/libraries/qt-5/modules/qtconnectivity.nix @@ -1,8 +1,8 @@ -{ qtModule, stdenv, qtbase, qtdeclarative, bluez, cf-private }: +{ qtModule, stdenv, qtbase, qtdeclarative, bluez }: qtModule { name = "qtconnectivity"; qtInputs = [ qtbase qtdeclarative ]; - buildInputs = if stdenv.isDarwin then [ cf-private ] else [ bluez ]; + buildInputs = stdenv.lib.optional stdenv.isLinux bluez; outputs = [ "out" "dev" "bin" ]; } diff --git a/pkgs/development/libraries/qt-5/modules/qtmacextras.nix b/pkgs/development/libraries/qt-5/modules/qtmacextras.nix index 3f254885986..11964caf17b 100644 --- a/pkgs/development/libraries/qt-5/modules/qtmacextras.nix +++ b/pkgs/development/libraries/qt-5/modules/qtmacextras.nix @@ -1,10 +1,8 @@ -{ stdenv, qtModule, qtbase, cf-private }: +{ stdenv, qtModule, qtbase }: qtModule { name = "qtmacextras"; - qtInputs = [ qtbase ] - # Needed for _OBJC_CLASS_$_NSData symbols. - ++ stdenv.lib.optional stdenv.isDarwin cf-private; + qtInputs = [ qtbase ]; meta = with stdenv.lib; { maintainers = with maintainers; [ periklis ]; platforms = platforms.darwin; diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix index aa9cdb4d5ae..07fd048d653 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix @@ -200,14 +200,6 @@ EOF (runCommand "MacOS_SDK_sandbox.h" {} '' install -Dm444 "${lib.getDev darwin.apple_sdk.sdk}"/include/sandbox.h "$out"/include/sandbox.h '') - - # For: - # _NSDefaultRunLoopMode - # _OBJC_CLASS_$_NSDate - # _OBJC_CLASS_$_NSDictionary - # _OBJC_CLASS_$_NSRunLoop - # _OBJC_CLASS_$_NSURL - darwin.cf-private ]); __impureHostDeps = optional stdenv.isDarwin "/usr/lib/libsandbox.1.dylib"; diff --git a/pkgs/development/libraries/qt-5/modules/qtwebkit.nix b/pkgs/development/libraries/qt-5/modules/qtwebkit.nix index 40f4c56e809..d65449023b3 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebkit.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebkit.nix @@ -28,7 +28,7 @@ qtModule { ++ optional (stdenv.isDarwin && lib.versionAtLeast qtbase.version "5.9.0") qtmultimedia ++ optional usingAnnulenWebkitFork qtwebchannel; buildInputs = [ fontconfig libwebp libxml2 libxslt sqlite glib gst_all_1.gstreamer gst_all_1.gst-plugins-base ] - ++ optionals (stdenv.isDarwin) (with darwin; with apple_sdk.frameworks; [ cf-private ICU OpenGL ]) + ++ optionals (stdenv.isDarwin) (with darwin; with apple_sdk.frameworks; [ ICU OpenGL ]) ++ optional usingAnnulenWebkitFork hyphen; nativeBuildInputs = [ bison2 flex gdb gperf perl pkgconfig python2 ruby diff --git a/pkgs/development/libraries/qt-5/modules/qtwebview.nix b/pkgs/development/libraries/qt-5/modules/qtwebview.nix index 6d5274cbc58..906d750c5d3 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebview.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebview.nix @@ -1,20 +1,14 @@ { darwin, stdenv, qtModule, qtdeclarative, qtwebengine }: with stdenv.lib; - + qtModule { name = "qtwebview"; qtInputs = [ qtdeclarative qtwebengine ]; buildInputs = optional (stdenv.isDarwin) [ darwin.apple_sdk.frameworks.CoreFoundation darwin.apple_sdk.frameworks.WebKit - - # For: - # _OBJC_CLASS_$_NSArray - # _OBJC_CLASS_$_NSDate - # _OBJC_CLASS_$_NSURL - darwin.cf-private ]; outputs = [ "out" "dev" "bin" ]; NIX_LDFLAGS = optionalString stdenv.isDarwin "-framework CoreFoundation -framework WebKit"; -} \ No newline at end of file +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d27f2e5a7a8..1f0ab6a2181 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12757,7 +12757,7 @@ in # XXX: mariadb doesn't built on fbsd as of nov 2015 mysql = if (!stdenv.isFreeBSD) then mysql else null; - inherit (pkgs.darwin) cf-private libobjc; + inherit (pkgs.darwin) libobjc; inherit (pkgs.darwin.apple_sdk.frameworks) ApplicationServices OpenGL Cocoa AGL; }; @@ -12783,7 +12783,6 @@ in harfbuzz = harfbuzzFull; inherit libGL; inherit perl; - inherit (darwin) cf-private; inherit (gst_all_1) gstreamer gst-plugins-base; }); @@ -12798,7 +12797,6 @@ in harfbuzz = harfbuzzFull; inherit libGL; inherit perl; - inherit (darwin) cf-private; inherit (gst_all_1) gstreamer gst-plugins-base; inherit gtk3; inherit (gnome3) dconf; @@ -12815,7 +12813,6 @@ in harfbuzz = harfbuzzFull; inherit libGL; inherit perl; - inherit (darwin) cf-private; inherit gtk3; inherit (gnome3) dconf; inherit (gst_all_1) gstreamer gst-plugins-base; @@ -12833,7 +12830,6 @@ in harfbuzz = harfbuzzFull; inherit libGL; inherit perl; - inherit (darwin) cf-private; inherit gtk3; inherit (gnome3) dconf; inherit (gst_all_1) gstreamer gst-plugins-base; From ee85cef108cb5d66e8f5a1ef7a33a87366b5e93e Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:30:21 +0200 Subject: [PATCH 0079/1611] SDL: remove cf-private --- pkgs/development/libraries/SDL/default.nix | 7 +------ pkgs/development/libraries/SDL2/default.nix | 8 ++------ pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 3 insertions(+), 14 deletions(-) diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix index fd3c6b47145..a8d5d608f89 100644 --- a/pkgs/development/libraries/SDL/default.nix +++ b/pkgs/development/libraries/SDL/default.nix @@ -6,7 +6,6 @@ , libXext, libICE, libXrandr , pulseaudioSupport ? config.pulseaudio or stdenv.isLinux && !stdenv.hostPlatform.isAndroid, libpulseaudio , OpenGL, CoreAudio, CoreServices, AudioUnit, Kernel, Cocoa -, cf-private }: # NOTE: When editing this expression see if the same change applies to @@ -41,11 +40,7 @@ stdenv.mkDerivation rec { buildInputs = [ ] ++ optional (!stdenv.hostPlatform.isMinGW && alsaSupport) audiofile - ++ optionals stdenv.isDarwin [ - AudioUnit CoreAudio CoreServices Kernel OpenGL - # Needed for NSDefaultRunLoopMode symbols. - cf-private - ]; + ++ optionals stdenv.isDarwin [ AudioUnit CoreAudio CoreServices Kernel OpenGL ]; configureFlags = [ "--disable-oss" diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix index a2db9c2349d..94aca192852 100644 --- a/pkgs/development/libraries/SDL2/default.nix +++ b/pkgs/development/libraries/SDL2/default.nix @@ -14,7 +14,7 @@ , pulseaudioSupport ? config.pulseaudio or stdenv.isLinux && !stdenv.hostPlatform.isAndroid , libpulseaudio , AudioUnit, Cocoa, CoreAudio, CoreServices, ForceFeedback, OpenGL -, audiofile, cf-private, libiconv +, audiofile, libiconv }: # NOTE: When editing this expression see if the same change applies to @@ -58,11 +58,7 @@ stdenv.mkDerivation rec { ++ dlopenBuildInputs ++ optional ibusSupport ibus ++ optional fcitxSupport fcitx - ++ optionals stdenv.isDarwin [ - AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL - # Needed for NSDefaultRunLoopMode symbols. - cf-private - ]; + ++ optionals stdenv.isDarwin [ AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL ]; enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1f0ab6a2181..12de4ba5eaa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13087,7 +13087,6 @@ in schroedinger = callPackage ../development/libraries/schroedinger { }; SDL = callPackage ../development/libraries/SDL ({ - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) OpenGL CoreAudio CoreServices AudioUnit Kernel Cocoa; } // lib.optionalAttrs stdenv.hostPlatform.isAndroid { # libGLU doesn’t work with Android’s SDL @@ -13111,7 +13110,6 @@ in SDL_ttf = callPackage ../development/libraries/SDL_ttf { }; SDL2 = callPackage ../development/libraries/SDL2 { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AudioUnit Cocoa CoreAudio CoreServices ForceFeedback OpenGL; }; From 72f2e6dc7b92479ce7bfc116ec0234dd5c5c0e39 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:33:40 +0200 Subject: [PATCH 0080/1611] sfml: remove cf-private --- pkgs/development/libraries/sfml/default.nix | 7 ++----- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/sfml/default.nix b/pkgs/development/libraries/sfml/default.nix index 8e1b9ae394b..1b043d33ad6 100644 --- a/pkgs/development/libraries/sfml/default.nix +++ b/pkgs/development/libraries/sfml/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, cmake, libX11, freetype, libjpeg, openal, flac, libvorbis , glew, libXrandr, libXrender, udev, xcbutilimage -, cf-private, IOKit, Foundation, AppKit, OpenAL +, IOKit, Foundation, AppKit, OpenAL }: let @@ -19,10 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ freetype libjpeg openal flac libvorbis glew ] ++ stdenv.lib.optional stdenv.isLinux udev ++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXrandr libXrender xcbutilimage ] - ++ stdenv.lib.optionals stdenv.isDarwin [ IOKit Foundation AppKit OpenAL - # Needed for _NSDefaultRunLoopMode, _OBJC_CLASS_$_NSArray, _OBJC_CLASS_$_NSDate - cf-private - ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ IOKit Foundation AppKit OpenAL ]; cmakeFlags = [ "-DSFML_INSTALL_PKGCONFIG_FILES=yes" "-DSFML_MISC_INSTALL_PREFIX=share/SFML" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 12de4ba5eaa..cdcdabba803 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13161,7 +13161,6 @@ in sfml = callPackage ../development/libraries/sfml { inherit (darwin.apple_sdk.frameworks) IOKit Foundation AppKit OpenAL; - inherit (darwin) cf-private; }; csfml = callPackage ../development/libraries/csfml { }; From 28f6abd7b3f8f4430db89113868017b60e4e6a40 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 20:41:49 +0200 Subject: [PATCH 0081/1611] vtk: remove cf-private --- pkgs/development/libraries/vtk/default.nix | 16 ++++++++-------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/vtk/default.nix b/pkgs/development/libraries/vtk/default.nix index 9843b1289cf..e2a82b7adcd 100644 --- a/pkgs/development/libraries/vtk/default.nix +++ b/pkgs/development/libraries/vtk/default.nix @@ -2,7 +2,7 @@ , qtLib ? null # Darwin support , Cocoa, CoreServices, DiskArbitration, IOKit, CFNetwork, Security, GLUT, OpenGL -, ApplicationServices, CoreText, IOSurface, cf-private, ImageIO, xpc, libobjc }: +, ApplicationServices, CoreText, IOSurface, ImageIO, xpc, libobjc }: with stdenv.lib; @@ -20,13 +20,13 @@ stdenv.mkDerivation rec { sha256 = "1hrjxkcvs3ap0bdhk90vymz5pgvxmg7q6sz8ab3wsyddbshr1abq"; }; - buildInputs = - if !stdenv.isDarwin - then [ cmake libGLU_combined libX11 xorgproto libXt ] ++ optional (qtLib != null) qtLib - else [ cmake qtLib xpc CoreServices DiskArbitration IOKit cf-private - CFNetwork Security ApplicationServices CoreText IOSurface ImageIO - OpenGL GLUT ]; - propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ Cocoa libobjc ]; + buildInputs = [ cmake ] + ++ optional (qtLib != null) qtLib + ++ optionals stdenv.isLinux [ libGLU_combined libX11 xorgproto libXt ] + ++ optionals stdenv.isDarwin [ xpc Cocoa CoreServices DiskArbitration IOKit + CFNetwork Security ApplicationServices CoreText + IOSurface ImageIO OpenGL GLUT ]; + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ libobjc ]; preBuild = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cdcdabba803..a73bf2e454c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13605,7 +13605,7 @@ in vte-ng = callPackage ../development/libraries/vte/ng.nix { }; vtk = callPackage ../development/libraries/vtk { - inherit (darwin) cf-private libobjc; + inherit (darwin) libobjc; inherit (darwin.apple_sdk.libs) xpc; inherit (darwin.apple_sdk.frameworks) Cocoa CoreServices DiskArbitration IOKit CFNetwork Security ApplicationServices From c558a74a1bde7eda118b2841b67ea19f5239092d Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 21:38:09 +0200 Subject: [PATCH 0082/1611] wxmac: fix build --- pkgs/development/libraries/wxwidgets/3.0/mac.nix | 11 ++--------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/pkgs/development/libraries/wxwidgets/3.0/mac.nix b/pkgs/development/libraries/wxwidgets/3.0/mac.nix index 7a32aba24ff..cbe8bd8ac5e 100644 --- a/pkgs/development/libraries/wxwidgets/3.0/mac.nix +++ b/pkgs/development/libraries/wxwidgets/3.0/mac.nix @@ -1,6 +1,6 @@ { stdenv, fetchzip, expat, libiconv, libjpeg, libpng, libtiff, zlib # darwin only attributes -, cf-private, derez, rez, setfile +, derez, rez, setfile , AGL, Cocoa, Kernel }: @@ -16,15 +16,9 @@ stdenv.mkDerivation rec { buildInputs = [ expat libiconv libjpeg libpng libtiff zlib derez rez setfile - Cocoa Kernel - - # Needed for CFURLGetFSRef, etc. which have deen deprecated - # since 10.9 and are not part of swift-corelibs CoreFoundation. - cf-private + AGL Cocoa Kernel ]; - propagatedBuildInputs = [ AGL ]; - postPatch = '' substituteInPlace configure --replace "-framework System" -lSystem ''; @@ -71,6 +65,5 @@ stdenv.mkDerivation rec { homepage = https://www.wxwidgets.org/; description = "a C++ library that lets developers create applications for Windows, macOS, Linux and other platforms with a single code base"; longDescription = "wxWidgets gives you a single, easy-to-use API for writing GUI applications on multiple platforms that still utilize the native platform's controls and utilities. Link with the appropriate library for your platform and compiler, and your application will adopt the look and feel appropriate to that platform. On top of great GUI functionality, wxWidgets gives you: online help, network programming, streams, clipboard and drag and drop, multithreading, image loading and saving in a variety of popular formats, database support, HTML viewing and printing, and much more."; - broken = true; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a73bf2e454c..9e566cfcc36 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13721,7 +13721,6 @@ in wxmac = callPackage ../development/libraries/wxwidgets/3.0/mac.nix { inherit (darwin.apple_sdk.frameworks) AGL Cocoa Kernel; inherit (darwin.stubs) setfile rez derez; - inherit (darwin) cf-private; }; wxSVG = callPackage ../development/libraries/wxSVG { From 40d34bb19f58bba2c3615d7e7b971d6b5ba4126d Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 21:44:58 +0200 Subject: [PATCH 0083/1611] xquartz: remove cf-private --- pkgs/servers/x11/quartz-wm/default.nix | 4 +--- pkgs/servers/x11/xquartz/default.nix | 7 +------ pkgs/top-level/all-packages.nix | 5 +---- 3 files changed, 3 insertions(+), 13 deletions(-) diff --git a/pkgs/servers/x11/quartz-wm/default.nix b/pkgs/servers/x11/quartz-wm/default.nix index 52cb1e750a6..92350595dd8 100644 --- a/pkgs/servers/x11/quartz-wm/default.nix +++ b/pkgs/servers/x11/quartz-wm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, xorg, pixman, pkgconfig, AppKit, Foundation, Xplugin, cf-private }: +{ stdenv, fetchurl, xorg, pixman, pkgconfig, AppKit, Foundation, Xplugin }: let version = "1.3.1"; in stdenv.mkDerivation { @@ -20,8 +20,6 @@ in stdenv.mkDerivation { pixman pkgconfig AppKit Xplugin Foundation - # Needed for CFNotificationCenterAddObserver symbols. - cf-private ]; meta = with stdenv.lib; { license = licenses.apsl20; diff --git a/pkgs/servers/x11/xquartz/default.nix b/pkgs/servers/x11/xquartz/default.nix index 22f6ce45673..f18a50fe7e9 100644 --- a/pkgs/servers/x11/xquartz/default.nix +++ b/pkgs/servers/x11/xquartz/default.nix @@ -1,7 +1,6 @@ { stdenv, buildEnv, makeFontsConf, gnused, writeScript, xorg, bashInteractive, xterm, makeWrapper, ruby , quartz-wm, fontconfig, xlsfonts, xfontsel , ttf_bitstream_vera, freefont_ttf, liberation_ttf -, cf-private , shell ? "${bashInteractive}/bin/bash" }: @@ -98,11 +97,7 @@ let in stdenv.mkDerivation { name = "xquartz-${stdenv.lib.getVersion xorg.xorgserver}"; - buildInputs = [ - ruby makeWrapper - # Needed for NSDefaultRunLoopMode symbols. - cf-private - ]; + nativeBuildInputs = [ ruby makeWrapper ]; unpackPhase = "sourceRoot=."; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9e566cfcc36..5d658a37b8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14896,13 +14896,10 @@ in xqilla = callPackage ../development/tools/xqilla { }; - xquartz = callPackage ../servers/x11/xquartz { - inherit (darwin) cf-private; - }; + xquartz = callPackage ../servers/x11/xquartz { }; quartz-wm = callPackage ../servers/x11/quartz-wm { stdenv = clangStdenv; - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AppKit Foundation; inherit (darwin.apple_sdk.libs) Xplugin; }; From 35b7c60c0c6f57bb073840a7529be7c272acf005 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 21:51:16 +0200 Subject: [PATCH 0084/1611] xorg-xorgserver: remove cf-private --- pkgs/servers/x11/xorg/overrides.nix | 8 ++------ pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 7b6299105b1..1da5c31c25f 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -5,7 +5,7 @@ libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm, mesa, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook, mcpp, epoxy, openssl, pkgconfig, llvm_6, - cf-private, ApplicationServices, Carbon, Cocoa, Xplugin + ApplicationServices, Carbon, Cocoa, Xplugin }: let @@ -469,11 +469,7 @@ self: super: sha256 = "1j1i3n5xy1wawhk95kxqdc54h34kg7xp4nnramba2q8xqfr5k117"; }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ xorgproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ] - ++ stdenv.lib.optionals stdenv.isDarwin [ - # Needed for NSDefaultRunLoopMode symbols. - cf-private - ]; + buildInputs = [ xorgproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ]; postPatch = stdenv.lib.optionalString stdenv.isLinux "sed '1i#include ' -i include/os.h"; meta.platforms = stdenv.lib.platforms.unix; } else throw "unsupported xorg abiCompat ${abiCompat} for ${attrs_passed.name}"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d658a37b8c..365f1e24085 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14909,7 +14909,6 @@ in # have created a cycle. xorg = recurseIntoAttrs ((lib.callPackageWith __splicedPackages ../servers/x11/xorg { }).overrideScope' (lib.callPackageWith __splicedPackages ../servers/x11/xorg/overrides.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) ApplicationServices Carbon Cocoa; inherit (darwin.apple_sdk.libs) Xplugin; inherit (buildPackages.darwin) bootstrap_cmds; From f2d2381838cb2d45653da0278eb36809b2c35cf0 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 21:55:10 +0200 Subject: [PATCH 0085/1611] emacs: remove cf-private --- pkgs/applications/editors/emacs/25.nix | 8 ++------ pkgs/applications/editors/emacs/default.nix | 8 ++------ pkgs/applications/editors/emacs/macport.nix | 4 +--- pkgs/top-level/all-packages.nix | 3 --- 4 files changed, 5 insertions(+), 18 deletions(-) diff --git a/pkgs/applications/editors/emacs/25.nix b/pkgs/applications/editors/emacs/25.nix index 852faeb7918..76009370473 100644 --- a/pkgs/applications/editors/emacs/25.nix +++ b/pkgs/applications/editors/emacs/25.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d , pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif , libtiff, librsvg, gconf, libxml2, imagemagick, gnutls, libselinux -, alsaLib, cairo, acl, gpm, cf-private, AppKit, GSS, ImageIO +, alsaLib, cairo, acl, gpm, AppKit, GSS, ImageIO , withX ? !stdenv.isDarwin , withGTK2 ? false, gtk2 ? null , withGTK3 ? true, gtk3 ? null, gsettings-desktop-schemas ? null @@ -62,11 +62,7 @@ stdenv.mkDerivation rec { ++ lib.optionals (withX && withGTK3) [ gtk3 gsettings-desktop-schemas ] ++ lib.optional (stdenv.isDarwin && withX) cairo ++ lib.optionals (withX && withXwidgets) [ webkitgtk24x-gtk3 glib-networking ] - ++ lib.optionals stdenv.isDarwin [ - AppKit GSS ImageIO - # Needed for CFNotificationCenterAddObserver symbols. - cf-private - ]; + ++ lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ]; hardeningDisable = [ "format" ]; diff --git a/pkgs/applications/editors/emacs/default.nix b/pkgs/applications/editors/emacs/default.nix index c2756eab961..2de76675c12 100644 --- a/pkgs/applications/editors/emacs/default.nix +++ b/pkgs/applications/editors/emacs/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm , Xaw3d, libXcursor, pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif , libtiff, librsvg, gconf, libxml2, imagemagick, gnutls, libselinux -, alsaLib, cairo, acl, gpm, cf-private, AppKit, GSS, ImageIO, m17n_lib, libotf +, alsaLib, cairo, acl, gpm, AppKit, GSS, ImageIO, m17n_lib, libotf , systemd ? null , withX ? !stdenv.isDarwin , withNS ? stdenv.isDarwin @@ -67,11 +67,7 @@ stdenv.mkDerivation rec { ++ lib.optionals (withX && withGTK3) [ gtk3-x11 gsettings-desktop-schemas ] ++ lib.optional (stdenv.isDarwin && withX) cairo ++ lib.optionals (withX && withXwidgets) [ webkitgtk ] - ++ lib.optionals withNS [ - AppKit GSS ImageIO - # Needed for CFNotificationCenterAddObserver symbols. - cf-private - ]; + ++ lib.optionals withNS [ AppKit GSS ImageIO ]; hardeningDisable = [ "format" ]; diff --git a/pkgs/applications/editors/emacs/macport.nix b/pkgs/applications/editors/emacs/macport.nix index 7c21c1cae5e..d51391595f4 100644 --- a/pkgs/applications/editors/emacs/macport.nix +++ b/pkgs/applications/editors/emacs/macport.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, ncurses, pkgconfig, texinfo, libxml2, gnutls, gettext, autoconf, automake -, cf-private, AppKit, Carbon, Cocoa, IOKit, OSAKit, Quartz, QuartzCore, WebKit +, AppKit, Carbon, Cocoa, IOKit, OSAKit, Quartz, QuartzCore, WebKit , ImageCaptureCore, GSS, ImageIO # These may be optional }: @@ -33,8 +33,6 @@ stdenv.mkDerivation rec { buildInputs = [ ncurses libxml2 gnutls texinfo gettext AppKit Carbon Cocoa IOKit OSAKit Quartz QuartzCore WebKit ImageCaptureCore GSS ImageIO # may be optional - # Needed for CFNotificationCenterAddObserver symbols. - cf-private ]; postUnpack = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 365f1e24085..afe8f6c6119 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17495,7 +17495,6 @@ in imagemagick = null; acl = null; gpm = null; - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AppKit GSS ImageIO; }; @@ -17514,7 +17513,6 @@ in imagemagick = null; acl = null; gpm = null; - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AppKit GSS ImageIO; }; @@ -17525,7 +17523,6 @@ in })); emacsMacport = callPackage ../applications/editors/emacs/macport.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa IOKit OSAKit Quartz QuartzCore WebKit ImageCaptureCore GSS ImageIO; From bea56ef8ba568d593cd8e8ffd4962c2358732bf4 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 22:19:04 +0200 Subject: [PATCH 0086/1611] gimp: remove cf-private --- pkgs/applications/graphics/gimp/default.nix | 6 ++---- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index a2a6fe3c14f..16b520fa7ed 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -3,7 +3,7 @@ , libmng, librsvg, libwmf, zlib, libzip, ghostscript, aalib, shared-mime-info , python2Packages, libexif, gettext, xorg, glib-networking, libmypaint, gexiv2 , harfbuzz, mypaint-brushes, libwebp, libheif, libgudev, openexr -, AppKit, Cocoa, gtk-mac-integration-gtk2, cf-private }: +, AppKit, Cocoa, gtk-mac-integration-gtk2 }: let inherit (python2Packages) pygtk wrapPython python; @@ -24,9 +24,7 @@ in stdenv.mkDerivation rec { libmng librsvg libwmf zlib libzip ghostscript aalib shared-mime-info libwebp libheif python pygtk libexif xorg.libXpm glib-networking libmypaint mypaint-brushes ] ++ stdenv.lib.optionals stdenv.isDarwin [ - # cf-private is needed to get some things not in swift-corefoundation. - # For instance _OBJC_CLASS_$_NSArray is missing. - AppKit Cocoa gtk-mac-integration-gtk2 cf-private + AppKit Cocoa gtk-mac-integration-gtk2 ] ++ stdenv.lib.optionals stdenv.isLinux [ libgudev ]; pythonPath = [ pygtk ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index afe8f6c6119..72fa652f17e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18119,7 +18119,6 @@ in gegl = gegl_0_4; lcms = lcms2; inherit (darwin.apple_sdk.frameworks) AppKit Cocoa; - inherit (darwin) cf-private; }; gimp-with-plugins = callPackage ../applications/graphics/gimp/wrapper.nix { From a73bfdf3a77730283345cfdd69d4d719c3cc16d2 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 22:20:47 +0200 Subject: [PATCH 0087/1611] kitty: remove cf-private --- pkgs/applications/misc/kitty/default.nix | 2 -- pkgs/top-level/all-packages.nix | 5 +---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/applications/misc/kitty/default.nix b/pkgs/applications/misc/kitty/default.nix index 9b77bdcd2a5..63e77ec0e67 100644 --- a/pkgs/applications/misc/kitty/default.nix +++ b/pkgs/applications/misc/kitty/default.nix @@ -9,7 +9,6 @@ IOKit, Kernel, OpenGL, - cf-private, libicns, libpng, librsvg, @@ -40,7 +39,6 @@ buildPythonApplication rec { IOKit Kernel OpenGL - cf-private libpng python3 zlib diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 72fa652f17e..1008b2e9f13 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18724,10 +18724,7 @@ in kipi-plugins = libsForQt5.callPackage ../applications/graphics/kipi-plugins { }; kitty = callPackage ../applications/misc/kitty { - harfbuzz = if stdenv.isDarwin then harfbuzz.override { - withCoreText = true; - } else harfbuzz; - inherit (darwin) cf-private; + harfbuzz = harfbuzz.override { withCoreText = stdenv.isDarwin; }; inherit (darwin.apple_sdk.frameworks) Cocoa CoreGraphics Foundation IOKit Kernel OpenGL; }; From 29e68d765bf5d281a301c9295694618545d1f828 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 22:21:48 +0200 Subject: [PATCH 0088/1611] synergy: fix darwin build --- pkgs/applications/misc/synergy/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/synergy/default.nix b/pkgs/applications/misc/synergy/default.nix index 25855c2a613..5f12bdb4dfc 100644 --- a/pkgs/applications/misc/synergy/default.nix +++ b/pkgs/applications/misc/synergy/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchFromGitHub, fetchpatch, fetchurl, cmake, xlibsWrapper -, ApplicationServices, Carbon, Cocoa, CoreServices, ScreenSaver, cf-private +, ApplicationServices, Carbon, Cocoa, CoreServices, ScreenSaver , libX11, libXi, libXtst, libXrandr, xinput, curl, openssl, unzip }: stdenv.mkDerivation rec { @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { buildInputs = [ cmake curl openssl ] ++ lib.optionals stdenv.isDarwin [ - ApplicationServices Carbon Cocoa CoreServices ScreenSaver cf-private + ApplicationServices Carbon Cocoa CoreServices ScreenSaver ] ++ lib.optionals stdenv.isLinux [ xlibsWrapper libX11 libXi libXtst libXrandr xinput ]; installPhase = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1008b2e9f13..bb3373a247f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20333,7 +20333,7 @@ in syncthing-tray = callPackage ../applications/misc/syncthing-tray { }; synergy = callPackage ../applications/misc/synergy { - inherit (darwin) cf-private; + stdenv = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; inherit (darwin.apple_sdk.frameworks) ApplicationServices Carbon Cocoa CoreServices ScreenSaver; }; From 1fc3bbcb0675cea93d9aeccb63b6ed2cc2239f8a Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:17:31 +0200 Subject: [PATCH 0089/1611] aminal: remove cf-private --- pkgs/applications/misc/aminal/default.nix | 8 +------- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/pkgs/applications/misc/aminal/default.nix b/pkgs/applications/misc/aminal/default.nix index 1c769e58705..8cb014bb021 100644 --- a/pkgs/applications/misc/aminal/default.nix +++ b/pkgs/applications/misc/aminal/default.nix @@ -2,7 +2,6 @@ , Carbon , Cocoa , Kernel -, cf-private , fetchFromGitHub , lib , mesa_glu @@ -25,12 +24,7 @@ buildGoPackage rec { xorg.libXinerama xorg.libXrandr xorg.libXxf86vm - ] ++ lib.optionals stdenv.isDarwin [ - Carbon - Cocoa - Kernel - cf-private /* Needed for NSDefaultRunLoopMode */ - ]; + ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel ]; src = fetchFromGitHub { owner = "liamg"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bb3373a247f..513ec3e3dd5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20407,7 +20407,6 @@ in aminal = callPackage ../applications/misc/aminal { inherit (darwin.apple_sdk.frameworks) Carbon Cocoa Kernel; - inherit (darwin) cf-private; }; termite-unwrapped = callPackage ../applications/misc/termite { }; From b0e201f349985d0357a89c7998352459266f80dd Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:18:39 +0200 Subject: [PATCH 0090/1611] vim: remove cf-private --- pkgs/applications/editors/vim/configurable.nix | 4 ++-- pkgs/applications/editors/vim/default.nix | 8 ++------ pkgs/top-level/all-packages.nix | 3 +-- 3 files changed, 5 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/editors/vim/configurable.nix b/pkgs/applications/editors/vim/configurable.nix index 5255b04fe5f..4d37b77f61b 100644 --- a/pkgs/applications/editors/vim/configurable.nix +++ b/pkgs/applications/editors/vim/configurable.nix @@ -10,7 +10,7 @@ , runtimeShell # apple frameworks -, CoreServices, CoreData, Cocoa, Foundation, libobjc, cf-private +, CoreServices, CoreData, Cocoa, Foundation, libobjc , features ? "huge" # One of tiny, small, normal, big or huge , wrapPythonDrv ? false @@ -132,7 +132,7 @@ in stdenv.mkDerivation rec { libXmu glib libICE ] ++ stdenv.lib.optional (guiSupport == "gtk2") gtk2-x11 ++ stdenv.lib.optional (guiSupport == "gtk3") gtk3-x11 - ++ stdenv.lib.optionals darwinSupport [ CoreServices CoreData Cocoa Foundation libobjc cf-private ] + ++ stdenv.lib.optionals darwinSupport [ CoreServices CoreData Cocoa Foundation libobjc ] ++ stdenv.lib.optional luaSupport lua ++ stdenv.lib.optional pythonSupport python ++ stdenv.lib.optional tclSupport tcl diff --git a/pkgs/applications/editors/vim/default.nix b/pkgs/applications/editors/vim/default.nix index 2f34a6ddeb6..26cd61d182b 100644 --- a/pkgs/applications/editors/vim/default.nix +++ b/pkgs/applications/editors/vim/default.nix @@ -6,7 +6,7 @@ sha256 = "18ifhv5q9prd175q3vxbqf6qyvkk6bc7d2lhqdk0q78i68kv9y0c"; } # apple frameworks -, cf-private, Carbon, Cocoa +, Carbon, Cocoa }: let @@ -19,11 +19,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ gettext pkgconfig ]; buildInputs = [ ncurses ] - ++ stdenv.lib.optionals stdenv.hostPlatform.isDarwin [ - Carbon Cocoa - # Needed for OBJC_CLASS_$_NSArray symbols. - cf-private - ]; + ++ stdenv.lib.optionals stdenv.hostPlatform.isDarwin [ Carbon Cocoa ]; configureFlags = [ "--enable-multibyte" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 513ec3e3dd5..3d2fee37f84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20603,7 +20603,6 @@ in }; vim = callPackage ../applications/editors/vim { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; }; @@ -20615,7 +20614,7 @@ in vim_configurable = vimUtils.makeCustomizable (callPackage ../applications/editors/vim/configurable.nix { inherit (darwin.apple_sdk.frameworks) CoreServices Cocoa Foundation CoreData; - inherit (darwin) libobjc cf-private; + inherit (darwin) libobjc; gtk2 = if stdenv.isDarwin then gtk2-x11 else gtk2; gtk3 = if stdenv.isDarwin then gtk3-x11 else gtk3; }); From bbf5f7e3dad2123c678bfdae70b3512f8133d3ad Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:19:13 +0200 Subject: [PATCH 0091/1611] zola: remove cf-private --- pkgs/applications/misc/zola/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 1 - 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/zola/default.nix b/pkgs/applications/misc/zola/default.nix index 48f5b216ea1..7418640e072 100644 --- a/pkgs/applications/misc/zola/default.nix +++ b/pkgs/applications/misc/zola/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices, cf-private }: +{ stdenv, fetchFromGitHub, rustPlatform, cmake, pkgconfig, openssl, CoreServices }: rustPlatform.buildRustPackage rec { pname = "zola"; @@ -14,7 +14,8 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "1brmlg6nqyls1v62z0fg0km150q9m7h71wy67lidcnw76icmqr24"; nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices cf-private ]; + buildInputs = [ openssl ] + ++ stdenv.lib.optional stdenv.isDarwin CoreServices; postInstall = '' install -D -m 444 completions/zola.bash \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d2fee37f84..125c89971aa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21270,7 +21270,6 @@ in zola = callPackage ../applications/misc/zola { inherit (darwin.apple_sdk.frameworks) CoreServices; - inherit (darwin) cf-private; }; zoom-us = libsForQt59.callPackage ../applications/networking/instant-messengers/zoom-us { }; From 56127c23c2ce78f8ae31f6e935716e001dbfc16d Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:20:34 +0200 Subject: [PATCH 0092/1611] gargoyle: remove cf-private --- pkgs/games/gargoyle/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/gargoyle/default.nix b/pkgs/games/gargoyle/default.nix index 62ea798e465..83a567fa578 100644 --- a/pkgs/games/gargoyle/default.nix +++ b/pkgs/games/gargoyle/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, substituteAll, jam, cctools, pkgconfig -, SDL, SDL_mixer, SDL_sound, cf-private, gtk2, libvorbis, smpeg }: +, SDL, SDL_mixer, SDL_sound, gtk2, libvorbis, smpeg }: let @@ -32,7 +32,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ jam pkgconfig ] ++ stdenv.lib.optional stdenv.isDarwin cctools; buildInputs = [ SDL SDL_mixer SDL_sound gtk2 ] - ++ stdenv.lib.optionals stdenv.isDarwin [ cf-private smpeg libvorbis ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ smpeg libvorbis ]; buildPhase = jamenv + "jam -j$NIX_BUILD_CORES"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 125c89971aa..6747577c294 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21541,7 +21541,7 @@ in garden-of-coloured-lights = callPackage ../games/garden-of-coloured-lights { allegro = allegro4; }; gargoyle = callPackage ../games/gargoyle { - inherit (darwin) cctools cf-private; + inherit (darwin) cctools; }; gav = callPackage ../games/gav { }; From da7bcec42f7c9223e36d8ed472f1201552c5d670 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:21:10 +0200 Subject: [PATCH 0093/1611] root: remove cf-private --- pkgs/applications/science/misc/root/5.nix | 4 ++-- pkgs/applications/science/misc/root/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/science/misc/root/5.nix b/pkgs/applications/science/misc/root/5.nix index 871f5ece9cf..0199373b082 100644 --- a/pkgs/applications/science/misc/root/5.nix +++ b/pkgs/applications/science/misc/root/5.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, fetchpatch, cmake, pcre, pkgconfig, python2 , libX11, libXpm, libXft, libXext, libGLU_combined, zlib, libxml2, lzma, gsl_1 -, Cocoa, OpenGL, cf-private, noSplash ? false }: +, Cocoa, OpenGL, noSplash ? false }: stdenv.mkDerivation rec { name = "root-${version}"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ cmake pcre python2 zlib libxml2 lzma gsl_1 ] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU_combined ] - ++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL cf-private ] + ++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ] ; patches = [ diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix index 8b9573ce4e8..2ec1ded68a2 100644 --- a/pkgs/applications/science/misc/root/default.nix +++ b/pkgs/applications/science/misc/root/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, cmake, pcre, pkgconfig, python2 , libX11, libXpm, libXft, libXext, libGLU_combined, zlib, libxml2, lz4, lzma, gsl, xxHash -, Cocoa, OpenGL, cf-private, noSplash ? false }: +, Cocoa, OpenGL, noSplash ? false }: stdenv.mkDerivation rec { name = "root-${version}"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ cmake pcre python2 zlib libxml2 lz4 lzma gsl xxHash ] ++ stdenv.lib.optionals (!stdenv.isDarwin) [ libX11 libXpm libXft libXext libGLU_combined ] - ++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL cf-private ] + ++ stdenv.lib.optionals (stdenv.isDarwin) [ Cocoa OpenGL ] ; patches = [ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6747577c294..44b78298f6b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23013,13 +23013,11 @@ in ns-3 = callPackage ../development/libraries/science/networking/ns3 { }; root = callPackage ../applications/science/misc/root { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL; stdenv = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; }; root5 = lowPrio (callPackage ../applications/science/misc/root/5.nix { - inherit (darwin) cf-private; inherit (darwin.apple_sdk.frameworks) Cocoa OpenGL; stdenv = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; }); From df23db89563da90e59b56ab1a4b99787c4147d99 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Wed, 19 Jun 2019 23:22:08 +0200 Subject: [PATCH 0094/1611] jack2: remove cf-private --- pkgs/misc/jackaudio/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/jackaudio/default.nix b/pkgs/misc/jackaudio/default.nix index fb7c26a6d7a..f246c41d965 100644 --- a/pkgs/misc/jackaudio/default.nix +++ b/pkgs/misc/jackaudio/default.nix @@ -3,7 +3,7 @@ , bash, libsamplerate, libsndfile, readline, eigen, celt , wafHook # Darwin Dependencies -, aften, AudioUnit, CoreAudio, cf-private, libobjc, Accelerate +, aften, AudioUnit, CoreAudio, libobjc, Accelerate # Optional Dependencies , dbus ? null, libffado ? null, alsaLib ? null @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { buildInputs = [ libsamplerate libsndfile readline eigen celt optDbus optPythonDBus optLibffado optAlsaLib optLibopus ] ++ optionals stdenv.isDarwin [ - aften AudioUnit CoreAudio Accelerate cf-private libobjc + aften AudioUnit CoreAudio Accelerate libobjc ]; prePatch = '' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 44b78298f6b..4c07fa2bc1b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23353,7 +23353,7 @@ in jack2 = callPackage ../misc/jackaudio { libopus = libopus.override { withCustomModes = true; }; inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio Accelerate; - inherit (darwin) cf-private libobjc; + inherit (darwin) libobjc; }; libjack2 = jack2.override { prefix = "lib"; }; jack2Full = jack2; # TODO: move to aliases.nix From 4e7695fc69856ddea7b945dbd35698452e89ffea Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:33:52 +0200 Subject: [PATCH 0095/1611] darwin.trash: remove cf-private --- pkgs/os-specific/darwin/trash/default.nix | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/pkgs/os-specific/darwin/trash/default.nix b/pkgs/os-specific/darwin/trash/default.nix index 4044ee4d0dd..fcbcfe00a3e 100644 --- a/pkgs/os-specific/darwin/trash/default.nix +++ b/pkgs/os-specific/darwin/trash/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, perl, cf-private, AppKit, Cocoa, ScriptingBridge }: +{ stdenv, fetchFromGitHub, perl, AppKit, Cocoa, ScriptingBridge }: stdenv.mkDerivation rec { version = "0.9.2"; @@ -11,12 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1d3rc03vgz32faj7qi18iiggxvxlqrj9lsk5jkpa9r1mcs5d89my"; }; - buildInputs = [ - perl - Cocoa AppKit ScriptingBridge - # Neded for OBJC_CLASS_$_NSMutableArray symbols. - cf-private - ]; + buildInputs = [ perl Cocoa AppKit ScriptingBridge ]; patches = [ ./trash.diff ]; From 5ecbcc088658385e91c6670ab4b10a928e14e090 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:35:02 +0200 Subject: [PATCH 0096/1611] mdbook: remove cf-private --- pkgs/tools/text/mdbook/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/tools/text/mdbook/default.nix b/pkgs/tools/text/mdbook/default.nix index 6e1faa3331f..52d197759ea 100644 --- a/pkgs/tools/text/mdbook/default.nix +++ b/pkgs/tools/text/mdbook/default.nix @@ -13,11 +13,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "1xpsc4qff2lrq15mz1gvmw6n5vl88sfwpjbsnp5ja5k1im156lam"; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ - CoreServices - # This is needed to avoid an undefined symbol error for "_CFURLResourceIsReachable" - darwin.cf-private - ]; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; meta = with stdenv.lib; { description = "Create books from MarkDown"; From ea4f282128bbf6d6dbd874c4d52efbf7cc643429 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:36:11 +0200 Subject: [PATCH 0097/1611] watchexec: remove cf-private --- pkgs/tools/misc/watchexec/default.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pkgs/tools/misc/watchexec/default.nix b/pkgs/tools/misc/watchexec/default.nix index b0471e56c07..d15bfb3887a 100644 --- a/pkgs/tools/misc/watchexec/default.nix +++ b/pkgs/tools/misc/watchexec/default.nix @@ -13,11 +13,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "1sqwplvpg0n9j0h9j94m7a6ylgqi4y4wyx489y09z9gm7aqgrsjc"; - buildInputs = stdenv.lib.optionals stdenv.isDarwin [ - CoreServices - # This is needed to avoid an undefined symbol error "_CFURLResourceIsReachable" - darwin.cf-private - ]; + buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; meta = with stdenv.lib; { description = "Executes commands in response to file modifications"; From b74a025f7ff274920da2a89fe13dd2a090b1bd60 Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:37:48 +0200 Subject: [PATCH 0098/1611] glib: remove cf-private --- pkgs/development/libraries/glib/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix index 4b577d36857..1de54becb5b 100644 --- a/pkgs/development/libraries/glib/default.nix +++ b/pkgs/development/libraries/glib/default.nix @@ -81,9 +81,6 @@ stdenv.mkDerivation rec { utillinuxMinimal # for libmount ] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Carbon Cocoa CoreFoundation CoreServices Foundation - # Needed for CFURLCreateFromFSRef, etc. which have deen deprecated - # since 10.9 and are not part of swift-corelibs CoreFoundation. - darwin.cf-private ]); nativeBuildInputs = [ From 3a57f5095f850bcb5bc28d61013a08f8b6d9c82a Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:39:41 +0200 Subject: [PATCH 0099/1611] tk: remove cf-private --- pkgs/development/libraries/tk/generic.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/tk/generic.nix b/pkgs/development/libraries/tk/generic.nix index be09bb73b3a..a65c6053f29 100644 --- a/pkgs/development/libraries/tk/generic.nix +++ b/pkgs/development/libraries/tk/generic.nix @@ -32,11 +32,9 @@ stdenv.mkDerivation { ++ stdenv.lib.optional enableAqua "--enable-aqua"; nativeBuildInputs = [ pkgconfig ]; + buildInputs = lib.optional enableAqua (with darwin.apple_sdk.frameworks; [ Cocoa ]); - propagatedBuildInputs = [ tcl libXft ] - ++ lib.optional enableAqua (with darwin; with apple_sdk.frameworks; [ - Cocoa cf-private - ]); + propagatedBuildInputs = [ tcl libXft ]; doCheck = false; # fails. can't find itself From a17c03cb7bb9190acd72bdfe7662334d35e3dc2a Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:40:52 +0200 Subject: [PATCH 0100/1611] python-watchdog: remove cf-private --- pkgs/development/python-modules/watchdog/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/watchdog/default.nix b/pkgs/development/python-modules/watchdog/default.nix index e785f5efa79..361baea4916 100644 --- a/pkgs/development/python-modules/watchdog/default.nix +++ b/pkgs/development/python-modules/watchdog/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { }; buildInputs = stdenv.lib.optionals stdenv.isDarwin - [ pkgs.darwin.apple_sdk.frameworks.CoreServices pkgs.darwin.cf-private ]; + [ pkgs.darwin.apple_sdk.frameworks.CoreServices ]; propagatedBuildInputs = [ argh pathtools pyyaml ]; doCheck = false; From 42705e70a7ed2bced9593d08fe07a99d81408cdb Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 20 Jun 2019 18:44:26 +0200 Subject: [PATCH 0101/1611] lldb: fix darwin sandboxed build --- pkgs/development/compilers/llvm/4/lldb.nix | 2 +- pkgs/development/compilers/llvm/5/lldb.nix | 2 +- pkgs/development/compilers/llvm/6/lldb.nix | 2 +- pkgs/development/compilers/llvm/7/lldb.nix | 23 +++++++++++++--------- pkgs/development/compilers/llvm/8/lldb.nix | 2 +- 5 files changed, 18 insertions(+), 13 deletions(-) diff --git a/pkgs/development/compilers/llvm/4/lldb.nix b/pkgs/development/compilers/llvm/4/lldb.nix index 0be8a4d4186..325149fc19b 100644 --- a/pkgs/development/compilers/llvm/4/lldb.nix +++ b/pkgs/development/compilers/llvm/4/lldb.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake python which swig ]; buildInputs = [ ncurses zlib libedit libxml2 llvm ] - ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa darwin.cf-private ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ]; CXXFLAGS = "-fno-rtti"; hardeningDisable = [ "format" ]; diff --git a/pkgs/development/compilers/llvm/5/lldb.nix b/pkgs/development/compilers/llvm/5/lldb.nix index 7be9a7e47b7..5e670d4de15 100644 --- a/pkgs/development/compilers/llvm/5/lldb.nix +++ b/pkgs/development/compilers/llvm/5/lldb.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake python which swig ]; buildInputs = [ ncurses zlib libedit libxml2 llvm ] - ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa darwin.cf-private ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ]; CXXFLAGS = "-fno-rtti"; hardeningDisable = [ "format" ]; diff --git a/pkgs/development/compilers/llvm/6/lldb.nix b/pkgs/development/compilers/llvm/6/lldb.nix index d33de248835..9571e7ab5a6 100644 --- a/pkgs/development/compilers/llvm/6/lldb.nix +++ b/pkgs/development/compilers/llvm/6/lldb.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake python which swig ]; buildInputs = [ ncurses zlib libedit libxml2 llvm ] - ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa darwin.cf-private ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ]; CXXFLAGS = "-fno-rtti"; hardeningDisable = [ "format" ]; diff --git a/pkgs/development/compilers/llvm/7/lldb.nix b/pkgs/development/compilers/llvm/7/lldb.nix index f58871f1d7c..1b2dff2c76c 100644 --- a/pkgs/development/compilers/llvm/7/lldb.nix +++ b/pkgs/development/compilers/llvm/7/lldb.nix @@ -9,6 +9,7 @@ , libxml2 , llvm , clang-unwrapped +, perl , python , version , darwin @@ -19,6 +20,11 @@ stdenv.mkDerivation { src = fetch "lldb" "0klsscg1sczc4nw2l53xggi969k361cng2sjjrfp3bv4g5x14s4v"; + nativeBuildInputs = [ cmake perl python which swig ]; + buildInputs = [ ncurses zlib libedit libxml2 llvm ] + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ]; + + postPatch = '' # Fix up various paths that assume llvm and clang are installed in the same place sed -i 's,".*ClangConfig.cmake","${clang-unwrapped}/lib/cmake/clang/ClangConfig.cmake",' \ @@ -30,22 +36,21 @@ stdenv.mkDerivation { sed -i -e 's,message(SEND_ERROR "Cannot find debugserver on system."),,' \ -e 's,string(STRIP ''${XCODE_DEV_DIR} XCODE_DEV_DIR),,' \ tools/debugserver/source/CMakeLists.txt + + # Fix /usr/bin references for sandboxed builds. + patchShebangs scripts ''; - nativeBuildInputs = [ cmake python which swig ]; - buildInputs = [ ncurses zlib libedit libxml2 llvm ] - ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa darwin.cf-private ]; - - CXXFLAGS = "-fno-rtti"; - hardeningDisable = [ "format" ]; - - NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-I${libxml2.dev}/include/libxml2"; - cmakeFlags = [ "-DLLDB_CODESIGN_IDENTITY=" # codesigning makes nondeterministic "-DSKIP_DEBUGSERVER=ON" ]; + CXXFLAGS = "-fno-rtti"; + hardeningDisable = [ "format" ]; + + NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-I${libxml2.dev}/include/libxml2"; + enableParallelBuilding = true; postInstall = '' diff --git a/pkgs/development/compilers/llvm/8/lldb.nix b/pkgs/development/compilers/llvm/8/lldb.nix index ae9198e99d2..861ef1f3510 100644 --- a/pkgs/development/compilers/llvm/8/lldb.nix +++ b/pkgs/development/compilers/llvm/8/lldb.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ cmake python which swig ]; buildInputs = [ ncurses zlib libedit libxml2 llvm ] - ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa darwin.cf-private ]; + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.libobjc darwin.apple_sdk.libs.xpc darwin.apple_sdk.frameworks.Foundation darwin.bootstrap_cmds darwin.apple_sdk.frameworks.Carbon darwin.apple_sdk.frameworks.Cocoa ]; CXXFLAGS = "-fno-rtti"; hardeningDisable = [ "format" ]; From de251704d66331f61417b9eaa42c58270ea6c766 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Wed, 3 Jul 2019 13:11:05 -0700 Subject: [PATCH 0102/1611] nixos/nscd: run with a dynamic user nscd doesn't create any files outside of /run/nscd unless the nscd.conf "persistent" option is used, which we don't do by default. Therefore it doesn't matter what UID/GID we run this service as, so long as it isn't shared with any other running processes. /run/nscd does need to be owned by the same UID that the service is running as, but systemd takes care of that for us thanks to the RuntimeDirectory directive. If someone wants to turn on the "persistent" option, they need to manually configure users.users.nscd and systemd.tmpfiles.rules so that /var/db/nscd is owned by the same user that nscd runs as. In an all-defaults boot.isContainer configuration of NixOS, this removes the only user which did not have a pre-assigned UID. --- nixos/modules/services/system/nscd.conf | 1 - nixos/modules/services/system/nscd.nix | 7 ++----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/system/nscd.conf b/nixos/modules/services/system/nscd.conf index 603a5d01acc..b294e933918 100644 --- a/nixos/modules/services/system/nscd.conf +++ b/nixos/modules/services/system/nscd.conf @@ -6,7 +6,6 @@ # fallback to trying to handle the request by itself. Which won't work as glibc # is not aware of the path in which the nss modules live. As a workaround, we # have `enable-cache yes` with an explicit ttl of 0 -server-user nscd threads 1 paranoia no debug-level 0 diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index 14644003539..cf034caa128 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -39,11 +39,6 @@ in config = mkIf cfg.enable { environment.etc."nscd.conf".text = cfg.config; - users.users.nscd = - { isSystemUser = true; - description = "Name service cache daemon user"; - }; - systemd.services.nscd = { description = "Name Service Cache Daemon"; @@ -60,6 +55,8 @@ in serviceConfig = { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd"; Type = "forking"; + User = "nscd"; + DynamicUser = true; RuntimeDirectory = "nscd"; PIDFile = "/run/nscd/nscd.pid"; Restart = "always"; From 4c64375e91ca400c646316ae2da8d3603aebfb9c Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Wed, 3 Jul 2019 15:30:17 -0700 Subject: [PATCH 0103/1611] nixos/nscd: delete redundant nscd.conf options These options were being set to the same value as the defaults that are hardcoded in nscd. Delete them so it's clear which settings are actually important for NixOS. One exception is `threads 1`, which is different from the built-in default of 4. However, both values are equivalent because nscd forces the number of threads to be at least as many as the number of kinds of databases it supports, which is 5. --- nixos/modules/services/system/nscd.conf | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/nixos/modules/services/system/nscd.conf b/nixos/modules/services/system/nscd.conf index b294e933918..bd802bd3c2e 100644 --- a/nixos/modules/services/system/nscd.conf +++ b/nixos/modules/services/system/nscd.conf @@ -6,46 +6,28 @@ # fallback to trying to handle the request by itself. Which won't work as glibc # is not aware of the path in which the nss modules live. As a workaround, we # have `enable-cache yes` with an explicit ttl of 0 -threads 1 -paranoia no -debug-level 0 enable-cache passwd yes positive-time-to-live passwd 0 negative-time-to-live passwd 0 -suggested-size passwd 211 -check-files passwd yes -persistent passwd no shared passwd yes enable-cache group yes positive-time-to-live group 0 negative-time-to-live group 0 -suggested-size group 211 -check-files group yes -persistent group no shared group yes enable-cache netgroup yes positive-time-to-live netgroup 0 negative-time-to-live netgroup 0 -suggested-size netgroup 211 -check-files netgroup yes -persistent netgroup no shared netgroup yes enable-cache hosts yes positive-time-to-live hosts 600 negative-time-to-live hosts 0 -suggested-size hosts 211 -check-files hosts yes -persistent hosts no shared hosts yes enable-cache services yes positive-time-to-live services 0 negative-time-to-live services 0 -suggested-size services 211 -check-files services yes -persistent services no shared services yes From 47dcdfe3a18f5ed50968a70e0811920057a07266 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 3 Jul 2019 21:28:16 -0400 Subject: [PATCH 0104/1611] pantheon.switchboard-plug-pantheon-shell: Fix setting lightdm background backports https://github.com/elementary/switchboard-plug-pantheon-shell/commit/e4f86df6a6be402db4c979a4b005573618b744d1 --- .../apps/switchboard-plugs/pantheon-shell/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix index 4d6a1f5c5c6..57ae3215f5f 100644 --- a/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix +++ b/pkgs/desktops/pantheon/apps/switchboard-plugs/pantheon-shell/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pantheon, meson, ninja, pkgconfig, vala , libgee, granite, gexiv2, elementary-settings-daemon, gtk3, gnome-desktop -, gala, wingpanel, plank, switchboard, gettext, bamf }: +, gala, wingpanel, plank, switchboard, gettext, bamf, fetchpatch }: stdenv.mkDerivation rec { pname = "switchboard-plug-pantheon-shell"; @@ -42,6 +42,11 @@ stdenv.mkDerivation rec { patches = [ ./backgrounds.patch # Having https://github.com/elementary/switchboard-plug-pantheon-shell/issues/166 would make this patch uneeded ./hardcode-gsettings.patch + # Fixes https://github.com/elementary/switchboard-plug-pantheon-shell/issues/172 + (fetchpatch { + url = "https://github.com/elementary/switchboard-plug-pantheon-shell/commit/e4f86df6a6be402db4c979a4b005573618b744d1.patch"; + sha256 = "0sa8611k6sqg96mnp2plmxd30w6zq76bfwszl8ankr9kwsgyc66y"; + }) ]; postPatch = '' From e3cbf13aa17a208f26a3f21dfb9cea7a3a21979b Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 30 Jun 2019 23:53:04 -0400 Subject: [PATCH 0105/1611] libgdata: 0.17.9 -> 0.17.10 * Meson! * intiltool -> gettext * multi-outputs * installed tests https://gitlab.gnome.org/GNOME/libgdata/blob/0.17.10/NEWS --- .../libraries/libgdata/default.nix | 65 +++++++++++-- .../libgdata/installed-tests-path.patch | 94 +++++++++++++++++++ 2 files changed, 151 insertions(+), 8 deletions(-) create mode 100644 pkgs/development/libraries/libgdata/installed-tests-path.patch diff --git a/pkgs/development/libraries/libgdata/default.nix b/pkgs/development/libraries/libgdata/default.nix index 59e19750715..91994a5cfba 100644 --- a/pkgs/development/libraries/libgdata/default.nix +++ b/pkgs/development/libraries/libgdata/default.nix @@ -1,20 +1,69 @@ -{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, json-glib, gcr -, gobject-introspection, liboauth, gnome3, p11-kit, openssl, uhttpmock }: +{ stdenv +, fetchurl +, pkgconfig +, meson +, ninja +, vala +, gettext +, libxml2 +, glib +, json-glib +, gcr +, gobject-introspection +, liboauth +, gnome3 +, p11-kit +, openssl +, uhttpmock +, libsoup +}: stdenv.mkDerivation rec { pname = "libgdata"; - version = "0.17.9"; + version = "0.17.10"; + + outputs = [ "out" "dev" "installedTests" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "0fj54yqxdapdppisqm1xcyrpgcichdmipq0a0spzz6009ikzgi45"; + sha256 = "04mh2p5x2iidfx0d1cablxbi3hvna8cmlddc1mm4387n0grx3ly1"; }; - nativeBuildInputs = [ pkgconfig intltool gobject-introspection ]; + patches = [ + ./installed-tests-path.patch + ]; - buildInputs = [ gnome3.libsoup libxml2 glib liboauth gcr gnome3.gnome-online-accounts p11-kit openssl uhttpmock ]; + nativeBuildInputs = [ + gettext + gobject-introspection + meson + ninja + pkgconfig + vala + ]; - propagatedBuildInputs = [ json-glib ]; + buildInputs = [ + gcr + glib + gnome3.gnome-online-accounts + liboauth + libsoup + libxml2 + openssl + p11-kit + uhttpmock + ]; + + propagatedBuildInputs = [ + json-glib + ]; + + mesonFlags = [ + "-Dgtk_doc=false" + "-Dinstalled_test_bindir=${placeholder ''installedTests''}/libexec" + "-Dinstalled_test_datadir=${placeholder ''installedTests''}/share" + "-Dinstalled_tests=true" + ]; passthru = { updateScript = gnome3.updateScript { @@ -26,7 +75,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "GData API library"; homepage = https://wiki.gnome.org/Projects/libgdata; - maintainers = with maintainers; [ raskin lethalman ]; + maintainers = with maintainers; [ raskin lethalman ] ++ gnome3.maintainers; platforms = platforms.linux; license = licenses.lgpl21Plus; }; diff --git a/pkgs/development/libraries/libgdata/installed-tests-path.patch b/pkgs/development/libraries/libgdata/installed-tests-path.patch new file mode 100644 index 00000000000..18669817cfe --- /dev/null +++ b/pkgs/development/libraries/libgdata/installed-tests-path.patch @@ -0,0 +1,94 @@ +diff --git a/gdata/tests/meson.build b/gdata/tests/meson.build +index 52154e7a..1a44d1d8 100644 +--- a/gdata/tests/meson.build ++++ b/gdata/tests/meson.build +@@ -1,5 +1,12 @@ +-tests_execdir = gdata_libexecdir / 'installed-tests' / gdata_name +-tests_metadir = gdata_datadir / 'installed-tests' / gdata_name ++tests_bindir = get_option('installed_test_bindir') / 'installed-tests' / gdata_name ++if tests_bindir == '' ++ test_bindir = gdata_libexecdir / 'installed-tests' / gdata_name ++endif ++ ++tests_datadir = get_option('installed_test_datadir') / 'installed-tests' / gdata_name ++if tests_datadir == '' ++ tests_datadir = gdata_datadir / 'installed-tests' / gdata_name ++endif + + tests_sources = files( + 'common.c', +@@ -48,7 +55,7 @@ foreach test_name, extra_args: tests + dependencies: common_deps + extra_args.get('dependencies', []), + sources: tests_sources, + install: install_tests, +- install_dir: tests_execdir, ++ install_dir: tests_bindir, + ) + + test( +@@ -63,7 +70,7 @@ if install_tests + foreach test_name, extra_args: tests + tests_conf = { + 'TEST_TYPE': 'session', +- 'TEST_ABS_PATH': gdata_prefix / tests_execdir / test_name, ++ 'TEST_ABS_PATH': tests_bindir / test_name, + } + + configure_file ( +@@ -71,13 +78,13 @@ if install_tests + output: test_name + '.test', + configuration: tests_conf, + install: true, +- install_dir: tests_metadir, ++ install_dir: tests_datadir, + ) + endforeach + + install_subdir( + 'traces', +- install_dir: tests_execdir, ++ install_dir: tests_bindir, + ) + + test_data = [ +@@ -96,6 +103,6 @@ if install_tests + + install_data( + test_data, +- install_dir: tests_execdir, ++ install_dir: tests_bindir, + ) + endif +diff --git a/meson.build b/meson.build +index 7d2f5254..bed3e189 100644 +--- a/meson.build ++++ b/meson.build +@@ -20,9 +20,9 @@ gdata_api_version_minor = 0 + + # Define the install directories + gdata_prefix = get_option('prefix') +-gdata_datadir = get_option('datadir') +-gdata_libexecdir = get_option('libexecdir') +-gdata_includedir = get_option('includedir') ++gdata_datadir = gdata_prefix / get_option('datadir') ++gdata_libexecdir = gdata_prefix / get_option('libexecdir') ++gdata_includedir = gdata_prefix / get_option('includedir') + + gdata_include_subdir = gdata_name / 'gdata' + +diff --git a/meson_options.txt b/meson_options.txt +index 25cc6b55..6fc2cfa3 100644 +--- a/meson_options.txt ++++ b/meson_options.txt +@@ -43,3 +43,11 @@ option('vapi', + type: 'boolean', + value: true, + description: 'Enable creation of vapi files') ++ ++option('installed_test_datadir', type: 'string', ++ value: '', ++ description: 'Installation directory for data files in tests') ++ ++option('installed_test_bindir', type: 'string', ++ value: '', ++ description: 'Installation directory for binary files in tests') From 3f19225e6f872585c051df9de85be1ae2248382f Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Thu, 4 Jul 2019 03:57:43 -0600 Subject: [PATCH 0106/1611] libyaml: 0.2.1 -> 0.2.2 --- .../development/libraries/libyaml/default.nix | 25 +++---------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/pkgs/development/libraries/libyaml/default.nix b/pkgs/development/libraries/libyaml/default.nix index c1f34bd3398..7529d69ddde 100644 --- a/pkgs/development/libraries/libyaml/default.nix +++ b/pkgs/development/libraries/libyaml/default.nix @@ -1,31 +1,14 @@ -{ stdenv, fetchurl, fetchpatch }: +{ stdenv, fetchurl }: -let - - version = "0.2.1"; - - # https://github.com/yaml/pyyaml/issues/214 - p1 = fetchpatch { - url = https://github.com/yaml/libyaml/commit/8ee83c0da22fe9aa7dea667be8f899a7e32ffb83.patch; - sha256 = "00jh39zww6s4gyhxfmlxwb6lz90nl3p51k5h1qm6z3ymik5vljmz"; - }; - p2 = fetchpatch { - url = https://github.com/yaml/libyaml/commit/56f4b17221868593d6903ee58d6d679b690cf4df.patch; - sha256 = "0najcay1y4kgfpsidj7dnyafnwjbav5jyawhyv215zl9gg3386n0"; - }; - -in - -stdenv.mkDerivation { - name = "libyaml-${version}"; +stdenv.mkDerivation rec { + pname = "libyaml"; + version = "0.2.2"; src = fetchurl { url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz"; sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q"; }; - patches = [ p1 p2 ]; # remove when the next release comes out - meta = with stdenv.lib; { homepage = https://pyyaml.org/; description = "A YAML 1.1 parser and emitter written in C"; From 971c341ccbe45d8fe69442d79f515d0cd266cb3e Mon Sep 17 00:00:00 2001 From: Tadeo Kondrak Date: Thu, 4 Jul 2019 03:51:56 -0600 Subject: [PATCH 0107/1611] libxkbcommon: 0.8.0 -> 0.8.4 --- .../libraries/libxkbcommon/default.nix | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index 3e0a2872c00..074de9b061b 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, fetchpatch, meson, ninja, pkgconfig, yacc, xkeyboard_config, libxcb, libX11, doxygen }: stdenv.mkDerivation rec { - name = "libxkbcommon-0.8.0"; + pname = "libxkbcommon"; + version = "0.8.4"; src = fetchurl { - url = "https://xkbcommon.org/download/${name}.tar.xz"; - sha256 = "0vgy84vfbig5bqznr137h5arjidnfwrxrdli0pxyn2jfn1fjcag8"; + url = "https://xkbcommon.org/download/${pname}-${version}.tar.xz"; + sha256 = "12vc91ydhphd5sddz15560r41l7k0i7mq6nma8kkbzdp6bwwzpb0"; }; outputs = [ "out" "dev" "doc" ]; @@ -13,14 +14,6 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ meson ninja pkgconfig yacc doxygen ]; buildInputs = [ xkeyboard_config libxcb ]; - patches = [ - # darwin compatibility - (fetchpatch { - url = https://github.com/xkbcommon/libxkbcommon/commit/edb1c662394578a54b7bbed231d918925e5d8150.patch; - sha256 = "0ydjlir32r3xfsbqhnsx1bz6ags2m908yhf9i09i1s7sgcimbcx5"; - }) - ]; - mesonFlags = [ "-Denable-wayland=false" "-Dxkb-config-root=${xkeyboard_config}/etc/X11/xkb" From f79fd2e826dd95b3b64839d3e0bec8ae1dfab17e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 5 Jul 2019 10:41:41 -0500 Subject: [PATCH 0108/1611] wrapQtAppsHook: wrap Qt applications for runtime dependencies --- .../services/x11/desktop-managers/plasma5.nix | 4 +- pkgs/applications/kde/ark/default.nix | 38 ++++--- pkgs/applications/kde/okular.nix | 12 +- .../plasma-5/plasma-workspace/default.nix | 11 +- .../libraries/kde-frameworks/default.nix | 15 +-- .../extra-cmake-modules/setup-hook.sh | 64 ++++++++++- .../kde-frameworks/kinit/default.nix | 4 +- .../libraries/qt-5/5.11/default.nix | 34 ++++-- .../libraries/qt-5/5.12/default.nix | 34 ++++-- .../libraries/qt-5/5.6/default.nix | 30 +++-- .../libraries/qt-5/5.9/default.nix | 30 +++-- .../libraries/qt-5/hooks/qtbase-setup-hook.sh | 22 ++-- .../libraries/qt-5/hooks/wrap-qt-apps-hook.sh | 106 ++++++++++++++++++ .../libraries/qt-5/mkDerivation.nix | 8 +- .../libraries/qt-5/modules/qtspeech.nix | 2 +- pkgs/top-level/all-packages.nix | 8 +- 16 files changed, 315 insertions(+), 107 deletions(-) create mode 100644 pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index dc8bfc7dc17..4b7773c4c6d 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -64,8 +64,8 @@ in }; security.wrappers = { - kcheckpass.source = "${lib.getBin plasma5.kscreenlocker}/lib/libexec/kcheckpass"; - "start_kdeinit".source = "${lib.getBin pkgs.kinit}/lib/libexec/kf5/start_kdeinit"; + kcheckpass.source = "${lib.getBin plasma5.kscreenlocker}/libexec/kcheckpass"; + "start_kdeinit".source = "${lib.getBin pkgs.kinit}/libexec/kf5/start_kdeinit"; kwin_wayland = { source = "${lib.getBin plasma5.kwin}/bin/kwin_wayland"; capabilities = "cap_sys_nice+ep"; diff --git a/pkgs/applications/kde/ark/default.nix b/pkgs/applications/kde/ark/default.nix index 598857f2e70..6015cb69d77 100644 --- a/pkgs/applications/kde/ark/default.nix +++ b/pkgs/applications/kde/ark/default.nix @@ -1,37 +1,39 @@ { - mkDerivation, lib, makeWrapper, + mkDerivation, lib, config, extra-cmake-modules, kdoctools, - karchive, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, kitemmodels, - khtml, kio, kparts, kpty, kservice, kwidgetsaddons, libarchive, + breeze-icons, karchive, kconfig, kcrash, kdbusaddons, ki18n, + kiconthemes, kitemmodels, khtml, kio, kparts, kpty, kservice, kwidgetsaddons, + + libarchive, libzip, # Archive tools - p7zip, unzip, zip, + p7zip, lrzip, # Unfree tools unfreeEnableUnrar ? false, unrar, }: +let + extraTools = [ p7zip lrzip ] ++ lib.optional unfreeEnableUnrar unrar; +in + mkDerivation { name = "ark"; - nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ]; - propagatedBuildInputs = [ - karchive kconfig kcrash kdbusaddons khtml ki18n kiconthemes kio kitemmodels - kparts kpty kservice kwidgetsaddons libarchive - ]; - outputs = [ "out" "dev" ]; - postFixup = - let - PATH = - lib.makeBinPath - ([ p7zip unzip zip ] ++ lib.optional unfreeEnableUnrar unrar); - in '' - wrapProgram "$out/bin/ark" --prefix PATH : "${PATH}" - ''; meta = { license = with lib.licenses; [ gpl2 lgpl3 ] ++ lib.optional unfreeEnableUnrar unfree; maintainers = [ lib.maintainers.ttuegel ]; }; + + outputs = [ "out" "dev" ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ libarchive libzip ] ++ extraTools; + propagatedBuildInputs = [ + breeze-icons karchive kconfig kcrash kdbusaddons khtml ki18n kiconthemes kio + kitemmodels kparts kpty kservice kwidgetsaddons + ]; + + qtWrapperArgs = [ "--prefix" "PATH" ":" (lib.makeBinPath extraTools) ]; } diff --git a/pkgs/applications/kde/okular.nix b/pkgs/applications/kde/okular.nix index 39fb232b342..377fbe3339a 100644 --- a/pkgs/applications/kde/okular.nix +++ b/pkgs/applications/kde/okular.nix @@ -1,18 +1,18 @@ { stdenv, mkDerivation, lib, extra-cmake-modules, kdoctools, - chmlib ? null, discount, djvulibre, ebook_tools, kactivities, karchive, kbookmarks, - kcompletion, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, - kdegraphics-mobipocket, kiconthemes, kjs, khtml, kio, kparts, kpty, kwallet, - kwindowsystem, libkexiv2, libspectre, libzip, phonon, poppler, qca-qt5, - qtdeclarative, qtsvg, threadweaver, kcrash + breeze-icons, chmlib ? null, discount, djvulibre, ebook_tools, kactivities, + karchive, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons, + kdbusaddons, kdegraphics-mobipocket, kiconthemes, kjs, khtml, kio, kparts, + kpty, kwallet, kwindowsystem, libkexiv2, libspectre, libzip, phonon, poppler, + qca-qt5, qtdeclarative, qtsvg, threadweaver, kcrash }: mkDerivation { name = "okular"; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; buildInputs = [ - discount djvulibre ebook_tools kactivities karchive kbookmarks + breeze-icons discount djvulibre ebook_tools kactivities karchive kbookmarks kcompletion kconfig kconfigwidgets kcoreaddons kdbusaddons kdegraphics-mobipocket kiconthemes kjs khtml kio kparts kpty kwallet kwindowsystem libkexiv2 libspectre libzip phonon poppler qca-qt5 diff --git a/pkgs/desktops/plasma-5/plasma-workspace/default.nix b/pkgs/desktops/plasma-5/plasma-workspace/default.nix index 680021e350b..1403c9e4c8b 100644 --- a/pkgs/desktops/plasma-5/plasma-workspace/default.nix +++ b/pkgs/desktops/plasma-5/plasma-workspace/default.nix @@ -34,7 +34,8 @@ mkDerivation { qtgraphicaleffects qtquickcontrols qtquickcontrols2 qtscript qtwayland qtx11extras ]; - outputs = [ "bin" "dev" "out" ]; + propagatedUserEnvPkgs = [ qtgraphicaleffects ]; + outputs = [ "out" "dev" ]; cmakeFlags = [ "-DNIXPKGS_XMESSAGE=${getBin xmessage}/bin/xmessage" @@ -45,7 +46,7 @@ mkDerivation { "-DNIXPKGS_XPROP=${getBin xprop}/bin/xprop" "-DNIXPKGS_ID=${getBin coreutils}/bin/id" "-DNIXPKGS_DBUS_UPDATE_ACTIVATION_ENVIRONMENT=${getBin dbus}/bin/dbus-update-activation-environment" - "-DNIXPKGS_START_KDEINIT_WRAPPER=${getLib kinit}/lib/libexec/kf5/start_kdeinit_wrapper" + "-DNIXPKGS_START_KDEINIT_WRAPPER=${getLib kinit}/libexec/kf5/start_kdeinit_wrapper" "-DNIXPKGS_QDBUS=${getBin qttools}/bin/qdbus" "-DNIXPKGS_KWRAPPER5=${getBin kinit}/bin/kwrapper5" "-DNIXPKGS_KREADCONFIG5=${getBin kconfig}/bin/kreadconfig5" @@ -72,10 +73,6 @@ mkDerivation { preConfigure = '' NIX_CFLAGS_COMPILE+=" -DNIXPKGS_KDOSTARTUPCONFIG5=\"''${!outputBin}/bin/kdostartupconfig5\"" - cmakeFlags+=" -DNIXPKGS_STARTPLASMA=''${!outputBin}/lib/libexec/startplasma" - ''; - - postInstall = '' - moveToOutput lib/libexec/startplasma ''${!outputBin} + cmakeFlags+=" -DNIXPKGS_STARTPLASMA=''${!outputBin}/libexec/startplasma" ''; } diff --git a/pkgs/development/libraries/kde-frameworks/default.nix b/pkgs/development/libraries/kde-frameworks/default.nix index 62ae433ff71..7745d78f8fc 100644 --- a/pkgs/development/libraries/kde-frameworks/default.nix +++ b/pkgs/development/libraries/kde-frameworks/default.nix @@ -45,17 +45,9 @@ let if [ "$hookName" != postHook ]; then postHooks+=("source @dev@/nix-support/setup-hook") else - # Propagate $${out} output - propagatedUserEnvPkgs="$propagatedUserEnvPkgs @${out}@" - - if [ -z "$outputDev" ]; then - echo "error: \$outputDev is unset!" >&2 - exit 1 - fi - # Propagate $dev so that this setup hook is propagated # But only if there is a separate $dev output - if [ "$outputDev" != out ]; then + if [ "''${outputDev:?}" != out ]; then propagatedBuildInputs="$propagatedBuildInputs @dev@" fi fi @@ -75,10 +67,9 @@ let inherit (srcs."${name}") src version; outputs = args.outputs or [ "bin" "dev" "out" ]; - hasBin = lib.elem "bin" outputs; - hasDev = lib.elem "dev" outputs; + hasSeparateDev = lib.elem "dev" outputs; - defaultSetupHook = if hasBin && hasDev then propagateBin else null; + defaultSetupHook = if hasSeparateDev then propagateBin else null; setupHook = args.setupHook or defaultSetupHook; meta = { diff --git a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh index 88091e78a0c..4df086ddbf2 100644 --- a/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh +++ b/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/setup-hook.sh @@ -1,16 +1,16 @@ -_ecmEnvHook() { +ecmEnvHook() { addToSearchPath XDG_DATA_DIRS "$1/share" addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg" } -addEnvHooks "$targetOffset" _ecmEnvHook +addEnvHooks "$targetOffset" ecmEnvHook -_ecmPreConfigureHook() { +ecmPostHook() { # Because we need to use absolute paths here, we must set *all* the paths. cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" - cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" + cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/libexec" cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" @@ -51,4 +51,58 @@ _ecmPreConfigureHook() { cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputBin}/$qtQmlPrefix" fi } -preConfigureHooks+=(_ecmPreConfigureHook) +postHooks+=(ecmPostHook) + +xdgDataSubdirs=( + "doc" "config.kcfg" "kconf_update" "kservices5" "kservicetypes5" \ + "kxmlgui5" "knotifications5" "icons" "locale" "sounds" "templates" \ + "wallpapers" "applications" "desktop-directories" "mime" "appdata" "dbus-1" \ +) + + +ecmHostPathSeen=( ) + +ecmUnseenHostPath() { + for pkg in "${ecmHostPathSeen[@]}" + do + if [ "${pkg:?}" == "$1" ] + then + return 1 + fi + done + + ecmHostPathSeen+=("$1") + return 0 +} + +ecmHostPathHook() { + ecmUnseenHostPath "$1" || return 0 + + local xdgConfigDir="$1/etc/xdg" + if [ -d "$xdgConfigDir" ] + then + qtWrapperArgs+=(--prefix XDG_CONFIG_DIRS : "$xdgConfigDir") + fi + + for xdgDataSubdir in "${xdgDataSubdirs[@]}" + do + if [ -d "$1/share/$xdgDataSubdir" ] + then + qtWrapperArgs+=(--prefix XDG_DATA_DIRS : "$1/share") + break + fi + done + + local manDir="$1/man" + if [ -d "$manDir" ] + then + qtWrapperArgs+=(--prefix MANPATH : "$manDir") + fi + + local infoDir="$1/info" + if [ -d "$infoDir" ] + then + qtWrapperArgs+=(--prefix INFOPATH : "$infoDir") + fi +} +addEnvHooks "$hostOffset" ecmHostPathHook diff --git a/pkgs/development/libraries/kde-frameworks/kinit/default.nix b/pkgs/development/libraries/kde-frameworks/kinit/default.nix index 538078fd745..42a1e157a91 100644 --- a/pkgs/development/libraries/kde-frameworks/kinit/default.nix +++ b/pkgs/development/libraries/kde-frameworks/kinit/default.nix @@ -9,6 +9,7 @@ let inherit (lib) getLib; in mkDerivation { name = "kinit"; meta = { maintainers = [ lib.maintainers.ttuegel ]; }; + outputs = [ "out" "dev" ]; nativeBuildInputs = [ extra-cmake-modules kdoctools ]; buildInputs = [ kconfig kcrash ki18n kio kservice kwindowsystem @@ -19,9 +20,6 @@ mkDerivation { ''-DNIXPKGS_KF5_PARTS=\"${getLib kparts}/lib/libKF5Parts.so.5\"'' ''-DNIXPKGS_KF5_PLASMA=\"${getLib plasma-framework}/lib/libKF5Plasma.so.5\"'' ]; - postFixup = '' - moveToOutput "lib/libexec/kf5/start_kdeinit" "$bin" - ''; setupHook = writeScript "setup-hook.sh" '' kinitFixupOutputHook() { if [ $prefix != ''${!outputBin} ] && [ -d $prefix/lib ]; then diff --git a/pkgs/development/libraries/qt-5/5.11/default.nix b/pkgs/development/libraries/qt-5/5.11/default.nix index f43329d3553..9ef3364cd5c 100644 --- a/pkgs/development/libraries/qt-5/5.11/default.nix +++ b/pkgs/development/libraries/qt-5/5.11/default.nix @@ -17,7 +17,7 @@ top-level attribute to `top-level/all-packages.nix`. { newScope, - stdenv, fetchurl, fetchFromGitHub, makeSetupHook, + stdenv, fetchurl, fetchFromGitHub, makeSetupHook, makeWrapper, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, cf-private, llvmPackages_5, @@ -34,6 +34,8 @@ let qtCompatVersion = "5.11"; + stdenvActual = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; + mirror = "https://download.qt.io"; srcs = import ./srcs.nix { inherit fetchurl; inherit mirror; } // { # Community port of the now unmaintained upstream qtwebkit. @@ -64,16 +66,18 @@ let qtwebkit = [ ./qtwebkit.patch ]; }; - mkDerivation = - import ../mkDerivation.nix { - inherit (stdenv) lib; - stdenv = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; - } - { inherit debug; }; - qtModule = import ../qtModule.nix - { inherit mkDerivation perl; inherit (stdenv) lib; } + { + inherit perl; + inherit (stdenv) lib; + # Use a variant of mkDerivation that does not include wrapQtApplications + # to avoid cyclic dependencies between Qt modules. + mkDerivation = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; wrapQtAppsHook = null; } + stdenvActual.mkDerivation; + } { inherit self srcs patches; }; addPackages = self: with self; @@ -81,7 +85,11 @@ let callPackage = self.newScope { inherit qtCompatVersion qtModule srcs; }; in { - inherit mkDerivation; + mkDerivationWith = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; inherit (self) wrapQtAppsHook; }; + + mkDerivation = mkDerivationWith stdenvActual.mkDerivation; qtbase = callPackage ../modules/qtbase.nix { inherit (srcs.qtbase) src version; @@ -146,6 +154,12 @@ let fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh; }; } ../hooks/qmake-hook.sh; + + wrapQtAppsHook = makeSetupHook { + deps = + [ self.qtbase.dev makeWrapper ] + ++ optional stdenv.isLinux self.qtwayland.dev; + } ../hooks/wrap-qt-apps-hook.sh; }; self = makeScope newScope addPackages; diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix index 2aa7d0f71ee..7a85202ced7 100644 --- a/pkgs/development/libraries/qt-5/5.12/default.nix +++ b/pkgs/development/libraries/qt-5/5.12/default.nix @@ -17,7 +17,7 @@ top-level attribute to `top-level/all-packages.nix`. { newScope, - stdenv, fetchurl, fetchFromGitHub, makeSetupHook, + stdenv, fetchurl, fetchFromGitHub, makeSetupHook, makeWrapper, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, cf-private, llvmPackages_5, @@ -34,6 +34,8 @@ let qtCompatVersion = "5.12"; + stdenvActual = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; + mirror = "https://download.qt.io"; srcs = import ./srcs.nix { inherit fetchurl; inherit mirror; } // { # Community port of the now unmaintained upstream qtwebkit. @@ -69,16 +71,18 @@ let qttools = [ ./qttools.patch ]; }; - mkDerivation = - import ../mkDerivation.nix { - inherit (stdenv) lib; - stdenv = if stdenv.cc.isClang then llvmPackages_5.stdenv else stdenv; - } - { inherit debug; }; - qtModule = import ../qtModule.nix - { inherit mkDerivation perl; inherit (stdenv) lib; } + { + inherit perl; + inherit (stdenv) lib; + # Use a variant of mkDerivation that does not include wrapQtApplications + # to avoid cyclic dependencies between Qt modules. + mkDerivation = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; wrapQtAppsHook = null; } + stdenvActual.mkDerivation; + } { inherit self srcs patches; }; addPackages = self: with self; @@ -86,7 +90,11 @@ let callPackage = self.newScope { inherit qtCompatVersion qtModule srcs; }; in { - inherit mkDerivation; + mkDerivationWith = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; inherit (self) wrapQtAppsHook; }; + + mkDerivation = mkDerivationWith stdenvActual.mkDerivation; qtbase = callPackage ../modules/qtbase.nix { inherit (srcs.qtbase) src version; @@ -151,6 +159,12 @@ let fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh; }; } ../hooks/qmake-hook.sh; + + wrapQtAppsHook = makeSetupHook { + deps = + [ self.qtbase.dev makeWrapper ] + ++ optional stdenv.isLinux self.qtwayland.dev; + } ../hooks/wrap-qt-apps-hook.sh; }; self = makeScope newScope addPackages; diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix index e493fc169ab..2018488cee5 100644 --- a/pkgs/development/libraries/qt-5/5.6/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -26,7 +26,7 @@ existing packages here and modify it as necessary. { newScope, - stdenv, fetchurl, fetchpatch, makeSetupHook, + stdenv, fetchurl, fetchpatch, makeSetupHook, makeWrapper, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, cf-private, @@ -105,14 +105,18 @@ let ]; }; - mkDerivation = - import ../mkDerivation.nix - { inherit stdenv; inherit (stdenv) lib; } - { inherit debug; }; - qtModule = import ../qtModule.nix - { inherit mkDerivation perl; inherit (stdenv) lib; } + { + inherit perl; + inherit (stdenv) lib; + # Use a variant of mkDerivation that does not include wrapQtApplications + # to avoid cyclic dependencies between Qt modules. + mkDerivation = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; wrapQtAppsHook = null; } + stdenv.mkDerivation; + } { inherit self srcs patches; }; addPackages = self: with self; @@ -120,7 +124,11 @@ let callPackage = self.newScope { inherit qtCompatVersion qtModule srcs; }; in { - inherit mkDerivation; + mkDerivationWith = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; inherit (self) wrapQtAppsHook; }; + + mkDerivation = mkDerivationWith stdenv.mkDerivation; qtbase = callPackage ../modules/qtbase.nix { inherit bison cups harfbuzz libGL; @@ -176,6 +184,12 @@ let deps = [ self.qtbase.dev ]; substitutions = { inherit (stdenv) isDarwin; }; } ../hooks/qmake-hook.sh; + + wrapQtAppsHook = makeSetupHook { + deps = + [ self.qtbase.dev makeWrapper ] + ++ optional stdenv.isLinux self.qtwayland.dev; + } ../hooks/wrap-qt-apps-hook.sh; }; self = makeScope newScope addPackages; diff --git a/pkgs/development/libraries/qt-5/5.9/default.nix b/pkgs/development/libraries/qt-5/5.9/default.nix index 9baca8124bd..373c1b7b9ba 100644 --- a/pkgs/development/libraries/qt-5/5.9/default.nix +++ b/pkgs/development/libraries/qt-5/5.9/default.nix @@ -17,7 +17,7 @@ top-level attribute to `top-level/all-packages.nix`. { newScope, - stdenv, fetchurl, fetchpatch, makeSetupHook, + stdenv, fetchurl, fetchpatch, makeSetupHook, makeWrapper, bison, cups ? null, harfbuzz, libGL, perl, gstreamer, gst-plugins-base, gtk3, dconf, cf-private, @@ -68,14 +68,18 @@ let }; - mkDerivation = - import ../mkDerivation.nix - { inherit stdenv; inherit (stdenv) lib; } - { inherit debug; }; - qtModule = import ../qtModule.nix - { inherit mkDerivation perl; inherit (stdenv) lib; } + { + inherit perl; + inherit (stdenv) lib; + # Use a variant of mkDerivation that does not include wrapQtApplications + # to avoid cyclic dependencies between Qt modules. + mkDerivation = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; wrapQtAppsHook = null; } + stdenv.mkDerivation; + } { inherit self srcs patches; }; addPackages = self: with self; @@ -83,7 +87,11 @@ let callPackage = self.newScope { inherit qtCompatVersion qtModule srcs; }; in { - inherit mkDerivation; + mkDerivationWith = + import ../mkDerivation.nix + { inherit (stdenv) lib; inherit debug; inherit (self) wrapQtAppsHook; }; + + mkDerivation = mkDerivationWith stdenv.mkDerivation; qtbase = callPackage ../modules/qtbase.nix { inherit (srcs.qtbase) src version; @@ -145,6 +153,12 @@ let fix_qt_builtin_paths = ../hooks/fix-qt-builtin-paths.sh; }; } ../hooks/qmake-hook.sh; + + wrapQtAppsHook = makeSetupHook { + deps = + [ self.qtbase.dev makeWrapper ] + ++ optional stdenv.isLinux self.qtwayland.dev; + } ../hooks/wrap-qt-apps-hook.sh; }; self = makeScope newScope addPackages; diff --git a/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh b/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh index 3a558153988..436c2e1d032 100644 --- a/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh +++ b/pkgs/development/libraries/qt-5/hooks/qtbase-setup-hook.sh @@ -19,12 +19,14 @@ export QMAKEPATH QMAKEMODULES= export QMAKEMODULES -addToQMAKEPATH() { - if [ -d "$1/mkspecs" ]; then +qmakePathHook() { + if [ -d "$1/mkspecs" ] + then QMAKEMODULES="${QMAKEMODULES}${QMAKEMODULES:+:}/mkspecs" QMAKEPATH="${QMAKEPATH}${QMAKEPATH:+:}$1" fi } +envBuildHostHooks+=(qmakePathHook) # Propagate any runtime dependency of the building package. # Each dependency is propagated to the user environment and as a build @@ -32,18 +34,18 @@ addToQMAKEPATH() { # package depending on the building package. (This is necessary in case # the building package does not provide runtime dependencies itself and so # would not be propagated to the user environment.) -qtEnvHook() { - addToQMAKEPATH "$1" - if providesQtRuntime "$1"; then - if [ "z${!outputBin}" != "z${!outputDev}" ]; then - propagatedBuildInputs+=" $1" - fi - propagatedUserEnvPkgs+=" $1" +qtEnvHostTargetHook() { + if providesQtRuntime "$1" && [ "z${!outputBin}" != "z${!outputDev}" ] + then + propagatedBuildInputs+=" $1" fi } -envHostTargetHooks+=(qtEnvHook) +envHostTargetHooks+=(qtEnvHostTargetHook) postPatchMkspecs() { + # Prevent this hook from running multiple times + dontPatchMkspecs=1 + local bin="${!outputBin}" local dev="${!outputDev}" local doc="${!outputDoc}" diff --git a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh new file mode 100644 index 00000000000..83f62e4ec2b --- /dev/null +++ b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh @@ -0,0 +1,106 @@ +# Inherit arguments given in mkDerivation +qtWrapperArgs=( $qtWrapperArgs ) + +qtHostPathSeen=() + +qtUnseenHostPath() { + for pkg in "${qtHostPathSeen[@]}" + do + if [ "${pkg:?}" == "$1" ] + then + return 1 + fi + done + + qtHostPathSeen+=("$1") + return 0 +} + +qtHostPathHook() { + qtUnseenHostPath "$1" || return 0 + + local pluginDir="$1/${qtPluginPrefix:?}" + if [ -d "$pluginDir" ] + then + qtWrapperArgs+=(--prefix QT_PLUGIN_PATH : "$pluginDir") + fi + + local qmlDir="$1/${qtQmlPrefix:?}" + if [ -d "$qmlDir" ] + then + qtWrapperArgs+=(--prefix QML2_IMPORT_PATH : "$qmlDir") + fi +} +addEnvHooks "$hostOffset" qtHostPathHook + +makeQtWrapper() { + local original="$1" + local wrapper="$2" + shift 2 + makeWrapper "$original" "$wrapper" "${qtWrapperArgs[@]}" "$@" +} + +wrapQtApp() { + local program="$1" + shift 1 + wrapProgram "$program" "${qtWrapperArgs[@]}" "$@" +} + +qtOwnPathsHook() { + local xdgDataDir="${!outputBin}/share" + if [ -d "$xdgDataDir" ] + then + qtWrapperArgs+=(--prefix XDG_DATA_DIRS : "$xdgDataDir") + fi + + local xdgConfigDir="${!outputBin}/etc/xdg" + if [ -d "$xdgConfigDir" ] + then + qtWrapperArgs+=(--prefix XDG_CONFIG_DIRS : "$xdgConfigDir") + fi + + qtHostPathHook "${!outputBin}" +} + +preFixupPhases+=" qtOwnPathsHook" + +isQtApp () { + readelf -d "$1" 2>/dev/null | grep -q -F 'libQt5Core' +} + +# Note: $qtWrapperArgs still gets defined even if $dontWrapQtApps is set. +wrapQtAppsHook() { + # skip this hook when requested + [ -z "$dontWrapQtApps" ] || return 0 + + # guard against running multiple times (e.g. due to propagation) + [ -z "$wrapQtAppsHookHasRun" ] || return 0 + wrapQtAppsHookHasRun=1 + + local targetDirs=( "$prefix/bin" ) + echo "wrapping Qt applications in ${targetDirs[@]}" + + for targetDir in "${targetDirs[@]}" + do + [ -d "$targetDir" ] || continue + + find "$targetDir" -executable -print0 | while IFS= read -r -d '' file + do + isQtApp "$file" || continue + + if [ -f "$file" ] + then + echo "wrapping $file" + wrapQtApp "$file" + elif [ -h "$file" ] + then + target="$(readlink -e "$file")" + echo "wrapping $file -> $target" + rm "$file" + makeQtWrapper "$target" "$file" + fi + done + done +} + +fixupOutputHooks+=(wrapQtAppsHook) diff --git a/pkgs/development/libraries/qt-5/mkDerivation.nix b/pkgs/development/libraries/qt-5/mkDerivation.nix index d4e2143d564..95357c096df 100644 --- a/pkgs/development/libraries/qt-5/mkDerivation.nix +++ b/pkgs/development/libraries/qt-5/mkDerivation.nix @@ -1,8 +1,8 @@ -{ stdenv, lib }: +{ lib, debug, wrapQtAppsHook }: let inherit (lib) optional; in -{ debug }: +mkDerivation: args: @@ -24,7 +24,9 @@ let enableParallelBuilding = args.enableParallelBuilding or true; + nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ wrapQtAppsHook ]; + }; in -stdenv.mkDerivation (args // args_) +mkDerivation (args // args_) diff --git a/pkgs/development/libraries/qt-5/modules/qtspeech.nix b/pkgs/development/libraries/qt-5/modules/qtspeech.nix index 7b4b19ccab5..ddef01a9482 100644 --- a/pkgs/development/libraries/qt-5/modules/qtspeech.nix +++ b/pkgs/development/libraries/qt-5/modules/qtspeech.nix @@ -3,5 +3,5 @@ qtModule { name = "qtspeech"; qtInputs = [ ]; - outputs = [ "out" "dev" "bin" ]; + outputs = [ "out" "dev" ]; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8fc073db1d3..38df506de60 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12772,7 +12772,7 @@ in qt56 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-5/5.6) { inherit newScope; - inherit stdenv fetchurl fetchpatch makeSetupHook; + inherit stdenv fetchurl fetchpatch makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; harfbuzz = harfbuzzFull; @@ -12787,7 +12787,7 @@ in qt59 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-5/5.9) { inherit newScope; - inherit stdenv fetchurl fetchpatch makeSetupHook; + inherit stdenv fetchurl fetchpatch makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; harfbuzz = harfbuzzFull; @@ -12804,7 +12804,7 @@ in qt511 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-5/5.11) { inherit newScope; - inherit stdenv fetchurl fetchFromGitHub makeSetupHook; + inherit stdenv fetchurl fetchFromGitHub makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; harfbuzz = harfbuzzFull; @@ -12822,7 +12822,7 @@ in qt512 = recurseIntoAttrs (makeOverridable (import ../development/libraries/qt-5/5.12) { inherit newScope; - inherit stdenv fetchurl fetchFromGitHub makeSetupHook; + inherit stdenv fetchurl fetchFromGitHub makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; harfbuzz = harfbuzzFull; From 51d78034a1db78f8ce0ea3ba6fa20be590ed0ca2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 5 Jul 2019 10:42:08 -0500 Subject: [PATCH 0109/1611] wrapQtAppsHook: Remove ad hoc Qt wrappers --- pkgs/applications/altcoins/bitcoin.nix | 15 ++++---- .../altcoins/monero-gui/default.nix | 11 ++---- pkgs/applications/audio/carla/default.nix | 13 ++++--- pkgs/applications/audio/kid3/default.nix | 9 ++--- .../editors/kdevelop5/kdevelop.nix | 5 +-- .../gis/openorienteering-mapper/default.nix | 8 ++--- pkgs/applications/graphics/ktikz/default.nix | 10 ++---- pkgs/applications/misc/albert/default.nix | 5 --- .../misc/electron-cash/default.nix | 8 ++--- pkgs/applications/misc/keepassx/community.nix | 9 +++-- .../misc/masterpdfeditor/default.nix | 9 ++--- pkgs/applications/misc/subsurface/default.nix | 9 ++--- pkgs/applications/misc/xpdf/default.nix | 11 +++--- .../networking/browsers/qtchan/default.nix | 7 +--- .../telegram/tdesktop/generic.nix | 7 ++-- .../networking/linssid/default.nix | 11 +++--- .../networking/mumble/default.nix | 9 ++--- .../newsreaders/quiterss/default.nix | 9 ++--- .../networking/nextcloud-client/default.nix | 12 +++---- .../networking/protonmail-bridge/default.nix | 13 ++----- .../networking/sniffers/wireshark/default.nix | 7 ++-- pkgs/applications/office/kmymoney/default.nix | 12 +++---- pkgs/applications/office/scribus/unstable.nix | 12 +++---- .../science/astronomy/stellarium/default.nix | 15 +++----- .../science/electronics/dsview/default.nix | 9 ++--- .../version-management/p4v/default.nix | 10 +++--- pkgs/applications/video/avidemux/default.nix | 15 +++++--- pkgs/applications/video/minitube/default.nix | 9 ++--- .../development/compilers/nextpnr/default.nix | 15 +++----- .../libraries/cutelyst/default.nix | 10 ++---- .../libraries/gsettings-qt/default.nix | 6 +++- .../development/r-modules/wrapper-rstudio.nix | 9 ++--- .../tools/analysis/hopper/default.nix | 26 +++++++------- pkgs/development/tools/qtcreator/default.nix | 16 ++++----- pkgs/development/tools/tora/default.nix | 7 ++-- pkgs/games/chessx/default.nix | 3 -- pkgs/games/flightgear/default.nix | 9 +++-- pkgs/games/nethack/default.nix | 13 ++++--- pkgs/misc/emulators/mgba/default.nix | 6 ++-- pkgs/tools/graphics/nifskope/default.nix | 12 +++---- pkgs/tools/misc/partition-manager/default.nix | 10 ++---- .../tools/misc/yubikey-manager-qt/default.nix | 35 +++++++------------ pkgs/tools/security/nitrokey-app/default.nix | 11 ++---- 43 files changed, 179 insertions(+), 288 deletions(-) diff --git a/pkgs/applications/altcoins/bitcoin.nix b/pkgs/applications/altcoins/bitcoin.nix index d1802f774f2..ce0a31dfe68 100644 --- a/pkgs/applications/altcoins/bitcoin.nix +++ b/pkgs/applications/altcoins/bitcoin.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, autoreconfHook, openssl, db48, boost, zeromq, rapidcheck -, zlib, miniupnpc, qtbase ? null, qttools ? null, utillinux, protobuf, python3, qrencode, libevent +, zlib, miniupnpc, qtbase ? null, qttools ? null, wrapQtAppsHook ? null, utillinux, protobuf, python3, qrencode, libevent , withGui }: with stdenv.lib; @@ -14,7 +14,9 @@ stdenv.mkDerivation rec{ sha256 = "5e4e6890e07b620a93fdb24605dae2bb53e8435b2a93d37558e1db1913df405f"; }; - nativeBuildInputs = [ pkgconfig autoreconfHook ]; + nativeBuildInputs = + [ pkgconfig autoreconfHook ] + ++ optional withGui wrapQtAppsHook; buildInputs = [ openssl db48 boost zlib zeromq miniupnpc protobuf libevent] ++ optionals stdenv.isLinux [ utillinux ] @@ -34,10 +36,11 @@ stdenv.mkDerivation rec{ doCheck = true; - # QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI. - # See also https://github.com/NixOS/nixpkgs/issues/24256 - checkFlags = optionals withGui [ "QT_PLUGIN_PATH=${qtbase}/lib/qt-5.${versions.minor qtbase.version}/plugins" ] - ++ [ "LC_ALL=C.UTF-8" ]; + checkFlags = + [ "LC_ALL=C.UTF-8" ] + # QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI. + # See also https://github.com/NixOS/nixpkgs/issues/24256 + ++ optional withGui "QT_PLUGIN_PATH=${qtbase}/${qtbase.qtPluginPrefix}"; enableParallelBuilding = true; diff --git a/pkgs/applications/altcoins/monero-gui/default.nix b/pkgs/applications/altcoins/monero-gui/default.nix index f597d6b6527..986dd2b9e5d 100644 --- a/pkgs/applications/altcoins/monero-gui/default.nix +++ b/pkgs/applications/altcoins/monero-gui/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub -, makeWrapper, makeDesktopItem +, wrapQtAppsHook, makeDesktopItem , qtbase, qmake, qtmultimedia, qttools , qtgraphicaleffects, qtdeclarative , qtlocation, qtquickcontrols, qtquickcontrols2 @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { sha256 = "1l4kx2vidr7bpds43jdbwyaz0q1dy7sricpz061ff1fkappbxdh8"; }; - nativeBuildInputs = [ qmake pkgconfig ]; + nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ]; buildInputs = [ qtbase qtmultimedia qtgraphicaleffects @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { qtwebchannel qtwebengine qtx11extras qtxmlpatterns monero unbound readline boost libunwind libsodium pcsclite zeromq - cppzmq makeWrapper hidapi + cppzmq hidapi ]; patches = [ @@ -94,11 +94,6 @@ stdenv.mkDerivation rec { cp $src/images/appicons/$size.png \ $out/share/icons/hicolor/$size/apps/monero.png done; - - # wrap runtime dependencies - wrapProgram $out/bin/monero-wallet-gui \ - --set QML2_IMPORT_PATH "${qml2ImportPath}" \ - --set QT_PLUGIN_PATH "${qtbase.bin}/${qtbase.qtPluginPrefix}" ''; meta = { diff --git a/pkgs/applications/audio/carla/default.nix b/pkgs/applications/audio/carla/default.nix index 6e623a69919..98a4ddd29d6 100644 --- a/pkgs/applications/audio/carla/default.nix +++ b/pkgs/applications/audio/carla/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, alsaLib, file, fluidsynth, ffmpeg, jack2, liblo, libpulseaudio, libsndfile, pkgconfig, python3Packages, which, withFrontend ? true, - withQt ? true, qtbase ? null, + withQt ? true, qtbase ? null, wrapQtAppsHook ? null, withGtk2 ? true, gtk2 ? null, withGtk3 ? true, gtk3 ? null }: @@ -9,6 +9,7 @@ with stdenv.lib; assert withFrontend -> python3Packages ? pyqt5; assert withQt -> qtbase != null; +assert withQt -> wrapQtAppsHook != null; assert withGtk2 -> gtk2 != null; assert withGtk3 -> gtk3 != null; @@ -23,7 +24,9 @@ stdenv.mkDerivation rec { sha256 = "0fqgncqlr86n38yy7pa118mswfacmfczj7w9xx6c6k0jav3wk29k"; }; - nativeBuildInputs = [ python3Packages.wrapPython pkgconfig which ]; + nativeBuildInputs = [ + python3Packages.wrapPython pkgconfig which wrapQtAppsHook + ]; pythonPath = with python3Packages; [ rdflib pyliblo @@ -38,6 +41,7 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)" ]; + dontWrapQtApps = true; postFixup = '' # Also sets program_PYTHONPATH and program_PATH variables wrapPythonPrograms @@ -48,10 +52,9 @@ stdenv.mkDerivation rec { patchPythonScript "$out/share/carla/carla_settings.py" for program in $out/bin/*; do - wrapProgram "$program" \ + wrapQtApp "$program" \ --prefix PATH : "$program_PATH:${which}/bin" \ - --set PYTHONNOUSERSITE true \ - --prefix QT_PLUGIN_PATH : "${qtbase.bin}/${qtbase.qtPluginPrefix}" + --set PYTHONNOUSERSITE true done ''; diff --git a/pkgs/applications/audio/kid3/default.nix b/pkgs/applications/audio/kid3/default.nix index b4406dab70e..04d0349c88f 100644 --- a/pkgs/applications/audio/kid3/default.nix +++ b/pkgs/applications/audio/kid3/default.nix @@ -3,7 +3,7 @@ , chromaprint, docbook_xml_dtd_45, docbook_xsl, libxslt , id3lib, taglib, mp4v2, flac, libogg, libvorbis , zlib, readline , qtbase, qttools, qtmultimedia, qtquickcontrols -, makeWrapper +, wrapQtAppsHook }: stdenv.mkDerivation rec { @@ -16,11 +16,12 @@ stdenv.mkDerivation rec { sha256 = "0xkrsjrbr3z8cn8hjf623l28r3b755gr11i0clv8d8i3s10vhbd8"; }; + nativeBuildInputs = [ wrapQtAppsHook ]; buildInputs = with stdenv.lib; [ pkgconfig cmake python ffmpeg phonon automoc4 chromaprint docbook_xml_dtd_45 docbook_xsl libxslt id3lib taglib mp4v2 flac libogg libvorbis zlib readline - qtbase qttools qtmultimedia qtquickcontrols makeWrapper ]; + qtbase qttools qtmultimedia qtquickcontrols ]; cmakeFlags = [ "-DWITH_APPS=Qt;CLI" ]; NIX_LDFLAGS = "-lm -lpthread"; @@ -29,10 +30,6 @@ stdenv.mkDerivation rec { export DOCBOOKDIR="${docbook_xsl}/xml/xsl/docbook/" ''; - postInstall = '' - wrapProgram $out/bin/kid3-qt --prefix QT_PLUGIN_PATH : $out/lib/qt5/plugins - ''; - enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/kdevelop5/kdevelop.nix b/pkgs/applications/editors/kdevelop5/kdevelop.nix index 23ec887ad62..c17239d4fd9 100644 --- a/pkgs/applications/editors/kdevelop5/kdevelop.nix +++ b/pkgs/applications/editors/kdevelop5/kdevelop.nix @@ -43,6 +43,8 @@ mkDerivation rec { "-DCLANG_BUILTIN_DIR=${llvmPackages.clang-unwrapped}/lib/clang/${(builtins.parseDrvName llvmPackages.clang.name).version}/include" ]; + dontWrapQtApps = true; + postPatch = '' # FIXME: temporary until https://invent.kde.org/kde/kdevelop/merge_requests/8 is merged substituteInPlace kdevplatform/language/backgroundparser/parsejob.cpp --replace \ @@ -55,8 +57,7 @@ mkDerivation rec { wrapProgram "$out/bin/kdevelop!" \ --prefix PATH ":" "${lib.makeBinPath [ qttools kde-cli-tools ]}" - wrapProgram "$out/bin/kdevelop" \ - --prefix QT_PLUGIN_PATH : $out/lib/qt-${qtVersion}/plugins + wrapQtApp "$out/bin/kdevelop" # Fix the (now wrapped) kdevelop! to find things in right places: # - Fixup the one use where KDEV_BASEDIR is assumed to contain kdevelop. diff --git a/pkgs/applications/gis/openorienteering-mapper/default.nix b/pkgs/applications/gis/openorienteering-mapper/default.nix index a5a0492ab87..063e997fec1 100644 --- a/pkgs/applications/gis/openorienteering-mapper/default.nix +++ b/pkgs/applications/gis/openorienteering-mapper/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, gdal, cmake, ninja, proj, clipper, zlib, qtbase, qttools - , qtlocation, qtsensors, doxygen, cups, makeWrapper, qtimageformats +, qtlocation, qtsensors, doxygen, cups, wrapQtAppsHook, qtimageformats }: stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { buildInputs = [ gdal qtbase qttools qtlocation qtimageformats qtsensors clipper zlib proj doxygen cups]; - nativeBuildInputs = [ cmake makeWrapper ninja ]; + nativeBuildInputs = [ cmake wrapQtAppsHook ninja ]; src = fetchFromGitHub { owner = "OpenOrienteering"; @@ -48,9 +48,7 @@ stdenv.mkDerivation rec { stdenv.lib.optionalString stdenv.isDarwin '' # Fixes "This application failed to start because it could not find or load the Qt # platform plugin "cocoa"." - wrapProgram $out/Mapper.app/Contents/MacOS/Mapper \ - --set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms \ - --set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtimageformats}/${qtbase.qtPluginPrefix} + wrapQtApp $out/Mapper.app/Contents/MacOS/Mapper mkdir -p $out/bin ln -s $out/Mapper.app/Contents/MacOS/Mapper $out/bin/mapper ''; diff --git a/pkgs/applications/graphics/ktikz/default.nix b/pkgs/applications/graphics/ktikz/default.nix index c53c70888b2..4ddc2074f2f 100644 --- a/pkgs/applications/graphics/ktikz/default.nix +++ b/pkgs/applications/graphics/ktikz/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, fetchpatch -, pkgconfig, makeWrapper +, pkgconfig, wrapQtAppsHook , poppler, qt5, gnuplot }: @@ -36,9 +36,9 @@ stdenv.mkDerivation rec { }) ]; + nativeBuildInputs = [ pkgconfig qt5.qttools qt5.qmake wrapQtAppsHook ]; QT_PLUGIN_PATH = "${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}"; - nativeBuildInputs = [ pkgconfig qt5.qttools qt5.qmake makeWrapper ]; buildInputs = [ qt5.qtbase poppler ]; enableParallelBuilding = true; @@ -50,9 +50,5 @@ stdenv.mkDerivation rec { "QCOLLECTIONGENERATORCOMMAND=qhelpgenerator" ]; - postFixup = '' - wrapProgram "$out/bin/qtikz" \ - --prefix QT_PLUGIN_PATH : "${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}" \ - --prefix PATH : "${gnuplot}/bin" - ''; + qtWrapperArgs = [ ''--prefix PATH : "${gnuplot}/bin"'' ]; } diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index 2dda615081c..6fc5f951465 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -37,11 +37,6 @@ mkDerivation rec { rm "$out/lib" ''; - postInstall = '' - wrapProgram $out/bin/albert \ - --prefix XDG_DATA_DIRS : $out/share - ''; - meta = with lib; { homepage = https://albertlauncher.github.io/; description = "Desktop agnostic launcher"; diff --git a/pkgs/applications/misc/electron-cash/default.nix b/pkgs/applications/misc/electron-cash/default.nix index 788ff9b638b..8f506915202 100644 --- a/pkgs/applications/misc/electron-cash/default.nix +++ b/pkgs/applications/misc/electron-cash/default.nix @@ -1,4 +1,4 @@ -{ lib, fetchurl, python3Packages, qtbase, makeWrapper }: +{ lib, fetchurl, python3Packages, qtbase, wrapQtAppsHook }: python3Packages.buildPythonApplication rec { pname = "electron-cash"; @@ -32,7 +32,7 @@ python3Packages.buildPythonApplication rec { btchip ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ wrapQtAppsHook ]; postPatch = '' substituteInPlace contrib/requirements/requirements.txt \ @@ -54,10 +54,6 @@ python3Packages.buildPythonApplication rec { postInstall = '' substituteInPlace $out/share/applications/electron-cash.desktop \ --replace "Exec=electron-cash" "Exec=$out/bin/electron-cash" - - # Please remove this when #44047 is fixed - wrapProgram $out/bin/electron-cash \ - --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins ''; doInstallCheck = true; diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassx/community.nix index b52cff784e5..7a154e85a6e 100644 --- a/pkgs/applications/misc/keepassx/community.nix +++ b/pkgs/applications/misc/keepassx/community.nix @@ -17,6 +17,7 @@ , qtsvg , qtx11extras , quazip +, wrapQtAppsHook , yubikey-personalization , zlib @@ -73,12 +74,11 @@ stdenv.mkDerivation rec { doCheck = true; checkPhase = '' export LC_ALL="en_US.UTF-8" - export QT_PLUGIN_PATH="${qtbase.bin}/${qtbase.qtPluginPrefix}" export QT_QPA_PLATFORM=offscreen make test ARGS+="-E testgui --output-on-failure" ''; - nativeBuildInputs = [ cmake makeWrapper qttools ]; + nativeBuildInputs = [ cmake wrapQtAppsHook qttools ]; buildInputs = [ curl @@ -102,10 +102,9 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional withKeePassKeeShareSecure quazip ++ stdenv.lib.optional stdenv.isDarwin qtmacextras; - postInstall = optionalString stdenv.isDarwin '' + preFixup = optionalString stdenv.isDarwin '' # Make it work without Qt in PATH. - wrapProgram $out/Applications/KeePassXC.app/Contents/MacOS/KeePassXC \ - --set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix} + wrapQtApp $out/Applications/KeePassXC.app/Contents/MacOS/KeePassXC ''; meta = { diff --git a/pkgs/applications/misc/masterpdfeditor/default.nix b/pkgs/applications/misc/masterpdfeditor/default.nix index 7acebfad488..eb0e61ba6d7 100644 --- a/pkgs/applications/misc/masterpdfeditor/default.nix +++ b/pkgs/applications/misc/masterpdfeditor/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, sane-backends, qtbase, qtsvg, nss, autoPatchelfHook, lib, makeWrapper }: +{ stdenv, fetchurl, sane-backends, qtbase, qtsvg, nss, autoPatchelfHook, lib, wrapQtAppsHook }: let version = "5.4.10"; @@ -11,17 +11,12 @@ in stdenv.mkDerivation { sha256 = "1902ahb2g9xanrip1n0ihr31az8sv9fsvzddnzf70kbwlfclnqf7"; }; - nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; + nativeBuildInputs = [ autoPatchelfHook wrapQtAppsHook ]; buildInputs = [ nss qtbase qtsvg sane-backends stdenv.cc.cc ]; dontStrip = true; - # Please remove this when #44047 is fixed - postInstall = '' - wrapProgram $out/bin/masterpdfeditor5 --prefix QT_PLUGIN_PATH : ${lib.getBin qtbase}/${qtbase.qtPluginPrefix} - ''; - installPhase = '' runHook preInstall diff --git a/pkgs/applications/misc/subsurface/default.nix b/pkgs/applications/misc/subsurface/default.nix index 50bb1df2eef..7bac1db813f 100644 --- a/pkgs/applications/misc/subsurface/default.nix +++ b/pkgs/applications/misc/subsurface/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, cmake, makeWrapper, pkgconfig, qmake +{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, cmake, wrapQtAppsHook, pkgconfig, qmake , curl, grantlee, libgit2, libusb, libssh2, libxml2, libxslt, libzip, zlib , qtbase, qtconnectivity, qtlocation, qtsvg, qttools, qtwebkit, libXcomposite }: @@ -79,18 +79,13 @@ in stdenv.mkDerivation rec { qtbase qtconnectivity qtsvg qttools qtwebkit ]; - nativeBuildInputs = [ cmake makeWrapper pkgconfig ]; + nativeBuildInputs = [ cmake wrapQtAppsHook pkgconfig ]; cmakeFlags = [ "-DLIBDC_FROM_PKGCONFIG=ON" "-DNO_PRINTING=OFF" ]; - postInstall = '' - wrapProgram $out/bin/subsurface \ - --prefix QT_PLUGIN_PATH : "${googlemaps}/${googlemaps.pluginsSubdir}" - ''; - enableParallelBuilding = true; passthru = { inherit version libdc googlemaps; }; diff --git a/pkgs/applications/misc/xpdf/default.nix b/pkgs/applications/misc/xpdf/default.nix index eb76448391e..d524482dee7 100644 --- a/pkgs/applications/misc/xpdf/default.nix +++ b/pkgs/applications/misc/xpdf/default.nix @@ -1,6 +1,6 @@ { enableGUI ? true, enablePDFtoPPM ? true, useT1Lib ? false , stdenv, fetchurl, zlib, libpng, freetype ? null, t1lib ? null -, cmake, qtbase ? null, qtsvg ? null, makeWrapper +, cmake, qtbase ? null, qtsvg ? null, wrapQtAppsHook }: assert enableGUI -> qtbase != null && qtsvg != null && freetype != null; @@ -22,7 +22,9 @@ stdenv.mkDerivation { # https://cmake.org/cmake/help/v3.10/command/cmake_minimum_required.html patches = stdenv.lib.optional stdenv.isDarwin ./cmake_version.patch; - nativeBuildInputs = [ cmake makeWrapper ]; + nativeBuildInputs = + [ cmake ] + ++ stdenv.lib.optional enableGUI wrapQtAppsHook; cmakeFlags = ["-DSYSTEM_XPDFRC=/etc/xpdfrc" "-DA4_PAPER=ON"]; @@ -36,11 +38,6 @@ stdenv.mkDerivation { hardeningDisable = [ "format" ]; - postInstall = stdenv.lib.optionalString (stdenv.isDarwin && enableGUI) '' - wrapProgram $out/bin/xpdf \ - --set QT_PLUGIN_PATH ${qtbase.bin}/${qtbase.qtPluginPrefix}:${qtsvg.bin}/${qtbase.qtPluginPrefix} - ''; - meta = with stdenv.lib; { homepage = https://www.xpdfreader.com; description = "Viewer for Portable Document Format (PDF) files"; diff --git a/pkgs/applications/networking/browsers/qtchan/default.nix b/pkgs/applications/networking/browsers/qtchan/default.nix index df956addf5c..1519c382ebb 100644 --- a/pkgs/applications/networking/browsers/qtchan/default.nix +++ b/pkgs/applications/networking/browsers/qtchan/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { ]; enableParallelBuilding = true; - nativeBuildInputs = [ qt.qmake makeWrapper ]; + nativeBuildInputs = [ qt.qmake qt.wrapQtAppsHook ]; buildInputs = [ qt.qtbase ]; qmakeFlags = [ "CONFIG-=app_bundle" ]; @@ -29,11 +29,6 @@ stdenv.mkDerivation rec { cp qtchan $out/bin ''; - preFixup = '' - wrapProgram $out/bin/qtchan \ - --suffix QT_PLUGIN_PATH : ${qt.qtbase.bin}/${qt.qtbase.qtPluginPrefix} - ''; - meta = with stdenv.lib; { description = "4chan browser in qt5"; homepage = "https://github.com/siavash119/qtchan"; diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix index 8276e839940..0ae8d0bd3d6 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix @@ -1,7 +1,7 @@ { stable, version, sha256Hash, archPatchesRevision, archPatchesHash }: { mkDerivation, lib, fetchFromGitHub, fetchsvn -, pkgconfig, pythonPackages, cmake, wrapGAppsHook, gcc8 +, pkgconfig, pythonPackages, cmake, wrapGAppsHook, wrapQtAppsHook, gcc8 , qtbase, qtimageformats, gtk3, libappindicator-gtk3, libnotify, xdg_utils , dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3 }: @@ -39,7 +39,7 @@ mkDerivation rec { --replace '"notify"' '"${libnotify}/lib/libnotify.so"' ''; - nativeBuildInputs = [ pkgconfig pythonPackages.gyp cmake wrapGAppsHook gcc8 ]; + nativeBuildInputs = [ pkgconfig pythonPackages.gyp cmake wrapGAppsHook wrapQtAppsHook gcc8 ]; # We want to run wrapProgram manually (with additional parameters) dontWrapGApps = true; @@ -129,12 +129,13 @@ mkDerivation rec { done ''; + dontWrapQtApps = true; postFixup = '' # This is necessary to run Telegram in a pure environment. # We also use gappsWrapperArgs from wrapGAppsHook. wrapProgram $out/bin/telegram-desktop \ "''${gappsWrapperArgs[@]}" \ - --prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}" \ + "''${qtWrapperArgs[@]}" \ --prefix PATH : ${xdg_utils}/bin \ --set XDG_RUNTIME_DIR "XDG-RUNTIME-DIR" sed -i $out/bin/telegram-desktop \ diff --git a/pkgs/applications/networking/linssid/default.nix b/pkgs/applications/networking/linssid/default.nix index be010c47179..14ee8095247 100644 --- a/pkgs/applications/networking/linssid/default.nix +++ b/pkgs/applications/networking/linssid/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, qtbase, qtsvg, qmake, pkgconfig, boost, wirelesstools, iw, qwt, makeWrapper }: +{ stdenv, fetchurl, qtbase, qtsvg, qmake, pkgconfig, boost, wirelesstools, iw, qwt, wrapQtAppsHook }: stdenv.mkDerivation rec { name = "linssid-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "13d35rlcjncd8lx3khkgn9x8is2xjd5fp6ns5xsn3w6l4xj9b4gl"; }; - nativeBuildInputs = [ pkgconfig qmake makeWrapper ]; + nativeBuildInputs = [ pkgconfig qmake wrapQtAppsHook ]; buildInputs = [ qtbase qtsvg boost qwt ]; patches = [ ./0001-unbundled-qwt.patch ]; @@ -26,11 +26,8 @@ stdenv.mkDerivation rec { rm -fr qwt-lib ''; - postInstall = '' - wrapProgram $out/bin/linssid \ - --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix} \ - --prefix PATH : ${stdenv.lib.makeBinPath [ wirelesstools iw ]} - ''; + qtWrapperArgs = + [ ''--prefix PATH : ${stdenv.lib.makeBinPath [ wirelesstools iw ]}'' ]; meta = with stdenv.lib; { description = "Graphical wireless scanning for Linux"; diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 32149368230..56e98e880f7 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper, pkgconfig +{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, pkgconfig , qt4, qmake4Hook, qt5, avahi, boost, libopus, libsndfile, protobuf3_6, speex, libcap , alsaLib, python , jackSupport ? false, libjack2 ? null @@ -158,11 +158,6 @@ in { murmur_git = (server gitSource).overrideAttrs (old: { meta = old.meta // { broken = iceSupport; }; - nativeBuildInputs = old.nativeBuildInputs or [] ++ [ makeWrapper ]; - - installPhase = old.installPhase or "" + '' - wrapProgram $out/bin/murmurd --suffix QT_PLUGIN_PATH : \ - ${getBin qt5.qtbase}/${qt5.qtbase.qtPluginPrefix} - ''; + nativeBuildInputs = old.nativeBuildInputs or [] ++ [ qt5.wrapQtAppsHook ]; }); } diff --git a/pkgs/applications/networking/newsreaders/quiterss/default.nix b/pkgs/applications/networking/newsreaders/quiterss/default.nix index b0bc5edba84..898b7706bd6 100644 --- a/pkgs/applications/networking/newsreaders/quiterss/default.nix +++ b/pkgs/applications/networking/newsreaders/quiterss/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qmake, pkgconfig, makeWrapper +{ stdenv, fetchFromGitHub, qmake, pkgconfig, wrapQtAppsHook , qtbase, qttools, qtwebkit, sqlite }: @@ -13,14 +13,9 @@ stdenv.mkDerivation rec { sha256 = "0xav9qr8n6310636nfbgx4iix65fs3ya5rz2isxsf38bkjm7r3pa"; }; - nativeBuildInputs = [ qmake pkgconfig makeWrapper ]; + nativeBuildInputs = [ qmake pkgconfig wrapQtAppsHook ]; buildInputs = [ qtbase qttools qtwebkit sqlite.dev ]; - postFixup = '' - wrapProgram $out/bin/quiterss \ - --prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}" - ''; - meta = with stdenv.lib; { description = "A Qt-based RSS/Atom news feed reader"; longDescription = '' diff --git a/pkgs/applications/networking/nextcloud-client/default.nix b/pkgs/applications/networking/nextcloud-client/default.nix index 7aa7d88149f..37eb248fb48 100644 --- a/pkgs/applications/networking/nextcloud-client/default.nix +++ b/pkgs/applications/networking/nextcloud-client/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, cmake, pkgconfig, qtbase, qtwebkit, qtkeychain, qttools, sqlite -, inotify-tools, makeWrapper, openssl_1_1, pcre, qtwebengine, libsecret +, inotify-tools, wrapQtAppsHook, openssl_1_1, pcre, qtwebengine, libsecret , libcloudproviders }: @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { fetchSubmodules = true; }; - nativeBuildInputs = [ pkgconfig cmake makeWrapper ]; + nativeBuildInputs = [ pkgconfig cmake wrapQtAppsHook ]; buildInputs = [ qtbase qtwebkit qtkeychain qttools qtwebengine sqlite openssl_1_1.out pcre inotify-tools libcloudproviders ]; @@ -31,13 +31,13 @@ stdenv.mkDerivation rec { "-DINOTIFY_INCLUDE_DIR=${inotify-tools}/include" ]; + qtWrapperArgs = [ + ''--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libsecret ]}'' + ]; + postInstall = '' sed -i 's/\(Icon.*\)=nextcloud/\1=Nextcloud/g' \ $out/share/applications/nextcloud.desktop - - wrapProgram "$out/bin/nextcloud" \ - --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ libsecret ]} \ - --prefix QT_PLUGIN_PATH : ${qtbase}/${qtbase.qtPluginPrefix} ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/networking/protonmail-bridge/default.nix b/pkgs/applications/networking/protonmail-bridge/default.nix index 2870f3158fb..807b8116b46 100644 --- a/pkgs/applications/networking/protonmail-bridge/default.nix +++ b/pkgs/applications/networking/protonmail-bridge/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full, - libsecret, libGL, libpulseaudio, glib, makeWrapper, makeDesktopItem }: +{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full +, libsecret, libGL, libpulseaudio, glib, wrapQtAppsHook, makeDesktopItem }: let version = "1.1.5-1"; @@ -28,7 +28,7 @@ in stdenv.mkDerivation rec { sha256 = "1y5mphrs60zd6km9z64vskk70q9zzw4g6js7qvgl572wv81w2l75"; }; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ wrapQtAppsHook ]; sourceRoot = "."; @@ -60,18 +60,11 @@ in stdenv.mkDerivation rec { libpulseaudio glib ]; - - qtPath = prefix: "${full}/${prefix}"; in '' patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath "${rpath}" \ $out/lib/protonmail-bridge - - wrapProgram $out/lib/protonmail-bridge \ - --set QT_PLUGIN_PATH "${qtPath qtbase.qtPluginPrefix}" \ - --set QML_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \ - --set QML2_IMPORT_PATH "${qtPath qtbase.qtQmlPrefix}" \ ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix index 401e4964801..ac9fa8f4ce8 100644 --- a/pkgs/applications/networking/sniffers/wireshark/default.nix +++ b/pkgs/applications/networking/sniffers/wireshark/default.nix @@ -30,7 +30,7 @@ in stdenv.mkDerivation { nativeBuildInputs = [ bison cmake extra-cmake-modules flex pkgconfig - ]; + ] ++ optional withQt qt5.wrapQtAppsHook; buildInputs = [ gettext pcre perl libpcap lua5 libssh nghttp2 openssl libgcrypt @@ -70,12 +70,9 @@ in stdenv.mkDerivation { done done - wrapProgram $out/Applications/Wireshark.app/Contents/MacOS/Wireshark \ - --set QT_PLUGIN_PATH ${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix} + wrapQtApp $out/Applications/Wireshark.app/Contents/MacOS/Wireshark '' else optionalString withQt '' install -Dm644 -t $out/share/applications ../wireshark.desktop - wrapProgram $out/bin/wireshark \ - --set QT_PLUGIN_PATH ${qt5.qtbase.bin}/${qt5.qtbase.qtPluginPrefix} substituteInPlace $out/share/applications/*.desktop \ --replace "Exec=wireshark" "Exec=$out/bin/wireshark" diff --git a/pkgs/applications/office/kmymoney/default.nix b/pkgs/applications/office/kmymoney/default.nix index a29e256675f..d3a216fb71a 100644 --- a/pkgs/applications/office/kmymoney/default.nix +++ b/pkgs/applications/office/kmymoney/default.nix @@ -1,4 +1,5 @@ { stdenv, lib, fetchurl, doxygen, extra-cmake-modules, graphviz, kdoctools +, wrapQtAppsHook , akonadi, alkimia, aqbanking, gmp, gwenhywfar, kactivities, karchive , kcmutils, kcontacts, kdewebkit, kdiagram, kholidays, kidentitymanagement @@ -29,6 +30,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ doxygen extra-cmake-modules graphviz kdoctools python2Packages.wrapPython + wrapQtAppsHook ]; buildInputs = [ @@ -57,13 +59,11 @@ stdenv.mkDerivation rec { doInstallCheck = stdenv.hostPlatform == stdenv.buildPlatform; installCheckInputs = [ xvfb_run ]; - installCheckPhase = let - pluginPath = "${qtbase.bin}/${qtbase.qtPluginPrefix}"; - in lib.optionalString doInstallCheck '' - QT_PLUGIN_PATH=${lib.escapeShellArg pluginPath} \ + installCheckPhase = + lib.optionalString doInstallCheck '' xvfb-run -s '-screen 0 1024x768x24' make test \ - ARGS="-E '(reports-chart-test)'" # Test fails, so exclude it for now. - ''; + ARGS="-E '(reports-chart-test)'" # Test fails, so exclude it for now. + ''; meta = { description = "Personal finance manager for KDE"; diff --git a/pkgs/applications/office/scribus/unstable.nix b/pkgs/applications/office/scribus/unstable.nix index 32758b462f7..eb2bebb3993 100644 --- a/pkgs/applications/office/scribus/unstable.nix +++ b/pkgs/applications/office/scribus/unstable.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchsvn, makeWrapper, pkgconfig, cmake, qtbase, cairo, pixman, +{ stdenv, fetchsvn, wrapQtAppsHook, pkgconfig, cmake, qtbase, cairo, pixman, boost, cups, fontconfig, freetype, hunspell, libjpeg, libtiff, libxml2, lcms2, podofo, poppler, poppler_data, python2, harfbuzz, qtimageformats, qttools }: let pythonEnv = python2.withPackages(ps: [ps.tkinter ps.pillow]); revision = "22806"; -in +in stdenv.mkDerivation rec { name = "scribus-unstable-${version}"; version = "2019-01-16"; @@ -18,17 +18,13 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + nativeBuildInputs = [ wrapQtAppsHook ]; buildInputs = [ - makeWrapper pkgconfig cmake qtbase cairo pixman boost cups fontconfig + pkgconfig cmake qtbase cairo pixman boost cups fontconfig freetype hunspell libjpeg libtiff libxml2 lcms2 podofo poppler poppler_data pythonEnv harfbuzz qtimageformats qttools ]; - postFixup = '' - wrapProgram $out/bin/scribus \ - --prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}" - ''; - meta = { maintainers = [ stdenv.lib.maintainers.erictapen ]; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/applications/science/astronomy/stellarium/default.nix b/pkgs/applications/science/astronomy/stellarium/default.nix index fb796341616..e3c66199f11 100644 --- a/pkgs/applications/science/astronomy/stellarium/default.nix +++ b/pkgs/applications/science/astronomy/stellarium/default.nix @@ -1,32 +1,27 @@ { mkDerivation, lib, fetchFromGitHub , cmake, freetype, libpng, libGLU_combined, openssl, perl, libiconv , qtscript, qtserialport, qttools -, qtmultimedia, qtlocation, makeWrapper, qtbase +, qtmultimedia, qtlocation, qtbase, wrapQtAppsHook }: mkDerivation rec { name = "stellarium-${version}"; - version = "0.19.0"; + version = "0.19.1"; src = fetchFromGitHub { owner = "Stellarium"; repo = "stellarium"; rev = "v${version}"; - sha256 = "1x9s9v9ann93nyqd8n8adwhx66xgq5vp0liyzl1h1ji6qk8jla3c"; + sha256 = "0hf1wv2bb5j7ny2xh29mj9m4hjblhn02zylay8gl85w7xlqs7s5r"; }; - nativeBuildInputs = [ cmake perl ]; + nativeBuildInputs = [ cmake perl wrapQtAppsHook ]; buildInputs = [ freetype libpng libGLU_combined openssl libiconv qtscript qtserialport qttools - qtmultimedia qtlocation qtbase makeWrapper + qtmultimedia qtlocation qtbase ]; - postInstall = '' - wrapProgram $out/bin/stellarium \ - --prefix QT_PLUGIN_PATH : "${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins" - ''; - meta = with lib; { description = "Free open-source planetarium"; homepage = http://stellarium.org/; diff --git a/pkgs/applications/science/electronics/dsview/default.nix b/pkgs/applications/science/electronics/dsview/default.nix index ecbbeff108d..55e8a7b4ffe 100644 --- a/pkgs/applications/science/electronics/dsview/default.nix +++ b/pkgs/applications/science/electronics/dsview/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pkgconfig, cmake, libzip, boost, fftw, qtbase, -libusb, makeWrapper, libsigrok4dsl, libsigrokdecode4dsl +libusb, wrapQtAppsHook, libsigrok4dsl, libsigrokdecode4dsl }: stdenv.mkDerivation rec { @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ./install.patch ]; - nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; + nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ]; buildInputs = [ boost fftw qtbase libusb libzip libsigrokdecode4dsl libsigrok4dsl @@ -32,11 +32,6 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - postFixup = '' - wrapProgram $out/bin/DSView --suffix QT_PLUGIN_PATH : \ - ${qtbase.bin}/${qtbase.qtPluginPrefix} - ''; - meta = with stdenv.lib; { description = "A GUI program for supporting various instruments from DreamSourceLab, including logic analyzer, oscilloscope, etc"; homepage = https://www.dreamsourcelab.com/; diff --git a/pkgs/applications/version-management/p4v/default.nix b/pkgs/applications/version-management/p4v/default.nix index f82b80067bf..314c379c4e6 100644 --- a/pkgs/applications/version-management/p4v/default.nix +++ b/pkgs/applications/version-management/p4v/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtscript, qtsensors, qtwebkit, openssl, xkeyboard_config, makeWrapper }: +{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtscript, qtsensors, qtwebkit, openssl, xkeyboard_config, wrapQtAppsHook }: stdenv.mkDerivation rec { name = "p4v-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; dontBuild = true; - nativeBuildInputs = [makeWrapper]; + nativeBuildInputs = [ wrapQtAppsHook ]; ldLibraryPath = lib.makeLibraryPath [ stdenv.cc.cc.lib @@ -22,6 +22,7 @@ stdenv.mkDerivation rec { openssl ]; + dontWrapQtApps = true; installPhase = '' mkdir $out cp -r bin $out @@ -31,10 +32,9 @@ stdenv.mkDerivation rec { for f in $out/bin/*.bin ; do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f - wrapProgram $f \ + wrapQtApp $f \ --suffix LD_LIBRARY_PATH : ${ldLibraryPath} \ - --suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb \ - --suffix QT_PLUGIN_PATH : ${qtbase.bin}/${qtbase.qtPluginPrefix} + --suffix QT_XKB_CONFIG_ROOT : ${xkeyboard_config}/share/X11/xkb done ''; diff --git a/pkgs/applications/video/avidemux/default.nix b/pkgs/applications/video/avidemux/default.nix index 7912fe60bbc..8e87a0589c5 100644 --- a/pkgs/applications/video/avidemux/default.nix +++ b/pkgs/applications/video/avidemux/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchurl, cmake, pkgconfig , zlib, gettext, libvdpau, libva, libXv, sqlite , yasm, freetype, fontconfig, fribidi -, makeWrapper, libXext, libGLU, qttools, qtbase +, makeWrapper, libXext, libGLU, qttools, qtbase, wrapQtAppsHook , alsaLib , withX265 ? true, x265 , withX264 ? true, x264 @@ -37,7 +37,9 @@ stdenv.mkDerivation rec { ./bootstrap_logging.patch ]; - nativeBuildInputs = [ yasm cmake pkgconfig ]; + nativeBuildInputs = + [ yasm cmake pkgconfig ] + ++ lib.optional withQT wrapQtAppsHook; buildInputs = [ zlib gettext libvdpau libva libXv sqlite fribidi fontconfig freetype alsaLib libXext libGLU makeWrapper @@ -55,7 +57,10 @@ stdenv.mkDerivation rec { buildCommand = let qtVersion = "5.${stdenv.lib.versions.minor qtbase.version}"; - wrapProgram = f: "wrapProgram ${f} --set ADM_ROOT_DIR $out --prefix LD_LIBRARY_PATH : ${libXext}/lib"; + wrapWith = makeWrapper: filename: + "${makeWrapper} ${filename} --set ADM_ROOT_DIR $out --prefix LD_LIBRARY_PATH : ${libXext}/lib"; + wrapQtApp = wrapWith "wrapQtApp"; + wrapProgram = wrapWith "wrapProgram"; in '' unpackPhase cd "$sourceRoot" @@ -74,8 +79,8 @@ stdenv.mkDerivation rec { ${wrapProgram "$out/bin/avidemux3_cli"} ${stdenv.lib.optionalString withQT '' - ${wrapProgram "$out/bin/avidemux3_qt5"} --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtVersion}/plugins - ${wrapProgram "$out/bin/avidemux3_jobs_qt5"} --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtVersion}/plugins + ${wrapQtApp "$out/bin/avidemux3_qt5"} + ${wrapQtApp "$out/bin/avidemux3_jobs_qt5"} ''} ln -s "$out/bin/avidemux3_${default}" "$out/bin/avidemux" diff --git a/pkgs/applications/video/minitube/default.nix b/pkgs/applications/video/minitube/default.nix index 3b8dce90243..5ee437a19be 100644 --- a/pkgs/applications/video/minitube/default.nix +++ b/pkgs/applications/video/minitube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeWrapper, phonon, phonon-backend-vlc, qtbase, qmake +{ stdenv, fetchFromGitHub, wrapQtAppsHook, phonon, phonon-backend-vlc, qtbase, qmake , qtdeclarative, qttools # "Free" key generated by nckx . I no longer have a Google @@ -17,17 +17,12 @@ stdenv.mkDerivation rec { }; buildInputs = [ phonon phonon-backend-vlc qtbase qtdeclarative qttools ]; - nativeBuildInputs = [ makeWrapper qmake ]; + nativeBuildInputs = [ wrapQtAppsHook qmake ]; qmakeFlags = [ "DEFINES+=APP_GOOGLE_API_KEY=${withAPIKey}" ]; enableParallelBuilding = true; - postInstall = '' - wrapProgram $out/bin/minitube \ - --prefix QT_PLUGIN_PATH : "${phonon-backend-vlc}/lib/qt-5.${stdenv.lib.versions.minor qtbase.version}/plugins" - ''; - meta = with stdenv.lib; { description = "Stand-alone YouTube video player"; longDescription = '' diff --git a/pkgs/development/compilers/nextpnr/default.nix b/pkgs/development/compilers/nextpnr/default.nix index ec5deb4e22a..d1c0db25351 100644 --- a/pkgs/development/compilers/nextpnr/default.nix +++ b/pkgs/development/compilers/nextpnr/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, makeWrapper +{ stdenv, fetchFromGitHub, cmake , boost, python3, eigen , icestorm, trellis @@ -6,7 +6,7 @@ # laptop (and over a remote X server on my server...), so mark it broken for # now, with intent to fix later. , enableGui ? false -, qtbase +, qtbase, wrapQtAppsHook }: let @@ -36,7 +36,9 @@ stdenv.mkDerivation rec { sha256 = "1y14jpa948cwk0i19bsfqh7yxsxkgskm4xym4z179sjcvcdvrn3a"; }; - nativeBuildInputs = [ cmake makeWrapper ]; + nativeBuildInputs + = [ cmake ] + ++ (stdenv.lib.optional enableGui wrapQtAppsHook); buildInputs = [ boostPython python3 eigen ] ++ (stdenv.lib.optional enableGui qtbase); @@ -56,13 +58,6 @@ stdenv.mkDerivation rec { --replace 'git log -1 --format=%h' 'echo ${substring 0 11 src.rev}' ''; - postInstall = stdenv.lib.optionalString enableGui '' - for x in generic ice40 ecp5; do - wrapProgram $out/bin/nextpnr-$x \ - --prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}" - done - ''; - meta = with stdenv.lib; { description = "Place and route tool for FPGAs"; homepage = https://github.com/yosyshq/nextpnr; diff --git a/pkgs/development/libraries/cutelyst/default.nix b/pkgs/development/libraries/cutelyst/default.nix index 784a282f6b2..c4778e5b030 100644 --- a/pkgs/development/libraries/cutelyst/default.nix +++ b/pkgs/development/libraries/cutelyst/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, makeWrapper +{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, wrapQtAppsHook , qtbase, libuuid, libcap, uwsgi, grantlee, pcre }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "09cgfpr2k1jp98h1ahxqm5lmv3qbk0bcxpqpill6n5wmq2c8kl8b"; }; - nativeBuildInputs = [ cmake pkgconfig makeWrapper ]; + nativeBuildInputs = [ cmake pkgconfig wrapQtAppsHook ]; buildInputs = [ qtbase libuuid libcap uwsgi grantlee pcre ]; cmakeFlags = [ @@ -31,12 +31,6 @@ stdenv.mkDerivation rec { unset LD_LIBRARY_PATH ''; - postInstall = '' - for prog in $out/bin/*; do - wrapProgram "$prog" --set QT_PLUGIN_PATH '${qtbase}/${qtbase.qtPluginPrefix}' - done - ''; - meta = with lib; { description = "C++ Web Framework built on top of Qt"; homepage = https://cutelyst.org/; diff --git a/pkgs/development/libraries/gsettings-qt/default.nix b/pkgs/development/libraries/gsettings-qt/default.nix index 3f9cd8120d8..744d9eb6de9 100644 --- a/pkgs/development/libraries/gsettings-qt/default.nix +++ b/pkgs/development/libraries/gsettings-qt/default.nix @@ -1,4 +1,7 @@ -{ stdenv, fetchbzr, pkgconfig, qmake, qtbase, qtdeclarative, glib, gobject-introspection }: +{ stdenv, fetchbzr, pkgconfig +, qmake, qtbase, qtdeclarative, wrapQtAppsHook +, glib, gobject-introspection +}: stdenv.mkDerivation rec { name = "gsettings-qt-${version}"; @@ -14,6 +17,7 @@ stdenv.mkDerivation rec { pkgconfig qmake gobject-introspection + wrapQtAppsHook ]; buildInputs = [ diff --git a/pkgs/development/r-modules/wrapper-rstudio.nix b/pkgs/development/r-modules/wrapper-rstudio.nix index c89773c2dd5..5eeac8fed30 100644 --- a/pkgs/development/r-modules/wrapper-rstudio.nix +++ b/pkgs/development/r-modules/wrapper-rstudio.nix @@ -1,4 +1,4 @@ -{ lib, runCommand, R, rstudio, makeWrapper, recommendedPackages, packages, qtbase }: +{ lib, runCommand, R, rstudio, wrapQtAppsHook, recommendedPackages, packages, qtbase }: let qtVersion = with lib.versions; "${major qtbase.version}.${minor qtbase.version}"; @@ -7,7 +7,8 @@ runCommand (rstudio.name + "-wrapper") { preferLocalBuild = true; allowSubstitutes = false; - nativeBuildInputs = [makeWrapper]; + nativeBuildInputs = [wrapQtAppsHook]; + dontWrapQtApps = true; buildInputs = [R rstudio] ++ recommendedPackages ++ packages; @@ -29,6 +30,6 @@ echo -n ".libPaths(c(.libPaths(), \"" >> $out/$fixLibsR echo -n $R_LIBS_SITE | sed -e 's/:/", "/g' >> $out/$fixLibsR echo -n "\"))" >> $out/$fixLibsR echo >> $out/$fixLibsR -makeWrapper ${rstudio}/bin/rstudio $out/bin/rstudio --set R_PROFILE_USER $out/$fixLibsR \ - --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-${qtVersion}/plugins +makeQtWrapper ${rstudio}/bin/rstudio $out/bin/rstudio \ + --set R_PROFILE_USER $out/$fixLibsR '' diff --git a/pkgs/development/tools/analysis/hopper/default.nix b/pkgs/development/tools/analysis/hopper/default.nix index 7158ea38c04..c9214ae7e35 100644 --- a/pkgs/development/tools/analysis/hopper/default.nix +++ b/pkgs/development/tools/analysis/hopper/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgs, makeWrapper, lib }: +{ stdenv, fetchurl, pkgs, lib }: stdenv.mkDerivation rec { pname = "hopper"; @@ -16,22 +16,20 @@ stdenv.mkDerivation rec { libbsd.out libffi.out gmpxx.out python27Full.out python27Packages.libxml2 qt5.qtbase zlib xlibs.libX11.out xorg_sys_opengl.out xlibs.libXrender.out gcc-unwrapped.lib ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ pkgs.qt5.wrapQtAppsHook ]; + + qtWrapperArgs = [ ''--suffix LD_LIBRARY_PATH : ${ldLibraryPath}'' ]; installPhase = '' - mkdir -p $out/bin - mkdir -p $out/lib - mkdir -p $out/share - cp $sourceRoot/opt/hopper-${rev}/bin/Hopper $out/bin/hopper - cp -r $sourceRoot/opt/hopper-${rev}/lib $out - cp -r $sourceRoot/usr/share $out/share + mkdir -p $out/bin + mkdir -p $out/lib + mkdir -p $out/share + cp $sourceRoot/opt/hopper-${rev}/bin/Hopper $out/bin/hopper + cp -r $sourceRoot/opt/hopper-${rev}/lib $out + cp -r $sourceRoot/usr/share $out/share patchelf \ - --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 \ - $out/bin/hopper - # Details: https://nixos.wiki/wiki/Qt - wrapProgram $out/bin/hopper \ - --suffix LD_LIBRARY_PATH : ${ldLibraryPath} \ - --suffix QT_PLUGIN_PATH : ${pkgs.qt5.qtbase}/lib/qt-${pkgs.qt5.qtbase.qtCompatVersion}/plugins + --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 \ + $out/bin/hopper ''; meta = { diff --git a/pkgs/development/tools/qtcreator/default.nix b/pkgs/development/tools/qtcreator/default.nix index 03b758cbdc6..1b3bc7a2162 100644 --- a/pkgs/development/tools/qtcreator/default.nix +++ b/pkgs/development/tools/qtcreator/default.nix @@ -10,7 +10,7 @@ let revision = "1"; # Fetch clang from qt vendor, this contains submodules like this: - # clang<-clang-tools-extra<-clazy. + # clang<-clang-tools-extra<-clazy. clang_qt_vendor = llvmPackages_8.clang-unwrapped.overrideAttrs (oldAttrs: rec { src = fetchgit { url = "https://code.qt.io/clang/clang.git"; @@ -32,15 +32,15 @@ stdenv.mkDerivation rec { buildInputs = [ qtbase qtscript qtquickcontrols qtdeclarative llvmPackages_8.libclang clang_qt_vendor llvmPackages_8.llvm ]; - nativeBuildInputs = [ qmake makeWrapper ]; + nativeBuildInputs = [ qmake ]; - # 0001-Fix-clang-libcpp-regexp.patch is for fixing regexp that is used to + # 0001-Fix-clang-libcpp-regexp.patch is for fixing regexp that is used to # find clang libc++ library include paths. By default it's not covering paths # like libc++-version, which is default name for libc++ folder in nixos. - patches = [ ./0001-Fix-clang-libcpp-regexp.patch + patches = [ ./0001-Fix-clang-libcpp-regexp.patch - # Fix clazy plugin name. This plugin was renamed with clang8 - # release, and patch didn't make it into 4.9.1 release. Should be removed + # Fix clazy plugin name. This plugin was renamed with clang8 + # release, and patch didn't make it into 4.9.1 release. Should be removed # on qtcreator update, if this problem is fixed. (fetchpatch { url = "https://code.qt.io/cgit/qt-creator/qt-creator.git/patch/src/plugins/clangcodemodel/clangeditordocumentprocessor.cpp?id=53c407bc0c87e0b65b537bf26836ddd8e00ead82"; @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { url = "https://code.qt.io/cgit/qt-creator/qt-creator.git/patch/src/plugins/clangtools/clangtidyclazyrunner.cpp?id=53c407bc0c87e0b65b537bf26836ddd8e00ead82"; sha256 = "1rl0rc2l297lpfhhawvkkmj77zb081hhp0bbi7nnykf3q9ch0clh"; }) - ]; + ]; doCheck = true; @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { --replace '$$clean_path($${LLVM_LIBDIR}/clang/$${LLVM_VERSION}/include)' '${clang_qt_vendor}/lib/clang/8.0.0/include' \ --replace '$$clean_path($${LLVM_BINDIR})' '${clang_qt_vendor}/bin' - # Fix include path to find clang and clang-c include directories. + # Fix include path to find clang and clang-c include directories. substituteInPlace src/plugins/clangtools/clangtools.pro \ --replace 'INCLUDEPATH += $$LLVM_INCLUDEPATH' 'INCLUDEPATH += $$LLVM_INCLUDEPATH ${clang_qt_vendor}' diff --git a/pkgs/development/tools/tora/default.nix b/pkgs/development/tools/tora/default.nix index 5b46b975cf7..2bbe2cfe16d 100644 --- a/pkgs/development/tools/tora/default.nix +++ b/pkgs/development/tools/tora/default.nix @@ -53,10 +53,9 @@ in mkDerivation rec { NIX_CFLAGS_COMPILE = [ "-L${mysql.connector-c}/lib/mysql" "-I${mysql.connector-c}/include/mysql" ]; - postFixup = '' - wrapProgram $out/bin/tora \ - --prefix PATH : ${lib.getBin graphviz}/bin - ''; + qtWrapperArgs = [ + ''--prefix PATH : ${lib.getBin graphviz}/bin'' + ]; meta = with lib; { description = "Tora SQL tool"; diff --git a/pkgs/games/chessx/default.nix b/pkgs/games/chessx/default.nix index 5800f8026ac..47432bca163 100644 --- a/pkgs/games/chessx/default.nix +++ b/pkgs/games/chessx/default.nix @@ -32,9 +32,6 @@ stdenv.mkDerivation rec { cp -pr release/chessx "$out/bin" cp -pr unix/chessx.desktop "$out/share/applications" - wrapProgram $out/bin/chessx \ - --prefix QT_PLUGIN_PATH : ${qtbase}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins - runHook postInstall ''; diff --git a/pkgs/games/flightgear/default.nix b/pkgs/games/flightgear/default.nix index 728709a12f6..9765a9c06ee 100644 --- a/pkgs/games/flightgear/default.nix +++ b/pkgs/games/flightgear/default.nix @@ -62,13 +62,12 @@ stdenv.mkDerivation rec { postInstall = '' mkdir -p "$out/share/applications/" cp "${desktopItem}"/share/applications/* "$out/share/applications/" #*/ - - for f in $out/bin/* #*/ - do - wrapProgram $f --set FG_ROOT "${data}/share/FlightGear" - done ''; + qtWrapperArgs = [ + ''--set FG_ROOT "${data}/share/FlightGear"'' + ]; + enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/games/nethack/default.nix b/pkgs/games/nethack/default.nix index 5e476cdc7e9..24cc64ac9af 100644 --- a/pkgs/games/nethack/default.nix +++ b/pkgs/games/nethack/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, coreutils, ncurses, gzip, flex, bison -, less, makeWrapper +, less , buildPackages , x11Mode ? false, qtMode ? false, libXaw, libXext, libXpm, bdftopcf, mkfontdir, pkgconfig, qt5 }: @@ -37,7 +37,7 @@ in stdenv.mkDerivation rec { ++ lib.optionals x11Mode [ mkfontdir bdftopcf ] ++ lib.optionals qtMode [ pkgconfig mkfontdir qt5.qtbase.dev - qt5.qtmultimedia.dev makeWrapper + qt5.qtmultimedia.dev qt5.wrapQtAppsHook bdftopcf ]; @@ -97,6 +97,10 @@ in stdenv.mkDerivation rec { enableParallelBuilding = true; + preFixup = '' + wrapQtApp "$out/games/nethack" + ''; + postInstall = '' mkdir -p $out/games/lib/nethackuserdir for i in xlogfile logfile perm record save; do @@ -137,11 +141,6 @@ in stdenv.mkDerivation rec { ${lib.optionalString (!(x11Mode || qtMode)) "install -Dm 555 util/dlb -t $out/libexec/nethack/"} ''; - postFixup = lib.optionalString qtMode '' - wrapProgram $out/bin/nethack-qt \ - --prefix QT_PLUGIN_PATH : "${qt5.qtbase}/${qt5.qtbase.qtPluginPrefix}" - ''; - meta = with stdenv.lib; { description = "Rogue-like game"; homepage = http://nethack.org/; diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix index 7a5ed31a580..039bc57e603 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeDesktopItem, makeWrapper, pkgconfig +{ stdenv, fetchFromGitHub, makeDesktopItem, wrapQtAppsHook, pkgconfig , cmake, epoxy, libzip, ffmpeg, imagemagick, SDL2, qtbase, qtmultimedia, libedit , qttools, minizip }: @@ -25,7 +25,7 @@ in stdenv.mkDerivation rec { }; enableParallelBuilding = true; - nativeBuildInputs = [ makeWrapper pkgconfig cmake ]; + nativeBuildInputs = [ wrapQtAppsHook pkgconfig cmake ]; buildInputs = [ libzip epoxy ffmpeg imagemagick SDL2 qtbase qtmultimedia libedit minizip @@ -34,8 +34,6 @@ in stdenv.mkDerivation rec { postInstall = '' cp -r ${desktopItem}/share/applications $out/share - wrapProgram $out/bin/mgba-qt --suffix QT_PLUGIN_PATH : \ - ${qtbase.bin}/${qtbase.qtPluginPrefix} ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/graphics/nifskope/default.nix b/pkgs/tools/graphics/nifskope/default.nix index c5651d0418e..42da24e3239 100644 --- a/pkgs/tools/graphics/nifskope/default.nix +++ b/pkgs/tools/graphics/nifskope/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, qmake, qtbase, qttools, substituteAll, libGLU, makeWrapper }: +{ stdenv, fetchFromGitHub, qmake, qtbase, qttools, substituteAll, libGLU, wrapQtAppsHook }: stdenv.mkDerivation rec { name = "nifskope-${version}"; @@ -20,8 +20,8 @@ stdenv.mkDerivation rec { }) ]; - buildInputs = [ qtbase qttools libGLU.dev makeWrapper ]; - nativeBuildInputs = [ qmake ]; + buildInputs = [ qtbase qttools libGLU.dev ]; + nativeBuildInputs = [ qmake wrapQtAppsHook ]; preConfigure = '' shopt -s globstar @@ -33,9 +33,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; # Inspired by install/linux-install/nifskope.spec.in. - installPhase = let - qtVersion = "5.${stdenv.lib.versions.minor qtbase.version}"; - in '' + installPhase = '' runHook preInstall d=$out/share/nifskope @@ -53,8 +51,6 @@ stdenv.mkDerivation rec { find $out/share -type f -exec chmod -x {} \; - wrapProgram $out/bin/NifSkope --prefix QT_PLUGIN_PATH : "${qtbase}/lib/qt-${qtVersion}/plugins" - runHook postInstall ''; diff --git a/pkgs/tools/misc/partition-manager/default.nix b/pkgs/tools/misc/partition-manager/default.nix index 4599309b238..1c094c291d8 100644 --- a/pkgs/tools/misc/partition-manager/default.nix +++ b/pkgs/tools/misc/partition-manager/default.nix @@ -1,7 +1,7 @@ { mkDerivation, fetchurl, lib -, extra-cmake-modules, kdoctools, wrapGAppsHook +, extra-cmake-modules, kdoctools, wrapGAppsHook, wrapQtAppsHook , kconfig, kcrash, kinit, kpmcore -, eject, libatasmart , utillinux, makeWrapper, qtbase +, eject, libatasmart , utillinux, qtbase }: let @@ -17,16 +17,12 @@ in mkDerivation rec { enableParallelBuilding = true; - nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook makeWrapper ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook wrapQtAppsHook ]; # refer to kpmcore for the use of eject buildInputs = [ eject libatasmart utillinux ]; propagatedBuildInputs = [ kconfig kcrash kinit kpmcore ]; - postInstall = '' - wrapProgram "$out/bin/partitionmanager" --prefix QT_PLUGIN_PATH : "${kpmcore}/lib/qt-5.${lib.versions.minor qtbase.version}/plugins" - ''; - meta = with lib; { description = "KDE Partition Manager"; license = licenses.gpl2; diff --git a/pkgs/tools/misc/yubikey-manager-qt/default.nix b/pkgs/tools/misc/yubikey-manager-qt/default.nix index 6eda3e6e436..391b989322e 100644 --- a/pkgs/tools/misc/yubikey-manager-qt/default.nix +++ b/pkgs/tools/misc/yubikey-manager-qt/default.nix @@ -1,6 +1,6 @@ { stdenv , fetchurl -, makeWrapper +, wrapQtAppsHook , pcsclite , pyotherside , pythonPackages @@ -16,16 +16,9 @@ , yubikey-personalization }: -let - qmlPath = qmlLib: "${qmlLib}/${qtbase.qtQmlPrefix}"; +let inherit (stdenv) lib; in - inherit (stdenv) lib; - - qml2ImportPath = lib.concatMapStringsSep ":" qmlPath [ - qtbase.bin qtdeclarative.bin pyotherside qtquickcontrols qtquickcontrols2.bin qtgraphicaleffects - ]; - -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { pname = "yubikey-manager-qt"; version = "1.1.1"; @@ -34,7 +27,7 @@ in stdenv.mkDerivation rec { sha256 = "0hcfl0mh4gqy9c8ghmi58asqr8v009n6li0mgcy3r8fyjr7qryvy"; }; - nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython qmake ]; + nativeBuildInputs = [ wrapQtAppsHook python3.pkgs.wrapPython qmake ]; postPatch = '' substituteInPlace ykman-gui/deployment.pri --replace '/usr/bin' "$out/bin" @@ -46,22 +39,20 @@ in stdenv.mkDerivation rec { pythonPath = [ yubikey-manager ]; + dontWrapQtApps = true; postInstall = '' buildPythonPath "$pythonPath" - wrapProgram $out/bin/ykman-gui \ + wrapQtApp $out/bin/ykman-gui \ --prefix LD_LIBRARY_PATH : "${stdenv.lib.getLib pcsclite}/lib:${yubikey-personalization}/lib" \ - --prefix PYTHONPATH : "$program_PYTHONPATH" \ - --set QML2_IMPORT_PATH "${qml2ImportPath}" \ - --set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms \ - --prefix QT_PLUGIN_PATH : "${qtsvg.bin}/${qtbase.qtPluginPrefix}" + --prefix PYTHONPATH : "$program_PYTHONPATH" - mkdir -p $out/share/applications - cp resources/ykman-gui.desktop $out/share/applications/ykman-gui.desktop - mkdir -p $out/share/ykman-gui/icons - cp resources/icons/*.{icns,ico,png,xpm} $out/share/ykman-gui/icons - substituteInPlace $out/share/applications/ykman-gui.desktop \ - --replace 'Exec=ykman-gui' "Exec=$out/bin/ykman-gui" \ + mkdir -p $out/share/applications + cp resources/ykman-gui.desktop $out/share/applications/ykman-gui.desktop + mkdir -p $out/share/ykman-gui/icons + cp resources/icons/*.{icns,ico,png,xpm} $out/share/ykman-gui/icons + substituteInPlace $out/share/applications/ykman-gui.desktop \ + --replace 'Exec=ykman-gui' "Exec=$out/bin/ykman-gui" \ ''; meta = with lib; { diff --git a/pkgs/tools/security/nitrokey-app/default.nix b/pkgs/tools/security/nitrokey-app/default.nix index e7f7547e4ad..1b18f0e1e11 100644 --- a/pkgs/tools/security/nitrokey-app/default.nix +++ b/pkgs/tools/security/nitrokey-app/default.nix @@ -1,5 +1,5 @@ -{ stdenv, makeWrapper, bash-completion, cmake, fetchFromGitHub, hidapi, libusb1, pkgconfig -, qtbase, qttranslations, qtsvg }: +{ stdenv, bash-completion, cmake, fetchFromGitHub, hidapi, libusb1, pkgconfig +, qtbase, qttranslations, qtsvg, wrapQtAppsHook }: stdenv.mkDerivation rec { name = "nitrokey-app-${version}"; @@ -29,15 +29,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake pkgconfig - makeWrapper + wrapQtAppsHook ]; cmakeFlags = "-DCMAKE_BUILD_TYPE=Release"; - postFixup = '' - wrapProgram $out/bin/nitrokey-app \ - --prefix QT_PLUGIN_PATH : "${qtbase}/${qtbase.qtPluginPrefix}" - ''; - meta = with stdenv.lib; { description = "Provides extra functionality for the Nitrokey Pro and Storage"; longDescription = '' From 3adc9d04870605ca20969a98fe820535fc7a88a5 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 5 Jul 2019 10:42:24 -0500 Subject: [PATCH 0110/1611] doc/languages-frameworks/qt.xml: Update for wrapQtAppsHook --- doc/languages-frameworks/qt.xml | 220 +++++++++++++++++++++++--------- 1 file changed, 161 insertions(+), 59 deletions(-) diff --git a/doc/languages-frameworks/qt.xml b/doc/languages-frameworks/qt.xml index b9b605b81da..032cdd9945b 100644 --- a/doc/languages-frameworks/qt.xml +++ b/doc/languages-frameworks/qt.xml @@ -4,71 +4,173 @@ Qt - Qt is a comprehensive desktop and mobile application development toolkit for - C++. Legacy support is available for Qt 3 and Qt 4, but all current - development uses Qt 5. The Qt 5 packages in Nixpkgs are updated frequently to - take advantage of new features, but older versions are typically retained - until their support window ends. The most important consideration in - packaging Qt-based software is ensuring that each package and all its - dependencies use the same version of Qt 5; this consideration motivates most - of the tools described below. + This section describes the differences between Nix expressions for Qt + libraries and applications and Nix expressions for other C++ software. Some + knowledge of the latter is assumed. There are primarily two problems which + the Qt infrastructure is designed to address: ensuring consistent versioning + of all dependencies and finding dependencies at runtime. -
- Packaging Libraries for Nixpkgs + + Nix expression for a Qt package (<filename>default.nix</filename>) + +{ mkDerivation, lib, qtbase }: - - Whenever possible, libraries that use Qt 5 should be built with each - available version. Packages providing libraries should be added to the - top-level function mkLibsForQt5, which is used to build a - set of libraries for every Qt 5 version. A special - callPackage function is used in this scope to ensure that - the entire dependency tree uses the same Qt 5 version. Import dependencies - unqualified, i.e., qtbase not - qt5.qtbase. Do not import a package - set such as qt5 or libsForQt5. - +mkDerivation { + pname = "myapp"; + version = "1.0"; - - If a library does not support a particular version of Qt 5, it is best to - mark it as broken by setting its meta.broken attribute. A - package may be marked broken for certain versions by testing the - qtbase.version attribute, which will always give the - current Qt 5 version. - -
+ buildInputs = [ qtbase ]; +} + + -
- Packaging Applications for Nixpkgs + + + + Import mkDerivation and Qt (such as + qtbase modules directly. Do not + import Qt package sets; the Qt versions of dependencies may not be + coherent, causing build and runtime failures. + + + + + Use mkDerivation instead of + stdenv.mkDerivation. mkDerivation + is a wrapper around stdenv.mkDerivation which + applies some Qt-specific settings. + This deriver accepts the same arguments as + stdenv.mkDerivation; refer to + for details. + + + To use another deriver instead of + stdenv.mkDerivation, use + mkDerivationWith: + +mkDerivationWith myDeriver { + # ... +} + + If you cannot use mkDerivationWith, please refer to + . + + + + + mkDerivation accepts the same arguments as + stdenv.mkDerivation, such as + buildInputs. + + + - - Call your application expression using - libsForQt5.callPackage instead of - callPackage. Import dependencies unqualified, i.e., - qtbase not qt5.qtbase. Do - not import a package set such as qt5 or - libsForQt5. - + + Locating runtime dependencies + + Qt applications need to be wrapped to find runtime dependencies. If you + cannot use mkDerivation or + mkDerivationWith above, include + wrapQtAppsHook in nativeBuildInputs: + +stdenv.mkDerivation { + # ... - - Qt 5 maintains strict backward compatibility, so it is generally best to - build an application package against the latest version using the - libsForQt5 library set. In case a package does not build - with the latest Qt version, it is possible to pick a set pinned to a - particular version, e.g. libsForQt55 for Qt 5.5, if that - is the latest version the package supports. If a package must be pinned to - an older Qt version, be sure to file a bug upstream; because Qt is strictly - backwards-compatible, any incompatibility is by definition a bug in the - application. - + nativeBuildInputs = [ wrapQtAppsHook ]; +} + + + + + + Entries added to qtWrapperArgs are used to modify the + wrappers created by wrapQtAppsHook. The entries are + passed as arguments to . + +mkDerivation { + # ... + + qtWrapperArgs = [ ''--prefix PATH : /path/to/bin'' ]; +} + + + + + Set dontWrapQtApps to stop applications from being + wrapped automatically. It is required to wrap applications manually with + wrapQtApp, using the syntax of + : + +mkDerivation { + # ... + + dontWrapQtApps = true; + preFixup = '' + wrapQtApp "$out/bin/myapp" --prefix PATH : /path/to/bin + ''; +} + + + + + Libraries are built with every available version of Qt. Use the meta.broken + attribute to disable the package for unsupported Qt versions: + +mkDerivation { + # ... + + # Disable this library with Qt < 5.9.0 + meta.broken = builtins.compareVersions qtbase.version "5.9.0" < 0; +} + + + + + Adding a library to Nixpkgs + + Add a Qt library to all-packages.nix by adding it to the + collection inside mkLibsForQt5. This ensures that the + library is built with every available version of Qt as needed. + + Adding a Qt library to <filename>all-packages.nix</filename> + +{ + # ... + + mkLibsForQt5 = self: with self; { + # ... + + mylib = callPackage ../path/to/mylib {}; + }; + + # ... +} + + + + + + + Adding an application to Nixpkgs + + Add a Qt application to all-packages.nix using + libsForQt5.callPackage instead of the usual + callPackage. The former ensures that all dependencies + are built with the same version of Qt. + + Adding a Qt application to <filename>all-packages.nix</filename> + +{ + # ... + + myapp = libsForQt5.callPackage ../path/to/myapp/ {}; + + # ... +} + + + + - - When testing applications in Nixpkgs, it is a common practice to build the - package with nix-build and run it using the created - symbolic link. This will not work with Qt applications, however, because - they have many hard runtime requirements that can only be guaranteed if the - package is actually installed. To test a Qt application, install it with - nix-env or run it inside nix-shell. - -
From 1cd3b98c3a7e93c95190e4d3fb76cca68cb9e049 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Fri, 5 Jul 2019 22:04:56 -0400 Subject: [PATCH 0111/1611] nixos/tt-rss: remove deprecated usage of PermissionsStartOnly, specify a group to run service as, and fix local pgsql database creation --- nixos/modules/services/web-apps/tt-rss.nix | 62 ++++++++++++---------- 1 file changed, 35 insertions(+), 27 deletions(-) diff --git a/nixos/modules/services/web-apps/tt-rss.nix b/nixos/modules/services/web-apps/tt-rss.nix index b882f6c2ae7..1bd9de93735 100644 --- a/nixos/modules/services/web-apps/tt-rss.nix +++ b/nixos/modules/services/web-apps/tt-rss.nix @@ -16,6 +16,9 @@ let poolName = "tt-rss"; + mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql"; + pgsqlLocal = cfg.database.createLocally && cfg.database.type == "pgsql"; + tt-rss-config = pkgs.writeText "config.php" '' 0 from pg_tables where tableowner = user"} \ | tail -n+3 | head -n-2 | sed -e 's/[ \n\t]*//') @@ -628,18 +631,18 @@ let serviceConfig = { User = "${cfg.user}"; + Group = "tt_rss"; ExecStart = "${pkgs.php}/bin/php ${cfg.root}/update.php --daemon"; StandardOutput = "syslog"; StandardError = "syslog"; - PermissionsStartOnly = true; }; wantedBy = [ "multi-user.target" ]; - requires = ["${dbService}"]; - after = ["network.target" "${dbService}"]; + requires = optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; + after = [ "network.target" ] ++ optional mysqlLocal "mysql.service" ++ optional pgsqlLocal "postgresql.service"; }; - services.mysql = optionalAttrs (cfg.database.type == "mysql") { + services.mysql = mkIf mysqlLocal { enable = true; package = mkDefault pkgs.mysql; ensureDatabases = [ cfg.database.name ]; @@ -653,17 +656,22 @@ let ]; }; - services.postgresql = optionalAttrs (cfg.database.type == "pgsql") { + services.postgresql = mkIf pgsqlLocal { enable = mkDefault true; + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { name = cfg.user; + ensurePermissions = { "DATABASE ${cfg.database.name}" = "ALL PRIVILEGES"; }; + } + ]; }; - users = optionalAttrs (cfg.user == "tt_rss") { - users.tt_rss = { - description = "tt-rss service user"; - isSystemUser = true; - group = "tt_rss"; - }; - groups.tt_rss = {}; + users.users.tt_rss = optionalAttrs (cfg.user == "tt_rss") { + description = "tt-rss service user"; + isSystemUser = true; + group = "tt_rss"; }; + + users.groups.tt_rss = {}; }; } From d4c661fb27a1f591bb51896db046606e18dde687 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Sat, 6 Jul 2019 05:01:27 +0200 Subject: [PATCH 0112/1611] pjsip: 2.8 -> 2.9 --- pkgs/applications/networking/pjsip/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/pjsip/default.nix b/pkgs/applications/networking/pjsip/default.nix index 1e067b3c335..93b8a44836c 100644 --- a/pkgs/applications/networking/pjsip/default.nix +++ b/pkgs/applications/networking/pjsip/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "pjsip-${version}"; - version = "2.8"; + version = "2.9"; src = fetchurl { url = "https://www.pjsip.org/release/${version}/pjproject-${version}.tar.bz2"; - sha256 = "0ybg0113rp3fk49rm2v0pcgqb28h3dv1pdy9594w2ggiz7bhngah"; + sha256 = "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi"; }; buildInputs = [ openssl libsamplerate alsaLib ]; From 53506d9c151884df050e3ccc125c51d2a9f53e4e Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Sat, 6 Jul 2019 05:01:43 +0200 Subject: [PATCH 0113/1611] pjsip: Fix compilation on aarch64 --- pkgs/applications/networking/pjsip/default.nix | 2 ++ .../applications/networking/pjsip/fix-aarch64.patch | 13 +++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 pkgs/applications/networking/pjsip/fix-aarch64.patch diff --git a/pkgs/applications/networking/pjsip/default.nix b/pkgs/applications/networking/pjsip/default.nix index 93b8a44836c..8a66c039b5a 100644 --- a/pkgs/applications/networking/pjsip/default.nix +++ b/pkgs/applications/networking/pjsip/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0dm6l8fypkimmzvld35zyykbg957cm5zb4ny3lchgv68amwfz1fi"; }; + patches = [ ./fix-aarch64.patch ]; + buildInputs = [ openssl libsamplerate alsaLib ]; preConfigure = '' diff --git a/pkgs/applications/networking/pjsip/fix-aarch64.patch b/pkgs/applications/networking/pjsip/fix-aarch64.patch new file mode 100644 index 00000000000..f4aabf7a9bb --- /dev/null +++ b/pkgs/applications/networking/pjsip/fix-aarch64.patch @@ -0,0 +1,13 @@ +--- a/aconfigure ++++ b/aconfigure +@@ -8945,6 +8945,10 @@ + ac_webrtc_instset=neon + ac_webrtc_cflags="-DWEBRTC_ARCH_ARMV7 -mfloat-abi=hard -mfpu=neon" + ;; ++ arm64*|aarch64*) ++ ac_webrtc_instset=neon ++ ac_webrtc_cflags="-DWEBRTC_ARCH_ARM64" ++ ;; + *) + ac_webrtc_instset=sse2 + ;; From 7c64083bc58b24302f3c4e92507ce93535018b57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20G=C3=BCntner?= Date: Sat, 6 Jul 2019 15:09:27 +0200 Subject: [PATCH 0114/1611] matrix-synapse: 1.0.0 -> 1.1.0 --- pkgs/servers/matrix-synapse/default.nix | 4 ++-- .../matrix-synapse/homeserver-script.patch | 18 ++++++++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 0efbefd6cd2..41357f66550 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -23,11 +23,11 @@ let in buildPythonApplication rec { pname = "matrix-synapse"; - version = "1.0.0"; + version = "1.1.0"; src = fetchPypi { inherit pname version; - sha256 = "1n8hv0zd818z4fx39yz6svb07zsbrh8fd6wfmgvhdxhp6p1vl0wq"; + sha256 = "0bmcpk3b6hlix2dzkwzlqy97ypljipr4bw8rnxm8rlihpd6scrjq"; }; patches = [ diff --git a/pkgs/servers/matrix-synapse/homeserver-script.patch b/pkgs/servers/matrix-synapse/homeserver-script.patch index 95e28196a22..554a2c5f66c 100644 --- a/pkgs/servers/matrix-synapse/homeserver-script.patch +++ b/pkgs/servers/matrix-synapse/homeserver-script.patch @@ -1,21 +1,23 @@ diff --git a/homeserver b/homeserver new file mode 120000 -index 0000000..2f1d413 +index 000000000..2f1d41351 --- /dev/null +++ b/homeserver -@@ -0,0 +1,1 @@ +@@ -0,0 +1 @@ +synapse/app/homeserver.py \ No newline at end of file diff --git a/setup.py b/setup.py -index b00c2af..c7f6e0a 100755 +index 5ce06c898..f1ccd95bc 100755 --- a/setup.py +++ b/setup.py -@@ -92,6 +92,6 @@ setup( - include_package_data=True, - zip_safe=False, - long_description=long_description, +@@ -115,6 +115,6 @@ setup( + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + ], - scripts=["synctl"] + glob.glob("scripts/*"), + scripts=["synctl", "homeserver"] + glob.glob("scripts/*"), - cmdclass={'test': TestCommand}, + cmdclass={"test": TestCommand}, ) +-- +2.22.0 From c38fa99757baec0ba04c41985783b6f63a58ced2 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Sat, 6 Jul 2019 09:24:49 -0700 Subject: [PATCH 0115/1611] nixos/nscd: don't need to specify username Thanks to @arianvp for pointing out that when DynamicUser is true, systemd defaults the value of User to be the name of the unit, which in this case is already "nscd". --- nixos/modules/services/system/nscd.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index cf034caa128..d094e9893ff 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -55,7 +55,6 @@ in serviceConfig = { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd"; Type = "forking"; - User = "nscd"; DynamicUser = true; RuntimeDirectory = "nscd"; PIDFile = "/run/nscd/nscd.pid"; From 3464c602e83687954b711bb9b30c5d85303f6f51 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sat, 6 Jul 2019 20:42:56 +0200 Subject: [PATCH 0116/1611] nixos/graylog: fix startup Until now the startup failed with an error like this: ``` com.github.joschi.jadconfig.ValidationException: Parent path /var/lib/graylog/server for Node ID file at /var/lib/graylog/server/node-id is not a directory ``` This happens since `graylog.service` ensures that `/var/lib/graylog` exists, however it doesn't take care of the directory for `cfg.nodeIdFile`. --- nixos/modules/services/logging/graylog.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/logging/graylog.nix b/nixos/modules/services/logging/graylog.nix index ee566825498..49f3187fd31 100644 --- a/nixos/modules/services/logging/graylog.nix +++ b/nixos/modules/services/logging/graylog.nix @@ -150,6 +150,9 @@ in rm -rf /var/lib/graylog/plugins || true mkdir -p /var/lib/graylog/plugins -m 755 + mkdir -p "$(dirname ${cfg.nodeIdFile})" + chown -R ${cfg.user} "$(dirname ${cfg.nodeIdFile})" + for declarativeplugin in `ls ${glPlugins}/bin/`; do ln -sf ${glPlugins}/bin/$declarativeplugin /var/lib/graylog/plugins/$declarativeplugin done From a7b6d9153cdf70aa3e6c2eb725024b17fe40a5ed Mon Sep 17 00:00:00 2001 From: fuwa Date: Tue, 4 Jun 2019 08:02:52 +0800 Subject: [PATCH 0117/1611] altcoins.wownero: 0.5.0.2 -> 0.6.1.2 --- pkgs/applications/altcoins/default.nix | 4 +--- pkgs/applications/altcoins/wownero.nix | 16 ++++++---------- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix index 492a221c3f8..23eb9033ed1 100644 --- a/pkgs/applications/altcoins/default.nix +++ b/pkgs/applications/altcoins/default.nix @@ -84,9 +84,7 @@ rec { sumokoin = callPackage ./sumokoin.nix { boost = boost165; }; - wownero = callPackage ./wownero.nix { - inherit (darwin.apple_sdk.frameworks) CoreData IOKit PCSC; - }; + wownero = callPackage ./wownero.nix {}; zcash = callPackage ./zcash { withGui = false; diff --git a/pkgs/applications/altcoins/wownero.nix b/pkgs/applications/altcoins/wownero.nix index 6de12b09934..7aed3297832 100644 --- a/pkgs/applications/altcoins/wownero.nix +++ b/pkgs/applications/altcoins/wownero.nix @@ -1,22 +1,20 @@ { stdenv, fetchFromGitHub, cmake, pkgconfig, git , boost, miniupnpc_2, openssl, unbound, cppzmq , zeromq, pcsclite, readline, libsodium, rapidjson -, CoreData, IOKit, PCSC }: -assert stdenv.isDarwin -> IOKit != null; - with stdenv.lib; stdenv.mkDerivation rec { name = "wownero-${version}"; - version = "0.5.0.2"; + version = "0.6.1.2"; src = fetchFromGitHub { owner = "wownero"; repo = "wownero"; rev = "v${version}"; - sha256 = "120cfkl2q8qgl3ajxfkkri9bxlnvmr1mhb1wvcigch1lqyflff1w"; + sha256 = "03q3pviyhrldpa3f4ly4d97jr39hvrz37chl102bap0790d9lk09"; + fetchSubmodules = true; }; nativeBuildInputs = [ cmake pkgconfig git ]; @@ -24,14 +22,12 @@ stdenv.mkDerivation rec { buildInputs = [ boost miniupnpc_2 openssl unbound rapidjson cppzmq zeromq pcsclite readline libsodium - ] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ]; + ]; cmakeFlags = [ "-DReadline_ROOT_DIR=${readline.dev}" "-DMANUAL_SUBMODULES=ON" - ] ++ optional stdenv.isDarwin "-DBoost_USE_MULTITHREADED=OFF"; - - hardeningDisable = [ "fortify" ]; + ]; meta = { description = "Wownero is a fork of the cryptocurrency Monero with primary alterations"; @@ -44,7 +40,7 @@ stdenv.mkDerivation rec { ''; homepage = http://wownero.org/; license = licenses.bsd3; - platforms = platforms.all; + platforms = platforms.linux; maintainers = with maintainers; [ fuwa ]; }; } From 2c0a6e1ea0529d1cd23b10ce5cdd4b108bfcbc71 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 7 Jul 2019 12:26:54 +0200 Subject: [PATCH 0118/1611] rustc: 1.35.0 -> 1.36.0 --- pkgs/development/compilers/rust/bootstrap.nix | 14 +++++------ .../rust/patches/net-tcp-disable-tests.patch | 23 ++++++++----------- pkgs/development/compilers/rust/rustc.nix | 4 ++-- 3 files changed, 19 insertions(+), 22 deletions(-) diff --git a/pkgs/development/compilers/rust/bootstrap.nix b/pkgs/development/compilers/rust/bootstrap.nix index 5eccc92a0c7..973d17e1c7b 100644 --- a/pkgs/development/compilers/rust/bootstrap.nix +++ b/pkgs/development/compilers/rust/bootstrap.nix @@ -3,16 +3,16 @@ let # Note: the version MUST be one version prior to the version we're # building - version = "1.34.2"; + version = "1.35.0"; # fetch hashes by running `print-hashes.sh 1.34.2` hashes = { - i686-unknown-linux-gnu = "926bafd09eb90ba7d5a0195fcffb8f33dd57e515af4f8987a143459f6b1d3f04"; - x86_64-unknown-linux-gnu = "2bf6622d980a52832bae141304e96f317c8a1ccd2dfd69a134a14033e6e43c0f"; - armv7-unknown-linux-gnueabihf = "70d1057fcc133dc3e44377060a00d2f9d3a134e2670963d3f1d93f3dbfa0548e"; - aarch64-unknown-linux-gnu = "15fc6b7ec121df9d4e42483dd12c677203680bec8c69b6f4f62e5a35a07341a8"; - i686-apple-darwin = "b9fc44cbb06050975664f1033d1337bb38d5ea73b503a5d3af5409033397be5c"; - x86_64-apple-darwin = "6fdd4bf7fe26dded0cd57b41ab5f0500a5a99b7bc770523a425e9e34f63d0fd8"; + i686-unknown-linux-gnu = "05337776b3645e4b8c8c7ced0bcd1615cf9ad1b9c8b3d0f333620e5401e31aee"; + x86_64-unknown-linux-gnu = "cf600e2273644d8629ed57559c70ca8db4023fd0156346facca9ab3ad3e8f86c"; + armv7-unknown-linux-gnueabihf = "8f0f32d8ddc6fb7bcb8f50ec5e694078799d93facbf135eec5bd9a8c94d0c11e"; + aarch64-unknown-linux-gnu = "31e6da56e67838fd2874211ae896a433badf67c13a7b68481f1d5f7dedcc5952"; + i686-apple-darwin = "6a45ae8db094c5f6c57c5594a00f1a92b08c444a7347a657b4033186d4f08b19"; + x86_64-apple-darwin = "ac14b1c7dc330dcb53d8641d74ebf9b32aa8b03b9d650bcb9258030d8b10dbd6"; }; platform = diff --git a/pkgs/development/compilers/rust/patches/net-tcp-disable-tests.patch b/pkgs/development/compilers/rust/patches/net-tcp-disable-tests.patch index 57abb3117ec..583a6027f83 100644 --- a/pkgs/development/compilers/rust/patches/net-tcp-disable-tests.patch +++ b/pkgs/development/compilers/rust/patches/net-tcp-disable-tests.patch @@ -1,6 +1,6 @@ -diff -ru -x '*~' rustc-1.35.0-src-orig/src/libstd/net/tcp.rs rustc-1.35.0-src/src/libstd/net/tcp.rs ---- rustc-1.35.0-src-orig/src/libstd/net/tcp.rs 2019-05-20 14:10:15.000000000 +0200 -+++ rustc-1.35.0-src/src/libstd/net/tcp.rs 2019-06-13 19:59:46.740611889 +0200 +diff -ru rustc-1.36.0-src-orig/src/libstd/net/tcp.rs rustc-1.36.0-src/src/libstd/net/tcp.rs +--- rustc-1.36.0-src-orig/src/libstd/net/tcp.rs 2019-07-03 10:00:00.000000000 +0200 ++++ rustc-1.36.0-src/src/libstd/net/tcp.rs 2019-07-07 11:33:35.378130207 +0200 @@ -973,6 +973,7 @@ } } @@ -57,19 +57,16 @@ diff -ru -x '*~' rustc-1.35.0-src-orig/src/libstd/net/tcp.rs rustc-1.35.0-src/sr fn clone_while_reading() { each_ip(&mut |addr| { let accept = t!(TcpListener::bind(&addr)); -@@ -1597,7 +1604,10 @@ +@@ -1597,7 +1604,7 @@ - // FIXME: re-enabled bitrig/openbsd tests once their socket timeout code + // FIXME: re-enabled openbsd tests once their socket timeout code // no longer has rounding errors. -- #[cfg_attr(any(target_os = "bitrig", target_os = "netbsd", target_os = "openbsd"), ignore)] -+ #[cfg_attr(any(target_os = "bitrig", -+ target_os = "netbsd", -+ target_os = "openbsd", -+ target_os = "macos"), ignore)] +- #[cfg_attr(any(target_os = "netbsd", target_os = "openbsd"), ignore)] ++ #[cfg_attr(any(target_os = "netbsd", target_os = "openbsd", target_os = "macos"), ignore)] #[cfg_attr(target_env = "sgx", ignore)] // FIXME: https://github.com/fortanix/rust-sgx/issues/31 #[test] fn timeouts() { -@@ -1643,6 +1653,7 @@ +@@ -1643,6 +1650,7 @@ drop(listener); } @@ -77,7 +74,7 @@ diff -ru -x '*~' rustc-1.35.0-src-orig/src/libstd/net/tcp.rs rustc-1.35.0-src/sr #[test] #[cfg_attr(target_env = "sgx", ignore)] // FIXME: https://github.com/fortanix/rust-sgx/issues/31 fn test_read_with_timeout() { -@@ -1687,6 +1698,7 @@ +@@ -1687,6 +1695,7 @@ drop(listener); } @@ -85,7 +82,7 @@ diff -ru -x '*~' rustc-1.35.0-src-orig/src/libstd/net/tcp.rs rustc-1.35.0-src/sr #[test] #[cfg_attr(target_env = "sgx", ignore)] fn nodelay() { -@@ -1719,6 +1731,7 @@ +@@ -1719,6 +1728,7 @@ assert_eq!(ttl, t!(stream.ttl())); } diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 099e41805ab..056f17c43d7 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -17,11 +17,11 @@ let llvmShared = llvm_7.override { enableSharedLibraries = true; }; in stdenv.mkDerivation rec { pname = "rustc"; - version = "1.35.0"; + version = "1.36.0"; src = fetchurl { url = "https://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"; - sha256 = "0bbizy6b7002v1rdhrxrf5gijclbyizdhkglhp81ib3bf5x66kas"; + sha256 = "06xv2p6zq03lidr0yaf029ii8wnjjqa894nkmrm6s0rx47by9i04"; }; __darwinAllowLocalNetworking = true; From 33723434a888b7b9ce5a9b35dba2e77baf254109 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 7 Jul 2019 14:44:04 +0200 Subject: [PATCH 0119/1611] rustc: Add setup hook to set $CARGO_HOME This works around 'failed to open: /homeless-shelter/.cargo/.package-cache' with Rust 1.36 even when we're using 'cargo --frozen'. --- pkgs/development/compilers/rust/rustc.nix | 2 ++ pkgs/development/compilers/rust/setup-hook.sh | 4 ++++ 2 files changed, 6 insertions(+) create mode 100644 pkgs/development/compilers/rust/setup-hook.sh diff --git a/pkgs/development/compilers/rust/rustc.nix b/pkgs/development/compilers/rust/rustc.nix index 056f17c43d7..66da4d33251 100644 --- a/pkgs/development/compilers/rust/rustc.nix +++ b/pkgs/development/compilers/rust/rustc.nix @@ -206,6 +206,8 @@ in stdenv.mkDerivation rec { # https://github.com/rust-lang/rust/issues/30181 # enableParallelBuilding = false; + setupHooks = ./setup-hook.sh; + requiredSystemFeatures = [ "big-parallel" ]; meta = with stdenv.lib; { diff --git a/pkgs/development/compilers/rust/setup-hook.sh b/pkgs/development/compilers/rust/setup-hook.sh new file mode 100644 index 00000000000..7078ec7060b --- /dev/null +++ b/pkgs/development/compilers/rust/setup-hook.sh @@ -0,0 +1,4 @@ +# Fix 'failed to open: /homeless-shelter/.cargo/.package-cache' in rust 1.36. +if [[ -z $IN_NIX_SHELL && -z $CARGO_HOME ]]; then + export CARGO_HOME=$TMPDIR +fi From f7c776760babb4f2d5d4341a5dbd882bf7751e9c Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Sun, 7 Jul 2019 08:43:41 -0700 Subject: [PATCH 0120/1611] nixos/nscd: only drop privs after nss module init NixOS usually needs nscd just to have a single place where LD_LIBRARY_PATH can be set to include all NSS modules, but nscd is also useful if some of the NSS modules need to read files which are only accessible by root. For example, nixos/modules/config/ldap.nix needs this when users.ldap.enable = true; users.ldap.daemon.enable = false; and users.ldap.bind.passwordFile exists. In that case, the module creates an /etc/ldap.conf which is only readable by root, but which the NSS module needs to read in order to find out what LDAP server to connect to and with what credentials. If nscd is started as root and configured with the server-user option in nscd.conf, then it gives each NSS module the opportunity to initialize itself before dropping privileges. The initialization happens in the glibc-internal __nss_disable_nscd function, which pre-loads all the configured NSS modules for passwd, group, hosts, and services (but not netgroup for some reason?) and, for each loaded module, calls an init function if one is defined. After that finishes, nscd's main() calls nscd_init() which ends by calling finish_drop_privileges(). There are provisions in systemd for using DynamicUser with a service which needs to drop privileges itself, so this patch does that. --- nixos/modules/services/system/nscd.conf | 1 + nixos/modules/services/system/nscd.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/system/nscd.conf b/nixos/modules/services/system/nscd.conf index bd802bd3c2e..2b7523a7346 100644 --- a/nixos/modules/services/system/nscd.conf +++ b/nixos/modules/services/system/nscd.conf @@ -6,6 +6,7 @@ # fallback to trying to handle the request by itself. Which won't work as glibc # is not aware of the path in which the nss modules live. As a workaround, we # have `enable-cache yes` with an explicit ttl of 0 +server-user nscd enable-cache passwd yes positive-time-to-live passwd 0 diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index d094e9893ff..c2d0cd5d0eb 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -53,7 +53,7 @@ in ]; serviceConfig = - { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd"; + { ExecStart = "!@${pkgs.glibc.bin}/sbin/nscd nscd"; Type = "forking"; DynamicUser = true; RuntimeDirectory = "nscd"; From 0d8e17f32c307c0d78b96505eb76f9e79fdb7d31 Mon Sep 17 00:00:00 2001 From: Carlos D Date: Mon, 1 Jul 2019 11:19:38 +1000 Subject: [PATCH 0121/1611] sonobuoy: init at 0.15.0 --- .../networking/cluster/sonobuoy/default.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/applications/networking/cluster/sonobuoy/default.nix diff --git a/pkgs/applications/networking/cluster/sonobuoy/default.nix b/pkgs/applications/networking/cluster/sonobuoy/default.nix new file mode 100644 index 00000000000..de683b26484 --- /dev/null +++ b/pkgs/applications/networking/cluster/sonobuoy/default.nix @@ -0,0 +1,43 @@ +{ lib, buildGoPackage, fetchFromGitHub }: + +# SHA of ${version} for the tool's help output +let rev = "7ad367535a6710802085d41e0dbb53df359b9882"; +in +buildGoPackage rec { + pname = "sonobuoy"; + version = "0.15.0"; + + goPackagePath = "github.com/heptio/sonobuoy"; + + buildFlagsArray = + let t = "${goPackagePath}"; + in '' + -ldflags= + -s -X ${t}/pkg/buildinfo.Version=${version} + -X ${t}/pkg/buildinfo.GitSHA=${rev} + -X ${t}/pkg/buildDate=unknown + ''; + + src = fetchFromGitHub { + sha256 = "0dkmhmr7calk8mkdxfpy3yjzk10ja4gz1jq8pgk3v8rh04f4h1x5"; + rev = "v${version}"; + repo = "sonobuoy"; + owner = "heptio"; + }; + + meta = with lib; { + description = '' + Diagnostic tool that makes it easier to understand the + state of a Kubernetes cluster. + ''; + longDescription = '' + Sonobuoy is a diagnostic tool that makes it easier to understand the state of + a Kubernetes cluster by running a set of Kubernetes conformance tests in an + accessible and non-destructive manner. + ''; + + homepage = "https://github.com/heptio/sonobuoy"; + license = licenses.asl20; + maintainers = with maintainers; [ carlosdagos ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 54f2cab11d4..e6aae269a27 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2657,6 +2657,8 @@ in sonota = callPackage ../tools/misc/sonota { }; + sonobuoy = callPackage ../applications/networking/cluster/sonobuoy { }; + tealdeer = callPackage ../tools/misc/tealdeer { }; teamocil = callPackage ../tools/misc/teamocil { }; From f1070eec27e889566d441d90d54dc3619ce6c91e Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Mon, 8 Jul 2019 21:56:40 +0200 Subject: [PATCH 0122/1611] stdenv: MACOSX_DEPLOYMENT_TARGET 10.10 -> 10.12 --- pkgs/stdenv/darwin/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index f7a40bb0d0e..b6a488ed2f2 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -32,7 +32,7 @@ in rec { export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}" export NIX_IGNORE_LD_THROUGH_GCC=1 stripAllFlags=" " # the Darwin "strip" command doesn't know "-s" - export MACOSX_DEPLOYMENT_TARGET=10.10 + export MACOSX_DEPLOYMENT_TARGET=10.12 export SDKROOT= export CMAKE_OSX_ARCHITECTURES=x86_64 # Workaround for https://openradar.appspot.com/22671534 on 10.11. From 05ad8cf2095aa77d7def4f18abf3a9630835c9d0 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Mon, 8 Jul 2019 19:58:46 +0200 Subject: [PATCH 0123/1611] iproute: 5.1.0 -> 5.2.0 "Not a lot of big new features in this release. Just the usual array of small fixes across the board." [0] File changes: None nix path-info -S: 5.1.0 46637048 5.2.0 46627312 [0]: https://www.spinics.net/lists/netdev/msg584562.html --- pkgs/os-specific/linux/iproute/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/iproute/default.nix b/pkgs/os-specific/linux/iproute/default.nix index 1e53112d360..527edc5ea74 100644 --- a/pkgs/os-specific/linux/iproute/default.nix +++ b/pkgs/os-specific/linux/iproute/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "iproute2"; - version = "5.1.0"; + version = "5.2.0"; src = fetchurl { url = "mirror://kernel/linux/utils/net/${pname}/${pname}-${version}.tar.xz"; - sha256 = "1kvvrz5mlpjxqcm7vl6i8w6l1cb2amp6p5xyq006pgzafc49hnnw"; + sha256 = "1a2dywa2kam24951byv9pl32mb9z6klh7d4vp8fwfgrm4vn5vfd5"; }; preConfigure = '' From c9fe80a67f1638124e1efa21e0c128daf466c695 Mon Sep 17 00:00:00 2001 From: Minijackson Date: Sat, 22 Jun 2019 16:31:33 +0200 Subject: [PATCH 0124/1611] sequoia-tool: init at 0.9.0 --- pkgs/tools/security/sequoia-tool/default.nix | 32 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/security/sequoia-tool/default.nix diff --git a/pkgs/tools/security/sequoia-tool/default.nix b/pkgs/tools/security/sequoia-tool/default.nix new file mode 100644 index 00000000000..00472c1a3aa --- /dev/null +++ b/pkgs/tools/security/sequoia-tool/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitLab, rustPlatform, darwin +, pkgconfig, capnproto, clang, libclang, nettle, openssl, sqlite }: + +rustPlatform.buildRustPackage rec { + pname = "sequoia-tool"; + version = "0.9.0"; + + src = fetchFromGitLab { + owner = "sequoia-pgp"; + repo = "sequoia"; + rev = "v${version}"; + sha256 = "13dzwdzz33dy2lgnznsv8wqnw2501f2ggrkfwpqy5x6d1kgms8rj"; + }; + + nativeBuildInputs = [ pkgconfig clang libclang ]; + buildInputs = [ capnproto nettle openssl sqlite ] + ++ stdenv.lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; + + LIBCLANG_PATH = libclang + "/lib"; + + cargoBuildFlags = [ "--package=sequoia-tool" ]; + + cargoSha256 = "1zcnkpzcar3a2fk2rn3i3nb70b59ds9fpfa44f15r3aaxajsdhdi"; + + meta = with stdenv.lib; { + description = "A command-line frontend for Sequoia, an implementation of OpenPGP"; + homepage = https://sequoia-pgp.org/; + license = licenses.gpl3; + maintainers = with maintainers; [ minijackson ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3cae37ee001..5cdfb13f96b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5813,6 +5813,8 @@ in seqdiag = with python3Packages; toPythonApplication seqdiag; + sequoia-tool = callPackage ../tools/security/sequoia-tool { inherit (llvmPackages) libclang; }; + sewer = callPackage ../tools/admin/sewer { }; screenfetch = callPackage ../tools/misc/screenfetch { }; From 1738283e6e53267ed1999daedccfb1a6ca3306b7 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 9 Jul 2019 08:06:52 +0200 Subject: [PATCH 0125/1611] nixos/network-interfaces: make `preferTempAddr=false` work again --- nixos/modules/tasks/network-interfaces.nix | 16 +++++++++++++--- nixos/tests/networking.nix | 22 ++++++++++++++++++++-- 2 files changed, 33 insertions(+), 5 deletions(-) diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index e14cafa9b12..1a13e386947 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -1089,12 +1089,22 @@ in services.udev.packages = [ (pkgs.writeTextFile rec { - name = "99-ipv6-privacy-extensions.rules"; - destination = "/etc/udev/rules.d/99-${name}"; + name = "ipv6-privacy-extensions.rules"; + destination = "/etc/udev/rules.d/98-${name}"; text = '' + # enable and prefer IPv6 privacy addresses by default ACTION=="add", SUBSYSTEM=="net", RUN+="${pkgs.procps}/bin/sysctl net.ipv6.conf.%k.use_tempaddr=2" ''; - }) ] ++ lib.optional (cfg.wlanInterfaces != {}) + }) + (pkgs.writeTextFile rec { + name = "ipv6-privacy-extensions.rules"; + destination = "/etc/udev/rules.d/99-${name}"; + text = concatMapStrings (i: '' + # enable IPv6 privacy addresses but prefer EUI-64 addresses for ${i.name} + ACTION=="add", SUBSYSTEM=="net", RUN+="${pkgs.procps}/bin/sysctl net.ipv6.conf.${i.name}.use_tempaddr=1" + '') (filter (i: !i.preferTempAddress) interfaces); + }) + ] ++ lib.optional (cfg.wlanInterfaces != {}) (pkgs.writeTextFile { name = "99-zzz-40-wlanInterfaces.rules"; destination = "/etc/udev/rules.d/99-zzz-40-wlanInterfaces.rules"; diff --git a/nixos/tests/networking.nix b/nixos/tests/networking.nix index ed9f287d558..949d946bdc4 100644 --- a/nixos/tests/networking.nix +++ b/nixos/tests/networking.nix @@ -510,7 +510,7 @@ let ''; }; }; - nodes.client = { pkgs, ... }: with pkgs.lib; { + nodes.clientWithPrivacy = { pkgs, ... }: with pkgs.lib; { virtualisation.vlans = [ 1 ]; networking = { useNetworkd = networkd; @@ -522,21 +522,39 @@ let }; }; }; + nodes.client = { pkgs, ... }: with pkgs.lib; { + virtualisation.vlans = [ 1 ]; + networking = { + useNetworkd = networkd; + useDHCP = true; + interfaces.eth1 = { + preferTempAddress = false; + ipv4.addresses = mkOverride 0 [ ]; + ipv6.addresses = mkOverride 0 [ ]; + }; + }; + }; testScript = { ... }: '' startAll; $client->waitForUnit("network.target"); + $clientWithPrivacy->waitForUnit("network.target"); $router->waitForUnit("network-online.target"); # Wait until we have an ip address + $clientWithPrivacy->waitUntilSucceeds("ip addr show dev eth1 | grep -q 'fd00:1234:5678:1:'"); $client->waitUntilSucceeds("ip addr show dev eth1 | grep -q 'fd00:1234:5678:1:'"); # Test vlan 1 + $clientWithPrivacy->waitUntilSucceeds("ping -c 1 fd00:1234:5678:1::1"); $client->waitUntilSucceeds("ping -c 1 fd00:1234:5678:1::1"); # Test address used is temporary - $client->waitUntilSucceeds("! ip route get fd00:1234:5678:1::1 | grep -q ':[a-f0-9]*ff:fe[a-f0-9]*:'"); + $clientWithPrivacy->waitUntilSucceeds("! ip route get fd00:1234:5678:1::1 | grep -q ':[a-f0-9]*ff:fe[a-f0-9]*:'"); + + # Test address used is EUI-64 + $client->waitUntilSucceeds("ip route get fd00:1234:5678:1::1 | grep -q ':[a-f0-9]*ff:fe[a-f0-9]*:'"); ''; }; routes = { From a88e319591f072afd109239237e5f3927654dc74 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 9 Jul 2019 10:02:26 +0200 Subject: [PATCH 0126/1611] python36: 3.6.8 -> 3.6.9 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 119c0a2728b..5dbf934b7c7 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -77,10 +77,10 @@ in { sourceVersion = { major = "3"; minor = "6"; - patch = "8"; + patch = "9"; suffix = ""; }; - sha256 = "14qi6n5gpcjnwy165wi9hkfcmbadc95ny6bxxldknxwmx50n4i1m"; + sha256 = "1nkh70azbv866aw5a9bbxsxarsf40233vrzpjq17z3rz9ramybsy"; inherit (darwin) CF configd; inherit passthruFun; }; From 46d91410afc74d2c5ddf08921a6befb3da18784a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 9 Jul 2019 10:02:38 +0200 Subject: [PATCH 0127/1611] python37: 3.7.3 -> 3.7.4 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 5dbf934b7c7..cb18f99abb4 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -90,10 +90,10 @@ in { sourceVersion = { major = "3"; minor = "7"; - patch = "3"; + patch = "4"; suffix = ""; }; - sha256 = "066ka8csjwkycqpgyv424d8hhqhfd7r6svsp4sfcvkylci0baq6s"; + sha256 = "0gxiv5617zd7dnqm5k9r4q2188lk327nf9jznwq9j6b8p0s92ygv"; inherit (darwin) CF configd; inherit passthruFun; }; From ab0b3e5573d30a6070770055ac9daa9c418683a5 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Tue, 9 Jul 2019 12:33:30 +0200 Subject: [PATCH 0128/1611] palemoon: 27.9.4 -> 28.6.0.1, slight refactor MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit · Added new (/previously unnoticed?) dependencies. · Refactored to use pname, quoted homepage, better description. · Added myself to maintainers. · Configuration changed according to upstream documentation. · Build & Install phases simplified/refactored to be more like Arch's PKGBUILD. --- .../networking/browsers/palemoon/default.nix | 86 ++++++++++--------- 1 file changed, 47 insertions(+), 39 deletions(-) diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix index 0d863ae9131..74d8ba8ea43 100644 --- a/pkgs/applications/networking/browsers/palemoon/default.nix +++ b/pkgs/applications/networking/browsers/palemoon/default.nix @@ -1,23 +1,23 @@ { stdenv, fetchFromGitHub, makeDesktopItem , pkgconfig, autoconf213, alsaLib, bzip2, cairo , dbus, dbus-glib, file, fontconfig, freetype -, gstreamer, gst-plugins-base, gst_all_1 +, gnome2, gnum4, gstreamer, gst-plugins-base, gst_all_1 , gtk2, hunspell, icu, libevent, libjpeg, libnotify , libstartup_notification, libvpx, makeWrapper, libGLU_combined , nspr, nss, pango, perl, python, libpulseaudio, sqlite -, unzip, xorg, which, yasm, zip, zlib +, unzip, xorg, wget, which, yasm, zip, zlib }: stdenv.mkDerivation rec { - name = "palemoon-${version}"; - version = "27.9.4"; + pname = "palemoon"; + version = "28.6.0.1"; src = fetchFromGitHub { - name = "palemoon-src"; + name = "${pname}-${version}"; owner = "MoonchildProductions"; - repo = "Pale-Moon"; - rev = version + "_Release"; - sha256 = "0ir5gzhw98gfn15x58g1fwi11jd7gysvacqxg1v0jdjhgdl4m5sx"; + repo = "UXP"; + rev = "PM${version}_Release"; + sha256 = "1adgajy5vsghvjlv2nqyrbp6mnv3k6slqxxi8r949xlb5h6d210b"; }; desktopItem = makeDesktopItem { @@ -40,10 +40,10 @@ stdenv.mkDerivation rec { buildInputs = [ alsaLib bzip2 cairo dbus dbus-glib file fontconfig freetype - gst-plugins-base gstreamer gst_all_1.gst-plugins-base gtk2 + gnome2.GConf gnum4 gst-plugins-base gstreamer gst_all_1.gst-plugins-base gtk2 hunspell icu libevent libjpeg libnotify libstartup_notification libvpx makeWrapper libGLU_combined nspr nss pango perl pkgconfig python - libpulseaudio sqlite unzip which yasm zip zlib + libpulseaudio sqlite unzip wget which yasm zip zlib ] ++ (with xorg; [ libX11 libXext libXft libXi libXrender libXScrnSaver libXt pixman xorgproto @@ -52,57 +52,65 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; configurePhase = '' - export AUTOCONF=${autoconf213}/bin/autoconf - export MOZBUILD_STATE_PATH=$(pwd)/.mozbuild - export MOZ_CONFIG=$(pwd)/.mozconfig - export builddir=$(pwd)/build - mkdir -p $MOZBUILD_STATE_PATH $builddir - echo > $MOZ_CONFIG " - . $src/build/mozconfig.common - ac_add_options --prefix=$out - ac_add_options --with-pthreads - ac_add_options --enable-application=browser + export MOZBUILD_STATE_PATH=$(pwd)/mozbuild + export MOZCONFIG=$(pwd)/mozconfig + export builddir=$(pwd)/pmbuild + + echo > $MOZCONFIG " + mk_add_options AUTOCLOBBER=1 + mk_add_options MOZ_OBJDIR=$builddir + ac_add_options --enable-application=palemoon + + ac_add_options --enable-optimize='-O2' + + # Please see https://www.palemoon.org/redist.shtml for restrictions when using the official branding. ac_add_options --enable-official-branding - ac_add_options --enable-optimize="-O2" - ac_add_options --enable-release - ac_add_options --enable-devtools + export MOZILLA_OFFICIAL=1 + + ac_add_options --enable-default-toolkit=cairo-gtk2 ac_add_options --enable-jemalloc - ac_add_options --enable-shared-js ac_add_options --enable-strip + ac_add_options --with-pthreads + ac_add_options --disable-tests - ac_add_options --disable-installer - ac_add_options --disable-updaters + ac_add_options --disable-eme + ac_add_options --disable-parental-controls + ac_add_options --disable-accessibility + ac_add_options --disable-webrtc + ac_add_options --disable-gamepad + ac_add_options --disable-necko-wifi + ac_add_options --disable-updater + + ac_add_options --x-libraries=${xorg.libX11.out}/lib + + ac_add_options --prefix=$out + mk_add_options MOZ_MAKE_FLAGS='-j$NIX_BUILD_CORES' + mk_add_options AUTOCONF=${autoconf213}/bin/autoconf " ''; - patchPhase = '' - chmod u+w . - ''; - hardeningDisable = [ "format" ]; - + buildPhase = '' - cd $builddir $src/mach build ''; installPhase = '' + $src/mach install + mkdir -p $out/share/applications cp ${desktopItem}/share/applications/* $out/share/applications for n in 16 22 24 32 48 256; do size=$n"x"$n mkdir -p $out/share/icons/hicolor/$size/apps - cp $src/browser/branding/official/default$n.png \ + cp $src/application/palemoon/branding/official/default$n.png \ $out/share/icons/hicolor/$size/apps/palemoon.png done - - cd $builddir - $src/mach install ''; meta = with stdenv.lib; { - description = "A web browser"; + description = "An Open Source, Goanna-based web browser focusing on efficiency and customization"; longDescription = '' Pale Moon is an Open Source, Goanna-based web browser focusing on efficiency and customization. @@ -114,9 +122,9 @@ stdenv.mkDerivation rec { experience, while offering full customization and a growing collection of extensions and themes to make the browser truly your own. ''; - homepage = https://www.palemoon.org/; + homepage = "https://www.palemoon.org/"; license = licenses.mpl20; - maintainers = with maintainers; [ rnhmjoj AndersonTorres ]; + maintainers = with maintainers; [ rnhmjoj AndersonTorres OPNA2608 ]; platforms = platforms.linux; }; } From 3b1948b2d4a0aacbfca3424d22763d0eb1b20fc0 Mon Sep 17 00:00:00 2001 From: Marek Fajkus Date: Tue, 9 Jul 2019 12:37:29 +0200 Subject: [PATCH 0129/1611] elm.elmPackages: Update elm-analyse and node2nix --- pkgs/development/compilers/elm/default.nix | 2 +- .../elm/packages/node-composition.nix | 2 +- .../compilers/elm/packages/node-env.nix | 158 +++--- .../compilers/elm/packages/node-packages.json | 2 +- .../compilers/elm/packages/node-packages.nix | 517 ++++++++---------- 5 files changed, 319 insertions(+), 362 deletions(-) diff --git a/pkgs/development/compilers/elm/default.nix b/pkgs/development/compilers/elm/default.nix index a819361f4d4..fbb991d7b5a 100644 --- a/pkgs/development/compilers/elm/default.nix +++ b/pkgs/development/compilers/elm/default.nix @@ -56,7 +56,7 @@ let */ elm-test = patchBinwrap [elmi-to-json] elmNodePackages.elm-test; elm-verify-examples = patchBinwrap [elmi-to-json] elmNodePackages.elm-verify-examples; - elm-analyse = elmNodePackages."elm-analyse-0.16.3"; + elm-analyse = elmNodePackages.elm-analyse; inherit (elmNodePackages) elm-doc-preview elm-upgrade; }; in elmPkgs // { diff --git a/pkgs/development/compilers/elm/packages/node-composition.nix b/pkgs/development/compilers/elm/packages/node-composition.nix index 1039eb51fe2..fa0a1482f97 100644 --- a/pkgs/development/compilers/elm/packages/node-composition.nix +++ b/pkgs/development/compilers/elm/packages/node-composition.nix @@ -1,4 +1,4 @@ -# This file has been generated by node2nix 1.6.0. Do not edit! +# This file has been generated by node2nix 1.7.0. Do not edit! {pkgs ? import { inherit system; diff --git a/pkgs/development/compilers/elm/packages/node-env.nix b/pkgs/development/compilers/elm/packages/node-env.nix index 720e0cc0850..670556bf271 100644 --- a/pkgs/development/compilers/elm/packages/node-env.nix +++ b/pkgs/development/compilers/elm/packages/node-env.nix @@ -11,7 +11,7 @@ let cat > $out/bin/tar < Date: Wed, 3 Jul 2019 14:45:02 -0500 Subject: [PATCH 0130/1611] yubikey-personalization: 1.19.3 -> 1.20.0 https://developers.yubico.com/yubikey-personalization/Release_Notes.html --- pkgs/tools/misc/yubikey-personalization/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/yubikey-personalization/default.nix b/pkgs/tools/misc/yubikey-personalization/default.nix index 9caf4cf07b8..8308d5eebcd 100644 --- a/pkgs/tools/misc/yubikey-personalization/default.nix +++ b/pkgs/tools/misc/yubikey-personalization/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "yubikey-personalization-${version}"; - version = "1.19.3"; + version = "1.20.0"; src = fetchurl { url = "https://developers.yubico.com/yubikey-personalization/Releases/ykpers-${version}.tar.gz"; - sha256 = "0jhvnavjrpwzmmjcw486df5s48j53njqgyz36yz3dskbaz3kwlfr"; + sha256 = "14wvlwqnwj0gllkpvfqiy8ns938bwvjsz8x1hmymmx32m074vj0f"; }; nativeBuildInputs = [ pkgconfig ]; From a714c066e208710bf2c25f44c222427e2d5f5ab7 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 2 Jul 2019 17:34:31 -0500 Subject: [PATCH 0131/1611] goxel: 0.9.0 -> -> 0.10.0 --- pkgs/applications/graphics/goxel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/goxel/default.nix b/pkgs/applications/graphics/goxel/default.nix index 2957192f16e..b25ba8f567d 100644 --- a/pkgs/applications/graphics/goxel/default.nix +++ b/pkgs/applications/graphics/goxel/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "goxel-${version}"; - version = "0.9.0"; + version = "0.10.0"; src = fetchFromGitHub { owner = "guillaumechereau"; repo = "goxel"; rev = "v${version}"; - sha256 = "1vd1vw5pplm4ig9f5gwnbvndnag1h7j0jj0cnj78gpiv96qak2vw"; + sha256 = "1mdw4bs7hvfn0yngd9ial5wzlfkcbhr3wzldb1w7s3s48agixkdr"; }; patches = [ ./disable-imgui_ini.patch ]; From 2a72715e09d38359e8b07e9c228aa926eb526a50 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 1 Jul 2019 18:01:27 -0500 Subject: [PATCH 0132/1611] freetype: 2.10.0 -> 2.10.1 https://sourceforge.net/projects/freetype/files/freetype2/2.10.1/ --- pkgs/development/libraries/freetype/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index 4658ac049df..ba49f5841f1 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -14,7 +14,7 @@ let in stdenv.mkDerivation rec { pname = "freetype"; - version = "2.10.0"; + version = "2.10.1"; meta = with stdenv.lib; { description = "A font rendering engine"; @@ -32,20 +32,20 @@ in stdenv.mkDerivation rec { }; src = fetchurl { - url = "mirror://savannah/${pname}/${pname}-${version}.tar.bz2"; - sha256 = "01mybx78n3n9dhzylbrdy42wxdwfn8rp514qdkzjy6b5ij965k7w"; + url = "mirror://savannah/${pname}/${pname}-${version}.tar.xz"; + sha256 = "0vx2dg1jh5kq34dd6ifpjywkpapp8a7p1bvyq9yq5zi1i94gmnqn"; }; propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype + # dependence on harfbuzz is looser than the reverse dependence nativeBuildInputs = [ pkgconfig which makeWrapper ] # FreeType requires GNU Make, which is not part of stdenv on FreeBSD. ++ optional (!stdenv.isLinux) gnumake; patches = - [ ./enable-table-validation.patch - ] ++ - optional useEncumberedCode ./enable-subpixel-rendering.patch; + [ ./enable-table-validation.patch ] ++ + optional useEncumberedCode ./enable-subpixel-rendering.patch; outputs = [ "out" "dev" ]; From 0e824b58af694871abe38f1e6b13c17fdf2a7749 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 9 Jul 2019 10:52:45 -0500 Subject: [PATCH 0133/1611] txr: 117 -> 220 --- pkgs/tools/misc/txr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/txr/default.nix b/pkgs/tools/misc/txr/default.nix index 316dc8e09c1..f679131381f 100644 --- a/pkgs/tools/misc/txr/default.nix +++ b/pkgs/tools/misc/txr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "txr"; - version = "217"; + version = "220"; src = fetchurl { url = "http://www.kylheku.com/cgit/txr/snapshot/${pname}-${version}.tar.bz2"; - sha256 = "0q4v7zsbflzvw1xskacdnj0z8qng8c9pcvaa54f2jnnq7crkrd4q"; + sha256 = "00jg1zhsqhi146xrh0bfb2czfgfw9i2xbpqwk3yh0n766wcm4ryd"; }; nativeBuildInputs = [ bison flex ]; From f3381b53e1b3ceb96edc32296dd0271e7997639b Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 9 Jul 2019 13:23:08 -0500 Subject: [PATCH 0134/1611] freetype: undo formatting, esp since doesn't move to convention. Sorry, thanks for catching this in review! Leaving it as it was to keep this change simpler and friendlier to blame and such :). --- pkgs/development/libraries/freetype/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index ba49f5841f1..eb26a241d1c 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -44,8 +44,9 @@ in stdenv.mkDerivation rec { ++ optional (!stdenv.isLinux) gnumake; patches = - [ ./enable-table-validation.patch ] ++ - optional useEncumberedCode ./enable-subpixel-rendering.patch; + [ ./enable-table-validation.patch + ] ++ + optional useEncumberedCode ./enable-subpixel-rendering.patch; outputs = [ "out" "dev" ]; From 60ed1f425b3d9a024239e86d6ac8566381576d69 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 9 Jul 2019 01:30:23 +0200 Subject: [PATCH 0135/1611] systemd-journal2gelf: 20170413 -> 20190702 --- .../system/systemd-journal2gelf/default.nix | 16 +++++++--------- pkgs/tools/system/systemd-journal2gelf/deps.nix | 11 ----------- 2 files changed, 7 insertions(+), 20 deletions(-) delete mode 100644 pkgs/tools/system/systemd-journal2gelf/deps.nix diff --git a/pkgs/tools/system/systemd-journal2gelf/default.nix b/pkgs/tools/system/systemd-journal2gelf/default.nix index 7230f55d309..2219d623a03 100644 --- a/pkgs/tools/system/systemd-journal2gelf/default.nix +++ b/pkgs/tools/system/systemd-journal2gelf/default.nix @@ -1,19 +1,17 @@ -{ stdenv, buildGoPackage, fetchFromGitHub }: +{ stdenv, buildGoModule, fetchFromGitHub }: -buildGoPackage rec { - name = "SystemdJournal2Gelf-${version}"; - version = "20170413"; - - goPackagePath = "github.com/parse-nl/SystemdJournal2Gelf"; +buildGoModule rec { + pname = "SystemdJournal2Gelf-unstable"; + version = "20190702"; src = fetchFromGitHub { - rev = "862b1d60d2ba12cd8480304ca95041066cc8bdd0"; + rev = "b1aa5ff31307d11a3c9b4dd08c3cd6230d935ec5"; owner = "parse-nl"; repo = "SystemdJournal2Gelf"; - sha256 = "0xvvc7w2sxkhb33nkq5v626l673d5j2z0yc75wvmqzncwfkkv94v"; + sha256 = "0i2pv817fjm2xazxb01dk2gg1xb4d9b6743gqrbsyghbkm7krx29"; }; - goDeps = ./deps.nix; + modSha256 = "0f66bjij3bkjs09xhhp26arivlqrd66z1j5ziy4lq4krg82krsdp"; meta = with stdenv.lib; { description = "Export entries from systemd's journal and send them to a graylog server using gelf"; diff --git a/pkgs/tools/system/systemd-journal2gelf/deps.nix b/pkgs/tools/system/systemd-journal2gelf/deps.nix deleted file mode 100644 index 2e0988e8105..00000000000 --- a/pkgs/tools/system/systemd-journal2gelf/deps.nix +++ /dev/null @@ -1,11 +0,0 @@ -[ -{ - goPackagePath = "github.com/DECK36/go-gelf"; - fetch = { - type = "git"; - url = "https://github.com/DECK36/go-gelf"; - rev = "4bc6123df0946a1c23fd54e0c1d0ed68b44fd99f"; - sha256 = "071zdwcl8ld05gv88yym1p7xq72igd6jj05n5d7v01hn6rvj48ay"; - }; -} -] From 16d0b8dcbd6a8a6be12a2732c7174529c3828051 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 9 Jul 2019 02:01:43 +0200 Subject: [PATCH 0136/1611] nixos/graylog: add test Basic test which confirms new inputs can be created and that messages can be sent to a UDP-GELF input using `netcat`. This test requires 4GB of RAM to avoid issues due insufficient memory (please refer to `nixos/tests/elk.nix` for a detailed explanation of the issue) for elasticsearch. Also it's ensured that elasticsearch has an open HTTP port for communication when starting `graylog`. This is a workaround to ensure that all services are started in proper order, even in test environments with less power. However this shouldn't be implemented in the `nixos/graylog` module as this might be harmful when using elasticsearch clusters that require e.g. authentication and/or run on different servers. --- nixos/tests/all-tests.nix | 1 + nixos/tests/graylog.nix | 111 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) create mode 100644 nixos/tests/graylog.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 359f62751b9..5a017639040 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -99,6 +99,7 @@ in graphene = handleTest ./graphene.nix {}; grafana = handleTest ./grafana.nix {}; graphite = handleTest ./graphite.nix {}; + graylog = handleTest ./graylog.nix {}; hadoop.hdfs = handleTestOn [ "x86_64-linux" ] ./hadoop/hdfs.nix {}; hadoop.yarn = handleTestOn [ "x86_64-linux" ] ./hadoop/yarn.nix {}; handbrake = handleTestOn ["x86_64-linux"] ./handbrake.nix {}; diff --git a/nixos/tests/graylog.nix b/nixos/tests/graylog.nix new file mode 100644 index 00000000000..dc54afd1d26 --- /dev/null +++ b/nixos/tests/graylog.nix @@ -0,0 +1,111 @@ +import ./make-test.nix ({ pkgs, lib, ... }: { + name = "graylog"; + meta.maintainers = with lib.maintainers; [ ma27 ]; + + machine = { pkgs, ... }: { + virtualisation.memorySize = 4096; + virtualisation.diskSize = 4096; + + services.mongodb.enable = true; + services.elasticsearch.enable = true; + services.elasticsearch.package = pkgs.elasticsearch-oss; + services.elasticsearch.extraConf = '' + network.publish_host: 127.0.0.1 + network.bind_host: 127.0.0.1 + ''; + + services.graylog = { + enable = true; + passwordSecret = "YGhZ59wXMrYOojx5xdgEpBpDw2N6FbhM4lTtaJ1KPxxmKrUvSlDbtWArwAWMQ5LKx1ojHEVrQrBMVRdXbRyZLqffoUzHfssc"; + elasticsearchHosts = [ "http://localhost:9200" ]; + + # `echo -n "nixos" | shasum -a 256` + rootPasswordSha2 = "6ed332bcfa615381511d4d5ba44a293bb476f368f7e9e304f0dff50230d1a85b"; + }; + + environment.systemPackages = [ pkgs.jq ]; + + systemd.services.graylog.path = [ pkgs.netcat ]; + systemd.services.graylog.preStart = '' + until nc -z localhost 9200; do + sleep 2 + done + ''; + }; + + testScript = let + payloads.login = pkgs.writeText "login.json" (builtins.toJSON { + host = "127.0.0.1:9000"; + username = "admin"; + password = "nixos"; + }); + + payloads.input = pkgs.writeText "input.json" (builtins.toJSON { + title = "Demo"; + global = false; + type = "org.graylog2.inputs.gelf.udp.GELFUDPInput"; + node = "@node@"; + configuration = { + bind_address = "0.0.0.0"; + decompress_size_limit = 8388608; + number_worker_threads = 1; + override_source = null; + port = 12201; + recv_buffer_size = 262144; + }; + }); + + payloads.gelf_message = pkgs.writeText "gelf.json" (builtins.toJSON { + host = "example.org"; + short_message = "A short message"; + full_message = "A long message"; + version = "1.1"; + level = 5; + facility = "Test"; + }); + in '' + $machine->start; + $machine->waitForUnit("graylog.service"); + $machine->waitForOpenPort(9000); + $machine->succeed("curl -sSfL http://127.0.0.1:9000/"); + + my $session = $machine->succeed("curl -X POST " + . "-sSfL http://127.0.0.1:9000/api/system/sessions " + . "-d \$(cat ${payloads.login}) " + . "-H 'Content-Type: application/json' " + . "-H 'Accept: application/json' " + . "-H 'x-requested-by: cli' " + . "| jq .session_id | xargs echo" + ); + + chomp($session); + + $machine->succeed("curl -X POST " + . "-sSfL http://127.0.0.1:9000/api/system/inputs -u $session:session " + . "-d \$(cat ${payloads.input} | sed -e \"s,\@node\@,\$(cat /var/lib/graylog/server/node-id),\") " + . "-H 'Accept: application/json' " + . "-H 'Content-Type: application/json' " + . "-H 'x-requested-by: cli' " + ); + + $machine->waitUntilSucceeds("test \"\$(curl -sSfL 'http://127.0.0.1:9000/api/cluster/inputstates' " + . "-u $session:session " + . "-H 'Accept: application/json' " + . "-H 'Content-Type: application/json' " + . "-H 'x-requested-by: cli'" + . "| jq 'to_entries[]|.value|.[0]|.state' | xargs echo" + . ")\" = \"RUNNING\"" + ); + + $machine->succeed("echo -n \$(cat ${payloads.gelf_message}) | nc -w10 -u 127.0.0.1 12201"); + + $machine->succeed("test \"\$(curl -X GET " + . "-sSfL 'http://127.0.0.1:9000/api/search/universal/relative?query=*' " + . "-u $session:session " + . "-H 'Accept: application/json' " + . "-H 'Content-Type: application/json' " + . "-H 'x-requested-by: cli'" + . " | jq '.total_results' | xargs echo)\" = \"1\"" + ); + ''; +}) From 9c0915e88ef0225bfafbfa1b92678d847aab2662 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sat, 6 Jul 2019 23:08:55 +0200 Subject: [PATCH 0137/1611] blockbook: init at 0.3.1 --- pkgs/servers/blockbook/default.nix | 51 +++++ pkgs/servers/blockbook/deps.nix | 309 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 362 insertions(+) create mode 100644 pkgs/servers/blockbook/default.nix create mode 100644 pkgs/servers/blockbook/deps.nix diff --git a/pkgs/servers/blockbook/default.nix b/pkgs/servers/blockbook/default.nix new file mode 100644 index 00000000000..6a1d8a75cc1 --- /dev/null +++ b/pkgs/servers/blockbook/default.nix @@ -0,0 +1,51 @@ +{ buildGoPackage +, lib +, fetchFromGitHub +, rocksdb +, bzip2 +, zlib +, packr +, snappy +, pkg-config +, zeromq +, lz4 +}: + +buildGoPackage rec { + pname = "blockbook"; + version = "0.3.1"; + + goPackagePath = "blockbook"; + + src = fetchFromGitHub { + owner = "trezor"; + repo = "blockbook"; + rev = "v${version}"; + sha256 = "0qgd1f3b4vavw55mvpvwvlya39dx1c3kjsc7n46nn7kpc152jv1l"; + }; + + goDeps = ./deps.nix; + + buildInputs = [ bzip2 zlib snappy zeromq lz4 ]; + + nativeBuildInputs = [ pkg-config packr ]; + + preBuild = '' + export CGO_CFLAGS="-I${rocksdb}/include" + export CGO_LDFLAGS="-L${rocksdb}/lib -lrocksdb -lstdc++ -lm -lz -lbz2 -lsnappy -llz4" + packr clean && packr + ''; + + postInstall = '' + rm $bin/bin/{scripts,templates,trezor-common} + ''; + + meta = with lib; { + description = "Trezor address/account balance backend"; + homepage = "https://github.com/trezor/blockbook"; + license = licenses.agpl3; + maintainers = with maintainers; [ mmahut ]; + platforms = platforms.all; + }; +} + diff --git a/pkgs/servers/blockbook/deps.nix b/pkgs/servers/blockbook/deps.nix new file mode 100644 index 00000000000..90ff098581a --- /dev/null +++ b/pkgs/servers/blockbook/deps.nix @@ -0,0 +1,309 @@ +# file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) +[ + { + goPackagePath = "github.com/Groestlcoin/go-groestl-hash"; + fetch = { + type = "git"; + url = "https://github.com/Groestlcoin/go-groestl-hash"; + rev = "790653ac190c4029ee200e82a8f21b5d1afaf7d6"; + sha256 = "02davg672v9sz8l7a8s0b8m87154p42hkm5r6pavf4gqziw8bmr4"; + }; + } + { + goPackagePath = "github.com/beorn7/perks"; + fetch = { + type = "git"; + url = "https://github.com/beorn7/perks"; + rev = "3a771d992973f24aa725d07868b467d1ddfceafb"; + sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; + }; + } + { + goPackagePath = "github.com/bsm/go-vlq"; + fetch = { + type = "git"; + url = "https://github.com/bsm/go-vlq"; + rev = "ec6e8d4f5f4ec0f6e808ffc7f4dcc7516d4d7d49"; + sha256 = "13nhgpigaqdvcksi6jrav0rqr5mzqkx3wrsans9ql89nva51r9sz"; + }; + } + { + goPackagePath = "github.com/martinboehm/btcd"; + fetch = { + type = "git"; + url = "https://github.com/martinboehm/btcd"; + rev = "8e7c0427fee5d4778c5d4eb987150369e3ca1d0e"; + sha256 = "10fwzl8hzqpsq1rk5iz3xs8hbn3wqans12hszvlxlmm2xb0f6z9b"; + }; + } + { + goPackagePath = "github.com/btcsuite/btclog"; + fetch = { + type = "git"; + url = "https://github.com/btcsuite/btclog"; + rev = "84c8d2346e9fc8c7b947e243b9c24e6df9fd206a"; + sha256 = "02dl46wcnfpg9sqvg0ipipkpnd7lrf4fnvb9zy56jqa7mfcwc7wk"; + }; + } + { + goPackagePath = "github.com/deckarep/golang-set"; + fetch = { + type = "git"; + url = "https://github.com/deckarep/golang-set"; + rev = "1d4478f51bed434f1dadf96dcd9b43aabac66795"; + sha256 = "01kaqrc5ywbwa46b6lz3db7kkg8q6v383h4lnxds4z3kjglkqaff"; + }; + } + { + goPackagePath = "github.com/ethereum/go-ethereum"; + fetch = { + type = "git"; + url = "https://github.com/ethereum/go-ethereum"; + rev = "8bbe72075e4e16442c4e28d999edee12e294329e"; + sha256 = "0q0w0vz85d94wym3xni8y22vly886j6g6zn9hizcww1nanvk4nl6"; + }; + } + { + goPackagePath = "github.com/go-stack/stack"; + fetch = { + type = "git"; + url = "https://github.com/go-stack/stack"; + rev = "259ab82a6cad3992b4e21ff5cac294ccb06474bc"; + sha256 = "0irkqifyj84cbnq4n66ax2r591id2285diw5hzcz2k3bga8d8lqr"; + }; + } + { + goPackagePath = "github.com/gobuffalo/packr"; + fetch = { + type = "git"; + url = "https://github.com/gobuffalo/packr"; + rev = "5a2cbb54c4e7d482e3f518c56f1f86f133d5204f"; + sha256 = "0hs62w1bv96zzfqqmnq18w71v0kmh4qrqpkf2y8qngvwgan761gd"; + }; + } + { + goPackagePath = "github.com/gogo/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/gogo/protobuf"; + rev = "1adfc126b41513cc696b209667c8656ea7aac67c"; + sha256 = "1j7azzlnihcvnd1apw5zr0bz30h7n0gyimqqkgc76vzb1n5dpi7m"; + }; + } + { + goPackagePath = "github.com/golang/glog"; + fetch = { + type = "git"; + url = "https://github.com/golang/glog"; + rev = "23def4e6c14b4da8ac2ed8007337bc5eb5007998"; + sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; + }; + } + { + goPackagePath = "github.com/golang/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/golang/protobuf"; + rev = "925541529c1fa6821df4e44ce2723319eb2be768"; + sha256 = "1d3zjvhl115l23xakj0014qpjchivlg098h10v5nfirkk1i9f9sa"; + }; + } + { + goPackagePath = "github.com/golang/snappy"; + fetch = { + type = "git"; + url = "https://github.com/golang/snappy"; + rev = "553a641470496b2327abcac10b36396bd98e45c9"; + sha256 = "0kssxnih1l722hx9219c7javganjqkqhvl3i0hp0hif6xm6chvqk"; + }; + } + { + goPackagePath = "github.com/gorilla/websocket"; + fetch = { + type = "git"; + url = "https://github.com/gorilla/websocket"; + rev = "ea4d1f681babbce9545c9c5f3d5194a789c89f5b"; + sha256 = "1bhgs2542qs49p1dafybqxfs2qc072xv41w5nswyrknwyjxxs2a1"; + }; + } + { + goPackagePath = "github.com/martinboehm/bchutil"; + fetch = { + type = "git"; + url = "https://github.com/martinboehm/bchutil"; + rev = "6373f11b6efe1ea81e8713b8788a695b2c144d38"; + sha256 = "1wp7ixa0n0jj7y9phxm6p3fymc2555fb2k71s91jhis14fil2jim"; + }; + } + { + goPackagePath = "github.com/martinboehm/btcutil"; + fetch = { + type = "git"; + url = "https://github.com/martinboehm/btcutil"; + rev = "225ed00dbbd5cb8d8b3949a0ee7c9ea540754585"; + sha256 = "0dn5s6h1524q38glp6fcdws97lyvmchq26dhbd3dqazrq61dhdvy"; + }; + } + { + goPackagePath = "github.com/juju/errors"; + fetch = { + type = "git"; + url = "https://github.com/juju/errors"; + rev = "c7d06af17c68cd34c835053720b21f6549d9b0ee"; + sha256 = "1dmj8wkpmkw4z4c7wmnscs4ykrcv7p8lgwb75g5akahwqjaf9zcp"; + }; + } + { + goPackagePath = "github.com/martinboehm/golang-socketio"; + fetch = { + type = "git"; + url = "https://github.com/martinboehm/golang-socketio"; + rev = "f60b0a8befde091474a624a8ffd81ee9912957b3"; + sha256 = "1zln03qgzzbkr7zwm7ah1iikjdnipacp60bbg9lzkxsdcw2h1vd5"; + }; + } + { + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; + fetch = { + type = "git"; + url = "https://github.com/matttproud/golang_protobuf_extensions"; + rev = "3247c84500bff8d9fb6d579d800f20b3e091582c"; + sha256 = "12hcych25wf725zxdkpnyx4wa0gyxl8v4m8xmhdmmaki9bbmqd0d"; + }; + } + { + goPackagePath = "github.com/mr-tron/base58"; + fetch = { + type = "git"; + url = "https://github.com/mr-tron/base58"; + rev = "c1bdf7c52f59d6685ca597b9955a443ff95eeee6"; + sha256 = "1dq6i8619manxdhb0fwhdm9ar23kx88pc2xwl1pjla9djrgql6a8"; + }; + } + { + goPackagePath = "github.com/pebbe/zmq4"; + fetch = { + type = "git"; + url = "https://github.com/pebbe/zmq4"; + rev = "5b443b6471cea4b4f9f85025530c04c93233f76a"; + sha256 = "0vnwlabrlrzszqyfbw4vypalhsxi4l4ywcbjhfhwl1fpvcph5dar"; + }; + } + { + goPackagePath = "github.com/pkg/errors"; + fetch = { + type = "git"; + url = "https://github.com/pkg/errors"; + rev = "645ef00459ed84a119197bfb8d8205042c6df63d"; + sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; + }; + } + { + goPackagePath = "github.com/prometheus/client_golang"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_golang"; + rev = "c5b7fccd204277076155f10851dad72b76a49317"; + sha256 = "1xqny3147g12n4j03kxm8s9mvdbs3ln6i56c655mybrn9jjy48kd"; + }; + } + { + goPackagePath = "github.com/prometheus/client_model"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_model"; + rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; + sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; + }; + } + { + goPackagePath = "github.com/prometheus/common"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/common"; + rev = "d0f7cd64bda49e08b22ae8a730aa57aa0db125d6"; + sha256 = "1d4hfbb66xsf0wq317fwhgrwakqzhvryw4d7ip851lwrpql5fqcx"; + }; + } + { + goPackagePath = "github.com/prometheus/procfs"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/procfs"; + rev = "8b1c2da0d56deffdbb9e48d4414b4e674bd8083e"; + sha256 = "0x128p15h35mgwqxkigfkk1lfrcz9g697ahl8v6xp9kwvcqvjrrf"; + }; + } + { + goPackagePath = "github.com/rs/cors"; + fetch = { + type = "git"; + url = "https://github.com/rs/cors"; + rev = "feef513b9575b32f84bafa580aad89b011259019"; + sha256 = "0wjm0yjsnxhnp6924mq8v04srqa8sxrlnd7rkb19h4j6b9zagsik"; + }; + } + { + goPackagePath = "github.com/schancel/cashaddr-converter"; + fetch = { + type = "git"; + url = "https://github.com/schancel/cashaddr-converter"; + rev = "0a38f5822f795dc3727b4caacc298e02938d9eb1"; + sha256 = "0d0dsn029yckgjp26vkmg7r476hb6b9ayf2njcgdi648ln8rrad8"; + }; + } + { + goPackagePath = "github.com/syndtr/goleveldb"; + fetch = { + type = "git"; + url = "https://github.com/syndtr/goleveldb"; + rev = "714f901b98fdb3aa954b4193d8cbd64a28d80cad"; + sha256 = "0fn70vzqmww5v2xy0lamc319vrmfpza085d196cffhfw0jzw9i18"; + }; + } + { + goPackagePath = "github.com/tecbot/gorocksdb"; + fetch = { + type = "git"; + url = "https://github.com/tecbot/gorocksdb"; + rev = "214b6b7bc0f06812ab5602fdc502a3e619916f38"; + sha256 = "1mqpp14z4igr9jip39flpd7nf4rhr3z85y8mg74jjl1yrnwrwsld"; + }; + } + { + goPackagePath = "golang.org/x/crypto"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/crypto"; + rev = "d6449816ce06963d9d136eee5a56fca5b0616e7e"; + sha256 = "17dkprbbk84q165275zwhcn0s6pcarigq37zlhsxj23pq2qz3aqy"; + }; + } + { + goPackagePath = "golang.org/x/net"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/net"; + rev = "61147c48b25b599e5b561d2e9c4f3e1ef489ca41"; + sha256 = "1520pdlw9a9s41ad1cf1z6y2ff4j96zbn82qffrxqk02bqlr9f5w"; + }; + } + { + goPackagePath = "gopkg.in/karalabe/cookiejar.v2"; + fetch = { + type = "git"; + url = "https://github.com/karalabe/cookiejar"; + rev = "8dcd6a7f4951f6ff3ee9cbb919a06d8925822e57"; + sha256 = "1dbizcklsfn6b5i182nf9pgkk4ac8jnmq8zix73si7x2n53wyb3b"; + }; + } + { + goPackagePath = "gopkg.in/natefinch/npipe.v2"; + fetch = { + type = "git"; + url = "https://github.com/natefinch/npipe"; + rev = "c1b8fa8bdccecb0b8db834ee0b92fdbcfa606dd6"; + sha256 = "1qplrvhks05pay169d9lph3hl7apdam4vj1kx3yzik7cphx6b24f"; + }; + } +] \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 001214093ee..8c9e7465574 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1050,6 +1050,8 @@ in blink = callPackage ../applications/networking/instant-messengers/blink { }; + blockbook = callPackage ../servers/blockbook { }; + blockhash = callPackage ../tools/graphics/blockhash { }; bluemix-cli = callPackage ../tools/admin/bluemix-cli { }; From 6049c39bdb3d8bfc01e2a86d2fc6ef6e46f9b0be Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 10 Jul 2019 10:30:43 +0200 Subject: [PATCH 0138/1611] keybase: fix eval after merge mistake --- pkgs/tools/security/keybase/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/keybase/default.nix b/pkgs/tools/security/keybase/default.nix index e94289f048e..18e3836c99d 100644 --- a/pkgs/tools/security/keybase/default.nix +++ b/pkgs/tools/security/keybase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchFromGitHubtchurl +{ stdenv, lib, buildGoPackage, fetchFromGitHub , AVFoundation, AudioToolbox, ImageIO, CoreMedia , Foundation, CoreGraphics, MediaToolbox }: From 34c3c11fb5c272a45593b7212f0de631278c1361 Mon Sep 17 00:00:00 2001 From: justinwoo Date: Mon, 8 Jul 2019 15:10:16 +0300 Subject: [PATCH 0139/1611] fix polybarFull this build cannot support both wirelesstools and libnl at the same time, and also cannot support both i3 and i3gaps. --- pkgs/top-level/all-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5465bb02a9b..6eb097e2c0b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19320,10 +19320,10 @@ in githubSupport = true; mpdSupport = true; pulseSupport = true; - iwSupport = true; + iwSupport = false; nlSupport = true; i3Support = true; - i3GapsSupport = true; + i3GapsSupport = false; }; ptex = callPackage ../development/libraries/ptex {}; From 8317663b9427ef021e917bde6c6c9d6ff05e240c Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Wed, 10 Jul 2019 21:29:25 +0800 Subject: [PATCH 0140/1611] nixos/syncthing: do not use nogroup We were already creating a group for the user under which to run syncthing but we were defaulting to running as `nogroup`. Additionally, use `install` instead of multiple calls to mkdir/cp/chown. --- nixos/modules/services/networking/syncthing.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix index d78a54a3327..8148139c3a8 100644 --- a/nixos/modules/services/networking/syncthing.nix +++ b/nixos/modules/services/networking/syncthing.nix @@ -291,7 +291,7 @@ in { group = mkOption { type = types.str; - default = "nogroup"; + default = defaultUser; description = '' Syncthing will be run under this group (group will not be created if it doesn't exist. This can be your user name). @@ -403,18 +403,12 @@ in { Group = cfg.group; ExecStartPre = mkIf (cfg.declarative.cert != null || cfg.declarative.key != null) "+${pkgs.writers.writeBash "syncthing-copy-keys" '' - mkdir -p ${cfg.configDir} - chown ${cfg.user}:${cfg.group} ${cfg.configDir} - chmod 700 ${cfg.configDir} + install -dm700 -o ${cfg.user} -g ${cfg.group} ${cfg.configDir} ${optionalString (cfg.declarative.cert != null) '' - cp ${toString cfg.declarative.cert} ${cfg.configDir}/cert.pem - chown ${cfg.user}:${cfg.group} ${cfg.configDir}/cert.pem - chmod 400 ${cfg.configDir}/cert.pem + install -Dm400 -o ${cfg.user} -g ${cfg.group} ${toString cfg.declarative.cert} ${cfg.configDir}/cert.pem ''} ${optionalString (cfg.declarative.key != null) '' - cp ${toString cfg.declarative.key} ${cfg.configDir}/key.pem - chown ${cfg.user}:${cfg.group} ${cfg.configDir}/key.pem - chmod 400 ${cfg.configDir}/key.pem + install -Dm400 -o ${cfg.user} -g ${cfg.group} ${toString cfg.declarative.key} ${cfg.configDir}/key.pem ''} ''}" ; From 7fc87a4cbd77eda2ab261f3f9ceee765b8fe6ae1 Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Wed, 10 Jul 2019 22:13:26 -0400 Subject: [PATCH 0141/1611] emacs: add zmq package This builds emacs-zmq.so automatically. Fixes #59774 --- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/emacs-packages.nix | 33 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 54f2cab11d4..b72949cb020 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17716,7 +17716,7 @@ in inherit (pythonPackages) elpy; inherit autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib - substituteAll rustPlatform cmake llvmPackages; + substituteAll rustPlatform cmake llvmPackages libtool zeromq; }; }; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 953c25de0e8..460d5fd5461 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -417,6 +417,39 @@ let zeitgeist = callPackage ../applications/editors/emacs-modes/zeitgeist { }; + zmq = melpaBuild rec { + pname = "zmq"; + ename = "zmq"; + version = "0.10.10"; + src = fetchFromGitHub { + owner = "dzop"; + repo = "emacs-zmq"; + rev = "v0.10.10"; + sha256 = "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8"; + }; + recipe = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/72f4dcc2723de826bf1af7235ac6d9119a243c63/recipes/zmq"; + sha256 = "14bbh00a58xgxyxl8zjxl57rf6351fnwsnk4cvvy341fvf86dklc"; + name = "recipe"; + }; + stripDebugList = [ "share" ]; + packageRequires = [ emacs ]; + nativeBuildInputs = [ external.autoconf external.automake external.pkgconfig external.libtool external.zeromq ]; + preBuild = '' + make + ''; + postInstall = '' + mv $out/share/emacs/site-lisp/elpa/zmq-*/src/.libs/emacs-zmq.so $out/share/emacs/site-lisp/elpa/zmq-* + rm -r $out/share/emacs/site-lisp/elpa/zmq-*/src + rm $out/share/emacs/site-lisp/elpa/zmq-*/Makefile + ''; + meta = { + homepage = "https://melpa.org/#/zmq"; + description = "Emacs bindings to ØMQ"; + license = lib.licenses.gpl2; + }; + }; + }; in From 220c628fc3069b0fbcda5b4a4d29bf98df41e434 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 3 Jul 2019 15:03:46 -0500 Subject: [PATCH 0142/1611] libdrm: 2.4.98 -> 2.4.99 https://lists.x.org/archives/xorg-announce/2019-July/003001.html --- pkgs/development/libraries/libdrm/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libdrm/default.nix b/pkgs/development/libraries/libdrm/default.nix index 4ed3ad356a9..bdc191fe8a3 100644 --- a/pkgs/development/libraries/libdrm/default.nix +++ b/pkgs/development/libraries/libdrm/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, pkgconfig, meson, ninja, libpthreadstubs, libpciaccess, valgrind-light }: stdenv.mkDerivation rec { - name = "libdrm-2.4.98"; + pname = "libdrm"; + version = "2.4.99"; src = fetchurl { - url = "https://dri.freedesktop.org/libdrm/${name}.tar.bz2"; - sha256 = "150qdzsm2nx6dfacc75rx53anzsc6m31nhxidf5xxax3mk6fvq4b"; + url = "https://dri.freedesktop.org/${pname}/${pname}-${version}.tar.bz2"; + sha256 = "0pnsw4bmajzdbz8pk4wswdmw93shhympf2q9alhbnpfjgsf57gsd"; }; outputs = [ "out" "dev" "bin" ]; From df3ae76dfd9065ce6d7bedc389f33eae768e6197 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Thu, 11 Jul 2019 16:27:29 +0800 Subject: [PATCH 0143/1611] libfilezilla: 0.16.0 -> 0.17.1 --- .../libraries/libfilezilla/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/libfilezilla/default.nix b/pkgs/development/libraries/libfilezilla/default.nix index 4a051f34b0b..2a87994db5e 100644 --- a/pkgs/development/libraries/libfilezilla/default.nix +++ b/pkgs/development/libraries/libfilezilla/default.nix @@ -1,19 +1,26 @@ -{ stdenv, fetchurl, pkgconfig, nettle }: +{ stdenv +, fetchurl + +, gettext +, gnutls +, nettle +, pkgconfig +}: stdenv.mkDerivation rec { pname = "libfilezilla"; - version = "0.16.0"; + version = "0.17.1"; src = fetchurl { url = "https://download.filezilla-project.org/${pname}/${pname}-${version}.tar.bz2"; - sha256 = "1fd71vmllzvljff5l5ka5wnzbdsxx4i54dpxpklydmbsqpilnv1v"; + sha256 = "1cnkcl9vif5lz1yx813qrphlpc6gvmzxdmkbd17kh5jqiqdi9vyk"; }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ nettle ]; + buildInputs = [ gettext gnutls nettle ]; meta = with stdenv.lib; { - homepage = https://lib.filezilla-project.org/; + homepage = "https://lib.filezilla-project.org/"; description = "A modern C++ library, offering some basic functionality to build high-performing, platform-independent programs"; license = licenses.gpl2Plus; maintainers = with maintainers; [ pSub ]; From 0d4448183b857735671607b48ddb6b8b6d16480c Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Thu, 11 Jul 2019 16:28:02 +0800 Subject: [PATCH 0144/1611] filezilla: 3.42.1 -> 3.43.0 --- .../networking/ftp/filezilla/default.nix | 46 +++++++++++++++---- 1 file changed, 36 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/networking/ftp/filezilla/default.nix b/pkgs/applications/networking/ftp/filezilla/default.nix index 6bac5bd5836..530671e6173 100644 --- a/pkgs/applications/networking/ftp/filezilla/default.nix +++ b/pkgs/applications/networking/ftp/filezilla/default.nix @@ -1,13 +1,28 @@ -{ stdenv, fetchurl, dbus, gnutls, wxGTK30, libidn, tinyxml, gettext -, pkgconfig, xdg_utils, gtk2, sqlite, pugixml, libfilezilla, nettle }: +{ stdenv +, fetchurl -let version = "3.42.1"; in -stdenv.mkDerivation { - name = "filezilla-${version}"; +, dbus +, gettext +, gnutls +, gtk2 +, libfilezilla +, libidn +, nettle +, pkgconfig +, pugixml +, sqlite +, tinyxml +, wxGTK30 +, xdg_utils +}: + +stdenv.mkDerivation rec { + pname = "filezilla"; + version = "3.43.0"; src = fetchurl { url = "https://download.filezilla-project.org/client/FileZilla_${version}_src.tar.bz2"; - sha256 = "083ycsycwy1szhp3mzf998wsqa74hmdxdsy07x6k81vp2cxjxijg"; + sha256 = "13i505y34b6lg7knzznf8812d9nwpnbf3hidpq58cbv8c31m5rkg"; }; configureFlags = [ @@ -17,21 +32,32 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ - dbus gnutls wxGTK30 libidn tinyxml gettext xdg_utils gtk2 sqlite - pugixml libfilezilla nettle ]; + dbus + gettext + gnutls + gtk2 + libfilezilla + libidn + nettle + pugixml + sqlite + tinyxml + wxGTK30 + xdg_utils + ]; enableParallelBuilding = true; meta = with stdenv.lib; { - homepage = https://filezilla-project.org/; + homepage = "https://filezilla-project.org/"; description = "Graphical FTP, FTPS and SFTP client"; - license = licenses.gpl2; longDescription = '' FileZilla Client is a free, open source FTP client. It supports FTP, SFTP, and FTPS (FTP over SSL/TLS). The client is available under many platforms, binaries for Windows, Linux and macOS are provided. ''; + license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ pSub ]; }; From d55cba68ff391f9b353908ef4555ab8d45d697af Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 9 Jul 2019 17:39:33 -0700 Subject: [PATCH 0145/1611] proj: 5.2.0 -> 6.1.1 --- pkgs/development/libraries/proj/default.nix | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/proj/default.nix b/pkgs/development/libraries/proj/default.nix index 8fb4515e70d..ea89dbee0f6 100644 --- a/pkgs/development/libraries/proj/default.nix +++ b/pkgs/development/libraries/proj/default.nix @@ -1,13 +1,22 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchFromGitHub, pkg-config, sqlite, autoreconfHook }: -stdenv.mkDerivation { - name = "proj-5.2.0"; +stdenv.mkDerivation rec { + name = "proj"; + version = "6.1.1"; - src = fetchurl { - url = https://download.osgeo.org/proj/proj-5.2.0.tar.gz; - sha256 = "0q3ydh2j8qhwlxmnac72pg69rw2znbi5b6k5wama8qmwzycr94gg"; + src = fetchFromGitHub { + owner = "OSGeo"; + repo = "PROJ"; + rev = version; + sha256 = "0w2v2l22kv0xzq5hwl7n8ki6an8vfsr0lg0cdbkwcl4xv889ysma"; }; + outputs = [ "out" "dev"]; + + nativeBuildInputs = [ pkg-config autoreconfHook ]; + + buildInputs = [ sqlite ]; + doCheck = stdenv.is64bit; meta = with stdenv.lib; { From 06960ac6a7b58af84aeccd208b663443b39a6600 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 9 Jul 2019 17:42:01 -0700 Subject: [PATCH 0146/1611] pythonPackages.pyproj: unstable-2018-11-13 -> 2.2.1 --- .../python-modules/pyproj/001.proj.patch | 47 ++++++++++++++++ .../python-modules/pyproj/default.nix | 55 +++++++++++-------- pkgs/top-level/python-packages.nix | 6 +- 3 files changed, 81 insertions(+), 27 deletions(-) create mode 100644 pkgs/development/python-modules/pyproj/001.proj.patch diff --git a/pkgs/development/python-modules/pyproj/001.proj.patch b/pkgs/development/python-modules/pyproj/001.proj.patch new file mode 100644 index 00000000000..b024c28156c --- /dev/null +++ b/pkgs/development/python-modules/pyproj/001.proj.patch @@ -0,0 +1,47 @@ +diff a/pyproj/datadir.py b/pyproj/datadir.py +--- a/pyproj/datadir.py ++++ b/pyproj/datadir.py +@@ -52,6 +52,7 @@ def get_data_dir(): + str: The valid data directory. + + """ ++ return "@proj@/share/proj" + # to avoid re-validating + global _VALIDATED_PROJ_DATA + if _VALIDATED_PROJ_DATA is not None: +diff a/setup.py b/setup.py +--- a/setup.py ++++ b/setup.py +@@ -16,7 +16,7 @@ INTERNAL_PROJ_DIR = os.path.join(CURRENT_FILE_PATH, "pyproj", BASE_INTERNAL_PROJ + + def check_proj_version(proj_dir): + """checks that the PROJ library meets the minimum version""" +- proj = os.path.join(proj_dir, "bin", "proj") ++ proj = "@proj@/bin/proj" + proj_ver_bytes = subprocess.check_output(proj, stderr=subprocess.STDOUT) + proj_ver_bytes = (proj_ver_bytes.decode("ascii").split()[1]).strip(",") + proj_version = parse_version(proj_ver_bytes) +@@ -33,6 +33,7 @@ def get_proj_dir(): + """ + This function finds the base PROJ directory. + """ ++ return "@proj@" + proj_dir = os.environ.get("PROJ_DIR") + if proj_dir is None and os.path.exists(INTERNAL_PROJ_DIR): + proj_dir = INTERNAL_PROJ_DIR +@@ -56,6 +57,7 @@ def get_proj_libdirs(proj_dir): + """ + This function finds the library directories + """ ++ return ["@proj@/lib"] + proj_libdir = os.environ.get("PROJ_LIBDIR") + libdirs = [] + if proj_libdir is None: +@@ -77,6 +79,7 @@ def get_proj_incdirs(proj_dir): + """ + This function finds the include directories + """ ++ return ["@proj@/include"] + proj_incdir = os.environ.get("PROJ_INCDIR") + incdirs = [] + if proj_incdir is None: diff --git a/pkgs/development/python-modules/pyproj/default.nix b/pkgs/development/python-modules/pyproj/default.nix index f08625f62b6..ddfecbe8ec5 100644 --- a/pkgs/development/python-modules/pyproj/default.nix +++ b/pkgs/development/python-modules/pyproj/default.nix @@ -1,38 +1,49 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, python -, nose2 +{ lib, buildPythonPackage, fetchPypi, python, pkgs, pythonOlder, substituteAll +, aenum , cython -, proj ? null +, pytest +, mock +, numpy }: -buildPythonPackage (rec { +buildPythonPackage rec { pname = "pyproj"; - version = "unstable-2018-11-13"; + version = "2.2.1"; - src = fetchFromGitHub { - owner = "jswhit"; - repo = pname; - rev = "78540f5ff40da92160f80860416c91ee74b7643c"; - sha256 = "1vq5smxmpdjxialxxglsfh48wx8kaq9sc5mqqxn4fgv1r5n1m3n9"; + src = fetchPypi { + inherit pname version; + sha256 = "0yigcxwmx5cczipf2mpmy2gq1dnl0635yjvjq86ay47j1j5fd2gc"; }; - buildInputs = [ cython ]; + # force pyproj to use ${pkgs.proj} + patches = [ + (substituteAll { + src = ./001.proj.patch; + proj = pkgs.proj; + }) + ]; - checkInputs = [ nose2 ]; + buildInputs = [ cython pkgs.proj ]; + propagatedBuildInputs = [ + numpy + ] ++ lib.optional (pythonOlder "3.6") aenum; + + checkInputs = [ pytest mock ]; + + # ignore rounding errors, and impure docgen + # datadir is ignored because it does the proj look up logic, which isn't relevant checkPhase = '' - runHook preCheck - pushd unittest # changing directory should ensure we're importing the global pyproj - ${python.interpreter} test.py && ${python.interpreter} -c "import doctest, pyproj, sys; sys.exit(doctest.testmod(pyproj)[0])" - popd - runHook postCheck + pytest . -k 'not alternative_grid_name \ + and not transform_wgs84_to_alaska \ + and not repr' \ + --ignore=test/test_doctest_wrapper.py \ + --ignore=test/test_datadir.py ''; meta = { description = "Python interface to PROJ.4 library"; - homepage = https://github.com/jswhit/pyproj; + homepage = "https://github.com/jswhit/pyproj"; license = with lib.licenses; [ isc ]; }; -} // (if proj == null then {} else { PROJ_DIR = proj; })) +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5dac3b894f5..2150ed83c41 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4032,11 +4032,7 @@ in { pyotp = callPackage ../development/python-modules/pyotp { }; - pyproj = callPackage ../development/python-modules/pyproj { - # pyproj does *work* if you want to use a system supplied proj, but with the current version(s) the tests fail by - # a few decimal places, so caveat emptor. - proj = null; - }; + pyproj = callPackage ../development/python-modules/pyproj { }; pyqrcode = callPackage ../development/python-modules/pyqrcode { }; From 19ebc0bd450851dee4a7d181cadd8e31e1d4d4e0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 03:05:42 -0700 Subject: [PATCH 0147/1611] libspatialite: fix build --- pkgs/development/libraries/libspatialite/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/libspatialite/default.nix b/pkgs/development/libraries/libspatialite/default.nix index 8e7b539527e..7bd22248d87 100644 --- a/pkgs/development/libraries/libspatialite/default.nix +++ b/pkgs/development/libraries/libspatialite/default.nix @@ -11,12 +11,15 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libxml2 sqlite zlib proj geos libiconv ]; configureFlags = [ "--disable-freexl" ]; enableParallelBuilding = true; + CFLAGS = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1"; + postInstall = "" + optionalString stdenv.isDarwin '' ln -s $out/lib/mod_spatialite.{so,dylib} ''; From f424f47fa3f3ca6404476df5cdc60fca4e011763 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 03:06:19 -0700 Subject: [PATCH 0148/1611] libgeotiff: 1.4.3 -> 1.5.1 --- .../libraries/libgeotiff/default.nix | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/libgeotiff/default.nix b/pkgs/development/libraries/libgeotiff/default.nix index 33b9e7830e7..51520eb0fe3 100644 --- a/pkgs/development/libraries/libgeotiff/default.nix +++ b/pkgs/development/libraries/libgeotiff/default.nix @@ -1,18 +1,27 @@ -{ stdenv, fetchurl, libtiff, libjpeg, proj, zlib}: +{ stdenv, fetchFromGitHub, libtiff, libjpeg, proj, zlib, autoreconfHook }: stdenv.mkDerivation rec { - version = "1.4.3"; + version = "1.5.1"; name = "libgeotiff-${version}"; - src = fetchurl { - url = "https://download.osgeo.org/geotiff/libgeotiff/${name}.tar.gz"; - sha256 = "0rbjqixi4c8yz19larlzq6jda0px2gpmpp9c52cyhplbjsdhsldq"; + src = fetchFromGitHub { + owner = "OSGeo"; + repo = "libgeotiff"; + rev = version; + sha256 = "081ag23pn2n5y4fkb2rnh4hmcnq92siqiqv0s20jmx0j3s2nvfxy"; }; + outputs = [ "out" "dev" ]; + + sourceRoot = "source/libgeotiff"; + configureFlags = [ "--with-jpeg=${libjpeg.dev}" "--with-zlib=${zlib.dev}" ]; + + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ libtiff proj ]; hardeningDisable = [ "format" ]; From 9d329c22ac2883448d7e0097e52eaccb9552ab92 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 25 Jun 2019 18:56:24 -0500 Subject: [PATCH 0149/1611] libinput: 1.13.2 -> 1.13.4 https://lists.freedesktop.org/archives/wayland-devel/2019-June/040650.html https://lists.freedesktop.org/archives/wayland-devel/2019-June/040675.html --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 651c4329708..0c759835183 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -27,11 +27,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "libinput-${version}"; - version = "1.13.2"; + version = "1.13.4"; src = fetchurl { url = "https://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "0vbapc90m49n0z8w8w4v0qf1iiwaixw9h79jfmps9pj8hdls17qx"; + sha256 = "07a0w7rak7rvnh6g4j0akwjxwinxfszc1xi9mrx12fv82k3mgsyk"; }; outputs = [ "bin" "out" "dev" ]; From 08286b4f29b9501b6f2ed37a49b6211c35b761ef Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Mon, 1 Jul 2019 15:32:46 -0400 Subject: [PATCH 0150/1611] nixos/httpd: drop tomcat-connector httpd subservice --- nixos/doc/manual/release-notes/rl-1909.xml | 5 + .../apache-httpd/tomcat-connector.nix | 103 ------------------ 2 files changed, 5 insertions(+), 103 deletions(-) delete mode 100644 nixos/modules/services/web-servers/apache-httpd/tomcat-connector.nix diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index 2d14096dcad..12a969a524c 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -329,6 +329,11 @@ from nixpkgs due to lack of maintainer.
+ + + The tomcat-connector httpd.extraSubservice has been removed from nixpkgs. + + diff --git a/nixos/modules/services/web-servers/apache-httpd/tomcat-connector.nix b/nixos/modules/services/web-servers/apache-httpd/tomcat-connector.nix deleted file mode 100644 index a883bb2b343..00000000000 --- a/nixos/modules/services/web-servers/apache-httpd/tomcat-connector.nix +++ /dev/null @@ -1,103 +0,0 @@ -{ config, pkgs, serverInfo, lib, ... }: - -let - extraWorkersProperties = lib.optionalString (config ? extraWorkersProperties) config.extraWorkersProperties; - - workersProperties = pkgs.writeText "workers.properties" '' -# Define list of workers that will be used -# for mapping requests -# The configuration directives are valid -# for the mod_jk version 1.2.18 and later -# -worker.list=loadbalancer,status - -# Define Node1 -# modify the host as your host IP or DNS name. -worker.node1.port=8009 -worker.node1.host=localhost -worker.node1.type=ajp13 -worker.node1.lbfactor=1 - -# Load-balancing behaviour -worker.loadbalancer.type=lb -worker.loadbalancer.balance_workers=node1 - -# Status worker for managing load balancer -worker.status.type=status - -${extraWorkersProperties} - ''; -in -{ - - options = { - extraWorkersProperties = lib.mkOption { - default = ""; - description = "Additional configuration for the workers.properties file."; - }; - }; - - extraModules = [ - { name = "jk"; path = "${pkgs.tomcat_connectors}/modules/mod_jk.so"; } - ]; - - extraConfig = '' -# Where to find workers.properties -JkWorkersFile ${workersProperties} - -# Where to put jk logs -JkLogFile ${serverInfo.serverConfig.logDir}/mod_jk.log - -# Set the jk log level [debug/error/info] -JkLogLevel info - -# Select the log format -JkLogStampFormat "[%a %b %d %H:%M:%S %Y]" - -# JkOptions indicates to send SSK KEY SIZE -# Note: Changed from +ForwardURICompat. -# See http://tomcat.apache.org/security-jk.html -JkOptions +ForwardKeySize +ForwardURICompatUnparsed -ForwardDirectories - -# JkRequestLogFormat -JkRequestLogFormat "%w %V %T" - -# Mount your applications -JkMount /__application__/* loadbalancer - -# You can use external file for mount points. -# It will be checked for updates each 60 seconds. -# The format of the file is: /url=worker -# /examples/*=loadbalancer -#JkMountFile uriworkermap.properties - -# Add shared memory. -# This directive is present with 1.2.10 and -# later versions of mod_jk, and is needed for -# for load balancing to work properly -# Note: Replaced JkShmFile logs/jk.shm due to SELinux issues. Refer to -# https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=225452 -JkShmFile ${serverInfo.serverConfig.stateDir}/jk.shm - -# Static files in all Tomcat webapp context directories are served by apache -JkAutoAlias /var/tomcat/webapps - -# All requests go to worker by default -JkMount /* loadbalancer -# Serve some static files using httpd -#JkUnMount /*.html loadbalancer -#JkUnMount /*.jpg loadbalancer -#JkUnMount /*.gif loadbalancer -#JkUnMount /*.css loadbalancer -#JkUnMount /*.png loadbalancer -#JkUnMount /*.js loadbalancer - -# Add jkstatus for managing runtime data - -JkMount status -Order deny,allow -Deny from all -Allow from 127.0.0.1 - - ''; -} From d086573e6c1736bce711e4b16fbd1ba8fde61abe Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 12 Jul 2019 00:21:52 -0400 Subject: [PATCH 0151/1611] vala: 0.44.3 -> 0.44.5 https://gitlab.gnome.org/GNOME/vala/raw/0.44.5/NEWS --- pkgs/development/compilers/vala/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/vala/default.nix b/pkgs/development/compilers/vala/default.nix index 6400f6e1387..353963007d4 100644 --- a/pkgs/development/compilers/vala/default.nix +++ b/pkgs/development/compilers/vala/default.nix @@ -129,8 +129,8 @@ in rec { }; vala_0_44 = generic { - version = "0.44.3"; - sha256 = "1sgas7z6y9r2mf4pxry3fx2awdnzn3vlg2sxd3hqpy2a90ib8lw5"; + version = "0.44.5"; + sha256 = "0zy2kfcvhikczfzhk5l7pkw6mvn3d6vw8cv7g08iah85p22q33xv"; }; vala = vala_0_44; From 552803f6f56b503536e77c3bc6bb28ac0375a5f1 Mon Sep 17 00:00:00 2001 From: Jos van den Oever Date: Sun, 26 May 2019 16:43:24 +0200 Subject: [PATCH 0152/1611] qt 5.12.0 -> 5.12.3 --- .../libraries/qt-5/5.12/default.nix | 1 - pkgs/development/libraries/qt-5/5.12/fetch.sh | 2 +- .../libraries/qt-5/5.12/qtbase.patch | 49 +-- .../qt-5/5.12/qtwebengine-CVE-2019-5786.patch | 26 -- pkgs/development/libraries/qt-5/5.12/srcs.nix | 320 +++++++++--------- .../libraries/qt-5/modules/qtbase.nix | 31 +- pkgs/top-level/all-packages.nix | 2 +- 7 files changed, 216 insertions(+), 215 deletions(-) delete mode 100644 pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix index 1fbf7b57289..186e154597f 100644 --- a/pkgs/development/libraries/qt-5/5.12/default.nix +++ b/pkgs/development/libraries/qt-5/5.12/default.nix @@ -60,7 +60,6 @@ let qtserialport = [ ./qtserialport.patch ]; qtwebengine = [ ./qtwebengine-no-build-skip.patch - ./qtwebengine-CVE-2019-5786.patch ] ++ optional stdenv.isDarwin ./qtwebengine-darwin-no-platform-check.patch; qtwebkit = [ ./qtwebkit.patch ] diff --git a/pkgs/development/libraries/qt-5/5.12/fetch.sh b/pkgs/development/libraries/qt-5/5.12/fetch.sh index aa3a0fe9489..a4d2fc82ff2 100644 --- a/pkgs/development/libraries/qt-5/5.12/fetch.sh +++ b/pkgs/development/libraries/qt-5/5.12/fetch.sh @@ -1 +1 @@ -WGET_ARGS=( http://download.qt.io/official_releases/qt/5.12/5.12.0/submodules/ ) +WGET_ARGS=( http://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/ ) diff --git a/pkgs/development/libraries/qt-5/5.12/qtbase.patch b/pkgs/development/libraries/qt-5/5.12/qtbase.patch index aa987acbe92..a3b4e438fe8 100644 --- a/pkgs/development/libraries/qt-5/5.12/qtbase.patch +++ b/pkgs/development/libraries/qt-5/5.12/qtbase.patch @@ -2,7 +2,7 @@ diff --git a/mkspecs/common/mac.conf b/mkspecs/common/mac.conf index 61bea952b2..9909dae726 100644 --- a/mkspecs/common/mac.conf +++ b/mkspecs/common/mac.conf -@@ -23,7 +23,7 @@ QMAKE_INCDIR_OPENGL = \ +@@ -24,7 +24,7 @@ QMAKE_INCDIR_OPENGL = \ QMAKE_FIX_RPATH = install_name_tool -id @@ -90,7 +90,7 @@ index 2ed708e085..05e60ff45f 100644 INSTALLS += cmake_qt5_plugin_file return() -@@ -316,7 +291,7 @@ exists($$cmake_macros_file.input) { +@@ -318,7 +293,7 @@ exists($$cmake_macros_file.input) { cmake_qt5_module_files.files += $$cmake_macros_file.output } @@ -263,15 +263,14 @@ diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/defaul index 99f68b78f5..dde69cb7c2 100644 --- a/mkspecs/features/mac/default_post.prf +++ b/mkspecs/features/mac/default_post.prf -@@ -63,199 +63,3 @@ qt { - } +@@ -64,202 +64,6 @@ } } -- + -# Add the same default rpaths as Xcode does for new projects. -# This is especially important for iOS/tvOS/watchOS where no other option is possible. -!no_default_rpath { -- QMAKE_RPATHDIR += @executable_path/Frameworks +- QMAKE_RPATHDIR += @executable_path/../Frameworks - equals(TEMPLATE, lib):!plugin:lib_bundle: QMAKE_RPATHDIR += @loader_path/Frameworks -} - @@ -463,6 +462,10 @@ index 99f68b78f5..dde69cb7c2 100644 - xcode_product_bundle_target = ${PRODUCT_NAME:rfc1034identifier} -xcode_product_bundle_identifier_setting.value = "$${xcode_product_bundle_identifier_setting.value}.$${xcode_product_bundle_target}" -QMAKE_MAC_XCODE_SETTINGS += xcode_product_bundle_identifier_setting +- + !macx-xcode { + generate_xcode_project.commands = @$(QMAKE) -spec macx-xcode $(EXPORT__PRO_FILE_) + generate_xcode_project.target = xcodeproj diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf index e3534561a5..3b01424e67 100644 --- a/mkspecs/features/mac/default_pre.prf @@ -532,7 +535,7 @@ diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf index 8360dd8b38..8b13789179 100644 --- a/mkspecs/features/mac/sdk.prf +++ b/mkspecs/features/mac/sdk.prf -@@ -1,58 +1 @@ +@@ -1,54 +1 @@ -isEmpty(QMAKE_MAC_SDK): \ - error("QMAKE_MAC_SDK must be set when using CONFIG += sdk.") @@ -568,10 +571,6 @@ index 8360dd8b38..8b13789179 100644 -QMAKE_MAC_SDK_PLATFORM_PATH = $$xcodeSDKInfo(PlatformPath) -QMAKE_MAC_SDK_VERSION = $$xcodeSDKInfo(SDKVersion) - --sysrootified = --for(val, QMAKE_INCDIR_OPENGL): sysrootified += $${QMAKE_MAC_SDK_PATH}$$val --QMAKE_INCDIR_OPENGL = $$sysrootified -- -QMAKESPEC_NAME = $$basename(QMAKESPEC) - -# Resolve SDK version of various tools @@ -595,24 +594,24 @@ diff --git a/mkspecs/features/qml_module.prf b/mkspecs/features/qml_module.prf index 65212b2abf..accd4c07f0 100644 --- a/mkspecs/features/qml_module.prf +++ b/mkspecs/features/qml_module.prf -@@ -52,7 +52,7 @@ qmldir.base = $$_PRO_FILE_PWD_ - # Tools need qmldir and plugins.qmltypes always installed on the file system - qmldir.files = $$qmldir_file $$fq_aux_qml_files +@@ -54,7 +54,7 @@ + + qmldir.files = $$qmldir_file install_qml_files: qmldir.files += $$fq_qml_files --qmldir.path = $$instbase/$$TARGETPATH +-qmldir.path = $$[QT_INSTALL_QML]/$$TARGETPATH +qmldir.path = $$NIX_OUTPUT_QML/$$TARGETPATH INSTALLS += qmldir - !debug_and_release|!build_all|CONFIG(release, debug|release) { + qmlfiles.base = $$_PRO_FILE_PWD_ diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf index cd6377dcc6..e98bf98151 100644 --- a/mkspecs/features/qml_plugin.prf +++ b/mkspecs/features/qml_plugin.prf -@@ -56,7 +56,7 @@ qml1_target { - instbase = $$[QT_INSTALL_QML] - } +@@ -50,7 +50,7 @@ --target.path = $$instbase/$$TARGETPATH + DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH + +-target.path = $$[QT_INSTALL_QML]/$$TARGETPATH +target.path = $$NIX_OUTPUT_QML/$$TARGETPATH INSTALLS += target @@ -746,7 +745,7 @@ index 8f98987b99..21b3bb8b32 100644 !static: target.CONFIG = no_dll INSTALLS += target } -@@ -29,33 +23,33 @@ +@@ -29,35 +23,35 @@ #headers qt_install_headers { gen_headers.files = $$SYNCQT.GENERATED_HEADER_FILES @@ -762,6 +761,8 @@ index 8f98987b99..21b3bb8b32 100644 private_headers.files = $$SYNCQT.PRIVATE_HEADER_FILES $$SYNCQT.INJECTED_PRIVATE_HEADER_FILES - private_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private + private_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private + generated_privates: \ + private_headers.CONFIG += no_check_exist INSTALLS += private_headers qpa_headers.files = $$SYNCQT.QPA_HEADER_FILES @@ -876,7 +877,7 @@ diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcorea index 463e30e1c3..0e1ab669e4 100644 --- a/src/corelib/kernel/qcoreapplication.cpp +++ b/src/corelib/kernel/qcoreapplication.cpp -@@ -2665,6 +2665,15 @@ QStringList QCoreApplication::libraryPaths() +@@ -2668,6 +2668,15 @@ QStringList *app_libpaths = new QStringList; coreappdata()->app_libpaths.reset(app_libpaths); @@ -889,9 +890,9 @@ index 463e30e1c3..0e1ab669e4 100644 + } + } + - const QByteArray libPathEnv = qgetenv("QT_PLUGIN_PATH"); + QString libPathEnv = qEnvironmentVariable("QT_PLUGIN_PATH"); if (!libPathEnv.isEmpty()) { - QStringList paths = QFile::decodeName(libPathEnv).split(QDir::listSeparator(), QString::SkipEmptyParts); + QStringList paths = libPathEnv.split(QDir::listSeparator(), QString::SkipEmptyParts); diff --git a/src/corelib/tools/qtimezoneprivate_tz.cpp b/src/corelib/tools/qtimezoneprivate_tz.cpp index bed62a02bd..73158993f7 100644 --- a/src/corelib/tools/qtimezoneprivate_tz.cpp diff --git a/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch b/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch deleted file mode 100644 index ec9a432ea70..00000000000 --- a/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch +++ /dev/null @@ -1,26 +0,0 @@ ---- a/src/3rdparty/chromium/third_party/blink/renderer/core/fileapi/file_reader_loader.cc -+++ b/src/3rdparty/chromium/third_party/blink/renderer/core/fileapi/file_reader_loader.cc -@@ -135,14 +135,16 @@ - if (!raw_data_ || error_code_) - return nullptr; - -- DOMArrayBuffer* result = DOMArrayBuffer::Create(raw_data_->ToArrayBuffer()); -- if (finished_loading_) { -- array_buffer_result_ = result; -- AdjustReportedMemoryUsageToV8( -- -1 * static_cast(raw_data_->ByteLength())); -- raw_data_.reset(); -+ if (!finished_loading_) { -+ return DOMArrayBuffer::Create( -+ ArrayBuffer::Create(raw_data_->Data(), raw_data_->ByteLength())); - } -- return result; -+ array_buffer_result_ = DOMArrayBuffer::Create(raw_data_->ToArrayBuffer()); -+ AdjustReportedMemoryUsageToV8(-1 * -+ static_cast(raw_data_->ByteLength())); -+ -+ raw_data_.reset(); -+ return array_buffer_result_; - } - - String FileReaderLoader::StringResult() { diff --git a/pkgs/development/libraries/qt-5/5.12/srcs.nix b/pkgs/development/libraries/qt-5/5.12/srcs.nix index d83edc97e94..ce567c3a2bc 100644 --- a/pkgs/development/libraries/qt-5/5.12/srcs.nix +++ b/pkgs/development/libraries/qt-5/5.12/srcs.nix @@ -3,323 +3,323 @@ { qt3d = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qt3d-everywhere-src-5.12.0.tar.xz"; - sha256 = "1nii8qz8791ripmqd158qah40j2dj50zn7lmqksqz8gz2jfdqam1"; - name = "qt3d-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qt3d-everywhere-src-5.12.3.tar.xz"; + sha256 = "8997f07c816bbc6dd43fc2171801178bc65e704d35039998530cfa49837eaa7d"; + name = "qt3d-everywhere-src-5.12.3.tar.xz"; }; }; qtactiveqt = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtactiveqt-everywhere-src-5.12.0.tar.xz"; - sha256 = "0gkdx3mc6ysqlf0ci77kf9c961dc9sbi4j3z5q237d1w4js7ca52"; - name = "qtactiveqt-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtactiveqt-everywhere-src-5.12.3.tar.xz"; + sha256 = "15a5fde0a069f402bea9f422d8d2c46af440d202122c6307c2a6be642d20dc0f"; + name = "qtactiveqt-everywhere-src-5.12.3.tar.xz"; }; }; qtandroidextras = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtandroidextras-everywhere-src-5.12.0.tar.xz"; - sha256 = "0s083ngvya8bknp0bvgb3hyk6zr8shg8rmkzn98956dqz0xs3agm"; - name = "qtandroidextras-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtandroidextras-everywhere-src-5.12.3.tar.xz"; + sha256 = "866b3fbcfc2cbebdb83b5adec4e5d0bd29b0e0b0762d66fb3fef0b400e37254f"; + name = "qtandroidextras-everywhere-src-5.12.3.tar.xz"; }; }; qtbase = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtbase-everywhere-src-5.12.0.tar.xz"; - sha256 = "1jzfx8c0hzch0kmz2m4vkn65s7ikiymnm29lsymil4hfg0fj40sy"; - name = "qtbase-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz"; + sha256 = "fddfd8852ef7503febeed67b876d1425160869ae2b1ae8e10b3fb0fedc5fe701"; + name = "qtbase-everywhere-src-5.12.3.tar.xz"; }; }; qtcanvas3d = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtcanvas3d-everywhere-src-5.12.0.tar.xz"; - sha256 = "0a61z5amp409aq9v7j0fyk003fbz2i247idl7lgfbl4qqh0ry6xj"; - name = "qtcanvas3d-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtcanvas3d-everywhere-src-5.12.3.tar.xz"; + sha256 = "c0821f1232c6bcd00648af9a5d1eade8e0397c6bfff60621e0fcdfc75561baea"; + name = "qtcanvas3d-everywhere-src-5.12.3.tar.xz"; }; }; qtcharts = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtcharts-everywhere-src-5.12.0.tar.xz"; - sha256 = "0l6lrrwqbqaf6agsghaw4ysm2vb6b4n9j5lgrs1i0q8h9i51rmww"; - name = "qtcharts-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtcharts-everywhere-src-5.12.3.tar.xz"; + sha256 = "820c94b2bf5d73e921fe99be1e3a03a6f012d96574a08e504d68db237522b3a9"; + name = "qtcharts-everywhere-src-5.12.3.tar.xz"; }; }; qtconnectivity = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtconnectivity-everywhere-src-5.12.0.tar.xz"; - sha256 = "1912a4my72wcqmmdyj24wkwq9p9ih4gzzzvgiq75pfwyhnxa3g4f"; - name = "qtconnectivity-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtconnectivity-everywhere-src-5.12.3.tar.xz"; + sha256 = "01518cee71a8d53b9c2387f8c7facbcc2c4d63ab3b79462edfa06ba3bfeae661"; + name = "qtconnectivity-everywhere-src-5.12.3.tar.xz"; }; }; qtdatavis3d = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdatavis3d-everywhere-src-5.12.0.tar.xz"; - sha256 = "0czlj088gf2r6w5ahh0p8n36lbwmds86mxqijshmhzax5cspxnjf"; - name = "qtdatavis3d-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdatavis3d-everywhere-src-5.12.3.tar.xz"; + sha256 = "f6d073c4575542f8ff6de3ac3b6e8dde6ae2d87e98119de7a13bc984aa967313"; + name = "qtdatavis3d-everywhere-src-5.12.3.tar.xz"; }; }; qtdeclarative = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdeclarative-everywhere-src-5.12.0.tar.xz"; - sha256 = "0yr29hm3bqlwxcmna0bzyxw8k4hw3x8k3k4iiw2sw52p5c85izag"; - name = "qtdeclarative-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdeclarative-everywhere-src-5.12.3.tar.xz"; + sha256 = "839881cd6996e35c351bc7d560372ebb91e61f3688957c33248c4f31ea007fa7"; + name = "qtdeclarative-everywhere-src-5.12.3.tar.xz"; }; }; qtdoc = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdoc-everywhere-src-5.12.0.tar.xz"; - sha256 = "1k8caa1nmc9nrhb29vq1qzaz608klnjxy509w6ppxlzz2zbpcr9h"; - name = "qtdoc-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdoc-everywhere-src-5.12.3.tar.xz"; + sha256 = "ce5e9d0f48d108c48d742ab2127ead735270d7b525103c6cf409683d7fc8334f"; + name = "qtdoc-everywhere-src-5.12.3.tar.xz"; }; }; qtgamepad = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtgamepad-everywhere-src-5.12.0.tar.xz"; - sha256 = "14b0np15gm5lzvip33pg6w9dfs065wwdfz18na28bhbxj6wh06ac"; - name = "qtgamepad-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtgamepad-everywhere-src-5.12.3.tar.xz"; + sha256 = "5d046869e9646912936e3622efa755d85ccc8eddba91f5b12880cfb5e6489642"; + name = "qtgamepad-everywhere-src-5.12.3.tar.xz"; }; }; qtgraphicaleffects = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtgraphicaleffects-everywhere-src-5.12.0.tar.xz"; - sha256 = "0m9l031zhw8il66ld8bj1lwqlc2xx89nl6dvssz1kl2d5nqqy1c1"; - name = "qtgraphicaleffects-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtgraphicaleffects-everywhere-src-5.12.3.tar.xz"; + sha256 = "772c98a009cc82ac290f868906c5aa719e4608ef3c5905d69ef7402b15924a73"; + name = "qtgraphicaleffects-everywhere-src-5.12.3.tar.xz"; }; }; qtimageformats = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtimageformats-everywhere-src-5.12.0.tar.xz"; - sha256 = "0bkkk5skpplwfbqv7g41rhgynyxs3khvf8gk2rl2gdixdplpv42z"; - name = "qtimageformats-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtimageformats-everywhere-src-5.12.3.tar.xz"; + sha256 = "db5a9e784f9c327c1e6830b1550311024cc91202d3b8dde82cd0944164298be2"; + name = "qtimageformats-everywhere-src-5.12.3.tar.xz"; }; }; qtlocation = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtlocation-everywhere-src-5.12.0.tar.xz"; - sha256 = "0ja4cwj59y1xhwwf4f5gzr0fdrrsxbh14g2x812n03x0yd6i78xh"; - name = "qtlocation-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtlocation-everywhere-src-5.12.3.tar.xz"; + sha256 = "52d589be2852ada0c000b06cc411b61e521cd0797470be567fd1625bcc9d75c6"; + name = "qtlocation-everywhere-src-5.12.3.tar.xz"; }; }; qtmacextras = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtmacextras-everywhere-src-5.12.0.tar.xz"; - sha256 = "00xhkj66i3srwmzzin1mcx9m94l5ns08f93c1za3wl23ani7n2nr"; - name = "qtmacextras-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtmacextras-everywhere-src-5.12.3.tar.xz"; + sha256 = "38dedd29d07ea9e4e92a7ef28f9e03c06cf9a1525aee4f8084310c519f5b47ed"; + name = "qtmacextras-everywhere-src-5.12.3.tar.xz"; }; }; qtmultimedia = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtmultimedia-everywhere-src-5.12.0.tar.xz"; - sha256 = "1a96x6c2w9rs6vfsdcnzmmad4w32dxy2dvismldcwmwcq2whqjsw"; - name = "qtmultimedia-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtmultimedia-everywhere-src-5.12.3.tar.xz"; + sha256 = "a30beeb37fb284d93522e29c01fb8d12726f40e9248e80b70b1f8ab60197a301"; + name = "qtmultimedia-everywhere-src-5.12.3.tar.xz"; }; }; qtnetworkauth = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtnetworkauth-everywhere-src-5.12.0.tar.xz"; - sha256 = "0x877ra8375pf8d8p6hgdkyw8yzjqfca6rgki6vi1q8fyi31j4a1"; - name = "qtnetworkauth-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtnetworkauth-everywhere-src-5.12.3.tar.xz"; + sha256 = "dd6bf334be29fb82adaeecb184779328b4ad33a069528b9954d9c07f2d889332"; + name = "qtnetworkauth-everywhere-src-5.12.3.tar.xz"; }; }; qtpurchasing = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtpurchasing-everywhere-src-5.12.0.tar.xz"; - sha256 = "1nk0dp247v1rfbnj84g99zsj6iv86pq32f478r92adz9qcgfs2yr"; - name = "qtpurchasing-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtpurchasing-everywhere-src-5.12.3.tar.xz"; + sha256 = "a848f1e1022af38571f5ab0c4ec4b904c12fa6ef19154d44abbcaeb35156753e"; + name = "qtpurchasing-everywhere-src-5.12.3.tar.xz"; }; }; qtquickcontrols = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtquickcontrols-everywhere-src-5.12.0.tar.xz"; - sha256 = "0wyd24aphpixi3k9vbxw73z3dy1xnf8hwc99wimr5mpf1cj67yrb"; - name = "qtquickcontrols-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols-everywhere-src-5.12.3.tar.xz"; + sha256 = "68ae03b35eaa44a24c3f663b842252053c9f2b00b18841fd39ff7d2150986f46"; + name = "qtquickcontrols-everywhere-src-5.12.3.tar.xz"; }; }; qtquickcontrols2 = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtquickcontrols2-everywhere-src-5.12.0.tar.xz"; - sha256 = "1ikxj32rd9pipnrz81l5ln700lnw8w6bx573w01x424sx0p7wxw9"; - name = "qtquickcontrols2-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols2-everywhere-src-5.12.3.tar.xz"; + sha256 = "e855e8369c3cb5a2ebcd2028a2a195ba73945fd9d5bc26134706c2fa14e99b3a"; + name = "qtquickcontrols2-everywhere-src-5.12.3.tar.xz"; }; }; qtremoteobjects = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtremoteobjects-everywhere-src-5.12.0.tar.xz"; - sha256 = "0pwx2m17yw1qqv8qigfndgj1yd5kq8w5cbiaqlw4zdk1m6jd0h09"; - name = "qtremoteobjects-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtremoteobjects-everywhere-src-5.12.3.tar.xz"; + sha256 = "3475a409127739930e0bf833cea5f7f605adc66ab25fac39b72ce4bf3039cc42"; + name = "qtremoteobjects-everywhere-src-5.12.3.tar.xz"; }; }; qtscript = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtscript-everywhere-src-5.12.0.tar.xz"; - sha256 = "1a7ziipvy8cfmrpw2b868167sw21zrqhfv2la0w9vs6hwli1mzlp"; - name = "qtscript-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtscript-everywhere-src-5.12.3.tar.xz"; + sha256 = "0f37bf032a2370bd08667aad053f5a57717ea49596c16bf6cfb32b0d6e5c1f9e"; + name = "qtscript-everywhere-src-5.12.3.tar.xz"; }; }; qtscxml = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtscxml-everywhere-src-5.12.0.tar.xz"; - sha256 = "0syx3bx9pxxrsxanfv245ifppjhbj7sbrndh8il86xlrcr9cwvnw"; - name = "qtscxml-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtscxml-everywhere-src-5.12.3.tar.xz"; + sha256 = "70c4b1f8e23560cf54e69aeb3ded4078434e6f78e1b9573fbad1ddace5fc4b19"; + name = "qtscxml-everywhere-src-5.12.3.tar.xz"; }; }; qtsensors = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtsensors-everywhere-src-5.12.0.tar.xz"; - sha256 = "19n5vlx0j5a0h86mpgs86qzsxbyq8fcrls7yqnjdaw0zga234cf5"; - name = "qtsensors-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtsensors-everywhere-src-5.12.3.tar.xz"; + sha256 = "7f63fedf60fdf110a3fc529568c7226d7acd59cc5eaee908f4d5a969e34005fc"; + name = "qtsensors-everywhere-src-5.12.3.tar.xz"; }; }; qtserialbus = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtserialbus-everywhere-src-5.12.0.tar.xz"; - sha256 = "16imi82v17n18a5m0i2fcfj6hqdpnzn2z9kdcf6a8h93fv4qd4kb"; - name = "qtserialbus-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtserialbus-everywhere-src-5.12.3.tar.xz"; + sha256 = "792cd2d411d2ebd737f5d09580f8db479cd35f2f7e7cedb4412075ef20fcfe4d"; + name = "qtserialbus-everywhere-src-5.12.3.tar.xz"; }; }; qtserialport = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtserialport-everywhere-src-5.12.0.tar.xz"; - sha256 = "1fx9fm0418jq05j2hlb52lblq8nr4m0hj8sizi86p708jmb01m2r"; - name = "qtserialport-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtserialport-everywhere-src-5.12.3.tar.xz"; + sha256 = "1faf7df4a1f9028bef1ce79330badb4e5cbbba9f717c53cafc5aea41eed1de51"; + name = "qtserialport-everywhere-src-5.12.3.tar.xz"; }; }; qtspeech = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtspeech-everywhere-src-5.12.0.tar.xz"; - sha256 = "1yx4wahl7iaj6lgpvnw8pdi2q4wc2fkpzfidd3j1bc98wpna4f8r"; - name = "qtspeech-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtspeech-everywhere-src-5.12.3.tar.xz"; + sha256 = "ed211822765744553fb5abeb97058420668b18a50d985061d949a0e068ee64f5"; + name = "qtspeech-everywhere-src-5.12.3.tar.xz"; }; }; qtsvg = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtsvg-everywhere-src-5.12.0.tar.xz"; - sha256 = "1kpvqd0p7dblgh26p3a99npqr0wmyg5yv0dcmf78ssrvsy58vrpb"; - name = "qtsvg-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtsvg-everywhere-src-5.12.3.tar.xz"; + sha256 = "f666438dbf6816b7534e539b95e3fa4405f11d7e2e2bbcde34f2db5ae0f27dc2"; + name = "qtsvg-everywhere-src-5.12.3.tar.xz"; }; }; qttools = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qttools-everywhere-src-5.12.0.tar.xz"; - sha256 = "1hyschrj568h65m3kl35xqz25hpk61vr98r08375vkavdr5y6k2p"; - name = "qttools-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz"; + sha256 = "c9e92d2f0d369e44bb1a60e9fa6d970f8d9893d653212305e04be5e6daec2cd8"; + name = "qttools-everywhere-src-5.12.3.tar.xz"; }; }; qttranslations = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qttranslations-everywhere-src-5.12.0.tar.xz"; - sha256 = "023m68vdjj75xnbpc1jflyg85amnjc9i6nwv650k0w4n1dp1hksv"; - name = "qttranslations-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qttranslations-everywhere-src-5.12.3.tar.xz"; + sha256 = "eefcec0a91c302548f9d948a138b8ec77d78570ce818931bd8475b1bff1205ca"; + name = "qttranslations-everywhere-src-5.12.3.tar.xz"; }; }; qtvirtualkeyboard = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz"; - sha256 = "1nnns0i577zda6qxxd7pxcy06dq0y7lnni8ghn4adh9yl6dvi4yv"; - name = "qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz"; + sha256 = "7b83af4527310de4ab81146622f3a46677daabf05556d0e33a2e25ca2aa13b22"; + name = "qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz"; }; }; qtwayland = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwayland-everywhere-src-5.12.0.tar.xz"; - sha256 = "1mvyv4wkcxj4h3q0mqw53zb1d0pahf8mz3r29kckadvk64djsp2m"; - name = "qtwayland-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwayland-everywhere-src-5.12.3.tar.xz"; + sha256 = "f0b45ad84180730e2d5a1249eb20c6357869b4b78f45eb266c2f2b17f77d86ff"; + name = "qtwayland-everywhere-src-5.12.3.tar.xz"; }; }; qtwebchannel = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebchannel-everywhere-src-5.12.0.tar.xz"; - sha256 = "1w2b31d7xjzdcgwkb4mz3qrl9ci7c9l4c3v4h8y59isip45g66l5"; - name = "qtwebchannel-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebchannel-everywhere-src-5.12.3.tar.xz"; + sha256 = "72d1620bcc94e14caa91ddf344c84cd1288aa9479e00b1bb3b5e51f92efe088a"; + name = "qtwebchannel-everywhere-src-5.12.3.tar.xz"; }; }; qtwebengine = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebengine-everywhere-src-5.12.0.tar.xz"; - sha256 = "0z38ad25n7ckylxnmqrxy95ds4pn7i5k7qxh856zgq1h18wiwn5x"; - name = "qtwebengine-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebengine-everywhere-src-5.12.3.tar.xz"; + sha256 = "3ff3bac12d75aa0f3fd993bb7077fe411f7b0e6a3993af6f8b039d48e3dc4317"; + name = "qtwebengine-everywhere-src-5.12.3.tar.xz"; }; }; qtwebglplugin = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebglplugin-everywhere-src-5.12.0.tar.xz"; - sha256 = "0bk5dg33kn2l5lmgd6slsrs9xg15x9h9li91lr1q7qs67b8kl8k5"; - name = "qtwebglplugin-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebglplugin-everywhere-src-5.12.3.tar.xz"; + sha256 = "23da63013101e97c4e663bb4f6dbb1c7b4386679c634680d3b8d79bcc59d26b3"; + name = "qtwebglplugin-everywhere-src-5.12.3.tar.xz"; }; }; qtwebsockets = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebsockets-everywhere-src-5.12.0.tar.xz"; - sha256 = "0gzwfjnlgcijym5bn9gi93qlvzizrhf1q9dq06576419sg0s2ka4"; - name = "qtwebsockets-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebsockets-everywhere-src-5.12.3.tar.xz"; + sha256 = "258883225c5e089015c4036f31019aa8f5bb013ecd8eecd193342e606319a577"; + name = "qtwebsockets-everywhere-src-5.12.3.tar.xz"; }; }; qtwebview = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebview-everywhere-src-5.12.0.tar.xz"; - sha256 = "11b16b31bxcazqzg1ag9rzh4gj9pif2cf3jz2mj1sdprxp22ra5p"; - name = "qtwebview-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebview-everywhere-src-5.12.3.tar.xz"; + sha256 = "f904e7fd7e755527e5bc4633c6f7c144065a3ffea473bf01fffb730385a983c5"; + name = "qtwebview-everywhere-src-5.12.3.tar.xz"; }; }; qtwinextras = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwinextras-everywhere-src-5.12.0.tar.xz"; - sha256 = "1l6s140vrfxb9ar4p1dq9w2gfk3zvgrpqdxbbzs4ngfpwk6mlky6"; - name = "qtwinextras-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwinextras-everywhere-src-5.12.3.tar.xz"; + sha256 = "2b6319f7dd19fc19b028685c163a69f0a10e610d7554411d4660c1b5e42ada3b"; + name = "qtwinextras-everywhere-src-5.12.3.tar.xz"; }; }; qtx11extras = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtx11extras-everywhere-src-5.12.0.tar.xz"; - sha256 = "114b4akzpcgx57c6gkl558bl0mbasi34r22fmq3ny84dhvlv9m06"; - name = "qtx11extras-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtx11extras-everywhere-src-5.12.3.tar.xz"; + sha256 = "85e3ae5177970c2d8656226d7535d0dff5764c100e55a79a59161d80754ba613"; + name = "qtx11extras-everywhere-src-5.12.3.tar.xz"; }; }; qtxmlpatterns = { - version = "5.12.0"; + version = "5.12.3"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtxmlpatterns-everywhere-src-5.12.0.tar.xz"; - sha256 = "0xckcw1j6f5l92c269pb8cx77d21sghp7m7dc05jl1dqmyy7jqpk"; - name = "qtxmlpatterns-everywhere-src-5.12.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtxmlpatterns-everywhere-src-5.12.3.tar.xz"; + sha256 = "e0b98e7c92cd791a9b354d090788347db78f14c47579384fe22d0b650c1d8a61"; + name = "qtxmlpatterns-everywhere-src-5.12.3.tar.xz"; }; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index 458946b803d..8506a80ddf3 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -229,6 +229,8 @@ stdenv.mkDerivation { "-widgets" "-opengl desktop" "-icu" + "-L" "${icu.out}/lib" + "-I" "${icu.dev}/include" "-pch" ] ++ lib.optionals (compareVersion "5.11.0" < 0) @@ -265,10 +267,18 @@ stdenv.mkDerivation { ++ [ "-system-zlib" + "-L" "${zlib.out}/lib" + "-I" "${zlib.dev}/include" "-system-libjpeg" + "-L" "${libjpeg.out}/lib" + "-I" "${libjpeg.dev}/include" "-system-harfbuzz" + "-L" "${harfbuzz.out}/lib" + "-I" "${harfbuzz.dev}/include" "-system-pcre" "-openssl-linked" + "-L" "${openssl.out}/lib" + "-I" "${openssl.dev}/include" "-system-sqlite" ''-${if mysql != null then "plugin" else "no"}-sql-mysql'' ''-${if postgresql != null then "plugin" else "no"}-sql-psql'' @@ -297,10 +307,14 @@ stdenv.mkDerivation { "-system-xcb" "-xcb" "-qpa xcb" + "-L" "${libX11.out}/lib" + "-I" "${libX11.out}/include" + "-L" "${libXext.out}/lib" + "-I" "${libXext.out}/include" + "-L" "${libXrender.out}/lib" + "-I" "${libXrender.out}/include" - "-system-xkbcommon" "-libinput" - "-xkbcommon-evdev" "-no-eglfs" "-no-gbm" @@ -321,6 +335,19 @@ stdenv.mkDerivation { "-no-feature-renameat2" "-no-feature-getentropy" ] + ++ lib.optionals (compareVersion "5.12.1" < 0) [ + # use -xkbcommon and -xkbcommon-evdev for versions before 5.12.1 + "-system-xkbcommon" + "-xkbcommon-evdev" + ] + ++ lib.optionals (cups != null) [ + "-L" "${cups.lib}/lib" + "-I" "${cups.dev}/include" + ] + ++ lib.optionals (mysql != null) [ + "-L" "${mysql.out}/lib" + "-I" "${mysql.out}/include" + ] ); enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 73079bbced9..970a4749a9a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12822,7 +12822,7 @@ in inherit stdenv fetchurl fetchFromGitHub makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; - harfbuzz = harfbuzzFull; + inherit harfbuzz; inherit libGL; inherit perl; inherit gtk3; From 02afb228e2ada0a251a82c9437e2227890baacf4 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 10 Jul 2019 09:39:44 -0500 Subject: [PATCH 0153/1611] qt512: Update qtbase.patch --- .../libraries/qt-5/5.12/qtbase.patch | 485 ++++++++---------- 1 file changed, 222 insertions(+), 263 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.12/qtbase.patch b/pkgs/development/libraries/qt-5/5.12/qtbase.patch index a3b4e438fe8..118ffaa511e 100644 --- a/pkgs/development/libraries/qt-5/5.12/qtbase.patch +++ b/pkgs/development/libraries/qt-5/5.12/qtbase.patch @@ -1,8 +1,7 @@ -diff --git a/mkspecs/common/mac.conf b/mkspecs/common/mac.conf -index 61bea952b2..9909dae726 100644 ---- a/mkspecs/common/mac.conf -+++ b/mkspecs/common/mac.conf -@@ -24,7 +24,7 @@ QMAKE_INCDIR_OPENGL = \ +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/common/mac.conf qtbase-everywhere-src-5.12.3-b/mkspecs/common/mac.conf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/common/mac.conf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/common/mac.conf 2019-07-10 09:35:08.917628566 -0500 +@@ -24,7 +24,7 @@ QMAKE_FIX_RPATH = install_name_tool -id @@ -11,11 +10,10 @@ index 61bea952b2..9909dae726 100644 QMAKE_LFLAGS_GCSECTIONS = -Wl,-dead_strip QMAKE_LFLAGS_REL_RPATH = -diff --git a/mkspecs/features/create_cmake.prf b/mkspecs/features/create_cmake.prf -index 2ed708e085..05e60ff45f 100644 ---- a/mkspecs/features/create_cmake.prf -+++ b/mkspecs/features/create_cmake.prf -@@ -21,7 +21,7 @@ load(cmake_functions) +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/create_cmake.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/create_cmake.prf 2019-07-10 09:35:08.917628566 -0500 +@@ -21,7 +21,7 @@ # at cmake time whether package has been found via a symlink, and correct # that to an absolute path. This is only done for installations to # the /usr or / prefix. @@ -24,7 +22,7 @@ index 2ed708e085..05e60ff45f 100644 contains(CMAKE_INSTALL_LIBS_DIR, ^(/usr)?/lib(64)?.*): CMAKE_USR_MOVE_WORKAROUND = $$CMAKE_INSTALL_LIBS_DIR CMAKE_OUT_DIR = $$MODULE_BASE_OUTDIR/lib/cmake -@@ -51,45 +51,20 @@ split_incpath { +@@ -51,45 +51,20 @@ $$cmake_extra_source_includes.output } @@ -81,7 +79,7 @@ index 2ed708e085..05e60ff45f 100644 static|staticlib:CMAKE_STATIC_TYPE = true -@@ -169,7 +144,7 @@ contains(CONFIG, plugin) { +@@ -169,7 +144,7 @@ cmake_target_file cmake_qt5_plugin_file.files = $$cmake_target_file.output @@ -90,7 +88,7 @@ index 2ed708e085..05e60ff45f 100644 INSTALLS += cmake_qt5_plugin_file return() -@@ -318,7 +293,7 @@ exists($$cmake_macros_file.input) { +@@ -318,7 +293,7 @@ cmake_qt5_module_files.files += $$cmake_macros_file.output } @@ -99,11 +97,10 @@ index 2ed708e085..05e60ff45f 100644 # We are generating cmake files. Most developers of Qt are not aware of cmake, # so we require automatic tests to be available. The only module which should -diff --git a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in -index 3ed6dd5889..4c7c8da21a 100644 ---- a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in -+++ b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in -@@ -3,30 +3,6 @@ if (CMAKE_VERSION VERSION_LESS 3.1.0) +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in qtbase-everywhere-src-5.12.3-b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2019-07-10 09:35:08.917628566 -0500 +@@ -3,30 +3,6 @@ message(FATAL_ERROR \"Qt 5 $${CMAKE_MODULE_NAME} module requires at least CMake version 3.1.0\") endif() @@ -134,7 +131,7 @@ index 3ed6dd5889..4c7c8da21a 100644 !!IF !equals(TEMPLATE, aux) # For backwards compatibility only. Use Qt5$${CMAKE_MODULE_NAME}_VERSION instead. set(Qt5$${CMAKE_MODULE_NAME}_VERSION_STRING "$$eval(QT.$${MODULE}.VERSION)") -@@ -52,11 +28,7 @@ endmacro() +@@ -52,11 +28,7 @@ macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION) set_property(TARGET Qt5::$${CMAKE_MODULE_NAME} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) @@ -146,7 +143,7 @@ index 3ed6dd5889..4c7c8da21a 100644 _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location}) set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES \"INTERFACE_LINK_LIBRARIES\" \"${_Qt5$${CMAKE_MODULE_NAME}_LIB_DEPENDENCIES}\" -@@ -69,11 +41,7 @@ macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATI +@@ -69,11 +41,7 @@ ) !!IF !isEmpty(CMAKE_WINDOWS_BUILD) @@ -158,7 +155,7 @@ index 3ed6dd5889..4c7c8da21a 100644 _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_implib}) if(NOT \"${IMPLIB_LOCATION}\" STREQUAL \"\") set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES -@@ -89,24 +57,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) +@@ -89,24 +57,13 @@ !!IF !no_module_headers !!IF !isEmpty(CMAKE_BUILD_IS_FRAMEWORK) set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS @@ -187,7 +184,7 @@ index 3ed6dd5889..4c7c8da21a 100644 ) !!ELSE set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") -@@ -122,7 +79,6 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) +@@ -122,7 +79,6 @@ set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") !!ENDIF !!ENDIF @@ -195,7 +192,7 @@ index 3ed6dd5889..4c7c8da21a 100644 !!IF !isEmpty(CMAKE_ADD_SOURCE_INCLUDE_DIRS) include(\"${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake\" OPTIONAL) !!ENDIF -@@ -272,25 +228,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) +@@ -272,25 +228,13 @@ !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) !!IF isEmpty(CMAKE_DEBUG_TYPE) !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) @@ -221,7 +218,7 @@ index 3ed6dd5889..4c7c8da21a 100644 _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD endif() -@@ -309,25 +253,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) +@@ -309,25 +253,13 @@ !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) !!IF isEmpty(CMAKE_RELEASE_TYPE) !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) @@ -247,7 +244,7 @@ index 3ed6dd5889..4c7c8da21a 100644 _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD endif() -@@ -346,11 +278,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) +@@ -346,11 +278,7 @@ macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION) set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) @@ -259,10 +256,9 @@ index 3ed6dd5889..4c7c8da21a 100644 _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location}) set_target_properties(Qt5::${Plugin} PROPERTIES \"IMPORTED_LOCATION_${Configuration}\" ${imported_location} -diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/default_post.prf -index 99f68b78f5..dde69cb7c2 100644 ---- a/mkspecs/features/mac/default_post.prf -+++ b/mkspecs/features/mac/default_post.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_post.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_post.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_post.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_post.prf 2019-07-10 09:35:08.917628566 -0500 @@ -64,202 +64,6 @@ } } @@ -466,10 +462,9 @@ index 99f68b78f5..dde69cb7c2 100644 !macx-xcode { generate_xcode_project.commands = @$(QMAKE) -spec macx-xcode $(EXPORT__PRO_FILE_) generate_xcode_project.target = xcodeproj -diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf -index e3534561a5..3b01424e67 100644 ---- a/mkspecs/features/mac/default_pre.prf -+++ b/mkspecs/features/mac/default_pre.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_pre.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_pre.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_pre.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_pre.prf 2019-07-10 09:35:08.917628566 -0500 @@ -1,60 +1,2 @@ CONFIG = asset_catalogs rez $$CONFIG load(default_pre) @@ -531,10 +526,9 @@ index e3534561a5..3b01424e67 100644 -xcode_copy_phase_strip_setting.name = COPY_PHASE_STRIP -xcode_copy_phase_strip_setting.value = NO -QMAKE_MAC_XCODE_SETTINGS += xcode_copy_phase_strip_setting -diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf -index 8360dd8b38..8b13789179 100644 ---- a/mkspecs/features/mac/sdk.prf -+++ b/mkspecs/features/mac/sdk.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/sdk.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/sdk.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/sdk.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/sdk.prf 2019-07-10 09:35:08.917628566 -0500 @@ -1,54 +1 @@ -isEmpty(QMAKE_MAC_SDK): \ @@ -590,10 +584,9 @@ index 8360dd8b38..8b13789179 100644 - $$tool = $$sysrooted $$member(value, 1, -1) - cache($$tool_variable, set stash, $$tool) -} -diff --git a/mkspecs/features/qml_module.prf b/mkspecs/features/qml_module.prf -index 65212b2abf..accd4c07f0 100644 ---- a/mkspecs/features/qml_module.prf -+++ b/mkspecs/features/qml_module.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_module.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_module.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_module.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_module.prf 2019-07-10 09:35:08.917628566 -0500 @@ -54,7 +54,7 @@ qmldir.files = $$qmldir_file @@ -603,10 +596,9 @@ index 65212b2abf..accd4c07f0 100644 INSTALLS += qmldir qmlfiles.base = $$_PRO_FILE_PWD_ -diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf -index cd6377dcc6..e98bf98151 100644 ---- a/mkspecs/features/qml_plugin.prf -+++ b/mkspecs/features/qml_plugin.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_plugin.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_plugin.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_plugin.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_plugin.prf 2019-07-10 09:35:08.918628595 -0500 @@ -50,7 +50,7 @@ DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH @@ -616,11 +608,10 @@ index cd6377dcc6..e98bf98151 100644 INSTALLS += target # Some final setup -diff --git a/mkspecs/features/qt_app.prf b/mkspecs/features/qt_app.prf -index 8354f30eea..62028fef8e 100644 ---- a/mkspecs/features/qt_app.prf -+++ b/mkspecs/features/qt_app.prf -@@ -30,7 +30,7 @@ host_build:force_bootstrap { +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_app.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_app.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_app.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_app.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -30,7 +30,7 @@ target.path = $$[QT_HOST_BINS] } else { !build_pass:qtConfig(debug_and_release): CONFIG += release @@ -629,11 +620,10 @@ index 8354f30eea..62028fef8e 100644 CONFIG += relative_qt_rpath # Qt's tools and apps should be relocatable } INSTALLS += target -diff --git a/mkspecs/features/qt_build_paths.prf b/mkspecs/features/qt_build_paths.prf -index 3bb3823a8e..655b7b7db8 100644 ---- a/mkspecs/features/qt_build_paths.prf -+++ b/mkspecs/features/qt_build_paths.prf -@@ -24,6 +24,6 @@ exists($$MODULE_BASE_INDIR/.git): \ +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_build_paths.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_build_paths.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_build_paths.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_build_paths.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -24,6 +24,6 @@ !force_independent { # If the module is not built independently, everything ends up in qtbase. # This is the case in non-prefix builds, except for selected modules. @@ -642,11 +632,10 @@ index 3bb3823a8e..655b7b7db8 100644 + MODULE_BASE_OUTDIR = $$NIX_OUTPUT_OUT + MODULE_QMAKE_OUTDIR = $$NIX_OUTPUT_OUT } -diff --git a/mkspecs/features/qt_common.prf b/mkspecs/features/qt_common.prf -index 4ad9946ae0..6d66f29c26 100644 ---- a/mkspecs/features/qt_common.prf -+++ b/mkspecs/features/qt_common.prf -@@ -34,8 +34,8 @@ contains(TEMPLATE, .*lib) { +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_common.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_common.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_common.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_common.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -34,8 +34,8 @@ qqt_libdir = \$\$\$\$[QT_HOST_LIBS] qt_libdir = $$[QT_HOST_LIBS] } else { @@ -657,11 +646,10 @@ index 4ad9946ae0..6d66f29c26 100644 } contains(QMAKE_DEFAULT_LIBDIRS, $$qt_libdir) { lib_replace.match = "[^ ']*$$rplbase/lib" -diff --git a/mkspecs/features/qt_docs.prf b/mkspecs/features/qt_docs.prf -index 3139c443c6..1b4f2fddd8 100644 ---- a/mkspecs/features/qt_docs.prf -+++ b/mkspecs/features/qt_docs.prf -@@ -45,7 +45,7 @@ QMAKE_DOCS_OUTPUTDIR = $$QMAKE_DOCS_BASE_OUTDIR/$$QMAKE_DOCS_TARGETDIR +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_docs.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_docs.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -45,7 +45,7 @@ QDOC += -outputdir $$shell_quote($$QMAKE_DOCS_OUTPUTDIR) !build_online_docs: \ @@ -670,7 +658,7 @@ index 3139c443c6..1b4f2fddd8 100644 PREP_DOC_INDEXES = DOC_INDEXES = !isEmpty(QTREPOS) { -@@ -64,8 +64,8 @@ DOC_INDEXES = +@@ -64,8 +64,8 @@ DOC_INDEXES += -indexdir $$shell_quote($$qrep/doc) } else { prepare_docs: \ @@ -681,7 +669,7 @@ index 3139c443c6..1b4f2fddd8 100644 } qtattributionsscanner.target = qtattributionsscanner -@@ -88,12 +88,12 @@ prepare_docs { +@@ -88,12 +88,12 @@ qch_docs.commands = $$QHELPGENERATOR $$shell_quote($$QMAKE_DOCS_OUTPUTDIR/$${QMAKE_DOCS_TARGET}.qhp) -o $$shell_quote($$QMAKE_DOCS_BASE_OUTDIR/$${QMAKE_DOCS_TARGET}.qch) inst_html_docs.files = $$QMAKE_DOCS_OUTPUTDIR @@ -696,11 +684,10 @@ index 3139c443c6..1b4f2fddd8 100644 inst_qch_docs.CONFIG += no_check_exist no_default_install no_build INSTALLS += inst_qch_docs -diff --git a/mkspecs/features/qt_example_installs.prf b/mkspecs/features/qt_example_installs.prf -index 43b58817fe..e635b8f67a 100644 ---- a/mkspecs/features/qt_example_installs.prf -+++ b/mkspecs/features/qt_example_installs.prf -@@ -88,7 +88,7 @@ sourcefiles += \ +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_example_installs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_example_installs.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_example_installs.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_example_installs.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -88,7 +88,7 @@ $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \ $$DBUS_ADAPTORS $$DBUS_INTERFACES addInstallFiles(sources.files, $$sourcefiles) @@ -709,11 +696,10 @@ index 43b58817fe..e635b8f67a 100644 INSTALLS += sources check_examples { -diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf -index 1903e509c8..ae7b585989 100644 ---- a/mkspecs/features/qt_functions.prf -+++ b/mkspecs/features/qt_functions.prf -@@ -69,7 +69,7 @@ defineTest(qtHaveModule) { +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_functions.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_functions.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_functions.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_functions.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -69,7 +69,7 @@ defineTest(qtPrepareTool) { cmd = $$eval(QT_TOOL.$${2}.binary) isEmpty(cmd) { @@ -722,10 +708,9 @@ index 1903e509c8..ae7b585989 100644 exists($${cmd}.pl) { $${1}_EXE = $${cmd}.pl cmd = perl -w $$system_path($${cmd}.pl) -diff --git a/mkspecs/features/qt_installs.prf b/mkspecs/features/qt_installs.prf -index 8f98987b99..21b3bb8b32 100644 ---- a/mkspecs/features/qt_installs.prf -+++ b/mkspecs/features/qt_installs.prf +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_installs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_installs.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_installs.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_installs.prf 2019-07-10 09:35:08.918628595 -0500 @@ -12,16 +12,10 @@ #library !qt_no_install_library { @@ -787,11 +772,10 @@ index 8f98987b99..21b3bb8b32 100644 privpritarget.files = $$MODULE_PRIVATE_PRI INSTALLS += privpritarget } -diff --git a/mkspecs/features/qt_plugin.prf b/mkspecs/features/qt_plugin.prf -index 40528a65e2..903f795284 100644 ---- a/mkspecs/features/qt_plugin.prf -+++ b/mkspecs/features/qt_plugin.prf -@@ -88,7 +88,7 @@ CONFIG(static, static|shared)|prefix_build { +diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_plugin.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_plugin.prf +--- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_plugin.prf 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_plugin.prf 2019-07-10 09:35:08.918628595 -0500 +@@ -88,7 +88,7 @@ } } @@ -800,83 +784,9 @@ index 40528a65e2..903f795284 100644 INSTALLS += target TARGET = $$qt5LibraryTarget($$TARGET) -diff --git a/src/corelib/Qt5CoreConfigExtras.cmake.in b/src/corelib/Qt5CoreConfigExtras.cmake.in -index e0652fdcf9..450b2a2d28 100644 ---- a/src/corelib/Qt5CoreConfigExtras.cmake.in -+++ b/src/corelib/Qt5CoreConfigExtras.cmake.in -@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qmake) - add_executable(Qt5::qmake IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -18,7 +18,7 @@ if (NOT TARGET Qt5::moc) - add_executable(Qt5::moc IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -35,7 +35,7 @@ if (NOT TARGET Qt5::rcc) - add_executable(Qt5::rcc IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -116,7 +116,7 @@ if (NOT TARGET Qt5::WinMain) - !!IF !isEmpty(CMAKE_RELEASE_TYPE) - set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") - !!ELSE - set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") - !!ENDIF -@@ -130,7 +130,7 @@ if (NOT TARGET Qt5::WinMain) - set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) - - !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") - !!ELSE - set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") - !!ENDIF -diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in -index c357237d0e..6f0c75de3c 100644 ---- a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in -+++ b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in -@@ -1,6 +1,6 @@ - - !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE) --set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") -+set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") - !!ELSE - set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") - !!ENDIF -diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in -index 706304cf34..546420f6ad 100644 ---- a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in -+++ b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in -@@ -1,6 +1,6 @@ - - !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE) --set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") -+set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") - !!ELSE - set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") - !!ENDIF -diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp -index 463e30e1c3..0e1ab669e4 100644 ---- a/src/corelib/kernel/qcoreapplication.cpp -+++ b/src/corelib/kernel/qcoreapplication.cpp +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcoreapplication.cpp qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcoreapplication.cpp +--- qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcoreapplication.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcoreapplication.cpp 2019-07-10 09:35:08.919628625 -0500 @@ -2668,6 +2668,15 @@ QStringList *app_libpaths = new QStringList; coreappdata()->app_libpaths.reset(app_libpaths); @@ -893,11 +803,114 @@ index 463e30e1c3..0e1ab669e4 100644 QString libPathEnv = qEnvironmentVariable("QT_PLUGIN_PATH"); if (!libPathEnv.isEmpty()) { QStringList paths = libPathEnv.split(QDir::listSeparator(), QString::SkipEmptyParts); -diff --git a/src/corelib/tools/qtimezoneprivate_tz.cpp b/src/corelib/tools/qtimezoneprivate_tz.cpp -index bed62a02bd..73158993f7 100644 ---- a/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ b/src/corelib/tools/qtimezoneprivate_tz.cpp -@@ -70,7 +70,11 @@ typedef QHash QTzTimeZoneHash; +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcore_mac_p.h qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcore_mac_p.h +--- qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcore_mac_p.h 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcore_mac_p.h 2019-07-10 09:35:08.920628655 -0500 +@@ -212,7 +212,7 @@ + + // -------------------------------------------------------------------------- + +-#if !defined(QT_BOOTSTRAPPED) ++#if 0 + + QT_END_NAMESPACE + #include +@@ -290,7 +290,19 @@ + + #define QT_APPLE_SCOPED_LOG_ACTIVITY(...) QAppleLogActivity scopedLogActivity = QT_APPLE_LOG_ACTIVITY(__VA_ARGS__).enter(); + +-#endif // !defined(QT_BOOTSTRAPPED) ++#else // !defined(QT_BOOTSTRAPPED) ++ ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT3(...) ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT2(...) ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT(...) ++ ++#define QT_APPLE_LOG_ACTIVITY2(...) ++#define QT_APPLE_LOG_ACTIVITY1(...) ++#define QT_APPLE_LOG_ACTIVITY(...) ++ ++#define QT_APPLE_SCOPED_LOG_ACTIVITY(...) ++ ++#endif + + // ------------------------------------------------------------------------- + +Only in qtbase-everywhere-src-5.12.3-b/src/corelib/kernel: qcore_mac_p.h.orig +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtras.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtras.cmake.in 2019-07-10 09:35:08.918628595 -0500 +@@ -3,7 +3,7 @@ + add_executable(Qt5::qmake IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -18,7 +18,7 @@ + add_executable(Qt5::moc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -35,7 +35,7 @@ + add_executable(Qt5::rcc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -116,7 +116,7 @@ + !!IF !isEmpty(CMAKE_RELEASE_TYPE) + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ENDIF +@@ -130,7 +130,7 @@ + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ENDIF +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in 2019-07-10 09:35:08.918628595 -0500 +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in 2019-07-10 09:35:08.918628595 -0500 +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.cpp qtbase-everywhere-src-5.12.3-b/src/corelib/tools/qtimezoneprivate_tz.cpp +--- qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/corelib/tools/qtimezoneprivate_tz.cpp 2019-07-10 09:35:08.919628625 -0500 +@@ -70,7 +70,11 @@ // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -910,7 +923,7 @@ index bed62a02bd..73158993f7 100644 if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -644,12 +648,16 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) +@@ -644,12 +648,16 @@ if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -932,10 +945,9 @@ index bed62a02bd..73158993f7 100644 } } -diff --git a/src/dbus/Qt5DBusConfigExtras.cmake.in b/src/dbus/Qt5DBusConfigExtras.cmake.in -index 1d947159e2..b36865fc48 100644 ---- a/src/dbus/Qt5DBusConfigExtras.cmake.in -+++ b/src/dbus/Qt5DBusConfigExtras.cmake.in +diff -aur qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/dbus/Qt5DBusConfigExtras.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/dbus/Qt5DBusConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 @@ -2,11 +2,7 @@ if (NOT TARGET Qt5::qdbuscpp2xml) add_executable(Qt5::qdbuscpp2xml IMPORTED) @@ -949,7 +961,7 @@ index 1d947159e2..b36865fc48 100644 _qt5_DBus_check_file_exists(${imported_location}) set_target_properties(Qt5::qdbuscpp2xml PROPERTIES -@@ -17,11 +13,7 @@ endif() +@@ -17,11 +13,7 @@ if (NOT TARGET Qt5::qdbusxml2cpp) add_executable(Qt5::qdbusxml2cpp IMPORTED) @@ -962,10 +974,9 @@ index 1d947159e2..b36865fc48 100644 _qt5_DBus_check_file_exists(${imported_location}) set_target_properties(Qt5::qdbusxml2cpp PROPERTIES -diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in -index 07869efd7d..fb4183bada 100644 ---- a/src/gui/Qt5GuiConfigExtras.cmake.in -+++ b/src/gui/Qt5GuiConfigExtras.cmake.in +diff -aur qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/gui/Qt5GuiConfigExtras.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/gui/Qt5GuiConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 @@ -2,7 +2,7 @@ !!IF !isEmpty(CMAKE_ANGLE_EGL_DLL_RELEASE) @@ -975,7 +986,7 @@ index 07869efd7d..fb4183bada 100644 !!ELSE set(Qt5Gui_EGL_INCLUDE_DIRS \"$$CMAKE_INCLUDE_DIR/QtANGLE\") !!ENDIF -@@ -17,13 +17,13 @@ macro(_populate_qt5gui_gl_target_properties TargetName Configuration LIB_LOCATIO +@@ -17,13 +17,13 @@ set_property(TARGET Qt5::${TargetName} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) @@ -991,11 +1002,10 @@ index 07869efd7d..fb4183bada 100644 !!ELSE set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") !!ENDIF -diff --git a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp -index b5a0a5bbeb..6c20305f4d 100644 ---- a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp -+++ b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp -@@ -265,12 +265,9 @@ void TableGenerator::initPossibleLocations() +diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +--- qtbase-everywhere-src-5.12.3-a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp 2019-07-10 09:35:08.919628625 -0500 +@@ -265,12 +265,9 @@ m_possibleLocations.reserve(7); if (qEnvironmentVariableIsSet("QTCOMPOSE")) m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); @@ -1009,11 +1019,10 @@ index b5a0a5bbeb..6c20305f4d 100644 } QString TableGenerator::findComposeFile() -diff --git a/src/plugins/platforms/xcb/qxcbcursor.cpp b/src/plugins/platforms/xcb/qxcbcursor.cpp -index 57629ac03a..8a7f219a98 100644 ---- a/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ b/src/plugins/platforms/xcb/qxcbcursor.cpp -@@ -316,10 +316,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) +diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforms/xcb/qxcbcursor.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb/qxcbcursor.cpp +--- qtbase-everywhere-src-5.12.3-a/src/plugins/platforms/xcb/qxcbcursor.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb/qxcbcursor.cpp 2019-07-10 09:35:08.919628625 -0500 +@@ -317,10 +317,10 @@ #if QT_CONFIG(xcb_xlib) && QT_CONFIG(library) static bool function_ptrs_not_initialized = true; if (function_ptrs_not_initialized) { @@ -1026,10 +1035,10 @@ index 57629ac03a..8a7f219a98 100644 xcursorFound = xcursorLib.load(); } if (xcursorFound) { -diff --git a/src/plugins/platformthemes/gtk3/main.cpp b/src/plugins/platformthemes/gtk3/main.cpp -index fb1c425d8e..bb8bab9795 100644 ---- a/src/plugins/platformthemes/gtk3/main.cpp -+++ b/src/plugins/platformthemes/gtk3/main.cpp +Only in qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb: qxcbcursor.cpp.orig +diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platformthemes/gtk3/main.cpp +--- qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/plugins/platformthemes/gtk3/main.cpp 2019-07-10 09:35:08.919628625 -0500 @@ -39,6 +39,7 @@ #include @@ -1038,7 +1047,7 @@ index fb1c425d8e..bb8bab9795 100644 QT_BEGIN_NAMESPACE -@@ -54,8 +55,22 @@ public: +@@ -54,8 +55,22 @@ QPlatformTheme *QGtk3ThemePlugin::create(const QString &key, const QStringList ¶ms) { Q_UNUSED(params); @@ -1062,10 +1071,21 @@ index fb1c425d8e..bb8bab9795 100644 return 0; } -diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h -index 6498ea84ef..d821ced7fc 100644 ---- a/src/testlib/qtestassert.h -+++ b/src/testlib/qtestassert.h +diff -aur qtbase-everywhere-src-5.12.3-a/src/testlib/qappletestlogger.cpp qtbase-everywhere-src-5.12.3-b/src/testlib/qappletestlogger.cpp +--- qtbase-everywhere-src-5.12.3-a/src/testlib/qappletestlogger.cpp 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/testlib/qappletestlogger.cpp 2019-07-10 09:35:08.920628655 -0500 +@@ -43,7 +43,7 @@ + + QT_BEGIN_NAMESPACE + +-#if defined(QT_USE_APPLE_UNIFIED_LOGGING) ++#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 + + using namespace QTestPrivate; + +diff -aur qtbase-everywhere-src-5.12.3-a/src/testlib/qtestassert.h qtbase-everywhere-src-5.12.3-b/src/testlib/qtestassert.h +--- qtbase-everywhere-src-5.12.3-a/src/testlib/qtestassert.h 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/testlib/qtestassert.h 2019-07-10 09:35:08.919628625 -0500 @@ -44,10 +44,13 @@ QT_BEGIN_NAMESPACE @@ -1082,11 +1102,10 @@ index 6498ea84ef..d821ced7fc 100644 QT_END_NAMESPACE -diff --git a/src/widgets/Qt5WidgetsConfigExtras.cmake.in b/src/widgets/Qt5WidgetsConfigExtras.cmake.in -index 99d87e2e46..a4eab2aa72 100644 ---- a/src/widgets/Qt5WidgetsConfigExtras.cmake.in -+++ b/src/widgets/Qt5WidgetsConfigExtras.cmake.in -@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::uic) +diff -aur qtbase-everywhere-src-5.12.3-a/src/widgets/Qt5WidgetsConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/widgets/Qt5WidgetsConfigExtras.cmake.in +--- qtbase-everywhere-src-5.12.3-a/src/widgets/Qt5WidgetsConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 ++++ qtbase-everywhere-src-5.12.3-b/src/widgets/Qt5WidgetsConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 +@@ -3,7 +3,7 @@ add_executable(Qt5::uic IMPORTED) !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) @@ -1095,63 +1114,3 @@ index 99d87e2e46..a4eab2aa72 100644 !!ELSE set(imported_location \"$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\") !!ENDIF -diff --git a/src/corelib/kernel/qcore_mac_p.h b/src/corelib/kernel/qcore_mac_p.h -index b14a494296..779c4eda95 100644 ---- a/src/corelib/kernel/qcore_mac_p.h -+++ b/src/corelib/kernel/qcore_mac_p.h -@@ -211,7 +211,7 @@ private: - - // -------------------------------------------------------------------------- - --#if !defined(QT_BOOTSTRAPPED) -+#if 0 - - QT_END_NAMESPACE - #include -@@ -289,7 +289,19 @@ QT_MAC_WEAK_IMPORT(_os_activity_current); - - #define QT_APPLE_SCOPED_LOG_ACTIVITY(...) QAppleLogActivity scopedLogActivity = QT_APPLE_LOG_ACTIVITY(__VA_ARGS__).enter(); - --#endif // !defined(QT_BOOTSTRAPPED) -+#else // !defined(QT_BOOTSTRAPPED) -+ -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT3(...) -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT2(...) -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT(...) -+ -+#define QT_APPLE_LOG_ACTIVITY2(...) -+#define QT_APPLE_LOG_ACTIVITY1(...) -+#define QT_APPLE_LOG_ACTIVITY(...) -+ -+#define QT_APPLE_SCOPED_LOG_ACTIVITY(...) -+ -+#endif - - // ------------------------------------------------------------------------- - -diff --git a/src/testlib/qappletestlogger.cpp b/src/testlib/qappletestlogger.cpp -index 2c1005ad80..244147ea7d 100644 ---- a/src/testlib/qappletestlogger.cpp -+++ b/src/testlib/qappletestlogger.cpp -@@ -43,7 +43,7 @@ - - QT_BEGIN_NAMESPACE - --#if defined(QT_USE_APPLE_UNIFIED_LOGGING) -+#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 - - using namespace QTestPrivate; - -diff --git a/src/testlib/qtestlog.cpp b/src/testlib/qtestlog.cpp -index 1268730cc6..a50e9b0764 100644 ---- a/src/testlib/qtestlog.cpp -+++ b/src/testlib/qtestlog.cpp -@@ -524,7 +524,7 @@ void QTestLog::addLogger(LogMode mode, const char *filename) - #endif - } - --#if defined(QT_USE_APPLE_UNIFIED_LOGGING) -+#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 - // Logger that also feeds messages to AUL. It needs to wrap the existing - // logger, as it needs to be able to short circuit the existing logger - // in case AUL prints to stderr. From d79584c90253107d8d29869de0951545a567554a Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Fri, 12 Jul 2019 12:07:45 -0700 Subject: [PATCH 0154/1611] nixos/nscd: document why it is configured this way --- nixos/modules/services/system/nscd.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index c2d0cd5d0eb..e11f7e049d8 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -52,6 +52,12 @@ in config.environment.etc."nscd.conf".source ]; + # We use DynamicUser because in default configurations nscd doesn't + # create any files that need to survive restarts. However, in some + # configurations, nscd needs to be started as root; it will drop + # privileges after all the NSS modules have read their configuration + # files. So prefix the ExecStart command with "!" to prevent systemd + # from dropping privileges early. See ExecStart in systemd.service(5). serviceConfig = { ExecStart = "!@${pkgs.glibc.bin}/sbin/nscd nscd"; Type = "forking"; From d363da72cc8e102d46af74c2eb9aa7bb839b5174 Mon Sep 17 00:00:00 2001 From: Guillaume Bouchard Date: Thu, 11 Jul 2019 17:10:55 +0200 Subject: [PATCH 0155/1611] bazel: Use --distdir for prefetched repositories --distdir is now used in the installCheckPhase for prefetched repositories. That's simpler, more robust and easier to extend in the future. Note that `name` argument of fetchurl was removed because it changed the basename of the generated file and bazel uses this basename for its cache behavior. --- .../tools/build-managers/bazel/default.nix | 23 +++---------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index bad0023eef3..8d7a8199240 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -33,7 +33,6 @@ let let srcs = (builtins.fromJSON (builtins.readFile ./src-deps.json)); toFetchurl = d: lib.attrsets.nameValuePair d.name (fetchurl { - name = d.name; urls = d.urls; sha256 = d.sha256; }); @@ -339,8 +338,8 @@ stdenv.mkDerivation rec { # add nix environment vars to .bazelrc cat >> .bazelrc < Date: Sun, 14 Apr 2019 10:53:23 +0100 Subject: [PATCH 0156/1611] Add alexarice to maintainers list --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5d686a109a4..d9abf5961fd 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -250,6 +250,11 @@ github = "akru"; name = "Alexander Krupenkin "; }; + alexarice = { + email = "alexrice999@hotmail.co.uk"; + github = "alexarice"; + name = "Alex Rice"; + }; alexchapman = { email = "alex@farfromthere.net"; github = "AJChapman"; From f68f61d2438ba7db9b098c906a0b2e0e142fc954 Mon Sep 17 00:00:00 2001 From: Alex Rice Date: Fri, 12 Jul 2019 23:12:24 +0100 Subject: [PATCH 0157/1611] evtest-qt: init at 0.2.0 --- pkgs/applications/misc/evtest-qt/default.nix | 25 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/applications/misc/evtest-qt/default.nix diff --git a/pkgs/applications/misc/evtest-qt/default.nix b/pkgs/applications/misc/evtest-qt/default.nix new file mode 100644 index 00000000000..de75c7b68a8 --- /dev/null +++ b/pkgs/applications/misc/evtest-qt/default.nix @@ -0,0 +1,25 @@ +{ stdenv, qtbase, cmake, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "evtest-qt"; + version = "0.2.0"; + + src = fetchFromGitHub { + owner = "Grumbel"; + repo = pname; + rev = "v${version}"; + sha256 = "1wfzkgq81764qzxgk0y5vvpxcrb3icvrr4dd4mj8njrqgbwmn0mw"; + }; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ qtbase ]; + + meta = with stdenv.lib; { + description = "Simple input device tester for linux with Qt GUI"; + homepage = "https://github.com/Grumbel/evtest-qt"; + maintainers = with maintainers; [ alexarice ]; + platforms = platforms.linux; + license = licenses.gpl3; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 744c25d3996..a17677ee561 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2838,6 +2838,8 @@ in evtest = callPackage ../applications/misc/evtest { }; + evtest-qt = libsForQt5.callPackage ../applications/misc/evtest-qt { }; + exa = callPackage ../tools/misc/exa { }; exempi = callPackage ../development/libraries/exempi { From 46409b5c32da64d06ec465d7cb0b2b6a1e1ad246 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 22 May 2017 11:01:00 +0200 Subject: [PATCH 0158/1611] Python: add sitecustomize.py, listen to NIX_PYTHONPATH This commit adds a Nix-specific module that recursively adds paths that are on `NIX_PYTHONPATH` to `sys.path`. In order to process possible `.pth` files `site.addsitedir` is used. The paths listed in `PYTHONPATH` are added to `sys.path` afterwards, but they will be added before the entries we add here and thus take precedence. The reason for adding support for this environment variable is that we can set it in a wrapper without breaking support for `PYTHONPATH`. --- .../python/cpython/2.7/default.nix | 5 +++++ .../interpreters/python/cpython/default.nix | 3 +++ .../interpreters/python/pypy/default.nix | 3 +++ .../interpreters/python/pypy/prebuilt.nix | 4 ++++ .../interpreters/python/sitecustomize.py | 18 ++++++++++++++++++ 5 files changed, 33 insertions(+) create mode 100644 pkgs/development/interpreters/python/sitecustomize.py diff --git a/pkgs/development/interpreters/python/cpython/2.7/default.nix b/pkgs/development/interpreters/python/cpython/2.7/default.nix index 1503c221bdd..de980f1ca68 100644 --- a/pkgs/development/interpreters/python/cpython/2.7/default.nix +++ b/pkgs/development/interpreters/python/cpython/2.7/default.nix @@ -256,6 +256,11 @@ in with passthru; stdenv.mkDerivation ({ inherit passthru; + postFixup = '' + # Include a sitecustomize.py file. Note it causes an error when it's in postInstall with 2.7. + cp ${../../sitecustomize.py} $out/${sitePackages}/sitecustomize.py + ''; + enableParallelBuilding = true; doCheck = false; # expensive, and fails diff --git a/pkgs/development/interpreters/python/cpython/default.nix b/pkgs/development/interpreters/python/cpython/default.nix index 5eb7f3ec166..2f398d8dccb 100644 --- a/pkgs/development/interpreters/python/cpython/default.nix +++ b/pkgs/development/interpreters/python/cpython/default.nix @@ -221,6 +221,9 @@ in with passthru; stdenv.mkDerivation { find $out/lib/python*/config-* -type f -print -exec nuke-refs -e $out '{}' + find $out/lib -name '_sysconfigdata*.py*' -print -exec nuke-refs -e $out '{}' + + # Include a sitecustomize.py file + cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py + # Determinism: rebuild all bytecode # We exclude lib2to3 because that's Python 2 code which fails # We rebuild three times, once for each optimization level diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix index 42b652978bc..705ddb2a6f5 100644 --- a/pkgs/development/interpreters/python/pypy/default.nix +++ b/pkgs/development/interpreters/python/pypy/default.nix @@ -137,6 +137,9 @@ in with passthru; stdenv.mkDerivation rec { # Python on Nix is not manylinux1 compatible. https://github.com/NixOS/nixpkgs/issues/18484 echo "manylinux1_compatible=False" >> $out/lib/${libPrefix}/_manylinux.py + + # Include a sitecustomize.py file + cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py ''; inherit passthru; diff --git a/pkgs/development/interpreters/python/pypy/prebuilt.nix b/pkgs/development/interpreters/python/pypy/prebuilt.nix index 6af198e65ea..1ac779ed25e 100644 --- a/pkgs/development/interpreters/python/pypy/prebuilt.nix +++ b/pkgs/development/interpreters/python/pypy/prebuilt.nix @@ -84,6 +84,10 @@ in with passthru; stdenv.mkDerivation { echo "Removing bytecode" find . -name "__pycache__" -type d -depth -exec rm -rf {} \; popd + + # Include a sitecustomize.py file + cp ${../sitecustomize.py} $out/${sitePackages}/sitecustomize.py + ''; doInstallCheck = true; diff --git a/pkgs/development/interpreters/python/sitecustomize.py b/pkgs/development/interpreters/python/sitecustomize.py new file mode 100644 index 00000000000..7e43be56147 --- /dev/null +++ b/pkgs/development/interpreters/python/sitecustomize.py @@ -0,0 +1,18 @@ +""" +This is a Nix-specific module for discovering modules built with Nix. + +The module recursively adds paths that are on `NIX_PYTHONPATH` to `sys.path`. In +order to process possible `.pth` files `site.addsitedir` is used. + +The paths listed in `PYTHONPATH` are added to `sys.path` afterwards, but they +will be added before the entries we add here and thus take precedence. + +Note the `NIX_PYTHONPATH` environment variable is unset in order to prevent leakage. +""" +import site +import os +import functools + +paths = os.environ.pop('NIX_PYTHONPATH', None) +if paths: + functools.reduce(lambda k, p: site.addsitedir(p, k), paths.split(':'), site._init_pathinfo()) From ec7f569211091282410050e89e68832d4fe60528 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 9 Jul 2019 14:34:15 +0200 Subject: [PATCH 0159/1611] python.buildEnv: use NIX_PYTHONPATH --- pkgs/development/interpreters/python/wrapper.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/wrapper.nix b/pkgs/development/interpreters/python/wrapper.nix index 5a2ec567b9e..d97bef222a1 100644 --- a/pkgs/development/interpreters/python/wrapper.nix +++ b/pkgs/development/interpreters/python/wrapper.nix @@ -13,6 +13,7 @@ let env = let paths = requiredPythonModules (extraLibs ++ [ python ] ) ; + pythonPath = "${placeholder "out"}/${python.sitePackages}"; in buildEnv { name = "${python.name}-env"; @@ -35,7 +36,7 @@ let if [ -f "$prg" ]; then rm -f "$out/bin/$prg" if [ -x "$prg" ]; then - makeWrapper "$path/bin/$prg" "$out/bin/$prg" --set PYTHONHOME "$out" ${if permitUserSite then "" else ''--set PYTHONNOUSERSITE "true"''} ${stdenv.lib.concatStringsSep " " makeWrapperArgs} + makeWrapper "$path/bin/$prg" "$out/bin/$prg" --set NIX_PYTHONPATH ${pythonPath} ${if permitUserSite then "" else ''--set PYTHONNOUSERSITE "true"''} ${stdenv.lib.concatStringsSep " " makeWrapperArgs} fi fi done From 1e0ebdb8a4fe94db67b6520225d325292d60247c Mon Sep 17 00:00:00 2001 From: Kirill Boltaev Date: Sat, 13 Jul 2019 00:25:23 +0300 Subject: [PATCH 0160/1611] buildPythonPackage: add support for setupPyDistFlags Flags passed to the "python setup.py" command. --- doc/languages-frameworks/python.section.md | 1 + .../python/build-python-package-pyproject.nix | 9 ++++++--- .../python/build-python-package-setuptools.nix | 9 +++++++-- 3 files changed, 14 insertions(+), 5 deletions(-) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 77b387dd302..ae2f755ff9a 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -603,6 +603,7 @@ All parameters from `stdenv.mkDerivation` function are still supported. The foll * `preShellHook`: Hook to execute commands before `shellHook`. * `postShellHook`: Hook to execute commands after `shellHook`. * `removeBinByteCode ? true`: Remove bytecode from `/bin`. Bytecode is only created when the filenames end with `.py`. +* `setupPyDistFlags ? []`: List of flags passed to `setup.py` command. * `setupPyBuildFlags ? []`: List of flags passed to `setup.py build_ext` command. The `stdenv.mkDerivation` function accepts various parameters for describing build inputs (see "Specifying dependencies"). The following are of special diff --git a/pkgs/development/interpreters/python/build-python-package-pyproject.nix b/pkgs/development/interpreters/python/build-python-package-pyproject.nix index 86c450fcf92..38f2f67bfcd 100644 --- a/pkgs/development/interpreters/python/build-python-package-pyproject.nix +++ b/pkgs/development/interpreters/python/build-python-package-pyproject.nix @@ -5,10 +5,12 @@ }: { +# passed to "python setup.py" + setupPyDistFlags ? [] # passed to "python setup.py build_ext" # https://github.com/pypa/pip/issues/881 # Rename to `buildOptions` because it is not setuptools specific? - setupPyBuildFlags ? [] +, setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -16,13 +18,14 @@ , ... } @ attrs: let + installOptions = lib.concatMapStringsSep " " (option: "--install-option ${option}") setupPyDistFlags; options = lib.concatMapStringsSep " " (option: "--global-option ${option}") setupPyBuildFlags; in attrs // { buildPhase = attrs.buildPhase or '' runHook preBuild mkdir -p dist echo "Creating a wheel..." - ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${options} . + ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${installOptions} ${options} . echo "Finished creating a wheel..." runHook postBuild ''; @@ -50,4 +53,4 @@ in attrs // { ${postShellHook} ''; -} \ No newline at end of file +} diff --git a/pkgs/development/interpreters/python/build-python-package-setuptools.nix b/pkgs/development/interpreters/python/build-python-package-setuptools.nix index 4c66fdec5f6..ecb3fed6a04 100644 --- a/pkgs/development/interpreters/python/build-python-package-setuptools.nix +++ b/pkgs/development/interpreters/python/build-python-package-setuptools.nix @@ -5,9 +5,11 @@ }: { +# passed to "python setup.py" + setupPyDistFlags ? [] # passed to "python setup.py build_ext" # https://github.com/pypa/pip/issues/881 - setupPyBuildFlags ? [] +, setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -19,13 +21,16 @@ let # pip does the same thing: https://github.com/pypa/pip/pull/3265 setuppy = ./run_setup.py; + setupPyDistFlagsString = lib.concatStringsSep " " setupPyDistFlags; + setupPyBuildExtString = lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags)); + in attrs // { # we copy nix_run_setup over so it's executed relative to the root of the source # many project make that assumption buildPhase = attrs.buildPhase or '' runHook preBuild cp ${setuppy} nix_run_setup - ${python.pythonForBuild.interpreter} nix_run_setup ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel + ${python.pythonForBuild.interpreter} nix_run_setup ${setupPyDistFlagsString} ${setupPyBuildExtString} bdist_wheel runHook postBuild ''; From 1323930b7b263568ace78caf346189272fffb08e Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sat, 13 Jul 2019 09:31:46 +0200 Subject: [PATCH 0161/1611] hplip: add meta.downloadPage --- pkgs/misc/drivers/hplip/3.16.11.nix | 1 + pkgs/misc/drivers/hplip/3.18.5.nix | 1 + pkgs/misc/drivers/hplip/default.nix | 1 + 3 files changed, 3 insertions(+) diff --git a/pkgs/misc/drivers/hplip/3.16.11.nix b/pkgs/misc/drivers/hplip/3.16.11.nix index 8f5004693ea..5e275a1f2b3 100644 --- a/pkgs/misc/drivers/hplip/3.16.11.nix +++ b/pkgs/misc/drivers/hplip/3.16.11.nix @@ -184,6 +184,7 @@ pythonPackages.buildPythonApplication { meta = with stdenv.lib; { description = "Print, scan and fax HP drivers for Linux"; homepage = http://hplipopensource.com/; + downloadPage = https://sourceforge.net/projects/hplip/files/hplip/; license = if withPlugin then licenses.unfree else with licenses; [ mit bsd2 gpl2Plus ]; diff --git a/pkgs/misc/drivers/hplip/3.18.5.nix b/pkgs/misc/drivers/hplip/3.18.5.nix index 2be65e40c45..9c9694edbd4 100644 --- a/pkgs/misc/drivers/hplip/3.18.5.nix +++ b/pkgs/misc/drivers/hplip/3.18.5.nix @@ -216,6 +216,7 @@ pythonPackages.buildPythonApplication { meta = with stdenv.lib; { description = "Print, scan and fax HP drivers for Linux"; homepage = https://developers.hp.com/hp-linux-imaging-and-printing; + downloadPage = https://sourceforge.net/projects/hplip/files/hplip/; license = if withPlugin then licenses.unfree else with licenses; [ mit bsd2 gpl2Plus ]; diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index ea955428809..2e2b4548e15 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -216,6 +216,7 @@ pythonPackages.buildPythonApplication { meta = with stdenv.lib; { description = "Print, scan and fax HP drivers for Linux"; homepage = https://developers.hp.com/hp-linux-imaging-and-printing; + downloadPage = https://sourceforge.net/projects/hplip/files/hplip/; license = if withPlugin then licenses.unfree else with licenses; [ mit bsd2 gpl2Plus ]; From 15aacfb45077d572fd3999ab00a6fe630af2cae7 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sun, 30 Jun 2019 15:13:33 +0200 Subject: [PATCH 0162/1611] hplip: 3.19.1 -> 3.19.6 Release notes: https://developers.hp.com/hp-linux-imaging-and-printing/release_notes --- pkgs/misc/drivers/hplip/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 2e2b4548e15..1726e8ea421 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -12,16 +12,16 @@ let name = "hplip-${version}"; - version = "3.19.1"; + version = "3.19.6"; src = fetchurl { url = "mirror://sourceforge/hplip/${name}.tar.gz"; - sha256 = "1kl1q4753xx1w76dhp92wgrhn5k1yx1ib35pyi0vi3mw0njbhrzm"; + sha256 = "0vfnc6pg7wzs68qn5mlk3cyl969d8n55bydgydq2wzfikvpfvnpw"; }; plugin = fetchurl { url = "https://www.openprinting.org/download/printdriver/auxfiles/HP/plugins/${name}-plugin.run"; - sha256 = "1fwjypy1ycyi7rr1vk1yxhbdhx51n7fxhvjb36mzw8qz71dif2i3"; + sha256 = "1b5gys04kh41gg7r7rzlpdbc2f4jirl2ik22cd935mm85k7abfwq"; }; hplipState = substituteAll { From 338b4c5a9eb9b1bd25b600d53b9e51b0ad84a193 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 13 Jul 2019 04:20:00 -0500 Subject: [PATCH 0163/1611] prometheus_2: 2.11.0 -> 2.11.1 --- pkgs/servers/monitoring/prometheus/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index 3523c3b0817..8806a88693b 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -48,7 +48,7 @@ in rec { }; prometheus_2 = buildPrometheus { - version = "2.11.0"; - sha256 = "0x5q2zv8nvqdns8780rsbdhv44azg1fz631ji2rlmiy1l6n1q3hb"; + version = "2.11.1"; + sha256 = "1d4kiv88v1p74cm1wg6wk1cs963xg2rlhkxw86slf9hmldlgww2l"; }; } From 271b57c219f9a4fe44fb4459e61f40418ec1a28c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 13 Jul 2019 13:25:32 +0200 Subject: [PATCH 0164/1611] Revert "buildPythonPackage: add support for setupPyDistFlags" I merged this a bit too quick. We need to have a closer look at it. See the points brought up in https://github.com/NixOS/nixpkgs/pull/64682. This reverts commit 1e0ebdb8a4fe94db67b6520225d325292d60247c. --- doc/languages-frameworks/python.section.md | 1 - .../python/build-python-package-pyproject.nix | 9 +++------ .../python/build-python-package-setuptools.nix | 9 ++------- 3 files changed, 5 insertions(+), 14 deletions(-) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index ae2f755ff9a..77b387dd302 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -603,7 +603,6 @@ All parameters from `stdenv.mkDerivation` function are still supported. The foll * `preShellHook`: Hook to execute commands before `shellHook`. * `postShellHook`: Hook to execute commands after `shellHook`. * `removeBinByteCode ? true`: Remove bytecode from `/bin`. Bytecode is only created when the filenames end with `.py`. -* `setupPyDistFlags ? []`: List of flags passed to `setup.py` command. * `setupPyBuildFlags ? []`: List of flags passed to `setup.py build_ext` command. The `stdenv.mkDerivation` function accepts various parameters for describing build inputs (see "Specifying dependencies"). The following are of special diff --git a/pkgs/development/interpreters/python/build-python-package-pyproject.nix b/pkgs/development/interpreters/python/build-python-package-pyproject.nix index 38f2f67bfcd..86c450fcf92 100644 --- a/pkgs/development/interpreters/python/build-python-package-pyproject.nix +++ b/pkgs/development/interpreters/python/build-python-package-pyproject.nix @@ -5,12 +5,10 @@ }: { -# passed to "python setup.py" - setupPyDistFlags ? [] # passed to "python setup.py build_ext" # https://github.com/pypa/pip/issues/881 # Rename to `buildOptions` because it is not setuptools specific? -, setupPyBuildFlags ? [] + setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -18,14 +16,13 @@ , ... } @ attrs: let - installOptions = lib.concatMapStringsSep " " (option: "--install-option ${option}") setupPyDistFlags; options = lib.concatMapStringsSep " " (option: "--global-option ${option}") setupPyBuildFlags; in attrs // { buildPhase = attrs.buildPhase or '' runHook preBuild mkdir -p dist echo "Creating a wheel..." - ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${installOptions} ${options} . + ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${options} . echo "Finished creating a wheel..." runHook postBuild ''; @@ -53,4 +50,4 @@ in attrs // { ${postShellHook} ''; -} +} \ No newline at end of file diff --git a/pkgs/development/interpreters/python/build-python-package-setuptools.nix b/pkgs/development/interpreters/python/build-python-package-setuptools.nix index ecb3fed6a04..4c66fdec5f6 100644 --- a/pkgs/development/interpreters/python/build-python-package-setuptools.nix +++ b/pkgs/development/interpreters/python/build-python-package-setuptools.nix @@ -5,11 +5,9 @@ }: { -# passed to "python setup.py" - setupPyDistFlags ? [] # passed to "python setup.py build_ext" # https://github.com/pypa/pip/issues/881 -, setupPyBuildFlags ? [] + setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -21,16 +19,13 @@ let # pip does the same thing: https://github.com/pypa/pip/pull/3265 setuppy = ./run_setup.py; - setupPyDistFlagsString = lib.concatStringsSep " " setupPyDistFlags; - setupPyBuildExtString = lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags)); - in attrs // { # we copy nix_run_setup over so it's executed relative to the root of the source # many project make that assumption buildPhase = attrs.buildPhase or '' runHook preBuild cp ${setuppy} nix_run_setup - ${python.pythonForBuild.interpreter} nix_run_setup ${setupPyDistFlagsString} ${setupPyBuildExtString} bdist_wheel + ${python.pythonForBuild.interpreter} nix_run_setup ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel runHook postBuild ''; From c7b5cfab44ac1915ae81bf329dd272f3e858b722 Mon Sep 17 00:00:00 2001 From: MetaDark Date: Fri, 12 Jul 2019 22:08:21 -0400 Subject: [PATCH 0165/1611] maintainers: add metadark --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5d686a109a4..8a57f3539a6 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -3248,6 +3248,11 @@ email = "softs@metabarcoding.org"; name = "Celine Mercier"; }; + metadark = { + email = "kira.bruneau@gmail.com"; + name = "Kira Bruneau"; + github = "metadark"; + }; mfossen = { email = "msfossen@gmail.com"; github = "mfossen"; From d77095c97ac6325bfab0762283f3414c97eef698 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 13 Jul 2019 11:02:48 -0400 Subject: [PATCH 0166/1611] pantheon.cerbere: 0.2.4 -> 2.5.0 Fixes #60955 --- pkgs/desktops/pantheon/services/cerbere/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/services/cerbere/default.nix b/pkgs/desktops/pantheon/services/cerbere/default.nix index da5e544b005..28e39464bfa 100644 --- a/pkgs/desktops/pantheon/services/cerbere/default.nix +++ b/pkgs/desktops/pantheon/services/cerbere/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "cerbere"; - version = "0.2.4"; + version = "2.5.0"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; - sha256 = "0f9jr6q5z6nir5b77f96wm9rx6r6s9i0sr1yrymg3n7jyjgrvdwp"; + sha256 = "12y6gg4vyc1rhdm2c7pr7bgmdrah7ddphyh25fgh3way8l9gh7vw"; }; passthru = { From 6900a327ad5be1b8ceed10c515f6dd26d816c7ca Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 7 Jul 2019 21:18:37 +0200 Subject: [PATCH 0167/1611] trivial-builders: support '/' in writeTextDir Before one would get the following error nix-repl> pkgs.writeTextDir "share/my-file" "foo" error: invalid character '/' in name 'share/my-file' Fixes #50347 --- pkgs/build-support/trivial-builders.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/trivial-builders.nix b/pkgs/build-support/trivial-builders.nix index 5706a98f600..0bfe14a8539 100644 --- a/pkgs/build-support/trivial-builders.nix +++ b/pkgs/build-support/trivial-builders.nix @@ -94,17 +94,21 @@ rec { /* * Writes a text file to nix store in a specific directory with no - * optional parameters available. Name passed is the destination. + * optional parameters available. * * Example: - * # Writes contents of file to /nix/store// + * # Writes contents of file to /nix/store//share/my-file * writeTextDir "share/my-file" * '' * Contents of File * ''; * */ - writeTextDir = name: text: writeTextFile {inherit name text; destination = "/${name}";}; + writeTextDir = path: text: writeTextFile { + inherit text; + name = builtins.baseNameOf path; + destination = "/${path}"; + }; /* * Writes a text file to /nix/store/ and marks the file as From ed23412520f4a38dac88b9b16f3c34b14428f9b5 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 13 Jul 2019 19:02:06 +0100 Subject: [PATCH 0168/1611] pythonPackages.lightgbm: fix build on darwin --- .../python-modules/lightgbm/default.nix | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/lightgbm/default.nix b/pkgs/development/python-modules/lightgbm/default.nix index fee314aa6c3..10dbcafd04b 100644 --- a/pkgs/development/python-modules/lightgbm/default.nix +++ b/pkgs/development/python-modules/lightgbm/default.nix @@ -1,10 +1,11 @@ -{ lib +{ stdenv , buildPythonPackage , fetchPypi , cmake , numpy , scipy , scikitlearn +, llvmPackages ? null }: buildPythonPackage rec { @@ -20,6 +21,19 @@ buildPythonPackage rec { cmake ]; + # we never actually explicitly call the install command so this is the only way + # to inject these options to it - however, openmp-library doesn't appear to have + # any effect, so we have to inject it into NIX_LDFLAGS manually below + postPatch = stdenv.lib.optionalString stdenv.cc.isClang '' + cat >> setup.cfg < Date: Sat, 13 Jul 2019 13:33:04 -0500 Subject: [PATCH 0169/1611] xonsh: 0.9.6 -> 0.9.8 Update to correct repo, since a group was created --- pkgs/shells/xonsh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 12d39c5bdab..b896b8b088e 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { pname = "xonsh"; - version = "0.9.6"; + version = "0.9.8"; # fetch from github because the pypi package ships incomplete tests src = fetchFromGitHub { - owner = "scopatz"; + owner = "xonsh"; repo = "xonsh"; rev = "refs/tags/${version}"; sha256 = "0lnvx1kdk1nwv988wrxyvbzb25xawz517amvi4pwzs22bymcdhws"; From 5851594937bbf1adcbe17e7bdd3cd72ff0cd07c0 Mon Sep 17 00:00:00 2001 From: ivanbrennan Date: Sat, 13 Jul 2019 18:31:19 -0400 Subject: [PATCH 0170/1611] maintainers: add ivanbrennan --- maintainers/maintainer-list.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5d686a109a4..c6b192b1e22 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2228,6 +2228,15 @@ email = "tkatchev@gmail.com"; name = "Ivan Tkatchev"; }; + ivanbrennan = { + email = "ivan.brennan@gmail.com"; + github = "ivanbrennan"; + name = "Ivan Brennan"; + keys = [{ + longkeyid = "rsa4096/0x79C3C47DC652EA54"; + fingerprint = "7311 2700 AB4F 4CDF C68C F6A5 79C3 C47D C652 EA54"; + }]; + }; ivegotasthma = { email = "ivegotasthma@protonmail.com"; github = "ivegotasthma"; From 9e465d2f60ea404765607c5c7f6d8ad0afae592a Mon Sep 17 00:00:00 2001 From: ivanbrennan Date: Sat, 13 Jul 2019 18:55:22 -0400 Subject: [PATCH 0171/1611] fly: init at 5.3.0 Add `fly` CLI for working with Concourse CI, and include Bash completions. --- .../continuous-integration/fly/default.nix | 37 +++++++++++++++++++ .../tools/continuous-integration/fly/fly.bash | 10 +++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 49 insertions(+) create mode 100644 pkgs/development/tools/continuous-integration/fly/default.nix create mode 100644 pkgs/development/tools/continuous-integration/fly/fly.bash diff --git a/pkgs/development/tools/continuous-integration/fly/default.nix b/pkgs/development/tools/continuous-integration/fly/default.nix new file mode 100644 index 00000000000..47af70b3702 --- /dev/null +++ b/pkgs/development/tools/continuous-integration/fly/default.nix @@ -0,0 +1,37 @@ +{ buildGoModule, fetchFromGitHub, lib, writeText }: + +buildGoModule rec { + pname = "fly"; + version = "5.3.0"; + + src = fetchFromGitHub { + owner = "concourse"; + repo = "concourse"; + rev = "v${version}"; + sha256 = "06ns98k47nafhkkj7gkmxp7msn4ssypyss6ll0fm6380vq2cavnj"; + }; + + modSha256 = "11rnlmn5hp9nsgkmd716dsjmkr273035j9gzfhjxjsfpiax60i0a"; + + subPackages = [ "fly" ]; + + buildFlagsArray = '' + -ldflags= + -X github.com/concourse/concourse.Version=${version} + ''; + + # The fly.bash file included with this derivation can be replaced by a + # call to `fly completion bash` once the `completion` subcommand has + # made it into a release. Similarly, `fly completion zsh` will provide + # zsh completions. https://github.com/concourse/concourse/pull/4012 + postInstall = '' + install -D -m 444 ${./fly.bash} $out/share/bash-completion/completions/fly + ''; + + meta = with lib; { + description = "A command line interface to Concourse CI"; + homepage = https://concourse-ci.org; + license = licenses.asl20; + maintainers = with maintainers; [ ivanbrennan ]; + }; +} diff --git a/pkgs/development/tools/continuous-integration/fly/fly.bash b/pkgs/development/tools/continuous-integration/fly/fly.bash new file mode 100644 index 00000000000..a9acc5f70a4 --- /dev/null +++ b/pkgs/development/tools/continuous-integration/fly/fly.bash @@ -0,0 +1,10 @@ +# credits: +# https://godoc.org/github.com/jessevdk/go-flags#hdr-Completion +# https://github.com/concourse/concourse/issues/1309#issuecomment-452893900 +_fly_compl() { + args=("${COMP_WORDS[@]:1:$COMP_CWORD}") + local IFS=$'\n' + COMPREPLY=($(GO_FLAGS_COMPLETION=1 ${COMP_WORDS[0]} "${args[@]}")) + return 0 +} +complete -F _fly_compl fly diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 69b571d2f92..c4079afbe58 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9244,6 +9244,8 @@ in inherit (darwin) cf-private; }; + fly = callPackage ../development/tools/continuous-integration/fly { }; + foreman = callPackage ../tools/system/foreman { }; goreman = callPackage ../tools/system/goreman { }; From 3a1111b1726c0a1aad567d8a9bbbf049b2651a14 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sun, 14 Jul 2019 09:42:25 +0800 Subject: [PATCH 0172/1611] youtube-dl: 2019.07.12 -> 2019.07.14 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index a5dcad2b119..b802af902b3 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.07.12"; + version = "2019.07.14"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "1mf8nh972hjpxj01q37jghj32rv21y91fpbwwsqmbmh65dr4k1dn"; + sha256 = "000ll06zg0x1mdvpjgfi398xmwvvy845lkf5zwdhkdr1mqfv85a6"; }; nativeBuildInputs = [ makeWrapper ]; From bf811c4c389cd4077a8a52340af1537048714111 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sun, 14 Jul 2019 09:48:42 +0800 Subject: [PATCH 0173/1611] cargo-bloat: 0.7.1 -> 0.7.2 --- pkgs/development/tools/rust/cargo-bloat/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-bloat/default.nix b/pkgs/development/tools/rust/cargo-bloat/default.nix index 20996537c32..71633a8a885 100644 --- a/pkgs/development/tools/rust/cargo-bloat/default.nix +++ b/pkgs/development/tools/rust/cargo-bloat/default.nix @@ -1,19 +1,19 @@ -{ stdenv, rustPlatform, fetchFromGitHub }: +{ lib, rustPlatform, fetchFromGitHub }: rustPlatform.buildRustPackage rec { pname = "cargo-bloat"; - version = "0.7.1"; + version = "0.7.2"; src = fetchFromGitHub { owner = "RazrFalcon"; repo = pname; rev = "v${version}"; - sha256 = "05dk2y223fjaw49sj0pia9ddccs1j0x4fdyz0bnss38dgf1njygx"; + sha256 = "1g011c98vix0285ws8xby5v50272v15zfyaj948vazsb4zl0gxbm"; }; cargoSha256 = "0bpy8888zbqy9b8hkbfsdxqcs88dn2r7p3qnhfn7a6ri4bw7ihhw"; - meta = with stdenv.lib; { + meta = with lib; { description = "A tool and Cargo subcommand that helps you find out what takes most of the space in your executable"; homepage = "https://github.com/RazrFalcon/cargo-bloat"; license = licenses.mit; From 8f2d6a5709aa89f91dbac5b8a81e1b2457becd06 Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 14 Jul 2019 14:52:00 +0900 Subject: [PATCH 0174/1611] rust-cbindgen: 0.8.3 -> 0.8.7 --- pkgs/development/tools/rust/cbindgen/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/rust/cbindgen/default.nix b/pkgs/development/tools/rust/cbindgen/default.nix index bce1e273cc4..ca4b6825a38 100644 --- a/pkgs/development/tools/rust/cbindgen/default.nix +++ b/pkgs/development/tools/rust/cbindgen/default.nix @@ -2,19 +2,22 @@ rustPlatform.buildRustPackage rec { name = "rust-cbindgen-${version}"; - version = "0.8.3"; + version = "0.8.7"; src = fetchFromGitHub { owner = "eqrion"; repo = "cbindgen"; rev = "v${version}"; - sha256 = "08zlnk1k1nddjciccfdcplxqngsnz6ml3zxm57mijabzybry8zz1"; + sha256 = "040rivayr0dgmrhlly5827c850xbr0j5ngiy6rvwyba5j9iv2x0y"; }; cargoSha256 = "1nig4891p7ii4z4f4j4d4pxx39f501g7yrsygqbpkr1nrgjip547"; buildInputs = stdenv.lib.optional stdenv.isDarwin Security; + # https://github.com/eqrion/cbindgen/issues/338 + RUSTC_BOOTSTRAP = 1; + meta = with stdenv.lib; { description = "A project for generating C bindings from Rust code"; homepage = https://github.com/eqrion/cbindgen; From 48b2dfeca9e548cc8b5c3798483abfe578cfd98b Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 14 Jul 2019 14:52:19 +0900 Subject: [PATCH 0175/1611] nss: 3.44 -> 3.44.1 --- pkgs/development/libraries/nss/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index f3fc4caf315..b410686865f 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -5,7 +5,7 @@ let url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz; sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw"; }; - version = "3.44"; + version = "3.44.1"; underscoreVersion = builtins.replaceStrings ["."] ["_"] version; in stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${name}.tar.gz"; - sha256 = "1zvabgxlyvz3fnv4w89y4a5qkscjmm88naf929dgvvgfnrchwqm5"; + sha256 = "1y0jvva4s3j7cjz22kqw2lsml0an1295bgpc2raf7kc9r60cpr7w"; }; depsBuildBuild = [ buildPackages.stdenv.cc ]; From 8dc44053d9ab60cc5cdcff70dcc3cd6a5e3f83f9 Mon Sep 17 00:00:00 2001 From: Matthew O'Gorman Date: Sat, 6 Jul 2019 11:41:07 -0400 Subject: [PATCH 0176/1611] greatfet: init at 2019.05.01.dev0 --- .../python-modules/facedancer/default.nix | 26 ++++++++++++++ .../python-modules/greatfet/default.nix | 34 +++++++++++++++++++ .../python-modules/pygreat/default.nix | 31 +++++++++++++++++ pkgs/top-level/python-packages.nix | 6 ++++ 4 files changed, 97 insertions(+) create mode 100644 pkgs/development/python-modules/facedancer/default.nix create mode 100644 pkgs/development/python-modules/greatfet/default.nix create mode 100644 pkgs/development/python-modules/pygreat/default.nix diff --git a/pkgs/development/python-modules/facedancer/default.nix b/pkgs/development/python-modules/facedancer/default.nix new file mode 100644 index 00000000000..47147bdb01b --- /dev/null +++ b/pkgs/development/python-modules/facedancer/default.nix @@ -0,0 +1,26 @@ +{ lib, buildPythonPackage, fetchPypi, isPy3k, pyusb, pyserial }: + +buildPythonPackage rec { + pname = "facedancer"; + version = "2019.3.2"; + + src = fetchPypi { + inherit pname version; + sha256 = "1zhwnlfksblgp54njd9gjsrr5ibg12cx1x9xxcqkcdfhn3m2kmm0"; + }; + + disabled = !isPy3k; + + propagatedBuildInputs = [ pyusb pyserial ]; + + preBuild = '' + echo "$version" > VERSION + ''; + + meta = with lib; { + description = "library for emulating usb devices"; + homepage = https://greatscottgadgets.com/greatfet/; + license = licenses.bsd3; + maintainers = with maintainers; [ mog ]; + }; +} diff --git a/pkgs/development/python-modules/greatfet/default.nix b/pkgs/development/python-modules/greatfet/default.nix new file mode 100644 index 00000000000..b0e418913b7 --- /dev/null +++ b/pkgs/development/python-modules/greatfet/default.nix @@ -0,0 +1,34 @@ +{ lib, fetchFromGitHub, buildPythonPackage, isPy3k, future, pyusb, ipython, pygreat }: + +buildPythonPackage rec { + pname = "GreatFET"; + version = "2019.5.1.dev0"; + + src = fetchFromGitHub { + owner = "greatscottgadgets"; + repo = "greatfet"; + rev = "a927f21d59ccface00635146103a807c1d2b0ad8"; + sha256 = "054vkx4xkbhxhh5grjbs9kw3pjkv1zapp91ysrqr0c8mg1pc7zxv"; + }; + + disabled = !isPy3k; + + propagatedBuildInputs = [ future pyusb ipython pygreat ]; + + doCheck = false; + + preBuild = '' + cd host + echo "$version" > ../VERSION + ''; + + meta = { + description = "Hardware hacking with the greatfet"; + homepage = https://greatscottgadgets.com/greatfet; + license = lib.licenses.bsd3; + platforms = lib.platforms.all; + maintainers = with lib.maintainers; [ mog ]; + }; +} + + diff --git a/pkgs/development/python-modules/pygreat/default.nix b/pkgs/development/python-modules/pygreat/default.nix new file mode 100644 index 00000000000..97401f2eb16 --- /dev/null +++ b/pkgs/development/python-modules/pygreat/default.nix @@ -0,0 +1,31 @@ +{ stdenv, buildPythonPackage, isPy3k, fetchFromGitHub, future, pyusb }: + +buildPythonPackage rec { + pname = "pygreat"; + version = "2019.5.1.dev0"; + + src = fetchFromGitHub { + owner = "greatscottgadgets"; + repo = "libgreat"; + rev = "14c00b7c8f036f4d467e4b1a324ffa3566b126fa"; + sha256 = "1h0z83k1k4z8j36z936h61l8j3cjr3wsxr86k91v5c5h93g9dkqh"; + }; + + propagatedBuildInputs = [ future pyusb ]; + + disabled = !isPy3k; + + preBuild = '' + cd host + substituteInPlace setup.py --replace "'backports.functools_lru_cache'" "" + substituteInPlace pygreat/comms.py --replace "from backports.functools_lru_cache import lru_cache as memoize_with_lru_cache" "from functools import lru_cache as memoize_with_lru_cache" + echo "$version" > ../VERSION + ''; + + meta = with stdenv.lib; { + description = "Python library for talking with libGreat devices"; + homepage = https://greatscottgadgets.com/greatfet/; + license = with licenses; [ bsd3 ]; + }; + +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ec132264a9..747495698dc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -422,6 +422,8 @@ in { fasttext = callPackage ../development/python-modules/fasttext { }; + facedancer = callPackage ../development/python-modules/facedancer { }; + favicon = callPackage ../development/python-modules/favicon { }; fido2 = callPackage ../development/python-modules/fido2 { }; @@ -2802,6 +2804,10 @@ in { grappelli_safe = callPackage ../development/python-modules/grappelli_safe { }; + greatfet = callPackage ../development/python-modules/greatfet { }; + + pygreat = callPackage ../development/python-modules/pygreat { }; + pytorch = callPackage ../development/python-modules/pytorch { cudaSupport = pkgs.config.cudaSupport or false; }; From 60311e09576528982582bf9cf1eb86c109a72387 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sun, 30 Jun 2019 15:15:28 +0200 Subject: [PATCH 0177/1611] hplip: patch imageProcessor segfault in `hpcups` (#58949) Beginning with version 3.18.7, `hpcups` fails with > DEBUG: imageProcessorStartPage failed and segfaults (tested with HP LaserJet 1000 printer). Upstream bug reports: * https://bugs.launchpad.net/hplip/+bug/1788706 * https://bugs.launchpad.net/hplip/+bug/1787289 There is a patch available in one of the reports: https://bugs.launchpad.net/hplip/+bug/1787289/+attachment/5176026/+files/hplip.patch It applies to 3.18.7, but not to later versions. This commit adds a slight adaption of the patch that applies to versions 3.18.9 -- 3.19.6. The patch fixes https://github.com/NixOS/nixpkgs/issues/58949 . Note that the patch is merely a workaround: It simply removes all calls into the ImageProcessor library from `HPCupsFilter.cpp`. --- pkgs/misc/drivers/hplip/default.nix | 7 +++ pkgs/misc/drivers/hplip/image-processor.patch | 62 +++++++++++++++++++ 2 files changed, 69 insertions(+) create mode 100644 pkgs/misc/drivers/hplip/image-processor.patch diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 1726e8ea421..eced20902c6 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -82,6 +82,13 @@ pythonPackages.buildPythonApplication { makeWrapperArgs = [ "--prefix" "PATH" ":" "${nettools}/bin" ]; + patches = [ + # remove ImageProcessor usage, it causes segfaults, see + # https://bugs.launchpad.net/hplip/+bug/1788706 + # https://bugs.launchpad.net/hplip/+bug/1787289 + ./image-processor.patch + ]; + prePatch = '' # HPLIP hardcodes absolute paths everywhere. Nuke from orbit. find . -type f -exec sed -i \ diff --git a/pkgs/misc/drivers/hplip/image-processor.patch b/pkgs/misc/drivers/hplip/image-processor.patch new file mode 100644 index 00000000000..ef1040ba08b --- /dev/null +++ b/pkgs/misc/drivers/hplip/image-processor.patch @@ -0,0 +1,62 @@ +diff --git i/prnt/hpcups/HPCupsFilter.cpp w/prnt/hpcups/HPCupsFilter.cpp +index 5b282d8..153ee3a 100644 +--- i/prnt/hpcups/HPCupsFilter.cpp ++++ w/prnt/hpcups/HPCupsFilter.cpp +@@ -31,7 +31,6 @@ + \*****************************************************************************/ + + #include "HPCupsFilter.h" +-#include "ImageProcessor.h" + + #include + #include +@@ -637,16 +636,10 @@ int HPCupsFilter::processRasterData(cups_raster_t *cups_raster) + + + sprintf(hpPreProcessedRasterFile, "%s/hp_%s_cups_SwapedPagesXXXXXX",CUPS_TMP_DIR, m_JA.user_name); +- image_processor_t* imageProcessor = imageProcessorCreate(); + + while (cupsRasterReadHeader2(cups_raster, &cups_header)) + { + +- IMAGE_PROCESSOR_ERROR result = imageProcessorStartPage(imageProcessor, &cups_header); +- if (result != IPE_SUCCESS){ +- dbglog("DEBUG: imageProcessorStartPage failed result = %d\n", result); +- } +- + current_page_number++; + + if (current_page_number == 1) { +@@ -745,11 +738,6 @@ int HPCupsFilter::processRasterData(cups_raster_t *cups_raster) + color_raster = rgbRaster; + black_raster = kRaster; + +- result = imageProcessorProcessLine(imageProcessor, m_pPrinterBuffer, cups_header.cupsBytesPerLine); +- if (result != IPE_SUCCESS){ +- dbglog("DEBUG: imageProcessorProcessLine failed result = %d\n", result); +- } +- + + if ((y == 0) && !is_ljmono) { + //For ljmono, make sure that first line is not a blankRaster line.Otherwise printer +@@ -780,11 +768,6 @@ int HPCupsFilter::processRasterData(cups_raster_t *cups_raster) + } + } // for() loop end + +- result = imageProcessorEndPage(imageProcessor); +- if (result != IPE_SUCCESS){ +- dbglog("DEBUG: imageProcessorEndPage failed result = %d\n", result); +- } +- + + m_Job.NewPage(); + if (err != NO_ERROR) { +@@ -800,8 +783,6 @@ int HPCupsFilter::processRasterData(cups_raster_t *cups_raster) + rgbRaster = NULL; + } + +- imageProcessorDestroy(imageProcessor); +- + unlink(hpPreProcessedRasterFile); + return ret_status; + } From 5aafd1d0dba2800e14421b3f93721e8b2d1cd0f7 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sat, 13 Jul 2019 09:25:56 +0200 Subject: [PATCH 0178/1611] hplip: udev rule: drop `nohup` instead of patching it hplip's udev rule uses `nohup` to attempt to detach its printer configuration script from the udev process. However, this attempt is futile as udev tracks its child processes with cgroups: https://unix.stackexchange.com/a/243648 The hardcoded path to `nohup` was patched to use Nix' `nohup`. This commit alters the patch script so that it simply drops the call to `nohup`. --- pkgs/misc/drivers/hplip/3.16.11.nix | 2 +- pkgs/misc/drivers/hplip/3.18.5.nix | 2 +- pkgs/misc/drivers/hplip/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/drivers/hplip/3.16.11.nix b/pkgs/misc/drivers/hplip/3.16.11.nix index 5e275a1f2b3..4e9b4cbf0ae 100644 --- a/pkgs/misc/drivers/hplip/3.16.11.nix +++ b/pkgs/misc/drivers/hplip/3.16.11.nix @@ -176,7 +176,7 @@ pythonPackages.buildPythonApplication { # Needs a lot of patching but might save someone a bit of confusion: substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ - --replace {/usr,${coreutils}}/bin/nohup \ + --replace /usr/bin/nohup "" \ --replace {,${utillinux}/bin/}logger \ --replace {/usr,$out}/bin ''; diff --git a/pkgs/misc/drivers/hplip/3.18.5.nix b/pkgs/misc/drivers/hplip/3.18.5.nix index 9c9694edbd4..7da6b2db930 100644 --- a/pkgs/misc/drivers/hplip/3.18.5.nix +++ b/pkgs/misc/drivers/hplip/3.18.5.nix @@ -208,7 +208,7 @@ pythonPackages.buildPythonApplication { # Needs a lot of patching but might save someone a bit of confusion: substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ - --replace {/usr,${coreutils}}/bin/nohup \ + --replace /usr/bin/nohup "" \ --replace {,${utillinux}/bin/}logger \ --replace {/usr,$out}/bin ''; diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index eced20902c6..6c02fa52124 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -215,7 +215,7 @@ pythonPackages.buildPythonApplication { # Needs a lot of patching but might save someone a bit of confusion: substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ - --replace {/usr,${coreutils}}/bin/nohup \ + --replace /usr/bin/nohup "" \ --replace {,${utillinux}/bin/}logger \ --replace {/usr,$out}/bin ''; From 2daea2c81f1690fb12070abe67f5ab6b1d582159 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Sun, 30 Jun 2019 15:29:17 +0200 Subject: [PATCH 0179/1611] hplip: retain udev rules in WithPlugin version Beginning with commit 8ffd6af27e6dfae0a3b4d77db03409f62c5b8d98, the build recipe for `hplipWithPlugin` explicitely drops a udev rule file that is delivered with the sources. In `hplip` (without plugin), the rule file is retained. The udev rules takes care of uploading firmware to certain printers (and maybe of other things), e.g. to HP LaserJet 1000. This commit reinstates the rule file and expands the fixup script so that the rules are also patched in the WithPlugin version. --- pkgs/misc/drivers/hplip/3.16.11.nix | 8 +++----- pkgs/misc/drivers/hplip/3.18.5.nix | 8 +++----- pkgs/misc/drivers/hplip/default.nix | 8 +++----- 3 files changed, 9 insertions(+), 15 deletions(-) diff --git a/pkgs/misc/drivers/hplip/3.16.11.nix b/pkgs/misc/drivers/hplip/3.16.11.nix index 4e9b4cbf0ae..ebea49d9540 100644 --- a/pkgs/misc/drivers/hplip/3.16.11.nix +++ b/pkgs/misc/drivers/hplip/3.16.11.nix @@ -142,8 +142,6 @@ pythonPackages.buildPythonApplication { mkdir -p $out/etc/sane.d/dll.d mv $out/etc/sane.d/dll.conf $out/etc/sane.d/dll.d/hpaio.conf - - rm $out/etc/udev/rules.d/56-hpmud.rules ''; # The installed executables are just symlinks into $out/share/hplip, @@ -171,9 +169,9 @@ pythonPackages.buildPythonApplication { postFixup = '' substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out - '' + stdenv.lib.optionalString (!withPlugin) '' - # A udev rule to notify users that they need the binary plugin. - # Needs a lot of patching but might save someone a bit of confusion: + # Patch udev rules: + # with plugin, they upload firmware to printers, + # without plugin, they complain about the missing plugin. substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ --replace /usr/bin/nohup "" \ diff --git a/pkgs/misc/drivers/hplip/3.18.5.nix b/pkgs/misc/drivers/hplip/3.18.5.nix index 7da6b2db930..68220392fd0 100644 --- a/pkgs/misc/drivers/hplip/3.18.5.nix +++ b/pkgs/misc/drivers/hplip/3.18.5.nix @@ -174,8 +174,6 @@ pythonPackages.buildPythonApplication { mkdir -p $out/var/lib/hp cp ${hplipState} $out/var/lib/hp/hplip.state - - rm $out/etc/udev/rules.d/56-hpmud.rules ''; # The installed executables are just symlinks into $out/share/hplip, @@ -203,9 +201,9 @@ pythonPackages.buildPythonApplication { postFixup = '' substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out - '' + stdenv.lib.optionalString (!withPlugin) '' - # A udev rule to notify users that they need the binary plugin. - # Needs a lot of patching but might save someone a bit of confusion: + # Patch udev rules: + # with plugin, they upload firmware to printers, + # without plugin, they complain about the missing plugin. substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ --replace /usr/bin/nohup "" \ diff --git a/pkgs/misc/drivers/hplip/default.nix b/pkgs/misc/drivers/hplip/default.nix index 6c02fa52124..851aa9f3f88 100644 --- a/pkgs/misc/drivers/hplip/default.nix +++ b/pkgs/misc/drivers/hplip/default.nix @@ -181,8 +181,6 @@ pythonPackages.buildPythonApplication { mkdir -p $out/var/lib/hp cp ${hplipState} $out/var/lib/hp/hplip.state - - rm $out/etc/udev/rules.d/56-hpmud.rules ''; # The installed executables are just symlinks into $out/share/hplip, @@ -210,9 +208,9 @@ pythonPackages.buildPythonApplication { postFixup = '' substituteInPlace $out/etc/hp/hplip.conf --replace /usr $out - '' + stdenv.lib.optionalString (!withPlugin) '' - # A udev rule to notify users that they need the binary plugin. - # Needs a lot of patching but might save someone a bit of confusion: + # Patch udev rules: + # with plugin, they upload firmware to printers, + # without plugin, they complain about the missing plugin. substituteInPlace $out/etc/udev/rules.d/56-hpmud.rules \ --replace {,${bash}}/bin/sh \ --replace /usr/bin/nohup "" \ From b678ecea05586d2aba7215a16ddc4ffc73d8c60f Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Sun, 14 Jul 2019 21:17:57 +1000 Subject: [PATCH 0180/1611] Completed missing meta fields --- pkgs/development/libraries/gcr/default.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pkgs/development/libraries/gcr/default.nix b/pkgs/development/libraries/gcr/default.nix index 693fda99759..218a44215c6 100644 --- a/pkgs/development/libraries/gcr/default.nix +++ b/pkgs/development/libraries/gcr/default.nix @@ -45,5 +45,17 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { platforms = platforms.linux; maintainers = gnome3.maintainers; + description = "GNOME crypto services (daemon and tools)"; + homepage = https://gitlab.gnome.org/GNOME/gcr; + license = licenses.gpl2; + + longDescription = '' + GCR is a library for displaying certificates, and crypto UI, accessing + key stores. It also provides the viewer for crypto files on the GNOME + desktop. + + GCK is a library for accessing PKCS#11 modules like smart cards, in a + (G)object oriented way. + ''; }; } From 428e2153139c5dbb6e82ffff949b4e44b57b3ff6 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 14 Jul 2019 12:39:15 +0100 Subject: [PATCH 0181/1611] dosbox: 0.74-2 -> 0.74-3 fixes CVE-2019-7165, CVE-2019-12594 --- pkgs/misc/emulators/dosbox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/dosbox/default.nix b/pkgs/misc/emulators/dosbox/default.nix index fb63554871a..e7250491608 100644 --- a/pkgs/misc/emulators/dosbox/default.nix +++ b/pkgs/misc/emulators/dosbox/default.nix @@ -1,11 +1,11 @@ { stdenv, lib, fetchurl, makeDesktopItem, SDL, SDL_net, SDL_sound, libGLU_combined, libpng, graphicsmagick }: stdenv.mkDerivation rec { - name = "dosbox-0.74-2"; + name = "dosbox-0.74-3"; src = fetchurl { url = "mirror://sourceforge/dosbox/${name}.tar.gz"; - sha256 = "1ksp1b5szi0vy4x55rm3j1y9wq5mlslpy8llpg87rpdyjlsk0xvh"; + sha256 = "02i648i50dwicv1vaql15rccv4g8h5blf5g6inv67lrfxpbkvlf0"; }; hardeningDisable = [ "format" ]; From 90844e1bfab167c74400bdc5da3443d615fc7397 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 14 Jul 2019 07:40:14 -0400 Subject: [PATCH 0182/1611] gnome3.gnome-terminal: add hicolor-icon-theme To remove its icon cache. --- pkgs/desktops/gnome-3/core/gnome-terminal/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix index 77a630261fb..c9f5229f870 100644 --- a/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-terminal/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, libxml2, gnome3, dconf, nautilus , gtk3, gsettings-desktop-schemas, vte, intltool, which, libuuid, vala -, desktop-file-utils, itstool, wrapGAppsHook }: +, desktop-file-utils, itstool, wrapGAppsHook, hicolor-icon-theme }: stdenv.mkDerivation rec { name = "gnome-terminal-${version}"; @@ -20,6 +20,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool itstool which libxml2 vala desktop-file-utils wrapGAppsHook + hicolor-icon-theme # for setup-hook ]; # Silly ./configure, it looks for dbus file from gnome-shell in the From e72819f81fa4e2aff5b7157a756d78544c06d34b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 14 Jul 2019 08:06:08 -0400 Subject: [PATCH 0183/1611] linux: 4.19.58 -> 4.19.59 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index b9d05c9fe6e..b244f48f24c 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.58"; + version = "4.19.59"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1waqk2ggnnaqa5pxhdbvxkkchvxxz9pbkqnr5pn5rj6h2v5644az"; + sha256 = "0nxkr196q0b1hs3a3zavpsjp0jgbqmcwdf0y0f3hbpirshjiid5q"; }; } // (args.argsOverride or {})) From e9c1a114e57ed9ce7c45d0e14398b1f978a217b6 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 14 Jul 2019 08:06:45 -0400 Subject: [PATCH 0184/1611] linux: 5.1.17 -> 5.1.18 --- pkgs/os-specific/linux/kernel/linux-5.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix index e0e64fdc5d4..958aca39048 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.1.17"; + version = "5.1.18"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0gf4jqmq6b66jrlygmvn2z8xif3n83yq85jldbm3r257crww6dar"; + sha256 = "0spkk3pqp5fhvchgjhcm53zl1qqwsvdy7p4filb1nz4xypfff4v0"; }; } // (args.argsOverride or {})) From a62fa2f17fbfe0395fb9b67cee0a8451ef46211a Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 14 Jul 2019 08:07:25 -0400 Subject: [PATCH 0185/1611] linux: 5.2 -> 5.2.1 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 094c5abf244..512fb351200 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2"; + version = "5.2.1"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1ry11b5sc20jh7flnp94m20627jzl3l09rzmfjsk3a71fbv6dbal"; + sha256 = "01k5v3kdwk65cfx6bw4cl32jbfvf976jbya7q4a8lab3km7fi09m"; }; } // (args.argsOverride or {})) From 120337053f4d28b34dab9a07efa1cd2d85c6e869 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 14 Jul 2019 08:32:02 -0400 Subject: [PATCH 0186/1611] gnome3.gnome-boxes: fix hardcoded emulator path To avoid this you must install the qemu binaries globally in some manner. Fixes #57931 --- pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix index 3b68bec7585..2a308a2da45 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-boxes/default.nix @@ -2,7 +2,7 @@ , glib, gobject-introspection, libxml2, gtk3, gtk-vnc, freerdp, libvirt, spice-gtk, python3 , spice-protocol, libsoup, libosinfo, systemd, tracker, tracker-miners, vala , libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg, desktop-file-utils -, mtools, cdrkit, libcdio, libusb, libarchive, acl, libgudev, qemu, libsecret +, mtools, cdrkit, libcdio, libusb, libarchive, acl, libgudev, libsecret , libcap_ng, numactl, xen, libapparmor, json-glib, webkitgtk, vte }: @@ -36,7 +36,7 @@ in stdenv.mkDerivation rec { ]; preFixup = '' - gappsWrapperArgs+=(--prefix PATH : "${stdenv.lib.makeBinPath [ mtools cdrkit libcdio qemu ]}") + gappsWrapperArgs+=(--prefix PATH : "${stdenv.lib.makeBinPath [ mtools cdrkit libcdio ]}") ''; mesonFlags = [ From 93bd6a764fa7ccfe5cbb2fce1bb0a58b1bb0869b Mon Sep 17 00:00:00 2001 From: Vasiliy Yorkin Date: Sun, 14 Jul 2019 15:42:04 +0300 Subject: [PATCH 0187/1611] maintainers: add vyorkin --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ef2ab823acc..9bad3109ad3 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5516,6 +5516,11 @@ github = "vskilet"; name = "Victor SENE"; }; + vyorkin = { + email = "vasiliy.yorkin@gmail.com"; + github = "vyorkin"; + name = "Vasiliy Yorkin"; + }; vyp = { email = "elisp.vim@gmail.com"; github = "vyp"; From 3f533508d810871913a495a4b35eabe9c6613991 Mon Sep 17 00:00:00 2001 From: Vasiliy Yorkin Date: Sun, 14 Jul 2019 15:42:13 +0300 Subject: [PATCH 0188/1611] tdlib: init at 1.4.0 --- pkgs/development/libraries/tdlib/default.nix | 24 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/tdlib/default.nix diff --git a/pkgs/development/libraries/tdlib/default.nix b/pkgs/development/libraries/tdlib/default.nix new file mode 100644 index 00000000000..716f3d313b4 --- /dev/null +++ b/pkgs/development/libraries/tdlib/default.nix @@ -0,0 +1,24 @@ +{ fetchFromGitHub, gperf, openssl, readline, zlib, cmake, stdenv }: + +stdenv.mkDerivation rec { + version = "1.4.0"; + pname = "tdlib"; + + src = fetchFromGitHub { + owner = "tdlib"; + repo = "td"; + rev = "v${version}"; + sha256 = "1ijyn14rjb87rqm39hg7md8ab33yiy8cgzw3p0m37scn58gabpp7"; + }; + + buildInputs = [ gperf openssl readline zlib ]; + nativeBuildInputs = [ cmake ]; + + meta = with stdenv.lib; { + description = "Cross-platform library for building Telegram clients"; + homepage = "https://core.telegram.org/tdlib/"; + license = [ licenses.boost ]; + platforms = platforms.linux; + maintainers = [ maintainers.vyorkin ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 834dbc534e0..0ba909007c1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13441,6 +13441,8 @@ in tdb = callPackage ../development/libraries/tdb {}; + tdlib = callPackage ../development/libraries/tdlib { }; + tecla = callPackage ../development/libraries/tecla { }; tectonic = callPackage ../tools/typesetting/tectonic { From 99cbed51bdb763c1b8bac986ff0264180049e532 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 14 Jul 2019 08:56:06 -0400 Subject: [PATCH 0189/1611] linux_testing_bcachefs: 5.1.2019.07.11 -> 5.1.2019.07.13 --- pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix b/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix index 111b5a4cc90..76a0ae2fcf1 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing-bcachefs.nix @@ -1,13 +1,13 @@ { stdenv, buildPackages, fetchgit, fetchpatch, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "5.1.2019.07.11"; + version = "5.1.2019.07.13"; modDirVersion = "5.1.0"; src = fetchgit { url = "https://evilpiepirate.org/git/bcachefs.git"; - rev = "44dc1f269553f33cce43628444970efb85a7e802"; - sha256 = "1i32s15r0a844dnp3h9ac37xm9h69g0jn75pqz2gbfrafpk3pac1"; + rev = "22776fe9902b0b06d6aa18cd4c7f0c5ad35a95fa"; + sha256 = "0ly4vxawj8skh55c541zll3b8g6igiaq7aj33fklfjh0icmgzs60"; }; extraConfig = "BCACHEFS_FS m"; From 226ddb7a4633ef1add1ad3c07d30335b000b6913 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 14 Jul 2019 08:56:26 -0400 Subject: [PATCH 0190/1611] bcachefs-tools: 2019-07-11 -> 2019-07-13 --- pkgs/tools/filesystems/bcachefs-tools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/filesystems/bcachefs-tools/default.nix b/pkgs/tools/filesystems/bcachefs-tools/default.nix index 5e75346e46b..e3ee04f6e2e 100644 --- a/pkgs/tools/filesystems/bcachefs-tools/default.nix +++ b/pkgs/tools/filesystems/bcachefs-tools/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { pname = "bcachefs-tools"; - version = "2019-07-11"; + version = "2019-07-13"; src = fetchgit { url = "https://evilpiepirate.org/git/bcachefs-tools.git"; - rev = "33c91e2ff4e228cb618ca22d642a34ec1c2cf0ef"; - sha256 = "0glldbnda61xwf7309mk48qmxqnipjmcgsibab77nr6v3bg13ip1"; + rev = "692eadd6ca9b45f12971126b326b6a89d7117e67"; + sha256 = "0d2kqy5p89qjrk38iqfk9zsh14c2x40d21kic9kcybdhalfq5q31"; }; enableParallelBuilding = true; From 1f16d0496ce86d4c903e2e4ed6cbe4e952a7196f Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Sun, 14 Jul 2019 13:45:42 +0000 Subject: [PATCH 0191/1611] dmenu: fix crash with XMODIFIERS Fixes #59625 --- pkgs/applications/misc/dmenu/default.nix | 2 +- pkgs/applications/misc/dmenu/xim.patch | 31 ++++++++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/misc/dmenu/xim.patch diff --git a/pkgs/applications/misc/dmenu/default.nix b/pkgs/applications/misc/dmenu/default.nix index e6b62817b90..26a297481d0 100644 --- a/pkgs/applications/misc/dmenu/default.nix +++ b/pkgs/applications/misc/dmenu/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, libX11, libXinerama, libXft, zlib, patches ? null }: +{ stdenv, fetchurl, libX11, libXinerama, libXft, zlib, patches ? [ ./xim.patch ] }: stdenv.mkDerivation rec { name = "dmenu-4.9"; diff --git a/pkgs/applications/misc/dmenu/xim.patch b/pkgs/applications/misc/dmenu/xim.patch new file mode 100644 index 00000000000..f77d48324da --- /dev/null +++ b/pkgs/applications/misc/dmenu/xim.patch @@ -0,0 +1,31 @@ +Revert https://git.suckless.org/dmenu/commit/377bd37e212b1ec4c03a481245603c6560d0be22.html + +Upstream has reverted it after v4.9 in https://git.suckless.org/dmenu/commit/db6093f6ec1bb884f7540f2512935b5254750b30.html +--- a/dmenu.c ++++ b/dmenu.c +@@ -552,7 +552,7 @@ run(void) + XEvent ev; + + while (!XNextEvent(dpy, &ev)) { +- if (XFilterEvent(&ev, None)) ++ if (XFilterEvent(&ev, win)) + continue; + switch(ev.type) { + case Expose: +@@ -664,7 +664,6 @@ setup(void) + XNClientWindow, win, XNFocusWindow, win, NULL); + + XMapRaised(dpy, win); +- XSetInputFocus(dpy, win, RevertToParent, CurrentTime); + if (embed) { + XSelectInput(dpy, parentwin, FocusChangeMask); + if (XQueryTree(dpy, parentwin, &dw, &w, &dws, &du) && dws) { +@@ -730,8 +729,6 @@ main(int argc, char *argv[]) + + if (!setlocale(LC_CTYPE, "") || !XSupportsLocale()) + fputs("warning: no locale support\n", stderr); +- if (!XSetLocaleModifiers("")) +- fputs("warning: no locale modifiers support\n", stderr); + if (!(dpy = XOpenDisplay(NULL))) + die("cannot open display"); + screen = DefaultScreen(dpy); From d737cf3cbf19234e95e7ffce580d9f16f18a26d1 Mon Sep 17 00:00:00 2001 From: B YI Date: Thu, 21 Mar 2019 09:43:30 +0000 Subject: [PATCH 0192/1611] cassandra 3.11.3 -> 3.11.4 also add test to all-test.nix --- pkgs/servers/nosql/cassandra/3.11.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nosql/cassandra/3.11.nix b/pkgs/servers/nosql/cassandra/3.11.nix index 5ca268166e0..56a3c5705b5 100644 --- a/pkgs/servers/nosql/cassandra/3.11.nix +++ b/pkgs/servers/nosql/cassandra/3.11.nix @@ -1,6 +1,6 @@ { callPackage, ... } @ args: callPackage ./generic.nix (args // { - version = "3.11.3"; - sha256 = "1fp2sm8v7dpp7iym39c7dh1fmi25x462amgzizl93c21rdq0cbnq"; + version = "3.11.4"; + sha256 = "11wr0vcps8w8g2sd8qwp1yp8y873c4q32azc041xpi7zqciqwnax"; }) From 3bc04b576ac75058c6def3003e9ef376aec425bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Zimmermann?= Date: Sun, 14 Jul 2019 14:24:52 +0200 Subject: [PATCH 0193/1611] coq: 8.10+beta1 -> 8.10+beta2 --- pkgs/applications/science/logic/coq/default.nix | 2 +- pkgs/top-level/coq-packages.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/coq/default.nix b/pkgs/applications/science/logic/coq/default.nix index 2373ae43e76..10fe722d7e9 100644 --- a/pkgs/applications/science/logic/coq/default.nix +++ b/pkgs/applications/science/logic/coq/default.nix @@ -28,7 +28,7 @@ let "8.8.2" = "1lip3xja924dm6qblisk1bk0x8ai24s5xxqxphbdxj6djglj68fd"; "8.9.0" = "1dkgdjc4n1m15m1p724hhi5cyxpqbjw6rxc5na6fl3v4qjjfnizh"; "8.9.1" = "1xrq6mkhpq994bncmnijf8jwmwn961kkpl4mwwlv7j3dgnysrcv2"; - "8.10+beta1" = "19wf39i0ap2vakglgdlqxpjd3l1h5w7dp460w8y7nc1y06b2153h"; + "8.10+beta2" = "0jk7pwydhd17ab7ii69zvi4sgrr630q2lsxhckaj3sz55cpjlhal"; }."${version}"; coq-version = stdenv.lib.versions.majorMinor version; versionAtLeast = stdenv.lib.versionAtLeast coq-version; diff --git a/pkgs/top-level/coq-packages.nix b/pkgs/top-level/coq-packages.nix index 8a987c6cf14..1cbdb6a9f21 100644 --- a/pkgs/top-level/coq-packages.nix +++ b/pkgs/top-level/coq-packages.nix @@ -126,7 +126,7 @@ in rec { version = "8.9.1"; }; coq_8_10 = callPackage ../applications/science/logic/coq { - version = "8.10+beta1"; + version = "8.10+beta2"; }; coqPackages_8_5 = mkCoqPackages coq_8_5; From 9d0cdc0b289598cda0202104acc76f43694a2f77 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sun, 14 Jul 2019 11:25:39 -0500 Subject: [PATCH 0194/1611] liburing: 1.0.0pre137_91dde5c9 -> 1.0.0pre150_93f3e8d5 Signed-off-by: Austin Seipp --- pkgs/development/libraries/liburing/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/liburing/default.nix b/pkgs/development/libraries/liburing/default.nix index cce10a761d3..95644e2682e 100644 --- a/pkgs/development/libraries/liburing/default.nix +++ b/pkgs/development/libraries/liburing/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "liburing-${version}"; - version = "1.0.0pre137_${builtins.substring 0 7 src.rev}"; + version = "1.0.0pre150_${builtins.substring 0 7 src.rev}"; src = fetchgit { url = "http://git.kernel.dk/liburing"; - rev = "91dde5c956b1af491bc6c16ee230daa4b4b66706"; - sha256 = "0rk1ikrn3s6sp3gx7kc4y6msx7yncr3845m67vhk8lxvhd90sgza"; + rev = "93f3e8d511e53133a4367afe04b5f256073082a0"; + sha256 = "14ndx3z0q6gynkmlwiah6775ss0p1xmjgn428gqgbsganiyhkwgp"; }; separateDebugInfo = true; From cdf1a522cacfb209e340af9d51c2ac4dd84e7124 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Thu, 25 Apr 2019 22:39:07 -0400 Subject: [PATCH 0195/1611] haskell/lib: Introduce markUnbroken helper As discussed in #59409, this is quite useful now since we mark things as broken so liberally. --- pkgs/development/haskell-modules/lib.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/lib.nix b/pkgs/development/haskell-modules/lib.nix index 35f56a12560..aebab7b6f04 100644 --- a/pkgs/development/haskell-modules/lib.nix +++ b/pkgs/development/haskell-modules/lib.nix @@ -163,6 +163,7 @@ rec { markBroken = drv: overrideCabal drv (drv: { broken = true; hydraPlatforms = []; }); unmarkBroken = drv: overrideCabal drv (drv: { broken = false; }); markBrokenVersion = version: drv: assert drv.version == version; markBroken drv; + markUnbroken = drv: overrideCabal drv (drv: { broken = false; }); enableLibraryProfiling = drv: overrideCabal drv (drv: { enableLibraryProfiling = true; }); disableLibraryProfiling = drv: overrideCabal drv (drv: { enableLibraryProfiling = false; }); From a84f21944faaea08e576ac18b683b01dd588251b Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 03:38:05 -0700 Subject: [PATCH 0196/1611] gdal: 2.4.0 -> 3.0.1 --- .../libraries/gdal/001.3_0_1.darwin.patch | 29 ++++++++++++ pkgs/development/libraries/gdal/default.nix | 46 +++++++------------ pkgs/development/libraries/gdal/gdal-1_11.nix | 9 +++- 3 files changed, 52 insertions(+), 32 deletions(-) create mode 100644 pkgs/development/libraries/gdal/001.3_0_1.darwin.patch diff --git a/pkgs/development/libraries/gdal/001.3_0_1.darwin.patch b/pkgs/development/libraries/gdal/001.3_0_1.darwin.patch new file mode 100644 index 00000000000..3d34f689120 --- /dev/null +++ b/pkgs/development/libraries/gdal/001.3_0_1.darwin.patch @@ -0,0 +1,29 @@ +diff a/swig/python/setup.py b/swig/python/setup.py +--- a/swig/python/setup.py ++++ b/swig/python/setup.py +@@ -268,17 +268,17 @@ class gdal_ext(build_ext): + if ext.name != 'osgeo._gdalconst': + ext.extra_compile_args += [cxx11_flag] + +- # Adding arch flags here if OS X and compiler is clang +- if sys.platform == 'darwin' and [int(x) for x in os.uname()[2].split('.')] >= [11, 0, 0]: +- # since MacOS X 10.9, clang no longer accepts -mno-fused-madd +- # extra_compile_args.append('-Qunused-arguments') +- clang_flag = '-Wno-error=unused-command-line-argument-hard-error-in-future' +- if has_flag(self.compiler, clang_flag): +- ext.extra_compile_args += [clang_flag] +- else: +- clang_flag = '-Wno-error=unused-command-line-argument' +- if has_flag(self.compiler, clang_flag): +- ext.extra_compile_args += [clang_flag] ++ # Adding arch flags here if OS X and compiler is clang ++ if sys.platform == 'darwin' and [int(x) for x in os.uname()[2].split('.')] >= [11, 0, 0]: ++ # since MacOS X 10.9, clang no longer accepts -mno-fused-madd ++ # extra_compile_args.append('-Qunused-arguments') ++ clang_flag = '-Wno-error=unused-command-line-argument-hard-error-in-future' ++ if has_flag(self.compiler, clang_flag): ++ ext.extra_compile_args += [clang_flag] ++ else: ++ clang_flag = '-Wno-error=unused-command-line-argument' ++ if has_flag(self.compiler, clang_flag): ++ ext.extra_compile_args += [clang_flag] diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix index e7ffdde6cb1..0db16e2efe3 100644 --- a/pkgs/development/libraries/gdal/default.nix +++ b/pkgs/development/libraries/gdal/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchurl, fetchpatch, unzip, libjpeg, libtiff, zlib +{ stdenv, fetchFromGitHub, fetchpatch, unzip, libjpeg, libtiff, zlib , postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl , libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat -, libiconv, libxml2 +, libiconv, libxml2, autoreconfHook , netcdfSupport ? true, netcdf, hdf5, curl }: @@ -9,15 +9,23 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "gdal-${version}"; - version = "2.4.0"; + version = "3.0.1"; - src = fetchurl { - url = "https://download.osgeo.org/gdal/${version}/${name}.tar.xz"; - sha256 = "09qgy36z0jc9w05373m4n0vm4j54almdzql6z9p9zr9pdp61syf3"; + src = fetchFromGitHub { + owner = "OSGeo"; + repo = "gdal"; + rev = "v${version}"; + sha256 = "04rraqhygv8b8fy87qvdhkgx87whby9n98p3gxqr7kdrfymwnh8l"; }; + sourceRoot = "source/gdal"; + + patches = [ ./001.3_0_1.darwin.patch ]; + + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite - libspatialite poppler hdf4 qhull giflib expat libxml2 ] + libspatialite libgeotiff poppler hdf4 qhull giflib expat libxml2 ] ++ (with pythonPackages; [ python numpy wrapPython ]) ++ stdenv.lib.optional stdenv.isDarwin libiconv ++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]; @@ -35,7 +43,7 @@ stdenv.mkDerivation rec { "--with-sqlite3=${sqlite.dev}" "--with-spatialite=${libspatialite}" "--with-python" # optional - "--with-proj=${proj}" # optional + "--with-proj=${proj.dev}" # optional "--with-geos=${geos}/bin/geos-config"# optional "--with-hdf4=${hdf4.dev}" # optional "--with-xml2=${libxml2.dev}/bin/xml2-config" # optional @@ -46,31 +54,9 @@ stdenv.mkDerivation rec { CXXFLAGS = "-fpermissive"; - postPatch = '' - sed -i '/ifdef bool/i\ - #ifdef swap\ - #undef swap\ - #endif' ogr/ogrsf_frmts/mysql/ogr_mysql.h - - # poppler 0.73.0 support - patch -lp2 <${ - fetchpatch { - url = "https://github.com/OSGeo/gdal/commit/29f4dfbcac2de718043f862166cd639ab578b552.diff"; - sha256 = "1h2rsjjrgwqfgqzppmzv5jgjs1dbbg8pvfmay0j9y0618qp3r734"; - } - } || true - patch -p2 <${ - fetchpatch { - url = "https://github.com/OSGeo/gdal/commit/19967e682738977e11e1d0336e0178882c39cad2.diff"; - sha256 = "12yqd77226i6xvzgqmxiac5ghdinixh8k2crg1r2gnhc0xlc3arj"; - } - } - ''; - # - Unset CC and CXX as they confuse libtool. # - teach gdal that libdf is the legacy name for libhdf preConfigure = '' - unset CC CXX substituteInPlace configure \ --replace "-lmfhdf -ldf" "-lmfhdf -lhdf" ''; diff --git a/pkgs/development/libraries/gdal/gdal-1_11.nix b/pkgs/development/libraries/gdal/gdal-1_11.nix index 32101221e64..40308a95791 100644 --- a/pkgs/development/libraries/gdal/gdal-1_11.nix +++ b/pkgs/development/libraries/gdal/gdal-1_11.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0hphxzvy23v3vqxx1y22hhhg4cypihrb8555y12nb4mrhzlw7zfl"; }; - buildInputs = [ unzip libjpeg libtiff libpng python pythonPackages.numpy proj openssl ]; + buildInputs = [ unzip libjpeg libtiff libgeotiff libpng python pythonPackages.numpy proj openssl ]; patches = [ # This ensures that the python package is installed into gdal's prefix, @@ -33,12 +33,17 @@ stdenv.mkDerivation rec { "--with-pg=${postgresql}/bin/pg_config" "--with-mysql=${mysql57.connector-c}/bin/mysql_config" - "--with-geotiff=${libgeotiff}" + "--with-geotiff=${libgeotiff.dev}" "--with-python" # optional "--with-static-proj4=${proj}" # optional "--with-geos=${geos}/bin/geos-config"# optional ]; + # Allow use of old proj_api.h + NIX_CFLAGS_COMPILE = [ + "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" + ]; + # Prevent this: # # Checking .pth file support in /nix/store/xkrmb8xnvqxzjwsdmasqmsdh1a5y2y99-gdal-1.11.2/lib/python2.7/site-packages/ From deaa36da0c455be604ebc9e49e7088bfa9bbe397 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 03:52:04 -0700 Subject: [PATCH 0197/1611] osm2xmap: fix build --- pkgs/applications/misc/osm2xmap/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/misc/osm2xmap/default.nix b/pkgs/applications/misc/osm2xmap/default.nix index 5787adef2a3..9d0fb3fdeb7 100644 --- a/pkgs/applications/misc/osm2xmap/default.nix +++ b/pkgs/applications/misc/osm2xmap/default.nix @@ -20,6 +20,8 @@ stdenv.mkDerivation rec { "INSTALL_SHAREDIR=$(out)/share/" ]; + NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H" ]; + installFlags = [ "DESTDIR=$(out)" ]; buildInputs = [ libroxml proj libyamlcpp boost ]; From 4d91c30a4c0435a5dfd39ca9669f56667bc693ca Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 04:06:01 -0700 Subject: [PATCH 0198/1611] osm2pgsql: 0.92.1-unstable -> 0.96.0 --- pkgs/tools/misc/osm2pgsql/default.nix | 34 +++++++++++++-------------- 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/pkgs/tools/misc/osm2pgsql/default.nix b/pkgs/tools/misc/osm2pgsql/default.nix index 67e0c2b21d8..f14fb526997 100644 --- a/pkgs/tools/misc/osm2pgsql/default.nix +++ b/pkgs/tools/misc/osm2pgsql/default.nix @@ -1,28 +1,26 @@ -{ stdenv, fetchgit, cmake, expat, proj, bzip2, zlib, boost, postgresql, lua}: +{ stdenv, fetchFromGitHub, cmake, expat, proj, bzip2, zlib, boost, postgresql, lua}: -let - version = "0.92.1-unstable"; -in stdenv.mkDerivation rec { name = "osm2pgsql-${version}"; + version = "0.96.0"; - src = fetchgit { - url = "https://github.com/openstreetmap/osm2pgsql.git"; - rev = "2b72b2121e91b72b0db6911d65c5165ca46d9d66"; - # Still waiting on release after: - # https://github.com/openstreetmap/osm2pgsql/pull/684 - # https://github.com/openstreetmap/osm2pgsql/issues/634 - #rev = "refs/tags/${version}"; - sha256 = "1v6s863zsv9p2mni35gfamawj0xr2cv2p8a31z7sijf8m6fn0vpy"; + src = fetchFromGitHub { + owner = "openstreetmap"; + repo = "osm2pgsql"; + rev = version; + sha256 = "032cydh8ynaqfhdzmkvgbmqyjql668y6qln1l59l2s3ni9963bbl"; }; - nativeBuildInputs = [cmake]; - buildInputs = [expat proj bzip2 zlib boost postgresql lua]; - meta = { + nativeBuildInputs = [ cmake ]; + + buildInputs = [ expat proj bzip2 zlib boost postgresql lua ]; + + NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H" ]; + + meta = with stdenv.lib; { description = "OpenStreetMap data to PostgreSQL converter"; - version = "0.92.1-unstable"; homepage = https://github.com/openstreetmap/osm2pgsql; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } From 3fbca39afab51b7a187fa08c95b9cc75eb0081a4 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 20:47:22 -0700 Subject: [PATCH 0199/1611] gdal_2: init at 2.4.0 --- pkgs/development/libraries/gdal/2.4.0.nix | 95 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 97 insertions(+) create mode 100644 pkgs/development/libraries/gdal/2.4.0.nix diff --git a/pkgs/development/libraries/gdal/2.4.0.nix b/pkgs/development/libraries/gdal/2.4.0.nix new file mode 100644 index 00000000000..14113d8b87e --- /dev/null +++ b/pkgs/development/libraries/gdal/2.4.0.nix @@ -0,0 +1,95 @@ +{ stdenv, fetchurl, fetchpatch, unzip, libjpeg, libtiff, zlib +, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl +, libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat +, libiconv, libxml2 +, netcdfSupport ? true, netcdf, hdf5, curl +}: + +with stdenv.lib; + +stdenv.mkDerivation rec { + name = "gdal-${version}"; + version = "2.4.0"; + + src = fetchurl { + url = "https://download.osgeo.org/gdal/${version}/${name}.tar.xz"; + sha256 = "09qgy36z0jc9w05373m4n0vm4j54almdzql6z9p9zr9pdp61syf3"; + }; + + buildInputs = [ unzip libjpeg libtiff libgeotiff libpng proj openssl sqlite + libspatialite poppler hdf4 qhull giflib expat libxml2 proj ] + ++ (with pythonPackages; [ python numpy wrapPython ]) + ++ stdenv.lib.optional stdenv.isDarwin libiconv + ++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]; + + configureFlags = [ + "--with-expat=${expat.dev}" + "--with-jpeg=${libjpeg.dev}" + "--with-libtiff=${libtiff.dev}" # optional (without largetiff support) + "--with-png=${libpng.dev}" # optional + "--with-poppler=${poppler.dev}" # optional + "--with-libz=${zlib.dev}" # optional + "--with-pg=${postgresql}/bin/pg_config" + "--with-mysql=${mysql.connector-c or mysql}/bin/mysql_config" + "--with-geotiff=${libgeotiff.dev}" + "--with-sqlite3=${sqlite.dev}" + "--with-spatialite=${libspatialite}" + "--with-python" # optional + "--with-proj=${proj.dev}" # optional + "--with-geos=${geos}/bin/geos-config"# optional + "--with-hdf4=${hdf4.dev}" # optional + "--with-xml2=${libxml2.dev}/bin/xml2-config" # optional + (if netcdfSupport then "--with-netcdf=${netcdf}" else "") + ]; + + hardeningDisable = [ "format" ]; + + CXXFLAGS = "-fpermissive"; + + postPatch = '' + sed -i '/ifdef bool/i\ + #ifdef swap\ + #undef swap\ + #endif' ogr/ogrsf_frmts/mysql/ogr_mysql.h + # poppler 0.73.0 support + patch -lp2 <${ + fetchpatch { + url = "https://github.com/OSGeo/gdal/commit/29f4dfbcac2de718043f862166cd639ab578b552.diff"; + sha256 = "1h2rsjjrgwqfgqzppmzv5jgjs1dbbg8pvfmay0j9y0618qp3r734"; + } + } || true + patch -p2 <${ + fetchpatch { + url = "https://github.com/OSGeo/gdal/commit/19967e682738977e11e1d0336e0178882c39cad2.diff"; + sha256 = "12yqd77226i6xvzgqmxiac5ghdinixh8k2crg1r2gnhc0xlc3arj"; + } + } + ''; + + # - Unset CC and CXX as they confuse libtool. + # - teach gdal that libdf is the legacy name for libhdf + preConfigure = '' + unset CC CXX + substituteInPlace configure \ + --replace "-lmfhdf -ldf" "-lmfhdf -lhdf" + ''; + + preBuild = '' + substituteInPlace swig/python/GNUmakefile \ + --replace "ifeq (\$(STD_UNIX_LAYOUT),\"TRUE\")" "ifeq (1,1)" + ''; + + postInstall = '' + wrapPythonPrograms + ''; + + enableParallelBuilding = true; + + meta = { + description = "Translator library for raster geospatial data formats"; + homepage = https://www.gdal.org/; + license = stdenv.lib.licenses.mit; + maintainers = [ stdenv.lib.maintainers.marcweber ]; + platforms = with stdenv.lib.platforms; linux ++ darwin; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 45b72d011d2..e75dd15fddd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10553,6 +10553,8 @@ in gdal_1_11 = callPackage ../development/libraries/gdal/gdal-1_11.nix { }; + gdal_2 = callPackage ../development/libraries/gdal/2.4.0.nix { }; + gdcm = callPackage ../development/libraries/gdcm { }; ggz_base_libs = callPackage ../development/libraries/ggz_base_libs {}; From f34face72159d37bb3e65cca6caf84e93cef469f Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 04:58:46 -0700 Subject: [PATCH 0200/1611] merkaartor: fix build --- pkgs/applications/misc/merkaartor/default.nix | 2 ++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/merkaartor/default.nix b/pkgs/applications/misc/merkaartor/default.nix index 0833464f2c2..dec55e9c1e5 100644 --- a/pkgs/applications/misc/merkaartor/default.nix +++ b/pkgs/applications/misc/merkaartor/default.nix @@ -18,6 +18,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H" ]; + postInstall = '' wrapProgram $out/bin/merkaartor \ --set QT_QPA_PLATFORM_PLUGIN_PATH ${qtbase.bin}/lib/qt-*/plugins/platforms diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e75dd15fddd..06c76e7a814 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19056,7 +19056,9 @@ in mercurialFull = appendToName "full" (pkgs.mercurial.override { guiSupport = true; }); - merkaartor = libsForQt59.callPackage ../applications/misc/merkaartor { }; + merkaartor = libsForQt59.callPackage ../applications/misc/merkaartor { + gdal = gdal_2; # https://github.com/openstreetmap/merkaartor/issues/179 + }; meshlab = libsForQt5.callPackage ../applications/graphics/meshlab { }; From d9504f9aabccb6827c1f6bd9f7c697caf14c6323 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 05:00:14 -0700 Subject: [PATCH 0201/1611] openorienteering-mapper: fix build --- pkgs/applications/gis/openorienteering-mapper/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/gis/openorienteering-mapper/default.nix b/pkgs/applications/gis/openorienteering-mapper/default.nix index a5a0492ab87..b4d3e9f93a4 100644 --- a/pkgs/applications/gis/openorienteering-mapper/default.nix +++ b/pkgs/applications/gis/openorienteering-mapper/default.nix @@ -20,9 +20,6 @@ stdenv.mkDerivation rec { cmakeFlags = [ - # Required by the build to be specified - "-DPROJ4_ROOT=${proj}" - # Building the manual and bundling licenses fails "-DLICENSING_PROVIDER:BOOL=OFF" "-DMapper_MANUAL_QTHELP:BOOL=OFF" @@ -43,6 +40,8 @@ stdenv.mkDerivation rec { "-DMapper_PACKAGE_GDAL=0" ]); + # Needs to be available when proj_api.h gets evaluted by CPP + NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H" ]; postInstall = stdenv.lib.optionalString stdenv.isDarwin '' From 80dd36749a9ca01835919cb40c4765e55941e902 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 13:11:30 -0700 Subject: [PATCH 0202/1611] proj-datumgrid: init at world-1.0 --- .../libraries/proj-datumgrid/default.nix | 32 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/libraries/proj-datumgrid/default.nix diff --git a/pkgs/development/libraries/proj-datumgrid/default.nix b/pkgs/development/libraries/proj-datumgrid/default.nix new file mode 100644 index 00000000000..f1c13e93aec --- /dev/null +++ b/pkgs/development/libraries/proj-datumgrid/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + name = "proj-datumgrid"; + version = "world-1.0"; + + src = fetchFromGitHub { + owner = "OSGeo"; + repo = "proj-datumgrid"; + rev = version; + sha256 = "132wp77fszx33wann0fjkmi1isxvsb0v9iw0gd9sxapa9h6hf3am"; + }; + + sourceRoot = "source/scripts"; + + buildPhase = '' + $CC nad2bin.c -o nad2bin + ''; + + installPhase = '' + mkdir -p $out/bin + cp nad2bin $out/bin/ + ''; + + meta = with stdenv.lib; { + description = "Repository for proj datum grids"; + homepage = https://proj4.org; + license = licenses.mit; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 06c76e7a814..6768f98f7f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12707,6 +12707,8 @@ in proj = callPackage ../development/libraries/proj { }; + proj-datumgrid = callPackage ../development/libraries/proj-datumgrid { }; + proselint = callPackage ../tools/text/proselint { inherit (python3Packages) buildPythonApplication click future six; From d43f0b5d6dd9f21343aa7953748b8ff27fde18b2 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 11 Jul 2019 13:12:09 -0700 Subject: [PATCH 0203/1611] grass: 7.2.2 -> 7.6.1 --- pkgs/applications/gis/grass/default.nix | 34 ++++++++++++++++--------- 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix index b7cf84ff959..360d94d1b82 100644 --- a/pkgs/applications/gis/grass/default.nix +++ b/pkgs/applications/gis/grass/default.nix @@ -1,19 +1,23 @@ -{ stdenv, fetchurl, flex, bison, pkgconfig, zlib, libtiff, libpng, fftw +{ stdenv, fetchFromGitHub, flex, bison, pkgconfig, zlib, libtiff, libpng, fftw , cairo, readline, ffmpeg, makeWrapper, wxGTK30, netcdf, blas -, proj, gdal, geos, sqlite, postgresql, mysql, python2Packages, libLAS +, proj, gdal, geos, sqlite, postgresql, mysql, python2Packages, libLAS, proj-datumgrid }: -stdenv.mkDerivation { - name = "grass-7.2.2"; - src = fetchurl { - url = https://grass.osgeo.org/grass72/source/grass-7.2.2.tar.gz; - sha256 = "0yzljbrxlqp4wbw08n1dvmm4vmwkg8glf1ff4xyh589r5ryb7gxv"; +stdenv.mkDerivation rec { + name = "grass"; + version = "7.6.1"; + + src = with stdenv.lib; fetchFromGitHub { + owner = "OSGeo"; + repo = "grass"; + rev = "${name}_${replaceStrings ["."] ["_"] version}"; + sha256 = "1amjk9rz7vw5ha7nyl5j2bfwj5if9w62nlwx5qbp1x7spldimlll"; }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo + buildInputs = [ flex bison zlib proj gdal libtiff libpng fftw sqlite cairo proj readline ffmpeg makeWrapper wxGTK30 netcdf geos postgresql mysql.connector-c blas - libLAS ] + libLAS proj-datumgrid ] ++ (with python2Packages; [ python dateutil wxPython30 numpy ]); # On Darwin the installer tries to symlink the help files into a system @@ -22,6 +26,8 @@ stdenv.mkDerivation { configureFlags = [ "--with-proj-share=${proj}/share/proj" + "--with-proj-includes=${proj.dev}/include" + "--with-proj-lib=${proj}/lib" "--without-opengl" "--with-readline" "--with-wxwidgets" @@ -49,9 +55,11 @@ stdenv.mkDerivation { scripts/d.what.vect/d.what.vect.py \ scripts/g.extension/g.extension.py \ scripts/g.extension.all/g.extension.all.py \ + scripts/r.drain/r.drain.py \ scripts/r.pack/r.pack.py \ scripts/r.tileset/r.tileset.py \ scripts/r.unpack/r.unpack.py \ + scripts/v.clip/v.clip.py \ scripts/v.rast.stats/v.rast.stats.py \ scripts/v.to.lines/v.to.lines.py \ scripts/v.what.strds/v.what.strds.py \ @@ -72,13 +80,15 @@ stdenv.mkDerivation { done ''; + NIX_CFLAGS_COMPILE = [ "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1" ]; + postInstall = '' - wrapProgram $out/bin/grass72 \ + wrapProgram $out/bin/grass76 \ --set PYTHONPATH $PYTHONPATH \ --set GRASS_PYTHON ${python2Packages.python}/bin/${python2Packages.python.executable} \ --suffix LD_LIBRARY_PATH ':' '${gdal}/lib' - ln -s $out/grass-*/lib $out/lib - ln -s $out/grass-*/include $out/include + ln -s $out/grass*/lib $out/lib + ln -s $out/grass*/include $out/include ''; enableParallelBuilding = true; From c93c65a21d25c8a7ecac6eb2c154261c2dd9465f Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 05:01:57 -0700 Subject: [PATCH 0204/1611] saga: 7.2.0 -> 7.3.0 --- pkgs/applications/gis/saga/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/gis/saga/default.nix b/pkgs/applications/gis/saga/default.nix index 34bb8c9f55a..7440e2633a3 100644 --- a/pkgs/applications/gis/saga/default.nix +++ b/pkgs/applications/gis/saga/default.nix @@ -3,7 +3,9 @@ unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }: stdenv.mkDerivation rec { - name = "saga-7.2.0"; + pname = "saga"; + version = "7.3.0"; + name = "${pname}-${version}"; # See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs # for why the have additional buildInputs on darwin @@ -17,8 +19,8 @@ stdenv.mkDerivation rec { CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing"; src = fetchurl { - url = "mirror://sourceforge/project/saga-gis/SAGA%20-%207/SAGA%20-%207.2.0/saga-7.2.0.tar.gz"; - sha256 = "10gjc5mc5kwg2c2la22hgwx6s5q60z9xxffjpjw0zrlhksijl5an"; + url = "https://sourceforge.net/projects/saga-gis/files/SAGA%20-%207/SAGA%20-%207.3.0/saga-7.3.0.tar.gz"; + sha256 = "1g7v6vx7b8mfhbbg03pdk4kyks20maqbcdbasnxazhs8pl2zih7k"; }; meta = with stdenv.lib; { From 70671e71d1e9fedcd8927172d585295a7c83a1be Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 18:56:44 -0700 Subject: [PATCH 0205/1611] qgis: 3.4.8 -> 3.8.0 --- pkgs/applications/gis/qgis/unwrapped.nix | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/gis/qgis/unwrapped.nix b/pkgs/applications/gis/qgis/unwrapped.nix index 6e7fb375eab..a57b180d5b2 100644 --- a/pkgs/applications/gis/qgis/unwrapped.nix +++ b/pkgs/applications/gis/qgis/unwrapped.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, fetchurl, cmake, ninja, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl +{ stdenv, lib, fetchFromGitHub, cmake, ninja, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl , qwt, fcgi, python3Packages, libspatialindex, libspatialite, postgresql -, txt2tags, openssl, libzip, hdf5, netcdf +, txt2tags, openssl, libzip, hdf5, netcdf, exiv2 , qtbase, qtwebkit, qtsensors, qca-qt5, qtkeychain, qscintilla, qtserialport, qtxmlpatterns , withGrass ? true, grass }: @@ -10,12 +10,15 @@ let [ qscintilla-qt5 gdal jinja2 numpy psycopg2 chardet dateutil pyyaml pytz requests urllib3 pygments pyqt5 sip owslib six ]; in stdenv.mkDerivation rec { - version = "3.4.8"; - name = "qgis-unwrapped-${version}"; + version = "3.8.0"; + pname = "qgis"; + name = "${pname}-unwrapped-${version}"; - src = fetchurl { - url = "http://qgis.org/downloads/qgis-${version}.tar.bz2"; - sha256 = "13dy9y7ipv25x3k31njhjljdav36xay6s82g6ywaqf1xxh3s567w"; + src = fetchFromGitHub { + owner = "qgis"; + repo = "QGIS"; + rev = "final-${lib.replaceStrings ["."] ["_"] version}"; + sha256 = "11jqj6lavpw9piv0rm8vvbgd99zhcxl6yfjg699wlrjlyf71xac5"; }; passthru = { @@ -23,7 +26,7 @@ in stdenv.mkDerivation rec { inherit python3Packages; }; - buildInputs = [ openssl proj geos xlibsWrapper sqlite gsl qwt + buildInputs = [ openssl proj geos xlibsWrapper sqlite gsl qwt exiv2 fcgi libspatialindex libspatialite postgresql txt2tags libzip hdf5 netcdf qtbase qtwebkit qtsensors qca-qt5 qtkeychain qscintilla qtserialport qtxmlpatterns] ++ (stdenv.lib.optional withGrass grass) ++ pythonBuildInputs; @@ -36,7 +39,7 @@ in stdenv.mkDerivation rec { # build to use PYQT5_SIP_DIR consistently. postPatch = '' substituteInPlace cmake/FindPyQt5.py \ - --replace 'pyqtcfg.pyqt_sip_dir' '"${python3Packages.pyqt5}/share/sip/PyQt5"' + --replace 'sip_dir = cfg.default_sip_dir' 'sip_dir = "${python3Packages.pyqt5}/share/sip/PyQt5"' ''; cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" From ca0fe27302a53daf935e8d5fb2b4d034e5b3b0eb Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 21:00:48 -0700 Subject: [PATCH 0206/1611] pythonPackages.fiona: pin gdal to gdal_2 --- pkgs/development/python-modules/fiona/default.nix | 6 +++--- pkgs/top-level/python-packages.nix | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/fiona/default.nix b/pkgs/development/python-modules/fiona/default.nix index ebd100037b2..6dd74742741 100644 --- a/pkgs/development/python-modules/fiona/default.nix +++ b/pkgs/development/python-modules/fiona/default.nix @@ -1,7 +1,7 @@ { stdenv, buildPythonPackage, fetchPypi, isPy3k, pythonOlder , attrs, click, cligj, click-plugins, six, munch, enum34 , pytest, boto3, mock -, gdal +, gdal_2 # can't bump to 3 yet, https://github.com/Toblerity/Fiona/issues/745 }: buildPythonPackage rec { @@ -16,11 +16,11 @@ buildPythonPackage rec { CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11"; nativeBuildInputs = [ - gdal # for gdal-config + gdal_2 # for gdal-config ]; buildInputs = [ - gdal + gdal_2 ]; propagatedBuildInputs = [ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2150ed83c41..5e30355698a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2718,7 +2718,7 @@ in { filelock = callPackage ../development/python-modules/filelock {}; - fiona = callPackage ../development/python-modules/fiona { gdal = pkgs.gdal; }; + fiona = callPackage ../development/python-modules/fiona { gdal_2 = pkgs.gdal_2; }; fitbit = callPackage ../development/python-modules/fitbit { }; From c8ec54b969c948c2b3bbb63abaaa18a3a26c7e1e Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 21:48:28 -0700 Subject: [PATCH 0207/1611] saga_2_3_2: remove package No longer used by qgis --- pkgs/applications/gis/saga/lts.nix | 36 ------------------------------ pkgs/top-level/all-packages.nix | 4 ---- 2 files changed, 40 deletions(-) delete mode 100644 pkgs/applications/gis/saga/lts.nix diff --git a/pkgs/applications/gis/saga/lts.nix b/pkgs/applications/gis/saga/lts.nix deleted file mode 100644 index ca0034aa970..00000000000 --- a/pkgs/applications/gis/saga/lts.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ stdenv, fetchgit, gdal, wxGTK30, proj, libiodbc, lzma, jasper, - libharu, opencv, vigra, postgresql, autoreconfHook, Cocoa - , unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }: - -stdenv.mkDerivation rec { - name = "saga-2.3.2"; - - # See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs - # for why the have additional buildInputs on darwin - buildInputs = [ autoreconfHook gdal wxGTK30 proj libharu opencv vigra - postgresql libiodbc lzma jasper - unixODBC poppler hdf4.out hdf5 netcdf sqlite qhull giflib ] - ++ stdenv.lib.optional stdenv.isDarwin Cocoa ; - - enableParallelBuilding = true; - - CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing"; - - sourceRoot = "code-b6f474f/saga-gis"; - - patches = [ ./clang_patch.patch ./finite.patch]; - - src = fetchgit { - url = "https://git.code.sf.net/p/saga-gis/code.git"; - rev = "b6f474f8af4af7f0ff82548cc6f88c53547d91f5"; - sha256 = "0iakynai8mhcwj6wxvafkqhd7b417ss7hyhbcp9wf6092l6vc2zd"; - }; - - meta = with stdenv.lib; { - description = "System for Automated Geoscientific Analyses"; - homepage = http://www.saga-gis.org; - license = licenses.gpl2Plus; - maintainers = [ maintainers.mpickering ]; - platforms = with platforms; unix; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6768f98f7f7..258d56f36a0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21906,10 +21906,6 @@ in inherit (darwin.apple_sdk.frameworks) Cocoa; }; - saga_2_3_2 = callPackage ../applications/gis/saga/lts.nix { - inherit (darwin.apple_sdk.frameworks) Cocoa; - }; - samplv1 = callPackage ../applications/audio/samplv1 { }; sauerbraten = callPackage ../games/sauerbraten {}; From 141459887557649e43886ae81bd9b78b10842169 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 22:56:00 -0700 Subject: [PATCH 0208/1611] proj_5: init at 5.2 --- pkgs/development/libraries/proj/5.2.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/libraries/proj/5.2.nix diff --git a/pkgs/development/libraries/proj/5.2.nix b/pkgs/development/libraries/proj/5.2.nix new file mode 100644 index 00000000000..8fb4515e70d --- /dev/null +++ b/pkgs/development/libraries/proj/5.2.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation { + name = "proj-5.2.0"; + + src = fetchurl { + url = https://download.osgeo.org/proj/proj-5.2.0.tar.gz; + sha256 = "0q3ydh2j8qhwlxmnac72pg69rw2znbi5b6k5wama8qmwzycr94gg"; + }; + + doCheck = stdenv.is64bit; + + meta = with stdenv.lib; { + description = "Cartographic Projections Library"; + homepage = https://proj4.org; + license = licenses.mit; + platforms = platforms.linux ++ platforms.darwin; + maintainers = with maintainers; [ vbgl ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 258d56f36a0..e5c66b544f3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12707,6 +12707,8 @@ in proj = callPackage ../development/libraries/proj { }; + proj_5 = callPackage ../development/libraries/proj/5.2.nix { }; + proj-datumgrid = callPackage ../development/libraries/proj-datumgrid { }; proselint = callPackage ../tools/text/proselint { From ed8917f83161d2793cd7cd27f0dc5485b4c7a215 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 23:02:29 -0700 Subject: [PATCH 0209/1611] pythonPackages.cartopy: use proj_5 --- pkgs/development/python-modules/cartopy/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/cartopy/default.nix b/pkgs/development/python-modules/cartopy/default.nix index e54136a5027..117b6fed597 100644 --- a/pkgs/development/python-modules/cartopy/default.nix +++ b/pkgs/development/python-modules/cartopy/default.nix @@ -1,9 +1,10 @@ { buildPythonPackage, lib, fetchPypi , pytest, filelock, mock, pep8 , cython, isPy27 -, six, pyshp, shapely, geos, proj, numpy +, six, pyshp, shapely, geos, numpy , gdal, pillow, matplotlib, pyepsg, pykdtree, scipy, owslib, fiona , xvfb_run +, proj_5 # see https://github.com/SciTools/cartopy/pull/1252 for status on proj 6 support }: buildPythonPackage rec { @@ -27,17 +28,17 @@ buildPythonPackage rec { export HOME=$(mktemp -d) ${maybeXvfbRun} pytest --pyargs cartopy \ -m "not network and not natural_earth" \ - -k "not test_nightshade_image" + -k "not test_nightshade_image and not background_img" ''; nativeBuildInputs = [ cython geos # for geos-config - proj + proj_5 ]; buildInputs = [ - geos proj + geos proj_5 ]; propagatedBuildInputs = [ From ca6afcb9dae021d08a6a10ce050a2e0fb86a9153 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 23:30:57 -0700 Subject: [PATCH 0210/1611] pythonPackages.rasterio: fix to gdal_2 --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5e30355698a..44cb3c6104d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4230,7 +4230,9 @@ in { rabbitpy = callPackage ../development/python-modules/rabbitpy { }; - rasterio = callPackage ../development/python-modules/rasterio { }; + rasterio = callPackage ../development/python-modules/rasterio { + gdal = pkgs.gdal_2; # gdal 3.0 not supported yet + }; radicale_infcloud = callPackage ../development/python-modules/radicale_infcloud {}; From e6223c022b94fad4b85e88319515d6f58910b5d7 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 13 Jul 2019 23:44:14 -0700 Subject: [PATCH 0211/1611] openspace: mark as broken Fails to build with GL error --- .../science/astronomy/openspace/default.nix | 29 ++++++++++--------- 1 file changed, 15 insertions(+), 14 deletions(-) diff --git a/pkgs/applications/science/astronomy/openspace/default.nix b/pkgs/applications/science/astronomy/openspace/default.nix index ee3a71cf181..dc7c7c920a1 100644 --- a/pkgs/applications/science/astronomy/openspace/default.nix +++ b/pkgs/applications/science/astronomy/openspace/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "0.11.1"; name = "openspace-${version}"; - + src = fetchFromGitHub { owner = "OpenSpace"; repo = "OpenSpace"; @@ -13,37 +13,37 @@ stdenv.mkDerivation rec { sha256 = "0msqixf30r0d41xmfmzkdfw6w9jkx2ph5clq8xiwrg1jc3z9q7nv"; fetchSubmodules = true; }; - + buildInputs = [ makeWrapper cmake curl boost gdal glew soil libX11 libXi libXxf86vm libXcursor libXrandr libXinerama ]; - + glmPlatformH = fetchurl { url = "https://raw.githubusercontent.com/g-truc/glm/dd48b56e44d699a022c69155c8672caacafd9e8a/glm/simd/platform.h"; sha256 = "0y91hlbgn5va7ijg5mz823gqkq9hqxl00lwmdwnf8q2g086rplzw"; }; - + # See prePatch = '' cp ${glmPlatformH} ext/sgct/include/glm/simd/platform.h cp ${glmPlatformH} ext/ghoul/ext/glm/glm/simd/platform.h ''; - + patches = [ # See ./vrpn.patch - + ./constexpr.patch ./config.patch # WARNING: This patch disables some slow torrents in a very dirty way. - ./assets.patch + ./assets.patch ]; - + bundle = "$out/usr/share/openspace"; - + preConfigure = '' cmakeFlagsArray=( $cmakeFlagsArray @@ -51,28 +51,28 @@ stdenv.mkDerivation rec { "-DCMAKE_INSTALL_PREFIX=${bundle}" ) ''; - + preInstall = '' mkdir -p $out/bin mkdir -p ${bundle} ''; - + postInstall = '' cp ext/spice/libSpice.so ${bundle}/lib cp ext/ghoul/ext/lua/libLua.so ${bundle}/lib ''; - + postFixup = '' for bin in ${bundle}/bin/* do rpath=$(patchelf --print-rpath $bin) patchelf --set-rpath $rpath:${bundle}/lib $bin - + name=$(basename $bin) makeWrapper $bin $out/bin/$name --run "cd ${bundle}" done ''; - + meta = { description = "Open-source astrovisualization project"; longDescription = '' @@ -85,5 +85,6 @@ stdenv.mkDerivation rec { homepage = https://www.openspaceproject.com/; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; + broken = true; # fails to build }; } From ffc44dccdbca8315f4fd1a0def319c264a3c7c3f Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:32:37 -0400 Subject: [PATCH 0212/1611] pythonPackages.asciitree: init at 0.3.3 --- .../python-modules/asciitree/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/asciitree/default.nix diff --git a/pkgs/development/python-modules/asciitree/default.nix b/pkgs/development/python-modules/asciitree/default.nix new file mode 100644 index 00000000000..74b78d4a166 --- /dev/null +++ b/pkgs/development/python-modules/asciitree/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytest +}: + +buildPythonPackage rec { + pname = "asciitree"; + version = "0.3.3"; + + src = fetchFromGitHub { + owner = "mbr"; + repo = pname; + rev = version; + sha256 = "071wlpyi8pa262sj9xdy0zbj163z84dasxad363z3sfndqxw78h1"; + }; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Draws ASCII trees"; + homepage = https://github.com/mbr/asciitree; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ed5c7753f0..cf4f5dd0643 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -177,6 +177,8 @@ in { asciimatics = callPackage ../development/python-modules/asciimatics { }; + asciitree = callPackage ../development/python-modules/asciitree { }; + ase = callPackage ../development/python-modules/ase { }; asn1crypto = callPackage ../development/python-modules/asn1crypto { }; From bd21da208b4b689f3d536c6fbf9f1e2bfe3b5918 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:33:25 -0400 Subject: [PATCH 0213/1611] pythonPackages.diskcache: init at 4.0.0 --- .../python-modules/diskcache/default.nix | 26 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/python-modules/diskcache/default.nix diff --git a/pkgs/development/python-modules/diskcache/default.nix b/pkgs/development/python-modules/diskcache/default.nix new file mode 100644 index 00000000000..a62393b7baf --- /dev/null +++ b/pkgs/development/python-modules/diskcache/default.nix @@ -0,0 +1,26 @@ +{ lib +, buildPythonPackage +, fetchPypi +, tox +}: + +buildPythonPackage rec { + pname = "diskcache"; + version = "4.0.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "7c20b58ed07d03bbfba793f823d1fc27a61e590371fe6011fa1319a25c028cd1"; + }; + + checkInputs = [ + tox + ]; + + meta = with lib; { + description = "Disk and file backed persistent cache"; + homepage = https://www.grantjenks.com/docs/diskcache/; + license = licenses.asl20; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cf4f5dd0643..57a96ce52f4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5613,6 +5613,8 @@ in { node-semver = callPackage ../development/python-modules/node-semver { }; + diskcache = callPackage ../development/python-modules/diskcache { }; + distro = callPackage ../development/python-modules/distro { }; bz2file = callPackage ../development/python-modules/bz2file { }; From 3c4b88e4d1a316ccd56b81bf5f00ea41420ff749 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:33:44 -0400 Subject: [PATCH 0214/1611] pythonPackages.showit: init at 1.1.4 --- .../python-modules/showit/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/showit/default.nix diff --git a/pkgs/development/python-modules/showit/default.nix b/pkgs/development/python-modules/showit/default.nix new file mode 100644 index 00000000000..4060b1a4fc5 --- /dev/null +++ b/pkgs/development/python-modules/showit/default.nix @@ -0,0 +1,39 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, numpy +, matplotlib +, pytest +}: + +buildPythonPackage rec { + pname = "showit"; + version = "1.1.4"; + + src = fetchFromGitHub { + owner = "freeman-lab"; + repo = pname; + rev = "ef76425797c71fbe3795b4302c49ab5be6b0bacb"; # no tags in repo + sha256 = "0xd8isrlwwxlgji90lly1sq4l2a37rqvhsmyhv7bd3aj1dyjmdr6"; + }; + + propagatedBuildInputs = [ + numpy + matplotlib + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest test + ''; + + meta = with lib; { + description = "simple and sensible display of images"; + homepage = https://github.com/freeman-lab/showit; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 57a96ce52f4..34c2a94a45e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4463,6 +4463,8 @@ in { should-dsl = callPackage ../development/python-modules/should-dsl { }; + showit = callPackage ../development/python-modules/showit { }; + simplejson = callPackage ../development/python-modules/simplejson { }; simplekml = callPackage ../development/python-modules/simplekml { }; From ce2e58b978dcefbd0c026d217c355ea7dad763c6 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:34:03 -0400 Subject: [PATCH 0215/1611] pythonPackages.regional: init at 1.1.2 --- .../python-modules/regional/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/regional/default.nix diff --git a/pkgs/development/python-modules/regional/default.nix b/pkgs/development/python-modules/regional/default.nix new file mode 100644 index 00000000000..5f2aee1b42a --- /dev/null +++ b/pkgs/development/python-modules/regional/default.nix @@ -0,0 +1,41 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, numpy +, scipy +, matplotlib +, pytest +}: + +buildPythonPackage rec { + pname = "regional"; + version = "1.1.2"; + + src = fetchFromGitHub { + owner = "freeman-lab"; + repo = pname; + rev = "e3a29c58982e5cd3d5700131ac96e5e0b84fb981"; # no tags in repo + sha256 = "03qgm35q9sa5cy0kkw4bj60zfylw0isfzb96nlhdfrsigzs2zkxv"; + }; + + propagatedBuildInputs = [ + numpy + scipy + matplotlib + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Simple manipualtion and display of spatial regions"; + homepage = https://github.com/freeman-lab/regional; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 34c2a94a45e..60c3bf7fbab 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2461,6 +2461,8 @@ in { regex = callPackage ../development/python-modules/regex { }; + regional = callPackage ../development/python-modules/regional { }; + ratelimiter = callPackage ../development/python-modules/ratelimiter { }; pywatchman = callPackage ../development/python-modules/pywatchman { }; From 535979fa494aa1d433f023a3bfa455d87f2a9a43 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:34:25 -0400 Subject: [PATCH 0216/1611] pythonPackages.slicedimage: init at 3.2.0 --- .../python-modules/slicedimage/default.nix | 50 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 52 insertions(+) create mode 100644 pkgs/development/python-modules/slicedimage/default.nix diff --git a/pkgs/development/python-modules/slicedimage/default.nix b/pkgs/development/python-modules/slicedimage/default.nix new file mode 100644 index 00000000000..3b9aa19062b --- /dev/null +++ b/pkgs/development/python-modules/slicedimage/default.nix @@ -0,0 +1,50 @@ +{ lib +, buildPythonPackage +, fetchPypi +, boto3 +, diskcache +, enum34 +, packaging +, pathlib +, numpy +, requests +, scikitimage +, six +, pytest +, isPy27 +}: + +buildPythonPackage rec { + pname = "slicedimage"; + version = "3.2.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "adab09457e22465f05998fdcf8ea14179185f8e780a4021526ba163dd476cd02"; + }; + + propagatedBuildInputs = [ + boto3 + diskcache + packaging + numpy + requests + scikitimage + six + ] ++ lib.optionals isPy27 [ pathlib enum34 ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Library to access sliced imaging data"; + homepage = https://github.com/spacetx/slicedimage; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 60c3bf7fbab..8425cd28270 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -959,6 +959,8 @@ in { slackclient = callPackage ../development/python-modules/slackclient { }; + slicedimage = callPackage ../development/python-modules/slicedimage { }; + slicerator = callPackage ../development/python-modules/slicerator { }; slither-analyzer = callPackage ../development/python-modules/slither-analyzer { }; From 715f7d72dd231c8e22ac1114ba8885ce2c53a9bc Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:34:46 -0400 Subject: [PATCH 0217/1611] pythonPackages.starfish: init at 0.1.3 --- .../python-modules/starfish/default.nix | 89 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 91 insertions(+) create mode 100644 pkgs/development/python-modules/starfish/default.nix diff --git a/pkgs/development/python-modules/starfish/default.nix b/pkgs/development/python-modules/starfish/default.nix new file mode 100644 index 00000000000..d7989d80e8e --- /dev/null +++ b/pkgs/development/python-modules/starfish/default.nix @@ -0,0 +1,89 @@ +{ lib +, buildPythonPackage +, fetchPypi +, click +, dataclasses +, jsonschema +, matplotlib +, numpy +, pandas +, regional +, semantic-version +, scikitimage +, scikitlearn +, scipy +, showit +, slicedimage +, sympy +, tqdm +, trackpy +, validators +, xarray +, ipywidgets +, pytest +, pythonOlder +}: + +buildPythonPackage rec { + pname = "starfish"; + version = "0.1.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "19bec2a869affbca0a7e3fc0aee1b9978ff7f0f1a2a8551c2d4ae148a7ddc251"; + }; + + propagatedBuildInputs = [ + click + jsonschema + matplotlib + numpy + pandas + regional + semantic-version + scikitimage + scikitlearn + scipy + showit + slicedimage + sympy + tqdm + trackpy + validators + xarray + ipywidgets + ] ++ lib.optionals (pythonOlder "3.7") [ dataclasses ]; + + checkInputs = [ + pytest + ]; + + postConfigure = '' + substituteInPlace REQUIREMENTS.txt \ + --replace "slicedimage==3.1.1" "slicedimage" + ''; + + checkPhase = '' + # a few tests < 5% require + rm -rf starfish/test/full_pipelines/* + pytest starfish \ + --ignore starfish/core/config/test/test_config.py \ + --ignore starfish/core/experiment/builder/test/test_build.py \ + --ignore starfish/core/experiment/test/test_experiment.py \ + --ignore starfish/core/image/_filter/test/test_reduce.py \ + --ignore starfish/core/image/_registration/_apply_transform/test/test_warp.py \ + --ignore starfish/core/image/_registration/_learn_transform/test/test_translation.py \ + --ignore starfish/core/image/_registration/test/test_transforms_list.py \ + --ignore starfish/core/imagestack/test/test_max_proj.py \ + --ignore starfish/core/recipe/test/test_recipe.py \ + --ignore starfish/core/recipe/test/test_runnable.py \ + --ignore starfish/core/test/test_profiler.py + ''; + + meta = with lib; { + description = "Pipelines and pipeline components for the analysis of image-based transcriptomics data"; + homepage = https://spacetx-starfish.readthedocs.io/en/latest/; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8425cd28270..568d16456c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2499,6 +2499,8 @@ in { statsd = callPackage ../development/python-modules/statsd { }; + starfish = callPackage ../development/python-modules/starfish { }; + multi_key_dict = callPackage ../development/python-modules/multi_key_dict { }; random2 = callPackage ../development/python-modules/random2 { }; From af412fcef480fd7abef1a8c0c4166515f0b02025 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:35:05 -0400 Subject: [PATCH 0218/1611] pythonPackages.trackpy: init at 0.4.1 --- .../python-modules/trackpy/default.nix | 57 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 59 insertions(+) create mode 100644 pkgs/development/python-modules/trackpy/default.nix diff --git a/pkgs/development/python-modules/trackpy/default.nix b/pkgs/development/python-modules/trackpy/default.nix new file mode 100644 index 00000000000..2e26679ebf2 --- /dev/null +++ b/pkgs/development/python-modules/trackpy/default.nix @@ -0,0 +1,57 @@ +{ stdenv +, buildPythonPackage +, fetchFromGitHub +, numpy +, scipy +, six +, pandas +, pyyaml +, matplotlib +, pytest +}: + +buildPythonPackage rec { + pname = "trackpy"; + version = "0.4.1"; + + src = fetchFromGitHub { + owner = "soft-matter"; + repo = pname; + rev = "v${version}"; + sha256 = "01fdv93f6z16gypmvqnlbjmcih7dmr7a63n5w9swmp11x3if4iyq"; + }; + + propagatedBuildInputs = [ + numpy + scipy + six + pandas + pyyaml + matplotlib + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + ${stdenv.lib.optionalString (stdenv.isDarwin) '' + # specifically needed for darwin + export HOME=$(mktemp -d) + mkdir -p $HOME/.matplotlib + echo "backend: ps" > $HOME/.matplotlib/matplotlibrc + ''} + + pytest trackpy --ignore trackpy/tests/test_motion.py \ + --ignore trackpy/tests/test_feature_saving.py \ + --ignore trackpy/tests/test_feature.py \ + --ignore trackpy/tests/test_legacy_linking.py + ''; + + meta = with stdenv.lib; { + description = "Particle-tracking toolkit"; + homepage = https://github.com/soft-matter/trackpy; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 568d16456c7..d18338d4cdc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4988,6 +4988,8 @@ in { traceback2 = callPackage ../development/python-modules/traceback2 { }; + trackpy = callPackage ../development/python-modules/trackpy { }; + linecache2 = callPackage ../development/python-modules/linecache2 { }; upass = callPackage ../development/python-modules/upass { }; From bf3dec9150b888fb0bf273f3a9011147e968dc86 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 23:35:21 -0400 Subject: [PATCH 0219/1611] pythonPackages.validators: init at 0.13.0 --- .../python-modules/validators/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/validators/default.nix diff --git a/pkgs/development/python-modules/validators/default.nix b/pkgs/development/python-modules/validators/default.nix new file mode 100644 index 00000000000..bbcca388c93 --- /dev/null +++ b/pkgs/development/python-modules/validators/default.nix @@ -0,0 +1,41 @@ +{ lib +, buildPythonPackage +, fetchPypi +, six +, decorator +, pytest +, isort +, flake8 +}: + +buildPythonPackage rec { + pname = "validators"; + version = "0.13.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "ea9bf8bf22aa692c205e12830d90b3b93950e5122d22bed9eb2f2fece0bba298"; + }; + + propagatedBuildInputs = [ + six + decorator + ]; + + checkInputs = [ + pytest + flake8 + isort + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Python Data Validation for Humans™"; + homepage = https://github.com/kvesteri/validators; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d18338d4cdc..2e3b9b7d807 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2519,6 +2519,8 @@ in { zope_deprecation = callPackage ../development/python-modules/zope_deprecation { }; + validators = callPackage ../development/python-modules/validators { }; + validictory = callPackage ../development/python-modules/validictory { }; validate-email = callPackage ../development/python-modules/validate-email { }; From 4f156a4d7284d4f3e8b22d51e211fde28c3a36b0 Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Thu, 27 Jun 2019 19:42:41 +0200 Subject: [PATCH 0220/1611] kak-lsp: init at 6.2.1 --- pkgs/tools/misc/kak-lsp/default.nix | 25 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/tools/misc/kak-lsp/default.nix diff --git a/pkgs/tools/misc/kak-lsp/default.nix b/pkgs/tools/misc/kak-lsp/default.nix new file mode 100644 index 00000000000..7484e682918 --- /dev/null +++ b/pkgs/tools/misc/kak-lsp/default.nix @@ -0,0 +1,25 @@ +{ stdenv, lib, darwin, fetchFromGitHub, rustPlatform }: + +rustPlatform.buildRustPackage rec { + pname = "kak-lsp"; + version = "6.2.1"; + + src = fetchFromGitHub { + owner = "ul"; + repo = pname; + rev = "v${version}"; + sha256 = "0bazbz1g5iqxlwybn5whidvavglvgdl9yp9qswgsk1jrjmcr5klx"; + }; + + cargoSha256 = "0w0mnh8fnl8zi9n0fxzqaqbvmfagf3ay5v2na3laxb72jm76hrwa"; + + buildInputs = lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; + + meta = with lib; { + description = "Kakoune Language Server Protocol Client"; + homepage = https://github.com/ul/kak-lsp; + license = with licenses; [ unlicense /* or */ mit ]; + maintainers = [ maintainers.spacekookie ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 50ff45cd0b5..505ecc74cd3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3949,6 +3949,8 @@ in kakoune = callPackage ../applications/editors/kakoune { }; + kak-lsp = callPackage ../tools/misc/kak-lsp { }; + kbdd = callPackage ../applications/window-managers/kbdd { }; kdbplus = pkgsi686Linux.callPackage ../applications/misc/kdbplus { }; From 161927b1b1b106ae2ea9a48cb9ac298529eee97f Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Sun, 14 Jul 2019 19:00:36 +0000 Subject: [PATCH 0221/1611] python: line_profiler: fix build with Python 3.7 _line_profiler.c has to be regenerated by Cython. I did not use fetchpatch because this patch does not have a stable source. --- .../python-modules/line_profiler/default.nix | 8 ++++- .../line_profiler/python37.patch | 36 +++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/line_profiler/python37.patch diff --git a/pkgs/development/python-modules/line_profiler/default.nix b/pkgs/development/python-modules/line_profiler/default.nix index 256cf107c86..00ea8dba663 100644 --- a/pkgs/development/python-modules/line_profiler/default.nix +++ b/pkgs/development/python-modules/line_profiler/default.nix @@ -16,12 +16,18 @@ buildPythonPackage rec { sha256 = "efa66e9e3045aa7cb1dd4bf0106e07dec9f80bc781a993fbaf8162a36c20af5c"; }; + patches = [ ./python37.patch ]; + buildInputs = [ cython ]; propagatedBuildInputs = [ ipython ]; disabled = isPyPy; + preBuild = '' + rm -f _line_profiler.c + ''; + checkPhase = '' ${python.interpreter} -m unittest discover -s tests ''; @@ -32,4 +38,4 @@ buildPythonPackage rec { license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; -} \ No newline at end of file +} diff --git a/pkgs/development/python-modules/line_profiler/python37.patch b/pkgs/development/python-modules/line_profiler/python37.patch new file mode 100644 index 00000000000..0b6e93732c4 --- /dev/null +++ b/pkgs/development/python-modules/line_profiler/python37.patch @@ -0,0 +1,36 @@ +From 542baf59f3b2eada13bde48e8a89e484c2cfeeef Mon Sep 17 00:00:00 2001 +From: Hanaasagi +Date: Wed, 17 Apr 2019 06:46:03 +0000 +Subject: [PATCH] Support Python 3.7 Generator (PEP 479) + +--- + kernprof.py | 2 ++ + line_profiler.py | 2 ++ + 2 files changed, 4 insertions(+) + +diff --git a/kernprof.py b/kernprof.py +index 108d36e..6461cf6 100755 +--- a/kernprof.py ++++ b/kernprof.py +@@ -102,6 +102,8 @@ def wrapper(*args, **kwds): + self.enable_by_count() + try: + item = g.send(input) ++ except StopIteration: ++ return + finally: + self.disable_by_count() + input = (yield item) +diff --git a/line_profiler.py b/line_profiler.py +index a481dd2..5744d05 100755 +--- a/line_profiler.py ++++ b/line_profiler.py +@@ -100,6 +100,8 @@ def wrapper(*args, **kwds): + self.enable_by_count() + try: + item = g.send(input) ++ except StopIteration: ++ return + finally: + self.disable_by_count() + input = (yield item) From 8872a08cde2aafa6913113f6b2dacc023a88a6e3 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 14 Jul 2019 21:41:05 +0100 Subject: [PATCH 0222/1611] squid4: 4.7 -> 4.8 fixing CVE-2019-13345 --- pkgs/servers/squid/4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/squid/4.nix b/pkgs/servers/squid/4.nix index f4abc1f3208..69a46533ba5 100644 --- a/pkgs/servers/squid/4.nix +++ b/pkgs/servers/squid/4.nix @@ -2,11 +2,11 @@ , expat, libxml2, openssl }: stdenv.mkDerivation rec { - name = "squid-4.7"; + name = "squid-4.8"; src = fetchurl { url = "http://www.squid-cache.org/Versions/v4/${name}.tar.xz"; - sha256 = "0kimbvp2mzask9k58va4s829vv3m54fzxrj7ryqshw5bfxgzd752"; + sha256 = "0432m0ix046rkja7r7qpydgsm2kf1w393xym15nx6h9kv4jb7kbq"; }; buildInputs = [ From 5b0db58bc1671e4e601f130eff10e940ca0bce0a Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 14 Jul 2019 21:41:26 +0100 Subject: [PATCH 0223/1611] squid: add patch fixing CVE-2019-13345 --- pkgs/servers/squid/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/squid/default.nix b/pkgs/servers/squid/default.nix index 2fdbc29caed..fde29dc7e80 100644 --- a/pkgs/servers/squid/default.nix +++ b/pkgs/servers/squid/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, perl, openldap, pam, db, cyrus_sasl, libcap -, expat, libxml2, openssl }: +, expat, libxml2, openssl, fetchpatch }: stdenv.mkDerivation rec { name = "squid-3.5.28"; @@ -9,6 +9,14 @@ stdenv.mkDerivation rec { sha256 = "1n4f55g56b11qz4fazrnvgzx5wp6b6637c4qkbd1lrjwwqibchgx"; }; + patches = [ + (fetchpatch { + name = "3.5-CVE-2019-13345.patch"; + url = "https://github.com/squid-cache/squid/commit/5730c2b5cb56e7639dc423dd62651c8736a54e35.patch"; + sha256 = "0955432g9a00vwxzcrwpjzx6vywspx1cxhr7bknr7jzbzam5sxi3"; + }) + ]; + buildInputs = [ perl openldap db cyrus_sasl expat libxml2 openssl ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap pam ]; From 0c436f8ca153f06e05e3e2780322a064e6e2697d Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 14 Jul 2019 14:54:14 +0900 Subject: [PATCH 0224/1611] firefox: 67.0.4 -> 68.0 --- pkgs/applications/networking/browsers/firefox/common.nix | 5 ++++- .../applications/networking/browsers/firefox/packages.nix | 8 +++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/common.nix b/pkgs/applications/networking/browsers/firefox/common.nix index 29b12c9fec0..f464972a9df 100644 --- a/pkgs/applications/networking/browsers/firefox/common.nix +++ b/pkgs/applications/networking/browsers/firefox/common.nix @@ -4,7 +4,7 @@ , isIceCatLike ? false, icversion ? null , isTorBrowserLike ? false, tbversion ? null }: -{ lib, stdenv, pkgconfig, pango, perl, python2, zip, libIDL +{ lib, stdenv, pkgconfig, pango, perl, python2, python3, zip, libIDL , libjpeg, zlib, dbus, dbus-glib, bzip2, xorg , freetype, fontconfig, file, nspr, nss, libnotify , yasm, libGLU_combined, sqlite, unzip, makeWrapper @@ -164,12 +164,15 @@ stdenv.mkDerivation rec { postPatch = lib.optionalString (lib.versionAtLeast ffversion "63.0" && !isTorBrowserLike) '' substituteInPlace third_party/prio/prio/rand.c --replace 'nspr/prinit.h' 'prinit.h' + '' + lib.optionalString (lib.versionAtLeast ffversion "68") '' + rm -rf obj-x86_64-pc-linux-gnu ''; nativeBuildInputs = [ autoconf213 which gnused pkgconfig perl python2 cargo rustc ] ++ lib.optional gtk3Support wrapGAppsHook ++ lib.optionals stdenv.isDarwin [ xcbuild rsync ] + ++ lib.optional (lib.versionAtLeast ffversion "61.0") [ python3 ] ++ lib.optionals (lib.versionAtLeast ffversion "63.0") [ rust-cbindgen nodejs ] ++ lib.optionals (lib.versionAtLeast ffversion "67.0") [ llvmPackages.llvm ] # llvm-objdump is required in version >=67.0 ++ extraNativeBuildInputs; diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 93449288075..90cd526897a 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -1,4 +1,4 @@ -{ lib, callPackage, fetchurl, fetchFromGitHub, python3, overrideCC, gccStdenv, gcc6 }: +{ lib, callPackage, fetchurl, fetchFromGitHub, overrideCC, gccStdenv, gcc6 }: let @@ -17,18 +17,16 @@ rec { firefox = common rec { pname = "firefox"; - ffversion = "67.0.4"; + ffversion = "68.0"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; - sha512 = "3krwkc90m320a74vjyzlrxs4jc63cykbmpgisac9kv8m9n0bis5i1yf0dl9n14d9p4p541wvzhqygx7byj6mnvkhbk5b2l0nlvwias2"; + sha512 = "0pg8ww2ldlvdlri0zrzv20x69x00gxshr4afq62pnz7rgrnppkdd0pw5snflisgvpxq1syxcrg5750wz1k4bfjwnyq47jk9h3fzddpw"; }; patches = [ ./no-buildconfig-ffx65.patch ]; - extraNativeBuildInputs = [ python3 ]; - meta = { description = "A web browser built from Firefox source tree"; homepage = http://www.mozilla.com/en-US/firefox/; From 1e23007dcda878503aa26813aca783a59e6f04b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Sun, 14 Jul 2019 22:48:10 +0200 Subject: [PATCH 0225/1611] nixos/gitea: Support SMTP without pw in the store --- nixos/modules/services/misc/gitea.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/nixos/modules/services/misc/gitea.nix b/nixos/modules/services/misc/gitea.nix index 5a964e672ed..59c1c104b9b 100644 --- a/nixos/modules/services/misc/gitea.nix +++ b/nixos/modules/services/misc/gitea.nix @@ -55,6 +55,11 @@ let [service] DISABLE_REGISTRATION = ${boolToString cfg.disableRegistration} + ${optionalString (cfg.mailerPasswordFile != null) '' + [mailer] + PASSWD = #mailerpass# + ''} + ${cfg.extraConfig} ''; in @@ -255,6 +260,13 @@ in description = "Upper level of template and static files path."; }; + mailerPasswordFile = mkOption { + type = types.nullOr types.str; + default = null; + example = "/var/lib/secrets/gitea/mailpw"; + description = "Path to a file containing the SMTP password."; + }; + disableRegistration = mkEnableOption "the registration lock" // { description = '' By default any user can create an account on this gitea instance. @@ -344,9 +356,15 @@ in KEY="$(head -n1 ${secretKey})" DBPASS="$(head -n1 ${cfg.database.passwordFile})" JWTSECRET="$(head -n1 ${jwtSecret})" + ${if (cfg.mailerPasswordFile == null) then '' + MAILERPASSWORD="#mailerpass#" + '' else '' + MAILERPASSWORD="$(head -n1 ${cfg.mailerPasswordFile} || :)" + ''} sed -e "s,#secretkey#,$KEY,g" \ -e "s,#dbpass#,$DBPASS,g" \ -e "s,#jwtsecet#,$JWTSECET,g" \ + -e "s,#mailerpass#,$MAILERPASSWORD,g" \ -i ${runConfig} chmod 640 ${runConfig} ${secretKey} ${jwtSecret} ''} From 75d4e64fad0c917f7e7aab8c4bbbe311b8064fba Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 14 Jul 2019 14:54:55 +0900 Subject: [PATCH 0226/1611] firefox-esr: 60.7.2esr -> 68.0esr --- .../networking/browsers/firefox/packages.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 90cd526897a..b7fd775a675 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -71,6 +71,7 @@ rec { firefox-esr-60 = common rec { pname = "firefox-esr"; ffversion = "60.7.2esr"; + src = fetchurl { url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; sha512 = "0mw5dgrxd5vj6cngd9v3dy6hzdsg82s0cs9fabhrzrl1dy3pqdkccqqnj9r0hxwmcrdgca3s35i5lwwmlljagq6nyb5q6qv4fzv0n0j"; @@ -96,6 +97,28 @@ rec { }; }; + firefox-esr-68 = common rec { + pname = "firefox-esr"; + ffversion = "68.0esr"; + src = fetchurl { + url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; + sha512 = "29iqxxwkz2zgk2ppgq05w0bhs8c0938gina5s8brmwn6zn15nv379pa82a9djpzjryl6c5ff0hk0z7gx6n3xvf7w7ky9010h9il0kbg"; + }; + + patches = [ + ./no-buildconfig-ffx65.patch + ]; + + meta = firefox.meta // { + description = "A web browser built from Firefox Extended Support Release source tree"; + }; + updateScript = callPackage ./update.nix { + attrPath = "firefox-esr-68-unwrapped"; + versionSuffix = "esr"; + versionKey = "ffversion"; + }; + }; + } // (let iccommon = args: common (args // { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b56dbe6c15..d6decd65d92 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18080,6 +18080,7 @@ in firefox-unwrapped = firefoxPackages.firefox; firefox-esr-52-unwrapped = firefoxPackages.firefox-esr-52; firefox-esr-60-unwrapped = firefoxPackages.firefox-esr-60; + firefox-esr-68-unwrapped = firefoxPackages.firefox-esr-68; tor-browser-unwrapped = firefoxPackages.tor-browser; icecat-unwrapped = firefoxPackages.icecat; @@ -18087,7 +18088,8 @@ in firefox-wayland = wrapFirefox firefox-unwrapped { gdkWayland = true; }; firefox-esr-52 = wrapFirefox firefox-esr-52-unwrapped { }; firefox-esr-60 = wrapFirefox firefox-esr-60-unwrapped { }; - firefox-esr = firefox-esr-60; + firefox-esr-68 = wrapFirefox firefox-esr-68-unwrapped { }; + firefox-esr = firefox-esr-68; icecat = wrapFirefox icecat-unwrapped { }; firefox-bin-unwrapped = callPackage ../applications/networking/browsers/firefox-bin { From 363b352af3cba175c55d47d94e86e9e289da7396 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Tue, 9 Jul 2019 20:09:15 -0400 Subject: [PATCH 0227/1611] gitlab: 11.10.8 -> 12.0.3 This is a major version bump but things were generally straightforward save two wrinkles: * it is necessary to ignore collisions in the gitlab bundler environment as both `omniauth_oauth2_generic` and `apollo_upload_server` provide a `console` executable. * grpc had to be patched since its build system expects the `AR` environment variable to contain not just the path to `ar` but also the `rpc` flags (see the discussion in nixpkgs #63056). --- .../version-management/gitlab/data.json | 36 +- .../version-management/gitlab/default.nix | 15 +- .../gitlab/fix-grpc-ar.patch | 10 + .../version-management/gitlab/gitaly/Gemfile | 15 +- .../gitlab/gitaly/Gemfile.lock | 126 ++-- .../gitlab/gitaly/default.nix | 18 +- .../gitlab/gitaly/gemset.nix | 309 +++++++-- .../gitlab/gitlab-shell/default.nix | 4 +- .../gitlab/gitlab-workhorse/default.nix | 4 +- .../gitlab/rubyEnv-ce/Gemfile | 68 +- .../gitlab/rubyEnv-ce/Gemfile.lock | 348 ++++++---- .../gitlab/rubyEnv-ce/gemset.nix | 582 ++++++++++++----- .../gitlab/rubyEnv-ee/Gemfile | 70 ++- .../gitlab/rubyEnv-ee/Gemfile.lock | 352 +++++++---- .../gitlab/rubyEnv-ee/gemset.nix | 594 +++++++++++++----- .../version-management/gitlab/update.py | 4 +- 16 files changed, 1775 insertions(+), 780 deletions(-) create mode 100644 pkgs/applications/version-management/gitlab/fix-grpc-ar.patch diff --git a/pkgs/applications/version-management/gitlab/data.json b/pkgs/applications/version-management/gitlab/data.json index 5afb8c8ee5d..840b90b4088 100644 --- a/pkgs/applications/version-management/gitlab/data.json +++ b/pkgs/applications/version-management/gitlab/data.json @@ -1,32 +1,32 @@ { "ce": { - "version": "11.10.8", - "repo_hash": "1ygwkajkwhr2vzkzljfj6l1ypvmmzj9ps8ijha5m9qglkzjz0gsn", - "deb_hash": "1b66yw0i795pahainx3rpqaliffmn5py0ws8is8f5hr7cghchln0", - "deb_url": "https://packages.gitlab.com/gitlab/gitlab-ce/packages/debian/stretch/gitlab-ce_11.10.8-ce.0_amd64.deb/download.deb", + "version": "12.0.3", + "repo_hash": "0vrw4f9wczcnd66w2ym3mfnrr1qmjs5jyxhvc6sf93lk2n1d27sk", + "deb_hash": "0y1nv0hasphpkxrma43d7ipp2b3wsy08asrwshqc58rw9q7cnbcy", + "deb_url": "https://packages.gitlab.com/gitlab/gitlab-ce/packages/debian/stretch/gitlab-ce_12.0.3-ce.0_amd64.deb/download.deb", "owner": "gitlab-org", "repo": "gitlab-ce", - "rev": "v11.10.8", + "rev": "v12.0.3", "passthru": { - "GITALY_SERVER_VERSION": "1.34.3", - "GITLAB_PAGES_VERSION": "1.5.0", - "GITLAB_SHELL_VERSION": "9.0.0", - "GITLAB_WORKHORSE_VERSION": "8.5.2" + "GITALY_SERVER_VERSION": "1.47.0", + "GITLAB_PAGES_VERSION": "1.6.1", + "GITLAB_SHELL_VERSION": "9.3.0", + "GITLAB_WORKHORSE_VERSION": "8.7.0" } }, "ee": { - "version": "11.10.8", - "repo_hash": "1vw0d99w5bvagbl9xia5ik3754s7jgkh01b3wm77snfkcg31psb6", - "deb_hash": "05fsjxlr56zv4wc90r6ns81n5h1ykafjsi8vq6h22gzxjjvaay7m", - "deb_url": "https://packages.gitlab.com/gitlab/gitlab-ee/packages/debian/stretch/gitlab-ee_11.10.8-ee.0_amd64.deb/download.deb", + "version": "12.0.3", + "repo_hash": "1gndyxmr93qrlnbhi75sql49wqnd579yi3aqhx8b477fjac2wd69", + "deb_hash": "082n3dsi2jwv4aagzgk1g0mm2csxgg6lpgnc49zfhyz9frdvf9mq", + "deb_url": "https://packages.gitlab.com/gitlab/gitlab-ee/packages/debian/stretch/gitlab-ee_12.0.3-ee.0_amd64.deb/download.deb", "owner": "gitlab-org", "repo": "gitlab-ee", - "rev": "v11.10.8-ee", + "rev": "v12.0.3-ee", "passthru": { - "GITALY_SERVER_VERSION": "1.34.3", - "GITLAB_PAGES_VERSION": "1.5.0", - "GITLAB_SHELL_VERSION": "9.0.0", - "GITLAB_WORKHORSE_VERSION": "8.5.2" + "GITALY_SERVER_VERSION": "1.47.0", + "GITLAB_PAGES_VERSION": "1.6.1", + "GITLAB_SHELL_VERSION": "9.3.0", + "GITLAB_WORKHORSE_VERSION": "8.7.0" } } } \ No newline at end of file diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 6ac1a9d6861..53f53e47164 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -4,11 +4,24 @@ }: let - rubyEnv = bundlerEnv { + rubyEnv = bundlerEnv rec { name = "gitlab-env-${version}"; inherit ruby; gemdir = ./rubyEnv- + "${if gitlabEnterprise then "ee" else "ce"}"; + gemset = + let x = import (gemdir + "/gemset.nix"); + in x // { + # grpc expects the AR environment variable to contain `ar rpc`. See the + # discussion in nixpkgs #63056. + grpc = x.grpc // { + patches = [ ./fix-grpc-ar.patch ]; + dontBuild = false; + }; + }; groups = [ "default" "unicorn" "ed25519" "metrics" ]; + # N.B. omniauth_oauth2_generic and apollo_upload_server both provide a + # `console` executable. + ignoreCollisions = true; }; flavour = if gitlabEnterprise then "ee" else "ce"; diff --git a/pkgs/applications/version-management/gitlab/fix-grpc-ar.patch b/pkgs/applications/version-management/gitlab/fix-grpc-ar.patch new file mode 100644 index 00000000000..9b95e668e04 --- /dev/null +++ b/pkgs/applications/version-management/gitlab/fix-grpc-ar.patch @@ -0,0 +1,10 @@ +--- a/src/ruby/ext/grpc/extconf.rb ++++ b/src/ruby/ext/grpc/extconf.rb +@@ -27,6 +27,7 @@ ENV['MACOSX_DEPLOYMENT_TARGET'] = '10.7' + if ENV['AR'].nil? || ENV['AR'].size == 0 + ENV['AR'] = RbConfig::CONFIG['AR'] + ' rcs' + end ++ENV['AR'] = ENV['AR'] + ' rcs' + if ENV['CC'].nil? || ENV['CC'].size == 0 + ENV['CC'] = RbConfig::CONFIG['CC'] + end diff --git a/pkgs/applications/version-management/gitlab/gitaly/Gemfile b/pkgs/applications/version-management/gitlab/gitaly/Gemfile index c111744a1a1..1ad7f4c777d 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/Gemfile +++ b/pkgs/applications/version-management/gitlab/gitaly/Gemfile @@ -1,29 +1,32 @@ source 'https://rubygems.org' # Require bundler >= 1.16.5 to avoid this bug: https://github.com/bundler/bundler/issues/6537 -gem 'bundler', '>= 1.16.5' +gem 'bundler', '>= 1.17.3' gem 'rugged', '~> 0.28' gem 'github-linguist', '~> 6.1', require: 'linguist' gem 'gitlab-markup', '~> 1.7.0' -gem 'gitaly-proto', '~> 1.22.0' -gem 'activesupport', '~> 5.0.2' +gem 'activesupport', '~> 5.1.7' +gem 'gitaly-proto', '~> 1.32.0' gem 'rdoc', '~> 4.2' gem 'gitlab-gollum-lib', '~> 4.2.7.7', require: false gem 'gitlab-gollum-rugged_adapter', '~> 0.4.4.2', require: false -gem 'grpc', '~> 1.15.0' +gem 'grpc', '~> 1.19.0' gem 'sentry-raven', '~> 2.9.0', require: false gem 'faraday', '~> 0.12' gem 'rbtrace', require: false +# Labkit provides observability functionality +gem 'gitlab-labkit', '~> 0.3.0' + # Detects the open source license the repository includes # This version needs to be in sync with GitLab CE/EE gem 'licensee', '~> 8.9.0' -gem 'google-protobuf', '~> 3.6' +gem 'google-protobuf', '~> 3.7.1' group :development, :test do - gem 'rubocop', '~> 0.50', require: false + gem 'rubocop', '~> 0.69', require: false gem 'rspec', require: false gem 'rspec-parameterized', require: false gem 'timecop', require: false diff --git a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock index fec103a23a4..852b3f332a3 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/gitaly/Gemfile.lock @@ -2,7 +2,20 @@ GEM remote: https://rubygems.org/ specs: abstract_type (0.0.7) - activesupport (5.0.7.2) + actionpack (5.1.7) + actionview (= 5.1.7) + activesupport (= 5.1.7) + rack (~> 2.0) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.2) + actionview (5.1.7) + activesupport (= 5.1.7) + builder (~> 3.1) + erubi (~> 1.4) + rails-dom-testing (~> 2.0) + rails-html-sanitizer (~> 1.0, >= 1.0.3) + activesupport (5.1.7) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) @@ -10,33 +23,33 @@ GEM adamantium (0.2.0) ice_nine (~> 0.11.0) memoizable (~> 0.4.0) - addressable (2.5.2) + addressable (2.6.0) public_suffix (>= 2.0.2, < 4.0) ast (2.4.0) - binding_of_caller (0.8.0) - debug_inspector (>= 0.0.1) + binding_ninja (0.2.3) + builder (3.2.3) charlock_holmes (0.7.6) coderay (1.1.2) concord (0.1.5) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.1.3) + concurrent-ruby (1.1.5) crack (0.4.3) safe_yaml (~> 1.0.0) crass (1.0.4) - debug_inspector (0.0.3) diff-lcs (1.3) docile (1.1.5) equalizer (0.0.11) + erubi (1.8.0) escape_utils (1.2.1) - factory_bot (4.11.1) - activesupport (>= 3.0.0) - faraday (0.15.3) + factory_bot (5.0.2) + activesupport (>= 4.2.0) + faraday (0.15.4) multipart-post (>= 1.2, < 3) ffi (1.10.0) gemojione (3.3.0) json - gitaly-proto (1.22.0) + gitaly-proto (1.32.0) grpc (~> 1.0) github-linguist (6.4.1) charlock_holmes (~> 0.7.6) @@ -60,44 +73,57 @@ GEM diff-lcs (~> 1.1) mime-types (>= 1.16) posix-spawn (~> 0.3) + gitlab-labkit (0.3.0) + actionpack (~> 5) + activesupport (~> 5) + grpc (~> 1.19.0) + jaeger-client (~> 0.10) + opentracing (~> 0.4) gitlab-markup (1.7.0) gollum-grit_adapter (1.0.1) gitlab-grit (~> 2.7, >= 2.7.1) google-protobuf (3.7.1) googleapis-common-protos-types (1.0.4) google-protobuf (~> 3.0) - grpc (1.15.0) + grpc (1.19.0) google-protobuf (~> 3.1) googleapis-common-protos-types (~> 1.0.0) - hashdiff (0.3.8) + hashdiff (0.3.9) i18n (1.6.0) concurrent-ruby (~> 1.0) ice_nine (0.11.2) + jaeger-client (0.10.0) + opentracing (~> 0.3) + thrift + jaro_winkler (1.5.2) json (2.2.0) licensee (8.9.2) rugged (~> 0.24) listen (0.5.3) + loofah (2.2.3) + crass (~> 1.0.2) + nokogiri (>= 1.5.9) memoizable (0.4.2) thread_safe (~> 0.3, >= 0.3.1) method_source (0.9.2) mime-types (3.2.2) mime-types-data (~> 3.2015) - mime-types-data (3.2018.0812) + mime-types-data (3.2019.0331) mini_portile2 (2.4.0) minitest (5.11.3) - msgpack (1.2.6) + msgpack (1.2.10) multi_json (1.13.1) multipart-post (2.0.0) - nokogiri (1.10.2) + nokogiri (1.10.3) mini_portile2 (~> 2.4.0) nokogumbo (1.5.0) nokogiri + opentracing (0.5.0) optimist (3.0.0) - parallel (1.12.1) - parser (2.5.3.0) + parallel (1.17.0) + parser (2.6.3.0) ast (~> 2.4.0) posix-spawn (0.3.13) - powerpack (0.1.2) proc_to_ast (0.1.0) coderay parser @@ -107,6 +133,14 @@ GEM coderay (~> 1.1.0) method_source (~> 0.9.0) public_suffix (3.0.3) + rack (2.0.7) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rails-dom-testing (2.0.3) + activesupport (>= 4.2.0) + nokogiri (>= 1.6) + rails-html-sanitizer (1.0.4) + loofah (~> 2.2, >= 2.2.2) rainbow (3.0.0) rbtrace (0.4.11) ffi (>= 1.0.6) @@ -114,35 +148,35 @@ GEM optimist (>= 3.0.0) rdoc (4.3.0) rouge (3.3.0) - rspec (3.7.0) - rspec-core (~> 3.7.0) - rspec-expectations (~> 3.7.0) - rspec-mocks (~> 3.7.0) - rspec-core (3.7.1) - rspec-support (~> 3.7.0) - rspec-expectations (3.7.0) + rspec (3.8.0) + rspec-core (~> 3.8.0) + rspec-expectations (~> 3.8.0) + rspec-mocks (~> 3.8.0) + rspec-core (3.8.0) + rspec-support (~> 3.8.0) + rspec-expectations (3.8.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.7.0) - rspec-mocks (3.7.0) + rspec-support (~> 3.8.0) + rspec-mocks (3.8.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.7.0) - rspec-parameterized (0.4.0) - binding_of_caller + rspec-support (~> 3.8.0) + rspec-parameterized (0.4.2) + binding_ninja (>= 0.2.3) parser proc_to_ast rspec (>= 2.13, < 4) unparser - rspec-support (3.7.1) - rubocop (0.54.0) + rspec-support (3.8.0) + rubocop (0.69.0) + jaro_winkler (~> 1.5.1) parallel (~> 1.10) - parser (>= 2.5) - powerpack (~> 0.1) + parser (>= 2.6) rainbow (>= 2.2.2, < 4.0) ruby-progressbar (~> 1.7) - unicode-display_width (~> 1.0, >= 1.0.1) + unicode-display_width (>= 1.4.0, < 1.7) ruby-progressbar (1.10.0) rugged (0.28.1) - safe_yaml (1.0.4) + safe_yaml (1.0.5) sanitize (4.6.6) crass (~> 1.0.2) nokogiri (>= 1.4.4) @@ -156,17 +190,18 @@ GEM simplecov-html (0.9.0) stringex (2.8.5) thread_safe (0.3.6) + thrift (0.11.0.0) timecop (0.9.1) tzinfo (1.2.5) thread_safe (~> 0.1) - unicode-display_width (1.4.0) - unparser (0.2.8) + unicode-display_width (1.6.0) + unparser (0.4.5) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) concord (~> 0.1.5) diff-lcs (~> 1.3) equalizer (~> 0.0.9) - parser (>= 2.3.1.2, < 2.6) + parser (~> 2.6.3) procto (~> 0.0.2) vcr (4.0.0) webmock (3.4.2) @@ -178,17 +213,18 @@ PLATFORMS ruby DEPENDENCIES - activesupport (~> 5.0.2) - bundler (>= 1.16.5) + activesupport (~> 5.1.7) + bundler (>= 1.17.3) factory_bot faraday (~> 0.12) - gitaly-proto (~> 1.22.0) + gitaly-proto (~> 1.32.0) github-linguist (~> 6.1) gitlab-gollum-lib (~> 4.2.7.7) gitlab-gollum-rugged_adapter (~> 0.4.4.2) + gitlab-labkit (~> 0.3.0) gitlab-markup (~> 1.7.0) - google-protobuf (~> 3.6) - grpc (~> 1.15.0) + google-protobuf (~> 3.7.1) + grpc (~> 1.19.0) licensee (~> 8.9.0) listen (~> 0.5.0) pry (~> 0.12.2) @@ -196,7 +232,7 @@ DEPENDENCIES rdoc (~> 4.2) rspec rspec-parameterized - rubocop (~> 0.50) + rubocop (~> 0.69) rugged (~> 0.28) sentry-raven (~> 2.9.0) simplecov (~> 0.9.0) diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index fc10c59df94..dc7093f2dba 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -1,20 +1,30 @@ { stdenv, fetchFromGitLab, buildGoPackage, ruby, bundlerEnv }: let - rubyEnv = bundlerEnv { + rubyEnv = bundlerEnv rec { name = "gitaly-env"; inherit ruby; gemdir = ./.; + gemset = + let x = import "${gemdir}/gemset.nix"; + in x // { + # grpc expects the AR environment variable to contain `ar rpc`. See the + # discussion in nixpkgs #63056. + grpc = x.grpc // { + patches = [ ../fix-grpc-ar.patch ]; + dontBuild = false; + }; + }; }; in buildGoPackage rec { - version = "1.34.3"; + version = "1.47.0"; name = "gitaly-${version}"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitaly"; rev = "v${version}"; - sha256 = "0lv3czkxcan2zv9asd79nn8z1bihyxszi1d5hazmb299v23cppzm"; + sha256 = "1b8gshvwiypwl0f4963l37y7sjrn851marr77fhczx128axrniiw"; }; goPackagePath = "gitlab.com/gitlab-org/gitaly"; @@ -23,6 +33,8 @@ in buildGoPackage rec { inherit rubyEnv; }; + subPackages = [ "." ]; + buildInputs = [ rubyEnv.wrappedRuby ]; postInstall = '' diff --git a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix index 9b0f37e36bc..9c9ea4934b8 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/gemset.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/gemset.nix @@ -7,16 +7,38 @@ }; version = "0.0.7"; }; + actionpack = { + dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0zyi3dc50ii2msdkawaf11y4xw645ig57ha2jfnr8lpr8s1nlh52"; + type = "gem"; + }; + version = "5.1.7"; + }; + actionview = { + dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0i2j580njb767yhf0k5ih3qqg38ybiah80ai8dsr6kjjw35aj747"; + type = "gem"; + }; + version = "5.1.7"; + }; activesupport = { dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; groups = ["default" "development" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bcbr490ryw6295p0ja7xigcw0ivkdys90x3qbsbs8c4n1zwcp7p"; + sha256 = "0znhiy90hdlx66jqhaycin4qrphrymsw68c36a1an7g481zvfv91"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; adamantium = { dependencies = ["ice_nine" "memoizable"]; @@ -29,12 +51,14 @@ }; addressable = { dependencies = ["public_suffix"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"; + sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; type = "gem"; }; - version = "2.5.2"; + version = "2.6.0"; }; ast = { source = { @@ -44,14 +68,25 @@ }; version = "2.4.0"; }; - binding_of_caller = { - dependencies = ["debug_inspector"]; + binding_ninja = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "05syqlks7463zsy1jdfbbdravdhj9hpj5pv2m74blqpv8bq4vv5g"; + sha256 = "17fa3sv6p2fw9g8fxpwx1kjhhs28aw41akkba0hlgvk60055b1aa"; type = "gem"; }; - version = "0.8.0"; + version = "0.2.3"; + }; + builder = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0qibi5s67lpdv1wgcj66wcymcr04q6j4mzws6a479n0mlrmh5wr1"; + type = "gem"; + }; + version = "3.2.3"; }; charlock_holmes = { source = { @@ -79,12 +114,14 @@ version = "0.1.5"; }; concurrent-ruby = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; + sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.5"; }; crack = { dependencies = ["safe_yaml"]; @@ -103,14 +140,6 @@ }; version = "1.0.4"; }; - debug_inspector = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0vxr0xa1mfbkfcrn71n7c4f2dj7la5hvphn904vh20j3x4j5lrx0"; - type = "gem"; - }; - version = "0.0.3"; - }; diff-lcs = { source = { remotes = ["https://rubygems.org"]; @@ -135,6 +164,16 @@ }; version = "0.0.11"; }; + erubi = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kagnf6ziahj0d781s6ryy6fwqwa3ad4xbzzj84p9m4nv4c2jir1"; + type = "gem"; + }; + version = "1.8.0"; + }; escape_utils = { source = { remotes = ["https://rubygems.org"]; @@ -145,21 +184,25 @@ }; factory_bot = { dependencies = ["activesupport"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "13q1b7imb591068plg4ashgsqgzarvfjz6xxn3jk6klzikz5zhg1"; + sha256 = "02ijqa3g6lb8l8mvi40z1zgh9bb3gr08p2r2ym159ghhfbcrmbwk"; type = "gem"; }; - version = "4.11.1"; + version = "5.0.2"; }; faraday = { dependencies = ["multipart-post"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "16hwxc8v0z6gkanckjhx0ffgqmzpc4ywz4dfhxpjlz2mbz8d5m52"; + sha256 = "0s72m05jvzc1pd6cw1i289chas399q0a14xrwg4rvkdwy7bgzrh0"; type = "gem"; }; - version = "0.15.3"; + version = "0.15.4"; }; ffi = { source = { @@ -184,10 +227,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "114q2qnd6196xvzmv3jia4n4j4wm3rizqbvxjd9156g0hc20q6yf"; + sha256 = "0glqy22p0xfaa3kvvrba04pj1dva8wpzlvhka37cvlqq95djcy19"; type = "gem"; }; - version = "1.22.0"; + version = "1.32.0"; }; github-linguist = { dependencies = ["charlock_holmes" "escape_utils" "mime-types" "rugged"]; @@ -239,6 +282,17 @@ }; version = "2.8.2"; }; + gitlab-labkit = { + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0dvapmdc9axm9dq2gg89qrqb318rkrsabpyybrqvcx1ipbi5k3a1"; + type = "gem"; + }; + version = "0.3.0"; + }; gitlab-markup = { groups = ["default"]; platforms = []; @@ -281,20 +335,24 @@ }; grpc = { dependencies = ["google-protobuf" "googleapis-common-protos-types"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m2wspnm1cfkmhlbp7yqv5bb4vsfh246cm0aavxra67aw4l8plhb"; + sha256 = "1rdywzism5vxz8pnml6xjb9f19diclyy74014z69q01jzqwi1wgs"; type = "gem"; }; - version = "1.15.0"; + version = "1.19.0"; }; hashdiff = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "19ykg5pax8798nh1yv71adkx0zzs7gn2rxjj86v7nsw0jba5lask"; + sha256 = "1qji49afni3c90zws617x514xi7ik70g2iwngj9skq68mjcq6y4x"; type = "gem"; }; - version = "0.3.8"; + version = "0.3.9"; }; i18n = { dependencies = ["concurrent-ruby"]; @@ -315,6 +373,27 @@ }; version = "0.11.2"; }; + jaeger-client = { + dependencies = ["opentracing" "thrift"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "198m72c9w3wfwr1mq22dcjjm7d4jd0bci4lrq6zq2zvlzhi04n8l"; + type = "gem"; + }; + version = "0.10.0"; + }; + jaro_winkler = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zz27z88qznix4r65gd9h56gl177snlfpgv10b0s69vi8qpl909l"; + type = "gem"; + }; + version = "1.5.2"; + }; json = { groups = ["default"]; platforms = []; @@ -342,6 +421,17 @@ }; version = "0.5.3"; }; + loofah = { + dependencies = ["crass" "nokogiri"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ccsid33xjajd0im2xv941aywi58z7ihwkvaf1w2bv89vn5bhsjg"; + type = "gem"; + }; + version = "2.2.3"; + }; memoizable = { dependencies = ["thread_safe"]; source = { @@ -369,12 +459,14 @@ version = "3.2.2"; }; mime-types-data = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; + sha256 = "1m00pg19cm47n1qlcxgl91ajh2yq0fszvn1vy8fy0s1jkrp9fw4a"; type = "gem"; }; - version = "3.2018.0812"; + version = "3.2019.0331"; }; mini_portile2 = { source = { @@ -393,12 +485,14 @@ version = "5.11.3"; }; msgpack = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0031gd2mjyba6jb7m97sqa149zjkr0vzn2s2gpb3m9nb67gqkm13"; + sha256 = "1w38hilm3dk42dwk8ygiq49bl4in7y80hfqr63hk54mj4gmzi6ch"; type = "gem"; }; - version = "1.2.6"; + version = "1.2.10"; }; multi_json = { source = { @@ -422,10 +516,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0sy96cc8i5y4p67fhf4d9c6sg8ymrrva21zyvzw55l0pa1582wx2"; + sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; type = "gem"; }; - version = "1.10.2"; + version = "1.10.3"; }; nokogumbo = { dependencies = ["nokogiri"]; @@ -436,6 +530,16 @@ }; version = "1.5.0"; }; + opentracing = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11lj1d8vq0hkb5hjz8q4lm82cddrggpbb33dhqfn7rxhwsmxgdfy"; + type = "gem"; + }; + version = "0.5.0"; + }; optimist = { source = { remotes = ["https://rubygems.org"]; @@ -445,21 +549,25 @@ version = "3.0.0"; }; parallel = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01hj8v1qnyl5ndrs33g8ld8ibk0rbcqdpkpznr04gkbxd11pqn67"; + sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r"; type = "gem"; }; - version = "1.12.1"; + version = "1.17.0"; }; parser = { dependencies = ["ast"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zjk0w1kjj3xk8ymy1430aa4gg0k8ckphfj88br6il4pm83f0n1f"; + sha256 = "1pnks149x0fzgqiw53qlmvcd8bi746cxdw03sjljby5s97p1fskn"; type = "gem"; }; - version = "2.5.3.0"; + version = "2.6.3.0"; }; posix-spawn = { source = { @@ -469,14 +577,6 @@ }; version = "0.3.13"; }; - powerpack = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1r51d67wd467rpdfl6x43y84vwm8f5ql9l9m85ak1s2sp3nc5hyv"; - type = "gem"; - }; - version = "0.1.2"; - }; proc_to_ast = { dependencies = ["coderay" "parser" "unparser"]; source = { @@ -511,6 +611,49 @@ }; version = "3.0.3"; }; + rack = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0z90vflxbgjy2n84r7mbyax3i2vyvvrxxrf86ljzn5rw65jgnn2i"; + type = "gem"; + }; + version = "2.0.7"; + }; + rack-test = { + dependencies = ["rack"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; + type = "gem"; + }; + version = "1.1.0"; + }; + rails-dom-testing = { + dependencies = ["activesupport" "nokogiri"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1lfq2a7kp2x64dzzi5p4cjcbiv62vxh9lyqk2f0rqq3fkzrw8h5i"; + type = "gem"; + }; + version = "2.0.3"; + }; + rails-html-sanitizer = { + dependencies = ["loofah"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1gv7vr5d9g2xmgpjfq4nxsqr70r9pr042r9ycqqnfvw5cz9c7jwr"; + type = "gem"; + }; + version = "1.0.4"; + }; rainbow = { source = { remotes = ["https://rubygems.org"]; @@ -546,65 +689,79 @@ }; rspec = { dependencies = ["rspec-core" "rspec-expectations" "rspec-mocks"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0134g96wzxjlig2gxzd240gm2dxfw8izcyi2h6hjmr40syzcyx01"; + sha256 = "15ppasvb9qrscwlyjz67ppw1lnxiqnkzx5vkx1bd8x5n3dhikxc3"; type = "gem"; }; - version = "3.7.0"; + version = "3.8.0"; }; rspec-core = { dependencies = ["rspec-support"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0zvjbymx3avxm3lf8v4gka3a862vnaxldmwvp6767bpy48nhnvjj"; + sha256 = "1p1s5bnbqp3sxk67y0fh0x884jjym527r0vgmhbm81w7aq6b7l4p"; type = "gem"; }; - version = "3.7.1"; + version = "3.8.0"; }; rspec-expectations = { dependencies = ["diff-lcs" "rspec-support"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1fw06wm8jdj8k7wrb8xmzj0fr1wjyb0ya13x31hidnyblm41hmvy"; + sha256 = "1c4gs5ybf7km0qshdm92p38zvg32n1j2kr5fgs2icacz7xf2y6fy"; type = "gem"; }; - version = "3.7.0"; + version = "3.8.3"; }; rspec-mocks = { dependencies = ["diff-lcs" "rspec-support"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0b02ya3qhqgmcywqv4570dlhav70r656f7dmvwg89whpkq1z1xr3"; + sha256 = "06y508cjqycb4yfhxmb3nxn0v9xqf17qbd46l1dh4xhncinr4fyp"; type = "gem"; }; - version = "3.7.0"; + version = "3.8.0"; }; rspec-parameterized = { - dependencies = ["binding_of_caller" "parser" "proc_to_ast" "rspec" "unparser"]; + dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0arynbr6cfjhccwc8gy2xf87nybdnncsnmfwknnh8s7d4mj730p0"; + sha256 = "1c0892jbaznnldk1wi24qxm70g4zhw2idqx516rhgdzgd7yh5j31"; type = "gem"; }; - version = "0.4.0"; + version = "0.4.2"; }; rspec-support = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1nl30xb6jmcl0awhqp6jycl01wdssblifwy921phfml70rd9flj1"; + sha256 = "0p3m7drixrlhvj2zpc38b11x145bvm311x6f33jjcxmvcm0wq609"; type = "gem"; }; - version = "3.7.1"; + version = "3.8.0"; }; rubocop = { - dependencies = ["parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; + dependencies = ["jaro_winkler" "parallel" "parser" "rainbow" "ruby-progressbar" "unicode-display_width"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "106y99lq0fg62k3vk1w5wwb4vq16pnh4l61skc82xck627z0h8is"; + sha256 = "1cmw8ajaiidvrzjcsljh47f4l3lmcazqrzljgalj3szkr8ibkk5i"; type = "gem"; }; - version = "0.54.0"; + version = "0.69.0"; }; ruby-progressbar = { source = { @@ -625,12 +782,14 @@ version = "0.28.1"; }; safe_yaml = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; + sha256 = "0j7qv63p0vqcd838i2iy2f76c3dgwzkiz1d1xkg7n0pbnxj2vb56"; type = "gem"; }; - version = "1.0.4"; + version = "1.0.5"; }; sanitize = { dependencies = ["crass" "nokogiri" "nokogumbo"]; @@ -687,6 +846,16 @@ }; version = "0.3.6"; }; + thrift = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "02p107kwx7jnkh6fpdgvaji0xdg6xkaarngkqjml6s4zny4m8slv"; + type = "gem"; + }; + version = "0.11.0.0"; + }; timecop = { source = { remotes = ["https://rubygems.org"]; @@ -705,21 +874,25 @@ version = "1.2.5"; }; unicode-display_width = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0040bsdpcmvp8w31lqi2s9s4p4h031zv52401qidmh25cgyh4a57"; + sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w"; type = "gem"; }; - version = "1.4.0"; + version = "1.6.0"; }; unparser = { dependencies = ["abstract_type" "adamantium" "concord" "diff-lcs" "equalizer" "parser" "procto"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0rh1649846ac17av30x0b0v9l45v0x1j2y1i8m1a7xdd0v4sld0z"; + sha256 = "03vjj74kj86vlazhiclf63kf6gajs66k8ni34q70fdhf97d7b60c"; type = "gem"; }; - version = "0.2.8"; + version = "0.4.5"; }; vcr = { source = { diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix index be0cf838f90..faeed38c918 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-shell/default.nix @@ -1,14 +1,14 @@ { stdenv, ruby, bundler, fetchFromGitLab, go }: stdenv.mkDerivation rec { - version = "9.0.0"; + version = "9.3.0"; name = "gitlab-shell-${version}"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-shell"; rev = "v${version}"; - sha256 = "0437pigcgd5qi9ars8br1l058h2mijyv02axlr8wdb1vjsss857g"; + sha256 = "1r000h4sgplx7giqvqs5iy0zh3drf6qa1iiq0mxlk3h9fshs1348"; }; buildInputs = [ ruby bundler go ]; diff --git a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix index a98c41699c7..23cf3483f7a 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix +++ b/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "gitlab-workhorse-${version}"; - version = "8.5.2"; + version = "8.7.0"; src = fetchFromGitLab { owner = "gitlab-org"; repo = "gitlab-workhorse"; rev = "v${version}"; - sha256 = "0c1wpp81wr4x00pmc2z41xh4vy7yk97fkcg0cdy7gbz2hc5cm296"; + sha256 = "1zlngc498hnzbxwdjn3ymr0xwrnfgnzzhn9lyf37yfbjl8x28n3z"; }; buildInputs = [ git go ]; diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile b/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile index 00f90bdf7e3..c9a95fb7a36 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile @@ -1,7 +1,6 @@ source 'https://rubygems.org' -gem 'rails', '5.0.7.2' -gem 'rails-deprecated_sanitizer', '~> 1.0.3' +gem 'rails', '5.1.7' # Improves copy-on-write performance for MRI gem 'nakayoshi_fork', '~> 0.0.4' @@ -19,12 +18,12 @@ gem 'mysql2', '~> 0.4.10', group: :mysql gem 'pg', '~> 1.1', group: :postgres gem 'rugged', '~> 0.28' -gem 'grape-path-helpers', '~> 1.0' +gem 'grape-path-helpers', '~> 1.1' gem 'faraday', '~> 0.12' # Authentication libraries -gem 'devise', '~> 4.4' +gem 'devise', '~> 4.6' gem 'doorkeeper', '~> 4.3' gem 'doorkeeper-openid_connect', '~> 1.5' gem 'omniauth', '~> 1.8' @@ -42,6 +41,9 @@ gem 'omniauth-shibboleth', '~> 1.3.0' gem 'omniauth-twitter', '~> 1.4' gem 'omniauth_crowd', '~> 2.2.0' gem 'omniauth-authentiq', '~> 0.3.3' +gem 'omniauth_openid_connect', '~> 0.3.1' +gem "omniauth-ultraauth", '~> 0.0.2' +gem 'omniauth-salesforce', '~> 1.0.5' gem 'rack-oauth2', '~> 1.9.3' gem 'jwt', '~> 2.1.0' @@ -58,6 +60,8 @@ gem 'u2f', '~> 0.2.1' # GitLab Pages gem 'validates_hostname', '~> 1.0.6' gem 'rubyzip', '~> 1.2.2', require: 'zip' +# GitLab Pages letsencrypt support +gem 'acme-client', '~> 2.0.2' # Browser detection gem 'browser', '~> 2.5' @@ -79,6 +83,7 @@ gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' # GraphQL API gem 'graphql', '~> 1.8.0' gem 'graphiql-rails', '~> 1.4.10' +gem 'apollo_upload_server', '~> 2.0.0.beta3' # Disable strong_params so that Mash does not respond to :permitted? gem 'hashie-forbidden_attributes' @@ -125,11 +130,12 @@ gem 'org-ruby', '~> 0.9.12' gem 'creole', '~> 0.5.0' gem 'wikicloth', '0.8.1' gem 'asciidoctor', '~> 1.5.8' +gem 'asciidoctor-include-ext', '~> 0.3.1', require: false gem 'asciidoctor-plantuml', '0.0.8' gem 'rouge', '~> 3.1' gem 'truncato', '~> 0.7.11' gem 'bootstrap_form', '~> 4.2.0' -gem 'nokogiri', '~> 1.10.1' +gem 'nokogiri', '~> 1.10.3' gem 'escape_utils', '~> 1.1' # Calendar rendering @@ -149,6 +155,7 @@ end group :puma do gem 'puma', '~> 3.12', require: false gem 'puma_worker_killer', require: false + gem 'rack-timeout', require: false end # State machine @@ -158,13 +165,13 @@ gem 'state_machines-activerecord', '~> 0.5.1' gem 'acts-as-taggable-on', '~> 6.0' # Background jobs -gem 'sidekiq', '~> 5.2.1' +gem 'sidekiq', '~> 5.2.7' gem 'sidekiq-cron', '~> 1.0' gem 'redis-namespace', '~> 1.6.0' gem 'gitlab-sidekiq-fetcher', '~> 0.4.0', require: 'sidekiq-reliable-fetch' # Cron Parser -gem 'fugit', '~> 1.1' +gem 'fugit', '~> 1.2.1' # HTTP requests gem 'httparty', '~> 0.16.4' @@ -257,8 +264,7 @@ gem 'chronic_duration', '~> 0.10.6' gem 'webpack-rails', '~> 0.9.10' gem 'rack-proxy', '~> 0.6.0' -gem 'sass-rails', '~> 5.0.6' -gem 'sass', '~> 3.5' +gem 'sassc-rails', '~> 2.1.0' gem 'uglifier', '~> 2.7.2' gem 'addressable', '~> 2.5.2' @@ -270,10 +276,13 @@ gem 'virtus', '~> 1.0.1' gem 'base32', '~> 0.3.0' # Sentry integration -gem 'sentry-raven', '~> 2.7' +gem 'sentry-raven', '~> 2.9' gem 'premailer-rails', '~> 1.9.7' +# LabKit: Tracing and Correlation +gem 'gitlab-labkit', '~> 0.3.0' + # I18n gem 'ruby_parser', '~> 3.8', require: false gem 'rails-i18n', '~> 5.1' @@ -281,7 +290,7 @@ gem 'gettext_i18n_rails', '~> 1.8.0' gem 'gettext_i18n_rails_js', '~> 1.3' gem 'gettext', '~> 3.2.2', require: false, group: :development -gem 'batch-loader', '~> 1.2.2' +gem 'batch-loader', '~> 1.4.0' # Perf bar gem 'peek', '~> 1.0.1' @@ -301,17 +310,11 @@ group :metrics do gem 'raindrops', '~> 0.18' end -group :tracing do - # OpenTracing - gem 'opentracing', '~> 0.4.3' - gem 'jaeger-client', '~> 0.10.0' -end - group :development do gem 'foreman', '~> 0.84.0' gem 'brakeman', '~> 4.2', require: false - gem 'letter_opener_web', '~> 1.3.0' + gem 'letter_opener_web', '~> 1.3.4' gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false # Better errors handler @@ -334,7 +337,7 @@ group :development, :test do gem 'database_cleaner', '~> 1.7.0' gem 'factory_bot_rails', '~> 4.8.2' gem 'rspec-rails', '~> 3.7.0' - gem 'rspec-retry', '~> 0.4.5' + gem 'rspec-retry', '~> 0.6.1' gem 'rspec_profiling', '~> 0.0.5' gem 'rspec-set', '~> 0.1.3' gem 'rspec-parameterized', require: false @@ -345,21 +348,22 @@ group :development, :test do # Generate Fake data gem 'ffaker', '~> 2.10' - gem 'capybara', '~> 2.16.1' - gem 'capybara-screenshot', '~> 1.0.18' - gem 'selenium-webdriver', '~> 3.12' + gem 'capybara', '~> 3.22.0' + gem 'capybara-screenshot', '~> 1.0.22' + gem 'selenium-webdriver', '~> 3.141' gem 'spring', '~> 2.0.0' gem 'spring-commands-rspec', '~> 1.0.4' - gem 'gitlab-styles', '~> 2.4', require: false + gem 'gitlab-styles', '~> 2.7', require: false # Pin these dependencies, otherwise a new rule could break the CI pipelines - gem 'rubocop', '~> 0.54.0' + gem 'rubocop', '~> 0.69.0' + gem 'rubocop-performance', '~> 1.1.0' gem 'rubocop-rspec', '~> 1.22.1' gem 'scss_lint', '~> 0.56.0', require: false - gem 'haml_lint', '~> 0.28.0', require: false - gem 'simplecov', '~> 0.14.0', require: false + gem 'haml_lint', '~> 0.31.0', require: false + gem 'simplecov', '~> 0.16.1', require: false gem 'bundler-audit', '~> 0.5.0', require: false gem 'benchmark-ips', '~> 2.3.0', require: false @@ -370,6 +374,7 @@ group :development, :test do gem 'activerecord_sane_schema_dumper', '1.0' gem 'stackprof', '~> 0.2.10', require: false + gem 'derailed_benchmarks', require: false gem 'simple_po_parser', '~> 1.1.2', require: false @@ -377,7 +382,7 @@ group :development, :test do end group :test do - gem 'shoulda-matchers', '~> 3.1.2', require: false + gem 'shoulda-matchers', '~> 4.0.1', require: false gem 'email_spec', '~> 2.2.0' gem 'json-schema', '~> 2.8.0' gem 'webmock', '~> 3.5.1' @@ -397,6 +402,9 @@ gem 'html2text' gem 'ruby-prof', '~> 0.17.0' gem 'rbtrace', '~> 0.4', require: false +gem 'memory_profiler', '~> 0.9', require: false +gem 'benchmark-memory', '~> 0.1', require: false +gem 'activerecord-explain-analyze', '~> 0.1', require: false # OAuth gem 'oauth2', '~> 1.4' @@ -419,11 +427,11 @@ group :ed25519 do end # Gitaly GRPC client -gem 'gitaly-proto', '~> 1.22.1', require: 'gitaly' +gem 'gitaly-proto', '~> 1.32.0', require: 'gitaly' -gem 'grpc', '~> 1.15.0' +gem 'grpc', '~> 1.19.0' -gem 'google-protobuf', '~> 3.6' +gem 'google-protobuf', '~> 3.7.1' gem 'toml-rb', '~> 1.0.0', require: false diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile.lock b/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile.lock index d498172b02d..4cebf73f17a 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ce/Gemfile.lock @@ -4,41 +4,46 @@ GEM RedCloth (4.3.2) abstract_type (0.0.7) ace-rails-ap (4.1.2) - actioncable (5.0.7.2) - actionpack (= 5.0.7.2) - nio4r (>= 1.2, < 3.0) + acme-client (2.0.2) + faraday (~> 0.9, >= 0.9.1) + actioncable (5.1.7) + actionpack (= 5.1.7) + nio4r (~> 2.0) websocket-driver (~> 0.6.1) - actionmailer (5.0.7.2) - actionpack (= 5.0.7.2) - actionview (= 5.0.7.2) - activejob (= 5.0.7.2) + actionmailer (5.1.7) + actionpack (= 5.1.7) + actionview (= 5.1.7) + activejob (= 5.1.7) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 2.0) - actionpack (5.0.7.2) - actionview (= 5.0.7.2) - activesupport (= 5.0.7.2) + actionpack (5.1.7) + actionview (= 5.1.7) + activesupport (= 5.1.7) rack (~> 2.0) - rack-test (~> 0.6.3) + rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (5.0.7.2) - activesupport (= 5.0.7.2) + actionview (5.1.7) + activesupport (= 5.1.7) builder (~> 3.1) - erubis (~> 2.7.0) + erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.3) - activejob (5.0.7.2) - activesupport (= 5.0.7.2) + activejob (5.1.7) + activesupport (= 5.1.7) globalid (>= 0.3.6) - activemodel (5.0.7.2) - activesupport (= 5.0.7.2) - activerecord (5.0.7.2) - activemodel (= 5.0.7.2) - activesupport (= 5.0.7.2) - arel (~> 7.0) + activemodel (5.1.7) + activesupport (= 5.1.7) + activerecord (5.1.7) + activemodel (= 5.1.7) + activesupport (= 5.1.7) + arel (~> 8.0) + activerecord-explain-analyze (0.1.0) + activerecord (>= 4) + pg activerecord_sane_schema_dumper (1.0) rails (>= 5, < 6) - activesupport (5.0.7.2) + activesupport (5.1.7) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) @@ -52,13 +57,18 @@ GEM public_suffix (>= 2.0.2, < 4.0) aes_key_wrap (1.0.1) akismet (2.0.0) - arel (7.1.4) + apollo_upload_server (2.0.0.beta.3) + graphql (>= 1.8) + rails (>= 4.2) + arel (8.0.0) asana (0.8.1) faraday (~> 0.9) faraday_middleware (~> 0.9) faraday_middleware-multi_json (~> 0.0) oauth2 (~> 1.0) asciidoctor (1.5.8) + asciidoctor-include-ext (0.3.1) + asciidoctor (>= 1.5.6, < 3.0.0) asciidoctor-plantuml (0.0.8) asciidoctor (~> 1.5) ast (2.4.0) @@ -73,16 +83,18 @@ GEM thread_safe (~> 0.3, >= 0.3.1) babosa (1.0.2) base32 (0.3.2) - batch-loader (1.2.2) + batch-loader (1.4.0) bcrypt (3.1.12) bcrypt_pbkdf (1.0.0) benchmark-ips (2.3.0) + benchmark-memory (0.1.2) + memory_profiler (~> 0.9) better_errors (2.5.0) coderay (>= 1.0.0) erubi (>= 1.0.0) rack (>= 0.9.0) bindata (2.4.3) - binding_ninja (0.2.2) + binding_ninja (0.2.3) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) bootsnap (1.4.1) @@ -100,13 +112,14 @@ GEM bundler (~> 1.2) thor (~> 0.18) byebug (9.1.0) - capybara (2.16.1) + capybara (3.22.0) addressable mini_mime (>= 0.1.3) - nokogiri (>= 1.3.3) - rack (>= 1.0.0) - rack-test (>= 0.5.4) - xpath (~> 2.0) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) capybara-screenshot (1.0.22) capybara (>= 1.0, < 4) launchy @@ -132,9 +145,9 @@ GEM concord (0.1.5) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.1.3) - concurrent-ruby-ext (1.1.3) - concurrent-ruby (= 1.1.3) + concurrent-ruby (1.1.5) + concurrent-ruby-ext (1.1.5) + concurrent-ruby (= 1.1.5) connection_pool (2.2.2) crack (0.4.3) safe_yaml (~> 1.0.0) @@ -150,10 +163,18 @@ GEM html-pipeline declarative (0.0.10) declarative-option (0.1.0) + derailed_benchmarks (1.3.5) + benchmark-ips (~> 2) + get_process_mem (~> 0) + heapy (~> 0) + memory_profiler (~> 0) + rack (>= 1) + rake (> 10, < 13) + thor (~> 0.19) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) device_detector (1.0.0) - devise (4.4.3) + devise (4.6.2) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 6.0) @@ -169,7 +190,7 @@ GEM diffy (3.1.0) discordrb-webhooks-blackst0ne (3.3.0) rest-client (~> 2.0) - docile (1.1.5) + docile (1.3.1) domain_name (0.5.20180417) unf (>= 0.0.5, < 1.0.0) doorkeeper (4.3.2) @@ -185,10 +206,9 @@ GEM mail (~> 2.7) encryptor (3.0.0) equalizer (0.0.11) - erubi (1.7.1) - erubis (2.7.0) + erubi (1.8.0) escape_utils (1.2.1) - et-orbi (1.1.7) + et-orbi (1.2.1) tzinfo eventmachine (1.2.7) excon (0.62.0) @@ -257,20 +277,20 @@ GEM fog-xml (0.1.3) fog-core nokogiri (>= 1.5.11, < 2.0.0) - font-awesome-rails (4.7.0.1) - railties (>= 3.2, < 5.1) + font-awesome-rails (4.7.0.4) + railties (>= 3.2, < 6.0) foreman (0.84.0) thor (~> 0.19.1) formatador (0.2.5) - fugit (1.1.9) - et-orbi (~> 1.1, >= 1.1.7) + fugit (1.2.1) + et-orbi (~> 1.1, >= 1.1.8) raabro (~> 1.1) fuubar (2.2.0) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) gemojione (3.3.0) json - get_process_mem (0.2.0) + get_process_mem (0.2.3) gettext (3.2.9) locale (>= 2.0.5) text (>= 1.3.0) @@ -281,17 +301,24 @@ GEM gettext_i18n_rails (>= 0.7.1) po_to_json (>= 1.0.0) rails (>= 3.2.0) - gitaly-proto (1.22.1) + gitaly-proto (1.32.0) grpc (~> 1.0) github-markup (1.7.0) gitlab-default_value_for (3.1.1) activerecord (>= 3.2.0, < 6.0) + gitlab-labkit (0.3.0) + actionpack (~> 5) + activesupport (~> 5) + grpc (~> 1.19.0) + jaeger-client (~> 0.10) + opentracing (~> 0.4) gitlab-markup (1.7.0) gitlab-sidekiq-fetcher (0.4.0) sidekiq (~> 5) - gitlab-styles (2.5.1) - rubocop (~> 0.54.0) + gitlab-styles (2.7.0) + rubocop (~> 0.69.0) rubocop-gitlab-security (~> 0.1.0) + rubocop-performance (~> 1.1.0) rubocop-rspec (~> 1.19) gitlab_omniauth-ldap (2.1.1) net-ldap (~> 0.16) @@ -311,8 +338,8 @@ GEM mime-types (~> 3.0) representable (~> 3.0) retriable (>= 2.0, < 4.0) - google-protobuf (3.6.1) - googleapis-common-protos-types (1.0.3) + google-protobuf (3.7.1) + googleapis-common-protos-types (1.0.4) google-protobuf (~> 3.0) googleauth (0.6.6) faraday (~> 0.12) @@ -333,8 +360,8 @@ GEM grape-entity (0.7.1) activesupport (>= 4.0) multi_json (>= 1.3.2) - grape-path-helpers (1.0.6) - activesupport (>= 4, < 5.1) + grape-path-helpers (1.1.0) + activesupport grape (~> 1.0) rake (~> 12) grape_logging (1.7.0) @@ -343,13 +370,13 @@ GEM railties sprockets-rails graphql (1.8.1) - grpc (1.15.0) + grpc (1.19.0) google-protobuf (~> 3.1) googleapis-common-protos-types (~> 1.0.0) haml (5.0.4) temple (>= 0.8.0) tilt - haml_lint (0.28.0) + haml_lint (0.31.0) haml (>= 4.0, < 5.1) rainbow rake (>= 10, < 13) @@ -366,6 +393,7 @@ GEM hashie (>= 3.0) health_check (2.6.0) rails (>= 4.0) + heapy (0.1.4) hipchat (1.5.2) httparty mimemagic @@ -399,6 +427,7 @@ GEM jaeger-client (0.10.0) opentracing (~> 0.3) thrift + jaro_winkler (1.5.2) jira-ruby (1.4.1) activesupport multipart-post @@ -436,9 +465,9 @@ GEM rest-client (~> 2.0) launchy (2.4.3) addressable (~> 2.3) - letter_opener (1.4.1) + letter_opener (1.7.0) launchy (~> 2.2) - letter_opener_web (1.3.0) + letter_opener_web (1.3.4) actionmailer (>= 3.2) letter_opener (~> 1.0) railties (>= 3.2) @@ -466,16 +495,17 @@ GEM memoist (0.16.0) memoizable (0.4.2) thread_safe (~> 0.3, >= 0.3.1) + memory_profiler (0.9.13) method_source (0.9.2) mime-types (3.2.2) mime-types-data (~> 3.2015) - mime-types-data (3.2018.0812) + mime-types-data (3.2019.0331) mimemagic (0.3.2) mini_magick (4.8.0) mini_mime (1.0.1) mini_portile2 (2.4.0) minitest (5.11.3) - msgpack (1.2.6) + msgpack (1.2.10) multi_json (1.13.1) multi_xml (0.6.0) multipart-post (2.0.0) @@ -488,7 +518,7 @@ GEM net-ssh (5.0.1) netrc (0.11.0) nio4r (2.3.1) - nokogiri (1.10.1) + nokogiri (1.10.3) mini_portile2 (~> 2.4.0) nokogumbo (1.5.0) nokogiri @@ -543,6 +573,9 @@ GEM omniauth (~> 1.9) omniauth-oauth2-generic (0.2.2) omniauth-oauth2 (~> 1.0) + omniauth-salesforce (1.0.5) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.0) omniauth-saml (1.10.0) omniauth (~> 1.3, >= 1.3.2) ruby-saml (~> 1.7) @@ -551,18 +584,34 @@ GEM omniauth-twitter (1.4.0) omniauth-oauth (~> 1.1) rack + omniauth-ultraauth (0.0.2) + omniauth_openid_connect (~> 0.3.0) omniauth_crowd (2.2.3) activesupport nokogiri (>= 1.4.4) omniauth (~> 1.0) - opentracing (0.4.3) + omniauth_openid_connect (0.3.1) + addressable (~> 2.5) + omniauth (~> 1.3) + openid_connect (~> 1.1) + openid_connect (1.1.6) + activemodel + attr_required (>= 1.0.0) + json-jwt (>= 1.5.0) + rack-oauth2 (>= 1.6.1) + swd (>= 1.0.0) + tzinfo + validate_email + validate_url + webfinger (>= 1.0.1) + opentracing (0.5.0) optimist (3.0.0) org-ruby (0.9.12) rubypants (~> 0.2) orm_adapter (0.5.0) os (1.0.0) - parallel (1.12.1) - parser (2.5.3.0) + parallel (1.17.0) + parser (2.6.3.0) ast (~> 2.4.0) parslet (1.8.2) peek (1.0.1) @@ -591,7 +640,6 @@ GEM pg (1.1.4) po_to_json (1.0.1) json (>= 1.6.0) - powerpack (0.1.1) premailer (1.10.4) addressable css_parser (>= 1.4.10) @@ -613,7 +661,7 @@ GEM pry (~> 0.10) pry-rails (0.3.6) pry (>= 0.10.4) - public_suffix (3.0.3) + public_suffix (3.1.0) puma (3.12.0) puma_worker_killer (0.1.0) get_process_mem (~> 0.2) @@ -636,26 +684,25 @@ GEM rack rack-proxy (0.6.0) rack - rack-test (0.6.3) - rack (>= 1.0) - rails (5.0.7.2) - actioncable (= 5.0.7.2) - actionmailer (= 5.0.7.2) - actionpack (= 5.0.7.2) - actionview (= 5.0.7.2) - activejob (= 5.0.7.2) - activemodel (= 5.0.7.2) - activerecord (= 5.0.7.2) - activesupport (= 5.0.7.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rack-timeout (0.5.1) + rails (5.1.7) + actioncable (= 5.1.7) + actionmailer (= 5.1.7) + actionpack (= 5.1.7) + actionview (= 5.1.7) + activejob (= 5.1.7) + activemodel (= 5.1.7) + activerecord (= 5.1.7) + activesupport (= 5.1.7) bundler (>= 1.3.0) - railties (= 5.0.7.2) + railties (= 5.1.7) sprockets-rails (>= 2.0.0) rails-controller-testing (1.0.2) actionpack (~> 5.x, >= 5.0.1) actionview (~> 5.x, >= 5.0.1) activesupport (~> 5.x) - rails-deprecated_sanitizer (1.0.3) - activesupport (>= 4.2.0.alpha) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) @@ -664,9 +711,9 @@ GEM rails-i18n (5.1.1) i18n (>= 0.7, < 2) railties (>= 5.0, < 6) - railties (5.0.7.2) - actionpack (= 5.0.7.2) - activesupport (= 5.0.7.2) + railties (5.1.7) + actionpack (= 5.1.7) + activesupport (= 5.1.7) method_source rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) @@ -706,7 +753,7 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.6.0) redis (>= 2.2, < 5) - regexp_parser (1.3.0) + regexp_parser (1.5.1) regexp_property_values (0.3.4) representable (3.0.4) declarative (< 0.1.0) @@ -740,8 +787,8 @@ GEM rspec-mocks (3.7.0) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.7.0) - rspec-parameterized (0.4.1) - binding_ninja (>= 0.2.1) + rspec-parameterized (0.4.2) + binding_ninja (>= 0.2.3) parser proc_to_ast rspec (>= 2.13, < 4) @@ -754,8 +801,8 @@ GEM rspec-expectations (~> 3.7.0) rspec-mocks (~> 3.7.0) rspec-support (~> 3.7.0) - rspec-retry (0.4.5) - rspec-core + rspec-retry (0.6.1) + rspec-core (> 3.3) rspec-set (0.1.3) rspec-support (3.7.1) rspec_junit_formatter (0.4.1) @@ -765,15 +812,17 @@ GEM pg rails sqlite3 - rubocop (0.54.0) + rubocop (0.69.0) + jaro_winkler (~> 1.5.1) parallel (~> 1.10) - parser (>= 2.5) - powerpack (~> 0.1) + parser (>= 2.6) rainbow (>= 2.2.2, < 4.0) ruby-progressbar (~> 1.7) - unicode-display_width (~> 1.0, >= 1.0.1) + unicode-display_width (>= 1.4.0, < 1.7) rubocop-gitlab-security (0.1.1) rubocop (>= 0.51) + rubocop-performance (1.1.0) + rubocop (>= 0.67.0) rubocop-rspec (1.22.2) rubocop (>= 0.52.1) ruby-enum (0.7.2) @@ -781,10 +830,10 @@ GEM ruby-fogbugz (0.2.1) crack (~> 0.4) ruby-prof (0.17.0) - ruby-progressbar (1.9.0) + ruby-progressbar (1.10.0) ruby-saml (1.7.2) nokogiri (>= 1.5.10) - ruby_parser (3.11.0) + ruby_parser (3.13.1) sexp_processor (~> 4.9) rubyntlm (0.6.2) rubypants (0.2.0) @@ -800,12 +849,15 @@ GEM sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) - sass-rails (5.0.6) - railties (>= 4.0.0, < 6) - sass (~> 3.1) - sprockets (>= 2.8, < 4.0) - sprockets-rails (>= 2.0, < 4.0) - tilt (>= 1.1, < 3) + sassc (2.0.1) + ffi (~> 1.9) + rake + sassc-rails (2.1.0) + railties (>= 4.0.0) + sassc (>= 2.0) + sprockets (> 3.0) + sprockets-rails + tilt sawyer (0.8.1) addressable (>= 2.3.5, < 2.6) faraday (~> 0.8, < 1.0) @@ -815,18 +867,18 @@ GEM seed-fu (2.3.7) activerecord (>= 3.1) activesupport (>= 3.1) - selenium-webdriver (3.12.0) + selenium-webdriver (3.141.0) childprocess (~> 0.5) - rubyzip (~> 1.2) + rubyzip (~> 1.2, >= 1.2.2) sentry-raven (2.9.0) faraday (>= 0.7.6, < 1.0) settingslogic (2.0.9) - sexp_processor (4.11.0) + sexp_processor (4.12.0) sham_rack (1.3.6) rack - shoulda-matchers (3.1.2) - activesupport (>= 4.0.0) - sidekiq (5.2.5) + shoulda-matchers (4.0.1) + activesupport (>= 4.2.0) + sidekiq (5.2.7) connection_pool (~> 2.2, >= 2.2.2) rack (>= 1.5.0) rack-protection (>= 1.5.0) @@ -840,11 +892,11 @@ GEM jwt (>= 1.5, < 3.0) multi_json (~> 1.10) simple_po_parser (1.1.2) - simplecov (0.14.1) - docile (~> 1.1.0) + simplecov (0.16.1) + docile (~> 1.1) json (>= 1.8, < 3) simplecov-html (~> 0.10.0) - simplecov-html (0.10.0) + simplecov-html (0.10.2) slack-notifier (1.5.1) spring (2.0.2) activesupport (>= 4.2) @@ -867,6 +919,10 @@ GEM state_machines-activerecord (0.5.1) activerecord (>= 4.1, < 6.0) state_machines-activemodel (>= 0.5.0) + swd (1.1.2) + activesupport (>= 3) + attr_required (>= 0.0.5) + httpclient (>= 2.4) sys-filesystem (1.1.6) ffi sysexits (1.2.0) @@ -900,7 +956,7 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.7.5) - unicode-display_width (1.3.2) + unicode-display_width (1.6.0) unicorn (5.4.1) kgio (~> 2.6) raindrops (~> 0.7) @@ -908,14 +964,20 @@ GEM get_process_mem (~> 0) unicorn (>= 4, < 6) uniform_notifier (1.10.0) - unparser (0.4.2) + unparser (0.4.5) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) concord (~> 0.1.5) diff-lcs (~> 1.3) equalizer (~> 0.0.9) - parser (>= 2.3.1.2, < 2.6) + parser (~> 2.6.3) procto (~> 0.0.2) + validate_email (0.1.6) + activemodel (>= 3.0) + mail (>= 2.2.5) + validate_url (1.0.8) + activemodel (>= 3.0.0) + public_suffix validates_hostname (1.0.6) activerecord (>= 3.0) activesupport (>= 3.0) @@ -928,6 +990,9 @@ GEM vmstat (2.3.0) warden (1.2.7) rack (>= 1.0) + webfinger (1.1.0) + activesupport + httpclient (>= 2.4) webmock (3.5.1) addressable (>= 2.3.6) crack (>= 0.3.2) @@ -943,8 +1008,8 @@ GEM rinku with_env (1.1.0) xml-simple (1.1.5) - xpath (2.1.0) - nokogiri (~> 1.3) + xpath (3.2.0) + nokogiri (~> 1.8) PLATFORMS ruby @@ -952,20 +1017,25 @@ PLATFORMS DEPENDENCIES RedCloth (~> 4.3.2) ace-rails-ap (~> 4.1.0) + acme-client (~> 2.0.2) + activerecord-explain-analyze (~> 0.1) activerecord_sane_schema_dumper (= 1.0) acts-as-taggable-on (~> 6.0) addressable (~> 2.5.2) akismet (~> 2.0) + apollo_upload_server (~> 2.0.0.beta3) asana (~> 0.8.1) asciidoctor (~> 1.5.8) + asciidoctor-include-ext (~> 0.3.1) asciidoctor-plantuml (= 0.0.8) attr_encrypted (~> 3.1.0) awesome_print babosa (~> 1.0.2) base32 (~> 0.3.0) - batch-loader (~> 1.2.2) + batch-loader (~> 1.4.0) bcrypt_pbkdf (~> 1.0) benchmark-ips (~> 2.3.0) + benchmark-memory (~> 0.1) better_errors (~> 2.5.0) binding_of_caller (~> 0.8.0) bootsnap (~> 1.4) @@ -974,8 +1044,8 @@ DEPENDENCIES browser (~> 2.5) bullet (~> 5.5.0) bundler-audit (~> 0.5.0) - capybara (~> 2.16.1) - capybara-screenshot (~> 1.0.18) + capybara (~> 3.22.0) + capybara-screenshot (~> 1.0.22) carrierwave (~> 1.3) charlock_holmes (~> 0.7.5) chronic (~> 0.10.2) @@ -986,8 +1056,9 @@ DEPENDENCIES creole (~> 0.5.0) database_cleaner (~> 1.7.0) deckar01-task_list (= 2.2.0) + derailed_benchmarks device_detector - devise (~> 4.4) + devise (~> 4.6) devise-two-factor (~> 3.0.0) diffy (~> 3.1.0) discordrb-webhooks-blackst0ne (~> 3.3) @@ -1014,31 +1085,32 @@ DEPENDENCIES fog-rackspace (~> 0.1.1) font-awesome-rails (~> 4.7) foreman (~> 0.84.0) - fugit (~> 1.1) + fugit (~> 1.2.1) fuubar (~> 2.2.0) gemojione (~> 3.3) gettext (~> 3.2.2) gettext_i18n_rails (~> 1.8.0) gettext_i18n_rails_js (~> 1.3) - gitaly-proto (~> 1.22.1) + gitaly-proto (~> 1.32.0) github-markup (~> 1.7.0) gitlab-default_value_for (~> 3.1.1) + gitlab-labkit (~> 0.3.0) gitlab-markup (~> 1.7.0) gitlab-sidekiq-fetcher (~> 0.4.0) - gitlab-styles (~> 2.4) + gitlab-styles (~> 2.7) gitlab_omniauth-ldap (~> 2.1.1) gon (~> 6.2) google-api-client (~> 0.23) - google-protobuf (~> 3.6) + google-protobuf (~> 3.7.1) gpgme (~> 2.0.18) grape (~> 1.1.0) grape-entity (~> 0.7.1) - grape-path-helpers (~> 1.0) + grape-path-helpers (~> 1.1) grape_logging (~> 1.7) graphiql-rails (~> 1.4.10) graphql (~> 1.8.0) - grpc (~> 1.15.0) - haml_lint (~> 0.28.0) + grpc (~> 1.19.0) + haml_lint (~> 0.31.0) hamlit (~> 2.8.8) hangouts-chat (~> 0.0.5) hashie-forbidden_attributes @@ -1049,7 +1121,6 @@ DEPENDENCIES httparty (~> 0.16.4) icalendar influxdb (~> 0.2) - jaeger-client (~> 0.10.0) jira-ruby (~> 1.4) js_regex (~> 3.1) json-schema (~> 2.8.0) @@ -1057,12 +1128,13 @@ DEPENDENCIES kaminari (~> 1.0) knapsack (~> 1.17) kubeclient (~> 4.2.2) - letter_opener_web (~> 1.3.0) + letter_opener_web (~> 1.3.4) license_finder (~> 5.4) licensee (~> 8.9) lograge (~> 0.5) loofah (~> 2.2) mail_room (~> 0.9.1) + memory_profiler (~> 0.9) method_source (~> 0.8) mimemagic (~> 0.3.2) mini_magick @@ -1071,7 +1143,7 @@ DEPENDENCIES nakayoshi_fork (~> 0.0.4) net-ldap net-ssh (~> 5.0) - nokogiri (~> 1.10.1) + nokogiri (~> 1.10.3) oauth2 (~> 1.4) octokit (~> 4.9) omniauth (~> 1.8) @@ -1085,11 +1157,13 @@ DEPENDENCIES omniauth-google-oauth2 (~> 0.6.0) omniauth-kerberos (~> 0.3.0) omniauth-oauth2-generic (~> 0.2.2) + omniauth-salesforce (~> 1.0.5) omniauth-saml (~> 1.10) omniauth-shibboleth (~> 1.3.0) omniauth-twitter (~> 1.4) + omniauth-ultraauth (~> 0.0.2) omniauth_crowd (~> 2.2.0) - opentracing (~> 0.4.3) + omniauth_openid_connect (~> 0.3.1) org-ruby (~> 0.9.12) peek (~> 1.0.1) peek-gc (~> 0.0.2) @@ -1109,9 +1183,9 @@ DEPENDENCIES rack-cors (~> 1.0.0) rack-oauth2 (~> 1.9.3) rack-proxy (~> 0.6.0) - rails (= 5.0.7.2) + rack-timeout + rails (= 5.1.7) rails-controller-testing - rails-deprecated_sanitizer (~> 1.0.3) rails-i18n (~> 5.1) rainbow (~> 3.0) raindrops (~> 0.18) @@ -1129,11 +1203,12 @@ DEPENDENCIES rqrcode-rails3 (~> 0.1.7) rspec-parameterized rspec-rails (~> 3.7.0) - rspec-retry (~> 0.4.5) + rspec-retry (~> 0.6.1) rspec-set (~> 0.1.3) rspec_junit_formatter rspec_profiling (~> 0.0.5) - rubocop (~> 0.54.0) + rubocop (~> 0.69.0) + rubocop-performance (~> 1.1.0) rubocop-rspec (~> 1.22.1) ruby-fogbugz (~> 0.2.1) ruby-prof (~> 0.17.0) @@ -1142,19 +1217,18 @@ DEPENDENCIES rubyzip (~> 1.2.2) rugged (~> 0.28) sanitize (~> 4.6) - sass (~> 3.5) - sass-rails (~> 5.0.6) + sassc-rails (~> 2.1.0) scss_lint (~> 0.56.0) seed-fu (~> 2.3.7) - selenium-webdriver (~> 3.12) - sentry-raven (~> 2.7) + selenium-webdriver (~> 3.141) + sentry-raven (~> 2.9) settingslogic (~> 2.0.9) sham_rack (~> 1.3.6) - shoulda-matchers (~> 3.1.2) - sidekiq (~> 5.2.1) + shoulda-matchers (~> 4.0.1) + sidekiq (~> 5.2.7) sidekiq-cron (~> 1.0) simple_po_parser (~> 1.1.2) - simplecov (~> 0.14.0) + simplecov (~> 0.16.1) slack-notifier (~> 1.5.1) spring (~> 2.0.0) spring-commands-rspec (~> 1.0.4) diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ce/gemset.nix b/pkgs/applications/version-management/gitlab/rubyEnv-ce/gemset.nix index c24dc185be7..9559f4da985 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ce/gemset.nix +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ce/gemset.nix @@ -15,16 +15,27 @@ }; version = "4.1.2"; }; + acme-client = { + dependencies = ["faraday"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1552fkgaj6qfylwsckgmhck34shjqnfrzymj1ji1kq3r310qqrnp"; + type = "gem"; + }; + version = "2.0.2"; + }; actioncable = { dependencies = ["actionpack" "nio4r" "websocket-driver"]; groups = ["default" "development" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "14qy7aygsr35lhcrw2y0c1jxmkfjlcz10p7qcf9jxzhcfmk5rr3y"; + sha256 = "1hafk0i6nky7c9m95757y2xxhrilww332d21nf9qn46lxnsa2i63"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionmailer = { dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; @@ -32,10 +43,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17whd0cjkb038g14pmkmakp89085j5950jdmfa5hmzqf1djnvc8r"; + sha256 = "1gpv8lv8vk4a36hwdvg2hwbzdcism8hzxxvanmc7ffz8y11y0lzh"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionpack = { dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; @@ -43,21 +54,21 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1wyyj014n0gza5m2gpg9ab9av4yr6psvym047nrn1iz84v6fmkfb"; + sha256 = "0zyi3dc50ii2msdkawaf11y4xw645ig57ha2jfnr8lpr8s1nlh52"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionview = { - dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; + dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; groups = ["default" "development" "mysql" "postgres" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0w96iqknr5jz7gzlcyixq1lvhbzbqijj4iq22pbfzscppbz1anvi"; + sha256 = "0i2j580njb767yhf0k5ih3qqg38ybiah80ai8dsr6kjjw35aj747"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activejob = { dependencies = ["activesupport" "globalid"]; @@ -65,10 +76,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1281zl53a5dpl33vxswrg2jxv7kpcyl7mg5mckn4hcksna60356l"; + sha256 = "0p55853riiq9irmnm76yi9f8shhg260mrg9dikqb19pwsy8lcjpl"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activemodel = { dependencies = ["activesupport"]; @@ -76,10 +87,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xphpzx3ippi8f2h27v2g3n82i39xwx2gq9yamhby9s2a9hh8shl"; + sha256 = "07pw833i6m2i7fjnxgz5jba4dhsl47qx83hfyzl560wmkhyv16vh"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activerecord = { dependencies = ["activemodel" "activesupport" "arel"]; @@ -87,10 +98,21 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jy2amhn2xsd9hy546mw27agh8493nqlgbmzqhlppx7p3nwikw63"; + sha256 = "0i45zqfci974xrza756pvyrjdc7a6q9py87944z5mh75npvln7ss"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; + }; + activerecord-explain-analyze = { + dependencies = ["activerecord" "pg"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0yvz452ww0vn3n6197gx6zklwa591gc7f1m8accvjd9zw8gv3ssx"; + type = "gem"; + }; + version = "0.1.0"; }; activerecord_sane_schema_dumper = { dependencies = ["rails"]; @@ -107,10 +129,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bcbr490ryw6295p0ja7xigcw0ivkdys90x3qbsbs8c4n1zwcp7p"; + sha256 = "0znhiy90hdlx66jqhaycin4qrphrymsw68c36a1an7g481zvfv91"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; acts-as-taggable-on = { dependencies = ["activerecord"]; @@ -157,13 +179,26 @@ }; version = "2.0.0"; }; - arel = { + apollo_upload_server = { + dependencies = ["graphql" "rails"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0l757dkkaxk5fq3368l79jpyzq9a9driricjamhiwhwvh0h7xcyx"; + sha256 = "0riijpyicbkqsr46w4mfhh3pq2yrmakkz8mmgbrfjhzbyzac25na"; type = "gem"; }; - version = "7.1.4"; + version = "2.0.0.beta.3"; + }; + arel = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nw0qbc6ph625p6n3maqq9f527vz3nbl0hk72fbyka8jzsmplxzl"; + type = "gem"; + }; + version = "8.0.0"; }; asana = { dependencies = ["faraday" "faraday_middleware" "faraday_middleware-multi_json" "oauth2"]; @@ -182,6 +217,17 @@ }; version = "1.5.8"; }; + asciidoctor-include-ext = { + dependencies = ["asciidoctor"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1alaqfh31hd98yhqq8fsc50zzqw04p3d83pc35gdx3x9p3j1ds7d"; + type = "gem"; + }; + version = "0.3.1"; + }; asciidoctor-plantuml = { dependencies = ["asciidoctor"]; source = { @@ -260,12 +306,14 @@ version = "0.3.2"; }; batch-loader = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0pwr2hk9x1qx9i2xpkpjwkdjsmm4kamz5f25wizsaw37zb64apjc"; + sha256 = "09jaxxddqpgq8ynwd2gpjq5rkhw00zdjnqisk9qbpjgxzk6f8gwi"; type = "gem"; }; - version = "1.2.2"; + version = "1.4.0"; }; bcrypt = { source = { @@ -291,6 +339,17 @@ }; version = "2.3.0"; }; + benchmark-memory = { + dependencies = ["memory_profiler"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11qw8k6rl79ri00njrf1x9v6vzwgv12rkcvgzvg0sk8pfrkzwyxa"; + type = "gem"; + }; + version = "0.1.2"; + }; better_errors = { dependencies = ["coderay" "erubi" "rack"]; source = { @@ -309,12 +368,14 @@ version = "2.4.3"; }; binding_ninja = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "19dk26qyx433ffa6y48511apc2iw71zw4jnlqxhy0wix9dlxr2ri"; + sha256 = "17fa3sv6p2fw9g8fxpwx1kjhhs28aw41akkba0hlgvk60055b1aa"; type = "gem"; }; - version = "0.2.2"; + version = "0.2.3"; }; binding_of_caller = { dependencies = ["debug_inspector"]; @@ -396,13 +457,15 @@ version = "9.1.0"; }; capybara = { - dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "xpath"]; + dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hkl6p07gf29952biv07fy88vjz46ng2h37wwx5ks0mk9kn8vvvf"; + sha256 = "1y7ncfji4s3h3wdr2hwsrd32k0va92a6lyx2x8w6a3vkbc94kpch"; type = "gem"; }; - version = "2.16.1"; + version = "3.22.0"; }; capybara-screenshot = { dependencies = ["capybara" "launchy"]; @@ -524,21 +587,25 @@ version = "0.1.5"; }; concurrent-ruby = { + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; + sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.5"; }; concurrent-ruby-ext = { dependencies = ["concurrent-ruby"]; + groups = ["default" "mysql" "postgres"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0h7k4wnvbxv7vzb53kaqxbbyhp3m98g2rgymr6n1l9v0jlzcr1i8"; + sha256 = "03ypsv2k581yv0b3f0hzvb3mq6mqj8jlbi32jmkj3k175vbc8hvz"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.5"; }; connection_pool = { source = { @@ -639,6 +706,17 @@ }; version = "0.1.0"; }; + derailed_benchmarks = { + dependencies = ["benchmark-ips" "get_process_mem" "heapy" "memory_profiler" "rack" "rake" "thor"]; + groups = ["development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1c9djg1r2w461h97zmmdsdgnsrxqm4qfyp7gry9qxbav9skrplb8"; + type = "gem"; + }; + version = "1.3.5"; + }; descendants_tracker = { dependencies = ["thread_safe"]; source = { @@ -658,12 +736,14 @@ }; devise = { dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xmxfhym0yxwb0zwmmzhdiykbpyqqm3id02g7rf3vcgbc1lqvdnj"; + sha256 = "04b2p61mqfb6ln8s2lhmvnkd45wjjinykbn9svmhs54kacrrjkcf"; type = "gem"; }; - version = "4.4.3"; + version = "4.6.2"; }; devise-two-factor = { dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; @@ -700,12 +780,14 @@ version = "3.3.0"; }; docile = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; + sha256 = "04d2izkna3ahfn6fwq4xrcafa715d3bbqczxm16fq40fqy87xn17"; type = "gem"; }; - version = "1.1.5"; + version = "1.3.1"; }; domain_name = { dependencies = ["unf"]; @@ -776,20 +858,14 @@ version = "0.0.11"; }; erubi = { + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0bws86na9k565raiz0kk61yy5pxxp0fmwyzpibdwjkq0xzx8q6q1"; + sha256 = "1kagnf6ziahj0d781s6ryy6fwqwa3ad4xbzzj84p9m4nv4c2jir1"; type = "gem"; }; - version = "1.7.1"; - }; - erubis = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; - type = "gem"; - }; - version = "2.7.0"; + version = "1.8.0"; }; escape_utils = { source = { @@ -801,12 +877,14 @@ }; et-orbi = { dependencies = ["tzinfo"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "148z57yshd8rls5b9mkqp9dymba8r4373vlrsk3090lblw5v1ifp"; + sha256 = "1swgjb3h2hs5xflb68837l0vd32masbz9c66b1963mxlnnxf5gsg"; type = "gem"; }; - version = "1.1.7"; + version = "1.2.1"; }; eventmachine = { source = { @@ -1035,12 +1113,14 @@ }; font-awesome-rails = { dependencies = ["railties"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0qc07vj7qyllrj7lr7wl89l5ir0gj104rc7sds2jynzmrqsamnlw"; + sha256 = "11mf7bk2737pyxjwba3a9lpgcxzbp0vgq01n2dn30774zysc90hj"; type = "gem"; }; - version = "4.7.0.1"; + version = "4.7.0.4"; }; foreman = { dependencies = ["thor"]; @@ -1065,10 +1145,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1m9fijppafxrb74v4jgbgni82bykyzpfnrlksfa7bw6sbm7ks4bd"; + sha256 = "1x5h31hl75x0p5s36hinywg18ijlxjhnlb5p02aqcjjkx777rcav"; type = "gem"; }; - version = "1.1.9"; + version = "1.2.1"; }; fuubar = { dependencies = ["rspec-core" "ruby-progressbar"]; @@ -1089,12 +1169,14 @@ version = "3.3.0"; }; get_process_mem = { + groups = ["default" "development" "puma" "test" "unicorn"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; + sha256 = "1bvfjdign16r0zwm2rlfrq0sk1licvmlgbnlpnyckniv5r7i080g"; type = "gem"; }; - version = "0.2.0"; + version = "0.2.3"; }; gettext = { dependencies = ["locale" "text"]; @@ -1129,10 +1211,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "03h59n89nngna6rxs81rigf1bzhhqbvmpzb0fqaks7sskqp70f2s"; + sha256 = "0glqy22p0xfaa3kvvrba04pj1dva8wpzlvhka37cvlqq95djcy19"; type = "gem"; }; - version = "1.22.1"; + version = "1.32.0"; }; github-markup = { source = { @@ -1151,6 +1233,17 @@ }; version = "3.1.1"; }; + gitlab-labkit = { + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0dvapmdc9axm9dq2gg89qrqb318rkrsabpyybrqvcx1ipbi5k3a1"; + type = "gem"; + }; + version = "0.3.0"; + }; gitlab-markup = { groups = ["default"]; platforms = []; @@ -1173,13 +1266,15 @@ version = "0.4.0"; }; gitlab-styles = { - dependencies = ["rubocop" "rubocop-gitlab-security" "rubocop-rspec"]; + dependencies = ["rubocop" "rubocop-gitlab-security" "rubocop-performance" "rubocop-rspec"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0nkciak0qq17pqc667nkdjx0vp8kk9w27d6jmimvi6cjzb38zmqa"; + sha256 = "1vxlvbq4jpq0cfjqippz9d3j73sq9qg3pna5pb0l8jr0rc0xs89y"; type = "gem"; }; - version = "2.5.1"; + version = "2.7.0"; }; gitlab_omniauth-ldap = { dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"]; @@ -1220,21 +1315,25 @@ version = "0.23.4"; }; google-protobuf = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "134d3ini9ymdwxpz445m28ss9x0m6vcpijcdkzvgk4n538wdmppf"; + sha256 = "04988m3hmllg4sl4syjb35x0wzsg7rj1nmvhx3d9ihml22w76gb2"; type = "gem"; }; - version = "3.6.1"; + version = "3.7.1"; }; googleapis-common-protos-types = { dependencies = ["google-protobuf"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "05pimdvigqv1ip4r4qg4i3irpzzfbx5h7hjc82cpvap337gdhsqj"; + sha256 = "0hyr94cafiqj0k8q19hnl658pmbz2b404akikzfv4hdb1j1bwsg1"; type = "gem"; }; - version = "1.0.3"; + version = "1.0.4"; }; googleauth = { dependencies = ["faraday" "jwt" "memoist" "multi_json" "os" "signet"]; @@ -1274,12 +1373,14 @@ }; grape-path-helpers = { dependencies = ["activesupport" "grape" "rake"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "13h5575xfc144wsr48sp3qngpwvh4ikz4r3m55j8jmdr6sa16rbw"; + sha256 = "16l6lrv4h4ls0lrpj35pc00431q2rx6r9n47337qyvprxs3v0a01"; type = "gem"; }; - version = "1.0.6"; + version = "1.1.0"; }; grape_logging = { dependencies = ["grape"]; @@ -1309,12 +1410,14 @@ }; grpc = { dependencies = ["google-protobuf" "googleapis-common-protos-types"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m2wspnm1cfkmhlbp7yqv5bb4vsfh246cm0aavxra67aw4l8plhb"; + sha256 = "1rdywzism5vxz8pnml6xjb9f19diclyy74014z69q01jzqwi1wgs"; type = "gem"; }; - version = "1.15.0"; + version = "1.19.0"; }; haml = { dependencies = ["temple" "tilt"]; @@ -1327,12 +1430,14 @@ }; haml_lint = { dependencies = ["haml" "rainbow" "rake" "rubocop" "sysexits"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "125aj0j84nx5gqm42hfx5d8486higlra423ahgfpsdjwbp399rwv"; + sha256 = "1k6pvb2lc6d72nq01jqmi3mxpp80m9mmbc265kgaxmcnjxqhacb1"; type = "gem"; }; - version = "0.28.0"; + version = "0.31.0"; }; hamlit = { dependencies = ["temple" "thor" "tilt"]; @@ -1385,6 +1490,16 @@ }; version = "2.6.0"; }; + heapy = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r9f38fpgjgaxskkwvsliijj6vfmgsff9pnranvvvzkdl67hk1hw"; + type = "gem"; + }; + version = "0.1.4"; + }; hipchat = { dependencies = ["httparty" "mimemagic"]; groups = ["default"]; @@ -1528,6 +1643,16 @@ }; version = "0.10.0"; }; + jaro_winkler = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zz27z88qznix4r65gd9h56gl177snlfpgv10b0s69vi8qpl909l"; + type = "gem"; + }; + version = "1.5.2"; + }; jira-ruby = { dependencies = ["activesupport" "multipart-post" "oauth"]; source = { @@ -1652,21 +1777,25 @@ }; letter_opener = { dependencies = ["launchy"]; + groups = ["default" "development"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1pcrdbxvp2x5six8fqn8gf09bn9rd3jga76ds205yph5m8fsda21"; + sha256 = "09a7kgsmr10a0hrc9bwxglgqvppjxij9w8bxx91mnvh0ivaw0nq9"; type = "gem"; }; - version = "1.4.1"; + version = "1.7.0"; }; letter_opener_web = { dependencies = ["actionmailer" "letter_opener" "railties"]; + groups = ["development"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "050x5cwqbxj2cydd2pzy9vfhmpgn1w6lfbwjaax1m1vpkn3xg9bv"; + sha256 = "17qhwrkncrrp1bi2f7fbkm5lpnkdsiwy8jcvgr2wa97ck8y4x2bb"; type = "gem"; }; - version = "1.3.0"; + version = "1.3.4"; }; license_finder = { dependencies = ["rubyzip" "thor" "toml" "with_env" "xml-simple"]; @@ -1746,6 +1875,16 @@ }; version = "0.4.2"; }; + memory_profiler = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1xki7jrbzylsmk1brjibmhifb0x70skr55pdq4rvxcyrlnrrvyxz"; + type = "gem"; + }; + version = "0.9.13"; + }; method_source = { source = { remotes = ["https://rubygems.org"]; @@ -1764,12 +1903,14 @@ version = "3.2.2"; }; mime-types-data = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; + sha256 = "1m00pg19cm47n1qlcxgl91ajh2yq0fszvn1vy8fy0s1jkrp9fw4a"; type = "gem"; }; - version = "3.2018.0812"; + version = "3.2019.0331"; }; mimemagic = { source = { @@ -1812,12 +1953,14 @@ version = "5.11.3"; }; msgpack = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0031gd2mjyba6jb7m97sqa149zjkr0vzn2s2gpb3m9nb67gqkm13"; + sha256 = "1w38hilm3dk42dwk8ygiq49bl4in7y80hfqr63hk54mj4gmzi6ch"; type = "gem"; }; - version = "1.2.6"; + version = "1.2.10"; }; multi_json = { source = { @@ -1910,12 +2053,14 @@ }; nokogiri = { dependencies = ["mini_portile2"]; + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; + sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; type = "gem"; }; - version = "1.10.1"; + version = "1.10.3"; }; nokogumbo = { dependencies = ["nokogiri"]; @@ -2086,6 +2231,17 @@ }; version = "0.2.2"; }; + omniauth-salesforce = { + dependencies = ["omniauth" "omniauth-oauth2"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0sr7xmffx6dbsrvnh6spka5ljyzf69iac754xw5r1736py41qhpj"; + type = "gem"; + }; + version = "1.0.5"; + }; omniauth-saml = { dependencies = ["omniauth" "ruby-saml"]; source = { @@ -2113,6 +2269,17 @@ }; version = "1.4.0"; }; + omniauth-ultraauth = { + dependencies = ["omniauth_openid_connect"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1z8gz8ql4vb8y5n4lr67afnjmp23bpqi18dmda5psigvd2jddyn8"; + type = "gem"; + }; + version = "0.0.2"; + }; omniauth_crowd = { dependencies = ["activesupport" "nokogiri" "omniauth"]; source = { @@ -2122,13 +2289,37 @@ }; version = "2.2.3"; }; - opentracing = { + omniauth_openid_connect = { + dependencies = ["addressable" "omniauth" "openid_connect"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xgwc46bd038zzqyasn5grqgk74v8vxmpdwivw2sp0fdldj1d9rf"; + sha256 = "0ja7cjlm4z0k0pwwy64djl58pay3lzkw7im565fybs4a8q4wmacb"; type = "gem"; }; - version = "0.4.3"; + version = "0.3.1"; + }; + openid_connect = { + dependencies = ["activemodel" "attr_required" "json-jwt" "rack-oauth2" "swd" "tzinfo" "validate_email" "validate_url" "webfinger"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r13bv18nyvw0g1nw3fzffvv2si99zj24w0k5zgawf4q6nn5f7vd"; + type = "gem"; + }; + version = "1.1.6"; + }; + opentracing = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11lj1d8vq0hkb5hjz8q4lm82cddrggpbb33dhqfn7rxhwsmxgdfy"; + type = "gem"; + }; + version = "0.5.0"; }; optimist = { source = { @@ -2164,21 +2355,25 @@ version = "1.0.0"; }; parallel = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01hj8v1qnyl5ndrs33g8ld8ibk0rbcqdpkpznr04gkbxd11pqn67"; + sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r"; type = "gem"; }; - version = "1.12.1"; + version = "1.17.0"; }; parser = { dependencies = ["ast"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zjk0w1kjj3xk8ymy1430aa4gg0k8ckphfj88br6il4pm83f0n1f"; + sha256 = "1pnks149x0fzgqiw53qlmvcd8bi746cxdw03sjljby5s97p1fskn"; type = "gem"; }; - version = "2.5.3.0"; + version = "2.6.3.0"; }; parslet = { source = { @@ -2261,14 +2456,6 @@ }; version = "1.0.1"; }; - powerpack = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; - type = "gem"; - }; - version = "0.1.1"; - }; premailer = { dependencies = ["addressable" "css_parser" "htmlentities"]; source = { @@ -2340,12 +2527,14 @@ version = "0.3.6"; }; public_suffix = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; + sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l"; type = "gem"; }; - version = "3.0.3"; + version = "3.1.0"; }; puma = { source = { @@ -2447,12 +2636,24 @@ }; rack-test = { dependencies = ["rack"]; + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; + sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; type = "gem"; }; - version = "0.6.3"; + version = "1.1.0"; + }; + rack-timeout = { + groups = ["puma"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15xph8h6v0lvq9pxm3bc9i9pnk2k68rgdr1mp0dw4l7v1xvhs78a"; + type = "gem"; + }; + version = "0.5.1"; }; rails = { dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; @@ -2460,10 +2661,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0amqbd8kl6vmilfhlkf2w0l33x688jssjbra7s717kjqzb4fmqiw"; + sha256 = "1xfwfhza6lflywaynyxk8jd9ff1cqj0adrh6qnggkqvd8iy54zwd"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; rails-controller-testing = { dependencies = ["actionpack" "actionview" "activesupport"]; @@ -2474,15 +2675,6 @@ }; version = "1.0.2"; }; - rails-deprecated_sanitizer = { - dependencies = ["activesupport"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; - type = "gem"; - }; - version = "1.0.3"; - }; rails-dom-testing = { dependencies = ["activesupport" "nokogiri"]; source = { @@ -2516,10 +2708,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "064w0n33l0wik5i00b4ry7iqv1nb3xhdpjvm55ycx2abpqnlrhjd"; + sha256 = "0wiyswlln344nd72ynn2hm2s1w9g7cnpdff3fphcya7nhavfnx68"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; rainbow = { source = { @@ -2686,12 +2878,14 @@ version = "1.6.0"; }; regexp_parser = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18g5jyg3blsdrz3mc8d87bms6qqn6gcdh1nvdhvgbjdpk9pw21dq"; + sha256 = "0dsgjb3kszk6a82s6gl0h6a8vncjrxmcbk0r4mcxcdcad2b7vb2d"; type = "gem"; }; - version = "1.3.0"; + version = "1.5.1"; }; regexp_property_values = { source = { @@ -2824,12 +3018,14 @@ }; rspec-parameterized = { dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "159yw3mb4dab5kr18a97miyyi7dqmyrfjp3aw6r6j9i4xkc4xk3a"; + sha256 = "1c0892jbaznnldk1wi24qxm70g4zhw2idqx516rhgdzgd7yh5j31"; type = "gem"; }; - version = "0.4.1"; + version = "0.4.2"; }; rspec-rails = { dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; @@ -2842,12 +3038,14 @@ }; rspec-retry = { dependencies = ["rspec-core"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0izvxab7jvk25kaprk0i72asjyh1ip3cm70bgxlm8lpid35qjar6"; + sha256 = "1nnqcg2yd3nn187zbvh4cgx8xsvdk56lz1985qy7232v7i8yidw6"; type = "gem"; }; - version = "0.4.5"; + version = "0.6.1"; }; rspec-set = { source = { @@ -2884,13 +3082,15 @@ version = "0.0.5"; }; rubocop = { - dependencies = ["parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; + dependencies = ["jaro_winkler" "parallel" "parser" "rainbow" "ruby-progressbar" "unicode-display_width"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "106y99lq0fg62k3vk1w5wwb4vq16pnh4l61skc82xck627z0h8is"; + sha256 = "1cmw8ajaiidvrzjcsljh47f4l3lmcazqrzljgalj3szkr8ibkk5i"; type = "gem"; }; - version = "0.54.0"; + version = "0.69.0"; }; rubocop-gitlab-security = { dependencies = ["rubocop"]; @@ -2901,6 +3101,17 @@ }; version = "0.1.1"; }; + rubocop-performance = { + dependencies = ["rubocop"]; + groups = ["development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0azzgj62w24wa4hza1qn7i9b9crxdh907kydlzcvhismx41h3lzk"; + type = "gem"; + }; + version = "1.1.0"; + }; rubocop-rspec = { dependencies = ["rubocop"]; source = { @@ -2937,12 +3148,14 @@ version = "0.17.0"; }; ruby-progressbar = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1igh1xivf5h5g3y5m9b4i4j2mhz2r43kngh4ww3q1r80ch21nbfk"; + sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; type = "gem"; }; - version = "1.9.0"; + version = "1.10.0"; }; ruby-saml = { dependencies = ["nokogiri"]; @@ -2955,12 +3168,14 @@ }; ruby_parser = { dependencies = ["sexp_processor"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mysmdyxhvyn6dhshfxyw762f9asr3kxw45idvw1bh6np31kk4j1"; + sha256 = "0s3hsccsmrirc2hy3r51kl8g9cfmcn7jxaa0asadg1kn78h1sgr7"; type = "gem"; }; - version = "3.11.0"; + version = "3.13.1"; }; rubyntlm = { source = { @@ -3031,14 +3246,27 @@ }; version = "4.0.0"; }; - sass-rails = { - dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; + sassc = { + dependencies = ["ffi" "rake"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0iji20hb8crncz14piss1b29bfb6l89sz3ai5fny3iw39vnxkdcb"; + sha256 = "1sr4825rlwsrl7xrsm0sgalcpf5zgp4i56dbi3qxfa9lhs8r6zh4"; type = "gem"; }; - version = "5.0.6"; + version = "2.0.1"; + }; + sassc-rails = { + dependencies = ["railties" "sassc" "sprockets" "sprockets-rails" "tilt"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18mgdjxdzpbw92zrllynxw7jn7yihi85j3dg7i4f6c39w1scqkbn"; + type = "gem"; + }; + version = "2.1.0"; }; sawyer = { dependencies = ["addressable" "faraday"]; @@ -3069,12 +3297,14 @@ }; selenium-webdriver = { dependencies = ["childprocess" "rubyzip"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07bl3wjkf254r3ljfl4qdazz5aw60s6nqjwrbbgq754j9b7226kz"; + sha256 = "114hv2ajmh6d186v2w887yqakqcxyxq367l0iakrrpvwviknrhfs"; type = "gem"; }; - version = "3.12.0"; + version = "3.141.0"; }; sentry-raven = { dependencies = ["faraday"]; @@ -3096,12 +3326,14 @@ version = "2.0.9"; }; sexp_processor = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vnmphfrd86694x5k7rxddbhbvv5rqbglsc34kfryy4jqhbzz42c"; + sha256 = "0w24rgmyjf7yz0xr2qhbr8z48h4m6gvbggr8nc1pldwn9rbi04b7"; type = "gem"; }; - version = "4.11.0"; + version = "4.12.0"; }; sham_rack = { dependencies = ["rack"]; @@ -3114,21 +3346,25 @@ }; shoulda-matchers = { dependencies = ["activesupport"]; + groups = ["test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zvv94pqk5b5my3w1shdz7h34xf2ldhg5k4qfdpbwi2iy0j9zw2a"; + sha256 = "1s6a2i39lsqq8rrkk2pddqcb10bsihxy3v5gpnc2gk8xakj1brdq"; type = "gem"; }; - version = "3.1.2"; + version = "4.0.1"; }; sidekiq = { dependencies = ["connection_pool" "rack" "rack-protection" "redis"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1caiq5f5z5vzfria554n04pcbwc8zixf1fpavaksly9zywr3pc29"; + sha256 = "131zv8i341bkacxx7n1id2cmblkbs379farnibqg8c7bycd1iajq"; type = "gem"; }; - version = "5.2.5"; + version = "5.2.7"; }; sidekiq-cron = { dependencies = ["fugit" "sidekiq"]; @@ -3158,20 +3394,24 @@ }; simplecov = { dependencies = ["docile" "json" "simplecov-html"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1r9fnsnsqj432cmrpafryn8nif3x0qg9mdnvrcf0wr01prkdlnww"; + sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; type = "gem"; }; - version = "0.14.1"; + version = "0.16.1"; }; simplecov-html = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; + sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; type = "gem"; }; - version = "0.10.0"; + version = "0.10.2"; }; slack-notifier = { source = { @@ -3267,6 +3507,17 @@ }; version = "0.5.1"; }; + swd = { + dependencies = ["activesupport" "attr_required" "httpclient"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1s2vjb6f13za7p1iycl2p73d3p202xa6xny9fjrp8ynwsqix7lyd"; + type = "gem"; + }; + version = "1.1.2"; + }; sys-filesystem = { dependencies = ["ffi"]; source = { @@ -3444,12 +3695,14 @@ version = "0.0.7.5"; }; unicode-display_width = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0x31fgv1acywbb50prp7y4fr677c2d9gsl6wxmfcrlxbwz7nxn5n"; + sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w"; type = "gem"; }; - version = "1.3.2"; + version = "1.6.0"; }; unicorn = { dependencies = ["kgio" "raindrops"]; @@ -3479,12 +3732,36 @@ }; unparser = { dependencies = ["abstract_type" "adamantium" "concord" "diff-lcs" "equalizer" "parser" "procto"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0w662glqi7hwmfvx0smxckxgc7kw5bsqhqz0pyvalbyv1gc0gs2x"; + sha256 = "03vjj74kj86vlazhiclf63kf6gajs66k8ni34q70fdhf97d7b60c"; type = "gem"; }; - version = "0.4.2"; + version = "0.4.5"; + }; + validate_email = { + dependencies = ["activemodel" "mail"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r1fz29l699arka177c9xw7409d1a3ff95bf7a6pmc97slb91zlx"; + type = "gem"; + }; + version = "0.1.6"; + }; + validate_url = { + dependencies = ["activemodel" "public_suffix"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1k0bfxzvdcf1nrqhvnyhijc4mwab9wn4qvqb0ynq6p8dj0f866zi"; + type = "gem"; + }; + version = "1.0.8"; }; validates_hostname = { dependencies = ["activerecord" "activesupport"]; @@ -3529,6 +3806,17 @@ }; version = "1.2.7"; }; + webfinger = { + dependencies = ["activesupport" "httpclient"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m0jh8k7c0ifh2jhbn7ihqrmn5fi754wflva97zgy70hpdvxyjar"; + type = "gem"; + }; + version = "1.1.0"; + }; webmock = { dependencies = ["addressable" "crack" "hashdiff"]; source = { @@ -3591,11 +3879,13 @@ }; xpath = { dependencies = ["nokogiri"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ha626m6fh50fpilb9pdnmq9xl586w7c0zyidg895c3iq13rqgyw"; + sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd"; type = "gem"; }; - version = "2.1.0"; + version = "3.2.0"; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile b/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile index 52e802ef524..816f16cba87 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile @@ -1,7 +1,6 @@ source 'https://rubygems.org' -gem 'rails', '5.0.7.2' -gem 'rails-deprecated_sanitizer', '~> 1.0.3' +gem 'rails', '5.1.7' # Improves copy-on-write performance for MRI gem 'nakayoshi_fork', '~> 0.0.4' @@ -19,12 +18,12 @@ gem 'mysql2', '~> 0.4.10', group: :mysql gem 'pg', '~> 1.1', group: :postgres gem 'rugged', '~> 0.28' -gem 'grape-path-helpers', '~> 1.0' +gem 'grape-path-helpers', '~> 1.1' gem 'faraday', '~> 0.12' # Authentication libraries -gem 'devise', '~> 4.4' +gem 'devise', '~> 4.6' gem 'doorkeeper', '~> 4.3' gem 'doorkeeper-openid_connect', '~> 1.5' gem 'omniauth', '~> 1.8' @@ -42,6 +41,9 @@ gem 'omniauth-shibboleth', '~> 1.3.0' gem 'omniauth-twitter', '~> 1.4' gem 'omniauth_crowd', '~> 2.2.0' gem 'omniauth-authentiq', '~> 0.3.3' +gem 'omniauth_openid_connect', '~> 0.3.1' +gem "omniauth-ultraauth", '~> 0.0.2' +gem 'omniauth-salesforce', '~> 1.0.5' gem 'rack-oauth2', '~> 1.9.3' gem 'jwt', '~> 2.1.0' @@ -61,6 +63,8 @@ gem 'u2f', '~> 0.2.1' # GitLab Pages gem 'validates_hostname', '~> 1.0.6' gem 'rubyzip', '~> 1.2.2', require: 'zip' +# GitLab Pages letsencrypt support +gem 'acme-client', '~> 2.0.2' # Browser detection gem 'browser', '~> 2.5' @@ -82,6 +86,7 @@ gem 'rack-cors', '~> 1.0.0', require: 'rack/cors' # GraphQL API gem 'graphql', '~> 1.8.0' gem 'graphiql-rails', '~> 1.4.10' +gem 'apollo_upload_server', '~> 2.0.0.beta3' # Disable strong_params so that Mash does not respond to :permitted? gem 'hashie-forbidden_attributes' @@ -118,7 +123,7 @@ gem 'seed-fu', '~> 2.3.7' # Search gem 'elasticsearch-model', '~> 0.1.9' -gem 'elasticsearch-rails', '~> 0.1.9' +gem 'elasticsearch-rails', '~> 0.1.9', require: 'elasticsearch/rails/instrumentation' gem 'elasticsearch-api', '5.0.3' gem 'aws-sdk' gem 'faraday_middleware-aws-signers-v4' @@ -135,11 +140,12 @@ gem 'org-ruby', '~> 0.9.12' gem 'creole', '~> 0.5.0' gem 'wikicloth', '0.8.1' gem 'asciidoctor', '~> 1.5.8' +gem 'asciidoctor-include-ext', '~> 0.3.1', require: false gem 'asciidoctor-plantuml', '0.0.8' gem 'rouge', '~> 3.1' gem 'truncato', '~> 0.7.11' gem 'bootstrap_form', '~> 4.2.0' -gem 'nokogiri', '~> 1.10.1' +gem 'nokogiri', '~> 1.10.3' gem 'escape_utils', '~> 1.1' # Calendar rendering @@ -159,6 +165,7 @@ end group :puma do gem 'puma', '~> 3.12', require: false gem 'puma_worker_killer', require: false + gem 'rack-timeout', require: false end # State machine @@ -168,13 +175,13 @@ gem 'state_machines-activerecord', '~> 0.5.1' gem 'acts-as-taggable-on', '~> 6.0' # Background jobs -gem 'sidekiq', '~> 5.2.1' +gem 'sidekiq', '~> 5.2.7' gem 'sidekiq-cron', '~> 1.0' gem 'redis-namespace', '~> 1.6.0' gem 'gitlab-sidekiq-fetcher', '~> 0.4.0', require: 'sidekiq-reliable-fetch' # Cron Parser -gem 'fugit', '~> 1.1' +gem 'fugit', '~> 1.2.1' # HTTP requests gem 'httparty', '~> 0.16.4' @@ -267,8 +274,7 @@ gem 'chronic_duration', '~> 0.10.6' gem 'webpack-rails', '~> 0.9.10' gem 'rack-proxy', '~> 0.6.0' -gem 'sass-rails', '~> 5.0.6' -gem 'sass', '~> 3.5' +gem 'sassc-rails', '~> 2.1.0' gem 'uglifier', '~> 2.7.2' gem 'addressable', '~> 2.5.2' @@ -282,10 +288,13 @@ gem 'base32', '~> 0.3.0' gem "gitlab-license", "~> 1.0" # Sentry integration -gem 'sentry-raven', '~> 2.7' +gem 'sentry-raven', '~> 2.9' gem 'premailer-rails', '~> 1.9.7' +# LabKit: Tracing and Correlation +gem 'gitlab-labkit', '~> 0.3.0' + # I18n gem 'ruby_parser', '~> 3.8', require: false gem 'rails-i18n', '~> 5.1' @@ -293,7 +302,7 @@ gem 'gettext_i18n_rails', '~> 1.8.0' gem 'gettext_i18n_rails_js', '~> 1.3' gem 'gettext', '~> 3.2.2', require: false, group: :development -gem 'batch-loader', '~> 1.2.2' +gem 'batch-loader', '~> 1.4.0' # Perf bar gem 'peek', '~> 1.0.1' @@ -316,17 +325,11 @@ group :metrics do gem 'raindrops', '~> 0.18' end -group :tracing do - # OpenTracing - gem 'opentracing', '~> 0.4.3' - gem 'jaeger-client', '~> 0.10.0' -end - group :development do gem 'foreman', '~> 0.84.0' gem 'brakeman', '~> 4.2', require: false - gem 'letter_opener_web', '~> 1.3.0' + gem 'letter_opener_web', '~> 1.3.4' gem 'rblineprof', '~> 0.3.6', platform: :mri, require: false # Better errors handler @@ -349,7 +352,7 @@ group :development, :test do gem 'database_cleaner', '~> 1.7.0' gem 'factory_bot_rails', '~> 4.8.2' gem 'rspec-rails', '~> 3.7.0' - gem 'rspec-retry', '~> 0.4.5' + gem 'rspec-retry', '~> 0.6.1' gem 'rspec_profiling', '~> 0.0.5' gem 'rspec-set', '~> 0.1.3' gem 'rspec-parameterized', require: false @@ -360,21 +363,22 @@ group :development, :test do # Generate Fake data gem 'ffaker', '~> 2.10' - gem 'capybara', '~> 2.16.1' - gem 'capybara-screenshot', '~> 1.0.18' - gem 'selenium-webdriver', '~> 3.12' + gem 'capybara', '~> 3.22.0' + gem 'capybara-screenshot', '~> 1.0.22' + gem 'selenium-webdriver', '~> 3.141' gem 'spring', '~> 2.0.0' gem 'spring-commands-rspec', '~> 1.0.4' - gem 'gitlab-styles', '~> 2.4', require: false + gem 'gitlab-styles', '~> 2.7', require: false # Pin these dependencies, otherwise a new rule could break the CI pipelines - gem 'rubocop', '~> 0.54.0' + gem 'rubocop', '~> 0.69.0' + gem 'rubocop-performance', '~> 1.1.0' gem 'rubocop-rspec', '~> 1.22.1' gem 'scss_lint', '~> 0.56.0', require: false - gem 'haml_lint', '~> 0.28.0', require: false - gem 'simplecov', '~> 0.14.0', require: false + gem 'haml_lint', '~> 0.31.0', require: false + gem 'simplecov', '~> 0.16.1', require: false gem 'bundler-audit', '~> 0.5.0', require: false gem 'benchmark-ips', '~> 2.3.0', require: false @@ -385,6 +389,7 @@ group :development, :test do gem 'activerecord_sane_schema_dumper', '1.0' gem 'stackprof', '~> 0.2.10', require: false + gem 'derailed_benchmarks', require: false gem 'simple_po_parser', '~> 1.1.2', require: false @@ -392,7 +397,7 @@ group :development, :test do end group :test do - gem 'shoulda-matchers', '~> 3.1.2', require: false + gem 'shoulda-matchers', '~> 4.0.1', require: false gem 'email_spec', '~> 2.2.0' gem 'json-schema', '~> 2.8.0' gem 'webmock', '~> 3.5.1' @@ -412,6 +417,9 @@ gem 'html2text' gem 'ruby-prof', '~> 0.17.0' gem 'rbtrace', '~> 0.4', require: false +gem 'memory_profiler', '~> 0.9', require: false +gem 'benchmark-memory', '~> 0.1', require: false +gem 'activerecord-explain-analyze', '~> 0.1', require: false # OAuth gem 'oauth2', '~> 1.4' @@ -437,11 +445,11 @@ group :ed25519 do end # Gitaly GRPC client -gem 'gitaly-proto', '~> 1.22.1', require: 'gitaly' +gem 'gitaly-proto', '~> 1.32.0', require: 'gitaly' -gem 'grpc', '~> 1.15.0' +gem 'grpc', '~> 1.19.0' -gem 'google-protobuf', '~> 3.6' +gem 'google-protobuf', '~> 3.7.1' gem 'toml-rb', '~> 1.0.0', require: false diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile.lock b/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile.lock index 72bc2c47340..cc0f04a4553 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile.lock +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ee/Gemfile.lock @@ -4,41 +4,46 @@ GEM RedCloth (4.3.2) abstract_type (0.0.7) ace-rails-ap (4.1.2) - actioncable (5.0.7.2) - actionpack (= 5.0.7.2) - nio4r (>= 1.2, < 3.0) + acme-client (2.0.2) + faraday (~> 0.9, >= 0.9.1) + actioncable (5.1.7) + actionpack (= 5.1.7) + nio4r (~> 2.0) websocket-driver (~> 0.6.1) - actionmailer (5.0.7.2) - actionpack (= 5.0.7.2) - actionview (= 5.0.7.2) - activejob (= 5.0.7.2) + actionmailer (5.1.7) + actionpack (= 5.1.7) + actionview (= 5.1.7) + activejob (= 5.1.7) mail (~> 2.5, >= 2.5.4) rails-dom-testing (~> 2.0) - actionpack (5.0.7.2) - actionview (= 5.0.7.2) - activesupport (= 5.0.7.2) + actionpack (5.1.7) + actionview (= 5.1.7) + activesupport (= 5.1.7) rack (~> 2.0) - rack-test (~> 0.6.3) + rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.2) - actionview (5.0.7.2) - activesupport (= 5.0.7.2) + actionview (5.1.7) + activesupport (= 5.1.7) builder (~> 3.1) - erubis (~> 2.7.0) + erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.0.3) - activejob (5.0.7.2) - activesupport (= 5.0.7.2) + activejob (5.1.7) + activesupport (= 5.1.7) globalid (>= 0.3.6) - activemodel (5.0.7.2) - activesupport (= 5.0.7.2) - activerecord (5.0.7.2) - activemodel (= 5.0.7.2) - activesupport (= 5.0.7.2) - arel (~> 7.0) + activemodel (5.1.7) + activesupport (= 5.1.7) + activerecord (5.1.7) + activemodel (= 5.1.7) + activesupport (= 5.1.7) + arel (~> 8.0) + activerecord-explain-analyze (0.1.0) + activerecord (>= 4) + pg activerecord_sane_schema_dumper (1.0) rails (>= 5, < 6) - activesupport (5.0.7.2) + activesupport (5.1.7) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) minitest (~> 5.1) @@ -52,13 +57,18 @@ GEM public_suffix (>= 2.0.2, < 4.0) aes_key_wrap (1.0.1) akismet (2.0.0) - arel (7.1.4) + apollo_upload_server (2.0.0.beta.3) + graphql (>= 1.8) + rails (>= 4.2) + arel (8.0.0) asana (0.8.1) faraday (~> 0.9) faraday_middleware (~> 0.9) faraday_middleware-multi_json (~> 0.0) oauth2 (~> 1.0) asciidoctor (1.5.8) + asciidoctor-include-ext (0.3.1) + asciidoctor (>= 1.5.6, < 3.0.0) asciidoctor-plantuml (0.0.8) asciidoctor (~> 1.5) ast (2.4.0) @@ -81,16 +91,18 @@ GEM thread_safe (~> 0.3, >= 0.3.1) babosa (1.0.2) base32 (0.3.2) - batch-loader (1.2.2) + batch-loader (1.4.0) bcrypt (3.1.12) bcrypt_pbkdf (1.0.0) benchmark-ips (2.3.0) + benchmark-memory (0.1.2) + memory_profiler (~> 0.9) better_errors (2.5.0) coderay (>= 1.0.0) erubi (>= 1.0.0) rack (>= 0.9.0) bindata (2.4.3) - binding_ninja (0.2.2) + binding_ninja (0.2.3) binding_of_caller (0.8.0) debug_inspector (>= 0.0.1) bootsnap (1.4.1) @@ -108,13 +120,14 @@ GEM bundler (~> 1.2) thor (~> 0.18) byebug (9.1.0) - capybara (2.16.1) + capybara (3.22.0) addressable mini_mime (>= 0.1.3) - nokogiri (>= 1.3.3) - rack (>= 1.0.0) - rack-test (>= 0.5.4) - xpath (~> 2.0) + nokogiri (~> 1.8) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (~> 1.5) + xpath (~> 3.2) capybara-screenshot (1.0.22) capybara (>= 1.0, < 4) launchy @@ -140,9 +153,9 @@ GEM concord (0.1.5) adamantium (~> 0.2.0) equalizer (~> 0.0.9) - concurrent-ruby (1.1.3) - concurrent-ruby-ext (1.1.3) - concurrent-ruby (= 1.1.3) + concurrent-ruby (1.1.5) + concurrent-ruby-ext (1.1.5) + concurrent-ruby (= 1.1.5) connection_pool (2.2.2) contracts (0.11.0) crack (0.4.3) @@ -159,10 +172,18 @@ GEM html-pipeline declarative (0.0.10) declarative-option (0.1.0) + derailed_benchmarks (1.3.5) + benchmark-ips (~> 2) + get_process_mem (~> 0) + heapy (~> 0) + memory_profiler (~> 0) + rack (>= 1) + rake (> 10, < 13) + thor (~> 0.19) descendants_tracker (0.0.4) thread_safe (~> 0.3, >= 0.3.1) device_detector (1.0.0) - devise (4.4.3) + devise (4.6.2) bcrypt (~> 3.0) orm_adapter (~> 0.1) railties (>= 4.1.0, < 6.0) @@ -178,7 +199,7 @@ GEM diffy (3.1.0) discordrb-webhooks-blackst0ne (3.3.0) rest-client (~> 2.0) - docile (1.1.5) + docile (1.3.1) domain_name (0.5.20180417) unf (>= 0.0.5, < 1.0.0) doorkeeper (4.3.2) @@ -207,10 +228,9 @@ GEM mail (~> 2.7) encryptor (3.0.0) equalizer (0.0.11) - erubi (1.7.1) - erubis (2.7.0) + erubi (1.8.0) escape_utils (1.2.1) - et-orbi (1.1.7) + et-orbi (1.2.1) tzinfo eventmachine (1.2.7) excon (0.62.0) @@ -282,20 +302,20 @@ GEM fog-xml (0.1.3) fog-core nokogiri (>= 1.5.11, < 2.0.0) - font-awesome-rails (4.7.0.1) - railties (>= 3.2, < 5.1) + font-awesome-rails (4.7.0.4) + railties (>= 3.2, < 6.0) foreman (0.84.0) thor (~> 0.19.1) formatador (0.2.5) - fugit (1.1.9) - et-orbi (~> 1.1, >= 1.1.7) + fugit (1.2.1) + et-orbi (~> 1.1, >= 1.1.8) raabro (~> 1.1) fuubar (2.2.0) rspec-core (~> 3.0) ruby-progressbar (~> 1.4) gemojione (3.3.0) json - get_process_mem (0.2.0) + get_process_mem (0.2.3) gettext (3.2.9) locale (>= 2.0.5) text (>= 1.3.0) @@ -306,18 +326,25 @@ GEM gettext_i18n_rails (>= 0.7.1) po_to_json (>= 1.0.0) rails (>= 3.2.0) - gitaly-proto (1.22.1) + gitaly-proto (1.32.0) grpc (~> 1.0) github-markup (1.7.0) gitlab-default_value_for (3.1.1) activerecord (>= 3.2.0, < 6.0) + gitlab-labkit (0.3.0) + actionpack (~> 5) + activesupport (~> 5) + grpc (~> 1.19.0) + jaeger-client (~> 0.10) + opentracing (~> 0.4) gitlab-license (1.0.0) gitlab-markup (1.7.0) gitlab-sidekiq-fetcher (0.4.0) sidekiq (~> 5) - gitlab-styles (2.5.1) - rubocop (~> 0.54.0) + gitlab-styles (2.7.0) + rubocop (~> 0.69.0) rubocop-gitlab-security (~> 0.1.0) + rubocop-performance (~> 1.1.0) rubocop-rspec (~> 1.19) gitlab_omniauth-ldap (2.1.1) net-ldap (~> 0.16) @@ -337,8 +364,8 @@ GEM mime-types (~> 3.0) representable (~> 3.0) retriable (>= 2.0, < 4.0) - google-protobuf (3.6.1) - googleapis-common-protos-types (1.0.3) + google-protobuf (3.7.1) + googleapis-common-protos-types (1.0.4) google-protobuf (~> 3.0) googleauth (0.6.6) faraday (~> 0.12) @@ -359,8 +386,8 @@ GEM grape-entity (0.7.1) activesupport (>= 4.0) multi_json (>= 1.3.2) - grape-path-helpers (1.0.6) - activesupport (>= 4, < 5.1) + grape-path-helpers (1.1.0) + activesupport grape (~> 1.0) rake (~> 12) grape_logging (1.7.0) @@ -369,7 +396,7 @@ GEM railties sprockets-rails graphql (1.8.1) - grpc (1.15.0) + grpc (1.19.0) google-protobuf (~> 3.1) googleapis-common-protos-types (~> 1.0.0) gssapi (1.2.0) @@ -377,7 +404,7 @@ GEM haml (5.0.4) temple (>= 0.8.0) tilt - haml_lint (0.28.0) + haml_lint (0.31.0) haml (>= 4.0, < 5.1) rainbow rake (>= 10, < 13) @@ -394,6 +421,7 @@ GEM hashie (>= 3.0) health_check (2.6.0) rails (>= 4.0) + heapy (0.1.4) hipchat (1.5.2) httparty mimemagic @@ -427,6 +455,7 @@ GEM jaeger-client (0.10.0) opentracing (~> 0.3) thrift + jaro_winkler (1.5.2) jira-ruby (1.4.1) activesupport multipart-post @@ -465,9 +494,9 @@ GEM rest-client (~> 2.0) launchy (2.4.3) addressable (~> 2.3) - letter_opener (1.4.1) + letter_opener (1.7.0) launchy (~> 2.2) - letter_opener_web (1.3.0) + letter_opener_web (1.3.4) actionmailer (>= 3.2) letter_opener (~> 1.0) railties (>= 3.2) @@ -495,16 +524,17 @@ GEM memoist (0.16.0) memoizable (0.4.2) thread_safe (~> 0.3, >= 0.3.1) + memory_profiler (0.9.13) method_source (0.9.2) mime-types (3.2.2) mime-types-data (~> 3.2015) - mime-types-data (3.2018.0812) + mime-types-data (3.2019.0331) mimemagic (0.3.2) mini_magick (4.8.0) mini_mime (1.0.1) mini_portile2 (2.4.0) minitest (5.11.3) - msgpack (1.2.6) + msgpack (1.2.10) multi_json (1.13.1) multi_xml (0.6.0) multipart-post (2.0.0) @@ -519,7 +549,7 @@ GEM net-ssh (5.0.1) netrc (0.11.0) nio4r (2.3.1) - nokogiri (1.10.1) + nokogiri (1.10.3) mini_portile2 (~> 2.4.0) nokogumbo (1.5.0) nokogiri @@ -574,6 +604,9 @@ GEM omniauth (~> 1.9) omniauth-oauth2-generic (0.2.2) omniauth-oauth2 (~> 1.0) + omniauth-salesforce (1.0.5) + omniauth (~> 1.0) + omniauth-oauth2 (~> 1.0) omniauth-saml (1.10.0) omniauth (~> 1.3, >= 1.3.2) ruby-saml (~> 1.7) @@ -582,18 +615,34 @@ GEM omniauth-twitter (1.4.0) omniauth-oauth (~> 1.1) rack + omniauth-ultraauth (0.0.2) + omniauth_openid_connect (~> 0.3.0) omniauth_crowd (2.2.3) activesupport nokogiri (>= 1.4.4) omniauth (~> 1.0) - opentracing (0.4.3) + omniauth_openid_connect (0.3.1) + addressable (~> 2.5) + omniauth (~> 1.3) + openid_connect (~> 1.1) + openid_connect (1.1.6) + activemodel + attr_required (>= 1.0.0) + json-jwt (>= 1.5.0) + rack-oauth2 (>= 1.6.1) + swd (>= 1.0.0) + tzinfo + validate_email + validate_url + webfinger (>= 1.0.1) + opentracing (0.5.0) optimist (3.0.0) org-ruby (0.9.12) rubypants (~> 0.2) orm_adapter (0.5.0) os (1.0.0) - parallel (1.12.1) - parser (2.5.3.0) + parallel (1.17.0) + parser (2.6.3.0) ast (~> 2.4.0) parslet (1.8.2) peek (1.0.1) @@ -622,7 +671,6 @@ GEM pg (1.1.4) po_to_json (1.0.1) json (>= 1.6.0) - powerpack (0.1.1) premailer (1.10.4) addressable css_parser (>= 1.4.10) @@ -644,7 +692,7 @@ GEM pry (~> 0.10) pry-rails (0.3.6) pry (>= 0.10.4) - public_suffix (3.0.3) + public_suffix (3.1.0) puma (3.12.0) puma_worker_killer (0.1.0) get_process_mem (~> 0.2) @@ -667,26 +715,25 @@ GEM rack rack-proxy (0.6.0) rack - rack-test (0.6.3) - rack (>= 1.0) - rails (5.0.7.2) - actioncable (= 5.0.7.2) - actionmailer (= 5.0.7.2) - actionpack (= 5.0.7.2) - actionview (= 5.0.7.2) - activejob (= 5.0.7.2) - activemodel (= 5.0.7.2) - activerecord (= 5.0.7.2) - activesupport (= 5.0.7.2) + rack-test (1.1.0) + rack (>= 1.0, < 3) + rack-timeout (0.5.1) + rails (5.1.7) + actioncable (= 5.1.7) + actionmailer (= 5.1.7) + actionpack (= 5.1.7) + actionview (= 5.1.7) + activejob (= 5.1.7) + activemodel (= 5.1.7) + activerecord (= 5.1.7) + activesupport (= 5.1.7) bundler (>= 1.3.0) - railties (= 5.0.7.2) + railties (= 5.1.7) sprockets-rails (>= 2.0.0) rails-controller-testing (1.0.2) actionpack (~> 5.x, >= 5.0.1) actionview (~> 5.x, >= 5.0.1) activesupport (~> 5.x) - rails-deprecated_sanitizer (1.0.3) - activesupport (>= 4.2.0.alpha) rails-dom-testing (2.0.3) activesupport (>= 4.2.0) nokogiri (>= 1.6) @@ -695,9 +742,9 @@ GEM rails-i18n (5.1.1) i18n (>= 0.7, < 2) railties (>= 5.0, < 6) - railties (5.0.7.2) - actionpack (= 5.0.7.2) - activesupport (= 5.0.7.2) + railties (5.1.7) + actionpack (= 5.1.7) + activesupport (= 5.1.7) method_source rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) @@ -737,7 +784,7 @@ GEM redis-store (>= 1.2, < 2) redis-store (1.6.0) redis (>= 2.2, < 5) - regexp_parser (1.3.0) + regexp_parser (1.5.1) regexp_property_values (0.3.4) representable (3.0.4) declarative (< 0.1.0) @@ -771,8 +818,8 @@ GEM rspec-mocks (3.7.0) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.7.0) - rspec-parameterized (0.4.1) - binding_ninja (>= 0.2.1) + rspec-parameterized (0.4.2) + binding_ninja (>= 0.2.3) parser proc_to_ast rspec (>= 2.13, < 4) @@ -785,8 +832,8 @@ GEM rspec-expectations (~> 3.7.0) rspec-mocks (~> 3.7.0) rspec-support (~> 3.7.0) - rspec-retry (0.4.5) - rspec-core + rspec-retry (0.6.1) + rspec-core (> 3.3) rspec-set (0.1.3) rspec-support (3.7.1) rspec_junit_formatter (0.4.1) @@ -796,15 +843,17 @@ GEM pg rails sqlite3 - rubocop (0.54.0) + rubocop (0.69.0) + jaro_winkler (~> 1.5.1) parallel (~> 1.10) - parser (>= 2.5) - powerpack (~> 0.1) + parser (>= 2.6) rainbow (>= 2.2.2, < 4.0) ruby-progressbar (~> 1.7) - unicode-display_width (~> 1.0, >= 1.0.1) + unicode-display_width (>= 1.4.0, < 1.7) rubocop-gitlab-security (0.1.1) rubocop (>= 0.51) + rubocop-performance (1.1.0) + rubocop (>= 0.67.0) rubocop-rspec (1.22.2) rubocop (>= 0.52.1) ruby-enum (0.7.2) @@ -812,10 +861,10 @@ GEM ruby-fogbugz (0.2.1) crack (~> 0.4) ruby-prof (0.17.0) - ruby-progressbar (1.9.0) + ruby-progressbar (1.10.0) ruby-saml (1.7.2) nokogiri (>= 1.5.10) - ruby_parser (3.11.0) + ruby_parser (3.13.1) sexp_processor (~> 4.9) rubyntlm (0.6.2) rubypants (0.2.0) @@ -831,12 +880,15 @@ GEM sass-listen (4.0.0) rb-fsevent (~> 0.9, >= 0.9.4) rb-inotify (~> 0.9, >= 0.9.7) - sass-rails (5.0.6) - railties (>= 4.0.0, < 6) - sass (~> 3.1) - sprockets (>= 2.8, < 4.0) - sprockets-rails (>= 2.0, < 4.0) - tilt (>= 1.1, < 3) + sassc (2.0.1) + ffi (~> 1.9) + rake + sassc-rails (2.1.0) + railties (>= 4.0.0) + sassc (>= 2.0) + sprockets (> 3.0) + sprockets-rails + tilt sawyer (0.8.1) addressable (>= 2.3.5, < 2.6) faraday (~> 0.8, < 1.0) @@ -846,18 +898,18 @@ GEM seed-fu (2.3.7) activerecord (>= 3.1) activesupport (>= 3.1) - selenium-webdriver (3.12.0) + selenium-webdriver (3.141.0) childprocess (~> 0.5) - rubyzip (~> 1.2) + rubyzip (~> 1.2, >= 1.2.2) sentry-raven (2.9.0) faraday (>= 0.7.6, < 1.0) settingslogic (2.0.9) - sexp_processor (4.11.0) + sexp_processor (4.12.0) sham_rack (1.3.6) rack - shoulda-matchers (3.1.2) - activesupport (>= 4.0.0) - sidekiq (5.2.5) + shoulda-matchers (4.0.1) + activesupport (>= 4.2.0) + sidekiq (5.2.7) connection_pool (~> 2.2, >= 2.2.2) rack (>= 1.5.0) rack-protection (>= 1.5.0) @@ -871,11 +923,11 @@ GEM jwt (>= 1.5, < 3.0) multi_json (~> 1.10) simple_po_parser (1.1.2) - simplecov (0.14.1) - docile (~> 1.1.0) + simplecov (0.16.1) + docile (~> 1.1) json (>= 1.8, < 3) simplecov-html (~> 0.10.0) - simplecov-html (0.10.0) + simplecov-html (0.10.2) slack-notifier (1.5.1) snowplow-tracker (0.6.1) contracts (~> 0.7, <= 0.11) @@ -900,10 +952,14 @@ GEM state_machines-activerecord (0.5.1) activerecord (>= 4.1, < 6.0) state_machines-activemodel (>= 0.5.0) + swd (1.1.2) + activesupport (>= 3) + attr_required (>= 0.0.5) + httpclient (>= 2.4) sys-filesystem (1.1.6) ffi sysexits (1.2.0) - temple (0.8.0) + temple (0.8.1) test-prof (0.2.5) text (1.3.1) thin (1.7.2) @@ -913,7 +969,7 @@ GEM thor (0.19.4) thread_safe (0.3.6) thrift (0.11.0.0) - tilt (2.0.8) + tilt (2.0.9) timecop (0.8.1) timfel-krb5-auth (0.8.3) toml (0.2.0) @@ -933,7 +989,7 @@ GEM unf (0.1.4) unf_ext unf_ext (0.0.7.5) - unicode-display_width (1.3.2) + unicode-display_width (1.6.0) unicorn (5.4.1) kgio (~> 2.6) raindrops (~> 0.7) @@ -941,14 +997,20 @@ GEM get_process_mem (~> 0) unicorn (>= 4, < 6) uniform_notifier (1.10.0) - unparser (0.4.2) + unparser (0.4.5) abstract_type (~> 0.0.7) adamantium (~> 0.2.0) concord (~> 0.1.5) diff-lcs (~> 1.3) equalizer (~> 0.0.9) - parser (>= 2.3.1.2, < 2.6) + parser (~> 2.6.3) procto (~> 0.0.2) + validate_email (0.1.6) + activemodel (>= 3.0) + mail (>= 2.2.5) + validate_url (1.0.8) + activemodel (>= 3.0.0) + public_suffix validates_hostname (1.0.6) activerecord (>= 3.0) activesupport (>= 3.0) @@ -961,6 +1023,9 @@ GEM vmstat (2.3.0) warden (1.2.7) rack (>= 1.0) + webfinger (1.1.0) + activesupport + httpclient (>= 2.4) webmock (3.5.1) addressable (>= 2.3.6) crack (>= 0.3.2) @@ -976,8 +1041,8 @@ GEM rinku with_env (1.1.0) xml-simple (1.1.5) - xpath (2.1.0) - nokogiri (~> 1.3) + xpath (3.2.0) + nokogiri (~> 1.8) PLATFORMS ruby @@ -985,21 +1050,26 @@ PLATFORMS DEPENDENCIES RedCloth (~> 4.3.2) ace-rails-ap (~> 4.1.0) + acme-client (~> 2.0.2) + activerecord-explain-analyze (~> 0.1) activerecord_sane_schema_dumper (= 1.0) acts-as-taggable-on (~> 6.0) addressable (~> 2.5.2) akismet (~> 2.0) + apollo_upload_server (~> 2.0.0.beta3) asana (~> 0.8.1) asciidoctor (~> 1.5.8) + asciidoctor-include-ext (~> 0.3.1) asciidoctor-plantuml (= 0.0.8) attr_encrypted (~> 3.1.0) awesome_print aws-sdk babosa (~> 1.0.2) base32 (~> 0.3.0) - batch-loader (~> 1.2.2) + batch-loader (~> 1.4.0) bcrypt_pbkdf (~> 1.0) benchmark-ips (~> 2.3.0) + benchmark-memory (~> 0.1) better_errors (~> 2.5.0) binding_of_caller (~> 0.8.0) bootsnap (~> 1.4) @@ -1008,8 +1078,8 @@ DEPENDENCIES browser (~> 2.5) bullet (~> 5.5.0) bundler-audit (~> 0.5.0) - capybara (~> 2.16.1) - capybara-screenshot (~> 1.0.18) + capybara (~> 3.22.0) + capybara-screenshot (~> 1.0.22) carrierwave (~> 1.3) charlock_holmes (~> 0.7.5) chronic (~> 0.10.2) @@ -1020,8 +1090,9 @@ DEPENDENCIES creole (~> 0.5.0) database_cleaner (~> 1.7.0) deckar01-task_list (= 2.2.0) + derailed_benchmarks device_detector - devise (~> 4.4) + devise (~> 4.6) devise-two-factor (~> 3.0.0) diffy (~> 3.1.0) discordrb-webhooks-blackst0ne (~> 3.3) @@ -1052,33 +1123,34 @@ DEPENDENCIES fog-rackspace (~> 0.1.1) font-awesome-rails (~> 4.7) foreman (~> 0.84.0) - fugit (~> 1.1) + fugit (~> 1.2.1) fuubar (~> 2.2.0) gemojione (~> 3.3) gettext (~> 3.2.2) gettext_i18n_rails (~> 1.8.0) gettext_i18n_rails_js (~> 1.3) - gitaly-proto (~> 1.22.1) + gitaly-proto (~> 1.32.0) github-markup (~> 1.7.0) gitlab-default_value_for (~> 3.1.1) + gitlab-labkit (~> 0.3.0) gitlab-license (~> 1.0) gitlab-markup (~> 1.7.0) gitlab-sidekiq-fetcher (~> 0.4.0) - gitlab-styles (~> 2.4) + gitlab-styles (~> 2.7) gitlab_omniauth-ldap (~> 2.1.1) gon (~> 6.2) google-api-client (~> 0.23) - google-protobuf (~> 3.6) + google-protobuf (~> 3.7.1) gpgme (~> 2.0.18) grape (~> 1.1.0) grape-entity (~> 0.7.1) - grape-path-helpers (~> 1.0) + grape-path-helpers (~> 1.1) grape_logging (~> 1.7) graphiql-rails (~> 1.4.10) graphql (~> 1.8.0) - grpc (~> 1.15.0) + grpc (~> 1.19.0) gssapi - haml_lint (~> 0.28.0) + haml_lint (~> 0.31.0) hamlit (~> 2.8.8) hangouts-chat (~> 0.0.5) hashie-forbidden_attributes @@ -1089,7 +1161,6 @@ DEPENDENCIES httparty (~> 0.16.4) icalendar influxdb (~> 0.2) - jaeger-client (~> 0.10.0) jira-ruby (~> 1.4) js_regex (~> 3.1) json-schema (~> 2.8.0) @@ -1097,12 +1168,13 @@ DEPENDENCIES kaminari (~> 1.0) knapsack (~> 1.17) kubeclient (~> 4.2.2) - letter_opener_web (~> 1.3.0) + letter_opener_web (~> 1.3.4) license_finder (~> 5.4) licensee (~> 8.9) lograge (~> 0.5) loofah (~> 2.2) mail_room (~> 0.9.1) + memory_profiler (~> 0.9) method_source (~> 0.8) mimemagic (~> 0.3.2) mini_magick @@ -1113,7 +1185,7 @@ DEPENDENCIES net-ldap net-ntp net-ssh (~> 5.0) - nokogiri (~> 1.10.1) + nokogiri (~> 1.10.3) oauth2 (~> 1.4) octokit (~> 4.9) omniauth (~> 1.8) @@ -1127,11 +1199,13 @@ DEPENDENCIES omniauth-google-oauth2 (~> 0.6.0) omniauth-kerberos (~> 0.3.0) omniauth-oauth2-generic (~> 0.2.2) + omniauth-salesforce (~> 1.0.5) omniauth-saml (~> 1.10) omniauth-shibboleth (~> 1.3.0) omniauth-twitter (~> 1.4) + omniauth-ultraauth (~> 0.0.2) omniauth_crowd (~> 2.2.0) - opentracing (~> 0.4.3) + omniauth_openid_connect (~> 0.3.1) org-ruby (~> 0.9.12) peek (~> 1.0.1) peek-gc (~> 0.0.2) @@ -1151,9 +1225,9 @@ DEPENDENCIES rack-cors (~> 1.0.0) rack-oauth2 (~> 1.9.3) rack-proxy (~> 0.6.0) - rails (= 5.0.7.2) + rack-timeout + rails (= 5.1.7) rails-controller-testing - rails-deprecated_sanitizer (~> 1.0.3) rails-i18n (~> 5.1) rainbow (~> 3.0) raindrops (~> 0.18) @@ -1171,11 +1245,12 @@ DEPENDENCIES rqrcode-rails3 (~> 0.1.7) rspec-parameterized rspec-rails (~> 3.7.0) - rspec-retry (~> 0.4.5) + rspec-retry (~> 0.6.1) rspec-set (~> 0.1.3) rspec_junit_formatter rspec_profiling (~> 0.0.5) - rubocop (~> 0.54.0) + rubocop (~> 0.69.0) + rubocop-performance (~> 1.1.0) rubocop-rspec (~> 1.22.1) ruby-fogbugz (~> 0.2.1) ruby-prof (~> 0.17.0) @@ -1184,19 +1259,18 @@ DEPENDENCIES rubyzip (~> 1.2.2) rugged (~> 0.28) sanitize (~> 4.6) - sass (~> 3.5) - sass-rails (~> 5.0.6) + sassc-rails (~> 2.1.0) scss_lint (~> 0.56.0) seed-fu (~> 2.3.7) - selenium-webdriver (~> 3.12) - sentry-raven (~> 2.7) + selenium-webdriver (~> 3.141) + sentry-raven (~> 2.9) settingslogic (~> 2.0.9) sham_rack (~> 1.3.6) - shoulda-matchers (~> 3.1.2) - sidekiq (~> 5.2.1) + shoulda-matchers (~> 4.0.1) + sidekiq (~> 5.2.7) sidekiq-cron (~> 1.0) simple_po_parser (~> 1.1.2) - simplecov (~> 0.14.0) + simplecov (~> 0.16.1) slack-notifier (~> 1.5.1) snowplow-tracker (~> 0.6.1) spring (~> 2.0.0) diff --git a/pkgs/applications/version-management/gitlab/rubyEnv-ee/gemset.nix b/pkgs/applications/version-management/gitlab/rubyEnv-ee/gemset.nix index bbf769314a3..b93f6d75e89 100644 --- a/pkgs/applications/version-management/gitlab/rubyEnv-ee/gemset.nix +++ b/pkgs/applications/version-management/gitlab/rubyEnv-ee/gemset.nix @@ -15,16 +15,27 @@ }; version = "4.1.2"; }; + acme-client = { + dependencies = ["faraday"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1552fkgaj6qfylwsckgmhck34shjqnfrzymj1ji1kq3r310qqrnp"; + type = "gem"; + }; + version = "2.0.2"; + }; actioncable = { dependencies = ["actionpack" "nio4r" "websocket-driver"]; groups = ["default" "development" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "14qy7aygsr35lhcrw2y0c1jxmkfjlcz10p7qcf9jxzhcfmk5rr3y"; + sha256 = "1hafk0i6nky7c9m95757y2xxhrilww332d21nf9qn46lxnsa2i63"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionmailer = { dependencies = ["actionpack" "actionview" "activejob" "mail" "rails-dom-testing"]; @@ -32,10 +43,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "17whd0cjkb038g14pmkmakp89085j5950jdmfa5hmzqf1djnvc8r"; + sha256 = "1gpv8lv8vk4a36hwdvg2hwbzdcism8hzxxvanmc7ffz8y11y0lzh"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionpack = { dependencies = ["actionview" "activesupport" "rack" "rack-test" "rails-dom-testing" "rails-html-sanitizer"]; @@ -43,21 +54,21 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1wyyj014n0gza5m2gpg9ab9av4yr6psvym047nrn1iz84v6fmkfb"; + sha256 = "0zyi3dc50ii2msdkawaf11y4xw645ig57ha2jfnr8lpr8s1nlh52"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; actionview = { - dependencies = ["activesupport" "builder" "erubis" "rails-dom-testing" "rails-html-sanitizer"]; + dependencies = ["activesupport" "builder" "erubi" "rails-dom-testing" "rails-html-sanitizer"]; groups = ["default" "development" "mysql" "postgres" "test"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0w96iqknr5jz7gzlcyixq1lvhbzbqijj4iq22pbfzscppbz1anvi"; + sha256 = "0i2j580njb767yhf0k5ih3qqg38ybiah80ai8dsr6kjjw35aj747"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activejob = { dependencies = ["activesupport" "globalid"]; @@ -65,10 +76,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1281zl53a5dpl33vxswrg2jxv7kpcyl7mg5mckn4hcksna60356l"; + sha256 = "0p55853riiq9irmnm76yi9f8shhg260mrg9dikqb19pwsy8lcjpl"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activemodel = { dependencies = ["activesupport"]; @@ -76,10 +87,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xphpzx3ippi8f2h27v2g3n82i39xwx2gq9yamhby9s2a9hh8shl"; + sha256 = "07pw833i6m2i7fjnxgz5jba4dhsl47qx83hfyzl560wmkhyv16vh"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; activerecord = { dependencies = ["activemodel" "activesupport" "arel"]; @@ -87,10 +98,21 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1jy2amhn2xsd9hy546mw27agh8493nqlgbmzqhlppx7p3nwikw63"; + sha256 = "0i45zqfci974xrza756pvyrjdc7a6q9py87944z5mh75npvln7ss"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; + }; + activerecord-explain-analyze = { + dependencies = ["activerecord" "pg"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0yvz452ww0vn3n6197gx6zklwa591gc7f1m8accvjd9zw8gv3ssx"; + type = "gem"; + }; + version = "0.1.0"; }; activerecord_sane_schema_dumper = { dependencies = ["rails"]; @@ -107,10 +129,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bcbr490ryw6295p0ja7xigcw0ivkdys90x3qbsbs8c4n1zwcp7p"; + sha256 = "0znhiy90hdlx66jqhaycin4qrphrymsw68c36a1an7g481zvfv91"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; acts-as-taggable-on = { dependencies = ["activerecord"]; @@ -157,13 +179,26 @@ }; version = "2.0.0"; }; - arel = { + apollo_upload_server = { + dependencies = ["graphql" "rails"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0l757dkkaxk5fq3368l79jpyzq9a9driricjamhiwhwvh0h7xcyx"; + sha256 = "0riijpyicbkqsr46w4mfhh3pq2yrmakkz8mmgbrfjhzbyzac25na"; type = "gem"; }; - version = "7.1.4"; + version = "2.0.0.beta.3"; + }; + arel = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nw0qbc6ph625p6n3maqq9f527vz3nbl0hk72fbyka8jzsmplxzl"; + type = "gem"; + }; + version = "8.0.0"; }; asana = { dependencies = ["faraday" "faraday_middleware" "faraday_middleware-multi_json" "oauth2"]; @@ -182,6 +217,17 @@ }; version = "1.5.8"; }; + asciidoctor-include-ext = { + dependencies = ["asciidoctor"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1alaqfh31hd98yhqq8fsc50zzqw04p3d83pc35gdx3x9p3j1ds7d"; + type = "gem"; + }; + version = "0.3.1"; + }; asciidoctor-plantuml = { dependencies = ["asciidoctor"]; source = { @@ -295,12 +341,14 @@ version = "0.3.2"; }; batch-loader = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0pwr2hk9x1qx9i2xpkpjwkdjsmm4kamz5f25wizsaw37zb64apjc"; + sha256 = "09jaxxddqpgq8ynwd2gpjq5rkhw00zdjnqisk9qbpjgxzk6f8gwi"; type = "gem"; }; - version = "1.2.2"; + version = "1.4.0"; }; bcrypt = { source = { @@ -326,6 +374,17 @@ }; version = "2.3.0"; }; + benchmark-memory = { + dependencies = ["memory_profiler"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11qw8k6rl79ri00njrf1x9v6vzwgv12rkcvgzvg0sk8pfrkzwyxa"; + type = "gem"; + }; + version = "0.1.2"; + }; better_errors = { dependencies = ["coderay" "erubi" "rack"]; source = { @@ -344,12 +403,14 @@ version = "2.4.3"; }; binding_ninja = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "19dk26qyx433ffa6y48511apc2iw71zw4jnlqxhy0wix9dlxr2ri"; + sha256 = "17fa3sv6p2fw9g8fxpwx1kjhhs28aw41akkba0hlgvk60055b1aa"; type = "gem"; }; - version = "0.2.2"; + version = "0.2.3"; }; binding_of_caller = { dependencies = ["debug_inspector"]; @@ -431,13 +492,15 @@ version = "9.1.0"; }; capybara = { - dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "xpath"]; + dependencies = ["addressable" "mini_mime" "nokogiri" "rack" "rack-test" "regexp_parser" "xpath"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0hkl6p07gf29952biv07fy88vjz46ng2h37wwx5ks0mk9kn8vvvf"; + sha256 = "1y7ncfji4s3h3wdr2hwsrd32k0va92a6lyx2x8w6a3vkbc94kpch"; type = "gem"; }; - version = "2.16.1"; + version = "3.22.0"; }; capybara-screenshot = { dependencies = ["capybara" "launchy"]; @@ -559,21 +622,25 @@ version = "0.1.5"; }; concurrent-ruby = { + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18q9skp5pfq4jwbxzmw8q2rn4cpw6mf4561i2hsjcl1nxdag2jvb"; + sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.5"; }; concurrent-ruby-ext = { dependencies = ["concurrent-ruby"]; + groups = ["default" "mysql" "postgres"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0h7k4wnvbxv7vzb53kaqxbbyhp3m98g2rgymr6n1l9v0jlzcr1i8"; + sha256 = "03ypsv2k581yv0b3f0hzvb3mq6mqj8jlbi32jmkj3k175vbc8hvz"; type = "gem"; }; - version = "1.1.3"; + version = "1.1.5"; }; connection_pool = { source = { @@ -684,6 +751,17 @@ }; version = "0.1.0"; }; + derailed_benchmarks = { + dependencies = ["benchmark-ips" "get_process_mem" "heapy" "memory_profiler" "rack" "rake" "thor"]; + groups = ["development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1c9djg1r2w461h97zmmdsdgnsrxqm4qfyp7gry9qxbav9skrplb8"; + type = "gem"; + }; + version = "1.3.5"; + }; descendants_tracker = { dependencies = ["thread_safe"]; source = { @@ -703,12 +781,14 @@ }; devise = { dependencies = ["bcrypt" "orm_adapter" "railties" "responders" "warden"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xmxfhym0yxwb0zwmmzhdiykbpyqqm3id02g7rf3vcgbc1lqvdnj"; + sha256 = "04b2p61mqfb6ln8s2lhmvnkd45wjjinykbn9svmhs54kacrrjkcf"; type = "gem"; }; - version = "4.4.3"; + version = "4.6.2"; }; devise-two-factor = { dependencies = ["activesupport" "attr_encrypted" "devise" "railties" "rotp"]; @@ -745,12 +825,14 @@ version = "3.3.0"; }; docile = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m8j31whq7bm5ljgmsrlfkiqvacrw6iz9wq10r3gwrv5785y8gjx"; + sha256 = "04d2izkna3ahfn6fwq4xrcafa715d3bbqczxm16fq40fqy87xn17"; type = "gem"; }; - version = "1.1.5"; + version = "1.3.1"; }; domain_name = { dependencies = ["unf"]; @@ -865,20 +947,14 @@ version = "0.0.11"; }; erubi = { + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0bws86na9k565raiz0kk61yy5pxxp0fmwyzpibdwjkq0xzx8q6q1"; + sha256 = "1kagnf6ziahj0d781s6ryy6fwqwa3ad4xbzzj84p9m4nv4c2jir1"; type = "gem"; }; - version = "1.7.1"; - }; - erubis = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; - type = "gem"; - }; - version = "2.7.0"; + version = "1.8.0"; }; escape_utils = { source = { @@ -890,12 +966,14 @@ }; et-orbi = { dependencies = ["tzinfo"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "148z57yshd8rls5b9mkqp9dymba8r4373vlrsk3090lblw5v1ifp"; + sha256 = "1swgjb3h2hs5xflb68837l0vd32masbz9c66b1963mxlnnxf5gsg"; type = "gem"; }; - version = "1.1.7"; + version = "1.2.1"; }; eventmachine = { source = { @@ -1133,12 +1211,14 @@ }; font-awesome-rails = { dependencies = ["railties"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0qc07vj7qyllrj7lr7wl89l5ir0gj104rc7sds2jynzmrqsamnlw"; + sha256 = "11mf7bk2737pyxjwba3a9lpgcxzbp0vgq01n2dn30774zysc90hj"; type = "gem"; }; - version = "4.7.0.1"; + version = "4.7.0.4"; }; foreman = { dependencies = ["thor"]; @@ -1163,10 +1243,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1m9fijppafxrb74v4jgbgni82bykyzpfnrlksfa7bw6sbm7ks4bd"; + sha256 = "1x5h31hl75x0p5s36hinywg18ijlxjhnlb5p02aqcjjkx777rcav"; type = "gem"; }; - version = "1.1.9"; + version = "1.2.1"; }; fuubar = { dependencies = ["rspec-core" "ruby-progressbar"]; @@ -1187,12 +1267,14 @@ version = "3.3.0"; }; get_process_mem = { + groups = ["default" "development" "puma" "test" "unicorn"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "025f7v6bpbgsa2nr0hzv2riggj8qmzbwcyxfgjidpmwh5grh7j29"; + sha256 = "1bvfjdign16r0zwm2rlfrq0sk1licvmlgbnlpnyckniv5r7i080g"; type = "gem"; }; - version = "0.2.0"; + version = "0.2.3"; }; gettext = { dependencies = ["locale" "text"]; @@ -1227,10 +1309,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "03h59n89nngna6rxs81rigf1bzhhqbvmpzb0fqaks7sskqp70f2s"; + sha256 = "0glqy22p0xfaa3kvvrba04pj1dva8wpzlvhka37cvlqq95djcy19"; type = "gem"; }; - version = "1.22.1"; + version = "1.32.0"; }; github-markup = { source = { @@ -1249,6 +1331,17 @@ }; version = "3.1.1"; }; + gitlab-labkit = { + dependencies = ["actionpack" "activesupport" "grpc" "jaeger-client" "opentracing"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0dvapmdc9axm9dq2gg89qrqb318rkrsabpyybrqvcx1ipbi5k3a1"; + type = "gem"; + }; + version = "0.3.0"; + }; gitlab-license = { source = { remotes = ["https://rubygems.org"]; @@ -1279,13 +1372,15 @@ version = "0.4.0"; }; gitlab-styles = { - dependencies = ["rubocop" "rubocop-gitlab-security" "rubocop-rspec"]; + dependencies = ["rubocop" "rubocop-gitlab-security" "rubocop-performance" "rubocop-rspec"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0nkciak0qq17pqc667nkdjx0vp8kk9w27d6jmimvi6cjzb38zmqa"; + sha256 = "1vxlvbq4jpq0cfjqippz9d3j73sq9qg3pna5pb0l8jr0rc0xs89y"; type = "gem"; }; - version = "2.5.1"; + version = "2.7.0"; }; gitlab_omniauth-ldap = { dependencies = ["net-ldap" "omniauth" "pyu-ruby-sasl" "rubyntlm"]; @@ -1326,21 +1421,25 @@ version = "0.23.4"; }; google-protobuf = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "134d3ini9ymdwxpz445m28ss9x0m6vcpijcdkzvgk4n538wdmppf"; + sha256 = "04988m3hmllg4sl4syjb35x0wzsg7rj1nmvhx3d9ihml22w76gb2"; type = "gem"; }; - version = "3.6.1"; + version = "3.7.1"; }; googleapis-common-protos-types = { dependencies = ["google-protobuf"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "05pimdvigqv1ip4r4qg4i3irpzzfbx5h7hjc82cpvap337gdhsqj"; + sha256 = "0hyr94cafiqj0k8q19hnl658pmbz2b404akikzfv4hdb1j1bwsg1"; type = "gem"; }; - version = "1.0.3"; + version = "1.0.4"; }; googleauth = { dependencies = ["faraday" "jwt" "memoist" "multi_json" "os" "signet"]; @@ -1380,12 +1479,14 @@ }; grape-path-helpers = { dependencies = ["activesupport" "grape" "rake"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "13h5575xfc144wsr48sp3qngpwvh4ikz4r3m55j8jmdr6sa16rbw"; + sha256 = "16l6lrv4h4ls0lrpj35pc00431q2rx6r9n47337qyvprxs3v0a01"; type = "gem"; }; - version = "1.0.6"; + version = "1.1.0"; }; grape_logging = { dependencies = ["grape"]; @@ -1415,12 +1516,14 @@ }; grpc = { dependencies = ["google-protobuf" "googleapis-common-protos-types"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0m2wspnm1cfkmhlbp7yqv5bb4vsfh246cm0aavxra67aw4l8plhb"; + sha256 = "1rdywzism5vxz8pnml6xjb9f19diclyy74014z69q01jzqwi1wgs"; type = "gem"; }; - version = "1.15.0"; + version = "1.19.0"; }; gssapi = { dependencies = ["ffi"]; @@ -1442,12 +1545,14 @@ }; haml_lint = { dependencies = ["haml" "rainbow" "rake" "rubocop" "sysexits"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "125aj0j84nx5gqm42hfx5d8486higlra423ahgfpsdjwbp399rwv"; + sha256 = "1k6pvb2lc6d72nq01jqmi3mxpp80m9mmbc265kgaxmcnjxqhacb1"; type = "gem"; }; - version = "0.28.0"; + version = "0.31.0"; }; hamlit = { dependencies = ["temple" "thor" "tilt"]; @@ -1500,6 +1605,16 @@ }; version = "2.6.0"; }; + heapy = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r9f38fpgjgaxskkwvsliijj6vfmgsff9pnranvvvzkdl67hk1hw"; + type = "gem"; + }; + version = "0.1.4"; + }; hipchat = { dependencies = ["httparty" "mimemagic"]; groups = ["default"]; @@ -1643,6 +1758,16 @@ }; version = "0.10.0"; }; + jaro_winkler = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zz27z88qznix4r65gd9h56gl177snlfpgv10b0s69vi8qpl909l"; + type = "gem"; + }; + version = "1.5.2"; + }; jira-ruby = { dependencies = ["activesupport" "multipart-post" "oauth"]; source = { @@ -1775,21 +1900,25 @@ }; letter_opener = { dependencies = ["launchy"]; + groups = ["default" "development"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1pcrdbxvp2x5six8fqn8gf09bn9rd3jga76ds205yph5m8fsda21"; + sha256 = "09a7kgsmr10a0hrc9bwxglgqvppjxij9w8bxx91mnvh0ivaw0nq9"; type = "gem"; }; - version = "1.4.1"; + version = "1.7.0"; }; letter_opener_web = { dependencies = ["actionmailer" "letter_opener" "railties"]; + groups = ["development"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "050x5cwqbxj2cydd2pzy9vfhmpgn1w6lfbwjaax1m1vpkn3xg9bv"; + sha256 = "17qhwrkncrrp1bi2f7fbkm5lpnkdsiwy8jcvgr2wa97ck8y4x2bb"; type = "gem"; }; - version = "1.3.0"; + version = "1.3.4"; }; license_finder = { dependencies = ["rubyzip" "thor" "toml" "with_env" "xml-simple"]; @@ -1869,6 +1998,16 @@ }; version = "0.4.2"; }; + memory_profiler = { + groups = ["default" "development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1xki7jrbzylsmk1brjibmhifb0x70skr55pdq4rvxcyrlnrrvyxz"; + type = "gem"; + }; + version = "0.9.13"; + }; method_source = { source = { remotes = ["https://rubygems.org"]; @@ -1887,12 +2026,14 @@ version = "3.2.2"; }; mime-types-data = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; + sha256 = "1m00pg19cm47n1qlcxgl91ajh2yq0fszvn1vy8fy0s1jkrp9fw4a"; type = "gem"; }; - version = "3.2018.0812"; + version = "3.2019.0331"; }; mimemagic = { source = { @@ -1935,12 +2076,14 @@ version = "5.11.3"; }; msgpack = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0031gd2mjyba6jb7m97sqa149zjkr0vzn2s2gpb3m9nb67gqkm13"; + sha256 = "1w38hilm3dk42dwk8ygiq49bl4in7y80hfqr63hk54mj4gmzi6ch"; type = "gem"; }; - version = "1.2.6"; + version = "1.2.10"; }; multi_json = { source = { @@ -2049,12 +2192,14 @@ }; nokogiri = { dependencies = ["mini_portile2"]; + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "09zll7c6j7xr6wyvh5mm5ncj6pkryp70ybcsxdbw1nyphx5dh184"; + sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; type = "gem"; }; - version = "1.10.1"; + version = "1.10.3"; }; nokogumbo = { dependencies = ["nokogiri"]; @@ -2225,6 +2370,17 @@ }; version = "0.2.2"; }; + omniauth-salesforce = { + dependencies = ["omniauth" "omniauth-oauth2"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0sr7xmffx6dbsrvnh6spka5ljyzf69iac754xw5r1736py41qhpj"; + type = "gem"; + }; + version = "1.0.5"; + }; omniauth-saml = { dependencies = ["omniauth" "ruby-saml"]; source = { @@ -2252,6 +2408,17 @@ }; version = "1.4.0"; }; + omniauth-ultraauth = { + dependencies = ["omniauth_openid_connect"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1z8gz8ql4vb8y5n4lr67afnjmp23bpqi18dmda5psigvd2jddyn8"; + type = "gem"; + }; + version = "0.0.2"; + }; omniauth_crowd = { dependencies = ["activesupport" "nokogiri" "omniauth"]; source = { @@ -2261,13 +2428,37 @@ }; version = "2.2.3"; }; - opentracing = { + omniauth_openid_connect = { + dependencies = ["addressable" "omniauth" "openid_connect"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xgwc46bd038zzqyasn5grqgk74v8vxmpdwivw2sp0fdldj1d9rf"; + sha256 = "0ja7cjlm4z0k0pwwy64djl58pay3lzkw7im565fybs4a8q4wmacb"; type = "gem"; }; - version = "0.4.3"; + version = "0.3.1"; + }; + openid_connect = { + dependencies = ["activemodel" "attr_required" "json-jwt" "rack-oauth2" "swd" "tzinfo" "validate_email" "validate_url" "webfinger"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r13bv18nyvw0g1nw3fzffvv2si99zj24w0k5zgawf4q6nn5f7vd"; + type = "gem"; + }; + version = "1.1.6"; + }; + opentracing = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "11lj1d8vq0hkb5hjz8q4lm82cddrggpbb33dhqfn7rxhwsmxgdfy"; + type = "gem"; + }; + version = "0.5.0"; }; optimist = { source = { @@ -2303,21 +2494,25 @@ version = "1.0.0"; }; parallel = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01hj8v1qnyl5ndrs33g8ld8ibk0rbcqdpkpznr04gkbxd11pqn67"; + sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r"; type = "gem"; }; - version = "1.12.1"; + version = "1.17.0"; }; parser = { dependencies = ["ast"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zjk0w1kjj3xk8ymy1430aa4gg0k8ckphfj88br6il4pm83f0n1f"; + sha256 = "1pnks149x0fzgqiw53qlmvcd8bi746cxdw03sjljby5s97p1fskn"; type = "gem"; }; - version = "2.5.3.0"; + version = "2.6.3.0"; }; parslet = { source = { @@ -2400,14 +2595,6 @@ }; version = "1.0.1"; }; - powerpack = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1fnn3fli5wkzyjl4ryh0k90316shqjfnhydmc7f8lqpi0q21va43"; - type = "gem"; - }; - version = "0.1.1"; - }; premailer = { dependencies = ["addressable" "css_parser" "htmlentities"]; source = { @@ -2479,12 +2666,14 @@ version = "0.3.6"; }; public_suffix = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; + sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l"; type = "gem"; }; - version = "3.0.3"; + version = "3.1.0"; }; puma = { source = { @@ -2586,12 +2775,24 @@ }; rack-test = { dependencies = ["rack"]; + groups = ["default" "development" "mysql" "postgres" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0h6x5jq24makgv2fq5qqgjlrk74dxfy62jif9blk43llw8ib2q7z"; + sha256 = "0rh8h376mx71ci5yklnpqqn118z3bl67nnv5k801qaqn1zs62h8m"; type = "gem"; }; - version = "0.6.3"; + version = "1.1.0"; + }; + rack-timeout = { + groups = ["puma"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "15xph8h6v0lvq9pxm3bc9i9pnk2k68rgdr1mp0dw4l7v1xvhs78a"; + type = "gem"; + }; + version = "0.5.1"; }; rails = { dependencies = ["actioncable" "actionmailer" "actionpack" "actionview" "activejob" "activemodel" "activerecord" "activesupport" "railties" "sprockets-rails"]; @@ -2599,10 +2800,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0amqbd8kl6vmilfhlkf2w0l33x688jssjbra7s717kjqzb4fmqiw"; + sha256 = "1xfwfhza6lflywaynyxk8jd9ff1cqj0adrh6qnggkqvd8iy54zwd"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; rails-controller-testing = { dependencies = ["actionpack" "actionview" "activesupport"]; @@ -2613,15 +2814,6 @@ }; version = "1.0.2"; }; - rails-deprecated_sanitizer = { - dependencies = ["activesupport"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0qxymchzdxww8bjsxj05kbf86hsmrjx40r41ksj0xsixr2gmhbbj"; - type = "gem"; - }; - version = "1.0.3"; - }; rails-dom-testing = { dependencies = ["activesupport" "nokogiri"]; source = { @@ -2655,10 +2847,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "064w0n33l0wik5i00b4ry7iqv1nb3xhdpjvm55ycx2abpqnlrhjd"; + sha256 = "0wiyswlln344nd72ynn2hm2s1w9g7cnpdff3fphcya7nhavfnx68"; type = "gem"; }; - version = "5.0.7.2"; + version = "5.1.7"; }; rainbow = { source = { @@ -2825,12 +3017,14 @@ version = "1.6.0"; }; regexp_parser = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "18g5jyg3blsdrz3mc8d87bms6qqn6gcdh1nvdhvgbjdpk9pw21dq"; + sha256 = "0dsgjb3kszk6a82s6gl0h6a8vncjrxmcbk0r4mcxcdcad2b7vb2d"; type = "gem"; }; - version = "1.3.0"; + version = "1.5.1"; }; regexp_property_values = { source = { @@ -2963,12 +3157,14 @@ }; rspec-parameterized = { dependencies = ["binding_ninja" "parser" "proc_to_ast" "rspec" "unparser"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "159yw3mb4dab5kr18a97miyyi7dqmyrfjp3aw6r6j9i4xkc4xk3a"; + sha256 = "1c0892jbaznnldk1wi24qxm70g4zhw2idqx516rhgdzgd7yh5j31"; type = "gem"; }; - version = "0.4.1"; + version = "0.4.2"; }; rspec-rails = { dependencies = ["actionpack" "activesupport" "railties" "rspec-core" "rspec-expectations" "rspec-mocks" "rspec-support"]; @@ -2981,12 +3177,14 @@ }; rspec-retry = { dependencies = ["rspec-core"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0izvxab7jvk25kaprk0i72asjyh1ip3cm70bgxlm8lpid35qjar6"; + sha256 = "1nnqcg2yd3nn187zbvh4cgx8xsvdk56lz1985qy7232v7i8yidw6"; type = "gem"; }; - version = "0.4.5"; + version = "0.6.1"; }; rspec-set = { source = { @@ -3023,13 +3221,15 @@ version = "0.0.5"; }; rubocop = { - dependencies = ["parallel" "parser" "powerpack" "rainbow" "ruby-progressbar" "unicode-display_width"]; + dependencies = ["jaro_winkler" "parallel" "parser" "rainbow" "ruby-progressbar" "unicode-display_width"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "106y99lq0fg62k3vk1w5wwb4vq16pnh4l61skc82xck627z0h8is"; + sha256 = "1cmw8ajaiidvrzjcsljh47f4l3lmcazqrzljgalj3szkr8ibkk5i"; type = "gem"; }; - version = "0.54.0"; + version = "0.69.0"; }; rubocop-gitlab-security = { dependencies = ["rubocop"]; @@ -3040,6 +3240,17 @@ }; version = "0.1.1"; }; + rubocop-performance = { + dependencies = ["rubocop"]; + groups = ["development" "test"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0azzgj62w24wa4hza1qn7i9b9crxdh907kydlzcvhismx41h3lzk"; + type = "gem"; + }; + version = "1.1.0"; + }; rubocop-rspec = { dependencies = ["rubocop"]; source = { @@ -3076,12 +3287,14 @@ version = "0.17.0"; }; ruby-progressbar = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1igh1xivf5h5g3y5m9b4i4j2mhz2r43kngh4ww3q1r80ch21nbfk"; + sha256 = "1cv2ym3rl09svw8940ny67bav7b2db4ms39i4raaqzkf59jmhglk"; type = "gem"; }; - version = "1.9.0"; + version = "1.10.0"; }; ruby-saml = { dependencies = ["nokogiri"]; @@ -3094,12 +3307,14 @@ }; ruby_parser = { dependencies = ["sexp_processor"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0mysmdyxhvyn6dhshfxyw762f9asr3kxw45idvw1bh6np31kk4j1"; + sha256 = "0s3hsccsmrirc2hy3r51kl8g9cfmcn7jxaa0asadg1kn78h1sgr7"; type = "gem"; }; - version = "3.11.0"; + version = "3.13.1"; }; rubyntlm = { source = { @@ -3170,14 +3385,27 @@ }; version = "4.0.0"; }; - sass-rails = { - dependencies = ["railties" "sass" "sprockets" "sprockets-rails" "tilt"]; + sassc = { + dependencies = ["ffi" "rake"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0iji20hb8crncz14piss1b29bfb6l89sz3ai5fny3iw39vnxkdcb"; + sha256 = "1sr4825rlwsrl7xrsm0sgalcpf5zgp4i56dbi3qxfa9lhs8r6zh4"; type = "gem"; }; - version = "5.0.6"; + version = "2.0.1"; + }; + sassc-rails = { + dependencies = ["railties" "sassc" "sprockets" "sprockets-rails" "tilt"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18mgdjxdzpbw92zrllynxw7jn7yihi85j3dg7i4f6c39w1scqkbn"; + type = "gem"; + }; + version = "2.1.0"; }; sawyer = { dependencies = ["addressable" "faraday"]; @@ -3208,12 +3436,14 @@ }; selenium-webdriver = { dependencies = ["childprocess" "rubyzip"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07bl3wjkf254r3ljfl4qdazz5aw60s6nqjwrbbgq754j9b7226kz"; + sha256 = "114hv2ajmh6d186v2w887yqakqcxyxq367l0iakrrpvwviknrhfs"; type = "gem"; }; - version = "3.12.0"; + version = "3.141.0"; }; sentry-raven = { dependencies = ["faraday"]; @@ -3235,12 +3465,14 @@ version = "2.0.9"; }; sexp_processor = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1vnmphfrd86694x5k7rxddbhbvv5rqbglsc34kfryy4jqhbzz42c"; + sha256 = "0w24rgmyjf7yz0xr2qhbr8z48h4m6gvbggr8nc1pldwn9rbi04b7"; type = "gem"; }; - version = "4.11.0"; + version = "4.12.0"; }; sham_rack = { dependencies = ["rack"]; @@ -3253,21 +3485,25 @@ }; shoulda-matchers = { dependencies = ["activesupport"]; + groups = ["test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1zvv94pqk5b5my3w1shdz7h34xf2ldhg5k4qfdpbwi2iy0j9zw2a"; + sha256 = "1s6a2i39lsqq8rrkk2pddqcb10bsihxy3v5gpnc2gk8xakj1brdq"; type = "gem"; }; - version = "3.1.2"; + version = "4.0.1"; }; sidekiq = { dependencies = ["connection_pool" "rack" "rack-protection" "redis"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1caiq5f5z5vzfria554n04pcbwc8zixf1fpavaksly9zywr3pc29"; + sha256 = "131zv8i341bkacxx7n1id2cmblkbs379farnibqg8c7bycd1iajq"; type = "gem"; }; - version = "5.2.5"; + version = "5.2.7"; }; sidekiq-cron = { dependencies = ["fugit" "sidekiq"]; @@ -3297,20 +3533,24 @@ }; simplecov = { dependencies = ["docile" "json" "simplecov-html"]; + groups = ["development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1r9fnsnsqj432cmrpafryn8nif3x0qg9mdnvrcf0wr01prkdlnww"; + sha256 = "1sfyfgf7zrp2n42v7rswkqgk3bbwk1bnsphm24y7laxv3f8z0947"; type = "gem"; }; - version = "0.14.1"; + version = "0.16.1"; }; simplecov-html = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1qni8g0xxglkx25w54qcfbi4wjkpvmb28cb7rj5zk3iqynjcdrqf"; + sha256 = "1lihraa4rgxk8wbfl77fy9sf0ypk31iivly8vl3w04srd7i0clzn"; type = "gem"; }; - version = "0.10.0"; + version = "0.10.2"; }; slack-notifier = { source = { @@ -3417,6 +3657,17 @@ }; version = "0.5.1"; }; + swd = { + dependencies = ["activesupport" "attr_required" "httpclient"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1s2vjb6f13za7p1iycl2p73d3p202xa6xny9fjrp8ynwsqix7lyd"; + type = "gem"; + }; + version = "1.1.2"; + }; sys-filesystem = { dependencies = ["ffi"]; source = { @@ -3435,12 +3686,14 @@ version = "1.2.0"; }; temple = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "00nxf610nzi4n1i2lkby43nrnarvl89fcl6lg19406msr0k3ycmq"; + sha256 = "158d7ygbwcifqnvrph219p7m78yjdjazhykv5darbkms7bxm5y09"; type = "gem"; }; - version = "0.8.0"; + version = "0.8.1"; }; test-prof = { source = { @@ -3492,12 +3745,14 @@ version = "0.11.0.0"; }; tilt = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0020mrgdf11q23hm1ddd6fv691l51vi10af00f137ilcdb2ycfra"; + sha256 = "0ca4k0clwf0rkvy7726x4nxpjxkpv67w043i39saxgldxd97zmwz"; type = "gem"; }; - version = "2.0.8"; + version = "2.0.9"; }; timecop = { source = { @@ -3594,12 +3849,14 @@ version = "0.0.7.5"; }; unicode-display_width = { + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0x31fgv1acywbb50prp7y4fr677c2d9gsl6wxmfcrlxbwz7nxn5n"; + sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w"; type = "gem"; }; - version = "1.3.2"; + version = "1.6.0"; }; unicorn = { dependencies = ["kgio" "raindrops"]; @@ -3629,12 +3886,36 @@ }; unparser = { dependencies = ["abstract_type" "adamantium" "concord" "diff-lcs" "equalizer" "parser" "procto"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0w662glqi7hwmfvx0smxckxgc7kw5bsqhqz0pyvalbyv1gc0gs2x"; + sha256 = "03vjj74kj86vlazhiclf63kf6gajs66k8ni34q70fdhf97d7b60c"; type = "gem"; }; - version = "0.4.2"; + version = "0.4.5"; + }; + validate_email = { + dependencies = ["activemodel" "mail"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1r1fz29l699arka177c9xw7409d1a3ff95bf7a6pmc97slb91zlx"; + type = "gem"; + }; + version = "0.1.6"; + }; + validate_url = { + dependencies = ["activemodel" "public_suffix"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1k0bfxzvdcf1nrqhvnyhijc4mwab9wn4qvqb0ynq6p8dj0f866zi"; + type = "gem"; + }; + version = "1.0.8"; }; validates_hostname = { dependencies = ["activerecord" "activesupport"]; @@ -3679,6 +3960,17 @@ }; version = "1.2.7"; }; + webfinger = { + dependencies = ["activesupport" "httpclient"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0m0jh8k7c0ifh2jhbn7ihqrmn5fi754wflva97zgy70hpdvxyjar"; + type = "gem"; + }; + version = "1.1.0"; + }; webmock = { dependencies = ["addressable" "crack" "hashdiff"]; source = { @@ -3741,11 +4033,13 @@ }; xpath = { dependencies = ["nokogiri"]; + groups = ["default" "development" "test"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ha626m6fh50fpilb9pdnmq9xl586w7c0zyidg895c3iq13rqgyw"; + sha256 = "0bh8lk9hvlpn7vmi6h4hkcwjzvs2y0cmkk3yjjdr8fxvj6fsgzbd"; type = "gem"; }; - version = "2.1.0"; + version = "3.2.0"; }; -} \ No newline at end of file +} diff --git a/pkgs/applications/version-management/gitlab/update.py b/pkgs/applications/version-management/gitlab/update.py index 0ec743cb67d..ae1f0ad4c50 100755 --- a/pkgs/applications/version-management/gitlab/update.py +++ b/pkgs/applications/version-management/gitlab/update.py @@ -35,8 +35,8 @@ class GitLabRepo: tree = ElementTree.fromstring(r.content) versions = [e.text for e in tree.findall('{http://www.w3.org/2005/Atom}entry/{http://www.w3.org/2005/Atom}title')] # filter out versions not matching version_regex - versions = filter(self.version_regex.match, versions) - + versions = list(filter(self.version_regex.match, versions)) + # sort, but ignore v and -ee for sorting comparisons versions.sort(key=lambda x: LooseVersion(x.replace("v", "").replace("-ee", "")), reverse=True) return versions From 900307a8cc9f10d7e01576b0675159cbf61a5d6b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 14 Jul 2019 16:20:00 -0500 Subject: [PATCH 0228/1611] cointop: 1.2.0 -> 1.3.4 --- pkgs/applications/misc/cointop/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/cointop/default.nix b/pkgs/applications/misc/cointop/default.nix index b973c73c0dd..c29d8684c90 100644 --- a/pkgs/applications/misc/cointop/default.nix +++ b/pkgs/applications/misc/cointop/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "cointop"; - version = "1.2.0"; + version = "1.3.4"; src = fetchFromGitHub { owner = "miguelmota"; repo = pname; rev = version; - sha256 = "1vhsbk55rrsmnh9b3cxjiv1pzdiip54cyj31j4aj33vlr4hkampn"; + sha256 = "0nw6vzp0c5r8bwnlvgzj4hzdah44p5pp03d2bcr1lkw8np8fy65n"; }; - modSha256 = "0vvypp97b3bjwxb96hajpjzr52sb5lc4r3zdkrdgg3vjwwacjwsn"; + modSha256 = "1fg5h689s6r79qa9qsmd8hcvyihfyzlvqrhhk0qyfl528ipi1zwg"; meta = with lib; { description = "The fastest and most interactive terminal based UI application for tracking cryptocurrencies"; From 38bd8d31858e63b2e1c13bf67118dfe8fbce4ede Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sun, 14 Jul 2019 22:45:44 +0100 Subject: [PATCH 0229/1611] google-fonts: 2018-07-13 -> 2019-07-14 --- pkgs/data/fonts/google-fonts/default.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/data/fonts/google-fonts/default.nix b/pkgs/data/fonts/google-fonts/default.nix index 207f3615d1b..a30c09fbc06 100644 --- a/pkgs/data/fonts/google-fonts/default.nix +++ b/pkgs/data/fonts/google-fonts/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "google-fonts-${version}"; - version = "2018-07-13"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "google"; repo = "fonts"; - rev = "3ca591dae7372a26e254ec6d22e7b453813b9530"; - sha256 = "01ak3dzw2kihwa0dy27x8vvpiscd66mnkf61vj1xn29m4g48y0lr"; + rev = "f113126dc4b9b1473d9354a86129c9d7b837aa1a"; + sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs"; }; outputHashAlgo = "sha256"; @@ -29,6 +29,13 @@ stdenv.mkDerivation rec { ofl/siamreap \ ofl/terminaldosislight + # See comment above, the structure of these is a bit odd + # We keep the ofl//static/ variants + rm -rv ofl/comfortaa/*.ttf \ + ofl/mavenpro/*.ttf \ + ofl/muli/*.ttf \ + ofl/oswald/*.ttf + if find . -name "*.ttf" | sed 's|.*/||' | sort | uniq -c | sort -n | grep -v '^.*1 '; then echo "error: duplicate font names" exit 1 From 64cc2f9ee95e9784b5d9b4dd7bdfa500956d3e7d Mon Sep 17 00:00:00 2001 From: Katharina Fey Date: Sun, 14 Jul 2019 22:45:54 +0100 Subject: [PATCH 0230/1611] google-fonts: Removing fixed-output derivation --- pkgs/data/fonts/google-fonts/default.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkgs/data/fonts/google-fonts/default.nix b/pkgs/data/fonts/google-fonts/default.nix index a30c09fbc06..d743d2ccbd4 100644 --- a/pkgs/data/fonts/google-fonts/default.nix +++ b/pkgs/data/fonts/google-fonts/default.nix @@ -11,10 +11,6 @@ stdenv.mkDerivation rec { sha256 = "0safw5prpa63mqcyfw3gr3a535w4c9hg5ayw5pkppiwil7n3pyxs"; }; - outputHashAlgo = "sha256"; - outputHashMode = "recursive"; - outputHash = "1pzm26794nwdbsvjnczpfchxiqa1n1zhp517g6g39wfm1nfszz83"; - phases = [ "unpackPhase" "patchPhase" "installPhase" ]; patchPhase = '' From e07ac44a35dc0b376ddab3ff1b8883999c5f9b29 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 14 Jul 2019 19:00:00 -0500 Subject: [PATCH 0231/1611] gitAndTools.git-absorb: 0.3.0 -> 0.4.0 --- .../git-and-tools/git-absorb/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix b/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix index 82414befa91..509fc73a3f3 100644 --- a/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }: rustPlatform.buildRustPackage rec { - name = "git-absorb-${version}"; - version = "0.3.0"; + pname = "git-absorb"; + version = "0.4.0"; src = fetchFromGitHub { owner = "tummychow"; - repo = "git-absorb"; + repo = pname; rev = "refs/tags/${version}"; - sha256 = "1dm442lyk7f44bshm2ajync5pzdwvdc5xfpw2lkvjzxflmh5572z"; + sha256 = "1clmd1b90vppbzng1kq0vzfh7964m3fk64q6h1vfcd1cfqj63r5v"; }; buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]; @@ -16,7 +16,7 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "0q40qcki49dw23n3brgdz5plvigmsf61jm0kfy48j89mijih8zy7"; meta = with stdenv.lib; { - inherit (src.meta) homepage; + homepage = "https://github.com/tummychow/git-absorb"; description = "git commit --fixup, but automatic"; license = [ licenses.bsd3 ]; maintainers = [ maintainers.marsam ]; From 5d69e5f84bb29fd0d8abd9636717fc2899f919ba Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sun, 14 Jul 2019 16:38:00 -0700 Subject: [PATCH 0232/1611] Update documentation about adding new Vim plugins to nixpkgs --- doc/languages-frameworks/vim.section.md | 27 ++++++++++++++++--------- pkgs/misc/vim-plugins/readme.md | 1 + 2 files changed, 18 insertions(+), 10 deletions(-) create mode 100644 pkgs/misc/vim-plugins/readme.md diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md index c450a09f7bd..c75b6bd32fd 100644 --- a/doc/languages-frameworks/vim.section.md +++ b/doc/languages-frameworks/vim.section.md @@ -235,15 +235,23 @@ Sample output2: ## Adding new plugins to nixpkgs -In `pkgs/misc/vim-plugins/vim-plugin-names` we store the plugin names -for all vim plugins we automatically generate plugins for. -The format of this file `github username/github repository`: -For example https://github.com/scrooloose/nerdtree becomes `scrooloose/nerdtree`. -After adding your plugin to this file run the `./update.py` in the same folder. -This will updated a file called `generated.nix` and make your plugin accessible in the -`vimPlugins` attribute set (`vimPlugins.nerdtree` in our example). -If additional steps to the build process of the plugin are required, add an -override to the `pkgs/misc/vim-plugins/default.nix` in the same directory. +Nix expressions for Vim plugins are stored in [pkgs/misc/vim-plugins](/pkgs/misc/vim-plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`./update.py`](/pkgs/misc/vim-plugins/update.py). This creates a [generated.nix](/pkgs/misc/vim-plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](/pkgs/misc/vim-plugins/vim-plugin-names). Plugins are listed in alphabetical order in `vim-plugin-names` using the format `[github username]/[repository]`. For example https://github.com/scrooloose/nerdtree becomes `scrooloose/nerdtree`. + +Some plugins require overrides in order to function properly. Overrides are placed in [overrides.nix](/pkgs/misc/vim-plugins/overrides.nix). Overrides are most often required when a plugin requires some dependencies, or extra steps are required during the build process. For example `deoplete-fish` requires both `deoplete-nvim` and `vim-fish`, and so the following override was added: +```nix +deoplete-fish = super.deoplete-fish.overrideAttrs(old: { + dependencies = with super; [ deoplete-nvim vim-fish ]; +}); +``` + +Sometimes plugins require an override that must be changed when the plugin is updated. This can cause issues when Vim plugins are auto-updated but the associated override isn't updated. For these plugins, the override should be written so that it specifies all information required to install the plugin, and running `./update.py` doesn't change the derivation for the plugin. Manually updating the override is required to update these types of plugins. An example of such a plugin is `LanguageClient-neovim`. + +To add a new plugin: + + 1. run `./update.py` and create a commit named "vimPlugins: Update", + 2. add the new plugin to [vim-plugin-names](/pkgs/misc/vim-plugins/vim-plugin-names) and add overrides if required to [overrides.nix](/pkgs/misc/vim-plugins/overrides.nix), + 3. run `./update.py` again and create a commit named "vimPlugins.[name]: init at [version]" (where `name` and `version` can be found in [generated.nix](/pkgs/misc/vim-plugins/generated.nix)), and + 4. create a pull request. ## Important repositories @@ -252,4 +260,3 @@ override to the `pkgs/misc/vim-plugins/default.nix` in the same directory. - [vim2nix](https://github.com/MarcWeber/vim-addon-vim2nix) which generates the .nix code - diff --git a/pkgs/misc/vim-plugins/readme.md b/pkgs/misc/vim-plugins/readme.md new file mode 100644 index 00000000000..0758a3e9598 --- /dev/null +++ b/pkgs/misc/vim-plugins/readme.md @@ -0,0 +1 @@ +Instructions for adding Vim plugins to `nixpkgs` can be found [here](/doc/languages-frameworks/vim.section.md). From 2b6012ac394589b376cce9291ca295fb22fc095a Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sun, 14 Jul 2019 17:13:34 -0700 Subject: [PATCH 0233/1611] Cleanup formatting in Vim plugin docs --- doc/languages-frameworks/vim.section.md | 141 +++++++++++++----------- 1 file changed, 78 insertions(+), 63 deletions(-) diff --git a/doc/languages-frameworks/vim.section.md b/doc/languages-frameworks/vim.section.md index c75b6bd32fd..537e7b93e52 100644 --- a/doc/languages-frameworks/vim.section.md +++ b/doc/languages-frameworks/vim.section.md @@ -21,7 +21,7 @@ At the moment we support three different methods for managing plugins: Adding custom .vimrc lines can be done using the following code: -``` +```nix vim_configurable.customize { # `name` specifies the name of the executable and package name = "vim-with-plugins"; @@ -32,11 +32,11 @@ vim_configurable.customize { } ``` -This configuration is used when vim is invoked with the command specified as name, in this case `vim-with-plugins`. +This configuration is used when Vim is invoked with the command specified as name, in this case `vim-with-plugins`. For Neovim the `configure` argument can be overridden to achieve the same: -``` +```nix neovim.override { configure = { customRC = '' @@ -46,10 +46,10 @@ neovim.override { } ``` -If you want to use `neovim-qt` as a graphical editor, you can configure it by overriding neovim in an overlay -or passing it an overridden neovimn: +If you want to use `neovim-qt` as a graphical editor, you can configure it by overriding Neovim in an overlay +or passing it an overridden Neovimn: -``` +```nix neovim-qt.override { neovim = neovim.override { configure = { @@ -63,16 +63,16 @@ neovim-qt.override { ## Managing plugins with Vim packages -To store you plugins in Vim packages (the native vim plugin manager, see `:help packages`) the following example can be used: +To store you plugins in Vim packages (the native Vim plugin manager, see `:help packages`) the following example can be used: -``` +```nix vim_configurable.customize { vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; { # loaded on launch start = [ youcompleteme fugitive ]; # manually loadable by calling `:packadd $plugin-name` - # however, if a vim plugin has a dependency that is not explicitly listed in - # opt that dependency will always be added to start to avoid confusion. + # however, if a Vim plugin has a dependency that is not explicitly listed in + # opt that dependency will always be added to start to avoid confusion. opt = [ phpCompletion elm-vim ]; # To automatically load a plugin when opening a filetype, add vimrc lines like: # autocmd FileType php :packadd phpCompletion @@ -83,7 +83,7 @@ vim_configurable.customize { `myVimPackage` is an arbitrary name for the generated package. You can choose any name you like. For Neovim the syntax is: -``` +```nix neovim.override { configure = { customRC = '' @@ -92,7 +92,7 @@ neovim.override { packages.myVimPackage = with pkgs.vimPlugins; { # see examples below how to use custom packages start = [ ]; - # If a vim plugin has a dependency that is not explicitly listed in + # If a Vim plugin has a dependency that is not explicitly listed in # opt that dependency will always be added to start to avoid confusion. opt = [ ]; }; @@ -102,7 +102,7 @@ neovim.override { The resulting package can be added to `packageOverrides` in `~/.nixpkgs/config.nix` to make it installable: -``` +```nix { packageOverrides = pkgs: with pkgs; { myVim = vim_configurable.customize { @@ -126,7 +126,7 @@ After that you can install your special grafted `myVim` or `myNeovim` packages. To use [vim-plug](https://github.com/junegunn/vim-plug) to manage your Vim plugins the following example can be used: -``` +```nix vim_configurable.customize { vimrcConfig.packages.myVimPackage = with pkgs.vimPlugins; { # loaded on launch @@ -137,7 +137,7 @@ vim_configurable.customize { For Neovim the syntax is: -``` +```nix neovim.override { configure = { customRC = '' @@ -161,84 +161,99 @@ assuming that "using latest version" is ok most of the time. First create a vim-scripts file having one plugin name per line. Example: - "tlib" - {'name': 'vim-addon-sql'} - {'filetype_regex': '\%(vim)$', 'names': ['reload', 'vim-dev-plugin']} +``` +"tlib" +{'name': 'vim-addon-sql'} +{'filetype_regex': '\%(vim)$', 'names': ['reload', 'vim-dev-plugin']} +``` Such vim-scripts file can be read by VAM as well like this: - call vam#Scripts(expand('~/.vim-scripts'), {}) +```vim +call vam#Scripts(expand('~/.vim-scripts'), {}) +``` Create a default.nix file: - { nixpkgs ? import {}, compiler ? "ghc7102" }: - nixpkgs.vim_configurable.customize { name = "vim"; vimrcConfig.vam.pluginDictionaries = [ "vim-addon-vim2nix" ]; } +```nix +{ nixpkgs ? import {}, compiler ? "ghc7102" }: +nixpkgs.vim_configurable.customize { name = "vim"; vimrcConfig.vam.pluginDictionaries = [ "vim-addon-vim2nix" ]; } +``` Create a generate.vim file: - ActivateAddons vim-addon-vim2nix - let vim_scripts = "vim-scripts" - call nix#ExportPluginsForNix({ - \ 'path_to_nixpkgs': eval('{"'.substitute(substitute(substitute($NIX_PATH, ':', ',', 'g'), '=',':', 'g'), '\([:,]\)', '"\1"',"g").'"}')["nixpkgs"], - \ 'cache_file': '/tmp/vim2nix-cache', - \ 'try_catch': 0, - \ 'plugin_dictionaries': ["vim-addon-manager"]+map(readfile(vim_scripts), 'eval(v:val)') - \ }) +```vim +ActivateAddons vim-addon-vim2nix +let vim_scripts = "vim-scripts" +call nix#ExportPluginsForNix({ +\ 'path_to_nixpkgs': eval('{"'.substitute(substitute(substitute($NIX_PATH, ':', ',', 'g'), '=',':', 'g'), '\([:,]\)', '"\1"',"g").'"}')["nixpkgs"], +\ 'cache_file': '/tmp/vim2nix-cache', +\ 'try_catch': 0, +\ 'plugin_dictionaries': ["vim-addon-manager"]+map(readfile(vim_scripts), 'eval(v:val)') +\ }) +``` Then run - nix-shell -p vimUtils.vim_with_vim2nix --command "vim -c 'source generate.vim'" +```bash +nix-shell -p vimUtils.vim_with_vim2nix --command "vim -c 'source generate.vim'" +``` You should get a Vim buffer with the nix derivations (output1) and vam.pluginDictionaries (output2). -You can add your vim to your system's configuration file like this and start it by "vim-my": +You can add your Vim to your system's configuration file like this and start it by "vim-my": - my-vim = - let plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in { - copy paste output1 here - }; in vim_configurable.customize { - name = "vim-my"; +``` +my-vim = + let plugins = let inherit (vimUtils) buildVimPluginFrom2Nix; in { + copy paste output1 here + }; in vim_configurable.customize { + name = "vim-my"; - vimrcConfig.vam.knownPlugins = plugins; # optional - vimrcConfig.vam.pluginDictionaries = [ - copy paste output2 here - ]; - - # Pathogen would be - # vimrcConfig.pathogen.knownPlugins = plugins; # plugins - # vimrcConfig.pathogen.pluginNames = ["tlib"]; - }; + vimrcConfig.vam.knownPlugins = plugins; # optional + vimrcConfig.vam.pluginDictionaries = [ + copy paste output2 here + ]; + # Pathogen would be + # vimrcConfig.pathogen.knownPlugins = plugins; # plugins + # vimrcConfig.pathogen.pluginNames = ["tlib"]; + }; +``` Sample output1: - "reload" = buildVimPluginFrom2Nix { # created by nix#NixDerivation - name = "reload"; - src = fetchgit { - url = "git://github.com/xolox/vim-reload"; - rev = "0a601a668727f5b675cb1ddc19f6861f3f7ab9e1"; - sha256 = "0vb832l9yxj919f5hfg6qj6bn9ni57gnjd3bj7zpq7d4iv2s4wdh"; - }; - dependencies = ["nim-misc"]; +``` +"reload" = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "reload"; + src = fetchgit { + url = "git://github.com/xolox/vim-reload"; + rev = "0a601a668727f5b675cb1ddc19f6861f3f7ab9e1"; + sha256 = "0vb832l9yxj919f5hfg6qj6bn9ni57gnjd3bj7zpq7d4iv2s4wdh"; + }; + dependencies = ["nim-misc"]; - }; - [...] +}; +[...] +``` Sample output2: - [ - ''vim-addon-manager'' - ''tlib'' - { "name" = ''vim-addon-sql''; } - { "filetype_regex" = ''\%(vim)$$''; "names" = [ ''reload'' ''vim-dev-plugin'' ]; } - ] - +```nix +[ + ''vim-addon-manager'' + ''tlib'' + { "name" = ''vim-addon-sql''; } + { "filetype_regex" = ''\%(vim)$$''; "names" = [ ''reload'' ''vim-dev-plugin'' ]; } +] +``` ## Adding new plugins to nixpkgs Nix expressions for Vim plugins are stored in [pkgs/misc/vim-plugins](/pkgs/misc/vim-plugins). For the vast majority of plugins, Nix expressions are automatically generated by running [`./update.py`](/pkgs/misc/vim-plugins/update.py). This creates a [generated.nix](/pkgs/misc/vim-plugins/generated.nix) file based on the plugins listed in [vim-plugin-names](/pkgs/misc/vim-plugins/vim-plugin-names). Plugins are listed in alphabetical order in `vim-plugin-names` using the format `[github username]/[repository]`. For example https://github.com/scrooloose/nerdtree becomes `scrooloose/nerdtree`. Some plugins require overrides in order to function properly. Overrides are placed in [overrides.nix](/pkgs/misc/vim-plugins/overrides.nix). Overrides are most often required when a plugin requires some dependencies, or extra steps are required during the build process. For example `deoplete-fish` requires both `deoplete-nvim` and `vim-fish`, and so the following override was added: -```nix + +``` deoplete-fish = super.deoplete-fish.overrideAttrs(old: { dependencies = with super; [ deoplete-nvim vim-fish ]; }); From 41a22ac77a5589c74d1bea27625016b34c04f097 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 14 Jul 2019 21:48:40 -0500 Subject: [PATCH 0234/1611] pythonPackages.sklearn-deap: 0.2.2 -> 0.2.3 --- .../python-modules/sklearn-deap/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/sklearn-deap/default.nix b/pkgs/development/python-modules/sklearn-deap/default.nix index 63a048abdb2..c54997a21fe 100644 --- a/pkgs/development/python-modules/sklearn-deap/default.nix +++ b/pkgs/development/python-modules/sklearn-deap/default.nix @@ -1,17 +1,25 @@ -{ stdenv, buildPythonPackage, fetchFromGitHub, numpy, scipy, deap, scikitlearn, python, isPy3k }: +{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, numpy, scipy, deap, scikitlearn, python }: buildPythonPackage rec { pname = "sklearn-deap"; - version = "0.2.2"; + version = "0.2.3"; # No tests in Pypi src = fetchFromGitHub { owner = "rsteca"; repo = pname; rev = "${version}"; - sha256 = "01ynmzxg181xhv2d7bs53zjvk9x2qpxix32sspq54mpigxh13ava"; + sha256 = "1yqnmy8h08i2y6bb2s0a5nx9cwvyg45293whqh420c195gpzg1x3"; }; + patches = [ + # Fix for newer versions of scikit-learn. See: https://github.com/rsteca/sklearn-deap/pull/62 + (fetchpatch { + url = "https://github.com/rsteca/sklearn-deap/commit/3ae62990fc87f36b59382e7c4db3c74cf99ec3bf.patch"; + sha256 = "1na6wf4v0dcmyz3pz8aiqkmv76d1iz3hi4iyfq9kfnycgzpv1kxk"; + }) + ]; + propagatedBuildInputs = [ numpy scipy deap scikitlearn ]; checkPhase = '' @@ -23,7 +31,6 @@ buildPythonPackage rec { homepage = https://github.com/rsteca/sklearn-deap; license = licenses.lgpl3; maintainers = with maintainers; [ psyanticy ]; - broken = isPy3k; # https://github.com/rsteca/sklearn-deap/issues/65 }; } From bd31f06d8758306e862ee83458559010d8db4fec Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 22:05:31 -0700 Subject: [PATCH 0235/1611] asdf: 3.3.2 -> 3.3.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/asdf/versions --- pkgs/development/lisp-modules/asdf/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/lisp-modules/asdf/default.nix b/pkgs/development/lisp-modules/asdf/default.nix index c9d8d52b068..8d316d06fbb 100644 --- a/pkgs/development/lisp-modules/asdf/default.nix +++ b/pkgs/development/lisp-modules/asdf/default.nix @@ -3,11 +3,11 @@ let s = # Generated upstream information rec { baseName="asdf"; - version="3.3.2"; + version="3.3.3"; name="${baseName}-${version}"; - hash="1bdrybn97qhny5192ifis8fp8m79djql2k4h9r9q2wnwxf9q2d4x"; - url="http://common-lisp.net/project/asdf/archives/asdf-3.3.2.tar.gz"; - sha256="1bdrybn97qhny5192ifis8fp8m79djql2k4h9r9q2wnwxf9q2d4x"; + hash="1167445kmb0dbixc5l2r58cswg5s6jays0l1zxrk3aij0490bkgg"; + url="http://common-lisp.net/project/asdf/archives/asdf-3.3.3.tar.gz"; + sha256="1167445kmb0dbixc5l2r58cswg5s6jays0l1zxrk3aij0490bkgg"; }; buildInputs = [ texinfo texLive perl From 6f8a7408d9084252db7572a0efebe5f78c4f8acc Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 22:24:43 -0700 Subject: [PATCH 0236/1611] amazon-ecs-cli: 1.14.1 -> 1.15.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/amazon-ecs-cli/versions --- pkgs/tools/virtualization/amazon-ecs-cli/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/virtualization/amazon-ecs-cli/default.nix b/pkgs/tools/virtualization/amazon-ecs-cli/default.nix index f62fdd2f78f..6ed545deb67 100644 --- a/pkgs/tools/virtualization/amazon-ecs-cli/default.nix +++ b/pkgs/tools/virtualization/amazon-ecs-cli/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "amazon-ecs-cli-${version}"; - version = "1.14.1"; + version = "1.15.1"; src = fetchurl { url = "https://s3.amazonaws.com/amazon-ecs-cli/ecs-cli-linux-amd64-v${version}"; - sha256 = "12q167pbpxw38p1bzcy9z4ix7yh9giwkyrc4vq2qln3pjn9d31rj"; + sha256 = "0p0z12b6z00sxzjfsvb37czgczrsi61klr5azan0f8wf32x6wc28"; }; dontUnpack = true; From e9a6ed87b307f1f8c6d4937eb89769048a76e1f0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 22:44:00 -0700 Subject: [PATCH 0237/1611] calibre: 3.44.0 -> 3.45.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/calibre/versions --- pkgs/applications/misc/calibre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index c05b98a0728..b022f523007 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "3.44.0"; + version = "3.45.2"; name = "calibre-${version}"; src = fetchurl { url = "https://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "13d3cbn8qbjd8a19qprra6gmib1d818c3zgf3q70kx6b2fq58lzi"; + sha256 = "1379g375s3h0fgv9qg43hrg16knd76ym7qkffpn1qyc7kkhv8a05"; }; patches = [ From 2c045c8f6def27614ca211814978274d617dd86f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 23:15:31 -0700 Subject: [PATCH 0238/1611] babeltrace: 1.5.6 -> 1.5.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/babeltrace/versions --- pkgs/development/tools/misc/babeltrace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/babeltrace/default.nix b/pkgs/development/tools/misc/babeltrace/default.nix index cb00111b2b4..19ed711f1f4 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.6"; + name = "babeltrace-1.5.7"; src = fetchurl { url = "https://www.efficios.com/files/babeltrace/${name}.tar.bz2"; - sha256 = "1dxv2pwyqx2p7kzhcfansij40m9kanl85x2r68dmgp98g0hvq22k"; + sha256 = "0yw05cnk5w8b5nbznycglyn4h3hq56a1n8rlb9k9rlzz4ph32lr1"; }; nativeBuildInputs = [ pkgconfig ]; From 16c9d30a531ed4a28f745d0e94aff1fab8bbfeec Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Sun, 14 Jul 2019 23:44:25 -0700 Subject: [PATCH 0239/1611] exa: 0.8.0 -> 0.9.0 --- pkgs/tools/misc/exa/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/exa/default.nix b/pkgs/tools/misc/exa/default.nix index fe117492e82..7c43638ea56 100644 --- a/pkgs/tools/misc/exa/default.nix +++ b/pkgs/tools/misc/exa/default.nix @@ -6,15 +6,15 @@ with rustPlatform; buildRustPackage rec { name = "exa-${version}"; - version = "0.8.0"; + version = "0.9.0"; - cargoSha256 = "0kaldln4fb9n53190m2r130mcblkjx32glzj9rk8hrz6dd6yhfb0"; + cargoSha256 = "1hgjp23rjd90wyf0nq6d5akjxdfjlaps54dv23zgwjvkhw24fidf"; src = fetchFromGitHub { owner = "ogham"; repo = "exa"; rev = "v${version}"; - sha256 = "0jy11a3xfnfnmyw1kjmv4ffavhijs8c940kw24vafklnacx5n88m"; + sha256 = "14qlm9zb9v22hxbbi833xaq2b7qsxnmh15s317200vz5f1305hhw"; }; nativeBuildInputs = [ cmake pkgconfig perl ]; @@ -52,6 +52,6 @@ buildRustPackage rec { ''; homepage = https://the.exa.website; license = licenses.mit; - maintainers = [ maintainers.ehegnes ]; + maintainers = with maintainers; [ ehegnes lilyball ]; }; } From c990b091f53b6f52b4db051d0795c85cd60024c7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 00:05:55 -0700 Subject: [PATCH 0240/1611] python37Packages.acme-tiny: 4.0.4 -> 4.1.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-acme-tiny/versions --- pkgs/development/python-modules/acme-tiny/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/acme-tiny/default.nix b/pkgs/development/python-modules/acme-tiny/default.nix index e212e83c270..51b4b15cd18 100644 --- a/pkgs/development/python-modules/acme-tiny/default.nix +++ b/pkgs/development/python-modules/acme-tiny/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "acme-tiny"; - version = "4.0.4"; + version = "4.1.0"; src = fetchPypi { inherit pname version; - sha256 = "0vqlmvk34jgvgx3qdsh50q7m4aiy02786jyjjcq45dcws7a4f9f1"; + sha256 = "0jmg525n4n98hwy3hf303jbnq23z79sqwgliji9j7qcnph47gkgq"; }; patchPhase = '' From 980dd7595606b295fccd98d6b12336885b808d15 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 00:32:59 -0700 Subject: [PATCH 0241/1611] binaryen: 84 -> 86 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/binaryen/versions --- pkgs/development/compilers/binaryen/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/binaryen/default.nix b/pkgs/development/compilers/binaryen/default.nix index 8ebed6f4b5b..77f051156d1 100644 --- a/pkgs/development/compilers/binaryen/default.nix +++ b/pkgs/development/compilers/binaryen/default.nix @@ -1,11 +1,11 @@ { stdenv, cmake, python, fetchFromGitHub, emscriptenRev ? null }: let - defaultVersion = "84"; + defaultVersion = "86"; # Map from git revs to SHA256 hashes sha256s = { - "version_84" = "189zqc5gp8fm7clsgby9h2s758ijil7ma4liwbf81wnwkb4kqxc0"; + "version_86" = "12h5018rdwg7vjni0mz91vkpdwyqw0nfacig3vg9dvyn4fnfm76z"; "1.38.28" = "172s7y5f38736ic8ri3mnbdqcrkadd40a26cxcfwbscc53phl11v"; }; in From 7094a1af0c528b7c519a38253e5a4fab7dcf056e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 14 Jul 2019 22:05:06 -0500 Subject: [PATCH 0242/1611] python37: fix distutils C++ patch (PR #64758) Update distutils patch to the upstream changes. See: https://github.com/python/cpython/commit/6c0e0d141a07cc3fd2441d9df8d762f56bf7edf2 --- .../python/cpython/3.7/python-3.x-distutils-C++.patch | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/python/cpython/3.7/python-3.x-distutils-C++.patch b/pkgs/development/interpreters/python/cpython/3.7/python-3.x-distutils-C++.patch index ceb6047d31d..243313f7654 100644 --- a/pkgs/development/interpreters/python/cpython/3.7/python-3.x-distutils-C++.patch +++ b/pkgs/development/interpreters/python/cpython/3.7/python-3.x-distutils-C++.patch @@ -83,8 +83,8 @@ _osx_support.customize_compiler(_config_vars) _config_vars['CUSTOMIZED_OSX_COMPILER'] = 'True' -- (cc, cxx, opt, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \ -- get_config_vars('CC', 'CXX', 'OPT', 'CFLAGS', +- (cc, cxx, cflags, ccshared, ldshared, shlib_suffix, ar, ar_flags) = \ +- get_config_vars('CC', 'CXX', 'CFLAGS', - 'CCSHARED', 'LDSHARED', 'SHLIB_SUFFIX', 'AR', 'ARFLAGS') + (cc, cxx, cflags, ccshared, ldshared, ldcxxshared, shlib_suffix, ar, ar_flags) = \ + get_config_vars('CC', 'CXX', 'CFLAGS', 'CCSHARED', 'LDSHARED', 'LDCXXSHARED', @@ -108,7 +108,7 @@ ldshared = ldshared + ' ' + os.environ['LDFLAGS'] + ldcxxshared = ldcxxshared + ' ' + os.environ['LDFLAGS'] if 'CFLAGS' in os.environ: -- cflags = opt + ' ' + os.environ['CFLAGS'] +- cflags = cflags + ' ' + os.environ['CFLAGS'] + cflags = os.environ['CFLAGS'] ldshared = ldshared + ' ' + os.environ['CFLAGS'] + if 'CXXFLAGS' in os.environ: From 442fd85db6848444c51ad498f49ca2c563ebf3aa Mon Sep 17 00:00:00 2001 From: taku0 Date: Sun, 14 Jul 2019 14:52:19 +0900 Subject: [PATCH 0243/1611] nss: 3.44 -> 3.44.1 --- pkgs/development/libraries/nss/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index f3fc4caf315..b410686865f 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -5,7 +5,7 @@ let url = http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz; sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw"; }; - version = "3.44"; + version = "3.44.1"; underscoreVersion = builtins.replaceStrings ["."] ["_"] version; in stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${name}.tar.gz"; - sha256 = "1zvabgxlyvz3fnv4w89y4a5qkscjmm88naf929dgvvgfnrchwqm5"; + sha256 = "1y0jvva4s3j7cjz22kqw2lsml0an1295bgpc2raf7kc9r60cpr7w"; }; depsBuildBuild = [ buildPackages.stdenv.cc ]; From fe0bfb3fec2258b8e7be628fd619c541dbd21afc Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Wed, 15 May 2019 18:17:20 +0200 Subject: [PATCH 0244/1611] tsm-client: init at 8.1.8.0 IBM Spectrum Protect (former name: Tivoli Storage Manager) provides a single point of control for backup and recovery. This package contains the client software, that is, a command line client and linkable libraries. This commit adds two packages to nixpkgs: The TSM client software contains a Java GUI that, naturally, requires Java to be installed. To keep the closure size low, we provide the packages `tsm-client` and `tsm-client-withGUI`. The former comes without the Java GUI. While the product has been renamed, its old name is still alive in filenames and as package name used by other distros. --- pkgs/tools/backup/tsm-client/default.nix | 165 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 + 2 files changed, 168 insertions(+) create mode 100644 pkgs/tools/backup/tsm-client/default.nix diff --git a/pkgs/tools/backup/tsm-client/default.nix b/pkgs/tools/backup/tsm-client/default.nix new file mode 100644 index 00000000000..a1f7b1aba84 --- /dev/null +++ b/pkgs/tools/backup/tsm-client/default.nix @@ -0,0 +1,165 @@ +{ lib +, stdenv +, autoPatchelfHook +, buildEnv +, fetchurl +, makeWrapper +, procps +, zlib +# optional packages that enable certain features +, acl ? null # EXT2/EXT3/XFS ACL support +, jdk8 ? null # Java GUI +, lvm2 ? null # LVM image backup and restore functions +# path to `dsm.sys` configuration files +, dsmSysCli ? "/etc/tsm-client/cli.dsm.sys" +, dsmSysApi ? "/etc/tsm-client/api.dsm.sys" +}: + + +# For an explanation of optional packages +# (features provided by them, version limits), see +# https://www-01.ibm.com/support/docview.wss?uid=swg21052223#Version%208.1 + + +# IBM Tivoli Storage Manager Client uses a system-wide +# client system-options file `dsm.sys` and expects it +# to be located in a directory within the package. +# Note that the command line client and the API use +# different "dms.sys" files (located in different directories). +# Since these files contain settings to be altered by the +# admin user (e.g. TSM server name), we create symlinks +# in place of the files that the client attempts to open. +# Use the arguments `dsmSysCli` and `dsmSysApi` to +# provide the location of the configuration files for +# the command-line interface and the API, respectively. +# +# While the command-line interface contains wrappers +# that help the executables find the configuration file, +# packages that link against the API have to +# set the environment variable `DSMI_DIR` to +# point to this derivations `/dsmi_dir` directory symlink. +# Other environment variables might be necessary, +# depending on local configuration or usage; see: +# https://www.ibm.com/support/knowledgecenter/en/SSEQVQ_8.1.8/client/c_cfg_sapiunix.html + + +# The newest version of TSM client should be discoverable +# by going the the `downloadPage` (see `meta` below), +# there to "Client Latest Downloads", +# "IBM Spectrum Protect Client Downloads and READMEs", +# then to "Linux x86_64 Ubuntu client" (as of 2019-07-15). + + +let + + meta = { + homepage = https://www.ibm.com/us-en/marketplace/data-protection-and-recovery; + downloadPage = https://www-01.ibm.com/support/docview.wss?uid=swg21239415; + platforms = [ "x86_64-linux" ]; + license = lib.licenses.unfree; + maintainers = [ lib.maintainers.yarny ]; + description = "IBM Spectrum Protect (Tivoli Storage Manager) CLI and API"; + longDescription = '' + IBM Spectrum Protect (Tivoli Storage Manager) provides + a single point of control for backup and recovery. + This package contains the client software, that is, + a command line client and linkable libraries. + + Note that the software requires a system-wide + client system-options file (commonly named "dsm.sys"). + This package allows to use separate files for + the command-line interface and for the linkable API. + The location of those files can + be provided as build parameters. + ''; + }; + + unwrapped = stdenv.mkDerivation rec { + name = "tsm-client-${version}-unwrapped"; + version = "8.1.8.0"; + src = fetchurl { + url = "ftp://public.dhe.ibm.com/storage/tivoli-storage-management/maintenance/client/v8r1/Linux/LinuxX86_DEB/BA/v818/${version}-TIV-TSMBAC-LinuxX86_DEB.tar"; + sha256 = "0c1d0jm0i7qjd314nhj2vj8fs7sncm1x2n4d6dg4049jniyvjhpk"; + }; + inherit meta; + + nativeBuildInputs = [ + autoPatchelfHook + ]; + buildInputs = [ + stdenv.cc.cc + zlib + ]; + runtimeDependencies = [ + lvm2 + ]; + sourceRoot = "."; + + postUnpack = '' + for debfile in *.deb + do + ar -x "$debfile" + tar --xz --extract --file=data.tar.xz + rm data.tar.xz + done + ''; + + installPhase = '' + runHook preInstall + mkdir --parents $out + mv --target-directory=$out usr/* opt + runHook postInstall + ''; + + # Fix relative symlinks after `/usr` was moved up one level + preFixup = '' + for link in $out/lib/* $out/bin/* + do + target=$(readlink "$link") + if [ "$(cut -b -6 <<< "$target")" != "../../" ] + then + echo "cannot fix this symlink: $link -> $target" + exit 1 + fi + ln --symbolic --force --no-target-directory "$out/$(cut -b 7- <<< "$target")" "$link" + done + ''; + }; + +in + +buildEnv { + name = "tsm-client-${unwrapped.version}"; + inherit meta; + passthru = { inherit unwrapped; }; + paths = [ unwrapped ]; + buildInputs = [ makeWrapper ]; + pathsToLink = [ + "/" + "/bin" + "/opt/tivoli/tsm/client/ba/bin" + "/opt/tivoli/tsm/client/api/bin64" + ]; + # * Provide top-level symlinks `dsm_dir` and `dsmi_dir` + # to the so-called "installation directories" + # * Add symlinks to the "installation directories" + # that point to the `dsm.sys` configuration files + # * Drop the Java GUI executable unless `jdk` is present + # * Create wrappers for the command-line interface to + # prepare `PATH` and `DSM_DIR` environment variables + postBuild = '' + ln --symbolic --no-target-directory opt/tivoli/tsm/client/ba/bin $out/dsm_dir + ln --symbolic --no-target-directory opt/tivoli/tsm/client/api/bin64 $out/dsmi_dir + ln --symbolic --no-target-directory "${dsmSysCli}" $out/dsm_dir/dsm.sys + ln --symbolic --no-target-directory "${dsmSysApi}" $out/dsmi_dir/dsm.sys + ${lib.strings.optionalString (jdk8==null) "rm $out/bin/dsmj"} + for bin in $out/bin/* + do + target=$(readlink "$bin") + rm "$bin" + makeWrapper "$target" "$bin" \ + --prefix PATH : "$out/dsm_dir:${lib.strings.makeBinPath [ procps acl jdk8 ]}" \ + --set DSM_DIR $out/dsm_dir + done + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 834dbc534e0..4a67efc6b4a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2679,6 +2679,9 @@ in teamocil = callPackage ../tools/misc/teamocil { }; + tsm-client = callPackage ../tools/backup/tsm-client { jdk8 = null; }; + tsm-client-withGui = callPackage ../tools/backup/tsm-client { }; + tridactyl-native = callPackage ../tools/networking/tridactyl-native { }; trompeloeil = callPackage ../development/libraries/trompeloeil { }; From f5b873f43c848bb29cd38f2d3ff344ef97de82ad Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Wed, 15 May 2019 18:17:30 +0200 Subject: [PATCH 0245/1611] nixos/tsm-client: init module This commit brings a module that installs the IBM Spectrum Protect (Tivoli Storage Manager) command-line client together with its system-wide client system-options file `dsm.sys`. --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/tsm-client.nix | 287 ++++++++++++++++++++++++++ 2 files changed, 288 insertions(+) create mode 100644 nixos/modules/programs/tsm-client.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 1d1995eda25..4ce1bb6cd48 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -138,6 +138,7 @@ ./programs/sway.nix ./programs/thefuck.nix ./programs/tmux.nix + ./programs/tsm-client.nix ./programs/udevil.nix ./programs/venus.nix ./programs/vim.nix diff --git a/nixos/modules/programs/tsm-client.nix b/nixos/modules/programs/tsm-client.nix new file mode 100644 index 00000000000..eb6f1247528 --- /dev/null +++ b/nixos/modules/programs/tsm-client.nix @@ -0,0 +1,287 @@ +{ config, lib, pkgs, ... }: + +let + + inherit (builtins) length map; + inherit (lib.attrsets) attrNames filterAttrs hasAttr mapAttrs mapAttrsToList optionalAttrs; + inherit (lib.modules) mkDefault mkIf; + inherit (lib.options) literalExample mkEnableOption mkOption; + inherit (lib.strings) concatStringsSep optionalString toLower; + inherit (lib.types) addCheck attrsOf lines loaOf nullOr package path port str strMatching submodule; + + # Checks if given list of strings contains unique + # elements when compared without considering case. + # Type: checkIUnique :: [string] -> bool + # Example: checkIUnique ["foo" "Foo"] => false + checkIUnique = lst: + let + lenUniq = l: length (lib.lists.unique l); + in + lenUniq lst == lenUniq (map toLower lst); + + # TSM rejects servername strings longer than 64 chars. + servernameType = strMatching ".{1,64}"; + + serverOptions = { name, config, ... }: { + options.name = mkOption { + type = servernameType; + example = "mainTsmServer"; + description = '' + Local name of the IBM TSM server, + must be uncapitalized and no longer than 64 chars. + The value will be used for the + server + directive in dsm.sys. + ''; + }; + options.server = mkOption { + type = strMatching ".+"; + example = "tsmserver.company.com"; + description = '' + Host/domain name or IP address of the IBM TSM server. + The value will be used for the + tcpserveraddress + directive in dsm.sys. + ''; + }; + options.port = mkOption { + type = addCheck port (p: p<=32767); + default = 1500; # official default + description = '' + TCP port of the IBM TSM server. + The value will be used for the + tcpport + directive in dsm.sys. + TSM does not support ports above 32767. + ''; + }; + options.node = mkOption { + type = strMatching ".+"; + example = "MY-TSM-NODE"; + description = '' + Target node name on the IBM TSM server. + The value will be used for the + nodename + directive in dsm.sys. + ''; + }; + options.genPasswd = mkEnableOption '' + automatic client password generation. + This option influences the + passwordaccess + directive in dsm.sys. + The password will be stored in the directory + given by the option . + Caution: + If this option is enabled and the server forces + to renew the password (e.g. on first connection), + a random password will be generated and stored + ''; + options.passwdDir = mkOption { + type = path; + example = "/home/alice/tsm-password"; + description = '' + Directory that holds the TSM + node's password information. + The value will be used for the + passworddir + directive in dsm.sys. + ''; + }; + options.includeExclude = mkOption { + type = lines; + default = ""; + example = '' + exclude.dir /nix/store + include.encrypt /home/.../* + ''; + description = '' + include.* and + exclude.* directives to be + used when sending files to the IBM TSM server. + The lines will be written into a file that the + inclexcl + directive in dsm.sys points to. + ''; + }; + options.extraConfig = mkOption { + # TSM option keys are case insensitive; + # we have to ensure there are no keys that + # differ only by upper and lower case. + type = addCheck + (attrsOf (nullOr str)) + (attrs: checkIUnique (attrNames attrs)); + default = {}; + example.compression = "yes"; + example.passwordaccess = null; + description = '' + Additional key-value pairs for the server stanza. + Values must be strings, or null + for the key not to be used in the stanza + (e.g. to overrule values generated by other options). + ''; + }; + options.text = mkOption { + type = lines; + example = literalExample + ''lib.modules.mkAfter "compression no"''; + description = '' + Additional text lines for the server stanza. + This option can be used if certion configuration keys + must be used multiple times or ordered in a certain way + as the option can't + control the order of lines in the resulting stanza. + Note that the server + line at the beginning of the stanza is + not part of this option's value. + ''; + }; + options.stanza = mkOption { + type = str; + internal = true; + visible = false; + description = "Server stanza text generated from the options."; + }; + config.name = mkDefault name; + # Client system-options file directives are explained here: + # https://www.ibm.com/support/knowledgecenter/SSEQVQ_8.1.8/client/c_opt_usingopts.html + config.extraConfig = + mapAttrs (lib.trivial.const mkDefault) ( + { + commmethod = "v6tcpip"; # uses v4 or v6, based on dns lookup result + tcpserveraddress = config.server; + tcpport = builtins.toString config.port; + nodename = config.node; + passwordaccess = if config.genPasswd then "generate" else "prompt"; + passworddir = ''"${config.passwdDir}"''; + } // optionalAttrs (config.includeExclude!="") { + inclexcl = ''"${pkgs.writeText "inclexcl.dsm.sys" config.includeExclude}"''; + } + ); + config.text = + let + attrset = filterAttrs (k: v: v!=null) config.extraConfig; + mkLine = k: v: k + optionalString (v!="") " ${v}"; + lines = mapAttrsToList mkLine attrset; + in + concatStringsSep "\n" lines; + config.stanza = '' + server ${config.name} + ${config.text} + ''; + }; + + options.programs.tsmClient = { + enable = mkEnableOption '' + IBM Spectrum Protect (Tivoli Storage Manager, TSM) + client command line applications with a + client system-options file "dsm.sys" + ''; + servers = mkOption { + type = loaOf (submodule [ serverOptions ]); + default = {}; + example.mainTsmServer = { + server = "tsmserver.company.com"; + node = "MY-TSM-NODE"; + extraConfig.compression = "yes"; + }; + description = '' + Server definitions ("stanzas") + for the client system-options file. + ''; + }; + defaultServername = mkOption { + type = nullOr servernameType; + default = null; + example = "mainTsmServer"; + description = '' + If multiple server stanzas are declared with + , + this option may be used to name a default + server stanza that IBM TSM uses in the absence of + a user-defined dsm.opt file. + This option translates to a + defaultserver configuration line. + ''; + }; + dsmSysText = mkOption { + type = lines; + readOnly = true; + description = '' + This configuration key contains the effective text + of the client system-options file "dsm.sys". + It should not be changed, but may be + used to feed the configuration into other + TSM-depending packages used on the system. + ''; + }; + package = mkOption { + type = package; + default = pkgs.tsm-client; + defaultText = "pkgs.tsm-client"; + example = literalExample "pkgs.tsm-client-withGui"; + description = '' + The TSM client derivation to be + added to the system environment. + It will called with .override + to add paths to the client system-options file. + ''; + }; + wrappedPackage = mkOption { + type = package; + readOnly = true; + description = '' + The TSM client derivation, wrapped with the path + to the client system-options file "dsm.sys". + This option is to provide the effective derivation + for other modules that want to call TSM executables. + ''; + }; + }; + + cfg = config.programs.tsmClient; + + assertions = [ + { + assertion = checkIUnique (mapAttrsToList (k: v: v.name) cfg.servers); + message = '' + TSM servernames contain duplicate name + (note that case doesn't matter!) + ''; + } + { + assertion = (cfg.defaultServername!=null)->(hasAttr cfg.defaultServername cfg.servers); + message = "TSM defaultServername not found in list of servers"; + } + ]; + + dsmSysText = '' + **** IBM Spectrum Protect (Tivoli Storage Manager) + **** client system-options file "dsm.sys". + **** Do not edit! + **** This file is generated by NixOS configuration. + + ${optionalString (cfg.defaultServername!=null) "defaultserver ${cfg.defaultServername}"} + + ${concatStringsSep "\n" (mapAttrsToList (k: v: v.stanza) cfg.servers)} + ''; + +in + +{ + + inherit options; + + config = mkIf cfg.enable { + inherit assertions; + programs.tsmClient.dsmSysText = dsmSysText; + programs.tsmClient.wrappedPackage = cfg.package.override rec { + dsmSysCli = pkgs.writeText "dsm.sys" cfg.dsmSysText; + dsmSysApi = dsmSysCli; + }; + environment.systemPackages = [ cfg.wrappedPackage ]; + }; + + meta.maintainers = [ lib.maintainers.yarny ]; + +} From d99462ff5a238f65835ee907ff91d5f49f462221 Mon Sep 17 00:00:00 2001 From: Yarny0 <41838844+Yarny0@users.noreply.github.com> Date: Wed, 15 May 2019 18:17:30 +0200 Subject: [PATCH 0246/1611] nixos/backup/tsm: init module Based on the programs/tsm-client module, this commit introduces a systemd service that uses the tsm-client to create regular backups of the machine. --- nixos/modules/module-list.nix | 1 + nixos/modules/services/backup/tsm.nix | 106 ++++++++++++++++++++++++++ 2 files changed, 107 insertions(+) create mode 100644 nixos/modules/services/backup/tsm.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 4ce1bb6cd48..8fda98a3f37 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -210,6 +210,7 @@ ./services/backup/restic-rest-server.nix ./services/backup/rsnapshot.nix ./services/backup/tarsnap.nix + ./services/backup/tsm.nix ./services/backup/znapzend.nix ./services/cluster/hadoop/default.nix ./services/cluster/kubernetes/addons/dns.nix diff --git a/nixos/modules/services/backup/tsm.nix b/nixos/modules/services/backup/tsm.nix new file mode 100644 index 00000000000..3b2bb37491b --- /dev/null +++ b/nixos/modules/services/backup/tsm.nix @@ -0,0 +1,106 @@ +{ config, lib, ... }: + +let + + inherit (lib.attrsets) hasAttr; + inherit (lib.modules) mkDefault mkIf; + inherit (lib.options) mkEnableOption mkOption; + inherit (lib.types) nullOr strMatching; + + options.services.tsmBackup = { + enable = mkEnableOption '' + automatic backups with the + IBM Spectrum Protect (Tivoli Storage Manager, TSM) client. + This also enables + + ''; + command = mkOption { + type = strMatching ".+"; + default = "backup"; + example = "incr"; + description = '' + The actual command passed to the + dsmc executable to start the backup. + ''; + }; + servername = mkOption { + type = strMatching ".+"; + example = "mainTsmServer"; + description = '' + Create a systemd system service + tsm-backup.service that starts + a backup based on the given servername's stanza. + Note that this server's + will default to + /var/lib/tsm-backup/password + (but may be overridden); + also, the service will use + /var/lib/tsm-backup as + HOME when calling + dsmc. + ''; + }; + autoTime = mkOption { + type = nullOr (strMatching ".+"); + default = null; + example = "12:00"; + description = '' + The backup service will be invoked + automatically at the given date/time, + which must be in the format described in + systemd.time5. + The default null + disables automatic backups. + ''; + }; + }; + + cfg = config.services.tsmBackup; + cfgPrg = config.programs.tsmClient; + + assertions = [ + { + assertion = hasAttr cfg.servername cfgPrg.servers; + message = "TSM service servername not found in list of servers"; + } + { + assertion = cfgPrg.servers.${cfg.servername}.genPasswd; + message = "TSM service requires automatic password generation"; + } + ]; + +in + +{ + + inherit options; + + config = mkIf cfg.enable { + inherit assertions; + programs.tsmClient.enable = true; + programs.tsmClient.servers."${cfg.servername}".passwdDir = + mkDefault "/var/lib/tsm-backup/password"; + systemd.services.tsm-backup = { + description = "IBM Spectrum Protect (Tivoli Storage Manager) Backup"; + # DSM_LOG needs a trailing slash to have it treated as a directory. + # `/var/log` would be littered with TSM log files otherwise. + environment.DSM_LOG = "/var/log/tsm-backup/"; + # TSM needs a HOME dir to store certificates. + environment.HOME = "/var/lib/tsm-backup"; + # for exit status description see + # https://www.ibm.com/support/knowledgecenter/en/SSEQVQ_8.1.8/client/c_sched_rtncode.html + serviceConfig.SuccessExitStatus = "4 8"; + # The `-se` option must come after the command. + # The `-optfile` option suppresses a `dsm.opt`-not-found warning. + serviceConfig.ExecStart = + "${cfgPrg.wrappedPackage}/bin/dsmc ${cfg.command} -se='${cfg.servername}' -optfile=/dev/null"; + serviceConfig.LogsDirectory = "tsm-backup"; + serviceConfig.StateDirectory = "tsm-backup"; + serviceConfig.StateDirectoryMode = "0750"; + startAt = mkIf (cfg.autoTime!=null) cfg.autoTime; + }; + }; + + meta.maintainers = [ lib.maintainers.yarny ]; + +} From 89fa31e4abeba7e17e072af52565aa384e612af4 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 15 Jul 2019 00:50:51 -0700 Subject: [PATCH 0247/1611] ytcc: enable tests --- pkgs/tools/networking/ytcc/default.nix | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/ytcc/default.nix b/pkgs/tools/networking/ytcc/default.nix index 137a9216df0..d489d84d1cc 100644 --- a/pkgs/tools/networking/ytcc/default.nix +++ b/pkgs/tools/networking/ytcc/default.nix @@ -11,10 +11,20 @@ python3Packages.buildPythonApplication rec { sha256 = "080p145j5pg8db88kb0y3x1pfc3v4aj3w68pdihlmi68dhjdr7i7"; }; - doCheck = false; # try to access /homeless-shelter + nativeBuildInputs = [ gettext ]; + propagatedBuildInputs = with python3Packages; [ feedparser lxml sqlalchemy youtube-dl ]; - nativeBuildInputs = [ gettext ]; + checkInputs = with python3Packages; [ nose pytest ]; + + # Disable tests that touch network or shell out to commands + checkPhase = '' + pytest . -k 'not get_channels \ + and not play_video \ + and not download_videos \ + and not update_all \ + and not add_channel_duplicate' + ''; meta = { description = "Command Line tool to keep track of your favourite YouTube channels without signing up for a Google account"; From 5eb574010e8984c9c766ee845d6ea86704e1c55f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 01:18:44 -0700 Subject: [PATCH 0248/1611] dovecot: 2.3.6 -> 2.3.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dovecot/versions --- pkgs/servers/mail/dovecot/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index c639a9a26cb..17286f8ec24 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -9,7 +9,7 @@ }: stdenv.mkDerivation rec { - name = "dovecot-2.3.6"; + name = "dovecot-2.3.7"; nativeBuildInputs = [ perl pkgconfig ]; buildInputs = @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://dovecot.org/releases/2.3/${name}.tar.gz"; - sha256 = "1irnalplb47nlc26dn7zzdi95zhrxxi3miza7p3wdsgapv0qs7gd"; + sha256 = "1al382ykm94if5agasb9h2442a8s7wn43hlwh292ir1rhnp5dq8i"; }; enableParallelBuilding = true; From 464b16c4b187bc875aedfd1441f829e0b03fcd46 Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Mon, 15 Jul 2019 10:19:07 +0200 Subject: [PATCH 0249/1611] palemoon: add ffmpeg, remove unused dependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit · added ffmpeg to runtime libraries (via wrapping), makes Youtube's HTML5 testpage happy and allows higher-framerate playback · removed deprecated (gstreamer) / never used (nspr, nss, ...) dependencies · Pale Moon bundles specific versions of various libraries, compiling with the system's versions of those is not the default, not recommended and not supported with official branding --- .../networking/browsers/palemoon/default.nix | 27 +++++++++++-------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix index 74d8ba8ea43..f85ca6e430b 100644 --- a/pkgs/applications/networking/browsers/palemoon/default.nix +++ b/pkgs/applications/networking/browsers/palemoon/default.nix @@ -1,14 +1,17 @@ { stdenv, fetchFromGitHub, makeDesktopItem , pkgconfig, autoconf213, alsaLib, bzip2, cairo -, dbus, dbus-glib, file, fontconfig, freetype -, gnome2, gnum4, gstreamer, gst-plugins-base, gst_all_1 -, gtk2, hunspell, icu, libevent, libjpeg, libnotify -, libstartup_notification, libvpx, makeWrapper, libGLU_combined -, nspr, nss, pango, perl, python, libpulseaudio, sqlite +, dbus, dbus-glib, ffmpeg, file, fontconfig, freetype +, gnome2, gnum4, gtk2, hunspell, libevent, libjpeg +, libnotify, libstartup_notification, makeWrapper +, libGLU_combined, perl, python, libpulseaudio , unzip, xorg, wget, which, yasm, zip, zlib }: -stdenv.mkDerivation rec { +let + + libPath = stdenv.lib.makeLibraryPath [ ffmpeg ]; + +in stdenv.mkDerivation rec { pname = "palemoon"; version = "28.6.0.1"; @@ -39,11 +42,10 @@ stdenv.mkDerivation rec { }; buildInputs = [ - alsaLib bzip2 cairo dbus dbus-glib file fontconfig freetype - gnome2.GConf gnum4 gst-plugins-base gstreamer gst_all_1.gst-plugins-base gtk2 - hunspell icu libevent libjpeg libnotify libstartup_notification - libvpx makeWrapper libGLU_combined nspr nss pango perl pkgconfig python - libpulseaudio sqlite unzip wget which yasm zip zlib + alsaLib bzip2 cairo dbus dbus-glib ffmpeg file fontconfig freetype + gnome2.GConf gnum4 gtk2 hunspell libevent libjpeg libnotify + libstartup_notification makeWrapper libGLU_combined perl + pkgconfig python libpulseaudio unzip wget which yasm zip zlib ] ++ (with xorg; [ libX11 libXext libXft libXi libXrender libXScrnSaver libXt pixman xorgproto @@ -107,6 +109,9 @@ stdenv.mkDerivation rec { cp $src/application/palemoon/branding/official/default$n.png \ $out/share/icons/hicolor/$size/apps/palemoon.png done + + wrapProgram $out/lib/palemoon-${version}/palemoon \ + --prefix LD_LIBRARY_PATH : "${libPath}" ''; meta = with stdenv.lib; { From 37c16d0e60e15ce5dd427b34043e4c9d8d19cbf5 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 23:02:28 -0700 Subject: [PATCH 0250/1611] bindfs: 1.14.0 -> 1.14.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bindfs/versions --- pkgs/tools/filesystems/bindfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix index dd44f16c3fe..6a9d17772c8 100644 --- a/pkgs/tools/filesystems/bindfs/default.nix +++ b/pkgs/tools/filesystems/bindfs/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, fuse, pkgconfig }: stdenv.mkDerivation rec { - version = "1.14.0"; + version = "1.14.1"; name = "bindfs-${version}"; src = fetchurl { url = "https://bindfs.org/downloads/${name}.tar.gz"; - sha256 = "1f1znixdaz4wnr9j6rkrplhbnkz7pdw9927yfikbjvxz8cl6qsdz"; + sha256 = "111i4ba4px3idmrr5qhgq01926fas1rs2yx2shnwgdk3ziqcszxl"; }; dontStrip = true; From 66aec352a245d7c7d47a254caeee7ff97575d4bf Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 22:50:38 -0700 Subject: [PATCH 0251/1611] bdf2psf: 1.191 -> 1.192 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bdf2psf/versions --- pkgs/tools/misc/bdf2psf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/bdf2psf/default.nix b/pkgs/tools/misc/bdf2psf/default.nix index 8c310310d43..af9ad77bdda 100644 --- a/pkgs/tools/misc/bdf2psf/default.nix +++ b/pkgs/tools/misc/bdf2psf/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "bdf2psf"; - version = "1.191"; + version = "1.192"; src = fetchurl { url = "mirror://debian/pool/main/c/console-setup/bdf2psf_${version}_all.deb"; - sha256 = "0bqhn9rwrjipj7wd6c8i7rq39fc5jj5nc3mir931mfakknakkimk"; + sha256 = "0yjylbj88p2a7qi1wicicl1ivrhp52pnzy44mc1yg6l3n7zifcwn"; }; buildInputs = [ dpkg ]; From ac029556dfd92c2b4e21e37d0fcfd1f9afb2b7a4 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 22:12:02 -0700 Subject: [PATCH 0252/1611] ammonite: 1.6.8 -> 1.6.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ammonite/versions --- pkgs/development/tools/ammonite/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix index d4edbf44a79..4bd95a8d745 100644 --- a/pkgs/development/tools/ammonite/default.nix +++ b/pkgs/development/tools/ammonite/default.nix @@ -5,12 +5,12 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "ammonite-${version}"; - version = "1.6.8"; + version = "1.6.9"; scalaVersion = "2.12"; src = fetchurl { url = "https://github.com/lihaoyi/Ammonite/releases/download/${version}/${scalaVersion}-${version}"; - sha256 = "1lqc071v5f8dy1da669l0bfw9p8l6yavzlizzig9m441zcrmbj5d"; + sha256 = "1fi5j0kcndq00x72d8bkx6qiy9nh2i6c6m29gzfqql52qgbq1fd0"; }; propagatedBuildInputs = [ jre ] ; From bcd1072cebb20ca287516f43172f971f28c9e99a Mon Sep 17 00:00:00 2001 From: Jan Hrnko Date: Mon, 15 Jul 2019 11:14:00 +0200 Subject: [PATCH 0253/1611] Add protobuf to enable Trezor support --- pkgs/applications/altcoins/monero/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/altcoins/monero/default.nix b/pkgs/applications/altcoins/monero/default.nix index 9a4aa2e0a28..f351c9fa504 100644 --- a/pkgs/applications/altcoins/monero/default.nix +++ b/pkgs/applications/altcoins/monero/default.nix @@ -2,6 +2,7 @@ , cmake, pkgconfig, git , boost, miniupnpc, openssl, unbound, cppzmq , zeromq, pcsclite, readline, libsodium, hidapi +, python3Packages , CoreData, IOKit, PCSC }: @@ -25,6 +26,7 @@ stdenv.mkDerivation rec { boost miniupnpc openssl unbound cppzmq zeromq pcsclite readline libsodium hidapi + python3Packages.protobuf ] ++ optionals stdenv.isDarwin [ IOKit CoreData PCSC ]; cmakeFlags = [ From a61db6075f362e16bc12c847561352f4bedd8d20 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 15 Jul 2019 04:20:00 -0500 Subject: [PATCH 0254/1611] opam: 2.0.4 -> 2.0.5 --- pkgs/development/tools/ocaml/opam/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/ocaml/opam/default.nix b/pkgs/development/tools/ocaml/opam/default.nix index f844b369eb3..452f162b235 100644 --- a/pkgs/development/tools/ocaml/opam/default.nix +++ b/pkgs/development/tools/ocaml/opam/default.nix @@ -7,7 +7,7 @@ assert lib.versionAtLeast ocaml.version "4.02.3"; let srcs = { cmdliner = fetchurl { - url = "https://erratique.ch/software/cmdliner/releases/cmdliner-1.0.2.tbz"; + url = "http://erratique.ch/software/cmdliner/releases/cmdliner-1.0.2.tbz"; sha256 = "18jqphjiifljlh9jg8zpl6310p3iwyaqphdkmf89acyaix0s4kj1"; }; cppo = fetchurl { @@ -23,16 +23,16 @@ let sha256 = "00yvyfm4j423zqndvgc1ycnmiffaa2l9ab40cyg23pf51qmzk2jm"; }; dune-local = fetchurl { - url = "https://github.com/ocaml/dune/releases/download/1.2.1/dune-1.2.1.tbz"; - sha256 = "00c5dbm4hkdapc2i7pg07b2lj8sv6ly38qr7zid58cdmbmzq21z9"; + url = "https://github.com/ocaml/dune/releases/download/1.6.3/dune-1.6.3.tbz"; + sha256 = "0dmf0wbfmgdy5plz1bjiisc2hjgblvxsnrqjmw2c8y45v1h23mdz"; }; extlib = fetchurl { url = "http://ygrek.org.ua/p/release/ocaml-extlib/extlib-1.7.5.tar.gz"; sha256 = "19slqf5bdj0rrph2w41giwmn6df2qm07942jn058pjkjrnk30d4s"; }; mccs = fetchurl { - url = "https://github.com/AltGr/ocaml-mccs/archive/1.1+9.tar.gz"; - sha256 = "0gf86c65jdxxcwd96kcmrqxrmnnzc0570gb9ad6c57rl3fyy8yhv"; + url = "https://github.com/AltGr/ocaml-mccs/archive/1.1+10.tar.gz"; + sha256 = "003kam22plnh88liyxi4d1065j2rys1mpdla20rxps53ah1xwmxg"; }; ocamlgraph = fetchurl { url = "http://ocamlgraph.lri.fr/download/ocamlgraph-1.8.8.tar.gz"; @@ -55,13 +55,13 @@ let sha256 = "02lb2d9i12bxrz2ba5wygk2bycan316skqlyri0597q7j9210g8r"; }; opam = fetchurl { - url = "https://github.com/ocaml/opam/archive/2.0.4.zip"; - sha256 = "1312nc9s4h0vksiimz7jsv3zw17fa05p6mdx23s5sii0qspvnx8c"; + url = "https://github.com/ocaml/opam/archive/2.0.5.zip"; + sha256 = "0arv5zaikvcqbicdk47jpfgvjrqhqm71yq2zmj7pp6zf7bm0js6s"; }; }; in stdenv.mkDerivation rec { name = "opam-${version}"; - version = "2.0.4"; + version = "2.0.5"; buildInputs = [ unzip curl ncurses ocaml makeWrapper getconf ] ++ lib.optional stdenv.isLinux bubblewrap; @@ -117,4 +117,4 @@ in stdenv.mkDerivation rec { platforms = platforms.all; }; } -# Generated by: ./opam.nix.pl -v 2.0.4 -p opam-shebangs.patch +# Generated by: ./opam.nix.pl -v 2.0.5 -p opam-shebangs.patch From 1dc889dcf10e4a7091141d80da79f36c62920e54 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 15 Jul 2019 04:20:00 -0500 Subject: [PATCH 0255/1611] protobuf3_9: init at 3.9.0 --- pkgs/development/libraries/protobuf/3.9.nix | 6 ++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 7 insertions(+) create mode 100644 pkgs/development/libraries/protobuf/3.9.nix diff --git a/pkgs/development/libraries/protobuf/3.9.nix b/pkgs/development/libraries/protobuf/3.9.nix new file mode 100644 index 00000000000..6652ba7648c --- /dev/null +++ b/pkgs/development/libraries/protobuf/3.9.nix @@ -0,0 +1,6 @@ +{ callPackage, ... }: + +callPackage ./generic-v3.nix { + version = "3.9.0"; + sha256 = "1xq2njqrbmizwg91ggi1lqr0n26cm2jdyk668ljc24ihrpk0z9bw"; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index be69cdaf8fe..886cdb92f50 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12732,6 +12732,7 @@ in protobuf = protobuf3_7; + protobuf3_9 = callPackage ../development/libraries/protobuf/3.9.nix { }; protobuf3_8 = callPackage ../development/libraries/protobuf/3.8.nix { }; protobuf3_7 = callPackage ../development/libraries/protobuf/3.7.nix { }; protobuf3_6 = callPackage ../development/libraries/protobuf/3.6.nix { }; From 47a4219163c6701488e224bd9f87d6830ca3bb02 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Mon, 8 Jul 2019 17:16:04 -0500 Subject: [PATCH 0256/1611] xterm: 346 -> 347 --- pkgs/applications/misc/xterm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/xterm/default.nix b/pkgs/applications/misc/xterm/default.nix index ab33612ded9..61aab18bc76 100644 --- a/pkgs/applications/misc/xterm/default.nix +++ b/pkgs/applications/misc/xterm/default.nix @@ -3,14 +3,14 @@ }: stdenv.mkDerivation rec { - name = "xterm-346"; + name = "xterm-347"; src = fetchurl { urls = [ "ftp://ftp.invisible-island.net/xterm/${name}.tgz" "https://invisible-mirror.net/archives/xterm/${name}.tgz" ]; - sha256 = "0xwamhawgh77q2nlibciv77hznirwhnbs3r52rl4sdaqq1rpscng"; + sha256 = "025r22vi5s0328ybhcj0g9js64vabr98hlw8ngy6vyby4zhp63s0"; }; buildInputs = From a02c9eb420179deb605e67f555898ab263d6cfae Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 03:42:02 -0700 Subject: [PATCH 0257/1611] feh: 3.1.3 -> 3.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/feh/versions --- pkgs/applications/graphics/feh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 6fdc4f741ac..09dc9e7656d 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -6,11 +6,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "feh-${version}"; - version = "3.1.3"; + version = "3.2"; src = fetchurl { url = "https://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "1vsnxf4as3vyzjfhd8frzb1a8i7wnq7ck5ljx7qxqrnfqvxl1s4z"; + sha256 = "004vapxpl001yanqvw3cq37fmkdr527jyz0s5nybz1mnl4926660"; }; outputs = [ "out" "man" "doc" ]; From 9f31c8f82f79a3709091f19f30e024f3ae450b80 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 04:05:51 -0700 Subject: [PATCH 0258/1611] forkstat: 0.02.09 -> 0.02.10 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/forkstat/versions --- pkgs/os-specific/linux/forkstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/forkstat/default.nix b/pkgs/os-specific/linux/forkstat/default.nix index 8a2a6414949..8432f72e0c9 100644 --- a/pkgs/os-specific/linux/forkstat/default.nix +++ b/pkgs/os-specific/linux/forkstat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "forkstat-${version}"; - version = "0.02.09"; + version = "0.02.10"; src = fetchurl { url = "https://kernel.ubuntu.com/~cking/tarballs/forkstat/forkstat-${version}.tar.xz"; - sha256 = "1h5ha9w6rawh9kx39swjxs029202qxi0j9w38y7ilwq5pj447bxw"; + sha256 = "1nmnvgajvpas1azbr27nlgq5v3cwgrfwdhln3mr7dvhikz6rn0xg"; }; installFlags = [ "DESTDIR=$(out)" ]; postInstall = '' From 603aec41603ee372edd8fc2abeba58e67135088b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 15 Jul 2019 07:16:47 -0400 Subject: [PATCH 0259/1611] zoom-us: 2.8.252201.0616 -> 2.8.264592.0714 --- .../networking/instant-messengers/zoom-us/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 1904b959c8e..44b740c6f36 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -13,11 +13,11 @@ assert pulseaudioSupport -> libpulseaudio != null; let inherit (stdenv.lib) concatStringsSep makeBinPath optional; - version = "2.8.252201.0616"; + version = "2.8.264592.0714"; srcs = { x86_64-linux = fetchurl { url = "https://zoom.us/client/${version}/zoom_x86_64.tar.xz"; - sha256 = "1w7pwn6pvyacbz6s795r1qp5qaszr5yn9anq63zz6cgmzy8d1366"; + sha256 = "0ndrsyyawls487v7vlga0yn574xvhmfc14vdjxg23nvn0jxh2dvw"; }; }; From 7403a08153f934deb0306bf3896a71be0bd8e98c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Mon, 15 Jul 2019 07:21:22 -0400 Subject: [PATCH 0260/1611] oh-my-zsh: 2019-07-01 -> 2019-07-13 --- pkgs/shells/zsh/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index 38439b4427c..53a4d4b9087 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -4,13 +4,13 @@ { stdenv, fetchgit }: stdenv.mkDerivation rec { - version = "2019-07-01"; + version = "2019-07-13"; name = "oh-my-zsh-${version}"; - rev = "b259cdf7e71ad6c3cc1a66a48c6c79cf63f38590"; + rev = "17f4cfca99398cb5511557b8515a17bf1bf2948a"; src = fetchgit { inherit rev; url = "https://github.com/robbyrussell/oh-my-zsh"; - sha256 = "1vk9misnvjs1lxlwzy4ld30vh67nhghzra1y5ckgxa019l9cvann"; + sha256 = "19f29mrvnhvndvl48fd5kdiixfs0apmb27h4mck5v95p6yw27b6f"; }; pathsToLink = [ "/share/oh-my-zsh" ]; From 538c8aebd8bceb828977dc0c79f5a17a314f43e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 15 Jul 2019 13:36:21 +0200 Subject: [PATCH 0261/1611] firefox-esr-60: 60.7.2esr -> 60.8.0esr --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index b7fd775a675..93b6843e5f2 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -70,11 +70,11 @@ rec { firefox-esr-60 = common rec { pname = "firefox-esr"; - ffversion = "60.7.2esr"; + ffversion = "60.8.0esr"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; - sha512 = "0mw5dgrxd5vj6cngd9v3dy6hzdsg82s0cs9fabhrzrl1dy3pqdkccqqnj9r0hxwmcrdgca3s35i5lwwmlljagq6nyb5q6qv4fzv0n0j"; + sha512 = "0332b6049b97e488e55a3b9540baad3bd159e297084e9a625b8492497c73f86eb3e144219dabc5e9f2c2e4a27630d83d243c919cd4f86b7f59f47133ed3afc54"; }; patches = [ From eb55dd5e6bbb1514a0ad534040845d9450df18a5 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 15 Jul 2019 20:28:26 +0800 Subject: [PATCH 0262/1611] nixos/systemd: 242 supports Type = exec --- nixos/modules/system/boot/systemd-unit-options.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/system/boot/systemd-unit-options.nix b/nixos/modules/system/boot/systemd-unit-options.nix index 63f974b704f..ee4ae845a7d 100644 --- a/nixos/modules/system/boot/systemd-unit-options.nix +++ b/nixos/modules/system/boot/systemd-unit-options.nix @@ -6,7 +6,7 @@ with import ./systemd-lib.nix { inherit config lib pkgs; }; let checkService = checkUnitConfig "Service" [ (assertValueOneOf "Type" [ - "simple" "forking" "oneshot" "dbus" "notify" "idle" + "exec" "simple" "forking" "oneshot" "dbus" "notify" "idle" ]) (assertValueOneOf "Restart" [ "no" "on-success" "on-failure" "on-abnormal" "on-abort" "always" From 4384bacbf3eb0942799c1d220dcb202dce5304d7 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 15 Jul 2019 20:29:39 +0800 Subject: [PATCH 0263/1611] xcape: 1.2 -> 20180301 1.2 only allows running in the foreground if debug mode is enabled which generates lots of noise for journald. The changes from the most recent release is only a few minor fixes plus support for running in the foreground with the `-f` flag. --- pkgs/tools/X11/xcape/default.nix | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/pkgs/tools/X11/xcape/default.nix b/pkgs/tools/X11/xcape/default.nix index fae2d56fbbe..8b0c18c8618 100644 --- a/pkgs/tools/X11/xcape/default.nix +++ b/pkgs/tools/X11/xcape/default.nix @@ -1,30 +1,29 @@ { stdenv, fetchFromGitHub, pkgconfig, libX11, libXtst, xorgproto, libXi }: -let - baseName = "xcape"; - version = "1.2"; -in - stdenv.mkDerivation rec { - name = "${baseName}-${version}"; + pname = "xcape"; + version = "unstable-20180301"; src = fetchFromGitHub { owner = "alols"; - repo = baseName; - rev = "v${version}"; - sha256 = "09a05cxgrip6nqy1qmwblamp2bhknqnqmxn7i2a1rgxa0nba95dm"; + repo = pname; + rev = "a34d6bae27bbd55506852f5ed3c27045a3c0bd9e"; + sha256 = "04grs4w9kpfzz25mqw82zdiy51g0w355gpn5b170p7ha5972ykc8"; }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libX11 libXtst xorgproto libXi ]; - makeFlags = [ "PREFIX=$(out)" "MANDIR=/share/man/man1" ]; + makeFlags = [ + "PREFIX=$(out)" + "MANDIR=/share/man/man1" + ]; - postInstall = "install -D --target-directory $out/share/doc README.md"; + postInstall = "install -Dm444 --target-directory $out/share/doc README.md"; - meta = { + meta = with stdenv.lib; { description = "Utility to configure modifier keys to act as other keys"; longDescription = '' xcape allows you to use a modifier key as another key when @@ -35,8 +34,8 @@ stdenv.mkDerivation rec { released on its own. ''; homepage = https://github.com/alols/xcape; - license = stdenv.lib.licenses.gpl3 ; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.raskin ]; + license = licenses.gpl3 ; + maintainers = with maintainers; [ raskin ]; + platforms = platforms.linux; }; } From a11755dab76b24d656002980f6368ddc7168c403 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 05:39:02 -0700 Subject: [PATCH 0264/1611] fanficfare: 3.8.0 -> 3.9.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fanficfare/versions --- pkgs/tools/text/fanficfare/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/fanficfare/default.nix b/pkgs/tools/text/fanficfare/default.nix index efe126fe042..c1345fc9537 100644 --- a/pkgs/tools/text/fanficfare/default.nix +++ b/pkgs/tools/text/fanficfare/default.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { pname = "FanFicFare"; - version = "3.8.0"; + version = "3.9.0"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "1lwzg1mghjfggjyf35vqakfwkd4xcvcx2xfqnz0m3imlxk729kdl"; + sha256 = "0326fh72nihq4svgw7zvacij193ya66p102y1c7glpjq75kcx6a1"; }; propagatedBuildInputs = with python3Packages; [ From 150bbbdf05d063389396d2b59fe02114c4b4cfc8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 03:48:53 -0700 Subject: [PATCH 0265/1611] fio: 3.14 -> 3.15 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fio/versions --- pkgs/tools/system/fio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/fio/default.nix b/pkgs/tools/system/fio/default.nix index 6dfc0991ed3..694a71d8ec1 100644 --- a/pkgs/tools/system/fio/default.nix +++ b/pkgs/tools/system/fio/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "fio-${version}"; - version = "3.14"; + version = "3.15"; src = fetchFromGitHub { owner = "axboe"; repo = "fio"; rev = "fio-${version}"; - sha256 = "1qpv9saar0ik9mqpdyv93miyllfn7n7czcpffhk13lcrxasmjcp9"; + sha256 = "0wzy5byc2qx5mbnwkcyjkrzc662n4wkrzpcg4h611q4ix494zka9"; }; buildInputs = [ python zlib ] From aaa71375edc23c5a14794c6a927a349e065211e6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 06:31:37 -0700 Subject: [PATCH 0266/1611] fossil: 2.8 -> 2.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fossil/versions --- pkgs/applications/version-management/fossil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/fossil/default.nix b/pkgs/applications/version-management/fossil/default.nix index d0f79600e8c..d4b60a4f538 100644 --- a/pkgs/applications/version-management/fossil/default.nix +++ b/pkgs/applications/version-management/fossil/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { name = "fossil-${version}"; - version = "2.8"; + version = "2.9"; src = fetchurl { urls = @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { "https://www.fossil-scm.org/index.html/uv/fossil-src-${version}.tar.gz" ]; name = "${name}.tar.gz"; - sha256 = "0pbinf8d2kj1j7niblhzjd2l2khg6r2pn2xvig6gavz27p3vwcka"; + sha256 = "0kwb7pkp7y2my916rhyl6kmcf0fk8gkzaxzy13hfgqs35nlsvchw"; }; buildInputs = [ zlib openssl readline sqlite which ed ] From f62c79c758f9a53a15cd3b37f9e33020fdabb8e0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 01:09:18 -0700 Subject: [PATCH 0267/1611] ckbcomp: 1.191 -> 1.192 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ckbcomp/versions --- pkgs/tools/X11/ckbcomp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/X11/ckbcomp/default.nix b/pkgs/tools/X11/ckbcomp/default.nix index 46f2cb33bb0..1b6c540b3d8 100644 --- a/pkgs/tools/X11/ckbcomp/default.nix +++ b/pkgs/tools/X11/ckbcomp/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "ckbcomp-${version}"; - version = "1.191"; + version = "1.192"; src = fetchFromGitLab { domain = "salsa.debian.org"; owner = "installer-team"; repo = "console-setup"; rev = version; - sha256 = "0wplhjadk530fqxhfnizil32rcvkcl5m2r18yskspcib53r4pmim"; + sha256 = "1s570y8qwwy71ag9wgpznrhakps6rmw6j7p05hibns1spn2mxd5x"; }; buildInputs = [ perl ]; From ba4ea421b8079ae11a1bc359a6189bcd17d30d37 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 07:03:54 -0700 Subject: [PATCH 0268/1611] htpdate: 1.2.0 -> 1.2.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/htpdate/versions --- pkgs/tools/networking/htpdate/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/htpdate/default.nix b/pkgs/tools/networking/htpdate/default.nix index c8e14ad7f69..a4c6e517a75 100644 --- a/pkgs/tools/networking/htpdate/default.nix +++ b/pkgs/tools/networking/htpdate/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "1.2.0"; + version = "1.2.1"; name = "htpdate-${version}"; src = fetchurl { url = "http://www.vervest.org/htp/archive/c/${name}.tar.xz"; - sha256 = "00xwppq3aj951m0srjvxmr17kiaaflyjmbfkvpnfs3jvqhzczci2"; + sha256 = "1gqw3lg4wwkn8snf4pf21s3qidhb4h791f2ci7i7i0d6kd86jv0q"; }; makeFlags = [ From 333208a990bf4e92be3eaabeb8d48441709c74d1 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Fri, 5 Jul 2019 15:18:20 +0200 Subject: [PATCH 0269/1611] beam-packages: default erlangR20 -> erlangR22 --- pkgs/top-level/beam-packages.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/beam-packages.nix b/pkgs/top-level/beam-packages.nix index b1749b93ff0..ef43f8784ae 100644 --- a/pkgs/top-level/beam-packages.nix +++ b/pkgs/top-level/beam-packages.nix @@ -6,12 +6,12 @@ rec { # Each interpreters = rec { - # R20 is the default version. - erlang = erlangR20; # The main switch to change default Erlang version. - erlang_odbc = erlangR20_odbc; - erlang_javac = erlangR20_javac; - erlang_odbc_javac = erlangR20_odbc_javac; - erlang_nox = erlangR20_nox; + # R22 is the default version. + erlang = erlangR22; # The main switch to change default Erlang version. + erlang_odbc = erlangR22_odbc; + erlang_javac = erlangR22_javac; + erlang_odbc_javac = erlangR22_odbc_javac; + erlang_nox = erlangR22_nox; # These are standard Erlang versions, using the generic builder. erlangR18 = lib.callErlang ../development/interpreters/erlang/R18.nix { From b4982897411f82636a026bdde17edbf6aed822e8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 06:12:19 -0700 Subject: [PATCH 0270/1611] fnotifystat: 0.02.01 -> 0.02.02 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/fnotifystat/versions --- pkgs/os-specific/linux/fnotifystat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/fnotifystat/default.nix b/pkgs/os-specific/linux/fnotifystat/default.nix index 82ce6d12395..5b398bcec9a 100644 --- a/pkgs/os-specific/linux/fnotifystat/default.nix +++ b/pkgs/os-specific/linux/fnotifystat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "fnotifystat-${version}"; - version = "0.02.01"; + version = "0.02.02"; src = fetchurl { url = "https://kernel.ubuntu.com/~cking/tarballs/fnotifystat/fnotifystat-${version}.tar.gz"; - sha256 = "18p6rqb3bhs2ih6mnp57j0cyawjm0iwky6y3ays54alkxqaz8gmx"; + sha256 = "14d6cikny9rn7fcc6ncwh02mg6jrgfi1abpxifr46gyvp3w38w55"; }; installFlags = [ "DESTDIR=$(out)" ]; postInstall = '' From 0d9bc89bf74e8e4b5a1b54e0fad3ff651d2ff757 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 04:40:11 -0700 Subject: [PATCH 0271/1611] eventstat: 0.04.05 -> 0.04.06 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/eventstat/versions --- pkgs/os-specific/linux/eventstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix index 00183f18332..0e8377141ed 100644 --- a/pkgs/os-specific/linux/eventstat/default.nix +++ b/pkgs/os-specific/linux/eventstat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "eventstat-${version}"; - version = "0.04.05"; + version = "0.04.06"; src = fetchzip { url = "https://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz"; - sha256 = "1s9d6wl7f8cyn21fwj894dhfvl6f6f2h5xv26hg1yk3zfb5rmyn7"; + sha256 = "1w0lb94rmyrcl03s6ajn7mcdbhh2s6xhsg7kfchy1bpwqcjh2yli"; }; buildInputs = [ ncurses ]; installFlags = [ "DESTDIR=$(out)" ]; From be3a2d2b7d34dce5351a0ef2806e206f7709b5a3 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Mon, 15 Jul 2019 16:11:17 +0200 Subject: [PATCH 0272/1611] elixir: default 1.7.4 -> 1.9.0 --- pkgs/development/beam-modules/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/beam-modules/default.nix b/pkgs/development/beam-modules/default.nix index 63d046c7b47..eb9353a4a63 100644 --- a/pkgs/development/beam-modules/default.nix +++ b/pkgs/development/beam-modules/default.nix @@ -41,7 +41,7 @@ let buildMix = callPackage ./build-mix.nix {}; # BEAM-based languages. - elixir = elixir_1_7; + elixir = elixir_1_9; elixir_1_9 = lib.callElixir ../interpreters/elixir/1.9.nix { inherit rebar erlang; From f9843befd116b6176b04fabb44397c3707dd3f22 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 15 Jul 2019 05:56:56 -0500 Subject: [PATCH 0273/1611] ocamlPackages.merlin: 3.3.1 -> 3.3.2 --- pkgs/development/tools/ocaml/merlin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/ocaml/merlin/default.nix b/pkgs/development/tools/ocaml/merlin/default.nix index 3b176541f51..67acf874baf 100644 --- a/pkgs/development/tools/ocaml/merlin/default.nix +++ b/pkgs/development/tools/ocaml/merlin/default.nix @@ -2,7 +2,7 @@ buildDunePackage rec { pname = "merlin"; - version = "3.3.1"; + version = "3.3.2"; minimumOCamlVersion = "4.02.1"; @@ -10,7 +10,7 @@ buildDunePackage rec { owner = "ocaml"; repo = pname; rev = "v${version}"; - sha256 = "1z2m6jykgn3nylh4bfirhxlb0bwamifv4fgml6j34ggk1drs8xrl"; + sha256 = "1z9mcxflraj15sbz6q7f84n31n9fsialw7z8bi3r1biz68nypva9"; }; buildInputs = [ yojson ]; From 31c38894c90429c9554eab1b416e59e3b6e054df Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 15 Jul 2019 16:15:39 +0200 Subject: [PATCH 0274/1611] nixFlakes: 2.3pre20190612_06010ea -> 2.3pre20190712_aa82f8b --- pkgs/tools/package-management/nix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 8749ae009da..aa212d655f8 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -195,12 +195,12 @@ in rec { nixFlakes = lib.lowPrio (callPackage common rec { name = "nix-2.3${suffix}"; - suffix = "pre20190612_06010ea"; + suffix = "pre20190712_aa82f8b"; src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "06010eaf199005a393f212023ec5e8bc97978537"; - sha256 = "1fq99fmlag5hxvgzxrclgfsnc1fhhfwnslyshad1934wi9nzx1s2"; + rev = "aa82f8b2d2a2c42f0d713e8404b668cef1a4b108"; + hash = "sha256-MRY2CCjnTPSWIv0/aguZcg5U+DA+ODLKl9vjB/qXFpU="; }; fromGit = true; From ce1fc96c260161c9aea50c2d17f870d288a80826 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 07:48:31 -0700 Subject: [PATCH 0275/1611] gnome3.gnome-software: 3.32.3 -> 3.32.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gnome-software/versions --- pkgs/desktops/gnome-3/core/gnome-software/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/gnome-software/default.nix b/pkgs/desktops/gnome-3/core/gnome-software/default.nix index 4a5366a72e7..e301305d405 100644 --- a/pkgs/desktops/gnome-3/core/gnome-software/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-software/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "gnome-software-${version}"; - version = "3.32.3"; + version = "3.32.4"; src = fetchurl { url = "mirror://gnome/sources/gnome-software/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1r24q2c0i5xwp7dahw4wzycrhijix0nl7bxq1x0za57qm62ysfl9"; + sha256 = "0g30wdrpypj23npvx85wqh1i4a8bbg00ainz7wmsvry21hcny4d4"; }; patches = [ From 3ef3712313158e8deacacbb5f3dcdea2a417cb89 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 08:14:30 -0700 Subject: [PATCH 0276/1611] gp2c: 0.0.11pl1 -> 0.0.11pl2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gp2c/versions --- pkgs/applications/science/math/pari/gp2c.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/pari/gp2c.nix b/pkgs/applications/science/math/pari/gp2c.nix index 4915e42025b..86bd2e84367 100644 --- a/pkgs/applications/science/math/pari/gp2c.nix +++ b/pkgs/applications/science/math/pari/gp2c.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "gp2c-${version}"; - version = "0.0.11pl1"; + version = "0.0.11pl2"; src = fetchurl { url = "https://pari.math.u-bordeaux.fr/pub/pari/GP2C/${name}.tar.gz"; - sha256 = "1c6f6vmncw032kfzrfyr8bynw6yd3faxpy2285r009fmr0zxfs5s"; + sha256 = "0wqsf05wgkqvmmsx7jinvzdqav6rl56sr8haibgs31nzz4x9xz9g"; }; buildInputs = [ pari perl ]; From 50eb1818c85cbf2f23b68f4d93233f609cf8139d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 05:27:53 -0700 Subject: [PATCH 0277/1611] drumgizmo: 0.9.16 -> 0.9.17 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/drumgizmo/versions --- pkgs/applications/audio/drumgizmo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/drumgizmo/default.nix b/pkgs/applications/audio/drumgizmo/default.nix index 53949da43e0..e5354b06094 100644 --- a/pkgs/applications/audio/drumgizmo/default.nix +++ b/pkgs/applications/audio/drumgizmo/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "0.9.16"; + version = "0.9.17"; name = "drumgizmo-${version}"; src = fetchurl { url = "https://www.drumgizmo.org/releases/${name}/${name}.tar.gz"; - sha256 = "0ivr61n9gpigsfgn20rh3n09li8sxh1q095r6wiw0shqhn3vaxlg"; + sha256 = "177c27kz9srds7a659zz9yhp58z0zsk0ydwww7l3jkjlylm1p8x1"; }; configureFlags = [ "--enable-lv2" ]; From b43744b933074157273bd0f9490a46fcb601ee78 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 01:59:13 -0700 Subject: [PATCH 0278/1611] davix: 0.7.3 -> 0.7.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/davix/versions --- pkgs/tools/networking/davix/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/davix/default.nix b/pkgs/tools/networking/davix/default.nix index e69e012f644..4b16eb406e3 100644 --- a/pkgs/tools/networking/davix/default.nix +++ b/pkgs/tools/networking/davix/default.nix @@ -1,17 +1,17 @@ { stdenv, fetchurl, cmake, pkgconfig, openssl, libxml2, boost, python3, libuuid }: stdenv.mkDerivation rec { - version = "0.7.3"; + version = "0.7.4"; name = "davix-${version}"; nativeBuildInputs = [ cmake pkgconfig python3 ]; buildInputs = [ openssl libxml2 boost libuuid ]; - # using the url below since the 0.7.3 release did carry a broken CMake file, + # using the url below since the 0.7.4 release did carry a broken CMake file, # supposedly fixed in the next release # https://github.com/cern-fts/davix/issues/40 src = fetchurl { url = "http://grid-deployment.web.cern.ch/grid-deployment/dms/lcgutil/tar/davix/${version}/davix-${version}.tar.gz"; - sha256 = "12ij7p1ahgvicqmccrvpd0iw1909qmpbc3nk58gdm866f9p2find"; + sha256 = "1k407ckvsw1w212k3lp2867i0sscnrbigsx79l1sp5ymj3n62aih"; }; From 59bacaca3d61d2fe19ea22fa18e493ec7413743e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 15 Jul 2019 13:52:26 +0200 Subject: [PATCH 0279/1611] nixos: add 'localRecipients' config option for Postfix The new option services.postfix.localRecipients allows configuring the postfix option 'local_recipient_maps'. When set to a list of user names (or patterns), that map effectively replaces the lookup in the system's user database that's used by default to determine which local users are valid. This option is useful to explicitly set local users that are allowed to receive e-mail from the outside world. For local injection i.e. via the 'sendmail' command this option has no effect. --- nixos/modules/services/mail/postfix.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/nixos/modules/services/mail/postfix.nix b/nixos/modules/services/mail/postfix.nix index d43733484ff..dab1b29aa4b 100644 --- a/nixos/modules/services/mail/postfix.nix +++ b/nixos/modules/services/mail/postfix.nix @@ -13,6 +13,7 @@ let || cfg.extraAliases != ""; haveTransport = cfg.transport != ""; haveVirtual = cfg.virtual != ""; + haveLocalRecipients = cfg.localRecipients != null; clientAccess = optional (cfg.dnsBlacklistOverrides != "") @@ -244,6 +245,7 @@ let aliasesFile = pkgs.writeText "postfix-aliases" aliases; virtualFile = pkgs.writeText "postfix-virtual" cfg.virtual; + localRecipientMapFile = pkgs.writeText "postfix-local-recipient-map" (concatMapStrings (x: x + " ACCEPT\n") cfg.localRecipients); checkClientAccessFile = pkgs.writeText "postfix-check-client-access" cfg.dnsBlacklistOverrides; mainCfFile = pkgs.writeText "postfix-main.cf" mainCf; masterCfFile = pkgs.writeText "postfix-master.cf" masterCfContent; @@ -506,6 +508,19 @@ in ''; }; + localRecipients = mkOption { + type = with types; nullOr (listOf string); + default = null; + description = '' + List of accepted local users. Specify a bare username, an + "@domain.tld" wild-card, or a complete + "user@domain.tld" address. If set, these names end + up in the local recipient map -- see the local(8) man-page -- and + effectively replace the system user database lookup that's otherwise + used by default. + ''; + }; + transport = mkOption { default = ""; description = " @@ -742,6 +757,7 @@ in // optionalAttrs haveAliases { alias_maps = [ "${cfg.aliasMapType}:/etc/postfix/aliases" ]; } // optionalAttrs haveTransport { transport_maps = [ "hash:/etc/postfix/transport" ]; } // optionalAttrs haveVirtual { virtual_alias_maps = [ "${cfg.virtualMapType}:/etc/postfix/virtual" ]; } + // optionalAttrs haveLocalRecipients { local_recipient_maps = [ "hash:/etc/postfix/local_recipients" ] ++ optional haveAliases "$alias_maps"; } // optionalAttrs (cfg.dnsBlacklists != []) { smtpd_client_restrictions = clientRestrictions; } // optionalAttrs cfg.useSrs { sender_canonical_maps = [ "tcp:127.0.0.1:10001" ]; @@ -869,6 +885,9 @@ in (mkIf haveVirtual { services.postfix.mapFiles."virtual" = virtualFile; }) + (mkIf haveLocalRecipients { + services.postfix.mapFiles."local_recipients" = localRecipientMapFile; + }) (mkIf cfg.enableHeaderChecks { services.postfix.mapFiles."header_checks" = headerChecksFile; }) From 7da15d9b36ea115d5cd25a2c837867fffac3c192 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 13 Jul 2019 13:26:39 +0200 Subject: [PATCH 0280/1611] buildPythonPackage: add support for setupPyGlobalFlags (2) --- doc/languages-frameworks/python.section.md | 1 + .../python/build-python-package-pyproject.nix | 13 ++++++++----- .../python/build-python-package-setuptools.nix | 11 ++++++++--- 3 files changed, 17 insertions(+), 8 deletions(-) diff --git a/doc/languages-frameworks/python.section.md b/doc/languages-frameworks/python.section.md index 77b387dd302..4963c97a6c9 100644 --- a/doc/languages-frameworks/python.section.md +++ b/doc/languages-frameworks/python.section.md @@ -603,6 +603,7 @@ All parameters from `stdenv.mkDerivation` function are still supported. The foll * `preShellHook`: Hook to execute commands before `shellHook`. * `postShellHook`: Hook to execute commands after `shellHook`. * `removeBinByteCode ? true`: Remove bytecode from `/bin`. Bytecode is only created when the filenames end with `.py`. +* `setupPyGlobalFlags ? []`: List of flags passed to `setup.py` command. * `setupPyBuildFlags ? []`: List of flags passed to `setup.py build_ext` command. The `stdenv.mkDerivation` function accepts various parameters for describing build inputs (see "Specifying dependencies"). The following are of special diff --git a/pkgs/development/interpreters/python/build-python-package-pyproject.nix b/pkgs/development/interpreters/python/build-python-package-pyproject.nix index 86c450fcf92..085db44f3e8 100644 --- a/pkgs/development/interpreters/python/build-python-package-pyproject.nix +++ b/pkgs/development/interpreters/python/build-python-package-pyproject.nix @@ -5,10 +5,12 @@ }: { -# passed to "python setup.py build_ext" +# Global options passed to "python setup.py" + setupPyGlobalFlags ? [] +# Build options passed to "build_ext" # https://github.com/pypa/pip/issues/881 # Rename to `buildOptions` because it is not setuptools specific? - setupPyBuildFlags ? [] +, setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -16,13 +18,14 @@ , ... } @ attrs: let - options = lib.concatMapStringsSep " " (option: "--global-option ${option}") setupPyBuildFlags; + pipGlobalFlagsString = lib.concatMapStringsSep " " (option: "--global-option ${option}") setupPyGlobalFlags; + pipBuildFlagsString = lib.concatMapStringsSep " " (option: "--build-option ${option}") setupPyBuildFlags; in attrs // { buildPhase = attrs.buildPhase or '' runHook preBuild mkdir -p dist echo "Creating a wheel..." - ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${options} . + ${python.pythonForBuild.interpreter} -m pip wheel --no-index --no-deps --no-clean --no-build-isolation --wheel-dir dist ${pipGlobalFlagsString} ${pipBuildFlagsString} . echo "Finished creating a wheel..." runHook postBuild ''; @@ -50,4 +53,4 @@ in attrs // { ${postShellHook} ''; -} \ No newline at end of file +} diff --git a/pkgs/development/interpreters/python/build-python-package-setuptools.nix b/pkgs/development/interpreters/python/build-python-package-setuptools.nix index 4c66fdec5f6..7738ea2f66a 100644 --- a/pkgs/development/interpreters/python/build-python-package-setuptools.nix +++ b/pkgs/development/interpreters/python/build-python-package-setuptools.nix @@ -5,9 +5,11 @@ }: { -# passed to "python setup.py build_ext" +# Global options passed to "python setup.py" + setupPyGlobalFlags ? [] +# Build options passed to "python setup.py build_ext" # https://github.com/pypa/pip/issues/881 - setupPyBuildFlags ? [] +, setupPyBuildFlags ? [] # Execute before shell hook , preShellHook ? "" # Execute after shell hook @@ -19,13 +21,16 @@ let # pip does the same thing: https://github.com/pypa/pip/pull/3265 setuppy = ./run_setup.py; + setupPyGlobalFlagsString = lib.concatStringsSep " " setupPyGlobalFlags; + setupPyBuildExtString = lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags)); + in attrs // { # we copy nix_run_setup over so it's executed relative to the root of the source # many project make that assumption buildPhase = attrs.buildPhase or '' runHook preBuild cp ${setuppy} nix_run_setup - ${python.pythonForBuild.interpreter} nix_run_setup ${lib.optionalString (setupPyBuildFlags != []) ("build_ext " + (lib.concatStringsSep " " setupPyBuildFlags))} bdist_wheel + ${python.pythonForBuild.interpreter} nix_run_setup ${setupPyGlobalFlagsString} ${setupPyBuildExtString} bdist_wheel runHook postBuild ''; From 02466bea79469ba946bbb81dfbb06efff7fd1cbc Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 09:05:36 -0700 Subject: [PATCH 0281/1611] guile: 2.2.4 -> 2.2.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/guile/versions --- pkgs/development/interpreters/guile/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index 49715bf256b..fce94ecc846 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -12,11 +12,11 @@ (rec { name = "guile-${version}"; - version = "2.2.4"; + version = "2.2.6"; src = fetchurl { url = "mirror://gnu/guile/${name}.tar.xz"; - sha256 = "07p3g0v2ba2vlfbfidqzlgbhnzdx46wh2rgc5gszq1mjyx5bks6r"; + sha256 = "1269ymxm56j1z1lvq1y42rm961f2n7rinm3k6l00p9k52hrpcddk"; }; outputs = [ "out" "dev" "info" ]; From 9e12db91de503094f41b69e9a21838c3569fbc3a Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 17:36:09 +0300 Subject: [PATCH 0282/1611] ipxe: support renaming targets and add several This allows to build several targets with conflicting names. UEFI version of USB image is now built, and so is option ROM. --- pkgs/tools/misc/ipxe/default.nix | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/pkgs/tools/misc/ipxe/default.nix b/pkgs/tools/misc/ipxe/default.nix index a9cddcc5ff8..c8668a5ad72 100644 --- a/pkgs/tools/misc/ipxe/default.nix +++ b/pkgs/tools/misc/ipxe/default.nix @@ -1,23 +1,28 @@ -{ stdenv, lib, fetchgit, perl, cdrkit, syslinux, xz, openssl, gnu-efi +{ stdenv, lib, fetchgit, perl, cdrkit, syslinux, xz, openssl, gnu-efi, mtools , embedScript ? null +, additionalTargets ? {} }: let date = "20190318"; rev = "ebf2eaf515e46abd43bc798e7e4ba77bfe529218"; - targets = (lib.optional stdenv.isx86_64 "bin-x86_64-efi/ipxe.efi") ++ [ - "bin/ipxe.dsk" - "bin/ipxe.usb" - "bin/ipxe.iso" - "bin/ipxe.lkrn" - "bin/undionly.kpxe" - ]; + targets = additionalTargets // lib.optionalAttrs stdenv.isx86_64 { + "bin-x86_64-efi/ipxe.efi" = null; + "bin-x86_64-efi/ipxe.efirom" = null; + "bin-x86_64-efi/ipxe.usb" = "ipxe-efi.usb"; + } // { + "bin/ipxe.dsk" = null; + "bin/ipxe.usb" = null; + "bin/ipxe.iso" = null; + "bin/ipxe.lkrn" = null; + "bin/undionly.kpxe" = null; + }; in stdenv.mkDerivation { name = "ipxe-${date}-${builtins.substring 0 7 rev}"; - buildInputs = [ perl cdrkit syslinux xz openssl gnu-efi ]; + nativeBuildInputs = [ perl cdrkit syslinux xz openssl gnu-efi mtools ]; src = fetchgit { url = https://git.ipxe.org/ipxe.git; @@ -49,11 +54,14 @@ stdenv.mkDerivation { preBuild = "cd src"; - buildFlags = targets; + buildFlags = lib.attrNames targets; installPhase = '' mkdir -p $out - cp ${lib.concatStringsSep " " targets} $out + ${lib.concatStringsSep "\n" (lib.mapAttrsToList (from: to: + if to == null + then "cp -v ${from} $out" + else "cp -v ${from} $out/${to}") targets)} # Some PXE constellations especially with dnsmasq are looking for the file with .0 ending # let's provide it as a symlink to be compatible in this case. @@ -67,6 +75,6 @@ stdenv.mkDerivation { homepage = http://ipxe.org/; license = licenses.gpl2; maintainers = with maintainers; [ ehmry ]; - platforms = platforms.all; + platforms = [ "x86_64-linux" "i686-linux" ]; }; } From 6152007747ea5441c0f3e73c2d4ad0977a6079c1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 17:37:30 +0300 Subject: [PATCH 0283/1611] ipxe: add imgtrust and ping imgtrust is needed to run netboot.xyz scripts. ping is useful for testing network settings. Also add HTTP option for clarity (it's already being built). --- pkgs/tools/misc/ipxe/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/ipxe/default.nix b/pkgs/tools/misc/ipxe/default.nix index c8668a5ad72..219c03f263c 100644 --- a/pkgs/tools/misc/ipxe/default.nix +++ b/pkgs/tools/misc/ipxe/default.nix @@ -42,7 +42,12 @@ stdenv.mkDerivation { ] ++ lib.optional (embedScript != null) "EMBED=${embedScript}"; - enabledOptions = [ "DOWNLOAD_PROTO_HTTPS" ]; + enabledOptions = [ + "PING_CMD" + "IMAGE_TRUST_CMD" + "DOWNLOAD_PROTO_HTTP" + "DOWNLOAD_PROTO_HTTPS" + ]; configurePhase = '' runHook preConfigure From a9ce5f6c598c7772e5db7d08f502e4cab095a66a Mon Sep 17 00:00:00 2001 From: WilliButz Date: Mon, 15 Jul 2019 15:46:08 +0200 Subject: [PATCH 0284/1611] nixos/grafana: add grafana user to group 'grafana' --- nixos/modules/services/monitoring/grafana.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/monitoring/grafana.nix b/nixos/modules/services/monitoring/grafana.nix index 5d3f2e6ac28..c2f6b585d49 100644 --- a/nixos/modules/services/monitoring/grafana.nix +++ b/nixos/modules/services/monitoring/grafana.nix @@ -552,6 +552,8 @@ in { description = "Grafana user"; home = cfg.dataDir; createHome = true; + group = "grafana"; }; + users.groups.grafana = {}; }; } From e4837acf21f891f7f28196adcb94345dd8fec677 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 17:44:22 +0300 Subject: [PATCH 0285/1611] nixos netboot: explicitly specify initrd Needed for iPXE on UEFI, see http://forum.ipxe.org/archive/index.php/thread-7589.html --- nixos/modules/installer/netboot/netboot.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/installer/netboot/netboot.nix b/nixos/modules/installer/netboot/netboot.nix index cdfba5ab9e3..f9b8d95c684 100644 --- a/nixos/modules/installer/netboot/netboot.nix +++ b/nixos/modules/installer/netboot/netboot.nix @@ -84,7 +84,7 @@ with lib; system.build.netbootIpxeScript = pkgs.writeTextDir "netboot.ipxe" '' #!ipxe - kernel ${pkgs.stdenv.hostPlatform.platform.kernelTarget} init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} + kernel ${pkgs.stdenv.hostPlatform.platform.kernelTarget} init=${config.system.build.toplevel}/init initrd=initrd ${toString config.boot.kernelParams} initrd initrd boot ''; From 81d35a9d7ea9dab5949af5e8e2d2fcb6315b1b12 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 18:42:36 +0300 Subject: [PATCH 0286/1611] nixos-test-driver: support netRomFile Needed for UEFI PXE netboot testing. --- nixos/lib/test-driver/Machine.pm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm index 006da889671..5e4c14e749f 100644 --- a/nixos/lib/test-driver/Machine.pm +++ b/nixos/lib/test-driver/Machine.pm @@ -31,9 +31,12 @@ sub new { if (!$startCommand) { # !!! merge with qemu-vm.nix. + my $netArgs = ""; + $netArgs .= ",romfile=$args->{netRomFile}" + if defined $args->{netRomFile}; $startCommand = "qemu-kvm -m 384 " . - "-net nic,model=virtio \$QEMU_OPTS "; + "-device virtio-net-pci,netdev=net0${netArgs} \$QEMU_OPTS "; if (defined $args->{hda}) { if ($args->{hdaInterface} eq "scsi") { From b01b1fd62dc756a47409695ef5713175bd40f3c0 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Mon, 15 Jul 2019 16:41:55 +0200 Subject: [PATCH 0287/1611] nixos/tests: extend grafana test Also test configurations with postgresql and mariadb. --- nixos/tests/grafana.nix | 90 +++++++++++++++++++++++++++++++++++------ 1 file changed, 78 insertions(+), 12 deletions(-) diff --git a/nixos/tests/grafana.nix b/nixos/tests/grafana.nix index 9dc765a879b..7a1b4c8ffbb 100644 --- a/nixos/tests/grafana.nix +++ b/nixos/tests/grafana.nix @@ -1,25 +1,91 @@ -import ./make-test.nix ({ lib, ... }: -{ - name = "grafana"; +import ./make-test.nix ({ lib, pkgs, ... }: - meta = with lib.maintainers; { - maintainers = [ willibutz ]; - }; +let + inherit (lib) mkMerge nameValuePair maintainers; - machine = { ... }: { + baseGrafanaConf = { services.grafana = { enable = true; addr = "localhost"; analytics.reporting.enable = false; domain = "localhost"; - security.adminUser = "testusername"; + security = { + adminUser = "testadmin"; + adminPassword = "snakeoilpwd"; + }; }; }; + extraNodeConfs = { + postgresql = { + services.grafana.database = { + host = "127.0.0.1:5432"; + user = "grafana"; + }; + services.postgresql = { + enable = true; + ensureDatabases = [ "grafana" ]; + ensureUsers = [{ + name = "grafana"; + ensurePermissions."DATABASE grafana" = "ALL PRIVILEGES"; + }]; + }; + systemd.services.grafana.after = [ "postgresql.service" ]; + }; + + mysql = { + services.grafana.database.user = "grafana"; + services.mysql = { + enable = true; + ensureDatabases = [ "grafana" ]; + ensureUsers = [{ + name = "grafana"; + ensurePermissions."grafana.*" = "ALL PRIVILEGES"; + }]; + package = pkgs.mariadb; + }; + systemd.services.grafana.after = [ "mysql.service" ]; + }; + }; + + nodes = builtins.listToAttrs (map (dbName: + nameValuePair dbName (mkMerge [ + baseGrafanaConf + (extraNodeConfs.${dbName} or {}) + ])) [ "sqlite" "postgresql" "mysql" ]); + +in { + name = "grafana"; + + meta = with maintainers; { + maintainers = [ willibutz ]; + }; + + inherit nodes; + testScript = '' - $machine->start; - $machine->waitForUnit("grafana.service"); - $machine->waitForOpenPort(3000); - $machine->succeed("curl -sSfL http://127.0.0.1:3000/"); + startAll(); + + subtest "Grafana sqlite", sub { + $sqlite->waitForUnit("grafana.service"); + $sqlite->waitForOpenPort(3000); + $sqlite->succeed("curl -sSfN -u testadmin:snakeoilpwd http://127.0.0.1:3000/api/org/users | grep -q testadmin\@localhost"); + }; + + subtest "Grafana postgresql", sub { + $postgresql->waitForUnit("grafana.service"); + $postgresql->waitForUnit("postgresql.service"); + $postgresql->waitForOpenPort(3000); + $postgresql->waitForOpenPort(5432); + $postgresql->succeed("curl -sSfN -u testadmin:snakeoilpwd http://127.0.0.1:3000/api/org/users | grep -q testadmin\@localhost"); + }; + + subtest "Grafana mysql", sub { + $mysql->waitForUnit("grafana.service"); + $mysql->waitForUnit("mysql.service"); + $mysql->waitForOpenPort(3000); + $mysql->waitForOpenPort(3306); + $mysql->succeed("curl -sSfN -u testadmin:snakeoilpwd http://127.0.0.1:3000/api/org/users | grep -q testadmin\@localhost"); + }; ''; }) From a2e8be9fc32368a476408d4cb1b073f755b6492c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 18:56:53 +0300 Subject: [PATCH 0288/1611] boot tests: add UEFI PXE netboot testing Generalize netboot testing and add tests for UEFI PXE netboot. --- nixos/tests/boot.nix | 106 +++++++++++++++++++++++-------------------- 1 file changed, 56 insertions(+), 50 deletions(-) diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index c9bb1e77c6d..12a34d4401f 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -17,46 +17,33 @@ let ]; }).config.system.build.isoImage; - makeBootTest = name: machineConfig: - makeTest { - inherit iso; - name = "boot-" + name; - nodes = { }; - testScript = - '' - my $machine = createMachine({ ${machineConfig}, qemuFlags => '-m 768' }); - $machine->start; - $machine->waitForUnit("multi-user.target"); - $machine->succeed("nix verify -r --no-trust /run/current-system"); + perlAttrs = params: "{ ${concatStringsSep "," (mapAttrsToList (name: param: "${name} => '${toString param}'") params)} }"; - # Test whether the channel got installed correctly. - $machine->succeed("nix-instantiate --dry-run '' -A hello"); - $machine->succeed("nix-env --dry-run -iA nixos.procps"); + makeBootTest = name: extraConfig: + let + machineConfig = perlAttrs ({ qemuFlags = "-m 768"; } // extraConfig); + in + makeTest { + inherit iso; + name = "boot-" + name; + nodes = { }; + testScript = + '' + my $machine = createMachine(${machineConfig}); + $machine->start; + $machine->waitForUnit("multi-user.target"); + $machine->succeed("nix verify -r --no-trust /run/current-system"); - $machine->shutdown; - ''; - }; -in { + # Test whether the channel got installed correctly. + $machine->succeed("nix-instantiate --dry-run '' -A hello"); + $machine->succeed("nix-env --dry-run -iA nixos.procps"); - biosCdrom = makeBootTest "bios-cdrom" '' - cdrom => glob("${iso}/iso/*.iso") - ''; + $machine->shutdown; + ''; + }; - biosUsb = makeBootTest "bios-usb" '' - usb => glob("${iso}/iso/*.iso") - ''; - - uefiCdrom = makeBootTest "uefi-cdrom" '' - cdrom => glob("${iso}/iso/*.iso"), - bios => '${pkgs.OVMF.fd}/FV/OVMF.fd' - ''; - - uefiUsb = makeBootTest "uefi-usb" '' - usb => glob("${iso}/iso/*.iso"), - bios => '${pkgs.OVMF.fd}/FV/OVMF.fd' - ''; - - netboot = let + makeNetbootTest = name: extraConfig: + let config = (import ../lib/eval-config.nix { inherit system; modules = @@ -65,35 +52,54 @@ in { { key = "serial"; } ]; }).config; - ipxeScriptDir = pkgs.writeTextFile { - name = "ipxeScriptDir"; - text = '' - #!ipxe - dhcp - kernel bzImage init=${config.system.build.toplevel}/init ${toString config.boot.kernelParams} console=ttyS0 - initrd initrd - boot - ''; - destination = "/boot.ipxe"; - }; ipxeBootDir = pkgs.symlinkJoin { name = "ipxeBootDir"; paths = [ config.system.build.netbootRamdisk config.system.build.kernel - ipxeScriptDir + config.system.build.netbootIpxeScript ]; }; + machineConfig = perlAttrs ({ + qemuFlags = "-boot order=n -netdev user,id=net0,tftp=${ipxeBootDir}/,bootfile=netboot.ipxe -m 2000"; + } // extraConfig); in makeTest { - name = "boot-netboot"; + name = "boot-netboot-" + name; nodes = { }; testScript = '' - my $machine = createMachine({ qemuFlags => '-boot order=n -net nic,model=e1000 -net user,tftp=${ipxeBootDir}/,bootfile=boot.ipxe -m 2000M' }); + my $machine = createMachine(${machineConfig}); $machine->start; $machine->waitForUnit("multi-user.target"); $machine->shutdown; ''; }; +in { + + biosCdrom = makeBootTest "bios-cdrom" { + cdrom = ''glob("${iso}/iso/*.iso")''; + }; + + biosUsb = makeBootTest "bios-usb" { + usb = ''glob("${iso}/iso/*.iso")''; + }; + + uefiCdrom = makeBootTest "uefi-cdrom" { + cdrom = ''glob("${iso}/iso/*.iso"''; + bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + }; + + uefiUsb = makeBootTest "uefi-usb" { + usb = ''glob("${iso}/iso/*.iso")''; + bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + }; + + biosNetboot = makeNetbootTest "bios" {}; + + uefiNetboot = makeNetbootTest "uefi" { + bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + # Custom ROM is needed for EFI PXE boot. I failed to understand exactly why, because QEMU should still use iPXE for EFI. + netRomFile = ''"${pkgs.ipxe}/ipxe.efirom"''; + }; } From 87dc2ee592bcf26fad910ef47d906a3e45c0c43c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 09:44:28 -0700 Subject: [PATCH 0289/1611] jgmenu: 3.0 -> 3.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jgmenu/versions --- pkgs/applications/misc/jgmenu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/jgmenu/default.nix b/pkgs/applications/misc/jgmenu/default.nix index 6ba0bed7847..64c693092b0 100644 --- a/pkgs/applications/misc/jgmenu/default.nix +++ b/pkgs/applications/misc/jgmenu/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "jgmenu"; - version = "3.0"; + version = "3.1"; src = fetchFromGitHub { owner = "johanmalm"; repo = pname; rev = "v${version}"; - sha256 = "01r92nili4v4pdmw4g5z0rsg1q7m7q3a5hjc47mnchgibdiissvl"; + sha256 = "03lk89d6wvqv234qciksd4zm0z4lkvrxfh6r9ff0d8yzg67m7rd0"; }; nativeBuildInputs = [ From 6fe71e632c6a641cee53320c58119e0ae70146d5 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 09:57:33 -0700 Subject: [PATCH 0290/1611] tridactyl-native: 1.15.0 -> 1.16.2 (#64793) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tridactyl-native/versions --- pkgs/tools/networking/tridactyl-native/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/tridactyl-native/default.nix b/pkgs/tools/networking/tridactyl-native/default.nix index 5f5edcb23a7..111d40478df 100644 --- a/pkgs/tools/networking/tridactyl-native/default.nix +++ b/pkgs/tools/networking/tridactyl-native/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { pname = "tridactyl-native"; # this is actually the version of tridactyl itself; the native messenger will # probably not change with every tridactyl version - version = "1.15.0"; + version = "1.16.2"; src = fetchFromGitHub { owner = "tridactyl"; repo = "tridactyl"; rev = version; - sha256 = "12pq95pw5g777kpgad04n9az1fl8y0x1vismz81mqqij3jr5qwzb"; + sha256 = "07pipvxxa4bw11f0fxm8vjwd5ap7i82nsq93sw1kj353jn1mpwxw"; }; sourceRoot = "source/native"; From 5a224feb46c396fa17e2c3be143f0481177c6940 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 10:17:07 -0700 Subject: [PATCH 0291/1611] intel-media-driver: 19.1.0 -> 19.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/intel-media-driver/versions --- pkgs/development/libraries/intel-media-driver/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/intel-media-driver/default.nix b/pkgs/development/libraries/intel-media-driver/default.nix index 0ee66c9050c..e549067b11f 100644 --- a/pkgs/development/libraries/intel-media-driver/default.nix +++ b/pkgs/development/libraries/intel-media-driver/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "intel-media-driver-${version}"; - version = "19.1.0"; + version = "19.2"; src = fetchFromGitHub { owner = "intel"; repo = "media-driver"; rev = "intel-media-${version}"; - sha256 = "072ry87h1lds14fqb2sfz3n2sssvacamaxv2gj4nd8agnzbwizn7"; + sha256 = "118cg1grzm62lppaygvh7mgxn23bicjkwjwpxhbyqs9g6yhdj3p8"; }; cmakeFlags = [ From c1e687e4e746796ae61ca70d485bc177b0f50da2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Mon, 15 Jul 2019 19:18:43 +0200 Subject: [PATCH 0292/1611] drawio: 10.8.0 -> 10.9.5 Changelog: https://github.com/jgraph/drawio/blob/v10.9.5/ChangeLog --- pkgs/applications/graphics/drawio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/drawio/default.nix b/pkgs/applications/graphics/drawio/default.nix index 70cf1c149ab..b498a2049b3 100644 --- a/pkgs/applications/graphics/drawio/default.nix +++ b/pkgs/applications/graphics/drawio/default.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { pname = "drawio"; - version = "10.8.0"; + version = "10.9.5"; src = fetchurl { url = "https://github.com/jgraph/drawio-desktop/releases/download/v${version}/draw.io-x86_64-${version}.rpm"; - sha256 = "0c5wymzhbp72x0yhvw7vb4akkdvj97npl9kglk79vqjbzfn5di9k"; + sha256 = "13687d5bfxj7wlbh5j13pvxvs69whlg820wllk3pb1xb3syynlpn"; }; nativeBuildInputs = [ From 01b90dce78ee3906def0fc8d800217a3f9f40aa7 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 15 Jul 2019 20:18:49 +0300 Subject: [PATCH 0293/1611] resolvconf service: init This is a refactor of how resolvconf is managed on NixOS. We split it into a separate service which is enabled internally depending on whether we want /etc/resolv.conf to be managed by it. Various services now take advantage of those configuration options. We also now use systemd instead of activation scripts to update resolv.conf. NetworkManager now uses the right option for rc-manager DNS automatically, so the configuration option shouldn't be exposed. --- nixos/modules/config/networking.nix | 104 ------------ nixos/modules/config/resolvconf.nix | 149 ++++++++++++++++++ nixos/modules/module-list.nix | 1 + nixos/modules/rename.nix | 6 + nixos/modules/services/networking/bind.nix | 4 +- nixos/modules/services/networking/dnsmasq.nix | 11 +- .../services/networking/networkmanager.nix | 24 +-- nixos/modules/services/networking/rdnssd.nix | 5 + nixos/modules/services/networking/unbound.nix | 2 + nixos/modules/system/boot/resolved.nix | 43 +++-- nixos/modules/system/boot/stage-2.nix | 9 +- .../tasks/network-interfaces-scripted.nix | 2 +- nixos/modules/tasks/network-interfaces.nix | 1 - 13 files changed, 216 insertions(+), 145 deletions(-) create mode 100644 nixos/modules/config/resolvconf.nix diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix index eab4e73e19a..4b9086022ed 100644 --- a/nixos/modules/config/networking.nix +++ b/nixos/modules/config/networking.nix @@ -7,16 +7,6 @@ with lib; let cfg = config.networking; - dnsmasqResolve = config.services.dnsmasq.enable && - config.services.dnsmasq.resolveLocalQueries; - hasLocalResolver = config.services.bind.enable || - config.services.unbound.enable || - dnsmasqResolve; - - resolvconfOptions = cfg.resolvconfOptions - ++ optional cfg.dnsSingleRequest "single-request" - ++ optional cfg.dnsExtensionMechanism "edns0"; - localhostMapped4 = cfg.hosts ? "127.0.0.1" && elem "localhost" cfg.hosts."127.0.0.1"; localhostMapped6 = cfg.hosts ? "::1" && elem "localhost" cfg.hosts."::1"; @@ -64,48 +54,6 @@ in ''; }; - networking.dnsSingleRequest = lib.mkOption { - type = types.bool; - default = false; - description = '' - Recent versions of glibc will issue both ipv4 (A) and ipv6 (AAAA) - address queries at the same time, from the same port. Sometimes upstream - routers will systemically drop the ipv4 queries. The symptom of this problem is - that 'getent hosts example.com' only returns ipv6 (or perhaps only ipv4) addresses. The - workaround for this is to specify the option 'single-request' in - /etc/resolv.conf. This option enables that. - ''; - }; - - networking.dnsExtensionMechanism = lib.mkOption { - type = types.bool; - default = true; - description = '' - Enable the edns0 option in resolv.conf. With - that option set, glibc supports use of the extension mechanisms for - DNS (EDNS) specified in RFC 2671. The most popular user of that feature is DNSSEC, - which does not work without it. - ''; - }; - - networking.extraResolvconfConf = lib.mkOption { - type = types.lines; - default = ""; - example = "libc=NO"; - description = '' - Extra configuration to append to resolvconf.conf. - ''; - }; - - networking.resolvconfOptions = lib.mkOption { - type = types.listOf types.str; - default = []; - example = [ "ndots:1" "rotate" ]; - description = '' - Set the options in /etc/resolv.conf. - ''; - }; - networking.timeServers = mkOption { default = [ "0.nixos.pool.ntp.org" @@ -240,35 +188,6 @@ in # /etc/host.conf: resolver configuration file "host.conf".text = cfg.hostConf; - # /etc/resolvconf.conf: Configuration for openresolv. - "resolvconf.conf".text = - '' - # This is the default, but we must set it here to prevent - # a collision with an apparently unrelated environment - # variable with the same name exported by dhcpcd. - interface_order='lo lo[0-9]*' - '' + optionalString config.services.nscd.enable '' - # Invalidate the nscd cache whenever resolv.conf is - # regenerated. - libc_restart='${pkgs.systemd}/bin/systemctl try-restart --no-block nscd.service 2> /dev/null' - '' + optionalString (length resolvconfOptions > 0) '' - # Options as described in resolv.conf(5) - resolv_conf_options='${concatStringsSep " " resolvconfOptions}' - '' + optionalString hasLocalResolver '' - # This hosts runs a full-blown DNS resolver. - name_servers='127.0.0.1' - '' + optionalString dnsmasqResolve '' - dnsmasq_conf=/etc/dnsmasq-conf.conf - dnsmasq_resolv=/etc/dnsmasq-resolv.conf - '' + cfg.extraResolvconfConf + '' - ''; - - } // optionalAttrs config.services.resolved.enable { - # symlink the dynamic stub resolver of resolv.conf as recommended by upstream: - # https://www.freedesktop.org/software/systemd/man/systemd-resolved.html#/etc/resolv.conf - "resolv.conf".source = "/run/systemd/resolve/stub-resolv.conf"; - } // optionalAttrs (config.services.resolved.enable && dnsmasqResolve) { - "dnsmasq-resolv.conf".source = "/run/systemd/resolve/resolv.conf"; } // optionalAttrs (pkgs.stdenv.hostPlatform.libc == "glibc") { # /etc/rpc: RPC program numbers. "rpc".source = pkgs.glibc.out + "/etc/rpc"; @@ -295,29 +214,6 @@ in # Install the proxy environment variables environment.sessionVariables = cfg.proxy.envVars; - # This is needed when /etc/resolv.conf is being overriden by networkd - # and other configurations. If the file is destroyed by an environment - # activation then it must be rebuilt so that applications which interface - # with /etc/resolv.conf directly don't break. - system.activationScripts.resolvconf = stringAfter [ "etc" "specialfs" "var" ] - '' - # Systemd resolved controls its own resolv.conf - rm -f /run/resolvconf/interfaces/systemd - ${optionalString config.services.resolved.enable '' - rm -rf /run/resolvconf/interfaces - mkdir -p /run/resolvconf/interfaces - ln -s /run/systemd/resolve/resolv.conf /run/resolvconf/interfaces/systemd - ''} - - # Make sure resolv.conf is up to date if not managed manually, by systemd or - # by NetworkManager - ${optionalString (!config.environment.etc?"resolv.conf" && - (cfg.networkmanager.enable -> - cfg.networkmanager.rc-manager == "resolvconf")) '' - ${pkgs.openresolv}/bin/resolvconf -u - ''} - ''; - }; } diff --git a/nixos/modules/config/resolvconf.nix b/nixos/modules/config/resolvconf.nix new file mode 100644 index 00000000000..406c6a7ac32 --- /dev/null +++ b/nixos/modules/config/resolvconf.nix @@ -0,0 +1,149 @@ +# /etc files related to networking, such as /etc/services. + +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.networking.resolvconf; + + resolvconfOptions = cfg.extraOptions + ++ optional cfg.dnsSingleRequest "single-request" + ++ optional cfg.dnsExtensionMechanism "edns0"; + + configText = + '' + # This is the default, but we must set it here to prevent + # a collision with an apparently unrelated environment + # variable with the same name exported by dhcpcd. + interface_order='lo lo[0-9]*' + '' + optionalString config.services.nscd.enable '' + # Invalidate the nscd cache whenever resolv.conf is + # regenerated. + libc_restart='${pkgs.systemd}/bin/systemctl try-restart --no-block nscd.service 2> /dev/null' + '' + optionalString (length resolvconfOptions > 0) '' + # Options as described in resolv.conf(5) + resolv_conf_options='${concatStringsSep " " resolvconfOptions}' + '' + optionalString cfg.useLocalResolver '' + # This hosts runs a full-blown DNS resolver. + name_servers='127.0.0.1' + '' + cfg.extraConfig; + +in + +{ + + options = { + + networking.resolvconf = { + + enable = mkOption { + type = types.bool; + default = false; + internal = true; + description = '' + DNS configuration is managed by resolvconf. + ''; + }; + + useHostResolvConf = mkOption { + type = types.bool; + default = false; + description = '' + In containers, whether to use the + resolv.conf supplied by the host. + ''; + }; + + dnsSingleRequest = lib.mkOption { + type = types.bool; + default = false; + description = '' + Recent versions of glibc will issue both ipv4 (A) and ipv6 (AAAA) + address queries at the same time, from the same port. Sometimes upstream + routers will systemically drop the ipv4 queries. The symptom of this problem is + that 'getent hosts example.com' only returns ipv6 (or perhaps only ipv4) addresses. The + workaround for this is to specify the option 'single-request' in + /etc/resolv.conf. This option enables that. + ''; + }; + + dnsExtensionMechanism = mkOption { + type = types.bool; + default = true; + description = '' + Enable the edns0 option in resolv.conf. With + that option set, glibc supports use of the extension mechanisms for + DNS (EDNS) specified in RFC 2671. The most popular user of that feature is DNSSEC, + which does not work without it. + ''; + }; + + extraConfig = mkOption { + type = types.lines; + default = ""; + example = "libc=NO"; + description = '' + Extra configuration to append to resolvconf.conf. + ''; + }; + + extraOptions = mkOption { + type = types.listOf types.str; + default = []; + example = [ "ndots:1" "rotate" ]; + description = '' + Set the options in /etc/resolv.conf. + ''; + }; + + useLocalResolver = mkOption { + type = types.bool; + default = false; + description = '' + Use local DNS server for resolving. + ''; + }; + + }; + + }; + + config = mkMerge [ + { + networking.resolvconf.enable = !(config.environment.etc ? "resolv.conf"); + + environment.etc."resolvconf.conf".text = + if !cfg.enable then + # Force-stop any attempts to use resolvconf + '' + echo "resolvconf is disabled on this system but was used anyway:" >&2 + echo "$0 $*" >&2 + exit 1 + '' + else configText; + } + + (mkIf cfg.enable { + environment.systemPackages = [ pkgs.openresolv ]; + + systemd.services.resolvconf = { + description = "resolvconf update"; + + before = [ "network-pre.target" ]; + wants = [ "network-pre.target" ]; + wantedBy = [ "multi-user.target" ]; + restartTriggers = [ config.environment.etc."resolvconf.conf".source ]; + + serviceConfig = { + Type = "oneshot"; + ExecStart = "${pkgs.openresolv}/bin/resolvconf -u"; + RemainAfterExit = true; + }; + }; + + }) + ]; + +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 1d1995eda25..ba9ea9d2824 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -25,6 +25,7 @@ ./config/nsswitch.nix ./config/power-management.nix ./config/pulseaudio.nix + ./config/resolvconf.nix ./config/shells-environment.nix ./config/swap.nix ./config/sysctl.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 1b77a895d71..ca8db9a1a48 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -244,6 +244,12 @@ with lib; # KSM (mkRenamedOptionModule [ "hardware" "enableKSM" ] [ "hardware" "ksm" "enable" ]) + # resolvconf + (mkRenamedOptionModule [ "networking" "dnsSingleRequest" ] [ "networking" "resolvconf" "dnsSingleRequest" ]) + (mkRenamedOptionModule [ "networking" "dnsExtensionMechanism" ] [ "networking" "resolvconf" "dnsExtensionMechanism" ]) + (mkRenamedOptionModule [ "networking" "extraResolvconfConf" ] [ "networking" "resolvconf" "extraConfig" ]) + (mkRenamedOptionModule [ "networking" "resolvconfOptions" ] [ "networking" "resolvconf" "extraOptions" ]) + ] ++ (flip map [ "blackboxExporter" "collectdExporter" "fritzboxExporter" "jsonExporter" "minioExporter" "nginxExporter" "nodeExporter" "snmpExporter" "unifiExporter" "varnishExporter" ] diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix index 7f89cff2232..2097b9a3163 100644 --- a/nixos/modules/services/networking/bind.nix +++ b/nixos/modules/services/networking/bind.nix @@ -168,7 +168,9 @@ in ###### implementation - config = mkIf config.services.bind.enable { + config = mkIf cfg.enable { + + networking.resolvconf.useLocalResolver = mkDefault true; users.users = singleton { name = bindUser; diff --git a/nixos/modules/services/networking/dnsmasq.nix b/nixos/modules/services/networking/dnsmasq.nix index 24d16046c63..714a5903bff 100644 --- a/nixos/modules/services/networking/dnsmasq.nix +++ b/nixos/modules/services/networking/dnsmasq.nix @@ -79,7 +79,7 @@ in ###### implementation - config = mkIf config.services.dnsmasq.enable { + config = mkIf cfg.enable { networking.nameservers = optional cfg.resolveLocalQueries "127.0.0.1"; @@ -92,6 +92,15 @@ in description = "Dnsmasq daemon user"; }; + networking.resolvconf = mkIf cfg.resolveLocalQueries { + useLocalResolver = mkDefault true; + + extraConfig = '' + dnsmasq_conf=/etc/dnsmasq-conf.conf + dnsmasq_resolv=/etc/dnsmasq-resolv.conf + ''; + }; + systemd.services.dnsmasq = { description = "Dnsmasq Daemon"; after = [ "network.target" "systemd-resolved.service" ]; diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index f1f8c9722e0..49d46456c04 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -17,7 +17,8 @@ let plugins=keyfile dhcp=${cfg.dhcp} dns=${cfg.dns} - rc-manager=${cfg.rc-manager} + # If resolvconf is disabled that means that resolv.conf is managed by some other module. + rc-manager=${if config.networking.resolvconf.enable then "resolvconf" else "unmanaged"} [keyfile] ${optionalString (cfg.unmanaged != []) @@ -268,25 +269,6 @@ in { ''; }; - rc-manager = mkOption { - type = types.enum [ "symlink" "file" "resolvconf" "netconfig" "unmanaged" "none" ]; - default = "resolvconf"; - description = '' - Set the resolv.conf management mode. - - - A description of these modes can be found in the main section of - - https://developer.gnome.org/NetworkManager/stable/NetworkManager.conf.html - - or in - - NetworkManager.conf - 5 - . - ''; - }; - dispatcherScripts = mkOption { type = types.listOf (types.submodule { options = { @@ -512,7 +494,7 @@ in { networking = { useDHCP = false; # use mkDefault to trigger the assertion about the conflict above - wireless.enable = lib.mkDefault false; + wireless.enable = mkDefault false; }; security.polkit.extraConfig = polkitConf; diff --git a/nixos/modules/services/networking/rdnssd.nix b/nixos/modules/services/networking/rdnssd.nix index 887772f6e5f..bccab805bee 100644 --- a/nixos/modules/services/networking/rdnssd.nix +++ b/nixos/modules/services/networking/rdnssd.nix @@ -35,6 +35,11 @@ in config = mkIf config.services.rdnssd.enable { + assertions = [{ + assertion = config.networking.resolvconf.enable; + message = "rdnssd needs resolvconf to work (probably something sets up a static resolv.conf)"; + }]; + systemd.services.rdnssd = { description = "RDNSS daemon"; after = [ "network.target" ]; diff --git a/nixos/modules/services/networking/unbound.nix b/nixos/modules/services/networking/unbound.nix index 1a35979ad44..3cf82e8839b 100644 --- a/nixos/modules/services/networking/unbound.nix +++ b/nixos/modules/services/networking/unbound.nix @@ -101,6 +101,8 @@ in isSystemUser = true; }; + networking.resolvconf.useLocalResolver = mkDefault true; + systemd.services.unbound = { description = "Unbound recursive Domain Name Server"; after = [ "network.target" ]; diff --git a/nixos/modules/system/boot/resolved.nix b/nixos/modules/system/boot/resolved.nix index 5c66cf4a6e6..3ea96f8e464 100644 --- a/nixos/modules/system/boot/resolved.nix +++ b/nixos/modules/system/boot/resolved.nix @@ -3,6 +3,10 @@ with lib; let cfg = config.services.resolved; + + dnsmasqResolve = config.services.dnsmasq.enable && + config.services.dnsmasq.resolveLocalQueries; + in { @@ -126,6 +130,12 @@ in config = mkIf cfg.enable { + assertions = [ + { assertion = !config.networking.useHostResolvConf; + message = "Using host resolv.conf is not supported with systemd-resolved"; + } + ]; + systemd.additionalUpstreamSystemUnits = [ "systemd-resolved.service" ]; @@ -135,21 +145,30 @@ in restartTriggers = [ config.environment.etc."systemd/resolved.conf".source ]; }; - environment.etc."systemd/resolved.conf".text = '' - [Resolve] - ${optionalString (config.networking.nameservers != []) - "DNS=${concatStringsSep " " config.networking.nameservers}"} - ${optionalString (cfg.fallbackDns != []) - "FallbackDNS=${concatStringsSep " " cfg.fallbackDns}"} - ${optionalString (cfg.domains != []) - "Domains=${concatStringsSep " " cfg.domains}"} - LLMNR=${cfg.llmnr} - DNSSEC=${cfg.dnssec} - ${config.services.resolved.extraConfig} - ''; + environment.etc = { + "systemd/resolved.conf".text = '' + [Resolve] + ${optionalString (config.networking.nameservers != []) + "DNS=${concatStringsSep " " config.networking.nameservers}"} + ${optionalString (cfg.fallbackDns != []) + "FallbackDNS=${concatStringsSep " " cfg.fallbackDns}"} + ${optionalString (cfg.domains != []) + "Domains=${concatStringsSep " " cfg.domains}"} + LLMNR=${cfg.llmnr} + DNSSEC=${cfg.dnssec} + ${config.services.resolved.extraConfig} + ''; + + # symlink the dynamic stub resolver of resolv.conf as recommended by upstream: + # https://www.freedesktop.org/software/systemd/man/systemd-resolved.html#/etc/resolv.conf + "resolv.conf".source = "/run/systemd/resolve/stub-resolv.conf"; + } // optionalAttrs dnsmasqResolve { + "dnsmasq-resolv.conf".source = "/run/systemd/resolve/resolv.conf"; + }; # If networkmanager is enabled, ask it to interface with resolved. networking.networkmanager.dns = "systemd-resolved"; + }; } diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix index 55e6b19c67f..6b0b4722730 100644 --- a/nixos/modules/system/boot/stage-2.nix +++ b/nixos/modules/system/boot/stage-2.nix @@ -4,19 +4,20 @@ with lib; let + useHostResolvConf = config.networking.resolvconf.enable && config.networking.useHostResolvConf; + bootStage2 = pkgs.substituteAll { src = ./stage-2-init.sh; shellDebug = "${pkgs.bashInteractive}/bin/bash"; shell = "${pkgs.bash}/bin/bash"; isExecutable = true; inherit (config.nix) readOnlyStore; - inherit (config.networking) useHostResolvConf; + inherit useHostResolvConf; inherit (config.system.build) earlyMountScript; - path = lib.makeBinPath [ + path = lib.makeBinPath ([ pkgs.coreutils pkgs.utillinux - pkgs.openresolv - ]; + ] ++ lib.optional useHostResolvConf pkgs.openresolv); fsPackagesPath = lib.makeBinPath config.system.fsPackages; postBootCommands = pkgs.writeText "local-cmds" '' diff --git a/nixos/modules/tasks/network-interfaces-scripted.nix b/nixos/modules/tasks/network-interfaces-scripted.nix index c12ada7a030..2b8a7944dc3 100644 --- a/nixos/modules/tasks/network-interfaces-scripted.nix +++ b/nixos/modules/tasks/network-interfaces-scripted.nix @@ -103,7 +103,7 @@ let script = '' - ${optionalString (!config.environment.etc?"resolv.conf") '' + ${optionalString config.networking.resolvconf.enable '' # Set the static DNS configuration, if given. ${pkgs.openresolv}/sbin/resolvconf -m 1 -a static < Date: Mon, 15 Jul 2019 10:49:00 -0700 Subject: [PATCH 0294/1611] khard: 0.13.0 -> 0.14.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/khard/versions --- pkgs/applications/misc/khard/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix index 61eb959a1dd..4fb2227ee20 100644 --- a/pkgs/applications/misc/khard/default.nix +++ b/pkgs/applications/misc/khard/default.nix @@ -17,13 +17,13 @@ let }; in with python.pkgs; buildPythonApplication rec { - version = "0.13.0"; + version = "0.14.0"; name = "khard-${version}"; namePrefix = ""; src = fetchurl { url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; - sha256 = "06b9xcdg1na6mxa2pnlh0wfsk02k2h6hlki089aaikbg8k8ykj8f"; + sha256 = "0m1pc67jz663yfc0xzfpknymn8jj2bpfxaph3pl0mjd3h1zjfyaq"; }; # setup.py reads the UTF-8 encoded readme. From a23a09ba841bdbee43c59e274ceb5212c2256373 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Sun, 14 Jul 2019 14:59:16 -0700 Subject: [PATCH 0295/1611] vimPlugins.coc-nvim: 0.0.72 -> 0.0.73 --- pkgs/misc/vim-plugins/overrides.nix | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix index 033a02a6584..0c597e2d8c5 100644 --- a/pkgs/misc/vim-plugins/overrides.nix +++ b/pkgs/misc/vim-plugins/overrides.nix @@ -119,20 +119,17 @@ self: super: { ''; }); - coc-nvim = let - version = "0.0.72"; - index_js = fetchzip { - url = "https://github.com/neoclide/coc.nvim/releases/download/v${version}/coc.tar.gz"; - sha256 = "128wlbnpz4gwpfnmzry5k52d58fyp9nccha314ndfnr9xgd6r52y"; - }; - in super.coc-nvim.overrideAttrs(old: { - # you still need to enable the node js provider in your nvim config - postInstall = '' - mkdir -p $out/share/vim-plugins/coc-nvim/build - cp ${index_js}/index.js $out/share/vim-plugins/coc-nvim/build/ - ''; - - }); + # Only official releases contains the required index.js file + coc-nvim = buildVimPluginFrom2Nix rec { + pname = "coc-nvim"; + version = "0.0.73"; + src = fetchFromGitHub { + owner = "neoclide"; + repo = "coc.nvim"; + rev = "v${version}"; + sha256 = "1z7573rbh806nmkh75hr1kbhxr4jysv6k9x01fcyjfwricpa3cf7"; + }; + }; command-t = super.command-t.overrideAttrs(old: { buildInputs = [ ruby rake ]; From 08986cac6c4f71e3e3afb06fa61971bc2f863475 Mon Sep 17 00:00:00 2001 From: Malo Bourgon Date: Mon, 15 Jul 2019 10:56:09 -0700 Subject: [PATCH 0296/1611] vimPlugins: Update (after removing coc.nvim from vim-plugin-names) --- pkgs/misc/vim-plugins/generated.nix | 123 +++++++++++-------------- pkgs/misc/vim-plugins/vim-plugin-names | 1 - 2 files changed, 56 insertions(+), 68 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index ca90c2c8884..fa8fb3a6a9b 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -61,12 +61,12 @@ let ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2019-07-06"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "w0rp"; repo = "ale"; - rev = "6c47d7fc352659cd2dc869a9a46a04a8492fc829"; - sha256 = "1xk69prw20d37zw6q83yiv31nw9hrlqprrs9yxrqrlh0zdgn7cn9"; + rev = "aae6d30b1ec135e37ec3bea1885d161c6174572b"; + sha256 = "1irh5l3y5sm00d5n13zl0a2v45r299bfxqsci3f98zw2m7kxhp5a"; }; }; @@ -380,12 +380,12 @@ let coc-lists = buildVimPluginFrom2Nix { pname = "coc-lists"; - version = "2019-07-08"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-lists"; - rev = "1f9583616b426267db941ea23ef3cef5b780b9c6"; - sha256 = "0ldvx2skl9ln04jpz84nyvyrp1im5mw4dri1m8x1ayzvzrvqig5d"; + rev = "5f8666ce03218f16e92d813767c2c6dd86dae175"; + sha256 = "1azxjdb75han6b3mvaqczzwxhaxr6qax4vy6zw7zqwqcskrakwzq"; }; }; @@ -413,12 +413,12 @@ let coc-prettier = buildVimPluginFrom2Nix { pname = "coc-prettier"; - version = "2019-06-30"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-prettier"; - rev = "6f30d4c5f0b6c4cf1ff0f5f7229377fc95fe249a"; - sha256 = "0882ppaa69fp2hcncd54znaff944iraypxilr31nr51a6d9lbcs9"; + rev = "9a2c2ebb03134a2dfc059a662a59b6d799609373"; + sha256 = "0mivdca8gicli6c87qy12nw18m4qcf29hb5y49falnpp2104prji"; }; }; @@ -457,23 +457,23 @@ let coc-smartf = buildVimPluginFrom2Nix { pname = "coc-smartf"; - version = "2019-07-11"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-smartf"; - rev = "56252948dc0839765a9b57adbf52c293b599fe05"; - sha256 = "1mabawpfmlhhlkc5f0h15dci6b1i9ndpiry6fi0gcl3j6m76w02d"; + rev = "340fc45a48a70b3f150fb385e9d6d10979132a78"; + sha256 = "1srnicdvm0l50qjx108vw8rkylp9yl29pbz890mfnp9ryz64qk06"; }; }; coc-snippets = buildVimPluginFrom2Nix { pname = "coc-snippets"; - version = "2019-07-12"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-snippets"; - rev = "bbc7ce11471cb48751d436193e4bacafed65e773"; - sha256 = "1imhjb6djy66zx5qj9spg2nddg77c4ygxs0jx3z9kiddqsajg7af"; + rev = "d1619fa8c4bb0a1ef3bffadecccb7ec8fd332b90"; + sha256 = "04bfn9aws3kqkvd4q5r963jb1rqxpayf6qxa4yxwsnkcvma2zk7y"; }; }; @@ -505,8 +505,8 @@ let src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tabnine"; - rev = "f94a00ecb957fb7537dc68179c78adea0f1c4aca"; - sha256 = "0s0jip0prapizq4pp46dayq21v4mjqkkv9x2hi3xmxrc7w8g5ndq"; + rev = "65d8c479cc31fb906c10fa2762f98db8826295e1"; + sha256 = "04a07v9cwbid32zzj4zxq8xmhhxjdbi627mk9dfyj024z0nyw801"; }; }; @@ -598,17 +598,6 @@ let }; }; - coc-nvim = buildVimPluginFrom2Nix { - pname = "coc-nvim"; - version = "2019-07-13"; - src = fetchFromGitHub { - owner = "neoclide"; - repo = "coc.nvim"; - rev = "f3072ec53565b6725504a37f19617ce7d2c8f0ed"; - sha256 = "0v41wh9qd5gvvi345yk2ajq5xbrwb56gziycqa9pgwa9b9bxck7k"; - }; - }; - Colour-Sampler-Pack = buildVimPluginFrom2Nix { pname = "Colour-Sampler-Pack"; version = "2012-11-30"; @@ -788,12 +777,12 @@ let denite-nvim = buildVimPluginFrom2Nix { pname = "denite-nvim"; - version = "2019-07-12"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "Shougo"; repo = "denite.nvim"; - rev = "f80fc06a5455dbfb3691dce4f224c8cf8d9ffde2"; - sha256 = "09x0rhv4aplgpbhjqms6w9xwhx1w5zlpprxzx0yjx554mrc0lhia"; + rev = "3a1b508116652a6c9b4b174ddafaee7852a15fc4"; + sha256 = "18af8d9rmb0x3ln03ph2m0msaji7wvyvyn3xck12y99mpsf1l50w"; }; }; @@ -868,12 +857,12 @@ let deoplete-lsp = buildVimPluginFrom2Nix { pname = "deoplete-lsp"; - version = "2018-12-05"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete-lsp"; - rev = "c4837884f61a7699f328fb05b93bed0b6395dd70"; - sha256 = "0ahfffpmc62pqnplm0lmzpam420i578rvyi7zda21nqlir9a53ij"; + rev = "c0172e8d458054b8dea037bbcfef523cde7add93"; + sha256 = "1j6904wk4qr4i4h8qn2rikzw1kp6r5dc4475x38i8xngx1ap4x24"; }; }; @@ -901,12 +890,12 @@ let deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete-nvim"; - version = "2019-07-06"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "fc55354e8521599ae509a8ed7c05438199933c8b"; - sha256 = "0zk390jybshd10fzg5r2bfc7gj0n3cr28wdpbzri4lvddnj7x3wa"; + rev = "7d28b9230e8db9ce9e6be566402a92612e0732e7"; + sha256 = "01krxg7va2x39bqs8mh0c7mdy56nzj84avmj4nn6xf5pz1ycdiv1"; }; }; @@ -1013,12 +1002,12 @@ let falcon = buildVimPluginFrom2Nix { pname = "falcon"; - version = "2019-07-02"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "fenetikm"; repo = "falcon"; - rev = "66886096df65c4510726a815b6a8c75b281024b1"; - sha256 = "1w3xg0zvi7b561ykasf51j8qn06zpi9g2a044r6gz06cbipdhiw6"; + rev = "d82e93a171e61129ba04a8d9dfed75f2b892b3a5"; + sha256 = "16gys01i808111s4bd2k8la1fmj8p7l7y9vbig0x0qvd3klbhmm8"; }; }; @@ -1333,12 +1322,12 @@ let jedi-vim = buildVimPluginFrom2Nix { pname = "jedi-vim"; - version = "2019-06-22"; + version = "2019-07-13"; src = fetchFromGitHub { owner = "davidhalter"; repo = "jedi-vim"; - rev = "016fb7c78e3971ab662796d2abf5f2f4a227e1a1"; - sha256 = "1zzidg4n7ir00q9l4y8g7dqfdzph0f7j7022n032vlfj8yr5mc92"; + rev = "b9f83175951654256cff41737841b4abc0c9266d"; + sha256 = "0w24zqs1026khdzr7v283yx9yc3sp5rw4kzsjwalclg5xnyy55c0"; fetchSubmodules = true; }; }; @@ -1444,12 +1433,12 @@ let lightline-vim = buildVimPluginFrom2Nix { pname = "lightline-vim"; - version = "2019-06-12"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "itchyny"; repo = "lightline.vim"; - rev = "80c242c3c5394fd5143b5d7e2741989ba04ae46a"; - sha256 = "0k42wzwwhiqj6i1s2zdkmdnay85kwl4aw129nwcrrc4ahqhhh9fy"; + rev = "284d3ee0dbdfe7b07a6a927a742d203851215ca4"; + sha256 = "05cmwnfky66p0i6jk7rc2qs5l6n0d89is3kwymg9qag2v6k8cz80"; }; }; @@ -1763,12 +1752,12 @@ let nerdtree = buildVimPluginFrom2Nix { pname = "nerdtree"; - version = "2019-07-10"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "scrooloose"; repo = "nerdtree"; - rev = "4ac07f52a312a24d82deba715ee489e6c5b00259"; - sha256 = "0fwaf38064qawclay95ncydj2faz3krhiz23ghzikdxzx8bvjrmg"; + rev = "63c59208c1f9eef7068a944f5c3033bd1a348b97"; + sha256 = "11531x591dw99mf3ladsim6cv162ypb421q60kljg0hg7fvjml8y"; }; }; @@ -3226,12 +3215,12 @@ let vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2019-07-12"; + version = "2019-07-13"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "d0049b4417cf20af6d98b8f1e0febcc7c6a6f2bb"; - sha256 = "1j27kbwlfbsymd1aqa0zb8hp4v7ks927x2256qwp2f87a8j14bq0"; + rev = "4da9fb8f43869125f6e1bb1ff8dd27f315623835"; + sha256 = "001jl2cvdwszhhjfjmb4mkvffkq28mqc72bgy12119zprc8z3kaa"; }; }; @@ -3303,12 +3292,12 @@ let vim-go = buildVimPluginFrom2Nix { pname = "vim-go"; - version = "2019-07-12"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "b5874d4b7c3a612351187c24deaf628276f6cece"; - sha256 = "1rdvjzcd8wm1v1x86gr3hj5zbfyk867hdpcs05wgh1bjl6ymbbxx"; + rev = "d42c9586ce9fe170baa62fe22ea3ecf66417f908"; + sha256 = "15x6wh8yvysrryj18dpzr6l0x06jnc6llh0shg3mcgb1vlfwl8v2"; }; }; @@ -4096,12 +4085,12 @@ let vim-ruby = buildVimPluginFrom2Nix { pname = "vim-ruby"; - version = "2019-04-04"; + version = "2019-07-13"; src = fetchFromGitHub { owner = "vim-ruby"; repo = "vim-ruby"; - rev = "96d5db458f868255393fdc2732d6bef21a45c68f"; - sha256 = "1nv51c441d44igjcb3hlib1zbd65h98ywkjyp50hbz5rjkx17mvv"; + rev = "1aa8f0cd0411c093d81f4139d151f93808e53966"; + sha256 = "04ng7mjjdacajkmx20pfwlfh1h43sh6sx58id830q9jjl7kvyhhp"; }; }; @@ -4239,12 +4228,12 @@ let vim-snippets = buildVimPluginFrom2Nix { pname = "vim-snippets"; - version = "2019-07-06"; + version = "2019-07-13"; src = fetchFromGitHub { owner = "honza"; repo = "vim-snippets"; - rev = "c8e8b35e9a56aab5b1ef871a164b6e8d6ea79ad0"; - sha256 = "0lb6kmg4ckrxhys0k9gss3hp60x0mik10sm0y5g8yf74a1vzysvf"; + rev = "d693695ae9375794a3a0b572fd65e86bfb56ed61"; + sha256 = "0xlhkmaxssifqjq6cgi35iwrckasqszpn54ji8rjmhi9wm9w4p57"; }; }; @@ -4679,12 +4668,12 @@ let vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2019-07-11"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "407ca82011b6d99ec84932730f21491b954b3d29"; - sha256 = "15mcj3kv8iiyphgzv7gzzpqwlrz7r05fzwpqm1sb38fazklcvg2q"; + rev = "363a8c5dc3be3decd1e8060040f268b238a39689"; + sha256 = "1plflcw41nvkwd3lvqkb9z666h78kgd16mb020pi16v4v6zniw9n"; }; }; @@ -4822,12 +4811,12 @@ let yats-vim = buildVimPluginFrom2Nix { pname = "yats-vim"; - version = "2019-06-18"; + version = "2019-07-14"; src = fetchFromGitHub { owner = "HerringtonDarkholme"; repo = "yats.vim"; - rev = "c0995dfebaebf4abaaae7d6c71b912bec2de9596"; - sha256 = "0q0hxscwqwn2xwfvah9hlbzb416gzi7pzsl7rniw7qsy3pp5m3sn"; + rev = "632bed9406fe891da8ec7b86320ff1c274d8318e"; + sha256 = "19g2ppq0ircmbj6vv5rs00fqa8vq1faw4hv1asq2ym31f3y3ccax"; fetchSubmodules = true; }; }; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 981965b323b..7cfc14ccd4f 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -242,7 +242,6 @@ neoclide/coc-jest neoclide/coc-json neoclide/coc-lists neoclide/coc-neco -neoclide/coc.nvim neoclide/coc-pairs neoclide/coc-prettier neoclide/coc-python From 50ef5aceafb0009c35bc53d4532ecc764fc33f30 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 07:24:12 -0700 Subject: [PATCH 0297/1611] grails: 3.3.10 -> 4.0.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/grails/versions --- pkgs/development/web/grails/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/grails/default.nix b/pkgs/development/web/grails/default.nix index 018c7f96969..24f56789198 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.10"; + version = "4.0.0"; src = fetchurl { url = "https://github.com/grails/grails-core/releases/download/v${version}/grails-${version}.zip"; - sha256 = "1lykawfi47c2k6lq4vrnghlz8gcnmqsslxsnaq4d2n78g0y3yyr2"; + sha256 = "13y0q3gcdpfwib3ahrgh36rhr4smbrq2g4xgvnk8c0a6wvmz85sx"; }; buildInputs = [ unzip ]; From 1b6198770686ace98014b0319f249cd79c5ecc00 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 11:33:48 -0700 Subject: [PATCH 0298/1611] ipvsadm: 1.29 -> 1.30 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ipvsadm/versions --- pkgs/os-specific/linux/ipvsadm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/ipvsadm/default.nix b/pkgs/os-specific/linux/ipvsadm/default.nix index 0e99dd976c7..67a123a3764 100644 --- a/pkgs/os-specific/linux/ipvsadm/default.nix +++ b/pkgs/os-specific/linux/ipvsadm/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "ipvsadm-${version}"; - version = "1.29"; + version = "1.30"; src = fetchurl { url = "mirror://kernel/linux/utils/kernel/ipvsadm/${name}.tar.xz"; - sha256 = "c3de4a21d90a02c621f0c72ee36a7aa27374b6f29fd4178f33fbf71b4c66c149"; + sha256 = "033srm20n3114aci3b6cwxnkm7n68k09di2aziiryg27vxq3smwm"; }; postPatch = '' From 32a88012c697e022dbc8fc4f96c40cda507bf885 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 11:48:55 -0700 Subject: [PATCH 0299/1611] libcdaudio: 0.99.12 -> 0.99.12p2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libcdaudio/versions --- pkgs/development/libraries/libcdaudio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/libcdaudio/default.nix b/pkgs/development/libraries/libcdaudio/default.nix index 218eaeea571..c48818972b5 100644 --- a/pkgs/development/libraries/libcdaudio/default.nix +++ b/pkgs/development/libraries/libcdaudio/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl}: stdenv.mkDerivation { - name = "libcdaudio-0.99.12"; + name = "libcdaudio-0.99.12p2"; src = fetchurl { - url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12.tar.gz ; - sha256 = "1g3ba1n12g8h7pps0vlxx8di6cmf108mbcvbl6hj8x71ndkglygb" ; + url = mirror://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz ; + sha256 = "1fsy6dlzxrx177qc877qhajm9l4g28mvh06h2l15rxy4bapzknjz" ; }; meta = { From 1d0ef760a64e588036cafc4c9b20a994b6a8d2f9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 11:57:51 -0700 Subject: [PATCH 0300/1611] libgweather: 3.32.1 -> 3.32.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libgweather/versions --- pkgs/development/libraries/libgweather/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libgweather/default.nix b/pkgs/development/libraries/libgweather/default.nix index 3300e9b1d68..5e35a43fb9d 100644 --- a/pkgs/development/libraries/libgweather/default.nix +++ b/pkgs/development/libraries/libgweather/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "libgweather"; - version = "3.32.1"; + version = "3.32.2"; outputs = [ "out" "dev" "devdoc" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "1079d26y8d2zaw9w50l9scqjhbrynpdd6kyaa32x4393f7nih8hw"; + sha256 = "00iwbllh8dmnqch0ysng9xhkzzs3ir9jl9f4hp41vbvg1pq5zv98"; }; nativeBuildInputs = [ meson ninja pkgconfig gettext vala gtk-doc docbook_xsl docbook_xml_dtd_43 gobject-introspection python3 ]; From ecd58ee3dde80be3407ff60f92609abcfcd6283b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 12:06:05 -0700 Subject: [PATCH 0301/1611] libbytesize: 2.0 -> 2.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libbytesize/versions --- pkgs/development/libraries/libbytesize/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libbytesize/default.nix b/pkgs/development/libraries/libbytesize/default.nix index 97f8e17a5f6..18593f80799 100644 --- a/pkgs/development/libraries/libbytesize/default.nix +++ b/pkgs/development/libraries/libbytesize/default.nix @@ -4,7 +4,7 @@ }: let - version = "2.0"; + version = "2.1"; in stdenv.mkDerivation rec { name = "libbytesize-${version}"; @@ -12,7 +12,7 @@ in stdenv.mkDerivation rec { owner = "storaged-project"; repo = "libbytesize"; rev = version; - sha256 = "0m950idlyv6mbkhr8ngnda5l5wwb5lzs4wn4kxl73cvdlcvklmwj"; + sha256 = "0qb6zx2fdghm21lishlcrhnwf4wwy5p69dsgp0504kn93ii7mw3m"; }; outputs = [ "out" "dev" "devdoc" ]; From 2e1a90e5d018a5e6b1dc1b5b3c726d6be26b22f8 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 15 Jun 2019 21:58:19 -0700 Subject: [PATCH 0302/1611] pythonPackages.vsts: init at 0.1.25 --- .../python-modules/vsts/default.nix | 30 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/python-modules/vsts/default.nix diff --git a/pkgs/development/python-modules/vsts/default.nix b/pkgs/development/python-modules/vsts/default.nix new file mode 100644 index 00000000000..0f49ffd05c6 --- /dev/null +++ b/pkgs/development/python-modules/vsts/default.nix @@ -0,0 +1,30 @@ +{ buildPythonPackage +, lib +, python +, fetchPypi +, msrest +}: + +buildPythonPackage rec { + version = "0.1.25"; + pname = "vsts"; + + src = fetchPypi { + inherit pname version; + sha256 = "15sgwqa72ynpahj101r2kc15s3dnsafg5gqx0sz3hnqz29h925ys"; + }; + + propagatedBuildInputs = [ msrest ]; + + # Tests are highly impure + checkPhase = '' + ${python.interpreter} -c 'import vsts.version; print(vsts.version.VERSION)' + ''; + + meta = with lib; { + description = "Python APIs for interacting with and managing Azure DevOps"; + homepage = https://github.com/microsoft/azure-devops-python-api; + license = licenses.mit; + maintainers = with maintainers; [ jonringer ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2ed5c7753f0..7b95941d064 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4637,6 +4637,8 @@ in { virtualenv = callPackage ../development/python-modules/virtualenv { }; + vsts = callPackage ../development/python-modules/vsts { }; + weasyprint = callPackage ../development/python-modules/weasyprint { }; webassets = callPackage ../development/python-modules/webassets { }; From db7a7d626a905bd36abca9397d6a27e669d60b2b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 12:32:45 -0700 Subject: [PATCH 0303/1611] kmymoney: 5.0.4 -> 5.0.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kmymoney/versions --- pkgs/applications/office/kmymoney/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/kmymoney/default.nix b/pkgs/applications/office/kmymoney/default.nix index a29e256675f..30045b83242 100644 --- a/pkgs/applications/office/kmymoney/default.nix +++ b/pkgs/applications/office/kmymoney/default.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { name = "kmymoney-${version}"; - version = "5.0.4"; + version = "5.0.5"; src = fetchurl { url = "mirror://kde/stable/kmymoney/${version}/src/${name}.tar.xz"; - sha256 = "06lbavhl9b8cybnss2mmy3g5w8qn2vl6zhipvbl11lsr3j9bsa8q"; + sha256 = "1hghs4676kn2giwpwz1y7p6djpmi41x64idf3ybiz8ky14a5s977"; }; # Hidden dependency that wasn't included in CMakeLists.txt: From 979710b4a0e5f0060e9ded6c819c6d0f1a09fe5f Mon Sep 17 00:00:00 2001 From: Kirill Boltaev Date: Mon, 15 Jul 2019 21:11:55 +0300 Subject: [PATCH 0304/1611] libstrangle: init at 2017-02-22 --- pkgs/tools/X11/libstrangle/default.nix | 29 ++++++++++++++++++++++++++ pkgs/tools/X11/libstrangle/nixos.patch | 29 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 3 files changed, 62 insertions(+) create mode 100644 pkgs/tools/X11/libstrangle/default.nix create mode 100644 pkgs/tools/X11/libstrangle/nixos.patch diff --git a/pkgs/tools/X11/libstrangle/default.nix b/pkgs/tools/X11/libstrangle/default.nix new file mode 100644 index 00000000000..d24654ce3ad --- /dev/null +++ b/pkgs/tools/X11/libstrangle/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "libstrangle"; + version = "2017-02-22"; + + src = fetchFromGitHub { + owner = "milaq"; + repo = pname; + rev = "6020f9e375ba747c75eb7996b7d5f0214ac3221e"; + sha256 = "04ikacbjcq9phdc8q5y1qjjpa1sxmzfm0idln9ys95prg289zp4h"; + }; + + makeFlags = [ "prefix=" "DESTDIR=$(out)" ]; + + patches = [ ./nixos.patch ]; + + postPatch = '' + substituteAllInPlace src/strangle.sh + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/milaq/libstrangle"; + description = "Frame rate limiter for Linux/OpenGL"; + license = licenses.gpl3; + platforms = [ "x86_64-linux" ]; + maintainers = with maintainers; [ aske ]; + }; +} diff --git a/pkgs/tools/X11/libstrangle/nixos.patch b/pkgs/tools/X11/libstrangle/nixos.patch new file mode 100644 index 00000000000..912bdded6da --- /dev/null +++ b/pkgs/tools/X11/libstrangle/nixos.patch @@ -0,0 +1,29 @@ +diff --git a/makefile b/makefile +index eb13054..a3a1125 100644 +--- a/makefile ++++ b/makefile +@@ -27,12 +27,10 @@ $(BUILDDIR)libstrangle32.so: $(BUILDDIR) + $(CC) $(CFLAGS) $(LDFLAGS) -m32 -o $(BUILDDIR)libstrangle32.so $(SOURCES) + + install: all +- install -m 0644 -D -T $(BUILDDIR)libstrangle.conf $(DESTDIR)/etc/ld.so.conf.d/libstrangle.conf + install -m 0755 -D -T $(BUILDDIR)libstrangle32.so $(DESTDIR)$(LIB32_PATH)/libstrangle.so + install -m 0755 -D -T $(BUILDDIR)libstrangle64.so $(DESTDIR)$(LIB64_PATH)/libstrangle.so + install -m 0755 -D -T $(SOURCEDIR)strangle.sh $(DESTDIR)$(bindir)/strangle + install -m 0644 -D -T COPYING $(DESTDIR)$(DOC_PATH)/LICENSE +- ldconfig + + clean: + rm -f $(BUILDDIR)libstrangle64.so +diff --git a/src/strangle.sh b/src/strangle.sh +index e280e86..b2dd42b 100755 +--- a/src/strangle.sh ++++ b/src/strangle.sh +@@ -31,6 +31,5 @@ if [ "$#" -eq 0 ]; then + exit 1 + fi + +-# Execute the strangled program under a clean environment + # pass through the FPS and overriden LD_PRELOAD environment variables +-exec env FPS="${FPS}" LD_PRELOAD="${LD_PRELOAD}:libstrangle.so" "$@" ++FPS="${FPS}" LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:@out@/lib/libstrangle/lib64:@out@/lib/libstrangle/lib32" LD_PRELOAD="${LD_PRELOAD}:libstrangle.so" exec "$@" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 32528d03c85..d841b2474c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20263,6 +20263,10 @@ in insync = callPackage ../applications/networking/insync { }; + libstrangle = callPackage ../tools/X11/libstrangle { + stdenv = stdenv_32bit; + }; + lightdm = libsForQt5.callPackage ../applications/display-managers/lightdm { }; lightdm_qt = lightdm.override { withQt5 = true; }; From 5d678d1a39d65e65556b719c48b975cd345dbe49 Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Mon, 15 Jul 2019 22:53:46 +0300 Subject: [PATCH 0305/1611] i3status-rust: 0.9.0.2019-04-27 -> 0.10.0 --- pkgs/applications/window-managers/i3/status-rust.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/window-managers/i3/status-rust.nix b/pkgs/applications/window-managers/i3/status-rust.nix index 2fd78cbb0e1..de8cca56f85 100644 --- a/pkgs/applications/window-managers/i3/status-rust.nix +++ b/pkgs/applications/window-managers/i3/status-rust.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "i3status-rust"; - version = "0.9.0.2019-04-27"; + version = "0.10.0"; src = fetchFromGitHub { owner = "greshake"; repo = pname; - rev = "d04d08cbd4d13c64b1e3b7a8d21c46acee3bc281"; - sha256 = "0x23qv7kwsqy1yx25fn1z56fx8w865qarr5xdx8s22x42ym4zyha"; + rev = "v${version}"; + sha256 = "0i1k884ha08w7r5q5z012q2w7hs333b3c18hkbrhamknpvy6c2i0"; }; - cargoSha256 = "0vl2zn9n7ijmjxi2lyglnghvaw4qi2bah5i6km15schlsm8c641g"; + cargoSha256 = "1w43k3ld9ra7blbn593mpi8qg5pgcglwqwddkrb55yxnpnkaxvzy"; nativeBuildInputs = [ pkgconfig ]; From 542f3d77e23c68cae7fcaa06b93ed2dbef1624f8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 12:54:49 -0700 Subject: [PATCH 0306/1611] libraw: 0.19.2 -> 0.19.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libraw/versions --- pkgs/development/libraries/libraw/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix index 1a998c04435..5eb8049437c 100644 --- a/pkgs/development/libraries/libraw/default.nix +++ b/pkgs/development/libraries/libraw/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libraw-${version}"; - version = "0.19.2"; + version = "0.19.3"; src = fetchurl { url = "https://www.libraw.org/data/LibRaw-${version}.tar.gz"; - sha256 = "0i4nhjm5556xgn966x0i503ygk2wafq6z83kg0lisacjjab4f3a0"; + sha256 = "0xs1qb6pcvc4c43fy5xi3nkqxcif77gakkw99irf0fc5iccdd5px"; }; outputs = [ "out" "lib" "dev" "doc" ]; From dc87d574ad9677e27148b6a265e9bc94b68d263a Mon Sep 17 00:00:00 2001 From: Andreas Wiese Date: Sun, 14 Jul 2019 22:55:39 +0200 Subject: [PATCH 0307/1611] nextcloud: 16.0.1 -> 16.0.2 --- pkgs/servers/nextcloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nextcloud/default.nix b/pkgs/servers/nextcloud/default.nix index c6ab0e5d9fe..f623baea6d4 100644 --- a/pkgs/servers/nextcloud/default.nix +++ b/pkgs/servers/nextcloud/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "nextcloud-${version}"; - version = "16.0.1"; + version = "16.0.2"; src = fetchurl { url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2"; - sha256 = "1vlaswq9j3vkiikq8bj0qi6wsijkawg321wplvxv4c79x63fa358"; + sha256 = "0h9n8sbls68jn1bv89yg7rsri1ks0dvjhx0gk592a6qwjvbbd7gn"; }; installPhase = '' From 9dc6e984b5952e00317628f7469a66a0c3ec54c6 Mon Sep 17 00:00:00 2001 From: Andreas Wiese Date: Sun, 14 Jul 2019 22:56:39 +0200 Subject: [PATCH 0308/1611] nextcloud: 16.0.2 -> 16.0.3 --- pkgs/servers/nextcloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/nextcloud/default.nix b/pkgs/servers/nextcloud/default.nix index f623baea6d4..a78d2e26bf7 100644 --- a/pkgs/servers/nextcloud/default.nix +++ b/pkgs/servers/nextcloud/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "nextcloud-${version}"; - version = "16.0.2"; + version = "16.0.3"; src = fetchurl { url = "https://download.nextcloud.com/server/releases/${name}.tar.bz2"; - sha256 = "0h9n8sbls68jn1bv89yg7rsri1ks0dvjhx0gk592a6qwjvbbd7gn"; + sha256 = "1ww1517i05gaf71szx0qpdc87aczllcb39cvc8c26dm18z76hgx1"; }; installPhase = '' From df5bc9199d4a4964dd5323676671caf460cce8ba Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 14:28:17 -0700 Subject: [PATCH 0309/1611] mpop: 1.4.4 -> 1.4.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mpop/versions --- pkgs/applications/networking/mpop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mpop/default.nix b/pkgs/applications/networking/mpop/default.nix index 60049cd64b9..7d311d4bc70 100644 --- a/pkgs/applications/networking/mpop/default.nix +++ b/pkgs/applications/networking/mpop/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { pname = "mpop"; - version = "1.4.4"; + version = "1.4.5"; src = fetchurl { url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz"; - sha256 = "0j21cp8bw12vgfymxi3i4av3j97lrcyb5y9xa3mb59wr17izz73x"; + sha256 = "1m6743j8g777lijvxqw2wz6pv2g5a9wlh6zq7awk0hvd44xp4sav"; }; nativeBuildInputs = [ pkgconfig ]; From 13158dd4d1c17256f6014e41d0c9c46c9060cd73 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 14:58:38 -0700 Subject: [PATCH 0310/1611] monit: 5.25.3 -> 5.26.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/monit/versions --- pkgs/tools/system/monit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/monit/default.nix b/pkgs/tools/system/monit/default.nix index 282729f3145..f4238e27248 100644 --- a/pkgs/tools/system/monit/default.nix +++ b/pkgs/tools/system/monit/default.nix @@ -6,11 +6,11 @@ }: stdenv.mkDerivation rec { - name = "monit-5.25.3"; + name = "monit-5.26.0"; src = fetchurl { url = "${meta.homepage}dist/${name}.tar.gz"; - sha256 = "0s8577ixcmx45b081yx6cw54iq7m5yzpq3ir616qc84xhg45h0n1"; + sha256 = "1hpk0agxi7g9vmfqvrwr5wk7pr52wdlv3vs0j3l2p6mgldl4bz47"; }; nativeBuildInputs = [ bison flex ]; From b908565be5550a4476149257a2c73feaf8c09bf2 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 13:55:40 -0700 Subject: [PATCH 0311/1611] metabase: 0.32.2 -> 0.32.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/metabase/versions --- pkgs/servers/metabase/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/metabase/default.nix b/pkgs/servers/metabase/default.nix index dde0a547693..f1820d65ed0 100644 --- a/pkgs/servers/metabase/default.nix +++ b/pkgs/servers/metabase/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "metabase-${version}"; - version = "0.32.2"; + version = "0.32.9"; src = fetchurl { url = "http://downloads.metabase.com/v${version}/metabase.jar"; - sha256 = "1df2cvlqm0pz7w5094fv20308m0d2z4szlv46dzsfdw03hny50xn"; + sha256 = "08iybb1m2pmimn0fs95kd948yf6c1xmg5kkzm9ykx4cpb9pn1yw0"; }; nativeBuildInputs = [ makeWrapper ]; From 40e194c6aa0689937199a1962bf67927d3c45e69 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 15 Jul 2019 20:46:56 +0200 Subject: [PATCH 0312/1611] GxPlugins: 0.5->0.7 --- pkgs/applications/audio/gxplugins-lv2/default.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/gxplugins-lv2/default.nix b/pkgs/applications/audio/gxplugins-lv2/default.nix index 62f11cbfb74..04cb57800f9 100644 --- a/pkgs/applications/audio/gxplugins-lv2/default.nix +++ b/pkgs/applications/audio/gxplugins-lv2/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; pname = "GxPlugins.lv2"; - version = "0.5"; + version = "0.7"; src = fetchFromGitHub { owner = "brummer10"; repo = pname; rev = "v${version}"; - sha256 = "16r5bj7w726d9327flg530fn0bli4crkxjss7i56yhb1bsi39mbv"; + sha256 = "0jqdqnkg7pg9plcbxy49p7gcs1aj6h0xf7y9gndmjmkw5yjn2940"; fetchSubmodules = true; }; @@ -20,6 +20,12 @@ stdenv.mkDerivation rec { installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ]; + configurePhase = '' + for i in GxBoobTube GxValveCaster; do + substituteInPlace $i.lv2/Makefile --replace "\$(shell which echo) -e" "echo -e" + done + ''; + meta = with stdenv.lib; { homepage = https://github.com/brummer10/GxPlugins.lv2; description = "A set of extra lv2 plugins from the guitarix project"; From 6c98b0ff434c9234d6ca59e52a48db704b4a34db Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 01:17:38 +0200 Subject: [PATCH 0313/1611] gitaly: add `go mod` deps --- .../gitlab/gitaly/default.nix | 11 +- .../version-management/gitlab/gitaly/deps.nix | 687 ++++++++++++++++++ 2 files changed, 693 insertions(+), 5 deletions(-) create mode 100644 pkgs/applications/version-management/gitlab/gitaly/deps.nix diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index dc7093f2dba..a30cc0b0384 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitLab, buildGoPackage, ruby, bundlerEnv }: +{ stdenv, fetchFromGitLab, buildGoPackage, ruby, bundlerEnv, pkgconfig, libgit2 }: let rubyEnv = bundlerEnv rec { @@ -33,9 +33,10 @@ in buildGoPackage rec { inherit rubyEnv; }; - subPackages = [ "." ]; - - buildInputs = [ rubyEnv.wrappedRuby ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ rubyEnv.wrappedRuby libgit2 ]; + goDeps = ./deps.nix; + preBuild = "rm -r go/src/gitlab.com/gitlab-org/labkit/vendor"; postInstall = '' mkdir -p $ruby @@ -54,7 +55,7 @@ in buildGoPackage rec { meta = with stdenv.lib; { homepage = http://www.gitlab.com/; platforms = platforms.unix; - maintainers = with maintainers; [ roblabla ]; + maintainers = with maintainers; [ roblabla globin fpletz ]; license = licenses.mit; }; } diff --git a/pkgs/applications/version-management/gitlab/gitaly/deps.nix b/pkgs/applications/version-management/gitlab/gitaly/deps.nix new file mode 100644 index 00000000000..9bff45f6dc8 --- /dev/null +++ b/pkgs/applications/version-management/gitlab/gitaly/deps.nix @@ -0,0 +1,687 @@ +# file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) +[ + { + goPackagePath = "cloud.google.com/go"; + fetch = { + type = "git"; + url = "https://code.googlesource.com/gocloud"; + rev = "v0.26.0"; + sha256 = "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1"; + }; + } + { + goPackagePath = "github.com/BurntSushi/toml"; + fetch = { + type = "git"; + url = "https://github.com/BurntSushi/toml"; + rev = "v0.3.1"; + sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"; + }; + } + { + goPackagePath = "github.com/OneOfOne/xxhash"; + fetch = { + type = "git"; + url = "https://github.com/OneOfOne/xxhash"; + rev = "v1.2.2"; + sha256 = "1mjfhrwhvxa48rycjnqpqzm521i38h1hdyz6pdwmhd7xb8j6gwi6"; + }; + } + { + goPackagePath = "github.com/alecthomas/template"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/template"; + rev = "a0175ee3bccc"; + sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; + }; + } + { + goPackagePath = "github.com/alecthomas/units"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/units"; + rev = "2efee857e7cf"; + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; + }; + } + { + goPackagePath = "github.com/beorn7/perks"; + fetch = { + type = "git"; + url = "https://github.com/beorn7/perks"; + rev = "v1.0.0"; + sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x"; + }; + } + { + goPackagePath = "github.com/certifi/gocertifi"; + fetch = { + type = "git"; + url = "https://github.com/certifi/gocertifi"; + rev = "ee1a9a0726d2"; + sha256 = "08l6lqaw83pva6fa0aafmhmy1mhb145av21772zfh3ij809a37i4"; + }; + } + { + goPackagePath = "github.com/cespare/xxhash"; + fetch = { + type = "git"; + url = "https://github.com/cespare/xxhash"; + rev = "v1.1.0"; + sha256 = "1qyzlcdcayavfazvi03izx83fvip8h36kis44zr2sg7xf6sx6l4x"; + }; + } + { + goPackagePath = "github.com/client9/misspell"; + fetch = { + type = "git"; + url = "https://github.com/client9/misspell"; + rev = "v0.3.4"; + sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"; + }; + } + { + goPackagePath = "github.com/cloudflare/tableflip"; + fetch = { + type = "git"; + url = "https://github.com/cloudflare/tableflip"; + rev = "8392f1641731"; + sha256 = "0by5hk8s0bhhl3kiw658p5g53zvc61k4q2wxnh1w64p5ghd1rfn8"; + }; + } + { + goPackagePath = "github.com/codahale/hdrhistogram"; + fetch = { + type = "git"; + url = "https://github.com/codahale/hdrhistogram"; + rev = "3a0bb77429bd"; + sha256 = "1zampgfjbxy192cbwdi7g86l1idxaam96d834wncnpfdwgh5kl57"; + }; + } + { + goPackagePath = "github.com/davecgh/go-spew"; + fetch = { + type = "git"; + url = "https://github.com/davecgh/go-spew"; + rev = "v1.1.1"; + sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; + }; + } + { + goPackagePath = "github.com/dgryski/go-sip13"; + fetch = { + type = "git"; + url = "https://github.com/dgryski/go-sip13"; + rev = "e10d5fee7954"; + sha256 = "15fyibfas209ljz3f7g07kdmfbl3hhyd9n5n7aq5n5p9m5mn41d6"; + }; + } + { + goPackagePath = "github.com/fsnotify/fsnotify"; + fetch = { + type = "git"; + url = "https://github.com/fsnotify/fsnotify"; + rev = "v1.4.7"; + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; + }; + } + { + goPackagePath = "github.com/getsentry/raven-go"; + fetch = { + type = "git"; + url = "https://github.com/getsentry/raven-go"; + rev = "v0.1.2"; + sha256 = "1dl80kar4lzdcfl3w6jssi1ld6bv0rmx6sp6bz6rzysfr9ilm02z"; + }; + } + { + goPackagePath = "github.com/go-kit/kit"; + fetch = { + type = "git"; + url = "https://github.com/go-kit/kit"; + rev = "v0.8.0"; + sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0"; + }; + } + { + goPackagePath = "github.com/go-logfmt/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/go-logfmt/logfmt"; + rev = "v0.4.0"; + sha256 = "06smxc112xmixz78nyvk3b2hmc7wasf2sl5vxj1xz62kqcq9lzm9"; + }; + } + { + goPackagePath = "github.com/go-stack/stack"; + fetch = { + type = "git"; + url = "https://github.com/go-stack/stack"; + rev = "v1.8.0"; + sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"; + }; + } + { + goPackagePath = "github.com/gogo/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/gogo/protobuf"; + rev = "v1.1.1"; + sha256 = "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2"; + }; + } + { + goPackagePath = "github.com/golang/glog"; + fetch = { + type = "git"; + url = "https://github.com/golang/glog"; + rev = "23def4e6c14b"; + sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; + }; + } + { + goPackagePath = "github.com/golang/lint"; + fetch = { + type = "git"; + url = "https://github.com/golang/lint"; + rev = "06c8688daad7"; + sha256 = "0xi94dwvz50a66bq1hp9fyqkym5mcpdxdb1hrfvicldgjf37lc47"; + }; + } + { + goPackagePath = "github.com/golang/mock"; + fetch = { + type = "git"; + url = "https://github.com/golang/mock"; + rev = "v1.1.1"; + sha256 = "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy"; + }; + } + { + goPackagePath = "github.com/golang/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/golang/protobuf"; + rev = "v1.3.1"; + sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"; + }; + } + { + goPackagePath = "github.com/grpc-ecosystem/go-grpc-middleware"; + fetch = { + type = "git"; + url = "https://github.com/grpc-ecosystem/go-grpc-middleware"; + rev = "v1.0.0"; + sha256 = "0lwgxih021xfhfb1xb9la5f98bpgpaiz63sbllx77qwwl2rmhrsp"; + }; + } + { + goPackagePath = "github.com/grpc-ecosystem/go-grpc-prometheus"; + fetch = { + type = "git"; + url = "https://github.com/grpc-ecosystem/go-grpc-prometheus"; + rev = "v1.2.0"; + sha256 = "1lzk54h7np32b3acidg1ggbn8ppbnns0m71gcg9d1qkkdh8zrijl"; + }; + } + { + goPackagePath = "github.com/hpcloud/tail"; + fetch = { + type = "git"; + url = "https://github.com/hpcloud/tail"; + rev = "v1.0.0"; + sha256 = "1njpzc0pi1acg5zx9y6vj9xi6ksbsc5d387rd6904hy6rh2m6kn0"; + }; + } + { + goPackagePath = "github.com/julienschmidt/httprouter"; + fetch = { + type = "git"; + url = "https://github.com/julienschmidt/httprouter"; + rev = "v1.2.0"; + sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666"; + }; + } + { + goPackagePath = "github.com/kelseyhightower/envconfig"; + fetch = { + type = "git"; + url = "https://github.com/kelseyhightower/envconfig"; + rev = "v1.3.0"; + sha256 = "1zcq480ig7wbg4378qcfxznp2gzqmk7x6rbxizflvg9v2f376vrw"; + }; + } + { + goPackagePath = "github.com/kisielk/gotool"; + fetch = { + type = "git"; + url = "https://github.com/kisielk/gotool"; + rev = "v1.0.0"; + sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn"; + }; + } + { + goPackagePath = "github.com/konsorten/go-windows-terminal-sequences"; + fetch = { + type = "git"; + url = "https://github.com/konsorten/go-windows-terminal-sequences"; + rev = "v1.0.1"; + sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip"; + }; + } + { + goPackagePath = "github.com/kr/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/kr/logfmt"; + rev = "b84e30acd515"; + sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9"; + }; + } + { + goPackagePath = "github.com/libgit2/git2go"; + fetch = { + type = "git"; + url = "https://github.com/libgit2/git2go"; + rev = "ecaeb7a21d47"; + sha256 = "1sh30jnzjag7ddhr4if65j8vpcpj4rw93sf1g033jf91flrzyx23"; + }; + } + { + goPackagePath = "github.com/lightstep/lightstep-tracer-go"; + fetch = { + type = "git"; + url = "https://github.com/lightstep/lightstep-tracer-go"; + rev = "v0.15.6"; + sha256 = "0g5bh3xdrsz30npk79h5ia340xyw97424xfrfzv3acqw3qg2sqn8"; + }; + } + { + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; + fetch = { + type = "git"; + url = "https://github.com/matttproud/golang_protobuf_extensions"; + rev = "v1.0.1"; + sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; + }; + } + { + goPackagePath = "github.com/mwitkow/go-conntrack"; + fetch = { + type = "git"; + url = "https://github.com/mwitkow/go-conntrack"; + rev = "cc309e4a2223"; + sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf"; + }; + } + { + goPackagePath = "github.com/oklog/ulid"; + fetch = { + type = "git"; + url = "https://github.com/oklog/ulid"; + rev = "v1.3.1"; + sha256 = "0hybwyid820n80axrk863k2py93hbqlq6hxhf84ppmz0qd0ys0gq"; + }; + } + { + goPackagePath = "github.com/onsi/ginkgo"; + fetch = { + type = "git"; + url = "https://github.com/onsi/ginkgo"; + rev = "v1.7.0"; + sha256 = "14wgpdrvpc35rdz3859bz53sc1g4vpr1fysy15wy3ff9gmqs14yg"; + }; + } + { + goPackagePath = "github.com/onsi/gomega"; + fetch = { + type = "git"; + url = "https://github.com/onsi/gomega"; + rev = "v1.4.3"; + sha256 = "1c8rqg5i2hz3snmq7s41yar1zjnzilb0fyiyhkg83v97afcfx79v"; + }; + } + { + goPackagePath = "github.com/opentracing/opentracing-go"; + fetch = { + type = "git"; + url = "https://github.com/opentracing/opentracing-go"; + rev = "v1.0.2"; + sha256 = "0i0ghg94dg8lk05mw5n23983wq04yjvkjmdkc9z5y1f3508938h9"; + }; + } + { + goPackagePath = "github.com/philhofer/fwd"; + fetch = { + type = "git"; + url = "https://github.com/philhofer/fwd"; + rev = "v1.0.0"; + sha256 = "1pg84khadh79v42y8sjsdgfb54vw2kzv7hpapxkifgj0yvcp30g2"; + }; + } + { + goPackagePath = "github.com/pkg/errors"; + fetch = { + type = "git"; + url = "https://github.com/pkg/errors"; + rev = "v0.8.0"; + sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; + }; + } + { + goPackagePath = "github.com/pmezard/go-difflib"; + fetch = { + type = "git"; + url = "https://github.com/pmezard/go-difflib"; + rev = "v1.0.0"; + sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; + }; + } + { + goPackagePath = "github.com/prometheus/client_golang"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_golang"; + rev = "v0.9.3"; + sha256 = "1608rm1y2p3iv8k2x7wyc6hshvpbfkv2k77hy0x870syms1g3g1p"; + }; + } + { + goPackagePath = "github.com/prometheus/client_model"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_model"; + rev = "fd36f4220a90"; + sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5"; + }; + } + { + goPackagePath = "github.com/prometheus/common"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/common"; + rev = "v0.4.0"; + sha256 = "00008pczafy982m59n1j31pnp41f4grbc2c40jccp52xg3m5klmr"; + }; + } + { + goPackagePath = "github.com/prometheus/procfs"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/procfs"; + rev = "5867b95ac084"; + sha256 = "1rahdk62ajj4zpfb3mgzjqip773la9fb0m87m7s9a0b39l3fmzvr"; + }; + } + { + goPackagePath = "github.com/prometheus/tsdb"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/tsdb"; + rev = "v0.7.1"; + sha256 = "1c1da8i5byvhh4fp3vqjfb65aaksjskn3ggb8wg9hcfzjrhgpz04"; + }; + } + { + goPackagePath = "github.com/sirupsen/logrus"; + fetch = { + type = "git"; + url = "https://github.com/sirupsen/logrus"; + rev = "v1.2.0"; + sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg"; + }; + } + { + goPackagePath = "github.com/spaolacci/murmur3"; + fetch = { + type = "git"; + url = "https://github.com/spaolacci/murmur3"; + rev = "f09979ecbc72"; + sha256 = "1lv3zyz3jy2d76bhvvs8svygx66606iygdvwy5cwc0p5z8yghq25"; + }; + } + { + goPackagePath = "github.com/stretchr/objx"; + fetch = { + type = "git"; + url = "https://github.com/stretchr/objx"; + rev = "v0.1.1"; + sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; + }; + } + { + goPackagePath = "github.com/stretchr/testify"; + fetch = { + type = "git"; + url = "https://github.com/stretchr/testify"; + rev = "v1.2.2"; + sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; + }; + } + { + goPackagePath = "github.com/tinylib/msgp"; + fetch = { + type = "git"; + url = "https://github.com/tinylib/msgp"; + rev = "v1.1.0"; + sha256 = "08ha23sn14071ywrgxlyj7r523vzdwx1i83dcp1mqa830glgqaff"; + }; + } + { + goPackagePath = "github.com/uber-go/atomic"; + fetch = { + type = "git"; + url = "https://github.com/uber-go/atomic"; + rev = "v1.3.2"; + sha256 = "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6"; + }; + } + { + goPackagePath = "github.com/uber/jaeger-client-go"; + fetch = { + type = "git"; + url = "https://github.com/uber/jaeger-client-go"; + rev = "v2.15.0"; + sha256 = "1qvqkf20dp5fyfg7qd3jc29q1yv0qjz2mkxa02j1v3n8ka134rff"; + }; + } + { + goPackagePath = "github.com/uber/jaeger-lib"; + fetch = { + type = "git"; + url = "https://github.com/uber/jaeger-lib"; + rev = "v1.5.0"; + sha256 = "113fwpn80ylx970w8h7nfqnhh18dpx1jadbk7rbr8k68q4di4y0q"; + }; + } + { + goPackagePath = "gitlab.com/gitlab-org/gitaly-proto"; + fetch = { + type = "git"; + url = "https://gitlab.com/gitlab-org/gitaly-proto.git"; + rev = "v1.32.0"; + sha256 = "16ykk5gv1gxhhg7xfr5ldgzq8vmlzjsn58fs0bmdc4w35lbnwi4v"; + }; + } + { + goPackagePath = "gitlab.com/gitlab-org/labkit"; + fetch = { + type = "git"; + url = "https://gitlab.com/gitlab-org/labkit.git"; + rev = "0c3fc7cdd57c"; + sha256 = "0fpn37v7dhhdgd63v4mq9cna9wdzrsfams13qmjmps3xpdw2wr9i"; + }; + } + { + goPackagePath = "go.uber.org/atomic"; + fetch = { + type = "git"; + url = "https://github.com/uber-go/atomic"; + rev = "v1.3.2"; + sha256 = "11pzvjys5ddjjgrv94pgk9pnip9yyb54z7idf33zk7p7xylpnsv6"; + }; + } + { + goPackagePath = "golang.org/x/crypto"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/crypto"; + rev = "c2843e01d9a2"; + sha256 = "01xgxbj5r79nmisdvpq48zfy8pzaaj90bn6ngd4nf33j9ar1dp8r"; + }; + } + { + goPackagePath = "golang.org/x/lint"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/lint"; + rev = "06c8688daad7"; + sha256 = "0xi94dwvz50a66bq1hp9fyqkym5mcpdxdb1hrfvicldgjf37lc47"; + }; + } + { + goPackagePath = "golang.org/x/net"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/net"; + rev = "d8887717615a"; + sha256 = "1wfm6ngxjyj7v5a2dqib6lw8bb2rdnf1kl48diykxjrsddn0s163"; + }; + } + { + goPackagePath = "golang.org/x/oauth2"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/oauth2"; + rev = "d2e6202438be"; + sha256 = "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7"; + }; + } + { + goPackagePath = "golang.org/x/sync"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sync"; + rev = "37e7f081c4d4"; + sha256 = "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm"; + }; + } + { + goPackagePath = "golang.org/x/sys"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sys"; + rev = "d0b11bdaac8a"; + sha256 = "18yfsmw622l7gc5sqriv5qmck6903vvhivpzp8i3xfy3z33dybdl"; + }; + } + { + goPackagePath = "golang.org/x/text"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/text"; + rev = "v0.3.0"; + sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19"; + }; + } + { + goPackagePath = "golang.org/x/tools"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/tools"; + rev = "6cd1fcedba52"; + sha256 = "00hl0vkmy8impsnmc2dmm55sdhia95k0kqcrjbdpynryn1lamn5d"; + }; + } + { + goPackagePath = "google.golang.org/appengine"; + fetch = { + type = "git"; + url = "https://github.com/golang/appengine"; + rev = "v1.1.0"; + sha256 = "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x"; + }; + } + { + goPackagePath = "google.golang.org/genproto"; + fetch = { + type = "git"; + url = "https://github.com/google/go-genproto"; + rev = "bd91e49a0898"; + sha256 = "1f5q04h03q6fksbfkhz13ai5849rkkb8xrmmi7cxs4lzsi6ixkg8"; + }; + } + { + goPackagePath = "google.golang.org/grpc"; + fetch = { + type = "git"; + url = "https://github.com/grpc/grpc-go"; + rev = "v1.16.0"; + sha256 = "0a9xl6c5j7lvsb4q6ry5p892rjm86p47d4f8xrf0r8lxblf79qbg"; + }; + } + { + goPackagePath = "gopkg.in/DataDog/dd-trace-go.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/DataDog/dd-trace-go.v1"; + rev = "v1.7.0"; + sha256 = "0j45skiiayfsaw8id4g20k51zfr0raj47a03q2icka5xrh3qj6yq"; + }; + } + { + goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; + fetch = { + type = "git"; + url = "https://gopkg.in/alecthomas/kingpin.v2"; + rev = "v2.2.6"; + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; + }; + } + { + goPackagePath = "gopkg.in/check.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/check.v1"; + rev = "20d25e280405"; + sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"; + }; + } + { + goPackagePath = "gopkg.in/fsnotify.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/fsnotify.v1"; + rev = "v1.4.7"; + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; + }; + } + { + goPackagePath = "gopkg.in/tomb.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/tomb.v1"; + rev = "dd632973f1e7"; + sha256 = "1lqmq1ag7s4b3gc3ddvr792c5xb5k6sfn0cchr3i2s7f1c231zjv"; + }; + } + { + goPackagePath = "gopkg.in/yaml.v2"; + fetch = { + type = "git"; + url = "https://gopkg.in/yaml.v2"; + rev = "v2.2.2"; + sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"; + }; + } + { + goPackagePath = "honnef.co/go/tools"; + fetch = { + type = "git"; + url = "https://github.com/dominikh/go-tools"; + rev = "88497007e858"; + sha256 = "0rinkyx3r2bq45mgcasnn5jb07cwbv3p3s2wwcrzxsarsj6wa5lc"; + }; + } +] From 722ee7756b9b0eb807fec9e7c48074c381982c13 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 01:18:11 +0200 Subject: [PATCH 0314/1611] gitlab: add gitaly `go mod` handling for the updater --- .../version-management/gitlab/update.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/update.py b/pkgs/applications/version-management/gitlab/update.py index ae1f0ad4c50..650bd73aa84 100755 --- a/pkgs/applications/version-management/gitlab/update.py +++ b/pkgs/applications/version-management/gitlab/update.py @@ -1,5 +1,5 @@ #!/usr/bin/env nix-shell -#! nix-shell -i python3 -p bundix common-updater-scripts nix nix-prefetch-git python3 python3Packages.requests python3Packages.lxml python3Packages.click python3Packages.click-log +#! nix-shell -i python3 -p bundix common-updater-scripts nix nix-prefetch-git python3 python3Packages.requests python3Packages.lxml python3Packages.click python3Packages.click-log vgo2nix import click import click_log @@ -194,13 +194,21 @@ def update_gitaly(): data = _get_data_json() gitaly_server_version = data['ce']['passthru']['GITALY_SERVER_VERSION'] r = GitLabRepo('gitlab-org', 'gitaly') - rubyenv_dir = pathlib.Path(__file__).parent / 'gitaly' + gitaly_dir = pathlib.Path(__file__).parent / 'gitaly' for fn in ['Gemfile.lock', 'Gemfile']: - with open(rubyenv_dir / fn, 'w') as f: + with open(gitaly_dir / fn, 'w') as f: f.write(r.get_file(f"ruby/{fn}", f"v{gitaly_server_version}")) - subprocess.check_output(['bundix'], cwd=rubyenv_dir) + for fn in ['go.mod', 'go.sum']: + with open(gitaly_dir / fn, 'w') as f: + f.write(r.get_file(fn, f"v{gitaly_server_version}")) + + subprocess.check_output(['bundix'], cwd=gitaly_dir) + subprocess.check_output(['vgo2nix'], cwd=gitaly_dir) + + for fn in ['go.mod', 'go.sum']: + os.unlink(gitaly_dir / fn) # currently broken, as `gitaly.meta.position` returns # pkgs/development/go-modules/generic/default.nix # so update-source-version doesn't know where to update hashes From 55896125990cf7d29484a2bbb6495b41ca1e25cf Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 01:18:42 +0200 Subject: [PATCH 0315/1611] gitlab: add all necessary gem groups --- pkgs/applications/version-management/gitlab/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gitlab/default.nix b/pkgs/applications/version-management/gitlab/default.nix index 53f53e47164..a386d3e6322 100644 --- a/pkgs/applications/version-management/gitlab/default.nix +++ b/pkgs/applications/version-management/gitlab/default.nix @@ -18,7 +18,9 @@ let dontBuild = false; }; }; - groups = [ "default" "unicorn" "ed25519" "metrics" ]; + groups = [ + "default" "unicorn" "ed25519" "metrics" "development" "puma" "test" + ]; # N.B. omniauth_oauth2_generic and apollo_upload_server both provide a # `console` executable. ignoreCollisions = true; From 783c2f61066ff25718df39f4b5d4ef1193ed86d9 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 01:19:07 +0200 Subject: [PATCH 0316/1611] gitlab module: clean up permission handling This is WIP to get rid of PermissionsStartOnly=true --- nixos/modules/services/misc/gitlab.nix | 77 +++++++++++--------------- 1 file changed, 31 insertions(+), 46 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 71277b48ecd..488d94c5c0f 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -503,22 +503,42 @@ in { "d /run/gitlab 0755 ${cfg.user} ${cfg.group} -" "d ${gitlabEnv.HOME} 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.backupPath} 0750 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath} 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/builds 0750 ${cfg.user} ${cfg.group} -" - "d ${cfg.statePath}/config 0750 ${cfg.user} ${cfg.group} -" - "d ${cfg.statePath}/db 0750 ${cfg.user} ${cfg.group} -" + "D ${cfg.statePath}/config 0750 ${cfg.user} ${cfg.group} -" + "D ${cfg.statePath}/config/initializers 0750 ${cfg.user} ${cfg.group} -" + "D ${cfg.statePath}/db 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/log 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/repositories 2770 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/shell 0750 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath}/tmp 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/tmp/pids 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/tmp/sockets 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/uploads 0700 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath}/custom_hooks 0700 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/custom_hooks/pre-receive.d 0700 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/custom_hooks/post-receive.d 0700 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/custom_hooks/update.d 0700 ${cfg.user} ${cfg.group} -" + "d ${gitlabConfig.production.shared.path} 0750 ${cfg.user} ${cfg.group} -" "d ${gitlabConfig.production.shared.path}/artifacts 0750 ${cfg.user} ${cfg.group} -" "d ${gitlabConfig.production.shared.path}/lfs-objects 0750 ${cfg.user} ${cfg.group} -" "d ${gitlabConfig.production.shared.path}/pages 0750 ${cfg.user} ${cfg.group} -" - ]; + "L+ ${cfg.statePath}/lib - - - - ${cfg.packages.gitlab}/share/gitlab/lib" + "L+ /run/gitlab/config - - - - ${cfg.statePath}/config" + "L+ /run/gitlab/log - - - - ${cfg.statePath}/log" + "L+ /run/gitlab/tmp - - - - ${cfg.statePath}/tmp" + "L+ /run/gitlab/uploads - - - - ${cfg.statePath}/uploads" + + "L+ /run/gitlab/shell-config.yml - - - - ${pkgs.writeText "config.yml" (builtins.toJSON gitlabShellConfig)}" + + "L+ ${cfg.statePath}/config/gitlab.yml - - - - ${pkgs.writeText "gitlab.yml" (builtins.toJSON gitlabConfig)}" + "L+ ${cfg.statePath}/config/database.yml - - - - ${pkgs.writeText "database.yml" (builtins.toJSON databaseConfig)}" + "L+ ${cfg.statePath}/config/secrets.yml - - - - ${pkgs.writeText "secrets.yml" (builtins.toJSON secretsConfig)}" + "L+ ${cfg.statePath}/config/unicorn.rb - - - - ${./defaultUnicornConfig.rb}" + + "L+ ${cfg.statePath}/config/initializers/extra-gitlab.rb - - - - ${extraGitlabRb}" + ] ++ optional cfg.smtp.enable + "L+ ${cfg.statePath}/config/initializers/smtp_settings.rb - - - - ${smtpSettings}" ; systemd.services.gitlab-sidekiq = { after = [ "network.target" "redis.service" "gitlab.service" ]; @@ -609,40 +629,14 @@ in { gnupg ]; preStart = '' - cp -rf ${cfg.packages.gitlab}/share/gitlab/db/* ${cfg.statePath}/db - rm -rf ${cfg.statePath}/config - mkdir ${cfg.statePath}/config - if [ -e ${cfg.statePath}/lib ]; then - rm ${cfg.statePath}/lib - fi + ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -f ${cfg.packages.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION + ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config + ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf ${cfg.packages.gitlab}/share/gitlab/db/* ${cfg.statePath}/db + ${pkgs.sudo}/bin/sudo -u ${cfg.user} chmod u+w ${cfg.statePath}/db/* - ln -sf ${cfg.packages.gitlab}/share/gitlab/lib ${cfg.statePath}/lib - [ -L /run/gitlab/config ] || ln -sf ${cfg.statePath}/config /run/gitlab/config - [ -L /run/gitlab/log ] || ln -sf ${cfg.statePath}/log /run/gitlab/log - [ -L /run/gitlab/tmp ] || ln -sf ${cfg.statePath}/tmp /run/gitlab/tmp - [ -L /run/gitlab/uploads ] || ln -sf ${cfg.statePath}/uploads /run/gitlab/uploads - cp ${cfg.packages.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION - cp -rf ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config - ln -sf ${extraGitlabRb} ${cfg.statePath}/config/initializers/extra-gitlab.rb - ${optionalString cfg.smtp.enable '' - ln -sf ${smtpSettings} ${cfg.statePath}/config/initializers/smtp_settings.rb - ''} ${pkgs.openssl}/bin/openssl rand -hex 32 > ${cfg.statePath}/config/gitlab_shell_secret - # JSON is a subset of YAML - ln -sf ${pkgs.writeText "gitlab.yml" (builtins.toJSON gitlabConfig)} ${cfg.statePath}/config/gitlab.yml - ln -sf ${pkgs.writeText "database.yml" (builtins.toJSON databaseConfig)} ${cfg.statePath}/config/database.yml - ln -sf ${pkgs.writeText "secrets.yml" (builtins.toJSON secretsConfig)} ${cfg.statePath}/config/secrets.yml - ln -sf ${./defaultUnicornConfig.rb} ${cfg.statePath}/config/unicorn.rb - - # Install the shell required to push repositories - ln -sf ${pkgs.writeText "config.yml" (builtins.toJSON gitlabShellConfig)} /run/gitlab/shell-config.yml - [ -L ${cfg.statePath}/shell/hooks ] || ln -sf ${cfg.packages.gitlab-shell}/hooks ${cfg.statePath}/shell/hooks - ${cfg.packages.gitlab-shell}/bin/install - - chown -R ${cfg.user}:${cfg.group} ${cfg.statePath}/ - chmod -R ug+rwX,o-rwx+X ${cfg.statePath}/ - chown -R ${cfg.user}:${cfg.group} /run/gitlab + ${pkgs.sudo}/bin/sudo -u ${cfg.user} ${cfg.packages.gitlab-shell}/bin/install if ! test -e "${cfg.statePath}/db-created"; then if [ "${cfg.databaseHost}" = "127.0.0.1" ]; then @@ -655,7 +649,7 @@ in { ${pkgs.sudo}/bin/sudo -u ${cfg.user} -H ${gitlab-rake}/bin/gitlab-rake db:schema:load - touch "${cfg.statePath}/db-created" + ${pkgs.sudo}/bin/sudo -u ${cfg.user} touch "${cfg.statePath}/db-created" fi # Always do the db migrations just to be sure the database is up-to-date @@ -664,22 +658,13 @@ in { if ! test -e "${cfg.statePath}/db-seeded"; then ${pkgs.sudo}/bin/sudo -u ${cfg.user} ${gitlab-rake}/bin/gitlab-rake db:seed_fu \ GITLAB_ROOT_PASSWORD='${cfg.initialRootPassword}' GITLAB_ROOT_EMAIL='${cfg.initialRootEmail}' - touch "${cfg.statePath}/db-seeded" + ${pkgs.sudo}/bin/sudo -u ${cfg.user} touch "${cfg.statePath}/db-seeded" fi - # The gitlab:shell:create_hooks task seems broken for fixing links - # so we instead delete all the hooks and create them anew + # We remove potentially broken links to old gitlab-shell versions rm -f ${cfg.statePath}/repositories/**/*.git/hooks - ${pkgs.sudo}/bin/sudo -u ${cfg.user} -H ${gitlab-rake}/bin/gitlab-rake gitlab:shell:create_hooks ${pkgs.sudo}/bin/sudo -u ${cfg.user} -H ${pkgs.git}/bin/git config --global core.autocrlf "input" - - # Change permissions in the last step because some of the - # intermediary scripts like to create directories as root. - chmod -R u+rwX,go-rwx+X ${gitlabEnv.HOME} - chmod -R ug+rwX,o-rwx ${cfg.statePath}/repositories - chmod -R ug-s ${cfg.statePath}/repositories - find ${cfg.statePath}/repositories -type d -print0 | xargs -0 chmod g+s ''; serviceConfig = { From 950ebaf09edaca619cf11427748e28cb3b769faf Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 16:19:32 -0700 Subject: [PATCH 0317/1611] mujs: 1.0.5 -> 1.0.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mujs/versions --- pkgs/development/interpreters/mujs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix index f071aab94c7..ceea3932063 100644 --- a/pkgs/development/interpreters/mujs/default.nix +++ b/pkgs/development/interpreters/mujs/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "mujs-${version}"; - version = "1.0.5"; + version = "1.0.6"; src = fetchurl { url = "https://mujs.com/downloads/mujs-${version}.tar.xz"; - sha256 = "02cqrfnww2s3ylcvqin1951f2c5nzpby8gxb207p2hbrivbg8f0l"; + sha256 = "1q9w2dcspfp580pzx7sw7x9gbn8j0ak6dvj75wd1ml3f3q3i43df"; }; buildInputs = [ readline ]; From 78dd86086230c97c51d13a72326ba40ee4212f46 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 17:59:36 -0700 Subject: [PATCH 0318/1611] multimon-ng: 1.1.7 -> 1.1.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/multimon-ng/versions --- pkgs/applications/radio/multimon-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/radio/multimon-ng/default.nix b/pkgs/applications/radio/multimon-ng/default.nix index b58872975ae..13755b88c65 100644 --- a/pkgs/applications/radio/multimon-ng/default.nix +++ b/pkgs/applications/radio/multimon-ng/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, qt4, qmake4Hook, libpulseaudio }: let - version = "1.1.7"; + version = "1.1.8"; in stdenv.mkDerivation { name = "multimon-ng-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation { owner = "EliasOenal"; repo = "multimon-ng"; rev = "${version}"; - sha256 = "11wfk8jw86z44y0ji4jr4s8ig3zwxp6g9h3sl81pvk6l3ipqqbgi"; + sha256 = "1973xfyvzl1viz19zr83cgqlx5laxbjrca35rqabn6dlb6xb5xk8"; }; buildInputs = [ qt4 libpulseaudio ]; From b8a4f1eb97fd2c5689d60e63c3ed40ea3636857d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 18:27:29 -0700 Subject: [PATCH 0319/1611] multipath-tools: 0.8.1 -> 0.8.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/multipath-tools/versions --- pkgs/os-specific/linux/multipath-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/multipath-tools/default.nix b/pkgs/os-specific/linux/multipath-tools/default.nix index 0e90a081476..078f894f73e 100644 --- a/pkgs/os-specific/linux/multipath-tools/default.nix +++ b/pkgs/os-specific/linux/multipath-tools/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "multipath-tools-${version}"; - version = "0.8.1"; + version = "0.8.2"; src = fetchurl { name = "${name}.tar.gz"; url = "https://git.opensvc.com/gitweb.cgi?p=multipath-tools/.git;a=snapshot;h=refs/tags/${version};sf=tgz"; - sha256 = "0669zl4dpai63dl04lf8vpwnpsff6qf19fifxfc4frawnh699k95"; + sha256 = "0x6cjlb9mjrmpaqk5v6v47qz6n9zyqmw13i7pq5x6ppwyqdxhn5s"; }; postPatch = '' From 9f77b4a59955b94d487787b69cd284ea55514725 Mon Sep 17 00:00:00 2001 From: Ben Gamari Date: Mon, 15 Jul 2019 21:29:57 -0400 Subject: [PATCH 0320/1611] gitaly: Fix IFD import --- pkgs/applications/version-management/gitlab/gitaly/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/gitlab/gitaly/default.nix b/pkgs/applications/version-management/gitlab/gitaly/default.nix index a30cc0b0384..a946c7fa7ca 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/default.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/default.nix @@ -6,7 +6,7 @@ let inherit ruby; gemdir = ./.; gemset = - let x = import "${gemdir}/gemset.nix"; + let x = import (gemdir + "/gemset.nix"); in x // { # grpc expects the AR environment variable to contain `ar rpc`. See the # discussion in nixpkgs #63056. From 8ec0396b44fd3aaad16c2b2e47d7e1f8a0560983 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 23:06:15 -0700 Subject: [PATCH 0321/1611] commonsLang: 3.6 -> 3.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/commons-lang/versions --- pkgs/development/libraries/java/commons/lang/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/java/commons/lang/default.nix b/pkgs/development/libraries/java/commons/lang/default.nix index e46f22fadfb..322cb486e93 100644 --- a/pkgs/development/libraries/java/commons/lang/default.nix +++ b/pkgs/development/libraries/java/commons/lang/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "3.6"; + version = "3.9"; name = "commons-lang-${version}"; src = fetchurl { url = "mirror://apache/commons/lang/binaries/commons-lang3-${version}-bin.tar.gz"; - sha256 = "0r1wdjw48k2mk2wzyq5c3cx2zmark4q9psw52ma6v2i0sh6a9il0"; + sha256 = "0l0q1hnicvpbjmxl81ig3rwc212x5sdfnlg3cniwbmnx8fxjgbki"; }; installPhase = '' From 3469c206f2b895ff7f6cacd7d3d08cf0b70c41d3 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 03:42:45 +0200 Subject: [PATCH 0322/1611] gitlab-shell: better gitlab_shell_secret location So this won't be cleaned up by removing config/* --- nixos/modules/services/misc/gitlab.nix | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 488d94c5c0f..4810e993ba2 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -52,7 +52,7 @@ let gitlab_url = "http+unix://${pathUrlQuote gitlabSocket}"; http_settings.self_signed_cert = false; repos_path = "${cfg.statePath}/repositories"; - secret_file = "${cfg.statePath}/config/gitlab_shell_secret"; + secret_file = "${cfg.statePath}/gitlab_shell_secret"; log_file = "${cfg.statePath}/log/gitlab-shell.log"; custom_hooks_dir = "${cfg.statePath}/custom_hooks"; redis = { @@ -109,7 +109,7 @@ let gitlab_shell = { path = "${cfg.packages.gitlab-shell}"; hooks_path = "${cfg.statePath}/shell/hooks"; - secret_file = "${cfg.statePath}/config/gitlab_shell_secret"; + secret_file = "${cfg.statePath}/gitlab_shell_secret"; upload_pack = true; receive_pack = true; }; @@ -132,14 +132,9 @@ let HOME = "${cfg.statePath}/home"; UNICORN_PATH = "${cfg.statePath}/"; GITLAB_PATH = "${cfg.packages.gitlab}/share/gitlab/"; - GITLAB_STATE_PATH = cfg.statePath; - GITLAB_UPLOADS_PATH = "${cfg.statePath}/uploads"; SCHEMA = "${cfg.statePath}/db/schema.rb"; + GITLAB_UPLOADS_PATH = "${cfg.statePath}/uploads"; GITLAB_LOG_PATH = "${cfg.statePath}/log"; - GITLAB_SHELL_PATH = "${cfg.packages.gitlab-shell}"; - GITLAB_SHELL_CONFIG_PATH = "${cfg.statePath}/shell/config.yml"; - GITLAB_SHELL_SECRET_PATH = "${cfg.statePath}/config/gitlab_shell_secret"; - GITLAB_SHELL_HOOKS_PATH = "${cfg.statePath}/shell/hooks"; GITLAB_REDIS_CONFIG_FILE = pkgs.writeText "redis.yml" (builtins.toJSON redisConfig); prometheus_multiproc_dir = "/run/gitlab"; RAILS_ENV = "production"; @@ -634,7 +629,7 @@ in { ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf ${cfg.packages.gitlab}/share/gitlab/db/* ${cfg.statePath}/db ${pkgs.sudo}/bin/sudo -u ${cfg.user} chmod u+w ${cfg.statePath}/db/* - ${pkgs.openssl}/bin/openssl rand -hex 32 > ${cfg.statePath}/config/gitlab_shell_secret + ${pkgs.openssl}/bin/openssl rand -hex 32 > ${cfg.statePath}/gitlab_shell_secret ${pkgs.sudo}/bin/sudo -u ${cfg.user} ${cfg.packages.gitlab-shell}/bin/install From 52fd300b8cce730e50a8afd9dd3de655df1c8af6 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 03:48:13 +0200 Subject: [PATCH 0323/1611] gitlab module: fix permissions --- nixos/modules/services/misc/gitlab.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 4810e993ba2..a416efc3dde 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -497,12 +497,12 @@ in { systemd.tmpfiles.rules = [ "d /run/gitlab 0755 ${cfg.user} ${cfg.group} -" "d ${gitlabEnv.HOME} 0750 ${cfg.user} ${cfg.group} -" + "z ${gitlabEnv.HOME}/.ssh/authorized_keys 0600 ${cfg.user} ${cfg.group} -" "d ${cfg.backupPath} 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath} 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/builds 0750 ${cfg.user} ${cfg.group} -" - "D ${cfg.statePath}/config 0750 ${cfg.user} ${cfg.group} -" - "D ${cfg.statePath}/config/initializers 0750 ${cfg.user} ${cfg.group} -" - "D ${cfg.statePath}/db 0750 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath}/config 0750 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath}/db 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/log 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/repositories 2770 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/shell 0750 ${cfg.user} ${cfg.group} -" @@ -625,9 +625,9 @@ in { ]; preStart = '' ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -f ${cfg.packages.gitlab}/share/gitlab/VERSION ${cfg.statePath}/VERSION - ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config - ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf ${cfg.packages.gitlab}/share/gitlab/db/* ${cfg.statePath}/db - ${pkgs.sudo}/bin/sudo -u ${cfg.user} chmod u+w ${cfg.statePath}/db/* + ${pkgs.sudo}/bin/sudo -u ${cfg.user} rm -rf ${cfg.statePath}/db/* + ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf --no-preserve=mode ${cfg.packages.gitlab}/share/gitlab/config.dist/* ${cfg.statePath}/config + ${pkgs.sudo}/bin/sudo -u ${cfg.user} cp -rf --no-preserve=mode ${cfg.packages.gitlab}/share/gitlab/db/* ${cfg.statePath}/db ${pkgs.openssl}/bin/openssl rand -hex 32 > ${cfg.statePath}/gitlab_shell_secret From a33ddd7a68d222d1096d390df39068651cc13c79 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 16 Jul 2019 03:48:33 +0200 Subject: [PATCH 0324/1611] gitlab-shell: fix fallback bin searching --- .../gitlab-shell/remove-hardcoded-locations.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch b/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch index 9b5efeaee80..d8337ebb9ea 100644 --- a/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch +++ b/pkgs/applications/version-management/gitlab/gitlab-shell/remove-hardcoded-locations.patch @@ -56,3 +56,16 @@ index 2cb76a8..f59ad5e 100644 end def api +diff --git a/go/internal/command/fallback/fallback.go b/go/internal/command/fallback/fallback.go +index 2cb76a8..f59ad5e 100644 +--- a/go/internal/command/fallback/fallback.go ++++ b/go/internal/command/fallback/fallback.go +@@ -21,7 +21,7 @@ + ) + + func (c *Command) Execute() error { +- rubyCmd := filepath.Join(c.RootDir, "bin", RubyProgram) ++ rubyCmd := filepath.Join("/run/current-system/sw/bin", RubyProgram) + + // Ensure rubyArgs[0] is the full path to gitlab-shell-ruby + rubyArgs := append([]string{rubyCmd}, c.Args[1:]...) From 7c64e057206653ce26e541cd4413917a65a9be4c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 19:13:15 -0700 Subject: [PATCH 0325/1611] oil: 0.6.pre15 -> 0.6.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/oil/versions --- pkgs/shells/oil/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/oil/default.nix b/pkgs/shells/oil/default.nix index d019457ab8a..48c8fd0815e 100644 --- a/pkgs/shells/oil/default.nix +++ b/pkgs/shells/oil/default.nix @@ -1,13 +1,13 @@ { stdenv, lib, fetchurl }: let - version = "0.6.pre15"; + version = "0.6.0"; in stdenv.mkDerivation { name = "oil-${version}"; src = fetchurl { url = "https://www.oilshell.org/download/oil-${version}.tar.xz"; - sha256 = "1azdmicv39rp30msl6fpw6921gi6ib8lxiyc8kanljqk5d7zg4p6"; + sha256 = "1dw4mgnlmaxlfygasfihgvbj32d3m9w6k5j7azb9d9lp35f3l7hl"; }; postPatch = '' From c19bf2e7253e51b0dc2aa10d18714f7691eac9d2 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 19:19:34 -0700 Subject: [PATCH 0326/1611] osl: 1.10.5 -> 1.10.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openshadinglanguage/versions --- pkgs/development/compilers/osl/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/osl/default.nix b/pkgs/development/compilers/osl/default.nix index ff4e387f07e..e4d3398476e 100644 --- a/pkgs/development/compilers/osl/default.nix +++ b/pkgs/development/compilers/osl/default.nix @@ -8,13 +8,13 @@ in clangStdenv.mkDerivation rec { # In theory this could use GCC + Clang rather than just Clang, # but https://github.com/NixOS/nixpkgs/issues/29877 stops this name = "openshadinglanguage-${version}"; - version = "1.10.5"; + version = "1.10.6"; src = fetchFromGitHub { owner = "imageworks"; repo = "OpenShadingLanguage"; - rev = "Release-1.10.5"; - sha256 = "1g7izkjqb5xmp87k2aw0fgkxhcf7b9jn9hi60lwav3yhs50j8qsi"; + rev = "Release-1.10.6"; + sha256 = "1g8g853iq56knlvn1hdsck78by3843vyly9wji5ip41r6i2s0zla"; }; cmakeFlags = [ "-DUSE_BOOST_WAVE=ON" "-DENABLERTTI=ON" ]; From 3e4e93d72837fd2b9bd161532bc24b4ae5d70678 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Tue, 16 Jul 2019 10:35:29 +0800 Subject: [PATCH 0327/1611] youtube-dl: 2019.07.14 -> 2019.07.16 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index b802af902b3..f9b16e5870d 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.07.14"; + version = "2019.07.16"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "000ll06zg0x1mdvpjgfi398xmwvvy845lkf5zwdhkdr1mqfv85a6"; + sha256 = "06qd6z9swx8aw9v7vi85q44hmzxgy8wx18a9ljfhx7l7wjpm99ky"; }; nativeBuildInputs = [ makeWrapper ]; From 50ba9f4385f25875a1e2904fdc0610680e7792ac Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 15 Jul 2019 21:49:38 -0500 Subject: [PATCH 0328/1611] wtf: 0.11.0 -> 0.17.1 --- pkgs/applications/misc/wtf/default.nix | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/wtf/default.nix b/pkgs/applications/misc/wtf/default.nix index 13e4ed81a59..02fc2f3a575 100644 --- a/pkgs/applications/misc/wtf/default.nix +++ b/pkgs/applications/misc/wtf/default.nix @@ -1,26 +1,24 @@ -{ buildGoModule +{ buildGoPackage , fetchFromGitHub , lib }: -buildGoModule rec { +buildGoPackage rec { pname = "wtf"; - version = "0.11.0"; + version = "0.17.1"; src = fetchFromGitHub { owner = "wtfutil"; repo = pname; rev = "v${version}"; - sha256 = "1b671jhf3xaaisgpiad5apmvwkp40qr2hm4n21m0ya7k5ckps09z"; + sha256 = "1qiwl6z5rraspjqry8dwnx8fgl9vv70sn5kgvh8074vl651yjq8c"; }; - modSha256 = "0as736nnx7ci4w9gdp27g55g6dny9bh1fryz3g89gxm2sa2nlb9l"; - - buildFlagsArray = [ "-ldflags=" "-X main.version=${version}" ]; + goPackagePath = "github.com/wtfutil/wtf"; meta = with lib; { description = "The personal information dashboard for your terminal"; - homepage = http://wtfutil.com/; + homepage = "https://wtfutil.com/"; license = licenses.mpl20; maintainers = with maintainers; [ kalbasit ]; platforms = platforms.linux ++ platforms.darwin; From 2af6760541361351fb9a6b6f6a4a44d8367b7605 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Mon, 15 Jul 2019 16:30:16 +1000 Subject: [PATCH 0329/1611] iputils: Completed missing meta.longDescription Provided a more complete and fleshed out meta.longDescription from the project's README --- pkgs/os-specific/linux/iputils/default.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/os-specific/linux/iputils/default.nix b/pkgs/os-specific/linux/iputils/default.nix index 57eb09e40cf..0d27d5d97fc 100644 --- a/pkgs/os-specific/linux/iputils/default.nix +++ b/pkgs/os-specific/linux/iputils/default.nix @@ -59,5 +59,19 @@ in stdenv.mkDerivation { license = with licenses; [ gpl2Plus bsd3 sunAsIsLicense ]; platforms = platforms.linux; maintainers = with maintainers; [ primeos lheckemann ]; + + longDescription = '' + A set of small useful utilities for Linux networking including: + + arping + clockdiff + ninfod + ping + rarpd + rdisc + tftpd + tracepath + traceroute6 + ''; }; } From def82e9685a6b406ffa16351388d6008b17af427 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 20:15:10 -0700 Subject: [PATCH 0330/1611] parlatype: 1.6-beta -> 1.6.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/parlatype/versions --- pkgs/applications/audio/parlatype/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/parlatype/default.nix b/pkgs/applications/audio/parlatype/default.nix index c00a79cb98b..1eb8b416a9a 100644 --- a/pkgs/applications/audio/parlatype/default.nix +++ b/pkgs/applications/audio/parlatype/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "parlatype"; - version = "1.6-beta"; + version = "1.6.1"; src = fetchFromGitHub { owner = "gkarsay"; repo = pname; rev = "v${version}"; - sha256 = "0bi0djic9kf178s7vl3y83v4rzhvynlvyf64n94fy80n2f100dj9"; + sha256 = "0b811lwiylrjirx88gi9az1b1b71j2i5a4a6g56wp9qxln6lzjj2"; }; nativeBuildInputs = [ From b44996fe05f29f35fcff2f7a13b439a9ab365259 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 20:20:04 -0700 Subject: [PATCH 0331/1611] ocserv: 0.12.3 -> 0.12.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocserv/versions --- pkgs/tools/networking/ocserv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/ocserv/default.nix b/pkgs/tools/networking/ocserv/default.nix index 805c4bd5520..094bebe628f 100644 --- a/pkgs/tools/networking/ocserv/default.nix +++ b/pkgs/tools/networking/ocserv/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "ocserv-${version}"; - version = "0.12.3"; + version = "0.12.4"; src = fetchFromGitLab { owner = "openconnect"; repo = "ocserv"; rev = "ocserv_${stdenv.lib.replaceStrings [ "." ] [ "_" ] version}"; - sha256 = "072256099l1c6p7dvvzp0gyafh1zvmmgmnpy0fcmv9sy80qg3p44"; + sha256 = "0lybz93ah6n5b82ywshhmsmf65im8rk6gkxnzxfbxpqxra79j517"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; From 8c52d00e4aab8f98abba88d75eff8e14bd3fd868 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 20:28:11 -0700 Subject: [PATCH 0332/1611] openttd: 1.9.1 -> 1.9.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openttd/versions --- pkgs/games/openttd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/openttd/default.nix b/pkgs/games/openttd/default.nix index 2fd27d2f9d6..91969a335f8 100644 --- a/pkgs/games/openttd/default.nix +++ b/pkgs/games/openttd/default.nix @@ -29,11 +29,11 @@ let in stdenv.mkDerivation rec { name = "openttd-${version}"; - version = "1.9.1"; + version = "1.9.2"; src = fetchurl { url = "https://proxy.binaries.openttd.org/openttd-releases/${version}/${name}-source.tar.xz"; - sha256 = "1r8i6yzgww7aw8iibqagahg1gqgw7305g07agy0dpszzvp0mi0gz"; + sha256 = "0jjnnzp1a2l8j1cla28pr460lx6cg4ql3acqfxhxv8a5a4jqrzzr"; }; nativeBuildInputs = [ pkgconfig makeWrapper ]; From 5aa42409dee76dd6cb030642407ac2606b667f1c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 21:12:51 -0700 Subject: [PATCH 0333/1611] pagemon: 0.01.14 -> 0.01.15 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pagemon/versions --- pkgs/os-specific/linux/pagemon/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/pagemon/default.nix b/pkgs/os-specific/linux/pagemon/default.nix index 9354811fd6f..da2f73ec1b3 100644 --- a/pkgs/os-specific/linux/pagemon/default.nix +++ b/pkgs/os-specific/linux/pagemon/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "pagemon-${version}"; - version = "0.01.14"; + version = "0.01.15"; src = fetchFromGitHub { - sha256 = "1gkyfn1jbrs6w83sxa33csj62a6pyqqsmn92932qf7ns6y00dyk4"; + sha256 = "0vbwpyik26zavpqsanmg8p7snk44nyz66flvkkqmhwx1ada9d181"; rev = "V${version}"; repo = "pagemon"; owner = "ColinIanKing"; From 65a313538b7c818d13ad42ce3e7737d58a5757ee Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 21:43:03 -0700 Subject: [PATCH 0334/1611] picolisp: 18.12 -> 19.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/picolisp/versions --- pkgs/development/interpreters/picolisp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/picolisp/default.nix b/pkgs/development/interpreters/picolisp/default.nix index 01cffe93024..5adf41a0f3b 100644 --- a/pkgs/development/interpreters/picolisp/default.nix +++ b/pkgs/development/interpreters/picolisp/default.nix @@ -3,10 +3,10 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "picoLisp-${version}"; - version = "18.12"; + version = "19.6"; src = fetchurl { url = "https://www.software-lab.de/${name}.tgz"; - sha256 = "0hvgq2vc03bki528jqn95xmvv7mw8xx832spfczhxc16wwbrnrhk"; + sha256 = "1ixxl6m5glhwqa4q3fb90pciv7jhhvn9pkh316d4wcv0m13l04gq"; }; buildInputs = [makeWrapper openssl] ++ optional stdenv.is64bit jdk; patchPhase = '' From b7fc14d8e60aa49297ba35c950f1b98999d6e747 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 21:46:51 -0700 Subject: [PATCH 0335/1611] picard-tools: 2.20.2 -> 2.20.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/picard-tools/versions --- pkgs/applications/science/biology/picard-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/biology/picard-tools/default.nix b/pkgs/applications/science/biology/picard-tools/default.nix index 5fc222bb299..d58b4bf8c4d 100644 --- a/pkgs/applications/science/biology/picard-tools/default.nix +++ b/pkgs/applications/science/biology/picard-tools/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "picard-tools-${version}"; - version = "2.20.2"; + version = "2.20.3"; src = fetchurl { url = "https://github.com/broadinstitute/picard/releases/download/${version}/picard.jar"; - sha256 = "0qpc6pi3fmzv8rs5cmk3dd4clrkzbrngsl384b5g0y7471lhavbi"; + sha256 = "0qgj062c983w6qlgfkj6in5cl5rmvpak7rdwmjg2gv972kcfs7lp"; }; nativeBuildInputs = [ makeWrapper ]; From be23a4397a590a7ef815acc0cc821f278b75c82a Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 22:03:27 -0700 Subject: [PATCH 0336/1611] pkgconf: 1.6.1 -> 1.6.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pkgconf/versions --- pkgs/development/tools/misc/pkgconf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/pkgconf/default.nix b/pkgs/development/tools/misc/pkgconf/default.nix index 43d86966694..e4a6416129e 100644 --- a/pkgs/development/tools/misc/pkgconf/default.nix +++ b/pkgs/development/tools/misc/pkgconf/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "pkgconf"; - version = "1.6.1"; + version = "1.6.3"; src = fetchurl { url = "https://distfiles.dereferenced.org/${pname}/${pname}-${version}.tar.xz"; - sha256 = "1310va0nm8iyb4ghgz9qlx7qb00iha1523hq1zbgj0c98cwfxf92"; + sha256 = "04525vv0y849vvc2pi60g5wd9fjp1wbhra2lniifi82y1ldv7w31"; }; meta = with stdenv.lib; { From 93d0ae26f049e1dad893ec8ea392410d8432241e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 22:24:53 -0700 Subject: [PATCH 0337/1611] python37Packages.azure-cli-core: 2.0.66 -> 2.0.69 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-azure-cli-core/versions --- pkgs/development/python-modules/azure-cli-core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-cli-core/default.nix b/pkgs/development/python-modules/azure-cli-core/default.nix index d5c9fa35784..3455053ff21 100644 --- a/pkgs/development/python-modules/azure-cli-core/default.nix +++ b/pkgs/development/python-modules/azure-cli-core/default.nix @@ -33,11 +33,11 @@ buildPythonPackage rec { pname = "azure-cli-core"; - version = "2.0.66"; + version = "2.0.69"; src = fetchPypi { inherit pname version; - sha256 = "0fp6b2x1l9bg07pca7asm80rnjlc4kkm061s3nrb55yj6awsnim5"; + sha256 = "797c4fab2285aa2ac316daf692c1e8f6b14186c059805e8a57332b4d83d7bb23"; }; propagatedBuildInputs = [ From dccd1e9d052b4275b87f307156e195e1f6073714 Mon Sep 17 00:00:00 2001 From: cw Date: Thu, 11 Jul 2019 07:29:36 +0200 Subject: [PATCH 0338/1611] gocryptfs: 1.6.1 -> 1.7 - Use pname instead of name - Add patch for Darwin build --- pkgs/tools/filesystems/gocryptfs/default.nix | 14 +-- pkgs/tools/filesystems/gocryptfs/deps.nix | 89 +++---------------- ...unix2syscall_darwin.go-build-failure.patch | 14 +++ 3 files changed, 36 insertions(+), 81 deletions(-) create mode 100644 pkgs/tools/filesystems/gocryptfs/fix-unix2syscall_darwin.go-build-failure.patch diff --git a/pkgs/tools/filesystems/gocryptfs/default.nix b/pkgs/tools/filesystems/gocryptfs/default.nix index d923dba0bc0..0e48da746b8 100644 --- a/pkgs/tools/filesystems/gocryptfs/default.nix +++ b/pkgs/tools/filesystems/gocryptfs/default.nix @@ -2,13 +2,13 @@ { stdenv, buildGoPackage, fetchFromGitHub, openssl, pandoc, pkgconfig }: let - version = "v1.6.1"; goFuseVersion = with stdenv.lib; substring 0 7 (head (filter ( d: d.goPackagePath == "github.com/hanwen/go-fuse" ) (import ./deps.nix))).fetch.rev; in buildGoPackage rec { - name = "gocryptfs-${version}"; + pname = "gocryptfs"; + version = "1.7"; # TODO: Drop `patches` with next release. Remove `fix-unix2syscall_darwin.go-build-failure.patch`. goPackagePath = "github.com/rfjakob/gocryptfs"; @@ -17,11 +17,15 @@ buildGoPackage rec { src = fetchFromGitHub { owner = "rfjakob"; - repo = "gocryptfs"; - rev = version; - sha256 = "0aqbl25g48b4jp6l09k6kic6w3p0q7d9ip2wvrcvh8lhnrbdkhzd"; + repo = pname; + rev = "v${version}"; + sha256 = "1sr3i73haw07faqpw785cdda2kna8q3a0zhwab1p3i935rvp4qaa"; }; + # Fixes build on darwin + # Source: https://github.com/rfjakob/gocryptfs/commit/b1468a732fa26550f2a6f8a21cc7bd47b65a8c96 + patches = [ ./fix-unix2syscall_darwin.go-build-failure.patch ]; + postPatch = "rm -r tests"; buildFlagsArray = '' diff --git a/pkgs/tools/filesystems/gocryptfs/deps.nix b/pkgs/tools/filesystems/gocryptfs/deps.nix index 2589b41a0a5..50f6e89908e 100644 --- a/pkgs/tools/filesystems/gocryptfs/deps.nix +++ b/pkgs/tools/filesystems/gocryptfs/deps.nix @@ -1,39 +1,12 @@ # file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) [ - { - goPackagePath = "github.com/conejoninja/hid"; - fetch = { - type = "git"; - url = "https://github.com/conejoninja/hid"; - rev = "3a959b87ebefc18767a31fa567eea402eb37239e"; - sha256 = "1i1x7fhs3g9a48h2wxjczshx7gzmj9p6pd71l22ky998zgjadlim"; - }; - } - { - goPackagePath = "github.com/conejoninja/tesoro"; - fetch = { - type = "git"; - url = "https://github.com/conejoninja/tesoro"; - rev = "e0e839b6a6f14bce56d1bfac9a86311a1646a6a3"; - sha256 = "19q1ibj6l6pk2a3iwcyrj60sscvkqw450psd9zdflvb293cjsx8v"; - }; - } - { - goPackagePath = "github.com/golang/protobuf"; - fetch = { - type = "git"; - url = "https://github.com/golang/protobuf"; - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; - }; - } { goPackagePath = "github.com/hanwen/go-fuse"; fetch = { type = "git"; url = "https://github.com/hanwen/go-fuse"; - rev = "95c6370914ac7822973d1893680e878e156f8d70"; - sha256 = "1h701c1hxrw7ljh7kc0rjx18bfw2mzdbpmqqilb5wb0ngpdjpqxp"; + rev = "a533f0a5a633cccc0928c81985b13fa24407a211"; + sha256 = "0kc2jjjyhnrd934jn7hzfx8kd4z2yq5yblwrxr6xcjjql1vb1n9k"; }; } { @@ -41,8 +14,8 @@ fetch = { type = "git"; url = "https://github.com/jacobsa/crypto"; - rev = "c73681c634de898c869684602cf0c0d2ce938c4d"; - sha256 = "02jbiy6szshbzcmp4j3gpc577hrhikxqvm4kzxixp27k9f2cx5si"; + rev = "d95898ceee0769dac9bf74c46f8f68d3d3d79100"; + sha256 = "0dgcvms7if672f09y0cj49n711i9r0609p5f1s27i53yah4qlm19"; }; } { @@ -50,8 +23,8 @@ fetch = { type = "git"; url = "https://github.com/pkg/xattr"; - rev = "f5b647e257e19d63831e7c7adb95dfb79d9ff4d9"; - sha256 = "0cqxibbfllhs6ffxq65gn08088g7g7aw752p9g3vbnj35jk2p8i9"; + rev = "7782c2d6871d6e659e1563dc19c86b845264a6fc"; + sha256 = "1j3z5b9nwgkxia925rkiq8n5avhf4zhmsdbpn2s3xb16a2w66prd"; }; } { @@ -63,40 +36,13 @@ sha256 = "0c227ly3z8pqaqg22lpd8nzgqrfsbjx5gi9rp9ks1cmd11dv2gl9"; }; } - { - goPackagePath = "github.com/trezor/trezord-go"; - fetch = { - type = "git"; - url = "https://github.com/trezor/trezord-go"; - rev = "bae9c40e5d71c459bde056d42d4b19ab318c90c2"; - sha256 = "12j7b4vjs8n68214zrh5ivpqm3fcifk27bj6rszd9x2839nk3hy8"; - }; - } - { - goPackagePath = "github.com/xaionaro-go/cryptoWallet"; - fetch = { - type = "git"; - url = "https://github.com/xaionaro-go/cryptoWallet"; - rev = "47f9f6877e4324a8bc47fc5661c32d2fe6d29586"; - sha256 = "14h2vnl2jm2wj10znizdf2f0mxsk27rsjskjw5qffy8nf5a0i3i6"; - }; - } - { - goPackagePath = "github.com/zserge/hid"; - fetch = { - type = "git"; - url = "https://github.com/zserge/hid"; - rev = "c86e7adeabafd6fcb3371ad64d6ed366b04d55db"; - sha256 = "1y2zqndq6mafgsdai5gnkw4g8dzl9vmjcxq0i8xspaj4dmck19c4"; - }; - } { goPackagePath = "golang.org/x/crypto"; fetch = { type = "git"; url = "https://go.googlesource.com/crypto"; - rev = "de0752318171da717af4ce24d0a2e8626afaeb11"; - sha256 = "1ps1dl2a5lwr3vbwcy8n4i1v73m567y024sk961fk281phrzp13i"; + rev = "8dd112bcdc25174059e45e07517d9fc663123347"; + sha256 = "0gbcz7gxmgg88s28vb90dsp1vdq0har7zvg2adsqbp8bm05x9q6b"; }; } { @@ -104,8 +50,8 @@ fetch = { type = "git"; url = "https://go.googlesource.com/sync"; - rev = "1d60e4601c6fd243af51cc01ddf169918a5407ca"; - sha256 = "046jlanz2lkxq1r57x9bl6s4cvfqaic6p2xybsj8mq1120jv4rs6"; + rev = "e225da77a7e68af35c70ccbf71af2b83e6acac3c"; + sha256 = "0bh3583smcfw6jw3w6lp0za93rz7hpxfdz8vhxng75b7a6vdlw4p"; }; } { @@ -113,17 +59,8 @@ fetch = { type = "git"; url = "https://go.googlesource.com/sys"; - rev = "14742f9018cd6651ec7364dc6ee08af0baaa1031"; - sha256 = "17k06vwhnlb18n9rb1cdcdqyjcn353znfrr4c90xb3carz1sqfq5"; + rev = "61b9204099cb1bebc803c9ffb9b2d3acd9d457d9"; + sha256 = "110carnw1rxk9awbcdbg5is0zl28vynm649y7rza36pg1vlv8rrh"; }; } - { - goPackagePath = "golang.org/x/text"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/text"; - rev = "f21a4dfb5e38f5895301dc265a8def02365cc3d0"; - sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19"; - }; - } -] \ No newline at end of file +] diff --git a/pkgs/tools/filesystems/gocryptfs/fix-unix2syscall_darwin.go-build-failure.patch b/pkgs/tools/filesystems/gocryptfs/fix-unix2syscall_darwin.go-build-failure.patch new file mode 100644 index 00000000000..1adbc2c4d23 --- /dev/null +++ b/pkgs/tools/filesystems/gocryptfs/fix-unix2syscall_darwin.go-build-failure.patch @@ -0,0 +1,14 @@ +--- a/internal/syscallcompat/unix2syscall_darwin.go ++++ b/internal/syscallcompat/unix2syscall_darwin.go +@@ -19,8 +19,8 @@ func Unix2syscall(u unix.Stat_t) syscall.Stat_t { + Size: u.Size, + Blksize: u.Blksize, + Blocks: u.Blocks, +- Atimespec: syscall.Timespec(u.Atimespec), +- Mtimespec: syscall.Timespec(u.Mtimespec), +- Ctimespec: syscall.Timespec(u.Ctimespec), ++ Atimespec: syscall.Timespec(u.Atim), ++ Mtimespec: syscall.Timespec(u.Mtim), ++ Ctimespec: syscall.Timespec(u.Ctim), + } + } From 06f3c7a1a30531dc92c263890f0af7584f3b5ec4 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 23:47:59 -0700 Subject: [PATCH 0339/1611] pius: 2.2.7 -> 3.0.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pius/versions --- pkgs/tools/security/pius/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/pius/default.nix b/pkgs/tools/security/pius/default.nix index fba92bd47ac..f82f705fc8e 100644 --- a/pkgs/tools/security/pius/default.nix +++ b/pkgs/tools/security/pius/default.nix @@ -1,6 +1,6 @@ { fetchFromGitHub, stdenv, pythonPackages, gnupg, perl }: -let version = "2.2.7"; in +let version = "3.0.0"; in pythonPackages.buildPythonApplication { name = "pius-${version}"; namePrefix = ""; @@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication { owner = "jaymzh"; repo = "pius"; rev = "v${version}"; - sha256 = "1kjj44lf9di4ylvmc949dxncllzd8afp0yknr3152dmxkw1vl127"; + sha256 = "0l87dx7n6iwy8alxnhvval8h1kl4da6a59hsilbi65c6bpj4dh3y"; }; patchPhase = '' From 59b46cb3052bb65986adaf7ead3b18caa6858769 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 01:05:28 -0700 Subject: [PATCH 0340/1611] python37Packages.pex: 1.6.7 -> 1.6.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pex/versions --- pkgs/development/python-modules/pex/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pex/default.nix b/pkgs/development/python-modules/pex/default.nix index 4d064af18fa..1e61992b49d 100644 --- a/pkgs/development/python-modules/pex/default.nix +++ b/pkgs/development/python-modules/pex/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "pex"; - version = "1.6.7"; + version = "1.6.8"; src = fetchPypi { inherit pname version; - sha256 = "1hg30y8b4b96r4skhz2qmsp7li1izcg8854q3fi48rks0kcfx5fw"; + sha256 = "1zibkc074dvk69bkiipfzn2l9glgzs26g16j2ny5lzq320wqszkj"; }; nativeBuildInputs = [ setuptools ]; From a9baaf90f603615c81f2a546db49fb2c993f68ab Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 16 Jul 2019 10:35:47 +0200 Subject: [PATCH 0341/1611] couchdb2: pin to erlangR21 --- pkgs/servers/http/couchdb/2.0.0.nix | 2 ++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/pkgs/servers/http/couchdb/2.0.0.nix b/pkgs/servers/http/couchdb/2.0.0.nix index 650b9053191..cb630c26688 100644 --- a/pkgs/servers/http/couchdb/2.0.0.nix +++ b/pkgs/servers/http/couchdb/2.0.0.nix @@ -5,6 +5,8 @@ stdenv.mkDerivation rec { name = "couchdb-${version}"; version = "2.3.0"; + # when updating this, please consider bumping the OTP version + # in all-packages.nix src = fetchurl { url = "mirror://apache/couchdb/source/${version}/apache-${name}.tar.gz"; sha256 = "0lpk64n6fip85j1jz59kq20jdliwv6mh8j2h5zyxjn5i8b86hf0b"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1acc477c066..6ef3249f682 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14235,6 +14235,7 @@ in couchdb2 = callPackage ../servers/http/couchdb/2.0.0.nix { spidermonkey = spidermonkey_1_8_5; + erlang = erlangR21; }; couchpotato = callPackage ../servers/couchpotato {}; From baa4768dbee8394564d556300bea83d9a4f9039b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 01:45:15 -0700 Subject: [PATCH 0342/1611] python37Packages.geopandas: 0.5.0 -> 0.5.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-geopandas/versions --- pkgs/development/python-modules/geopandas/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix index 25a5e7e3ed5..a9ac85e6248 100644 --- a/pkgs/development/python-modules/geopandas/default.nix +++ b/pkgs/development/python-modules/geopandas/default.nix @@ -4,14 +4,14 @@ buildPythonPackage rec { pname = "geopandas"; - version = "0.5.0"; + version = "0.5.1"; name = pname + "-" + version; src = fetchFromGitHub { owner = "geopandas"; repo = "geopandas"; rev = "v${version}"; - sha256 = "0gmqksjgxrng52jvjk0ylkpsg0qriygb10b7n80l28kdz6c0givj"; + sha256 = "1j665fpkyfib17z0hn3bg2j96pbkgd36yfif6jyia4yn6g76hlfg"; }; checkInputs = [ pytest Rtree ]; From 39bd9f76a5a031e325fb60f34c60239b61f746b6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 01:53:47 -0700 Subject: [PATCH 0343/1611] python37Packages.django_taggit: 0.23.0 -> 1.1.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-django-taggit/versions --- pkgs/development/python-modules/django_taggit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/django_taggit/default.nix b/pkgs/development/python-modules/django_taggit/default.nix index 569df7f7246..b454fc32108 100644 --- a/pkgs/development/python-modules/django_taggit/default.nix +++ b/pkgs/development/python-modules/django_taggit/default.nix @@ -10,12 +10,12 @@ buildPythonPackage rec { pname = "django-taggit"; - version = "0.23.0"; + version = "1.1.0"; disabled = pythonOlder "2.7"; src = fetchPypi { inherit pname version; - sha256 = "a21cbe7e0879f1364eef1c88a2eda89d593bf000ebf51c3f00423c6927075dce"; + sha256 = "044fzcpmns90kaxdi49qczlam4xsi8rl73rpfwvxx1gkcqzidgq1"; }; propagatedBuildInputs = [ isort django ]; From 900578ee76de80e1360d489af01afd7310fa0d6f Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 16 Jul 2019 10:59:30 +0200 Subject: [PATCH 0344/1611] relx-exe: 3.23.1 -> 3.32.1 --- pkgs/development/tools/erlang/relx-exe/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 3 +-- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/erlang/relx-exe/default.nix b/pkgs/development/tools/erlang/relx-exe/default.nix index 78735d8f76f..0f9d973e677 100644 --- a/pkgs/development/tools/erlang/relx-exe/default.nix +++ b/pkgs/development/tools/erlang/relx-exe/default.nix @@ -2,18 +2,18 @@ rebar3Relx rec { name = "relx-exe"; - version = "3.23.1"; + version = "3.32.1"; releaseType = "escript"; src = fetchHex { pkg = "relx"; - sha256 = "13j7wds2d7b8v3r9pwy3zhwhzywgwhn6l9gm3slqzyrs1jld0a9d"; - version = "3.23.1"; + sha256 = "0693k8ac7hvpm9jd3ysbdn8bk97d68ini22p1fsqdsi9qv9f7nq7"; + inherit version; }; checkouts = fetchRebar3Deps { inherit name version; src = "${src}/rebar.lock"; - sha256 = "046b1lb9rymndlvzmin3ppa3vkssjqspyfp98869k11s5avg76hd"; + sha256 = "0l7r3x7zwcz49013zv8z5v2i06p7wqkgzdyzrl8jk0hglscvhpf6"; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6ef3249f682..00987e80fa2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8310,9 +8310,8 @@ in inherit (beam.packages.erlang) rebar rebar3-open rebar3 hexRegistrySnapshot fetchHex beamPackages - hex2nix; + hex2nix relxExe; - inherit (beam.packages.erlangR18) relxExe; inherit (beam.packages.erlangR19) cuter; groovy = callPackage ../development/interpreters/groovy { }; From c834f25f9b92b92617af34e20c9d3c5295911041 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 02:01:53 -0700 Subject: [PATCH 0345/1611] python37Packages.micawber: 0.4.1 -> 0.5.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-micawber/versions --- pkgs/development/python-modules/micawber/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/micawber/default.nix b/pkgs/development/python-modules/micawber/default.nix index d3b5c79e967..bc94202a070 100644 --- a/pkgs/development/python-modules/micawber/default.nix +++ b/pkgs/development/python-modules/micawber/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "micawber"; - version = "0.4.1"; + version = "0.5.0"; src = fetchPypi { inherit pname version; - sha256 = "002g31h4fcrrlfcrcbqa94aggszadm0p91c28n19vgssinmbz0ia"; + sha256 = "0vk4xkby306f79gkwrn3cx94qdqil285dand8kb6lnlsdi90sb25"; }; propagatedBuildInputs = [ beautifulsoup4 ]; From 662fcf6a405d97b31ec9c56e3ebe7b479b84111c Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 2 Jul 2019 13:22:17 +0200 Subject: [PATCH 0346/1611] build-mix: partially revert nixpkgs#25655 --- pkgs/development/beam-modules/build-mix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/beam-modules/build-mix.nix b/pkgs/development/beam-modules/build-mix.nix index abe3c9e5122..d947acc3ea6 100644 --- a/pkgs/development/beam-modules/build-mix.nix +++ b/pkgs/development/beam-modules/build-mix.nix @@ -63,7 +63,7 @@ let export MIX_ENV=prod export MIX_NO_DEPS=1 - mix compile ${debugInfoFlag} + mix compile ${debugInfoFlag} --no-deps-check runHook postBuild '' From 1b0459741f5afee4f0267b6e3dd140103395093e Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 16 Jul 2019 11:12:38 +0200 Subject: [PATCH 0347/1611] rabbitmq-server: bump elixir dependency to 1.8 --- pkgs/servers/amqp/rabbitmq-server/default.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/amqp/rabbitmq-server/default.nix b/pkgs/servers/amqp/rabbitmq-server/default.nix index 3d36202e861..57cec51933f 100644 --- a/pkgs/servers/amqp/rabbitmq-server/default.nix +++ b/pkgs/servers/amqp/rabbitmq-server/default.nix @@ -8,6 +8,7 @@ stdenv.mkDerivation rec { version = "3.7.15"; + # when updating, consider bumping elixir version in all-packages.nix src = fetchurl { url = "https://github.com/rabbitmq/rabbitmq-server/releases/download/v${version}/${name}.tar.xz"; sha256 = "14ipnvcrwln9mwr4r32461js2gdlrr4h4hy92393ixbkscf9wdir"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1acc477c066..674c9dd25a7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14743,7 +14743,7 @@ in rabbitmq-server = callPackage ../servers/amqp/rabbitmq-server { inherit (darwin.apple_sdk.frameworks) AppKit Carbon Cocoa; - elixir = elixir_1_6; + elixir = elixir_1_8; erlang = erlang_nox; }; From e29cf290867c6781896bb191df057a6065fdf57b Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 16 Jul 2019 11:14:15 +0200 Subject: [PATCH 0348/1611] libyaml: actually use 0.2.2 The archive that was used turned out to be incorrect. https://github.com/yaml/pyyaml/issues/320 By now a correct tarball has been uploaded but in order to prevent issues like these we fetch now instead from GitHub. --- pkgs/development/libraries/libyaml/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/libyaml/default.nix b/pkgs/development/libraries/libyaml/default.nix index 7529d69ddde..143555137d7 100644 --- a/pkgs/development/libraries/libyaml/default.nix +++ b/pkgs/development/libraries/libyaml/default.nix @@ -1,14 +1,21 @@ -{ stdenv, fetchurl }: +{ stdenv +, fetchFromGitHub +, autoreconfHook +}: stdenv.mkDerivation rec { pname = "libyaml"; version = "0.2.2"; - src = fetchurl { - url = "https://pyyaml.org/download/libyaml/yaml-${version}.tar.gz"; - sha256 = "1karpcfgacgppa82wm2drcfn2kb6q2wqfykf5nrhy20sci2i2a3q"; + src = fetchFromGitHub { + owner = "yaml"; + repo = "libyaml"; + rev = version; + sha256 = "0839nqcmxjzfgjn39j7740pnlsgmvngpkamiw1lfy1qlcqyc3r4v"; }; + nativeBuildInputs = [ autoreconfHook ]; + meta = with stdenv.lib; { homepage = https://pyyaml.org/; description = "A YAML 1.1 parser and emitter written in C"; From 4708662ebea8422156637c5bf50a46db34e69e4c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 00:50:39 -0700 Subject: [PATCH 0349/1611] python37Packages.mahotas: 1.4.5 -> 1.4.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-mahotas/versions --- pkgs/development/python-modules/mahotas/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mahotas/default.nix b/pkgs/development/python-modules/mahotas/default.nix index 34e2260109b..101468da09f 100644 --- a/pkgs/development/python-modules/mahotas/default.nix +++ b/pkgs/development/python-modules/mahotas/default.nix @@ -2,13 +2,13 @@ buildPythonPackage rec { pname = "mahotas"; - version = "1.4.5"; + version = "1.4.7"; src = fetchFromGitHub { owner = "luispedro"; repo = "mahotas"; rev = "v${version}"; - sha256 = "0dm34751w1441lxq00219fqlqix5qrgc18wp1wgp7xivlz3czzcz"; + sha256 = "1a3nzxb7is8n7lpxwq1fw3fr03qflig334rb1zzr2znjrhq6g94b"; }; # remove this as soon as https://github.com/luispedro/mahotas/issues/97 is fixed From 8f4fabd8c590b1dcd5ca4ec3ca44d6078c1dfa7d Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 16 Jul 2019 02:29:59 -0700 Subject: [PATCH 0350/1611] pythonPackages.knack: 0.6.2 -> 0.6.3 --- pkgs/development/python-modules/knack/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/knack/default.nix b/pkgs/development/python-modules/knack/default.nix index f8427cd7d17..c3025311e10 100644 --- a/pkgs/development/python-modules/knack/default.nix +++ b/pkgs/development/python-modules/knack/default.nix @@ -17,11 +17,11 @@ buildPythonPackage rec { pname = "knack"; - version = "0.6.2"; + version = "0.6.3"; src = fetchPypi { inherit pname version; - sha256 = "1kxxj9m2mvva9rz11m6pgdg0mi712d28faj4633rl23qa53sh7i8"; + sha256 = "08g15kwfppdr7vhbsg6qclpqbf11d9k3hwgrmvhh5fa1jrk95b5i"; }; propagatedBuildInputs = [ @@ -40,9 +40,8 @@ buildPythonPackage rec { pytest ]; - # tries to make a '/homeless-shelter' dir checkPhase = '' - pytest -k 'not test_cli_exapp1' + HOME=$TMPDIR pytest . ''; meta = with lib; { From eed8cd5391d36cbb5c7265b2f732caa4062fbcdd Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 15 Jul 2019 03:05:04 +0300 Subject: [PATCH 0351/1611] pdfcpu: 0.1.25 -> 0.2.1 --- pkgs/applications/graphics/pdfcpu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/pdfcpu/default.nix b/pkgs/applications/graphics/pdfcpu/default.nix index f13e36ce99e..56c823993f7 100644 --- a/pkgs/applications/graphics/pdfcpu/default.nix +++ b/pkgs/applications/graphics/pdfcpu/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "pdfcpu"; - version = "0.1.25"; + version = "0.2.1"; src = fetchFromGitHub { owner = "hhrutter"; repo = pname; rev = "v${version}"; - sha256 = "0vmmc7nnvpvsf92yi69rvqif1irkpya2shqyz49sa3s42jh1446b"; + sha256 = "0cg17nph3qv1ca86j3wcd33vqs6clkzi6y2nrajmk7dq5vbzr6nn"; }; modSha256 = "0cz4gs88s9z2yv1gc9ap92vv2j93ab6kr25zjgl2r7z6clbl5fzp"; From d440ddd95ae96e34b6a5f928c24984dcc814ed6d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 03:04:34 -0700 Subject: [PATCH 0352/1611] python37Packages.josepy: 1.1.0 -> 1.2.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-josepy/versions --- pkgs/development/python-modules/josepy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/josepy/default.nix b/pkgs/development/python-modules/josepy/default.nix index f968b9fbd9f..d3b5ad79d6c 100644 --- a/pkgs/development/python-modules/josepy/default.nix +++ b/pkgs/development/python-modules/josepy/default.nix @@ -8,11 +8,11 @@ buildPythonPackage rec { pname = "josepy"; - version = "1.1.0"; + version = "1.2.0"; src = fetchPypi { inherit pname version; - sha256 = "fb5c62c77d26e04df29cb5ecd01b9ce69b6fcc9e521eb1ca193b7faa2afa7086"; + sha256 = "1lq2s1649zinfii9ccl1wk6aqpaj35r8xwz44020ylp9ky1rmv4w"; }; propagatedBuildInputs = [ From ae796cea5d91b6d884344147d979787a245bfa26 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 03:23:54 -0700 Subject: [PATCH 0353/1611] python37Packages.flask-paginate: 0.5.2 -> 0.5.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-flask-paginate/versions --- pkgs/development/python-modules/flask-paginate/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/flask-paginate/default.nix b/pkgs/development/python-modules/flask-paginate/default.nix index a2c372c8bee..52dd77c8391 100644 --- a/pkgs/development/python-modules/flask-paginate/default.nix +++ b/pkgs/development/python-modules/flask-paginate/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "flask-paginate"; - version = "0.5.2"; + version = "0.5.3"; src = fetchPypi { inherit pname version; - sha256 = "ebc896bf6e8d7a414e3efba0bd0770a8f73dcd7023f99e849c64164287e36e9b"; + sha256 = "15plwkmi6i7p85q2vgyvmn0l4c2h7pj4mmiziwghyyqbd1rc0dr2"; }; propagatedBuildInputs = [ flask ]; From 2f02fed0d7b395da9bc46338c746d7e482f105b9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 03:55:33 -0700 Subject: [PATCH 0354/1611] python37Packages.google_cloud_kms: 1.0.0 -> 1.1.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-google-cloud-kms/versions --- pkgs/development/python-modules/google_cloud_kms/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google_cloud_kms/default.nix b/pkgs/development/python-modules/google_cloud_kms/default.nix index d4052a227bb..383ed1bdbb9 100644 --- a/pkgs/development/python-modules/google_cloud_kms/default.nix +++ b/pkgs/development/python-modules/google_cloud_kms/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "google-cloud-kms"; - version = "1.0.0"; + version = "1.1.0"; src = fetchPypi { inherit pname version; - sha256 = "2167e1c599ea1d9fed96d317ad817d0b37497460c70f11aafa13a24ede7c9c35"; + sha256 = "0ypn95swjj93kvdcrvmijmh3vzpr499a3krk923a86m8vlcwcvjm"; }; checkInputs = [ pytest mock ]; From 49ca44cf17d8f21494a7721fc275e4029bf49b68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 16 Jul 2019 13:52:27 +0200 Subject: [PATCH 0355/1611] knot-dns: 2.8.2 -> 2.8.3 (maintenance) --- pkgs/servers/dns/knot-dns/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/knot-dns/default.nix b/pkgs/servers/dns/knot-dns/default.nix index a646fb0b7a4..718028b2bc0 100644 --- a/pkgs/servers/dns/knot-dns/default.nix +++ b/pkgs/servers/dns/knot-dns/default.nix @@ -7,11 +7,11 @@ let inherit (stdenv.lib) optional optionals; in # Note: ATM only the libraries have been tested in nixpkgs. stdenv.mkDerivation rec { name = "knot-dns-${version}"; - version = "2.8.2"; + version = "2.8.3"; src = fetchurl { url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz"; - sha256 = "00d24361a2406392c508904fad943536bae6369981686b4951378fc1c9a5a137"; + sha256 = "8a62d81e5cf3df938f469b60ed4e46d9161007c2b89fbf7ae07525fa68368bad"; }; outputs = [ "bin" "out" "dev" ]; From 9a22c8c697af31c9f0686b326ed8ae59b5d36768 Mon Sep 17 00:00:00 2001 From: Bruno Bzeznik Date: Tue, 16 Jul 2019 10:12:15 +0200 Subject: [PATCH 0356/1611] est-sfs: init at 2.03 --- .../science/biology/est-sfs/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/applications/science/biology/est-sfs/default.nix diff --git a/pkgs/applications/science/biology/est-sfs/default.nix b/pkgs/applications/science/biology/est-sfs/default.nix new file mode 100644 index 00000000000..dcc72523355 --- /dev/null +++ b/pkgs/applications/science/biology/est-sfs/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, gsl }: + +stdenv.mkDerivation rec { + pname = "est-sfs"; + version = "2.03"; + + src = fetchurl { + url = "mirror://sourceforge/est-usfs/${pname}-release-${version}.tar.gz"; + sha256 = "1hvamrgagz0xi89w8qafyd9mjrdpyika8zm22drddnjkp4sdj65n"; + }; + + buildInputs = [ gsl ]; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/share/doc/${pname} + cp est-sfs $out/bin + cp est-sfs-documentation.pdf $out/share/doc/${pname} + ''; + + meta = with stdenv.lib; { + homepage = https://sourceforge.net/projects/est-usfs; + description = "Estimate the unfolded site frequency spectrum and ancestral states"; + license = licenses.gpl3; + maintainers = [ maintainers.bzizou ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1a9a1c54b3a..a0cd2689aba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21880,6 +21880,8 @@ in emboss = callPackage ../applications/science/biology/emboss { }; + est-sfs = callPackage ../applications/science/biology/est-sfs { }; + ezminc = callPackage ../applications/science/biology/EZminc { }; hisat2 = callPackage ../applications/science/biology/hisat2 { }; From 9339970dbff75ae1ea6eb3d787ba50189b1b271a Mon Sep 17 00:00:00 2001 From: Dave Churchill Date: Tue, 16 Jul 2019 22:05:20 +1000 Subject: [PATCH 0357/1611] emacs: Also allow imagemagick dependency when using withNS This allows Emacs to be used with imagemagick on macOS. --- pkgs/applications/editors/emacs/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/emacs/default.nix b/pkgs/applications/editors/emacs/default.nix index c2756eab961..7ae0ecfd743 100644 --- a/pkgs/applications/editors/emacs/default.nix +++ b/pkgs/applications/editors/emacs/default.nix @@ -61,7 +61,8 @@ stdenv.mkDerivation rec { ++ lib.optionals stdenv.isLinux [ dbus libselinux systemd ] ++ lib.optionals withX [ xlibsWrapper libXaw Xaw3d libXpm libpng libjpeg libungif libtiff librsvg libXft - imagemagick gconf ] + gconf ] + ++ lib.optionals (withX || withNS) [ imagemagick ] ++ lib.optionals (stdenv.isLinux && withX) [ m17n_lib libotf ] ++ lib.optional (withX && withGTK2) gtk2-x11 ++ lib.optionals (withX && withGTK3) [ gtk3-x11 gsettings-desktop-schemas ] From 7b4510430923c370754f84620369bfa8c3efb619 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 05:13:37 -0700 Subject: [PATCH 0358/1611] python37Packages.fitbit: 0.3.0 -> 0.3.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-fitbit/versions --- pkgs/development/python-modules/fitbit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/fitbit/default.nix b/pkgs/development/python-modules/fitbit/default.nix index 93bf4716073..ef4859a749a 100644 --- a/pkgs/development/python-modules/fitbit/default.nix +++ b/pkgs/development/python-modules/fitbit/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "fitbit"; - version = "0.3.0"; + version = "0.3.1"; checkInputs = [ coverage freezegun mock requests-mock sphinx ]; propagatedBuildInputs = [ dateutil requests_oauthlib ]; @@ -23,7 +23,7 @@ buildPythonPackage rec { rev = version; owner = "orcasgit"; repo = "python-fitbit"; - sha256 = "0s1kp4qcxvxghqf9nb71843slm4r5lhl2rlvj3yvhbby3cqs4g84"; + sha256 = "1w2lpgf6bs5nbnmslppaf4lbhr9cj6grg0a525xv41jip7iy3vfn"; }; postPatch = '' From bd98f3521c13ec5520b46d306bc64d1cb87a9fc0 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 16 Jul 2019 02:19:51 +0300 Subject: [PATCH 0359/1611] bazel: drop absolute Python path Without this Bazel always picks Python 3 which breaks Python 2 packages. Strangely enough just dropping this patch works, with all `bazel.tests` passing. --- .../tools/build-managers/bazel/default.nix | 11 ++++------- .../build-managers/bazel/python-stub-path-fix.patch | 13 ------------- 2 files changed, 4 insertions(+), 20 deletions(-) delete mode 100644 pkgs/development/tools/build-managers/bazel/python-stub-path-fix.patch diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index bad0023eef3..f52b2e79fe1 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -136,8 +136,6 @@ stdenv.mkDerivation rec { # This is breaking the build of any C target. This patch removes the last # argument if it's found to be an empty string. ./trim-last-argument-to-gcc-if-empty.patch - - ./python-stub-path-fix.patch ] ++ lib.optional enableNixHacks ./nix-hacks.patch; @@ -220,13 +218,13 @@ stdenv.mkDerivation rec { cpp = callPackage ./cpp-test.nix { inherit runLocal bazelTest bazel-examples; }; java = callPackage ./java-test.nix { inherit runLocal bazelTest bazel-examples; }; protobuf = callPackage ./protobuf-test.nix { inherit runLocal bazelTest; }; - pythonBinPath = callPackage ./python-bin-path-test.nix{ inherit runLocal bazelTest; }; + pythonBinPath = callPackage ./python-bin-path-test.nix { inherit runLocal bazelTest; }; bashToolsWithNixHacks = callPackage ./bash-tools-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; cppWithNixHacks = callPackage ./cpp-test.nix { inherit runLocal bazelTest bazel-examples; bazel = bazelWithNixHacks; }; javaWithNixHacks = callPackage ./java-test.nix { inherit runLocal bazelTest bazel-examples; bazel = bazelWithNixHacks; }; protobufWithNixHacks = callPackage ./protobuf-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; - pythonBinPathWithNixHacks = callPackage ./python-bin-path-test.nix{ inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; + pythonBinPathWithNixHacks = callPackage ./python-bin-path-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; }; # update the list of workspace dependencies @@ -310,9 +308,8 @@ stdenv.mkDerivation rec { genericPatches = '' # Substitute python's stub shebang to plain python path. (see TODO add pr URL) # See also `postFixup` where python is added to $out/nix-support - substituteInPlace src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt\ - --replace "/usr/bin/env python" "${python3}/bin/python" \ - --replace "NIX_STORE_PYTHON_PATH" "${python3}/bin/python" \ + patchShebangs src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt \ + --replace "#!/usr/bin/env python" "#!${python3}/bin/python" # md5sum is part of coreutils sed -i 's|/sbin/md5|md5sum|' \ diff --git a/pkgs/development/tools/build-managers/bazel/python-stub-path-fix.patch b/pkgs/development/tools/build-managers/bazel/python-stub-path-fix.patch deleted file mode 100644 index cbc4192d2d9..00000000000 --- a/pkgs/development/tools/build-managers/bazel/python-stub-path-fix.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt b/src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt -index dac21c9a83..69b11c283f 100644 ---- a/src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt -+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/python/python_stub_template.txt -@@ -67,7 +67,7 @@ def FindPythonBinary(module_space): - return os.path.join(module_space, PYTHON_BINARY) - else: - # Case 4: Path has to be looked up in the search path. -- return SearchPath(PYTHON_BINARY) -+ return "NIX_STORE_PYTHON_PATH" - - def CreatePythonPathEntries(python_imports, module_space): - parts = python_imports.split(':'); From 680ee0a45ae747a0a1f85b7d886e3eb8055c44f4 Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Tue, 16 Jul 2019 13:51:26 +0100 Subject: [PATCH 0360/1611] pius: switch to Python 3 pius 3.0.0 requires Python 3. --- pkgs/tools/security/pius/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/pius/default.nix b/pkgs/tools/security/pius/default.nix index f82f705fc8e..fed63390d28 100644 --- a/pkgs/tools/security/pius/default.nix +++ b/pkgs/tools/security/pius/default.nix @@ -1,7 +1,7 @@ -{ fetchFromGitHub, stdenv, pythonPackages, gnupg, perl }: +{ fetchFromGitHub, stdenv, python3Packages, gnupg, perl }: let version = "3.0.0"; in -pythonPackages.buildPythonApplication { +python3Packages.buildPythonApplication { name = "pius-${version}"; namePrefix = ""; @@ -19,7 +19,7 @@ pythonPackages.buildPythonApplication { ''; nativeBuildInputs = [ perl ]; - propagatedBuildInputs = with pythonPackages; [ six ]; + propagatedBuildInputs = with python3Packages; [ six ]; meta = { homepage = https://www.phildev.net/pius/; From d914be56a24abce1a06c5952aad50b1f419f5944 Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Tue, 16 Jul 2019 13:52:41 +0100 Subject: [PATCH 0361/1611] pius: dependency on package 'six' is no longer needed --- pkgs/tools/security/pius/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/security/pius/default.nix b/pkgs/tools/security/pius/default.nix index fed63390d28..e9e8c102eaf 100644 --- a/pkgs/tools/security/pius/default.nix +++ b/pkgs/tools/security/pius/default.nix @@ -19,7 +19,6 @@ python3Packages.buildPythonApplication { ''; nativeBuildInputs = [ perl ]; - propagatedBuildInputs = with python3Packages; [ six ]; meta = { homepage = https://www.phildev.net/pius/; From 97ef23794b57a54b9df4398e0c77946e5dc841bf Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Tue, 16 Jul 2019 13:54:58 +0100 Subject: [PATCH 0362/1611] pius: use pname+version instead of name --- pkgs/tools/security/pius/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/pius/default.nix b/pkgs/tools/security/pius/default.nix index e9e8c102eaf..6ae69505f06 100644 --- a/pkgs/tools/security/pius/default.nix +++ b/pkgs/tools/security/pius/default.nix @@ -2,8 +2,9 @@ let version = "3.0.0"; in python3Packages.buildPythonApplication { - name = "pius-${version}"; + pname = "pius"; namePrefix = ""; + inherit version; src = fetchFromGitHub { owner = "jaymzh"; From 5e54487080f82505fbd96b0c9a1bf5f0a1f7d0a1 Mon Sep 17 00:00:00 2001 From: Kier Davis Date: Tue, 16 Jul 2019 14:28:49 +0100 Subject: [PATCH 0363/1611] pius: perl should be a runtime dependency, not a build-time one Since 61bc03c017f18e2fe54d209ae8ba8a42033b9564, patch-shebangs now distinguishes between build-time and runtime dependencies. Prior to this commit, perl was not being placed in patch-shebangs' search path when it is run during the fixup phase. --- pkgs/tools/security/pius/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/pius/default.nix b/pkgs/tools/security/pius/default.nix index 6ae69505f06..5aa4ad47d42 100644 --- a/pkgs/tools/security/pius/default.nix +++ b/pkgs/tools/security/pius/default.nix @@ -19,7 +19,7 @@ python3Packages.buildPythonApplication { done ''; - nativeBuildInputs = [ perl ]; + buildInputs = [ perl ]; meta = { homepage = https://www.phildev.net/pius/; From 739e6dcc6361ba3cc994b6f702d80c23f65fcbfd Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Tue, 16 Jul 2019 15:48:24 +0200 Subject: [PATCH 0364/1611] hex2nix: 0.0.6-a31eadd7 -> 0.0.6-42d7b2ec --- pkgs/development/tools/erlang/hex2nix/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/erlang/hex2nix/default.nix b/pkgs/development/tools/erlang/hex2nix/default.nix index 5a24c3c9525..5155632169f 100644 --- a/pkgs/development/tools/erlang/hex2nix/default.nix +++ b/pkgs/development/tools/erlang/hex2nix/default.nix @@ -2,20 +2,20 @@ rebar3Relx rec { name = "hex2nix"; - version = "0.0.6-a31eadd7"; + version = "0.0.6-42d7b2ec"; releaseType = "escript"; checkouts = fetchRebar3Deps { inherit name version; src = "${src}/rebar.config"; - sha256 = "1b59vk6ynakdiwqd1s6axaj9bvkaaq7ll28b48nv613z892h7nm5"; + sha256 = "0z6v1f6hagl3qyj97frqr2ww3adrwgfwdyb2zshaai0d3xchg3ly"; }; src = fetchFromGitHub { owner = "erlang-nix"; repo = "hex2nix"; - rev = "a31eadd7af2cbdac1b87991b378e98ea4fb40ae0"; - sha256 = "1hnkrksyrbpq2gq25rfsrnm86n0g3biab88gswm3zj88ddrz6dyk"; + rev = "42d7b2ec64f61f21061066b192003cf7f460bf43"; + sha256 = "0ac1fmckvid5077djg3ajycxn7gwbf7pdk1knhfp8yva3c5qq58r"; }; } From 24fda481c377b8b4aa72743101a19a364f4b6d78 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 06:52:57 -0700 Subject: [PATCH 0365/1611] qsynth: 0.5.6 -> 0.5.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qsynth/versions --- pkgs/applications/audio/qsynth/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/qsynth/default.nix b/pkgs/applications/audio/qsynth/default.nix index b146513d735..82e003b2bea 100644 --- a/pkgs/applications/audio/qsynth/default.nix +++ b/pkgs/applications/audio/qsynth/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "qsynth-${version}"; - version = "0.5.6"; + version = "0.5.7"; src = fetchurl { url = "mirror://sourceforge/qsynth/${name}.tar.gz"; - sha256 = "0h4hhja8qbyzd6v24flw9wr4mwl03nplryx1gyrppn7sg13l1sx6"; + sha256 = "18im4w8agj60nkppwbkxqnhpp13z5li3w30kklv4lgs20rvgbvl6"; }; nativeBuildInputs = [ autoconf pkgconfig ]; From 1808b1eb67b039d4027a935aa090e585bf9e50c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Sun, 10 Feb 2019 18:30:16 +0100 Subject: [PATCH 0366/1611] mumsi: Init at git-2019-02-10 --- pkgs/development/libraries/mumlib/default.nix | 28 +++++++++++++++++++ pkgs/servers/mumsi/default.nix | 27 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 3 files changed, 59 insertions(+) create mode 100644 pkgs/development/libraries/mumlib/default.nix create mode 100644 pkgs/servers/mumsi/default.nix diff --git a/pkgs/development/libraries/mumlib/default.nix b/pkgs/development/libraries/mumlib/default.nix new file mode 100644 index 00000000000..7117599d15e --- /dev/null +++ b/pkgs/development/libraries/mumlib/default.nix @@ -0,0 +1,28 @@ +{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig +, boost, openssl, log4cpp, libopus, protobuf }: +with lib; stdenv.mkDerivation rec { + pname = "mumlib"; + version = "unstable-2018-12-12"; + + src = fetchFromGitHub { + owner = "slomkowski"; + repo = "mumlib"; + rev = "f91720de264c0ab5e02bb30deafc5c4b2c245eac"; + sha256 = "0p29z8379dp2ra0420x8xjp4d3r2mf680lj38xmlc8npdzqjqjdp"; + }; + + buildInputs = [ boost openssl libopus protobuf log4cpp ]; + nativeBuildInputs = [ cmake pkgconfig ]; + installPhase = '' + install -Dm555 libmumlib.so $out/lib/libmumlib.so + cp -a ../include $out + ''; + + meta = { + description = "Fairy simple Mumble library written in C++, using boost::asio asynchronous networking framework"; + homepage = "https://github.com/slomkowski/mumlib"; + maintainers = with maintainers; [ das_j ]; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/servers/mumsi/default.nix b/pkgs/servers/mumsi/default.nix new file mode 100644 index 00000000000..4465febf39a --- /dev/null +++ b/pkgs/servers/mumsi/default.nix @@ -0,0 +1,27 @@ +{ stdenv, lib, fetchFromGitHub, cmake, pkgconfig, boost +, log4cpp, pjsip, openssl, alsaLib, mumlib }: +with lib; stdenv.mkDerivation rec { + pname = "mumsi"; + version = "unstable-2018-12-12"; + + src = fetchFromGitHub { + owner = "slomkowski"; + repo = "mumsi"; + rev = "961b75792f8da22fb5502e39edb286e32172d0b0"; + sha256 = "0vrivl1fiiwjsz4v26nrn8ra3k9v0mcz7zjm2z319fw8hv6n1nrk"; + }; + + buildInputs = [ boost log4cpp pkgconfig pjsip mumlib openssl alsaLib ]; + nativeBuildInputs = [ cmake pkgconfig ]; + installPhase = '' + install -Dm555 mumsi $out/bin/mumsi + ''; + + meta = { + description = "SIP to Mumble gateway/bridge using PJSUA stack"; + homepage = "https://github.com/slomkowski/mumsi"; + maintainers = with maintainers; [ das_j ]; + license = licenses.asl20; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fa09eed2c0c..9366457591b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12404,6 +12404,8 @@ in mueval = callPackage ../development/tools/haskell/mueval { }; + mumlib = callPackage ../development/libraries/mumlib { }; + muparser = callPackage ../development/libraries/muparser { }; mygpoclient = pythonPackages.mygpoclient; @@ -14436,6 +14438,8 @@ in mullvad-vpn = callPackage ../applications/networking/mullvad-vpn { }; + mumsi = callPackage ../servers/mumsi { }; + myserver = callPackage ../servers/http/myserver { }; nas = callPackage ../servers/nas { }; From 2d1870a3d0274f239c4f3e8c432b5db8beec71b8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 07:54:17 -0700 Subject: [PATCH 0367/1611] python37Packages.texttable: 1.6.1 -> 1.6.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-texttable/versions --- pkgs/development/python-modules/texttable/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/texttable/default.nix b/pkgs/development/python-modules/texttable/default.nix index 395deff2226..1d55d6aff30 100644 --- a/pkgs/development/python-modules/texttable/default.nix +++ b/pkgs/development/python-modules/texttable/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "texttable"; - version = "1.6.1"; + version = "1.6.2"; src = fetchPypi { inherit pname version; - sha256 = "2b60a5304ccfbeac80ffae7350d7c2f5d7a24e9aab5036d0f82489746419d9b2"; + sha256 = "1x5l77akfc20x52jma9573qp8l8r07q103pm4l0pbizvh4vp1wzg"; }; meta = { From 5ef740182b5e9a0abd6c29274ce3190adb6f901c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 08:20:24 -0700 Subject: [PATCH 0368/1611] python37Packages.Wand: 0.5.4 -> 0.5.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-wand/versions --- pkgs/development/python-modules/Wand/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/Wand/default.nix b/pkgs/development/python-modules/Wand/default.nix index 18e5c80615a..18c42dbc126 100644 --- a/pkgs/development/python-modules/Wand/default.nix +++ b/pkgs/development/python-modules/Wand/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "Wand"; - version = "0.5.4"; + version = "0.5.5"; src = fetchPypi { inherit pname version; - sha256 = "e2e08e19a37c61e85eaa307fe319889af46fe4cac6c23e3ae668b96be3e497ff"; + sha256 = "1qjwqshcrfsa2a0j9bk0w01y857idzic1bj202p9cpar3xsjjw69"; }; postPatch = '' From 950da6263f7f861246ac284e45f51ff0073e9d8d Mon Sep 17 00:00:00 2001 From: Guillaume Bouchard Date: Thu, 11 Jul 2019 17:10:38 +0200 Subject: [PATCH 0369/1611] bazel: 0.27.0 -> 0.28.0 --- .../tools/build-managers/bazel/default.nix | 12 ++- .../tools/build-managers/bazel/src-deps.json | 87 ++++++++++++++----- 2 files changed, 76 insertions(+), 23 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index 8d7a8199240..b20d75558d2 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -19,11 +19,11 @@ }: let - version = "0.27.0"; + version = "0.28.0"; src = fetchurl { url = "https://github.com/bazelbuild/bazel/releases/download/${version}/bazel-${version}-dist.zip"; - sha256 = "0yn662dzgfr8ls4avfl12k5sr4f210bab12wml18bh4sjlxhs263"; + sha256 = "26ad8cdadd413b8432cf46d9fc3801e8db85d9922f85dd8a7f5a92fec876557f"; }; # Update with `eval $(nix-build -A bazel.updater)`, @@ -41,12 +41,13 @@ let srcs.io_bazel_skydoc srcs.bazel_skylib srcs.io_bazel_rules_sass + srcs.platforms (if stdenv.hostPlatform.isDarwin then srcs.${"java_tools_javac11_darwin-v2.0.zip"} else srcs.${"java_tools_javac11_linux-v2.0.zip"}) srcs.${"coverage_output_generator-v1.0.zip"} srcs.build_bazel_rules_nodejs - srcs.${"android_tools_pkg-0.4.tar.gz"} + srcs.${"android_tools_pkg-0.7.tar.gz"} ]); distDir = runCommand "bazel-deps" {} '' @@ -331,6 +332,11 @@ stdenv.mkDerivation rec { substituteInPlace tools/build_rules/test_rules.bzl \ --replace /bin/bash ${customBash}/bin/bash + for i in $(find tools/cpp/ -type f) + do + substituteInPlace $i \ + --replace /bin/bash ${customBash}/bin/bash + done # Fixup scripts that generate scripts. Not fixed up by patchShebangs below. substituteInPlace scripts/bootstrap/compile.sh \ diff --git a/pkgs/development/tools/build-managers/bazel/src-deps.json b/pkgs/development/tools/build-managers/bazel/src-deps.json index a0d07f1a68d..fc3fe13f580 100644 --- a/pkgs/development/tools/build-managers/bazel/src-deps.json +++ b/pkgs/development/tools/build-managers/bazel/src-deps.json @@ -7,12 +7,20 @@ "https://github.com/bazelbuild/rules_nodejs/archive/0.16.2.zip" ] }, - "2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz": { - "name": "2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz", - "sha256": "4a1318fed4831697b83ce879b3ab70ae09592b167e5bda8edaff45132d1c3b3f", + "1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz": { + "name": "1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz", + "sha256": "3ca1b3d453a977aeda60dd335feb812771addfd0d0c61751b34b9681aa4d6534", "urls": [ - "https://mirror.bazel.build/github.com/bazelbuild/skydoc/archive/2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz", - "https://github.com/bazelbuild/skydoc/archive/2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz" + "https://mirror.bazel.build/github.com/bazelbuild/skydoc/archive/1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz", + "https://github.com/bazelbuild/skydoc/archive/1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz" + ] + }, + "441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip": { + "name": "441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip", + "sha256": "a07fe5e75964361885db725039c2ba673f0ee0313d971ae4f50c9b18cd28b0b5", + "urls": [ + "https://mirror.bazel.build/github.com/bazelbuild/platforms/archive/441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip", + "https://github.com/bazelbuild/platforms/archive/441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip" ] }, "8ccf4f1c351928b55d5dddf3672e3667f6978d60.tar.gz": { @@ -23,11 +31,11 @@ "https://github.com/bazelbuild/rules_sass/archive/8ccf4f1c351928b55d5dddf3672e3667f6978d60.tar.gz" ] }, - "android_tools_pkg-0.4.tar.gz": { - "name": "android_tools_pkg-0.4.tar.gz", - "sha256": "331e7706f2bcae8a68057d8ddd3e3f1574bca26c67c65802fc4a8ac6164fa912", + "android_tools_pkg-0.7.tar.gz": { + "name": "android_tools_pkg-0.7.tar.gz", + "sha256": "a8e48f2fdee2c34b31f45bd47ce050a75ac774f19e0a1f6694fa49fc11d88718", "urls": [ - "https://mirror.bazel.build/bazel_android_tools/android_tools_pkg-0.4.tar.gz" + "https://mirror.bazel.build/bazel_android_tools/android_tools_pkg-0.7.tar.gz" ] }, "bazel_j2objc": { @@ -41,11 +49,11 @@ }, "bazel_rbe_toolchains": { "name": "bazel_rbe_toolchains", - "sha256": "f575778fb1366718f5e1204200ecf35796c558998c15303945d351f0b42669e5", - "strip_prefix": "bazel_rbe_toolchains-f50471a57cd05a313a953fa54756db6e8fd93673", + "sha256": "e2b8644caa15235a488e831264e5dcb014e2cdf3b697319bc1e9d6b0fff0b4b9", + "strip_prefix": "bazel_rbe_toolchains-01529a65d21abdf71635ff0c2472043a567ecded", "urls": [ - "https://mirror.bazel.build/github.com/buchgr/bazel_rbe_toolchains/archive/f50471a57cd05a313a953fa54756db6e8fd93673.tar.gz", - "https://github.com/buchgr/bazel_rbe_toolchains/archive/f50471a57cd05a313a953fa54756db6e8fd93673.tar.gz" + "https://mirror.bazel.build/github.com/buchgr/bazel_rbe_toolchains/archive/01529a65d21abdf71635ff0c2472043a567ecded.tar.gz", + "https://github.com/buchgr/bazel_rbe_toolchains/archive/01529a65d21abdf71635ff0c2472043a567ecded.tar.gz" ] }, "bazel_skylib": { @@ -127,11 +135,11 @@ }, "io_bazel_skydoc": { "name": "io_bazel_skydoc", - "sha256": "4a1318fed4831697b83ce879b3ab70ae09592b167e5bda8edaff45132d1c3b3f", - "strip_prefix": "skydoc-2d9566b21fbe405acf5f7bf77eda30df72a4744c", + "sha256": "3ca1b3d453a977aeda60dd335feb812771addfd0d0c61751b34b9681aa4d6534", + "strip_prefix": "skydoc-1ca560df1cf6e280f987af2f8d08a5edc7ac6b54", "urls": [ - "https://mirror.bazel.build/github.com/bazelbuild/skydoc/archive/2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz", - "https://github.com/bazelbuild/skydoc/archive/2d9566b21fbe405acf5f7bf77eda30df72a4744c.tar.gz" + "https://mirror.bazel.build/github.com/bazelbuild/skydoc/archive/1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz", + "https://github.com/bazelbuild/skydoc/archive/1ca560df1cf6e280f987af2f8d08a5edc7ac6b54.tar.gz" ] }, "java_tools_javac11_darwin-v2.0.zip": { @@ -169,6 +177,13 @@ "https://mirror.bazel.build/bazel_java_tools/jdk_langtools/langtools_jdk11.zip" ] }, + "java_tools_langtools_javac12": { + "name": "java_tools_langtools_javac12", + "sha256": "99b107105165a91df82cd7cf82a8efb930d803fb7de1663cf7f780142104cd14", + "urls": [ + "https://mirror.bazel.build/bazel_java_tools/jdk_langtools/langtools_jdk12.zip" + ] + }, "java_tools_langtools_javac9": { "name": "java_tools_langtools_javac9", "sha256": "3b6bbc47256acf2f61883901e2d4e3f9b292f5fe154a6912b928805de24cb864", @@ -235,11 +250,27 @@ ] }, "openjdk_linux_aarch64": { + "downloaded_file_path": "zulu-linux-aarch64.tar.gz", "name": "openjdk_linux_aarch64", - "sha256": "72e7843902b0395e2d30e1e9ad2a5f05f36a4bc62529828bcbc698d54aec6022", + "sha256": "23c37c0c3a8fdcbc68e96e70ff5c5c020c14db76deaae9b547849afda4586e5e", "urls": [ - "https://mirror.bazel.build/openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz", - "http://openjdk.linaro.org/releases/jdk9-server-release-1708.tar.xz" + "https://mirror.bazel.build/openjdk/azul-zulu11.31.15-ca-jdk11.0.3/zulu11.31.15-ca-jdk11.0.3-linux_aarch64-allmodules-c82eb4878c7dc829455caeb915affe36c89df06f-1561630858.tar.gz" + ] + }, + "openjdk_linux_aarch64_minimal": { + "downloaded_file_path": "zulu-linux-aarch64-minimal.tar.gz", + "name": "openjdk_linux_aarch64_minimal", + "sha256": "7af2583fe5ef0a781d4a9dca0c0160d42e7db1305ec1b66f98aa44c91cc875df", + "urls": [ + "https://mirror.bazel.build/openjdk/azul-zulu11.31.15-ca-jdk11.0.3/zulu11.31.15-ca-jdk11.0.3-linux_aarch64-minimal-c82eb4878c7dc829455caeb915affe36c89df06f-1561630858.tar.gz" + ] + }, + "openjdk_linux_aarch64_vanilla": { + "downloaded_file_path": "zulu-linux-aarch64-vanilla.tar.gz", + "name": "openjdk_linux_aarch64_vanilla", + "sha256": "3b0d91611b1bdc4d409afcf9eab4f0e7f4ae09f88fc01bd9f2b48954882ae69b", + "urls": [ + "https://mirror.bazel.build/openjdk/azul-zulu11.31.15-ca-jdk11.0.3/zulu11.31.15-ca-jdk11.0.3-linux_aarch64.tar.gz" ] }, "openjdk_linux_minimal": { @@ -306,6 +337,15 @@ "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64.zip" ] }, + "platforms": { + "name": "platforms", + "sha256": "a07fe5e75964361885db725039c2ba673f0ee0313d971ae4f50c9b18cd28b0b5", + "strip_prefix": "platforms-441afe1bfdadd6236988e9cac159df6b5a9f5a98", + "urls": [ + "https://mirror.bazel.build/github.com/bazelbuild/platforms/archive/441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip", + "https://github.com/bazelbuild/platforms/archive/441afe1bfdadd6236988e9cac159df6b5a9f5a98.zip" + ] + }, "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz": { "name": "zulu10.2+3-jdk10.0.1-linux_x64-allmodules.tar.gz", "sha256": "57fad3602e74c79587901d6966d3b54ef32cb811829a2552163185d5064fe9b5", @@ -369,6 +409,13 @@ "https://mirror.bazel.build/openjdk/azul-zulu11.29.3-ca-jdk11.0.2/zulu11.29.3-ca-jdk11.0.2-win_x64.zip" ] }, + "zulu11.31.15-ca-jdk11.0.3-linux_aarch64.tar.gz": { + "name": "zulu11.31.15-ca-jdk11.0.3-linux_aarch64.tar.gz", + "sha256": "3b0d91611b1bdc4d409afcf9eab4f0e7f4ae09f88fc01bd9f2b48954882ae69b", + "urls": [ + "https://mirror.bazel.build/openjdk/azul-zulu11.31.15-ca-jdk11.0.3/zulu11.31.15-ca-jdk11.0.3-linux_aarch64.tar.gz" + ] + }, "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz": { "name": "zulu9.0.7.1-jdk9.0.7-linux_x64-allmodules.tar.gz", "sha256": "f27cb933de4f9e7fe9a703486cf44c84bc8e9f138be0c270c9e5716a32367e87", From 003ffbe7d6d07c4fcd8f5ca41065736aa53171f0 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 17:58:24 +0200 Subject: [PATCH 0370/1611] wavpack: CVE-2018-19840 --- pkgs/development/libraries/wavpack/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/wavpack/default.nix b/pkgs/development/libraries/wavpack/default.nix index 7163e2a87d7..aa45b72d4dd 100644 --- a/pkgs/development/libraries/wavpack/default.nix +++ b/pkgs/development/libraries/wavpack/default.nix @@ -49,6 +49,11 @@ stdenv.mkDerivation rec { name = "CVE-2019-11498-4.patch"; sha256 = "0qdw071b14hmxkjw6kn83d8hzq89l3hqh64pl1f1wb8m51w5xfg7"; }) + (fetchpatch { + url = "https://github.com/dbry/WavPack/commit/070ef6f138956d9ea9612e69586152339dbefe51.patch"; + name = "CVE-2018-19840.patch"; + sha256 = "08y27py8hnki74ad8wbknnd36vj5pzzcm2vk3ngcbsjnj7x5mffz"; + }) ]; meta = with stdenv.lib; { From 71a37531906732665ada409d00e501085f9d4394 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 18:00:18 +0200 Subject: [PATCH 0371/1611] wavpack: CVE-2018-19841 --- pkgs/development/libraries/wavpack/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/wavpack/default.nix b/pkgs/development/libraries/wavpack/default.nix index aa45b72d4dd..adfce3ea50b 100644 --- a/pkgs/development/libraries/wavpack/default.nix +++ b/pkgs/development/libraries/wavpack/default.nix @@ -54,6 +54,11 @@ stdenv.mkDerivation rec { name = "CVE-2018-19840.patch"; sha256 = "08y27py8hnki74ad8wbknnd36vj5pzzcm2vk3ngcbsjnj7x5mffz"; }) + (fetchpatch { + url = "https://github.com/dbry/WavPack/commit/bba5389dc598a92bdf2b297c3ea34620b6679b5b.patch"; + name = "CVE-2018-19841.patch"; + sha256 = "08gx5xx51bi86cqqy7cv1d25k669a7wnkksasjspphwkpwkcxymy"; + }) ]; meta = with stdenv.lib; { From d0823eba2c245e978f87c3c8fbf39b3ef4fea4c2 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 09:05:21 -0700 Subject: [PATCH 0372/1611] python37Packages.typing-extensions: 3.7.2 -> 3.7.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-typing_extensions/versions --- pkgs/development/python-modules/typing-extensions/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/typing-extensions/default.nix b/pkgs/development/python-modules/typing-extensions/default.nix index daaafbd7b3e..ef5fed68912 100644 --- a/pkgs/development/python-modules/typing-extensions/default.nix +++ b/pkgs/development/python-modules/typing-extensions/default.nix @@ -4,11 +4,11 @@ let in buildPythonPackage rec { pname = "typing_extensions"; - version = "3.7.2"; + version = "3.7.4"; src = fetchPypi { inherit pname version; - sha256 = "0wfsv71pvkyf2na938l579jh0v3kzl6g744ijgnahcwd4d9x0b7v"; + sha256 = "15bx773a5zkk4hkwjl8nb5f8y5741vyyqb9q3jac6kxm1frk5mif"; }; checkInputs = lib.optional (pythonOlder "3.5") typing; From e45cea0c769f3fddf5d00e9fcab604e5c17d4089 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 09:19:44 -0700 Subject: [PATCH 0373/1611] qjackctl: 0.5.8 -> 0.5.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qjackctl/versions --- pkgs/applications/audio/qjackctl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/qjackctl/default.nix b/pkgs/applications/audio/qjackctl/default.nix index fbb2f498c0b..15901915201 100644 --- a/pkgs/applications/audio/qjackctl/default.nix +++ b/pkgs/applications/audio/qjackctl/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }: stdenv.mkDerivation rec { - version = "0.5.8"; + version = "0.5.9"; name = "qjackctl-${version}"; # some dependencies such as killall have to be installed additionally src = fetchurl { url = "mirror://sourceforge/qjackctl/${name}.tar.gz"; - sha256 = "1r5hf3hcr20n93jrrm7xk2zf6yx264pcr4d10cpybhrancxh602n"; + sha256 = "1saywsda9m124rmjp7i3n0llryaliabjxhqhvqr6dm983qy7pypk"; }; buildInputs = [ From 487da714bf3263f93b789c966c9108dd18db4cea Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 09:36:26 -0700 Subject: [PATCH 0374/1611] python37Packages.pysaml2: 4.7.0 -> 4.8.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pysaml2/versions --- pkgs/development/python-modules/pysaml2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysaml2/default.nix b/pkgs/development/python-modules/pysaml2/default.nix index 9512fce4f45..1528623aa0e 100644 --- a/pkgs/development/python-modules/pysaml2/default.nix +++ b/pkgs/development/python-modules/pysaml2/default.nix @@ -9,14 +9,14 @@ buildPythonPackage rec { pname = "pysaml2"; - version = "4.7.0"; + version = "4.8.0"; # No tests in PyPI tarball src = fetchFromGitHub { owner = "IdentityPython"; repo = pname; rev = "v${version}"; - sha256 = "1bpfvy2xd3aqf79ihglmxlxnv7406184p99h5mn5h9ifs54vvhhl"; + sha256 = "1nnmk7apg169bawqi06jbx3p0x4sq12kszzl7k6j39273hqq5ii4"; }; patches = [ From a5311930e1d398c591e88060383b69b5b3966741 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 09:54:32 -0700 Subject: [PATCH 0375/1611] python37Packages.s3fs: 0.2.1 -> 0.2.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-s3fs/versions --- pkgs/development/python-modules/s3fs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/s3fs/default.nix b/pkgs/development/python-modules/s3fs/default.nix index 0a974133252..157549a6f17 100644 --- a/pkgs/development/python-modules/s3fs/default.nix +++ b/pkgs/development/python-modules/s3fs/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "s3fs"; - version = "0.2.1"; + version = "0.2.2"; src = fetchPypi { inherit pname version; - sha256 = "2146aae91ba3a06d7bfa7130688219599f8696d2825fb00f62923bb56f6e7ed3"; + sha256 = "1l3vdy3h6l03kjjzq1vq7h252749f8dg7kkz65s890y4xxvjxlyw"; }; buildInputs = [ docutils ]; From fb71cabd46ae6a83ad33d225a0a724f4ab095ae0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 10:06:19 -0700 Subject: [PATCH 0376/1611] python37Packages.yapf: 0.27.0 -> 0.28.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-yapf/versions --- pkgs/development/python-modules/yapf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/yapf/default.nix b/pkgs/development/python-modules/yapf/default.nix index 78e97014189..abff04f2372 100644 --- a/pkgs/development/python-modules/yapf/default.nix +++ b/pkgs/development/python-modules/yapf/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "yapf"; - version = "0.27.0"; + version = "0.28.0"; src = fetchPypi { inherit pname version; - sha256 = "18a7n85xv0qrab2ck94kw92ncjq2l8vl0k34pm22rjvd8h6gixil"; + sha256 = "06x409cgr5im9cppzypj1kqy1fsry906vn5slv7i9hd7fshvd53g"; }; meta = with stdenv.lib; { From f91d69307c6aac6e6c6dee549317a0c6c9a77252 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 10:25:47 -0700 Subject: [PATCH 0377/1611] qsampler: 0.5.5 -> 0.5.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qsampler/versions --- pkgs/applications/audio/qsampler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/qsampler/default.nix b/pkgs/applications/audio/qsampler/default.nix index b09aa835c9f..4e6df82a32a 100644 --- a/pkgs/applications/audio/qsampler/default.nix +++ b/pkgs/applications/audio/qsampler/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "qsampler-${version}"; - version = "0.5.5"; + version = "0.5.6"; src = fetchurl { url = "mirror://sourceforge/qsampler/${name}.tar.gz"; - sha256 = "1li2p8zknrdr62wlaassfvgski0rlbr3lvrzywbh32dq8j50w8zf"; + sha256 = "0lx2mzyajmjckwfvgf8p8bahzpj0n0lflyip41jk32nwd2hzjhbs"; }; nativeBuildInputs = [ autoconf automake libtool pkgconfig qttools ]; From a5a6c2654fa70c95714fa8877891b18ca56f879e Mon Sep 17 00:00:00 2001 From: rembo10 Date: Tue, 16 Jul 2019 19:27:25 +0200 Subject: [PATCH 0378/1611] sickgear: 0.18.14 -> 0.20.0 --- pkgs/servers/sickbeard/sickgear.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/sickbeard/sickgear.nix b/pkgs/servers/sickbeard/sickgear.nix index 7a0994ef814..1b7a57e8b50 100644 --- a/pkgs/servers/sickbeard/sickgear.nix +++ b/pkgs/servers/sickbeard/sickgear.nix @@ -4,13 +4,13 @@ let pythonEnv = python2.withPackages(ps: with ps; [ cheetah ]); in stdenv.mkDerivation rec { pname = "sickgear"; - version = "0.18.14"; + version = "0.20.0"; src = fetchFromGitHub { owner = "SickGear"; repo = "SickGear"; rev = "release_${version}"; - sha256 = "0sw436zbsaxwy58lfkgw6gb6hapxxxl4wipkpzd80dgaz7bvd7c3"; + sha256 = "1zg95szvfbmwinx1z5nlbmyck7ximvyna0x71yflmadkgf88nv0k"; }; dontBuild = true; @@ -21,7 +21,7 @@ in stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin - cp -R {autoProcessTV,gui,lib,sickbeard,SickBeard.py} $out/ + cp -R {autoProcessTV,gui,lib,sickbeard,sickgear.py,SickBeard.py} $out/ makeWrapper $out/SickBeard.py $out/bin/sickgear ''; @@ -30,6 +30,6 @@ in stdenv.mkDerivation rec { description = "The most reliable stable TV fork of the great Sick-Beard to fully automate TV enjoyment with innovation"; license = licenses.gpl3; homepage = "https://github.com/SickGear/SickGear"; - maintainers = with stdenv.lib.maintainers; [ ]; + maintainers = with stdenv.lib.maintainers; [ rembo10 ]; }; } From 2e4fe8db89be78313282fbe002d8ea921931dbe8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:04:15 -0700 Subject: [PATCH 0379/1611] pgbouncer: 1.9.0 -> 1.10.0 (#64869) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pgbouncer/versions --- pkgs/servers/sql/pgbouncer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/pgbouncer/default.nix b/pkgs/servers/sql/pgbouncer/default.nix index ef8b77ad117..3b4a0543e18 100644 --- a/pkgs/servers/sql/pgbouncer/default.nix +++ b/pkgs/servers/sql/pgbouncer/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "pgbouncer-${version}"; - version = "1.9.0"; + version = "1.10.0"; src = fetchurl { url = "https://pgbouncer.github.io/downloads/files/${version}/${name}.tar.gz"; - sha256 = "012zh9l68r1ramrd66yam6y3al0i85dvvg4wwwkn6qwq6dhskv1r"; + sha256 = "1m8vsxyna5grs5p0vnxf3fxxnkk9aqjf3qmr2bbkpkhlzr11986q"; }; buildInputs = [ libevent openssl ]; From 2c7b84e5b0aa7d979f9fcb7d85119074803967a9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:12:49 -0700 Subject: [PATCH 0380/1611] qmidinet: 0.5.4 -> 0.5.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qmidinet/versions --- pkgs/applications/audio/qmidinet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/qmidinet/default.nix b/pkgs/applications/audio/qmidinet/default.nix index b596e74a264..16e76bb631c 100644 --- a/pkgs/applications/audio/qmidinet/default.nix +++ b/pkgs/applications/audio/qmidinet/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pkgconfig, qt5, alsaLib, libjack2 }: stdenv.mkDerivation rec { - version = "0.5.4"; + version = "0.5.5"; name = "qmidinet-${version}"; src = fetchurl { url = "mirror://sourceforge/qmidinet/${name}.tar.gz"; - sha256 = "1il4b8v3azb33yg4fy78npi56xlkz4n60f17sgvckyxb2yj57jwq"; + sha256 = "0az20hh14g7k6h779dk1b6fshxnfj2664sj6ypgllzriwv430x9y"; }; hardeningDisable = [ "format" ]; From f612ab79002c546d668c4f4ee3d5321fc814b838 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:25:21 -0700 Subject: [PATCH 0381/1611] python37Packages.jupytext: 1.1.3 -> 1.1.7 (#64898) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-jupytext/versions --- pkgs/development/python-modules/jupytext/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jupytext/default.nix b/pkgs/development/python-modules/jupytext/default.nix index f7ac30c28c5..66e79227697 100644 --- a/pkgs/development/python-modules/jupytext/default.nix +++ b/pkgs/development/python-modules/jupytext/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "jupytext"; - version = "1.1.3"; + version = "1.1.7"; src = fetchPypi { inherit pname version; - sha256 = "1klcx333kpgb5gbaasmz07brqjxvls3l5dpj0kv9cfsd76cq17yh"; + sha256 = "0g365j22gbmq4x60l06id5930aywzy1dx2s25109nqq2l2cxc7ws"; }; propagatedBuildInputs = [ From ee0b884675a11af1e6f0cb33c30819203b4291e8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:25:42 -0700 Subject: [PATCH 0382/1611] qdirstat: 1.5 -> 1.5.90 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qdirstat/versions --- pkgs/applications/misc/qdirstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/qdirstat/default.nix b/pkgs/applications/misc/qdirstat/default.nix index abf4bb05462..a45f12293fd 100644 --- a/pkgs/applications/misc/qdirstat/default.nix +++ b/pkgs/applications/misc/qdirstat/default.nix @@ -3,7 +3,7 @@ , makeWrapper, perlPackages }: let - version = "1.5"; + version = "1.5.90"; in stdenv.mkDerivation rec { name = "qdirstat-${version}"; @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { owner = "shundhammer"; repo = "qdirstat"; rev = "${version}"; - sha256 = "1v879kd7zahalb2qazq61wzi364k5cy3lgy6c8wj6mclwxjws1vc"; + sha256 = "161jzii5p0dflbpixibn3yhp13smjf6aw802rz1q4879s12gqdq6"; }; nativeBuildInputs = [ qmake makeWrapper ]; From 1cf88a612a9e8131ff0920940a11e038e324d07e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 12:02:15 -0700 Subject: [PATCH 0383/1611] sc-controller: 0.4.6.1 -> 0.4.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sc-controller/versions --- pkgs/misc/drivers/sc-controller/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/drivers/sc-controller/default.nix b/pkgs/misc/drivers/sc-controller/default.nix index 764e60ac13b..b977b2c0c15 100644 --- a/pkgs/misc/drivers/sc-controller/default.nix +++ b/pkgs/misc/drivers/sc-controller/default.nix @@ -7,13 +7,13 @@ buildPythonApplication rec { pname = "sc-controller"; - version = "0.4.6.1"; + version = "0.4.7"; src = fetchFromGitHub { owner = "kozec"; repo = pname; rev = "v${version}"; - sha256 = "1kcqsnrlwl4s94j6ahgkz3w4sy9hsr95y624zab6g10w0fl5sqrc"; + sha256 = "1dskjh5qcjf4x21n4nk1zvdfivbgimsrc2lq1id85bibzps29499"; }; nativeBuildInputs = [ wrapGAppsHook ]; From b2032beb07169d17133e84e6f76d6719fd88ad89 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 12:08:24 -0700 Subject: [PATCH 0384/1611] slurm: 19.05.0.1 -> 19.05.1.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/slurm/versions --- pkgs/servers/computing/slurm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/computing/slurm/default.nix b/pkgs/servers/computing/slurm/default.nix index b1233b76464..c18e71977d8 100644 --- a/pkgs/servers/computing/slurm/default.nix +++ b/pkgs/servers/computing/slurm/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { name = "slurm-${version}"; - version = "19.05.0.1"; + version = "19.05.1.2"; # N.B. We use github release tags instead of https://www.schedmd.com/downloads.php # because the latter does not keep older releases. @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { repo = "slurm"; # The release tags use - instead of . rev = "${builtins.replaceStrings ["."] ["-"] name}"; - sha256 = "0cc1lac7x00s1zz8p9sbaj6zg4yf4ngr0ldszhpxpvykhx9wzfay"; + sha256 = "1r2hxfshz929fcys90rmnj8s7f204q364m6bazhiy8hhm3bsf42k"; }; outputs = [ "out" "dev" ]; From 2110e1bdd8a8a03d2d784672a9d1e9d1b7b64614 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 12:14:56 -0700 Subject: [PATCH 0385/1611] SDL2_image: 2.0.4 -> 2.0.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sdl2_image/versions --- pkgs/development/libraries/SDL2_image/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/SDL2_image/default.nix b/pkgs/development/libraries/SDL2_image/default.nix index a2ef54cc136..ba33b1fbc1d 100644 --- a/pkgs/development/libraries/SDL2_image/default.nix +++ b/pkgs/development/libraries/SDL2_image/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "SDL2_image-${version}"; - version = "2.0.4"; + version = "2.0.5"; src = fetchurl { url = "https://www.libsdl.org/projects/SDL_image/release/${name}.tar.gz"; - sha256 = "1b6f7002bm007y3zpyxb5r6ag0lml51jyvx1pwpj9sq24jfc8kp7"; + sha256 = "1l0864kas9cwpp2d32yxl81g98lx40dhbdp03dz7sbv84vhgdmdx"; }; buildInputs = [ SDL2 libpng libjpeg libtiff libungif libwebp libXpm zlib ] From a02449824e55431d8dd2420d8d77623bf849deec Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Fri, 28 Jun 2019 13:19:56 +0200 Subject: [PATCH 0386/1611] guardian-agent: init at 0.7.2-beta --- .../networking/guardian-agent/default.nix | 44 ++++++++++++++ pkgs/tools/networking/guardian-agent/deps.nix | 58 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 3 files changed, 104 insertions(+) create mode 100644 pkgs/tools/networking/guardian-agent/default.nix create mode 100644 pkgs/tools/networking/guardian-agent/deps.nix diff --git a/pkgs/tools/networking/guardian-agent/default.nix b/pkgs/tools/networking/guardian-agent/default.nix new file mode 100644 index 00000000000..a5e8dc10d34 --- /dev/null +++ b/pkgs/tools/networking/guardian-agent/default.nix @@ -0,0 +1,44 @@ +{ buildGoPackage +, fetchFromGitHub +, lib +, autossh +, makeWrapper +}: + +buildGoPackage rec { + pname = "guardian-agent"; + version = "0.7.2"; + + src = fetchFromGitHub { + owner = "StanfordSNR"; + repo = pname; + rev = "v${version}-beta"; + sha256 = "05269y944hcabn6dqa66387rdhx81vcqcyjv6m1hdbz5ba8j7mqn"; + }; + + nativeBuildInputs = [ makeWrapper ]; + + goPackagePath = "github.com/StanfordSNR/guardian-agent"; + + goDeps = ./deps.nix; + + postInstall = '' + mkdir -p $bin/bin $out/share/doc/${pname} + cp -v ./go/src/github.com/StanfordSNR/${pname}/scripts/* $bin/bin/ + cp -vr ./go/src/github.com/StanfordSNR/${pname}/{AUTHORS,doc,LICENSE,README.md} $out/share/doc/guardian-agent + ''; + + postFixup = '' + wrapProgram $bin/bin/sga-guard \ + --prefix PATH : "$bin/bin" \ + --prefix PATH : "${autossh}/bin" + ''; + + meta = with lib; { + description = "Secure ssh-agent forwarding for Mosh and SSH"; + homepage = "https://github.com/StanfordSNR/guardian-agent"; + license = licenses.bsd3; + maintainers = with maintainers; [ mmahut ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/networking/guardian-agent/deps.nix b/pkgs/tools/networking/guardian-agent/deps.nix new file mode 100644 index 00000000000..950a346ce8b --- /dev/null +++ b/pkgs/tools/networking/guardian-agent/deps.nix @@ -0,0 +1,58 @@ +# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 +[ + { + goPackagePath = "github.com/hashicorp/yamux"; + fetch = { + type = "git"; + url = "https://github.com/hashicorp/yamux"; + rev = "2f1d1f20f75d5404f53b9edf6b53ed5505508675"; + sha256 = "1fga3p6j2g24ip9qjfwn3nqjr00m4nnjz92app7ms3sz7vgq2a7s"; + }; + } + { + goPackagePath = "github.com/howeyc/gopass"; + fetch = { + type = "git"; + url = "https://github.com/howeyc/gopass"; + rev = "bf9dde6d0d2c004a008c27aaee91170c786f6db8"; + sha256 = "1jxzyfnqi0h1fzlsvlkn10bncic803bfhslyijcxk55mgh297g45"; + }; + } + { + goPackagePath = "github.com/sternhenri/interact"; + fetch = { + type = "git"; + url = "https://github.com/sternhenri/interact"; + rev = "dfeb9ef2030483f98cee2c86f5775fe6c729f10b"; + sha256 = "00b09fyy9zhv11mbzm18ngg765g0gyb23bmr4fc83i09w912if7j"; + }; + } + { + goPackagePath = "golang.org/x/sys"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sys"; + rev = "04f50cda93cbb67f2afa353c52f342100e80e625"; + sha256 = "0hmfsz9y1ingwsn482hlzzmzs7kr3cklm0ana0mbdk70isw2bxnw"; + }; + } + { + goPackagePath = "golang.org/x/crypto"; + fetch = { + type = "git"; + url = "https://github.com/StanfordSNR/crypto"; + rev = "e451cabda2acd7a416728ee89b75975b8b0c90d7"; + sha256 = "0aj6fc0i1dm6rdgr1mlv2pl4s0i6sj821k2p4gig45h5mn06mhpz"; + }; + } + { + goPackagePath = "github.com/jessevdk/go-flags"; + fetch = { + type = "git"; + url = "https://github.com/jessevdk/go-flags"; + rev = "c0795c8afcf41dd1d786bebce68636c199b3bb45"; + sha256 = "0xsmr17mrpm9kx34zfzzirwy0n459h975x49p41fs2f6ly6lk9vp"; + }; + } + +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4b2f881fc1e..971c3bf2a47 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18317,6 +18317,8 @@ in guake = callPackage ../applications/misc/guake { }; + guardian-agent = callPackage ../tools/networking/guardian-agent { }; + guitone = callPackage ../applications/version-management/guitone { graphviz = graphviz_2_32; }; From 01cdf214e0923037b4ff8ac913c4991c7765dc2b Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Tue, 16 Jul 2019 15:25:30 -0400 Subject: [PATCH 0387/1611] teleport: 3.1.8 -> 4.0.2 --- pkgs/servers/teleport/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/teleport/default.nix b/pkgs/servers/teleport/default.nix index 8651c157dab..e645ef2dc35 100644 --- a/pkgs/servers/teleport/default.nix +++ b/pkgs/servers/teleport/default.nix @@ -3,14 +3,14 @@ buildGoPackage rec { name = "teleport-${version}"; - version = "3.1.8"; + version = "4.0.2"; # This repo has a private submodule "e" which fetchgit cannot handle without failing. src = fetchFromGitHub { owner = "gravitational"; repo = "teleport"; rev = "v${version}"; - sha256 = "1jkng8zr5x7z9np2wm9ya1j1zv7bhcv9qsmgmrlfy6y9ld3bq8r2"; + sha256 = "0rnjw297pkkhpqisrs5ghgvzlklk7kbhrz7rhr91b5rx3lr9c1ny"; }; goPackagePath = "github.com/gravitational/teleport"; From db599c86c5fa2669b0f658344d7d5ad3064986f8 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 15:39:08 +0200 Subject: [PATCH 0388/1611] cypress: init at 3.4.0 --- pkgs/development/web/cypress/default.nix | 40 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/web/cypress/default.nix diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix new file mode 100644 index 00000000000..e36b950f1f2 --- /dev/null +++ b/pkgs/development/web/cypress/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip }: + +stdenv.mkDerivation rec{ + pname = "cypress"; + version = "3.4.0"; + + src = fetchzip { + url = "https://cdn.cypress.io/desktop/${version}/linux-x64/cypress.zip"; + sha256 = "1j59az9j37a61ryvh975bc7bj43qi3dq0871fyambh1j2mby00qn"; + }; + + # don't remove runtime deps + dontPatchELF = true; + + nativeBuildInputs = [ autoPatchelfHook ]; + + buildInputs = with xorg; [ + libXScrnSaver libXdamage libXtst + ] ++ [ + nss gtk2 alsaLib gnome2.GConf gtk3 unzip + ]; + + runtimeDependencies = [ udev.lib ]; + + installPhase = '' + mkdir -p $out/bin $out/opt/cypress + cp -vr * $out/opt/cypress/ + # Let's create the file binary_state ourselves to make the npm package happy on initial verification. + echo '{"verified": true}' > $out/opt/cypress/binary_state.json + ln -s $out/opt/cypress/Cypress $out/bin/Cypress + ''; + + meta = with stdenv.lib; { + description = "Fast, easy and reliable testing for anything that runs in a browser"; + homepage = "https://www.cypress.io"; + license = licenses.mit; + platforms = ["x86_64-linux"]; + maintainers = with maintainers; [ tweber mmahut ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fa09eed2c0c..c5ca8079d1d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10237,6 +10237,8 @@ in cxxtest = callPackage ../development/libraries/cxxtest { }; + cypress = callPackage ../development/web/cypress { }; + cyrus_sasl = callPackage ../development/libraries/cyrus-sasl { kerberos = if stdenv.isFreeBSD then libheimdal else kerberos; }; From e7e690b6431441d389d34b9935dc7b7b68582045 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 16 Jul 2019 16:31:36 -0400 Subject: [PATCH 0389/1611] pythonPackages.texttable: update homepage --- pkgs/development/python-modules/texttable/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/texttable/default.nix b/pkgs/development/python-modules/texttable/default.nix index 1d55d6aff30..a8c20a0eeac 100644 --- a/pkgs/development/python-modules/texttable/default.nix +++ b/pkgs/development/python-modules/texttable/default.nix @@ -12,9 +12,9 @@ buildPythonPackage rec { sha256 = "1x5l77akfc20x52jma9573qp8l8r07q103pm4l0pbizvh4vp1wzg"; }; - meta = { + meta = with lib; { description = "A module to generate a formatted text table, using ASCII characters"; - homepage = http://foutaise.org/code/; - license = lib.licenses.lgpl2; + homepage = "https://github.com/foutaise/texttable"; + license = licenses.lgpl2; }; -} \ No newline at end of file +} From 38ec5055494ec88883e0033b7078ae6d45ced85a Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 16:14:35 +0200 Subject: [PATCH 0390/1611] libosinfo: CVE-2019-13313 Fixes #64660 --- pkgs/development/libraries/libosinfo/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libosinfo/default.nix b/pkgs/development/libraries/libosinfo/default.nix index 04f0db030bb..b971c8924f3 100644 --- a/pkgs/development/libraries/libosinfo/default.nix +++ b/pkgs/development/libraries/libosinfo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool, gobject-introspection, gtk-doc, docbook_xsl +{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, gobject-introspection, gtk-doc, docbook_xsl , glib, libsoup, libxml2, libxslt, check, curl, perl, hwdata, osinfo-db, vala ? null }: @@ -21,6 +21,17 @@ stdenv.mkDerivation rec { patches = [ ./osinfo-db-data-dir.patch + # https://nvd.nist.gov/vuln/detail/CVE-2019-13313 + (fetchpatch { + url = "https://gitlab.com/libosinfo/libosinfo/commit/3654abee6ead9f11f8bb9ba8fc71efd6fa4dabbc.patch"; + name = "CVE-2019-13313-1.patch"; + sha256 = "1lybywfj6b41zfjk33ap90bab5l84lf5y3kif7vd2b6wq5r91rcn"; + }) + (fetchpatch { + url = "https://gitlab.com/libosinfo/libosinfo/commit/08fb8316b4ac42fe74c1fa5ca0ac593222cdf81a.patch"; + name = "CVE-2019-13313-2.patch"; + sha256 = "1f6rhkrgy3j8nmidk97wnz6p35zs1dsd63d3np76q7qs7ra74w9z"; + }) ]; postPatch = '' From a7958005fac0e84de8df9c1b781829be75034d26 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 13:58:03 -0700 Subject: [PATCH 0391/1611] rush: 1.9 -> 2.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rush/versions --- pkgs/shells/rush/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/rush/default.nix b/pkgs/shells/rush/default.nix index 3063e991d98..9db36bc85fc 100644 --- a/pkgs/shells/rush/default.nix +++ b/pkgs/shells/rush/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "rush"; - version = "1.9"; + version = "2.1"; src = fetchurl { url = "mirror://gnu/${pname}/${pname}-${version}.tar.gz"; - sha256 = "12x7dyi9vl3lwlv618156nzpi5s0li93wcx2c26h4z7la20yq2yk"; + sha256 = "17i4mggr3rnfz0xbhqvd86jqva40c535fhlwkb2l4hjcbpg8blcf"; }; doCheck = true; From 4f309207c70c85b20fbe11f207a96befc02e282a Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Tue, 16 Jul 2019 22:52:33 +0200 Subject: [PATCH 0392/1611] nixos/xserver: Make radeon in videoDrivers an alias for ati. The old open-source driver for AMD/ATI GPUs is commonly known as "radeon" despite the historical package name xf86-video-ati. For example it presents itself as RADEON in the Xorg log. So adding "radeon" to videoDrivers should work. Also changed the docs for the videoDrivers option to use "radeon" in the default value instead of "ati". Fixes #37917 --- nixos/modules/services/x11/xserver.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 82730c5e80c..b1a31670697 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -14,6 +14,9 @@ let # Alias so people can keep using "virtualbox" instead of "vboxvideo". virtualbox = { modules = [ xorg.xf86videovboxvideo ]; driverName = "vboxvideo"; }; + # Alias so that "radeon" uses the xf86-video-ati driver. + radeon = { modules = [ xorg.xf86videoati ]; driverName = "ati"; }; + # modesetting does not have a xf86videomodesetting package as it is included in xorgserver modesetting = {}; }; @@ -241,7 +244,7 @@ in videoDrivers = mkOption { type = types.listOf types.str; # !!! We'd like "nv" here, but it segfaults the X server. - default = [ "ati" "cirrus" "vesa" "vmware" "modesetting" ]; + default = [ "radeon" "cirrus" "vesa" "vmware" "modesetting" ]; example = [ "ati_unfree" "amdgpu" "amdgpu-pro" "nv" "nvidia" "nvidiaLegacy390" "nvidiaLegacy340" "nvidiaLegacy304" From 6c057aea5ce10871e5273dc2e3ea0b9e89c03e03 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 14 Jul 2019 00:03:34 -0400 Subject: [PATCH 0393/1611] wrapQtAppsHook: wrap binaries in libexec --- pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh index 83f62e4ec2b..bf7b07e2549 100644 --- a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh +++ b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh @@ -77,7 +77,7 @@ wrapQtAppsHook() { [ -z "$wrapQtAppsHookHasRun" ] || return 0 wrapQtAppsHookHasRun=1 - local targetDirs=( "$prefix/bin" ) + local targetDirs=( "$prefix/bin" "$prefix/libexec" ) echo "wrapping Qt applications in ${targetDirs[@]}" for targetDir in "${targetDirs[@]}" From 53d9338c9ee5847db472f51bec18836b01ebd249 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:09:05 -0400 Subject: [PATCH 0394/1611] pythonPackages.azure-common: refactor --- .../python-modules/azure-common/default.nix | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/azure-common/default.nix b/pkgs/development/python-modules/azure-common/default.nix index 7634be18104..3b25ce6bcfb 100644 --- a/pkgs/development/python-modules/azure-common/default.nix +++ b/pkgs/development/python-modules/azure-common/default.nix @@ -4,6 +4,7 @@ , azure-nspkg , isPyPy , python +, isPy3k }: buildPythonPackage rec { @@ -17,16 +18,20 @@ buildPythonPackage rec { sha256 = "25d696d2affbf5fe9b13aebe66271fce545e673e7e1eeaaec2d73599ba639d63"; }; - propagatedBuildInputs = [ azure-nspkg ]; + propagatedBuildInputs = [ + azure-nspkg + ]; - postInstall = '' + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py ''; + doCheck = false; + meta = with pkgs.lib; { - description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + description = "This is the Microsoft Azure common code"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-common; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From b0403da8596e62f7adf6c1ce2fa566b942cdfd29 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:17:22 -0400 Subject: [PATCH 0395/1611] pythonPackages.azure-mgmt-common: refactor sha differs from what is offered via pip, echo statement no longer necessary, updated metadata --- .../azure-mgmt-common/default.nix | 23 ++++++++++++------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-common/default.nix b/pkgs/development/python-modules/azure-mgmt-common/default.nix index c11b8707cb1..e948afd91cf 100644 --- a/pkgs/development/python-modules/azure-mgmt-common/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-common/default.nix @@ -6,6 +6,7 @@ , azure-mgmt-nspkg , requests , msrestazure +, isPy3k }: buildPythonPackage rec { @@ -15,20 +16,26 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "1rmzpz3733wv31rsnqpdy4bbafvk5dhbqx7q0xf62dlz7p0i4f66"; + sha256 = "c63812c13d9f36615c07f874bc602b733bb516f1ed62ab73189b8f71c6bfbfe6"; }; - propagatedBuildInputs = [ azure-common azure-mgmt-nspkg requests msrestazure ]; + propagatedBuildInputs = [ + azure-common + azure-mgmt-nspkg + requests + msrestazure + ]; - postInstall = '' - echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py ''; + doCheck = false; + meta = with pkgs.lib; { - description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + description = "This is the Microsoft Azure Resource Management common code"; + homepage = https://pypi.org/project/azure-mgmt-common; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From 3f669b4e54f3e39367179493f009db84fd6b2d48 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:22:42 -0400 Subject: [PATCH 0396/1611] pythonPackages.azure-mgmt-compute: 4.4.0 -> 5.0.0 --- .../azure-mgmt-compute/default.nix | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-compute/default.nix b/pkgs/development/python-modules/azure-mgmt-compute/default.nix index ffd2ea11d7c..3df307242cf 100644 --- a/pkgs/development/python-modules/azure-mgmt-compute/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-compute/default.nix @@ -1,31 +1,37 @@ -{ pkgs +{ lib , buildPythonPackage , fetchPypi , python , azure-mgmt-common +, isPy3k }: buildPythonPackage rec { - version = "4.4.0"; + version = "5.0.0"; pname = "azure-mgmt-compute"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "356219a354140ea26e6b4f4be4f855f1ffaf63af60de24cd2ca335b4ece9db00"; + sha256 = "1zdypc8f825n60341ai2482rwgsc7l8dpr691j8hqz571l80y85w"; }; - postInstall = '' + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py ''; - propagatedBuildInputs = [ azure-mgmt-common ]; + propagatedBuildInputs = [ + azure-mgmt-common + ]; - meta = with pkgs.lib; { - description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Compute Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-compute; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From 51eac934607580088e6a50451cc6e0dc1a959a06 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:23:48 -0400 Subject: [PATCH 0397/1611] pythonPackages.azure-mgmt-network: 2.5.1 -> 2.6.0 --- .../azure-mgmt-network/default.nix | 24 ++++++++++++------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-network/default.nix b/pkgs/development/python-modules/azure-mgmt-network/default.nix index 63457d6f542..29266aea7ee 100644 --- a/pkgs/development/python-modules/azure-mgmt-network/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-network/default.nix @@ -1,31 +1,37 @@ -{ pkgs +{ lib , buildPythonPackage , fetchPypi , azure-mgmt-common , python +, isPy3k }: buildPythonPackage rec { - version = "2.5.1"; + version = "2.6.0"; pname = "azure-mgmt-network"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "cef9bf5d36700966e52f7cea86e29c622bc5bbb92d0ce7a75420e29fb0e75f45"; + sha256 = "0166646703389374736cbe045ffb874e08796407ea0b1b5d441143b054a47e09"; }; - postInstall = '' + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py ''; - propagatedBuildInputs = [ azure-mgmt-common ]; + propagatedBuildInputs = [ + azure-mgmt-common + ]; - meta = with pkgs.lib; { + # has no tests + doCheck = false; + + meta = with lib; { description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/network?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From 707a567ebdcb0e6585d95bc5cd93d1cd3dd2dfef Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:25:41 -0400 Subject: [PATCH 0398/1611] pythonPackages.azure-mgmt-resource: refactor Removed doCheck and updated metadata --- .../python-modules/azure-mgmt-resource/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-resource/default.nix b/pkgs/development/python-modules/azure-mgmt-resource/default.nix index e5f5b38509f..3689f85f225 100644 --- a/pkgs/development/python-modules/azure-mgmt-resource/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-resource/default.nix @@ -3,6 +3,7 @@ , fetchPypi , python , azure-mgmt-common +, isPy3k }: @@ -16,17 +17,20 @@ buildPythonPackage rec { sha256 = "aef8573066026db04ed3e7c5e727904e42f6462b6421c2e8a3646e4c4f8128be"; }; - postInstall = '' + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py ''; propagatedBuildInputs = [ azure-mgmt-common ]; + # has no tests + doCheck = false; + meta = with pkgs.lib; { description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/resources?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From 5ea3e9cac05169962d711f4dcb0dad9af784663b Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:27:10 -0400 Subject: [PATCH 0399/1611] pythonPackages.azure-mgmt-storage: refactor Removed doCheck and updated metadata --- .../azure-mgmt-storage/default.nix | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-storage/default.nix b/pkgs/development/python-modules/azure-mgmt-storage/default.nix index 12d10d8ac47..0f4c6b101e0 100644 --- a/pkgs/development/python-modules/azure-mgmt-storage/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-storage/default.nix @@ -1,31 +1,35 @@ -{ pkgs +{ lib , buildPythonPackage , fetchPypi , python , azure-mgmt-common +, isPy3k }: buildPythonPackage rec { - version = "3.1.1"; + version = "3.3.0"; pname = "azure-mgmt-storage"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "22a779cae5e09712b7d62ef9bc3d8907a5666893a8a113b6d9348e933170236f"; + sha256 = "1kffay8hr8h3hf78wb1kisvffpwxsxy6lixbgh9dbv0p781sgyh6"; }; - postInstall = '' + postInstall = if isPy3k then "" else '' echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/mgmt/__init__.py ''; propagatedBuildInputs = [ azure-mgmt-common ]; - meta = with pkgs.lib; { - description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Storage Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/storage?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From d0aac32018294e5a33d15b620084ea99e741fe92 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:29:02 -0400 Subject: [PATCH 0400/1611] pythonPackages.azure-servicemanagement-legacy: 0.20.6 -> 0.20.7 --- .../default.nix | 40 +++++++++++-------- 1 file changed, 23 insertions(+), 17 deletions(-) diff --git a/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix b/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix index 8148fe78e53..6a0c04c58cc 100644 --- a/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix +++ b/pkgs/development/python-modules/azure-servicemanagement-legacy/default.nix @@ -1,31 +1,37 @@ -{ pkgs +{ lib , buildPythonPackage -, fetchPypi +, fetchFromGitHub , azure-common , requests -, python }: buildPythonPackage rec { - version = "0.20.6"; + version = "0.20.7"; pname = "azure-servicemanagement-legacy"; - src = fetchPypi { - inherit pname version; - extension = "zip"; - sha256 = "c883ff8fa3d4f4cb7b9344e8cb7d92a9feca2aa5efd596237aeea89e5c10981d"; + src = fetchFromGitHub { + owner = "Azure"; + repo = "azure-sdk-for-python"; + rev = "ab01fc1f23462f130c69f46505524b88101023dc"; + sha256 = "0w2bm9hkwy1m94l8r2klnpqn4192y8bir3z8bymxgfx9y0b1mn2q"; }; - propagatedBuildInputs = [ azure-common requests ]; - - postInstall = '' - echo "__import__('pkg_resources').declare_namespace(__name__)" >> "$out/lib/${python.libPrefix}"/site-packages/azure/__init__.py + preBuild = '' + cd ./azure-servicemanagement-legacy ''; - meta = with pkgs.lib; { - description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + propagatedBuildInputs = [ + azure-common + requests + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Service Management Legacy Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-servicemanagement-legacy; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From d5dadfa05958a002275de2452b4c086f15d4a0eb Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:29:58 -0400 Subject: [PATCH 0401/1611] pythonPackages.azure-storage-blob: refactor sha does not match what is offered via pip- also updated metadata --- .../development/python-modules/azure-storage-blob/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-storage-blob/default.nix b/pkgs/development/python-modules/azure-storage-blob/default.nix index 2531c440daf..2c00d78a718 100644 --- a/pkgs/development/python-modules/azure-storage-blob/default.nix +++ b/pkgs/development/python-modules/azure-storage-blob/default.nix @@ -13,7 +13,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "0b15dzy75fml994gdfmaw5qcyij15gvh968mk3hg94d1wxwai1zi"; + sha256 = "f187a878e7a191f4e098159904f72b4146cf70e1aabaf6484ab4ba72fc6f252c"; }; propagatedBuildInputs = [ @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Client library for Microsoft Azure Storage services containing the blob service APIs"; homepage = https://github.com/Azure/azure-storage-python/tree/master/azure-storage-blob; license = licenses.mit; - maintainers = with maintainers; [ cmcdragonkai ]; + maintainers = with maintainers; [ cmcdragonkai mwilsoninsight ]; }; } From a18f5138e1f95e34350ba448e7d8e86dbb193780 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:39:20 -0400 Subject: [PATCH 0402/1611] pythonPackages.azure-applicationinsights: init at 0.1.0 --- .../azure-applicationinsights/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/azure-applicationinsights/default.nix diff --git a/pkgs/development/python-modules/azure-applicationinsights/default.nix b/pkgs/development/python-modules/azure-applicationinsights/default.nix new file mode 100644 index 00000000000..74f7cf61b13 --- /dev/null +++ b/pkgs/development/python-modules/azure-applicationinsights/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-common +, msrest +}: + +buildPythonPackage rec { + pname = "azure-applicationinsights"; + version = "0.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "6e1839169bb6ffd2d2c21ee3f4afbdd068ea428ad47cf884ea3167ecf7fd0859"; + }; + + propagatedBuildInputs = [ + azure-common + msrest + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Application Insights Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-applicotioninsights; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b8e85d775f5..32f5cb1eb14 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -242,6 +242,8 @@ in { azure-cosmos = callPackage ../development/python-modules/azure-cosmos { }; + azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 7ca7dfcd2c79ca19e71ee127399108453a71b824 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:41:12 -0400 Subject: [PATCH 0403/1611] pythonPackages.azure-batch: init at 6.0.1 --- .../python-modules/azure-batch/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-batch/default.nix diff --git a/pkgs/development/python-modules/azure-batch/default.nix b/pkgs/development/python-modules/azure-batch/default.nix new file mode 100644 index 00000000000..35ba2d25d5a --- /dev/null +++ b/pkgs/development/python-modules/azure-batch/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, azure-common +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-batch"; + version = "6.0.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "d5b0de3db0058cd69baf30e059874094abf865e24ccd82e3cd25f3a48b9676d1"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Batch Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/batch?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 32f5cb1eb14..e892923a022 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -244,6 +244,8 @@ in { azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { }; + azure-batch = callPackage ../development/python-modules/azure-batch { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 4bd2b34ba9c8378f4519e6e96e6b466b85448fd7 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:43:31 -0400 Subject: [PATCH 0404/1611] pythonPackages.uamqp: init at 1.1.0 --- .../python-modules/uamqp/default.nix | 42 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/development/python-modules/uamqp/default.nix diff --git a/pkgs/development/python-modules/uamqp/default.nix b/pkgs/development/python-modules/uamqp/default.nix new file mode 100644 index 00000000000..b7f244730b1 --- /dev/null +++ b/pkgs/development/python-modules/uamqp/default.nix @@ -0,0 +1,42 @@ +{ lib +, buildPythonPackage +, fetchPypi +, cmake +, openssl +, six +, certifi +, enum34 +, isPy3k +}: + +buildPythonPackage rec { + pname = "uamqp"; + version = "1.1.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "d3d4ff94bf290adb82fe8c19af709a21294bac9b27c821b9110165a34b922015"; + }; + + buildInputs = [ + openssl + certifi + six + ] ++ lib.optionals (!isPy3k) [ + enum34 + ]; + + nativeBuildInputs = [ + cmake + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "An AMQP 1.0 client library for Python"; + homepage = https://github.com/Azure/azure-uamqp-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e892923a022..2c12a29c8c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1008,6 +1008,8 @@ in { toggl-cli = callPackage ../development/python-modules/toggl-cli { }; + uamqp = callPackage ../development/python-modules/uamqp { }; + unifi = callPackage ../development/python-modules/unifi { }; uvloop = callPackage ../development/python-modules/uvloop { }; From 44bbc6632abc7c676a13d0c5c3d4a5563e3186c5 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:47:23 -0400 Subject: [PATCH 0405/1611] pythonPackages.azure-cosmosdb-nspkg: init at 2.0.2 --- .../azure-cosmosdb-nspkg/default.nix | 29 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix diff --git a/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix b/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix new file mode 100644 index 00000000000..fef2614e1ae --- /dev/null +++ b/pkgs/development/python-modules/azure-cosmosdb-nspkg/default.nix @@ -0,0 +1,29 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-nspkg +}: + +buildPythonPackage rec { + pname = "azure-cosmosdb-nspkg"; + version = "2.0.2"; + + src = fetchPypi { + inherit pname version; + sha256 = "acf691e692818d9a65c653c7a3485eb8e35c0bdc496bba652e5ea3905ba09cd8"; + }; + + propagatedBuildInputs = [ + azure-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure CosmosDB namespace package"; + homepage = https://github.com/Azure/azure-cosmos-table-python/tree/master/azure-cosmosdb-nspkg; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2c12a29c8c9..859422ee11a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -246,6 +246,8 @@ in { azure-batch = callPackage ../development/python-modules/azure-batch { }; + azure-cosmosdb-nspkg = callPackage ../development/python-modules/azure-cosmosdb-nspkg { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From ca147f91d278f3e20dafc5cfe345c0cf64eeb0a4 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:49:15 -0400 Subject: [PATCH 0406/1611] pythonPackages.azure-cosmosdb-table: init at 1.0.5 --- .../azure-cosmosdb-table/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/azure-cosmosdb-table/default.nix diff --git a/pkgs/development/python-modules/azure-cosmosdb-table/default.nix b/pkgs/development/python-modules/azure-cosmosdb-table/default.nix new file mode 100644 index 00000000000..6a5d54b8298 --- /dev/null +++ b/pkgs/development/python-modules/azure-cosmosdb-table/default.nix @@ -0,0 +1,39 @@ +{ lib +, buildPythonPackage +, fetchPypi +, cryptography +, azure-common +, azure-storage-common +, azure-cosmosdb-nspkg +, futures +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-cosmosdb-table"; + version = "1.0.5"; + + src = fetchPypi { + inherit pname version; + sha256 = "4a34c2c792036afc2a3811f4440ab967351e9ceee6542cc96453b63c678c0145"; + }; + + propagatedBuildInputs = [ + cryptography + azure-common + azure-storage-common + azure-cosmosdb-nspkg + ] ++ lib.optionals (!isPy3k) [ + futures + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Log Analytics Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/cosmosdb?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 859422ee11a..d5e153395d9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -248,6 +248,8 @@ in { azure-cosmosdb-nspkg = callPackage ../development/python-modules/azure-cosmosdb-nspkg { }; + azure-cosmosdb-table = callPackage ../development/python-modules/azure-cosmosdb-table { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From c2d4ae671ee29b3854ffcab97c96b08d8cefeca1 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:51:03 -0400 Subject: [PATCH 0407/1611] pythonPackages.azure-datalake-store: init at 0.0.45 --- .../azure-datalake-store/default.nix | 39 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 41 insertions(+) create mode 100644 pkgs/development/python-modules/azure-datalake-store/default.nix diff --git a/pkgs/development/python-modules/azure-datalake-store/default.nix b/pkgs/development/python-modules/azure-datalake-store/default.nix new file mode 100644 index 00000000000..508fa8bf87e --- /dev/null +++ b/pkgs/development/python-modules/azure-datalake-store/default.nix @@ -0,0 +1,39 @@ +{ lib +, buildPythonPackage +, fetchPypi +, requests +, adal +, azure-common +, futures +, pathlib2 +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-datalake-store"; + version = "0.0.45"; + + src = fetchPypi { + inherit pname version; + sha256 = "1k2wkpdv30wjmi53zdcsa5xfqw8gyak39na73ja6rb7wy8196wbd"; + }; + + propagatedBuildInputs = [ + requests + adal + azure-common + ] ++ lib.optionals (!isPy3k) [ + futures + pathlib2 + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This project is the Python filesystem library for Azure Data Lake Store"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/data-lake-store?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d5e153395d9..a9a4a6ca6b0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -250,6 +250,8 @@ in { azure-cosmosdb-table = callPackage ../development/python-modules/azure-cosmosdb-table { }; + azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 850e7d62f0d029bac6b4bf07a865b28c00385e72 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:52:15 -0400 Subject: [PATCH 0408/1611] pythonPackages.azure-eventgrid: init at 1.2.0 --- .../azure-eventgrid/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-eventgrid/default.nix diff --git a/pkgs/development/python-modules/azure-eventgrid/default.nix b/pkgs/development/python-modules/azure-eventgrid/default.nix new file mode 100644 index 00000000000..79449c328b0 --- /dev/null +++ b/pkgs/development/python-modules/azure-eventgrid/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, azure-common +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-eventgrid"; + version = "1.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "7ebbe1c4266ba176aa4969d9755c08f10b89848ad50fb0bfd16fa82e29234f95"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "A fully-managed intelligent event routing service that allows for uniform event consumption using a publish-subscribe model"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/event-grid?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a9a4a6ca6b0..599b967a69a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -252,6 +252,8 @@ in { azure-datalake-store = callPackage ../development/python-modules/azure-datalake-store { }; + azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 7eafb0a2c1f2dd501cd345c9551bddc502743a2d Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:53:30 -0400 Subject: [PATCH 0409/1611] pythonPackages.azure-graphrbac: init at 0.61.0 --- .../azure-graphrbac/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-graphrbac/default.nix diff --git a/pkgs/development/python-modules/azure-graphrbac/default.nix b/pkgs/development/python-modules/azure-graphrbac/default.nix new file mode 100644 index 00000000000..c47c10f1418 --- /dev/null +++ b/pkgs/development/python-modules/azure-graphrbac/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +}: + +buildPythonPackage rec { + version = "0.61.0"; + pname = "azure-graphrbac"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "4ab27db29d730e4d35f420466500f8ee60a26a8151dbd121a6c353ccd9d4ee55"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Graph RBAC Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-graphrbac; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 599b967a69a..e1259e6d103 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -254,6 +254,8 @@ in { azure-eventgrid = callPackage ../development/python-modules/azure-eventgrid { }; + azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 83347ee08b12aab15a45327903f1f831c2e3dd62 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:54:49 -0400 Subject: [PATCH 0410/1611] pythonPackages.azure-keyvault: init at 1.1.0 --- .../python-modules/azure-keyvault/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-keyvault/default.nix diff --git a/pkgs/development/python-modules/azure-keyvault/default.nix b/pkgs/development/python-modules/azure-keyvault/default.nix new file mode 100644 index 00000000000..ed0fe138769 --- /dev/null +++ b/pkgs/development/python-modules/azure-keyvault/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-common +, azure-nspkg +, msrest +, msrestazure +, cryptography +}: + +buildPythonPackage rec { + pname = "azure-keyvault"; + version = "1.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "37a8e5f376eb5a304fcd066d414b5d93b987e68f9212b0c41efa37d429aadd49"; + }; + + propagatedBuildInputs = [ + azure-common + azure-nspkg + msrest + msrestazure + cryptography + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Key Vault Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/key-vault?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e1259e6d103..d53fc321004 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -256,6 +256,8 @@ in { azure-graphrbac = callPackage ../development/python-modules/azure-graphrbac { }; + azure-keyvault = callPackage ../development/python-modules/azure-keyvault { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 56a49133bd459aa71a69792bbe28f794f9a8fcba Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:55:48 -0400 Subject: [PATCH 0411/1611] pythonPackages.azure-loganalytics: init at 0.1.0 --- .../azure-loganalytics/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/azure-loganalytics/default.nix diff --git a/pkgs/development/python-modules/azure-loganalytics/default.nix b/pkgs/development/python-modules/azure-loganalytics/default.nix new file mode 100644 index 00000000000..6a2b57052cc --- /dev/null +++ b/pkgs/development/python-modules/azure-loganalytics/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, azure-common +}: + +buildPythonPackage rec { + version = "0.1.0"; + pname = "azure-loganalytics"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "3ceb350def677a351f34b0a0d1637df6be0c6fe87ff32a5270b17f540f6da06e"; + }; + + propagatedBuildInputs = [ + msrest + azure-common + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Log Analytics Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/loganalytics/client?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d53fc321004..863ea6b9095 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -258,6 +258,8 @@ in { azure-keyvault = callPackage ../development/python-modules/azure-keyvault { }; + azure-loganalytics = callPackage ../development/python-modules/azure-loganalytics { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 1921e318731578ab43591f0b0f5d458064430086 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 17:56:48 -0400 Subject: [PATCH 0412/1611] pythonPackages.azure-servicebus: init at 0.50.0 --- .../azure-servicebus/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-servicebus/default.nix diff --git a/pkgs/development/python-modules/azure-servicebus/default.nix b/pkgs/development/python-modules/azure-servicebus/default.nix new file mode 100644 index 00000000000..e8683a68e29 --- /dev/null +++ b/pkgs/development/python-modules/azure-servicebus/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, uamqp +, azure-common +, msrestazure +, futures +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-servicebus"; + version = "0.50.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "c5864cfc69402e3e2897e61b3bd224ade28d9e33dad849e4bd6afad26a3d2786"; + }; + + buildInputs = [ + uamqp + azure-common + msrestazure + ] ++ lib.optionals (!isPy3k) [ + futures + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Service Bus Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/free/master/azure-servicebus; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 863ea6b9095..307041a701c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -260,6 +260,8 @@ in { azure-loganalytics = callPackage ../development/python-modules/azure-loganalytics { }; + azure-servicebus = callPackage ../development/python-modules/azure-servicebus { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 7495918f3a07fa32517c098dd8ec0b42ddaea7c9 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:09:21 -0400 Subject: [PATCH 0413/1611] pythonPackages.azure-servicefabric: init at 6.4.0.0 --- .../azure-servicefabric/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 30 +++++++++-------- 2 files changed, 48 insertions(+), 14 deletions(-) create mode 100644 pkgs/development/python-modules/azure-servicefabric/default.nix diff --git a/pkgs/development/python-modules/azure-servicefabric/default.nix b/pkgs/development/python-modules/azure-servicefabric/default.nix new file mode 100644 index 00000000000..6b9ac45ad97 --- /dev/null +++ b/pkgs/development/python-modules/azure-servicefabric/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-common +, msrest +}: + +buildPythonPackage rec { + pname = "azure-servicefabric"; + version = "6.4.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "f049e8c4a179f1277f2ec60158f88caf14a50f7df491fc6841e360cd61746da1"; + }; + + propagatedBuildInputs = [ + azure-common + msrest + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This project provides a client library in Python that makes it easy to consume Microsoft Azure Storage services"; + homepage = https://pypi.org/project/azure-servicefabric; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 307041a701c..52440c9e2f7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -262,6 +262,22 @@ in { azure-servicebus = callPackage ../development/python-modules/azure-servicebus { }; + azure-servicefabric = callPackage ../development/python-modules/azure-servicefabric { }; + + azure-servicemanagement-legacy = callPackage ../development/python-modules/azure-servicemanagement-legacy { }; + + azure-storage-nspkg = callPackage ../development/python-modules/azure-storage-nspkg { }; + + azure-storage-common = callPackage ../development/python-modules/azure-storage-common { }; + + azure-storage = callPackage ../development/python-modules/azure-storage { }; + + azure-storage-blob = callPackage ../development/python-modules/azure-storage-blob { }; + + azure-storage-file = callPackage ../development/python-modules/azure-storage-file { }; + + azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; @@ -274,20 +290,6 @@ in { azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; - azure-storage = callPackage ../development/python-modules/azure-storage { }; - - azure-storage-nspkg = callPackage ../development/python-modules/azure-storage-nspkg { }; - - azure-storage-common = callPackage ../development/python-modules/azure-storage-common { }; - - azure-storage-blob = callPackage ../development/python-modules/azure-storage-blob { }; - - azure-storage-file = callPackage ../development/python-modules/azure-storage-file { }; - - azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { }; - - azure-servicemanagement-legacy = callPackage ../development/python-modules/azure-servicemanagement-legacy { }; - backports_csv = callPackage ../development/python-modules/backports_csv {}; backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {}; From 58ec74f20ad4bcdbf37cbcdab147b74dd37ab6ac Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:13:10 -0400 Subject: [PATCH 0414/1611] pythonPackages.azure-mgmt-advisor: init at 2.0.1 --- .../azure-mgmt-advisor/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-advisor/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-advisor/default.nix b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix new file mode 100644 index 00000000000..c2423095280 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-advisor/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, isPy3k +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-advisor"; + version = "2.0.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1929d6d5ba49d055fdc806e981b93cf75ea42ba35f78222aaf42d8dcf29d4ef3"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Advisor Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-advisor; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 52440c9e2f7..28d2eb962da 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -278,6 +278,8 @@ in { azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { }; + azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 467db0f247356f5c94d72a7bbea94f80bc6f5957 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:14:31 -0400 Subject: [PATCH 0415/1611] pythonPackages.azure-mgmt-applicationinsights: init at 0.2.0 --- .../default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix new file mode 100644 index 00000000000..d7e27eabf64 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-applicationinsights/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-applicationinsights"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1hm6s7vym1y072jqypjgbhps8lza1d5kb8qcpyxnw4zsmsvshdp5"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Application Insights Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-applicationinsights; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 28d2eb962da..4e51ea06f47 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -280,6 +280,8 @@ in { azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { }; + azure-mgmt-applicationinsights = callPackage ../development/python-modules/azure-mgmt-applicationinsights { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 4a9487c0f0b71ce95b707cecc6ede7152e540f13 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:16:09 -0400 Subject: [PATCH 0416/1611] pythonPackages.azure-mgmt-authorization: init at 0.51.1 --- .../azure-mgmt-authorization/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-authorization/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-authorization/default.nix b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix new file mode 100644 index 00000000000..c94620e0b15 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-authorization/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-authorization"; + version = "0.51.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "d2789e21c6b85591b38d5d4e9b835b6546824c14e14aaa366da0ef50a95d2478"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Authorization Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-authorization; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4e51ea06f47..d85be9d157f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -282,6 +282,8 @@ in { azure-mgmt-applicationinsights = callPackage ../development/python-modules/azure-mgmt-applicationinsights { }; + azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From c156da6feabf1d5bb3d5ae3679b51a0327ebd8fb Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:17:23 -0400 Subject: [PATCH 0417/1611] pythonPackages.azure-mgmt-batch: init at 6.0.0 --- .../azure-mgmt-batch/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-batch/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-batch/default.nix b/pkgs/development/python-modules/azure-mgmt-batch/default.nix new file mode 100644 index 00000000000..67fe9c568ea --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-batch/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-batch"; + version = "6.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "dc929d2a0a65804c28a75dc00bb84ba581f805582a09238f4e7faacb15f8a2a3"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Batch Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-batch; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d85be9d157f..92c46ddeb29 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -284,6 +284,8 @@ in { azure-mgmt-authorization = callPackage ../development/python-modules/azure-mgmt-authorization { }; + azure-mgmt-batch = callPackage ../development/python-modules/azure-mgmt-batch { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 3fb174eb0e10b9f8b994f2e08314ce6394f430d5 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:18:25 -0400 Subject: [PATCH 0418/1611] pythonPackages.azure-mgmt-batchai: init at 2.0.0 --- .../azure-mgmt-batchai/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-batchai/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-batchai/default.nix b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix new file mode 100644 index 00000000000..faa4d5bc39a --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-batchai/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrestazure +, python +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-batchai"; + version = "2.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "f1870b0f97d5001cdb66208e5a236c9717a0ed18b34dbfdb238a828f3ca2a683"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Batch AI Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-batchai; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 92c46ddeb29..6c13a81837b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -286,6 +286,8 @@ in { azure-mgmt-batch = callPackage ../development/python-modules/azure-mgmt-batch { }; + azure-mgmt-batchai = callPackage ../development/python-modules/azure-mgmt-batchai { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From f638c312055ef36e6a21ccaf3e795161cf5fea13 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:19:45 -0400 Subject: [PATCH 0419/1611] pythonPackages.azure-mgmt-billing: init at 0.2.0 --- .../azure-mgmt-billing/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-billing/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-billing/default.nix b/pkgs/development/python-modules/azure-mgmt-billing/default.nix new file mode 100644 index 00000000000..c79f9a5a73e --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-billing/default.nix @@ -0,0 +1,41 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, msrestazure +, azure-common +, azure-mgmt-nspkg +, python +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-billing"; + version = "0.2.0"; #pypi's 0.2.0 doesn't build ootb + + src = fetchFromGitHub { + owner = "Azure"; + repo = "azure-sdk-for-python"; + rev = "ee5b47525d6c1eae3b1fd5f65b0421eab62a6e6f"; + sha256 = "0xzdn7da5c3q5knh033vbsqk36vwbm75cx8vf10x0yj58krb4kn4"; + }; + + preBuild = '' + cd ./azure-mgmt-billing + ''; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Billing Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-billing; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6c13a81837b..48dfeaac16d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -288,6 +288,8 @@ in { azure-mgmt-batchai = callPackage ../development/python-modules/azure-mgmt-batchai { }; + azure-mgmt-billing = callPackage ../development/python-modules/azure-mgmt-billing { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 6463d3c0c8cf94543df273a69d6b05a6abaeef1b Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:20:44 -0400 Subject: [PATCH 0420/1611] pythonPackages.azure-mgmt-cdn: init at 3.1.0 --- .../python-modules/azure-mgmt-cdn/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-cdn/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-cdn/default.nix b/pkgs/development/python-modules/azure-mgmt-cdn/default.nix new file mode 100644 index 00000000000..7ad27938082 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-cdn/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-cdn"; + version = "3.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0cdbe0914aec544884ef681e31950efa548d9bec6d6dc354e00c3dbdab9e76e3"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure CDN Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-cdn; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 48dfeaac16d..862d72e769b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -290,6 +290,8 @@ in { azure-mgmt-billing = callPackage ../development/python-modules/azure-mgmt-billing { }; + azure-mgmt-cdn = callPackage ../development/python-modules/azure-mgmt-cdn { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 55deab5467e6c725b6916cdd899596a02586d065 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:22:23 -0400 Subject: [PATCH 0421/1611] pythonPackages.azure-mgmt-cognitiveservices: init at 4.0.0 --- .../azure-mgmt-cognitiveservices/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix b/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix new file mode 100644 index 00000000000..d0ebe0470ae --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-cognitiveservices/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-common +, azure-mgmt-nspkg +, msrestazure +}: + +buildPythonPackage rec { + pname = "azure-mgmt-cognitiveservices"; + version = "4.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "05zbgy1d6mschqv6y14byr4nwdnv48x9skx4rbsbz1fcqqx3j2sd"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Cognitive Services Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-cognitiveservices; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 862d72e769b..ade162afbea 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -292,6 +292,8 @@ in { azure-mgmt-cdn = callPackage ../development/python-modules/azure-mgmt-cdn { }; + azure-mgmt-cognitiveservices = callPackage ../development/python-modules/azure-mgmt-cognitiveservices { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 0ed848dbfd39d77e000b842a84316b24db7dcdfe Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:23:46 -0400 Subject: [PATCH 0422/1611] pythonPackages.azure-mgmt-commerce: init at 1.0.1 --- .../azure-mgmt-commerce/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-commerce/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-commerce/default.nix b/pkgs/development/python-modules/azure-mgmt-commerce/default.nix new file mode 100644 index 00000000000..86e323be168 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-commerce/default.nix @@ -0,0 +1,41 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, msrestazure +, azure-common +, azure-mgmt-nspkg +, python +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-commerce"; + version = "1.0.1"; + + src = fetchFromGitHub { + owner = "Azure"; + repo = "azure-sdk-for-python"; + rev = "ee5b47525d6c1eae3b1fd5f65b0421eab62a6e6f"; + sha256 = "0xzdn7da5c3q5knh033vbsqk36vwbm75cx8vf10x0yj58krb4kn4"; + }; + + preBuild = '' + cd ./azure-mgmt-commerce + ''; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Commerce Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-commerce; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ade162afbea..c5f058bde9d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -294,6 +294,8 @@ in { azure-mgmt-cognitiveservices = callPackage ../development/python-modules/azure-mgmt-cognitiveservices { }; + azure-mgmt-commerce = callPackage ../development/python-modules/azure-mgmt-commerce { }; + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; From 9d757d6a18a7c19944a609521fabd491eeb929e2 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:25:37 -0400 Subject: [PATCH 0423/1611] pythonPackages.azure-mgmt-consumption: init at 3.0.0 --- .../azure-mgmt-consumption/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-consumption/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-consumption/default.nix b/pkgs/development/python-modules/azure-mgmt-consumption/default.nix new file mode 100644 index 00000000000..d074f45cce5 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-consumption/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-consumption"; + version = "3.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0nqgywknpj2a69an5yrn0c32fk01v5gi05za7dlf4ivwr9s4np83"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Consumption Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-consumption; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c5f058bde9d..062c6188567 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -300,6 +300,8 @@ in { azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; + azure-mgmt-consumption = callPackage ../development/python-modules/azure-mgmt-consumption { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 1478e0082bb2de7b31cfd057390058c2ff644ad5 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:27:18 -0400 Subject: [PATCH 0424/1611] pythonPackages.azure-mgmt-containerinstance: init at 1.4.1 --- .../azure-mgmt-containerinstance/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix new file mode 100644 index 00000000000..e32182225f1 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-containerinstance/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-containerinstance"; + version = "1.4.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "87919f3e618ec0a40fd163d763113eef908e78c50d8b76bf4dd795444cb069fd"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Container Instance Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-containerinstance; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 062c6188567..1a274e77a2f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -302,6 +302,8 @@ in { azure-mgmt-consumption = callPackage ../development/python-modules/azure-mgmt-consumption { }; + azure-mgmt-containerinstance = callPackage ../development/python-modules/azure-mgmt-containerinstance { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From d67a687af87f2ed6c2b3797c756c087f084b2538 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:33:44 -0400 Subject: [PATCH 0425/1611] pythonPackages.azure-mgmt-containerservice: init at 5.3.0 --- .../azure-mgmt-containerservice/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-containerservice/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix new file mode 100644 index 00000000000..5e68ef2d383 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-containerservice/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-containerservice"; + version = "5.3.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1dhni22n85x76709mvjmby8i8hvginzniq1dna6f5cidfcalc0vs"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Container Service Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-containerservice; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1a274e77a2f..d1413a2c412 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -304,6 +304,8 @@ in { azure-mgmt-containerinstance = callPackage ../development/python-modules/azure-mgmt-containerinstance { }; + azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 6925685ecc713a5bdb724eb6241da8a88161bf71 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:34:43 -0400 Subject: [PATCH 0426/1611] pythonPackages.azure-mgmt-cosmosdb: init at 0.6.0 --- .../azure-mgmt-cosmosdb/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix b/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix new file mode 100644 index 00000000000..6741686b0d4 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-cosmosdb/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-cosmosdb"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0g4znanx540p983gzr55z0n0jyzfnzmnzlshl92hm4gldwjdd91d"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Cosmos DB Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-cosmosdb; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d1413a2c412..9f45892c859 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -306,6 +306,8 @@ in { azure-mgmt-containerservice = callPackage ../development/python-modules/azure-mgmt-containerservice { }; + azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 09c1cdd9ca1bd5900f680f07c9775865e759758c Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:35:30 -0400 Subject: [PATCH 0427/1611] pythonPackages.azure-mgmt-datafactory: init at 0.7.0 --- .../azure-mgmt-datafactory/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datafactory/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix new file mode 100644 index 00000000000..7d028a61a55 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datafactory/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datafactory"; + version = "0.7.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "7a50da8415e316bd3be0c90ff7e2bffee2afb959aefea23b5923f22dd7094a37"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Data Factory Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datafactory; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9f45892c859..2c366e78150 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -308,6 +308,8 @@ in { azure-mgmt-cosmosdb = callPackage ../development/python-modules/azure-mgmt-cosmosdb { }; + azure-mgmt-datafactory = callPackage ../development/python-modules/azure-mgmt-datafactory { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From d2167a14188575c74b56385e17e29186fe7e34be Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:36:14 -0400 Subject: [PATCH 0428/1611] pythonPackages.azure-mgmt-datalake-analytics: init at 0.6.0 --- .../azure-mgmt-datalake-analytics/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix new file mode 100644 index 00000000000..31cfdf0e6d5 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datalake-analytics/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-datalake-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datalake-analytics"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0d64c4689a67d6138eb9ffbaff2eda2bace7d30b846401673183dcb42714de8f"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-datalake-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Data Lake Analytics Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datalake-analytics; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2c366e78150..f4fd2a04bae 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -310,6 +310,8 @@ in { azure-mgmt-datafactory = callPackage ../development/python-modules/azure-mgmt-datafactory { }; + azure-mgmt-datalake-analytics = callPackage ../development/python-modules/azure-mgmt-datalake-analytics { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 8150b33ef15fcddb1530d411a165a830233db631 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:36:55 -0400 Subject: [PATCH 0429/1611] pythonPackages.azure-mgmt-datalake-nspkg: init at 3.0.1 --- .../azure-mgmt-datalake-nspkg/default.nix | 30 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix new file mode 100644 index 00000000000..0df7d65374a --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datalake-nspkg/default.nix @@ -0,0 +1,30 @@ +{ lib +, buildPythonPackage +, fetchPypi +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datalake-nspkg"; + version = "3.0.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "deb192ba422f8b3ec272ce4e88736796f216f28ea5b03f28331d784b7a3f4880"; + }; + + propagatedBuildInputs = [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Data Lake Management namespace package"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datalake-nspkg; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f4fd2a04bae..e8e5dc5e441 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -312,6 +312,8 @@ in { azure-mgmt-datalake-analytics = callPackage ../development/python-modules/azure-mgmt-datalake-analytics { }; + azure-mgmt-datalake-nspkg = callPackage ../development/python-modules/azure-mgmt-datalake-nspkg { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From f1a822058fd97800c5ed46af709304e3f4cfd82a Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:37:37 -0400 Subject: [PATCH 0430/1611] pythonPackages.azure-mgmt-datalake-store: init at 0.5.0 --- .../azure-mgmt-datalake-store/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix new file mode 100644 index 00000000000..ce28d0a7749 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datalake-store/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-datalake-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datalake-store"; + version = "0.5.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "9376d35495661d19f8acc5604f67b0bc59493b1835bbc480f9a1952f90017a4c"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-datalake-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Data Lake Store Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datalake-store; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e8e5dc5e441..39ba7e1fb2c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -314,6 +314,8 @@ in { azure-mgmt-datalake-nspkg = callPackage ../development/python-modules/azure-mgmt-datalake-nspkg { }; + azure-mgmt-datalake-store = callPackage ../development/python-modules/azure-mgmt-datalake-store { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 7c81a1de3ca0903d048bb1cdeb0e73b7ed7068ea Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:38:15 -0400 Subject: [PATCH 0431/1611] pythonPackages.azure-mgmt-datamigration: init at 2.1.0 --- .../azure-mgmt-datamigration/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-datamigration/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix new file mode 100644 index 00000000000..26b90029977 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-datamigration/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-datamigration"; + version = "2.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "49e6e68093e2d647c1c54a4027dee5b1d57f7e7c21480ae386c55cb3d5fa14bc"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Data Migration Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-datamigration; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 39ba7e1fb2c..070cfae072e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -316,6 +316,8 @@ in { azure-mgmt-datalake-store = callPackage ../development/python-modules/azure-mgmt-datalake-store { }; + azure-mgmt-datamigration = callPackage ../development/python-modules/azure-mgmt-datamigration { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 27034c57dda3e40dd52eb80c24b0e49a4d7393bc Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:38:51 -0400 Subject: [PATCH 0432/1611] pythonPackages.azure-mgmt-devspaces: init at 0.1.0 --- .../azure-mgmt-devspaces/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-devspaces/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix b/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix new file mode 100644 index 00000000000..f5830f01ac9 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-devspaces/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-devspaces"; + version = "0.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "4710dd59fc219ebfa4272dbbad58bf62093b52ce22bfd32a5c0279d2149471b5"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Dev Spaces Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-devspaces; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 070cfae072e..a5763fcdabc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -318,6 +318,8 @@ in { azure-mgmt-datamigration = callPackage ../development/python-modules/azure-mgmt-datamigration { }; + azure-mgmt-devspaces = callPackage ../development/python-modules/azure-mgmt-devspaces { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From d6e8770db812d7d67ed758b6ef7b7ecbf298a1bb Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:39:27 -0400 Subject: [PATCH 0433/1611] pythonPackages.azure-mgmt-devtestlabs: init at 3.0.0 --- .../azure-mgmt-devtestlabs/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix b/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix new file mode 100644 index 00000000000..f5d60a74b60 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-devtestlabs/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-devtestlabs"; + version = "3.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "b3d5b2919021bf45f0acdd34ab23dc9b0435d9d0a6b472e5008128fb8521e700"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure DevTestLabs Management Client Library"; + homepage = https://github.com/Azure/sdk-for-python/tree/master/azure-mgmt-devtestlabs; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a5763fcdabc..b54ded7e267 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -320,6 +320,8 @@ in { azure-mgmt-devspaces = callPackage ../development/python-modules/azure-mgmt-devspaces { }; + azure-mgmt-devtestlabs = callPackage ../development/python-modules/azure-mgmt-devtestlabs { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 1c61953e30de1e493569ca95cb8a7b6ede9a24b8 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:40:09 -0400 Subject: [PATCH 0434/1611] pythonPackages.azure-mgmt-dns: init at 2.1.0 --- .../python-modules/azure-mgmt-dns/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-dns/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-dns/default.nix b/pkgs/development/python-modules/azure-mgmt-dns/default.nix new file mode 100644 index 00000000000..6f802eb6144 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-dns/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, python +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-dns"; + version = "2.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "3730b1b3f545a5aa43c0fff07418b362a789eb7d81286e2bed90ffef88bfa5d0"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure DNS Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/dns?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b54ded7e267..3c154baf9c2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -322,6 +322,8 @@ in { azure-mgmt-devtestlabs = callPackage ../development/python-modules/azure-mgmt-devtestlabs { }; + azure-mgmt-dns = callPackage ../development/python-modules/azure-mgmt-dns { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From fcbd76193da1e60e6583e1261286bff5ee03f61d Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:40:50 -0400 Subject: [PATCH 0435/1611] pythonPackages.azure-mgmt-eventgrid: init at 2.0.0 --- .../azure-mgmt-eventgrid/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix new file mode 100644 index 00000000000..8887a8b2776 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-eventgrid/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-eventgrid"; + version = "2.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "9a1da1085d39163b13dee14215b02f18eab93ede10ffe83dc6030ecf2163d2f1"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure EventGrid Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/event-grid?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3c154baf9c2..393b93bc813 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -324,6 +324,8 @@ in { azure-mgmt-dns = callPackage ../development/python-modules/azure-mgmt-dns { }; + azure-mgmt-eventgrid = callPackage ../development/python-modules/azure-mgmt-eventgrid { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 0652652f9a9c3034858c2618403a5ac4eb8503c4 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:41:33 -0400 Subject: [PATCH 0436/1611] pythonPackages.azure-mgmt-eventhub: init at 2.6.0 --- .../azure-mgmt-eventhub/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-eventhub/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix b/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix new file mode 100644 index 00000000000..1c0c3c5a866 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-eventhub/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-eventhub"; + version = "2.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1nnp2ki4iz4f4897psmwb0v5khrwh84fgxja7nl7g73g3ym20sz8"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure EventHub Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/event-hub?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 393b93bc813..886e96ff868 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -326,6 +326,8 @@ in { azure-mgmt-eventgrid = callPackage ../development/python-modules/azure-mgmt-eventgrid { }; + azure-mgmt-eventhub = callPackage ../development/python-modules/azure-mgmt-eventhub { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 977d109254e8249b2e899067828bdee9199ee033 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:42:15 -0400 Subject: [PATCH 0437/1611] pythonPackages.azure-mgmt-hanaonazure: init at 0.6.0 --- .../azure-mgmt-hanaonazure/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix new file mode 100644 index 00000000000..26247a7eb39 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-hanaonazure/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-hanaonazure"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1spsy6g5z4nb1y1gfz0p1ykybi76qbig8j22zvmws59329b3br5h"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure SAP Hana on Azure Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/hanaonazure?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 886e96ff868..1d181c5881b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -328,6 +328,8 @@ in { azure-mgmt-eventhub = callPackage ../development/python-modules/azure-mgmt-eventhub { }; + azure-mgmt-hanaonazure = callPackage ../development/python-modules/azure-mgmt-hanaonazure { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From ee699b77076a9ee1ac9c01639f3905a007cb8883 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:43:05 -0400 Subject: [PATCH 0438/1611] pythonPackages.azure-mgmt-iotcentral: init at 1.0.0 --- .../azure-mgmt-iotcentral/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix new file mode 100644 index 00000000000..9509911709b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-iotcentral/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-iotcentral"; + version = "1.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "9aac88ed1f993965015f4e9986931fc08798e09d7b864928681a7cebff053de8"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure IoTCentral Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/iot?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 1d181c5881b..f86cb4f1930 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -330,6 +330,8 @@ in { azure-mgmt-hanaonazure = callPackage ../development/python-modules/azure-mgmt-hanaonazure { }; + azure-mgmt-iotcentral = callPackage ../development/python-modules/azure-mgmt-iotcentral { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From e3c2f073e0d68e9531959f78eb164e346162db67 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:43:37 -0400 Subject: [PATCH 0439/1611] pythonPackages.azure-mgmt-iothub: init at 0.8.2 --- .../azure-mgmt-iothub/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-iothub/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-iothub/default.nix b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix new file mode 100644 index 00000000000..aac5ef06e91 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-iothub/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-iothub"; + version = "0.8.2"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0w3w1d156rnkwjdarv3qvycklxr3z2j7lry7a3jfgj3ykzny12rq"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure IoTHub Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/iot?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f86cb4f1930..8fabe491fc3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -332,6 +332,8 @@ in { azure-mgmt-iotcentral = callPackage ../development/python-modules/azure-mgmt-iotcentral { }; + azure-mgmt-iothub = callPackage ../development/python-modules/azure-mgmt-iothub { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 2c5b10afa487323ece64e7066f27ca90556e968c Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:44:13 -0400 Subject: [PATCH 0440/1611] pythonPackages.azure-mgmt-iothubprovisioningservices: init at 0.2.0 --- .../default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix new file mode 100644 index 00000000000..502ddccd667 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-iothubprovisioningservices/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-iothubprovisioningservices"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "8c37acfd1c33aba845f2e0302ef7266cad31cba503cc990a48684659acb7b91d"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure IoTHub Provisioning Services Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/iot?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8fabe491fc3..987b1b65f27 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -334,6 +334,8 @@ in { azure-mgmt-iothub = callPackage ../development/python-modules/azure-mgmt-iothub { }; + azure-mgmt-iothubprovisioningservices = callPackage ../development/python-modules/azure-mgmt-iothubprovisioningservices { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From d412d0545717793ba449225951a53e4a851221c4 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:44:52 -0400 Subject: [PATCH 0441/1611] pythonPackages.azure-mgmt-keyvault: init at 1.1.0 --- .../azure-mgmt-keyvault/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-keyvault/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix b/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix new file mode 100644 index 00000000000..3b786cbf760 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-keyvault/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-keyvault"; + version = "1.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "05a15327a922441d2ba32add50a35c7f1b9225727cbdd3eeb98bc656e4684099"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Key Vault Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/key-vault?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 987b1b65f27..17811e48959 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -336,6 +336,8 @@ in { azure-mgmt-iothubprovisioningservices = callPackage ../development/python-modules/azure-mgmt-iothubprovisioningservices { }; + azure-mgmt-keyvault = callPackage ../development/python-modules/azure-mgmt-keyvault { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From d169f956a7cf3ad39f1069e63898e817a4842aeb Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:45:23 -0400 Subject: [PATCH 0442/1611] pythonPackages.azure-mgmt-loganalytics: init at 0.2.0 --- .../azure-mgmt-loganalytics/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix new file mode 100644 index 00000000000..3473b6e86b4 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-loganalytics/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-loganalytics"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "c7315ff0ee4d618fb38dca68548ef4023a7a20ce00efe27eb2105a5426237d86"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Log Analytics Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-loganalytics; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 17811e48959..82f4627b8a9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -338,6 +338,8 @@ in { azure-mgmt-keyvault = callPackage ../development/python-modules/azure-mgmt-keyvault { }; + azure-mgmt-loganalytics = callPackage ../development/python-modules/azure-mgmt-loganalytics { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 4ddc3e954a3fd1945565f2f420afdc3e1f6e3065 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:45:58 -0400 Subject: [PATCH 0443/1611] pythonPackages.azure-mgmt-logic: init at 3.0.0 --- .../azure-mgmt-logic/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-logic/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-logic/default.nix b/pkgs/development/python-modules/azure-mgmt-logic/default.nix new file mode 100644 index 00000000000..2050e290467 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-logic/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-logic"; + version = "3.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "d163dfc32e3cfa84f3f8131a75d9e94f5c4595907332cc001e45bf7e4efd5add"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Logic Apps Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/logic-apps?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 82f4627b8a9..6cb6f971506 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -340,6 +340,8 @@ in { azure-mgmt-loganalytics = callPackage ../development/python-modules/azure-mgmt-loganalytics { }; + azure-mgmt-logic = callPackage ../development/python-modules/azure-mgmt-logic { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; From 75a0b554f6192c53b716d99a1fd3d37a7ac5a626 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:47:34 -0400 Subject: [PATCH 0444/1611] pythonPackages.azure-mgmt-machinelearningcompute: init at 0.4.1 --- .../default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 10 +++--- 2 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix new file mode 100644 index 00000000000..a68f7e43858 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-machinelearningcompute/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-machinelearningcompute"; + version = "0.4.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "7a52f85591114ef33a599dabbef840d872b7f599b7823e596af9490ec51b873f"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Machine Learning Compute Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-machinelearningcompute; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6cb6f971506..24d53c4d540 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -278,6 +278,10 @@ in { azure-storage-queue = callPackage ../development/python-modules/azure-storage-queue { }; + azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; + + azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; + azure-mgmt-advisor = callPackage ../development/python-modules/azure-mgmt-advisor { }; azure-mgmt-applicationinsights = callPackage ../development/python-modules/azure-mgmt-applicationinsights { }; @@ -296,8 +300,6 @@ in { azure-mgmt-commerce = callPackage ../development/python-modules/azure-mgmt-commerce { }; - azure-mgmt-common = callPackage ../development/python-modules/azure-mgmt-common { }; - azure-mgmt-compute = callPackage ../development/python-modules/azure-mgmt-compute { }; azure-mgmt-consumption = callPackage ../development/python-modules/azure-mgmt-consumption { }; @@ -342,9 +344,9 @@ in { azure-mgmt-logic = callPackage ../development/python-modules/azure-mgmt-logic { }; - azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; + azure-mgmt-machinelearningcompute = callPackage ../development/python-modules/azure-mgmt-machinelearningcompute { }; - azure-mgmt-nspkg = callPackage ../development/python-modules/azure-mgmt-nspkg { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From 58a2e1ea3a74cf3f81550ab2d45bfb5cb8dab06b Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:48:16 -0400 Subject: [PATCH 0445/1611] pythonPackages.azure-mgmt-managementgroups: init at 0.2.0 --- .../azure-mgmt-managementgroups/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix new file mode 100644 index 00000000000..03faf442cbd --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-managementgroups/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-managementgroups"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "3d5237947458dc94b4a392141174b1c1258d26611241ee104e9006d1d798f682"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Management Groups Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-managementgroups; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 24d53c4d540..d031c5d6bf1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -346,6 +346,8 @@ in { azure-mgmt-machinelearningcompute = callPackage ../development/python-modules/azure-mgmt-machinelearningcompute { }; + azure-mgmt-managementgroups = callPackage ../development/python-modules/azure-mgmt-managementgroups { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From b9b15c5f89f3d165d29b28405bc89ba6e8921f3d Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:49:00 -0400 Subject: [PATCH 0446/1611] pythonPackages.azure-mgmt-managementpartner: init at 0.1.1 --- .../azure-mgmt-managementpartner/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix b/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix new file mode 100644 index 00000000000..be1ddc49a49 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-managementpartner/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-managementpartner"; + version = "0.1.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1bvcmx7dkf2adi26z7c2ga63ggpzdfqj8q1gzcic1yn03v6nb8i7"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure ManagementPartner Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-managementpartner; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d031c5d6bf1..377b4eb4823 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -348,6 +348,8 @@ in { azure-mgmt-managementgroups = callPackage ../development/python-modules/azure-mgmt-managementgroups { }; + azure-mgmt-managementpartner = callPackage ../development/python-modules/azure-mgmt-managementpartner { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From de4d5fc86faf40aeb74acd45911ffcde8aaef021 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:49:32 -0400 Subject: [PATCH 0447/1611] pythonPackages.azure-mgmt-maps: init at 0.1.0 --- .../azure-mgmt-maps/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-maps/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-maps/default.nix b/pkgs/development/python-modules/azure-mgmt-maps/default.nix new file mode 100644 index 00000000000..b1e373173d2 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-maps/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-maps"; + version = "0.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "c120e210bb61768da29de24d28b82f8d42ae24e52396eb6569b499709e22f006"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Maps Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-maps; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 377b4eb4823..ebceefb8044 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -350,6 +350,8 @@ in { azure-mgmt-managementpartner = callPackage ../development/python-modules/azure-mgmt-managementpartner { }; + azure-mgmt-maps = callPackage ../development/python-modules/azure-mgmt-maps { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From f0a784a83f49f69f77b4a9092022c6ef5c180035 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:50:14 -0400 Subject: [PATCH 0448/1611] pythonPackages.azure-mgmt-marketplaceordering: init at 0.2.1 --- .../default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix new file mode 100644 index 00000000000..8995f43a08b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-marketplaceordering/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-marketplaceordering"; + version = "0.2.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "dc765cde7ec03efe456438c85c6207c2f77775a8ce8a7adb19b0df5c5dc513c2"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Market Place Ordering Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-marketplaceordering; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ebceefb8044..3819e080ca4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -352,6 +352,8 @@ in { azure-mgmt-maps = callPackage ../development/python-modules/azure-mgmt-maps { }; + azure-mgmt-marketplaceordering = callPackage ../development/python-modules/azure-mgmt-marketplaceordering { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From 92425a94b1536054e97cfcf78674a783fa990435 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:50:48 -0400 Subject: [PATCH 0449/1611] pythonPackages.azure-mgmt-media: init at 1.1.1 --- .../azure-mgmt-media/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-media/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-media/default.nix b/pkgs/development/python-modules/azure-mgmt-media/default.nix new file mode 100644 index 00000000000..5061fa90ae8 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-media/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-media"; + version = "1.1.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "5d0c6b3a0f882dde8ae3d42467f03ea6c4e3f62613936087d54c67e6f504939b"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Media Services Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/media-services?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3819e080ca4..2bf0a9a5bf3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -354,6 +354,8 @@ in { azure-mgmt-marketplaceordering = callPackage ../development/python-modules/azure-mgmt-marketplaceordering { }; + azure-mgmt-media = callPackage ../development/python-modules/azure-mgmt-media { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From 9977c6cf19e35557f0f95fb51368922e4cbfa377 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:51:26 -0400 Subject: [PATCH 0450/1611] pythonPackages.azure-mgmt-monitor: init at 0.6.0 --- .../azure-mgmt-monitor/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-monitor/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-monitor/default.nix b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix new file mode 100644 index 00000000000..0a6f045dc4b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-monitor/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-monitor"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "5a804dae2c3e31bfd6f1b0482d49761b9a56f7eefa9b190cd76ef5fe1d504ef2"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Monitor Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/monitoring?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2bf0a9a5bf3..b860a0057df 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -356,6 +356,8 @@ in { azure-mgmt-media = callPackage ../development/python-modules/azure-mgmt-media { }; + azure-mgmt-monitor = callPackage ../development/python-modules/azure-mgmt-monitor { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From 628d735751d99811fd3327951b78aab3012af8c3 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:51:56 -0400 Subject: [PATCH 0451/1611] pythonPackages.azure-mgmt-msi: init at 1.0.0 --- .../python-modules/azure-mgmt-msi/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-msi/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-msi/default.nix b/pkgs/development/python-modules/azure-mgmt-msi/default.nix new file mode 100644 index 00000000000..63ebbb298f2 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-msi/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-msi"; + version = "1.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0n4gbwk843z66hhpcp1kcrnwqkzygbbc2ma01r9asgfv4nmklvyl"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure MSI Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-msi; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b860a0057df..b0752e1fd42 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -358,6 +358,8 @@ in { azure-mgmt-monitor = callPackage ../development/python-modules/azure-mgmt-monitor { }; + azure-mgmt-msi = callPackage ../development/python-modules/azure-mgmt-msi { }; + azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; From b044c8e1e696f44f9c1a2a2111e6929b68b2c0a8 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:53:30 -0400 Subject: [PATCH 0452/1611] pythonPackages.azure-mgmt-notificationhubs: init at 2.1.0 --- .../azure-mgmt-notificationhubs/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix b/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix new file mode 100644 index 00000000000..0629eb07b66 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-notificationhubs/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-notificationhubs"; + version = "2.1.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "10w53ida2nlx73vd1pczh4mkpg0lag1h19yyklx3yvgsyvahj25h"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Notification Hubs Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/notification-hubs?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b0752e1fd42..9cb32d5d4ee 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -362,6 +362,8 @@ in { azure-mgmt-network = callPackage ../development/python-modules/azure-mgmt-network { }; + azure-mgmt-notificationhubs = callPackage ../development/python-modules/azure-mgmt-notificationhubs { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From efa438331f0cfbf5603ad728b248099f91ee836d Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:54:37 -0400 Subject: [PATCH 0453/1611] pythonPackages.azure-mgmt-policyinsights: init at 0.3.1 --- .../azure-mgmt-policyinsights/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix new file mode 100644 index 00000000000..b57146afe3e --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-policyinsights/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-policyinsights"; + version = "0.3.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "b27f5ac367b69e225ab02fa2d1ea20cbbfe948ff43b0af4698cd8cbde0063908"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Policy Insights Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/policy?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9cb32d5d4ee..67c8ec316a9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -364,6 +364,8 @@ in { azure-mgmt-notificationhubs = callPackage ../development/python-modules/azure-mgmt-notificationhubs { }; + azure-mgmt-policyinsights = callPackage ../development/python-modules/azure-mgmt-policyinsights { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From 0b5759cd31ed127665662517654cee23813de049 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:55:13 -0400 Subject: [PATCH 0454/1611] pythonPackages.azure-mgmt-powerbiembedded: init at 2.0.0 --- .../azure-mgmt-powerbiembedded/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix b/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix new file mode 100644 index 00000000000..c946bb7ab36 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-powerbiembedded/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-powerbiembedded"; + version = "2.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "2f05be73f2a086c579a78fc900e3b2ae14ccde5bcec54e29dfc73e626b377476"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Power BI Embedded Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/power-bi?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 67c8ec316a9..c545eff5af5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -366,6 +366,8 @@ in { azure-mgmt-policyinsights = callPackage ../development/python-modules/azure-mgmt-policyinsights { }; + azure-mgmt-powerbiembedded = callPackage ../development/python-modules/azure-mgmt-powerbiembedded { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From 747d59e6b364a9dbddc31149019afb8c0d761866 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:55:49 -0400 Subject: [PATCH 0455/1611] pythonPackages.azure-mgmt-rdbms: init at 1.8.0 --- .../azure-mgmt-rdbms/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-rdbms/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix new file mode 100644 index 00000000000..881727e383b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-rdbms/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-rdbms"; + version = "1.8.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "40abbe4f9c59d7906594ceed067d0e7d09fef44be0d16aded5d5717f1a8aa5ea"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure RDBMS Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-rdbms; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c545eff5af5..f74daabc7f5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -368,6 +368,8 @@ in { azure-mgmt-powerbiembedded = callPackage ../development/python-modules/azure-mgmt-powerbiembedded { }; + azure-mgmt-rdbms = callPackage ../development/python-modules/azure-mgmt-rdbms { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From e3a5ef136c7d8cc86206c5ec99de1cffe03d7492 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:56:23 -0400 Subject: [PATCH 0456/1611] pythonPackages.azure-mgmt-recoveryservices: init at 0.4.0 --- .../azure-mgmt-recoveryservices/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix b/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix new file mode 100644 index 00000000000..5e4a500ce3b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-recoveryservices/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-recoveryservices"; + version = "0.4.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "e1e794760232239f8a9328d5de1740565ff70d1612a2921c9609746ba5671e6c"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Recovery Services Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/recoveryservices?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f74daabc7f5..2374db8335a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -370,6 +370,8 @@ in { azure-mgmt-rdbms = callPackage ../development/python-modules/azure-mgmt-rdbms { }; + azure-mgmt-recoveryservices = callPackage ../development/python-modules/azure-mgmt-recoveryservices { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From d52b290a28069fa9a57db4290753380bcb1c6da8 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:56:53 -0400 Subject: [PATCH 0457/1611] pythonPackages.azure-mgmt-recoveryservicesbackup: init at 0.3.0 --- .../default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix b/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix new file mode 100644 index 00000000000..49247e87801 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-recoveryservicesbackup/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-recoveryservicesbackup"; + version = "0.3.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "1e55b6cbb808df83576cef352ba0065f4878fe505299c0a4c5a97f4f1e5793df"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Recovery Services Backup Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/recovery-services-backup?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2374db8335a..b42d434bf7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -372,6 +372,8 @@ in { azure-mgmt-recoveryservices = callPackage ../development/python-modules/azure-mgmt-recoveryservices { }; + azure-mgmt-recoveryservicesbackup = callPackage ../development/python-modules/azure-mgmt-recoveryservicesbackup { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From 6730fb4fcb0cb3faa197aa136f7c949ce93ab608 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:57:44 -0400 Subject: [PATCH 0458/1611] pythonPackages.azure-mgmt-redis: init at 6.0.0 --- .../azure-mgmt-redis/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-redis/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-redis/default.nix b/pkgs/development/python-modules/azure-mgmt-redis/default.nix new file mode 100644 index 00000000000..21cdfbafc92 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-redis/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-redis"; + version = "6.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "db999e104edeee3a13a8ceb1881e15196fe03a02635e0e20855eb52c1e2ecca1"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Redis Cache Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/redis?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b42d434bf7e..40dc350a5bf 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -374,6 +374,8 @@ in { azure-mgmt-recoveryservicesbackup = callPackage ../development/python-modules/azure-mgmt-recoveryservicesbackup { }; + azure-mgmt-redis = callPackage ../development/python-modules/azure-mgmt-redis { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From b7a690c16493b4b5654ae65fba2b83de2bdce925 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:58:13 -0400 Subject: [PATCH 0459/1611] pythonPackages.azure-mgmt-relay: init at 0.2.0 --- .../azure-mgmt-relay/default.nix | 34 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-relay/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-relay/default.nix b/pkgs/development/python-modules/azure-mgmt-relay/default.nix new file mode 100644 index 00000000000..a3491356c9a --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-relay/default.nix @@ -0,0 +1,34 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-relay"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0s5z4cil750wn770m0hdzcrpshj4bj1bglkkvxdx9l9054dk9s57"; + }; + + propagatedBuildInputs = [ + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Relay Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/relay?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 40dc350a5bf..fa337fb6624 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -376,6 +376,8 @@ in { azure-mgmt-redis = callPackage ../development/python-modules/azure-mgmt-redis { }; + azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From e1f894b0de9fd5452711935c159bce2d2a2715ae Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:58:55 -0400 Subject: [PATCH 0460/1611] pythonPackages.azure-mgmt-reservations: init at 0.3.2 --- .../azure-mgmt-reservations/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-reservations/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-reservations/default.nix b/pkgs/development/python-modules/azure-mgmt-reservations/default.nix new file mode 100644 index 00000000000..be00d4aa418 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-reservations/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-reservations"; + version = "0.3.2"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0nksxjh5kh09dr0zw667fg8mzik4ymvfq3dipwag6pynbqr9ls4l"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Reservations Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-reservations; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index fa337fb6624..7aea6bc1221 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -378,6 +378,8 @@ in { azure-mgmt-relay = callPackage ../development/python-modules/azure-mgmt-relay { }; + azure-mgmt-reservations = callPackage ../development/python-modules/azure-mgmt-reservations { }; + azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From e70d8d9802b4dfdd70f930bef7ff5bb7c10cab2d Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 18:59:39 -0400 Subject: [PATCH 0461/1611] pythonPackages.azure-mgmt-scheduler: init at 2.0.0 --- .../azure-mgmt-scheduler/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-scheduler/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix new file mode 100644 index 00000000000..a25b81aa5fa --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-scheduler/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-scheduler"; + version = "2.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "c6e6edd386ddc4c21d54b1497c3397b970bc127b71809b51bd2391cb1f3d1a14"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Scheduler Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/scheduler?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7aea6bc1221..b870382cd67 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -382,6 +382,8 @@ in { azure-mgmt-resource = callPackage ../development/python-modules/azure-mgmt-resource { }; + azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { }; + azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; backports_csv = callPackage ../development/python-modules/backports_csv {}; From d98b22b1742597aa7df72f460b2cfc6d1861b3bd Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:00:07 -0400 Subject: [PATCH 0462/1611] pythonPackages.azure-mgmt-search: init at 2.0.0 --- .../azure-mgmt-search/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-search/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-search/default.nix b/pkgs/development/python-modules/azure-mgmt-search/default.nix new file mode 100644 index 00000000000..6ae9693e7f5 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-search/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-search"; + version = "2.0.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "0ec5de861bd786bcb8691322feed6e6caa8d2f0806a50dc0ca5d640591926893"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Search Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/search?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b870382cd67..3248680dc36 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -384,6 +384,8 @@ in { azure-mgmt-scheduler = callPackage ../development/python-modules/azure-mgmt-scheduler { }; + azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { }; + azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; backports_csv = callPackage ../development/python-modules/backports_csv {}; From 0795e4b362d2f69bfc729d52ff998fbce59a5247 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:00:42 -0400 Subject: [PATCH 0463/1611] pythonPackages.azure-mgmt-servicebus: init at 0.6.0 --- .../azure-mgmt-servicebus/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-servicebus/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix new file mode 100644 index 00000000000..e5b35e538ee --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-servicebus/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-servicebus"; + version = "0.6.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "f20920b8fb119ef4abeda4d2dac765a4fc48cd0bcf30c27f8c4cc6d890bc08b1"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Service Bus Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/servicebus?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3248680dc36..2f8949cf0c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -386,6 +386,8 @@ in { azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { }; + azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { }; + azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; backports_csv = callPackage ../development/python-modules/backports_csv {}; From abb0852c861b0e16ccdac2c0533a61633c7549bc Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:01:14 -0400 Subject: [PATCH 0464/1611] pythonPackages.azure-mgmt-servicefabric: init at 0.2.0 --- .../azure-mgmt-servicefabric/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix new file mode 100644 index 00000000000..54c695a5079 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-servicefabric/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-servicefabric"; + version = "0.2.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "b2bf2279b8ff8450c35e78e226231655021482fdbda27db09975ebfc983398ad"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Service Fabric Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/servicefabric?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2f8949cf0c9..b478fc182cb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -386,6 +386,8 @@ in { azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { }; + azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { }; + azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From f71c40a4b1f441dfa77f868ab0c93a235e2ec95c Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:02:38 -0400 Subject: [PATCH 0465/1611] pythonPackages.azure-mgmt-signalr: init at 0.1.1 --- .../azure-mgmt-signalr/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 4 ++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/azure-mgmt-signalr/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-signalr/default.nix b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix new file mode 100644 index 00000000000..d1671e02ec1 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-signalr/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +}: + +buildPythonPackage rec { + pname = "azure-mgmt-signalr"; + version = "0.1.1"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "8a6266a59a5c69102e274806ccad3ac74b06fd2c226e16426bbe248fc2174903"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure SignalR Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-signalr; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b478fc182cb..e157a86c964 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -386,9 +386,11 @@ in { azure-mgmt-search = callPackage ../development/python-modules/azure-mgmt-search { }; + azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { }; + azure-mgmt-servicefabric = callPackage ../development/python-modules/azure-mgmt-servicefabric { }; - azure-mgmt-servicebus = callPackage ../development/python-modules/azure-mgmt-servicebus { }; + azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { }; azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; From 7ff677c231ca2694cfb6b79049ce8a2b7618576e Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:03:34 -0400 Subject: [PATCH 0466/1611] pythonPackages.azure-mgmt-sql: init at 0.12.0 --- .../python-modules/azure-mgmt-sql/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-sql/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-sql/default.nix b/pkgs/development/python-modules/azure-mgmt-sql/default.nix new file mode 100644 index 00000000000..913eb150224 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-sql/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-sql"; + version = "0.12.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "8399702e9d1836f3b040ce0c93d8dc089767d66edb9224a3b8a6c9ab7e8ff01f"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure SQL Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/sql?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e157a86c964..abb024e1f67 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -392,6 +392,8 @@ in { azure-mgmt-signalr = callPackage ../development/python-modules/azure-mgmt-signalr { }; + azure-mgmt-sql = callPackage ../development/python-modules/azure-mgmt-sql { }; + azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; backports_csv = callPackage ../development/python-modules/backports_csv {}; From a85b7c99db392fdfa3acc35484302f4905fdc7fb Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:04:08 -0400 Subject: [PATCH 0467/1611] pythonPackages.azure-mgmt-subscription: init at 0.3.0 --- .../azure-mgmt-subscription/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-subscription/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-subscription/default.nix b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix new file mode 100644 index 00000000000..d19aba5fbc2 --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-subscription/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-subscription"; + version = "0.3.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "7a095fe46e598210b178e1059bba82eb02f3b8a7f44f3791442ff7d9ff323d2b"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Subscription Management Client Library"; + homepage = https://github.com/Azure/azure-sdk-for-python/tree/master/azure-mgmt-subscription; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index abb024e1f67..75faf48b847 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -396,6 +396,8 @@ in { azure-mgmt-storage = callPackage ../development/python-modules/azure-mgmt-storage { }; + azure-mgmt-subscription = callPackage ../development/python-modules/azure-mgmt-subscription { }; + backports_csv = callPackage ../development/python-modules/backports_csv {}; backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {}; From af56054c8edf9eac32b685b2cbccbcdec47bce6f Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:04:47 -0400 Subject: [PATCH 0468/1611] pythonPackages.azure-mgmt-trafficmanager: init at 0.51.0 --- .../azure-mgmt-trafficmanager/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix new file mode 100644 index 00000000000..87b0603877b --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-trafficmanager/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-trafficmanager"; + version = "0.51.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "fc8ae77022cfe52fda4379a2f31e0b857574d536e41291a7b569b5c0f4104186"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Traffic Manager Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/traffic-manager?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 75faf48b847..91dbeca1a9f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -398,6 +398,8 @@ in { azure-mgmt-subscription = callPackage ../development/python-modules/azure-mgmt-subscription { }; + azure-mgmt-trafficmanager = callPackage ../development/python-modules/azure-mgmt-trafficmanager { }; + backports_csv = callPackage ../development/python-modules/backports_csv {}; backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {}; From b2c15051328f9a6d94aab5892cea8d7f2724a8f8 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Mon, 29 Apr 2019 19:05:16 -0400 Subject: [PATCH 0469/1611] pythonPackages.azure-mgmt-web: init at 0.41.0 --- .../python-modules/azure-mgmt-web/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/azure-mgmt-web/default.nix diff --git a/pkgs/development/python-modules/azure-mgmt-web/default.nix b/pkgs/development/python-modules/azure-mgmt-web/default.nix new file mode 100644 index 00000000000..f2beeb99ffb --- /dev/null +++ b/pkgs/development/python-modules/azure-mgmt-web/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, msrest +, msrestazure +, azure-common +, azure-mgmt-nspkg +, isPy3k +}: + +buildPythonPackage rec { + pname = "azure-mgmt-web"; + version = "0.41.0"; + + src = fetchPypi { + inherit pname version; + extension = "zip"; + sha256 = "5f170f25c72119ff4b4e2f39d46ce21bdb2f399f786ea24eedc15c12cfba3054"; + }; + + propagatedBuildInputs = [ + msrest + msrestazure + azure-common + ] ++ lib.optionals (!isPy3k) [ + azure-mgmt-nspkg + ]; + + # has no tests + doCheck = false; + + meta = with lib; { + description = "This is the Microsoft Azure Web Apps Management Client Library"; + homepage = https://docs.microsoft.com/en-us/python/api/overview/azure/webapps?view=azure-python; + license = licenses.mit; + maintainers = with maintainers; [ mwilsoninsight ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 91dbeca1a9f..7ac3d14289b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -400,6 +400,8 @@ in { azure-mgmt-trafficmanager = callPackage ../development/python-modules/azure-mgmt-trafficmanager { }; + azure-mgmt-web = callPackage ../development/python-modules/azure-mgmt-web { }; + backports_csv = callPackage ../development/python-modules/backports_csv {}; backports-shutil-which = callPackage ../development/python-modules/backports-shutil-which {}; From ddb3d34d882a562cf9047795e58dee246bc5629e Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Tue, 30 Apr 2019 12:37:05 -0400 Subject: [PATCH 0470/1611] pythonPackages.azure-mgmt-nspkg: refactor metadata points to GitHub --- .../python-modules/azure-mgmt-nspkg/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix b/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix index cf977539d5d..8adb60e99aa 100644 --- a/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-nspkg/default.nix @@ -2,6 +2,8 @@ , buildPythonPackage , fetchPypi , azure-nspkg +, python +, isPy3k }: buildPythonPackage rec { @@ -16,10 +18,12 @@ buildPythonPackage rec { propagatedBuildInputs = [ azure-nspkg ]; + doCheck = false; + meta = with pkgs.lib; { description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From e0c1e74805e979b8be0222092cc2be2a4ebac548 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Tue, 30 Apr 2019 12:38:09 -0400 Subject: [PATCH 0471/1611] pythonPackages.azure-nspkg: refactor updated license and homepage --- .../python-modules/azure-nspkg/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/azure-nspkg/default.nix b/pkgs/development/python-modules/azure-nspkg/default.nix index f95db7b1c59..bb1cb41f341 100644 --- a/pkgs/development/python-modules/azure-nspkg/default.nix +++ b/pkgs/development/python-modules/azure-nspkg/default.nix @@ -1,6 +1,8 @@ -{ pkgs +{ lib , buildPythonPackage , fetchPypi +, python +, isPy3k }: buildPythonPackage rec { @@ -13,10 +15,12 @@ buildPythonPackage rec { sha256 = "e7d3cea6af63e667d87ba1ca4f8cd7cb4dfca678e4c55fc1cedb320760e39dd0"; }; - meta = with pkgs.lib; { + doCheck = false; + + meta = with lib; { description = "Microsoft Azure SDK for Python"; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; - license = licenses.asl20; - maintainers = with maintainers; [ olcai ]; + homepage = https://github.com/Azure/azure-sdk-for-python; + license = licenses.mit; + maintainers = with maintainers; [ olcai mwilsoninsight ]; }; } From 4049da4b074b17c78a5ef0f3147bba4e62d15ed1 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Tue, 21 May 2019 14:12:38 -0400 Subject: [PATCH 0472/1611] pythonPackages.msrest: refactor --- .../python-modules/msrest/default.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/msrest/default.nix b/pkgs/development/python-modules/msrest/default.nix index ba3dd00bfe4..4b6a617c018 100644 --- a/pkgs/development/python-modules/msrest/default.nix +++ b/pkgs/development/python-modules/msrest/default.nix @@ -1,6 +1,6 @@ { lib , buildPythonPackage -, fetchPypi +, fetchFromGitHub , isPy3k , requests , requests_oauthlib @@ -21,9 +21,13 @@ buildPythonPackage rec { version = "0.6.8"; pname = "msrest"; - src = fetchPypi { - inherit pname version; - sha256 = "0yd43fnmfxkvk3idkyn67ziwjgkwkn261kicr3szjibpqjqcpsf9"; + # no tests in PyPI tarball + # see https://github.com/Azure/msrest-for-python/pull/152 + src = fetchFromGitHub { + owner = "Azure"; + repo = "msrest-for-python"; + rev = "v${version}"; + sha256 = "1vnh0y68vqf7hwhghbf6bjadrzlv98aj4vfz6g592lww3ijpy77w"; }; propagatedBuildInputs = [ @@ -42,8 +46,8 @@ buildPythonPackage rec { meta = with lib; { description = "The runtime library 'msrest' for AutoRest generated Python clients."; - homepage = "https://azure.microsoft.com/en-us/develop/python/"; + homepage = https://github.com/Azure/msrest-for-python; license = licenses.mit; - maintainers = with maintainers; [ bendlas jonringer ]; + maintainers = with maintainers; [ bendlas jonringer mwilsoninsight ]; }; } From c91c387a9eaf862a6ed256b6be2530d83e0450e5 Mon Sep 17 00:00:00 2001 From: Max Wilson Date: Tue, 21 May 2019 14:24:33 -0400 Subject: [PATCH 0473/1611] pythonPackages.azure-mgmt-network: 2.6.0 -> 2.7.0 --- .../development/python-modules/azure-mgmt-network/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/azure-mgmt-network/default.nix b/pkgs/development/python-modules/azure-mgmt-network/default.nix index 29266aea7ee..ad730774c5e 100644 --- a/pkgs/development/python-modules/azure-mgmt-network/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-network/default.nix @@ -7,13 +7,13 @@ }: buildPythonPackage rec { - version = "2.6.0"; + version = "2.7.0"; pname = "azure-mgmt-network"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "0166646703389374736cbe045ffb874e08796407ea0b1b5d441143b054a47e09"; + sha256 = "04z9f0nd2nh5miw81qahqrrz998l4yd328qcyx7bxg42a5f5v5jp"; }; postInstall = if isPy3k then "" else '' From 5995755b68e16ed8ae594a3b2c350013af91520c Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Tue, 16 Jul 2019 14:39:54 -0700 Subject: [PATCH 0474/1611] pythonPackages.trio: disable the tests on Darwin --- pkgs/development/python-modules/trio/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/trio/default.nix b/pkgs/development/python-modules/trio/default.nix index f76939603d3..bc9837dc23c 100644 --- a/pkgs/development/python-modules/trio/default.nix +++ b/pkgs/development/python-modules/trio/default.nix @@ -9,6 +9,7 @@ , pyopenssl , trustme , sniffio +, stdenv , jedi , pylint }: @@ -37,6 +38,9 @@ buildPythonPackage rec { sniffio ] ++ lib.optionals (pythonOlder "3.7") [ contextvars ]; + # tests are failing on Darwin + doCheck = !stdenv.isDarwin; + meta = { description = "An async/await-native I/O library for humans and snake people"; homepage = https://github.com/python-trio/trio; From 736f645da1ec45dc80961d3a3d7b94bb652f2614 Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Tue, 16 Jul 2019 14:41:42 -0700 Subject: [PATCH 0475/1611] pythonPackages.uamqp: fix the build on Darwin --- pkgs/development/python-modules/uamqp/default.nix | 15 ++++++++++----- pkgs/top-level/python-packages.nix | 4 +++- 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/uamqp/default.nix b/pkgs/development/python-modules/uamqp/default.nix index b7f244730b1..ff0c61c5e07 100644 --- a/pkgs/development/python-modules/uamqp/default.nix +++ b/pkgs/development/python-modules/uamqp/default.nix @@ -1,12 +1,15 @@ -{ lib +{ CFNetwork +, Security , buildPythonPackage -, fetchPypi -, cmake -, openssl -, six , certifi +, cmake , enum34 +, fetchPypi , isPy3k +, lib +, openssl +, stdenv +, six }: buildPythonPackage rec { @@ -24,6 +27,8 @@ buildPythonPackage rec { six ] ++ lib.optionals (!isPy3k) [ enum34 + ] ++ lib.optionals stdenv.isDarwin [ + CFNetwork Security ]; nativeBuildInputs = [ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7ac3d14289b..2a813310865 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1138,7 +1138,9 @@ in { toggl-cli = callPackage ../development/python-modules/toggl-cli { }; - uamqp = callPackage ../development/python-modules/uamqp { }; + uamqp = callPackage ../development/python-modules/uamqp { + inherit (pkgs.darwin.apple_sdk.frameworks) CFNetwork Security; + }; unifi = callPackage ../development/python-modules/unifi { }; From 976928daa2bf3f33792eb6878569153c763a40d4 Mon Sep 17 00:00:00 2001 From: Nazarii Bardiuk Date: Mon, 29 Apr 2019 21:46:00 +0100 Subject: [PATCH 0476/1611] nixos/tiddlywiki: init Service that runs TiddlyWiki nodejs server --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/tiddlywiki.nix | 52 +++++++++++++++++ nixos/tests/all-tests.nix | 1 + nixos/tests/tiddlywiki.nix | 67 ++++++++++++++++++++++ 4 files changed, 121 insertions(+) create mode 100644 nixos/modules/services/misc/tiddlywiki.nix create mode 100644 nixos/tests/tiddlywiki.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index c4ee28a9593..0e72ba8397b 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -469,6 +469,7 @@ ./services/misc/synergy.nix ./services/misc/sysprof.nix ./services/misc/taskserver + ./services/misc/tiddlywiki.nix ./services/misc/tzupdate.nix ./services/misc/uhub.nix ./services/misc/weechat.nix diff --git a/nixos/modules/services/misc/tiddlywiki.nix b/nixos/modules/services/misc/tiddlywiki.nix new file mode 100644 index 00000000000..2adc08f6cfe --- /dev/null +++ b/nixos/modules/services/misc/tiddlywiki.nix @@ -0,0 +1,52 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + + cfg = config.services.tiddlywiki; + listenParams = concatStrings (mapAttrsToList (n: v: " '${n}=${toString v}' ") cfg.listenOptions); + exe = "${pkgs.nodePackages.tiddlywiki}/lib/node_modules/.bin/tiddlywiki"; + name = "tiddlywiki"; + dataDir = "/var/lib/" + name; + +in { + + options.services.tiddlywiki = { + + enable = mkEnableOption "TiddlyWiki nodejs server"; + + listenOptions = mkOption { + type = types.attrs; + default = {}; + example = { + credentials = "../credentials.csv"; + readers="(authenticated)"; + port = 3456; + }; + description = '' + Parameters passed to --listen command. + Refer to + for details on supported values. + ''; + }; + }; + + config = mkIf cfg.enable { + systemd = { + services.tiddlywiki = { + description = "TiddlyWiki nodejs server"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + serviceConfig = { + Type = "simple"; + Restart = "on-failure"; + DynamicUser = true; + StateDirectory = name; + ExecStartPre = "-${exe} ${dataDir} --init server"; + ExecStart = "${exe} ${dataDir} --listen ${listenParams}"; + }; + }; + }; + }; +} diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 359f62751b9..363cd640c21 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -245,6 +245,7 @@ in pdns-recursor = handleTest ./pdns-recursor.nix {}; taskserver = handleTest ./taskserver.nix {}; telegraf = handleTest ./telegraf.nix {}; + tiddlywiki = handleTest ./tiddlywiki.nix {}; tinydns = handleTest ./tinydns.nix {}; tomcat = handleTest ./tomcat.nix {}; tor = handleTest ./tor.nix {}; diff --git a/nixos/tests/tiddlywiki.nix b/nixos/tests/tiddlywiki.nix new file mode 100644 index 00000000000..4a2014a4ec9 --- /dev/null +++ b/nixos/tests/tiddlywiki.nix @@ -0,0 +1,67 @@ +import ./make-test.nix ({ ... }: { + name = "tiddlywiki"; + nodes = { + default = { + services.tiddlywiki.enable = true; + }; + configured = { + boot.postBootCommands = '' + echo "username,password + somelogin,somesecret" > /var/lib/wikiusers.csv + ''; + services.tiddlywiki = { + enable = true; + listenOptions = { + port = 3000; + credentials="../wikiusers.csv"; + readers="(authenticated)"; + }; + }; + }; + }; + + testScript = '' + startAll; + + subtest "by default works without configuration", sub { + $default->waitForUnit("tiddlywiki.service"); + }; + + subtest "by default available on port 8080 without auth", sub { + $default->waitForUnit("tiddlywiki.service"); + $default->waitForOpenPort(8080); + $default->succeed("curl --fail 127.0.0.1:8080"); + }; + + subtest "by default creates empty wiki", sub { + $default->succeed("test -f /var/lib/tiddlywiki/tiddlywiki.info"); + }; + + subtest "configured on port 3000 with basic auth", sub { + $configured->waitForUnit("tiddlywiki.service"); + $configured->waitForOpenPort(3000); + $configured->fail("curl --fail 127.0.0.1:3000"); + $configured->succeed("curl --fail 127.0.0.1:3000 --user somelogin:somesecret"); + }; + + subtest "configured with different wikifolder", sub { + $configured->succeed("test -f /var/lib/tiddlywiki/tiddlywiki.info"); + }; + + subtest "restart preserves changes", sub { + # given running wiki + $default->waitForUnit("tiddlywiki.service"); + # with some changes + $default->succeed("curl --fail --request PUT --header 'X-Requested-With:TiddlyWiki' --data '{ \"title\": \"title\", \"text\": \"content\" }' --url 127.0.0.1:8080/recipes/default/tiddlers/somepage "); + $default->succeed("sleep 2"); # server syncs to filesystem on timer + + # when wiki is cycled + $default->systemctl("restart tiddlywiki.service"); + $default->waitForUnit("tiddlywiki.service"); + $default->waitForOpenPort(8080); + + # the change is preserved + $default->succeed("curl --fail 127.0.0.1:8080/recipes/default/tiddlers/somepage"); + }; + ''; +}) From af372747439918007ef9feb6c84d26df71754920 Mon Sep 17 00:00:00 2001 From: Pamplemousse Date: Tue, 16 Jul 2019 15:58:20 -0700 Subject: [PATCH 0477/1611] pythonPackages.filebytes: 0.9.20 -> 0.9.21 --- pkgs/development/python-modules/filebytes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/filebytes/default.nix b/pkgs/development/python-modules/filebytes/default.nix index b02ff0c7457..7102e5d73c4 100644 --- a/pkgs/development/python-modules/filebytes/default.nix +++ b/pkgs/development/python-modules/filebytes/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "filebytes"; - version = "0.9.20"; + version = "0.9.21"; src = fetchPypi { inherit pname version; - sha256 = "6c33986ca048e49cf1a5e2f167af9f02c7f866576b3b91a8a9124d32e57f935d"; + sha256 = "09e306feafd435e240b6ca22e6319ce51862dbe99e3481368fc9a2d15d2263d5"; }; meta = with stdenv.lib; { From 4908d382ae1eb9f618ea8745cb6794db1dba9520 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 16 Jul 2019 20:37:43 -0400 Subject: [PATCH 0478/1611] wrapQtAppsHook: remove isQtApp This was preventing dolphin from being wrapped. --- pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh index bf7b07e2549..775922c1f4c 100644 --- a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh +++ b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh @@ -64,10 +64,6 @@ qtOwnPathsHook() { preFixupPhases+=" qtOwnPathsHook" -isQtApp () { - readelf -d "$1" 2>/dev/null | grep -q -F 'libQt5Core' -} - # Note: $qtWrapperArgs still gets defined even if $dontWrapQtApps is set. wrapQtAppsHook() { # skip this hook when requested @@ -86,8 +82,6 @@ wrapQtAppsHook() { find "$targetDir" -executable -print0 | while IFS= read -r -d '' file do - isQtApp "$file" || continue - if [ -f "$file" ] then echo "wrapping $file" From e871d5466a0f5d6cd3068671b407d1bd4dd91937 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 17:55:50 -0700 Subject: [PATCH 0479/1611] strace: 5.1 -> 5.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/strace/versions --- pkgs/development/tools/misc/strace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/strace/default.nix b/pkgs/development/tools/misc/strace/default.nix index 49b12b60b14..acdc712786f 100644 --- a/pkgs/development/tools/misc/strace/default.nix +++ b/pkgs/development/tools/misc/strace/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "strace-${version}"; - version = "5.1"; + version = "5.2"; src = fetchurl { url = "https://strace.io/files/${version}/${name}.tar.xz"; - sha256 = "12wsga1v3rab24gr0mpfip7j7gwr90m8f9h6fviqxa3xgnwl38zm"; + sha256 = "1li49i75wrdw91hchyyd8spnzfcmxcfyfb5g9zbaza89aq4bq4ym"; }; depsBuildBuild = [ buildPackages.stdenv.cc ]; From 908807bb53609e74a412149b2a1ca204cd488144 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 18:42:52 -0700 Subject: [PATCH 0480/1611] gitAndTools.subgit: 3.3.6 -> 3.3.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/subgit/versions --- .../version-management/git-and-tools/subgit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/subgit/default.nix b/pkgs/applications/version-management/git-and-tools/subgit/default.nix index a129e0f7527..6866418f3e3 100644 --- a/pkgs/applications/version-management/git-and-tools/subgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/subgit/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, unzip, makeWrapper, jre }: stdenv.mkDerivation rec { - name = "subgit-3.3.6"; + name = "subgit-3.3.7"; meta = { description = "A tool for a smooth, stress-free SVN to Git migration"; @@ -21,6 +21,6 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://subgit.com/download/${name}.zip"; - sha256 = "1zfhl583lx7xdw9jwskv25p6m385wm3s5a311y0hnxxqwkjbgq1j"; + sha256 = "1cpssmvp961kw8s3b9s9bv9jmsm1gk3napggw5810c4rnnihjvrn"; }; } From de99f286112b2d4f2ba37827e27515b0a0099448 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Tue, 16 Jul 2019 11:44:45 -0700 Subject: [PATCH 0481/1611] git-crypt: include man pages in output --- .../git-and-tools/git-crypt/default.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index 6a39f1fe3d1..ec6e8d8d918 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -1,4 +1,6 @@ -{ fetchFromGitHub, git, gnupg, makeWrapper, openssl, stdenv }: +{ fetchFromGitHub, git, gnupg, makeWrapper, openssl, stdenv +, libxslt, docbook_xsl +}: stdenv.mkDerivation rec { name = "git-crypt-${version}"; @@ -12,6 +14,8 @@ stdenv.mkDerivation rec { inherit name; }; + nativeBuildInputs = [ libxslt ]; + buildInputs = [ openssl makeWrapper ]; patchPhase = '' @@ -19,9 +23,14 @@ stdenv.mkDerivation rec { --replace '(escape_shell_arg(our_exe_path()))' '= "git-crypt"' ''; - installPhase = '' - make install PREFIX=$out - wrapProgram $out/bin/* --prefix PATH : $out/bin:${git}/bin:${gnupg}/bin + makeFlags = [ + "PREFIX=${placeholder ''out''}" + "ENABLE_MAN=yes" + "DOCBOOK_XSL=${docbook_xsl}/share/xml/docbook-xsl-nons/manpages/docbook.xsl" + ]; + + postFixup = '' + wrapProgram $out/bin/git-crypt --prefix PATH : $out/bin:${git}/bin:${gnupg}/bin ''; meta = with stdenv.lib; { From 1e9373cb594ca1f2de9e9ddd84f38cdb51b2447b Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Tue, 16 Jul 2019 18:57:45 -0700 Subject: [PATCH 0482/1611] git-crypt: pname --- .../version-management/git-and-tools/git-crypt/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix index ec6e8d8d918..abb09ff9a45 100644 --- a/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-crypt/default.nix @@ -3,15 +3,14 @@ }: stdenv.mkDerivation rec { - name = "git-crypt-${version}"; + pname = "git-crypt"; version = "0.6.0"; src = fetchFromGitHub { owner = "AGWA"; - repo = "git-crypt"; - rev = "${version}"; + repo = pname; + rev = version; sha256 = "13m9y0m6gc3mlw3pqv9x4i0him2ycbysizigdvdanhh514kga602"; - inherit name; }; nativeBuildInputs = [ libxslt ]; From 53c981f67e33ae4bbb2e13a6ba5de175ccd1963b Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 16 Jul 2019 23:04:34 -0400 Subject: [PATCH 0483/1611] kdeFramworks.kconfigwidgets: fix outputs --- .../libraries/kde-frameworks/kconfigwidgets/default.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/development/libraries/kde-frameworks/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks/kconfigwidgets/default.nix index 3943e5d6d49..e06d9547de0 100644 --- a/pkgs/development/libraries/kde-frameworks/kconfigwidgets/default.nix +++ b/pkgs/development/libraries/kde-frameworks/kconfigwidgets/default.nix @@ -11,10 +11,5 @@ mkDerivation { propagatedBuildInputs = [ kauth kcodecs kconfig kwidgetsaddons ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; outputs = [ "out" "dev" ]; - preConfigure = '' - outputBin=dev - ''; - postInstall = '' - moveToOutput share/man $dev - ''; + outputBin = "dev"; } From 756760b216f0707ba8e539474ae52acb973c9dd1 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 20:19:34 -0700 Subject: [PATCH 0484/1611] vips: 8.8.0 -> 8.8.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/vips/versions --- pkgs/tools/graphics/vips/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/vips/default.nix b/pkgs/tools/graphics/vips/default.nix index f5311d378d7..db06c2a1588 100644 --- a/pkgs/tools/graphics/vips/default.nix +++ b/pkgs/tools/graphics/vips/default.nix @@ -10,13 +10,13 @@ stdenv.mkDerivation rec { name = "vips-${version}"; - version = "8.8.0"; + version = "8.8.1"; src = fetchFromGitHub { owner = "libvips"; repo = "libvips"; rev = "v${version}"; - sha256 = "17wz4rxn3jb171lrh8v3dxiykjhzwwzs5r7ly651dspcbi6s3r6c"; + sha256 = "1wnfn92rvafx1g9vvhbvxssifzydx9y95kszg6i4c1p5sv5nhfd2"; # Remove unicode file names which leads to different checksums on HFS+ # vs. other filesystems because of unicode normalisation. extraPostFetch = '' From 620ee144d90daa6bf97df9699c239bf1d5a5efbc Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 17 Jul 2019 00:00:00 -0500 Subject: [PATCH 0485/1611] gitAndTools.git-absorb: 0.4.0 -> 0.5.0 --- .../version-management/git-and-tools/git-absorb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix b/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix index 509fc73a3f3..169315d1e2e 100644 --- a/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-absorb/default.nix @@ -2,18 +2,18 @@ rustPlatform.buildRustPackage rec { pname = "git-absorb"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "tummychow"; repo = pname; rev = "refs/tags/${version}"; - sha256 = "1clmd1b90vppbzng1kq0vzfh7964m3fk64q6h1vfcd1cfqj63r5v"; + sha256 = "0lggv3knh6iglkh8x2zqvqcs3dlwfsdiclg7pmdrycny72la4k2j"; }; buildInputs = stdenv.lib.optionals stdenv.isDarwin [ libiconv Security ]; - cargoSha256 = "0q40qcki49dw23n3brgdz5plvigmsf61jm0kfy48j89mijih8zy7"; + cargoSha256 = "1khplyglavsidh13nnq9y5rxd5w89ail08wgzn29a5m03zir1yfd"; meta = with stdenv.lib; { homepage = "https://github.com/tummychow/git-absorb"; From f19bc96592acfeebe9f25d6c7ca3a40d55670cfd Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 18:18:09 -0700 Subject: [PATCH 0486/1611] termtosvg: 0.8.0 -> 0.9.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/termtosvg/versions --- pkgs/tools/misc/termtosvg/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/termtosvg/default.nix b/pkgs/tools/misc/termtosvg/default.nix index eb46f12c5c2..f3a482baa48 100644 --- a/pkgs/tools/misc/termtosvg/default.nix +++ b/pkgs/tools/misc/termtosvg/default.nix @@ -2,14 +2,14 @@ python3Packages.buildPythonApplication rec { pname = "termtosvg"; - version = "0.8.0"; + version = "0.9.0"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "e3a0a7bd511028c96d242525df807a23e6f22e55b111a7ee861f294a86224b0c"; + sha256 = "1mf2vlq083mzhja449il78zpvjq6fv36pzakwrqmgxdjbsdyvxbd"; }; - propagatedBuildInputs = with python3Packages; [ lxml pyte ]; + propagatedBuildInputs = with python3Packages; [ lxml pyte wcwidth ]; meta = with lib; { homepage = https://nbedos.github.io/termtosvg/; From e48aa067ade8658b2ddaedbc3b59c9d8e32b521d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 02:10:56 -0700 Subject: [PATCH 0487/1611] python37Packages.phonenumbers: 8.10.12 -> 8.10.15 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-phonenumbers/versions --- pkgs/development/python-modules/phonenumbers/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/phonenumbers/default.nix b/pkgs/development/python-modules/phonenumbers/default.nix index f30a73be8fb..b86706bef08 100644 --- a/pkgs/development/python-modules/phonenumbers/default.nix +++ b/pkgs/development/python-modules/phonenumbers/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "phonenumbers"; - version = "8.10.12"; + version = "8.10.15"; src = fetchPypi { inherit pname version; - sha256 = "708c19860afb05085d5fe91b52fcbce9e1be3c020fe8c9b6f6d028879f5a7d5e"; + sha256 = "617b9127dc6fd29765ca122915d3b603131446a76a587deed0b92c8db53963fe"; }; meta = { From 99e72dc4133b600ba6a554cd2b0d890fa4f39bbf Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 31 Dec 2018 15:28:20 +0100 Subject: [PATCH 0488/1611] =?UTF-8?q?pytrainer:=201.12.1=20=E2=86=92=202.0?= =?UTF-8?q?.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/misc/pytrainer/default.nix | 87 ++++++++++++------- .../misc/pytrainer/fix-paths.patch | 11 +++ .../misc/pytrainer/fix-test-tz.patch | 45 ---------- .../misc/pytrainer/pytrainer-webkit.patch | 14 --- 4 files changed, 69 insertions(+), 88 deletions(-) create mode 100644 pkgs/applications/misc/pytrainer/fix-paths.patch delete mode 100644 pkgs/applications/misc/pytrainer/fix-test-tz.patch delete mode 100644 pkgs/applications/misc/pytrainer/pytrainer-webkit.patch diff --git a/pkgs/applications/misc/pytrainer/default.nix b/pkgs/applications/misc/pytrainer/default.nix index cdeca96568d..7c560cacda1 100644 --- a/pkgs/applications/misc/pytrainer/default.nix +++ b/pkgs/applications/misc/pytrainer/default.nix @@ -1,38 +1,45 @@ -{ stdenv, fetchFromGitHub, perl, python, sqlite, gpsbabel -, withWebKit ? false }: +{ stdenv +, fetchFromGitHub +, perl +, python3 +, sqlite +, gpsbabel +, gnome3 +, gobject-introspection +, wrapGAppsHook +, gtk3 +, xvfb_run +, webkitgtk +, glib-networking +, glibcLocales +, tzdata +, substituteAll +}: let - - # Pytrainer needs a matplotlib with GTK backend. Also ensure we are - # using the pygtk with glade support as needed by pytrainer. - matplotlibGtk = python.pkgs.matplotlib.override { - enableGtk2 = true; - pygtk = python.pkgs.pyGtkGlade; + # Pytrainer needs a matplotlib with GTK backend. + matplotlibGtk = python3.pkgs.matplotlib.override { + enableGtk3 = true; }; in -python.pkgs.buildPythonApplication rec { - name = "pytrainer-${version}"; - version = "1.12.1"; +python3.pkgs.buildPythonApplication rec { + pname = "pytrainer"; + version = "2.0.0"; src = fetchFromGitHub { owner = "pytrainer"; repo = "pytrainer"; rev = "v${version}"; - sha256 = "0rzf8kks96qzlknh6g3b9pjq04j7qk6rmz58scp7sck8xz9rjbwx"; + sha256 = "1w5z1xwb2g6j2izm89b7lv9n92r1zhsr8bglxcn7jc5gwbvwysvd"; }; - namePrefix = ""; - patches = [ - # The test fails in the UTC timezone and C locale. - ./fix-test-tz.patch - - # The existing use of pywebkitgtk shows raw HTML text instead of - # map. This patch solves the problems by showing the file from a - # string, which allows setting an explicit MIME type. - ./pytrainer-webkit.patch + (substituteAll { + src = ./fix-paths.patch; + perl = "${perl}/bin/perl"; + }) ]; postPatch = '' @@ -40,18 +47,40 @@ python.pkgs.buildPythonApplication rec { --replace "'mysqlclient'," "" ''; - propagatedBuildInputs = with python.pkgs; [ - dateutil lxml matplotlibGtk pyGtkGlade sqlalchemy sqlalchemy_migrate psycopg2 - ] ++ stdenv.lib.optional withWebKit [ pywebkitgtk ]; + propagatedBuildInputs = with python3.pkgs; [ + dateutil + lxml + matplotlibGtk + pygobject3 + sqlalchemy + sqlalchemy_migrate + psycopg2 + requests + certifi + ]; - buildInputs = [ perl gpsbabel sqlite ]; + nativeBuildInputs = [ + gobject-introspection + wrapGAppsHook + xvfb_run + ]; - # This package contains no binaries to patch or strip. - dontPatchELF = true; - dontStrip = true; + buildInputs = [ + gpsbabel + sqlite + gtk3 + webkitgtk + glib-networking + glibcLocales + gnome3.adwaita-icon-theme + ]; checkPhase = '' - ${python.interpreter} -m unittest discover + env HOME=$TEMPDIR TZDIR=${tzdata}/share/zoneinfo \ + TZ=Europe/Kaliningrad \ + LC_ALL=en_US.UTF-8 \ + xvfb-run -s '-screen 0 800x600x24' \ + ${python3.interpreter} setup.py test ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/misc/pytrainer/fix-paths.patch b/pkgs/applications/misc/pytrainer/fix-paths.patch new file mode 100644 index 00000000000..7781f5aa4be --- /dev/null +++ b/pkgs/applications/misc/pytrainer/fix-paths.patch @@ -0,0 +1,11 @@ +--- a/imports/file_garminfit.py ++++ b/imports/file_garminfit.py +@@ -81,7 +81,7 @@ + logging.debug(">>") + result = False + try: +- result = subprocess.check_output(["perl", ++ result = subprocess.check_output(["@perl@", + self.main_data_path+"plugins/garmin-fit/bin/fit2tcx", + filename]) + except subprocess.CalledProcessError: diff --git a/pkgs/applications/misc/pytrainer/fix-test-tz.patch b/pkgs/applications/misc/pytrainer/fix-test-tz.patch deleted file mode 100644 index ca487576901..00000000000 --- a/pkgs/applications/misc/pytrainer/fix-test-tz.patch +++ /dev/null @@ -1,45 +0,0 @@ -diff -Nurp source.orig/pytrainer/test/core/test_activity.py source/pytrainer/test/core/test_activity.py ---- source.orig/pytrainer/test/core/test_activity.py 2018-02-27 22:15:32.078243354 +0100 -+++ source/pytrainer/test/core/test_activity.py 2018-02-27 22:16:33.936867052 +0100 -@@ -92,7 +92,7 @@ class ActivityTest(unittest.TestCase): - self.assertEquals(self.activity.time, self.activity.duration) - - def test_activity_starttime(self): -- self.assertEquals(self.activity.starttime, '12:58:23 PM') -+ self.assertEquals(self.activity.starttime, '12:58:23') - - def test_activity_time_tuple(self): - self.assertEquals(self.activity.time_tuple, (2, 3, 46)) -diff -Nurp source.orig/pytrainer/test/imports/test_garmintcxv2.py source/pytrainer/test/imports/test_garmintcxv2.py ---- source.orig/pytrainer/test/imports/test_garmintcxv2.py 2018-02-27 22:15:32.079243364 +0100 -+++ source/pytrainer/test/imports/test_garmintcxv2.py 2018-02-27 22:17:10.778333751 +0100 -@@ -39,7 +39,7 @@ class GarminTCXv2Test(unittest.TestCase) - self.fail() - - def test_workout_summary(self): -- summary = [(0, False, '2012-10-14T12:02:42', '10.12', '00:39:51', 'Running')] -+ summary = [(0, False, '2012-10-14T10:02:42', '10.12', '00:39:51', 'Running')] - try: - current_path = os.path.dirname(os.path.abspath(__file__)) - data_path = os.path.dirname(os.path.dirname(os.path.dirname(current_path))) + "/" -@@ -52,7 +52,7 @@ class GarminTCXv2Test(unittest.TestCase) - self.fail() - - def test_summary_in_database(self): -- summary = [(0, True, '2012-10-14T12:02:42', '10.12', '00:39:51', 'Running')] -+ summary = [(0, True, '2012-10-14T10:02:42', '10.12', '00:39:51', 'Running')] - activity = Activity(date_time_utc='2012-10-14T10:02:42Z', sport_id='1') - self.ddbb.session.add(activity) - self.ddbb.session.commit( -diff -Nurp source.orig/pytrainer/test/lib/test_date.py source/pytrainer/test/lib/test_date.py ---- source.orig/pytrainer/test/lib/test_date.py 2018-05-10 21:15:22.196275555 +0200 -+++ source/pytrainer/test/lib/test_date.py 2018-05-10 21:22:43.647870401 +0200 -@@ -47,7 +47,7 @@ class DateFunctionTest(unittest.TestCase - def test_getDateTime(self): - utctime, localtime = getDateTime('Tue Nov 24 17:29:05 UTC 2015') - self.assertEqual(datetime.datetime(2015, 11, 24, 17, 29, 5, tzinfo=tzutc()), utctime) -- self.assertEqual(datetime.datetime(2015, 11, 24, 19, 29, 5, tzinfo=tzlocal()), localtime) -+ self.assertEqual(datetime.datetime(2015, 11, 24, 17, 29, 5, tzinfo=tzlocal()), localtime) - - class DateRangeTest(unittest.TestCase): - diff --git a/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch b/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch deleted file mode 100644 index 0f894c46a53..00000000000 --- a/pkgs/applications/misc/pytrainer/pytrainer-webkit.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -Nurp pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py pytrainer-1.10.0/pytrainer/extensions/mapviewer.py ---- pytrainer-1.10.0-orig/pytrainer/extensions/mapviewer.py 2013-03-31 12:28:29.000000000 +0200 -+++ pytrainer-1.10.0/pytrainer/extensions/mapviewer.py 2014-12-22 11:44:44.367032126 +0100 -@@ -46,7 +46,9 @@ class MapViewer: - logging.debug(">>") - if htmlfile is None: - htmlfile = self.createErrorHtml() -- self.wkview.load_uri("file://%s" % (htmlfile)) -+ content = open(htmlfile, 'r').read() -+ self.wkview.load_string(content, 'text/html', 'UTF-8', 'file:///') -+ #self.wkview.load_uri("file://%s" % (htmlfile)) - #self.box.show_all() - logging.debug("<<") - From a610024634afd3960e08e0278797821e82344b7c Mon Sep 17 00:00:00 2001 From: volth Date: Sun, 14 Jul 2019 17:47:50 +0000 Subject: [PATCH 0489/1611] perlPackages.EmailSender: fix tests It should fix https://github.com/NixOS/nixpkgs/pull/64157#issuecomment-510473907 --- pkgs/top-level/perl-packages.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 3db604b9e32..e74b30379f6 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -5464,6 +5464,9 @@ let }; buildInputs = [ CaptureTiny ]; propagatedBuildInputs = [ EmailAbstract EmailAddress MooXTypesMooseLike SubExporter Throwable TryTiny ]; + postPatch = '' + patchShebangs --build util + ''; meta = { homepage = https://github.com/rjbs/Email-Sender; description = "A library for sending email"; From 589dd21f4e363c1cd56a4f795ff8c480cca4b7f4 Mon Sep 17 00:00:00 2001 From: volth Date: Sun, 14 Jul 2019 21:32:27 +0000 Subject: [PATCH 0490/1611] perlPackages.FileFindObjectRule: fix tests --- pkgs/top-level/perl-packages.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index e74b30379f6..f78cacd08be 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -6223,6 +6223,10 @@ let sha256 = "f1f1820ff44042f6b30e4d6be1db860b9e743b1a9836070ea656ad9829e4eca5"; }; propagatedBuildInputs = [ FileFindObject NumberCompare TextGlob ]; + # restore t/sample-data which is corrupted by patching shebangs + preCheck = '' + tar xf $src */t/sample-data --strip-components=1 + ''; meta = { homepage = https://www.shlomifish.org/open-source/projects/File-Find-Object/; description = "Alternative interface to File::Find::Object"; From 3147935531d97d2a44100f665a8db6ba8cf66652 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 22:52:19 -0700 Subject: [PATCH 0491/1611] vttest: 20190105 -> 20190710 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/vttest/versions --- pkgs/tools/misc/vttest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/vttest/default.nix b/pkgs/tools/misc/vttest/default.nix index 9ae1ee0b17e..0aa51363ff8 100644 --- a/pkgs/tools/misc/vttest/default.nix +++ b/pkgs/tools/misc/vttest/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "vttest"; - version = "20190105"; + version = "20190710"; src = fetchurl { urls = [ "https://invisible-mirror.net/archives/${pname}/${pname}-${version}.tgz" "ftp://ftp.invisible-island.net/${pname}/${pname}-${version}.tgz" ]; - sha256 = "0wagaywzc6pq59m8gpcblag7gyjjarc0qx050arr1sy8hd3yy0sp"; + sha256 = "00v3a94vpmbdziizdw2dj4bfwzfzfs2lc0ijxv98ln1w01w412q4"; }; meta = with stdenv.lib; { From 8cee299afb017b710e5032f88075fd47db4efa08 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 22:40:24 -0700 Subject: [PATCH 0492/1611] vnstat: 2.2 -> 2.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/vnstat/versions --- pkgs/applications/networking/vnstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/vnstat/default.nix b/pkgs/applications/networking/vnstat/default.nix index 7b3e62779e9..8a210c1af68 100644 --- a/pkgs/applications/networking/vnstat/default.nix +++ b/pkgs/applications/networking/vnstat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "vnstat"; - version = "2.2"; + version = "2.3"; src = fetchurl { - sha256 = "0b7020rlc568pz6vkiy28kl8493z88wzrn18wv9b0iq2bv1pn2n6"; + sha256 = "138s79dqxrm59xc2s2xch16qkzzjks580sac4ppq8jy5lxrzj2i8"; url = "https://humdi.net/${pname}/${pname}-${version}.tar.gz"; }; From 941a1f37c25ffd0727cd2e951e747124f5c3c1a5 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 22:16:27 -0700 Subject: [PATCH 0493/1611] webkitgtk: 2.24.2 -> 2.24.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/webkitgtk/versions --- pkgs/development/libraries/webkitgtk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 91848ce1fb6..927301589b4 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableGtk2Plugins; with stdenv.lib; stdenv.mkDerivation rec { name = "webkitgtk-${version}"; - version = "2.24.2"; + version = "2.24.3"; meta = { description = "Web content rendering engine, GTK+ port"; @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://webkitgtk.org/releases/${name}.tar.xz"; - sha256 = "071jnjvjq6wsxx1jh4ql3j53h1nhphs5ga67fa5i9xjvs3qb3701"; + sha256 = "0lbcrw5axwrbrajxq7fqywfyh0djqi23ynzb5wi5ghw2grnp83cl"; }; patches = optionals stdenv.isDarwin [ From 9d6fabd905b42764e7f46f401352f2b4808a8c75 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 21:21:59 -0700 Subject: [PATCH 0494/1611] wpgtk: 6.0.7 -> 6.0.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wpgtk/versions --- pkgs/tools/X11/wpgtk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/X11/wpgtk/default.nix b/pkgs/tools/X11/wpgtk/default.nix index 5d94943daf9..a9ebbff8203 100644 --- a/pkgs/tools/X11/wpgtk/default.nix +++ b/pkgs/tools/X11/wpgtk/default.nix @@ -3,13 +3,13 @@ python3Packages.buildPythonApplication rec { pname = "wpgtk"; - version = "6.0.7"; + version = "6.0.8"; src = fetchFromGitHub { owner = "deviantfero"; repo = "wpgtk"; rev = version; - sha256 = "14qk7kmi37ppxh2m69g7wb7w2wh62nbsy3z4ns7hsns3p21va7y3"; + sha256 = "1c4iyy4db7zhbfnng8h1r7d2fmng4zspgl9zfr8vc86sk5wmfnjc"; }; buildInputs = [ From 8b88136f3e0a48aa344e679d3f9ecc5771f4e5c6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 20:50:54 -0700 Subject: [PATCH 0495/1611] wcslib: 6.2 -> 6.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wcslib/versions --- pkgs/development/libraries/wcslib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wcslib/default.nix b/pkgs/development/libraries/wcslib/default.nix index 187eed6ae83..44e6370e640 100644 --- a/pkgs/development/libraries/wcslib/default.nix +++ b/pkgs/development/libraries/wcslib/default.nix @@ -1,14 +1,14 @@ { fetchurl, stdenv, flex }: stdenv.mkDerivation rec { - version = "6.2"; + version = "6.3"; name = "wcslib-${version}"; buildInputs = [ flex ]; src = fetchurl { url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2"; - sha256 ="01fqckazhbfqqhyr0wd9vcks1m2afmsh83l981alxg2r54jgwkdv"; + sha256 ="1si272bms58yv1zmymx9ypx1ycka8bfqy8wk03rvl6nmciyz0dsc"; }; prePatch = '' From 8a4c3f43e0864813e04784b9d5d595af628e453c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 20:03:25 -0700 Subject: [PATCH 0496/1611] gnome3.totem: 3.32.0 -> 3.32.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/totem/versions --- pkgs/desktops/gnome-3/core/totem/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/totem/default.nix b/pkgs/desktops/gnome-3/core/totem/default.nix index d3319c4522e..15417d4ddbb 100644 --- a/pkgs/desktops/gnome-3/core/totem/default.nix +++ b/pkgs/desktops/gnome-3/core/totem/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "totem-${version}"; - version = "3.32.0"; + version = "3.32.1"; src = fetchurl { url = "mirror://gnome/sources/totem/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "12iykwslvnpgmrm4bcchx5rzn2g4rl5r9s86n2001djn58yw6m6r"; + sha256 = "0yra8apc7smpwf7d1k8crhrm8d4wix24ds6i9yxbch1v11jnhr3v"; }; doCheck = true; From 9f29ecbaf496e97373642eea4dbf838626696373 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 19:00:34 -0700 Subject: [PATCH 0497/1611] tesseract4: 4.0.0 -> 4.1.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tesseract/versions --- pkgs/applications/graphics/tesseract/tesseract4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/tesseract/tesseract4.nix b/pkgs/applications/graphics/tesseract/tesseract4.nix index df321023c74..af0063301f1 100644 --- a/pkgs/applications/graphics/tesseract/tesseract4.nix +++ b/pkgs/applications/graphics/tesseract/tesseract4.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "tesseract-${version}"; - version = "4.0.0"; + version = "4.1.0"; src = fetchFromGitHub { owner = "tesseract-ocr"; repo = "tesseract"; rev = version; - sha256 = "1b5fi2vibc4kk9b30kkk4ais4bw8fbbv24bzr5709194hb81cav8"; + sha256 = "06i7abxy2ifmdx1fak81cx0kns85n8hvp0339jk6242fhshibljx"; }; enableParallelBuilding = true; From 1f71623c0b3b1c49a0495b87670cdcc7fea729cd Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 18:15:04 -0700 Subject: [PATCH 0498/1611] uftp: 4.9.11 -> 4.10 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/uftp/versions --- pkgs/servers/uftp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/uftp/default.nix b/pkgs/servers/uftp/default.nix index 1530480dc4b..ba628360aaa 100644 --- a/pkgs/servers/uftp/default.nix +++ b/pkgs/servers/uftp/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "uftp-${version}"; - version = "4.9.11"; + version = "4.10"; src = fetchurl { url = "mirror://sourceforge/uftp-multicast/source-tar/uftp-${version}.tar.gz"; - sha256 = "06kb4h10n5nvmv79fs5nwk40pc4vl4xqidksy9fxasgn6md87p1d"; + sha256 = "14pjhc8a8fgm5cyy93r693nrjinaps6642v00jpwrjf7h2p8mfli"; }; buildInputs = [ openssl ]; From e50674b6b2308226ce53af61eedc27b681e96200 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 18:05:12 -0700 Subject: [PATCH 0499/1611] tgt: 1.0.78 -> 1.0.79 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tgt/versions --- pkgs/tools/networking/tgt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix index a9e9f351aae..61aaa263b35 100644 --- a/pkgs/tools/networking/tgt/default.nix +++ b/pkgs/tools/networking/tgt/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { pname = "tgt"; - version = "1.0.78"; + version = "1.0.79"; src = fetchFromGitHub { owner = "fujita"; repo = pname; rev = "v${version}"; - sha256 = "0778silfwvbpqljxdid96nn0vkdii3fszqp6w6w2bn9hdyxhqrjp"; + sha256 = "18bp7fcpv7879q3ppdxlqj7ayqmlh5zwrkz8gch6rq9lkmmrklrf"; }; buildInputs = [ libxslt systemd libaio docbook_xsl ]; From 9a6f0ca8b7b915a7d52e2023ce3ab96413d4768e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 17:46:29 -0700 Subject: [PATCH 0500/1611] stacks: 2.4 -> 2.41 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/stacks/versions --- pkgs/applications/science/biology/stacks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/biology/stacks/default.nix b/pkgs/applications/science/biology/stacks/default.nix index d188ca02b18..e778c3bd52c 100644 --- a/pkgs/applications/science/biology/stacks/default.nix +++ b/pkgs/applications/science/biology/stacks/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "stacks"; - version = "2.4"; + version = "2.41"; src = fetchurl { url = "http://catchenlab.life.illinois.edu/stacks/source/${pname}-${version}.tar.gz"; - sha256 = "1ha1avkh6rqqvsy4k42336a2gj14y1jq19a2x8cjmiidi9l3s29h"; + sha256 = "0q420rzjb05jfchcls3pysm4hxfgs6xj2jw246isx0il10g93gkq"; }; buildInputs = [ zlib ]; From 39263d8613a71c6e5ed94ea0551a01d142562cd0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 17:24:38 -0700 Subject: [PATCH 0501/1611] syncplay: 1.6.3 -> 1.6.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/syncplay/versions --- pkgs/applications/networking/syncplay/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/syncplay/default.nix b/pkgs/applications/networking/syncplay/default.nix index c8610d80ca7..763c740c817 100644 --- a/pkgs/applications/networking/syncplay/default.nix +++ b/pkgs/applications/networking/syncplay/default.nix @@ -2,7 +2,7 @@ buildPythonApplication rec { name = "syncplay-${version}"; - version = "1.6.3"; + version = "1.6.4"; format = "other"; @@ -10,7 +10,7 @@ buildPythonApplication rec { owner = "Syncplay"; repo = "syncplay"; rev = "v${version}"; - sha256 = "03xw44lxdk1h9kbvfviqzpmxxld6zvp07i0hvdm1chchyp0a109h"; + sha256 = "0afh2a0l1c3hwgj5q6wy0v5iimg8qcjam3pw7b8mf63lasx6iqk4"; }; propagatedBuildInputs = [ pyside twisted certifi ] ++ twisted.extras.tls; From d7cdd895fa65334dc063ae6cd2e01d48e962bc3b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 16:47:15 -0700 Subject: [PATCH 0502/1611] rsyslog: 8.1905.0 -> 8.1907.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rsyslog/versions --- pkgs/tools/system/rsyslog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/rsyslog/default.nix b/pkgs/tools/system/rsyslog/default.nix index 729a90aa317..2899837f3f8 100644 --- a/pkgs/tools/system/rsyslog/default.nix +++ b/pkgs/tools/system/rsyslog/default.nix @@ -11,11 +11,11 @@ let mkFlag = cond: name: if cond then "--enable-${name}" else "--disable-${name}"; in stdenv.mkDerivation rec { - name = "rsyslog-8.1905.0"; + name = "rsyslog-8.1907.0"; src = fetchurl { url = "https://www.rsyslog.com/files/download/rsyslog/${name}.tar.gz"; - sha256 = "1r0nf5j4y8p1hbay3kdgkggr76qm7sw10pnl4anxd3vninmlzgcn"; + sha256 = "1dcz0w5xalqsi2xjb5j7c9mq5kf9s9kq9j2inpv4w5wkrrg569zb"; }; #patches = [ ./fix-gnutls-detection.patch ]; From ef6f912245bffbaf4307c1dfbfba329beb7ec47d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 15:12:48 -0700 Subject: [PATCH 0503/1611] sauce-connect: 4.5.1 -> 4.5.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sauce-connect/versions --- pkgs/development/tools/sauce-connect/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/sauce-connect/default.nix b/pkgs/development/tools/sauce-connect/default.nix index 50e2bd8dad8..715aa552ae5 100644 --- a/pkgs/development/tools/sauce-connect/default.nix +++ b/pkgs/development/tools/sauce-connect/default.nix @@ -4,12 +4,12 @@ with lib; stdenv.mkDerivation rec { name = "sauce-connect-${version}"; - version = "4.5.1"; + version = "4.5.3"; src = fetchurl ( if stdenv.hostPlatform.system == "x86_64-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux.tar.gz"; - sha256 = "0lpfvlax7k8r65bh01i3kzrlmx0vnm9vhhir8k1gp2f4rv6z4lyx"; + sha256 = "05fv9rggibx6dbdw8ywwwq45i9gdc53b7i7jhvl01m1sn2ygrrqd"; } else if stdenv.hostPlatform.system == "i686-linux" then { url = "https://saucelabs.com/downloads/sc-${version}-linux32.tar.gz"; sha256 = "1h9n1mzmrmlrbd0921b0sgg7m8z0w71pdb5sif6h1b9f97cp353x"; From 178bf6921b70d12283964f1c7d87f60111202f9b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 14:21:17 -0700 Subject: [PATCH 0504/1611] python37Packages.ROPGadget: 5.4 -> 5.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-ropgadget/versions --- pkgs/development/python-modules/ROPGadget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ROPGadget/default.nix b/pkgs/development/python-modules/ROPGadget/default.nix index ac19a7e7063..c9398d96fce 100644 --- a/pkgs/development/python-modules/ROPGadget/default.nix +++ b/pkgs/development/python-modules/ROPGadget/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "ROPGadget"; - version = "5.4"; + version = "5.8"; src = fetchPypi { inherit pname version; - sha256 = "19wly4x3mq73c91pplqjk0c7sx6710887czh514qk5l7j0ky6dxg"; + sha256 = "184qncm2ss474prphw0xnf7ifkpgj955dzlb2vqq94z6xvf3xyd9"; }; propagatedBuildInputs = [ capstone ]; From d81941dcfdca2512bca5068f56f6c28b4fb6d546 Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Wed, 17 Jul 2019 00:36:08 -0700 Subject: [PATCH 0505/1611] magic-wormhole: include manpage --- pkgs/development/python-modules/magic-wormhole/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/magic-wormhole/default.nix b/pkgs/development/python-modules/magic-wormhole/default.nix index 7f8241196e0..532eeca07df 100644 --- a/pkgs/development/python-modules/magic-wormhole/default.nix +++ b/pkgs/development/python-modules/magic-wormhole/default.nix @@ -37,6 +37,10 @@ buildPythonPackage rec { sed -i -e "s|'ifconfig'|'${nettools}/bin/ifconfig'|" src/wormhole/ipaddrs.py ''; + postInstall = '' + install -Dm644 docs/wormhole.1 $out/share/man/man1/wormhole.1 + ''; + preCheck = '' export PATH=$out/bin:$PATH export LANG="en_US.UTF-8" From 2928e4c3fc874e6e146c57e08e1d99bfa0b9f874 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 14:17:56 -0700 Subject: [PATCH 0506/1611] skypeforlinux: 8.47.0.59 -> 8.49.0.49 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/skypeforlinux/versions --- .../networking/instant-messengers/skypeforlinux/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix index 7ef42f8ddfd..8a732de08ce 100644 --- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix +++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix @@ -7,7 +7,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.47.0.59"; + version = "8.49.0.49"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -58,7 +58,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"; - sha256 = "0haiccmimbj1nyyyj556b0a181walmxwbbr0m18m2w67wi5z783r"; + sha256 = "0l5q336kkw9i13076qn7fkknypg7cwjp58qi8xd6h0rwha3kkqa2"; } else throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}"; From 3063809ac22d01acc97e35ef981f595ebd75de9d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 13:48:31 -0700 Subject: [PATCH 0507/1611] smemstat: 0.02.03 -> 0.02.04 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/smemstat/versions --- pkgs/os-specific/linux/smemstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/smemstat/default.nix b/pkgs/os-specific/linux/smemstat/default.nix index 06c668acc96..55336e3b2a0 100644 --- a/pkgs/os-specific/linux/smemstat/default.nix +++ b/pkgs/os-specific/linux/smemstat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "smemstat-${version}"; - version = "0.02.03"; + version = "0.02.04"; src = fetchurl { url = "https://kernel.ubuntu.com/~cking/tarballs/smemstat/smemstat-${version}.tar.xz"; - sha256 = "04q06wb37n4g1dlsjl8j2bwzd7qis4wanm0f4xg8y29br6skljx1"; + sha256 = "1kkdlnn3gahzd3ra2qc9vmc4ir5lydc3lyyqa269sb3nv9v2v30h"; }; buildInputs = [ ncurses ]; installFlags = [ "DESTDIR=$(out)" ]; From 43aa4b4154665a9d61a92c653c3b58bc3cea476d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 13:23:59 -0700 Subject: [PATCH 0508/1611] spoofer: 1.4.2 -> 1.4.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/spoofer/versions --- pkgs/tools/networking/spoofer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/spoofer/default.nix b/pkgs/tools/networking/spoofer/default.nix index 8893c5e37fe..faeec8523aa 100644 --- a/pkgs/tools/networking/spoofer/default.nix +++ b/pkgs/tools/networking/spoofer/default.nix @@ -6,12 +6,12 @@ in stdenv.mkDerivation rec { pname = "spoofer"; - version = "1.4.2"; + version = "1.4.5"; name = "${pname}-${version}"; src = fetchurl { url = "https://www.caida.org/projects/spoofer/downloads/${name}.tar.gz"; - sha256 = "041piwc2r4fig5b4apm2ibq1wyd11ic8p3xv3ss2hrbn5d8inza1"; + sha256 = "0pnim3xyfsmv6alsvhwjs4v9lp39wwiyj63rxsqyz4wx4vkmn12z"; }; nativeBuildInputs = [ pkgconfig ]; From abc4ccdd2d344ca6eb126af9fb5c82e85f637799 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 12:42:02 -0700 Subject: [PATCH 0509/1611] shc: 4.0.2 -> 4.0.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/shc/versions --- pkgs/tools/security/shc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/shc/default.nix b/pkgs/tools/security/shc/default.nix index e3f5f72c141..3d3bd4eef84 100644 --- a/pkgs/tools/security/shc/default.nix +++ b/pkgs/tools/security/shc/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { name = "shc-${version}"; - version = "4.0.2"; + version = "4.0.3"; rev = "${version}"; src = fetchFromGitHub { inherit rev; owner = "neurobin"; repo = "shc"; - sha256 = "1vd9dldm6h234awn5fhpgq4lb85ylcawr2p2108332ffy70kvdix"; + sha256 = "0bfn404plsssa14q89k9l3s5lxq3df0sny5lis4j2w75qrkqx694"; }; meta = with stdenv.lib; { From 4040b16c301e03ddc9bc11d5f32954e7fe2e3536 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:53:06 -0700 Subject: [PATCH 0510/1611] rabbitmq-server: 3.7.15 -> 3.7.16 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rabbitmq-server/versions --- pkgs/servers/amqp/rabbitmq-server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/amqp/rabbitmq-server/default.nix b/pkgs/servers/amqp/rabbitmq-server/default.nix index 3d36202e861..7e571480419 100644 --- a/pkgs/servers/amqp/rabbitmq-server/default.nix +++ b/pkgs/servers/amqp/rabbitmq-server/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "rabbitmq-server-${version}"; - version = "3.7.15"; + version = "3.7.16"; src = fetchurl { url = "https://github.com/rabbitmq/rabbitmq-server/releases/download/v${version}/${name}.tar.xz"; - sha256 = "14ipnvcrwln9mwr4r32461js2gdlrr4h4hy92393ixbkscf9wdir"; + sha256 = "12s1s4zz3fxvb5ah5v6gmaq1kgd41pv9nahsdswa7svbgdc8lykz"; }; buildInputs = From 9ed84b6c2bcabdc37392fce044e330fa2ffa581c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 11:19:10 -0700 Subject: [PATCH 0511/1611] python37Packages.pyopencl: 2018.2.5 -> 2019.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pyopencl/versions --- pkgs/development/python-modules/pyopencl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyopencl/default.nix b/pkgs/development/python-modules/pyopencl/default.nix index e17ec16f436..8561cbac1b8 100644 --- a/pkgs/development/python-modules/pyopencl/default.nix +++ b/pkgs/development/python-modules/pyopencl/default.nix @@ -16,7 +16,7 @@ buildPythonPackage rec { pname = "pyopencl"; - version = "2018.2.5"; + version = "2019.1"; checkInputs = [ pytest ]; buildInputs = [ opencl-headers ocl-icd pybind11 ]; @@ -25,7 +25,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "1qgi6diw9m7yldmql9kh08792053ib6zkplh8v2mqv6waaflmrnn"; + sha256 = "04ahndgc5aqm3pqix2j4vzn9n3k762ylf3yq55jdbxm5cicz9nx0"; }; # py.test is not needed during runtime, so remove it from `install_requires` From 2957f9f79df35adaa5c516166bd0b01be1dc03fa Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 10:37:18 -0700 Subject: [PATCH 0512/1611] python37Packages.splinter: 0.10.0 -> 0.11.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-splinter/versions --- pkgs/development/python-modules/splinter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/splinter/default.nix b/pkgs/development/python-modules/splinter/default.nix index 5d863192b2b..274a5148d8a 100644 --- a/pkgs/development/python-modules/splinter/default.nix +++ b/pkgs/development/python-modules/splinter/default.nix @@ -8,11 +8,11 @@ buildPythonPackage rec { pname = "splinter"; - version = "0.10.0"; + version = "0.11.0"; src = fetchPypi { inherit pname version; - sha256 = "1x5g7pfj813rnci7dc46y01bq24qzw5qwlzm4iw61hg66q2kg7rd"; + sha256 = "0ddv80dv54rraa18lg9v7m9z61wzfwv6ww9ld83mr32gy3a2238p"; }; propagatedBuildInputs = [ selenium ]; From dcc38411e75d4ed35f3be60ce7f1c15d3ed305c6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 08:25:28 -0700 Subject: [PATCH 0513/1611] python37Packages.python-gitlab: 1.8.0 -> 1.9.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-python-gitlab/versions --- pkgs/development/python-modules/python-gitlab/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-gitlab/default.nix b/pkgs/development/python-modules/python-gitlab/default.nix index 167da239fd1..bbd05b6757b 100644 --- a/pkgs/development/python-modules/python-gitlab/default.nix +++ b/pkgs/development/python-modules/python-gitlab/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "python-gitlab"; - version = "1.8.0"; + version = "1.9.0"; src = fetchPypi { inherit pname version; - sha256 = "1rwkl36n1synyggg2li7r075fq5k3cmpgyazinw24bkf7z2kpc56"; + sha256 = "1p0i6gsl4mcv6w1sm0rsxq9bq2cmmg3n7c0dniqlvqmzkk62qqhx"; }; propagatedBuildInputs = [ requests six ]; From 76e53a96ec402eff25c11e431a413f72c3991730 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 06:47:02 -0700 Subject: [PATCH 0514/1611] python37Packages.whichcraft: 0.5.2 -> 0.6.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-whichcraft/versions --- pkgs/development/python-modules/whichcraft/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/whichcraft/default.nix b/pkgs/development/python-modules/whichcraft/default.nix index 498c1c401f8..102496582a0 100644 --- a/pkgs/development/python-modules/whichcraft/default.nix +++ b/pkgs/development/python-modules/whichcraft/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "whichcraft"; - version = "0.5.2"; + version = "0.6.0"; src = fetchPypi { inherit pname version; - sha256 = "fecddd531f237ffc5db8b215409afb18fa30300699064cca4817521b4fc81815"; + sha256 = "1614vs0iwm9abina70vgvxaabi8xbz83yxgqfqi1syrzrhaalk6m"; }; LC_ALL="en_US.utf-8"; From bac8f18fc62398c4a6c3b5bfb5639d041274e431 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 04:50:12 -0700 Subject: [PATCH 0515/1611] python37Packages.piexif: 1.1.2 -> 1.1.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-piexif/versions --- pkgs/development/python-modules/piexif/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/piexif/default.nix b/pkgs/development/python-modules/piexif/default.nix index 0de96a3f585..595e246f777 100644 --- a/pkgs/development/python-modules/piexif/default.nix +++ b/pkgs/development/python-modules/piexif/default.nix @@ -2,7 +2,7 @@ buildPythonPackage rec { pname = "piexif"; - version = "1.1.2"; + version = "1.1.3"; # Pillow needed for unit tests checkInputs = [ pillow ]; @@ -10,7 +10,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "0dj6wiw4mk65zn7p0qpghra39mf88m3ph2xn7ff9jvasgczrgkb0"; + sha256 = "06sz58q4mrw472p8fbnq7wsj8zpi5js5r8phm2hiwfmz0v33bjw3"; }; meta = with stdenv.lib; { From 4dad0ae560708fee5d081c3f02bf94e4c6f4dfce Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 13 Jul 2019 22:40:22 +0300 Subject: [PATCH 0516/1611] buildBazelPackage: cleanup hacks and enforce them for all builds Timestamp verification skip is no longer needed (not sure why). Generally we better off always using the environment hack for all packages because that ensures all NIX_* flags are correctly applied. One possible improvement in future is to filter only NIX_* variables to passthru in Bazel. --- .../build-bazel-package/default.nix | 43 ++++++------------- .../build-managers/bazel/nix-hacks.patch | 28 ------------ pkgs/top-level/all-packages.nix | 8 +--- 3 files changed, 15 insertions(+), 64 deletions(-) diff --git a/pkgs/build-support/build-bazel-package/default.nix b/pkgs/build-support/build-bazel-package/default.nix index 7c9fc83e0f1..4e19b244f3c 100644 --- a/pkgs/build-support/build-bazel-package/default.nix +++ b/pkgs/build-support/build-bazel-package/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bazel, cacert, enableNixHacks ? true }: +{ stdenv, bazel, cacert }: args@{ name, bazelFlags ? [], bazelTarget, buildAttrs, fetchAttrs, ... }: @@ -37,7 +37,15 @@ in stdenv.mkDerivation (fBuildAttrs // { # We disable multithreading for the fetching phase since it can lead to timeouts with many dependencies/threads: # https://github.com/bazelbuild/bazel/issues/6502 - BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 USER=homeless-shelter bazel --output_base="$bazelOut" --output_user_root="$bazelUserRoot" fetch --loading_phase_threads=1 $bazelFlags $bazelTarget + BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \ + USER=homeless-shelter \ + bazel \ + --output_base="$bazelOut" \ + --output_user_root="$bazelUserRoot" \ + fetch \ + --loading_phase_threads=1 \ + $bazelFlags \ + $bazelTarget runHook postBuild ''; @@ -74,12 +82,14 @@ in stdenv.mkDerivation (fBuildAttrs // { ''; dontFixup = true; + allowedRequisites = []; + outputHashMode = "recursive"; outputHashAlgo = "sha256"; outputHash = fetchAttrs.sha256; }); - nativeBuildInputs = fBuildAttrs.nativeBuildInputs or [] ++ [ (if enableNixHacks then (bazel.override { enableNixHacks = true; }) else bazel) ]; + nativeBuildInputs = fBuildAttrs.nativeBuildInputs or [] ++ [ (bazel.override { enableNixHacks = true; }) ]; preHook = fBuildAttrs.preHook or "" + '' export bazelOut="$NIX_BUILD_TOP/output" @@ -99,29 +109,6 @@ in stdenv.mkDerivation (fBuildAttrs // { buildPhase = fBuildAttrs.buildPhase or '' runHook preBuild - # Bazel sandboxes the execution of the tools it invokes, so even though we are - # calling the correct nix wrappers, the values of the environment variables - # the wrappers are expecting will not be set. So instead of relying on the - # wrappers picking them up, pass them in explicitly via `--copt`, `--linkopt` - # and related flags. - # - copts=() - host_copts=() - for flag in $NIX_CFLAGS_COMPILE; do - copts+=( "--copt=$flag" ) - host_copts+=( "--host_copt=$flag" ) - done - for flag in $NIX_CXXSTDLIB_COMPILE; do - copts+=( "--copt=$flag" ) - host_copts+=( "--host_copt=$flag" ) - done - linkopts=() - host_linkopts=() - for flag in $NIX_LD_FLAGS; do - linkopts+=( "--linkopt=$flag" ) - host_linkopts+=( "--host_linkopt=$flag" ) - done - BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \ USER=homeless-shelter \ bazel \ @@ -129,10 +116,6 @@ in stdenv.mkDerivation (fBuildAttrs // { --output_user_root="$bazelUserRoot" \ build \ -j $NIX_BUILD_CORES \ - "''${copts[@]}" \ - "''${host_copts[@]}" \ - "''${linkopts[@]}" \ - "''${host_linkopts[@]}" \ $bazelFlags \ $bazelTarget diff --git a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch index f58be89fabc..75b0e3743f9 100644 --- a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch +++ b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch @@ -1,31 +1,3 @@ -diff -Naur a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java ---- a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java 2019-06-12 20:39:37.420705161 -0700 -+++ b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java 2019-06-12 20:44:18.894429744 -0700 -@@ -428,24 +428,7 @@ - try { - content = FileSystemUtils.readContent(markerPath, StandardCharsets.UTF_8); - String markerRuleKey = readMarkerFile(content, markerData); -- boolean verified = false; -- if (Preconditions.checkNotNull(ruleKey).equals(markerRuleKey) -- && Objects.equals( -- markerData.get(MANAGED_DIRECTORIES_MARKER), -- this.markerData.get(MANAGED_DIRECTORIES_MARKER))) { -- verified = handler.verifyMarkerData(rule, markerData, env); -- if (env.valuesMissing()) { -- return null; -- } -- } -- -- if (verified) { - return new Fingerprint().addString(content).digestAndReset(); -- } else { -- // So that we are in a consistent state if something happens while fetching the repository -- markerPath.delete(); -- return null; -- } - } catch (IOException e) { - throw new RepositoryFunctionException(e, Transience.TRANSIENT); - } diff -Naur a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java --- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 2019-06-12 20:39:37.538708196 -0700 +++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 2019-06-12 20:44:18.863429602 -0700 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3ee66e0a610..f642f9e1832 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8908,15 +8908,11 @@ in buildozer = bazel-buildtools; unused_deps = bazel-buildtools; - bazel-deps = callPackage ../development/tools/build-managers/bazel/bazel-deps { - buildBazelPackage = buildBazelPackage.override { enableNixHacks = false; }; - }; + bazel-deps = callPackage ../development/tools/build-managers/bazel/bazel-deps { }; bazel-remote = callPackage ../development/tools/build-managers/bazel/bazel-remote { }; - bazel-watcher = callPackage ../development/tools/bazel-watcher { - buildBazelPackage = buildBazelPackage.override { enableNixHacks = false; }; - }; + bazel-watcher = callPackage ../development/tools/bazel-watcher { }; bazelisk = callPackage ../development/tools/bazelisk { }; From 26bff5f76737b24dadf48449be1f387e0caa07ec Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 02:46:48 -0700 Subject: [PATCH 0517/1611] python37Packages.google-auth-oauthlib: 0.3.0 -> 0.4.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-google-auth-oauthlib/versions --- .../python-modules/google-auth-oauthlib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-auth-oauthlib/default.nix b/pkgs/development/python-modules/google-auth-oauthlib/default.nix index b318016ee81..2cc1513812f 100644 --- a/pkgs/development/python-modules/google-auth-oauthlib/default.nix +++ b/pkgs/development/python-modules/google-auth-oauthlib/default.nix @@ -12,11 +12,11 @@ buildPythonPackage rec { pname = "google-auth-oauthlib"; - version = "0.3.0"; + version = "0.4.0"; src = fetchPypi { inherit pname version; - sha256 = "03rq2rjac0zh16vsw0q914sp62l9f8fp033wn3191pqd2cchqix0"; + sha256 = "1fl3w23c93hlgqf0l57cdy17wmvyhrv3bh133ksd2h490ir012va"; }; checkInputs = [ From c1871485ed538755883b7d96d274b4e92f9abb10 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 01:48:19 -0700 Subject: [PATCH 0518/1611] python37Packages.identify: 1.4.3 -> 1.4.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-identify/versions --- pkgs/development/python-modules/identify/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/identify/default.nix b/pkgs/development/python-modules/identify/default.nix index 8837e34c788..8987ce97c71 100644 --- a/pkgs/development/python-modules/identify/default.nix +++ b/pkgs/development/python-modules/identify/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "identify"; - version = "1.4.3"; + version = "1.4.5"; src = fetchPypi { inherit pname version; - sha256 = "432c548d6138cb57a3d8f62f079a025a29b8ae34a50dd3b496bbf661818f2bc0"; + sha256 = "1z8xjvpkj599h3s76q05y10iysjjky7b0s5g3zicfyxhzm7x59a3"; }; # Tests not included in PyPI tarball From c4ba29da302dfc5fabc7b74ea6f16e6dc43d5d90 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 01:37:47 -0700 Subject: [PATCH 0519/1611] dot2tex: 2.9.0 -> 2.11.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python2.7-dot2tex/versions --- pkgs/development/python-modules/dot2tex/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dot2tex/default.nix b/pkgs/development/python-modules/dot2tex/default.nix index 9d644c22eaf..f671cdc9642 100644 --- a/pkgs/development/python-modules/dot2tex/default.nix +++ b/pkgs/development/python-modules/dot2tex/default.nix @@ -7,11 +7,11 @@ buildPythonPackage rec { pname = "dot2tex"; - version = "2.9.0"; + version = "2.11.3"; src = fetchPypi { inherit pname version; - sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; + sha256 = "1kp77wiv7b5qib82i3y3sn9r49rym43aaqm5aw1bwnzfbbq2m6i9"; }; # Tests fail with 3.x. Furthermore, package is no longer maintained. From 1fb7255690204da87bc30af3d6ed6cbb6a3a6c9f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 00:28:49 -0700 Subject: [PATCH 0520/1611] python37Packages.dbf: 0.98.0 -> 0.98.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-dbf/versions --- pkgs/development/python-modules/dbf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/dbf/default.nix b/pkgs/development/python-modules/dbf/default.nix index 2ba308596d4..c3d5224dd4d 100644 --- a/pkgs/development/python-modules/dbf/default.nix +++ b/pkgs/development/python-modules/dbf/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "dbf"; - version = "0.98.0"; + version = "0.98.2"; src = fetchPypi { inherit pname version; - sha256 = "089h98gpjf9ffxzbkbd9k9wd8n3s7g0nhfpn3rf44h51hllgqxxb"; + sha256 = "0d8m3zhhxy1f35r1s8k0s218iz86bs6v89vy65lslrxbdg5pjia0"; }; propagatedBuildInputs = [ aenum ] ++ stdenv.lib.optional (pythonOlder "3.4") [ enum34 ]; From 3e33e53c5d04e37f4df4f738b8c47f950c12f7ec Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 23:24:22 -0700 Subject: [PATCH 0521/1611] poco: 1.9.0 -> 1.9.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/poco/versions --- pkgs/development/libraries/poco/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/poco/default.nix b/pkgs/development/libraries/poco/default.nix index 4dffa7486a1..68ddf5c91d1 100644 --- a/pkgs/development/libraries/poco/default.nix +++ b/pkgs/development/libraries/poco/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "poco-${version}"; - version = "1.9.0"; + version = "1.9.2"; src = fetchurl { url = "https://pocoproject.org/releases/${name}/${name}-all.tar.gz"; - sha256 = "11z1i0drbacs7c7d5virc3kz7wh79svd06iffh8j6giikl7vz1q3"; + sha256 = "0jkbxw6z8l7zpr7bh2xcyzk8a5apzyz4ranhl66gxna1ay0gpzvd"; }; nativeBuildInputs = [ cmake pkgconfig ]; From fdca0189d9b8962f3e673541833fa5103a9117b7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 22:46:59 -0700 Subject: [PATCH 0522/1611] pmd: 6.15.0 -> 6.16.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pmd/versions --- pkgs/development/tools/analysis/pmd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/pmd/default.nix b/pkgs/development/tools/analysis/pmd/default.nix index 2ab9f12c779..88d84ad1d11 100644 --- a/pkgs/development/tools/analysis/pmd/default.nix +++ b/pkgs/development/tools/analysis/pmd/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "pmd"; - version = "6.15.0"; + version = "6.16.0"; nativeBuildInputs = [ unzip ]; src = fetchurl { url = "mirror://sourceforge/pmd/pmd-bin-${version}.zip"; - sha256 = "0im64lg18bv764i14g3p42dzd7kqq9j5an8dkz1vanypb1jf5j3s"; + sha256 = "0h4818dxd9nq925asa9g3g9i2i5hg85ziapacyiqq4bhab67ysy4"; }; installPhase = '' From f3e50dfbbb550a8ad31a6c686c22ac51d295c41d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 21:50:02 -0700 Subject: [PATCH 0523/1611] python37Packages.asgiref: 3.1.2 -> 3.1.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-asgiref/versions --- pkgs/development/python-modules/asgiref/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/asgiref/default.nix b/pkgs/development/python-modules/asgiref/default.nix index a07d370761a..84c157e1bcd 100644 --- a/pkgs/development/python-modules/asgiref/default.nix +++ b/pkgs/development/python-modules/asgiref/default.nix @@ -1,6 +1,6 @@ { stdenv, buildPythonPackage, pythonOlder, fetchFromGitHub, async-timeout, pytest, pytest-asyncio }: buildPythonPackage rec { - version = "3.1.2"; + version = "3.1.4"; pname = "asgiref"; disabled = pythonOlder "3.5"; @@ -10,7 +10,7 @@ buildPythonPackage rec { owner = "django"; repo = pname; rev = version; - sha256 = "1y32ys1q07nyri0b053mx24qvkw305iwvqvqgi2fdhx0va8d7qfy"; + sha256 = "0rmasjrvf083c7855xnggy251gm8vaxyv970b2rd6198h8s3rldh"; }; propagatedBuildInputs = [ async-timeout ]; From 4e5c0e9f0e41622be345324b369cf7ed334469aa Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 20:36:48 -0700 Subject: [PATCH 0524/1611] openimageio2: 2.0.8 -> 2.0.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openimageio/versions --- pkgs/applications/graphics/openimageio/2.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/openimageio/2.x.nix b/pkgs/applications/graphics/openimageio/2.x.nix index f2e8eee9940..837446190fb 100644 --- a/pkgs/applications/graphics/openimageio/2.x.nix +++ b/pkgs/applications/graphics/openimageio/2.x.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "openimageio"; - version = "2.0.8"; + version = "2.0.9"; src = fetchFromGitHub { owner = "OpenImageIO"; repo = "oiio"; rev = "Release-${version}"; - sha256 = "0nk72h7q1n664b268zkhibb7a3i7fb3nl2z7fg31ys5r9zlq6mnp"; + sha256 = "17diyfk586hll54cl476kbhbcm3nihw6cb4bgjkjxxzxbd3wx839"; }; outputs = [ "bin" "out" "dev" "doc" ]; From d01362bba99173aae54ecec9e5e81fae61916af9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 15:53:09 -0700 Subject: [PATCH 0525/1611] libwebp: 1.0.2 -> 1.0.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libwebp/versions --- pkgs/development/libraries/libwebp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libwebp/default.nix b/pkgs/development/libraries/libwebp/default.nix index b0457e76f2f..c11f70290a4 100644 --- a/pkgs/development/libraries/libwebp/default.nix +++ b/pkgs/development/libraries/libwebp/default.nix @@ -27,11 +27,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { name = "libwebp-${version}"; - version = "1.0.2"; + version = "1.0.3"; src = fetchurl { url = "http://downloads.webmproject.org/releases/webp/${name}.tar.gz"; - sha256 = "1cb4sm6h1czvk9kqqgld3g5f0d9qv60xnbbv0kl7cr7d826b8irx"; + sha256 = "0kxk4sic34bln3k09mml7crvrmhj97swdk7b1ahbp5w6bj30f2p2"; }; configureFlags = [ From 322201aefbc8c36fc053210def2825282695292e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 14:34:40 -0700 Subject: [PATCH 0526/1611] lxcfs: 3.0.3 -> 3.0.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lxcfs/versions --- pkgs/os-specific/linux/lxcfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/lxcfs/default.nix b/pkgs/os-specific/linux/lxcfs/default.nix index 3953ff1915a..4299a8e9b37 100644 --- a/pkgs/os-specific/linux/lxcfs/default.nix +++ b/pkgs/os-specific/linux/lxcfs/default.nix @@ -3,13 +3,13 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "lxcfs-3.0.3"; + name = "lxcfs-3.0.4"; src = fetchFromGitHub { owner = "lxc"; repo = "lxcfs"; rev = name; - sha256 = "0imn031qpi1qfr1qw0ggpgcg8y6v0ykdr3m7f2czkiz3l7qqx2in"; + sha256 = "0wav2l8i218yma655870hvg96b5mxdcrsczjawjwv7qxcj5v98pw"; }; nativeBuildInputs = [ pkgconfig help2man autoreconfHook ]; From e8f2f769fd1822b05ff5cac06665bb7ee4f8cc72 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 13:10:39 -0700 Subject: [PATCH 0527/1611] libdap: 3.20.3 -> 3.20.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdap/versions --- pkgs/development/libraries/libdap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libdap/default.nix b/pkgs/development/libraries/libdap/default.nix index 067144ddfa0..86d14fe7974 100644 --- a/pkgs/development/libraries/libdap/default.nix +++ b/pkgs/development/libraries/libdap/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, bison, libuuid, curl, libxml2, flex }: stdenv.mkDerivation rec { - version = "3.20.3"; + version = "3.20.4"; name = "libdap-${version}"; nativeBuildInputs = [ bison flex ]; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://www.opendap.org/pub/source/${name}.tar.gz"; - sha256 = "0n6ciicaa7sn88gvg5sgcq0438i3vh6xbl9lxgafjqiznli1k5i9"; + sha256 = "0x44igs389b49nb2psd656wpvmbx9bwmla2l5ahfa09vxb314s5i"; }; meta = with stdenv.lib; { From 2c901071010bc799469c5d56f523f320216cc416 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 22:29:05 -0700 Subject: [PATCH 0528/1611] postfix: 3.4.5 -> 3.4.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/postfix/versions --- pkgs/servers/mail/postfix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/postfix/default.nix b/pkgs/servers/mail/postfix/default.nix index 634bba2e57c..10d3b397b26 100644 --- a/pkgs/servers/mail/postfix/default.nix +++ b/pkgs/servers/mail/postfix/default.nix @@ -26,11 +26,11 @@ in stdenv.mkDerivation rec { name = "postfix-${version}"; - version = "3.4.5"; + version = "3.4.6"; src = fetchurl { url = "ftp://ftp.cs.uu.nl/mirror/postfix/postfix-release/official/${name}.tar.gz"; - sha256 = "17riwr21i9p1h17wpagfiwkpx9bbx7dy4gpdl219a11akm7saawb"; + sha256 = "09p3vg2xlh6iq45gp6zanbp1728fc31r7zz71r131vh20ssajx6n"; }; nativeBuildInputs = [ makeWrapper m4 ]; From 2df0b53d700d93c5f5aa48c528554c090f382811 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 10:22:32 -0700 Subject: [PATCH 0529/1611] imagemagick7: 7.0.8-46 -> 7.0.8-53 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/imagemagick/versions --- pkgs/applications/graphics/ImageMagick/7.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/ImageMagick/7.0.nix b/pkgs/applications/graphics/ImageMagick/7.0.nix index f61215f83e2..2bd2207a97a 100644 --- a/pkgs/applications/graphics/ImageMagick/7.0.nix +++ b/pkgs/applications/graphics/ImageMagick/7.0.nix @@ -13,8 +13,8 @@ let else throw "ImageMagick is not supported on this platform."; cfg = { - version = "7.0.8-46"; - sha256 = "1si3rv3b9jgjkwyny5ja76s8c0z9vyic28fm63j1jrqdd2jyq3pk"; + version = "7.0.8-53"; + sha256 = "0cgfsng2d14891fqwf7mlclsi576c42v0h5r6i4208bakcr25vzk"; patches = []; }; in From 2ee151102e1434d8f22ba011fb0b1c5750c8d497 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 10:01:37 -0700 Subject: [PATCH 0530/1611] josm: 15155 -> 15238 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/josm/versions --- pkgs/applications/misc/josm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/josm/default.nix b/pkgs/applications/misc/josm/default.nix index 4f7acb7731a..8838de9ac96 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 = "15155"; + version = "15238"; src = fetchurl { url = "https://josm.openstreetmap.de/download/josm-snapshot-${version}.jar"; - sha256 = "0qws5bgv7mm1iynsdrn7cdi16rd8k4139iia3bnjpm04xn69i5im"; + sha256 = "0zh84glb4545av0s1qnccqqp8nrnfsr7rnwgbqpwwzvc2ngk91gv"; }; buildInputs = [ jdk11 makeWrapper ]; From ef9dabfd9c54d74fb4c86e592605390a10ceaa28 Mon Sep 17 00:00:00 2001 From: Michael Francis Date: Wed, 17 Jul 2019 15:49:14 +0800 Subject: [PATCH 0531/1611] kubernetes-helm: 2.11 -> 2.14.1 --- .../networking/cluster/helm/default.nix | 6 +- .../networking/cluster/helm/deps.nix | 884 ++++++++++++------ 2 files changed, 616 insertions(+), 274 deletions(-) diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index c03af2e9683..3e4c7ee514b 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -1,14 +1,14 @@ { stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { - version = "2.11.0"; + version = "2.14.1"; name = "helm-${version}"; src = fetchFromGitHub { owner = "helm"; repo = "helm"; rev = "v${version}"; - sha256 = "1z810a6mxyrrw4i908dip8aqsj95c0kmv6xpb1wwhskg1zmf85wk"; + sha256 = "16gvplqzllcif5h3qlfnlk8ifhkl5za3wj82129nf9darkixs4jh"; }; goPackagePath = "k8s.io/helm"; @@ -18,7 +18,7 @@ buildGoPackage rec { # Thsese are the original flags from the helm makefile buildFlagsArray = '' - -ldflags=-X k8s.io/helm/pkg/version.Version=v${version} + -ldflags=-X k8s.io/helm/pkg/version.Version=v${version} -X k8s.io/helm/pkg/version.GitTreeState=clean -X k8s.io/helm/pkg/version.BuildMetadata= -w -s ''; diff --git a/pkgs/applications/networking/cluster/helm/deps.nix b/pkgs/applications/networking/cluster/helm/deps.nix index 36bd3406f5b..2fdda0ca280 100644 --- a/pkgs/applications/networking/cluster/helm/deps.nix +++ b/pkgs/applications/networking/cluster/helm/deps.nix @@ -1,839 +1,1181 @@ -# file generated from Gopkg.lock using dep2nix (https://github.com/nixcloud/dep2nix) +# file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) [ { - goPackagePath = "cloud.google.com/go"; + goPackagePath = "cloud.google.com/go"; fetch = { type = "git"; url = "https://code.googlesource.com/gocloud"; - rev = "3b1ae45394a234c385be014e9a488f2bb6eef821"; - sha256 = "0alb495ql6s02kb6lxcbnlkdcmhixyl8zv11sgrkhsk1bckzh119"; + rev = "v0.26.0"; + sha256 = "149v3ci17g6wd2pm18mzcncq5qpl9hwdjnz3rlbn5rfidyn46la1"; }; } { - goPackagePath = "github.com/Azure/go-ansiterm"; + goPackagePath = "github.com/Azure/go-ansiterm"; fetch = { type = "git"; url = "https://github.com/Azure/go-ansiterm"; - rev = "19f72df4d05d31cbe1c56bfc8045c96babff6c7e"; - sha256 = "0663w5m5qlidpj17s5pqp6rhl0phw7vypf104n04dvdy5nd418ix"; + rev = "d6e3b3328b78"; + sha256 = "010khrkhkf9cxlvvb6ncqv4c1qcdmpbz9jn38g4fxf4xsma8xx1q"; }; } { - goPackagePath = "github.com/Azure/go-autorest"; + goPackagePath = "github.com/Azure/go-autorest"; fetch = { type = "git"; url = "https://github.com/Azure/go-autorest"; - rev = "1ff28809256a84bb6966640ff3d0371af82ccba4"; - sha256 = "0sxvj2j1833bqwxvhq3wq3jgq73rnb81pnzvl0x3y1m0hzpaf2zv"; + rev = "v11.1.0"; + sha256 = "1jmr04qkl9fgmj56czn2979ng0f6ygfbk2khv2xyx368686xc1d6"; }; } { - goPackagePath = "github.com/BurntSushi/toml"; + goPackagePath = "github.com/BurntSushi/toml"; fetch = { type = "git"; url = "https://github.com/BurntSushi/toml"; - rev = "b26d9c308763d68093482582cea63d69be07a0f0"; - sha256 = "0k7v2i1d2d6si8gswn83qb84czhhia53v2wdy33yz9ppdidxk0ry"; + rev = "v0.3.1"; + sha256 = "1fjdwwfzyzllgiwydknf1pwjvy49qxfsczqx5gz3y0izs7as99j6"; }; } { - goPackagePath = "github.com/MakeNowJust/heredoc"; + goPackagePath = "github.com/MakeNowJust/heredoc"; fetch = { type = "git"; url = "https://github.com/MakeNowJust/heredoc"; - rev = "bb23615498cded5e105af4ce27de75b089cbe851"; + rev = "bb23615498cd"; sha256 = "17m780i9afj3sbmcrgwgzarfly4x9376w56qblkqnzdkv6vps22i"; }; } { - goPackagePath = "github.com/Masterminds/semver"; + goPackagePath = "github.com/Masterminds/goutils"; + fetch = { + type = "git"; + url = "https://github.com/Masterminds/goutils"; + rev = "v1.1.0"; + sha256 = "180px47gj936qyk5bkv5mbbgiil9abdjq6kwkf7sq70vyi9mcfiq"; + }; + } + { + goPackagePath = "github.com/Masterminds/semver"; fetch = { type = "git"; url = "https://github.com/Masterminds/semver"; - rev = "517734cc7d6470c0d07130e40fd40bdeb9bcd3fd"; - sha256 = "1625b5sxpmlz60jw67j1ljfcc09d4lhxg3z6gc4am8s2rrdgwij6"; + rev = "v1.4.2"; + sha256 = "0k2fpk2x8jbvqkqxx5hkx1ygrsppzmzypqb90i1r33yq7ac7zlxj"; }; } { - goPackagePath = "github.com/Masterminds/sprig"; + goPackagePath = "github.com/Masterminds/sprig"; fetch = { type = "git"; url = "https://github.com/Masterminds/sprig"; - rev = "15f9564e7e9cf0da02a48e0d25f12a7b83559aa6"; - sha256 = "1k5pfx9hxzb70kh73a009ikr3vqlq0jvzvbyvxz9x7a7yc4r5b14"; + rev = "9f8fceff796f"; + sha256 = "0m6h88xcs8zc2b1g6zaksfn9kyqhr8q9508h57jb6papx7w54yl2"; }; } { - goPackagePath = "github.com/Masterminds/vcs"; + goPackagePath = "github.com/Masterminds/vcs"; fetch = { type = "git"; url = "https://github.com/Masterminds/vcs"; - rev = "3084677c2c188840777bff30054f2b553729d329"; + rev = "v1.11.1"; sha256 = "1062m73h0pp5d0574lf6px4jsjgywnsbkw50inxx3zal5r185ydm"; }; } { - goPackagePath = "github.com/PuerkitoBio/purell"; + goPackagePath = "github.com/PuerkitoBio/purell"; fetch = { type = "git"; url = "https://github.com/PuerkitoBio/purell"; - rev = "8a290539e2e8629dbc4e6bad948158f790ec31f4"; - sha256 = "1qhsy1nm96b9kb63svkvkqmmw15xg6irwcysisxdgzk64adfwqv1"; + rev = "v1.1.0"; + sha256 = "0vsxyn1fbm7g873b8kf3hcsgqgncb5nmfq3zfsc35a9yhzarka91"; }; } { - goPackagePath = "github.com/PuerkitoBio/urlesc"; + goPackagePath = "github.com/PuerkitoBio/urlesc"; fetch = { type = "git"; url = "https://github.com/PuerkitoBio/urlesc"; - rev = "5bd2802263f21d8788851d5305584c82a5c75d7e"; - sha256 = "15y5r3asvm7196m3nza5xvdvlc2k11p6lfs6hi917hl7r9vgi6mp"; + rev = "de5bf2ad4578"; + sha256 = "0n0srpqwbaan1wrhh2b7ysz543pjs1xw2rghvqyffg9l0g8kzgcw"; }; } { - goPackagePath = "github.com/aokoli/goutils"; + goPackagePath = "github.com/adisbladis/vgo2nix"; fetch = { type = "git"; - url = "https://github.com/aokoli/goutils"; - rev = "9c37978a95bd5c709a15883b6242714ea6709e64"; - sha256 = "1c51qgk4pjc8c776h7589c3d14791h86f1yj3ykg4q7vlcf9xrnr"; + url = "https://github.com/adisbladis/vgo2nix"; + rev = "56ac56bb0d96"; + sha256 = "1jbxbgcqkal8cdhj2nfbw92fn1fs9ng1df9sf92vgf0m1xzq2mc3"; }; } { - goPackagePath = "github.com/asaskevich/govalidator"; + goPackagePath = "github.com/alecthomas/assert"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/assert"; + rev = "405dbfeb8e38"; + sha256 = "1l567pi17k593nrd1qlbmiq8z9jy3qs60px2a16fdpzjsizwqx8l"; + }; + } + { + goPackagePath = "github.com/alecthomas/colour"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/colour"; + rev = "60882d9e2721"; + sha256 = "0iq566534gbzkd16ixg7fk298wd766821vvs80838yifx9yml5vs"; + }; + } + { + goPackagePath = "github.com/alecthomas/kingpin"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/kingpin"; + rev = "v2.2.6"; + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; + }; + } + { + goPackagePath = "github.com/alecthomas/repr"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/repr"; + rev = "117648cd9897"; + sha256 = "05v1rgzdqc8razf702laagrvhvx68xd9yxxmzd3dyz0d6425pdrp"; + }; + } + { + goPackagePath = "github.com/alecthomas/template"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/template"; + rev = "a0175ee3bccc"; + sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; + }; + } + { + goPackagePath = "github.com/alecthomas/units"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/units"; + rev = "2efee857e7cf"; + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; + }; + } + { + goPackagePath = "github.com/asaskevich/govalidator"; fetch = { type = "git"; url = "https://github.com/asaskevich/govalidator"; - rev = "7664702784775e51966f0885f5cd27435916517b"; + rev = "766470278477"; sha256 = "1lmynw9vkgrxv7nh60wdywv0nx4gjlkiar433wydhpc2h3m5q968"; }; } { - goPackagePath = "github.com/beorn7/perks"; + goPackagePath = "github.com/beorn7/perks"; fetch = { type = "git"; url = "https://github.com/beorn7/perks"; - rev = "3ac7bf7a47d159a033b107610db8a1b6575507a4"; - sha256 = "1qc3l4r818xpvrhshh1sisc5lvl9479qspcfcdbivdyh0apah83r"; + rev = "3a771d992973"; + sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; }; } { - goPackagePath = "github.com/chai2010/gettext-go"; + goPackagePath = "github.com/chai2010/gettext-go"; fetch = { type = "git"; url = "https://github.com/chai2010/gettext-go"; - rev = "bf70f2a70fb1b1f36d90d671a72795984eab0fcb"; - sha256 = "0bwjwvjl7zqm7kxram1rzz0ri3h897kiin13ljy9hx3fzz1i9lml"; + rev = "c6fed771bfd5"; + sha256 = "1p9gzj39x4gyhc552n3dmi3kc224gwilawa5kcg8rla31qkwlsky"; }; } { - goPackagePath = "github.com/cpuguy83/go-md2man"; + goPackagePath = "github.com/client9/misspell"; + fetch = { + type = "git"; + url = "https://github.com/client9/misspell"; + rev = "v0.3.4"; + sha256 = "1vwf33wsc4la25zk9nylpbp9px3svlmldkm0bha4hp56jws4q9cs"; + }; + } + { + goPackagePath = "github.com/cpuguy83/go-md2man"; fetch = { type = "git"; url = "https://github.com/cpuguy83/go-md2man"; - rev = "71acacd42f85e5e82f70a55327789582a5200a90"; + rev = "v1.0.4"; sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; }; } { - goPackagePath = "github.com/cyphar/filepath-securejoin"; + goPackagePath = "github.com/cyphar/filepath-securejoin"; fetch = { type = "git"; url = "https://github.com/cyphar/filepath-securejoin"; - rev = "a261ee33d7a517f054effbf451841abaafe3e0fd"; + rev = "v0.2.2"; sha256 = "0id32zjb92wm569m29nfrzz5mw9z1glr3klayr6j134pp4h1sgq4"; }; } { - goPackagePath = "github.com/davecgh/go-spew"; + goPackagePath = "github.com/davecgh/go-spew"; fetch = { type = "git"; url = "https://github.com/davecgh/go-spew"; - rev = "782f4967f2dc4564575ca782fe2d04090b5faca8"; - sha256 = "1ypijjawqc0xgmgim42260ibcyclfgfizicz5cbvndw4plqfsswk"; + rev = "v1.1.1"; + sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; }; } { - goPackagePath = "github.com/dgrijalva/jwt-go"; + goPackagePath = "github.com/dgrijalva/jwt-go"; fetch = { type = "git"; url = "https://github.com/dgrijalva/jwt-go"; - rev = "06ea1031745cb8b3dab3f6a236daf2b0aa468b7e"; - sha256 = "08m27vlms74pfy5z79w67f9lk9zkx6a9jd68k3c4msxy75ry36mp"; + rev = "01aeca54ebda"; + sha256 = "10dmb5xxn5wijn299h483z0klprprkq7n1azakm3ysp50sr11ywg"; }; } { - goPackagePath = "github.com/docker/distribution"; + goPackagePath = "github.com/docker/distribution"; fetch = { type = "git"; url = "https://github.com/docker/distribution"; - rev = "edc3ab29cdff8694dd6feb85cfeb4b5f1b38ed9c"; + rev = "edc3ab29cdff"; sha256 = "1nqjaq1q6fs3c0avpb02sib0a906xfbk3m74hk2mqjdbyx9y8b4m"; }; } { - goPackagePath = "github.com/docker/docker"; + goPackagePath = "github.com/docker/docker"; fetch = { type = "git"; url = "https://github.com/docker/docker"; - rev = "4f3616fb1c112e206b88cb7a9922bf49067a7756"; - sha256 = "0zmsqm1lkwggfqgy2rw34g4g2jlvr6mvcsh65fmpdb30l65iaqzf"; + rev = "a9fbbdc8dd87"; + sha256 = "0vkr9fs8qv3ydpm4f4b3jsx1f3cxpws78f2kwpyn00y1gb3lpnpc"; }; } { - goPackagePath = "github.com/docker/go-connections"; - fetch = { - type = "git"; - url = "https://github.com/docker/go-connections"; - rev = "3ede32e2033de7505e6500d6c868c2b9ed9f169d"; - sha256 = "0v1pkr8apwmhyzbjfriwdrs1ihlk6pw7izm57r24mf9jdmg3fyb0"; - }; - } - { - goPackagePath = "github.com/docker/go-units"; - fetch = { - type = "git"; - url = "https://github.com/docker/go-units"; - rev = "9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1"; - sha256 = "1sqwvcszxqpv77xf2d8fxvryxphdwj9v8f93231wpnk9kpilhyii"; - }; - } - { - goPackagePath = "github.com/docker/spdystream"; + goPackagePath = "github.com/docker/spdystream"; fetch = { type = "git"; url = "https://github.com/docker/spdystream"; - rev = "449fdfce4d962303d702fec724ef0ad181c92528"; + rev = "449fdfce4d96"; sha256 = "1412cpiis971iq1kxrirzirhj2708ispjh0x0dh879b66x8507sl"; }; } { - goPackagePath = "github.com/evanphx/json-patch"; + goPackagePath = "github.com/emicklei/go-restful"; fetch = { type = "git"; - url = "https://github.com/evanphx/json-patch"; - rev = "94e38aa1586e8a6c8a75770bddf5ff84c48a106b"; - sha256 = "1c9gzc3gb76lm5famc0345y90is1lyffn39bmdr0xk19462f8av5"; + url = "https://github.com/emicklei/go-restful"; + rev = "ff4f55a20633"; + sha256 = "1v5lj5142abz3gvbygp6xghpdx4ps2lwswl8559ivaidahwnc21c"; }; } { - goPackagePath = "github.com/exponent-io/jsonpath"; + goPackagePath = "github.com/evanphx/json-patch"; + fetch = { + type = "git"; + url = "https://github.com/evanphx/json-patch"; + rev = "v4.2.0"; + sha256 = "0cfvyhl3hjfc4z8hbkfc40yafv6r7y513zgp3jwf88isbd13r7a6"; + }; + } + { + goPackagePath = "github.com/exponent-io/jsonpath"; fetch = { type = "git"; url = "https://github.com/exponent-io/jsonpath"; - rev = "d6023ce2651d8eafb5c75bb0c7167536102ec9f5"; + rev = "d6023ce2651d"; sha256 = "1qkzaxsjs7yg1672sk67nr119j7jc4751yzgii0j3nbipjv321kc"; }; } { - goPackagePath = "github.com/fatih/camelcase"; + goPackagePath = "github.com/fatih/camelcase"; fetch = { type = "git"; url = "https://github.com/fatih/camelcase"; - rev = "f6a740d52f961c60348ebb109adde9f4635d7540"; + rev = "f6a740d52f96"; sha256 = "15vb86adns1izvbzjw0lmmzrwlarhbxw5qalhx10vzzdx73wh4ai"; }; } { - goPackagePath = "github.com/ghodss/yaml"; + goPackagePath = "github.com/ghodss/yaml"; fetch = { type = "git"; url = "https://github.com/ghodss/yaml"; - rev = "73d445a93680fa1a78ae23a5839bad48f32ba1ee"; - sha256 = "0pg53ky4sy3sp9j4n7vgf1p3gw4nbckwqfldcmmi9rf13kjh0mr7"; + rev = "c7ce16629ff4"; + sha256 = "10cyv1gy3zwwkr04kk8cvhifb7xddakyvnk5s13yfcqj9hcjz8d1"; }; } { - goPackagePath = "github.com/go-openapi/jsonpointer"; + goPackagePath = "github.com/go-kit/kit"; + fetch = { + type = "git"; + url = "https://github.com/go-kit/kit"; + rev = "v0.8.0"; + sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0"; + }; + } + { + goPackagePath = "github.com/go-logfmt/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/go-logfmt/logfmt"; + rev = "v0.3.0"; + sha256 = "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9"; + }; + } + { + goPackagePath = "github.com/go-openapi/jsonpointer"; fetch = { type = "git"; url = "https://github.com/go-openapi/jsonpointer"; - rev = "46af16f9f7b149af66e5d1bd010e3574dc06de98"; - sha256 = "0w0fphmdycjzbsm1vppdcjc9aqinkcdzcq3pxikdvdqh5p791gsc"; + rev = "v0.19.0"; + sha256 = "0sv2k1fwj6rsigc9489c19ap0jib1d0widm040h0sjdw2nadh3i2"; }; } { - goPackagePath = "github.com/go-openapi/jsonreference"; + goPackagePath = "github.com/go-openapi/jsonreference"; fetch = { type = "git"; url = "https://github.com/go-openapi/jsonreference"; - rev = "13c6e3589ad90f49bd3e3bbe2c2cb3d7a4142272"; - sha256 = "1fh4xcl9ijww4bdq656sx981d57w2c9zx5148jsxlsg4bsvxmwis"; + rev = "v0.19.0"; + sha256 = "1d0rk17wn755xsfi9pxifdpgs2p23bc0rkf95kjwxczyy6jbqdaj"; }; } { - goPackagePath = "github.com/go-openapi/spec"; + goPackagePath = "github.com/go-openapi/spec"; fetch = { type = "git"; url = "https://github.com/go-openapi/spec"; - rev = "1de3e0542de65ad8d75452a595886fdd0befb363"; - sha256 = "13i9y71fk9vr2abvpsk04k55il32ly3fjinvl1zlamh9mi2mdzf4"; + rev = "v0.17.2"; + sha256 = "14n5x2nxlj2x62v3km96yw7rncxk2b9v94k3j0c22r43c60m38mx"; }; } { - goPackagePath = "github.com/go-openapi/swag"; + goPackagePath = "github.com/go-openapi/swag"; fetch = { type = "git"; url = "https://github.com/go-openapi/swag"; - rev = "f3f9494671f93fcff853e3c6e9e948b3eb71e590"; - sha256 = "13lqn4xqy9vma9aqsjb0fzfzi0q8l6dmg65sjxqdxf3q6gzkvmjy"; + rev = "v0.17.2"; + sha256 = "1hhgbx59f7lcsqiza2is8q9walhf8mxfkwj7xql1scrn6ms2jmlv"; }; } { - goPackagePath = "github.com/gobwas/glob"; + goPackagePath = "github.com/go-sql-driver/mysql"; + fetch = { + type = "git"; + url = "https://github.com/go-sql-driver/mysql"; + rev = "v1.4.0"; + sha256 = "1jwz2j3vd5hlzmnkh20d4276yd8cxy7pac3x3dfi52jkm82ms99n"; + }; + } + { + goPackagePath = "github.com/go-stack/stack"; + fetch = { + type = "git"; + url = "https://github.com/go-stack/stack"; + rev = "v1.8.0"; + sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"; + }; + } + { + goPackagePath = "github.com/gobwas/glob"; fetch = { type = "git"; url = "https://github.com/gobwas/glob"; - rev = "5ccd90ef52e1e632236f7326478d4faa74f99438"; + rev = "v0.2.3"; sha256 = "0jxk1x806zn5x86342s72dq2qy64ksb3zrvrlgir2avjhwb18n6z"; }; } { - goPackagePath = "github.com/gogo/protobuf"; + goPackagePath = "github.com/gogo/protobuf"; fetch = { type = "git"; url = "https://github.com/gogo/protobuf"; - rev = "c0656edd0d9eab7c66d1eb0c568f9039345796f7"; - sha256 = "0b943dhx571lhgcs3rqzy0092mi2x5mwy2kl7g8rryhy3r5rzrz9"; + rev = "v1.1.1"; + sha256 = "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2"; }; } { - goPackagePath = "github.com/golang/glog"; + goPackagePath = "github.com/golang/glog"; fetch = { type = "git"; url = "https://github.com/golang/glog"; - rev = "44145f04b68cf362d9c4df2182967c2275eaefed"; - sha256 = "1k7sf6qmpgm0iw81gx2dwggf9di6lgw0n54mni7862hihwfrb5rq"; + rev = "23def4e6c14b"; + sha256 = "0jb2834rw5sykfr937fxi8hxi2zy80sj2bdn9b3jb4b26ksqng30"; }; } { - goPackagePath = "github.com/golang/groupcache"; + goPackagePath = "github.com/golang/groupcache"; fetch = { type = "git"; url = "https://github.com/golang/groupcache"; - rev = "02826c3e79038b59d737d3b1c0a1d937f71a4433"; + rev = "02826c3e7903"; sha256 = "0w46bsllddfij66nrg8jbfjsr54birvfww8a2fj9fmgyig5syn2x"; }; } { - goPackagePath = "github.com/golang/protobuf"; + goPackagePath = "github.com/golang/mock"; fetch = { type = "git"; - url = "https://github.com/golang/protobuf"; - rev = "1643683e1b54a9e88ad26d98f81400c8c9d9f4f9"; - sha256 = "1ch3czyzq5abl6zm1l0dfsi09xj43ql9jcbmbhfhxz954pw03v3v"; + url = "https://github.com/golang/mock"; + rev = "v1.1.1"; + sha256 = "0ap8wb6pdl6ccmdb43advjll2ly4sz26wsc3axw0hbrjrybybzgy"; }; } { - goPackagePath = "github.com/google/btree"; + goPackagePath = "github.com/golang/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/golang/protobuf"; + rev = "v1.2.0"; + sha256 = "0kf4b59rcbb1cchfny2dm9jyznp8ri2hsb14n8iak1q8986xa0ab"; + }; + } + { + goPackagePath = "github.com/google/btree"; fetch = { type = "git"; url = "https://github.com/google/btree"; - rev = "7d79101e329e5a3adf994758c578dab82b90c017"; + rev = "7d79101e329e"; sha256 = "1c1hsy5s2pfawg3l9954jmqmy4yc2zp3f7i87m00km2yqgb8xpd0"; }; } { - goPackagePath = "github.com/google/gofuzz"; + goPackagePath = "github.com/google/gofuzz"; fetch = { type = "git"; url = "https://github.com/google/gofuzz"; - rev = "44d81051d367757e1c7c6a5a86423ece9afcf63c"; - sha256 = "0ivq2sl2fv8x0xxrcys27c42s8yq7irgl7lp6l0im9i7ky63nk0i"; + rev = "24818f796faf"; + sha256 = "0cq90m2lgalrdfrwwyycrrmn785rgnxa3l3vp9yxkvnv88bymmlm"; }; } { - goPackagePath = "github.com/google/uuid"; + goPackagePath = "github.com/google/uuid"; fetch = { type = "git"; url = "https://github.com/google/uuid"; - rev = "064e2069ce9c359c118179501254f67d7d37ba24"; + rev = "064e2069ce9c"; sha256 = "1b1ibx3rbiv7xwa9kz4b4zpp1fza5cjnn8v6749b4vrkjjmp3rqb"; }; } { - goPackagePath = "github.com/googleapis/gnostic"; + goPackagePath = "github.com/googleapis/gnostic"; fetch = { type = "git"; url = "https://github.com/googleapis/gnostic"; - rev = "0c5108395e2debce0d731cf0287ddf7242066aba"; + rev = "0c5108395e2d"; sha256 = "0jf3cp5clli88gpjf24r6wxbkvngnc1kf59d4cgjczsn2wasvsfc"; }; } { - goPackagePath = "github.com/gophercloud/gophercloud"; + goPackagePath = "github.com/gophercloud/gophercloud"; fetch = { type = "git"; url = "https://github.com/gophercloud/gophercloud"; - rev = "781450b3c4fcb4f5182bcc5133adb4b2e4a09d1d"; - sha256 = "0xvapk94p1259k8arvwyvhwvcnzma9vdg12g750cgz2ghkzvfhff"; + rev = "c818fa66e4c8"; + sha256 = "0igz47lpdxgpfb4ckrrs64vr4wkkiqaamk4wf5d3il4dc2g06azw"; }; } { - goPackagePath = "github.com/gosuri/uitable"; + goPackagePath = "github.com/gosuri/uitable"; fetch = { type = "git"; url = "https://github.com/gosuri/uitable"; - rev = "36ee7e946282a3fb1cfecd476ddc9b35d8847e42"; + rev = "v0.0.1"; sha256 = "1ff68fv9g1df91fwbrcq83ar429gb4fi2vsd22zjmhvmbqx2zkil"; }; } { - goPackagePath = "github.com/gregjones/httpcache"; + goPackagePath = "github.com/gregjones/httpcache"; fetch = { type = "git"; url = "https://github.com/gregjones/httpcache"; - rev = "787624de3eb7bd915c329cba748687a3b22666a6"; + rev = "787624de3eb7"; sha256 = "1zqlg9pkj7r6fqw7wv3ywvbz3bh0hvzifs2scgcraj812q5189w5"; }; } { - goPackagePath = "github.com/grpc-ecosystem/go-grpc-prometheus"; + goPackagePath = "github.com/grpc-ecosystem/go-grpc-prometheus"; fetch = { type = "git"; url = "https://github.com/grpc-ecosystem/go-grpc-prometheus"; - rev = "0c1b191dbfe51efdabe3c14b9f6f3b96429e0722"; + rev = "0c1b191dbfe5"; sha256 = "0d7vybd4yy9a9clk03578xdpyhifxsy3qv6iiglrrnblbmpgksjc"; }; } { - goPackagePath = "github.com/hashicorp/golang-lru"; + goPackagePath = "github.com/hashicorp/golang-lru"; fetch = { type = "git"; url = "https://github.com/hashicorp/golang-lru"; - rev = "a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4"; - sha256 = "1z3h4aca31l3qs0inqr5l49vrlycpjm7vq1l9nh1mp0mb2ij0kmp"; + rev = "v0.5.0"; + sha256 = "12k2cp2k615fjvfa5hyb9k2alian77wivds8s65diwshwv41939f"; }; } { - goPackagePath = "github.com/huandu/xstrings"; + goPackagePath = "github.com/huandu/xstrings"; fetch = { type = "git"; url = "https://github.com/huandu/xstrings"; - rev = "3959339b333561bf62a38b424fd41517c2c90f40"; - sha256 = "0f1jyd80grpr88gwhljx2x0xgsyzw07807n4z4axxxlybh5f0nh1"; + rev = "v1.2.0"; + sha256 = "0bn1kac5vcspxdpx4bygr4gngdbk67pnbqc04b0f7a4ny25n10iq"; }; } { - goPackagePath = "github.com/imdario/mergo"; + goPackagePath = "github.com/imdario/mergo"; fetch = { type = "git"; url = "https://github.com/imdario/mergo"; - rev = "6633656539c1639d9d78127b7d47c622b5d7b6dc"; - sha256 = "1fffbq1l17i0gynmvcxypl7d9h4v81g5vlimiph5bfgf4sp4db7g"; + rev = "v0.3.5"; + sha256 = "1mvgn89vp39gcpvhiq4n7nw5ipj7fk6h03jgc6fjwgvwvss213pb"; }; } { - goPackagePath = "github.com/inconshreveable/mousetrap"; + goPackagePath = "github.com/inconshreveable/mousetrap"; fetch = { type = "git"; url = "https://github.com/inconshreveable/mousetrap"; - rev = "76626ae9c91c4f2a10f34cad8ce83ea42c93bb75"; + rev = "v1.0.0"; sha256 = "1mn0kg48xkd74brf48qf5hzp0bc6g8cf5a77w895rl3qnlpfw152"; }; } { - goPackagePath = "github.com/json-iterator/go"; + goPackagePath = "github.com/jmoiron/sqlx"; + fetch = { + type = "git"; + url = "https://github.com/jmoiron/sqlx"; + rev = "v1.2.0"; + sha256 = "0pmi2asx157f5738g19fzyxb9g8yyfbpjyh2a2ykr9mafvp60rfd"; + }; + } + { + goPackagePath = "github.com/json-iterator/go"; fetch = { type = "git"; url = "https://github.com/json-iterator/go"; - rev = "f2b4162afba35581b6d4a50d3b8f34e33c144682"; - sha256 = "0siqfghsm2lkdwinvg8x5gls3p76rq3cdm59c1r4x0b2mdfhnvcd"; + rev = "ab8a2e0c74be"; + sha256 = "1x3wz44p1238gpyzkiiilvvrq9q8dwjdm9kdidq65yjq0zcn0sq4"; }; } { - goPackagePath = "github.com/mailru/easyjson"; + goPackagePath = "github.com/julienschmidt/httprouter"; + fetch = { + type = "git"; + url = "https://github.com/julienschmidt/httprouter"; + rev = "v1.2.0"; + sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666"; + }; + } + { + goPackagePath = "github.com/kisielk/gotool"; + fetch = { + type = "git"; + url = "https://github.com/kisielk/gotool"; + rev = "v1.0.0"; + sha256 = "14af2pa0ssyp8bp2mvdw184s5wcysk6akil3wzxmr05wwy951iwn"; + }; + } + { + goPackagePath = "github.com/konsorten/go-windows-terminal-sequences"; + fetch = { + type = "git"; + url = "https://github.com/konsorten/go-windows-terminal-sequences"; + rev = "v1.0.1"; + sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip"; + }; + } + { + goPackagePath = "github.com/kr/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/kr/logfmt"; + rev = "b84e30acd515"; + sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9"; + }; + } + { + goPackagePath = "github.com/lib/pq"; + fetch = { + type = "git"; + url = "https://github.com/lib/pq"; + rev = "v1.0.0"; + sha256 = "1zqnnyczaf00xi6xh53vq758v5bdlf0iz7kf22l02cal4i6px47i"; + }; + } + { + goPackagePath = "github.com/liggitt/tabwriter"; + fetch = { + type = "git"; + url = "https://github.com/liggitt/tabwriter"; + rev = "89fcab3d43de"; + sha256 = "04q8d0jk1ymvy7pv1dgfbqzk8gcjfa77psg1lk30ghlisf54pakg"; + }; + } + { + goPackagePath = "github.com/mailru/easyjson"; fetch = { type = "git"; url = "https://github.com/mailru/easyjson"; - rev = "2f5df55504ebc322e4d52d34df6a1f5b503bf26d"; - sha256 = "0d9m8kyhbawa452vnwn255xxnh6pkp3im0d2310rw1k14nh3yh1p"; + rev = "60711f1a8329"; + sha256 = "0234jp6134wkihdpdwq1hvzqblgl5khc1wp6dyi2h0hgh88bhdk1"; }; } { - goPackagePath = "github.com/mattn/go-runewidth"; + goPackagePath = "github.com/mattn/go-isatty"; + fetch = { + type = "git"; + url = "https://github.com/mattn/go-isatty"; + rev = "v0.0.3"; + sha256 = "06w45aqz2a6yrk25axbly2k5wmsccv8cspb94bfmz4izvw8h927n"; + }; + } + { + goPackagePath = "github.com/mattn/go-runewidth"; fetch = { type = "git"; url = "https://github.com/mattn/go-runewidth"; - rev = "d6bea18f789704b5f83375793155289da36a3c7f"; + rev = "v0.0.1"; sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; }; } { - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; + goPackagePath = "github.com/mattn/go-sqlite3"; fetch = { type = "git"; - url = "https://github.com/matttproud/golang_protobuf_extensions"; - rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; - sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; + url = "https://github.com/mattn/go-sqlite3"; + rev = "v1.9.0"; + sha256 = "14vw8bwyaz9lrd1rqhfri5cwpimiimhp75pkbqxxsjsr5jz89s7m"; }; } { - goPackagePath = "github.com/mitchellh/go-wordwrap"; + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; + fetch = { + type = "git"; + url = "https://github.com/matttproud/golang_protobuf_extensions"; + rev = "v1.0.1"; + sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; + }; + } + { + goPackagePath = "github.com/mitchellh/go-wordwrap"; fetch = { type = "git"; url = "https://github.com/mitchellh/go-wordwrap"; - rev = "ad45545899c7b13c020ea92b2072220eefad42b8"; + rev = "ad45545899c7"; sha256 = "0ny1ddngvwfj3njn7pmqnf3l903lw73ynddw15x8ymp7hidv27v9"; }; } { - goPackagePath = "github.com/modern-go/concurrent"; + goPackagePath = "github.com/modern-go/concurrent"; fetch = { type = "git"; url = "https://github.com/modern-go/concurrent"; - rev = "bacd9c7ef1dd9b15be4a9909b8ac7a4e313eec94"; + rev = "bacd9c7ef1dd"; sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs"; }; } { - goPackagePath = "github.com/modern-go/reflect2"; + goPackagePath = "github.com/modern-go/reflect2"; fetch = { type = "git"; url = "https://github.com/modern-go/reflect2"; - rev = "4b7aa43c6742a2c18fdef89dd197aaae7dac7ccd"; - sha256 = "1721y3yr3dpx5dx5ashf063qczk2awy5zjir1jvp1h5hn7qz4i49"; + rev = "v1.0.1"; + sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf"; }; } { - goPackagePath = "github.com/opencontainers/go-digest"; + goPackagePath = "github.com/mwitkow/go-conntrack"; + fetch = { + type = "git"; + url = "https://github.com/mwitkow/go-conntrack"; + rev = "cc309e4a2223"; + sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf"; + }; + } + { + goPackagePath = "github.com/opencontainers/go-digest"; fetch = { type = "git"; url = "https://github.com/opencontainers/go-digest"; - rev = "a6d0ee40d4207ea02364bd3b9e8e77b9159ba1eb"; + rev = "a6d0ee40d420"; sha256 = "1paz3na2xkhi10p5bk7f7gbh5yykfgr9f9i2gcc13rb461yq6fmg"; }; } { - goPackagePath = "github.com/opencontainers/image-spec"; + goPackagePath = "github.com/orivej/e"; fetch = { type = "git"; - url = "https://github.com/opencontainers/image-spec"; - rev = "372ad780f63454fbbbbcc7cf80e5b90245c13e13"; - sha256 = "0wajddbm49bfybkab9midilg18zvdvvsffwhkq7bpp7inj4jnsvs"; + url = "https://github.com/orivej/e"; + rev = "ac3492690fda"; + sha256 = "11jizr28kfkr6zscjxg95pqi6cjp08aqnhs41sdhc98nww78ilkr"; }; } { - goPackagePath = "github.com/petar/GoLLRB"; + goPackagePath = "github.com/orivej/go-nix"; fetch = { type = "git"; - url = "https://github.com/petar/GoLLRB"; - rev = "53be0d36a84c2a886ca057d34b6aa4468df9ccb4"; - sha256 = "01xp3lcamqkvl91jg6ly202gdsgf64j39rkrcqxi6v4pbrcv7hz0"; + url = "https://github.com/orivej/go-nix"; + rev = "dae45d921a44"; + sha256 = "17hfmsz8hs3h2d5c06j1bvbw8ijrhzm3iz911z5zydsl4x7y0cgy"; }; } { - goPackagePath = "github.com/peterbourgon/diskv"; + goPackagePath = "github.com/peterbourgon/diskv"; fetch = { type = "git"; url = "https://github.com/peterbourgon/diskv"; - rev = "5f041e8faa004a95c88a202771f4cc3e991971e6"; + rev = "v2.0.1"; sha256 = "1mxpa5aad08x30qcbffzk80g9540wvbca4blc1r2qyzl65b8929b"; }; } { - goPackagePath = "github.com/pkg/errors"; + goPackagePath = "github.com/pkg/errors"; fetch = { type = "git"; url = "https://github.com/pkg/errors"; - rev = "645ef00459ed84a119197bfb8d8205042c6df63d"; + rev = "v0.8.0"; sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; }; } { - goPackagePath = "github.com/pmezard/go-difflib"; + goPackagePath = "github.com/pkg/profile"; + fetch = { + type = "git"; + url = "https://github.com/pkg/profile"; + rev = "v1.2.1"; + sha256 = "0blqmvgqvdbqmh3fp9pfdxc9w1qfshrr0zy9whj0sn372bw64qnr"; + }; + } + { + goPackagePath = "github.com/pmezard/go-difflib"; fetch = { type = "git"; url = "https://github.com/pmezard/go-difflib"; - rev = "d8ed2627bdf02c080bf22230dbb337003b7aba2d"; - sha256 = "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs"; + rev = "v1.0.0"; + sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; }; } { - goPackagePath = "github.com/prometheus/client_golang"; + goPackagePath = "github.com/prometheus/client_golang"; fetch = { type = "git"; url = "https://github.com/prometheus/client_golang"; - rev = "c5b7fccd204277076155f10851dad72b76a49317"; - sha256 = "1xqny3147g12n4j03kxm8s9mvdbs3ln6i56c655mybrn9jjy48kd"; + rev = "v0.9.2"; + sha256 = "02b4yg6rfag0m3j0i39sillcm5xczwv8h133vn12yr8qw04cnigs"; }; } { - goPackagePath = "github.com/prometheus/client_model"; + goPackagePath = "github.com/prometheus/client_model"; fetch = { type = "git"; url = "https://github.com/prometheus/client_model"; - rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; - sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; + rev = "5c3871d89910"; + sha256 = "04psf81l9fjcwascsys428v03fx4fi894h7fhrj2vvcz723q57k0"; }; } { - goPackagePath = "github.com/prometheus/common"; + goPackagePath = "github.com/prometheus/common"; fetch = { type = "git"; url = "https://github.com/prometheus/common"; - rev = "13ba4ddd0caa9c28ca7b7bffe1dfa9ed8d5ef207"; - sha256 = "0i6mpcnsawi7f00rfmjfjq8llaplyzq4xrkrawlcgfd762p5hnp8"; + rev = "v0.2.0"; + sha256 = "02kym6lcfnlq23qbv277jr0q1n7jj0r14gqg93c7wn7gc44jv3vp"; }; } { - goPackagePath = "github.com/prometheus/procfs"; + goPackagePath = "github.com/prometheus/procfs"; fetch = { type = "git"; url = "https://github.com/prometheus/procfs"; - rev = "65c1f6f8f0fc1e2185eb9863a3bc751496404259"; - sha256 = "0jfzmr8642hr04naim1maa3wklxvcxklykri2z7k4ayizc974lkq"; + rev = "1dc9a6cbc91a"; + sha256 = "1zlv1x30xp7z5c3vn5vp870v4bjim0zcidzc3mr2l3xhazc0svab"; }; } { - goPackagePath = "github.com/russross/blackfriday"; + goPackagePath = "github.com/rubenv/sql-migrate"; + fetch = { + type = "git"; + url = "https://github.com/rubenv/sql-migrate"; + rev = "1007f53448d7"; + sha256 = "1cd7wpgym7yzzv4n7bsmg9gh1g7mqlljih3881arqlq11083d3mc"; + }; + } + { + goPackagePath = "github.com/russross/blackfriday"; fetch = { type = "git"; url = "https://github.com/russross/blackfriday"; - rev = "300106c228d52c8941d4b3de6054a6062a86dda3"; + rev = "300106c228d5"; sha256 = "1bcqwb9lk2sijn5q3kqp7sadhh0ysbxlj5bxjspk9yp5bp733cbh"; }; } { - goPackagePath = "github.com/shurcooL/sanitized_anchor_name"; + goPackagePath = "github.com/sergi/go-diff"; + fetch = { + type = "git"; + url = "https://github.com/sergi/go-diff"; + rev = "v1.0.0"; + sha256 = "0swiazj8wphs2zmk1qgq75xza6m19snif94h2m6fi8dqkwqdl7c7"; + }; + } + { + goPackagePath = "github.com/shurcooL/sanitized_anchor_name"; fetch = { type = "git"; url = "https://github.com/shurcooL/sanitized_anchor_name"; - rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; + rev = "10ef21a441db"; sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; }; } { - goPackagePath = "github.com/sirupsen/logrus"; + goPackagePath = "github.com/sirupsen/logrus"; fetch = { type = "git"; url = "https://github.com/sirupsen/logrus"; - rev = "89742aefa4b206dcf400792f3bd35b542998eb3b"; - sha256 = "0hk7fabx59msg2y0iik6xvfp80s73ybrwlcshbm9ds91iqbkcxi6"; + rev = "v1.2.0"; + sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg"; }; } { - goPackagePath = "github.com/spf13/cobra"; + goPackagePath = "github.com/spf13/cobra"; fetch = { type = "git"; url = "https://github.com/spf13/cobra"; - rev = "c439c4fa093711d42e1b01acb1235b52004753c1"; - sha256 = "14v5vhb180yzaknxnm8j4n9jai58b0y2nzrqzpdq7bj9slsga1vd"; + rev = "fe5e611709b0"; + sha256 = "1pn7g9jmhqc9yg6x02dgp4phiggnnxz8a11pv5y4vxhrvkjm6h71"; }; } { - goPackagePath = "github.com/spf13/pflag"; + goPackagePath = "github.com/spf13/pflag"; fetch = { type = "git"; url = "https://github.com/spf13/pflag"; - rev = "583c0c0531f06d5278b7d917446061adc344b5cd"; - sha256 = "0nr4mdpfhhk94hq4ymn5b2sxc47b29p1akxd8b0hx4dvdybmipb5"; + rev = "v1.0.3"; + sha256 = "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd"; }; } { - goPackagePath = "github.com/stretchr/testify"; + goPackagePath = "github.com/stretchr/objx"; + fetch = { + type = "git"; + url = "https://github.com/stretchr/objx"; + rev = "v0.1.1"; + sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; + }; + } + { + goPackagePath = "github.com/stretchr/testify"; fetch = { type = "git"; url = "https://github.com/stretchr/testify"; - rev = "e3a8ff8ce36581f87a15341206f205b1da467059"; - sha256 = "179k26lcgafkbjylbhgj2f5pnh52bmv19rr1w95gca944blw8yga"; + rev = "v1.2.2"; + sha256 = "0dlszlshlxbmmfxj5hlwgv3r22x0y1af45gn1vd198nvvs3pnvfs"; }; } { - goPackagePath = "github.com/technosophos/moniker"; + goPackagePath = "github.com/technosophos/moniker"; fetch = { type = "git"; url = "https://github.com/technosophos/moniker"; - rev = "a5dbd03a2245d554160e3ae6bfdcf969fe58b431"; + rev = "a5dbd03a2245"; sha256 = "1z273gvbwr09lcxwd10wyvxmxjln93r952sr1w9hqxcgc1f8l3vl"; }; } { - goPackagePath = "golang.org/x/crypto"; + goPackagePath = "golang.org/x/crypto"; fetch = { type = "git"; url = "https://go.googlesource.com/crypto"; - rev = "49796115aa4b964c318aad4f3084fdb41e9aa067"; - sha256 = "0pcq2drkzsw585xi6rda8imd7a139prrmvgmv8nz0zgzk6g4dy59"; + rev = "0709b304e793"; + sha256 = "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c"; }; } { - goPackagePath = "golang.org/x/net"; + goPackagePath = "golang.org/x/lint"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/lint"; + rev = "c67002cb31c3"; + sha256 = "0gymbggskjmphqxqcx4s0vnlcz7mygbix0vhwcwv5r67c0bf6765"; + }; + } + { + goPackagePath = "golang.org/x/net"; fetch = { type = "git"; url = "https://go.googlesource.com/net"; - rev = "1c05540f6879653db88113bc4a2b70aec4bd491f"; - sha256 = "0h8yqb0vcqgllgydrf9d3rzp83w8wlr8f0nm6r1rwf2qg30pq1pd"; + rev = "65e2d4e15006"; + sha256 = "0aqcmh0sp723d6hwgrv7pnrs4crns2ngr4x43jd4v985cbn455x7"; }; } { - goPackagePath = "golang.org/x/oauth2"; + goPackagePath = "golang.org/x/oauth2"; fetch = { type = "git"; url = "https://go.googlesource.com/oauth2"; - rev = "a6bd8cefa1811bd24b86f8902872e4e8225f74c4"; - sha256 = "151in8qcf5y97ziavl6b03vgw4r87zqx5kg4vjhjszjbh60cfswp"; + rev = "d2e6202438be"; + sha256 = "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7"; }; } { - goPackagePath = "golang.org/x/sys"; + goPackagePath = "golang.org/x/sync"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sync"; + rev = "42b317875d0f"; + sha256 = "0mrjhk7al7yyh76x9flvxy4jm5jyqh2fxbxagpaazxn1xdgkaif3"; + }; + } + { + goPackagePath = "golang.org/x/sys"; fetch = { type = "git"; url = "https://go.googlesource.com/sys"; - rev = "43eea11bc92608addb41b8a406b0407495c106f6"; - sha256 = "0k9wy278f5753d130p8asva2g573vi6wviwkxwwnpxni118knq1l"; + rev = "b90733256f2e"; + sha256 = "1dsqa48ai4rrqf0sxypnmjg5c6sbp63mj5ljr7qadam06r5m2q98"; }; } { - goPackagePath = "golang.org/x/text"; + goPackagePath = "golang.org/x/text"; fetch = { type = "git"; url = "https://go.googlesource.com/text"; - rev = "b19bf474d317b857955b12035d2c5acb57ce8b01"; - sha256 = "0wc8csaafp0ps9jb2hdk8d6xpyw1axhk1np73h0z17x09zk3ylcr"; + rev = "v0.3.0"; + sha256 = "0r6x6zjzhr8ksqlpiwm5gdd7s209kwk5p4lw54xjvz10cs3qlq19"; }; } { - goPackagePath = "golang.org/x/time"; + goPackagePath = "golang.org/x/time"; fetch = { type = "git"; url = "https://go.googlesource.com/time"; - rev = "f51c12702a4d776e4c1fa9b0fabab841babae631"; + rev = "f51c12702a4d"; sha256 = "07wc6g2fvafkr6djsscm0jpbpl4135khhb6kpyx1953hi5d1jvyy"; }; } { - goPackagePath = "google.golang.org/appengine"; + goPackagePath = "golang.org/x/tools"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/tools"; + rev = "6cd1fcedba52"; + sha256 = "00hl0vkmy8impsnmc2dmm55sdhia95k0kqcrjbdpynryn1lamn5d"; + }; + } + { + goPackagePath = "google.golang.org/appengine"; fetch = { type = "git"; url = "https://github.com/golang/appengine"; - rev = "12d5545dc1cfa6047a286d5e853841b6471f4c19"; - sha256 = "1bv6cjakhi6j3s1bqb3n45qrmvf20qkhwxllvi94jag4i7hd91w8"; + rev = "v1.1.0"; + sha256 = "1pz202zszg8f35dk5pfhwgcdi3r6dx1l4yk6x6ly7nb4j45zi96x"; }; } { - goPackagePath = "google.golang.org/genproto"; + goPackagePath = "google.golang.org/genproto"; fetch = { type = "git"; url = "https://github.com/google/go-genproto"; - rev = "09f6ed296fc66555a25fe4ce95173148778dfa85"; - sha256 = "06x5wr7vjsnvv35rpv7jaklilksqbzsbqk8bxababw8vr6avfwki"; + rev = "c66870c02cf8"; + sha256 = "0siq7sv68556ygqi2d2zmvx8l1xjqdc0fylqzci5h1mq2i14bayn"; }; } { - goPackagePath = "google.golang.org/grpc"; + goPackagePath = "google.golang.org/grpc"; fetch = { type = "git"; url = "https://github.com/grpc/grpc-go"; - rev = "5ffe3083946d5603a0578721101dc8165b1d5b5f"; - sha256 = "1ij3sy49xfihwpcpiwd68mlfkrk375kdh6r6jlqka18zalxgpaan"; + rev = "v1.18.0"; + sha256 = "17drwyj3fi5sdz5ndlj7888b3gin6brs3jnh7gh6i15k97l6gf4n"; }; } { - goPackagePath = "gopkg.in/inf.v0"; + goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; fetch = { type = "git"; - url = "https://github.com/go-inf/inf"; - rev = "3887ee99ecf07df5b447e9b00d9c0b2adaa9f3e4"; + url = "https://gopkg.in/alecthomas/kingpin.v2"; + rev = "v2.2.6"; + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; + }; + } + { + goPackagePath = "gopkg.in/check.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/check.v1"; + rev = "20d25e280405"; + sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"; + }; + } + { + goPackagePath = "gopkg.in/gorp.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/gorp.v1"; + rev = "v1.7.2"; + sha256 = "0zwkq4cv71vp7cmpfcs54908g1amr0cdxv1b8h1icf64jjawb1lb"; + }; + } + { + goPackagePath = "gopkg.in/inf.v0"; + fetch = { + type = "git"; + url = "https://gopkg.in/inf.v0"; + rev = "v0.9.0"; sha256 = "0rf3vwyb8aqnac9x9d6ax7z5526c45a16yjm2pvkijr6qgqz8b82"; }; } { - goPackagePath = "gopkg.in/square/go-jose.v2"; + goPackagePath = "gopkg.in/square/go-jose.v2"; fetch = { type = "git"; - url = "https://github.com/square/go-jose"; - rev = "f8f38de21b4dcd69d0413faf231983f5fd6634b1"; - sha256 = "1bjrs3xq3m2ckfds0l4wqf81311ymm9agipmkllbvkadac156dsa"; + url = "https://gopkg.in/square/go-jose.v2"; + rev = "89060dee6a84"; + sha256 = "04ak01zs9qibr6qvc6l0zdjj9pgccpbvxz6rdwrqv698i1q3qfpd"; }; } { - goPackagePath = "gopkg.in/yaml.v2"; + goPackagePath = "gopkg.in/yaml.v2"; fetch = { type = "git"; - url = "https://github.com/go-yaml/yaml"; - rev = "670d4cfef0544295bc27a114dbac37980d83185a"; - sha256 = "182x97q4826cpzybkrl8icyx1n6l1z0kspmbz33fh901v10b6322"; + url = "https://gopkg.in/yaml.v2"; + rev = "v2.2.1"; + sha256 = "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1"; }; } { - goPackagePath = "k8s.io/api"; + goPackagePath = "honnef.co/go/tools"; + fetch = { + type = "git"; + url = "https://github.com/dominikh/go-tools"; + rev = "88497007e858"; + sha256 = "0rinkyx3r2bq45mgcasnn5jb07cwbv3p3s2wwcrzxsarsj6wa5lc"; + }; + } + { + goPackagePath = "k8s.io/api"; fetch = { type = "git"; url = "https://github.com/kubernetes/api"; - rev = "2d6f90ab1293a1fb871cf149423ebb72aa7423aa"; - sha256 = "1cwrwdm104xd3608b1a5mw6a19w45532p647xdwnyn62rw2f08jx"; + rev = "6e4e0e4f393b"; + sha256 = "0y7nxxywq2qx74a5vsg0h2jkfj879wbv6bjran12401fv0vsdlp1"; }; } { - goPackagePath = "k8s.io/apiextensions-apiserver"; + goPackagePath = "k8s.io/apiextensions-apiserver"; fetch = { type = "git"; url = "https://github.com/kubernetes/apiextensions-apiserver"; - rev = "898b0eda132e1aeac43a459785144ee4bf9b0a2e"; - sha256 = "1zn4i4wfmk3y36n6mqcidgsp4aqzwy5w9749zjl2bfbwzpk81bcp"; + rev = "727a075fdec8"; + sha256 = "1p8bdl299hrmkq2hfh7sqhsv7c3ig1i0jy8mcgq0hqjix94a87cj"; }; } { - goPackagePath = "k8s.io/apimachinery"; + goPackagePath = "k8s.io/apimachinery"; fetch = { type = "git"; url = "https://github.com/kubernetes/apimachinery"; - rev = "103fd098999dc9c0c88536f5c9ad2e5da39373ae"; - sha256 = "04navnpm59d75dhlz07rmay7m2izrf4m0i9xklxzqg7mlk9g20jc"; + rev = "6a84e37a896d"; + sha256 = "1ys06ixidvpcj9sgk0c2i5vsz11gg3h8xcpc9kqxfsik36cw1akk"; }; } { - goPackagePath = "k8s.io/apiserver"; + goPackagePath = "k8s.io/apiserver"; fetch = { type = "git"; url = "https://github.com/kubernetes/apiserver"; - rev = "8b122ec9e3bbab91a262d17a39325e69349dc44d"; - sha256 = "0qfxjypa10s16sll2a75kn2ddjddr2xsa5rsiaxar3gs5pqvq1h5"; + rev = "1ec86e4da56c"; + sha256 = "0my2r4ynbxgpbbrjgcrdrqazhhn2jwk8jkk8ymjks28gzs2i510s"; }; } { - goPackagePath = "k8s.io/client-go"; + goPackagePath = "k8s.io/cli-runtime"; + fetch = { + type = "git"; + url = "https://github.com/kubernetes/cli-runtime"; + rev = "d644b00f3b79"; + sha256 = "1zcmfpyp6m9xl8dia56yb00ixra3ag5d43v2f5zlnrwphq967a8p"; + }; + } + { + goPackagePath = "k8s.io/client-go"; fetch = { type = "git"; url = "https://github.com/kubernetes/client-go"; - rev = "59698c7d9724b0f95f9dc9e7f7dfdcc3dfeceb82"; - sha256 = "0f069d1msdb2x4yvwv0wa3hzanl97csg4hsp1pycxpnqck6qx6qh"; + rev = "1a26190bd76a"; + sha256 = "1b77zf0sip2cilkr40b2jm1kk71212s4clmbs2xl57b4n945yy1d"; }; } { - goPackagePath = "k8s.io/kube-openapi"; + goPackagePath = "k8s.io/cloud-provider"; + fetch = { + type = "git"; + url = "https://github.com/kubernetes/cloud-provider"; + rev = "9c9d72d1bf90"; + sha256 = "15iwal7nn1b7jwrvrhlzvdnf0381lccpw3jrlww8sfmxqsp860in"; + }; + } + { + goPackagePath = "k8s.io/klog"; + fetch = { + type = "git"; + url = "https://github.com/kubernetes/klog"; + rev = "8e90cee79f82"; + sha256 = "1hzy767dj0ya111al54k3g9xa40bsy7j81fi0sh7gyl1azw0h8dk"; + }; + } + { + goPackagePath = "k8s.io/kube-openapi"; fetch = { type = "git"; url = "https://github.com/kubernetes/kube-openapi"; - rev = "91cfa479c814065e420cee7ed227db0f63a5854e"; - sha256 = "0l9yvc7gfa8i4snpv1d13vy03dplzp2jh47rqr3fhiihcz2wx4s7"; + rev = "b3a7cee44a30"; + sha256 = "1ald0jjliln5ipdniwfcrm4yal9aa4jr07d3ljrhhh2fj72c6dsp"; }; } { - goPackagePath = "k8s.io/kubernetes"; + goPackagePath = "k8s.io/kubernetes"; fetch = { type = "git"; url = "https://github.com/kubernetes/kubernetes"; - rev = "2e809eed16445fff9dcbfc56e9936cf76ccbdadc"; - sha256 = "13fzcbjfc5c35gy66nbn1ms63b8bj3g8z7wja0p8dd3yj9lcj68h"; + rev = "v1.14.1"; + sha256 = "0s06x9jk9b6r0i39nl0bmvwjgdp3qikgfbw5cnzi5mv03hc2li8s"; }; } { - goPackagePath = "k8s.io/utils"; + goPackagePath = "k8s.io/utils"; fetch = { type = "git"; url = "https://github.com/kubernetes/utils"; - rev = "258e2a2fa64568210fbd6267cf1d8fd87c3cb86e"; - sha256 = "1mbw3q03sflrdgj6l7q3frqzb5f78n0m0gzjm228sy1wnm4c3760"; + rev = "c2654d5206da"; + sha256 = "1849p8xhiyk53mpg3mwpsmsm5ps5sa2p54bv7b38m415qxsn2d1x"; }; } { - goPackagePath = "vbom.ml/util"; + goPackagePath = "sigs.k8s.io/kustomize"; + fetch = { + type = "git"; + url = "https://github.com/kubernetes-sigs/kustomize"; + rev = "v2.0.3"; + sha256 = "1dfkpx9rllj1bzm5f52bx404kdds3zx1h38yqri9ha3p3pcb1bbb"; + }; + } + { + goPackagePath = "sigs.k8s.io/yaml"; + fetch = { + type = "git"; + url = "https://github.com/kubernetes-sigs/yaml"; + rev = "v1.1.0"; + sha256 = "1p7hvjdr5jsyk7nys1g1pmgnf3ys6n320i6hds85afppk81k01kb"; + }; + } + { + goPackagePath = "vbom.ml/util"; fetch = { type = "git"; url = "https://github.com/fvbommel/util"; - rev = "db5cfe13f5cc80a4990d98e2e1b0707a4d1a5394"; + rev = "db5cfe13f5cc"; sha256 = "1k9c3ihhkrcmhd26pwd62mp2ll7icr2q65i5pkymnfnhhv40p682"; }; } From c033dfd5b7b59546e5eac0c518d524f87558eafd Mon Sep 17 00:00:00 2001 From: Angus Gibson Date: Wed, 17 Jul 2019 17:52:01 +1000 Subject: [PATCH 0532/1611] nco: 4.5.5 -> 4.8.1 --- pkgs/development/libraries/nco/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/nco/default.nix b/pkgs/development/libraries/nco/default.nix index f801e25d91f..55e9f44eae3 100644 --- a/pkgs/development/libraries/nco/default.nix +++ b/pkgs/development/libraries/nco/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl }: +{ stdenv, fetchurl, netcdf, netcdfcxx4, gsl, udunits, antlr, which, curl, flex }: stdenv.mkDerivation rec { - version = "4.5.5"; + version = "4.8.1"; name = "nco-${version}"; - buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl ]; + buildInputs = [ netcdf netcdfcxx4 gsl udunits antlr which curl flex ]; src = fetchurl { url = "https://github.com/nco/nco/archive/${version}.tar.gz"; - sha256 = "bc6f5b976fdfbdec51f2ebefa158fa54672442c2fd5f042ba884f9f32c2ad666"; + sha256 = "0s1ww78p4cb2d9qkr4zs439x4xk3ndq6lv8ps677jrn28vnkzbnx"; }; - meta = { + meta = { description = "NetCDF Operator toolkit"; longDescription = "The NCO (netCDF Operator) toolkit manipulates and analyzes data stored in netCDF-accessible formats, including DAP, HDF4, and HDF5"; homepage = http://nco.sourceforge.net/; From 3a2c9891e786982fc990473e1ae9a2e3d7b7daa9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Tue, 16 Jul 2019 09:30:45 +0200 Subject: [PATCH 0533/1611] pythonPackages.thinc: 7.0.6 -> 7.0.8 Change: avoid allocating a negative shape for ngrams --- pkgs/development/python-modules/thinc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/thinc/default.nix b/pkgs/development/python-modules/thinc/default.nix index ebca1346dfb..ac8ab3fd864 100644 --- a/pkgs/development/python-modules/thinc/default.nix +++ b/pkgs/development/python-modules/thinc/default.nix @@ -28,11 +28,11 @@ buildPythonPackage rec { pname = "thinc"; - version = "7.0.6"; + version = "7.0.8"; src = fetchPypi { inherit pname version; - sha256 = "12d0766z7ksqpqrvldi46mx0z4zsbgncda4fpvxra1d6vbchf8ba"; + sha256 = "191admjvhqsbxpqn73q42i0i8kvlblj0k6p0z9p7n3pcxzl75nsw"; }; buildInputs = lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ From 4b334cf1d515052b937865f45137c3ed4a9a0285 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Tue, 16 Jul 2019 09:31:28 +0200 Subject: [PATCH 0534/1611] pythonPackages.spacy: 2.1.4 -> 2.1.6 Includes various improvements, including: - Improvements for various languages. - Evaluation metrics per entity type. - Pretraining improvements. Changelogs: https://github.com/explosion/spaCy/releases/tag/v2.1.5 https://github.com/explosion/spaCy/releases/tag/v2.1.6 Also add myself as a maintainer. --- pkgs/development/python-modules/spacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index 178be8bd86a..2a8e5a264cf 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -25,11 +25,11 @@ buildPythonPackage rec { pname = "spacy"; - version = "2.1.4"; + version = "2.1.6"; src = fetchPypi { inherit pname version; - sha256 = "03m4c59aaqpqr2x5yhv7y37z0vxhmmkfi6dv4cbp9nxsq9wv100d"; + sha256 = "1s0a0vir9lg5q8n832kkadbajb4i4zl20zmdg3g20qlp4mcbn25p"; }; prePatch = '' @@ -72,6 +72,6 @@ buildPythonPackage rec { description = "Industrial-strength Natural Language Processing (NLP) with Python and Cython"; homepage = https://github.com/explosion/spaCy; license = licenses.mit; - maintainers = with maintainers; [ sdll ]; + maintainers = with maintainers; [ danieldk sdll ]; }; } From 1346c4315810990efc28322b8c54850d0910dd34 Mon Sep 17 00:00:00 2001 From: Matt Melling Date: Tue, 16 Jul 2019 20:13:50 +0100 Subject: [PATCH 0535/1611] maintainers: add melling --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 1e4177563b8..c70cfe007d5 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5836,4 +5836,9 @@ github = "turboMaCk"; name = "Marek Fajkus"; }; + melling = { + email = "mattmelling@fastmail.com"; + github = "mattmelling"; + name = "Matt Melling"; + }; } From 6c9d4bc846819c5902bebc054f3328f59b3c9c30 Mon Sep 17 00:00:00 2001 From: Matt Melling Date: Tue, 16 Jul 2019 20:14:17 +0100 Subject: [PATCH 0536/1611] pythonPackages.mwparserfromhell: init at 0.5.4 --- .../mwparserfromhell/default.nix | 21 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/python-modules/mwparserfromhell/default.nix diff --git a/pkgs/development/python-modules/mwparserfromhell/default.nix b/pkgs/development/python-modules/mwparserfromhell/default.nix new file mode 100644 index 00000000000..e52e033cdb0 --- /dev/null +++ b/pkgs/development/python-modules/mwparserfromhell/default.nix @@ -0,0 +1,21 @@ +{ stdenv +, buildPythonPackage +, fetchPypi +}: + +buildPythonPackage rec { + pname = "mwparserfromhell"; + version = "0.5.4"; + + src = fetchPypi { + inherit pname version; + sha256 = "aaf5416ab9b75e99e286f8a4216f77a2f7d834afd4c8f81731e701e59bf99305"; + }; + + meta = with stdenv.lib; { + description = "MWParserFromHell is a parser for MediaWiki wikicode"; + homepage = "https://mwparserfromhell.readthedocs.io/en/latest/"; + license = licenses.mit; + maintainers = with maintainers; [ melling ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 00612cbab96..bdd57087254 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5929,6 +5929,8 @@ in { flickrapi = callPackage ../development/python-modules/flickrapi { }; aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { }; + + mwparserfromhell = callPackage ../development/python-modules/mwparserfromhell { }; }); in fix' (extends overrides packages) From cebcbc24c7e0a44cea55369197d103ac04fa9335 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 17:30:08 -0400 Subject: [PATCH 0537/1611] pythonPackages.datashape: refactor fix broken package --- pkgs/development/python-modules/datashape/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/datashape/default.nix b/pkgs/development/python-modules/datashape/default.nix index 63191aa224e..bb2e65125b7 100644 --- a/pkgs/development/python-modules/datashape/default.nix +++ b/pkgs/development/python-modules/datashape/default.nix @@ -34,7 +34,8 @@ in buildPythonPackage rec { # Disable several tests # https://github.com/blaze/datashape/issues/232 checkPhase = '' - py.test -k "not test_validate and not test_nested_iteratables and not test_validate_dicts and not test_tuples_can_be_records_too" datashape/tests + pytest --ignore datashape/tests/test_str.py \ + --ignore datashape/tests/test_user.py ''; meta = { @@ -42,7 +43,5 @@ in buildPythonPackage rec { description = "A data description language"; license = lib.licenses.bsd2; maintainers = with lib.maintainers; [ fridh ]; - # Package is no longer maintained upstream, and more and more tests are failing. - broken = true; }; -} \ No newline at end of file +} From 30169d9493a25c27fe507b7f2862b1582670905f Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 17:30:37 -0400 Subject: [PATCH 0538/1611] pythonPackages.datashader: init at 0.7.0 --- .../python-modules/datashader/default.nix | 85 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 87 insertions(+) create mode 100644 pkgs/development/python-modules/datashader/default.nix diff --git a/pkgs/development/python-modules/datashader/default.nix b/pkgs/development/python-modules/datashader/default.nix new file mode 100644 index 00000000000..8ce3012513c --- /dev/null +++ b/pkgs/development/python-modules/datashader/default.nix @@ -0,0 +1,85 @@ +{ lib +, buildPythonPackage +, fetchPypi +, dask +, distributed +, bokeh +, toolz +, datashape +, numba +, numpy +, pandas +, pillow +, xarray +, colorcet +, param +, pyct +, pyyaml +, requests +, scikitimage +, scipy +, pytest +, pytest-benchmark +, flake8 +, nbsmoke +, fastparquet +, testpath +, nbconvert +}: + +buildPythonPackage rec { + pname = "datashader"; + version = "0.7.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "5baf218713dc1ad4791f7bcf606ef8f618273945e788c59f9573aebd7cb851f8"; + }; + + propagatedBuildInputs = [ + dask + distributed + bokeh + toolz + datashape + numba + numpy + pandas + pillow + xarray + colorcet + param + pyct + pyyaml + requests + scikitimage + scipy + testpath + ]; + + checkInputs = [ + pytest + pytest-benchmark + flake8 + nbsmoke + fastparquet + pandas + nbconvert + ]; + + postConfigure = '' + substituteInPlace setup.py \ + --replace "'testpath<0.4'" "'testpath'" + ''; + + checkPhase = '' + pytest datashader + ''; + + meta = with lib; { + description = "Data visualization toolchain based on aggregating into a grid"; + homepage = https://datashader.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bdd57087254..3f6eca57479 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -484,6 +484,8 @@ in { datasette = callPackage ../development/python-modules/datasette { }; + datashader = callPackage ../development/python-modules/datashader { }; + dbf = callPackage ../development/python-modules/dbf { }; dbfread = callPackage ../development/python-modules/dbfread { }; From 029ef744a8f02c0cd0ad4e984990247082b59ffd Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 17:31:04 -0400 Subject: [PATCH 0539/1611] pythonPackages.colorcet: init at 2.0.1 --- .../python-modules/colorcet/default.nix | 43 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 45 insertions(+) create mode 100644 pkgs/development/python-modules/colorcet/default.nix diff --git a/pkgs/development/python-modules/colorcet/default.nix b/pkgs/development/python-modules/colorcet/default.nix new file mode 100644 index 00000000000..83095a6a562 --- /dev/null +++ b/pkgs/development/python-modules/colorcet/default.nix @@ -0,0 +1,43 @@ +{ lib +, buildPythonPackage +, fetchPypi +, param +, pyct +, nbsmoke +, flake8 +, pytest +, pytest-mpl +}: + +buildPythonPackage rec { + pname = "colorcet"; + version = "2.0.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "ab1d16aba97f54af190631c7777c356b04b53de549672ff6b01c66d716eddff3"; + }; + + propagatedBuildInputs = [ + param + pyct + ]; + + checkInputs = [ + nbsmoke + pytest + flake8 + pytest-mpl + ]; + + checkPhase = '' + pytest colorcet + ''; + + meta = with lib; { + description = "Collection of perceptually uniform colormaps"; + homepage = https://colorcet.pyviz.org; + license = licenses.cc-by-40; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3f6eca57479..5b3776da5c3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1471,6 +1471,8 @@ in { circus = callPackage ../development/python-modules/circus {}; + colorcet = callPackage ../development/python-modules/colorcet { }; + colorclass = callPackage ../development/python-modules/colorclass {}; colorlog = callPackage ../development/python-modules/colorlog { }; From 36dc1d4fe61ae09a8cfb06926a7afacf2844d244 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 17:31:28 -0400 Subject: [PATCH 0540/1611] pythonPackages.colorcet: init at 0.10 --- .../python-modules/colorcet/default.nix | 4 ++ .../python-modules/pytest-mpl/default.nix | 37 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 3 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-mpl/default.nix diff --git a/pkgs/development/python-modules/colorcet/default.nix b/pkgs/development/python-modules/colorcet/default.nix index 83095a6a562..6a7328aaf73 100644 --- a/pkgs/development/python-modules/colorcet/default.nix +++ b/pkgs/development/python-modules/colorcet/default.nix @@ -31,6 +31,10 @@ buildPythonPackage rec { ]; checkPhase = '' + export HOME=$(mktemp -d) + mkdir -p $HOME/.config/matplotlib + echo "backend: ps" > $HOME/.config/matplotlib/matplotlibrc + pytest colorcet ''; diff --git a/pkgs/development/python-modules/pytest-mpl/default.nix b/pkgs/development/python-modules/pytest-mpl/default.nix new file mode 100644 index 00000000000..c3bd4c59f04 --- /dev/null +++ b/pkgs/development/python-modules/pytest-mpl/default.nix @@ -0,0 +1,37 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, matplotlib +, nose +}: + +buildPythonPackage rec { + pname = "pytest-mpl"; + version = "0.10"; + + src = fetchPypi { + inherit pname version; + sha256 = "7006e63bf1ca9c50bea3d189c0f862751a16ce40bb373197b218f57af5b837c0"; + }; + + propagatedBuildInputs = [ + matplotlib + nose + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "pytest plugin to help with testing figures output from Matplotlib"; + homepage = https://github.com/matplotlib/pytest-mpl; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5b3776da5c3..dcefe43d0c9 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1917,6 +1917,8 @@ in { pytest-isort = callPackage ../development/python-modules/pytest-isort { }; + pytest-mpl = callPackage ../development/python-modules/pytest-mpl { }; + pytest-mock = callPackage ../development/python-modules/pytest-mock { }; pytest-timeout = callPackage ../development/python-modules/pytest-timeout { }; From 99f7b1498198863aed3134e48ae6a82d3b69c899 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 17:39:12 -0400 Subject: [PATCH 0541/1611] pythonPackages.stumpy: init at 1.0 --- .../python-modules/stumpy/default.nix | 55 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 57 insertions(+) create mode 100644 pkgs/development/python-modules/stumpy/default.nix diff --git a/pkgs/development/python-modules/stumpy/default.nix b/pkgs/development/python-modules/stumpy/default.nix new file mode 100644 index 00000000000..967e365dde0 --- /dev/null +++ b/pkgs/development/python-modules/stumpy/default.nix @@ -0,0 +1,55 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, numpy +, scipy +, numba +, pandas +, dask +, distributed +, coverage +, flake8 +, black +, pytest +, codecov +}: + +buildPythonPackage rec { + pname = "stumpy"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "TDAmeritrade"; + repo = "stumpy"; + rev = "115e477c1eec9291ab7c1fd8da30d67a70854f8e"; # no git version tag + sha256 = "0s2s3y855jjwdb7p55zx8lknplz58ghpw547yzmqisacr968b67w"; + }; + + propagatedBuildInputs = [ + numpy + scipy + numba + ]; + + checkInputs = [ + pandas + dask + distributed + coverage + flake8 + black + pytest + codecov + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "A powerful and scalable library that can be used for a variety of time series data mining tasks"; + homepage = https://github.com/TDAmeritrade/stumpy; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dcefe43d0c9..9b477c292ea 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1113,6 +1113,8 @@ in { statistics = callPackage ../development/python-modules/statistics { }; + stumpy = callPackage ../development/python-modules/stumpy { }; + sumo = callPackage ../development/python-modules/sumo { }; supervise_api = callPackage ../development/python-modules/supervise_api { }; From 1765a678fbfa8ed8ea0b4563ec872f500b9790e1 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 18:09:01 -0400 Subject: [PATCH 0542/1611] pythonPackages.clifford: init at 1.0.4 --- .../python-modules/clifford/default.nix | 50 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 52 insertions(+) create mode 100644 pkgs/development/python-modules/clifford/default.nix diff --git a/pkgs/development/python-modules/clifford/default.nix b/pkgs/development/python-modules/clifford/default.nix new file mode 100644 index 00000000000..ca95ebbf1f3 --- /dev/null +++ b/pkgs/development/python-modules/clifford/default.nix @@ -0,0 +1,50 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, scipy +, numba +, future +, h5py +, nose +, isPy27 +}: + +buildPythonPackage rec { + pname = "clifford"; + version = "1.0.4"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "7fc5aa76b4f73c697c0ebd2f86c5233e7ca0a5109b80147f4e711bc3de4b3f2c"; + }; + + propagatedBuildInputs = [ + numpy + scipy + numba + future + h5py + ]; + + checkInputs = [ + nose + ]; + + preConfigure = '' + substituteInPlace setup.py \ + --replace "'numba==0.43'" "'numba'" + ''; + + checkPhase = '' + nosetests + ''; + + meta = with lib; { + description = "Numerical Geometric Algebra Module"; + homepage = https://clifford.readthedocs.io; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9b477c292ea..19c90ed0d2f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -466,6 +466,8 @@ in { cliff = callPackage ../development/python-modules/cliff { }; + clifford = callPackage ../development/python-modules/clifford { }; + clustershell = callPackage ../development/python-modules/clustershell { }; cozy = callPackage ../development/python-modules/cozy { }; From ceaf12fd6e5b3b1a6feeb6b324b0d08c8ba5957b Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 18:19:35 -0400 Subject: [PATCH 0543/1611] pythonPackages.pygbm: init at 0.1.0 --- .../python-modules/pygbm/default.nix | 46 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/python-modules/pygbm/default.nix diff --git a/pkgs/development/python-modules/pygbm/default.nix b/pkgs/development/python-modules/pygbm/default.nix new file mode 100644 index 00000000000..6e4c70aaaf1 --- /dev/null +++ b/pkgs/development/python-modules/pygbm/default.nix @@ -0,0 +1,46 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, scipy +, numpy +, numba +, scikitlearn +, pytest +, pythonOlder +}: + +buildPythonPackage rec { + pname = "pygbm"; + version = "0.1.0"; + disabled = pythonOlder "3.6"; + + src = fetchFromGitHub { + owner = "ogrisel"; + repo = pname; + rev = "v${version}"; + sha256 = "1qg2md86d0z5aa6jn8kj3rxsippsqsccx1dbraspdsdkycncvww3"; + }; + + propagatedBuildInputs = [ + scipy + numpy + numba + scikitlearn + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + # numerical rounding error in test + pytest -k "not test_derivatives" + ''; + + meta = with lib; { + description = "Experimental Gradient Boosting Machines in Python"; + homepage = https://github.com/ogrisel/pygbm; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 19c90ed0d2f..53cc2e0001c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -856,6 +856,8 @@ in { pygame = callPackage ../development/python-modules/pygame { }; + pygbm = callPackage ../development/python-modules/pygbm { }; + pygame_sdl2 = callPackage ../development/python-modules/pygame_sdl2 { }; pygdbmi = callPackage ../development/python-modules/pygdbmi { }; From b965b4b7ae5ff873667d0689b725b4737287d6aa Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Sun, 14 Jul 2019 18:35:44 -0400 Subject: [PATCH 0544/1611] pythonPackages.yt: init at 3.5.1 --- .../development/python-modules/yt/default.nix | 52 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/development/python-modules/yt/default.nix diff --git a/pkgs/development/python-modules/yt/default.nix b/pkgs/development/python-modules/yt/default.nix new file mode 100644 index 00000000000..845fba749d6 --- /dev/null +++ b/pkgs/development/python-modules/yt/default.nix @@ -0,0 +1,52 @@ +{ lib +, buildPythonPackage +, fetchPypi +, matplotlib +, setuptools +, sympy +, numpy +, ipython +, hdf5 +, nose +, cython +, python +}: + +buildPythonPackage rec { + pname = "yt"; + version = "3.5.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "c8ef8eceb934dc189d63dc336109fad3002140a9a32b19f38d1812d5d5a30d71"; + }; + + buildInputs = [ + cython + ]; + + propagatedBuildInputs = [ + matplotlib + setuptools + sympy + numpy + ipython + hdf5 + ]; + + checkInputs = [ + nose + ]; + + checkPhase = '' + cd $out/${python.sitePackages} + HOME=$(mktemp -d) nosetests yt + ''; + + meta = with lib; { + description = "An analysis and visualization toolkit for volumetric data"; + homepage = https://github.com/yt-project/yt; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 53cc2e0001c..e6383723f68 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1172,6 +1172,8 @@ in { yarg = callPackage ../development/python-modules/yarg { }; + yt = callPackage ../development/python-modules/yt { }; + # packages defined here aafigure = callPackage ../development/python-modules/aafigure { }; From eceb53f082b094644686da402f6c5355b3a76e1d Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 10:40:16 -0400 Subject: [PATCH 0545/1611] pythonPackages.pydy: init at 0.5.0 --- .../python-modules/pydy/default.nix | 41 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/development/python-modules/pydy/default.nix diff --git a/pkgs/development/python-modules/pydy/default.nix b/pkgs/development/python-modules/pydy/default.nix new file mode 100644 index 00000000000..8bdb2affc53 --- /dev/null +++ b/pkgs/development/python-modules/pydy/default.nix @@ -0,0 +1,41 @@ +{ lib +, buildPythonPackage +, fetchPypi +, nose +, cython +, numpy +, scipy +, sympy +}: + +buildPythonPackage rec { + pname = "pydy"; + version = "0.5.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "1b487a62b55a8c8664009b09bf789254b2c942cd704a380bedb1057418c94fa2"; + }; + + checkInputs = [ + nose + cython + ]; + + propagatedBuildInputs = [ + numpy + scipy + sympy + ]; + + checkPhase = '' + nosetests + ''; + + meta = with lib; { + description = "Python tool kit for multi-body dynamics"; + homepage = http://pydy.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e6383723f68..d8d8b3b5488 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -844,6 +844,8 @@ in { pydocumentdb = callPackage ../development/python-modules/pydocumentdb { }; + pydy = callPackage ../development/python-modules/pydy { }; + pyexiv2 = disabledIf isPy3k (toPythonModule (callPackage ../development/python-modules/pyexiv2 {})); py3exiv2 = callPackage ../development/python-modules/py3exiv2 { }; From 5bf65feaaa0630a36fa8e7ae7b0dca56fa15d0d8 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:16:42 -0400 Subject: [PATCH 0546/1611] pythonPackages.pytest-doctestplus: init at 0.3.0 --- .../pytest-doctestplus/default.nix | 38 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-doctestplus/default.nix diff --git a/pkgs/development/python-modules/pytest-doctestplus/default.nix b/pkgs/development/python-modules/pytest-doctestplus/default.nix new file mode 100644 index 00000000000..a132fdd26f8 --- /dev/null +++ b/pkgs/development/python-modules/pytest-doctestplus/default.nix @@ -0,0 +1,38 @@ +{ lib +, buildPythonPackage +, fetchPypi +, six +, pytest +, numpy +}: + +buildPythonPackage rec { + pname = "pytest-doctestplus"; + version = "0.3.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "4e641bc720661c08ec3afe44a7951660cdff5e187259c433aa66e9ec2d5ccea1"; + }; + + propagatedBuildInputs = [ + six + numpy + pytest + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Pytest plugin with advanced doctest features"; + homepage = https://astropy.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d8d8b3b5488..f735c998ba2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1909,6 +1909,8 @@ in { pytest-django = callPackage ../development/python-modules/pytest-django { }; + pytest-doctestplus = callPackage ../development/python-modules/pytest-doctestplus { }; + pytest-faulthandler = callPackage ../development/python-modules/pytest-faulthandler { }; pytest-fixture-config = callPackage ../development/python-modules/pytest-fixture-config { }; From e175b841f8da301cf95bda92bab77b5af7f06fcf Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:21:59 -0400 Subject: [PATCH 0547/1611] pythonPackages.pytest-remotedata: init at 0.3.1 --- .../pytest-remotedata/default.nix | 37 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-remotedata/default.nix diff --git a/pkgs/development/python-modules/pytest-remotedata/default.nix b/pkgs/development/python-modules/pytest-remotedata/default.nix new file mode 100644 index 00000000000..2bf3a7f6cac --- /dev/null +++ b/pkgs/development/python-modules/pytest-remotedata/default.nix @@ -0,0 +1,37 @@ +{ lib +, buildPythonPackage +, fetchPypi +, six +, pytest +}: + +buildPythonPackage rec { + pname = "pytest-remotedata"; + version = "0.3.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "15b75a38431da96a4da5e48b20a18e4dcc40d191abc199b17cb969f818530481"; + }; + + propagatedBuildInputs = [ + six + pytest + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + # these tests require a network connection + pytest --ignore tests/test_strict_check.py + ''; + + meta = with lib; { + description = "Pytest plugin for controlling remote data access"; + homepage = https://astropy.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f735c998ba2..2cc7a3426bd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1921,6 +1921,8 @@ in { pytest-relaxed = callPackage ../development/python-modules/pytest-relaxed { }; + pytest-remotedata = callPackage ../development/python-modules/pytest-remotedata { }; + pytest-sanic = callPackage ../development/python-modules/pytest-sanic { }; pytest-flake8 = callPackage ../development/python-modules/pytest-flake8 { }; From 3291b8dadf32d94ec3b4520114ed35febd778b06 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:39:44 -0400 Subject: [PATCH 0548/1611] pythonPackages.pytest-openfiles: init at 0.3.2 --- .../pytest-openfiles/default.nix | 42 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-openfiles/default.nix diff --git a/pkgs/development/python-modules/pytest-openfiles/default.nix b/pkgs/development/python-modules/pytest-openfiles/default.nix new file mode 100644 index 00000000000..dbce114d7bf --- /dev/null +++ b/pkgs/development/python-modules/pytest-openfiles/default.nix @@ -0,0 +1,42 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, psutil +}: + +buildPythonPackage rec { + pname = "pytest-openfiles"; + version = "0.3.2"; + + src = fetchPypi { + inherit pname version; + sha256 = "e51c91889eb9e4c75f47735efc57a1435f3f1182463600ba7bce7f2556a46884"; + }; + + propagatedBuildInputs = [ + pytest + psutil + ]; + + checkInputs = [ + pytest + ]; + + postConfigure = '' + # remove on next release + substituteInPlace setup.cfg \ + --replace "[pytest]" "[tool:pytest]" + ''; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Pytest plugin for detecting inadvertent open file handles"; + homepage = https://astropy.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cc7a3426bd..e5288b5f8e0 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1935,6 +1935,8 @@ in { pytest-mock = callPackage ../development/python-modules/pytest-mock { }; + pytest-openfiles = callPackage ../development/python-modules/pytest-openfiles { }; + pytest-timeout = callPackage ../development/python-modules/pytest-timeout { }; pytest-warnings = callPackage ../development/python-modules/pytest-warnings { }; From 45ee5f6d28523695415c2bdedccd39e0e2601947 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:45:36 -0400 Subject: [PATCH 0549/1611] pythonPackages.pytest-arraydiff: init at 0.3 --- .../pytest-arraydiff/default.nix | 40 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-arraydiff/default.nix diff --git a/pkgs/development/python-modules/pytest-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix new file mode 100644 index 00000000000..4a59e22d136 --- /dev/null +++ b/pkgs/development/python-modules/pytest-arraydiff/default.nix @@ -0,0 +1,40 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, six +, pytest +, astropy +}: + +buildPythonPackage rec { + pname = "pytest-arraydiff"; + version = "0.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "de2d62f53ecc107ed754d70d562adfa7573677a263216a7f19aa332f20dc6c15"; + }; + + propagatedBuildInputs = [ + numpy + six + pytest + ]; + + checkInputs = [ + pytest + astropy + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Pytest plugin to help with comparing array output from tests"; + homepage = https://github.com/astrofrog/pytest-arraydiff; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e5288b5f8e0..26c5858cac1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1895,6 +1895,8 @@ in { pytest-aiohttp = callPackage ../development/python-modules/pytest-aiohttp { }; + pytest-arraydiff = callPackage ../development/python-modules/pytest-arraydiff { }; + pytest-benchmark = callPackage ../development/python-modules/pytest-benchmark { }; pytestcache = callPackage ../development/python-modules/pytestcache { }; From 1832c1c52e30964ad29ab858e6c68111bce87b35 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:47:58 -0400 Subject: [PATCH 0550/1611] pythonPackages.pytest-astropy: init at 0.5.0 --- .../python-modules/pytest-astropy/default.nix | 37 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-astropy/default.nix diff --git a/pkgs/development/python-modules/pytest-astropy/default.nix b/pkgs/development/python-modules/pytest-astropy/default.nix new file mode 100644 index 00000000000..272b1fa56b9 --- /dev/null +++ b/pkgs/development/python-modules/pytest-astropy/default.nix @@ -0,0 +1,37 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest +, pytest-doctestplus +, pytest-remotedata +, pytest-openfiles +, pytest-arraydiff +}: + +buildPythonPackage rec { + pname = "pytest-astropy"; + version = "0.5.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "6f28fb81dcdfa745f423b8f6d0303d97357d775b4128bcc2b3668f1602fd5a0b"; + }; + + propagatedBuildInputs = [ + pytest + pytest-doctestplus + pytest-remotedata + pytest-openfiles + pytest-arraydiff + ]; + + # pytest-astropy is a meta package and has no tests + doCheck = false; + + meta = with lib; { + description = "Meta-package containing dependencies for testing"; + homepage = https://astropy.org; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 26c5858cac1..9e2c25be014 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1897,6 +1897,8 @@ in { pytest-arraydiff = callPackage ../development/python-modules/pytest-arraydiff { }; + pytest-astropy = callPackage ../development/python-modules/pytest-astropy { }; + pytest-benchmark = callPackage ../development/python-modules/pytest-benchmark { }; pytestcache = callPackage ../development/python-modules/pytestcache { }; From 7e929898d7c3ed6c274da84833c1aa593987af5b Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 11:56:28 -0400 Subject: [PATCH 0551/1611] pythonPackages.pytest-socket: init at 0.3.3 --- .../python-modules/pytest-socket/default.nix | 40 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/python-modules/pytest-socket/default.nix diff --git a/pkgs/development/python-modules/pytest-socket/default.nix b/pkgs/development/python-modules/pytest-socket/default.nix new file mode 100644 index 00000000000..a28970a8ec4 --- /dev/null +++ b/pkgs/development/python-modules/pytest-socket/default.nix @@ -0,0 +1,40 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, pytest +}: + +buildPythonPackage rec { + pname = "pytest-socket"; + version = "0.3.3"; + + src = fetchFromGitHub { + owner = "miketheman"; + repo = pname; + rev = version; + sha256 = "1jbzkyp4xki81h01yl4vg3nrg9b6shsk1ryrmkaslffyhrqnj8zh"; + }; + + propagatedBuildInputs = [ + pytest + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + # unsurprisingly pytest-socket require network for majority of tests + # to pass... + doCheck = false; + + meta = with lib; { + description = "Pytest Plugin to disable socket calls during tests"; + homepage = https://github.com/miketheman/pytest-socket; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 9e2c25be014..623d84730e1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1965,6 +1965,8 @@ in { pytest-shutil = callPackage ../development/python-modules/pytest-shutil { }; + pytest-socket = callPackage ../development/python-modules/pytest-socket { }; + pytestcov = callPackage ../development/python-modules/pytest-cov { }; pytest-expect = callPackage ../development/python-modules/pytest-expect { }; From 7523cd4f8937916ad75977116e6826462fb0f1fd Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 12:05:05 -0400 Subject: [PATCH 0552/1611] pythonPackages.trustme: refactor add idna as dependency needed downstream --- .../python-modules/trustme/default.nix | 29 +++++++++++++++---- 1 file changed, 23 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/trustme/default.nix b/pkgs/development/python-modules/trustme/default.nix index 6daa99aca6a..e2ba008d3a0 100644 --- a/pkgs/development/python-modules/trustme/default.nix +++ b/pkgs/development/python-modules/trustme/default.nix @@ -1,4 +1,14 @@ -{ lib, buildPythonPackage, fetchPypi, isPy3k, cryptography, futures, pytest, pyopenssl, service-identity }: +{ lib +, buildPythonPackage +, fetchPypi +, isPy3k +, cryptography +, futures +, pytest +, pyopenssl +, service-identity +, idna +}: buildPythonPackage rec { pname = "trustme"; @@ -9,18 +19,25 @@ buildPythonPackage rec { sha256 = "103f8n0c60593r0z8hh1zvk1bagxwnhrv3203xpiiddwqxalr04b"; }; - checkInputs = [ pytest pyopenssl service-identity ]; - checkPhase = '' - py.test - ''; + checkInputs = [ + pytest + pyopenssl + service-identity + ]; + propagatedBuildInputs = [ cryptography + idna ] ++ lib.optionals (!isPy3k) [ futures ]; + checkPhase = '' + pytest + ''; + meta = { - description = "#1 quality TLS certs while you wait, for the discerning tester"; + description = "High quality TLS certs while you wait, for the discerning tester"; homepage = https://github.com/python-trio/trustme; license = with lib.licenses; [ mit asl20 ]; maintainers = with lib.maintainers; [ catern ]; From ad4bbe8684ea74d334b232227f93fb11ac57fa6e Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 12:12:56 -0400 Subject: [PATCH 0553/1611] pythonPackages.aioftp: init at 0.13.0 --- .../python-modules/aioftp/default.nix | 40 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/python-modules/aioftp/default.nix diff --git a/pkgs/development/python-modules/aioftp/default.nix b/pkgs/development/python-modules/aioftp/default.nix new file mode 100644 index 00000000000..1d2b32a73b9 --- /dev/null +++ b/pkgs/development/python-modules/aioftp/default.nix @@ -0,0 +1,40 @@ +{ lib +, buildPythonPackage +, fetchPypi +, isPy27 +, pytest +, pytest-asyncio +, pytestcov +, trustme +, async-timeout +}: + +buildPythonPackage rec { + pname = "aioftp"; + version = "0.13.0"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "5711c03433b510c101e9337069033133cca19b508b5162b414bed24320de6c18"; + }; + + checkInputs = [ + pytest + pytest-asyncio + pytestcov + trustme + async-timeout + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Ftp client/server for asyncio"; + homepage = https://github.com/aio-libs/aioftp; + license = licenses.asl20; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 623d84730e1..61817522a1c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1206,6 +1206,8 @@ in { aioh2 = callPackage ../development/python-modules/aioh2 { }; + aioftp = callPackage ../development/python-modules/aioftp { }; + aiohttp = callPackage ../development/python-modules/aiohttp { }; aiohttp-cors = callPackage ../development/python-modules/aiohttp-cors { }; From bd82932de371510d4d11910ba4549e4e3b134a61 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 12:15:26 -0400 Subject: [PATCH 0554/1611] pythonPackages.parfive: init at 1.0.0 --- .../python-modules/parfive/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/python-modules/parfive/default.nix diff --git a/pkgs/development/python-modules/parfive/default.nix b/pkgs/development/python-modules/parfive/default.nix new file mode 100644 index 00000000000..26a3a613be4 --- /dev/null +++ b/pkgs/development/python-modules/parfive/default.nix @@ -0,0 +1,51 @@ +{ lib +, buildPythonPackage +, fetchPypi +, tqdm +, aiohttp +, pytest +, setuptools_scm +, pytest-localserver +, pytest-socket +, pytest-asyncio +, aioftp +}: + +buildPythonPackage rec { + pname = "parfive"; + version = "1.0.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "15dc8466922c8fb1f814d3f7c3f3656191ac17b38fd7cc3350b9bf726e144ebb"; + }; + + buildInputs = [ + setuptools_scm + ]; + + propagatedBuildInputs = [ + tqdm + aiohttp + aioftp + ]; + + checkInputs = [ + pytest + pytest-localserver + pytest-socket + pytest-asyncio + ]; + + checkPhase = '' + # these two tests require network connection + pytest parfive -k "not test_ftp and not test_ftp_http" + ''; + + meta = with lib; { + description = "A HTTP and FTP parallel file downloader"; + homepage = https://parfive.readthedocs.io/; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 61817522a1c..54c6d8bb439 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3929,6 +3929,8 @@ in { paramz = callPackage ../development/python-modules/paramz { }; + parfive = callPackage ../development/python-modules/parfive { }; + parsel = callPackage ../development/python-modules/parsel { }; parso = callPackage ../development/python-modules/parso { }; From 504134a4a034b52f7f95d30f278ceeea900efc44 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 12:17:51 -0400 Subject: [PATCH 0555/1611] pythonPackages.asdf: init at 2.3.3 --- .../python-modules/asdf/default.nix | 47 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 49 insertions(+) create mode 100644 pkgs/development/python-modules/asdf/default.nix diff --git a/pkgs/development/python-modules/asdf/default.nix b/pkgs/development/python-modules/asdf/default.nix new file mode 100644 index 00000000000..8efc251140a --- /dev/null +++ b/pkgs/development/python-modules/asdf/default.nix @@ -0,0 +1,47 @@ +{ lib +, buildPythonPackage +, fetchPypi +, pytest-astropy +, semantic-version +, pyyaml +, jsonschema +, six +, numpy +, isPy27 +, astropy +}: + +buildPythonPackage rec { + pname = "asdf"; + version = "2.3.3"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "d02e936a83abd206e7bc65050d94e8848da648344dbec9e49dddc2bdc3bd6870"; + }; + + checkInputs = [ + pytest-astropy + astropy + ]; + + propagatedBuildInputs = [ + semantic-version + pyyaml + jsonschema + six + numpy + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "Python tools to handle ASDF files"; + homepage = https://github.com/spacetelescope/asdf; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 54c6d8bb439..d9acf2bec2f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -175,6 +175,8 @@ in { asana = callPackage ../development/python-modules/asana { }; + asdf = callPackage ../development/python-modules/asdf { }; + asciimatics = callPackage ../development/python-modules/asciimatics { }; asciitree = callPackage ../development/python-modules/asciitree { }; From ccdd0930644a8db65d121cb95b3da73c72e6f08a Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 13:03:37 -0400 Subject: [PATCH 0556/1611] pythonPackages.glymur: init at 0.8.18 --- .../python-modules/glymur/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/python-modules/glymur/default.nix diff --git a/pkgs/development/python-modules/glymur/default.nix b/pkgs/development/python-modules/glymur/default.nix new file mode 100644 index 00000000000..3da367c445f --- /dev/null +++ b/pkgs/development/python-modules/glymur/default.nix @@ -0,0 +1,51 @@ +{ stdenv +, buildPythonPackage +, fetchFromGitHub +, numpy +, setuptools +, python +, scikitimage +, openjpeg +, procps +, contextlib2 +, mock +, importlib-resources +, isPy27 +}: + +buildPythonPackage rec { + pname = "glymur"; + version = "0.8.18"; + + src = fetchFromGitHub { + owner = "quintusdias"; + repo = pname; + rev = "v${version}"; + sha256 = "1zbghzw1q4fljb019lsrhka9xrnn4425qnxrjbmbv7dssgkkywd7"; + }; + + propagatedBuildInputs = [ + numpy + ] ++ stdenv.lib.optional isPy27 [ contextlib2 mock importlib-resources ]; + + checkInputs = [ + scikitimage + procps + ]; + + postConfigure = '' + substituteInPlace glymur/config.py \ + --replace "path = read_config_file(libname)" "path = '${openjpeg}/lib' + libname + ${if stdenv.isDarwin then "'.dylib'" else "'.so'"}" + ''; + + checkPhase = '' + ${python.interpreter} -m unittest discover + ''; + + meta = with stdenv.lib; { + description = "Tools for accessing JPEG2000 files"; + homepage = https://github.com/quintusdias/glymur; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d9acf2bec2f..cae06c67d13 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -582,6 +582,8 @@ in { globus-sdk = callPackage ../development/python-modules/globus-sdk { }; + glymur = callPackage ../development/python-modules/glymur { }; + glom = callPackage ../development/python-modules/glom { }; goocalendar = callPackage ../development/python-modules/goocalendar { }; From daf811fa6d19d1cba144d92455e4a33805680e82 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 13:07:47 -0400 Subject: [PATCH 0557/1611] pythonPackages.drms: init at 0.5.6 --- .../python-modules/drms/default.nix | 40 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 42 insertions(+) create mode 100644 pkgs/development/python-modules/drms/default.nix diff --git a/pkgs/development/python-modules/drms/default.nix b/pkgs/development/python-modules/drms/default.nix new file mode 100644 index 00000000000..4d322695ebf --- /dev/null +++ b/pkgs/development/python-modules/drms/default.nix @@ -0,0 +1,40 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, pandas +, six +, pytest +, python +}: + +buildPythonPackage rec { + pname = "drms"; + version = "0.5.6"; + + src = fetchPypi { + inherit pname version; + sha256 = "95cac0e14532893a44eeab8e329ddb76150e6848153d8cb1e4e08ba55569e6af"; + }; + + propagatedBuildInputs = [ + numpy + pandas + six + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + ${python.interpreter} -m drms.tests + ''; + + meta = with lib; { + description = "Access HMI, AIA and MDI data with Python"; + homepage = https://github.com/sunpy/drms; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cae06c67d13..30058901ed1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2123,6 +2123,8 @@ in { dropbox = callPackage ../development/python-modules/dropbox {}; + drms = callPackage ../development/python-modules/drms { }; + ds4drv = callPackage ../development/python-modules/ds4drv { inherit (pkgs) fetchFromGitHub bluez; }; From 85e027d914875e4b963639f58d73770040345d5b Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 13:47:36 -0400 Subject: [PATCH 0558/1611] pythonPackages.pytest_3: refactor fix broken build of old package --- pkgs/development/python-modules/pytest/3.10.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest/3.10.nix b/pkgs/development/python-modules/pytest/3.10.nix index f24cab8af1c..2b4dd41bc2e 100644 --- a/pkgs/development/python-modules/pytest/3.10.nix +++ b/pkgs/development/python-modules/pytest/3.10.nix @@ -24,7 +24,7 @@ buildPythonPackage rec { checkPhase = '' runHook preCheck - $out/bin/py.test -x testing/ -k "not test_raises_exception_looks_iterable" + $out/bin/py.test -x testing/ -k "not test_raises_exception_looks_iterable" --ignore testing/test_assertion.py --ignore testing/test_config.py runHook postCheck ''; From 52840a2557eb6f44e045039b72d1deae5940fbb0 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Mon, 15 Jul 2019 13:48:07 -0400 Subject: [PATCH 0559/1611] pythonPackages.sunpy: init at 1.0.2 --- .../python-modules/sunpy/default.nix | 80 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 82 insertions(+) create mode 100644 pkgs/development/python-modules/sunpy/default.nix diff --git a/pkgs/development/python-modules/sunpy/default.nix b/pkgs/development/python-modules/sunpy/default.nix new file mode 100644 index 00000000000..252eafec465 --- /dev/null +++ b/pkgs/development/python-modules/sunpy/default.nix @@ -0,0 +1,80 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, numpy +, scipy +, matplotlib +, pandas +, astropy +, parfive +, pythonOlder +, sqlalchemy +, scikitimage +, glymur +, beautifulsoup4 +, drms +, python-dateutil +, zeep +, tqdm +, asdf +, astropy-helpers +, hypothesis +, pytest-astropy +, pytestcov +, pytest-mock +}: + +buildPythonPackage rec { + pname = "sunpy"; + version = "1.0.2"; + disabled = pythonOlder "3.6"; + + src = fetchFromGitHub { + owner = "sunpy"; + repo = pname; + rev = "v${version}"; + sha256 = "0dmfzxxsjjax9wf2ljyl4z07pxbshrj828zi5qnsa9rgk4148q9x"; + }; + + propagatedBuildInputs = [ + numpy + scipy + matplotlib + pandas + astropy + astropy-helpers + parfive + sqlalchemy + scikitimage + glymur + beautifulsoup4 + drms + python-dateutil + zeep + tqdm + asdf + ]; + + checkInputs = [ + hypothesis + pytest-astropy + pytestcov + pytest-mock + ]; + + preBuild = '' + export SETUPTOOLS_SCM_PRETEND_VERSION="${version}" + export HOME=$(mktemp -d) + ''; + + checkPhase = '' + pytest sunpy -k "not test_rotation" + ''; + + meta = with lib; { + description = "SunPy: Python for Solar Physics"; + homepage = https://sunpy.org; + license = licenses.bsd2; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 30058901ed1..cc034d701c4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2613,6 +2613,8 @@ in { subliminal = callPackage ../development/python-modules/subliminal {}; + sunpy = callPackage ../development/python-modules/sunpy { }; + hyperlink = callPackage ../development/python-modules/hyperlink {}; zope_copy = callPackage ../development/python-modules/zope_copy {}; From 28f1c7765d79c80a7d680db4eeaed4e189eafa0f Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 07:57:16 -0400 Subject: [PATCH 0560/1611] pythonPackages.modeled: init at 0.1.8 --- .../python-modules/modeled/default.nix | 45 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/python-modules/modeled/default.nix diff --git a/pkgs/development/python-modules/modeled/default.nix b/pkgs/development/python-modules/modeled/default.nix new file mode 100644 index 00000000000..298c69194f2 --- /dev/null +++ b/pkgs/development/python-modules/modeled/default.nix @@ -0,0 +1,45 @@ +{ lib +, buildPythonPackage +, fetchPypi +, zetup +, six +, moretools +, pathpy +, pytest +}: + +buildPythonPackage rec { + pname = "modeled"; + version = "0.1.8"; + + src = fetchPypi { + extension = "zip"; + inherit pname version; + sha256 = "64934c68cfcdb75ed4a1ccadcfd5d2a46bf1b8e8e81dde89ef0f042c401e94f1"; + }; + + buildInputs = [ + zetup + ]; + + propagatedBuildInputs = [ + six + moretools + pathpy + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest test + ''; + + meta = with lib; { + description = "Universal data modeling for Python"; + homepage = https://bitbucket.org/userzimmermann/python-modeled; + license = licenses.lgpl3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cc034d701c4..cc08960544c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3620,6 +3620,8 @@ in { mockito = callPackage ../development/python-modules/mockito { }; + modeled = callPackage ../development/python-modules/modeled { }; + moderngl = callPackage ../development/python-modules/moderngl { }; modestmaps = callPackage ../development/python-modules/modestmaps { }; From bdd84a0257eb4f154229fbe55600554485dc1e8a Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 07:58:23 -0400 Subject: [PATCH 0561/1611] pythonPackages.zetup: refactor fix broken --- pkgs/development/python-modules/zetup/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/zetup/default.nix b/pkgs/development/python-modules/zetup/default.nix index 89e9e969140..ee9270f3596 100644 --- a/pkgs/development/python-modules/zetup/default.nix +++ b/pkgs/development/python-modules/zetup/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { ''; checkPhase = '' - py.test test + py.test test -k "not TestObject" ''; checkInputs = [ pytest_3 pathpy nbconvert ]; From 2c08f7daddf2528c1753de4ff8ce502ce00f825e Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 07:59:05 -0400 Subject: [PATCH 0562/1611] pythonPackages.robotframework-tools: 0.1a114 -> 0.1rc4 --- .../robotframework-tools/default.nix | 29 +++++++++++++++---- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/robotframework-tools/default.nix b/pkgs/development/python-modules/robotframework-tools/default.nix index be8b0b9454d..97bc9de0bf7 100644 --- a/pkgs/development/python-modules/robotframework-tools/default.nix +++ b/pkgs/development/python-modules/robotframework-tools/default.nix @@ -7,25 +7,44 @@ , pathpy , six , zetup +, modeled +, pytest }: buildPythonPackage rec { - version = "0.1a115"; + version = "0.1rc4"; pname = "robotframework-tools"; src = fetchPypi { inherit pname version; - sha256 = "04gkn1zpf3rsvbqdxrrjqqi8sa0md9gqwh6n5w2m03fdwjg4lc7q"; + sha256 = "0377ikajf6c3zcy3lc0kh4w9zmlqyplk2c2hb0yyc7h3jnfnya96"; }; - nativeBuildInputs = [ zetup ]; + nativeBuildInputs = [ + zetup + ]; - propagatedBuildInputs = [ robotframework moretools pathpy six ]; + propagatedBuildInputs = [ + robotframework + moretools + pathpy + six + modeled + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + # tests require network + pytest test --ignore test/remote/test_remote.py + ''; meta = with stdenv.lib; { description = "Python Tools for Robot Framework and Test Libraries"; homepage = https://bitbucket.org/userzimmermann/robotframework-tools; license = licenses.gpl3; - broken = isPy3k; # 2019-03-15, missing dependency robotframework-python3 + maintainers = [ maintainers.costrouc ]; }; } From 124d108d7d81aeb18053bc0315182e7889ee7148 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 08:00:08 -0400 Subject: [PATCH 0563/1611] pythonPackages.pytest-mpl: refactor fix broken python 2 test --- pkgs/development/python-modules/pytest-mpl/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-mpl/default.nix b/pkgs/development/python-modules/pytest-mpl/default.nix index c3bd4c59f04..0baaa9c5dfc 100644 --- a/pkgs/development/python-modules/pytest-mpl/default.nix +++ b/pkgs/development/python-modules/pytest-mpl/default.nix @@ -25,11 +25,15 @@ buildPythonPackage rec { ]; checkPhase = '' + export HOME=$(mktemp -d) + mkdir -p $HOME/.config/matplotlib + echo "backend: ps" > $HOME/.config/matplotlib/matplotlibrc + pytest ''; meta = with lib; { - description = "pytest plugin to help with testing figures output from Matplotlib"; + description = "Pytest plugin to help with testing figures output from Matplotlib"; homepage = https://github.com/matplotlib/pytest-mpl; license = licenses.bsd3; maintainers = [ maintainers.costrouc ]; From a1fd2125365aee6eeb8c363f59189ac0590e62ec Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 08:00:36 -0400 Subject: [PATCH 0564/1611] pythonPackages.odo: refactor 0.5.1 -> unstable-2019-07-16 --- .../python-modules/odo/default.nix | 46 ++++++++++++------- 1 file changed, 30 insertions(+), 16 deletions(-) diff --git a/pkgs/development/python-modules/odo/default.nix b/pkgs/development/python-modules/odo/default.nix index f18420b676b..6e82119faa5 100644 --- a/pkgs/development/python-modules/odo/default.nix +++ b/pkgs/development/python-modules/odo/default.nix @@ -13,32 +13,46 @@ buildPythonPackage rec { pname = "odo"; - version= "0.5.1"; - + version= "unstable-2019-07-16"; src = fetchFromGitHub { owner = "blaze"; repo = pname; - rev = version; - sha256 = "142f4jvaqjn0dq6rvlk7d7mzcmc255a9z4nxc1b3a862hp4gvijs"; + rev = "9fce6690b3666160681833540de6c55e922de5eb"; + sha256 = "0givkd5agr05wrf72fbghdaav6gplx7c069ngs1ip385v72ifsl9"; }; - checkInputs = [ pytest dask ]; - propagatedBuildInputs = [ datashape numpy pandas toolz multipledispatch networkx ]; + checkInputs = [ + pytest + dask + ]; - # Disable failing tests - # https://github.com/blaze/odo/issues/609 - checkPhase = '' - py.test -k "not test_numpy_asserts_type_after_dataframe" odo/tests + propagatedBuildInputs = [ + datashape + numpy + pandas + toolz + multipledispatch + networkx + ]; + + postConfigure = '' + substituteInPlace setup.py \ + --replace "versioneer.get_version()" "'0.5.1'" ''; - meta = { + # disable 6/315 tests + checkPhase = '' + pytest odo -k "not test_insert_to_ooc \ + and not test_datetime_index \ + and not test_different_encoding \ + and not test_numpy_asserts_type_after_dataframe" + ''; + + meta = with lib; { homepage = https://github.com/ContinuumIO/odo; description = "Data migration utilities"; - license = lib.licenses.bsdOriginal; - maintainers = with lib.maintainers; [ fridh ]; - # incomaptible with Networkx 2 - # see https://github.com/blaze/odo/pull/601 - broken = true; + license = licenses.bsdOriginal; + maintainers = with maintainers; [ fridh costrouc ]; }; } From a0fae1b615d2e53a90b64cba88dcf091b72b2d65 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 08:01:31 -0400 Subject: [PATCH 0565/1611] pythonPackages.decorator: 4.3.2 -> 4.4.0 --- pkgs/development/python-modules/decorator/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/decorator/default.nix b/pkgs/development/python-modules/decorator/default.nix index f4395245a81..b8c784023c2 100644 --- a/pkgs/development/python-modules/decorator/default.nix +++ b/pkgs/development/python-modules/decorator/default.nix @@ -5,16 +5,17 @@ buildPythonPackage rec { pname = "decorator"; - version = "4.3.2"; + version = "4.4.0"; src = fetchPypi { inherit pname version; - sha256 = "33cd704aea07b4c28b3eb2c97d288a06918275dac0ecebdaf1bc8a48d98adb9e"; + sha256 = "1pi54wqj2p6ka13x7q8d5zgqg9bcf7m5d00l7x5bi204qmhn65c6"; }; - meta = { + meta = with lib; { homepage = https://pypi.python.org/pypi/decorator; description = "Better living through Python with decorators"; license = lib.licenses.mit; + maintainers = [ maintainers.costrouc ]; }; -} \ No newline at end of file +} From 0f5e19cc2bcc382db1be8011a299fca7bf1e281e Mon Sep 17 00:00:00 2001 From: Vladyslav Burzakovskyy Date: Tue, 9 Jul 2019 15:43:17 +0200 Subject: [PATCH 0566/1611] pythonPackages.isoweek: init at 1.3.3 --- .../python-modules/isoweek/default.nix | 19 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/development/python-modules/isoweek/default.nix diff --git a/pkgs/development/python-modules/isoweek/default.nix b/pkgs/development/python-modules/isoweek/default.nix new file mode 100644 index 00000000000..65de70b20b5 --- /dev/null +++ b/pkgs/development/python-modules/isoweek/default.nix @@ -0,0 +1,19 @@ +{ lib, fetchPypi, buildPythonPackage }: + +buildPythonPackage rec { + pname = "isoweek"; + version = "1.3.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "1s7zsf0pab0l9gn6456qadnz5i5h90hafcjwnhx5mq23qjxggwvk"; + }; + + meta = with lib; { + description = "The module provide the class Week. Instances represent specific weeks spanning Monday to Sunday."; + homepage = "https://github.com/gisle/isoweek"; + license = licenses.bsd2; + maintainers = with maintainers; [ mrmebelman ]; + }; +} + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index cc08960544c..43d76a7fa4e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3320,6 +3320,8 @@ in { isort = callPackage ../development/python-modules/isort {}; + isoweek = callPackage ../development/python-modules/isoweek {}; + jabberbot = callPackage ../development/python-modules/jabberbot {}; jedi = callPackage ../development/python-modules/jedi { }; From d4e5748c1b919718e51cb03d6958cf06ce5d5308 Mon Sep 17 00:00:00 2001 From: Jamey Sharp Date: Sat, 6 Jul 2019 09:29:58 -0700 Subject: [PATCH 0567/1611] nixos/openldap: fix assertion In commit d43dc68db3f414a527cad632a3f1fb868fc1c902, @Mic92 split the rootpw option to allow specifying it in a file kept outside the Nix store, as an alternative to specifying the password directly in the config. Prior to that, rootpw's type was `str`, but in order to allow both alternatives, it had to become `nullOr str` with a default of `null`. So I can see why this assertion, that either rootpw or rootpwFile are specified, makes sense to add here. However, these options aren't used if the configDir option is set, so as written this assertion breaks valid configurations, including the configuration used by nixos/tests/ldap.nix. So this patch fixes the assertion so that it doesn't fire if configDir is set. --- nixos/modules/services/databases/openldap.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index c2f458c0379..d8e2c715afb 100644 --- a/nixos/modules/services/databases/openldap.nix +++ b/nixos/modules/services/databases/openldap.nix @@ -237,8 +237,8 @@ in config = mkIf cfg.enable { assertions = [ { - assertion = cfg.rootpwFile != null || cfg.rootpw != null; - message = "Either services.openldap.rootpw or services.openldap.rootpwFile must be set"; + assertion = cfg.configDir != null || cfg.rootpwFile != null || cfg.rootpw != null; + message = "services.openldap: Unless configDir is set, either rootpw or rootpwFile must be set"; } ]; From 7c355b6a6df7ccf13f75ed14d3221a950ed05706 Mon Sep 17 00:00:00 2001 From: Taito Horiuchi Date: Fri, 28 Jun 2019 12:27:43 +0300 Subject: [PATCH 0568/1611] pythonPackages.robotframework: 3.0.4 -> 3.1.2 pythonPackages.robotframework: source file is zip formated --- pkgs/development/python-modules/robotframework/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/robotframework/default.nix b/pkgs/development/python-modules/robotframework/default.nix index 6d19feed3fb..09d98c91203 100644 --- a/pkgs/development/python-modules/robotframework/default.nix +++ b/pkgs/development/python-modules/robotframework/default.nix @@ -2,11 +2,12 @@ buildPythonPackage rec { pname = "robotframework"; - version = "3.0.4"; + version = "3.1.2"; src = fetchPypi { inherit pname version; - sha256 = "ab94257cbd848dfca7148e092d233a12853cc7e840ce8231af9cbb5e7f51aa47"; + sha256 = "f10dd7c0c8c7962a4f80dd1e026b5db731b9391bc6e1f9ebb96d685eb1230dbc"; + extension = "zip"; }; meta = with stdenv.lib; { From 274bb2e34d29a02755998bb5acea71682f6d12f8 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Thu, 27 Jun 2019 13:51:23 +0900 Subject: [PATCH 0569/1611] python3Packages.pyls-mypy: 0.1.3 -> 0.1.6 --- pkgs/development/python-modules/pyls-mypy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyls-mypy/default.nix b/pkgs/development/python-modules/pyls-mypy/default.nix index dfba421ae58..414c2cccbea 100644 --- a/pkgs/development/python-modules/pyls-mypy/default.nix +++ b/pkgs/development/python-modules/pyls-mypy/default.nix @@ -5,13 +5,13 @@ buildPythonPackage rec { pname = "pyls-mypy"; - version = "0.1.3"; + version = "0.1.6"; src = fetchFromGitHub { owner = "tomv564"; repo = "pyls-mypy"; rev = version; - sha256 = "0v7ghcd1715lxlfq304b7xhchp31ahdd89lf6za4n0l59dz74swh"; + sha256 = "0c1111m9h6f05frkyj6i757q9y2lijpbv8nxmwgp3nqbpkvfnmrk"; }; disabled = !isPy3k; From 2cd892423587d3843b0f6e8dd90ceba92e56becc Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Thu, 27 Jun 2019 13:51:49 +0900 Subject: [PATCH 0570/1611] python3Packages.python-language-server: 0.26.1 -> 0.27.0 --- .../python-modules/python-language-server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-language-server/default.nix b/pkgs/development/python-modules/python-language-server/default.nix index 54c5418ae67..084432061d1 100644 --- a/pkgs/development/python-modules/python-language-server/default.nix +++ b/pkgs/development/python-modules/python-language-server/default.nix @@ -21,13 +21,13 @@ in buildPythonPackage rec { pname = "python-language-server"; - version = "0.26.1"; + version = "0.27.0"; src = fetchFromGitHub { owner = "palantir"; repo = "python-language-server"; rev = version; - sha256 = "003fy8bbvwibnsnyxw1qwg2rxnhbfylqs67ixr6fdnw6mmrzd6fg"; + sha256 = "158wxj2w880jrab7mi4fb3xqnjhmfixqacxjp7whf7jy3zxqrq38"; }; # The tests require all the providers, disable otherwise. From 3f3403bfcf1ac98b1fbdb6c1f993047e7414131c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 16 Jul 2019 20:26:54 -0700 Subject: [PATCH 0571/1611] x265: 3.0 -> 3.1.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/x265/versions --- pkgs/development/libraries/x265/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix index 398c309d938..f2189cb014e 100644 --- a/pkgs/development/libraries/x265/default.nix +++ b/pkgs/development/libraries/x265/default.nix @@ -17,14 +17,14 @@ in stdenv.mkDerivation rec { name = "x265-${version}"; - version = "3.0"; + version = "3.1.1"; src = fetchurl { urls = [ "https://get.videolan.org/x265/x265_${version}.tar.gz" "ftp://ftp.videolan.org/pub/videolan/x265/x265_${version}.tar.gz" ]; - sha256 = "0qh65wdpasrspkm1y0dlfa123myax568yi0sas0lmg5b1hkgrff5"; + sha256 = "1l68lgdbsi4wjz5vad98ggx7mf92rnvzlq34m6w0a08ark3h0yc2"; }; enableParallelBuilding = true; From 0238946872c1c63709790f6285bf9cc5585a6704 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 16:01:25 +0200 Subject: [PATCH 0572/1611] unzip: CVE-2019-13232 --- pkgs/tools/archivers/unzip/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/tools/archivers/unzip/default.nix b/pkgs/tools/archivers/unzip/default.nix index cdf189e82df..749f481d890 100644 --- a/pkgs/tools/archivers/unzip/default.nix +++ b/pkgs/tools/archivers/unzip/default.nix @@ -26,6 +26,11 @@ stdenv.mkDerivation { ./CVE-2016-9844.patch ./CVE-2018-18384.patch ./dont-hardcode-cc.patch + (fetchurl { + url = "https://github.com/madler/unzip/commit/47b3ceae397d21bf822bc2ac73052a4b1daf8e1c.patch"; + name = "CVE-2019-13232.patch"; + sha256 = "0iy2wcjyvzwrjk02iszwcpg85fkjxs1bvb9isvdiywszav4yjs32"; + }) ] ++ stdenv.lib.optional enableNLS (fetchurl { url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-arch/unzip/files/unzip-6.0-natspec.patch?revision=1.1"; From 3aefa761066766c10d9f1981d5d6d65d6fd825ae Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 18:10:13 +0200 Subject: [PATCH 0573/1611] libxslt: CVE-2019-13117 --- pkgs/development/libraries/libxslt/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix index 41633d91f3b..4b7d0a385fd 100644 --- a/pkgs/development/libraries/libxslt/default.nix +++ b/pkgs/development/libraries/libxslt/default.nix @@ -24,6 +24,11 @@ stdenv.mkDerivation rec { url = "https://gitlab.gnome.org/GNOME/libxslt/commit/e03553605b45c88f0b4b2980adfbbb8f6fca2fd6.patch"; sha256 = "0pkpb4837km15zgg6h57bncp66d5lwrlvkr73h0lanywq7zrwhj8"; }) + (fetchpatch { + url = "https://gitlab.gnome.org/GNOME/libxslt/commit/c5eb6cf3aba0af048596106ed839b4ae17ecbcb1.patch"; + name = "CVE-2019-13117.patch"; + sha256 = "0ynfq8y5h623cypj1426iiz7796n3mqbjqa24ndvh2am6rl5lw15"; + }) ]; outputs = [ "bin" "dev" "out" "man" "doc" ] ++ stdenv.lib.optional pythonSupport "py"; From 9a6bd5911158d8167573500e1f3a3aeeef6a8aff Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Tue, 16 Jul 2019 18:12:05 +0200 Subject: [PATCH 0574/1611] libxslt: CVE-2019-13118 --- pkgs/development/libraries/libxslt/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix index 4b7d0a385fd..2dde7fe32ef 100644 --- a/pkgs/development/libraries/libxslt/default.nix +++ b/pkgs/development/libraries/libxslt/default.nix @@ -29,6 +29,11 @@ stdenv.mkDerivation rec { name = "CVE-2019-13117.patch"; sha256 = "0ynfq8y5h623cypj1426iiz7796n3mqbjqa24ndvh2am6rl5lw15"; }) + (fetchpatch { + url = "https://gitlab.gnome.org/GNOME/libxslt/commit/6ce8de69330783977dd14f6569419489875fb71b.patch"; + name = "CVE-2019-13118.patch"; + sha256 = "0bglz9m9sh2vi50qxcm06iqrazw3h45ycgxnp15iankq95z283iq"; + }) ]; outputs = [ "bin" "dev" "out" "man" "doc" ] ++ stdenv.lib.optional pythonSupport "py"; From da295a1206735edd4c24fbe8dc34e8280d78b505 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 16 Jul 2019 14:59:38 +0300 Subject: [PATCH 0575/1611] python2: backport fix for pyc race condition, part 2 Turns out fixing this only in importlib is not sufficient and we need to backport CPython part of the fix too. This patch is based on https://hg.python.org/cpython/rev/c16063765d3a but because the code around is different there are some changes (C-strings instead of Python objects etc.) With this patch Tensorflow builds successfully on many-core machine. --- .../python/cpython/2.7/atomic_pyc.patch | 77 ++++++++++++++++++- 1 file changed, 76 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/cpython/2.7/atomic_pyc.patch b/pkgs/development/interpreters/python/cpython/2.7/atomic_pyc.patch index 56c75cbdeea..06d3718d499 100644 --- a/pkgs/development/interpreters/python/cpython/2.7/atomic_pyc.patch +++ b/pkgs/development/interpreters/python/cpython/2.7/atomic_pyc.patch @@ -1,5 +1,5 @@ diff --git a/Lib/py_compile.py b/Lib/py_compile.py -index 978da73..3559eb9 100644 +index 978da73d74..3559eb95ca 100644 --- a/Lib/py_compile.py +++ b/Lib/py_compile.py @@ -120,16 +120,27 @@ def compile(file, cfile=None, dfile=None, doraise=False): @@ -39,3 +39,78 @@ index 978da73..3559eb9 100644 def main(args=None): """Compile several source files. +diff --git a/Python/import.c b/Python/import.c +index 1e31d79279..f78a1efcf0 100644 +--- a/Python/import.c ++++ b/Python/import.c +@@ -951,6 +951,8 @@ static void + write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat, time_t mtime) + { + FILE *fp; ++ size_t cpathname_len; ++ char *cpathname_tmp; + #ifdef MS_WINDOWS /* since Windows uses different permissions */ + mode_t mode = srcstat->st_mode & ~S_IEXEC; + /* Issue #6074: We ensure user write access, so we can delete it later +@@ -963,11 +965,28 @@ write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat, t + mode_t mode = srcstat->st_mode & ~S_IXUSR & ~S_IXGRP & ~S_IXOTH; + #endif + ++#ifdef MS_WINDOWS + fp = open_exclusive(cpathname, mode); ++#else ++ /* Under POSIX, we first write to a tmp file and then take advantage ++ of atomic renaming. */ ++ cpathname_len = strlen(cpathname); ++ cpathname_tmp = PyMem_MALLOC(cpathname_len + 5); ++ if (cpathname_tmp == NULL) { ++ PyErr_Clear(); ++ return; ++ } ++ memcpy(cpathname_tmp, cpathname, cpathname_len); ++ memcpy(cpathname_tmp + cpathname_len, ".tmp", 5); ++ fp = open_exclusive(cpathname_tmp, mode); ++#endif + if (fp == NULL) { + if (Py_VerboseFlag) + PySys_WriteStderr( + "# can't create %s\n", cpathname); ++#ifndef MS_WINDOWS ++ PyMem_FREE(cpathname_tmp); ++#endif + return; + } + PyMarshal_WriteLongToFile(pyc_magic, fp, Py_MARSHAL_VERSION); +@@ -979,7 +998,12 @@ write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat, t + PySys_WriteStderr("# can't write %s\n", cpathname); + /* Don't keep partial file */ + fclose(fp); ++#ifdef MS_WINDOWS + (void) unlink(cpathname); ++#else ++ (void) unlink(cpathname_tmp); ++ PyMem_FREE(cpathname_tmp); ++#endif + return; + } + /* Now write the true mtime (as a 32-bit field) */ +@@ -989,6 +1013,19 @@ write_compiled_module(PyCodeObject *co, char *cpathname, struct stat *srcstat, t + PyMarshal_WriteLongToFile((long)mtime, fp, Py_MARSHAL_VERSION); + fflush(fp); + } ++ /* Under POSIX, do an atomic rename */ ++#ifndef MS_WINDOWS ++ if (rename(cpathname_tmp, cpathname)) { ++ if (Py_VerboseFlag) ++ PySys_WriteStderr("# can't write %s\n", cpathname); ++ /* Don't keep tmp file */ ++ fclose(fp); ++ (void) unlink(cpathname_tmp); ++ PyMem_FREE(cpathname_tmp); ++ return; ++ } ++ PyMem_FREE(cpathname_tmp); ++#endif + fclose(fp); + if (Py_VerboseFlag) + PySys_WriteStderr("# wrote %s\n", cpathname); From 6e85a5a7880a5b05ef78b2c27654d8f545d236d9 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 15 Jul 2019 02:44:19 +0200 Subject: [PATCH 0576/1611] go_1_12: 1.12.6 -> 1.12.7 --- pkgs/development/compilers/go/1.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/go/1.12.nix b/pkgs/development/compilers/go/1.12.nix index 247845b6ad8..300c85f9d26 100644 --- a/pkgs/development/compilers/go/1.12.nix +++ b/pkgs/development/compilers/go/1.12.nix @@ -30,11 +30,11 @@ in stdenv.mkDerivation rec { pname = "go"; - version = "1.12.6"; + version = "1.12.7"; src = fetchurl { url = "https://dl.google.com/go/go${version}.src.tar.gz"; - sha256 = "1jmlj8pygg4hjpkziicihcf76lz61w1qljdpm3hqlqsmfk65qv69"; + sha256 = "04rvwj69gmw3bz8pw5pf10r21ar0pgpnswp15nkddf04dxyl9s4m"; }; # perl is used for testing go vet From adf55885124506365ebaad52a89e33a8f9612cec Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 15 Jul 2019 02:44:33 +0200 Subject: [PATCH 0577/1611] go_1_11: 1.11.11 -> 1.11.12 --- pkgs/development/compilers/go/1.11.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/go/1.11.nix b/pkgs/development/compilers/go/1.11.nix index d382bd90e47..bf2be2074d9 100644 --- a/pkgs/development/compilers/go/1.11.nix +++ b/pkgs/development/compilers/go/1.11.nix @@ -30,11 +30,11 @@ in stdenv.mkDerivation rec { pname = "go"; - version = "1.11.11"; + version = "1.11.12"; src = fetchurl { url = "https://dl.google.com/go/go${version}.src.tar.gz"; - sha256 = "130g5lhg4h5xwa6chvxfi80nvdx8qb26xfbamzgyc8i5xwrprzqz"; + sha256 = "09k9zmq7hhgg0bf1y7rwa0kn7q1vkkr94cmg2iv9lq3najh5nykd"; }; # perl is used for testing go vet From 7fd4ec66e786bb937178d8549679597ca3a743a6 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 15 Jul 2019 02:52:11 +0200 Subject: [PATCH 0578/1611] go: Add rvolosatovs to maintainers --- pkgs/development/compilers/go/1.11.nix | 2 +- pkgs/development/compilers/go/1.12.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/go/1.11.nix b/pkgs/development/compilers/go/1.11.nix index bf2be2074d9..56a386d8b97 100644 --- a/pkgs/development/compilers/go/1.11.nix +++ b/pkgs/development/compilers/go/1.11.nix @@ -226,7 +226,7 @@ stdenv.mkDerivation rec { homepage = http://golang.org/; description = "The Go Programming language"; license = licenses.bsd3; - maintainers = with maintainers; [ cstrahan orivej velovix mic92 ]; + maintainers = with maintainers; [ cstrahan orivej velovix mic92 rvolosatovs ]; platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/development/compilers/go/1.12.nix b/pkgs/development/compilers/go/1.12.nix index 300c85f9d26..098870c9808 100644 --- a/pkgs/development/compilers/go/1.12.nix +++ b/pkgs/development/compilers/go/1.12.nix @@ -233,7 +233,7 @@ stdenv.mkDerivation rec { homepage = http://golang.org/; description = "The Go Programming language"; license = licenses.bsd3; - maintainers = with maintainers; [ cstrahan orivej velovix mic92 ]; + maintainers = with maintainers; [ cstrahan orivej velovix mic92 rvolosatovs ]; platforms = platforms.linux ++ platforms.darwin; }; } From 97ea621a560b779307cc3121992089707a984236 Mon Sep 17 00:00:00 2001 From: volth Date: Sun, 14 Jul 2019 22:15:57 +0000 Subject: [PATCH 0579/1611] perlPackages.buildPerlModule: allow pre/post hooks buildPerlModule did not allow to specify hooks like preCheck or postInstall it also did not allow to override buildPhase or installPhase --- pkgs/top-level/perl-packages.nix | 36 +++++++++++++++++++++----------- 1 file changed, 24 insertions(+), 12 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index f78cacd08be..dd75f4e5b20 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -41,13 +41,29 @@ let }; # Helper functions for packages that use Module::Build to build. - buildPerlModule = { buildInputs ? [], ... } @ args: - buildPerlPackage (args // { - buildInputs = buildInputs ++ [ ModuleBuild ]; - preConfigure = "touch Makefile.PL"; - buildPhase = "perl Build.PL --prefix=$out; ./Build build"; - installPhase = "./Build install"; - checkPhase = "./Build test"; + buildPerlModule = args: + buildPerlPackage ({ + buildPhase = '' + runHook preBuild + perl Build.PL --prefix=$out; ./Build build + runHook postBuild + ''; + installPhase = '' + runHook preInstall + ./Build install + runHook postInstall + ''; + checkPhase = '' + runHook preCheck + ./Build test + runHook postCheck + ''; + } // args // { + preConfigure = '' + touch Makefile.PL + ${args.preConfigure or ""} + ''; + buildInputs = (args.buildInputs or []) ++ [ ModuleBuild ]; }); /* Construct a perl search path (such as $PERL5LIB) @@ -432,10 +448,6 @@ let buildInputs = [ pkgs.curl FileWhich IOAll ModuleBuildTiny PathClass TestException TestNoWarnings TestOutput TestSpec TestTempDirTiny ]; propagatedBuildInputs = [ CPANPerlReleases CaptureTiny DevelPatchPerl locallib ]; - preConfigure = '' - patchShebangs . - ''; - doCheck = false; meta = { @@ -6119,7 +6131,7 @@ let sha256 = "c065fcd3e2f22ae769937bcc971b91f80294d5009fac140bfba83bf7d35305e3"; }; configurePhase = '' - preConfigure || true + runHook preConfigure perl Build.PL PREFIX="$out" prefix="$out" ''; propagatedBuildInputs = [ IPCSystemSimple ]; From c9965679489f7a8bf1bac0d4a8983d7372186832 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 14 Jul 2019 16:45:41 +0100 Subject: [PATCH 0580/1611] zeromq: 4.3.1 -> 4.3.2 --- pkgs/development/libraries/zeromq/4.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/zeromq/4.x.nix b/pkgs/development/libraries/zeromq/4.x.nix index 9fc0c4ac230..1d56742ba1c 100644 --- a/pkgs/development/libraries/zeromq/4.x.nix +++ b/pkgs/development/libraries/zeromq/4.x.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zeromq-${version}"; - version = "4.3.1"; + version = "4.3.2"; src = fetchFromGitHub { owner = "zeromq"; repo = "libzmq"; rev = "v${version}"; - sha256 = "0z7ka82ihlsncqmf8jj4lnjyr418dzxfs0psx5mccqb09yx9shgm"; + sha256 = "1q37z05i76ili31j6jlw8988iy6vxadlmd306f99phxfdpqa6bn9"; }; nativeBuildInputs = [ cmake asciidoc ]; From 325f37f93512fccbcfd8b60b7f3d9a15708d0372 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Thu, 11 Jul 2019 20:09:55 -0400 Subject: [PATCH 0581/1611] llvm_*,clang_*: allow src overrides --- pkgs/development/compilers/llvm/3.5/clang.nix | 4 +++- pkgs/development/compilers/llvm/3.5/llvm.nix | 10 ++++------ .../development/compilers/llvm/3.8/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/3.8/llvm.nix | 10 ++++------ .../development/compilers/llvm/3.9/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/3.9/llvm.nix | 8 +++----- pkgs/development/compilers/llvm/4/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/4/llvm.nix | 8 +++----- pkgs/development/compilers/llvm/5/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/5/llvm.nix | 8 +++----- pkgs/development/compilers/llvm/6/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/6/llvm.nix | 8 +++----- pkgs/development/compilers/llvm/7/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/7/llvm.nix | 12 +++++------- pkgs/development/compilers/llvm/8/clang/default.nix | 4 +++- pkgs/development/compilers/llvm/8/llvm.nix | 12 +++++------- 16 files changed, 54 insertions(+), 54 deletions(-) diff --git a/pkgs/development/compilers/llvm/3.5/clang.nix b/pkgs/development/compilers/llvm/3.5/clang.nix index 7e0163577ba..132cd67a4ae 100644 --- a/pkgs/development/compilers/llvm/3.5/clang.nix +++ b/pkgs/development/compilers/llvm/3.5/clang.nix @@ -4,8 +4,10 @@ let in stdenv.mkDerivation { name = "clang-${version}"; + src = fetch "cfe" "0846h8vn3zlc00jkmvrmy88gc6ql6014c02l4jv78fpvfigmgssg"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0846h8vn3zlc00jkmvrmy88gc6ql6014c02l4jv78fpvfigmgssg"} + unpackFile $src mv cfe-${version}.src clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/3.5/llvm.nix b/pkgs/development/compilers/llvm/3.5/llvm.nix index 2645469767a..6eec9971778 100644 --- a/pkgs/development/compilers/llvm/3.5/llvm.nix +++ b/pkgs/development/compilers/llvm/3.5/llvm.nix @@ -17,13 +17,13 @@ , enableSharedLibraries ? !stdenv.isDarwin }: -let - src = fetch "llvm" "0xf5q17kkxsrm2gsi93h4pwlv663kji73r2g4asb97klsmb626a4"; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "llvm-${version}"; + src = fetch "llvm" "0xf5q17kkxsrm2gsi93h4pwlv663kji73r2g4asb97klsmb626a4"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}.src llvm sourceRoot=$PWD/llvm unpackFile ${compiler-rt_src} @@ -85,8 +85,6 @@ in stdenv.mkDerivation rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/3.8/clang/default.nix b/pkgs/development/compilers/llvm/3.8/clang/default.nix index cc25a41b040..47a1bed126d 100644 --- a/pkgs/development/compilers/llvm/3.8/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.8/clang/default.nix @@ -5,8 +5,10 @@ let self = stdenv.mkDerivation { name = "clang-${version}"; + src = fetch "cfe" "1prc72xmkgx8wrzmrr337776676nhsp1qd3mw2bvb22bzdnq7lsc"; + unpackPhase = '' - unpackFile ${fetch "cfe" "1prc72xmkgx8wrzmrr337776676nhsp1qd3mw2bvb22bzdnq7lsc"} + unpackFile $src mv cfe-${version}.src clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix index 261a1d0f94c..a73b73137dd 100644 --- a/pkgs/development/compilers/llvm/3.8/llvm.nix +++ b/pkgs/development/compilers/llvm/3.8/llvm.nix @@ -16,13 +16,13 @@ , enableSharedLibraries ? true }: -let - src = fetch "llvm" "1ybmnid4pw2hxn12ax5qa5kl1ldfns0njg8533y3mzslvd5cx0kf"; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "llvm-${version}"; + src = fetch "llvm" "1ybmnid4pw2hxn12ax5qa5kl1ldfns0njg8533y3mzslvd5cx0kf"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}.src llvm sourceRoot=$PWD/llvm unpackFile ${compiler-rt_src} @@ -105,8 +105,6 @@ in stdenv.mkDerivation rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/3.9/clang/default.nix b/pkgs/development/compilers/llvm/3.9/clang/default.nix index f597c559dba..e2cf437e19e 100644 --- a/pkgs/development/compilers/llvm/3.9/clang/default.nix +++ b/pkgs/development/compilers/llvm/3.9/clang/default.nix @@ -5,8 +5,10 @@ let self = stdenv.mkDerivation { name = "clang-${version}"; + src = fetch "cfe" "0qsyyb40iwifhhlx9a3drf8z6ni6zwyk3bvh0kx2gs6yjsxwxi76"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0qsyyb40iwifhhlx9a3drf8z6ni6zwyk3bvh0kx2gs6yjsxwxi76"} + unpackFile $src mv cfe-${version}.src clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/3.9/llvm.nix b/pkgs/development/compilers/llvm/3.9/llvm.nix index 174cb17908c..c8d819cc963 100644 --- a/pkgs/development/compilers/llvm/3.9/llvm.nix +++ b/pkgs/development/compilers/llvm/3.9/llvm.nix @@ -20,8 +20,6 @@ assert (stdenv.hostPlatform != stdenv.buildPlatform) -> !enableSharedLibraries; let - src = fetch "llvm" "1vi9sf7rx1q04wj479rsvxayb6z740iaz3qniwp266fgp5a07n8z"; - # Used when creating a versioned symlinks of libLLVM.dylib versionSuffixes = with stdenv.lib; let parts = splitString "." version; in @@ -31,8 +29,10 @@ in stdenv.mkDerivation { name = "llvm-${version}"; + src = fetch "llvm" "1vi9sf7rx1q04wj479rsvxayb6z740iaz3qniwp266fgp5a07n8z"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}.src llvm sourceRoot=$PWD/llvm unpackFile ${compiler-rt_src} @@ -163,8 +163,6 @@ stdenv.mkDerivation { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/4/clang/default.nix b/pkgs/development/compilers/llvm/4/clang/default.nix index c6538282f23..f50da39a624 100644 --- a/pkgs/development/compilers/llvm/4/clang/default.nix +++ b/pkgs/development/compilers/llvm/4/clang/default.nix @@ -8,8 +8,10 @@ let self = stdenv.mkDerivation ({ name = "clang-${version}"; + src = fetch "cfe" "16vnv3msnvx33dydd17k2cq0icndi1a06bg5vcxkrhjjb1rqlwv1"; + unpackPhase = '' - unpackFile ${fetch "cfe" "16vnv3msnvx33dydd17k2cq0icndi1a06bg5vcxkrhjjb1rqlwv1"} + unpackFile $src mv cfe-${version}* clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/4/llvm.nix b/pkgs/development/compilers/llvm/4/llvm.nix index ecb18a58054..ea70382d2ac 100644 --- a/pkgs/development/compilers/llvm/4/llvm.nix +++ b/pkgs/development/compilers/llvm/4/llvm.nix @@ -17,8 +17,6 @@ }: let - src = fetch "llvm" "0l9bf7kdwhlj0kq1hawpyxhna1062z3h7qcz2y8nfl9dz2qksy6s"; - # Used when creating a versioned symlinks of libLLVM.dylib versionSuffixes = with stdenv.lib; let parts = splitString "." release_version; in @@ -28,8 +26,10 @@ in stdenv.mkDerivation (rec { name = "llvm-${version}"; + src = fetch "llvm" "0l9bf7kdwhlj0kq1hawpyxhna1062z3h7qcz2y8nfl9dz2qksy6s"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}* llvm sourceRoot=$PWD/llvm unpackFile ${compiler-rt_src} @@ -150,8 +150,6 @@ stdenv.mkDerivation (rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/5/clang/default.nix b/pkgs/development/compilers/llvm/5/clang/default.nix index 5fd0271f026..7a3b151f835 100644 --- a/pkgs/development/compilers/llvm/5/clang/default.nix +++ b/pkgs/development/compilers/llvm/5/clang/default.nix @@ -8,8 +8,10 @@ let self = stdenv.mkDerivation ({ name = "clang-${version}"; + src = fetch "cfe" "0018520c4qxf5hgjdqgpz2dgl3faf4gsz87fdlb8zdmx99rfk77s"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0018520c4qxf5hgjdqgpz2dgl3faf4gsz87fdlb8zdmx99rfk77s"} + unpackFile $src mv cfe-${version}* clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/5/llvm.nix b/pkgs/development/compilers/llvm/5/llvm.nix index 122576cc726..23b7bf4e246 100644 --- a/pkgs/development/compilers/llvm/5/llvm.nix +++ b/pkgs/development/compilers/llvm/5/llvm.nix @@ -15,8 +15,6 @@ }: let - src = fetch "llvm" "0g1bbj2n6xv4p1n6hh17vj3vpvg56wacipc81dgwga9mg2lys8nm"; - # Used when creating a versioned symlinks of libLLVM.dylib versionSuffixes = with stdenv.lib; let parts = splitString "." release_version; in @@ -26,8 +24,10 @@ in stdenv.mkDerivation (rec { name = "llvm-${version}"; + src = fetch "llvm" "0g1bbj2n6xv4p1n6hh17vj3vpvg56wacipc81dgwga9mg2lys8nm"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}* llvm sourceRoot=$PWD/llvm ''; @@ -132,8 +132,6 @@ stdenv.mkDerivation (rec { enableParallelBuilding = true; - passthru.src = src; - requiredSystemFeatures = [ "big-parallel" ]; meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; diff --git a/pkgs/development/compilers/llvm/6/clang/default.nix b/pkgs/development/compilers/llvm/6/clang/default.nix index 84056749678..ff9064f455e 100644 --- a/pkgs/development/compilers/llvm/6/clang/default.nix +++ b/pkgs/development/compilers/llvm/6/clang/default.nix @@ -8,8 +8,10 @@ let self = stdenv.mkDerivation ({ name = "clang-${version}"; + src = fetch "cfe" "0rxn4rh7rrnsqbdgp4gzc8ishbkryhpl1kd3mpnxzpxxhla3y93w"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0rxn4rh7rrnsqbdgp4gzc8ishbkryhpl1kd3mpnxzpxxhla3y93w"} + unpackFile $src mv cfe-${version}* clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/6/llvm.nix b/pkgs/development/compilers/llvm/6/llvm.nix index 9237d442b77..e104d051fed 100644 --- a/pkgs/development/compilers/llvm/6/llvm.nix +++ b/pkgs/development/compilers/llvm/6/llvm.nix @@ -19,8 +19,6 @@ let inherit (stdenv.lib) optional optionals optionalString; - src = fetch "llvm" "1qpls3vk85lydi5b4axl0809fv932qgsqgdgrk098567z4jc7mmn"; - # Used when creating a versioned symlinks of libLLVM.dylib versionSuffixes = with stdenv.lib; let parts = splitString "." release_version; in @@ -30,8 +28,10 @@ in stdenv.mkDerivation (rec { name = "llvm-${version}"; + src = fetch "llvm" "1qpls3vk85lydi5b4axl0809fv932qgsqgdgrk098567z4jc7mmn"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}* llvm sourceRoot=$PWD/llvm ''; @@ -146,8 +146,6 @@ stdenv.mkDerivation (rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/7/clang/default.nix b/pkgs/development/compilers/llvm/7/clang/default.nix index a4877b3fe6f..e49c8387f7e 100644 --- a/pkgs/development/compilers/llvm/7/clang/default.nix +++ b/pkgs/development/compilers/llvm/7/clang/default.nix @@ -8,8 +8,10 @@ let self = stdenv.mkDerivation ({ name = "clang-${version}"; + src = fetch "cfe" "0vc4i87qwxnw9lci4ayws9spakg0z6w5w670snj9f8g5m9rc8zg9"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0vc4i87qwxnw9lci4ayws9spakg0z6w5w670snj9f8g5m9rc8zg9"} + unpackFile $src mv cfe-${version}* clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/7/llvm.nix b/pkgs/development/compilers/llvm/7/llvm.nix index dc10de26ba1..a9caa88141a 100644 --- a/pkgs/development/compilers/llvm/7/llvm.nix +++ b/pkgs/development/compilers/llvm/7/llvm.nix @@ -24,9 +24,6 @@ let inherit (stdenv.lib) optional optionals optionalString; - src = fetch "llvm" "0r1p5didv4rkgxyvbkyz671xddg6i3dxvbpsi1xxipkla0l9pk0v"; - polly_src = fetch "polly" "16qkns4ab4x0azrvhy4j7cncbyb2rrbdrqj87zphvqxm5pvm8m1h"; - # Used when creating a versioned symlinks of libLLVM.dylib versionSuffixes = with stdenv.lib; let parts = splitString "." release_version; in @@ -35,12 +32,15 @@ let in stdenv.mkDerivation (rec { name = "llvm-${version}"; + src = fetch "llvm" "0r1p5didv4rkgxyvbkyz671xddg6i3dxvbpsi1xxipkla0l9pk0v"; + polly_src = fetch "polly" "16qkns4ab4x0azrvhy4j7cncbyb2rrbdrqj87zphvqxm5pvm8m1h"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}* llvm sourceRoot=$PWD/llvm '' + optionalString enablePolly '' - unpackFile ${polly_src} + unpackFile $polly_src mv polly-* $sourceRoot/tools/polly ''; @@ -164,8 +164,6 @@ in stdenv.mkDerivation (rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; diff --git a/pkgs/development/compilers/llvm/8/clang/default.nix b/pkgs/development/compilers/llvm/8/clang/default.nix index 5a8b8922eb0..0b38660c4c4 100644 --- a/pkgs/development/compilers/llvm/8/clang/default.nix +++ b/pkgs/development/compilers/llvm/8/clang/default.nix @@ -8,8 +8,10 @@ let self = stdenv.mkDerivation ({ name = "clang-${version}"; + src = fetch "cfe" "0svk1f70hvpwrjp6x5i9kqwrqwxnmcrw5s7f4cxyd100mdd12k08"; + unpackPhase = '' - unpackFile ${fetch "cfe" "0svk1f70hvpwrjp6x5i9kqwrqwxnmcrw5s7f4cxyd100mdd12k08"} + unpackFile $src mv cfe-${version}* clang sourceRoot=$PWD/clang unpackFile ${clang-tools-extra_src} diff --git a/pkgs/development/compilers/llvm/8/llvm.nix b/pkgs/development/compilers/llvm/8/llvm.nix index 18013a9cfad..1827273d57e 100644 --- a/pkgs/development/compilers/llvm/8/llvm.nix +++ b/pkgs/development/compilers/llvm/8/llvm.nix @@ -23,9 +23,6 @@ let inherit (stdenv.lib) optional optionals optionalString; - src = fetch "llvm" "0k124sxkfhfi1rca6kzkdraf4axhx99x3cw2rk55056628dvwwl8"; - polly_src = fetch "polly" "1x4xv3j226rqdddp7b61d71wsx2b8vmmri02ycx27y2fg7ba7xg3"; - # Used when creating a version-suffixed symlink of libLLVM.dylib shortVersion = with stdenv.lib; concatStringsSep "." (take 1 (splitString "." release_version)); @@ -33,12 +30,15 @@ let in stdenv.mkDerivation (rec { name = "llvm-${version}"; + src = fetch "llvm" "0k124sxkfhfi1rca6kzkdraf4axhx99x3cw2rk55056628dvwwl8"; + polly_src = fetch "polly" "1x4xv3j226rqdddp7b61d71wsx2b8vmmri02ycx27y2fg7ba7xg3"; + unpackPhase = '' - unpackFile ${src} + unpackFile $src mv llvm-${version}* llvm sourceRoot=$PWD/llvm '' + optionalString enablePolly '' - unpackFile ${polly_src} + unpackFile $polly_src mv polly-* $sourceRoot/tools/polly ''; @@ -142,8 +142,6 @@ in stdenv.mkDerivation (rec { enableParallelBuilding = true; - passthru.src = src; - meta = { description = "Collection of modular and reusable compiler and toolchain technologies"; homepage = http://llvm.org/; From 3e867d16cde4ecf81d04d41acb99ea464f5c4663 Mon Sep 17 00:00:00 2001 From: Ambroz Bizjak Date: Tue, 9 Jul 2019 20:53:25 +0200 Subject: [PATCH 0582/1611] strip setup hook: Strip using --strip-unneeded instead of --strip-debug. --- pkgs/build-support/setup-hooks/strip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/strip.sh b/pkgs/build-support/setup-hooks/strip.sh index fc4c7bfbaf9..a36caa26810 100644 --- a/pkgs/build-support/setup-hooks/strip.sh +++ b/pkgs/build-support/setup-hooks/strip.sh @@ -25,7 +25,7 @@ _doStrip() { stripDebugList=${stripDebugList:-lib lib32 lib64 libexec bin sbin} if [ -n "$stripDebugList" ]; then - stripDirs "$stripCmd" "$stripDebugList" "${stripDebugFlags:--S}" + stripDirs "$stripCmd" "$stripDebugList" "${stripDebugFlags:---strip-unneeded}" fi stripAllList=${stripAllList:-} From d5dc9a2140d82e8d3fa367d12f3ac562b93d9f4a Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 9 Jul 2019 18:45:21 -0500 Subject: [PATCH 0583/1611] iputils: 20190515 -> 20190709 https://github.com/iputils/iputils/releases/tag/s20190709 See release notes for details, but of particular note is that this expression is now quite simpler due to the following: * ninfod now builds w/nettle! * update includes patches we fetched from upstream * cross should be handled now, during move to meson * prelim testing confirms, meson makes it much easier to get things right re:explanation given in comment (not propagating host/target info) * issue re:musl+idn2 appears resolved re:compilation, but results in unclear runtime errors regarding "invalid flags". Keep disabled as before as this is clearer at the expression level and reports failure to resolve instead which is a bit clearer. (testing with systemd-less iputils) This also means our iputils is openssl-free, which if nothing else is a nice reduction in trans. size :). (quick imperfect comparison shows: 39MB -> 35MB w/glibc 11.4 -> 7.9 w/musl ) iputils: nvm no IDN w/musl iputils: nvm keep idn disabled w/musl --- .../iputils/build-ninfod-with-openssl.patch | 13 ------- pkgs/os-specific/linux/iputils/default.nix | 39 ++++++------------- 2 files changed, 11 insertions(+), 41 deletions(-) delete mode 100644 pkgs/os-specific/linux/iputils/build-ninfod-with-openssl.patch diff --git a/pkgs/os-specific/linux/iputils/build-ninfod-with-openssl.patch b/pkgs/os-specific/linux/iputils/build-ninfod-with-openssl.patch deleted file mode 100644 index 7ce1b4f527e..00000000000 --- a/pkgs/os-specific/linux/iputils/build-ninfod-with-openssl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/ninfod/meson.build b/ninfod/meson.build -index ea7ec1b..fada05b 100644 ---- a/ninfod/meson.build -+++ b/ninfod/meson.build -@@ -10,7 +10,7 @@ ninfod_sources = files(''' - ninfod_name.c - '''.split()) - executable('ninfod', [ninfod_sources, git_version_h], -- dependencies : [cap_dep, crypto_dep, rt_dep, threads], -+ dependencies : [cap_dep, dependency('openssl'), rt_dep, threads], - link_with : [libcommon], - include_directories : inc, - install: true, diff --git a/pkgs/os-specific/linux/iputils/default.nix b/pkgs/os-specific/linux/iputils/default.nix index 0d27d5d97fc..3944a7b37fb 100644 --- a/pkgs/os-specific/linux/iputils/default.nix +++ b/pkgs/os-specific/linux/iputils/default.nix @@ -1,42 +1,27 @@ { stdenv, fetchFromGitHub, fetchpatch , meson, ninja, pkgconfig, gettext, libxslt, docbook_xsl_ns -, libcap, nettle, libidn2, openssl, systemd +, libcap, nettle, libidn2, systemd }: with stdenv.lib; let - time = "20190515"; - # ninfod probably could build on cross, but the Makefile doesn't pass --host - # etc to the sub configure... - withNinfod = stdenv.hostPlatform == stdenv.buildPlatform; + version = "20190709"; sunAsIsLicense = { fullName = "AS-IS, SUN MICROSYSTEMS license"; - url = "https://github.com/iputils/iputils/blob/s${time}/rdisc.c"; + url = "https://github.com/iputils/iputils/blob/s${version}/rdisc.c"; }; -in stdenv.mkDerivation { - name = "iputils-${time}"; +in stdenv.mkDerivation rec { + pname = "iputils"; + inherit version; src = fetchFromGitHub { - owner = "iputils"; - repo = "iputils"; - rev = "s${time}"; - sha256 = "1k2wzgk0d47d1g9k8c1a5l24ml8h8xxz1vrs0vfbyxr7qghdhn4i"; + owner = pname; + repo = pname; + rev = "s${version}"; + sha256 = "04bp4af15adp79ipxmiakfp0ij6hx5qam266flzbr94pr8z8l693"; }; - # ninfod cannot be build with nettle yet: - patches = - [ ./build-ninfod-with-openssl.patch - (fetchpatch { # build-sys/doc: Fix the dependency on xsltproc - url = "https://github.com/iputils/iputils/commit/3b013f271931c3fe771e5a2c591f35d617de90f3.patch"; - sha256 = "0ilhlgiqdflry7km3ik8i4h1yymm5f5zmwyl5r029q7x1p8kinfw"; - }) - (fetchpatch { # build-sys: Make setcap really optional - url = "https://github.com/iputils/iputils/commit/473be6467f995865244e7e68b2fa587a4ee79551.patch"; - sha256 = "0781147qaf0jwa177jbmh474r8hqs0jwgi5vgx9csb43jzdm8hqf"; - }) - ]; - mesonFlags = [ "-DUSE_CRYPTO=nettle" "-DBUILD_RARPD=true" @@ -44,14 +29,12 @@ in stdenv.mkDerivation { "-DNO_SETCAP_OR_SUID=true" "-Dsystemdunitdir=etc/systemd/system" ] - ++ optional (!withNinfod) "-DBUILD_NINFOD=false" # Disable idn usage w/musl (https://github.com/iputils/iputils/pull/111): ++ optional stdenv.hostPlatform.isMusl "-DUSE_IDN=false"; nativeBuildInputs = [ meson ninja pkgconfig gettext libxslt.bin docbook_xsl_ns ]; buildInputs = [ libcap nettle systemd ] - ++ optional (!stdenv.hostPlatform.isMusl) libidn2 - ++ optional withNinfod openssl; # TODO: Build with nettle + ++ optional (!stdenv.hostPlatform.isMusl) libidn2; meta = { homepage = https://github.com/iputils/iputils; From ea688c051d4c5daf14007440dea4664d759adcda Mon Sep 17 00:00:00 2001 From: Demin Dmitriy Date: Sat, 6 Jul 2019 20:29:00 +0300 Subject: [PATCH 0584/1611] git: remove runtime dependency on gcc Reduces gitMinimal closure size from 329.6M to 174.8M. Fixes the issue https://github.com/NixOS/nixpkgs/issues/64350. In git 2.22.0 git-stash is no longer a shell script and now it is just a symlink to git. `postInstall` assumed that it was a shell script, tried to patch it and ended up corrupting the file and made `strip` refuse stripping it. --- .../version-management/git-and-tools/git/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/git-and-tools/git/default.nix b/pkgs/applications/version-management/git-and-tools/git/default.nix index 3acfd4bc400..67125458c72 100644 --- a/pkgs/applications/version-management/git-and-tools/git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git/default.nix @@ -164,7 +164,7 @@ stdenv.mkDerivation { EOS )" perl -0777 -i -pe "$SCRIPT" \ - $out/libexec/git-core/git-{sh-setup,filter-branch,merge-octopus,mergetool,quiltimport,request-pull,stash,submodule,subtree,web--browse} + $out/libexec/git-core/git-{sh-setup,filter-branch,merge-octopus,mergetool,quiltimport,request-pull,submodule,subtree,web--browse} # Also put git-http-backend into $PATH, so that we can use smart From 5c85b24edce67464f8f8bc6cd881fad732e65fbc Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 6 Jul 2019 18:36:21 +0100 Subject: [PATCH 0585/1611] pythonPackages.jpylyzer: init at 1.18.0 include as application too --- .../python-modules/jpylyzer/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 3 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/jpylyzer/default.nix diff --git a/pkgs/development/python-modules/jpylyzer/default.nix b/pkgs/development/python-modules/jpylyzer/default.nix new file mode 100644 index 00000000000..0d6398a768a --- /dev/null +++ b/pkgs/development/python-modules/jpylyzer/default.nix @@ -0,0 +1,30 @@ +{ stdenv +, fetchFromGitHub +, buildPythonPackage +, six +}: + +buildPythonPackage rec { + pname = "jpylyzer"; + version = "1.18.0"; + + src = fetchFromGitHub { + owner = "openpreserve"; + repo = pname; + rev = version; + sha256 = "0vhrq15l6jd5fm6vj7mczjzjpl2ph1dk8jp89dw4vlccky8660ll"; + }; + + propagatedBuildInputs = [ six ]; + + # there don't appear to be any in-tree tests as such, but the builder's automatic + # runner seems to be upset by the project layout + doCheck = false; + + meta = with stdenv.lib; { + description = "JP2 (JPEG 2000 Part 1) image validator and properties extractor"; + homepage = "https://jpylyzer.openpreservation.org/"; + license = licenses.lgpl3; + maintainers = with maintainers; [ ris ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4c4f43d7090..8efb148aa63 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3944,6 +3944,8 @@ in jpegrescan = callPackage ../applications/graphics/jpegrescan { }; + jpylyzer = with pythonPackages; toPythonApplication jpylyzer; + jq = callPackage ../development/tools/jq { }; jo = callPackage ../development/tools/jo { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 43d76a7fa4e..109dd8f5b83 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2363,6 +2363,8 @@ in { JPype1 = callPackage ../development/python-modules/JPype1 {}; + jpylyzer = callPackage ../development/python-modules/jpylyzer {}; + josepy = callPackage ../development/python-modules/josepy {}; jsbeautifier = callPackage ../development/python-modules/jsbeautifier {}; From 3e5ccd43003c59fd61fd060ab1e4e5839d832e7f Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 6 Jul 2019 18:36:43 +0100 Subject: [PATCH 0586/1611] openjpeg: enable tests --- pkgs/development/libraries/openjpeg/generic.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/openjpeg/generic.nix b/pkgs/development/libraries/openjpeg/generic.nix index d3130a64b03..9cd645ed1d4 100644 --- a/pkgs/development/libraries/openjpeg/generic.nix +++ b/pkgs/development/libraries/openjpeg/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, cmake, pkgconfig -, libpng, libtiff, lcms2 +, libpng, libtiff, lcms2, jpylyzer , mj2Support ? true # MJ2 executables , jpwlLibSupport ? true # JPWL library & executables , jpipLibSupport ? false # JPIP library & executables @@ -8,7 +8,7 @@ , openjpegJarSupport ? false # Openjpeg jar (Java) , jp3dSupport ? true # # JP3D comp , thirdPartySupport ? false # Third party libraries - OFF: only build when found, ON: always build -, testsSupport ? false +, testsSupport ? true , jdk ? null # Inherit generics , branch, version, revision, sha256, patches ? [], extraFlags ? [], ... @@ -62,6 +62,13 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libpng libtiff lcms2 ]; + doCheck = testsSupport; + checkPhase = '' + substituteInPlace ../tools/ctest_scripts/travis-ci.cmake \ + --replace "JPYLYZER_EXECUTABLE=" "JPYLYZER_EXECUTABLE=\"${jpylyzer}/bin/jpylyzer\" # " + OPJ_SOURCE_DIR=.. ctest -S ../tools/ctest_scripts/travis-ci.cmake + ''; + passthru = { incDir = "openjpeg-${branch}"; }; From b62679839feb9e41b3d8d1d46ec482a600d8ee80 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 14:41:28 -0700 Subject: [PATCH 0587/1611] libev: 4.25 -> 4.27 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libev/versions --- pkgs/development/libraries/libev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libev/default.nix b/pkgs/development/libraries/libev/default.nix index 922207f1cce..365c128239d 100644 --- a/pkgs/development/libraries/libev/default.nix +++ b/pkgs/development/libraries/libev/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libev-${version}"; - version="4.25"; + version="4.27"; src = fetchurl { url = "http://dist.schmorp.de/libev/Attic/${name}.tar.gz"; - sha256 = "1295q0lkkbrlpd5dl5i48bh1rm8mjzh9y795jlvjz3bp4wf7wxbq"; + sha256 = "0kil23cgsp0r5shvnwwbsy7fzxb62sxqzqbkbkfp5w54ipy2cm9d"; }; meta = { From db0655886d1686c9f60c747fc353ff199d083592 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 08:27:17 -0700 Subject: [PATCH 0588/1611] glib: 2.60.3 -> 2.60.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/glib/versions --- pkgs/development/libraries/glib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix index 1de54becb5b..ecbcbea1394 100644 --- a/pkgs/development/libraries/glib/default.nix +++ b/pkgs/development/libraries/glib/default.nix @@ -46,7 +46,7 @@ let ''; binPrograms = optional (!stdenv.isDarwin) "gapplication" ++ [ "gdbus" "gio" "gsettings" ]; - version = "2.60.3"; + version = "2.60.4"; in stdenv.mkDerivation rec { @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/glib/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1fb0nx9fcmic8rsh0fbp79lqpasfjxljvnshbw2hsya51mb0vaq4"; + sha256 = "1p9k8z83272mkm4d4fhm5jhwhyw2basrwbz47yl5wbmrvk2ix51b"; }; patches = optional stdenv.isDarwin ./darwin-compilation.patch From b1fc8e24a29376af830b7caf4a0838f4d9fe902f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 17 Jul 2019 11:44:00 +0300 Subject: [PATCH 0589/1611] primus: fix for libglvnd Fixes #48795. --- pkgs/tools/X11/primus/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/X11/primus/default.nix b/pkgs/tools/X11/primus/default.nix index bf3ff7c6528..a70b619a6b4 100644 --- a/pkgs/tools/X11/primus/default.nix +++ b/pkgs/tools/X11/primus/default.nix @@ -28,5 +28,7 @@ let in writeScriptBin "primusrun" '' #!${runtimeShell} export LD_LIBRARY_PATH=${ldPath}:$LD_LIBRARY_PATH + # https://bugs.launchpad.net/ubuntu/+source/bumblebee/+bug/1758243 + export __GLVND_DISALLOW_PATCHING=1 exec "$@" '' From a7edafd0d372ea3f9ae7cadfcd098adac8ab1a4d Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 25 Jun 2019 16:05:17 -0400 Subject: [PATCH 0590/1611] gtk3: cleanup expression --- pkgs/development/libraries/gtk+/3.x.nix | 112 +++++++++++++++++------- 1 file changed, 81 insertions(+), 31 deletions(-) diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 378f3904d5d..52d792b966b 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -1,33 +1,57 @@ -{ stdenv, fetchurl, fetchpatch, pkgconfig, gettext, perl, makeWrapper, shared-mime-info, isocodes -, expat, glib, cairo, pango, gdk_pixbuf, atk, at-spi2-atk, gobject-introspection, fribidi -, xorg, epoxy, json-glib, libxkbcommon, gmp, gnome3, autoreconfHook, gsettings-desktop-schemas +{ stdenv +, fetchurl +, fetchpatch +, pkgconfig +, gettext +, perl +, makeWrapper +, shared-mime-info +, isocodes +, expat +, glib +, cairo +, pango +, gdk_pixbuf +, atk +, at-spi2-atk +, gobject-introspection +, fribidi +, xorg +, epoxy +, json-glib +, libxkbcommon +, gmp +, gnome3 +, autoreconfHook +, gsettings-desktop-schemas , x11Support ? stdenv.isLinux -, waylandSupport ? stdenv.isLinux, mesa, wayland, wayland-protocols +, waylandSupport ? stdenv.isLinux +, mesa +, wayland +, wayland-protocols , xineramaSupport ? stdenv.isLinux -, cupsSupport ? stdenv.isLinux, cups ? null -, AppKit, Cocoa +, cupsSupport ? stdenv.isLinux +, cups ? null +, AppKit +, Cocoa }: assert cupsSupport -> cups != null; with stdenv.lib; -let - version = "3.24.8"; -in stdenv.mkDerivation rec { - name = "gtk+3-${version}"; + pname = "gtk+3"; + version = "3.24.8"; + + outputs = [ "out" "dev" ]; + outputBin = "dev"; src = fetchurl { url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz"; sha256 = "16f71bbkhwhndcsrpyhjia3b77cb5ksf5c45lyfgws4pkgg64sb6"; }; - outputs = [ "out" "dev" ]; - outputBin = "dev"; - - nativeBuildInputs = [ pkgconfig gettext gobject-introspection perl makeWrapper autoreconfHook ]; - patches = [ ./3.0-immodules.cache.patch (fetchpatch { @@ -42,23 +66,53 @@ stdenv.mkDerivation rec { ./3.0-darwin-x11.patch ]; - buildInputs = [ libxkbcommon epoxy json-glib isocodes ] - ++ optional stdenv.isDarwin AppKit; - propagatedBuildInputs = with xorg; with stdenv.lib; - [ expat glib cairo pango gdk_pixbuf atk at-spi2-atk gsettings-desktop-schemas fribidi - libXrandr libXrender libXcomposite libXi libXcursor libSM libICE ] - ++ optional stdenv.isDarwin Cocoa # explicitly propagated, always needed - ++ optionals waylandSupport [ mesa wayland wayland-protocols ] - ++ optional xineramaSupport libXinerama - ++ optional cupsSupport cups; + nativeBuildInputs = [ + autoreconfHook + gettext + gobject-introspection + makeWrapper + perl + pkgconfig + ]; + + buildInputs = [ + libxkbcommon + epoxy + json-glib + isocodes + ] + ++ optional stdenv.isDarwin AppKit + ; + + propagatedBuildInputs = with xorg; [ + at-spi2-atk + atk + cairo + expat + fribidi + gdk_pixbuf + glib + gsettings-desktop-schemas + libICE + libSM + libXcomposite + libXcursor + libXi + libXrandr + libXrender + pango + ] + ++ optional stdenv.isDarwin Cocoa # explicitly propagated, always needed + ++ optionals waylandSupport [ mesa wayland wayland-protocols ] + ++ optional xineramaSupport libXinerama + ++ optional cupsSupport cups + ; #TODO: colord? ## (2019-06-12) Demos seem to install fine now. Keeping this around in case it fails again. ## (2014-03-27) demos fail to install, no idea where's the problem #preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in"; - enableParallelBuilding = true; - configureFlags = optional stdenv.isDarwin [ "--disable-debug" "--disable-dependency-tracking" @@ -94,9 +148,8 @@ stdenv.mkDerivation rec { }; }; - meta = with stdenv.lib; { + meta = { description = "A multi-platform toolkit for creating graphical user interfaces"; - longDescription = '' GTK+ is a highly usable, feature rich toolkit for creating graphical user interfaces which boasts cross platform @@ -107,11 +160,8 @@ stdenv.mkDerivation rec { proprietary software with GTK+ without any license fees or royalties. ''; - homepage = https://www.gtk.org/; - license = licenses.lgpl2Plus; - maintainers = with maintainers; [ raskin vcunat lethalman ]; platforms = platforms.all; }; From 638c39e65bce5adcea7b7bebf3586c7ee371563f Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 25 Jun 2019 21:07:28 -0400 Subject: [PATCH 0591/1611] gtk3: 3.24.8 -> 3.24.10, meson! We now build gtk3 with the meson build system. Notably, at least for the expression, all the platforms logic for we had for configureFlags should be unneeded with meson. --- pkgs/development/libraries/gtk+/3.x.nix | 57 +++++++++++-------- .../libraries/gtk+/gtk3-setup-hook.sh | 10 ++++ 2 files changed, 43 insertions(+), 24 deletions(-) create mode 100644 pkgs/development/libraries/gtk+/gtk3-setup-hook.sh diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 52d792b966b..d2e6a6bb15e 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -3,7 +3,9 @@ , fetchpatch , pkgconfig , gettext -, perl +, meson +, ninja +, python3 , makeWrapper , shared-mime-info , isocodes @@ -22,7 +24,7 @@ , libxkbcommon , gmp , gnome3 -, autoreconfHook +, hicolor-icon-theme , gsettings-desktop-schemas , x11Support ? stdenv.isLinux , waylandSupport ? stdenv.isLinux @@ -42,14 +44,16 @@ with stdenv.lib; stdenv.mkDerivation rec { pname = "gtk+3"; - version = "3.24.8"; + version = "3.24.10"; outputs = [ "out" "dev" ]; outputBin = "dev"; + setupHook = ./gtk3-setup-hook.sh; + src = fetchurl { url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz"; - sha256 = "16f71bbkhwhndcsrpyhjia3b77cb5ksf5c45lyfgws4pkgg64sb6"; + sha256 = "00qvq1r96ikdalv7xzgng1kad9i0rcahqk01gwhxl3xrw83z3a1m"; }; patches = [ @@ -66,13 +70,36 @@ stdenv.mkDerivation rec { ./3.0-darwin-x11.patch ]; + mesonFlags = [ + "-Dtests=false" + ]; + + postPatch = '' + files=( + build-aux/meson/post-install.py + demos/gtk-demo/geninclude.py + gdk/broadway/gen-c-array.py + gdk/gen-gdk-gresources-xml.py + gtk/cursor/dnd-copy.png + gtk/gen-gtk-gresources-xml.py + gtk/gen-rc.py + gtk/gentypefuncs.py + ) + + chmod +x ''${files[@]} + patchShebangs ''${files[@]} + ''; + nativeBuildInputs = [ - autoreconfHook gettext gobject-introspection + hicolor-icon-theme # setup-hook makeWrapper - perl + meson + ninja pkgconfig + python3 + setupHook ]; buildInputs = [ @@ -109,27 +136,9 @@ stdenv.mkDerivation rec { ; #TODO: colord? - ## (2019-06-12) Demos seem to install fine now. Keeping this around in case it fails again. - ## (2014-03-27) demos fail to install, no idea where's the problem - #preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in"; - - configureFlags = optional stdenv.isDarwin [ - "--disable-debug" - "--disable-dependency-tracking" - "--disable-glibtest" - ] ++ optional (stdenv.isDarwin && !x11Support) - "--enable-quartz-backend" - ++ optional x11Support [ - "--enable-x11-backend" - ] ++ optional waylandSupport [ - "--enable-wayland-backend" - ]; - doCheck = false; # needs X11 postInstall = optionalString (!stdenv.isDarwin) '' - substituteInPlace "$out/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.la" \ - --replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib' # The updater is needed for nixos env and it's tiny. moveToOutput bin/gtk-update-icon-cache "$out" # Launcher diff --git a/pkgs/development/libraries/gtk+/gtk3-setup-hook.sh b/pkgs/development/libraries/gtk+/gtk3-setup-hook.sh new file mode 100644 index 00000000000..bddeb2d25d5 --- /dev/null +++ b/pkgs/development/libraries/gtk+/gtk3-setup-hook.sh @@ -0,0 +1,10 @@ +fixupOutputHooks+=(_gtk3CleanComments) + +# Clean comments that link to generator of the file +_gtk3CleanComments() { + local f="$prefix/lib/gtk-3.0/3.0.0/immodules.cache" + if [ -f "$f" ]; then + sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f" + fi +} + From 6e4fed00bf44c69eeaf434f03d170f9075451493 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 27 Jun 2019 14:27:36 -0400 Subject: [PATCH 0592/1611] gtk3: add sassc This makes us generate the .css instead of using the pregenerated ones. --- pkgs/development/libraries/gtk+/3.x.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index d2e6a6bb15e..7db4037e476 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -26,6 +26,7 @@ , gnome3 , hicolor-icon-theme , gsettings-desktop-schemas +, sassc , x11Support ? stdenv.isLinux , waylandSupport ? stdenv.isLinux , mesa @@ -99,6 +100,7 @@ stdenv.mkDerivation rec { ninja pkgconfig python3 + sassc setupHook ]; From ff1be88e38a933b5d5a4c040c1095257e4cf957c Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 27 Jun 2019 16:46:10 -0400 Subject: [PATCH 0593/1611] gtk3: wrap demos, cleanup output --- pkgs/development/libraries/gtk+/3.x.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 7db4037e476..60c04bf8a59 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -152,6 +152,20 @@ stdenv.mkDerivation rec { done ''; + # Make all demo related things in dev + postFixup = '' + moveToOutput share/icons/hicolor "$dev" + moveToOutput share/applications "$dev" + moveToOutput share/gsettings-schemas "$dev" + + demos=(gtk3-demo gtk3-demo-application gtk3-icon-browser gtk3-widget-factory) + + for program in ''${demos[@]}; do + wrapProgram $dev/bin/$program \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$dev/share/gsettings-schemas/${pname}-${version}" + done + ''; + passthru = { updateScript = gnome3.updateScript { packageName = "gtk+"; From 0596ac9667b19a9dabd42d5a8e8fe3d6265b2099 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sat, 6 Jul 2019 10:40:29 +0200 Subject: [PATCH 0594/1611] openjpeg: CVE-2019-12973 --- pkgs/development/libraries/openjpeg/2.x.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/development/libraries/openjpeg/2.x.nix b/pkgs/development/libraries/openjpeg/2.x.nix index e865e2e8549..24f3752ef43 100644 --- a/pkgs/development/libraries/openjpeg/2.x.nix +++ b/pkgs/development/libraries/openjpeg/2.x.nix @@ -13,5 +13,15 @@ callPackage ./generic.nix (args // rec { patches = [ ./fix-cmake-config-includedir.patch + (fetchpatch { + url = "https://github.com/uclouvain/openjpeg/commit/21399f6b7d318fcdf4406d5e88723c4922202aa3.patch"; + name = "CVE-2019-12973-1.patch"; + sha256 = "161yvnfbzy2016qqapm0ywfgglgs1v8ljnk6fj8d2bwdh1cxxz8f"; + }) + (fetchpatch { + url = "https://github.com/uclouvain/openjpeg/commit/3aef207f90e937d4931daf6d411e092f76d82e66.patch"; + name = "CVE-2019-12973-2.patch"; + sha256 = "1jkkfw13l7nx4hxdhc7z17f4vfgqcaf09zpl235kypbxx1ygc7vq"; + }) ]; }) From 8cee72bceff6a229c2ff729d4c406df00be22320 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Tue, 4 Jun 2019 21:12:53 -0500 Subject: [PATCH 0595/1611] libevdev: 1.6.0 -> 1.7.0 https://lists.freedesktop.org/archives/input-tools/2019-June/001512.html --- pkgs/development/libraries/libevdev/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libevdev/default.nix b/pkgs/development/libraries/libevdev/default.nix index 7998655e46b..b0383b7f742 100644 --- a/pkgs/development/libraries/libevdev/default.nix +++ b/pkgs/development/libraries/libevdev/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, python }: stdenv.mkDerivation rec { - name = "libevdev-1.6.0"; + name = "libevdev-1.7.0"; src = fetchurl { url = "https://www.freedesktop.org/software/libevdev/${name}.tar.xz"; - sha256 = "057qdrwbhql2lvr4kxljk3yqjsmh65hyrfbr2b681nc7b635q07m"; + sha256 = "0sg3lbjn68qaq3yz2k735h29kaf3fmx7b5m1x7rm2fnhn7rf3nqi"; }; buildInputs = [ python ]; From c8c751aca277ae4c2f3de5efd32493d8095a819e Mon Sep 17 00:00:00 2001 From: Raphael Borun Das Gupta Date: Wed, 17 Jul 2019 11:53:54 +0200 Subject: [PATCH 0596/1611] ili2c: init at 5.0.0 --- pkgs/tools/misc/ili2c/default.nix | 38 +++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/tools/misc/ili2c/default.nix diff --git a/pkgs/tools/misc/ili2c/default.nix b/pkgs/tools/misc/ili2c/default.nix new file mode 100644 index 00000000000..4d78f797f10 --- /dev/null +++ b/pkgs/tools/misc/ili2c/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub, jdk, ant, makeWrapper, jre }: + +stdenv.mkDerivation rec { + pname = "ili2c"; + version = "5.0.0"; + + nativeBuildInputs = [ ant jdk makeWrapper ]; + + src = fetchFromGitHub { + owner = "claeis"; + repo = pname; + rev = "${pname}-${version}"; + sha256 = "0xps2343d5gdr2aj8j3l4cjq4k9zbxxlhnp8sjlhxh1wdczxlwx6"; + }; + + buildPhase = "ant jar"; + + installPhase = + '' + mkdir -p $out/share/${pname} + cp $build/build/source/build/jar/ili2c.jar $out/share/${pname} + + mkdir -p $out/bin + makeWrapper ${jre}/bin/java $out/bin/ili2c \ + --add-flags "-jar $out/share/${pname}/ili2c.jar" + ''; + + meta = with stdenv.lib; { + description = "The INTERLIS Compiler"; + longDescription = '' + Checks the syntactical correctness of an INTERLIS data model. + ''; + homepage = "https://www.interlis.ch/downloads/ili2c"; + license = licenses.lgpl21Plus; + maintainers = [ maintainers.das-g ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b56dbe6c15..820aeead5d7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -816,6 +816,8 @@ in httperf = callPackage ../tools/networking/httperf { }; + ili2c = callPackage ../tools/misc/ili2c { }; + imgpatchtools = callPackage ../development/mobile/imgpatchtools { }; ipgrep = callPackage ../tools/networking/ipgrep { }; From 3cb2b233c5e53f6938351c40a65749027d994dd7 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 17 Jul 2019 07:52:37 -0400 Subject: [PATCH 0597/1611] zoom-us: 2.8.264592.0714 -> 2.9.265650.0716 --- .../networking/instant-messengers/zoom-us/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 44b740c6f36..5e9d078f8c4 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -13,11 +13,11 @@ assert pulseaudioSupport -> libpulseaudio != null; let inherit (stdenv.lib) concatStringsSep makeBinPath optional; - version = "2.8.264592.0714"; + version = "2.9.265650.0716"; srcs = { x86_64-linux = fetchurl { url = "https://zoom.us/client/${version}/zoom_x86_64.tar.xz"; - sha256 = "0ndrsyyawls487v7vlga0yn574xvhmfc14vdjxg23nvn0jxh2dvw"; + sha256 = "1wg5yw8g0c6p9y0wcqxr1rndgclasg7v1ybbx8s1a2p98izjkcaa"; }; }; From b16ae1a77d6411265474c23992efd809b51e142f Mon Sep 17 00:00:00 2001 From: xbreak Date: Wed, 17 Jul 2019 12:00:46 +0000 Subject: [PATCH 0598/1611] cfitsio: 3.450 -> 3.47 * changed to version numbering without trailing '0' * remove obsolete `darwin-curl-config.patch` * disable format hardening to fix build --- .../cfitsio/darwin-curl-config.patch | 25 ------------------- .../development/libraries/cfitsio/default.nix | 13 +++++----- 2 files changed, 7 insertions(+), 31 deletions(-) delete mode 100644 pkgs/development/libraries/cfitsio/darwin-curl-config.patch diff --git a/pkgs/development/libraries/cfitsio/darwin-curl-config.patch b/pkgs/development/libraries/cfitsio/darwin-curl-config.patch deleted file mode 100644 index 77d8f719d77..00000000000 --- a/pkgs/development/libraries/cfitsio/darwin-curl-config.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -ruN cfitsio/configure cfitsio-curl-config/configure ---- cfitsio/configure 2018-05-09 21:16:00.000000000 +0200 -+++ cfitsio-curl-config/configure 2018-05-30 13:28:58.000000000 +0200 -@@ -4783,13 +4783,6 @@ - CURL_LIB="" - CURL_INC="" - # Use curl-config to get compiler & linker flags, if available. --# On Macs, prefer XCode curl-config, and reject MacPorts version --# until further notice to prevent build errors: --if test "x$EXT" = xdarwin -a -x /usr/bin/curl-config; then -- CURLCONFIG="/usr/bin/curl-config" -- { $as_echo "$as_me:${as_lineno-$LINENO}: result: checking for curl-config... choosing /usr/bin/curl-config on Mac" >&5 --$as_echo "checking for curl-config... choosing /usr/bin/curl-config on Mac" >&6; } --else - # Extract the first word of "curl-config", so it can be a program name with args. - set dummy curl-config; ac_word=$2 - { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 -@@ -4833,7 +4826,6 @@ - fi - fi - fi --fi - CURLCONFIG=$ac_cv_prog_CURLCONFIG - if test -n "$CURLCONFIG"; then - { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CURLCONFIG" >&5 diff --git a/pkgs/development/libraries/cfitsio/default.nix b/pkgs/development/libraries/cfitsio/default.nix index 32308c34ead..7576c24024a 100644 --- a/pkgs/development/libraries/cfitsio/default.nix +++ b/pkgs/development/libraries/cfitsio/default.nix @@ -2,22 +2,23 @@ # Optional dependencies , bzip2 ? null }: - stdenv.mkDerivation rec { - name = "cfitsio-${version}"; - version = "3.450"; + pname = "cfitsio"; + version = "3.47"; src = fetchurl { - url = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio${builtins.replaceStrings ["."] [""] version}.tar.gz"; - sha256 = "0bmrkw6w65zb0k3mszaaqy1f4zjm2hl7njww74nb5v38wvdi4q5z"; + url = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio-${version}.tar.gz"; + sha256 = "1vzlxnrjckz78p2wf148v2z3krkwnykfqvlj42sz3q711vqid1a1"; }; buildInputs = [ bzip2 ]; - patches = [ ./darwin-curl-config.patch ./darwin-rpath-universal.patch ]; + patches = [ ./darwin-rpath-universal.patch ]; configureFlags = stdenv.lib.optional (bzip2 != null) "--with-bzip2=${bzip2.out}"; + hardeningDisable = [ "format" ]; + # Shared-only build buildFlags = "shared"; postPatch = '' sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in From 8a2b829b152121e8d439e7fbe2b959b9597fad3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 17 Jul 2019 14:22:24 +0200 Subject: [PATCH 0599/1611] Update FUNDING.yml --- .github/FUNDING.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index bbaabf93c7a..15792e7132e 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,3 +1,3 @@ # These are supported funding model platforms -custom: https://nixos.org/nixos/foundation.html +open_collective: nixos From dd5d308e3a56712c17836a245c86eab4fcfc4855 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 17 Jul 2019 14:27:28 +0200 Subject: [PATCH 0600/1611] README: add open collective badge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8cdbb73595b..d589b953d18 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ [logo](https://nixos.org/nixos) [![Code Triagers Badge](https://www.codetriage.com/nixos/nixpkgs/badges/users.svg)](https://www.codetriage.com/nixos/nixpkgs) +[![Open Collective supporters](https://opencollective.com/nixos/tiers/supporter/badge.svg?label=Supporter&color=brightgreen)](https://opencollective.com/nixos) Nixpkgs is a collection of packages for the [Nix](https://nixos.org/nix/) package manager. It is periodically built and tested by the [Hydra](https://hydra.nixos.org/) From 8fe76701fd442657df9056fd64807c195cfd7028 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Wed, 10 Jul 2019 16:06:14 +0300 Subject: [PATCH 0601/1611] libsForQt5.qtutilities: init at 5.13.0 --- .../libraries/qtutilities/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/qtutilities/default.nix diff --git a/pkgs/development/libraries/qtutilities/default.nix b/pkgs/development/libraries/qtutilities/default.nix new file mode 100644 index 00000000000..63b0a9f42a6 --- /dev/null +++ b/pkgs/development/libraries/qtutilities/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, cpp-utilities, qttools, qtbase, cmake, pkgconfig }: + +stdenv.mkDerivation rec { + pname = "qtutilities"; + version = "5.13.0"; + + src = fetchFromGitHub { + owner = "Martchus"; + repo = pname; + rev = "v${version}"; + sha256 = "03drxwpr3xdh4hm8pkd5mhjs0mzhz6634ldyq78pml39ciqm51nl"; + }; + + buildInputs = [ qtbase cpp-utilities ]; + nativeBuildInputs = [ cmake qttools ]; + + meta = with stdenv.lib; { + homepage = "https://github.com/Martchus/qtutilities"; + description = "Common C++ classes and routines used by @Martchus' applications featuring argument parser, IO and conversion utilities"; + license = licenses.gpl2; + maintainers = with maintainers; [ doronbehar ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 50e4d12968b..dbf58a04f4b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12955,6 +12955,8 @@ in withQt5 = true; }; + qtutilities = callPackage ../development/libraries/qtutilities { }; + qtinstaller = callPackage ../development/libraries/qtinstaller { }; qtkeychain = callPackage ../development/libraries/qtkeychain { From 70aeeef8829a6ac74165f4719604612382cbcc69 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Wed, 17 Jul 2019 18:23:55 +0200 Subject: [PATCH 0602/1611] inxi: 3.0.34-1 -> 3.0.35-1 --- pkgs/tools/system/inxi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/inxi/default.nix b/pkgs/tools/system/inxi/default.nix index badc36650f0..c869c4b11a5 100644 --- a/pkgs/tools/system/inxi/default.nix +++ b/pkgs/tools/system/inxi/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "inxi-${version}"; - version = "3.0.34-1"; + version = "3.0.35-1"; src = fetchFromGitHub { owner = "smxi"; repo = "inxi"; rev = version; - sha256 = "0x2s40lwsan2pk292nspjgyw00f9f5fdfmwfvl50924pxhyxn2fh"; + sha256 = "1rvidz2b9zp3ikkcjf8zr5r8r9mxnw3zgly2pvlim11kkp76zdl9"; }; buildInputs = [ perl ]; From a6ffab43811c13974e1fb5985a9e061e7100eaf9 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Wed, 17 Jul 2019 18:35:57 +0200 Subject: [PATCH 0603/1611] html-proofer: 3.11.0 -> 3.11.1 --- pkgs/tools/misc/html-proofer/Gemfile.lock | 4 +-- pkgs/tools/misc/html-proofer/gemset.nix | 44 +++-------------------- 2 files changed, 6 insertions(+), 42 deletions(-) diff --git a/pkgs/tools/misc/html-proofer/Gemfile.lock b/pkgs/tools/misc/html-proofer/Gemfile.lock index d24cac78fab..5080203d515 100644 --- a/pkgs/tools/misc/html-proofer/Gemfile.lock +++ b/pkgs/tools/misc/html-proofer/Gemfile.lock @@ -12,7 +12,7 @@ GEM ethon (0.12.0) ffi (>= 1.3.0) ffi (1.11.1) - html-proofer (3.11.0) + html-proofer (3.11.1) activesupport (>= 4.2, < 6.0) addressable (~> 2.3) mercenary (~> 0.3.2) @@ -29,7 +29,7 @@ GEM nokogiri (1.10.3) mini_portile2 (~> 2.4.0) parallel (1.17.0) - public_suffix (3.1.0) + public_suffix (3.1.1) rainbow (3.0.0) thread_safe (0.3.6) typhoeus (1.3.1) diff --git a/pkgs/tools/misc/html-proofer/gemset.nix b/pkgs/tools/misc/html-proofer/gemset.nix index 1d1991dcd92..4777d5d53e6 100644 --- a/pkgs/tools/misc/html-proofer/gemset.nix +++ b/pkgs/tools/misc/html-proofer/gemset.nix @@ -1,8 +1,6 @@ { activesupport = { dependencies = ["concurrent-ruby" "i18n" "minitest" "tzinfo"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "110vp4frgkw3mpzlmshg2f2ig09cknls2w68ym1r1s39d01v0mi8"; @@ -12,8 +10,6 @@ }; addressable = { dependencies = ["public_suffix"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; @@ -22,8 +18,6 @@ version = "2.6.0"; }; concurrent-ruby = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; @@ -33,8 +27,6 @@ }; ethon = { dependencies = ["ffi"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0gggrgkcq839mamx7a8jbnp2h7x2ykfn34ixwskwb0lzx2ak17g9"; @@ -43,8 +35,6 @@ version = "0.12.0"; }; ffi = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "06mvxpjply8qh4j3fj9wh08kdzwkbnvsiysh0vrhlk5cwxzjmblh"; @@ -54,19 +44,15 @@ }; html-proofer = { dependencies = ["activesupport" "addressable" "mercenary" "nokogiri" "parallel" "rainbow" "typhoeus" "yell"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ywgnx7g7fv9f0hbm7xrv55qndvhgvbsp247zyrcg8mfgwxcbd66"; + sha256 = "0kpcz7p0yjr1y9fs8gila2bkgb8y6qkyqv5a8yymw0hkvddnqig4"; type = "gem"; }; - version = "3.11.0"; + version = "3.11.1"; }; i18n = { dependencies = ["concurrent-ruby"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1hfxnlyr618s25xpafw9mypa82qppjccbh292c4l3bj36az7f6wl"; @@ -75,8 +61,6 @@ version = "1.6.0"; }; mercenary = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "10la0xw82dh5mqab8bl0dk21zld63cqxb1g16fk8cb39ylc4n21a"; @@ -85,8 +69,6 @@ version = "0.3.6"; }; mini_portile2 = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "15zplpfw3knqifj9bpf604rb3wc1vhq6363pd6lvhayng8wql5vy"; @@ -95,8 +77,6 @@ version = "2.4.0"; }; minitest = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0icglrhghgwdlnzzp4jf76b0mbc71s80njn5afyfjn4wqji8mqbq"; @@ -106,8 +86,6 @@ }; nokogiri = { dependencies = ["mini_portile2"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "02bjydih0j515szfv9mls195cvpyidh6ixm7dwbl3s2sbaxxk5s4"; @@ -116,8 +94,6 @@ version = "1.10.3"; }; parallel = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1x1gzgjrdlkm1aw0hfpyphsxcx90qgs3y4gmp9km3dvf4hc4qm8r"; @@ -126,18 +102,14 @@ version = "1.17.0"; }; public_suffix = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1c7c5xxkx91hwj4572hbnyvxmydb90q69wlpr2l0dxrmwx2p365l"; + sha256 = "0g9ds2ffzljl6jjmkjffwxc1z6lh5nkqqmhhkxjk71q5ggv0rkpm"; type = "gem"; }; - version = "3.1.0"; + version = "3.1.1"; }; rainbow = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0bb2fpjspydr6x0s8pn1pqkzmxszvkfapv0p4627mywl7ky4zkhk"; @@ -146,8 +118,6 @@ version = "3.0.0"; }; thread_safe = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0nmhcgq6cgz44srylra07bmaw99f5271l0dpsvl5f75m44l0gmwy"; @@ -157,8 +127,6 @@ }; typhoeus = { dependencies = ["ethon"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "0cni8b1idcp0dk8kybmxydadhfpaj3lbs99w5kjibv8bsmip2zi5"; @@ -168,8 +136,6 @@ }; tzinfo = { dependencies = ["thread_safe"]; - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1fjx9j327xpkkdlxwmkl3a8wqj7i4l4jwlrv3z13mg95z9wl253z"; @@ -178,8 +144,6 @@ version = "1.2.5"; }; yell = { - groups = ["default"]; - platforms = []; source = { remotes = ["https://rubygems.org"]; sha256 = "1394pf8wsv4wx2lf1d9iqqx6lcww9bgmgh9sms3dbga804cns0n8"; From 9566171399397ac1d395dce7f9eddb11d6ee505a Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Thu, 18 Jul 2019 01:02:53 +0800 Subject: [PATCH 0604/1611] cargo-xbuild: 0.5.14 -> 0.5.15 --- pkgs/development/tools/rust/cargo-xbuild/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/cargo-xbuild/default.nix b/pkgs/development/tools/rust/cargo-xbuild/default.nix index b349fbc6bd9..aac1cdd904f 100644 --- a/pkgs/development/tools/rust/cargo-xbuild/default.nix +++ b/pkgs/development/tools/rust/cargo-xbuild/default.nix @@ -2,13 +2,13 @@ rustPlatform.buildRustPackage rec { pname = "cargo-xbuild"; - version = "0.5.14"; + version = "0.5.15"; src = fetchFromGitHub { owner = "rust-osdev"; repo = pname; - rev = version; - sha256 = "1f87rz17bdpdipc9x2j4gq1zq181gcshhn7vc9pnn6f487hz0bgq"; + rev = "v${version}"; + sha256 = "0ck3gwgxbg03z864bhqy8vwcpm7al17fm380zsb6ijb1q2sk2r2n"; }; cargoSha256 = "1r9i79lymfwpbcx2lp509v435qpkl9bqly1ya369p41n5yprrcjv"; From 5724dc27d16bbbd1e82a5a488524f4dde9c1d1aa Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 17 Jul 2019 13:05:27 -0400 Subject: [PATCH 0605/1611] jenkins: 2.176.1 -> 2.176.2 --- .../tools/continuous-integration/jenkins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/jenkins/default.nix b/pkgs/development/tools/continuous-integration/jenkins/default.nix index d7822886a5f..04352660a76 100644 --- a/pkgs/development/tools/continuous-integration/jenkins/default.nix +++ b/pkgs/development/tools/continuous-integration/jenkins/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jenkins-${version}"; - version = "2.176.1"; + version = "2.176.2"; src = fetchurl { url = "http://mirrors.jenkins.io/war-stable/${version}/jenkins.war"; - sha256 = "130f9x4fvnf9a9ykf48axj9fgqaj2ssr9jhsflpi1gg78ch6xg4b"; + sha256 = "19chl7dq25hjn73qgx5cd4azs68kg16r30zx563rrppq3hbc79ik"; }; buildCommand = '' From 7b02dd82f84453c7b0c08748b0970759849080c1 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 17 Jul 2019 20:10:16 +0200 Subject: [PATCH 0606/1611] aerc: 0.1.1 -> 0.1.4 --- pkgs/applications/networking/mailreaders/aerc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/aerc/default.nix b/pkgs/applications/networking/mailreaders/aerc/default.nix index e5d8c728a19..0f681c47aa7 100644 --- a/pkgs/applications/networking/mailreaders/aerc/default.nix +++ b/pkgs/applications/networking/mailreaders/aerc/default.nix @@ -5,11 +5,11 @@ buildGoModule rec { pname = "aerc"; - version = "0.1.1"; + version = "0.1.4"; src = fetchurl { url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz"; - sha256 = "0rpwjjnaq8mj619ajzyl3kad7sysbz87qz2ds0jyy7kvyzv6r7zb"; + sha256 = "0vlqgcjbq6yp7ffrfs3zwa9hrm4vyx9245v9pkqdn328xlff3h55"; }; nativeBuildInputs = [ @@ -43,7 +43,7 @@ buildGoModule rec { ${stdenv.lib.makeBinPath [ w3m dante ]} ''; - modSha256 = "0p8lp6xwg6jacrnxzw3q73mqxy9wzj5vs0k1saa48ardqd2f7b00"; + modSha256 = "0v1b76nax5295bjrq19wdzm2ixiszlk7j1v1k9sjz4la07h5bvfj"; meta = with stdenv.lib; { description = "aerc is an email client for your terminal"; From 7d6ab0ad7a5a5b1765a6d70b5df861d14e3c3482 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 17 Jul 2019 15:53:15 -0400 Subject: [PATCH 0607/1611] wrapQtAppsHook: use isELF We should still prevent things like scripts from being wrapped. --- pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh index 775922c1f4c..e7d7d132617 100644 --- a/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh +++ b/pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh @@ -82,6 +82,8 @@ wrapQtAppsHook() { find "$targetDir" -executable -print0 | while IFS= read -r -d '' file do + isELF "$file" || continue + if [ -f "$file" ] then echo "wrapping $file" From 08d10e04dbaa740ffbe7395cbb72fd38440b1ea4 Mon Sep 17 00:00:00 2001 From: Ben Hipple Date: Wed, 17 Jul 2019 20:49:17 +0000 Subject: [PATCH 0608/1611] pythonPackages.mkl-service: init at 2.1.0 --- .../python-modules/mkl-service/default.nix | 26 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 6 +++-- 2 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/python-modules/mkl-service/default.nix diff --git a/pkgs/development/python-modules/mkl-service/default.nix b/pkgs/development/python-modules/mkl-service/default.nix new file mode 100644 index 00000000000..ad3f30a66da --- /dev/null +++ b/pkgs/development/python-modules/mkl-service/default.nix @@ -0,0 +1,26 @@ +{ lib, buildPythonPackage, fetchFromGitHub, cython, mkl, nose, six }: + +buildPythonPackage rec { + pname = "mkl-service"; + version = "2.1.0"; + + src = fetchFromGitHub { + owner = "IntelPython"; + repo = "mkl-service"; + rev = "v${version}"; + sha256 = "1bnpgx629rxqf0yhn0jn68ypj3dqv6njc3981j1g8j8rsm5lycrn"; + }; + + MKLROOT = mkl; + + checkInputs = [ nose ]; + nativeBuildInputs = [ cython ]; + propagatedBuildInputs = [ mkl six ]; + + meta = with lib; { + description = "Python hooks for Intel(R) Math Kernel Library runtime control settings"; + homepage = "https://github.com/IntelPython/mkl-service"; + license = licenses.bsd3; + maintainers = with maintainers; [ bhipple ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b8e85d775f5..778a7476382 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -536,10 +536,12 @@ in { maxminddb = callPackage ../development/python-modules/maxminddb { }; - monty = callPackage ../development/python-modules/monty { }; - mininet-python = (toPythonModule (pkgs.mininet.override{ inherit python; })).py; + mkl-service = callPackage ../development/python-modules/mkl-service { }; + + monty = callPackage ../development/python-modules/monty { }; + mpi4py = callPackage ../development/python-modules/mpi4py { mpi = pkgs.openmpi; }; From 95fadbc06d33977fc402b5df99ea274bace5dc1b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Wed, 17 Jul 2019 16:20:00 -0500 Subject: [PATCH 0609/1611] libxkbcommon: fix build on darwin --- pkgs/development/libraries/libxkbcommon/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index 9b43c449e9a..ec4c904795f 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -20,6 +20,12 @@ stdenv.mkDerivation rec { "-Dx-locale-root=${libX11.out}/share/X11/locale" ]; + # Remove example program which fail on Darwin + postPatch = if stdenv.isDarwin then '' + substituteInPlace meson.build \ + --replace "executable('rmlvo-to-keymap', 'test/rmlvo-to-keymap.c', dependencies: test_dep)" "" + '' else null; + doCheck = false; # fails, needs unicode locale meta = with stdenv.lib; { From ce247b4f9ffbd312db98c7f8b944307a11b775b2 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Wed, 17 Jul 2019 16:25:08 -0500 Subject: [PATCH 0610/1611] all-packages: add static exe alias for haskell 'shake' package Signed-off-by: Austin Seipp --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 68a722b9af8..bde0167c94d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9688,6 +9688,8 @@ in scss-lint = callPackage ../development/tools/scss-lint { }; + shake = haskell.lib.justStaticExecutables haskellPackages.shake; + shallot = callPackage ../tools/misc/shallot { }; shards = callPackage ../development/tools/build-managers/shards { }; From 09b3420b005ff20dd89480bc42aad87ecf402a81 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 17 Jul 2019 21:21:45 -0400 Subject: [PATCH 0611/1611] libargon2: 20171227 -> 20190702 --- pkgs/development/libraries/libargon2/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/libargon2/default.nix b/pkgs/development/libraries/libargon2/default.nix index a1a04a1dd7b..c0dd406dd31 100644 --- a/pkgs/development/libraries/libargon2/default.nix +++ b/pkgs/development/libraries/libargon2/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub }: stdenv.mkDerivation rec { - name = "libargon2-${version}"; - version = "20171227"; + pname = "libargon2"; + version = "20190702"; src = fetchFromGitHub { owner = "P-H-C"; repo = "phc-winner-argon2"; - rev = "${version}"; - sha256 = "0sc9zca1anqk41017vjpas4kxi4cbn0zvicv8vj8p2sb2gy94bh8"; + rev = version; + sha256 = "0p4ry9dn0mi9js0byijxdyiwx74p1nr8zj7wjpd1fjgqva4sk23i"; }; installPhase = '' @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { --replace @HOST_MULTIARCH@ "" \ --replace 'prefix=/usr' "prefix=$out" - make install PREFIX=$out + make install PREFIX=$out LIBRARY_REL=lib ln -s $out/lib/libargon2.so $out/lib/libargon2.so.0 runHook postInstall ''; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { Catena, Lyra2, Makwa and yescrypt were given special recognition. The PHC recommends using Argon2 rather than legacy algorithms. ''; - homepage = https://www.argon2.com/; + homepage = "https://www.argon2.com/"; license = with licenses; [ asl20 cc0 ]; maintainers = with maintainers; [ taeer olynch ]; platforms = platforms.linux ++ platforms.darwin; From e6a3b3b7df8eb87c013560b86830119927ca352b Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 17 Jul 2019 22:18:03 -0400 Subject: [PATCH 0612/1611] kdevelop, kdev-php, kdev-python: 5.3.2 -> 5.3.3 --- pkgs/applications/editors/kdevelop5/kdev-php.nix | 11 ++++------- pkgs/applications/editors/kdevelop5/kdev-python.nix | 11 ++++------- pkgs/applications/editors/kdevelop5/kdevelop.nix | 11 +++++------ 3 files changed, 13 insertions(+), 20 deletions(-) diff --git a/pkgs/applications/editors/kdevelop5/kdev-php.nix b/pkgs/applications/editors/kdevelop5/kdev-php.nix index 085affa5f7e..e6f95f74011 100644 --- a/pkgs/applications/editors/kdevelop5/kdev-php.nix +++ b/pkgs/applications/editors/kdevelop5/kdev-php.nix @@ -1,15 +1,12 @@ { stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, kdevelop-pg-qt }: -let - pname = "kdev-php"; - version = "5.3.2"; -in stdenv.mkDerivation rec { - name = "${pname}-${version}"; + pname = "kdev-php"; + version = "5.3.3"; src = fetchurl { url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz"; - sha256 = "0yjn7y7al2xs8g0mrjvcym8gbjy4wmiv7lsljcrasjd7ymag1wgs"; + sha256 = "0nn3yfbi60h7p7p1w2pvgg098qplbds79rk2iadyvhvl3sjd77wf"; }; nativeBuildInputs = [ cmake extra-cmake-modules ]; @@ -19,7 +16,7 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.aanderse ]; platforms = platforms.linux; description = "PHP support for KDevelop"; - homepage = https://www.kdevelop.org; + homepage = "https://www.kdevelop.org"; license = [ licenses.gpl2 ]; }; } diff --git a/pkgs/applications/editors/kdevelop5/kdev-python.nix b/pkgs/applications/editors/kdevelop5/kdev-python.nix index 4fbf3ed297c..099153995c9 100644 --- a/pkgs/applications/editors/kdevelop5/kdev-python.nix +++ b/pkgs/applications/editors/kdevelop5/kdev-python.nix @@ -1,15 +1,12 @@ { stdenv, lib, fetchurl, cmake, extra-cmake-modules, threadweaver, ktexteditor, kdevelop-unwrapped, python }: -let - pname = "kdev-python"; - version = "5.3.2"; -in stdenv.mkDerivation rec { - name = "${pname}-${version}"; + pname = "kdev-python"; + version = "5.3.3"; src = fetchurl { url = "https://github.com/KDE/${pname}/archive/v${version}.tar.gz"; - sha256 = "0gqv1abzfpxkrf538rb62d2291lmlra8rghm9q9r3x8a46wh96zm"; + sha256 = "0bqsny2jgi6wi1cz65i2j9r1hiwna2x10mzy7vdk8bz7b4z766yg"; }; cmakeFlags = [ @@ -23,7 +20,7 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.aanderse ]; platforms = platforms.linux; description = "Python support for KDevelop"; - homepage = https://www.kdevelop.org; + homepage = "https://www.kdevelop.org"; license = [ licenses.gpl2 ]; }; } diff --git a/pkgs/applications/editors/kdevelop5/kdevelop.nix b/pkgs/applications/editors/kdevelop5/kdevelop.nix index 23ec887ad62..3913b2b1994 100644 --- a/pkgs/applications/editors/kdevelop5/kdevelop.nix +++ b/pkgs/applications/editors/kdevelop5/kdevelop.nix @@ -8,16 +8,15 @@ }: let - pname = "kdevelop"; - version = "5.3.2"; qtVersion = "5.${lib.versions.minor qtbase.version}"; in mkDerivation rec { - name = "${pname}-${version}"; + pname = "kdevelop"; + version = "5.3.3"; src = fetchurl { - url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "0akgdnvrab6mbwnmvgzsplk0qh83k1hnm5xc06yxr1s1a5sxbk08"; + url = "mirror://kde/stable/${pname}/${version}/src/${pname}-${version}.tar.xz"; + sha256 = "0778587qvi268ab2fgggfl40cv2swgr8q891q1paflp3m1xirpff"; }; nativeBuildInputs = [ @@ -76,7 +75,7 @@ mkDerivation rec { programing languages. It is based on KDevPlatform, KDE and Qt libraries and is under development since 1998. ''; - homepage = https://www.kdevelop.org; + homepage = "https://www.kdevelop.org"; license = with licenses; [ gpl2Plus lgpl2Plus ]; }; } From 8250dbb1a99ee96845d88d78a9f4e757302f1730 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Wed, 17 Jul 2019 21:48:42 -0500 Subject: [PATCH 0613/1611] linuxPackages.bpftrace: 0.9 -> 0.9.1 Signed-off-by: Austin Seipp --- pkgs/os-specific/linux/bpftrace/default.nix | 6 +++--- .../os-specific/linux/bpftrace/fix-kernel-include-dir.patch | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/bpftrace/default.nix b/pkgs/os-specific/linux/bpftrace/default.nix index 87355fbcc2e..a2ebc0cdc53 100644 --- a/pkgs/os-specific/linux/bpftrace/default.nix +++ b/pkgs/os-specific/linux/bpftrace/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { name = "bpftrace-${version}"; - version = "0.9"; + version = "0.9.1"; src = fetchFromGitHub { owner = "iovisor"; repo = "bpftrace"; rev = "refs/tags/v${version}"; - sha256 = "1kp6as3i67dnw5v3vc1cj5hmrq6c8pjpg9g38g1qcnc9i6drl1r8"; + sha256 = "17qf1c3h99iyxkc0xzix4jnxwqvxbg9ki23zm7l04qw73lj01g1m"; }; enableParallelBuilding = true; @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { # nicely without wrappers. patchPhase = '' patch -p1 < ${./fix-kernel-include-dir.patch} - substituteInPlace ./src/clang_parser.cpp \ + substituteInPlace ./src/utils.cpp \ --subst-var-by NIX_KERNEL_SRC '${kernel.dev}/lib/modules/${kernel.modDirVersion}' ''; diff --git a/pkgs/os-specific/linux/bpftrace/fix-kernel-include-dir.patch b/pkgs/os-specific/linux/bpftrace/fix-kernel-include-dir.patch index 0c6ffc471ad..bff370d51e2 100644 --- a/pkgs/os-specific/linux/bpftrace/fix-kernel-include-dir.patch +++ b/pkgs/os-specific/linux/bpftrace/fix-kernel-include-dir.patch @@ -8,11 +8,11 @@ Date: Fri May 3 00:47:12 2019 -0500 diff --git a/src/clang_parser.cpp b/src/clang_parser.cpp index b1db8ff..0cfb01f 100644 ---- a/src/clang_parser.cpp -+++ b/src/clang_parser.cpp +--- a/src/utils.cpp ++++ b/src/utils.cpp @@ -140,6 +140,9 @@ static bool is_dir(const std::string& path) // Both ksrc and kobj are guaranteed to be != "", if at least some trace of kernel sources was found. - static std::tuple get_kernel_dirs(const struct utsname& utsname) + std::tuple get_kernel_dirs(const struct utsname& utsname) { + // NB (aseipp): special case the kernel directory for nix + return { "@NIX_KERNEL_SRC@/source", "@NIX_KERNEL_SRC@/build" }; From 6f3fc18606ddcb06d0d01aad0c7eefa0723e14bc Mon Sep 17 00:00:00 2001 From: Ding Xiang Fei Date: Wed, 17 Jul 2019 23:19:08 +0800 Subject: [PATCH 0614/1611] wasilibc: 20190413 -> 20190712 --- pkgs/development/libraries/wasilibc/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/wasilibc/default.nix b/pkgs/development/libraries/wasilibc/default.nix index 229d67b81ed..fb8c0e0fa21 100644 --- a/pkgs/development/libraries/wasilibc/default.nix +++ b/pkgs/development/libraries/wasilibc/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, lib }: stdenv.mkDerivation { - name = "wasilibc-20190413"; + name = "wasilibc-20190712"; src = fetchFromGitHub { owner = "CraneStation"; - repo = "wasi-sysroot"; - rev = "079d7bda78bc0ad8f69c1594444b54786545ce57"; - sha256 = "09s906bc9485wzkgibnpfh0mii7jkldzr1a6g8k7ch0si8rshi5r"; + repo = "wasi-libc"; + rev = "8df0d4cd6a559b58d4a34b738a5a766b567448cf"; + sha256 = "1n4gvgzacpagar2mx8g9950q0brnhwz7jg2q44sa5mnjmlnkiqhh"; }; makeFlags = [ "WASM_CC=${stdenv.cc.targetPrefix}cc" From e1f2fec9295c1c35628e9d1b470c84a15fbf6ac8 Mon Sep 17 00:00:00 2001 From: Markus Bockhacker Date: Thu, 18 Jul 2019 09:11:25 +0200 Subject: [PATCH 0615/1611] remove myself since I don't use this anymore, and cannot maintain it. #65009 --- maintainers/maintainer-list.nix | 5 ----- pkgs/applications/misc/keepassx/community.nix | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index c70cfe007d5..64af122e75a 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4537,11 +4537,6 @@ github = "rzetterberg"; name = "Richard Zetterberg"; }; - s1lvester = { - email = "s1lvester@bockhacker.me"; - github = "s1lvester"; - name = "Markus Silvester"; - }; samdroid-apps = { email = "sam@sam.today"; github = "samdroid-apps"; diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassx/community.nix index 7a154e85a6e..3a734253848 100644 --- a/pkgs/applications/misc/keepassx/community.nix +++ b/pkgs/applications/misc/keepassx/community.nix @@ -112,7 +112,7 @@ stdenv.mkDerivation rec { longDescription = "A community fork of KeePassX, which is itself a port of KeePass Password Safe. The goal is to extend and improve KeePassX with new features and bugfixes to provide a feature-rich, fully cross-platform and modern open-source password manager. Accessible via native cross-platform GUI, CLI, and browser integration with the KeePassXC Browser Extension (https://github.com/keepassxreboot/keepassxc-browser)."; homepage = https://keepassxc.org/; license = licenses.gpl2; - maintainers = with maintainers; [ s1lvester jonafato ]; + maintainers = with maintainers; [ jonafato ]; platforms = with platforms; linux ++ darwin; }; } From 18183e81b04f06de96af5346e763b60cbcc6e902 Mon Sep 17 00:00:00 2001 From: gnidorah Date: Wed, 10 Jul 2019 13:59:54 +0300 Subject: [PATCH 0616/1611] midisheetmusic: always bring timidity dependency --- pkgs/applications/audio/midisheetmusic/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/audio/midisheetmusic/default.nix b/pkgs/applications/audio/midisheetmusic/default.nix index 448977e5705..dd8b28fc2d8 100644 --- a/pkgs/applications/audio/midisheetmusic/default.nix +++ b/pkgs/applications/audio/midisheetmusic/default.nix @@ -47,6 +47,7 @@ in stdenv.mkDerivation { makeWrapper ${mono}/bin/mono $out/bin/midisheetmusic.mono.exe \ --prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ gtk2 cups ]} \ + --prefix PATH : ${stdenv.lib.makeBinPath [ timidity ]} \ --add-flags $out/bin/.MidiSheetMusic.exe ''; From c4b1ceb5a7c9a93062be1dec041370a8eaeb0999 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 18 Jul 2019 10:41:14 +0200 Subject: [PATCH 0617/1611] cachix: fix #65007 --- pkgs/development/tools/cachix/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/cachix/default.nix b/pkgs/development/tools/cachix/default.nix index 58a0da813f7..b6098ca98bf 100644 --- a/pkgs/development/tools/cachix/default.nix +++ b/pkgs/development/tools/cachix/default.nix @@ -1,8 +1,6 @@ { haskellPackages, haskell }: -haskell.lib.justStaticExecutables (haskellPackages.override { - overrides = self: super: { +haskell.lib.justStaticExecutables (haskellPackages.extend (self: super: { cachix = haskell.lib.doDistribute (self.cachix_0_2_1 or self.cachix); cachix-api = self.cachix-api_0_2_1 or self.cachix-api; - }; -}).cachix +})).cachix From b0a961e6fabc1c5aebef88e20111d21424031501 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 18 Jul 2019 12:32:39 +0300 Subject: [PATCH 0618/1611] lutris: refactor, fix icons * Split the package into wrapped and unwrapped versions; * Use FHS chrootenv for libraries instead of adding them to LD_LIBRARY_PATH; * Fix wrapping so that icons now work. --- pkgs/applications/misc/lutris/chrootenv.nix | 116 ++++++++++ pkgs/applications/misc/lutris/default.nix | 224 +++++--------------- pkgs/top-level/all-packages.nix | 10 +- 3 files changed, 183 insertions(+), 167 deletions(-) create mode 100644 pkgs/applications/misc/lutris/chrootenv.nix diff --git a/pkgs/applications/misc/lutris/chrootenv.nix b/pkgs/applications/misc/lutris/chrootenv.nix new file mode 100644 index 00000000000..b83b01a22d5 --- /dev/null +++ b/pkgs/applications/misc/lutris/chrootenv.nix @@ -0,0 +1,116 @@ +{ buildFHSUserEnv, lutris-unwrapped +, optimusSupport ? false +, nvidiaSmiSupport ? false +, steamSupport ? true +}: + +let + + qt5Deps = pkgs: with pkgs.qt5; [ qtbase qtmultimedia ]; + gnome3Deps = pkgs: with pkgs.gnome3; [ zenity gtksourceview gnome-desktop libgnome-keyring webkitgtk ]; + xorgDeps = pkgs: with pkgs.xorg; [ + libX11 libXrender libXrandr libxcb libXmu libpthreadstubs libXext libXdmcp + libXxf86vm libXinerama libSM libXv libXaw libXi libXcursor libXcomposite + xrandr + ]; + + lutris_ = lutris-unwrapped.override { + inherit optimusSupport nvidiaSmiSupport steamSupport; + }; + +in buildFHSUserEnv { + name = "lutris"; + + runScript = "lutris"; + + targetPkgs = pkgs: with pkgs; [ + lutris_ + + # Common + libsndfile libtheora libogg libvorbis libopus libGLU libpcap libpulseaudio + libao libusb libevdev libudev libgcrypt libxml2 libusb libpng libmpeg2 libv4l + libjpeg libxkbcommon libass libcdio libjack2 libsamplerate libzip libmad libaio + libcap libtiff libva libgphoto2 libxslt libtxc_dxtn libsndfile giflib zlib glib + alsaLib zziplib bash dbus keyutils zip cabextract freetype unzip coreutils + readline gcc SDL SDL2 curl graphite2 gtk2 gtk3 udev ncurses wayland libglvnd + vulkan-loader xdg_utils sqlite + + # Adventure Game Studio + allegro dumb + + # Desmume + lua agg soundtouch openal desktop-file-utils pangox_compat atk + + # DGen // TODO: libarchive is broken + + # Dolphin + bluez ffmpeg gettext portaudio wxGTK30 miniupnpc mbedtls lzo sfml gsm + wavpack gnutls-kdh orc nettle gmp pcre vulkan-loader + + # DOSBox + SDL_net SDL_sound + + # GOG + glib-networking + + # Higan // TODO: "higan is not available for the x86_64 architecture" + + # Libretro + fluidsynth hidapi mesa libdrm + + # MAME + qt48 fontconfig SDL2_ttf + + # Mednafen + freeglut mesa_glu + + # MESS + expat + + # Minecraft + nss + + # Mupen64Plus + boost dash + + # Osmose + qt4 + + # PCSX2 // TODO: "libgobject-2.0.so.0: wrong ELF class: ELFCLASS64" + + # PPSSPP + glew snappy + + # Redream // "redream is not available for the x86_64 architecture" + + # ResidualVM + flac + + # rpcs3 // TODO: "error while loading shared libraries: libz.so.1..." + llvm_4 + + # ScummVM + nasm sndio + + # Snes9x + epoxy minizip + + # Vice + bison flex + + # WINE + perl which p7zip gnused gnugrep psmisc cups lcms2 mpg123 cairo unixODBC + samba4 sane-backends openldap opencl-headers ocl-icd utillinux + + # ZDOOM + soundfont-fluid bzip2 game-music-emu + ] ++ qt5Deps pkgs + ++ gnome3Deps pkgs + ++ xorgDeps pkgs; + + extraInstallCommands = '' + mkdir -p $out/share + ln -sf ${lutris_}/share/applications $out/share + ln -sf ${lutris_}/share/icons $out/share + ''; +} diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index 5a74bd931c0..3315ad4ccf8 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -1,178 +1,70 @@ -{ stdenv, pkgs, buildFHSUserEnv, makeDesktopItem, fetchFromGitHub -, wrapGAppsHook, python3Packages }: +{ buildPythonApplication, lib, fetchFromGitHub +, wrapGAppsHook, gobject-introspection, gnome-desktop, libnotify, libgnome-keyring, pango +, gdk_pixbuf, atk, webkitgtk, gst_all_1 +, evdev, pyyaml, pygobject3, requests, pillow +, xrandr, pciutils, psmisc, glxinfo, vulkan-tools, xboxdrv, pulseaudio, p7zip, xgamma +, libstrangle, wine, fluidsynth +, optimusSupport ? false, primus, bumblebee +, nvidiaSmiSupport ? false, nvidia_x11 +, steamSupport ? true, steam +}: let - qt5Deps = with pkgs; with qt5; [ qtbase qtmultimedia ]; - gnome3Deps = with pkgs; with gnome3; [ zenity gtksourceview gnome-desktop libgnome-keyring webkitgtk ]; + # See lutris/util/linux.py + binPath = lib.makeBinPath ([ + xrandr + pciutils + psmisc + glxinfo + vulkan-tools + xboxdrv + pulseaudio + p7zip + xgamma + libstrangle + wine + fluidsynth + ] ++ lib.optionals optimusSupport [ primus bumblebee ] + ++ lib.optional nvidiaSmiSupport nvidia_x11 + ++ lib.optional steamSupport steam); - python3Deps = with pkgs; with python3Packages; [ - evdev pyyaml pyxdg pygobject3 pyqt5 dbus-python requests pillow - ]; - - xorgDeps = with pkgs; with xorg; [ - libX11 libXrender libXrandr libxcb libXmu libpthreadstubs libXext libXdmcp - libXxf86vm libXinerama libSM libXv libXaw libXi libXcursor libXcomposite - xrandr xdg_utils - ]; - - gstDeps = with pkgs; with gst_all_1; [ + gstDeps = with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ]; - deps = with pkgs; [ - # Common - stdenv.cc.cc libGL libGLU_combined libsndfile libtheora libogg libvorbis - libopus libGLU libpcap libpulseaudio libao libusb libevdev libudev libgcrypt - libxml2 libusb libpng libmpeg2 libv4l libjpeg libxkbcommon libass libcdio - libjack2 libsamplerate libzip libmad libaio libcap libtiff libva libgphoto2 - libxslt libtxc_dxtn libsndfile giflib zlib glib alsaLib zziplib bash dbus - keyutils zip cabextract freetype unzip coreutils readline gcc SDL SDL2 curl - graphite2 gtk2 gtk3 udev ncurses wayland libglvnd vulkan-loader +in buildPythonApplication rec { + name = "lutris-original-${version}"; + version = "0.5.2.1"; - # Lutris - gobject-introspection gdk_pixbuf hicolor-icon-theme pango openssl sqlite xterm libnotify procps - - # Adventure Game Studio - allegro dumb - - # Desmume - lua agg soundtouch openal desktop-file-utils pangox_compat atk - - # DGen // TODO: libarchive is broken - - # Dolphin - bluez ffmpeg gettext portaudio wxGTK30 miniupnpc mbedtls lzo sfml gsm - wavpack gnutls-kdh orc nettle gmp pcre vulkan-loader - - # DOSBox - SDL_net SDL_sound - - # GOG - glib-networking - - # Higan // TODO: "higan is not available for the x86_64 architecture" - - # Libretro - fluidsynth hidapi mesa libdrm - - # MAME - qt48 fontconfig SDL2_ttf - - # Mednafen - freeglut mesa_glu - - # MESS - expat - - # Minecraft - nss - - # Mupen64Plus - boost dash - - # Osmose - qt4 - - # PCSX2 // TODO: "libgobject-2.0.so.0: wrong ELF class: ELFCLASS64" - - # PPSSPP - glew snappy - - # Redream // "redream is not available for the x86_64 architecture" - - # ResidualVM - flac - - # rpcs3 // TODO: "error while loading shared libraries: libz.so.1..." - llvm_4 - - # ScummVM - nasm sndio - - # Snes9x - epoxy minizip - - # Steam - steam - - # Vice - bison flex - - # WINE - perl which p7zip gnused gnugrep psmisc cups lcms2 mpg123 cairo unixODBC - samba4 sane-backends openldap opencl-headers ocl-icd utillinux - - wineWowPackages.staging - - # ZDOOM - soundfont-fluid bzip2 game-music-emu - ] ++ qt5Deps - ++ gnome3Deps - ++ python3Deps - ++ xorgDeps - ++ gstDeps; - - lutris = python3Packages.buildPythonApplication rec { - name = "lutris-original-${version}"; - version = "0.5.2.1"; - - src = fetchFromGitHub { - owner = "lutris"; - repo = "lutris"; - rev = "v${version}"; - sha256 = "023yqnzmnkfpq21r6ky6jzwbjxjcw1a5zqrrdl6fwwlr78fdhgpv"; - }; - - enableParallelBuilding = true; - nativeBuildInputs = [ wrapGAppsHook ]; - propagatedBuildInputs = deps; - fullPath = stdenv.lib.makeLibraryPath deps; - preConfigure = "export HOME=$PWD"; - - makeWrapperArgs = [ - "--prefix LD_LIBRARY_PATH : ${fullPath}:$out/lib" - "--set GI_TYPELIB_PATH $GI_TYPELIB_PATH" - "--prefix XDG_DATA_DIRS : $out/share" - "--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" - ]; - - postInstall = '' - mkdir -p $out/lib - ln -sf ${pkgs.gsm}/lib/libgsm.so $out/lib/libgsm.so.1 - mv $out/bin/lutris $out/bin/lutris-${version} - ''; - - meta = with stdenv.lib; { - homepage = "https://lutris.net"; - description = "Open Source gaming platform for GNU/Linux"; - license = licenses.gpl3; - maintainers = with maintainers; [ chiiruno ]; - platforms = platforms.linux; - }; + src = fetchFromGitHub { + owner = "lutris"; + repo = "lutris"; + rev = "v${version}"; + sha256 = "023yqnzmnkfpq21r6ky6jzwbjxjcw1a5zqrrdl6fwwlr78fdhgpv"; }; - desktopItem = makeDesktopItem { - name = "Lutris"; - exec = "lutris"; - icon = "lutris"; - comment = lutris.meta.description; - desktopName = "Lutris"; - genericName = "Gaming Platform"; - categories = "Network;Game;Emulator;"; - startupNotify = "false"; + buildInputs = [ + wrapGAppsHook gobject-introspection gnome-desktop libnotify libgnome-keyring pango + gdk_pixbuf atk webkitgtk + ] ++ gstDeps; + + makeWrapperArgs = [ + "--prefix PATH : ${binPath}" + ]; + + propagatedBuildInputs = [ + evdev pyyaml pygobject3 requests pillow + ]; + + preCheck = "export HOME=$PWD"; + + meta = with lib; { + homepage = "https://lutris.net"; + description = "Open Source gaming platform for GNU/Linux"; + license = licenses.gpl3; + maintainers = with maintainers; [ chiiruno ]; + platforms = platforms.linux; }; - -in buildFHSUserEnv rec { - name = "lutris"; - - runScript = "lutris-${lutris.version}"; - targetPkgs = pkgs: [ lutris pkgs.glxinfo pkgs.pciutils ]; - passthru.lutris = lutris; - - extraInstallCommands = '' - mkdir -p $out/share - cp -r ${desktopItem}/share/applications $out/share - ln -sf ${lutris}/share/icons $out/share - ''; } + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 70cce050b2f..f1c6b3a0fc9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19009,7 +19009,15 @@ in luppp = callPackage ../applications/audio/luppp { }; - lutris = callPackage ../applications/misc/lutris { }; + lutris-unwrapped = python3.pkgs.callPackage ../applications/misc/lutris { + inherit (gnome3) gnome-desktop libgnome-keyring webkitgtk; + nvidia_x11 = linuxPackages.nvidia_x11; + wine = wineWowPackages.staging; + }; + lutris = callPackage ../applications/misc/lutris/chrootenv.nix { }; + lutris-free = lutris.override { + steamSupport = false; + }; lv2bm = callPackage ../applications/audio/lv2bm { }; From 48d98b02f6a1e15b2280fc3099c0feedccd84399 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 18 Jul 2019 12:42:28 +0300 Subject: [PATCH 0619/1611] lutris: use optimus and nvidia from environment That's the correct way because these should be enabled with NixOS modules. --- pkgs/applications/misc/lutris/chrootenv.nix | 17 ++++++----------- pkgs/applications/misc/lutris/default.nix | 12 ++++-------- pkgs/top-level/all-packages.nix | 1 - 3 files changed, 10 insertions(+), 20 deletions(-) diff --git a/pkgs/applications/misc/lutris/chrootenv.nix b/pkgs/applications/misc/lutris/chrootenv.nix index b83b01a22d5..a02639e1668 100644 --- a/pkgs/applications/misc/lutris/chrootenv.nix +++ b/pkgs/applications/misc/lutris/chrootenv.nix @@ -1,6 +1,4 @@ -{ buildFHSUserEnv, lutris-unwrapped -, optimusSupport ? false -, nvidiaSmiSupport ? false +{ lib, buildFHSUserEnv, lutris-unwrapped , steamSupport ? true }: @@ -14,17 +12,13 @@ let xrandr ]; - lutris_ = lutris-unwrapped.override { - inherit optimusSupport nvidiaSmiSupport steamSupport; - }; - in buildFHSUserEnv { name = "lutris"; runScript = "lutris"; targetPkgs = pkgs: with pkgs; [ - lutris_ + lutris-unwrapped # Common libsndfile libtheora libogg libvorbis libopus libGLU libpcap libpulseaudio @@ -106,11 +100,12 @@ in buildFHSUserEnv { soundfont-fluid bzip2 game-music-emu ] ++ qt5Deps pkgs ++ gnome3Deps pkgs - ++ xorgDeps pkgs; + ++ xorgDeps pkgs + ++ lib.optional steamSupport pkgs.steam; extraInstallCommands = '' mkdir -p $out/share - ln -sf ${lutris_}/share/applications $out/share - ln -sf ${lutris_}/share/icons $out/share + ln -sf ${lutris-unwrapped}/share/applications $out/share + ln -sf ${lutris-unwrapped}/share/icons $out/share ''; } diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index 3315ad4ccf8..0f2274ad259 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -3,15 +3,12 @@ , gdk_pixbuf, atk, webkitgtk, gst_all_1 , evdev, pyyaml, pygobject3, requests, pillow , xrandr, pciutils, psmisc, glxinfo, vulkan-tools, xboxdrv, pulseaudio, p7zip, xgamma -, libstrangle, wine, fluidsynth -, optimusSupport ? false, primus, bumblebee -, nvidiaSmiSupport ? false, nvidia_x11 -, steamSupport ? true, steam +, libstrangle, wine, fluidsynth, xorgserver }: let # See lutris/util/linux.py - binPath = lib.makeBinPath ([ + binPath = lib.makeBinPath [ xrandr pciutils psmisc @@ -24,9 +21,8 @@ let libstrangle wine fluidsynth - ] ++ lib.optionals optimusSupport [ primus bumblebee ] - ++ lib.optional nvidiaSmiSupport nvidia_x11 - ++ lib.optional steamSupport steam); + xorgserver + ]; gstDeps = with gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f1c6b3a0fc9..a31ac26df23 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19011,7 +19011,6 @@ in lutris-unwrapped = python3.pkgs.callPackage ../applications/misc/lutris { inherit (gnome3) gnome-desktop libgnome-keyring webkitgtk; - nvidia_x11 = linuxPackages.nvidia_x11; wine = wineWowPackages.staging; }; lutris = callPackage ../applications/misc/lutris/chrootenv.nix { }; From c51cbfdfbc948158f930894ad63775e007432f55 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 18 Jul 2019 11:56:31 +0200 Subject: [PATCH 0620/1611] pythonPackages.glances: 3.1.0 -> 3.1.1 Note/TODO: The IP plugin fails in the sandbox: Error while initializing the ip plugin ('NoneType' object has no attribute 'split') but works outside of the build sandbox (i.e. in a normal setup). --- .../python-modules/glances/default.nix | 17 +++++++++++------ .../glances/skip-failing-tests.patch | 8 ++++++++ 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/glances/default.nix b/pkgs/development/python-modules/glances/default.nix index 9670428a3e5..dd5d90bb968 100644 --- a/pkgs/development/python-modules/glances/default.nix +++ b/pkgs/development/python-modules/glances/default.nix @@ -1,28 +1,33 @@ { buildPythonPackage, fetchFromGitHub, isPyPy, lib , psutil, setuptools, bottle, batinfo, pysnmp -, hddtemp +, hddtemp, future +# Optional dependencies: +, netifaces # IP module +# Tests: , unittest2 }: buildPythonPackage rec { name = "glances-${version}"; - version = "3.1.0"; + version = "3.1.1"; disabled = isPyPy; src = fetchFromGitHub { owner = "nicolargo"; repo = "glances"; rev = "v${version}"; - sha256 = "0zjpp017i8b8bijdaj85rya7rmdqh4g8vkb42q14q2sw6agxz3zi"; + sha256 = "1x9gw7hzw3p8zki82wdf359yxj0ylfw2096a4y621kj0p4xqsr4q"; }; + # Some tests fail in the sandbox (they e.g. require access to /sys/class/power_supply): patches = lib.optional doCheck ./skip-failing-tests.patch; - # Requires access to /sys/class/power_supply doCheck = true; + checkInputs = [ unittest2 ]; - buildInputs = [ unittest2 ]; - propagatedBuildInputs = [ psutil setuptools bottle batinfo pysnmp hddtemp ]; + propagatedBuildInputs = [ psutil setuptools bottle batinfo pysnmp hddtemp future + netifaces + ]; preConfigure = '' sed -i 's/data_files\.append((conf_path/data_files.append(("etc\/glances"/' setup.py; diff --git a/pkgs/development/python-modules/glances/skip-failing-tests.patch b/pkgs/development/python-modules/glances/skip-failing-tests.patch index f47f1218aea..e3116af6a2c 100644 --- a/pkgs/development/python-modules/glances/skip-failing-tests.patch +++ b/pkgs/development/python-modules/glances/skip-failing-tests.patch @@ -50,3 +50,11 @@ diff --git a/unitest.py b/unitest.py def test_006_swap(self): """Check MEMSWAP plugin.""" stats_to_check = ['used', 'free', 'total'] +@@ -191,6 +196,7 @@ class TestGlances(unittest.TestCase): + self.assertTrue(type(stats_grab) is list, msg='Folders stats is not a list') + print('INFO: Folders stats: %s' % stats_grab) + ++ @unittest.skip("Fails on NixOS (TODO)") + def test_012_ip(self): + """Check IP plugin.""" + print('INFO: [TEST_012] Check IP stats') From 6b6a9ac5005303edaff9c587b64c3742204067e9 Mon Sep 17 00:00:00 2001 From: cw <789@webuhu.at> Date: Thu, 18 Jul 2019 15:09:09 +0200 Subject: [PATCH 0621/1611] elixir_1_9: 1.9.0 -> 1.9.1 --- pkgs/development/interpreters/elixir/1.9.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/elixir/1.9.nix b/pkgs/development/interpreters/elixir/1.9.nix index 622f2343c6e..41601eeaa11 100644 --- a/pkgs/development/interpreters/elixir/1.9.nix +++ b/pkgs/development/interpreters/elixir/1.9.nix @@ -1,7 +1,7 @@ { mkDerivation }: mkDerivation rec { - version = "1.9.0"; - sha256 = "0yfqh07wjgm10v6acn5pw8l8jndjly5kpzgw4harlj81wcaymlsw"; + version = "1.9.1"; + sha256 = "106s2a3dykc5iwfrd5icqd737yfzaz1dw4x5v1j5z2fvf46h96dx"; minimumOTPVersion = "20"; } From 562b5061a7d33b830004df4d4296be3be5baf9f4 Mon Sep 17 00:00:00 2001 From: fuwa Date: Fri, 19 Jul 2019 04:03:51 +0800 Subject: [PATCH 0622/1611] nixos/tor: fix obfs4 package --- nixos/modules/services/security/tor.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/security/tor.nix b/nixos/modules/services/security/tor.nix index 6f4852c3ba1..abdc0cd78b4 100644 --- a/nixos/modules/services/security/tor.nix +++ b/nixos/modules/services/security/tor.nix @@ -81,7 +81,7 @@ let ${optionalString (elem cfg.relay.role ["bridge" "private-bridge"]) '' BridgeRelay 1 - ServerTransportPlugin ${concatStringsSep "," cfg.relay.bridgeTransports} exec ${obfs4}/bin/obfs4proxy managed + ServerTransportPlugin ${concatStringsSep "," cfg.relay.bridgeTransports} exec ${pkgs.obfs4}/bin/obfs4proxy managed ExtORPort auto ${optionalString (cfg.relay.role == "private-bridge") '' ExtraInfoStatistics 0 From eed1c4d0deeb678fefc38060182c409e3f548ec9 Mon Sep 17 00:00:00 2001 From: elseym Date: Thu, 18 Jul 2019 16:24:20 +0200 Subject: [PATCH 0623/1611] plex: 1.16.1.1291 -> 1.16.2.1321 --- pkgs/servers/plex/raw.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix index 64ce1c4a0bb..d5aea241484 100644 --- a/pkgs/servers/plex/raw.nix +++ b/pkgs/servers/plex/raw.nix @@ -8,14 +8,14 @@ # server, and the FHS userenv and corresponding NixOS module should # automatically pick up the changes. stdenv.mkDerivation rec { - version = "1.16.1.1291-158e5b199"; + version = "1.16.2.1321-ad17d5f9e"; pname = "plexmediaserver"; name = "${pname}-${version}"; # Fetch the source src = fetchurl { url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm"; - sha256 = "0abmky8xvmmwvmpcxx7szdwlq07xb43sbvbv3k72y1yha0nsdqhp"; + sha256 = "0h3qw563fa296crbcnarykk3lq7qp1v4znzzylbmy87li1rd77a9"; }; outputs = [ "out" "basedb" ]; From ac8dc5d13c2981408b32632a526f42611bfd0c97 Mon Sep 17 00:00:00 2001 From: 0x4A6F <0x4A6F@users.noreply.github.com> Date: Thu, 18 Jul 2019 16:54:00 +0000 Subject: [PATCH 0624/1611] routinator: 0.4.0 -> 0.5.0 --- pkgs/servers/routinator/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/routinator/default.nix b/pkgs/servers/routinator/default.nix index 76e469fe6e0..903f38617fc 100644 --- a/pkgs/servers/routinator/default.nix +++ b/pkgs/servers/routinator/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "routinator"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "NLnetLabs"; repo = pname; rev = "v${version}"; - sha256 = "0ldnak1jszfkwya0aci7ns3293y45jp7iirilnqypklsmmm108r4"; + sha256 = "075dp092pgwnky96smv5v6sx9vj7hd5bif8rb1q4x6077ci5jixw"; }; - cargoSha256 = "0yx5sanblalh5q06cn0mrf5bc5518y1awmvyi5yhh55cz6bg6h1m"; + cargoSha256 = "0qxp3pjmrr53n59c2wcdnbqgk259zcj9gd11wpqf7kj3wlzrnwvy"; meta = with stdenv.lib; { description = "An RPKI Validator written in Rust"; From 5d86f9a9ce86be51f20d213a43e96f8694f08169 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 18 Jul 2019 01:54:07 +0000 Subject: [PATCH 0625/1611] nccl: 2.4.2-1 -> 2.4.8-1 --- pkgs/development/libraries/science/math/nccl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/science/math/nccl/default.nix b/pkgs/development/libraries/science/math/nccl/default.nix index a099b779a78..c9aeb83c469 100644 --- a/pkgs/development/libraries/science/math/nccl/default.nix +++ b/pkgs/development/libraries/science/math/nccl/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "nccl-${version}-cuda-${cudatoolkit.majorVersion}"; - version = "2.4.2-1"; + version = "2.4.8-1"; src = fetchFromGitHub { owner = "NVIDIA"; repo = "nccl"; rev = "v${version}"; - sha256 = "0aa4gv51nbmmdhx6vp40l249m4arp30sijrn6kwxdfi1k9kajiq5"; + sha256 = "05m66y64rgsdyybvjybhy6clikwv438b1m484ikai78fb2b7mvyq"; }; outputs = [ "out" "dev" ]; From 7f249190c99c6db29b621b12f13273d7e8316523 Mon Sep 17 00:00:00 2001 From: Michael Peyton Jones Date: Thu, 18 Jul 2019 18:16:26 +0100 Subject: [PATCH 0626/1611] asciidoctor: disable epubcheck by default (#65018) `epubcheck` pulls in Java, which can be problematic on some platforms, and some fairly core software uses asciidoctor to build docs. --- pkgs/top-level/all-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d388baed8f2..b828002830b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1944,7 +1944,12 @@ in enableExtraPlugins = true; }); - asciidoctor = callPackage ../tools/typesetting/asciidoctor { kindlegen = null; }; + asciidoctor = callPackage ../tools/typesetting/asciidoctor { + # kindlegen is unfree, don't enable by default + kindlegen = null; + # epubcheck pulls in Java, which is problematic on some platforms + epubcheck = null; + }; asunder = callPackage ../applications/audio/asunder { }; From 683a10fe08ccfa8c47f01d39219b8b3bf90d028b Mon Sep 17 00:00:00 2001 From: Sarunas Valaskevicius Date: Thu, 18 Jul 2019 19:40:19 +0100 Subject: [PATCH 0627/1611] electron_5: fix crash when using file chooser dialog --- pkgs/development/tools/electron/5.x.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/electron/5.x.nix b/pkgs/development/tools/electron/5.x.nix index ba97587c5af..9da68f4dc46 100644 --- a/pkgs/development/tools/electron/5.x.nix +++ b/pkgs/development/tools/electron/5.x.nix @@ -1,4 +1,4 @@ -{ stdenv, libXScrnSaver, makeWrapper, fetchurl, unzip, atomEnv, libuuid, at-spi2-atk, at-spi2-core }: +{ stdenv, libXScrnSaver, makeWrapper, fetchurl, wrapGAppsHook, gtk3, unzip, atomEnv, libuuid, at-spi2-atk, at-spi2-core }: let version = "5.0.0"; @@ -35,7 +35,15 @@ let }; }.${stdenv.hostPlatform.system} or throwSystem; - buildInputs = [ unzip makeWrapper ]; + buildInputs = [ gtk3 ]; + + nativeBuildInputs = [ + unzip + makeWrapper + wrapGAppsHook + ]; + + dontWrapGApps = true; # electron is in lib, we need to wrap it manually buildCommand = '' mkdir -p $out/lib/electron $out/bin @@ -50,7 +58,8 @@ let $out/lib/electron/electron wrapProgram $out/lib/electron/electron \ - --prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1 + --prefix LD_PRELOAD : ${stdenv.lib.makeLibraryPath [ libXScrnSaver ]}/libXss.so.1 \ + "''${gappsWrapperArgs[@]}" ''; }; From d345900b982e294a16ad5ee4e57dd13ece9234bd Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 18 Jul 2019 21:31:38 +0200 Subject: [PATCH 0628/1611] androidStudioPackages.beta: 3.5.0.17 -> 3.5.0.18 --- pkgs/applications/editors/android-studio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix index 28d4d000a37..63c6d26df8e 100644 --- a/pkgs/applications/editors/android-studio/default.nix +++ b/pkgs/applications/editors/android-studio/default.nix @@ -13,9 +13,9 @@ let sha256Hash = "090rc307mfm0yw4h592l9307lq4aas8zq0ci49csn6kxhds8rsrm"; }; betaVersion = { - version = "3.5.0.17"; # "Android Studio 3.5 Beta 5" - build = "191.5675373"; - sha256Hash = "0iw9v2rzr32dhs3z4vgz93zvxcv111q4cvwzi2cb83hn8kl050ip"; + version = "3.5.0.18"; # "Android Studio 3.5 RC 1" + build = "191.5717577"; + sha256Hash = "1p0w7xrfk33m1wvwnc3s3s7w9rm8wn9b3bjn566w2qpjv5ngdkn3"; }; latestVersion = { # canary & dev version = "3.6.0.3"; # "Android Studio 3.6 Canary 3" From 2f56bec54ffca5c5976a7dde462a3683b5f5c2a5 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 18 Jul 2019 16:20:00 -0500 Subject: [PATCH 0629/1611] flow: 0.102.0 -> 0.103.0 --- pkgs/development/tools/analysis/flow/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index 80cfd6231bf..e7ec4cb66fb 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "flow"; - version = "0.102.0"; + version = "0.103.0"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "refs/tags/v${version}"; - sha256 = "1c49pjzrpcymkvs8vcmb16wd9h1mm62k6w82mibywvhhy8hva1gf"; + sha256 = "09hv483ika2h2jrix4wxb82i4lby6kkqk20yk70vb6xarqb267i7"; }; installPhase = '' @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { install -Dm644 resources/shell/bash-completion $out/share/bash-completion/completions/flow ''; - buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ]) + buildInputs = (with ocamlPackages; [ ocaml findlib ocamlbuild dtoa core_kernel sedlex ocaml_lwt lwt_log lwt_ppx ppx_deriving ppx_gen_rec ppx_tools_versioned visitors wtf8 ocaml-migrate-parsetree ]) ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices ]; meta = with stdenv.lib; { From d7ef88bc38dfa5ec7d7d640d4e1cf406590554ba Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Thu, 18 Jul 2019 23:16:47 +0200 Subject: [PATCH 0630/1611] fira-code: 1.206 -> 1.207 --- pkgs/data/fonts/fira-code/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/fira-code/default.nix b/pkgs/data/fonts/fira-code/default.nix index b0b58b0ebfc..09bae8cbea5 100644 --- a/pkgs/data/fonts/fira-code/default.nix +++ b/pkgs/data/fonts/fira-code/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchzip }: let - version = "1.206"; + version = "1.207"; in fetchzip { name = "fira-code-${version}"; @@ -12,7 +12,7 @@ in fetchzip { unzip -j $downloadedFile \*.otf -d $out/share/fonts/opentype ''; - sha256 = "0074d8q4m802f5yms8yxdx4rdz5xnpgv1w5hs330zg2p9ksicgzy"; + sha256 = "13w2jklqndria2plgangl5gi56v1cj5ja9vznh9079kqnvq0cffz"; meta = with stdenv.lib; { homepage = https://github.com/tonsky/FiraCode; From 574cb4a8df066a4a8e9cb3eb19b6b02588fffd5e Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 18 Jul 2019 23:42:32 +0200 Subject: [PATCH 0631/1611] erlang: remove wx conditional The wxmac build has been fixed and there's erlang_nox now. --- pkgs/development/interpreters/erlang/generic-builder.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/erlang/generic-builder.nix b/pkgs/development/interpreters/erlang/generic-builder.nix index a795741869f..3f1c21cc881 100644 --- a/pkgs/development/interpreters/erlang/generic-builder.nix +++ b/pkgs/development/interpreters/erlang/generic-builder.nix @@ -18,7 +18,7 @@ , enableKernelPoll ? true , javacSupport ? false, javacPackages ? [ openjdk ] , odbcSupport ? false, odbcPackages ? [ unixODBC ] -, wxSupport ? !stdenv.isDarwin, wxPackages ? [ libGLU_combined wxGTK xorg.libX11 ] +, wxSupport ? true, wxPackages ? [ libGLU_combined wxGTK xorg.libX11 ] , preUnpack ? "", postUnpack ? "" , patches ? [], patchPhase ? "", prePatch ? "", postPatch ? "" , configureFlags ? [], configurePhase ? "", preConfigure ? "", postConfigure ? "" From a3f452ed0ce7374fe31215c268d08370004e0eeb Mon Sep 17 00:00:00 2001 From: MetaDark Date: Fri, 12 Jul 2019 22:12:23 -0400 Subject: [PATCH 0632/1611] pythonPackages.vdf: init at 3.1 --- .../python-modules/vdf/default.nix | 24 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/python-modules/vdf/default.nix diff --git a/pkgs/development/python-modules/vdf/default.nix b/pkgs/development/python-modules/vdf/default.nix new file mode 100644 index 00000000000..1c924d8973d --- /dev/null +++ b/pkgs/development/python-modules/vdf/default.nix @@ -0,0 +1,24 @@ +{ stdenv, buildPythonPackage, fetchFromGitHub +, pytest, pytestcov, mock }: + +buildPythonPackage rec { + pname = "vdf"; + version = "3.1"; + + src = fetchFromGitHub { + owner = "ValvePython"; + repo = pname; + rev = "v${version}"; + sha256 = "19xqjq2159w2l9vaxlkickvy3zksp9ssdkvbfcfggxz31miwp1zr"; + }; + + checkInputs = [ pytest pytestcov mock ]; + checkPhase = "make test"; + + meta = with stdenv.lib; { + description = "Library for working with Valve's VDF text format"; + homepage = https://github.com/ValvePython/vdf; + license = licenses.mit; + maintainers = with maintainers; [ metadark ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b68624dedec..95c9d1a25ec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1010,6 +1010,8 @@ in { pyunifi = callPackage ../development/python-modules/pyunifi { }; + vdf = callPackage ../development/python-modules/vdf { }; + vidstab = callPackage ../development/python-modules/vidstab { }; webapp2 = callPackage ../development/python-modules/webapp2 { }; From 2c9c395a229dcccf2dc492b68659d153b485aedd Mon Sep 17 00:00:00 2001 From: Judson Date: Mon, 15 Jul 2019 14:45:52 -0700 Subject: [PATCH 0633/1611] fish: use internal wcwidth Fish 3.0 has an updated an more robust handling of unicode glyphs. Per the original author of the INTERNAL_WCWIDTH flag, it was something of misfeature, and they regret that NixOS came to rely on it. Removes the flag from the Nix expression. Flag was added originally to Nixpkgs in 68076b7d4938ce788dc9eaaf8789dfccc30e2ca2 It is being removed entirely from upstream fish: https://github.com/fish-shell/fish-shell/pull/5777. --- pkgs/shells/fish/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 32d87d7cc1b..df8b5d824f1 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -102,7 +102,6 @@ let nativeBuildInputs = [ cmake ]; buildInputs = [ ncurses libiconv pcre2 ]; - cmakeFlags = [ "-DINTERNAL_WCWIDTH=OFF" ]; preConfigure = '' patchShebangs ./build_tools/git_version_gen.sh From 0cd086946251b9acab10392451b0429fcc8af689 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 17 Jul 2019 18:27:26 -0500 Subject: [PATCH 0634/1611] victor-mono: improvements from previous PR Fixes #64465. Resolves conflicts with earlier merged PR, notable differences in the result (by our powers combined!): * provide both ttf and otf versions * quote URL, since folks seem to like those * don't put fonts in ${pname} subdirs fontconfig's hashing/cache is mostly geared for the many-fonts-in-one-place situation, although this may be fixed in more recent versions. Anyway minor change and mostly went with not modifying what I had ;) so happy to adjust back if that better matches your senses/style/use. * Drop leading 'A' from description, I think this is per policy written.. somewhere O:). * alpha-sort the meta attributes, which is easy to rem and generally matches what most expressions do anyway :) Reviewer feedback: * use subdirs with fontname, seems preferred * fix indent, whoops --- pkgs/data/fonts/victor-mono/default.nix | 28 +++++++++++++++++-------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/pkgs/data/fonts/victor-mono/default.nix b/pkgs/data/fonts/victor-mono/default.nix index d83e412267a..e1ef611d686 100644 --- a/pkgs/data/fonts/victor-mono/default.nix +++ b/pkgs/data/fonts/victor-mono/default.nix @@ -3,27 +3,37 @@ let pname = "victor-mono"; version = "1.2.1"; -in fetchFromGitHub { +in fetchFromGitHub rec { name = "${pname}-${version}"; owner = "rubjo"; repo = pname; rev = "v${version}"; + # Upstream prefers we download from the website, + # but we really insist on a more versioned resource. + # Happily, tagged releases on github contain the same + # file `VictorMonoAll.zip` as from the website, + # so we extract it from the tagged release. + # Both methods produce the same file, but this way + # we can safely reason about what version it is. postFetch = '' - tar xf $downloadedFile --strip=1 - unzip public/VictorMonoAll.zip TTF/\* - mkdir -p $out/share/fonts/truetype/${pname} - cp TTF/*.ttf $out/share/fonts/truetype/${pname} + tar xvf $downloadedFile --strip-components=2 ${name}/public/VictorMonoAll.zip + + mkdir -p $out/share/fonts/{true,open}type/${pname} + + unzip -j VictorMonoAll.zip \*.ttf -d $out/share/fonts/truetype/${pname} + unzip -j VictorMonoAll.zip \*.otf -d $out/share/fonts/opentype/${pname} ''; - sha256 = "0gisjcywmn3kjgwfmzcv8ibxqd126s93id2w0zjly0c7m3ckamh8"; + sha256 = "0347n3kdyrbg42rxcgnyghi21qz5iz6w30v7ms2vjal7pfm6h2vn"; meta = with lib; { - homepage = https://rubjo.github.io/victor-mono; - description = "A free programming font with cursive italics and ligatures"; + description = "Free programming font with cursive italics and ligatures"; + homepage = "https://rubjo.github.io/victor-mono"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ jpotier ]; + maintainers = with maintainers; [ jpotier dtzWill ]; platforms = platforms.all; }; } + From 90b1197301eb714e64a508c3be2dd073b24caed3 Mon Sep 17 00:00:00 2001 From: Pasquale Date: Wed, 10 Jul 2019 16:01:25 +0200 Subject: [PATCH 0635/1611] nixos/xdg: add portal option This factors the configuration out of the flatpak module. --- nixos/modules/config/xdg/portal.nix | 38 +++++++++++++++++++ nixos/modules/module-list.nix | 1 + nixos/modules/rename.nix | 1 + nixos/modules/services/desktops/flatpak.nix | 22 ++--------- .../services/x11/desktop-managers/gnome3.nix | 2 +- .../services/x11/desktop-managers/plasma5.nix | 2 + 6 files changed, 46 insertions(+), 20 deletions(-) create mode 100644 nixos/modules/config/xdg/portal.nix diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix new file mode 100644 index 00000000000..76ca435d434 --- /dev/null +++ b/nixos/modules/config/xdg/portal.nix @@ -0,0 +1,38 @@ +{ config, pkgs ,lib ,... }: +with lib; +{ + options.xdg.portal = { + enable = + mkEnableOption "xdg desktop integration"//{ + default = true; + }; + + extraPortals = mkOption { + type = types.listOf types.package; + default = []; + description = '' + List of additional portals to add to path. Portals allow interaction + with system, like choosing files or taking screenshots. At minimum, + a desktop portal implementation should be listed. GNOME and KDE already + adds xdg-desktop-portal-gtk; and + xdg-desktop-portal-kde respectively. On other desktop + environments you probably want to add them yourself. + ''; + }; + }; + + config = + let + cfg = config.xdg.portal; + packages = [ pkgs.xdg-desktop-portal ] ++ cfg.extraPortals; + + in mkIf cfg.enable { + + services.dbus.packages = packages; + systemd.packages = packages; + environment.variables = { + GTK_USE_PORTAL = "1"; + XDG_DESKTOP_PORTAL_PATH = map (p: "${p}/share/xdg-desktop-portal/portals") cfg.extraPortals; + }; + }; +} diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 1d1995eda25..e7e64bcfee7 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -11,6 +11,7 @@ ./config/xdg/icons.nix ./config/xdg/menus.nix ./config/xdg/mime.nix + ./config/xdg/portal.nix ./config/appstream.nix ./config/xdg/sounds.nix ./config/gtk/gtk-icon-cache.nix diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 1b77a895d71..23a27f12947 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -19,6 +19,7 @@ with lib; let value = getAttrFromPath [ "services" "ddclient" "domain" ] config; in if value != "" then [ value ] else [])) (mkRemovedOptionModule [ "services" "ddclient" "homeDir" ] "") + (mkRenamedOptionModule [ "services" "flatpak" "extraPortals" ] [ "xdg" "portal" "extraPortals" ]) (mkRenamedOptionModule [ "services" "i2pd" "extIp" ] [ "services" "i2pd" "address" ]) (mkRenamedOptionModule [ "services" "kubernetes" "apiserver" "admissionControl" ] [ "services" "kubernetes" "apiserver" "enableAdmissionPlugins" ]) (mkRenamedOptionModule [ "services" "kubernetes" "apiserver" "address" ] ["services" "kubernetes" "apiserver" "bindAddress"]) diff --git a/nixos/modules/services/desktops/flatpak.nix b/nixos/modules/services/desktops/flatpak.nix index cfca1893bd8..82463406118 100644 --- a/nixos/modules/services/desktops/flatpak.nix +++ b/nixos/modules/services/desktops/flatpak.nix @@ -15,38 +15,22 @@ in { options = { services.flatpak = { enable = mkEnableOption "flatpak"; - - extraPortals = mkOption { - type = types.listOf types.package; - default = []; - description = '' - List of additional portals to add to path. Portals allow interaction - with system, like choosing files or taking screenshots. At minimum, - a desktop portal implementation should be listed. GNOME already - adds xdg-desktop-portal-gtk; for KDE, there - is xdg-desktop-portal-kde. Other desktop - environments will probably want to do the same. - ''; - }; }; }; ###### implementation config = mkIf cfg.enable { + environment.systemPackages = [ pkgs.flatpak ]; - services.dbus.packages = [ pkgs.flatpak pkgs.xdg-desktop-portal ] ++ cfg.extraPortals; + services.dbus.packages = [ pkgs.flatpak ]; - systemd.packages = [ pkgs.flatpak pkgs.xdg-desktop-portal ] ++ cfg.extraPortals; + systemd.packages = [ pkgs.flatpak ]; environment.profiles = [ "$HOME/.local/share/flatpak/exports" "/var/lib/flatpak/exports" ]; - - environment.variables = { - XDG_DESKTOP_PORTAL_PATH = map (p: "${p}/share/xdg-desktop-portal/portals") cfg.extraPortals; - }; }; } diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index ef6820d3326..4a7a4804e1a 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -154,7 +154,7 @@ in { services.hardware.bolt.enable = mkDefault true; services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center systemd.packages = [ pkgs.gnome3.vino ]; - services.flatpak.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; + xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; # If gnome3 is installed, build vim for gtk3 too. nixpkgs.config.vim.gui = "gtk3"; diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index dc8bfc7dc17..ce8d4956bab 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -224,6 +224,8 @@ in security.pam.services.sddm.enableKwallet = true; security.pam.services.slim.enableKwallet = true; + xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-kde ]; + # Update the start menu for each user that is currently logged in system.userActivationScripts.plasmaSetup = '' # The KDE icon cache is supposed to update itself From 5d053d83339da54c898f6c3de83fef52a9c39837 Mon Sep 17 00:00:00 2001 From: MetaDark Date: Fri, 12 Jul 2019 23:03:35 -0400 Subject: [PATCH 0636/1611] protontricks: init at 1.2.3 fixes #61193 --- .../protontricks/default.nix | 40 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 +++ 2 files changed, 46 insertions(+) create mode 100644 pkgs/tools/package-management/protontricks/default.nix diff --git a/pkgs/tools/package-management/protontricks/default.nix b/pkgs/tools/package-management/protontricks/default.nix new file mode 100644 index 00000000000..ae8dfc59075 --- /dev/null +++ b/pkgs/tools/package-management/protontricks/default.nix @@ -0,0 +1,40 @@ +{ stdenv, lib, buildPythonApplication, fetchFromGitHub +, vdf, wine, winetricks, zenity +}: + +buildPythonApplication rec { + pname = "protontricks"; + version = "1.2.3"; + + src = fetchFromGitHub { + owner = "Matoking"; + repo = pname; + rev = version; + sha256 = "1v7bgr1rkm8j99s5bv45cslw01qcx8i8zb6ysfrb53qz86zgkgsn"; + }; + + propagatedBuildInputs = [ vdf ]; + + # The wine install shipped with Proton must run under steam's + # chrootenv, but winetricks and zenity break when running under + # it. See https://github.com/NixOS/nix/issues/902. + # + # The current workaround is to use wine from nixpkgs + makeWrapperArgs = [ + "--set STEAM_RUNTIME 0" + "--set-default WINE ${wine}/bin/wine" + "--set-default WINESERVER ${wine}/bin/wineserver" + "--prefix PATH : ${lib.makeBinPath [ + (winetricks.override { inherit wine; }) + zenity + ]}" + ]; + + meta = with stdenv.lib; { + description = "A simple wrapper for running Winetricks commands for Proton-enabled games"; + homepage = https://github.com/Matoking/protontricks; + license = licenses.gpl3; + platforms = with platforms; linux; + maintainers = with maintainers; [ metadark ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 69b571d2f92..547b5ae7f1e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22014,6 +22014,12 @@ in gtk = pkgs.gtk3; }; + protontricks = callPackage ../tools/package-management/protontricks { + inherit (python3Packages) buildPythonApplication vdf; + inherit (gnome3) zenity; + wine = wineWowPackages.minimal; + }; + stepmania = callPackage ../games/stepmania { ffmpeg = ffmpeg_2; }; From 3531a229d1d9b67305bcf9f0441365f2e89cc361 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 20:02:56 -0400 Subject: [PATCH 0637/1611] nixos/pantheon: add gtk xdg desktop portal --- nixos/modules/services/x11/desktop-managers/pantheon.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/pantheon.nix b/nixos/modules/services/x11/desktop-managers/pantheon.nix index 41903b33fae..c0eae1eb8d4 100644 --- a/nixos/modules/services/x11/desktop-managers/pantheon.nix +++ b/nixos/modules/services/x11/desktop-managers/pantheon.nix @@ -145,6 +145,8 @@ in isSystem = true; }; + xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; + networking.networkmanager.enable = mkDefault true; networking.networkmanager.basePackages = { inherit (pkgs) networkmanager modemmanager wpa_supplicant; From 00eef848b29730b286914e3902c58209265a59f6 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 20:40:24 -0400 Subject: [PATCH 0638/1611] nixos/doc: fix build Adjusts to options renamed in 90b1197301eb714e64a508c3be2dd073b24caed3 --- nixos/modules/services/desktops/flatpak.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/desktops/flatpak.xml b/nixos/modules/services/desktops/flatpak.xml index fb27bd1f62b..8f080b25022 100644 --- a/nixos/modules/services/desktops/flatpak.xml +++ b/nixos/modules/services/desktops/flatpak.xml @@ -29,7 +29,7 @@ in other cases, you will need to add something like the following to your configuration.nix: - = [ pkgs.xdg-desktop-portal-gtk ]; + = [ pkgs.xdg-desktop-portal-gtk ]; From 59b08e6759c94cc1f4a1ff14a0aff24742d6cd62 Mon Sep 17 00:00:00 2001 From: Benjamin Staffin Date: Thu, 18 Jul 2019 18:53:14 -0400 Subject: [PATCH 0639/1611] discord: Fix desktop icon The name used in the .desktop file needs to match the filename that exists in $out/share/pixmaps/ for it to work. --- .../applications/networking/instant-messengers/discord/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/discord/base.nix b/pkgs/applications/networking/instant-messengers/discord/base.nix index 63149d3d54b..17f6f477374 100644 --- a/pkgs/applications/networking/instant-messengers/discord/base.nix +++ b/pkgs/applications/networking/instant-messengers/discord/base.nix @@ -36,7 +36,7 @@ in stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${libPath} ln -s $out/opt/${binaryName}/${binaryName} $out/bin/ - ln -s $out/opt/${binaryName}/discord.png $out/share/pixmaps/${binaryName}.png + ln -s $out/opt/${binaryName}/discord.png $out/share/pixmaps/${pname}.png ln -s "${desktopItem}/share/applications" $out/share/ ''; From 8fcf391db7b4a90cbe5f61c084a5a79271a9d361 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:47:10 -0400 Subject: [PATCH 0640/1611] gnome3.gvfs: 1.40.1 -> 1.40.2 Has all the patches for the CVE's plus an additional further fix. https://gitlab.gnome.org/GNOME/gvfs/blob/1.40.2/NEWS --- pkgs/development/libraries/gvfs/default.nix | 33 ++------------------- 1 file changed, 3 insertions(+), 30 deletions(-) diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix index 1d6bad1914b..60188d77962 100644 --- a/pkgs/development/libraries/gvfs/default.nix +++ b/pkgs/development/libraries/gvfs/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, gnome3, dbus -, glib, libgudev, udisks2, libgcrypt, libcap, polkit, fetchpatch +, glib, libgudev, udisks2, libgcrypt, libcap, polkit , libgphoto2, avahi, libarchive, fuse, libcdio , libxml2, libxslt, docbook_xsl, docbook_xml_dtd_42, samba, libmtp , gnomeSupport ? false, gnome, gcr, wrapGAppsHook @@ -9,42 +9,15 @@ let pname = "gvfs"; - version = "1.40.1"; + version = "1.40.2"; in stdenv.mkDerivation rec { name = "${pname}-${version}"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1cfnzamr4mvgpf6yhm28lh9cafy9z6842s8jpbqnfizfxybg8ylj"; + sha256 = "07lpcfric3h0302n9b1pwa38mjb76r9s98kg2867y2d1qvzfivxx"; }; - patches = [ - # CVE-2019-12448 - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/464bbc7e4e7fdfc3cb426557562038408b6108c5.patch"; - sha256 = "03fwlpj1vbi80661bbhzv8ddx3czkzv9i1q4h3gqyxi5f1i0xfz4"; - }) - # CVE-2019-12447 - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/cf2f9c4020bbdd895485244b70e9442a80062cbe.patch"; - sha256 = "1p7c48nsx1lkv2qpkyrsm9qfa77xwd28gczwcpv2kbji3ws5qgj5"; - }) - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/64156459a366d64ab19187455016929b1026189a.patch"; - sha256 = "0zxbhmgqxxw987ag8fh6yjzjn9jl55fqbn814jh9kwrk7x4prx9x"; - }) - # CVE-2019-12449 - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/ec939a01c278d1aaa47153f51b5c5f0887738dd9.patch"; - sha256 = "0hfybfaz2gfx3yyw5ymx6q0pqwkx2r1i7gzprfp80bplwslq0d4h"; - }) - # CVE-2019-12795 - (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/gvfs/commit/d8c9138bf240975848b1c54db648ec4cd516a48f.patch"; - sha256 = "1lx6yxykx24mnq5izijqk744zj6rgww6ba76z0qjal4y0z3gsdqp"; - }) - ]; - postPatch = '' # patchShebangs requires executable file chmod +x meson_post_install.py From 66caaf06354bdeedc3d4661c7903b37b47a092a2 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:49:07 -0400 Subject: [PATCH 0641/1611] gnome3.nautilus-python: 1.2.2 -> 1.2.3 https://gitlab.gnome.org/GNOME/nautilus-python/blob/NAUTILUS_PYTHON_1_2_3/NEWS --- pkgs/desktops/gnome-3/misc/nautilus-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix b/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix index 4aec5ba4d84..4c2a551b1c7 100644 --- a/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix +++ b/pkgs/desktops/gnome-3/misc/nautilus-python/default.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation rec { pname = "nautilus-python"; - version = "1.2.2"; + version = "1.2.3"; outputs = [ "out" "dev" "doc" ]; src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "04pib6fan6cq8x0fhf5gll2f5d2dh5pxrhj79qhi5l1yc7ys7kch"; + sha256 = "161050sx3sdxqcpjkjcpf6wl4kx0jydihga7mcvrj9c2f8ly0g07"; }; nativeBuildInputs = [ From 386b7d814d84871168bb1db34fababcecbbfb889 Mon Sep 17 00:00:00 2001 From: Andrew Chambers Date: Mon, 1 Apr 2019 12:40:07 +1300 Subject: [PATCH 0642/1611] redo-apenwarr: init at unstable-2019-06-21 --- .../build-managers/redo-apenwarr/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/build-managers/redo-apenwarr/default.nix diff --git a/pkgs/development/tools/build-managers/redo-apenwarr/default.nix b/pkgs/development/tools/build-managers/redo-apenwarr/default.nix new file mode 100644 index 00000000000..767cd70abcd --- /dev/null +++ b/pkgs/development/tools/build-managers/redo-apenwarr/default.nix @@ -0,0 +1,30 @@ +{stdenv, fetchFromGitHub, python2, which}: +stdenv.mkDerivation rec { + name = "redo-apenwarr-${version}"; + + version = "unstable-2019-06-21"; + + src = fetchFromGitHub { + owner = "apenwarr"; + repo = "redo"; + rev = "8924fa35fa7363b531f8e6b48a1328d2407ad5cf"; + sha256 = "1dj20w29najqjyvk0jh5kqbcd10k32rad986q5mzv4v49qcwdc1q"; + }; + + DESTDIR=""; + PREFIX = placeholder "out"; + + patchPhase = '' + patchShebangs . + ''; + + buildInputs = [ python2 which ]; + + meta = with stdenv.lib; { + description = "Apenwarr version of the redo build tool."; + homepage = https://github.com/apenwarr/redo/; + license = stdenv.lib.licenses.asl20; + platforms = platforms.all; + maintainers = with stdenv.lib.maintainers; [ andrewchambers ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52fcdb2167d..402e771f5e8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9655,6 +9655,8 @@ in redo = callPackage ../development/tools/build-managers/redo { }; + redo-apenwarr = callPackage ../development/tools/build-managers/redo-apenwarr { }; + redo-sh = callPackage ../development/tools/build-managers/redo-sh { }; reno = callPackage ../development/tools/reno { }; From 37e1c1aeda7b9ea31ddb360fb586e440561b773e Mon Sep 17 00:00:00 2001 From: Andrew Chambers Date: Fri, 19 Jul 2019 15:12:03 +1200 Subject: [PATCH 0643/1611] janet: 1.0.0 -> 1.1.0 --- pkgs/development/interpreters/janet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/janet/default.nix b/pkgs/development/interpreters/janet/default.nix index 546b2123826..219b8e2758a 100644 --- a/pkgs/development/interpreters/janet/default.nix +++ b/pkgs/development/interpreters/janet/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "janet"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "janet-lang"; repo = pname; rev = "v${version}"; - sha256 = "1n91xsq9c3x99pb3a964873kksavs223hhy62l8yiylbl81b8vix"; + sha256 = "0ncyg594fixvvkgk0k89b40v9hy36lcr2gniks3ac6cyqy2iixx5"; }; nativeBuildInputs = [ meson ninja ]; From 45332a59a976c8dfe4d164ed12b1fdd4419e8341 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 18 Jul 2019 22:05:23 -0700 Subject: [PATCH 0644/1611] bftpd: 5.1 -> 5.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bftpd/versions --- pkgs/servers/ftp/bftpd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/ftp/bftpd/default.nix b/pkgs/servers/ftp/bftpd/default.nix index ca071d215af..e7c22904cea 100644 --- a/pkgs/servers/ftp/bftpd/default.nix +++ b/pkgs/servers/ftp/bftpd/default.nix @@ -5,11 +5,11 @@ let in stdenv.mkDerivation rec { name = "${pname}-${version}"; - version = "5.1"; + version = "5.2"; src = fetchurl { url = "mirror://sourceforge/project/${pname}/${pname}/${name}/${name}.tar.gz"; - sha256 = "1kk5xs9w6cy3yf3yqzls80vxzy0a8zxvhq854wm21pz2grn3n5yh"; + sha256 = "0kmavljj3zwpgdib9nb14fnriiv0l9zm3hglimcyz26sxbw5jqky"; }; preConfigure = '' From 37d001311d3d81a24af29c8a39ac345f5e1cb8ad Mon Sep 17 00:00:00 2001 From: Michael Francis Date: Fri, 19 Jul 2019 13:19:06 +0800 Subject: [PATCH 0645/1611] updated to 2.14.2 --- pkgs/applications/networking/cluster/helm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index 3e4c7ee514b..c116e46684c 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -1,14 +1,14 @@ { stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { - version = "2.14.1"; + version = "2.14.2"; name = "helm-${version}"; src = fetchFromGitHub { owner = "helm"; repo = "helm"; rev = "v${version}"; - sha256 = "16gvplqzllcif5h3qlfnlk8ifhkl5za3wj82129nf9darkixs4jh"; + sha256 = "0hxfyfpmhgr5jilp2xm9d5vxiq5fcgqm2hh4g4izcgiz9bz7b6k0"; }; goPackagePath = "k8s.io/helm"; From cbeddc0446516837c4a7c73a5214b5ac6106dd88 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 18 Jul 2019 22:46:28 -0700 Subject: [PATCH 0646/1611] calf: 0.90.2 -> 0.90.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/calf/versions --- pkgs/applications/audio/calf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/calf/default.nix b/pkgs/applications/audio/calf/default.nix index d4e2fba0cf4..7d7d25ea88a 100644 --- a/pkgs/applications/audio/calf/default.nix +++ b/pkgs/applications/audio/calf/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "calf-${version}"; - version = "0.90.2"; + version = "0.90.3"; src = fetchurl { url = "https://calf-studio-gear.org/files/${name}.tar.gz"; - sha256 = "0bn4j1klw2yfxz8clbmasaydifq25rdfsv0n6iisxrzcj1lx7sgh"; + sha256 = "17x4hylgq4dn9qycsdacfxy64f5cv57n2qgkvsdp524gnqzw4az3"; }; enableParallelBuilding = true; From 144817f55243f75bf891e8bb841c183854871a91 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Thu, 18 Jul 2019 23:03:49 -0700 Subject: [PATCH 0647/1611] armadillo: 9.500.2 -> 9.600.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/armadillo/versions --- pkgs/development/libraries/armadillo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix index 10649092d20..6619235ab82 100644 --- a/pkgs/development/libraries/armadillo/default.nix +++ b/pkgs/development/libraries/armadillo/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }: stdenv.mkDerivation rec { - version = "9.500.2"; + version = "9.600.4"; name = "armadillo-${version}"; src = fetchurl { url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; - sha256 = "17npgyavzrbf4d3m28f9j7j8hk2pc91ai9nkkp39hkdflq3kw6hb"; + sha256 = "1gph9acmk8wqs6n00csvbs94rh153y7ml0w2zlbk9ia8xbgbdbbx"; }; nativeBuildInputs = [ cmake ]; From 948d2e317b54c339ae44ca7ec38639000fed5c91 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 18 Jul 2019 14:15:33 +0200 Subject: [PATCH 0648/1611] graphene-hardened-malloc: 190405.003.2019.04.01.19 -> 1 The initial stable standalone release. The integer numbered tags are the standalone releases, while the PQ3B.190705.003.2019.07.01.21 style tags are part of GrapheneOS releases. For us it probably makes the most sense to track the standalone releases. --- .../libraries/graphene-hardened-malloc/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/graphene-hardened-malloc/default.nix b/pkgs/development/libraries/graphene-hardened-malloc/default.nix index 0aae8ca4945..1072c8f2cbf 100644 --- a/pkgs/development/libraries/graphene-hardened-malloc/default.nix +++ b/pkgs/development/libraries/graphene-hardened-malloc/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "graphene-hardened-malloc-${version}"; - version = "190405.003.2019.04.01.19"; + version = "1"; src = fetchurl { - url = "https://github.com/GrapheneOS/hardened_malloc/archive/PQ2A.${version}.tar.gz"; - sha256 = "1qczmajy3q07jd236dmal4iq5xxcsrkyw26gc9r4vs4wj4m42d11"; + url = "https://github.com/GrapheneOS/hardened_malloc/archive/${version}.tar.gz"; + sha256 = "1z3kb9fr6w9fcdc42bh8k5b4r10sn5hrwwk4m691qjdgk5hlj3aa"; }; installPhase = '' @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { chmod 0555 $out/bin/preload-hardened-malloc ''; + separateDebugInfo = true; + doInstallCheck = true; installCheckPhase = '' pushd test @@ -27,7 +29,7 @@ stdenv.mkDerivation rec { make # these tests don't actually appear to generate overflows currently - rm read_after_free_small string_overflow + rm read_after_free_small string_overflow eight_byte_overflow_large for t in `find . -regex ".*/[a-z_]+"` ; do echo "Running $t..." From 6b3fe044fce583333e8d08205deeda9f36631e21 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 19 Jul 2019 08:40:54 +0200 Subject: [PATCH 0649/1611] imv: 3.0.0 -> 3.1.2 --- pkgs/applications/graphics/imv/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/graphics/imv/default.nix b/pkgs/applications/graphics/imv/default.nix index cdbf5f44687..89712d4d1f7 100644 --- a/pkgs/applications/graphics/imv/default.nix +++ b/pkgs/applications/graphics/imv/default.nix @@ -1,32 +1,34 @@ { stdenv, fetchFromGitHub, SDL2, SDL2_ttf , freeimage, fontconfig, pkgconfig , asciidoc, docbook_xsl, libxslt, cmocka +, librsvg }: stdenv.mkDerivation rec { name = "imv-${version}"; - version = "3.0.0"; + version = "3.1.2"; src = fetchFromGitHub { owner = "eXeC64"; repo = "imv"; rev = "v${version}"; - sha256 = "0j5aykdkm1g518ism5y5flhwxvjvl92ksq989fhl2wpnv0la82jp"; + sha256 = "0gg362x2f7hli6cr6s7dmlanh4cqk7fd2pmk4zs9438jvqklf4cl"; }; buildInputs = [ SDL2 SDL2_ttf freeimage fontconfig pkgconfig - asciidoc docbook_xsl libxslt cmocka + asciidoc docbook_xsl libxslt cmocka librsvg ]; installFlags = [ "PREFIX=$(out)" "CONFIGPREFIX=$(out)/etc" ]; + doCheck = true; + meta = with stdenv.lib; { description = "A command line image viewer for tiling window managers"; - homepage = https://github.com/eXeC64/imv; + homepage = https://github.com/eXeC64/imv; license = licenses.gpl2; - maintainers = with maintainers; [ rnhmjoj ]; + maintainers = with maintainers; [ rnhmjoj markus1189 ]; platforms = [ "i686-linux" "x86_64-linux" ]; }; } - From 80d39388de0e938adc8355103834f11c5cc38e91 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 18 Jul 2019 19:57:42 -0500 Subject: [PATCH 0650/1611] pythonPackages.scrapy: 1.6.0 -> 1.7.1 --- .../development/python-modules/scrapy/default.nix | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix index ecfbc98530e..cc22804d48a 100644 --- a/pkgs/development/python-modules/scrapy/default.nix +++ b/pkgs/development/python-modules/scrapy/default.nix @@ -1,8 +1,8 @@ -{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, mock, pytest, botocore, +{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, glibcLocales, mock, pytest, botocore, testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl, service-identity, parsel, pydispatcher, cssselect, lib }: buildPythonPackage rec { - version = "1.6.0"; + version = "1.7.1"; pname = "Scrapy"; checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ]; @@ -16,6 +16,12 @@ buildPythonPackage rec { # root and readonly. As a consequence scrapy can't edit the # project templates. ./permissions-fix.patch + + # Fix configparser import for python2. See: https://github.com/scrapy/scrapy/pull/3887 + (fetchpatch { + url = "https://github.com/scrapy/scrapy/commit/21345dc9ec60dcc1cd2e5c0eace5788aa502ce23.patch"; + sha256 = "09834rcjyggvyj6zignvfga2xbqkknygly5p4a96k2mvz0xn3v6z"; + }) ]; LC_ALL="en_US.UTF-8"; @@ -25,12 +31,13 @@ buildPythonPackage rec { # Ignore test_retry_dns_error because tries to resolve an invalid dns and weirdly fails with "Reactor was unclean" # Ignore xml encoding test on darwin because lxml can't find encodings https://bugs.launchpad.net/lxml/+bug/707396 checkPhase = '' - pytest -p no:doctest --ignore=tests/test_linkextractors_deprecated.py --ignore=tests/test_proxy_connect.py --deselect tests/test_crawl.py::CrawlTestCase::test_retry_dns_error ${lib.optionalString stdenv.isDarwin "--deselect tests/test_utils_iterators.py::LxmlXmliterTestCase::test_xmliter_encoding"} + substituteInPlace pytest.ini --replace "addopts = --doctest-modules" "addopts =" + pytest --ignore=tests/test_linkextractors_deprecated.py --ignore=tests/test_proxy_connect.py --deselect tests/test_crawl.py::CrawlTestCase::test_retry_dns_error ${lib.optionalString stdenv.isDarwin "--deselect tests/test_utils_iterators.py::LxmlXmliterTestCase::test_xmliter_encoding"} ''; src = fetchPypi { inherit pname version; - sha256 = "558dfd10ac53cb324ecd7eefd3eac412161c7507c082b01b0bcd2c6e2e9f0766"; + sha256 = "da8987d199092c3bb33d4d1d021507cd933aa67f5177e2d36f31343e8a6bd7f1"; }; postInstall = '' From 882b201f58d78469fd5ef6ba30121eb08a49b963 Mon Sep 17 00:00:00 2001 From: Uma Zalakain Date: Fri, 19 Jul 2019 08:03:42 +0100 Subject: [PATCH 0651/1611] Change maintainter's name --- maintainers/maintainer-list.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 787365b08cd..426113b7918 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5768,9 +5768,9 @@ name = "Christian Zagrodnick"; }; zalakain = { - email = "contact@unaizalakain.info"; + email = "ping@umazalakain.info"; github = "umazalakain"; - name = "Unai Zalakain"; + name = "Uma Zalakain"; }; zaninime = { email = "francesco@zanini.me"; From fbee9d3edf6274e29c1e4c20799419309c6d98a9 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Fri, 19 Jul 2019 09:26:13 +0200 Subject: [PATCH 0652/1611] cypress: fix missing GSettings schemas --- pkgs/development/web/cypress/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix index e36b950f1f2..0768e98f73b 100644 --- a/pkgs/development/web/cypress/default.nix +++ b/pkgs/development/web/cypress/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip }: +{ stdenv, fetchzip, autoPatchelfHook, xorg, gtk2, gnome2, gtk3, nss, alsaLib, udev, unzip, wrapGAppsHook }: stdenv.mkDerivation rec{ pname = "cypress"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec{ # don't remove runtime deps dontPatchELF = true; - nativeBuildInputs = [ autoPatchelfHook ]; + nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook ]; buildInputs = with xorg; [ libXScrnSaver libXdamage libXtst From 784e957c74c699ce860cd28496ad2888032d2c41 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Wed, 17 Jul 2019 14:35:29 -0400 Subject: [PATCH 0653/1611] python3Packages.ibis: init at 1.6.0 --- .../python-modules/ibis/default.nix | 30 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/python-modules/ibis/default.nix diff --git a/pkgs/development/python-modules/ibis/default.nix b/pkgs/development/python-modules/ibis/default.nix new file mode 100644 index 00000000000..6b405366c7e --- /dev/null +++ b/pkgs/development/python-modules/ibis/default.nix @@ -0,0 +1,30 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, python +, isPy27 +}: + +buildPythonPackage rec { + pname = "ibis"; + version = "1.6.0"; + disabled = isPy27; + + src = fetchFromGitHub { + owner = "dmulholl"; + repo = pname; + rev = version; + sha256 = "0xqhk397gzanvj2znwcgy4n5l1lc9r310smxkhjbm1xwvawpixx0"; + }; + + checkPhase = '' + ${python.interpreter} test_ibis.py + ''; + + meta = with lib; { + description = "A lightweight template engine"; + homepage = https://github.com/dmulholland/ibis; + license = licenses.publicDomain; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5a56c94ccdf..4a8655c8fcc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5919,6 +5919,8 @@ in { IBMQuantumExperience = callPackage ../development/python-modules/ibmquantumexperience { }; + ibis = callPackage ../development/python-modules/ibis { }; + qiskit = callPackage ../development/python-modules/qiskit { }; qasm2image = callPackage ../development/python-modules/qasm2image { }; From 2d5769884d573aef748443ee1e686444ab58ba78 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Wed, 17 Jul 2019 14:35:48 -0400 Subject: [PATCH 0654/1611] pythonPackages.ibis-framework: init at 1.20 --- .../python-modules/ibis-framework/default.nix | 57 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 59 insertions(+) create mode 100644 pkgs/development/python-modules/ibis-framework/default.nix diff --git a/pkgs/development/python-modules/ibis-framework/default.nix b/pkgs/development/python-modules/ibis-framework/default.nix new file mode 100644 index 00000000000..56aaf6ec71a --- /dev/null +++ b/pkgs/development/python-modules/ibis-framework/default.nix @@ -0,0 +1,57 @@ +{ lib +, buildPythonPackage +, fetchPypi +, multipledispatch +, numpy +, pandas +, pytz +, regex +, toolz +, isPy27 +, pytest +, sqlalchemy +, requests +, tables +, pyarrow +, graphviz +}: + +buildPythonPackage rec { + pname = "ibis-framework"; + version = "1.2.0"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "3a0b79dae6924be0a79669c881a9a1d4817997ad2f81a0f3b1cd03d70aebb071"; + }; + + propagatedBuildInputs = [ + multipledispatch + numpy + pandas + pytz + regex + toolz + sqlalchemy + requests + graphviz + tables + pyarrow + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest ibis + ''; + + meta = with lib; { + description = "Productivity-centric Python Big Data Framework"; + homepage = https://github.com/ibis-project/ibis; + license = licenses.asl20; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4a8655c8fcc..fdff7d770db 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5921,6 +5921,8 @@ in { ibis = callPackage ../development/python-modules/ibis { }; + ibis-framework = callPackage ../development/python-modules/ibis-framework { }; + qiskit = callPackage ../development/python-modules/qiskit { }; qasm2image = callPackage ../development/python-modules/qasm2image { }; From 1b7e04e37aaa6294333e091f4416882cd890d73f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 00:47:20 -0700 Subject: [PATCH 0655/1611] csound: 6.12.2 -> 6.13.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/csound/versions --- pkgs/applications/audio/csound/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/csound/default.nix b/pkgs/applications/audio/csound/default.nix index b11f525e9d2..cb968ee9e00 100644 --- a/pkgs/applications/audio/csound/default.nix +++ b/pkgs/applications/audio/csound/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { # When updating, please check if https://github.com/csound/csound/issues/1078 # has been fixed in the new version so we can use the normal fluidsynth # version and remove fluidsynth 1.x from nixpkgs again. - version = "6.12.2"; + version = "6.13.0"; enableParallelBuilding = true; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { owner = "csound"; repo = "csound"; rev = version; - sha256 = "01krxcf0alw9k7p5sv0s707600an4sl7lhw3bymbwgqrj0v2p9z2"; + sha256 = "14822ybqyp31z18gky2y9zadr9dkbhabg97y139py73w7v3af1bh"; }; cmakeFlags = [ "-DBUILD_CSOUND_AC=0" ] # fails to find Score.hpp From 6510c45b56779222c0f4b24843368374fdf04434 Mon Sep 17 00:00:00 2001 From: Meghea Iulian Date: Fri, 19 Jul 2019 11:06:13 +0300 Subject: [PATCH 0656/1611] distrobuilder: 2018_10_04 -> 2019_10_07 --- .../virtualization/distrobuilder/default.nix | 6 +- .../virtualization/distrobuilder/deps.nix | 163 ++++++++++++++++-- 2 files changed, 152 insertions(+), 17 deletions(-) diff --git a/pkgs/tools/virtualization/distrobuilder/default.nix b/pkgs/tools/virtualization/distrobuilder/default.nix index 54f1f492487..c79c2e7cb35 100644 --- a/pkgs/tools/virtualization/distrobuilder/default.nix +++ b/pkgs/tools/virtualization/distrobuilder/default.nix @@ -8,8 +8,8 @@ let binPath = stdenv.lib.makeBinPath [ in buildGoPackage rec { name = "distrobuilder-${version}"; - version = "2018_10_04"; - rev = "d2329be9569d45028a38836186d2353b8ddfe1ca"; + version = "2019_10_07"; + rev = "d686c88c21838f5505c3ec14711b2413604d7f5c"; goPackagePath = "github.com/lxc/distrobuilder"; @@ -17,7 +17,7 @@ buildGoPackage rec { inherit rev; owner = "lxc"; repo = "distrobuilder"; - sha256 = "1sn1wif86p089kr6zq83k81hjd1d73kamnawc2p0k0vd0w91d3v4"; + sha256 = "0k59czgasy4d58bkrin6hvgmh7y3nf177lwd0y4g47af27bgnyc4"; }; goDeps = ./deps.nix; diff --git a/pkgs/tools/virtualization/distrobuilder/deps.nix b/pkgs/tools/virtualization/distrobuilder/deps.nix index e4c65946551..7f79d8931fc 100644 --- a/pkgs/tools/virtualization/distrobuilder/deps.nix +++ b/pkgs/tools/virtualization/distrobuilder/deps.nix @@ -1,12 +1,57 @@ # This file was generated by https://github.com/kamilchm/go2nix v1.3.0 [ + { + goPackagePath = "github.com/antchfx/xpath"; + fetch = { + type = "git"; + url = "https://github.com/antchfx/xpath"; + rev = "b6dbe470e10224a23b2f69db0d4449bc6627ece6"; + sha256 = "1959kzmjijpll6432da84rmzgd7p3yyqdq9chyxnm8318pr5znji"; + }; + } { goPackagePath = "github.com/flosch/pongo2"; fetch = { type = "git"; url = "https://github.com/flosch/pongo2"; - rev = "24195e6d38b06020d7a92c7b11960cf2e7cad2f2"; - sha256 = "1cbg3ya8l2v34gcxnd73nvzpfpx8kzkbiv0kpgaxqpcqjhanhgj9"; + rev = "bbf5a6c351f4d4e883daa40046a404d7553e0a00"; + sha256 = "0yqh58phznnxakm64w82gawrpndb0r85vsd1s7h244qqrq7w4avq"; + }; + } + { + goPackagePath = "github.com/gobuffalo/envy"; + fetch = { + type = "git"; + url = "https://github.com/gobuffalo/envy"; + rev = "043cb4b8af871b49563291e32c66bb84378a60ac"; + sha256 = "03jarnkaf42xgfamb0jlya4c1cyk8gnxhcd21m3fx145vz4px398"; + }; + } + { + goPackagePath = "github.com/gobuffalo/logger"; + fetch = { + type = "git"; + url = "https://github.com/gobuffalo/logger"; + rev = "7c291b53e05b81d77bd43109b4a3c6f84e45c8e1"; + sha256 = "1w6rkz0xwq3xj3giwzjkfnai69a0cgg09zx01z7s8r5z450cish3"; + }; + } + { + goPackagePath = "github.com/gobuffalo/packd"; + fetch = { + type = "git"; + url = "https://github.com/gobuffalo/packd"; + rev = "54ea459691466cfb630ccc276723fe3963f3e9d5"; + sha256 = "02sg33jkp219g0z3yf2fn9xm2zds1qxzdznx5mh8vffh4njjg1x8"; + }; + } + { + goPackagePath = "github.com/gobuffalo/packr"; + fetch = { + type = "git"; + url = "https://github.com/gobuffalo/packr"; + rev = "dc520c910ea91354b3ae131bbb029270e4fc1af4"; + sha256 = "1ph05pkbq0ggdab152f7hjlc758nkrw22fqgslnf1nvggadjkvqs"; }; } { @@ -14,8 +59,17 @@ fetch = { type = "git"; url = "https://github.com/gorilla/websocket"; - rev = "95ba29eb981bbb27d92e1f70bf8a1949452d926b"; - sha256 = "08lvc9l0qagyhyrjj6jkhpq3zapa5gqr966bm33nb4bc0pd38f48"; + rev = "ae1634f6a98965ded3b8789c626cb4e0bd78c3de"; + sha256 = "0nw0mdcs75ghr9a5asrk9a7yc00703yvv4xf6wyd3z44ihs4hrjv"; + }; + } + { + goPackagePath = "github.com/joho/godotenv"; + fetch = { + type = "git"; + url = "https://github.com/joho/godotenv"; + rev = "5c0e6c6ab1a0a9ef0a8822cba3a05d62f7dad941"; + sha256 = "0zfs69q7f5xlkqhd4wzjc8gfdisahapz5g94sa8lzr5b4jg9ycbw"; }; } { @@ -23,8 +77,17 @@ fetch = { type = "git"; url = "https://github.com/juju/errors"; - rev = "089d3ea4e4d597bd98acac068193d341983326a3"; - sha256 = "056za75j1zgksky7pbf0pkjqz5ha15g3wj3p4ma10m9sywdyq79r"; + rev = "e65537c515d77e35697c471d6c2755375cb3adc4"; + sha256 = "119806fhl4isbxc3g52335jgiv6cddfbapr1absd4v4kkq55i5qh"; + }; + } + { + goPackagePath = "github.com/karrick/godirwalk"; + fetch = { + type = "git"; + url = "https://github.com/karrick/godirwalk"; + rev = "73c17a9b9528eb3ce857b782a2816c0cda581e62"; + sha256 = "0l0m5zi2mf649knxgmch1cblz3a3xiny1c9ki2241phkpwzspjq1"; }; } { @@ -32,8 +95,17 @@ fetch = { type = "git"; url = "https://github.com/lxc/lxd"; - rev = "5507ca02c639b378290402c7d33911a90caa4f9e"; - sha256 = "08h6ycnq43zhkzlrfvk656d1xqjbxhz6dpqmzcmrkb3pw0h0f8hg"; + rev = "fd924cb85d99475f9a0349208a8d7d0f30bdb6f0"; + sha256 = "1v246x0bi6ljkfjfjkfjbfh0imfbps2zd0m55cxdsl8y96pfx1hs"; + }; + } + { + goPackagePath = "github.com/mudler/docker-companion"; + fetch = { + type = "git"; + url = "https://github.com/mudler/docker-companion"; + rev = "6a693e9b9eaf2cd08ba628350613f2e08e9af57d"; + sha256 = "06ch1xhfd62dwkmh1z0ihifpmvgnki97k8s7gzivincy80xj0xpc"; }; } { @@ -41,8 +113,26 @@ fetch = { type = "git"; url = "https://github.com/pkg/errors"; - rev = "059132a15dd08d6704c67711dae0cf35ab991756"; - sha256 = "0bxkbh2rq40kdk8i05am5np77cnskx3571v2k300j5mmj1rl1ijg"; + rev = "27936f6d90f9c8e1145f11ed52ffffbfdb9e0af7"; + sha256 = "0yzmgi6g4ak4q8y7w6x0n5cbinlcn8yc3gwgzy4yck00qdn25d6y"; + }; + } + { + goPackagePath = "github.com/rogpeppe/go-internal"; + fetch = { + type = "git"; + url = "https://github.com/rogpeppe/go-internal"; + rev = "3670dca80da881cddd5377fb9496daaabb8dec9f"; + sha256 = "0h01adrajbl3h0yx3bkig79ap9n6ikz90cpszhqwvgr63a0xbn13"; + }; + } + { + goPackagePath = "github.com/sirupsen/logrus"; + fetch = { + type = "git"; + url = "https://github.com/sirupsen/logrus"; + rev = "07a84ee7412e7a28663d92930a1d46f81b124ee1"; + sha256 = "00hms8fnbhxb5lir3ykhl5lf1n2yqxddmd47cxp6d5ziv6k5swc8"; }; } { @@ -50,8 +140,8 @@ fetch = { type = "git"; url = "https://github.com/spf13/cobra"; - rev = "d2d81d9a96e23f0255397222bb0b4e3165e492dc"; - sha256 = "14nhpiyhz2lm468y5sm1vyxks5aky12kmbhmqq319s92lkm494cy"; + rev = "2d7544ebdeb5f926805c57af8dccc6c359de28d4"; + sha256 = "04b2bq8g948mn020l4cwhdnqffag29r21x2nyyg6cjqj306gs4vs"; }; } { @@ -59,8 +149,53 @@ fetch = { type = "git"; url = "https://github.com/spf13/pflag"; - rev = "aea12ed6721610dc6ed40141676d7ab0a1dac9e9"; - sha256 = "17p5k37bnzj6wfh000y7xpvxyv2wsfa3db9sm8da2frjvn7jgbp2"; + rev = "24fa6976df40757dce6aea913e7b81ade90530e1"; + sha256 = "0rf6prz6gl0l1b3wijzdgq887cdwigvzxvz6gqbm5l8pkq3fx1m9"; + }; + } + { + goPackagePath = "golang.org/x/crypto"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/crypto"; + rev = "4def268fd1a49955bfb3dda92fe3db4f924f2285"; + sha256 = "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6"; + }; + } + { + goPackagePath = "golang.org/x/net"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/net"; + rev = "da137c7871d730100384dbcf36e6f8fa493aef5b"; + sha256 = "1qsiyr3irmb6ii06hivm9p2c7wqyxczms1a9v1ss5698yjr3fg47"; + }; + } + { + goPackagePath = "golang.org/x/sys"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sys"; + rev = "fae7ac547cb717d141c433a2a173315e216b64c4"; + sha256 = "11pl0dycm5d8ar7g1l1w5q2cx0lms8i15n8mxhilhkdd2xpmh8f0"; + }; + } + { + goPackagePath = "golang.org/x/text"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/text"; + rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475"; + sha256 = "0flv9idw0jm5nm8lx25xqanbkqgfiym6619w575p7nrdh0riqwqh"; + }; + } + { + goPackagePath = "gopkg.in/antchfx/htmlquery.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/antchfx/htmlquery.v1"; + rev = "b8d36292614567671decfe6f96c7b8c432d3249b"; + sha256 = "1rsvngqlqyg86g1ff59zmrkn7s8b3c2vpl533amwcv5s2h8npmxy"; }; } { From aa5775242a6768679f2e8b14b1e85ab7ef970272 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 01:41:51 -0700 Subject: [PATCH 0657/1611] flink: 1.6.2 -> 1.8.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/flink/versions --- pkgs/applications/networking/cluster/flink/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/flink/default.nix b/pkgs/applications/networking/cluster/flink/default.nix index e5f437a89ad..424b2ddca91 100644 --- a/pkgs/applications/networking/cluster/flink/default.nix +++ b/pkgs/applications/networking/cluster/flink/default.nix @@ -8,8 +8,8 @@ let sha256 = "18wqcqi3gyqd40nspih99gq7ylfs20b35f4dcrspffagwkfp2l4z"; }; "1.6" = { - flinkVersion = "1.6.2"; - sha256 = "17fsr6yv1ayr7fw0r4pjlbpkn9ypzjs4brqndzr3gbzwrdc44arw"; + flinkVersion = "1.8.1"; + sha256 = "1ynxlkdxvrgww9hh7rlkhybrp5vl2slj3pqg2qzc8khpcgqx1h2g"; }; }; in From 1649f53b790c7e4ea2c7c74d219a50439aa5d05f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 02:18:19 -0700 Subject: [PATCH 0658/1611] feedreader: 2.9.2 -> 2.10.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/feedreader/versions --- .../networking/feedreaders/feedreader/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/feedreaders/feedreader/default.nix b/pkgs/applications/networking/feedreaders/feedreader/default.nix index 55932c5c198..fea062805d0 100644 --- a/pkgs/applications/networking/feedreaders/feedreader/default.nix +++ b/pkgs/applications/networking/feedreaders/feedreader/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "feedreader"; - version = "2.9.2"; + version = "2.10.0"; src = fetchFromGitHub { owner = "jangernert"; repo = pname; rev = "v${version}"; - sha256 = "1468kl1gip7h2k5l9x3shp3vxdnx08mr1n4845zinaqz4dpa70jv"; + sha256 = "154lzvd8acs4dyc91nlabpr284yrij8jkhgm0h18hp3cy0a11rv8"; }; nativeBuildInputs = [ From 594ca3f1cfd5b188c440e9460dfbfece14706009 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 15 Jul 2019 14:14:19 +0200 Subject: [PATCH 0659/1611] ccache.links: make it a function of unwrappedCC That way we can use a ccacheStdenv with e.g. a different CC: stdenv = overrideCC gcc8Stdenv (ccacheWrapper.override { unwrappedCC = gcc8Stdenv.cc.cc; }); --- pkgs/development/tools/misc/ccache/default.nix | 6 ++---- pkgs/top-level/all-packages.nix | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/misc/ccache/default.nix b/pkgs/development/tools/misc/ccache/default.nix index c5cb277c256..ae7ecad7ea1 100644 --- a/pkgs/development/tools/misc/ccache/default.nix +++ b/pkgs/development/tools/misc/ccache/default.nix @@ -27,12 +27,10 @@ let ccache = stdenv.mkDerivation rec { doCheck = !stdenv.isDarwin; - passthru = let - unwrappedCC = stdenv.cc.cc; - in { + passthru = { # A derivation that provides gcc and g++ commands, but that # will end up calling ccache for the given cacheDir - links = extraConfig: stdenv.mkDerivation rec { + links = {unwrappedCC, extraConfig}: stdenv.mkDerivation rec { name = "ccache-links"; passthru = { isClang = unwrappedCC.isClang or false; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52fcdb2167d..03ae106c481 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9009,8 +9009,8 @@ in # }; # You can use a different directory, but whichever directory you choose # should be owned by user root, group nixbld with permissions 0770. - ccacheWrapper = makeOverridable ({ extraConfig ? "" }: - wrapCC (ccache.links extraConfig)) {}; + ccacheWrapper = makeOverridable ({ extraConfig ? "", unwrappedCC ? stdenv.cc.cc }: + wrapCC (ccache.links {inherit unwrappedCC extraConfig;})) {}; ccacheStdenv = lowPrio (overrideCC stdenv buildPackages.ccacheWrapper); cccc = callPackage ../development/tools/analysis/cccc { }; From a9b4927dce5719b45b7b30acaa728381c7b3e454 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 02:55:04 -0700 Subject: [PATCH 0660/1611] esptool: 2.6 -> 2.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/esptool/versions --- pkgs/tools/misc/esptool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/esptool/default.nix b/pkgs/tools/misc/esptool/default.nix index 50ee066d96a..8793685069a 100644 --- a/pkgs/tools/misc/esptool/default.nix +++ b/pkgs/tools/misc/esptool/default.nix @@ -2,13 +2,13 @@ python3.pkgs.buildPythonApplication rec { pname = "esptool"; - version = "2.6"; + version = "2.7"; src = fetchFromGitHub { owner = "espressif"; repo = "esptool"; rev = "v${version}"; - sha256 = "1hxgzqh5z81dq1k2xd6329h8idk9y8q29izrwm1vhn0m9v1pxa22"; + sha256 = "1p5hx0rhs986ffqz78rdxg7jayndsq632399xby39k17kvd3mb31"; }; checkInputs = with python3.pkgs; [ flake8 flake8-future-import flake8-import-order openssl ]; From 893c3e8d1e7d01cfec92f040b03f8f3945a378d4 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 03:06:04 -0700 Subject: [PATCH 0661/1611] flmsg: 4.0.8.04 -> 4.0.10 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/flmsg/versions --- pkgs/applications/radio/flmsg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/radio/flmsg/default.nix b/pkgs/applications/radio/flmsg/default.nix index 87674e6084b..ae602b752e0 100644 --- a/pkgs/applications/radio/flmsg/default.nix +++ b/pkgs/applications/radio/flmsg/default.nix @@ -6,12 +6,12 @@ }: stdenv.mkDerivation rec { - version = "4.0.8.04"; + version = "4.0.10"; pname = "flmsg"; src = fetchurl { url = "mirror://sourceforge/fldigi/${pname}-${version}.tar.gz"; - sha256 = "09wazaa18zfsl4pscpzjqzj9wi4kdi6325rhaf5rl3668nlig4sm"; + sha256 = "1vprax1w5wm3v2i4d0mbakrxp7v53m2bm8icsvaji06ixskq7cxf"; }; buildInputs = [ From 631b2348f356ce7e3e46b3327b7adcd03abd51cd Mon Sep 17 00:00:00 2001 From: Lev Livnev Date: Sun, 19 May 2019 10:51:48 +0100 Subject: [PATCH 0662/1611] maintainers: add livnev --- maintainers/maintainer-list.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 426113b7918..c9de19dc93f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2927,6 +2927,15 @@ github = "listx"; name = "Linus Arver"; }; + livnev = { + email = "lev@liv.nev.org.uk"; + github = "livnev"; + name = "Lev Livnev"; + keys = [{ + longkeyid = "rsa2048/0x68FF81E6A7850F49"; + fingerprint = "74F5 E5CC 19D3 B5CB 608F 6124 68FF 81E6 A785 0F49"; + }]; + }; luis = { email = "luis.nixos@gmail.com"; github = "Luis-Hebendanz"; From 588513f1c627eac6fb07de99fbdb6b22a8ad5ab5 Mon Sep 17 00:00:00 2001 From: Tmplt Date: Fri, 19 Jul 2019 11:26:43 +0200 Subject: [PATCH 0663/1611] msmtp: 1.8.4 -> 1.8.5 --- pkgs/applications/networking/msmtp/default.nix | 4 ++-- pkgs/applications/networking/msmtp/paths.patch | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/msmtp/default.nix b/pkgs/applications/networking/msmtp/default.nix index 1e1f0b4941f..fc720a047b5 100644 --- a/pkgs/applications/networking/msmtp/default.nix +++ b/pkgs/applications/networking/msmtp/default.nix @@ -9,11 +9,11 @@ let in stdenv.mkDerivation rec { pname = "msmtp"; - version = "1.8.4"; + version = "1.8.5"; src = fetchurl { url = "https://marlam.de/${pname}/releases/${pname}-${version}.tar.xz"; - sha256 = "1xr926lyy44baqdgv9q0sw5z6ll2cb4lx2g4lgpgbqn8bglpzpg5"; + sha256 = "0fczpfxlr62wkr7bwhp24clxg962k5khgz14h818qyy4v77dl4qn"; }; patches = [ diff --git a/pkgs/applications/networking/msmtp/paths.patch b/pkgs/applications/networking/msmtp/paths.patch index 38e4155a113..707163bff0c 100644 --- a/pkgs/applications/networking/msmtp/paths.patch +++ b/pkgs/applications/networking/msmtp/paths.patch @@ -59,7 +59,8 @@ index bdb4fb8..1363a67 100755 ## log() { + local NAME=msmtpq - local ARG RC PFX="$('date' +'%Y %d %b %H:%M:%S')" + local ARG RC PFX + PFX="$('date' +'%Y %d %b %H:%M:%S')" # time stamp prefix - "2008 13 Mar 03:59:45 " if [ "$1" = '-e' ] ; then # there's an error exit code @@ -154,10 +157,19 @@ log() { From c638d5b023f8097ca6b58230f311cef239c5d20b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 04:26:04 -0700 Subject: [PATCH 0664/1611] drumkv1: 0.9.8 -> 0.9.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/drumkv1/versions --- pkgs/applications/audio/drumkv1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/drumkv1/default.nix b/pkgs/applications/audio/drumkv1/default.nix index 22613da7cab..f8e1db4814c 100644 --- a/pkgs/applications/audio/drumkv1/default.nix +++ b/pkgs/applications/audio/drumkv1/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "drumkv1-${version}"; - version = "0.9.8"; + version = "0.9.9"; src = fetchurl { url = "mirror://sourceforge/drumkv1/${name}.tar.gz"; - sha256 = "010p8nwnmqgj5mw324psig3hxi1g2gylxrigd6sj6sgcpy3kdm23"; + sha256 = "02sa29fdjgwcf7izly685gxvga3bxyyqvskvfiisgm2xg3h9r983"; }; buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools ]; From 663542ad0483131e8c36742283191a8f40a7363d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 05:45:17 -0700 Subject: [PATCH 0665/1611] gnome3.gnome-getting-started-docs: 3.32.1 -> 3.32.2 (#65073) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gnome-getting-started-docs/versions --- .../gnome-3/apps/gnome-getting-started-docs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/apps/gnome-getting-started-docs/default.nix b/pkgs/desktops/gnome-3/apps/gnome-getting-started-docs/default.nix index 37f2a859488..4c215d34729 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-getting-started-docs/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-getting-started-docs/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gnome-getting-started-docs-${version}"; - version = "3.32.1"; + version = "3.32.2"; src = fetchurl { url = "mirror://gnome/sources/gnome-getting-started-docs/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "0g4zaafj442gpir0hxv5hya37ax1ai40slls7sa2a02fdarilrjf"; + sha256 = "1v4k465mlzrhgcdddzs6bmm0yliyrfx6jg3gh0s17a08i0w5rbwq"; }; passthru = { From 9b9434f507631d919f1e1cbfc4a33e74f64ffd09 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 06:07:43 -0700 Subject: [PATCH 0666/1611] freecad: 0.18.2 -> 0.18.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/freecad/versions --- pkgs/applications/graphics/freecad/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/freecad/default.nix b/pkgs/applications/graphics/freecad/default.nix index 8fc39ded638..8f0fe00a85e 100644 --- a/pkgs/applications/graphics/freecad/default.nix +++ b/pkgs/applications/graphics/freecad/default.nix @@ -9,11 +9,11 @@ let pythonPackages = python3Packages; in stdenv.mkDerivation rec { name = "freecad-${version}"; - version = "0.18.2"; + version = "0.18.3"; src = fetchurl { url = "https://github.com/FreeCAD/FreeCAD/archive/${version}.tar.gz"; - sha256 = "1r5rhaiq22yhrfpmcmzx6bflqj6q9asbyjyfja4x4rzfy9yh0a4v"; + sha256 = "07j7azgnicmd8cqnyskp15y44ykgj5qqz5y3w1jdynrv3yrvk1kz"; }; nativeBuildInputs = [ cmake ninja pkgconfig pythonPackages.pyside2-tools ]; From 98a0dcefbfcd99867d79b225bf60df3a303792f7 Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Fri, 19 Jul 2019 16:10:00 +0300 Subject: [PATCH 0667/1611] broot: 0.8.0 -> 0.9.0 --- pkgs/tools/misc/broot/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/broot/default.nix b/pkgs/tools/misc/broot/default.nix index 8b1cf6318e3..b183df701a7 100644 --- a/pkgs/tools/misc/broot/default.nix +++ b/pkgs/tools/misc/broot/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "broot"; - version = "0.8.0"; + version = "0.9.0"; src = fetchFromGitHub { owner = "Canop"; repo = pname; rev = "v${version}"; - sha256 = "0xgjpdy12b77hgf0vfgs2ayxaajjv8vs0v8fn4rnrgn3hz8ldhyc"; + sha256 = "0i6ayp295xnppq92lc1fsfyrjkxrkvsva07yby45qa0l92nihqpy"; }; - cargoSha256 = "1hsrp9xbi6bj3461y58hmzfwakx4vakpzkjvi6174gy8xq7cdvg1"; + cargoSha256 = "1qdi1l0k0v00r9mfxgf09dzkvgxn07rcsl2yyyrhvcn731ak302y"; meta = with stdenv.lib; { description = "An interactive tree view, a fuzzy search, a balanced BFS descent and customizable commands"; From e72f25673df16021bc91bfa6a92d10bacf33055b Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Fri, 19 Jul 2019 15:49:37 +0200 Subject: [PATCH 0668/1611] Renaming security.virtualization.flushL1DataCache to virtualisation Fixes #65044 --- nixos/modules/profiles/hardened.nix | 2 +- nixos/modules/rename.nix | 2 ++ nixos/modules/security/misc.nix | 8 ++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/nixos/modules/profiles/hardened.nix b/nixos/modules/profiles/hardened.nix index 97279a78a57..29c3f2f8bbf 100644 --- a/nixos/modules/profiles/hardened.nix +++ b/nixos/modules/profiles/hardened.nix @@ -26,7 +26,7 @@ with lib; security.allowSimultaneousMultithreading = mkDefault false; - security.virtualization.flushL1DataCache = mkDefault "always"; + security.virtualisation.flushL1DataCache = mkDefault "always"; security.apparmor.enable = mkDefault true; diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index f611a3992ed..4ae64222274 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -63,6 +63,8 @@ with lib; (mkRemovedOptionModule [ "security" "setuidOwners" ] "Use security.wrappers instead") (mkRemovedOptionModule [ "security" "setuidPrograms" ] "Use security.wrappers instead") + (mkRenamedOptionModule [ "security" "virtualization" "flushL1DataCache" ] [ "security" "virtualisation" "flushL1DataCache" ]) + # PAM (mkRenamedOptionModule [ "security" "pam" "enableU2F" ] [ "security" "pam" "u2f" "enable" ]) diff --git a/nixos/modules/security/misc.nix b/nixos/modules/security/misc.nix index bf474ac0a54..2a7f07ef6db 100644 --- a/nixos/modules/security/misc.nix +++ b/nixos/modules/security/misc.nix @@ -48,13 +48,13 @@ with lib; e.g., shared caches). This attack vector is unproven. Disabling SMT is a supplement to the L1 data cache flushing mitigation - (see ) + (see ) versus malicious VM guests (SMT could "bring back" previously flushed data). ''; }; - security.virtualization.flushL1DataCache = mkOption { + security.virtualisation.flushL1DataCache = mkOption { type = types.nullOr (types.enum [ "never" "cond" "always" ]); default = null; description = '' @@ -114,8 +114,8 @@ with lib; boot.kernelParams = [ "nosmt" ]; }) - (mkIf (config.security.virtualization.flushL1DataCache != null) { - boot.kernelParams = [ "kvm-intel.vmentry_l1d_flush=${config.security.virtualization.flushL1DataCache}" ]; + (mkIf (config.security.virtualisation.flushL1DataCache != null) { + boot.kernelParams = [ "kvm-intel.vmentry_l1d_flush=${config.security.virtualisation.flushL1DataCache}" ]; }) ]; } From 58ea28eb2c11a419b3e895f16d045fbd8f05468c Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Fri, 19 Jul 2019 16:23:11 +0200 Subject: [PATCH 0669/1611] lib: allow sourceByRegex to be composed after cleanSourceWith `sourceByRegex src regexes` should include a source file if one of the regular expressions `regexes` matches the path of that file relative to `src`. However to compute this relative path `sourceByRegex` uses: ``` relPath = lib.removePrefix (toString src + "/") (toString path); ``` Note that `toString path` evaluates to an absolute file somewhere under `src` and not under `/nix/store`. The problem is that this doesn't work if `src` is a `cleanSourceWith` invocation as well because `toString src` will then evaluate to `src.outPath` which will evaluate to `builtins.filterSource ...` which evaluates to a path in `/nix/store` which is not a prefix of `path`. The solution is to replace `src` with `origSrc` where ``` origSrc = if isFiltered then src.origSrc else src; isFiltered = src ? _isLibCleanSourceWith; ``` Test this by executing the following from the nixpkgs repo: ``` (cat << 'EOI' let pkgs = import ./. {}; in pkgs.runCommand "test-sourceByRegex" { test_sourceByRegex = let src1 = pkgs.lib.sourceByRegex ./. [ "^test-sourceByRegex.nix$" ]; src2 = pkgs.lib.sourceByRegex src1 [ "^test-sourceByRegex.nix$" ]; in src2 + "/test-sourceByRegex.nix"; } '' cp $test_sourceByRegex $out '' EOI ) > test-sourceByRegex.nix nix-build test-sourceByRegex.nix ``` --- lib/sources.nix | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/lib/sources.nix b/lib/sources.nix index 0ffadea8f1b..c4680087b24 100644 --- a/lib/sources.nix +++ b/lib/sources.nix @@ -53,12 +53,16 @@ rec { # Filter sources by a list of regular expressions. # # E.g. `src = sourceByRegex ./my-subproject [".*\.py$" "^database.sql$"]` - sourceByRegex = src: regexes: cleanSourceWith { - filter = (path: type: - let relPath = lib.removePrefix (toString src + "/") (toString path); - in lib.any (re: builtins.match re relPath != null) regexes); - inherit src; - }; + sourceByRegex = src: regexes: + let + isFiltered = src ? _isLibCleanSourceWith; + origSrc = if isFiltered then src.origSrc else src; + in lib.cleanSourceWith { + filter = (path: type: + let relPath = lib.removePrefix (toString origSrc + "/") (toString path); + in lib.any (re: builtins.match re relPath != null) regexes); + inherit src; + }; # Get all files ending with the specified suffices from the given # directory or its descendants. E.g. `sourceFilesBySuffices ./dir From 28a0dc5a12d56c17e236fe010f355bb8fe6f5f33 Mon Sep 17 00:00:00 2001 From: Tyson Whitehead Date: Tue, 9 Jul 2019 14:32:13 -0400 Subject: [PATCH 0670/1611] gl2ps: init at 1.4.0 --- maintainers/maintainer-list.nix | 9 ++++++ pkgs/development/libraries/gl2ps/default.nix | 29 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 40 insertions(+) create mode 100644 pkgs/development/libraries/gl2ps/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 426113b7918..ccce046e887 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5362,6 +5362,15 @@ github = "twey"; name = "James ‘Twey’ Kay"; }; + twhitehead = { + name = "Tyson Whitehead"; + email = "twhitehead@gmail.com"; + github = "twhitehead"; + keys = [{ + longkeyid = "rsa2048/0x594258F0389D2802"; + fingerprint = "E631 8869 586F 99B4 F6E6 D785 5942 58F0 389D 2802"; + }]; + }; typetetris = { email = "ericwolf42@mail.com"; github = "typetetris"; diff --git a/pkgs/development/libraries/gl2ps/default.nix b/pkgs/development/libraries/gl2ps/default.nix new file mode 100644 index 00000000000..aadc6986f5a --- /dev/null +++ b/pkgs/development/libraries/gl2ps/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, cmake +, zlib, libGL, libGLU, libpng, freeglut }: + +stdenv.mkDerivation rec { + version = "1.4.0"; + name = "gl2ps-${version}"; + + src = fetchurl { + url = "http://geuz.org/gl2ps/src/${name}.tgz"; + sha256 = "1qpidkz8x3bxqf69hlhyz1m0jmfi9kq24fxsp7rq6wfqzinmxjq3"; + }; + + buildInputs = [ + cmake + zlib + libGL + libGLU + libpng + freeglut + ]; + + meta = with stdenv.lib; { + homepage = http://geuz.org/gl2ps; + description = "An OpenGL to PostScript printing library"; + platforms = platforms.all; + license = licenses.lgpl2; + maintainers = with maintainers; [raskin twhitehead]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03ae106c481..483e8cb0a78 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3280,6 +3280,8 @@ in gitea = callPackage ../applications/version-management/gitea { }; + gl2ps = callPackage ../development/libraries/gl2ps { }; + glusterfs = callPackage ../tools/filesystems/glusterfs { }; glmark2 = callPackage ../tools/graphics/glmark2 { }; From 23ae47a2d040023d5a912e8df44f47ec6ca5c668 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Fri, 19 Jul 2019 09:48:28 -0400 Subject: [PATCH 0671/1611] compton: 6.2 -> 7 --- nixos/modules/services/x11/compton.nix | 134 +++++++++--------- .../window-managers/compton/default.nix | 10 +- 2 files changed, 75 insertions(+), 69 deletions(-) diff --git a/nixos/modules/services/x11/compton.nix b/nixos/modules/services/x11/compton.nix index d4357324c87..c02c9bfd94e 100644 --- a/nixos/modules/services/x11/compton.nix +++ b/nixos/modules/services/x11/compton.nix @@ -7,57 +7,35 @@ let cfg = config.services.compton; - literalAttrs = v: - if isString v then toString v - else if isAttrs v then "{\n" - + concatStringsSep "\n" (mapAttrsToList - (name: value: "${literalAttrs name} = ${literalAttrs value};") - v) - + "\n}" - else generators.toPretty {} v; + pairOf = x: with types; addCheck (listOf x) (y: length y == 2); floatBetween = a: b: with lib; with types; addCheck str (x: versionAtLeast x a && versionOlder x b); - pairOf = x: with types; addCheck (listOf x) (y: length y == 2); + toConf = attrs: concatStringsSep "\n" + (mapAttrsToList + (k: v: let + sep = if isAttrs v then ":" else "="; + # Basically a tinkered lib.generators.mkKeyValueDefault + mkValueString = v: + if isBool v then boolToString v + else if isInt v then toString v + else if isFloat v then toString v + else if isString v then ''"${escape [ ''"'' ] v}"'' + else if isList v then "[ " + + concatMapStringsSep " , " mkValueString v + + " ]" + else if isAttrs v then "{ " + + concatStringsSep " " + (mapAttrsToList + (key: value: "${toString key}=${mkValueString value};") + v) + + " }" + else abort "compton.mkValueString: unexpected type (v = ${v})"; + in "${escape [ sep ] k}${sep}${mkValueString v};") + attrs); - opacityRules = optionalString (length cfg.opacityRules != 0) - (concatMapStringsSep ",\n" (rule: ''"${rule}"'') cfg.opacityRules); - - configFile = pkgs.writeText "compton.conf" - (optionalString cfg.fade '' - # fading - fading = true; - fade-delta = ${toString cfg.fadeDelta}; - fade-in-step = ${elemAt cfg.fadeSteps 0}; - fade-out-step = ${elemAt cfg.fadeSteps 1}; - fade-exclude = ${toJSON cfg.fadeExclude}; - '' + optionalString cfg.shadow '' - - # shadows - shadow = true; - shadow-offset-x = ${toString (elemAt cfg.shadowOffsets 0)}; - shadow-offset-y = ${toString (elemAt cfg.shadowOffsets 1)}; - shadow-opacity = ${cfg.shadowOpacity}; - shadow-exclude = ${toJSON cfg.shadowExclude}; - '' + '' - - # opacity - active-opacity = ${cfg.activeOpacity}; - inactive-opacity = ${cfg.inactiveOpacity}; - - wintypes: - ${literalAttrs cfg.wintypes}; - - opacity-rule = [ - ${opacityRules} - ]; - - # other options - backend = ${toJSON cfg.backend}; - vsync = ${boolToString cfg.vSync}; - refresh-rate = ${toString cfg.refreshRate}; - '' + cfg.extraOptions); + configFile = pkgs.writeText "compton.conf" (toConf cfg.settings); in { @@ -236,23 +214,13 @@ in { ''; }; - package = mkOption { - type = types.package; - default = pkgs.compton; - defaultText = "pkgs.compton"; - example = literalExample "pkgs.compton"; - description = '' - Compton derivation to use. - ''; - }; - - extraOptions = mkOption { - type = types.lines; - default = ""; - example = '' - unredir-if-possible = true; - dbe = true; - ''; + settings = let + configTypes = with types; either bool (either int (either float str)); + # types.loaOf converts lists to sets + loaOf = t: with types; either (listOf t) (attrsOf t); + in mkOption { + type = loaOf (types.either configTypes (loaOf (types.either configTypes (loaOf configTypes)))); + default = {}; description = '' Additional Compton configuration. ''; @@ -260,6 +228,42 @@ in { }; config = mkIf cfg.enable { + services.compton.settings = let + # Hard conversion to float, literally lib.toInt but toFloat + toFloat = str: let + may_be_float = builtins.fromJSON str; + in if builtins.isFloat may_be_float + then may_be_float + else throw "Could not convert ${str} to float."; + in { + # fading + fading = mkDefault cfg.fade; + fade-delta = mkDefault cfg.fadeDelta; + fade-in-step = mkDefault (toFloat (elemAt cfg.fadeSteps 0)); + fade-out-step = mkDefault (toFloat (elemAt cfg.fadeSteps 1)); + fade-exclude = mkDefault cfg.fadeExclude; + + # shadows + shadow = mkDefault cfg.shadow; + shadow-offset-x = mkDefault (elemAt cfg.shadowOffsets 0); + shadow-offset-y = mkDefault (elemAt cfg.shadowOffsets 1); + shadow-opacity = mkDefault (toFloat cfg.shadowOpacity); + shadow-exclude = mkDefault cfg.shadowExclude; + + # opacity + active-opacity = mkDefault (toFloat cfg.activeOpacity); + inactive-opacity = mkDefault (toFloat cfg.inactiveOpacity); + + wintypes = mkDefault cfg.wintypes; + + opacity-rule = mkDefault cfg.opacityRules; + + # other options + backend = mkDefault cfg.backend; + vsync = mkDefault cfg.vSync; + refresh-rate = mkDefault cfg.refreshRate; + }; + systemd.user.services.compton = { description = "Compton composite manager"; wantedBy = [ "graphical-session.target" ]; @@ -271,13 +275,13 @@ in { }; serviceConfig = { - ExecStart = "${cfg.package}/bin/compton --config ${configFile}"; + ExecStart = "${pkgs.compton}/bin/compton --config ${configFile}"; RestartSec = 3; Restart = "always"; }; }; - environment.systemPackages = [ cfg.package ]; + environment.systemPackages = [ pkgs.compton ]; }; } diff --git a/pkgs/applications/window-managers/compton/default.nix b/pkgs/applications/window-managers/compton/default.nix index e729f786a56..843c331f91c 100644 --- a/pkgs/applications/window-managers/compton/default.nix +++ b/pkgs/applications/window-managers/compton/default.nix @@ -1,11 +1,11 @@ -{ stdenv, lib, fetchFromGitHub, pkgconfig, asciidoc, docbook_xml_dtd_45 +{ stdenv, lib, fetchFromGitHub, pkgconfig, uthash, asciidoc, docbook_xml_dtd_45 , docbook_xsl, libxslt, libxml2, makeWrapper, meson, ninja , xorgproto, libxcb ,xcbutilrenderutil, xcbutilimage, pixman, libev , dbus, libconfig, libdrm, libGL, pcre, libX11 , libXinerama, libXext, xwininfo, libxdg_basedir }: stdenv.mkDerivation rec { pname = "compton"; - version = "6.2"; + version = "7"; COMPTON_VERSION = "v${version}"; @@ -13,12 +13,14 @@ stdenv.mkDerivation rec { owner = "yshui"; repo = "compton"; rev = COMPTON_VERSION; - sha256 = "03fi9q8zw2qrwpkmy1bnavgfh91ci9in5fdi17g4s5s0n2l7yil7"; + sha256 = "0f23dv2p1snlpzc91v38q6896ncz4zqzmh2d97yf66j78g21awas"; + fetchSubmodules = true; }; nativeBuildInputs = [ meson ninja pkgconfig + uthash asciidoc docbook_xml_dtd_45 docbook_xsl @@ -41,7 +43,7 @@ stdenv.mkDerivation rec { ]; preBuild = '' - git() { echo "v${version}"; } + git() { echo "$COMPTON_VERSION"; } export -f git ''; From 730ac18ebee49be24b46cc69ad785c8b10bf844f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 10:37:38 -0700 Subject: [PATCH 0672/1611] ktlint: 0.33.0 -> 0.34.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ktlint/versions --- pkgs/development/tools/ktlint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/ktlint/default.nix b/pkgs/development/tools/ktlint/default.nix index 0bfe54508b8..1bc9aa14e44 100644 --- a/pkgs/development/tools/ktlint/default.nix +++ b/pkgs/development/tools/ktlint/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "ktlint-${version}"; - version = "0.33.0"; + version = "0.34.0"; src = fetchurl { url = "https://github.com/shyiko/ktlint/releases/download/${version}/ktlint"; - sha256 = "11yh4d7ybmddw86n8ms259rwd3q0gx2qqir2x92dhywp6pb8g11b"; + sha256 = "1mry999aqmbljp2ybkgf9hps8z4aa254b1bsivi559gzsvdkmqh7"; }; nativeBuildInputs = [ makeWrapper ]; From 73361ce403fa5a3ecff11ac1d5fa7291fff6865c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 11:13:16 -0700 Subject: [PATCH 0673/1611] leocad: 18.02 -> 19.07.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/leocad/versions --- pkgs/applications/graphics/leocad/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/leocad/default.nix b/pkgs/applications/graphics/leocad/default.nix index ada55f0351e..4f86e573689 100644 --- a/pkgs/applications/graphics/leocad/default.nix +++ b/pkgs/applications/graphics/leocad/default.nix @@ -7,13 +7,13 @@ set the variable LEOCAD_LIB=/path/to/libs/ or use option -l /path/to/libs/ stdenv.mkDerivation rec { name = "leocad-${version}"; - version = "18.02"; + version = "19.07.1"; src = fetchFromGitHub { owner = "leozide"; repo = "leocad"; rev = "v${version}"; - sha256 = "0rb4kjyrr9ry85cfpbk52l19vvwn7lrh2kmj2lwq531smnygn5m3"; + sha256 = "02kv1m18g6s4dady9jv4sjivfkrp192bmdw2a3d9lzlp60zks0p2"; }; nativeBuildInputs = [ qmake4Hook ]; From c8442c7f6a3f9c2bcc198c295dd6038d648a25df Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Mon, 24 Jun 2019 11:01:15 -0700 Subject: [PATCH 0674/1611] plata-theme: 0.8.3 -> 0.8.7 --- pkgs/data/themes/plata/default.nix | 15 ++++++++------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/data/themes/plata/default.nix b/pkgs/data/themes/plata/default.nix index df0201af3b8..0d87cd848f8 100644 --- a/pkgs/data/themes/plata/default.nix +++ b/pkgs/data/themes/plata/default.nix @@ -1,14 +1,15 @@ { stdenv, fetchFromGitLab, autoreconfHook, pkgconfig, parallel -, sassc, inkscape, libxml2, gnome2, gdk_pixbuf, librsvg, gtk-engine-murrine +, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine , cinnamonSupport ? true , gnomeFlashbackSupport ? true , gnomeShellSupport ? true , openboxSupport ? true , xfceSupport ? true +, mateSupport ? true, gtk3, marco , gtkNextSupport ? false , plankSupport ? false , steamSupport ? false -, telegramSupport ? false, zip ? null +, telegramSupport ? false, zip , tweetdeckSupport ? false , selectionColor ? null # Primary color for 'selected-items' (Default: #3F51B5 = Indigo500) , accentColor ? null # Secondary color for notifications and OSDs (Default: #7986CB = Indigo300) @@ -16,17 +17,15 @@ , destructionColor ? null # Tertiary color for 'destructive' buttons (Default: #F44336 = Red500) }: -assert telegramSupport -> zip != null; - stdenv.mkDerivation rec { pname = "plata-theme"; - version = "0.8.3"; + version = "0.8.7"; src = fetchFromGitLab { owner = "tista500"; repo = "plata-theme"; rev = version; - sha256 = "0ibgymdrw91lnng76lb0x55zg6nm9f2vap19wk7qsq3bcw6ny2zi"; + sha256 = "1rn51yj7f7bclvrwwqwid4z9cpap4yd0zw0xs08c36zcjmr28426"; }; preferLocalBuild = true; @@ -38,8 +37,9 @@ stdenv.mkDerivation rec { sassc inkscape libxml2 - gnome2.glib.dev + glib.dev ] + ++ stdenv.lib.optionals mateSupport [ gtk3 marco ] ++ stdenv.lib.optional telegramSupport zip; buildInputs = [ @@ -62,6 +62,7 @@ stdenv.mkDerivation rec { (enableFeature gnomeShellSupport "gnome") (enableFeature openboxSupport "openbox") (enableFeature xfceSupport "xfce") + (enableFeature mateSupport "mate") (enableFeature gtkNextSupport "gtk_next") (enableFeature plankSupport "plank") (enableFeature steamSupport "airforsteam") diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 001214093ee..5189eb0ee15 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16583,7 +16583,9 @@ in plano-theme = callPackage ../data/themes/plano { }; - plata-theme = callPackage ../data/themes/plata {}; + plata-theme = callPackage ../data/themes/plata { + inherit (mate) marco; + }; poly = callPackage ../data/fonts/poly { }; From 107583bdfa811b5247bf0da0f5464bab523d6bc5 Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Fri, 19 Jul 2019 11:44:38 -0700 Subject: [PATCH 0675/1611] cocoapods: 1.7.4 -> 1.7.5 --- pkgs/development/mobile/cocoapods/Gemfile.lock | 6 +++--- pkgs/development/mobile/cocoapods/gemset.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/mobile/cocoapods/Gemfile.lock b/pkgs/development/mobile/cocoapods/Gemfile.lock index 758383455e0..b8ce7131b9f 100644 --- a/pkgs/development/mobile/cocoapods/Gemfile.lock +++ b/pkgs/development/mobile/cocoapods/Gemfile.lock @@ -9,10 +9,10 @@ GEM tzinfo (~> 1.1) atomos (0.1.3) claide (1.0.2) - cocoapods (1.7.4) + cocoapods (1.7.5) activesupport (>= 4.0.2, < 5) claide (>= 1.0.2, < 2.0) - cocoapods-core (= 1.7.4) + cocoapods-core (= 1.7.5) cocoapods-deintegrate (>= 1.0.3, < 2.0) cocoapods-downloader (>= 1.2.2, < 2.0) cocoapods-plugins (>= 1.0.0, < 2.0) @@ -28,7 +28,7 @@ GEM nap (~> 1.0) ruby-macho (~> 1.4) xcodeproj (>= 1.10.0, < 2.0) - cocoapods-core (1.7.4) + cocoapods-core (1.7.5) activesupport (>= 4.0.2, < 6) fuzzy_match (~> 2.0.4) nap (~> 1.0) diff --git a/pkgs/development/mobile/cocoapods/gemset.nix b/pkgs/development/mobile/cocoapods/gemset.nix index bb4ea396c09..003c3a1bc13 100644 --- a/pkgs/development/mobile/cocoapods/gemset.nix +++ b/pkgs/development/mobile/cocoapods/gemset.nix @@ -40,10 +40,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1h0cnrxh5k61yfh3f3kdx67gwfkvnvaqgsmwbmqpl7ffbpsg5gsc"; + sha256 = "02gnm6l7f3pxmy7bqns0dhxmanlqp01hkpvng5cxryww17zrq2qz"; type = "gem"; }; - version = "1.7.4"; + version = "1.7.5"; }; cocoapods-core = { dependencies = ["activesupport" "fuzzy_match" "nap"]; @@ -51,10 +51,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xbpaisml77q9k5bk5f7hfkzmnjymzczinvhgim34nvwd00rd30c"; + sha256 = "1i53x5lhlvyirls2ch45x9wsrfqk7s3zp85lbnwps9abimxj4nh4"; type = "gem"; }; - version = "1.7.4"; + version = "1.7.5"; }; cocoapods-deintegrate = { groups = ["default"]; From 33d9cd6a93c5e519d153310f7992aabd6ffbb1be Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Fri, 19 Jul 2019 11:44:45 -0700 Subject: [PATCH 0676/1611] cocoapods-beta: 1.7.4 -> 1.7.5 --- pkgs/development/mobile/cocoapods/Gemfile-beta.lock | 6 +++--- pkgs/development/mobile/cocoapods/gemset-beta.nix | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/development/mobile/cocoapods/Gemfile-beta.lock b/pkgs/development/mobile/cocoapods/Gemfile-beta.lock index 2c881a5c45a..2e42e8bd23c 100644 --- a/pkgs/development/mobile/cocoapods/Gemfile-beta.lock +++ b/pkgs/development/mobile/cocoapods/Gemfile-beta.lock @@ -9,10 +9,10 @@ GEM tzinfo (~> 1.1) atomos (0.1.3) claide (1.0.2) - cocoapods (1.7.4) + cocoapods (1.7.5) activesupport (>= 4.0.2, < 5) claide (>= 1.0.2, < 2.0) - cocoapods-core (= 1.7.4) + cocoapods-core (= 1.7.5) cocoapods-deintegrate (>= 1.0.3, < 2.0) cocoapods-downloader (>= 1.2.2, < 2.0) cocoapods-plugins (>= 1.0.0, < 2.0) @@ -28,7 +28,7 @@ GEM nap (~> 1.0) ruby-macho (~> 1.4) xcodeproj (>= 1.10.0, < 2.0) - cocoapods-core (1.7.4) + cocoapods-core (1.7.5) activesupport (>= 4.0.2, < 6) fuzzy_match (~> 2.0.4) nap (~> 1.0) diff --git a/pkgs/development/mobile/cocoapods/gemset-beta.nix b/pkgs/development/mobile/cocoapods/gemset-beta.nix index bd89b448eac..7ae6e50de99 100644 --- a/pkgs/development/mobile/cocoapods/gemset-beta.nix +++ b/pkgs/development/mobile/cocoapods/gemset-beta.nix @@ -46,10 +46,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1h0cnrxh5k61yfh3f3kdx67gwfkvnvaqgsmwbmqpl7ffbpsg5gsc"; + sha256 = "02gnm6l7f3pxmy7bqns0dhxmanlqp01hkpvng5cxryww17zrq2qz"; type = "gem"; }; - version = "1.7.4"; + version = "1.7.5"; }; cocoapods-core = { dependencies = ["activesupport" "fuzzy_match" "nap"]; @@ -57,10 +57,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0xbpaisml77q9k5bk5f7hfkzmnjymzczinvhgim34nvwd00rd30c"; + sha256 = "1i53x5lhlvyirls2ch45x9wsrfqk7s3zp85lbnwps9abimxj4nh4"; type = "gem"; }; - version = "1.7.4"; + version = "1.7.5"; }; cocoapods-deintegrate = { groups = ["default"]; From 5090b2535d68fa59e3d81fcbd4ff65a84d426ed2 Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Fri, 19 Jul 2019 22:08:53 +0300 Subject: [PATCH 0677/1611] mako: 1.3 -> 1.4 --- pkgs/applications/misc/mako/default.nix | 19 ++++--------------- 1 file changed, 4 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/misc/mako/default.nix b/pkgs/applications/misc/mako/default.nix index 32aa15b09e4..0f7c55645ba 100644 --- a/pkgs/applications/misc/mako/default.nix +++ b/pkgs/applications/misc/mako/default.nix @@ -1,33 +1,22 @@ { stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc , systemd, pango, cairo, gdk_pixbuf -, wayland, wayland-protocols -, fetchpatch }: +, wayland, wayland-protocols }: stdenv.mkDerivation rec { pname = "mako"; - version = "1.3"; + version = "1.4"; src = fetchFromGitHub { owner = "emersion"; repo = pname; rev = "v${version}"; - sha256 = "17azdc37xsbmx13fkfp23vg9lznrv9fh6nhagn64wdq3nhsxm3b6"; + sha256 = "11ymiq6cr2ma0iva1mqybn3j6k73bsc6lv6pcbdq7hkhd4f9b7j9"; }; - # to be removed with next release - patches = [ - (fetchpatch { - url = "https://github.com/emersion/mako/commit/ca8e763f06756136c534b1bbd2e5b536be6b1995.patch"; - sha256 = "09mi7nn2vwc69igxxc6y2m36n3snhsz0ady99yabhrzl17k4ryds"; - }) - ]; - nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols ]; buildInputs = [ systemd pango cairo gdk_pixbuf wayland ]; - mesonFlags = [ - "-Dicons=enabled" "-Dman-pages=enabled" "-Dzsh-completions=true" - ]; + mesonFlags = [ "-Dzsh-completions=true" ]; meta = with stdenv.lib; { description = "A lightweight Wayland notification daemon"; From 5bf96aa3bd5154dd981f93ddb72f1e1be3fe89e7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 12:11:43 -0700 Subject: [PATCH 0678/1611] libmediainfo: 19.04 -> 19.07 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libmediainfo/versions --- pkgs/development/libraries/libmediainfo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index 172b9cd88da..bf6aa0d23fb 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "19.04"; + version = "19.07"; name = "libmediainfo-${version}"; src = fetchurl { url = "https://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "1yr2vl2z9z1kllr5ygi39r1ryw695cic8yj34yragkk33l1z6xc2"; + sha256 = "0k3d7mha1lay2s09crc9z9zr970l617lb0c3b35wl44flkqf7jss"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; From 186222ce7b3fdf955afb10e8c95f05bf92aec86d Mon Sep 17 00:00:00 2001 From: Dima <43349662+d-goldin@users.noreply.github.com> Date: Fri, 19 Jul 2019 21:13:57 +0200 Subject: [PATCH 0679/1611] Fixing minor typo in prometheus exporters doc --- nixos/modules/services/monitoring/prometheus/exporters.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.xml b/nixos/modules/services/monitoring/prometheus/exporters.xml index 81ac998729b..d6705ff6398 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.xml +++ b/nixos/modules/services/monitoring/prometheus/exporters.xml @@ -17,7 +17,7 @@ exporter, it provides hardware and OS metrics from the host it's running on. The exporter could be configured as follows: - services.promtheus.exporters.node = { + services.prometheus.exporters.node = { enable = true; enabledCollectors = [ "logind" From e2c474875ef4047f286f6f9194aaae1b8f2205e6 Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 19 Jul 2019 22:13:37 +0200 Subject: [PATCH 0680/1611] riot-web: 1.2.2 -> 1.3.0 --- .../networking/instant-messengers/riot/riot-web.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix index 2d6c0df412a..9a2e2df80f2 100644 --- a/pkgs/applications/networking/instant-messengers/riot/riot-web.nix +++ b/pkgs/applications/networking/instant-messengers/riot/riot-web.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name= "riot-web-${version}"; - version = "1.2.2"; + version = "1.3.0"; src = fetchurl { url = "https://github.com/vector-im/riot-web/releases/download/v${version}/riot-v${version}.tar.gz"; - sha256 = "19nb6gyjaijah068ika6hvk18hraivm71830i9cd4ssl6g5j4k8x"; + sha256 = "1rppxcc4m00bf73ghgli967wwrri2jdj865623pn8nk4kny4wxyq"; }; installPhase = let From 541f60d3272d15b9ad7d5d28b1b20fe51e8e4ea0 Mon Sep 17 00:00:00 2001 From: pacien Date: Fri, 19 Jul 2019 22:13:48 +0200 Subject: [PATCH 0681/1611] riot-desktop: 1.2.2 -> 1.3.0 --- .../instant-messengers/riot/riot-desktop-package.json | 2 +- .../networking/instant-messengers/riot/riot-desktop.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json b/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json index 7c348b88c8a..edf10ed2cb4 100644 --- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json +++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop-package.json @@ -2,7 +2,7 @@ "name": "riot-web", "productName": "Riot", "main": "src/electron-main.js", - "version": "1.2.2", + "version": "1.3.0", "description": "A feature-rich client for Matrix.org", "author": "New Vector Ltd.", "dependencies": { diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix index d6dcd0ee2ef..fdb64fdacd3 100644 --- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix +++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix @@ -7,12 +7,12 @@ with (import ./yarn2nix.nix { inherit pkgs; }); let executableName = "riot-desktop"; - version = "1.2.2"; + version = "1.3.0"; riot-web-src = fetchFromGitHub { owner = "vector-im"; repo = "riot-web"; rev = "v${version}"; - sha256 = "0ak1icl3apqn1b210jqj9ysnn40808lzrdwibdmv47c30hhq10fb"; + sha256 = "00142b0zcnwfdgvb84k2a0amyb67j3mm0d8p191aqk3bxv1xpxk1"; }; in mkYarnPackage rec { From 9e6cd38c818364472a27b7139cb9b0f298c16da4 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 13:15:30 -0700 Subject: [PATCH 0682/1611] libstatgrab: 0.91 -> 0.92 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libstatgrab/versions --- pkgs/development/libraries/libstatgrab/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libstatgrab/default.nix b/pkgs/development/libraries/libstatgrab/default.nix index 8896447590b..e10dffa96c1 100644 --- a/pkgs/development/libraries/libstatgrab/default.nix +++ b/pkgs/development/libraries/libstatgrab/default.nix @@ -2,11 +2,11 @@ , IOKit ? null }: stdenv.mkDerivation rec { - name = "libstatgrab-0.91"; + name = "libstatgrab-0.92"; src = fetchurl { url = "https://ftp.i-scream.org/pub/i-scream/libstatgrab/${name}.tar.gz"; - sha256 = "1azinx2yzs442ycwq6p15skl3mscmqj7fd5hq7fckhjp92735s83"; + sha256 = "15m1sl990l85ijf8pnc6hdfha6fqyiq74mijrzm3xz4zzxm91wav"; }; buildInputs = [] ++ stdenv.lib.optional stdenv.isDarwin IOKit; From 05570075d7a3f9b6ccb9d0358a646477781045bb Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Wed, 17 Jul 2019 15:17:15 -0400 Subject: [PATCH 0683/1611] firmwareLinuxNonfree: 2019-04-16 -> 2019-07-17 --- .../linux/firmware/firmware-linux-nonfree/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 a1a15bab0fe..c251e3963e7 100644 --- a/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix +++ b/pkgs/os-specific/linux/firmware/firmware-linux-nonfree/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "firmware-linux-nonfree-${version}"; - version = "2019-04-16"; + version = "2019-07-17"; src = fetchgit { url = "https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"; - rev = "20190416"; - sha256 = "1grsxch5x65piqm8zswa7za3zccwxk0sxdm5qpgidmmq729xq3py"; + rev = "20190717"; + sha256 = "1dcaqdqyffxiadx420pg20157wqidz0c0ca5mrgyfxgrbh6a4mdj"; }; installFlags = [ "DESTDIR=$(out)" ]; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "1fh6gwdx4paswhpyx8z43kf41l9svicp6ji06pdfhsnbx2l859zi"; + outputHash = "1q3zqa3xxg4679p893xzwpa43afvdnnkg5xb0qs6mac75sizngid"; meta = with stdenv.lib; { description = "Binary firmware collection packaged by kernel.org"; From dc7c4d003c754581d86c609ae960a25ad3e43b92 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 18:17:46 -0400 Subject: [PATCH 0684/1611] sublime-merge: add redirect for /bin/true Without it rebasing/squashing features are broken. --- pkgs/applications/version-management/sublime-merge/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/sublime-merge/common.nix b/pkgs/applications/version-management/sublime-merge/common.nix index f69fdbefe18..c095aa49eaf 100644 --- a/pkgs/applications/version-management/sublime-merge/common.nix +++ b/pkgs/applications/version-management/sublime-merge/common.nix @@ -2,7 +2,7 @@ { fetchurl, stdenv, xorg, glib, glibcLocales, gtk3, cairo, pango, libredirect, makeWrapper, wrapGAppsHook , pkexecPath ? "/run/wrappers/bin/pkexec" -, writeScript, common-updater-scripts, curl, gnugrep +, writeScript, common-updater-scripts, curl, gnugrep, coreutils }: let @@ -18,7 +18,7 @@ let arch = "x64"; libPath = stdenv.lib.makeLibraryPath [ xorg.libX11 glib gtk3 cairo pango ]; - redirects = [ "/usr/bin/pkexec=${pkexecPath}" ]; + redirects = [ "/usr/bin/pkexec=${pkexecPath}" "/bin/true=${coreutils}/bin/true" ]; in let binaryPackage = stdenv.mkDerivation { pname = "${pname}-bin"; From b8d5a407c9270f09eda3b718ae10821c0e141d14 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 18:18:33 -0400 Subject: [PATCH 0685/1611] sublime-merge: 1107 -> 1116 --- .../applications/version-management/sublime-merge/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/sublime-merge/default.nix b/pkgs/applications/version-management/sublime-merge/default.nix index da973b0a7ee..d20bb3a9f92 100644 --- a/pkgs/applications/version-management/sublime-merge/default.nix +++ b/pkgs/applications/version-management/sublime-merge/default.nix @@ -4,8 +4,8 @@ let common = opts: callPackage (import ./common.nix opts); in { sublime-merge = common { - buildVersion = "1107"; - sha256 = "70edbb16529d638ea41a694dbc5b1408c76fcc3a7d663ef0e48b4e89e1f19c71"; + buildVersion = "1116"; + sha256 = "0cwvn47dv0sg8cp8i3njmp4p58c6wjv6g75g09igx25waysn9cx6"; } {}; sublime-merge-dev = common { From 496248820d11e4779d7155a28be091e31236f1be Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 18:19:14 -0400 Subject: [PATCH 0686/1611] sublime-merge-dev: 1111 -> 1115 --- .../applications/version-management/sublime-merge/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/sublime-merge/default.nix b/pkgs/applications/version-management/sublime-merge/default.nix index d20bb3a9f92..2734028866e 100644 --- a/pkgs/applications/version-management/sublime-merge/default.nix +++ b/pkgs/applications/version-management/sublime-merge/default.nix @@ -9,8 +9,8 @@ in { } {}; sublime-merge-dev = common { - buildVersion = "1111"; - sha256 = "d287b77b36febe52623db4546bef978dceb0654257b9a70c798d9cd394305c0d"; + buildVersion = "1115"; + sha256 = "0dwgc9libqipwdgdc84maj1i3c8hbadz2318x1pibl6hbqy15bxl"; dev = true; } {}; } From 1f3a6719d988996792eb59c96dd3c4031bed8838 Mon Sep 17 00:00:00 2001 From: Aaron Bull Schaefer Date: Thu, 7 Mar 2019 22:26:06 -0800 Subject: [PATCH 0687/1611] cargo-raze: init at 0.2.8 --- .../tools/rust/cargo-raze/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 7 +++-- 2 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/tools/rust/cargo-raze/default.nix diff --git a/pkgs/development/tools/rust/cargo-raze/default.nix b/pkgs/development/tools/rust/cargo-raze/default.nix new file mode 100644 index 00000000000..1c4e176966d --- /dev/null +++ b/pkgs/development/tools/rust/cargo-raze/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchFromGitHub, rustPlatform +, pkgconfig, curl, libgit2, openssl, Security }: + +rustPlatform.buildRustPackage rec { + pname = "cargo-raze"; + version = "0.2.8"; + + src = fetchFromGitHub { + owner = "google"; + repo = pname; + rev = "v${version}"; + sha256 = "0d87azip59bmkk38par23f5yvb9w8ikvdg6grn689zpgc3di2phx"; + }; + sourceRoot = "source/impl"; + + cargoSha256 = "06rl7v0f1lgj9ii07fcnaxmhn28ckr03cpf5b93q8ripm5qh7my9"; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ curl libgit2 openssl ] + ++ stdenv.lib.optional stdenv.isDarwin Security; + + doCheck = true; + + meta = with stdenv.lib; { + description = "Generate Bazel BUILD files from Cargo dependencies"; + homepage = https://github.com/google/cargo-raze; + license = licenses.asl20; + maintainers = with maintainers; [ elasticdog ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03ae106c481..d82d77f96de 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1944,9 +1944,9 @@ in enableExtraPlugins = true; }); - asciidoctor = callPackage ../tools/typesetting/asciidoctor { + asciidoctor = callPackage ../tools/typesetting/asciidoctor { # kindlegen is unfree, don't enable by default - kindlegen = null; + kindlegen = null; # epubcheck pulls in Java, which is problematic on some platforms epubcheck = null; }; @@ -8100,6 +8100,9 @@ in cargo-make = callPackage ../development/tools/rust/cargo-make { inherit (darwin.apple_sdk.frameworks) Security; }; + cargo-raze = callPackage ../development/tools/rust/cargo-raze { + inherit (darwin.apple_sdk.frameworks) Security; + }; cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; cargo-xbuild = callPackage ../development/tools/rust/cargo-xbuild { }; From f1f66e22960d73527032a16a63bcca69f2be32b4 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 15:54:05 -0700 Subject: [PATCH 0688/1611] neovim-remote: 2.1.7 -> 2.1.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/neovim-remote/versions --- pkgs/applications/editors/neovim/neovim-remote.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/neovim/neovim-remote.nix b/pkgs/applications/editors/neovim/neovim-remote.nix index 52888c5f85d..efece505ab9 100644 --- a/pkgs/applications/editors/neovim/neovim-remote.nix +++ b/pkgs/applications/editors/neovim/neovim-remote.nix @@ -4,14 +4,14 @@ with stdenv.lib; pythonPackages.buildPythonApplication rec { pname = "neovim-remote"; - version = "2.1.7"; + version = "2.1.9"; disabled = !pythonPackages.isPy3k; src = fetchFromGitHub { owner = "mhinz"; repo = "neovim-remote"; rev = "v${version}"; - sha256 = "014c8xvb7shy00vjx0b1k8zr7iknxskqab1aqvz9md3bn5rwkxm5"; + sha256 = "1im7jq7vi2sbdrh95kbydbbfwdll6z9zh1w1vzh7ny1sigfphkpm"; }; propagatedBuildInputs = with pythonPackages; [ pynvim psutil ]; From 1004d0c2710187e944bd5b8af42269ade6b93bde Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:50:02 -0400 Subject: [PATCH 0689/1611] gnome3.grilo: 0.3.7 -> 0.3.9 Patch in upstream MR to fix grilo-plugins build / NixOS compat. https://gitlab.gnome.org/GNOME/grilo/blob/grilo-0.3.9/NEWS --- pkgs/desktops/gnome-3/core/grilo/default.nix | 31 +++++++++++++------- 1 file changed, 20 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/grilo/default.nix b/pkgs/desktops/gnome-3/core/grilo/default.nix index a2bee6ac41e..33293f0b3cb 100644 --- a/pkgs/desktops/gnome-3/core/grilo/default.nix +++ b/pkgs/desktops/gnome-3/core/grilo/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, vala, glib, liboauth, gtk3 -, gtk-doc, docbook_xsl, docbook_xml_dtd_43 +, gtk-doc, docbook_xsl, docbook_xml_dtd_43, fetchpatch , libxml2, gnome3, gobject-introspection, libsoup, totem-pl-parser }: let pname = "grilo"; - version = "0.3.7"; # if you change minor, also change ./setup-hook.sh + version = "0.3.9"; # if you change minor, also change ./setup-hook.sh in stdenv.mkDerivation rec { name = "${pname}-${version}"; @@ -13,23 +13,32 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1dz965l743r4bhj78wij9k1mb6635gnkb1lnk9j7gw9dd5qsyfza"; + sha256 = "1wnabc69730jsv8dljj5ik8g7p581nw60mw1mkgamkzjcb6821bk"; }; - patches = [ - # Fix meson build: https://gitlab.gnome.org/GNOME/grilo/merge_requests/34 - (fetchurl { - url = "https://gitlab.gnome.org/GNOME/grilo/commit/166612aeff09e5fc2fec1f62185c84cbdcf8f889.diff"; - sha256 = "07zamy927iaa7knrwq5yxz7ypl1i02pymkcdrg5l55alhdvb81pw"; - }) - ]; - setupHook = ./setup-hook.sh; mesonFlags = [ "-Dgtk_doc=true" ]; + patches = [ + # https://gitlab.gnome.org/GNOME/grilo/merge_requests/45 + # commits are from a separate branch so they shouldn't 404 + (fetchpatch { + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/f6993c2a8a6c1a6246372569f9f7a9179955c95e.patch"; + sha256 = "1x4s0ahs60dqyphgv2dy3x2sjnxv5ydd55kdlcjsys5870ijwbi8"; + }) + (fetchpatch { + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/61bca28b141162a33eb2fb575ef1daf0f21c7741.patch"; + sha256 = "1147xbmaq61myfwxz0pagdv056krfmh1s78qjbiy5k7k203qrjz0"; + }) + (fetchpatch { + url = "https://gitlab.gnome.org/worldofpeace/grilo/commit/363b198a062eeb8aaa5489ea9720e69d428e885c.patch"; + sha256 = "01w1bfzdbnxy5l37b2z7a9h2mrxziqkzdw02dybjphy85nb0hz5w"; + }) + ]; + nativeBuildInputs = [ meson ninja pkgconfig gettext gobject-introspection vala gtk-doc docbook_xsl docbook_xml_dtd_43 From 36aec923cc2fa45cad605f3c13fbe00938c4658e Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:51:16 -0400 Subject: [PATCH 0690/1611] gnome3.grilo-plugins: 0.3.8 -> 0.3.9 https://gitlab.gnome.org/GNOME/grilo-plugins/blob/grilo-plugins-0.3.9/NEWS --- pkgs/desktops/gnome-3/core/grilo-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/grilo-plugins/default.nix b/pkgs/desktops/gnome-3/core/grilo-plugins/default.nix index 2e8c3c4a003..118a910a168 100644 --- a/pkgs/desktops/gnome-3/core/grilo-plugins/default.nix +++ b/pkgs/desktops/gnome-3/core/grilo-plugins/default.nix @@ -28,11 +28,11 @@ stdenv.mkDerivation rec { pname = "grilo-plugins"; - version = "0.3.8"; + version = "0.3.9"; src = fetchurl { url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "0nync07gah3jkpb5ph5d3gwbygmabnih2m3hfz7lkvjl2l5pgpac"; + sha256 = "1hv84b56qjic8vz8iz46ikhrxx31l29ilbr8dm5qcghbd8ikw8j1"; }; nativeBuildInputs = [ From 50791d9a1dc75b76e63670d0da7f73b64f9b6b43 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:51:55 -0400 Subject: [PATCH 0691/1611] gnome3.gnome-user-docs: 3.32.2 -> 3.32.3 https://gitlab.gnome.org/GNOME/gnome-user-docs/blob/3.32.3/NEWS --- pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix b/pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix index d9f93862143..1a8582626e3 100644 --- a/pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-user-docs/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gnome-user-docs-${version}"; - version = "3.32.2"; + version = "3.32.3"; src = fetchurl { url = "mirror://gnome/sources/gnome-user-docs/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1ny7cwkyskrykzsrabjnlc9jsdl4kdk73smwxas6ddmca02hpm7c"; + sha256 = "0dvsl0ldg8rf7yq0r4dv1pn41s7gjgcqp7agkbflkbmhrl6vbhig"; }; passthru = { From 3267c5792f42e662f3461f710025c7aeb20eef88 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 22:52:49 -0400 Subject: [PATCH 0692/1611] gnome3.evolution-data-server: 3.32.3 -> 3.32.4 https://gitlab.gnome.org/GNOME/evolution-data-server/blob/3.32.4/NEWS --- pkgs/desktops/gnome-3/core/evolution-data-server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 8075d5d4805..5c2eae883cf 100644 --- a/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix +++ b/pkgs/desktops/gnome-3/core/evolution-data-server/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { name = "evolution-data-server-${version}"; - version = "3.32.3"; + version = "3.32.4"; outputs = [ "out" "dev" ]; src = fetchurl { url = "mirror://gnome/sources/evolution-data-server/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "1sx2ywvvwbmphrlqq62srd235ihsj8864d9g8kcbcxwrvn2z70b4"; + sha256 = "0zsc9xwy6ixk3x0dx69ax5isrdw8qxjdxg2i5fr95s40nss7rxl3"; }; patches = [ From f84a4ef8924f9e21f653b895723ee75c93b56a27 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 19 Jul 2019 19:28:51 -0400 Subject: [PATCH 0693/1611] nixos/xdg: Disables portal by default... Left to do: re-enable as needed in the usual situations. This added ~286MiB to the base system closure, which is enough to bring the sd images over the limit allowed on Hydra. --- nixos/modules/config/xdg/portal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix index 76ca435d434..6a72fab3a4a 100644 --- a/nixos/modules/config/xdg/portal.nix +++ b/nixos/modules/config/xdg/portal.nix @@ -4,7 +4,7 @@ with lib; options.xdg.portal = { enable = mkEnableOption "xdg desktop integration"//{ - default = true; + default = false; }; extraPortals = mkOption { From d734750608841852b121446bb7791cc4e224c257 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 19:47:02 -0400 Subject: [PATCH 0694/1611] nixos/xdg: default portal from xserver.enable same affect as f84a4ef8924f9e21f653b895723ee75c93b56a27 but we won't need to enable the module independently for DE modules. --- nixos/modules/config/xdg/portal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix index 6a72fab3a4a..4e85bf794da 100644 --- a/nixos/modules/config/xdg/portal.nix +++ b/nixos/modules/config/xdg/portal.nix @@ -4,7 +4,7 @@ with lib; options.xdg.portal = { enable = mkEnableOption "xdg desktop integration"//{ - default = false; + default = config.services.xserver.enable; }; extraPortals = mkOption { From f60b221629b72265f04fd3ede48ce052bbedc18d Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sat, 20 Jul 2019 01:21:16 +0100 Subject: [PATCH 0695/1611] blockbook: increase ulimit -n on darwin for packr execution macos default can cause build failures due to too many open files --- pkgs/servers/blockbook/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/blockbook/default.nix b/pkgs/servers/blockbook/default.nix index 6a1d8a75cc1..b95c3d41b39 100644 --- a/pkgs/servers/blockbook/default.nix +++ b/pkgs/servers/blockbook/default.nix @@ -1,4 +1,5 @@ -{ buildGoPackage +{ stdenv +, buildGoPackage , lib , fetchFromGitHub , rocksdb @@ -30,7 +31,9 @@ buildGoPackage rec { nativeBuildInputs = [ pkg-config packr ]; - preBuild = '' + preBuild = lib.optionalString stdenv.isDarwin '' + ulimit -n 8192 + '' + '' export CGO_CFLAGS="-I${rocksdb}/include" export CGO_LDFLAGS="-L${rocksdb}/lib -lrocksdb -lstdc++ -lm -lz -lbz2 -lsnappy -llz4" packr clean && packr From 7cbf9e22a29103bc3c7ad47962f5c07fdae1973b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 17:50:13 -0700 Subject: [PATCH 0696/1611] python37Packages.pelican: 4.0.1 -> 4.1.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pelican/versions --- pkgs/development/python-modules/pelican/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pelican/default.nix b/pkgs/development/python-modules/pelican/default.nix index f593c5dbeea..4feaa049d0f 100644 --- a/pkgs/development/python-modules/pelican/default.nix +++ b/pkgs/development/python-modules/pelican/default.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "pelican"; - version = "4.0.1"; + version = "4.1.0"; src = fetchFromGitHub { owner = "getpelican"; repo = "pelican"; rev = version; - sha256 = "09fcwnnfln0cl5v0qpxzrllj27znrg6dbhaksxrl0192c3mbyjvl"; + sha256 = "0ag8il1b8ckfcv0f87ryrmw52k9m3xd025b4m6fvr8lsffyzv626"; }; doCheck = true; @@ -25,7 +25,7 @@ buildPythonPackage rec { glibcLocales # Note: Pelican has to adapt to a changed CLI of pandoc before enabling this # again. Compare https://github.com/getpelican/pelican/pull/2252. - # Version 4.0.1 is incompatible with our current pandoc version. + # Version 4.1.0 is incompatible with our current pandoc version. # pandoc git mock From 6fa00688fb137239a4cdbd40131b5bfafd16ffc7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 18:06:50 -0700 Subject: [PATCH 0697/1611] ocamlPackages.visitors: 20180513 -> 20190711 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ocaml4.06.1-visitors/versions --- pkgs/development/ocaml-modules/visitors/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/visitors/default.nix b/pkgs/development/ocaml-modules/visitors/default.nix index 25a83fa7912..36205c7c1ff 100644 --- a/pkgs/development/ocaml-modules/visitors/default.nix +++ b/pkgs/development/ocaml-modules/visitors/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ocaml, findlib, ocamlbuild, cppo, ppx_tools, ppx_deriving, result }: stdenv.mkDerivation { - name = "ocaml${ocaml.version}-visitors-20180513"; + name = "ocaml${ocaml.version}-visitors-20190711"; src = fetchurl { - url = http://gallium.inria.fr/~fpottier/visitors/visitors-20180513.tar.gz; - sha256 = "12j8n9fkl43sd0j78x2zqix8m1vinswl2jgwndd62vmx98f5rl1v"; + url = http://gallium.inria.fr/~fpottier/visitors/visitors-20190711.tar.gz; + sha256 = "1h794xczfczf573mpwzm4ah9ir1rbbrkqipbh3aflfpdq2mgsbvg"; }; buildInputs = [ ocaml findlib ocamlbuild cppo ]; From 894edfd50487b81b1efdd4b9fd738a69e2d29fe1 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 20:26:40 -0500 Subject: [PATCH 0698/1611] librtorrent: 0.13.7 -> 0.13.8 --- pkgs/tools/networking/p2p/libtorrent/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/networking/p2p/libtorrent/default.nix b/pkgs/tools/networking/p2p/libtorrent/default.nix index 9c6f5eec11b..524b75d5582 100644 --- a/pkgs/tools/networking/p2p/libtorrent/default.nix +++ b/pkgs/tools/networking/p2p/libtorrent/default.nix @@ -5,14 +5,14 @@ , openssl, libsigcxx, zlib }: stdenv.mkDerivation rec { - name = "libtorrent-${version}"; - version = "0.13.7"; + pname = "libtorrent"; + version = "0.13.8"; src = fetchFromGitHub { owner = "rakshasa"; - repo = "libtorrent"; + repo = pname; rev = "v${version}"; - sha256 = "027qanwcisxhx0bq8dn8cpg8563q0k2pm8ls278f04n7jqvvwkp0"; + sha256 = "1h5y6ab3gs20yyprdfwcw8fh1c6czs4yrdj0kf54d2vp9qwz685r"; }; nativeBuildInputs = [ pkgconfig ]; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { preConfigure = "./autogen.sh"; meta = with stdenv.lib; { - inherit (src.meta) homepage; + homepage = "https://github.com/rakshasa/libtorrent"; description = "A BitTorrent library written in C++ for *nix, with focus on high performance and good code"; platforms = platforms.unix; From b6c2cb780ff89ff9470b7273d82f25d6cb014741 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 20:35:43 -0500 Subject: [PATCH 0699/1611] rtorrent: 0.9.7 -> 0.9.8 --- pkgs/tools/networking/p2p/rtorrent/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/p2p/rtorrent/default.nix b/pkgs/tools/networking/p2p/rtorrent/default.nix index 63652557efa..2ca31a6a1e7 100644 --- a/pkgs/tools/networking/p2p/rtorrent/default.nix +++ b/pkgs/tools/networking/p2p/rtorrent/default.nix @@ -8,14 +8,14 @@ }: stdenv.mkDerivation rec { - name = "rtorrent-${version}"; - version = "0.9.7"; + pname = "rtorrent"; + version = "0.9.8"; src = fetchFromGitHub { owner = "rakshasa"; - repo = "rtorrent"; + repo = pname; rev = "v${version}"; - sha256 = "0a9dk3cz56f7gad8ghsma79iy900rwdvzngs6k6x08nlwaqid8ga"; + sha256 = "0hcaf1brk402caa7hhlb2r1c93mjzxkm8gb19xfl33gkp3jpf372"; }; nativeBuildInputs = [ pkgconfig ]; From 031c6151dd282572bdf3fb3a8c2a5af677c83d7b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 20:48:05 -0500 Subject: [PATCH 0700/1611] postgresqlPackages.pgroonga: 2.2.0 -> 2.2.1 --- pkgs/servers/sql/postgresql/ext/pgroonga.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/pgroonga.nix b/pkgs/servers/sql/postgresql/ext/pgroonga.nix index b8396f67478..7dc70ee976c 100644 --- a/pkgs/servers/sql/postgresql/ext/pgroonga.nix +++ b/pkgs/servers/sql/postgresql/ext/pgroonga.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "pgroonga"; - version = "2.2.0"; + version = "2.2.1"; src = fetchurl { url = "https://packages.groonga.org/source/${pname}/${pname}-${version}.tar.gz"; - sha256 = "1cankcprikx8nf72yg4h8542gqqlfgww6d63kg7l8l8sz962d28b"; + sha256 = "0d913rkxx6qlkav6z9crsz3ypqkdffn4c667nsgzh5s9n4wbbpb8"; }; nativeBuildInputs = [ pkgconfig ]; From bc20384b82b88349c6e7a9ff52bcbde9f84db926 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 20:53:42 -0500 Subject: [PATCH 0701/1611] postgresqlPackages.timescaledb: 1.3.2 -> 1.4.0 --- pkgs/servers/sql/postgresql/ext/timescaledb.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix index 8e97e47e2fb..c77c01f8d20 100644 --- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix +++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { name = "timescaledb-${version}"; - version = "1.3.2"; + version = "1.4.0"; nativeBuildInputs = [ cmake ]; buildInputs = [ postgresql openssl ]; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { owner = "timescale"; repo = "timescaledb"; rev = "refs/tags/${version}"; - sha256 = "117az52h8isi15p47r5d6k5y80ng9vj3x8ljq39iavgr364q716c"; + sha256 = "0xjl3pdm36pksbkhl44kixqkfv8qpdm4frfwxv0p4vvjmlhslz48"; }; cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ]; From f06e19a594963848b64511785ee44c6100e71600 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:01:55 -0500 Subject: [PATCH 0702/1611] gitAndTools.hub: 2.12.2 -> 2.12.3 --- .../version-management/git-and-tools/hub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-and-tools/hub/default.nix b/pkgs/applications/version-management/git-and-tools/hub/default.nix index 82d98b95966..8733863196d 100644 --- a/pkgs/applications/version-management/git-and-tools/hub/default.nix +++ b/pkgs/applications/version-management/git-and-tools/hub/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { pname = "hub"; - version = "2.12.2"; + version = "2.12.3"; goPackagePath = "github.com/github/hub"; @@ -13,7 +13,7 @@ buildGoPackage rec { owner = "github"; repo = pname; rev = "v${version}"; - sha256 = "0sxfmjg26s86m5xa9nbj8287kg12kygxw6gggahal6v7zjhwcvaz"; + sha256 = "13l4nc3k6vl9x1x0153mwi351j3z266wx0fp7xw2851avrgkk9zg"; }; nativeBuildInputs = [ groff utillinux ]; From d6fa4ed97ae43e7d8293e0b20f88195abde37c14 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:18:46 -0500 Subject: [PATCH 0703/1611] kytea: enable on darwin --- pkgs/tools/text/kytea/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/text/kytea/default.nix b/pkgs/tools/text/kytea/default.nix index eb537c67a63..7254660cb1a 100644 --- a/pkgs/tools/text/kytea/default.nix +++ b/pkgs/tools/text/kytea/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { patches = [ ./gcc-O3.patch ]; + NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.cc.isClang "-Wno-error=c++11-narrowing"; + meta = with stdenv.lib; { homepage = http://www.phontron.com/kytea/; description = "General toolkit developed for analyzing text"; @@ -24,7 +26,7 @@ stdenv.mkDerivation rec { license = licenses.asl20; maintainers = with maintainers; [ ericsagnes ndowens ]; - platforms = platforms.linux; + platforms = platforms.unix; }; } From d747b42af4f2dac31f1e57290f5a18d8c90c1db2 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:19:13 -0500 Subject: [PATCH 0704/1611] groonga: enable on darwin --- pkgs/servers/search/groonga/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/search/groonga/default.nix b/pkgs/servers/search/groonga/default.nix index f69b3637f95..2d9f6b11b27 100644 --- a/pkgs/servers/search/groonga/default.nix +++ b/pkgs/servers/search/groonga/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { description = "An open-source fulltext search engine and column store"; license = licenses.lgpl21; maintainers = [ maintainers.ericsagnes ]; - platforms = platforms.linux; + platforms = platforms.unix; longDescription = '' Groonga is an open-source fulltext search engine and column store. It lets you write high-performance applications that requires fulltext search. From 4fca2ef585ec03e64f00383bc594191e0842dd1b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:58:04 -0500 Subject: [PATCH 0705/1611] python37Packages.pelican: fix darwin build --- .../python-modules/pelican/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pelican/default.nix b/pkgs/development/python-modules/pelican/default.nix index 4feaa049d0f..2dcc3e5b873 100644 --- a/pkgs/development/python-modules/pelican/default.nix +++ b/pkgs/development/python-modules/pelican/default.nix @@ -12,13 +12,19 @@ buildPythonPackage rec { owner = "getpelican"; repo = "pelican"; rev = version; - sha256 = "0ag8il1b8ckfcv0f87ryrmw52k9m3xd025b4m6fvr8lsffyzv626"; + sha256 = "1ww3kc5bzp5q7b23n2vmzqch1z06l7vrscn0h96cscvk45sxc7yz"; + # Remove unicode file names which leads to different checksums on HFS+ + # vs. other filesystems because of unicode normalisation. + extraPostFetch = '' + rm -r $out/pelican/tests/output/custom_locale/posts + ''; }; doCheck = true; + # Exclude custom locale test, which files were removed above to fix the source checksum checkPhase = '' - python -Wd -m unittest discover + nosetests -sv --exclude=test_custom_locale_generation_works pelican ''; buildInputs = [ @@ -29,7 +35,6 @@ buildPythonPackage rec { # pandoc git mock - nose markdown typogrify ]; @@ -39,6 +44,10 @@ buildPythonPackage rec { blinker pillow beautifulsoup4 markupsafe lxml ]; + checkInputs = [ + nose + ]; + postPatch= '' substituteInPlace pelican/tests/test_pelican.py \ --replace "'git'" "'${git}/bin/git'" From 8965de1199f6dbb428be8b31229d1602c6c461ca Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Fri, 19 Jul 2019 20:15:11 -0700 Subject: [PATCH 0706/1611] awscli: fix the build by disabling pyyaml tests (#65119) --- pkgs/tools/admin/awscli/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index 44eb3731d37..a4817d58a7d 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -27,6 +27,7 @@ let inherit version; sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"; }; + doCheck = false; }); }; }; From 4cb3a803ec81c7144ee01452f658039d194b72d8 Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Fri, 19 Jul 2019 20:58:28 -0700 Subject: [PATCH 0707/1611] bazel-watcher: fix the hash of the fetchAttrs --- pkgs/development/tools/bazel-watcher/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/bazel-watcher/default.nix b/pkgs/development/tools/bazel-watcher/default.nix index db04c2026d8..51aeebb82e5 100644 --- a/pkgs/development/tools/bazel-watcher/default.nix +++ b/pkgs/development/tools/bazel-watcher/default.nix @@ -62,7 +62,7 @@ buildBazelPackage rec { sed -e '/^FILE:@bazel_gazelle_go_repository_tools.*/d' -i $bazelOut/external/\@*.marker ''; - sha256 = "01d4m4kb2mhz8fxl9apzsdq0pd7i79w3q49x51rwa524caml9zfv"; + sha256 = "1i3b6kn9kq70a34wkpm8zjqj1skawdxs3r01b7r6ws1rbdnfj6mp"; }; buildAttrs = { From c59966d786b3b90578930add34b7fe732b0de5b4 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sat, 20 Jul 2019 12:33:30 +0800 Subject: [PATCH 0708/1611] conda: update default condaDeps Conda PyQt5 applications require those packages in the system. --- pkgs/tools/package-management/conda/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/package-management/conda/default.nix b/pkgs/tools/package-management/conda/default.nix index 71dd7861808..92d0e254312 100644 --- a/pkgs/tools/package-management/conda/default.nix +++ b/pkgs/tools/package-management/conda/default.nix @@ -6,11 +6,12 @@ , buildFHSUserEnv , libselinux , libarchive +, libGL , xorg # Conda installs its packages and environments under this directory , installationPath ? "~/.conda" # Conda manages most pkgs itself, but expects a few to be on the system. -, condaDeps ? [ stdenv.cc xorg.libSM xorg.libICE xorg.libXrender libselinux ] +, condaDeps ? [ stdenv.cc xorg.libSM xorg.libICE xorg.libX11 xorg.libXau xorg.libXi xorg.libXrender libselinux libGL ] # Any extra nixpkgs you'd like available in the FHS env for Conda to use , extraPkgs ? [ ] }: From f62f2fd3dc081194f415579e6693f108bbe8eca9 Mon Sep 17 00:00:00 2001 From: Sterling Stein Date: Fri, 19 Jul 2019 22:44:20 -0700 Subject: [PATCH 0709/1611] maintainers: add scubed2 --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8f3a692b684..cbdbb7eb1f1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4601,6 +4601,11 @@ github = "scriptkiddi"; name = "Fritz Otlinghaus"; }; + scubed2 = { + email = "scubed2@gmail.com"; + github = "scubed2"; + name = "Sterling Stein"; + }; sdll = { email = "sasha.delly@gmail.com"; github = "sdll"; From e0c2e7f65f196fa91543304505d92d41840ff7fc Mon Sep 17 00:00:00 2001 From: Sterling Stein Date: Fri, 19 Jul 2019 22:52:07 -0700 Subject: [PATCH 0710/1611] nxengine-evo: init at 2.6.4 --- pkgs/games/nxengine-evo/default.nix | 65 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 67 insertions(+) create mode 100644 pkgs/games/nxengine-evo/default.nix diff --git a/pkgs/games/nxengine-evo/default.nix b/pkgs/games/nxengine-evo/default.nix new file mode 100644 index 00000000000..909737a6804 --- /dev/null +++ b/pkgs/games/nxengine-evo/default.nix @@ -0,0 +1,65 @@ +{ stdenv +, fetchpatch +, fetchurl +, cmake +, libpng +, SDL2 +, SDL2_mixer +}: + +stdenv.mkDerivation rec { + pname = "nxengine-evo"; + version = "2.6.4"; + src = fetchurl { + url = "https://github.com/nxengine/nxengine-evo/archive/v${version}.tar.gz"; + sha256 = "1xir74l0vrzrpyl7sfqfxp083dakbix26hd0arwf2y57w1mbjas8"; + }; + assets = fetchurl { + url = "https://github.com/nxengine/nxengine-evo/releases/download/v${version}/NXEngine-v${version}-Linux.tar.xz"; + sha256 = "1b5hkmsrrhnjjf825ri6n62kb3fldwl7v5f1cqvqyv47zv15g5gy"; + }; + + patches = [ + (fetchpatch { + url = "https://github.com/nxengine/nxengine-evo/commit/1890127ec4b4b5f8d6cb0fb30a41868e95659840.patch"; + sha256 = "18j22vzkikcwqd42vlhzd6rjp26dq0zslxw5yyl07flivms0hny2"; + }) + (fetchpatch { + url = "https://github.com/nxengine/nxengine-evo/commit/75b8b8e3b067fd354baa903332f2a3254d1cc017.patch"; + sha256 = "0sjr7z63gp7nfxifxisvp2w664mxxk3xi4a3d86mm0470dj5m5bx"; + }) + ]; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ + libpng + SDL2 + SDL2_mixer + ]; + + # Allow finding game assets. + postPatch = '' + sed -i -e "s,/usr/share/,$out/share/," src/ResourceManager.cpp + ''; + + installPhase = '' + cd .. + unpackFile ${assets} + mkdir -p $out/bin/ $out/share/nxengine/ + install bin/* $out/bin/ + cp -r NXEngine-evo-${version}-Linux/data/ $out/share/nxengine/data + chmod -R a=r,a+X $out/share/nxengine/data + ''; + + meta = { + description = "A complete open-source clone/rewrite of the masterpiece jump-and-run platformer Doukutsu Monogatari (also known as Cave Story)"; + license = with stdenv.lib.licenses; [ + gpl3 # Game engine + unfreeRedistributable # Game assets, freeware + ]; + maintainers = [ stdenv.lib.maintainers.scubed2 ]; + homepage = "https://github.com/nxengine/nxengine-evo"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c437ee3fd42..740c04c28ac 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21729,6 +21729,8 @@ in newtonwars = callPackage ../games/newtonwars { }; + nxengine-evo = callPackage ../games/nxengine-evo { }; + odamex = callPackage ../games/odamex { }; oilrush = callPackage ../games/oilrush { }; From 895eea2f3de759c8144562e41282fdbd2dfe265f Mon Sep 17 00:00:00 2001 From: gnidorah Date: Sat, 20 Jul 2019 08:52:22 +0300 Subject: [PATCH 0711/1611] video2midi: 0.3.7 -> 0.3.9.1 --- pkgs/tools/audio/video2midi/default.nix | 18 +++++++++--------- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/audio/video2midi/default.nix b/pkgs/tools/audio/video2midi/default.nix index 4452aea280a..1ed5e48077b 100644 --- a/pkgs/tools/audio/video2midi/default.nix +++ b/pkgs/tools/audio/video2midi/default.nix @@ -1,28 +1,28 @@ -{ stdenv, fetchFromGitHub, python2Packages, opencv3 }: +{ stdenv, fetchFromGitHub, pythonPackages, opencv3 }: let - opencv3_ = python2Packages.toPythonModule (opencv3.override { + opencv3_ = pythonPackages.toPythonModule (opencv3.override { + inherit pythonPackages; enablePython = true; - pythonPackages = python2Packages; enableFfmpeg = true; }); -in stdenv.mkDerivation rec { +in pythonPackages.buildPythonApplication rec { pname = "video2midi"; - version = "0.3.7"; + version = "0.3.9.1"; + + format = "other"; src = fetchFromGitHub { owner = "svsdval"; repo = pname; rev = version; - sha256 = "00ms9iqam3ml6fxf8djki3gyifn8sfzfkkfrdgrvs0sq47wrkc39"; + sha256 = "1ndzhfng8z5080n1xkcavw21dm6rjz0x1954v9llifsdmf4cpn8y"; }; - pythonPath = with python2Packages; [ opencv3_ midiutil pygame pyopengl ]; - nativeBuildInputs = with python2Packages; [ python wrapPython ]; + propagatedBuildInputs = with pythonPackages; [ opencv3_ midiutil pygame pyopengl ]; installPhase = '' install -Dm755 v2m.py $out/bin/v2m.py - wrapPythonPrograms ''; meta = with stdenv.lib; { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 834dbc534e0..639f5c0cafb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6493,7 +6493,9 @@ in vfdecrypt = callPackage ../tools/misc/vfdecrypt { }; - video2midi = callPackage ../tools/audio/video2midi { }; + video2midi = callPackage ../tools/audio/video2midi { + pythonPackages = python3Packages; + }; vifm = callPackage ../applications/misc/vifm { }; From 3b24d6e187f6c59cd33003aeeea54cdadc16f180 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 13:40:25 -0400 Subject: [PATCH 0712/1611] gtk3: fix pkgconfig paths MR Upstream: https://gitlab.gnome.org/GNOME/gtk/merge_requests/1002 --- ...build-Fix-path-handling-in-pkgconfig.patch | 30 +++++++++++++++++++ pkgs/development/libraries/gtk+/3.x.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/libraries/gtk+/01-build-Fix-path-handling-in-pkgconfig.patch diff --git a/pkgs/development/libraries/gtk+/01-build-Fix-path-handling-in-pkgconfig.patch b/pkgs/development/libraries/gtk+/01-build-Fix-path-handling-in-pkgconfig.patch new file mode 100644 index 00000000000..ec69a12514f --- /dev/null +++ b/pkgs/development/libraries/gtk+/01-build-Fix-path-handling-in-pkgconfig.patch @@ -0,0 +1,30 @@ +From 7b692e618c4183a51af3d3b0037f106c4fec2355 Mon Sep 17 00:00:00 2001 +From: worldofpeace +Date: Fri, 19 Jul 2019 13:32:57 -0400 +Subject: [PATCH] build: Fix path handling in pkgconfig + +--- + meson.build | 6 +++--- + 1 file changed, 3 insertions(+), 3 deletions(-) + +diff --git a/meson.build b/meson.build +index 36913b3f04..161b378ba5 100644 +--- a/meson.build ++++ b/meson.build +@@ -834,10 +834,10 @@ configure_file(input: 'config.h.meson', + # pkg-config files - bit of a mess all of this + pkgconf = configuration_data() + +-pkgconf.set('prefix', get_option('prefix')) ++pkgconf.set('prefix', gtk_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', gtk_libdir) ++pkgconf.set('includedir', join_paths('${prefix}', gtk_includedir)) + pkgconf.set('GTK_API_VERSION', gtk_api_version) + pkgconf.set('VERSION', meson.project_version()) + pkgconf.set('GTK_BINARY_VERSION', gtk_binary_version) +-- +2.22.0 + diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 60c04bf8a59..8c3df083087 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -64,6 +64,8 @@ stdenv.mkDerivation rec { url = "https://bug757142.bugzilla-attachments.gnome.org/attachment.cgi?id=344123"; sha256 = "0g6fhqcv8spfy3mfmxpyji93k8d4p4q4fz1v9a1c1cgcwkz41d7p"; }) + # https://gitlab.gnome.org/GNOME/gtk/merge_requests/1002 + ./01-build-Fix-path-handling-in-pkgconfig.patch ] ++ optionals stdenv.isDarwin [ # X11 module requires which is not installed on Darwin # let’s drop that dependency in similar way to how other parts of the library do it From 9aecdf07c78c6249a3f43d6cdbb674c2b044cd9b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 18:34:07 -0700 Subject: [PATCH 0713/1611] openresolv: 3.9.0 -> 3.9.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/openresolv/versions --- pkgs/tools/networking/openresolv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openresolv/default.nix b/pkgs/tools/networking/openresolv/default.nix index 209e1f64c72..302e08617af 100644 --- a/pkgs/tools/networking/openresolv/default.nix +++ b/pkgs/tools/networking/openresolv/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "openresolv-${version}"; - version = "3.9.0"; + version = "3.9.1"; src = fetchurl { url = "mirror://roy/openresolv/${name}.tar.xz"; - sha256 = "1f2dccc52iykbpma26fbxzga2l6g4njm3bgaxz4rgdrb4cwlv82i"; + sha256 = "1wlzi88837rf4ygswmzpbcmgkbbjhn5n322n9q6ir6x367hygf1q"; }; buildInputs = [ makeWrapper ]; From 5e811a5798cda83f44404ea98af4d175e2f85d92 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 21:17:49 -0700 Subject: [PATCH 0714/1611] python37Packages.aiohttp-jinja2: 1.1.1 -> 1.1.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-aiohttp-jinja2/versions --- pkgs/development/python-modules/aiohttp-jinja2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiohttp-jinja2/default.nix b/pkgs/development/python-modules/aiohttp-jinja2/default.nix index 37e0211d98d..d8e4c9f2943 100644 --- a/pkgs/development/python-modules/aiohttp-jinja2/default.nix +++ b/pkgs/development/python-modules/aiohttp-jinja2/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "aiohttp-jinja2"; - version = "1.1.1"; + version = "1.1.2"; src = fetchPypi { inherit pname version; - sha256 = "54630f769b0a25e83744673068db89cdd099f830818cea7ea9c43eb23add7941"; + sha256 = "0g4pqdm2kp2abam0nx0pgs5lk19f8lsfpcgwxpigdwmy1lvblsa5"; }; propagatedBuildInputs = [ aiohttp jinja2 ]; From 784efe781608c8ebf196c63bfd8c994921f4a828 Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Sat, 20 Jul 2019 00:14:05 -0700 Subject: [PATCH 0715/1611] awscli: fix the tests by patching pyyaml (#65134) The checkPhase of the pyyaml dependency of awscli was failing due to running the tests with a newer version of libyaml. --- pkgs/tools/admin/awscli/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index a4817d58a7d..f8a68bc6f64 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -2,6 +2,7 @@ , python , groff , less +, fetchpatch }: let @@ -27,7 +28,11 @@ let inherit version; sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"; }; - doCheck = false; + # https://github.com/yaml/pyyaml/issues/298#issuecomment-511990948 + patches = lib.singleton (fetchpatch { + url = "https://github.com/yaml/pyyaml/commit/c5b135fe39d41cffbdc006f28ccb2032df6005e0.patch"; + sha256 = "0x1v45rkmj194c41d1nqi3ihj9z4rsy8zvpfcd8p960g1fia7fhn"; + }); }); }; }; From 4f2efec00e765fae22c4b14b68c63e140db57ebc Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:13:48 -0500 Subject: [PATCH 0716/1611] terraform_0_12: 0.12.4 -> 0.12.5 --- pkgs/applications/networking/cluster/terraform/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index f416daf4f88..cb192bddcaf 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -97,8 +97,8 @@ in rec { terraform_0_11-full = terraform_0_11.full; terraform_0_12 = pluggable (generic { - version = "0.12.4"; - sha256 = "0hbrdnryfla6d3mjn2sf6qbi79slhd92s2xgcqk3bgvr1n6k0k7n"; + version = "0.12.5"; + sha256 = "0p064rhaanwx4szs8hv6mdqad8d2bgfd94h2la11j58xbsxc7hap"; patches = [ ./provider-path.patch ]; passthru = { inherit plugins; }; }); From 9d686e7cf4c7b041f1154d5735c14f475cec435a Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 14:21:51 -0700 Subject: [PATCH 0717/1611] mimeo: 2019.3 -> 2019.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mimeo/versions --- pkgs/tools/misc/mimeo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/mimeo/default.nix b/pkgs/tools/misc/mimeo/default.nix index 03f9354445b..ea596a94213 100644 --- a/pkgs/tools/misc/mimeo/default.nix +++ b/pkgs/tools/misc/mimeo/default.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { name = "mimeo-${version}"; - version = "2019.3"; + version = "2019.7"; src = fetchurl { url = "https://xyne.archlinux.ca/projects/mimeo/src/${name}.tar.xz"; - sha256 = "1ry9f08584vngznbja76z53as12q2i06ncfnf52dxyidfgw5mx65"; + sha256 = "0nzn7qvmpbb17d6q16llnhz1qdmyg718q59ic4gw2rq23cd6q47r"; }; buildInputs = [ file desktop-file-utils ]; From 214d73a46b12af38d87caec894e595e6eb83013b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 15:43:55 -0700 Subject: [PATCH 0718/1611] mpg123: 1.25.10 -> 1.25.11 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mpg123/versions --- pkgs/applications/audio/mpg123/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mpg123/default.nix b/pkgs/applications/audio/mpg123/default.nix index 44f1c681ec1..b201bd65cae 100644 --- a/pkgs/applications/audio/mpg123/default.nix +++ b/pkgs/applications/audio/mpg123/default.nix @@ -3,11 +3,11 @@ }: stdenv.mkDerivation rec { - name = "mpg123-1.25.10"; + name = "mpg123-1.25.11"; src = fetchurl { url = "mirror://sourceforge/mpg123/${name}.tar.bz2"; - sha256 = "08vhp8lz7d9ybhxcmkq3adwfryhivfvp0745k4r9kgz4wap3f4vc"; + sha256 = "1cpal2zsm3zgi6f48vvwpg6wgkv42ndi7lk3zsg7sz52z83k61nz"; }; buildInputs = stdenv.lib.optional (!stdenv.isDarwin) alsaLib; From f75d78e3c8222d2e22cdb08d253677286777a7a2 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 10:24:38 -0700 Subject: [PATCH 0719/1611] kubetail: 1.6.8 -> 1.6.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kubetail/versions --- pkgs/applications/networking/cluster/kubetail/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/kubetail/default.nix b/pkgs/applications/networking/cluster/kubetail/default.nix index d1e24c56f8a..171ce3d3a54 100644 --- a/pkgs/applications/networking/cluster/kubetail/default.nix +++ b/pkgs/applications/networking/cluster/kubetail/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "kubetail-${version}"; - version = "1.6.8"; + version = "1.6.9"; src = fetchFromGitHub { owner = "johanhaleby"; repo = "kubetail"; rev = "${version}"; - sha256 = "15f97bzw0vha4nrl9207l7w9mlnx58xlcnmpfjvbpm7x0ivb5l0q"; + sha256 = "0mcv23p0h1ww9gvax8b4b4x5hmg02shrbgms0v0c72cmw0zf2phr"; }; installPhase = '' From 3670450fc68554373af74e5d72e8edea11d9b519 Mon Sep 17 00:00:00 2001 From: angristan Date: Fri, 19 Jul 2019 16:34:53 +0200 Subject: [PATCH 0720/1611] spotify: 1.0.96.181.gf6bc1b6b-12 -> 1.1.5.153.gf614956d-16 --- pkgs/applications/audio/spotify/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 6e926fe11c3..fb1c7c5f54a 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng, libnotify , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 -, at-spi2-atk +, at-spi2-atk, at-spi2-core }: let @@ -10,20 +10,21 @@ let # If an update breaks things, one of those might have valuable info: # https://aur.archlinux.org/packages/spotify/ # https://community.spotify.com/t5/Desktop-Linux - version = "1.0.96.181.gf6bc1b6b-12"; + version = "1.1.5.153.gf614956d-16"; # To get the latest stable revision: # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' # To get general information: # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' # More examples of api usage: # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py - rev = "30"; + rev = "35"; deps = [ alsaLib atk at-spi2-atk + at-spi2-core cairo cups curl @@ -72,7 +73,7 @@ stdenv.mkDerivation { # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 src = fetchurl { url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; - sha512 = "859730fbc80067f0828f7e13eee9a21b13b749f897a50e17c2da4ee672785cfd79e1af6336e609529d105e040dc40f61b6189524783ac93d49f991c4ea8b3c56"; + sha512 = "9c2b7c2c6da28fa0c1d75d1ff77aa50604e3d60716f6bfe2b3da452d5d89c9c53c819921a60e1997a8cc42d07d7c15460f707ac5d21180fbb2dcc006e7b0e82b"; }; buildInputs = [ squashfsTools makeWrapper ]; From f10553883d5bdb964a497680b77ac73d42cebddc Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 15:44:41 -0400 Subject: [PATCH 0721/1611] pythonPackages.pycurl: 7.43.0.2 -> 7.43.0.3 --- .../python-modules/pycurl/default.nix | 31 ++++++++++++------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/pkgs/development/python-modules/pycurl/default.nix b/pkgs/development/python-modules/pycurl/default.nix index 9fb27c88c02..93ea1e6734b 100644 --- a/pkgs/development/python-modules/pycurl/default.nix +++ b/pkgs/development/python-modules/pycurl/default.nix @@ -11,27 +11,34 @@ buildPythonPackage rec { pname = "pycurl"; - version = "7.43.0.2"; + version = "7.43.0.3"; disabled = isPyPy; # https://github.com/pycurl/pycurl/issues/208 src = fetchPypi { inherit pname version; - sha256 = "0f0cdfc7a92d4f2a5c44226162434e34f7d6967d3af416a6f1448649c09a25a4"; + sha256 = "13nsvqhvnmnvfk75s8iynqsgszyv06cjp4drd3psi7zpbh63623g"; }; - buildInputs = [ curl openssl.out ]; - nativeBuildInputs = [ curl ]; + buildInputs = [ + curl + openssl.out + ]; - checkInputs = [ bottle pytest nose flaky ]; + nativeBuildInputs = [ + curl + ]; + + checkInputs = [ + bottle + pytest + nose + flaky + ]; checkPhase = '' - py.test -k "not ssh_key_cb_test \ - and not test_libcurl_ssl_gnutls \ - and not test_libcurl_ssl_nss \ - and not test_libcurl_ssl_openssl \ - and not test_libcurl_ssl_unrecognized \ - and not test_request_with_verifypeer \ - and not test_ssl_in_static_libs" tests + pytest tests -k "not test_ssl_in_static_libs \ + and not test_keyfunction \ + and not test_keyfunction_bogus_return" ''; preConfigure = '' From ba4384d8650de330fd218f08e8679e1d486bd1dc Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 16:30:08 -0400 Subject: [PATCH 0722/1611] pythonPackages.jsonschema: 2.6.0 -> 3.0.1 --- .../python-modules/jsonschema/default.nix | 48 +++++++++++++------ 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix index db6be9f9918..dfff4ac4265 100644 --- a/pkgs/development/python-modules/jsonschema/default.nix +++ b/pkgs/development/python-modules/jsonschema/default.nix @@ -1,31 +1,51 @@ -{ stdenv, buildPythonPackage, fetchPypi, python -, nose, mock, vcversioner, functools32 }: +{ lib +, buildPythonPackage +, fetchPypi +, attrs +, pyrsistent +, setuptools +, six +, functools32 +, setuptools_scm +, perf +, twisted +, python +}: buildPythonPackage rec { pname = "jsonschema"; - version = "2.6.0"; + version = "3.0.1"; src = fetchPypi { inherit pname version; - sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg"; + sha256 = "03g20i1xfg4qdlk4475pl4pp7y0h37g1fbgs5qhy678q9xb822hc"; }; - checkInputs = [ nose mock vcversioner ]; - propagatedBuildInputs = [ functools32 ]; + nativeBuildInputs = [ + setuptools_scm + ]; - postPatch = '' - substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \ - --replace "python" "${python.pythonForBuild.interpreter}" - ''; + propagatedBuildInputs = [ + attrs + pyrsistent + setuptools + six + functools32 + ]; + + checkInputs = [ + twisted + perf + ]; checkPhase = '' - nosetests + ${python.interpreter} setup.py test --test-suite=jsonschema.tests ''; - meta = with stdenv.lib; { - homepage = https://github.com/Julian/jsonschema; + meta = with lib; { description = "An implementation of JSON Schema validation for Python"; + homepage = https://github.com/Julian/jsonschema; license = licenses.mit; - maintainers = with maintainers; [ domenkozar ]; + maintainers = with maintainers; [ costrouc domenkozar ]; }; } From e5f77fb6ba63b2d362b563b80c17db8921f4447e Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 16:36:04 -0400 Subject: [PATCH 0723/1611] pythonPackages.glob2: init at 0.7 needed for poetry python 2.7 support --- .../python-modules/glob2/default.nix | 26 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/python-modules/glob2/default.nix diff --git a/pkgs/development/python-modules/glob2/default.nix b/pkgs/development/python-modules/glob2/default.nix new file mode 100644 index 00000000000..bce69bffff2 --- /dev/null +++ b/pkgs/development/python-modules/glob2/default.nix @@ -0,0 +1,26 @@ +{ lib +, buildPythonPackage +, fetchPypi +, python +}: + +buildPythonPackage rec { + pname = "glob2"; + version = "0.7"; + + src = fetchPypi { + inherit pname version; + sha256 = "135bj8gm6vn45vv0phrvhyir36kfm17y7kmasxinv8lagk8dphw5"; + }; + + checkPhase = '' + ${python.interpreter} test.py + ''; + + meta = with lib; { + description = "Version of the glob module that can capture patterns and supports recursive wildcards"; + homepage = https://github.com/miracle2k/python-glob2/; + license = licenses.bsd3; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6e20f12f957..bdc8496e2d3 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -586,6 +586,8 @@ in { glymur = callPackage ../development/python-modules/glymur { }; + glob2 = callPackage ../development/python-modules/glob2 { }; + glom = callPackage ../development/python-modules/glom { }; goocalendar = callPackage ../development/python-modules/goocalendar { }; From 49c265b8fefdefa30c4949cad18d89be39319910 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 17:20:55 -0400 Subject: [PATCH 0724/1611] pythonPackages.nbval: 0.9.1 -> 0.9.2 fix broken build --- .../python-modules/nbval/default.nix | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index c9ab72894ef..d4f9bea11b5 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -15,21 +15,31 @@ buildPythonPackage rec { pname = "nbval"; - version = "0.9.1"; + version = "0.9.2"; src = fetchPypi { inherit pname version; - sha256 = "3f18b87af4e94ccd073263dd58cd3eebabe9f5e4d6ab535b39d3af64811c7eda"; + sha256 = "0g8xl4158ngyhiynrkk72jpawnk4isznbijz0w085g269fps0vp2"; }; - LC_ALL = "en_US.UTF-8"; + checkInputs = [ + pytest + matplotlib + sympy + pytestcov + ]; - buildInputs = [ glibcLocales ]; - checkInputs = [ matplotlib sympy pytestcov ]; - propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ]; + propagatedBuildInputs = [ + coverage + ipykernel + jupyter_client + nbformat + pytest + six + ]; checkPhase = '' - pytest tests --current-env --ignore tests/test_timeouts.py + pytest tests --ignore tests/test_timeouts.py ''; meta = with lib; { From 1ad86f9569663e111b819d8eaba0f633d8a561b5 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 17:29:24 -0400 Subject: [PATCH 0725/1611] pythonPackages.readme: refactor fix broken build --- .../python-modules/readme/default.nix | 21 +++++++++++-------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/readme/default.nix b/pkgs/development/python-modules/readme/default.nix index 90522c34196..057283babe7 100644 --- a/pkgs/development/python-modules/readme/default.nix +++ b/pkgs/development/python-modules/readme/default.nix @@ -2,11 +2,7 @@ , buildPythonPackage , fetchPypi , pytest -, six -, docutils -, pygments -, bleach -, html5lib +, readme_renderer }: buildPythonPackage rec { @@ -18,20 +14,27 @@ buildPythonPackage rec { sha256 = "32fbe1538a437da160fa4e4477270bfdcd8876e2e364d0d12898302644496231"; }; - buildInputs = [ pytest ]; - propagatedBuildInputs = [ six docutils pygments bleach html5lib ]; + checkInputs = [ + pytest + ]; + + propagatedBuildInputs = [ + readme_renderer + ]; checkPhase = '' - py.test + pytest ''; - # Tests fail, possibly broken. + # tests are not included with pypi release + # package is not readme_renderer doCheck = false; meta = with stdenv.lib; { description = "Readme is a library for rendering readme descriptions for Warehouse"; homepage = "https://github.com/pypa/readme"; license = licenses.asl20; + maintainers = [ maintainers.costrouc ]; }; } From d3915617681e9d1674992cb28dd9c4beaaf34398 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 17:32:50 -0400 Subject: [PATCH 0726/1611] pythonPackages.pytest-annotate: refactor fix broken build relax constraint --- .../python-modules/pytest-annotate/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-annotate/default.nix b/pkgs/development/python-modules/pytest-annotate/default.nix index 581de7beeeb..86f344b0e94 100644 --- a/pkgs/development/python-modules/pytest-annotate/default.nix +++ b/pkgs/development/python-modules/pytest-annotate/default.nix @@ -14,9 +14,17 @@ buildPythonPackage rec { sha256 = "03e4dece2d1aa91666034f1b2e8bb7a7b8c6be11baf3cf2929b26eea5c6e86f3"; }; - propagatedBuildInputs = [ pyannotate pytest ]; + propagatedBuildInputs = [ + pyannotate + pytest + ]; - # not testing for a testing module... + postConfigure = '' + substituteInPlace setup.py \ + --replace "pytest>=3.2.0,<4.0.0" "pytest" + ''; + + # no testing in a testing module... doCheck = false; meta = with stdenv.lib; { From 32e72ad8960f3b0ca62cca743ca8ed28231b7edc Mon Sep 17 00:00:00 2001 From: gnidorah Date: Thu, 18 Jul 2019 19:51:46 +0300 Subject: [PATCH 0727/1611] openmw-tes3mp: 0.7.0-alpha -> 2019-06-09 Closes #64587. abbradar: clarify source of CrabNet revision. --- pkgs/games/openmw/tes3mp.nix | 125 ++++++++++++++--------------------- 1 file changed, 50 insertions(+), 75 deletions(-) diff --git a/pkgs/games/openmw/tes3mp.nix b/pkgs/games/openmw/tes3mp.nix index a3ad0e637e5..2bc34a6ec9d 100644 --- a/pkgs/games/openmw/tes3mp.nix +++ b/pkgs/games/openmw/tes3mp.nix @@ -1,102 +1,77 @@ -{ stdenv, fetchFromGitHub, qtbase, openscenegraph, mygui, bullet, ffmpeg, boost, cmake, SDL2, unshield, openal -, libXt, writeScriptBin, makeWrapper, ncurses, libGL, luajit }: +{ stdenv, cmake, openmw, fetchFromGitHub, luajit, makeWrapper }: + +# revisions are taken from https://github.com/GrimKriegor/TES3MP-deploy let - version = "0.7.0-alpha"; - TES3MP = fetchFromGitHub { - owner = "TES3MP"; - repo = "openmw-tes3mp"; - rev = version; - sha256 = "012f50f9jd29qcdww2vk4habg6pmxvxl0q6rrjq8xchb0566712q"; - }; - CallFF = fetchFromGitHub { - owner = "Koncord"; - repo = "CallFF"; - rev = "da94b59ffe95d45bf98b9264e3d1279c9f6ebb6b"; - sha256 = "10wgiqmknh0av968c6r74n5n2izxsx8qawfrab57kkmj9h0zp0pm"; - }; - CrabNet = fetchFromGitHub { + # TES3MP_STABLE_VERSION_FILE + compatHash = "292536439eeda58becdb7e441fe2e61ebb74529e"; + rakNet = fetchFromGitHub { owner = "TES3MP"; repo = "CrabNet"; - rev = "ab1306050fe0f5b0f9c4f56893a79e56a9459567"; - sha256 = "03q76pjv9mdi7w832b23q1mj4r2wb0hsnh4kpvwai607g04l0pp0"; + # usually fixed: + # https://github.com/GrimKriegor/TES3MP-deploy/blob/d2a4a5d3acb64b16d9b8ca85906780aeea8d311b/tes3mp-deploy.sh#L589 + rev = "4eeeaad2f6c11aeb82070df35169694b4fb7b04b"; + sha256 = "0p0li9l1i5lcliswm5w9jql0zff9i6fwhiq0bl130m4i7vpr4cr3"; }; - CoreScripts = fetchFromGitHub { + rakNetLibrary = stdenv.mkDerivation { + name = "RakNetLibrary"; + src = rakNet; + nativeBuildInputs = [ cmake ]; + installPhase = '' + install -Dm755 lib/libRakNetLibStatic.a $out/lib/libRakNetLibStatic.a + ''; + }; + coreScripts = fetchFromGitHub { owner = "TES3MP"; repo = "CoreScripts"; - rev = "1e9f69f98051b2639b18203f989ffbd0a4b427ea"; - sha256 = "03ysi7rh0k78kv4slvmkxpymxvdpr8b6hwr1lvjdgq7rq0ljy0lg"; + # usually latest master + rev = "71e15fa3b1d5131b6607ba1589f41c06672ce376"; + sha256 = "1kwii8rpsxjmz4dh06wb0qaix17hq5s1qsvysv6n6209vlclfxjg"; }; - - fakegit = writeScriptBin "git" '' - #! ${stdenv.shell} - ''; -in stdenv.mkDerivation rec { - inherit version; - name = "tes3mp-${version}"; +in openmw.overrideAttrs (oldAttrs: rec { + version = "2019-06-09"; + name = "openmw-tes3mp-${version}"; src = fetchFromGitHub { - owner = "GrimKriegor"; - repo = "TES3MP-deploy"; - rev = "1dd78a3e2cf9f4fe85bf7ca9c393251968a9c325"; - sha256 = "1bp9c4kds9q0xhbn4sxb7n0f6rvb45gzx7ljdgc56wz4j5rfi3xn"; + owner = "TES3MP"; + repo = "openmw-tes3mp"; + # usually latest in stable branch (e.g. 0.7.0) + rev = "01804af100785bc2c162d568258d9662012627a3"; + sha256 = "0j99v9vvmic0bqw3y4550k1dy058lwvs9s9qcjmxh1wkqkvrpdnp"; }; - dontUseCmakeConfigure = true; + nativeBuildInputs = oldAttrs.nativeBuildInputs ++ [ makeWrapper ]; + buildInputs = oldAttrs.buildInputs ++ [ luajit ]; - nativeBuildInputs = [ cmake makeWrapper fakegit ]; - buildInputs = [ boost ffmpeg qtbase bullet mygui openscenegraph SDL2 unshield openal libXt - ncurses libGL luajit ]; + cmakeFlags = oldAttrs.cmakeFlags ++ [ + "-DBUILD_OPENCS=OFF" + "-DRakNet_INCLUDES=${rakNet}/include" + "-DRakNet_LIBRARY_RELEASE=${rakNetLibrary}/lib/libRakNetLibStatic.a" + "-DRakNet_LIBRARY_DEBUG=${rakNetLibrary}/lib/libRakNetLibStatic.a" + ]; - buildPhase = '' - mkdir dependencies keepers - cp --no-preserve=mode -r ${TES3MP} code - cp --no-preserve=mode -r ${CallFF} dependencies/callff - cp --no-preserve=mode -r ${CrabNet} dependencies/raknet - cp --no-preserve=mode -r ${CoreScripts} keepers/CoreScripts - - substituteInPlace tes3mp-deploy.sh \ - --replace "-DBUILD_OPENCS=OFF" "-DBUILD_OPENCS=OFF -DCMAKE_INSTALL_PREFIX=$out" - patchShebangs tes3mp-deploy.sh - echo y | ./tes3mp-deploy.sh -i -c $NIX_BUILD_CORES + preConfigure = '' + substituteInPlace files/version.in \ + --subst-var-by OPENMW_VERSION_COMMITHASH ${compatHash} ''; - installPhase = '' - prefix=$out/opt/tes3mp - mkdir -p $prefix/build $out/etc/openmw $out/bin - for i in build/*; do - if [ -f "$i" ] && [ -x "$i" ]; then - mv "$i" $prefix/build - fi - done - mv build/resources $prefix/build - mv build/{settings-default.cfg,openmw.cfg,gamecontrollerdb.txt} $out/etc/openmw - mv keepers $prefix - mv build/tes3mp-credits.md $prefix/build - mv -f $prefix/keepers/version $prefix/build/resources - - for i in tes3mp.sh tes3mp-browser.sh tes3mp-server.sh - do - bin="$out/bin/''${i%.sh}" - mv $i $bin - substituteInPlace $bin \ - --replace build/ $prefix/build/ - chmod +x $bin - done - ln -s $prefix/keepers/*.cfg $out/etc/openmw/ - + postInstall = '' + # components/process/processinvoker.cpp: path.prepend(QLatin1String("./")) + wrapProgram $out/bin/tes3mp-browser \ + --run "cd $out/bin" wrapProgram $out/bin/tes3mp-server \ --run "mkdir -p ~/.config/openmw" \ --run "cd ~/.config/openmw" \ - --run "[ -d CoreScripts ] || cp --no-preserve=mode -r $prefix/keepers/CoreScripts ." \ - --run "[ -f tes3mp-server.cfg ] || echo \"[Plugins] home = \$HOME/.config/openmw/CoreScripts\" > tes3mp-server.cfg" + --run "[ -d CoreScripts ] || cp --no-preserve=mode -r ${coreScripts} CoreScripts" \ + --run "[ -f tes3mp-server.cfg ] || echo \"[Plugins] home = \$HOME/.config/openmw/CoreScripts\" > tes3mp-server.cfg" \ + --run "cd $out/bin" ''; meta = with stdenv.lib; { description = "Multiplayer for TES3:Morrowind based on OpenMW"; - homepage = "https://tes3mp.com/"; + homepage = https://tes3mp.com/; license = licenses.gpl3; platforms = platforms.linux; maintainers = with maintainers; [ gnidorah ]; }; -} +}) From 248fd7a46c57773cc4f5090183d45a2be3be2878 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Tue, 16 Jul 2019 17:39:20 -0400 Subject: [PATCH 0728/1611] pythonPackages.pytest-mock: refactor fix broken package --- .../pytest-annotate/default.nix | 9 +++++--- .../python-modules/pytest-mock/default.nix | 23 ++++++++++++++++--- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/pytest-annotate/default.nix b/pkgs/development/python-modules/pytest-annotate/default.nix index 86f344b0e94..12a7baa55bf 100644 --- a/pkgs/development/python-modules/pytest-annotate/default.nix +++ b/pkgs/development/python-modules/pytest-annotate/default.nix @@ -14,12 +14,15 @@ buildPythonPackage rec { sha256 = "03e4dece2d1aa91666034f1b2e8bb7a7b8c6be11baf3cf2929b26eea5c6e86f3"; }; - propagatedBuildInputs = [ - pyannotate + buildInputs = [ pytest ]; - postConfigure = '' + propagatedBuildInputs = [ + pyannotate + ]; + + postPatch = '' substituteInPlace setup.py \ --replace "pytest>=3.2.0,<4.0.0" "pytest" ''; diff --git a/pkgs/development/python-modules/pytest-mock/default.nix b/pkgs/development/python-modules/pytest-mock/default.nix index 8fba5e90ab1..58e032df4df 100644 --- a/pkgs/development/python-modules/pytest-mock/default.nix +++ b/pkgs/development/python-modules/pytest-mock/default.nix @@ -1,4 +1,12 @@ -{ lib, buildPythonPackage, fetchPypi, fetchpatch, isPy3k, pytest, mock, setuptools_scm }: +{ lib +, buildPythonPackage +, fetchPypi +, fetchpatch +, isPy3k +, pytest +, mock +, setuptools_scm +}: buildPythonPackage rec { pname = "pytest-mock"; @@ -10,7 +18,14 @@ buildPythonPackage rec { }; propagatedBuildInputs = lib.optional (!isPy3k) mock; - nativeBuildInputs = [ setuptools_scm pytest ]; + + nativeBuildInputs = [ + setuptools_scm + ]; + + checkInputs = [ + pytest + ]; patches = [ # Fix tests for pytest 4.6. Remove with the next release @@ -21,7 +36,9 @@ buildPythonPackage rec { ]; checkPhase = '' - py.test + # remove disabled test on next release + # https://github.com/pytest-dev/pytest-mock/pull/151 + pytest -k "not test_detailed_introspection" ''; meta = with lib; { From ba4e803a11f656c53b5be3b49e3311ea1352da64 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 23:40:51 -0700 Subject: [PATCH 0729/1611] python37Packages.gensim: 3.7.3 -> 3.8.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-gensim/versions --- pkgs/development/python-modules/gensim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gensim/default.nix b/pkgs/development/python-modules/gensim/default.nix index 93e52c51dda..a717a0ef6e8 100644 --- a/pkgs/development/python-modules/gensim/default.nix +++ b/pkgs/development/python-modules/gensim/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "gensim"; - version = "3.7.3"; + version = "3.8.0"; src = fetchPypi { inherit pname version; - sha256 = "0mp1hbj7ciwpair7z445zj1grfv8c75gby9lih01c3mvw4pff7v2"; + sha256 = "0rjpmxcd4hphq41y7frg6by6gwjjmrdbnim8jvx951ps5gzyfpgc"; }; propagatedBuildInputs = [ smart_open numpy six scipy ]; From e64663cfbe90907482fe1e064ad5d8eb64831095 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 07:47:00 -0700 Subject: [PATCH 0730/1611] harfbuzz: 2.5.1 -> 2.5.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/harfbuzz/versions --- pkgs/development/libraries/harfbuzz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix index a405633c1b8..26a3428f679 100644 --- a/pkgs/development/libraries/harfbuzz/default.nix +++ b/pkgs/development/libraries/harfbuzz/default.nix @@ -8,7 +8,7 @@ }: let - version = "2.5.1"; + version = "2.5.3"; inherit (stdenv.lib) optional optionals optionalString; in @@ -17,7 +17,7 @@ stdenv.mkDerivation { src = fetchurl { url = "https://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.xz"; - sha256 = "17kiyq23g7bnjvyn2yg4gyr7i7qjam65n20whsrplpxxk9bk8j3d"; + sha256 = "0p45xk5bblsw8lfs7y7z80b4rvda9f2hlpr28flkrfmpjz3hvl7y"; }; postPatch = '' From b42edbcfa774ecebc292ea76606731a093b9ebb7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 03:16:04 -0700 Subject: [PATCH 0731/1611] e2fsprogs: 1.45.2 -> 1.45.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/e2fsprogs/versions --- pkgs/tools/filesystems/e2fsprogs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/e2fsprogs/default.nix b/pkgs/tools/filesystems/e2fsprogs/default.nix index babb3d844fe..d8ddde24ade 100644 --- a/pkgs/tools/filesystems/e2fsprogs/default.nix +++ b/pkgs/tools/filesystems/e2fsprogs/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "e2fsprogs"; - version = "1.45.2"; + version = "1.45.3"; src = fetchurl { url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz"; - sha256 = "1bhqljgcngys1diaxh7rnxc85d1jsril8xd7bach9imdjwr1wlm8"; + sha256 = "0gcqfnp9h7wgz1vq402kxd2w398vqaim26aq9i722v3lrgh5cm9s"; }; outputs = [ "bin" "dev" "out" "man" "info" ]; From 69b233e7047504d8708e7f40445874bf7245dc0b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 00:39:51 -0700 Subject: [PATCH 0732/1611] curl: 7.65.0 -> 7.65.3 --- pkgs/tools/networking/curl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index bd502ee34c6..652bcdba874 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -24,14 +24,14 @@ assert brotliSupport -> brotli != null; assert gssSupport -> libkrb5 != null; stdenv.mkDerivation rec { - name = "curl-7.65.0"; + name = "curl-7.65.3"; src = fetchurl { urls = [ "https://curl.haxx.se/download/${name}.tar.bz2" "https://github.com/curl/curl/releases/download/${lib.replaceStrings ["."] ["_"] name}/${name}.tar.bz2" ]; - sha256 = "0p6z77iv6wlxq7skbnxn61rn8rangrp4g4spr09y920fcf7w0iza"; + sha256 = "02g5zj4rq5sr15jzjqk70xk4k92i2pdmpq00xb4pnba8ps1mx18a"; }; outputs = [ "bin" "dev" "out" "man" "devdoc" ]; From ecfb397e8a161be74755bad2d5b778c45346ee34 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 10:51:02 -0400 Subject: [PATCH 0733/1611] libxkbcommon: fix build on darwin with upstream patch --- pkgs/development/libraries/libxkbcommon/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index ec4c904795f..44530b38150 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -20,11 +20,13 @@ stdenv.mkDerivation rec { "-Dx-locale-root=${libX11.out}/share/X11/locale" ]; - # Remove example program which fail on Darwin - postPatch = if stdenv.isDarwin then '' - substituteInPlace meson.build \ - --replace "executable('rmlvo-to-keymap', 'test/rmlvo-to-keymap.c', dependencies: test_dep)" "" - '' else null; + patches = stdenv.lib.optionals stdenv.isDarwin [ + # Fix build on darwin + (fetchpatch { + url = "https://github.com/xkbcommon/libxkbcommon/commit/32d178b50fe0da05e51e4fe8903c84371d133331.patch"; + sha256 = "1wqdjla8hmgdqr8xc2manw363sxrqqsn3s8bd397h3cd7fj3hh1v"; + }) + ]; doCheck = false; # fails, needs unicode locale From 1bac9129402e4e5d7fa46c153452024df8e56305 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 15 Jul 2019 02:06:42 -0700 Subject: [PATCH 0734/1611] dar: 2.6.4 -> 2.6.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dar/versions --- pkgs/tools/backup/dar/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/dar/default.nix b/pkgs/tools/backup/dar/default.nix index 196e15a0133..ac01dc6022b 100644 --- a/pkgs/tools/backup/dar/default.nix +++ b/pkgs/tools/backup/dar/default.nix @@ -3,12 +3,12 @@ with stdenv.lib; stdenv.mkDerivation rec { - version = "2.6.4"; + version = "2.6.5"; name = "dar-${version}"; src = fetchurl { url = "mirror://sourceforge/dar/${name}.tar.gz"; - sha256 = "10djjpdv27kzjaa1saf1gq1g1yy4gj8qzjscyjh63r1kycflwnw5"; + sha256 = "1x2zr5nw3qq1vmbs4bva6mx1cx0180dri5i2971ynzcxybn75znd"; }; buildInputs = [ zlib bzip2 openssl lzo libgcrypt gpgme xz ] From ddce9d07e2e86425a5d2df6874113be99a069d70 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 14 Jul 2019 23:19:34 -0700 Subject: [PATCH 0735/1611] aws-checksums: 0.1.2 -> 0.1.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/aws-checksums/versions --- pkgs/development/libraries/aws-checksums/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/aws-checksums/default.nix b/pkgs/development/libraries/aws-checksums/default.nix index 0e47398b346..124984f0d53 100644 --- a/pkgs/development/libraries/aws-checksums/default.nix +++ b/pkgs/development/libraries/aws-checksums/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "aws-checksums"; - version = "0.1.2"; + version = "0.1.3"; src = fetchFromGitHub { owner = "awslabs"; repo = pname; rev = "v${version}"; - sha256 = "1r21sfs1ik6cb8bz17w6gp6y2xa9rbjxjka0p6airb3qds094iv5"; + sha256 = "1s6zwf97rkkvnf3p7vlaykwa4pxpvj78pmxvvjf5jk29f93b49xp"; }; nativeBuildInputs = [ cmake ]; From 27f9a4253dcc8dc315bf8828ff5f0deea509af07 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 19 Jul 2019 22:53:46 -0700 Subject: [PATCH 0736/1611] python37Packages.gnureadline: 6.3.8 -> 8.0.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-gnureadline/versions --- pkgs/development/python-modules/gnureadline/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/gnureadline/default.nix b/pkgs/development/python-modules/gnureadline/default.nix index 967fc1c5745..2e802e05c07 100644 --- a/pkgs/development/python-modules/gnureadline/default.nix +++ b/pkgs/development/python-modules/gnureadline/default.nix @@ -6,13 +6,13 @@ }: buildPythonPackage rec { - version = "6.3.8"; + version = "8.0.0"; pname = "gnureadline"; disabled = isPyPy; src = fetchPypi { inherit pname version; - sha256 = "0ddhj98x2nv45iz4aadk4b9m0b1kpsn1xhcbypn5cd556knhiqjq"; + sha256 = "0xllr43dizvybmb68i0ybk1xhaqx5abjwxa9vrg43b9ds0pggvk1"; }; buildInputs = [ pkgs.ncurses ]; From e04eb2bfc19c764ad5c20e92a7c4e0e9497d1de9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 01:36:23 -0700 Subject: [PATCH 0737/1611] python37Packages.nose2: 0.8.0 -> 0.9.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-nose2/versions --- pkgs/development/python-modules/nose2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nose2/default.nix b/pkgs/development/python-modules/nose2/default.nix index e708ff2ee3e..749a4d4618b 100644 --- a/pkgs/development/python-modules/nose2/default.nix +++ b/pkgs/development/python-modules/nose2/default.nix @@ -9,11 +9,11 @@ buildPythonPackage rec { pname = "nose2"; - version = "0.8.0"; + version = "0.9.1"; src = fetchPypi { inherit pname version; - sha256 = "9052f2b46807b63d9bdf68e0768da1f8386368889b50043fd5d0889c470258f3"; + sha256 = "16drs4bc2wvgwwi1pf6pmk6c00pl16vs1v7djc4a8kwpsxpibphf"; }; propagatedBuildInputs = [ six coverage ] From e04883e4a61652f1273c9b5e6f1f7ec72dd81747 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 20 Jul 2019 04:20:00 -0500 Subject: [PATCH 0738/1611] tflint: 0.9.1 -> 0.9.2 --- pkgs/development/tools/analysis/tflint/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/tflint/default.nix b/pkgs/development/tools/analysis/tflint/default.nix index 44b015ed8e0..b372481cec7 100644 --- a/pkgs/development/tools/analysis/tflint/default.nix +++ b/pkgs/development/tools/analysis/tflint/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "tflint"; - version = "0.9.1"; + version = "0.9.2"; src = fetchFromGitHub { owner = "wata727"; repo = pname; rev = "v${version}"; - sha256 = "1p6859lax6cmk2q4pvqw4sm78k80gs2561nxa1gwdna3af211fbp"; + sha256 = "0yk5hygrjkbq5ry2kark3hd59hwjxpgryz0ychr8mhzvlr97aj1k"; }; - modSha256 = "021iqy5a703cymcc66rd1rxnpqa3rnzj37y400s0rmiq0zpkm2nc"; + modSha256 = "096hq0xc3cq45r13pm0s0q9rxd4z0ia6x0wy4xmwgzfb97jvn20p"; subPackages = [ "." ]; From 5563ff5a2727fcb47ff271beec751a6c94168bb7 Mon Sep 17 00:00:00 2001 From: Chris Rendle-Short Date: Tue, 16 Jul 2019 21:10:02 +1000 Subject: [PATCH 0739/1611] openrct2: 0.2.2 -> 0.2.3 --- pkgs/games/openrct2/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/openrct2/default.nix b/pkgs/games/openrct2/default.nix index 926e360a1b4..e7636e8320e 100644 --- a/pkgs/games/openrct2/default.nix +++ b/pkgs/games/openrct2/default.nix @@ -5,20 +5,20 @@ let name = "openrct2-${version}"; - version = "0.2.2"; + version = "0.2.3"; openrct2-src = fetchFromGitHub { owner = "OpenRCT2"; repo = "OpenRCT2"; rev = "v${version}"; - sha256 = "1bfqmb6cbmsjcvj77vppy5lw1m4lkvxd1w3f218ah4788xnkysq2"; + sha256 = "01mj6jlbl2cn3wpk6sy34ldzdl0qykpn7fncznjykklj2nqzr4ig"; }; objects-src = fetchFromGitHub { owner = "OpenRCT2"; repo = "objects"; - rev = "v1.0.9"; - sha256 = "1kng0mz8dsdbfd3g6qsk69ap2nq75aizw76j4a6lkfygnbcv8m3j"; + rev = "v1.0.11"; + sha256 = "1bh7mngpqnhzwnhhawq5y3a6hbvwxis2yagk4dcmc4w1fifq2y66"; }; title-sequences-src = fetchFromGitHub { From 42fa330b04b856fb8a562d758dfa4f8f0b5695dd Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Mon, 15 Jul 2019 20:18:25 +0200 Subject: [PATCH 0740/1611] zam-plugins: 3.10 -> 3.11 --- pkgs/applications/audio/zam-plugins/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 210d0f7e989..69906b81438 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "zam-plugins-${version}"; - version = "3.10"; + version = "3.11"; src = fetchgit { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; - rev = "a3321af1892a6994d64fb705e48ae8adf8d7df20"; - sha256 = "0yqrs21ph2lx00p0jlc70qkmzfrnf9ihg1r3i9j5n2r903ljdg5p"; + rev = "af338057e42dd5d07cba1889bfc74eda517c6147"; + sha256 = "1qbskhcvy2k2xv0f32lw13smz5g72v0yy47zv6vnhnaiaqf3f2d5"; }; nativeBuildInputs = [ pkgconfig ]; From b6a25f2de47941b8900354c3dd0b0cfea7781db8 Mon Sep 17 00:00:00 2001 From: Raphael Borun Das Gupta Date: Tue, 16 Jul 2019 10:37:04 +0200 Subject: [PATCH 0741/1611] doc: put Java software's build-time dependencies into nativeBuildInputs instead of into buildInputs --- doc/languages-frameworks/java.xml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/languages-frameworks/java.xml b/doc/languages-frameworks/java.xml index 287f63e685c..68a1a097984 100644 --- a/doc/languages-frameworks/java.xml +++ b/doc/languages-frameworks/java.xml @@ -10,7 +10,7 @@ stdenv.mkDerivation { name = "..."; src = fetchurl { ... }; - buildInputs = [ jdk ant ]; + nativeBuildInputs = [ jdk ant ]; buildPhase = "ant"; } @@ -30,7 +30,8 @@ stdenv.mkDerivation { foo.jar in its share/java directory, and another package declares the attribute -buildInputs = [ jdk libfoo ]; +buildInputs = [ libfoo ]; +nativeBuildInputs = [ jdk ]; then CLASSPATH will be set to /nix/store/...-libfoo/share/java/foo.jar. @@ -46,7 +47,7 @@ buildInputs = [ jdk libfoo ]; script to run it using the OpenJRE. You can use makeWrapper for this: -buildInputs = [ makeWrapper ]; +nativeBuildInputs = [ makeWrapper ]; installPhase = '' @@ -76,7 +77,7 @@ installPhase = It is possible to use a different Java compiler than javac from the OpenJDK. For instance, to use the GNU Java Compiler: -buildInputs = [ gcj ant ]; +nativeBuildInputs = [ gcj ant ]; Here, Ant will automatically use gij (the GNU Java Runtime) instead of the OpenJRE. From c8049551a6814ad07f6beef157b2c30113a27708 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:45:43 +0200 Subject: [PATCH 0742/1611] wolf-shaper: 0.1.6 -> 0.1.7 --- pkgs/applications/audio/wolf-shaper/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/wolf-shaper/default.nix b/pkgs/applications/audio/wolf-shaper/default.nix index 562fdc1be8b..735e4eb632c 100644 --- a/pkgs/applications/audio/wolf-shaper/default.nix +++ b/pkgs/applications/audio/wolf-shaper/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "wolf-shaper-${version}"; - version = "0.1.6"; + version = "0.1.7"; src = fetchFromGitHub { owner = "pdesaulniers"; repo = "wolf-shaper"; rev = "v${version}"; - sha256 = "01h5dm1nrr0i54ancwznr7wn4vpw08dw0b69v3axy32r5j7plw6s"; + sha256 = "0lllgcbnnh1m95bp29hh17x170hl7170zizjrvy892qfkn36830d"; fetchSubmodules = true; }; From b2830bea2de2fab9e7cdb456fa63565dc62d06bc Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:57:37 +0200 Subject: [PATCH 0743/1611] mlt: 6.10.0 -> 6.16.0 --- pkgs/development/libraries/mlt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mlt/default.nix b/pkgs/development/libraries/mlt/default.nix index d8075c41a70..a56deff66e4 100644 --- a/pkgs/development/libraries/mlt/default.nix +++ b/pkgs/development/libraries/mlt/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { name = "mlt-${version}"; - version = "6.10.0"; + version = "6.16.0"; src = fetchFromGitHub { owner = "mltframework"; repo = "mlt"; rev = "v${version}"; - sha256 = "0ki86yslr5ywa6sz8pjrgd9a4rn2rr4mss2zkmqi7pq8prgsm1fr"; + sha256 = "1362fv63p34kza9v4b71b6wakgvsa2vdx9y0g28x3yh4cp4k97kx"; }; buildInputs = [ From 14a3e30deb46e2b90a5d2724ff5246f70b7921d8 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:58:02 +0200 Subject: [PATCH 0744/1611] mlt-qt5: 6.14.0 -> 6.16.0 --- pkgs/development/libraries/mlt/qt-5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mlt/qt-5.nix b/pkgs/development/libraries/mlt/qt-5.nix index 85ea7a6292a..f46ec57197f 100644 --- a/pkgs/development/libraries/mlt/qt-5.nix +++ b/pkgs/development/libraries/mlt/qt-5.nix @@ -7,13 +7,13 @@ let inherit (stdenv.lib) getDev; in stdenv.mkDerivation rec { name = "mlt-${version}"; - version = "6.14.0"; + version = "6.16.0"; src = fetchFromGitHub { owner = "mltframework"; repo = "mlt"; rev = "v${version}"; - sha256 = "0lxjrd0rsadkfwg86qp0p176kqd9zdfhbmjygmrg5jklmxzd5i25"; + sha256 = "1362fv63p34kza9v4b71b6wakgvsa2vdx9y0g28x3yh4cp4k97kx"; }; buildInputs = [ From 3f06014e39b38baa662f5c90739c1fe13038e66d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 01:52:49 -0700 Subject: [PATCH 0745/1611] python37Packages.loguru: 0.3.0 -> 0.3.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-loguru/versions --- pkgs/development/python-modules/loguru/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/loguru/default.nix b/pkgs/development/python-modules/loguru/default.nix index a0bc3a88745..c06f5d6cd08 100644 --- a/pkgs/development/python-modules/loguru/default.nix +++ b/pkgs/development/python-modules/loguru/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "loguru"; - version = "0.3.0"; + version = "0.3.1"; disabled = isPy27; src = fetchPypi { inherit pname version; - sha256 = "1b2phizcx2wbdm5np0s16yd68fc0isqnm8qs6l9pmlrlyf9gm87j"; + sha256 = "14pmxyx4kwyafdifqzal121mpdd89lxbjgn0zzi9z6fmzk6pr5h2"; }; checkInputs = [ pytest colorama ]; From 506392218a3cad9eb4a914d07bd03faad9c7fc22 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:40:57 +0200 Subject: [PATCH 0746/1611] avldrums: 0.3.1 -> 0.3.5 --- pkgs/applications/audio/avldrums-lv2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/avldrums-lv2/default.nix b/pkgs/applications/audio/avldrums-lv2/default.nix index 75b6d8e2758..c49470b76e2 100644 --- a/pkgs/applications/audio/avldrums-lv2/default.nix +++ b/pkgs/applications/audio/avldrums-lv2/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "${pname}-${version}"; pname = "avldrums.lv2"; - version = "0.3.1"; + version = "0.3.5"; src = fetchFromGitHub { owner = "x42"; repo = pname; rev = "v${version}"; - sha256 = "0yhq3n5bahhqpj40mvlkxcjsdsw63jsbz20pl77bx2qj30w25i2j"; + sha256 = "00n2varc7iwp0xbfi45hpq4vlpxxb2kbrdzvrc20qp2265994bqf"; fetchSubmodules = true; }; From 1b9e4d4b2f7d9acb33231d49c6e8a88a5c620a93 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:41:38 +0200 Subject: [PATCH 0747/1611] calf: 0.90.2 -> 0.90.3 --- pkgs/applications/audio/calf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/calf/default.nix b/pkgs/applications/audio/calf/default.nix index d4e2fba0cf4..7d7d25ea88a 100644 --- a/pkgs/applications/audio/calf/default.nix +++ b/pkgs/applications/audio/calf/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "calf-${version}"; - version = "0.90.2"; + version = "0.90.3"; src = fetchurl { url = "https://calf-studio-gear.org/files/${name}.tar.gz"; - sha256 = "0bn4j1klw2yfxz8clbmasaydifq25rdfsv0n6iisxrzcj1lx7sgh"; + sha256 = "17x4hylgq4dn9qycsdacfxy64f5cv57n2qgkvsdp524gnqzw4az3"; }; enableParallelBuilding = true; From 725fd3c129c6dfff9388a9982e82cf9d30806fb8 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:42:22 +0200 Subject: [PATCH 0748/1611] dragonfly-reverb: 1.1.4 -> 2.0.0 --- pkgs/applications/audio/dragonfly-reverb/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/dragonfly-reverb/default.nix b/pkgs/applications/audio/dragonfly-reverb/default.nix index 494f512752b..da915f3fc3e 100644 --- a/pkgs/applications/audio/dragonfly-reverb/default.nix +++ b/pkgs/applications/audio/dragonfly-reverb/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "dragonfly-reverb"; - version = "1.1.4"; + version = "2.0.0"; src = fetchFromGitHub { owner = "michaelwillis"; repo = "dragonfly-reverb"; rev = version; - sha256 = "060g4ddh1z222n39wqj8jxj0zgmpjrgraw76qgyg6xkn15cn9q9y"; + sha256 = "1qrbv4kk5v6ynx424h1i54qj0w8v6vpw81b759jawxvzzprpgq72"; fetchSubmodules = true; }; @@ -26,9 +26,11 @@ stdenv.mkDerivation rec { mkdir -p $out/lib/lv2/ mkdir -p $out/lib/vst/ cd bin - cp -a DragonflyReverb $out/bin/ - cp -a DragonflyReverb-vst.so $out/lib/vst/ - cp -a DragonflyReverb.lv2/ $out/lib/lv2/ + for bin in DragonflyHallReverb DragonflyRoomReverb; do + cp -a $bin $out/bin/ + cp -a $bin-vst.so $out/lib/vst/ + cp -a $bin.lv2/ $out/lib/lv2/ ; + done ''; meta = with stdenv.lib; { From df231a4794198e0f90caa25c4eb6b717b3cdca8f Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:44:36 +0200 Subject: [PATCH 0749/1611] padthv1: 0.9.7 -> 0.9.8 --- pkgs/applications/audio/padthv1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/padthv1/default.nix b/pkgs/applications/audio/padthv1/default.nix index 93aacae47ae..e503793ab39 100644 --- a/pkgs/applications/audio/padthv1/default.nix +++ b/pkgs/applications/audio/padthv1/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "padthv1-${version}"; - version = "0.9.7"; + version = "0.9.8"; src = fetchurl { url = "mirror://sourceforge/padthv1/${name}.tar.gz"; - sha256 = "1jd4bf6a1ipvg4yhb3xf3maqg68bx97ic9l57djmkirlrkh2a3wp"; + sha256 = "1k4p2ir12qjcs62knvw2s6qyvb46203yx22fnwp341cjk171cxji"; }; buildInputs = [ libjack2 alsaLib libsndfile liblo lv2 qt5.qtbase qt5.qttools fftw ]; From fc89e919f95576e4cf6b730b0039a410af9ebb01 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:44:07 +0200 Subject: [PATCH 0750/1611] lsp-plugins: 1.1.5 ->1.1.9 --- pkgs/applications/audio/lsp-plugins/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/lsp-plugins/default.nix b/pkgs/applications/audio/lsp-plugins/default.nix index d798a2bed53..c80485734ca 100644 --- a/pkgs/applications/audio/lsp-plugins/default.nix +++ b/pkgs/applications/audio/lsp-plugins/default.nix @@ -5,14 +5,14 @@ stdenv.mkDerivation rec { pname = "lsp-plugins"; - version = "1.1.5"; + version = "1.1.9"; name = "${pname}-${version}"; src = fetchFromGitHub { owner = "sadko4u"; repo = "${pname}"; rev = "${name}"; - sha256 = "0xcxm47j7mz5vprjqqhi95gz62syp4y737h7cssxd3flqkgar7xr"; + sha256 = "1dzpl7f354rwp37bkr9h2yyafykcdn6m1qqfshqg77fj0pcsw8r2"; }; nativeBuildInputs = [ pkgconfig php expat ]; From 5e9f1bb343fd7ec4bf3e5541c87dca9d0ba1d82a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 20 Jul 2019 12:39:16 +0200 Subject: [PATCH 0751/1611] docbook5: 5.0 -> 5.0.1 Main reason: the previous source would not unpack with patched unzip: https://github.com/NixOS/nixpkgs/commit/0238946872c1 --- pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix b/pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix index 4986101584e..17303e682b9 100644 --- a/pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix +++ b/pkgs/data/sgml+xml/schemas/docbook-5.0/default.nix @@ -1,11 +1,12 @@ { lib, stdenv, fetchurl, unzip }: -stdenv.mkDerivation { - name = "docbook5-5.0"; +stdenv.mkDerivation rec { + pname = "docbook5"; + version = "5.0.1"; src = fetchurl { - url = http://www.docbook.org/xml/5.0/docbook-5.0.zip; - sha256 = "13i04dkd709f0p5f2413sf2y9321pfi4y85ynf8wih6ryphnbk9x"; + url = "http://www.docbook.org/xml/${version}/docbook-${version}.zip"; + sha256 = "1iz3hq1lqgnshvlz4j9gvh4jy1ml74qf90vqf2ikbq0h4i2xzybs"; }; nativeBuildInputs = [ unzip ]; From ca90de12ef1a7e727a7b1f8b20c1e7181e2aa005 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:55:38 +0200 Subject: [PATCH 0752/1611] shotcut: 19.02.28 -> 19.07.15 --- pkgs/applications/video/shotcut/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix index 27a0fa3388e..a683e192f11 100644 --- a/pkgs/applications/video/shotcut/default.nix +++ b/pkgs/applications/video/shotcut/default.nix @@ -8,13 +8,13 @@ assert stdenv.lib.versionAtLeast mlt.version "6.8.0"; stdenv.mkDerivation rec { name = "shotcut-${version}"; - version = "19.02.28"; + version = "19.07.15"; src = fetchFromGitHub { owner = "mltframework"; repo = "shotcut"; rev = "v${version}"; - sha256 = "14l0cm81jy7syi08d8dg4nzp7s9zji9cycnf2mvh7zc7x069d1jr"; + sha256 = "0drl0x8x45kysalzx1pbg0gkvlxaykg9zka1fdkrl4iqfs4s7vv2"; }; enableParallelBuilding = true; From 6c4bedbab54b9a9e1b3f51bcf579d597a2e9cb2a Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:50:24 +0200 Subject: [PATCH 0753/1611] yoshimi: 1.5.10.2 ->1.5.11.3 --- pkgs/applications/audio/yoshimi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix index 63bb966e388..00a22ac711e 100644 --- a/pkgs/applications/audio/yoshimi/default.nix +++ b/pkgs/applications/audio/yoshimi/default.nix @@ -6,11 +6,11 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { name = "yoshimi-${version}"; - version = "1.5.10.2"; + version = "1.5.11.3"; src = fetchurl { url = "mirror://sourceforge/yoshimi/${name}.tar.bz2"; - sha256 = "1rr99qkq80s8l2iv3x4ccxan07m15dvmd5s9b10386bfjbwbya01"; + sha256 = "00w0ll94dpss9f1rnaxjmw6mgjx5q2dz8w4mc3wyrk4s4gbd7154"; }; buildInputs = [ From 0890e9432152173827b089015fc0a1f72df3b4a3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 16 Jun 2019 13:43:06 -0700 Subject: [PATCH 0754/1611] dvdstyler: 3.0.4 -> 3.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/dvdstyler/versions --- pkgs/applications/video/dvdstyler/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/dvdstyler/default.nix b/pkgs/applications/video/dvdstyler/default.nix index f73c5277d05..76db1cd9e64 100644 --- a/pkgs/applications/video/dvdstyler/default.nix +++ b/pkgs/applications/video/dvdstyler/default.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { name = "dvdstyler-${version}"; srcName = "DVDStyler-${version}"; - version = "3.0.4"; + version = "3.1"; src = fetchurl { url = "mirror://sourceforge/project/dvdstyler/dvdstyler/${version}/${srcName}.tar.bz2"; - sha256 = "0lwc0hn94m9r8fi07sjqz3fr618l6lnw3zsakxw7nlgnxbjsk7pi"; + sha256 = "1rz69vrfqz9sma9cm1mnvkd11zq3is53lc3m3hcphr02vs69s53m"; }; nativeBuildInputs = From 8e709be9baa6f7071eea1d3ebc22f4004c5b42b9 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 16 Jun 2019 14:09:59 +0100 Subject: [PATCH 0755/1611] pythonPackages.appconf: fix build, enable tests --- .../python-modules/django_appconf/default.nix | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/django_appconf/default.nix b/pkgs/development/python-modules/django_appconf/default.nix index 1ce86daf992..67345cd8d6a 100644 --- a/pkgs/development/python-modules/django_appconf/default.nix +++ b/pkgs/development/python-modules/django_appconf/default.nix @@ -1,17 +1,22 @@ -{ stdenv, buildPythonPackage, fetchPypi, six }: +{ stdenv, buildPythonPackage, fetchFromGitHub, six, django }: buildPythonPackage rec { pname = "django-appconf"; version = "1.0.3"; - src = fetchPypi { - inherit pname version; - sha256 = "35f13ca4d567f132b960e2cd4c832c2d03cb6543452d34e29b7ba10371ba80e3"; + src = fetchFromGitHub { + owner = "django-compressor"; + repo = "django-appconf"; + rev = version; + sha256 = "06hwbz7362y0la9np3df25mms235fcqgpd2vn0mnf8dri9spzy1h"; }; - # No tests in archive - doCheck = false; + propagatedBuildInputs = [ six django ]; - propagatedBuildInputs = [ six ]; + checkPhase = '' + # prove we're running tests against installed package, not build dir + rm -r appconf + python -m django test --settings="tests.test_settings" + ''; meta = with stdenv.lib; { description = "A helper class for handling configuration defaults of packaged apps gracefully"; From 0bbfd2d2dc53911f65d90024d23feb9e6aa5afd6 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 16 Jun 2019 15:43:17 +0100 Subject: [PATCH 0756/1611] pythonPackages.django_compressor: fix build, flesh out comments --- .../python-modules/django_compressor/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/django_compressor/default.nix b/pkgs/development/python-modules/django_compressor/default.nix index 845d4928805..30343f76570 100644 --- a/pkgs/development/python-modules/django_compressor/default.nix +++ b/pkgs/development/python-modules/django_compressor/default.nix @@ -8,8 +8,12 @@ buildPythonPackage rec { inherit pname version; sha256 = "9616570e5b08e92fa9eadc7a1b1b49639cce07ef392fc27c74230ab08075b30f"; }; + postPatch = '' + substituteInPlace setup.py --replace 'rcssmin == 1.0.6' 'rcssmin' \ + --replace 'rjsmin == 1.0.12' 'rjsmin' + ''; - # Need to setup django testing + # requires django-sekizai, which we don't have packaged yet doCheck = false; propagatedBuildInputs = [ rcssmin rjsmin django_appconf ]; From 5f597d4b4c524be7a10ede6f88445ca2ce6b0364 Mon Sep 17 00:00:00 2001 From: avitex Date: Mon, 17 Jun 2019 19:41:14 +1000 Subject: [PATCH 0757/1611] maintainers: add avitex --- maintainers/maintainer-list.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 16da37d2f63..8e474b651a1 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -542,6 +542,15 @@ github = "averelld"; name = "averelld"; }; + avitex = { + email = "theavitex@gmail.com"; + github = "avitex"; + name = "avitex"; + keys = [{ + longkeyid = "rsa4096/0x8B366C443CABE942"; + fingerprint = "271E 136C 178E 06FA EA4E B854 8B36 6C44 3CAB E942"; + }]; + }; avnik = { email = "avn@avnik.info"; github = "avnik"; From 955ed925e56c3b18fd378da5a1e2b8741f32335e Mon Sep 17 00:00:00 2001 From: avitex Date: Mon, 17 Jun 2019 19:42:04 +1000 Subject: [PATCH 0758/1611] caffe: fix python build --- pkgs/applications/science/math/caffe/default.nix | 2 +- pkgs/applications/science/math/caffe/python.patch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix index 3367fa87422..2a736d3d398 100644 --- a/pkgs/applications/science/math/caffe/default.nix +++ b/pkgs/applications/science/math/caffe/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { cmakeFlags = # It's important that caffe is passed the major and minor version only because that's what # boost_python expects - [ (if pythonSupport then "-Dpython_version=3${python.pythonVersion}" else "-DBUILD_python=OFF") + [ (if pythonSupport then "-Dpython_version=${python.pythonVersion}" else "-DBUILD_python=OFF") "-DBLAS=open" ] ++ (if cudaSupport then [ "-DCUDA_ARCH_NAME=All" diff --git a/pkgs/applications/science/math/caffe/python.patch b/pkgs/applications/science/math/caffe/python.patch index b1bed6c174b..dac5071aa08 100644 --- a/pkgs/applications/science/math/caffe/python.patch +++ b/pkgs/applications/science/math/caffe/python.patch @@ -64,7 +64,7 @@ index 4a5bac47..be026d43 100644 - if(PYTHONLIBS_FOUND AND NUMPY_FOUND AND Boost_PYTHON_FOUND) + find_package(NumPy 1.7.1) + find_package(Boost 1.46 REQUIRED COMPONENTS python@major@@minor@) -+ if(PYTHONLIBS_FOUND AND NUMPY_FOUND AND BOOST_PYTHON@major@@minor@_FOUND) ++ if(PYTHONLIBS_FOUND AND NUMPY_FOUND AND Boost_PYTHON@major@@minor@_FOUND) set(HAVE_PYTHON TRUE) if(BUILD_python_layer) list(APPEND Caffe_DEFINITIONS PRIVATE -DWITH_PYTHON_LAYER) From 44324bdd7c88f043b5c1af084dd34f955017a304 Mon Sep 17 00:00:00 2001 From: avitex Date: Mon, 17 Jun 2019 22:16:13 +1000 Subject: [PATCH 0759/1611] caffe: add python package requirements --- pkgs/applications/science/math/caffe/default.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix index 2a736d3d398..153ebaa441f 100644 --- a/pkgs/applications/science/math/caffe/default.nix +++ b/pkgs/applications/science/math/caffe/default.nix @@ -73,9 +73,17 @@ stdenv.mkDerivation rec { ++ lib.optionals stdenv.isDarwin [ Accelerate CoreGraphics CoreVideo ] ; - propagatedBuildInputs = lib.optional pythonSupport python.pkgs.protobuf; + propagatedBuildInputs = lib.optionals pythonSupport ( + # requirements.txt + let pp = python.pkgs; in ([ + pp.numpy pp.scipy pp.scikitimage pp.h5py + pp.matplotlib pp.ipython pp.networkx pp.nose + pp.pandas pp.dateutil pp.protobuf pp.gflags + pp.pyyaml pp.pillow pp.six + ] ++ lib.optional leveldbSupport pp.leveldb) + ); - outputs = [ "bin" "out"]; + outputs = [ "bin" "out" ]; propagatedBuildOutputs = []; # otherwise propagates out -> bin cycle patches = [ From 3ddc3e42176f593b4a6548c4b200427b12affa77 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 2 Jun 2019 09:39:31 -0700 Subject: [PATCH 0760/1611] python37Packages.cupy: 5.4.0 -> 6.0.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-cupy/versions --- pkgs/development/python-modules/cupy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cupy/default.nix b/pkgs/development/python-modules/cupy/default.nix index 2b38f4a9e36..aaaad292df0 100644 --- a/pkgs/development/python-modules/cupy/default.nix +++ b/pkgs/development/python-modules/cupy/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "cupy"; - version = "5.4.0"; + version = "6.0.0"; src = fetchPypi { inherit pname version; - sha256 = "1qms1kmzr543hz30jmcmx20cf9xbgzl97a9k44xizsk785dwakbn"; + sha256 = "168xi92pfk80n2k47qc5zim7jai3kcmj3j157fynz9c8dfw4sbn4"; }; checkInputs = [ From f5bad02ac7acdcb731c3a3a5cf48911cbe19e2e9 Mon Sep 17 00:00:00 2001 From: Peter Romfeld Date: Fri, 1 Feb 2019 12:49:27 +0800 Subject: [PATCH 0761/1611] pythonPackages.django-webpack-loader: init at 0.2.4 --- .../django-webpack-loader/default.nix | 21 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 23 insertions(+) create mode 100644 pkgs/development/python-modules/django-webpack-loader/default.nix diff --git a/pkgs/development/python-modules/django-webpack-loader/default.nix b/pkgs/development/python-modules/django-webpack-loader/default.nix new file mode 100644 index 00000000000..71ec20faed8 --- /dev/null +++ b/pkgs/development/python-modules/django-webpack-loader/default.nix @@ -0,0 +1,21 @@ +{ stdenv, lib, buildPythonPackage, fetchPypi }: + +buildPythonPackage rec { + pname = "django-webpack-loader"; + version = "0.2.4"; + + src = fetchPypi { + inherit pname version; + sha256 = "1bwpgmkh32d7a5dgppin9m0mnh8a33ccl5ksnpw5vjp4lal3xq73"; + }; + + # django.core.exceptions.ImproperlyConfigured (path issue with DJANGO_SETTINGS_MODULE?) + doCheck = false; + + meta = with lib; { + description = "Use webpack to generate your static bundles"; + homepage = https://github.com/owais/django-webpack-loader; + maintainers = with maintainers; [ peterromfeldhk ]; + license = with licenses; [ mit ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c16b2f83ae3..8ce7056feb5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2779,6 +2779,8 @@ in { django-sr = callPackage ../development/python-modules/django-sr { }; + django-webpack-loader = callPackage ../development/python-modules/django-webpack-loader { }; + django_tagging = callPackage ../development/python-modules/django_tagging { }; django_tagging_0_4_3 = if From a8c79e9ab9585085412f61fc1feb0037c5e32c89 Mon Sep 17 00:00:00 2001 From: Lassi Haasio Date: Fri, 2 Nov 2018 10:47:44 +0200 Subject: [PATCH 0762/1611] pyditz: init at 0.10.3 --- pkgs/applications/misc/pyditz/default.nix | 25 +++++++++++++++++++ .../python-modules/cerberus11/default.nix | 19 ++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ pkgs/top-level/python-packages.nix | 2 ++ 4 files changed, 50 insertions(+) create mode 100644 pkgs/applications/misc/pyditz/default.nix create mode 100644 pkgs/development/python-modules/cerberus11/default.nix diff --git a/pkgs/applications/misc/pyditz/default.nix b/pkgs/applications/misc/pyditz/default.nix new file mode 100644 index 00000000000..0f4e743aba4 --- /dev/null +++ b/pkgs/applications/misc/pyditz/default.nix @@ -0,0 +1,25 @@ +{ stdenv, pythonPackages }: + +pythonPackages.buildPythonApplication rec { + pname = "pyditz"; + version = "0.10.3"; + + src = pythonPackages.fetchPypi { + inherit pname version; + sha256 = "0hxxz7kxv9gsrr86ccsc31g7bc2agw1ihbxhd659c2m6nrqq5qaf"; + }; + nativeBuildInputs = [ pythonPackages.setuptools_scm ]; + propagatedBuildInputs = with pythonPackages; [ pyyaml six jinja2 cerberus11 ]; + + checkPhase = '' + ${pythonPackages.python.interpreter} -m unittest discover + ''; + + meta = with stdenv.lib; { + homepage = https://pythonhosted.org/pyditz/; + description = "Drop-in replacement for the Ditz distributed issue tracker"; + maintainers = [ maintainers.ilikeavocadoes ]; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/development/python-modules/cerberus11/default.nix b/pkgs/development/python-modules/cerberus11/default.nix new file mode 100644 index 00000000000..614e3ca8135 --- /dev/null +++ b/pkgs/development/python-modules/cerberus11/default.nix @@ -0,0 +1,19 @@ +{ stdenv, buildPythonPackage, fetchPypi, pytestrunner, pytest }: + +buildPythonPackage rec { + pname = "Cerberus"; + version = "1.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "1pxzr8sfm2hc5s96m9k044i44nwkva70n0ypr6a35v73zn891cx5"; + }; + + checkInputs = [ pytestrunner pytest ]; + + meta = with stdenv.lib; { + homepage = http://python-cerberus.org/; + description = "Lightweight, extensible schema and data validation tool for Python dictionaries"; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5841061c840..16206bf53be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5491,6 +5491,10 @@ in pythonSexy = pythonPackages.libsexy; + pyditz = callPackage ../applications/misc/pyditz { + pythonPackages = python27Packages; + }; + pytrainer = callPackage ../applications/misc/pytrainer { }; pywal = with python3Packages; toPythonApplication pywal; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8ce7056feb5..2cc3e62d2da 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1673,6 +1673,8 @@ in { cerberus = callPackage ../development/python-modules/cerberus { }; + cerberus11 = callPackage ../development/python-modules/cerberus11 { }; + certifi = callPackage ../development/python-modules/certifi { }; characteristic = callPackage ../development/python-modules/characteristic { }; From de927db59d4e2802a1e490798abe9feee7a4bc2a Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 14:08:27 +0200 Subject: [PATCH 0763/1611] keepassxc: partial revert of #54525 Similar to pkgs.bitcoin, QT_PLUGIN_PATH is required in checkPhase to run the "testcli" test (ironically). --- pkgs/applications/misc/keepassx/community.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/keepassx/community.nix b/pkgs/applications/misc/keepassx/community.nix index 3a734253848..85dfda405b0 100644 --- a/pkgs/applications/misc/keepassx/community.nix +++ b/pkgs/applications/misc/keepassx/community.nix @@ -75,6 +75,7 @@ stdenv.mkDerivation rec { checkPhase = '' export LC_ALL="en_US.UTF-8" export QT_QPA_PLATFORM=offscreen + export QT_PLUGIN_PATH="${qtbase.bin}/${qtbase.qtPluginPrefix}" make test ARGS+="-E testgui --output-on-failure" ''; From 265d3bc1d686eff6e874104f1d55248e4fde10bb Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Tue, 18 Jun 2019 23:11:07 +0000 Subject: [PATCH 0764/1611] CODEOWNERS: add myself for lib/licenses.nix There have been a couple of instances where I have by chance noticed PRs which add non-free licenses without them being appropriately marked. I'd like to be notified of proposed changes to licenses to make it less likely that this sort of thing slips by. --- .github/CODEOWNERS | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 1027ccc9cba..51cca15632d 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -107,8 +107,8 @@ # Eclipse /pkgs/applications/editors/eclipse @rycee -# https://github.com/NixOS/nixpkgs/issues/31401 -/lib/licenses.nix @ghost +# Licenses +/lib/licenses.nix @alyssais # Qt / KDE /pkgs/applications/kde @ttuegel From 3b614e0ee6c675c4fd010b085fa287ebf64abaca Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 05:11:19 -0700 Subject: [PATCH 0765/1611] python37Packages.python-periphery: 1.1.1 -> 1.1.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-python-periphery/versions --- pkgs/development/python-modules/python-periphery/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/python-periphery/default.nix b/pkgs/development/python-modules/python-periphery/default.nix index b2b103858cc..38642f066d7 100644 --- a/pkgs/development/python-modules/python-periphery/default.nix +++ b/pkgs/development/python-modules/python-periphery/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "python-periphery"; - version = "1.1.1"; + version = "1.1.2"; src = fetchPypi { inherit pname version; - sha256 = "fe8f351934edce72cd919b4eb070878ebff551db5e21aea61e0f446101f0a79f"; + sha256 = "1bhzkzjvz6zb6rc5zmvgqfszrcyh64v1hay7m1m5dn083gaznyk9"; }; # Some tests require physical probing and additional physical setup From cf3948fbe079f6c3c096053caf49c4b5b8436e94 Mon Sep 17 00:00:00 2001 From: midchildan Date: Thu, 20 Jun 2019 00:19:50 +0900 Subject: [PATCH 0766/1611] sourcetrail: 2019.1.11 -> 2019.2.39 --- .../development/tools/sourcetrail/default.nix | 44 ++++++++++--------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/pkgs/development/tools/sourcetrail/default.nix b/pkgs/development/tools/sourcetrail/default.nix index 4c5b1843229..f2f50c18e0b 100644 --- a/pkgs/development/tools/sourcetrail/default.nix +++ b/pkgs/development/tools/sourcetrail/default.nix @@ -1,18 +1,18 @@ { stdenv, fetchurl, autoPatchelfHook -, zlib, expat, dbus, openssl}: +, zlib, expat, dbus, openssl, python3 }: stdenv.mkDerivation rec { name = "sourcetrail-${version}"; - version = "2019.1.11"; + version = "2019.2.39"; src = fetchurl { name = "sourtrail.tar.gz"; url = "https://www.sourcetrail.com/downloads/${version}/linux/64bit"; - sha256 = "09f3qdgdqg6dlai43050qh4iv1d4j43isk81q68swalpnvjn72w0"; + sha256 = "13kzfnsb5lf9v6bqw41qljp5bgz2rd3w163r6xg59hzd3dv8f90q"; }; nativeBuildInputs = [ autoPatchelfHook ]; - buildInputs = [ zlib expat dbus stdenv.cc.cc openssl ]; + buildInputs = [ zlib expat dbus stdenv.cc.cc openssl python3 ]; installPhase = '' runHook preInstall @@ -38,28 +38,30 @@ stdenv.mkDerivation rec { --replace /usr/bin/ $out/bin/ cat < $out/bin/sourcetrail - #! ${stdenv.shell} -e + #! ${stdenv.shell} -e - # XXX: Sourcetrail somehow copies the initial config files into the home - # directory without write permissions. We currently just copy them - # ourselves to work around this problem. - setup_config() { - local src dst + # XXX: Sourcetrail somehow copies the initial config files into the home + # directory without write permissions. We currently just copy them + # ourselves to work around this problem. + setup_config() { + local src dst - [ ! -d ~/.config/sourcetrail ] && mkdir -p ~/.config/sourcetrail - for src in $out/opt/data/fallback/*; do - dst=~/.config/sourcetrail/"\$(basename "\$src")" - if [ ! -e "\$dst" ]; then - cp -r "\$src" "\$dst" - fi - done + [ ! -d ~/.config/sourcetrail ] && mkdir -p ~/.config/sourcetrail + for src in $out/opt/data/fallback/*; do + dst=~/.config/sourcetrail/"\$(basename "\$src")" + if [ ! -e "\$dst" ]; then + cp -r "\$src" "\$dst" + fi + done - chmod -R u+w ~/.config/sourcetrail - } + chmod -R u+w ~/.config/sourcetrail + } - [ -d "\$HOME" ] && setup_config - exec "$out/opt/Sourcetrail.sh" "\$@" + [ -d "\$HOME" ] && setup_config + export PATH="\$PATH:${python3}/bin" + exec "$out/opt/Sourcetrail.sh" "\$@" EOF + chmod +x $out/bin/sourcetrail runHook postInstall From 2b974b576c6ed8b32316f803e82635203b2177ba Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 18 Jun 2019 09:32:21 -0700 Subject: [PATCH 0767/1611] vim: 8.1.1432 -> 8.1.1547 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/vim/versions --- pkgs/applications/editors/vim/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/vim/common.nix b/pkgs/applications/editors/vim/common.nix index 2e4d494a0db..63d8add3a01 100644 --- a/pkgs/applications/editors/vim/common.nix +++ b/pkgs/applications/editors/vim/common.nix @@ -1,12 +1,12 @@ { lib, fetchFromGitHub }: rec { - version = "8.1.1432"; + version = "8.1.1547"; src = fetchFromGitHub { owner = "vim"; repo = "vim"; rev = "v${version}"; - sha256 = "0f8isi84dcmsfvvjzayys57zf4j56wngnpn9hfj0jn1z7x3vdbww"; + sha256 = "01v35wq8wjrbzmdf5r02gp0sfa9yyfswsi3fqzn94cd68qhskkpr"; }; enableParallelBuilding = true; From a91c1dc167b77f2b6a2641d70de9f04cfa27bf6a Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Tue, 18 Jun 2019 21:36:02 +0800 Subject: [PATCH 0768/1611] wp-cli: 2.0.1 -> 2.2.0 --- pkgs/development/tools/wp-cli/default.nix | 50 +++++++++++------------ 1 file changed, 23 insertions(+), 27 deletions(-) diff --git a/pkgs/development/tools/wp-cli/default.nix b/pkgs/development/tools/wp-cli/default.nix index c6c001143a9..14e55f99e0b 100644 --- a/pkgs/development/tools/wp-cli/default.nix +++ b/pkgs/development/tools/wp-cli/default.nix @@ -1,53 +1,49 @@ -{ stdenv, lib, fetchurl, php, runtimeShell }: +{ stdenv, lib, fetchurl, writeText, php, makeWrapper }: let - version = "2.0.1"; + version = "2.2.0"; completion = fetchurl { url = "https://raw.githubusercontent.com/wp-cli/wp-cli/v${version}/utils/wp-completion.bash"; sha256 = "15d330x6d3fizrm6ckzmdknqg6wjlx5fr87bmkbd5s6a1ihs0g24"; }; + ini = writeText "php.ini" '' + [PHP] + memory_limit = -1 ; no limit as composer uses a lot of memory + + [Phar] + phar.readonly = Off + ''; + in stdenv.mkDerivation rec { - name = "wp-cli-${version}"; + pname = "wp-cli"; inherit version; src = fetchurl { - url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${name}.phar"; - sha256 = "05lbay4c0477465vv4h8d2j94pk3haz1a7f0ncb127fvxz3a2pcg"; + url = "https://github.com/wp-cli/wp-cli/releases/download/v${version}/${pname}-${version}.phar"; + sha256 = "0s03jbsjwvkcbyss6rvpgw867hiwvk5p4n1qznkghyzi94j8mvki"; }; + nativeBuildInputs = [ makeWrapper ]; + buildCommand = '' dir=$out/share/wp-cli mkdir -p $out/bin $dir - cat <<_EOF > $out/bin/wp -#!${runtimeShell} + install -Dm444 ${src} $dir/wp-cli + install -Dm444 ${ini} $dir/php.ini + install -Dm444 ${completion} $out/share/bash-completion/completions/wp -set -euo pipefail - -exec ${lib.getBin php}/bin/php \\ - -c $dir/php.ini \\ - -f $dir/wp-cli -- "\$@" -_EOF - chmod 0755 $out/bin/wp - - cat <<_EOF > $dir/php.ini -[PHP] -memory_limit = -1 ; no limit as composer uses a lot of memory - -[Phar] -phar.readonly = Off -_EOF - - install -Dm644 ${src} $dir/wp-cli - install -Dm644 ${completion} $out/share/bash-completion/completions/wp + makeWrapper ${lib.getBin php}/bin/php $out/bin/wp \ + --add-flags "-c $dir/php.ini" \ + --add-flags "-f $dir/wp-cli" # this is a very basic run test - $out/bin/wp --info + $out/bin/wp --info >/dev/null ''; - meta = with stdenv.lib; { + meta = with lib; { description = "A command line interface for WordPress"; homepage = https://wp-cli.org; license = licenses.mit; From f8274c8b1838da59765488d4a43a2d04cd1d65e0 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 17 Jun 2019 11:47:50 -0700 Subject: [PATCH 0769/1611] python37Packages.ijson: 2.3 -> 2.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-ijson/versions --- pkgs/development/python-modules/ijson/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ijson/default.nix b/pkgs/development/python-modules/ijson/default.nix index 149b07d63e3..eb10edeaca9 100644 --- a/pkgs/development/python-modules/ijson/default.nix +++ b/pkgs/development/python-modules/ijson/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "ijson"; - version = "2.3"; + version = "2.4"; src = fetchPypi { inherit pname version; - sha256 = "0x7l9k2dvxzd5mjgiq15nl9b0sxcqy1cqaz744bjwkz4z5mrypzg"; + sha256 = "135rwh7izzmj4lwkrfb9xw4ik0gcwjz34ygnmx3vyvki2xbbp2xp"; }; doCheck = false; # something about yajl From 11ed86d873c9b4819867f885cd0470b6faf625b5 Mon Sep 17 00:00:00 2001 From: Justin Bedo Date: Mon, 17 Jun 2019 12:02:18 +1000 Subject: [PATCH 0770/1611] bedtools: 2.27.1 -> 2.28.0 --- pkgs/applications/science/biology/bedtools/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/science/biology/bedtools/default.nix b/pkgs/applications/science/biology/bedtools/default.nix index 406f42e9ad7..2cdd7fda38e 100644 --- a/pkgs/applications/science/biology/bedtools/default.nix +++ b/pkgs/applications/science/biology/bedtools/default.nix @@ -1,17 +1,17 @@ -{stdenv, fetchFromGitHub, zlib, python}: +{stdenv, fetchFromGitHub, zlib, python, bzip2, lzma}: stdenv.mkDerivation rec { name = "bedtools-${version}"; - version = "2.27.1"; + version = "2.28.0"; src = fetchFromGitHub { owner = "arq5x"; repo = "bedtools2"; rev = "v${version}"; - sha256 = "1pk68y052rm2m24yfmy82ms8p6kd6xcqxxgi7n0a1sbh89wllm6s"; + sha256 = "1266bcn5hgbvysfi6nr4cqxlbxcx7vn7ng8kb0v3gz37qh2zxxw9"; }; - buildInputs = [ zlib python ]; + buildInputs = [ zlib python bzip2 lzma ]; cc = if stdenv.cc.isClang then "clang++" else "g++"; buildPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} -j $NIX_BUILD_CORES"; installPhase = "make prefix=$out SHELL=${stdenv.shell} CXX=${cc} install"; From 863f821bdf1a7c86e575855f603c41f41b7873ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Tue, 13 Nov 2018 03:33:23 +0100 Subject: [PATCH 0771/1611] pyopenssl: Disable flaky test_wantWriteError test. See added comment for details. --- pkgs/development/python-modules/pyopenssl/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/pyopenssl/default.nix b/pkgs/development/python-modules/pyopenssl/default.nix index 713861deae3..ec17b77ba20 100644 --- a/pkgs/development/python-modules/pyopenssl/default.nix +++ b/pkgs/development/python-modules/pyopenssl/default.nix @@ -46,6 +46,8 @@ let # These tests, we disable always. "test_set_default_verify_paths" "test_fallback_default_verify_paths" + # https://github.com/pyca/pyopenssl/issues/768 + "test_wantWriteError" ] ++ ( optionals (hasPrefix "libressl" openssl.meta.name) failingLibresslTests ) ++ ( From 38c4e13ef54d3a75b4280d6851daf80351bc253c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Xaver=20H=C3=B6rl?= Date: Sun, 16 Jun 2019 11:25:47 +0200 Subject: [PATCH 0772/1611] dbus-broker: 17 -> 21 --- pkgs/os-specific/linux/dbus-broker/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/dbus-broker/default.nix b/pkgs/os-specific/linux/dbus-broker/default.nix index 880b620d87c..82b0bb2f356 100644 --- a/pkgs/os-specific/linux/dbus-broker/default.nix +++ b/pkgs/os-specific/linux/dbus-broker/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "dbus-broker-${version}"; - version = "17"; + version = "21"; src = fetchFromGitHub { owner = "bus1"; repo = "dbus-broker"; rev = "v${version}"; - sha256 = "19q5f1c658jdxvr2k2rb2xsnspybqjii4rifnlkzi1qzh0r152md"; + sha256 = "14lgjv0gxvfa1h5hsarh9nwpxns6jb2861nd7mcanpkm2jlxh5vm"; fetchSubmodules = true; }; @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { PKG_CONFIG_SYSTEMD_SYSTEMDSYSTEMUNITDIR = "${placeholder "out"}/lib/systemd/system"; PKG_CONFIG_SYSTEMD_SYSTEMDUSERUNITDIR = "${placeholder "out"}/lib/systemd/user"; + PKG_CONFIG_SYSTEMD_CATALOGDIR = "${placeholder "out"}/lib/systemd/catalog"; postInstall = '' install -Dm644 $src/README.md $out/share/doc/dbus-broker/README From a149c7543abeb72b857375ffc16512e89e8aa5ef Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 2 Jun 2019 19:39:23 -0700 Subject: [PATCH 0773/1611] rrdtool: 1.7.1 -> 1.7.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/rrdtool/versions --- pkgs/tools/misc/rrdtool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/rrdtool/default.nix b/pkgs/tools/misc/rrdtool/default.nix index 2ea93319935..8365a47830a 100644 --- a/pkgs/tools/misc/rrdtool/default.nix +++ b/pkgs/tools/misc/rrdtool/default.nix @@ -2,11 +2,11 @@ , tcl-8_5, darwin }: stdenv.mkDerivation rec { - name = "rrdtool-1.7.1"; + name = "rrdtool-1.7.2"; src = fetchurl { url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz"; - sha256 = "1bhsg119j94xwykp2sbp01hhxcg78gzblfn7j98slrv9va77g6wq"; + sha256 = "1nsqra0g2nja19akmf9x5y9hhgc35ml3w9dcdz2ayz7zgvmzm6d1"; }; nativeBuildInputs = [ pkgconfig ]; From a9c1718300e99e8651d473fe4728f621081edc26 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 06:03:25 -0700 Subject: [PATCH 0774/1611] python37Packages.twilio: 6.29.0 -> 6.29.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-twilio/versions --- pkgs/development/python-modules/twilio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/twilio/default.nix b/pkgs/development/python-modules/twilio/default.nix index f7772492dfd..b2bb8a740a8 100644 --- a/pkgs/development/python-modules/twilio/default.nix +++ b/pkgs/development/python-modules/twilio/default.nix @@ -3,13 +3,13 @@ buildPythonPackage rec { pname = "twilio"; - version = "6.29.0"; + version = "6.29.1"; # tests not included in PyPi, so fetch from github instead src = fetchFromGitHub { owner = "twilio"; repo = "twilio-python"; rev = version; - sha256 = "1xsg862d68rdrl6m3v9zcq20h42jn6x9cv1bk2ydiizyn6ngqz8w"; + sha256 = "1g2wdy62w25sjibggr25b3833x0fhc7w6ypy8g1fgix217rja7pz"; }; buildInputs = [ nose mock ]; From 8a2c18299cec7372081ae5758aefb5dcffcc4b73 Mon Sep 17 00:00:00 2001 From: Max Gonzih Date: Sat, 20 Jul 2019 08:05:04 -0400 Subject: [PATCH 0775/1611] slack: Fix dark theme Caused by #61328 --- .../networking/instant-messengers/slack/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 6ce33d4f047..309b09f10c4 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -94,16 +94,14 @@ in stdenv.mkDerivation { --replace /usr/share/ $out/share/ '' + stdenv.lib.optionalString (theme != null) '' cat <> $out/lib/slack/resources/app.asar.unpacked/src/static/ssb-interop.js + var fs = require('fs'); document.addEventListener('DOMContentLoaded', function() { let tt__customCss = ".menu ul li a:not(.inline_menu_link) {color: #fff !important;}" - $.ajax({ - url: '${theme}/theme.css', - success: function(css) { + fs.readFile('${theme}/theme.css', 'utf8', function(err, css) { \$("").appendTo('head').html(css + tt__customCss); \$("").appendTo('head').html('#reply_container.upload_in_threads .inline_message_input_container {background: padding-box #545454}'); \$("").appendTo('head').html('.p-channel_sidebar {background: #363636 !important}'); \$("").appendTo('head').html('#client_body:not(.onboarding):not(.feature_global_nav_layout):before {background: inherit;}'); - } }); }); EOF From 4c8de690c5b83b2547293a081906577f9ce0307c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 06:43:06 -0700 Subject: [PATCH 0776/1611] python37Packages.tweepy: 3.7.0 -> 3.8.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-tweepy/versions --- pkgs/development/python-modules/tweepy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tweepy/default.nix b/pkgs/development/python-modules/tweepy/default.nix index ed50c28f4c3..88174a94ef4 100644 --- a/pkgs/development/python-modules/tweepy/default.nix +++ b/pkgs/development/python-modules/tweepy/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "tweepy"; - version = "3.7.0"; + version = "3.8.0"; src = fetchPypi { inherit pname version; - sha256 = "fe85a79f58a01dd335968523b91c5fce760e7fe78bf25a6e71c72204fe499d0b"; + sha256 = "0sri92mzhkifn16klkk2mhc2vcrvdmfp2wvkpfss518sln5q5gca"; }; doCheck = false; From 29d44d51288abb95f917e8a67006cf03a178457c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 06:45:54 -0700 Subject: [PATCH 0777/1611] pyznap: 1.1.2 -> 1.2.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pyznap/versions --- pkgs/tools/backup/pyznap/default.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/backup/pyznap/default.nix b/pkgs/tools/backup/pyznap/default.nix index e37327c429d..eb714b64a97 100644 --- a/pkgs/tools/backup/pyznap/default.nix +++ b/pkgs/tools/backup/pyznap/default.nix @@ -1,21 +1,17 @@ { lib , buildPythonApplication , fetchPypi -, paramiko -, configparser }: buildPythonApplication rec { pname = "pyznap"; - version = "1.1.2"; + version = "1.2.1"; src = fetchPypi { inherit pname version; - sha256 = "9ac0da5d7f6461d1d6f128362786e297144b415f9e3a2f1835642ab3dda82d55"; + sha256 = "0pnngr4zdxkf6b570ikzvkrm3a8fr47w6crjaw7ln094qkniywvj"; }; - propagatedBuildInputs = [ configparser paramiko ]; - # tests aren't included in the PyPI packages doCheck = false; From 095e9c0f9bf8fd7a21f5a387485c988bed01281b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 20 Jul 2019 09:57:49 -0400 Subject: [PATCH 0778/1611] vivaldi: Fix usage of xdg-open --- pkgs/applications/networking/browsers/vivaldi/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index ee477af8d49..ff83452d45f 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -69,6 +69,8 @@ in stdenv.mkDerivation rec { cp -r usr/share/{applications,xfce4} "$out"/share substituteInPlace "$out"/share/applications/*.desktop \ --replace /usr/bin/${vivaldiName} "$out"/bin/vivaldi + substituteInPlace "$out"/share/applications/*.desktop \ + --replace vivaldi-stable vivaldi local d for d in 16 22 24 32 48 64 128 256; do mkdir -p "$out"/share/icons/hicolor/''${d}x''${d}/apps From bd161bbef4c72c50da8824054b2b232b28ed826f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 07:29:45 -0700 Subject: [PATCH 0779/1611] qownnotes: 19.6.1 -> 19.7.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/qownnotes/versions --- pkgs/applications/office/qownnotes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/qownnotes/default.nix b/pkgs/applications/office/qownnotes/default.nix index 69fb5462ded..02fbf92acbb 100644 --- a/pkgs/applications/office/qownnotes/default.nix +++ b/pkgs/applications/office/qownnotes/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "qownnotes"; - version = "19.6.1"; + version = "19.7.3"; src = fetchurl { url = "https://download.tuxfamily.org/${pname}/src/${pname}-${version}.tar.xz"; # Can grab official version like so: # $ curl https://download.tuxfamily.org/qownnotes/src/qownnotes-19.1.8.tar.xz.sha256 - sha256 = "0m56klcs1bq5xhbn2kmlzv8nalscxw6wimrmqjmharif97cyddc6"; + sha256 = "1d4an3yzr77c6pz5cv1vbsrl2v5r62qdckk3l5y5dcv7jikb1l8l"; }; nativeBuildInputs = [ qmake qttools ]; From e836363d1324da1291d12159fca1c49b7fbcdd7b Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 07:19:27 -0700 Subject: [PATCH 0780/1611] python37Packages.tomlkit: 0.5.4 -> 0.5.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-tomlkit/versions --- pkgs/development/python-modules/tomlkit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tomlkit/default.nix b/pkgs/development/python-modules/tomlkit/default.nix index 1c87a3f1837..d75458acf7c 100644 --- a/pkgs/development/python-modules/tomlkit/default.nix +++ b/pkgs/development/python-modules/tomlkit/default.nix @@ -4,11 +4,11 @@ buildPythonPackage rec { pname = "tomlkit"; - version = "0.5.4"; + version = "0.5.5"; src = fetchPypi { inherit pname version; - sha256 = "1pby2lbzwy2pwdbq8xaqi4560b1ih5m0y141mmbc446j3w168fvv"; + sha256 = "0xlmx280mzd3f63ydqhr76whbr2lhcwihyg9my9d5hjklkrhdn58"; }; propagatedBuildInputs = From a0ed82a887369157ec97d7fdc9a50dc6ac8c02a8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 07:42:16 -0700 Subject: [PATCH 0781/1611] snd: 19.4 -> 19.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/snd/versions --- pkgs/applications/audio/snd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/snd/default.nix b/pkgs/applications/audio/snd/default.nix index 9627e35454e..a8896f3945b 100644 --- a/pkgs/applications/audio/snd/default.nix +++ b/pkgs/applications/audio/snd/default.nix @@ -4,11 +4,11 @@ }: stdenv.mkDerivation rec { - name = "snd-19.4"; + name = "snd-19.5"; src = fetchurl { url = "mirror://sourceforge/snd/${name}.tar.gz"; - sha256 = "1g96r1js9rfxxczpaa1ggrz7i1zsj4px4fyz64kbqawzsn9xapg9"; + sha256 = "0sk6iyykwi2mm3f1g4r0iqbsrwk3zmyagp6jjqkh8njbq42cjr1y"; }; nativeBuildInputs = [ pkgconfig ]; From 044bf77593eebd2384bf323909950f74c24f5012 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 20 Jul 2019 17:03:54 +0200 Subject: [PATCH 0782/1611] vimPlugins: update (#65165) --- pkgs/misc/vim-plugins/generated.nix | 180 ++++++++++++++-------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index fa8fb3a6a9b..e1c7e5de08f 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -171,12 +171,12 @@ let calendar-vim = buildVimPluginFrom2Nix { pname = "calendar-vim"; - version = "2019-01-18"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "itchyny"; repo = "calendar.vim"; - rev = "5954cef560ea19e077b1811a4bcbe831a33e2499"; - sha256 = "0gz55ql0dqmg3cd0y46adkj3s61ar6j1w17n7643y0rd7mndcnqa"; + rev = "cf9ddfe0eb36a4d57a1240735360385e3ed5534c"; + sha256 = "0504wl874fr0lzv48l8khfrx4l59c6bklndvrgmf5xj9ppz72hza"; }; }; @@ -292,12 +292,12 @@ let coc-git = buildVimPluginFrom2Nix { pname = "coc-git"; - version = "2019-07-13"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-git"; - rev = "9cdc2b918bbbcadb580d9635ab6ee1accfc140dc"; - sha256 = "0nqv110n8ybh980yhxfcpzwg5bjzpiw9586bn700pw5xgnb9sf5r"; + rev = "9d61bbb9c5b25a61d57f72f94941cf1c1a531fa6"; + sha256 = "04igxs6g48vhj5rz3vy57amig18xfxdi4s06ap2fimds5d9904s0"; }; }; @@ -347,12 +347,12 @@ let coc-java = buildVimPluginFrom2Nix { pname = "coc-java"; - version = "2019-07-08"; + version = "2019-07-17"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-java"; - rev = "8d1fe4278e4cfada080f023d71b9233dbfdfc41e"; - sha256 = "0h26x35gnrjhd3dqbza98317jjwsc70fv1sd99xhcshxfszal6vd"; + rev = "50343bf5e965e311444aade22599f9d247902852"; + sha256 = "08crsdw2cgn30j6mbkm74zsgi92khb1xdkx53gk1r33qcgbzi47y"; }; }; @@ -380,12 +380,12 @@ let coc-lists = buildVimPluginFrom2Nix { pname = "coc-lists"; - version = "2019-07-14"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-lists"; - rev = "5f8666ce03218f16e92d813767c2c6dd86dae175"; - sha256 = "1azxjdb75han6b3mvaqczzwxhaxr6qax4vy6zw7zqwqcskrakwzq"; + rev = "f7d3c25fbefdf53cd5458904209d066545dbddc0"; + sha256 = "1x3al8km0d61p2k42p5q2xkd1xx80hmhbv8l22wj6knrr9mpjmp2"; }; }; @@ -402,12 +402,12 @@ let coc-pairs = buildVimPluginFrom2Nix { pname = "coc-pairs"; - version = "2019-07-04"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-pairs"; - rev = "79d02d8d3834c2a5fa44dde77b800de0b2d9746e"; - sha256 = "00d97qx4fvnwsh82j33p5jm0lxqadns4104jx9gzha7rmx1z62al"; + rev = "101d61e571389c427bb8f1bc3a81f446144be82f"; + sha256 = "1d7f1p2cy2kf0l2diyzz9z4zblis1iad9nnjy9cpjdcv1qfcvalg"; }; }; @@ -457,23 +457,23 @@ let coc-smartf = buildVimPluginFrom2Nix { pname = "coc-smartf"; - version = "2019-07-14"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-smartf"; - rev = "340fc45a48a70b3f150fb385e9d6d10979132a78"; - sha256 = "1srnicdvm0l50qjx108vw8rkylp9yl29pbz890mfnp9ryz64qk06"; + rev = "12e76fcadda3f0bb16c64b2db2a1f8cd8025c47a"; + sha256 = "0dfr7dcrnf40flcvdydywy5xmpxbrfswcq6vj12kjbwkcxlisj0s"; }; }; coc-snippets = buildVimPluginFrom2Nix { pname = "coc-snippets"; - version = "2019-07-14"; + version = "2019-07-18"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-snippets"; - rev = "d1619fa8c4bb0a1ef3bffadecccb7ec8fd332b90"; - sha256 = "04bfn9aws3kqkvd4q5r963jb1rqxpayf6qxa4yxwsnkcvma2zk7y"; + rev = "6c89beeb6d654a8777385f59cd579ef34e132daf"; + sha256 = "0jr87y66miarkxsmgh16si2nshi2flla96m2w8kjlyb0ksz96kv2"; }; }; @@ -501,12 +501,12 @@ let coc-tabnine = buildVimPluginFrom2Nix { pname = "coc-tabnine"; - version = "2019-07-13"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tabnine"; - rev = "65d8c479cc31fb906c10fa2762f98db8826295e1"; - sha256 = "04a07v9cwbid32zzj4zxq8xmhhxjdbi627mk9dfyj024z0nyw801"; + rev = "0bfb17e090e1dd44ec159c31968e0b5b249430eb"; + sha256 = "1psn13bqj1yxanh45g72npjbv9mzgv2fjnib0fyzvw7460bvqn8r"; }; }; @@ -523,23 +523,23 @@ let coc-tslint-plugin = buildVimPluginFrom2Nix { pname = "coc-tslint-plugin"; - version = "2019-07-11"; + version = "2019-07-18"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tslint-plugin"; - rev = "9076fb5f1bb185110eb79189d17f03e82f2d0f9c"; - sha256 = "1mxnpgvi12dvbhf9l1zwdlbmvqq8j311z4rfcgsi1p9kxm2dv56r"; + rev = "acc1356253a5088f630d9910b5fc13dc5d108bbc"; + sha256 = "1cjgimqgd70x5zhw641z6g4hc54vrkg3r4sscg092gkrdpkq3969"; }; }; coc-tsserver = buildVimPluginFrom2Nix { pname = "coc-tsserver"; - version = "2019-07-09"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tsserver"; - rev = "ee7f86fdf9c21001a1b322f219ec7c150d64d337"; - sha256 = "06yzqd5m3bz8lnqhrxsxmbz9n587vqjafwdfs9jkb3974ry88r5b"; + rev = "ed538dc3b55bb94efe2bc511327d81a90c00e674"; + sha256 = "06anjgidbf04g0wnxkmdzgdszn22afr3sxbsx445cvwinm2q3i87"; }; }; @@ -788,12 +788,12 @@ let deol-nvim = buildVimPluginFrom2Nix { pname = "deol-nvim"; - version = "2019-07-07"; + version = "2019-07-18"; src = fetchFromGitHub { owner = "Shougo"; repo = "deol.nvim"; - rev = "4879e34f353cc8c2ac8cb5c14e3efebc15c05ab0"; - sha256 = "12r2770b78rm9xx0pb4qgfzlyjmhdji4q6iga2pflxik6rk0gw4c"; + rev = "53ff81bd27dc86dafe209687df9ed8f3c205601c"; + sha256 = "1dq3457rd6jda4w4ajlq2gdiaz5nhcnfg4b4v47xzdcd63bcssir"; }; }; @@ -890,12 +890,12 @@ let deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete-nvim"; - version = "2019-07-15"; + version = "2019-07-17"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "7d28b9230e8db9ce9e6be566402a92612e0732e7"; - sha256 = "01krxg7va2x39bqs8mh0c7mdy56nzj84avmj4nn6xf5pz1ycdiv1"; + rev = "6e9f26a0cf5d7d60ddf04ce126e4adebe5a01cf2"; + sha256 = "10r7c2jjy2q3wq30rsv7bml0cxjs19hzrfmba4g407yckync92bi"; }; }; @@ -1212,12 +1212,12 @@ let iceberg-vim = buildVimPluginFrom2Nix { pname = "iceberg-vim"; - version = "2019-06-13"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "cocopon"; repo = "iceberg.vim"; - rev = "e8316001e1130a042f8b4c8f49d78ed87b624f53"; - sha256 = "0p228laa5na7izink982ahksqhzwlxj8knb2wh5440z7chixmycc"; + rev = "c94e82ab8c62c2b6f09c00752199692e4af1c836"; + sha256 = "00vpwcq0ap4ss60v57gbhbdp4vx632qlfxdbc7jh0iawdpm1bdsq"; }; }; @@ -1411,12 +1411,12 @@ let lh-vim-lib = buildVimPluginFrom2Nix { pname = "lh-vim-lib"; - version = "2019-07-12"; + version = "2019-07-16"; src = fetchFromGitHub { owner = "LucHermitte"; repo = "lh-vim-lib"; - rev = "08465b99774fe43d832492d7c354a317fc81f9bf"; - sha256 = "1gi10wnsqk6a58yy27qdn7hsy1gz2qrib5g59h8hchahdkmhgl2d"; + rev = "0add378423b813b15ff281a1b8176e95f444f301"; + sha256 = "1fjlp7h0fd6dbw32m056sy9z7745py9f091jmcspfvqj5mfpkg8f"; }; }; @@ -1433,12 +1433,12 @@ let lightline-vim = buildVimPluginFrom2Nix { pname = "lightline-vim"; - version = "2019-07-15"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "itchyny"; repo = "lightline.vim"; - rev = "284d3ee0dbdfe7b07a6a927a742d203851215ca4"; - sha256 = "05cmwnfky66p0i6jk7rc2qs5l6n0d89is3kwymg9qag2v6k8cz80"; + rev = "bc82a1c7b6d8517d4e9224a254968e0f0b334fdf"; + sha256 = "06irpk314qkpym8v0g3w6jdz9md5jawwck718zmlmh40f9gyjcz3"; }; }; @@ -1653,12 +1653,12 @@ let neomake = buildVimPluginFrom2Nix { pname = "neomake"; - version = "2019-07-09"; + version = "2019-07-16"; src = fetchFromGitHub { owner = "neomake"; repo = "neomake"; - rev = "bc68b453e2e28bcaa5fa1bf841c78a0a4b0cc5ec"; - sha256 = "0y6qjj1czk2wiax60zsnjbixa3lp10y9777ll7r65jdrhjrysd7v"; + rev = "9c0dfbfc90c50ebbfbe53aa5a6094e1b1c806459"; + sha256 = "1rbfhmf1vnvn4p63q3pbdcyqnagb9kvckr0m6dp4hx9pc4d393xd"; }; }; @@ -2236,12 +2236,12 @@ let syntastic = buildVimPluginFrom2Nix { pname = "syntastic"; - version = "2019-05-28"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "scrooloose"; repo = "syntastic"; - rev = "11aa21edef1627139d1cb39f5efd568942985dfc"; - sha256 = "10y0fhpcvb7hhqn5dw1bh8s9y6pmcgqn82hh7axkk7hydr715yfa"; + rev = "0336c35c0b10b46d85cdd9c3df721f978429e82c"; + sha256 = "1ylg8qlndz9981k48alhfh0m2cl8wxwmgfv0pqkvhpyqypd5rk2c"; }; }; @@ -2401,12 +2401,12 @@ let tsuquyomi = buildVimPluginFrom2Nix { pname = "tsuquyomi"; - version = "2019-03-03"; + version = "2019-07-17"; src = fetchFromGitHub { owner = "Quramy"; repo = "tsuquyomi"; - rev = "2a3dcbc9085975c3b1c49c382f6c87c69d199a44"; - sha256 = "0w1x8gmssk28q730ij439qci0xwp4msdxwi6cdq3rndw14gabkgi"; + rev = "61e16ab1d1cb621385bc9c6a0c5e7744494ec9f5"; + sha256 = "1w6m69695f4gx7d5fg3bnabhjx1680fvrz44f65jhdh2y2njm68h"; }; }; @@ -2566,12 +2566,12 @@ let vim-addon-errorformats = buildVimPluginFrom2Nix { pname = "vim-addon-errorformats"; - version = "2019-02-09"; + version = "2019-07-16"; src = fetchFromGitHub { owner = "MarcWeber"; repo = "vim-addon-errorformats"; - rev = "a95199208700cb8e274c03c711e35411d6ecbe60"; - sha256 = "1676s0m2xg3i8hmxi353iw39v3fh0gf787z09vi17nsqf8i6fdi8"; + rev = "bb83675cb0b8cc377fb0a79ba492ba2445674ba6"; + sha256 = "09cds33lb5gm69wv5plgidprm8nf52vvg9qdzpq9mihvinvj5qv7"; }; }; @@ -2852,12 +2852,12 @@ let vim-choosewin = buildVimPluginFrom2Nix { pname = "vim-choosewin"; - version = "2018-06-11"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "t9md"; repo = "vim-choosewin"; - rev = "4ac141a9bb7188ebbbff90bb0a0bccd52eaa83f8"; - sha256 = "08glj4fk4jlcdqbyd77dwy3rbn3vc0fqz077fwvkxym47hfg9rqk"; + rev = "ee5690220fa712a448577522b9508e79a07830c6"; + sha256 = "1w42lm1rg6002030rigs5pvqf98wdpljm1pyzzikl6hgarv3c8q1"; }; }; @@ -3028,12 +3028,12 @@ let vim-dispatch = buildVimPluginFrom2Nix { pname = "vim-dispatch"; - version = "2019-07-01"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-dispatch"; - rev = "5b58b6dc290ece1c37e806e46ee117f5722a535a"; - sha256 = "17lzf60lm7z4r5cmfdb5di1c1rabczsjq5i0qck4l6j3xlv449xj"; + rev = "0722f74ec551b0526c9f136f3aeae8db9726db6a"; + sha256 = "0b699g537v2sja6qj12sndhas5fxiwhyn443w9ylrfn0b8vs9a93"; }; }; @@ -3149,12 +3149,12 @@ let vim-fireplace = buildVimPluginFrom2Nix { pname = "vim-fireplace"; - version = "2019-07-12"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fireplace"; - rev = "e289d119906796550beedc133419109820b05bda"; - sha256 = "18963xg6cv3wkrx044lxsvwdc08sw3jg2r0ns5si61hh35rq065j"; + rev = "5aed1bc834456a5517221ba82f57d2577e8c932c"; + sha256 = "0gdghfpxkxx4hfsr5liqjqb8sg1qjhaadb9vqh30rhl08q47zdlk"; }; }; @@ -3215,12 +3215,12 @@ let vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2019-07-13"; + version = "2019-07-18"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "4da9fb8f43869125f6e1bb1ff8dd27f315623835"; - sha256 = "001jl2cvdwszhhjfjmb4mkvffkq28mqc72bgy12119zprc8z3kaa"; + rev = "adba9c6345af58b31bcba8599b5bb162575d5755"; + sha256 = "1x7rjh45npsvylcbhfyxcxpa8lhb5l8jal6x6cx4rbc6csw65nb2"; }; }; @@ -3292,12 +3292,12 @@ let vim-go = buildVimPluginFrom2Nix { pname = "vim-go"; - version = "2019-07-15"; + version = "2019-07-17"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "d42c9586ce9fe170baa62fe22ea3ecf66417f908"; - sha256 = "15x6wh8yvysrryj18dpzr6l0x06jnc6llh0shg3mcgb1vlfwl8v2"; + rev = "043984a5117262c74f8b9c85f1e15dc1a7e51872"; + sha256 = "18clcqa0dz49kkp678k0x5sx7w8salk7j25gmcws66alr2lrb4fs"; }; }; @@ -3942,12 +3942,12 @@ let vim-plug = buildVimPluginFrom2Nix { pname = "vim-plug"; - version = "2019-07-09"; + version = "2019-07-16"; src = fetchFromGitHub { owner = "junegunn"; repo = "vim-plug"; - rev = "fddbcb8f1a37e216504b3d14859a0a992a81cd5d"; - sha256 = "1ijdmp081r9dpn4ryr6j36s56ahz3lnn9g72akby4hj6da1bj4mb"; + rev = "226d6abeb2f02bcd8f5b11288543259fa2e02962"; + sha256 = "1iy0qj7wjbhp7byann4qyww5cyqrb9hsb1wm1j4ihzgrv1yw1qx3"; }; }; @@ -3986,12 +3986,12 @@ let vim-projectionist = buildVimPluginFrom2Nix { pname = "vim-projectionist"; - version = "2019-06-19"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-projectionist"; - rev = "92ff29c0c0085ac922cad1a24cf0b0bf69751b4d"; - sha256 = "0dj8806k7dnm0y22a6c3mdv61sa4rz8vi1y6sfawa7y58nh50az4"; + rev = "e07013ac9ed5ff998c62f5fe12800eb31b083f12"; + sha256 = "1bmcw4pawniwn01gvcxd98wp7pksd9ncqmiajvxb2pgnanpl5dk8"; }; }; @@ -4129,12 +4129,12 @@ let vim-scriptease = buildVimPluginFrom2Nix { pname = "vim-scriptease"; - version = "2018-12-19"; + version = "2019-07-07"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-scriptease"; - rev = "386f19cd92f7b30cd830784ae22ebbe7033564aa"; - sha256 = "122bnx9j1pdgpkfph48l4zngak1hjlijbksim05iypi7sd0bvix9"; + rev = "71195d60792fbfcd30edb25fdfc89eadf3e400a5"; + sha256 = "084vz719af6vhlrgzv0bvl9qg53p1mz1942lqj1pfc3p99w22v47"; }; }; @@ -4228,12 +4228,12 @@ let vim-snippets = buildVimPluginFrom2Nix { pname = "vim-snippets"; - version = "2019-07-13"; + version = "2019-07-19"; src = fetchFromGitHub { owner = "honza"; repo = "vim-snippets"; - rev = "d693695ae9375794a3a0b572fd65e86bfb56ed61"; - sha256 = "0xlhkmaxssifqjq6cgi35iwrckasqszpn54ji8rjmhi9wm9w4p57"; + rev = "84ab7e118ca5fee5a67ce4c884c0c1d5c9308e21"; + sha256 = "1ya7y9alzqqy8cpz1sljaqmh8f8pnd5pap9fmg99awr7bpn431rc"; }; }; @@ -4657,12 +4657,12 @@ let vimshell-vim = buildVimPluginFrom2Nix { pname = "vimshell-vim"; - version = "2019-07-07"; + version = "2019-07-16"; src = fetchFromGitHub { owner = "Shougo"; repo = "vimshell.vim"; - rev = "8aa928d4652286ad3106f6ef2cbbbf7eadec5a52"; - sha256 = "1qwccpsfjsap8lggq8k9cmvdzq1mgn1ss4bsdplk1pj7prlj9pxb"; + rev = "ee683538f57aaf5094db9860f67f4957a763ffb4"; + sha256 = "0inf9xx6ni1scxkn0b78qq0234r0ybrwpphyzcafw7i8kzisbn26"; }; }; @@ -4823,12 +4823,12 @@ let youcompleteme = buildVimPluginFrom2Nix { pname = "youcompleteme"; - version = "2019-07-05"; + version = "2019-07-15"; src = fetchFromGitHub { owner = "valloric"; repo = "youcompleteme"; - rev = "04c3505129cd80b92f1b6177dca8aecc55cb0760"; - sha256 = "09ws8m6s7lzs2174xanrcz8jd6sfczisv3zb5czskizkgph6vkkj"; + rev = "fa92f40d0209469a037196fdc3d949ae29d0c30a"; + sha256 = "01zmslcd0mmws0s67555i3xay4xyv0km7lfwlydi3zmalvjfn8dd"; fetchSubmodules = true; }; }; From 2698c3d9bb705bff5fb5d2e4313228cf93d37c85 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 08:16:09 -0700 Subject: [PATCH 0783/1611] renpy: 7.3.0 -> 7.3.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/renpy/versions --- pkgs/development/interpreters/renpy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/renpy/default.nix b/pkgs/development/interpreters/renpy/default.nix index d97d2295341..f438e9fb13c 100644 --- a/pkgs/development/interpreters/renpy/default.nix +++ b/pkgs/development/interpreters/renpy/default.nix @@ -7,7 +7,7 @@ with pythonPackages; stdenv.mkDerivation rec { name = "renpy-${version}"; - version = "7.3.0"; + version = "7.3.2"; meta = with stdenv.lib; { description = "Ren'Py Visual Novel Engine"; @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://www.renpy.org/dl/${version}/renpy-${version}-source.tar.bz2"; - sha256 = "18617fgnwnm6kh191h7sqm7nfvrck20llqv2a0dw9am5f08wfvbq"; + sha256 = "1i7s9s8invsm5bavw2jlk965pb5h5vgwyk1nhw0z1d22spmj4a4m"; }; patches = [ From 11e147d3d1994b8ea037e3adf1c14066fb12a049 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 08:42:38 -0700 Subject: [PATCH 0784/1611] remarshal: 0.9.1 -> 0.10.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/remarshal/versions --- pkgs/development/tools/remarshal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/remarshal/default.nix b/pkgs/development/tools/remarshal/default.nix index 460fb46671f..eb70a7b326d 100644 --- a/pkgs/development/tools/remarshal/default.nix +++ b/pkgs/development/tools/remarshal/default.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { pname = "remarshal"; - version = "0.9.1"; + version = "0.10.0"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "564ffe9cbde85bd28a9c184b90c764abd2003abd6101a30802262198b5c7fc40"; + sha256 = "1prpczb8q996i5sf27vfmp0nv85zwsiajnf9jbjkhm0k21wfvmdd"; }; propagatedBuildInputs = with python3Packages; [ From 6332bc25cde78d79d70041952f787f31bc12ae00 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 17:36:05 +0200 Subject: [PATCH 0785/1611] nixos/bind: allow manual additions to zone config fragments --- nixos/modules/services/networking/bind.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix index 2097b9a3163..06af4dbcca4 100644 --- a/nixos/modules/services/networking/bind.nix +++ b/nixos/modules/services/networking/bind.nix @@ -33,7 +33,7 @@ let ${cfg.extraConfig} ${ concatMapStrings - ({ name, file, master ? true, slaves ? [], masters ? [] }: + ({ name, file, master ? true, slaves ? [], masters ? [], extraConfig ? "" }: '' zone "${name}" { type ${if master then "master" else "slave"}; @@ -52,6 +52,7 @@ let '' } allow-query { any; }; + ${extraConfig} }; '') cfg.zones } @@ -131,6 +132,7 @@ in file = "/var/dns/example.com"; masters = ["192.168.0.1"]; slaves = []; + extraConfig = ""; }]; }; From 72039f1f383d6d34a7e773710ff87ab2d73ae722 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 08:55:38 -0700 Subject: [PATCH 0786/1611] s3backer: 1.5.1 -> 1.5.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/s3backer/versions --- pkgs/tools/filesystems/s3backer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/s3backer/default.nix b/pkgs/tools/filesystems/s3backer/default.nix index 033db7c18c2..8fb002b2d7f 100644 --- a/pkgs/tools/filesystems/s3backer/default.nix +++ b/pkgs/tools/filesystems/s3backer/default.nix @@ -4,10 +4,10 @@ stdenv.mkDerivation rec { name = "s3backer-${version}"; - version = "1.5.1"; + version = "1.5.2"; src = fetchFromGitHub { - sha256 = "0rfbylahnhv8sy9a8zkkfpyavf07dq3sdq060wrxnxbpad6qf91q"; + sha256 = "1axxnhhf335xckwn43csqmvf1454izbk9dglc3r7isrk0lz1ricc"; rev = version; repo = "s3backer"; owner = "archiecobbs"; From 4aa0c20bea4114b6b889388b7478e8561189388a Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 09:07:28 -0700 Subject: [PATCH 0787/1611] samba: 4.10.5 -> 4.10.6 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/samba/versions --- pkgs/servers/samba/4.x.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/samba/4.x.nix b/pkgs/servers/samba/4.x.nix index 4a6ef57bba7..2a4093d412f 100644 --- a/pkgs/servers/samba/4.x.nix +++ b/pkgs/servers/samba/4.x.nix @@ -20,11 +20,11 @@ with lib; stdenv.mkDerivation rec { name = "samba-${version}"; - version = "4.10.5"; + version = "4.10.6"; src = fetchurl { url = "mirror://samba/pub/samba/stable/${name}.tar.gz"; - sha256 = "0xb3mz38hcayqxchk0ws9mxn10vswsn97jbxl4gcwi4cbrnjc43c"; + sha256 = "0hpgdqlyczj98pkh2ldglvvnkrb1q541r3qikdvxq0qjvd9fpywy"; }; outputs = [ "out" "dev" "man" ]; From b6168b05ae2abd8027b06b06ba9698aca5c44298 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 09:23:40 -0700 Subject: [PATCH 0788/1611] reaper: 5.979 -> 5.980 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/reaper/versions --- pkgs/applications/audio/reaper/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index 95a08b59b00..710094b248f 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "reaper-${version}"; - version = "5.979"; + version = "5.980"; src = fetchurl { url = "https://www.reaper.fm/files/${stdenv.lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_x86_64.tar.xz"; - sha256 = "0v9i7wgl68clwlw5k6rwligk3b3bl6c8xxabklglbxnx5i6iw5ia"; + sha256 = "0ij5cx43gf05q0d57p4slsp7wkq2cdb3ymh2n5iqgqjl9rf26h1q"; }; nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; From 7251e3a2af8364d5c78b02b03f22a1fa79887263 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 09:33:18 -0700 Subject: [PATCH 0789/1611] scilab-bin: 6.0.1 -> 6.0.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/scilab-bin/versions --- pkgs/applications/science/math/scilab-bin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/scilab-bin/default.nix b/pkgs/applications/science/math/scilab-bin/default.nix index 262ee7d0d5d..21ce53e70c5 100644 --- a/pkgs/applications/science/math/scilab-bin/default.nix +++ b/pkgs/applications/science/math/scilab-bin/default.nix @@ -3,7 +3,7 @@ let name = "scilab-bin-${ver}"; - ver = "6.0.1"; + ver = "6.0.2"; badArch = throw "${name} requires i686-linux or x86_64-linux"; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { if stdenv.hostPlatform.system == "i686-linux" then "0fgjc2ak3b2qi6yin3fy50qwk2bcj0zbz1h4lyyic9n1n1qcliib" else if stdenv.hostPlatform.system == "x86_64-linux" then - "1scswlznc14vyzg0gqa1q9gcpwx05kz1sbn563463mzkdp7nd35d" + "05clcdgry90drirl3swbxn5q36fmgknnhs6h5pr7mmrzfr6r818w" else badArch; }; From b930e1cf20f5d120822476aaa95d8da67d7ccfee Mon Sep 17 00:00:00 2001 From: Anders Lundstedt Date: Sat, 20 Jul 2019 19:38:08 +0200 Subject: [PATCH 0790/1611] maintainers: add anderslundstedt --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 426113b7918..000376a9a4c 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -333,6 +333,11 @@ github = "andersk"; name = "Anders Kaseorg"; }; + anderslundstedt = { + email = "git@anderslundstedt.se"; + github = "anderslundstedt"; + name = "Anders Lundstedt"; + }; AndersonTorres = { email = "torres.anderson.85@protonmail.com"; github = "AndersonTorres"; From 11534811505f4449925e1fce0da88033dc90fe26 Mon Sep 17 00:00:00 2001 From: Ronald Leppink Date: Sat, 20 Jul 2019 19:46:47 +0200 Subject: [PATCH 0791/1611] minecraft-server: 1.14.3 -> 1.14.4 --- pkgs/games/minecraft-server/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/games/minecraft-server/default.nix b/pkgs/games/minecraft-server/default.nix index 0210fdd055a..4fd44880b82 100644 --- a/pkgs/games/minecraft-server/default.nix +++ b/pkgs/games/minecraft-server/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, jre }: stdenv.mkDerivation rec { name = "minecraft-server-${version}"; - version = "1.14.3"; + version = "1.14.4"; src = fetchurl { - url = "https://launcher.mojang.com/v1/objects/d0d0fe2b1dc6ab4c65554cb734270872b72dadd6/server.jar"; - sha256 = "0f0v0kqz2v5758551yji1vj6xf43lvbma30v3crz4h7cpzq5c8ll"; + url = "https://launcher.mojang.com/v1/objects/3dc3d84a581f14691199cf6831b71ed1296a9fdf/server.jar"; + sha256 = "0aapiwgx9bmnwgmrra9459qfl9bw8q50sja4lhhr64kf7amyvkay"; }; preferLocalBuild = true; From 752874d0daff3db1155dcef4da91eb921c155c9c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 11:53:01 -0700 Subject: [PATCH 0792/1611] sndio: 1.5.0 -> 1.6.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/sndio/versions --- pkgs/misc/sndio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/sndio/default.nix b/pkgs/misc/sndio/default.nix index bd8e9671dda..2556e7d9d83 100644 --- a/pkgs/misc/sndio/default.nix +++ b/pkgs/misc/sndio/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "sndio-${version}"; - version = "1.5.0"; + version = "1.6.0"; enableParallelBuilding = true; buildInputs = [ alsaLib ]; src = fetchurl { url = "http://www.sndio.org/sndio-${version}.tar.gz"; - sha256 = "0lyjb962w9qjkm3yywdywi7k2sxa2rl96v5jmrzcpncsfi201iqj"; + sha256 = "1havdx3q4mipgddmd2bnygr1yh6y64567m1yqwjapkhsq550dq4r"; }; meta = with stdenv.lib; { From ec5a1ffb3763b9a9ec42d011e5af5d7e1c8a7862 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 12:00:07 -0700 Subject: [PATCH 0793/1611] samplv1: 0.9.8 -> 0.9.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/samplv1/versions --- pkgs/applications/audio/samplv1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/samplv1/default.nix b/pkgs/applications/audio/samplv1/default.nix index cf429bf98d4..f9b1fe6afe0 100644 --- a/pkgs/applications/audio/samplv1/default.nix +++ b/pkgs/applications/audio/samplv1/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "samplv1-${version}"; - version = "0.9.8"; + version = "0.9.9"; src = fetchurl { url = "mirror://sourceforge/samplv1/${name}.tar.gz"; - sha256 = "138kd9szgn3b97s7crhsyj8pgwb0bn4l9knd4zliqjgj2f1bs9x0"; + sha256 = "1y61wb0bzm1cz7y8xxv6hp8mrkfb9zm9irg6zs4g6aanw539r6l8"; }; buildInputs = [ libjack2 alsaLib liblo libsndfile lv2 qt5.qtbase qt5.qttools]; From 56836c31ad80d039633e2669412697946169acd1 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Sat, 20 Jul 2019 15:19:45 -0400 Subject: [PATCH 0794/1611] nixos/tests: drop tomcat connector test The httpd subservice was dropped in #64052. --- nixos/tests/all-tests.nix | 1 - nixos/tests/tomcat.nix | 30 ------------------------------ 2 files changed, 31 deletions(-) delete mode 100644 nixos/tests/tomcat.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index 665a75e47da..e84635a3d2e 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -248,7 +248,6 @@ in taskserver = handleTest ./taskserver.nix {}; telegraf = handleTest ./telegraf.nix {}; tinydns = handleTest ./tinydns.nix {}; - tomcat = handleTest ./tomcat.nix {}; tor = handleTest ./tor.nix {}; transmission = handleTest ./transmission.nix {}; udisks2 = handleTest ./udisks2.nix {}; diff --git a/nixos/tests/tomcat.nix b/nixos/tests/tomcat.nix deleted file mode 100644 index 8e7b886dd30..00000000000 --- a/nixos/tests/tomcat.nix +++ /dev/null @@ -1,30 +0,0 @@ -import ./make-test.nix ({ pkgs, ...} : { - name = "tomcat"; - meta = with pkgs.stdenv.lib.maintainers; { - maintainers = [ eelco ]; - }; - - nodes = { - server = - { ... }: - - { services.tomcat.enable = true; - services.httpd.enable = true; - services.httpd.adminAddr = "foo@bar.com"; - services.httpd.extraSubservices = - [ { serviceType = "tomcat-connector"; } ]; - networking.firewall.allowedTCPPorts = [ 80 ]; - }; - - client = { }; - }; - - testScript = '' - startAll; - - $server->waitForUnit("tomcat"); - $client->waitForUnit("network.target"); - $client->waitUntilSucceeds("curl --fail http://server/examples/servlets/servlet/HelloWorldExample"); - $client->waitUntilSucceeds("curl --fail http://server/examples/jsp/jsp2/simpletag/hello.jsp"); - ''; -}) From 8f99ec0784f0d6686ad046aea509488c42acd02f Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 20 Jul 2019 15:45:54 -0400 Subject: [PATCH 0795/1611] slack-theme-black: 2019-03-15 -> 2019-06-04 --- .../networking/instant-messengers/slack/dark-theme.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix index 76987d08ff4..4e602862197 100644 --- a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix +++ b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl }: let - rev = "56d2007b5ba9f1628a44af6edf5dbdf74cf92278"; - sha256 = "1v264mpf9ddiz8zb7fcyjwy1a2yr5f4xs520gf63kl9378v721da"; - version = "2019-03-15"; + rev = "5cdbb97898d727d2b35c25a3117e9a79e474d97b"; + sha256 = "14qikp91l2aj8j9i0nh0nf9ibz65b8bpd3lbyarqshhrpvb5jp79"; + version = "2019-06-04"; in stdenv.mkDerivation { inherit version; From d3b915863121f0ec1b8a5c0d48771338dab6dc62 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 12:48:16 -0700 Subject: [PATCH 0796/1611] teamviewer: 14.3.4730 -> 14.4.2669 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/teamviewer/versions --- pkgs/applications/networking/remote/teamviewer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix index d97f376b9a2..949c85bf942 100644 --- a/pkgs/applications/networking/remote/teamviewer/default.nix +++ b/pkgs/applications/networking/remote/teamviewer/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "teamviewer-${version}"; - version = "14.3.4730"; + version = "14.4.2669"; src = fetchurl { url = "https://dl.tvcdn.de/download/linux/version_14x/teamviewer_${version}_amd64.deb"; - sha256 = "1k3vrkgkdh5wvws7xajgjvsqnmig64gnmf75sy7qq6lrpgp5l3nf"; + sha256 = "0vk782xpp8plbaz8cfggp0jrw7n8d5p9lv605pzmgxyq5h8z72za"; }; unpackPhase = '' From 9a38937331c97f974a2490990e1aed3cb8b0464c Mon Sep 17 00:00:00 2001 From: OPNA2608 Date: Sat, 20 Jul 2019 20:57:07 +0200 Subject: [PATCH 0797/1611] palemoon: restrict platforms to x86 Linux Pale Moon (with official branding at least) doesn't appear to be available for non-x86 architectures (yet), so we'll restrict the platforms to i686 and x64 Linux. --- pkgs/applications/networking/browsers/palemoon/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/palemoon/default.nix b/pkgs/applications/networking/browsers/palemoon/default.nix index f85ca6e430b..c4182785e82 100644 --- a/pkgs/applications/networking/browsers/palemoon/default.nix +++ b/pkgs/applications/networking/browsers/palemoon/default.nix @@ -130,6 +130,6 @@ in stdenv.mkDerivation rec { homepage = "https://www.palemoon.org/"; license = licenses.mpl20; maintainers = with maintainers; [ rnhmjoj AndersonTorres OPNA2608 ]; - platforms = platforms.linux; + platforms = [ "i686-linux" "x86_64-linux" ]; }; } From df748aeefe1e9e83126fac886cf6c59f5a03d06f Mon Sep 17 00:00:00 2001 From: Xavier Vello Date: Sat, 20 Jul 2019 21:26:01 +0200 Subject: [PATCH 0798/1611] nixos/plasma5: allow to configure the default phonon backend Introduce a new .plasma5.phononBackend option. Default value "gstreamer" installs the same packages as before. "vlc" installs only the vlc phonon backend. --- .../services/x11/desktop-managers/plasma5.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 14304e00dae..98c9ae86cee 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -21,6 +21,13 @@ in description = "Enable the Plasma 5 (KDE 5) desktop environment."; }; + phononBackend = mkOption { + type = types.enum [ "gstreamer" "vlc" ]; + default = "gstreamer"; + example = "vlc"; + description = "Phonon audio backend to install."; + }; + enableQt4Support = mkOption { type = types.bool; default = true; @@ -161,12 +168,14 @@ in qtvirtualkeyboard - libsForQt5.phonon-backend-gstreamer - xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/ ] - - ++ lib.optionals cfg.enableQt4Support [ pkgs.phonon-backend-gstreamer ] + + # Phonon audio backend + ++ lib.optional (cfg.phononBackend == "gstreamer") libsForQt5.phonon-backend-gstreamer + ++ lib.optional (cfg.phononBackend == "gstreamer" && cfg.enableQt4Support) pkgs.phonon-backend-gstreamer + ++ lib.optional (cfg.phononBackend == "vlc") libsForQt5.phonon-backend-vlc + ++ lib.optional (cfg.phononBackend == "vlc" && cfg.enableQt4Support) pkgs.phonon-backend-vlc # Optional hardware support features ++ lib.optional config.hardware.bluetooth.enable bluedevil From 429724a75b9e3ffa80d7aae56460e9444a28a19d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 12:59:52 -0700 Subject: [PATCH 0799/1611] stress-ng: 0.09.59.1 -> 0.10.00 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/stress-ng/versions --- pkgs/tools/system/stress-ng/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/stress-ng/default.nix b/pkgs/tools/system/stress-ng/default.nix index 08f7f3039fb..5d5d3b1939d 100644 --- a/pkgs/tools/system/stress-ng/default.nix +++ b/pkgs/tools/system/stress-ng/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { pname = "stress-ng"; - version = "0.09.59.1"; + version = "0.10.00"; src = fetchurl { url = "https://kernel.ubuntu.com/~cking/tarballs/${pname}/${pname}-${version}.tar.xz"; - sha256 = "0f3a6ki9v8lw4m9cwzlxsy7ykzmckgydnj2vypvwlr7rxcs19hxl"; + sha256 = "0x602d9alilxxx2v59ryyg6s81l9nf8bxyavk5wf8jd5mshx57fh"; }; # All platforms inputs then Linux-only ones From 58c7628131980cd361173f6b78aaf2d682719094 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 13:39:13 -0700 Subject: [PATCH 0800/1611] tint2: 16.6.1 -> 16.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tint2/versions --- pkgs/applications/misc/tint2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/tint2/default.nix b/pkgs/applications/misc/tint2/default.nix index c70503cbff2..63bb7f4bb4a 100644 --- a/pkgs/applications/misc/tint2/default.nix +++ b/pkgs/applications/misc/tint2/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { name = "tint2-${version}"; - version = "16.6.1"; + version = "16.7"; src = fetchFromGitLab { owner = "o9000"; repo = "tint2"; rev = version; - sha256 = "1h5bn4vi7gffwi4mpwpn0s6vxvl44rn3m9b23w8q9zyz9v24flz7"; + sha256 = "1937z0kixb6r82izj12jy4x8z4n96dfq1hx05vcsvsg1sx3wxgb0"; }; enableParallelBuilding = true; From fc83a1c7452ae74264632fb7e89be96308df7589 Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Sat, 20 Jul 2019 22:42:31 +0200 Subject: [PATCH 0801/1611] imlib: apply patch for CVE-2007-3568 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit While it probably doesn't have much impact it also doesn't really hurt fixing this… --- pkgs/development/libraries/imlib/default.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/imlib/default.nix b/pkgs/development/libraries/imlib/default.nix index a6281156afa..e476bc22eca 100644 --- a/pkgs/development/libraries/imlib/default.nix +++ b/pkgs/development/libraries/imlib/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, libX11, libXext, xorgproto, libjpeg, libungif, libtiff, libpng}: +{stdenv, fetchurl, fetchpatch, libX11, libXext, xorgproto, libjpeg, libungif, libtiff, libpng}: stdenv.mkDerivation { name = "imlib-1.9.15"; @@ -7,6 +7,14 @@ stdenv.mkDerivation { sha256 = "0ggjxyvgp4pxc0b88v40xj9daz90518ydnycw7qax011gxpr12d3"; }; + patches = [ + (fetchpatch { + name = "CVE-2007-3568.patch"; + url = https://gitweb.gentoo.org/repo/gentoo.git/plain/media-libs/imlib/files/imlib-1.9.15-bpp16-CVE-2007-3568.patch; + sha256 = "0lxfibi094gki39sq1w4p0hcx25xlk0875agbhjkjngzx862wvbg"; + }) + ]; + configureFlags = [ "--disable-shm" "--x-includes=${libX11.dev}/include" From 2535b73809c6ee982d8a2dec6389f507eb6a4561 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 13:58:38 -0700 Subject: [PATCH 0802/1611] uftrace: 0.9.2 -> 0.9.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/uftrace/versions --- pkgs/development/tools/uftrace/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/uftrace/default.nix b/pkgs/development/tools/uftrace/default.nix index cb10a252d12..f62cd1aabb1 100644 --- a/pkgs/development/tools/uftrace/default.nix +++ b/pkgs/development/tools/uftrace/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "uftrace-${version}"; - version = "0.9.2"; + version = "0.9.3"; src = fetchFromGitHub { owner = "namhyung"; repo = "uftrace"; rev = "v${version}"; - sha256 = "0s7yfnf7kcqlfw3zzv4y8akkd12f8di69c4sranympnl7z5srfam"; + sha256 = "0m5f4azm2gdl0li7dfq00ys07j8r2lfjkbb4rx5l7q0kj67ldr7s"; }; postUnpack = '' From 1eca71b92fcb5f8cb70f92f32a458acc104dab6f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 14:02:38 -0700 Subject: [PATCH 0803/1611] synthv1: 0.9.8 -> 0.9.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/synthv1/versions --- pkgs/applications/audio/synthv1/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/synthv1/default.nix b/pkgs/applications/audio/synthv1/default.nix index 837a08fa331..d28329b0117 100644 --- a/pkgs/applications/audio/synthv1/default.nix +++ b/pkgs/applications/audio/synthv1/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "synthv1-${version}"; - version = "0.9.8"; + version = "0.9.9"; src = fetchurl { url = "mirror://sourceforge/synthv1/${name}.tar.gz"; - sha256 = "15kabmxp38wqvavs5hr1dqasjjf1j977kzqggxfmzyi3y5fan3hj"; + sha256 = "0cvamqzg74qfr7kzk3skimskmv0j3d1rmmpbpsmfcrg8srvyx9r2"; }; buildInputs = [ qt5.qtbase qt5.qttools libjack2 alsaLib liblo lv2 ]; From 2c5763538ab481f95cd40bce13b526958a87394d Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Sat, 20 Jul 2019 23:53:56 +0200 Subject: [PATCH 0804/1611] libarchive: 3.3.3 -> 3.4.0 Release notes: https://github.com/libarchive/libarchive/releases/tag/v3.4.0 --- .../libraries/libarchive/default.nix | 29 +++++-------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix index f2a1c500a8b..3cf8a6da736 100644 --- a/pkgs/development/libraries/libarchive/default.nix +++ b/pkgs/development/libraries/libarchive/default.nix @@ -1,5 +1,5 @@ { - fetchurl, fetchpatch, stdenv, pkgconfig, + fetchFromGitHub, stdenv, pkgconfig, autoreconfHook, acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib, # Optional but increases closure only negligibly. @@ -10,31 +10,18 @@ assert xarSupport -> libxml2 != null; stdenv.mkDerivation rec { name = "libarchive-${version}"; - version = "3.3.3"; + version = "3.4.0"; - src = fetchurl { - url = "${meta.homepage}/downloads/${name}.tar.gz"; - sha256 = "0bhfncid058p7n1n8v29l6wxm3mhdqfassscihbsxfwz3iwb2zms"; + src = fetchFromGitHub { + owner = "libarchive"; + repo = "libarchive"; + rev = "v${version}"; + sha256 = "063f5bw9qmksj3iy6094qxwawx174cx00q1fg6l698wqw7xn8ihq"; }; - patches = [ - (fetchpatch { - # details: https://github.com/libarchive/libarchive/pull/1105 - name = "cve-2018-1000877.diff"; # CVE-2018-1000877..80 - url = "https://github.com/libarchive/libarchive/pull/1105.diff"; - sha256 = "0mxcawfdy9m40mykzwhkl39a6vnh4ypgy0ipcz74qm4bi72x0gyf"; - }) - (fetchpatch { - # details: https://github.com/libarchive/libarchive/pull/1120 - name = "cve-2019-1000019_cve-2019-1000020.diff"; - url = "https://github.com/libarchive/libarchive/pull/1120.diff"; - sha256 = "1mgx92v8hm7hw9j34nbfriqfkxshh3cy25rhavr7kl7lz4x5a6g4"; - }) - ]; - outputs = [ "out" "lib" "dev" ]; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig autoreconfHook ]; buildInputs = [ sharutils zlib bzip2 openssl xz lzo ] ++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ] ++ stdenv.lib.optional xarSupport libxml2; From 646952862e8a9390fe47f3049ed858d424a8e801 Mon Sep 17 00:00:00 2001 From: ngerstle Date: Sun, 21 Jul 2019 00:15:15 +0200 Subject: [PATCH 0805/1611] traefik: 1.7.10 -> 1.7.12 --- pkgs/servers/traefik/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/traefik/default.nix b/pkgs/servers/traefik/default.nix index 469d5fb73f9..a65bf5bd916 100644 --- a/pkgs/servers/traefik/default.nix +++ b/pkgs/servers/traefik/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "traefik-${version}"; - version = "1.7.10"; + version = "1.7.12"; goPackagePath = "github.com/containous/traefik"; @@ -10,7 +10,7 @@ buildGoPackage rec { owner = "containous"; repo = "traefik"; rev = "v${version}"; - sha256 = "1bfnwrwr27hywlv09a4z8ma70af6p6l3jcdpf8wg3aw5brznv9cq"; + sha256 = "1nrr0a0ibrd346i6jdxzvbgj5frcrwwm2rk3c6fpck42a6mw6plz"; }; buildInputs = [ go-bindata bash ]; From 505df09d502c2f58063828e03e522ffa29d611d1 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Mon, 1 Jul 2019 15:55:35 -0400 Subject: [PATCH 0806/1611] nixos/httpd: drop the port option --- .../services/web-servers/apache-httpd/default.nix | 9 +++------ .../web-servers/apache-httpd/per-server-options.nix | 8 -------- 2 files changed, 3 insertions(+), 14 deletions(-) diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index bf99f6c132a..12ff94a1f8f 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -21,10 +21,9 @@ let else [{ip = "*"; port = 80;}]; getListen = cfg: - let list = (lib.optional (cfg.port != 0) {ip = "*"; port = cfg.port;}) ++ cfg.listen; - in if list == [] - then defaultListen cfg - else list; + if cfg.listen == [] + then defaultListen cfg + else cfg.listen; listenToString = l: "${l.ip}:${toString l.port}"; @@ -638,8 +637,6 @@ in message = "SSL is enabled for httpd, but sslServerCert and/or sslServerKey haven't been specified."; } ]; - warnings = map (cfg: ''apache-httpd's port option is deprecated. Use listen = [{/*ip = "*"; */ port = ${toString cfg.port};}]; instead'' ) (lib.filter (cfg: cfg.port != 0) allHosts); - users.users = optionalAttrs (mainCfg.user == "wwwrun") (singleton { name = "wwwrun"; group = mainCfg.group; 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 4bbd041b6e0..536e707137c 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 @@ -24,14 +24,6 @@ with lib; ''; }; - port = mkOption { - type = types.int; - default = 0; - description = '' - Port for the server. Option will be removed, use instead. - ''; - }; - listen = mkOption { type = types.listOf (types.submodule ( { From f2b792b0504a15b90a084bff79c229a47c4c8dcc Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 21 Jul 2019 00:32:34 +0200 Subject: [PATCH 0807/1611] documize-community: 3.1.0 -> 3.1.1 https://github.com/documize/community/releases/tag/v3.1.1 --- pkgs/servers/documize-community/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/documize-community/default.nix b/pkgs/servers/documize-community/default.nix index 52d95b170f6..f6ac1924518 100644 --- a/pkgs/servers/documize-community/default.nix +++ b/pkgs/servers/documize-community/default.nix @@ -2,13 +2,13 @@ buildGoPackage rec { pname = "documize-community"; - version = "3.1.0"; + version = "3.1.1"; src = fetchFromGitHub { owner = "documize"; repo = "community"; rev = "v${version}"; - sha256 = "1ghdmqcwvbp48dw2w0aka38wfi2a80rmprnaxrjn2j5aplgbkbc5"; + sha256 = "1w57akmc3kb8rzgrjv5d4rjfr6vvam1wjs8792265ggnx6xhpgg9"; }; goPackagePath = "github.com/documize/community"; From 0fd69629c703a508a3529463604140caa059e349 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Mon, 1 Jul 2019 16:10:14 -0400 Subject: [PATCH 0808/1611] nixos/httpd: mark extraSubservices option as deprecated --- nixos/doc/manual/release-notes/rl-1909.xml | 12 +++++++++--- .../services/web-servers/apache-httpd/default.nix | 2 ++ 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index c8739d04638..e04945e2730 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -149,9 +149,15 @@ - Several of the apache subservices have been replaced with full NixOS - modules including LimeSurvey, WordPress, and Zabbix. - These modules can be enabled using the , + The option has been + marked as deprecated. You may still use this feature, but it will be + removed in a future release of NixOS. You are encouraged to convert any + httpd subservices you may have written to a full NixOS module. + + + Most of the httpd subservices packaged with NixOS have been replaced with + full NixOS modules including LimeSurvey, WordPress, and Zabbix. These + modules can be enabled using the , , and options. diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index 12ff94a1f8f..d6cb5bd4471 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -637,6 +637,8 @@ in message = "SSL is enabled for httpd, but sslServerCert and/or sslServerKey haven't been specified."; } ]; + warnings = map (cfg: "apache-httpd's extraSubservices option is deprecated. Most existing subservices have been ported to the NixOS module system. Please update your configuration accordingly.") (lib.filter (cfg: cfg.extraSubservices != []) allHosts); + users.users = optionalAttrs (mainCfg.user == "wwwrun") (singleton { name = "wwwrun"; group = mainCfg.group; From 9b970d07f384f31737cb3d598913aba16dbc59bb Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Tue, 2 Jul 2019 11:53:45 -0400 Subject: [PATCH 0809/1611] nixos/httpd: drop postgresql reference --- nixos/doc/manual/release-notes/rl-1909.xml | 5 +++++ nixos/modules/services/web-servers/apache-httpd/default.nix | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index e04945e2730..53fec6c9b62 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -148,6 +148,11 @@ + + The httpd service no longer attempts to start the postgresql service. If you have come to depend + on this behaviour then you can preserve the behavior with the following configuration: + systemd.services.httpd.after = [ "postgresql.service" ]; + The option has been marked as deprecated. You may still use this feature, but it will be diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index d6cb5bd4471..ea9476a7c91 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -671,7 +671,7 @@ in wantedBy = [ "multi-user.target" ]; wants = [ "keys.target" ]; - after = [ "network.target" "fs.target" "postgresql.service" "keys.target" ]; + after = [ "network.target" "fs.target" "keys.target" ]; path = [ httpd pkgs.coreutils pkgs.gnugrep ] From 0ad3219a23915772d7e77bf716620e42d18ba9cd Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 15:41:13 -0700 Subject: [PATCH 0810/1611] urh: 2.7.2 -> 2.7.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/urh/versions --- pkgs/applications/radio/urh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/radio/urh/default.nix b/pkgs/applications/radio/urh/default.nix index 58a0b8048b5..48c20ecca47 100644 --- a/pkgs/applications/radio/urh/default.nix +++ b/pkgs/applications/radio/urh/default.nix @@ -3,13 +3,13 @@ python3Packages.buildPythonApplication rec { pname = "urh"; - version = "2.7.2"; + version = "2.7.3"; src = fetchFromGitHub { owner = "jopohl"; repo = pname; rev = "v${version}"; - sha256 = "14027dcq0ag2qjpxcmsb9n1c64ypmi4rycwxzm2hajj7hk2736hv"; + sha256 = "1jrrj9c4ddm37m8j0g693xjimpnlvx7lan5kxish5p14xpwdak35"; }; buildInputs = [ hackrf rtl-sdr airspy limesuite ]; From e6dd87c438ede050a78b7eeb1539be1af03f4479 Mon Sep 17 00:00:00 2001 From: Anders Lundstedt Date: Sat, 20 Jul 2019 19:38:53 +0200 Subject: [PATCH 0811/1611] spotifyd: init at 0.2.11 --- pkgs/applications/audio/spotifyd/default.nix | 40 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 6 +++ 2 files changed, 46 insertions(+) create mode 100644 pkgs/applications/audio/spotifyd/default.nix diff --git a/pkgs/applications/audio/spotifyd/default.nix b/pkgs/applications/audio/spotifyd/default.nix new file mode 100644 index 00000000000..5f064cf4e88 --- /dev/null +++ b/pkgs/applications/audio/spotifyd/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl +, withALSA ? true, alsaLib ? null +, withPulseAudio ? false, libpulseaudio ? null +, withPortAudio ? false, portaudio ? null +}: + +rustPlatform.buildRustPackage rec { + pname = "spotifyd"; + version = "0.2.11"; + + src = fetchFromGitHub { + owner = "Spotifyd"; + repo = "spotifyd"; + rev = "${version}"; + sha256 = "1iybk9xrrvhrcl2xl5r2xhyn1ydhrgwnnb8ldhsw5c16b32z03q1"; + }; + + cargoSha256 = "0879p1h32259schmy8j3xnwpw3sw80f8mrj8s6b5aihi3yyzz521"; + + cargoBuildFlags = [ + "--no-default-features" + "--features" + "${stdenv.lib.optionalString withALSA "alsa_backend,"}${stdenv.lib.optionalString withPulseAudio "pulseaudio_backend,"}${stdenv.lib.optionalString withPortAudio "portaudio_backend,"}" + ]; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ openssl ] + ++ stdenv.lib.optional withALSA alsaLib + ++ stdenv.lib.optional withPulseAudio libpulseaudio + ++ stdenv.lib.optional withPortAudio portaudio; + + meta = with stdenv.lib; { + description = "An open source Spotify client running as a UNIX daemon"; + homepage = "https://github.com/Spotifyd/spotifyd"; + license = with licenses; [ gpl3 ]; + maintainers = [ maintainers.anderslundstedt ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 03ae106c481..55ae0f3fa67 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18496,6 +18496,12 @@ in spectral = qt5.callPackage ../applications/networking/instant-messengers/spectral { }; + spotifyd = callPackage ../applications/audio/spotifyd { + withALSA = stdenv.isLinux; + withPulseAudio = config.pulseaudio or true; + withPortAudio = stdenv.isDarwin; + }; + super-productivity = callPackage ../applications/networking/super-productivity { }; wlc = callPackage ../development/libraries/wlc { }; From 53841fcea9cbd639dfd30714e48959a9752c5818 Mon Sep 17 00:00:00 2001 From: Anders Lundstedt Date: Fri, 19 Jul 2019 22:13:06 +0200 Subject: [PATCH 0812/1611] nixos/spotifyd: init --- nixos/modules/module-list.nix | 1 + nixos/modules/services/audio/spotifyd.nix | 42 +++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 nixos/modules/services/audio/spotifyd.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index e07fabb348c..add9483f4a5 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -198,6 +198,7 @@ ./services/audio/slimserver.nix ./services/audio/snapserver.nix ./services/audio/squeezelite.nix + ./services/audio/spotifyd.nix ./services/audio/ympd.nix ./services/backup/automysqlbackup.nix ./services/backup/bacula.nix diff --git a/nixos/modules/services/audio/spotifyd.nix b/nixos/modules/services/audio/spotifyd.nix new file mode 100644 index 00000000000..e3556b2559c --- /dev/null +++ b/nixos/modules/services/audio/spotifyd.nix @@ -0,0 +1,42 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.spotifyd; + spotifydConf = pkgs.writeText "spotifyd.conf" cfg.config; +in +{ + options = { + services.spotifyd = { + enable = mkEnableOption "spotifyd, a Spotify playing daemon"; + + config = mkOption { + default = ""; + type = types.lines; + description = '' + Configuration for Spotifyd. For syntax and directives, see + https://github.com/Spotifyd/spotifyd#Configuration. + ''; + }; + }; + }; + + config = mkIf cfg.enable { + systemd.services.spotifyd = { + wantedBy = [ "multi-user.target" ]; + after = [ "network-online.target" "sound.target" ]; + description = "spotifyd, a Spotify playing daemon"; + serviceConfig = { + ExecStart = "${pkgs.spotifyd}/bin/spotifyd --no-daemon --cache_path /var/cache/spotifyd --config ${spotifydConf}"; + Restart = "always"; + RestartSec = 12; + DynamicUser = true; + CacheDirectory = "spotifyd"; + SupplementaryGroups = ["audio"]; + }; + }; + }; + + meta.maintainers = [ maintainers.anderslundstedt ]; +} From ee8cdd25f51b8f85b5266f59eb165240697d3aee Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 16:27:25 -0700 Subject: [PATCH 0813/1611] wxSVG: 1.5.18 -> 1.5.19 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wxsvg/versions --- pkgs/development/libraries/wxSVG/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wxSVG/default.nix b/pkgs/development/libraries/wxSVG/default.nix index bd2442a323a..2aa28a2ccf4 100644 --- a/pkgs/development/libraries/wxSVG/default.nix +++ b/pkgs/development/libraries/wxSVG/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "wxSVG-${version}"; srcName = "wxsvg-${version}"; - version = "1.5.18"; + version = "1.5.19"; src = fetchurl { url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/${srcName}.tar.bz2"; - sha256 = "0rzjrjx3vaz2z89zw5yv8qxclfpz7hpb17rgkib0a2r3kax2jz2h"; + sha256 = "17hgaqxf2y44j1d9z11p107sk7n7m1f9nkaz7z6450pan4zphy1z"; }; nativeBuildInputs = [ pkgconfig ]; From c4323c200f5c1b08b3bf5147f95a70a58c464cfb Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 21 Jul 2019 01:16:33 +0200 Subject: [PATCH 0814/1611] evcxr: fix hash and `cc` access The `cargoSha256` hashes across the sourcetree had to be altered after the last `cargo-vendor` bump. Also ensured that `cc` is available in `$PATH` to avoid startup errors in the REPL. --- pkgs/development/interpreters/evcxr/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix index 3a517cb03be..c5099a67a1d 100644 --- a/pkgs/development/interpreters/evcxr/default.nix +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -1,4 +1,4 @@ -{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv }: +{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc }: rustPlatform.buildRustPackage rec { name = "evcxr-${version}"; @@ -11,13 +11,13 @@ rustPlatform.buildRustPackage rec { sha256 = "1apc93z9vvf6qks5x2pad45rnrj9kjl812rj78w5zmmizccp2fhf"; }; - cargoSha256 = "0bd6yna8yyrqjv4w7qr2923nljbjjlbkyad6vjlgfp33yn2pz1iv"; + cargoSha256 = "153pxqj4jhlbacr7607q9yfw6h96ns5igbvssis8j3gn0xp6ssg6"; cargoPatches = [ ./cargo-lock.patch ]; nativeBuildInputs = [ pkgconfig makeWrapper ]; buildInputs = [ cargo ]; postInstall = '' - wrapProgram $out/bin/evcxr --prefix PATH : ${cargo}/bin + wrapProgram $out/bin/evcxr --prefix PATH : ${stdenv.lib.makeBinPath [ cargo gcc ]} rm $out/bin/testing_runtime ''; From 6b62be5eff261073f9317243cf034e6ea8fb5d55 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 17:04:20 -0700 Subject: [PATCH 0815/1611] yandex-disk: 0.1.5.1010 -> 0.1.5.1039 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/yandex-disk/versions --- pkgs/tools/filesystems/yandex-disk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index 3b9e4a02108..61fd5f26e30 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -4,7 +4,7 @@ let p = if stdenv.is64bit then { arch = "x86_64"; gcclib = "${stdenv.cc.cc.lib}/lib64"; - sha256 = "1hxsizk3hm1465wkxwdbbcffgi3r64y3r0zsfzsvhvnzx4y5dadm"; + sha256 = "14bpc5ddhxvgfxkxhj5q9z443s7z4nn1zf4k1hxj7rbf13rcpg00"; } else { arch = "i386"; @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { name = "yandex-disk-${version}"; - version = "0.1.5.1010"; + version = "0.1.5.1039"; src = fetchurl { url = "https://repo.yandex.ru/yandex-disk/rpm/stable/${p.arch}/${name}-1.fedora.${p.arch}.rpm"; From d5ce2a186c168ccce155b2e48d151d23c50a6e9c Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Sun, 21 Jul 2019 00:11:44 +0000 Subject: [PATCH 0816/1611] zstd: 1.4.0 -> 1.4.1 --- pkgs/tools/compression/zstd/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/compression/zstd/default.nix b/pkgs/tools/compression/zstd/default.nix index ff2589031b6..257396e0428 100644 --- a/pkgs/tools/compression/zstd/default.nix +++ b/pkgs/tools/compression/zstd/default.nix @@ -4,11 +4,11 @@ , legacySupport ? false }: stdenv.mkDerivation rec { - name = "zstd-${version}"; - version = "1.4.0"; + pname = "zstd"; + version = "1.4.1"; src = fetchFromGitHub { - sha256 = "1gfxi3ymgavjfxh84rhfjan7l4pymwfrn051nwc7n0s3mxp09m6v"; + sha256 = "1f2nvhsx1fsd6zbnwvc6bbrm9ghkcvamqqg79fxgk5284rc6nynv"; rev = "v${version}"; repo = "zstd"; owner = "facebook"; @@ -40,6 +40,8 @@ stdenv.mkDerivation rec { --replace "zstdcat" "$out/bin/zstdcat" ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "Zstandard real-time compression algorithm"; longDescription = '' @@ -52,8 +54,7 @@ stdenv.mkDerivation rec { property shared by most LZ compression algorithms, such as zlib. ''; homepage = https://facebook.github.io/zstd/; - # The licence of the CLI programme is GPLv2+, that of the library BSD-2. - license = with licenses; [ gpl2Plus bsd2 ]; + license = with licenses; [ bsd3 ]; # Or, at your opinion, GPL-2.0-only. platforms = platforms.unix; maintainers = with maintainers; [ orivej ]; From 076c10183622115c38936382f41a9d2ec865e71f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 17:12:06 -0700 Subject: [PATCH 0817/1611] virtmanager: 2.2.0 -> 2.2.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/virt-manager/versions --- pkgs/applications/virtualization/virt-manager/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 2a76cf487b0..b6a6ebde540 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -15,12 +15,12 @@ let in python3Packages.buildPythonApplication rec { name = "virt-manager-${version}"; - version = "2.2.0"; + version = "2.2.1"; namePrefix = ""; src = fetchurl { url = "http://virt-manager.org/download/sources/virt-manager/${name}.tar.gz"; - sha256 = "0186c2fjqm3wdr3wik4fcyl5l3gv5j6sxn18d0vclw83w4yrhjz9"; + sha256 = "06ws0agxlip6p6n3n43knsnjyd91gqhh2dadgc33wl9lx1k8vn6g"; }; nativeBuildInputs = [ From 2de35cf8eecbd52f3fa217b341172994d0e2b731 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 21 Jul 2019 02:13:17 +0200 Subject: [PATCH 0818/1611] evcxr: fix darwin build It seems as the `Security` framework is missing during the linking in a darwin build environment: https://logs.nix.ci/?key=nixos/nixpkgs.60675&attempt_id=42d9c159-f1a2-4abc-ab14-9dea23d941b1 --- pkgs/development/interpreters/evcxr/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/evcxr/default.nix b/pkgs/development/interpreters/evcxr/default.nix index c5099a67a1d..2c30c0ca385 100644 --- a/pkgs/development/interpreters/evcxr/default.nix +++ b/pkgs/development/interpreters/evcxr/default.nix @@ -1,4 +1,4 @@ -{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc }: +{ cargo, fetchFromGitHub, makeWrapper, pkgconfig, rustPlatform, stdenv, gcc, Security }: rustPlatform.buildRustPackage rec { name = "evcxr-${version}"; @@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec { cargoPatches = [ ./cargo-lock.patch ]; nativeBuildInputs = [ pkgconfig makeWrapper ]; - buildInputs = [ cargo ]; + buildInputs = [ cargo ] ++ stdenv.lib.optional stdenv.isDarwin Security; postInstall = '' wrapProgram $out/bin/evcxr --prefix PATH : ${stdenv.lib.makeBinPath [ cargo gcc ]} rm $out/bin/testing_runtime diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f3ee9ec71f6..d934b07b5b7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8031,7 +8031,9 @@ in duktape = callPackage ../development/interpreters/duktape { }; - evcxr = callPackage ../development/interpreters/evcxr { }; + evcxr = callPackage ../development/interpreters/evcxr { + inherit (darwin.apple_sdk.frameworks) Security; + }; beam = callPackage ./beam-packages.nix { }; From 56757df7c3185877f54011579667178a5c4ca0c9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 17:19:22 -0700 Subject: [PATCH 0819/1611] yarn: 1.17.0 -> 1.17.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/yarn/versions --- pkgs/development/tools/yarn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/yarn/default.nix b/pkgs/development/tools/yarn/default.nix index b5263673faa..5dc0a63c26e 100644 --- a/pkgs/development/tools/yarn/default.nix +++ b/pkgs/development/tools/yarn/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "yarn"; - version = "1.17.0"; + version = "1.17.3"; src = fetchzip { url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz"; - sha256 = "1gviq2c96l8gh8hy7ygxyd62xc3laiglr5mhsfwhxdn039fdh0vr"; + sha256 = "050bd7bzn1kkva03q3ay2jlq574yp4k5g1pyrrdvk2cr60c4j1vj"; }; buildInputs = [ nodejs ]; From 6496134c4406a539dcc317984f1dd765e86aa2f6 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 17:24:36 -0700 Subject: [PATCH 0820/1611] zotero: 5.0.67 -> 5.0.71 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/zotero/versions --- pkgs/applications/office/zotero/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index 3540fce9173..86eb0ab4c38 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { name = "zotero-${version}"; - version = "5.0.67"; + version = "5.0.71"; src = fetchurl { url = "https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-x86_64.tar.bz2"; - sha256 = "1b06875qr8dy2lhf4h9z7gcc5pcqdyq92c11b3brsbgbq2n48g40"; + sha256 = "070b1ak870jv8h702a9g930p01jsmly93c44igw48ylbgqjyhlwq"; }; buildInputs= [ wrapGAppsHook gsettings-desktop-schemas gtk3 gnome3.adwaita-icon-theme gnome3.dconf ]; From a1cb6d601d157f73581ebf6b071f78e01a8b8562 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 20 Jul 2019 21:29:09 -0400 Subject: [PATCH 0821/1611] riot-desktop: add worldofpeace to maintainers --- .../networking/instant-messengers/riot/riot-desktop.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix index fdb64fdacd3..7400393d92b 100644 --- a/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix +++ b/pkgs/applications/networking/instant-messengers/riot/riot-desktop.nix @@ -81,7 +81,7 @@ in mkYarnPackage rec { description = "A feature-rich client for Matrix.org"; homepage = https://about.riot.im/; license = licenses.asl20; - maintainers = with maintainers; [ pacien ]; + maintainers = with maintainers; [ pacien worldofpeace ]; inherit (electron.meta) platforms; }; } From 3c12ae1d35a6f71310928aa2c752b5fdd5e96604 Mon Sep 17 00:00:00 2001 From: Tobias Mayer Date: Sun, 21 Jul 2019 06:44:50 +0200 Subject: [PATCH 0822/1611] Signal static build option in makeStaticLibraries This flag can replace the extra static parameter to packages that don't work automatically with this adapter. --- pkgs/stdenv/adapters.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/stdenv/adapters.nix b/pkgs/stdenv/adapters.nix index 8ece43f87b0..0409bf1104b 100644 --- a/pkgs/stdenv/adapters.nix +++ b/pkgs/stdenv/adapters.nix @@ -62,6 +62,7 @@ rec { ]; mesonFlags = (args.mesonFlags or []) ++ [ "-Ddefault_library=static" ]; }); + static = true; }; /* Modify a stdenv so that the specified attributes are added to From da492d230b426a56da1a48ff1003dd0ff1d118e7 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 00:00:00 -0500 Subject: [PATCH 0823/1611] buildRustPackage: by default use Rust's platforms --- pkgs/build-support/rust/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix index 762a61b8a57..306b70419ed 100644 --- a/pkgs/build-support/rust/default.nix +++ b/pkgs/build-support/rust/default.nix @@ -14,6 +14,7 @@ , cargoDepsHook ? "" , cargoBuildFlags ? [] , buildType ? "release" +, meta ? {} , cargoVendorDir ? null , ... } @ args: @@ -147,4 +148,9 @@ in stdenv.mkDerivation (args // { ''; passthru = { inherit cargoDeps; } // (args.passthru or {}); + + meta = { + # default to Rust's platforms + platforms = rustc.meta.platforms; + } // meta; }) From e06b7d9638e7547cc43af9149348d0ebf90d2763 Mon Sep 17 00:00:00 2001 From: Tobias Mayer Date: Sun, 21 Jul 2019 07:36:44 +0200 Subject: [PATCH 0824/1611] Override alternative stdenvs in pkgsStatic --- pkgs/top-level/static.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix index 476ad9de3e9..193356a61ec 100644 --- a/pkgs/top-level/static.nix +++ b/pkgs/top-level/static.nix @@ -53,6 +53,14 @@ self: super: let in { stdenv = foldl (flip id) super.stdenv staticAdapters; + gcc49Stdenv = foldl (flip id) super.gcc49Stdenv staticAdapters; + gcc5Stdenv = foldl (flip id) super.gcc5Stdenv staticAdapters; + gcc6Stdenv = foldl (flip id) super.gcc6Stdenv staticAdapters; + gcc7Stdenv = foldl (flip id) super.gcc7Stdenv staticAdapters; + gcc8Stdenv = foldl (flip id) super.gcc8Stdenv staticAdapters; + gcc9Stdenv = foldl (flip id) super.gcc9Stdenv staticAdapters; + clangStdenv = foldl (flip id) super.clangStdenv staticAdapters; + libcxxStdenv = foldl (flip id) super.libcxxStdenv staticAdapters; haskell = super.haskell // { packageOverrides = composeExtensions From 56146c0cfa2204f2e29b5680a83581ff60871754 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 21 Jul 2019 08:29:11 +0200 Subject: [PATCH 0825/1611] Revert "spotify: 1.0.96.181.gf6bc1b6b-12 -> 1.1.5.153.gf614956d-16" Segmentation fault. This reverts commit 3670450fc68554373af74e5d72e8edea11d9b519. --- pkgs/applications/audio/spotify/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index fb1c7c5f54a..6e926fe11c3 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng, libnotify , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 -, at-spi2-atk, at-spi2-core +, at-spi2-atk }: let @@ -10,21 +10,20 @@ let # If an update breaks things, one of those might have valuable info: # https://aur.archlinux.org/packages/spotify/ # https://community.spotify.com/t5/Desktop-Linux - version = "1.1.5.153.gf614956d-16"; + version = "1.0.96.181.gf6bc1b6b-12"; # To get the latest stable revision: # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' # To get general information: # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' # More examples of api usage: # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py - rev = "35"; + rev = "30"; deps = [ alsaLib atk at-spi2-atk - at-spi2-core cairo cups curl @@ -73,7 +72,7 @@ stdenv.mkDerivation { # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 src = fetchurl { url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; - sha512 = "9c2b7c2c6da28fa0c1d75d1ff77aa50604e3d60716f6bfe2b3da452d5d89c9c53c819921a60e1997a8cc42d07d7c15460f707ac5d21180fbb2dcc006e7b0e82b"; + sha512 = "859730fbc80067f0828f7e13eee9a21b13b749f897a50e17c2da4ee672785cfd79e1af6336e609529d105e040dc40f61b6189524783ac93d49f991c4ea8b3c56"; }; buildInputs = [ squashfsTools makeWrapper ]; From 8edeb925d249ad9964af20cc13e8c70bf77d745b Mon Sep 17 00:00:00 2001 From: Alex Rice Date: Wed, 5 Jun 2019 15:38:39 +0100 Subject: [PATCH 0826/1611] adga-stdlib: 1.0 -> 1.0.1 --- pkgs/development/libraries/agda/agda-stdlib/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/agda/agda-stdlib/default.nix b/pkgs/development/libraries/agda/agda-stdlib/default.nix index d9350d135eb..b6208eeeb51 100644 --- a/pkgs/development/libraries/agda/agda-stdlib/default.nix +++ b/pkgs/development/libraries/agda/agda-stdlib/default.nix @@ -1,14 +1,14 @@ { stdenv, agda, fetchFromGitHub, ghcWithPackages }: agda.mkDerivation (self: rec { - version = "1.0"; + version = "1.0.1"; name = "agda-stdlib-${version}"; src = fetchFromGitHub { repo = "agda-stdlib"; owner = "agda"; rev = "v${version}"; - sha256 = "19qrdfi0vig3msqg76k1zf5j3vav0jz44cvj6i4dyfbscdwf2l9c"; + sha256 = "0ia7mgxs5g9849r26yrx07lrx65vhlrxqqh5b6d69gfi1pykb4j2"; }; nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ]; From 16ad5d54017c8da5dc29ae3b4e04ce4a6bd038c5 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 04:28:00 +0200 Subject: [PATCH 0827/1611] pythonPackages.bcrypt: 3.1.6 -> 3.1.7 --- pkgs/development/python-modules/bcrypt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/bcrypt/default.nix b/pkgs/development/python-modules/bcrypt/default.nix index 28cd08fb0fc..c32fefbbdfe 100644 --- a/pkgs/development/python-modules/bcrypt/default.nix +++ b/pkgs/development/python-modules/bcrypt/default.nix @@ -4,12 +4,12 @@ with stdenv.lib; buildPythonPackage rec { - version = "3.1.6"; + version = "3.1.7"; pname = "bcrypt"; src = fetchPypi { inherit pname version; - sha256 = "44636759d222baa62806bbceb20e96f75a015a6381690d1bc2eda91c01ec02ea"; + sha256 = "0b0069c752ec14172c5f78208f1863d7ad6755a6fae6fe76ec2c80d13be41e42"; }; buildInputs = [ pycparser mock pytest py ]; propagatedBuildInputs = [ six ] ++ optional (!isPyPy) cffi; From d886bc27ed03e27e694cddbce01bbac56fe9e702 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 04:28:29 +0200 Subject: [PATCH 0828/1611] pythonPackages.certifi: 2019.3.9 -> 2019.6.16 --- pkgs/development/python-modules/certifi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/certifi/default.nix b/pkgs/development/python-modules/certifi/default.nix index 07dc701f3b1..935c0d60061 100644 --- a/pkgs/development/python-modules/certifi/default.nix +++ b/pkgs/development/python-modules/certifi/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "certifi"; - version = "2019.3.9"; + version = "2019.6.16"; src = fetchPypi { inherit pname version; - sha256 = "1bnpw7hrf9i1l9gfxjnzi45hkrvzz0pyn9ia8m4mw7sxhgb08qdj"; + sha256 = "945e3ba63a0b9f577b1395204e13c3a231f9bc0223888be653286534e5873695"; }; meta = { From abc9221996c8b619ddd8e9304431e6e549c1dbf6 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 04:28:59 +0200 Subject: [PATCH 0829/1611] pythonPackages.requests: 2.21.0 -> 2.22.0 --- pkgs/development/python-modules/requests/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/requests/default.nix b/pkgs/development/python-modules/requests/default.nix index 063c6d95071..260c0329576 100644 --- a/pkgs/development/python-modules/requests/default.nix +++ b/pkgs/development/python-modules/requests/default.nix @@ -4,11 +4,11 @@ buildPythonPackage rec { pname = "requests"; - version = "2.21.0"; + version = "2.22.0"; src = fetchPypi { inherit pname version; - sha256 = "502a824f31acdacb3a35b6690b5fbf0bc41d63a24a45c4004352b0242707598e"; + sha256 = "11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4"; }; nativeBuildInputs = [ pytest ]; From de6fc7fb97caef3934aabaab4b1dc933afd39700 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Sat, 20 Jul 2019 04:29:25 +0200 Subject: [PATCH 0830/1611] pythonPackages.pyyaml: 5.1 -> 5.1.1 --- pkgs/development/python-modules/pyyaml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyyaml/default.nix b/pkgs/development/python-modules/pyyaml/default.nix index 84dfb549fe1..9663d9ab04b 100644 --- a/pkgs/development/python-modules/pyyaml/default.nix +++ b/pkgs/development/python-modules/pyyaml/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "PyYAML"; - version = "5.1"; + version = "5.1.1"; src = fetchPypi { inherit pname version; - sha256 = "436bc774ecf7c103814098159fbb84c2715d25980175292c648f2da143909f95"; + sha256 = "b4bb4d3f5e232425e25dda21c070ce05168a786ac9eda43768ab7f3ac2770955"; }; # force regeneration using Cython From c2bcf46a8ab4df671ba714a0d30f3b0182ad595a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:52:02 +0200 Subject: [PATCH 0831/1611] python3.pkgs.ipython: 7.5.0 -> 7.6.1 --- pkgs/development/python-modules/ipython/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index f94b690b7f7..14b083ab500 100644 --- a/pkgs/development/python-modules/ipython/default.nix +++ b/pkgs/development/python-modules/ipython/default.nix @@ -22,25 +22,18 @@ buildPythonPackage rec { pname = "ipython"; - version = "7.5.0"; + version = "7.6.1"; disabled = pythonOlder "3.5"; src = fetchPypi { inherit pname version; - sha256 = "e840810029224b56cd0d9e7719dc3b39cf84d577f8ac686547c8ba7a06eeab26"; + sha256 = "11067ab11d98b1e6c7f0993506f7a5f8a91af420f7e82be6575fcb7a6ca372a0"; }; prePatch = lib.optionalString stdenv.isDarwin '' substituteInPlace setup.py --replace "'gnureadline'" " " ''; - patches = [ - (fetchpatch { - url = "https://github.com/ipython/ipython/commit/e1b53e9ef91a43b9e275bb9e48b4253218375d87.patch"; - sha256 = "sha256:0q7zsgalwxss6aikhakbdkvvz0g4ac4sa3ncrklm74ksqh56rsgb"; - }) - ]; - buildInputs = [ glibcLocales ]; checkInputs = [ nose pygments ]; From 48ddd8178045eb06cf7ffd5eea06b4403cc72def Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:52:37 +0200 Subject: [PATCH 0832/1611] python: Cython: 0.29.10 -> 0.29.12 --- pkgs/development/python-modules/Cython/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/Cython/default.nix b/pkgs/development/python-modules/Cython/default.nix index 3c685e0f34b..13eb58baa0a 100644 --- a/pkgs/development/python-modules/Cython/default.nix +++ b/pkgs/development/python-modules/Cython/default.nix @@ -25,11 +25,11 @@ let in buildPythonPackage rec { pname = "Cython"; - version = "0.29.10"; + version = "0.29.12"; src = fetchPypi { inherit pname version; - sha256 = "26229570d6787ff3caa932fe9d802960f51a89239b990d275ae845405ce43857"; + sha256 = "20da832a5e9a8e93d1e1eb64650258956723940968eb585506531719b55b804f"; }; nativeBuildInputs = [ From 6006bc463062c90c997b5fdb16b0b64757116b4e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:56:42 +0200 Subject: [PATCH 0833/1611] pythonPackages.cytoolz: 0.9.0.1 -> 0.10.0 --- pkgs/development/python-modules/cytoolz/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix index bb345ddc48e..f95da9b75b2 100644 --- a/pkgs/development/python-modules/cytoolz/default.nix +++ b/pkgs/development/python-modules/cytoolz/default.nix @@ -10,22 +10,13 @@ buildPythonPackage rec { pname = "cytoolz"; - version = "0.9.0.1"; + version = "0.10.0"; src = fetchPypi { inherit pname version; - sha256 = "84cc06fa40aa310f2df79dd440fc5f84c3e20f01f9f7783fc9c38d0a11ba00e5"; + sha256 = "ed9f6a07c2bac70d6c597df360d0666d11d2adc90141d54c5c2db08b380a4fac"; }; - patches = [ - # temporal fix for a test failure: https://github.com/pytoolz/cytoolz/issues/122 - (fetchpatch { - name = "py37.patch"; - url = https://salsa.debian.org/python-team/modules/python-cytoolz/raw/5ce4158deefc47475d1e76813f900e6c72ddcc6e/debian/patches/py37.patch; - sha256 = "1z29y7s5n751q3f74r3bz0f48yg6izvi68hc4pkwcalxmkq5r1n9"; - }) - ]; - # Extension types disabled = isPyPy; From 6fd572675958f7dd25358bcb85321f7bc866ff36 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:56:54 +0200 Subject: [PATCH 0834/1611] python3Packages.ipykernel: 5.1.0 -> 5.1.1 --- pkgs/development/python-modules/ipykernel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ipykernel/default.nix b/pkgs/development/python-modules/ipykernel/default.nix index 043f58cfa5d..94494ed7854 100644 --- a/pkgs/development/python-modules/ipykernel/default.nix +++ b/pkgs/development/python-modules/ipykernel/default.nix @@ -13,12 +13,12 @@ buildPythonPackage rec { pname = "ipykernel"; - version = "5.1.0"; + version = "5.1.1"; disabled = pythonOlder "3.4"; src = fetchPypi { inherit pname version; - sha256 = "0fc0bf97920d454102168ec2008620066878848fcfca06c22b669696212e292f"; + sha256 = "f0e962052718068ad3b1d8bcc703794660858f58803c3798628817f492a8769c"; }; checkInputs = [ pytest nose ]; From 68433031c392b579b6042f5d287cacf9e6506b49 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:57:26 +0200 Subject: [PATCH 0835/1611] python: ipywidgets: 7.4.2 -> 7.5.0 --- pkgs/development/python-modules/ipywidgets/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ipywidgets/default.nix b/pkgs/development/python-modules/ipywidgets/default.nix index b91b5d7a775..fd71569e293 100644 --- a/pkgs/development/python-modules/ipywidgets/default.nix +++ b/pkgs/development/python-modules/ipywidgets/default.nix @@ -14,11 +14,11 @@ buildPythonPackage rec { pname = "ipywidgets"; - version = "7.4.2"; + version = "7.5.0"; src = fetchPypi { inherit pname version; - sha256 = "a3e224f430163f767047ab9a042fc55adbcab0c24bbe6cf9f306c4f89fdf0ba3"; + sha256 = "cb263c6974aca902d00a435711823bb4aaf6614a5f997f517e15fa84151e8fa2"; }; # Tests are not distributed From 82b0f8645d98d29e15e87f621336cc0c1f58ba1c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:57:50 +0200 Subject: [PATCH 0836/1611] python: jupyter_client: 5.2.4 -> 5.3.1 --- pkgs/development/python-modules/jupyter_client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jupyter_client/default.nix b/pkgs/development/python-modules/jupyter_client/default.nix index a4dc719b7af..c3643e674c3 100644 --- a/pkgs/development/python-modules/jupyter_client/default.nix +++ b/pkgs/development/python-modules/jupyter_client/default.nix @@ -16,11 +16,11 @@ buildPythonPackage rec { pname = "jupyter_client"; - version = "5.2.4"; + version = "5.3.1"; src = fetchPypi { inherit pname version; - sha256 = "b5f9cb06105c1d2d30719db5ffb3ea67da60919fb68deaefa583deccd8813551"; + sha256 = "98e8af5edff5d24e4d31e73bc21043130ae9d955a91aa93fc0bc3b1d0f7b5880"; }; checkInputs = [ ipykernel ipython mock pytest ]; From 2d520729429ff759d21c0b84b24e2eb2c02e6d03 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 10:58:01 +0200 Subject: [PATCH 0837/1611] python: jupyter_core: 4.4.0 -> 4.5.0 --- pkgs/development/python-modules/jupyter_core/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/jupyter_core/default.nix b/pkgs/development/python-modules/jupyter_core/default.nix index e89154c0bc4..88679197be1 100644 --- a/pkgs/development/python-modules/jupyter_core/default.nix +++ b/pkgs/development/python-modules/jupyter_core/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "jupyter_core"; - version = "4.4.0"; + version = "4.5.0"; src = fetchPypi { inherit pname version; - sha256 = "ba70754aa680300306c699790128f6fbd8c306ee5927976cbe48adacf240c0b7"; + sha256 = "2c6e7c1e9f2ac45b5c2ceea5730bc9008d92fe59d0725eac57b04c0edfba24f7"; }; checkInputs = [ pytest mock glibcLocales ]; From 1665bde5938e738fee6b637815beb6be38cb22c9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:00:04 +0200 Subject: [PATCH 0838/1611] python: numba: 0.44.0 -> 0.45.0 --- pkgs/development/python-modules/numba/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/numba/default.nix b/pkgs/development/python-modules/numba/default.nix index ebb7aac3924..78593e443b1 100644 --- a/pkgs/development/python-modules/numba/default.nix +++ b/pkgs/development/python-modules/numba/default.nix @@ -13,12 +13,12 @@ }: buildPythonPackage rec { - version = "0.44.0"; + version = "0.45.0"; pname = "numba"; src = fetchPypi { inherit pname version; - sha256 = "56421bfc62f3c7c996ff11d5db7fc410909564e41b55379a82b9188fa4aa22f9"; + sha256 = "fcea8dc6f9e0f1ddf7bd52a207858539bc14e893c5ee66d8730c3e5b9344c4b3"; }; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${libcxx}/include/c++/v1"; From 536341c91b96c9b1242bbf8dd320b3864ae5ecf6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:00:38 +0200 Subject: [PATCH 0839/1611] python3Packages.pandas: 0.24.2 -> 0.25.0 --- pkgs/development/python-modules/pandas/2.nix | 122 ++++++++++++++++++ .../python-modules/pandas/default.nix | 4 +- pkgs/top-level/python-packages.nix | 5 +- 3 files changed, 128 insertions(+), 3 deletions(-) create mode 100644 pkgs/development/python-modules/pandas/2.nix diff --git a/pkgs/development/python-modules/pandas/2.nix b/pkgs/development/python-modules/pandas/2.nix new file mode 100644 index 00000000000..6283addcb6e --- /dev/null +++ b/pkgs/development/python-modules/pandas/2.nix @@ -0,0 +1,122 @@ +# Python 2 expression + +{ buildPythonPackage +, fetchPypi +, python +, stdenv +, pytest +, glibcLocales +, cython +, dateutil +, scipy +, moto +, numexpr +, pytz +, xlrd +, bottleneck +, sqlalchemy +, lxml +, html5lib +, beautifulsoup4 +, hypothesis +, openpyxl +, tables +, xlwt +, runtimeShell +, libcxx ? null +}: + +let + inherit (stdenv.lib) optional optionals optionalString; + inherit (stdenv) isDarwin; + +in buildPythonPackage rec { + pname = "pandas"; + version = "0.24.2"; + + src = fetchPypi { + inherit pname version; + sha256 = "18imlm8xbhcbwy4wa957a1fkamrcb0z988z006jpfda3ki09z4ag"; + }; + + checkInputs = [ pytest glibcLocales moto hypothesis ]; + + nativeBuildInputs = [ cython ]; + buildInputs = optional isDarwin libcxx; + propagatedBuildInputs = [ + dateutil + scipy + numexpr + pytz + xlrd + bottleneck + sqlalchemy + lxml + html5lib + beautifulsoup4 + openpyxl + tables + xlwt + ]; + + # For OSX, we need to add a dependency on libcxx, which provides + # `complex.h` and other libraries that pandas depends on to build. + postPatch = optionalString isDarwin '' + cpp_sdk="${libcxx}/include/c++/v1"; + echo "Adding $cpp_sdk to the setup.py common_include variable" + substituteInPlace setup.py \ + --replace "['pandas/src/klib', 'pandas/src']" \ + "['pandas/src/klib', 'pandas/src', '$cpp_sdk']" + ''; + + + disabledTests = stdenv.lib.concatMapStringsSep " and " (s: "not " + s) ([ + # since dateutil 0.6.0 the following fails: test_fallback_plural, test_ambiguous_flags, test_ambiguous_compat + # was supposed to be solved by https://github.com/dateutil/dateutil/issues/321, but is not the case + "test_fallback_plural" + "test_ambiguous_flags" + "test_ambiguous_compat" + # Locale-related + "test_names" + "test_dt_accessor_datetime_name_accessors" + "test_datetime_name_accessors" + # Can't import from test folder + "test_oo_optimizable" + # Disable IO related tests because IO data is no longer distributed + "io" + # KeyError Timestamp + "test_to_excel" + ] ++ optionals isDarwin [ + "test_locale" + "test_clipboard" + ]); + + doCheck = !stdenv.isAarch64; # upstream doesn't test this architecture + + checkPhase = '' + runHook preCheck + '' + # TODO: Get locale and clipboard support working on darwin. + # Until then we disable the tests. + + optionalString isDarwin '' + # Fake the impure dependencies pbpaste and pbcopy + echo "#!${runtimeShell}" > pbcopy + echo "#!${runtimeShell}" > pbpaste + chmod a+x pbcopy pbpaste + export PATH=$(pwd):$PATH + '' + '' + LC_ALL="en_US.UTF-8" py.test $out/${python.sitePackages}/pandas --skip-slow --skip-network -k "$disabledTests" + runHook postCheck + ''; + + meta = { + # https://github.com/pandas-dev/pandas/issues/14866 + # pandas devs are no longer testing i686 so safer to assume it's broken + broken = stdenv.isi686; + homepage = http://pandas.pydata.org/; + description = "Python Data Analysis Library"; + license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ raskin knedlsepp ]; + platforms = stdenv.lib.platforms.unix; + }; +} diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix index 7416717585f..6f1c2c68dd3 100644 --- a/pkgs/development/python-modules/pandas/default.nix +++ b/pkgs/development/python-modules/pandas/default.nix @@ -30,11 +30,11 @@ let in buildPythonPackage rec { pname = "pandas"; - version = "0.24.2"; + version = "0.25.0"; src = fetchPypi { inherit pname version; - sha256 = "18imlm8xbhcbwy4wa957a1fkamrcb0z988z006jpfda3ki09z4ag"; + sha256 = "914341ad2d5b1ea522798efa4016430b66107d05781dbfe7cf05eba8f37df995"; }; checkInputs = [ pytest glibcLocales moto hypothesis ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index bdc8496e2d3..e8eef475250 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3929,7 +3929,10 @@ in { pagerduty = callPackage ../development/python-modules/pagerduty { }; - pandas = callPackage ../development/python-modules/pandas { }; + pandas = if isPy3k then + callPackage ../development/python-modules/pandas { } + else + callPackage ../development/python-modules/pandas/2.nix { }; panel = callPackage ../development/python-modules/panel { }; From 7d0603501a4ea74e33a7604880a61c1fc21257e1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:01:13 +0200 Subject: [PATCH 0840/1611] python: xarray: 0.12.2 -> 0.12.3 --- pkgs/development/python-modules/xarray/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/xarray/default.nix b/pkgs/development/python-modules/xarray/default.nix index 930729c052e..de4be062001 100644 --- a/pkgs/development/python-modules/xarray/default.nix +++ b/pkgs/development/python-modules/xarray/default.nix @@ -10,11 +10,11 @@ buildPythonPackage rec { pname = "xarray"; - version = "0.12.2"; + version = "0.12.3"; src = fetchPypi { inherit pname version; - sha256 = "0wlpyzxdhcc043g9sjbrflky7xwdyq487v64i532zb2fpjskd59s"; + sha256 = "9310e610af988acb57a2627b10025a250bcbe172e66d3750a6dd3b3c5357da56"; }; checkInputs = [ pytest ]; From b038b6db3d28421e71005c6d917dc9ebac908cb7 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:01:40 +0200 Subject: [PATCH 0841/1611] python: toolz: 0.9.0 -> 0.10.0 --- pkgs/development/python-modules/toolz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/toolz/default.nix b/pkgs/development/python-modules/toolz/default.nix index 974e3a43bc7..7f506e56413 100644 --- a/pkgs/development/python-modules/toolz/default.nix +++ b/pkgs/development/python-modules/toolz/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec{ pname = "toolz"; - version = "0.9.0"; + version = "0.10.0"; src = fetchPypi { inherit pname version; - sha256 = "929f0a7ea7f61c178bd951bdae93920515d3fbdbafc8e6caf82d752b9b3b31c9"; + sha256 = "08fdd5ef7c96480ad11c12d472de21acd32359996f69a5259299b540feba4560"; }; checkInputs = [ nose ]; From e18dc13e507c1013e5f5dc004cab72a5d7fe6e8a Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:03:08 +0200 Subject: [PATCH 0842/1611] Revert "pythonPackages.jsonschema: 2.6.0 -> 3.0.1" Too soon. We need to wait till it is better supported. This reverts commit ba4384d8650de330fd218f08e8679e1d486bd1dc. --- .../python-modules/jsonschema/default.nix | 52 ++++++------------- 1 file changed, 16 insertions(+), 36 deletions(-) diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix index dfff4ac4265..db6be9f9918 100644 --- a/pkgs/development/python-modules/jsonschema/default.nix +++ b/pkgs/development/python-modules/jsonschema/default.nix @@ -1,51 +1,31 @@ -{ lib -, buildPythonPackage -, fetchPypi -, attrs -, pyrsistent -, setuptools -, six -, functools32 -, setuptools_scm -, perf -, twisted -, python -}: +{ stdenv, buildPythonPackage, fetchPypi, python +, nose, mock, vcversioner, functools32 }: buildPythonPackage rec { pname = "jsonschema"; - version = "3.0.1"; + version = "2.6.0"; src = fetchPypi { inherit pname version; - sha256 = "03g20i1xfg4qdlk4475pl4pp7y0h37g1fbgs5qhy678q9xb822hc"; + sha256 = "00kf3zmpp9ya4sydffpifn0j0mzm342a2vzh82p6r0vh10cg7xbg"; }; - nativeBuildInputs = [ - setuptools_scm - ]; + checkInputs = [ nose mock vcversioner ]; + propagatedBuildInputs = [ functools32 ]; - propagatedBuildInputs = [ - attrs - pyrsistent - setuptools - six - functools32 - ]; - - checkInputs = [ - twisted - perf - ]; - - checkPhase = '' - ${python.interpreter} setup.py test --test-suite=jsonschema.tests + postPatch = '' + substituteInPlace jsonschema/tests/test_jsonschema_test_suite.py \ + --replace "python" "${python.pythonForBuild.interpreter}" ''; - meta = with lib; { - description = "An implementation of JSON Schema validation for Python"; + checkPhase = '' + nosetests + ''; + + meta = with stdenv.lib; { homepage = https://github.com/Julian/jsonschema; + description = "An implementation of JSON Schema validation for Python"; license = licenses.mit; - maintainers = with maintainers; [ costrouc domenkozar ]; + maintainers = with maintainers; [ domenkozar ]; }; } From 32b76da8449e3db2e78e8ec80356b32b9a9f3622 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:12:31 +0200 Subject: [PATCH 0843/1611] pythonPackages.cmd_2_9: remove alias --- pkgs/top-level/python-packages.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e8eef475250..226fed92f7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3882,8 +3882,7 @@ in { cachetools = callPackage ../development/python-modules/cachetools {}; - cmd2_9 = callPackage ../development/python-modules/cmd2 {}; - cmd2 = self.cmd2_9; + cmd2 = callPackage ../development/python-modules/cmd2 {}; warlock = callPackage ../development/python-modules/warlock { }; From 685386d8d7bba02021ae15b11551084349e7bc34 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:13:03 +0200 Subject: [PATCH 0844/1611] python: tqdm: 4.32.1 -> 4.32.2 --- pkgs/development/python-modules/tqdm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tqdm/default.nix b/pkgs/development/python-modules/tqdm/default.nix index c5701902e08..f6038acc1ca 100644 --- a/pkgs/development/python-modules/tqdm/default.nix +++ b/pkgs/development/python-modules/tqdm/default.nix @@ -9,11 +9,11 @@ buildPythonPackage rec { pname = "tqdm"; - version = "4.32.1"; + version = "4.32.2"; src = fetchPypi { inherit pname version; - sha256 = "0a860bf2683fdbb4812fe539a6c22ea3f1777843ea985cb8c3807db448a0f7ab"; + sha256 = "25d4c0ea02a305a688e7e9c2cdc8f862f989ef2a4701ab28ee963295f5b109ab"; }; buildInputs = [ nose coverage glibcLocales flake8 ]; From 36162c8c999815ef9e929231697845743a5dffde Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 20 Jul 2019 11:19:23 +0200 Subject: [PATCH 0845/1611] python: widgetsnbextension: 3.4.2 -> 3.5.0 --- .../development/python-modules/widgetsnbextension/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/widgetsnbextension/default.nix b/pkgs/development/python-modules/widgetsnbextension/default.nix index ab2bd9c4eb1..b2329f4f963 100644 --- a/pkgs/development/python-modules/widgetsnbextension/default.nix +++ b/pkgs/development/python-modules/widgetsnbextension/default.nix @@ -7,11 +7,11 @@ buildPythonPackage rec { pname = "widgetsnbextension"; - version = "3.4.2"; + version = "3.5.0"; src = fetchPypi { inherit pname version; - sha256 = "fa618be8435447a017fd1bf2c7ae922d0428056cfc7449f7a8641edf76b48265"; + sha256 = "8c9b4d73e388f2484296be18432d3cc0b8d59de243079a0db16a56c5571e1f86"; }; propagatedBuildInputs = [ notebook ]; From 6323cf8a8ceb5d83208ee1757d492583e7d1ea84 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 16:43:43 -0700 Subject: [PATCH 0846/1611] wireshark: 3.0.2 -> 3.0.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wireshark-qt/versions --- pkgs/applications/networking/sniffers/wireshark/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix index ac9fa8f4ce8..643e421625f 100644 --- a/pkgs/applications/networking/sniffers/wireshark/default.nix +++ b/pkgs/applications/networking/sniffers/wireshark/default.nix @@ -10,7 +10,7 @@ assert withQt -> qt5 != null; with stdenv.lib; let - version = "3.0.2"; + version = "3.0.3"; variant = if withQt then "qt" else "cli"; in stdenv.mkDerivation { @@ -20,7 +20,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz"; - sha256 = "0fz5lbyiw4a27fqc4ndi1w20bpcb6wi9k7vjv29l9fhd99kca7ky"; + sha256 = "0711jilp9sbgi46d105m3galw8n4wk5yncawi08031qxg2f754mg"; }; cmakeFlags = [ From 7e55f6e013818e7d4bcc724bbf9525cfa9ee9aba Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Sun, 21 Jul 2019 17:02:21 +0900 Subject: [PATCH 0847/1611] astroid: 0.14 -> 0.15 --- .../applications/networking/mailreaders/astroid/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/astroid/default.nix b/pkgs/applications/networking/mailreaders/astroid/default.nix index 58797800deb..23bed01907e 100644 --- a/pkgs/applications/networking/mailreaders/astroid/default.nix +++ b/pkgs/applications/networking/mailreaders/astroid/default.nix @@ -10,14 +10,14 @@ }: stdenv.mkDerivation rec { - name = "astroid-${version}"; - version = "0.14"; + pname = "astroid"; + version = "0.15"; src = fetchFromGitHub { owner = "astroidmail"; repo = "astroid"; rev = "v${version}"; - sha256 = "1wkv1icsx3g3gq485dnvcdhr9srrjgz4ws1i1krcw9n61bj7gxh8"; + sha256 = "11cxbva9ni98gii59xmbxh4c6idcg3mg0pgdsp1c3j0yg7ix0lj3"; }; nativeBuildInputs = [ cmake ronn pkgconfig wrapGAppsHook ]; From 94ae9f4ed542d5171104f551919b8db936123147 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:20:00 -0500 Subject: [PATCH 0848/1611] pythonPackages.pytest-testmon: 0.9.16 -> 0.9.18 --- pkgs/development/python-modules/pytest-testmon/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pytest-testmon/default.nix b/pkgs/development/python-modules/pytest-testmon/default.nix index 1a4cc260ff4..17fb56a0588 100644 --- a/pkgs/development/python-modules/pytest-testmon/default.nix +++ b/pkgs/development/python-modules/pytest-testmon/default.nix @@ -7,11 +7,11 @@ buildPythonPackage rec { pname = "pytest-testmon"; - version = "0.9.16"; + version = "0.9.18"; src = fetchPypi { inherit pname version; - sha256 = "df00594e55f8f8f826e0e345dc23863ebac066eb749f8229c515a0373669c5bb"; + sha256 = "05648f9b22aeeda9d32e61b46fa78c9ff28f217d69005b3b19ffb75d5992187e"; }; buildInputs = [ pytest ]; @@ -21,7 +21,7 @@ buildPythonPackage rec { checkInputs = [ pytest ]; checkPhase = '' - pytest test + pytest --deselect=test/test_testmon.py::TestmonDeselect::test_dependent_testmodule ''; meta = with lib; { From 5ac577f1a25235b8093eaa10a70a6e2ca6c61c7a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:21:00 -0500 Subject: [PATCH 0849/1611] pythonPackages.tempora: enable tests --- pkgs/development/python-modules/tempora/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/tempora/default.nix b/pkgs/development/python-modules/tempora/default.nix index 861054ed948..10de193866b 100644 --- a/pkgs/development/python-modules/tempora/default.nix +++ b/pkgs/development/python-modules/tempora/default.nix @@ -1,5 +1,5 @@ { lib, buildPythonPackage, fetchPypi -, setuptools_scm +, setuptools_scm, pytest, freezegun, backports_unittest-mock , six, pytz, jaraco_functools }: buildPythonPackage rec { @@ -11,12 +11,17 @@ buildPythonPackage rec { sha256 = "cb60b1d2b1664104e307f8e5269d7f4acdb077c82e35cd57246ae14a3427d2d6"; }; - doCheck = false; - buildInputs = [ setuptools_scm ]; propagatedBuildInputs = [ six pytz jaraco_functools ]; + checkInputs = [ pytest freezegun backports_unittest-mock ]; + + checkPhase = '' + substituteInPlace pytest.ini --replace "--flake8" "" + pytest + ''; + meta = with lib; { description = "Objects and routines pertaining to date and time"; homepage = https://github.com/jaraco/tempora; From 1ac3350c57b16e80a57c920516fc826f46e8c6ad Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:22:00 -0500 Subject: [PATCH 0850/1611] pythonPackages.portend: fix build --- pkgs/development/python-modules/portend/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/portend/default.nix b/pkgs/development/python-modules/portend/default.nix index a8dc0e9907a..5da7a7941c0 100644 --- a/pkgs/development/python-modules/portend/default.nix +++ b/pkgs/development/python-modules/portend/default.nix @@ -21,7 +21,7 @@ buildPythonPackage rec { checkInputs = [ pytest ]; checkPhase = '' - py.test + py.test --deselect=test_portend.py::TestChecker::test_check_port_listening ''; meta = with stdenv.lib; { From f036eb62a9644035a4061f91ec7db9c2a399342b Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:23:00 -0500 Subject: [PATCH 0851/1611] pythonPackages.backports_functools_lru_cache: enable tests --- .../backports_functools_lru_cache/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/backports_functools_lru_cache/default.nix b/pkgs/development/python-modules/backports_functools_lru_cache/default.nix index bcaa844720b..2a8b5e7960d 100644 --- a/pkgs/development/python-modules/backports_functools_lru_cache/default.nix +++ b/pkgs/development/python-modules/backports_functools_lru_cache/default.nix @@ -2,10 +2,11 @@ , buildPythonPackage , fetchPypi , setuptools_scm -, pythonOlder +, isPy3k +, pytest }: -if !(pythonOlder "3.3") then null else buildPythonPackage rec { +buildPythonPackage rec { pname = "backports.functools_lru_cache"; version = "1.5"; @@ -15,7 +16,15 @@ if !(pythonOlder "3.3") then null else buildPythonPackage rec { }; buildInputs = [ setuptools_scm ]; - doCheck = false; # No proper test + + checkInputs = [ pytest ]; + + checkPhase = '' + pytest + ''; + + # Test fail on Python 2 + doCheck = isPy3k; meta = { description = "Backport of functools.lru_cache"; From 8e04c3cbf10a206ad6a3a01d70725a281924c1f3 Mon Sep 17 00:00:00 2001 From: Florian Engel Date: Wed, 10 Apr 2019 17:38:33 +0200 Subject: [PATCH 0852/1611] lolcat: 99.9.69 -> 99.9.99 --- pkgs/tools/misc/lolcat/Gemfile.lock | 2 +- pkgs/tools/misc/lolcat/gemset.nix | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/lolcat/Gemfile.lock b/pkgs/tools/misc/lolcat/Gemfile.lock index fbb9b673dbc..f6aa88bbdea 100644 --- a/pkgs/tools/misc/lolcat/Gemfile.lock +++ b/pkgs/tools/misc/lolcat/Gemfile.lock @@ -1,7 +1,7 @@ GEM remote: https://rubygems.org/ specs: - lolcat (99.9.69) + lolcat (99.9.99) manpages (~> 0.6.1) optimist (~> 3.0.0) paint (~> 2.0.0) diff --git a/pkgs/tools/misc/lolcat/gemset.nix b/pkgs/tools/misc/lolcat/gemset.nix index cfd2467d922..f21e5637993 100644 --- a/pkgs/tools/misc/lolcat/gemset.nix +++ b/pkgs/tools/misc/lolcat/gemset.nix @@ -5,10 +5,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0d1yh2ikyhyh7am4qznd6fzv2pyvk82xrnsrsbbyxzcqfz9x6aa9"; + sha256 = "0422869sf6hif1nrfzi8fwklnrdqj6hxxwg3403xvd9d50yndrn4"; type = "gem"; }; - version = "99.9.69"; + version = "99.9.99"; }; manpages = { groups = ["default"]; @@ -40,4 +40,4 @@ }; version = "2.0.3"; }; -} \ No newline at end of file +} From e4230452beb5b1dbdc9e11d44d330f912c3fe8c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 21 Jul 2019 15:08:05 +0100 Subject: [PATCH 0853/1611] teamspeak_server: add missing libstdc++ Also convert to autoPatchelfHook. --- .../instant-messengers/teamspeak/server.nix | 48 +++++-------------- 1 file changed, 12 insertions(+), 36 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix index fe1903af588..08561f97866 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, makeWrapper }: +{ stdenv, fetchurl, makeWrapper, autoPatchelfHook }: let version = "3.8.0"; @@ -19,44 +19,20 @@ stdenv.mkDerivation { else "0s835dnaw662sb2v5ahqiwry0qjcpl7ff9krnhbw2iblsbqis3fj"; }; - buildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper autoPatchelfHook ]; - buildPhase = - '' - echo "patching ts3server" - patchelf \ - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $(cat $NIX_CC/nix-support/orig-cc)/${libDir} \ - --force-rpath \ - ts3server - cp tsdns/tsdnsserver tsdnsserver - patchelf \ - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $(cat $NIX_CC/nix-support/orig-cc)/${libDir} \ - --force-rpath \ - tsdnsserver - ''; + buildInputs = [ stdenv.cc.cc ]; - installPhase = - '' - # Delete unecessary libraries - these are provided by nixos. - #rm *.so* + installPhase = '' + # Install files. + mkdir -p $out/lib/teamspeak + mv * $out/lib/teamspeak/ - # Install files. - mkdir -p $out/lib/teamspeak - mv * $out/lib/teamspeak/ - - # Make symlinks to the binaries from bin. - mkdir -p $out/bin/ - ln -s $out/lib/teamspeak/ts3server $out/bin/ts3server - ln -s $out/lib/teamspeak/tsdnsserver $out/bin/tsdnsserver - - wrapProgram $out/lib/teamspeak/ts3server --prefix LD_LIBRARY_PATH : $out/lib/teamspeak - wrapProgram $out/lib/teamspeak/tsdnsserver --prefix LD_LIBRARY_PATH : $out/lib/tsdnsserver - ''; - - dontStrip = true; - dontPatchELF = true; + # Make symlinks to the binaries from bin. + mkdir -p $out/bin/ + ln -s $out/lib/teamspeak/ts3server $out/bin/ts3server + ln -s $out/lib/teamspeak/tsdnsserver $out/bin/tsdnsserver + ''; meta = { description = "TeamSpeak voice communication server"; From f75fdd5c774037ea7cf9adef59964a449c1c6dd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 21 Jul 2019 15:15:02 +0100 Subject: [PATCH 0854/1611] teamspeak_server: fix 32-bit checksum --- .../networking/instant-messengers/teamspeak/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix index 08561f97866..40d23112369 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { ]; sha256 = if stdenv.is64bit then "1bzmqqqpwn6q2pvkrkkxq0ggs8crxbkwaxlggcdxjlyg95cyq8k1" - else "0s835dnaw662sb2v5ahqiwry0qjcpl7ff9krnhbw2iblsbqis3fj"; + else "0p5rqwdsvbria5dzjjm5mj8vfy0zpfs669wpbwxd4g3n4vh03kyw"; }; nativeBuildInputs = [ makeWrapper autoPatchelfHook ]; From 92c4bc010888941d9d28b9a98a06209f0b8b65c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 21 Jul 2019 15:21:07 +0100 Subject: [PATCH 0855/1611] teamspeak: remove unnecessary makeWrapper --- .../instant-messengers/teamspeak/server.nix | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix index 40d23112369..21a98676290 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/server.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/server.nix @@ -1,13 +1,10 @@ -{ stdenv, fetchurl, makeWrapper, autoPatchelfHook }: +{ stdenv, fetchurl, autoPatchelfHook }: let - version = "3.8.0"; arch = if stdenv.is64bit then "amd64" else "x86"; - libDir = if stdenv.is64bit then "lib64" else "lib"; -in - -stdenv.mkDerivation { - name = "teamspeak-server-${version}"; +in stdenv.mkDerivation rec { + pname = "teamspeak-server"; + version = "3.8.0"; src = fetchurl { urls = [ @@ -19,10 +16,10 @@ stdenv.mkDerivation { else "0p5rqwdsvbria5dzjjm5mj8vfy0zpfs669wpbwxd4g3n4vh03kyw"; }; - nativeBuildInputs = [ makeWrapper autoPatchelfHook ]; - buildInputs = [ stdenv.cc.cc ]; + nativeBuildInputs = [ autoPatchelfHook ]; + installPhase = '' # Install files. mkdir -p $out/lib/teamspeak From 1c9a2d4d7f2525bda7ceb9f342b217f5dc6254ae Mon Sep 17 00:00:00 2001 From: edef Date: Wed, 19 Jun 2019 12:14:46 +0000 Subject: [PATCH 0856/1611] nixos/programs/ssh: allow specifying known host CAs --- nixos/modules/programs/ssh.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index 46965dd35b7..18b183eca9e 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -21,7 +21,7 @@ let knownHostsText = (flip (concatMapStringsSep "\n") knownHosts (h: assert h.hostNames != []; - concatStringsSep "," h.hostNames + " " + optionalString h.certAuthority "@cert-authority " + concatStringsSep "," h.hostNames + " " + (if h.publicKey != null then h.publicKey else readFile h.publicKeyFile) )) + "\n"; @@ -128,6 +128,14 @@ in default = {}; type = types.loaOf (types.submodule ({ name, ... }: { options = { + certAuthority = mkOption { + type = types.bool; + default = false; + description = '' + This public key is an SSH certificate authority, rather than an + individual host's key. + ''; + }; hostNames = mkOption { type = types.listOf types.str; default = []; From 2b4495246a7127e1b145207e24a7f5c49834b4ea Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:24:00 -0500 Subject: [PATCH 0857/1611] pythonPackages.setuptools-scm-git-archive: init at 1.1 --- .../setuptools-scm-git-archive/default.nix | 23 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/python-modules/setuptools-scm-git-archive/default.nix diff --git a/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix b/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix new file mode 100644 index 00000000000..9c08871339a --- /dev/null +++ b/pkgs/development/python-modules/setuptools-scm-git-archive/default.nix @@ -0,0 +1,23 @@ +{ stdenv, buildPythonPackage, fetchPypi, setuptools_scm, pytest }: + +buildPythonPackage rec { + pname = "setuptools-scm-git-archive"; + version = "1.1"; + + src = fetchPypi { + inherit version; + pname = "setuptools_scm_git_archive"; + sha256 = "6026f61089b73fa1b5ee737e95314f41cb512609b393530385ed281d0b46c062"; + }; + + nativeBuildInputs = [ setuptools_scm ]; + + checkInputs = [ pytest ]; + + meta = with stdenv.lib; { + description = "setuptools_scm plugin for git archives"; + homepage = "https://github.com/Changaco/setuptools_scm_git_archive"; + license = licenses.mit; + maintainers = [ maintainers.marsam ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cc3e62d2da..26592e08457 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4651,6 +4651,8 @@ in { setuptools_scm = callPackage ../development/python-modules/setuptools_scm { }; + setuptools-scm-git-archive = callPackage ../development/python-modules/setuptools-scm-git-archive { }; + serverlessrepo = callPackage ../development/python-modules/serverlessrepo { }; shippai = callPackage ../development/python-modules/shippai {}; From 8a83fb70d01a953ef72293e0034474a5a93ef3c0 Mon Sep 17 00:00:00 2001 From: Lengyel Balazs Date: Sun, 21 Jul 2019 20:47:01 +0200 Subject: [PATCH 0858/1611] wine-mono: 4.8.3 -> 4.9.0 --- pkgs/misc/emulators/wine/sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index e4958b8cfc3..417263d277a 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -31,9 +31,9 @@ in rec { ## see http://wiki.winehq.org/Mono mono = fetchurl rec { - version = "4.8.3"; + version = "4.9.0"; url = "http://dl.winehq.org/wine/wine-mono/${version}/wine-mono-${version}.msi"; - sha256 = "0xhavcjwwr21am3bxp2cxlvykwasw8y4g8p470j5fg7skc0izynn"; + sha256 = "04y7w57cgay74227qci1bjbzwvclkawwljqvgd7a5yhhdz7cfblf"; }; }; From a031a1f4b8ba956e5b16c72dbd1d65efb0c0986f Mon Sep 17 00:00:00 2001 From: Lengyel Balazs Date: Sun, 21 Jul 2019 20:47:52 +0200 Subject: [PATCH 0859/1611] wine: 4.9 -> 4.12.1 --- pkgs/misc/emulators/wine/sources.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index 417263d277a..41f3813b94b 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -39,16 +39,16 @@ in rec { unstable = fetchurl rec { # NOTE: Don't forget to change the SHA256 for staging as well. - version = "4.9"; + version = "4.12.1"; url = "https://dl.winehq.org/wine/source/4.x/wine-${version}.tar.xz"; - sha256 = "16vrzhhk0x862mfhninx5515s76j2kbjgmz7gzdigjzkzwi8x14i"; + sha256 = "09yjfb2k14y11k19lm8dqmb8qwxyhh67d5q1gqv480y64mljvkx0"; inherit (stable) mono gecko32 gecko64; }; staging = fetchFromGitHub rec { # https://github.com/wine-staging/wine-staging/releases inherit (unstable) version; - sha256 = "17v66rsxvm3grglidxxzllw4msfrgwg35hmzanvrf8x8jfzjlvv2"; + sha256 = "1bvpvj6vcw2p6vcjm6mw5maarbs4lfw1ix3pj020w4n3kg4nmmc4"; owner = "wine-staging"; repo = "wine-staging"; rev = "v${version}"; From 9b6ddb3c2bd7c0214f008809c588ed9e5451a6cc Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:25:00 -0500 Subject: [PATCH 0860/1611] pythonPackages.cheroot: 6.3.3 -> 6.5.5 --- .../python-modules/cheroot/default.nix | 35 +++++++------------ 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/pkgs/development/python-modules/cheroot/default.nix b/pkgs/development/python-modules/cheroot/default.nix index 08a455eb40c..96602c624a4 100644 --- a/pkgs/development/python-modules/cheroot/default.nix +++ b/pkgs/development/python-modules/cheroot/default.nix @@ -1,39 +1,30 @@ -{ stdenv, fetchPypi, buildPythonPackage, fetchpatch -, more-itertools, six -, pytest, pytestcov, portend -, backports_unittest-mock +{ stdenv, fetchPypi, buildPythonPackage +, more-itertools, six, setuptools_scm, setuptools-scm-git-archive +, pytest, pytestcov, portend, pytest-testmon, pytest-mock +, backports_unittest-mock, pyopenssl, requests, trustme, requests-unixsocket , backports_functools_lru_cache }: buildPythonPackage rec { pname = "cheroot"; - version = "6.3.3"; + version = "6.5.5"; src = fetchPypi { inherit pname version; - sha256 = "8e3ac15e1efffc81425a693e99b3c09d7ea4bf947255d8d4c38e2cf76f3a4d25"; + sha256 = "f6a85e005adb5bc5f3a92b998ff0e48795d4d98a0fbb7edde47a7513d4100601"; }; - patches = fetchpatch { - name = "cheroot-fix-setup-python3.patch"; - url = "https://git.archlinux.org/svntogit/community.git/plain/trunk/cheroot-fix-setup-python3.patch?h=packages/python-cheroot&id=9b33cb0885b3c0d91adeacae23761a4321eb0e64"; - sha256 = "1rlgz0qln536y00mfqlf0i9hz3f53id73wh47cg5q2vcsw1w2bpc"; - }; + nativeBuildInputs = [ setuptools_scm setuptools-scm-git-archive ]; propagatedBuildInputs = [ more-itertools six backports_functools_lru_cache ]; - checkInputs = [ pytest pytestcov portend backports_unittest-mock ]; - -# Disable testmon, it needs pytest-testmon, which we do not currently have in nikpkgs, -# and is only used to skip some tests that are already known to work. - postPatch = '' - substituteInPlace "./pytest.ini" --replace "--testmon" "" - substituteInPlace setup.py --replace "use_scm_version=True" "version=\"${version}\"" \ - --replace "'setuptools_scm>=1.15.0'," "" \ - --replace "'setuptools_scm_git_archive>=1.0'," "" \ - ''; + checkInputs = [ pytest pytestcov portend backports_unittest-mock pytest-mock pytest-testmon pyopenssl requests trustme requests-unixsocket ]; + # Disable doctest plugin because times out + # Deselect test_bind_addr_unix on darwin because times out + # Deselect test_http_over_https_error on darwin because builtin cert fails checkPhase = '' - py.test cheroot + substituteInPlace pytest.ini --replace "--doctest-modules" "" + pytest ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cheroot/test/test_ssl.py::test_http_over_https_error --deselect=cheroot/test/test_server.py::test_bind_addr_unix"} ''; meta = with stdenv.lib; { From 2354898cb2cda819c3a930b86fc1e8902ab819c4 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:26:00 -0500 Subject: [PATCH 0861/1611] pythonPackages.cherrypy: 17.4.1 -> 17.4.2 --- pkgs/development/python-modules/cherrypy/17.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/cherrypy/17.nix b/pkgs/development/python-modules/cherrypy/17.nix index daeb6ca4526..d9b9166e0f0 100644 --- a/pkgs/development/python-modules/cherrypy/17.nix +++ b/pkgs/development/python-modules/cherrypy/17.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi +{ stdenv, buildPythonPackage, fetchPypi , setuptools_scm , cheroot, contextlib2, portend, routes, six, zc_lockfile , backports_unittest-mock, objgraph, pathpy, pytest, pytestcov, backports_functools_lru_cache, requests_toolbelt @@ -6,12 +6,12 @@ buildPythonPackage rec { pname = "cherrypy"; - version = "17.4.1"; + version = "17.4.2"; src = fetchPypi { pname = "CherryPy"; inherit version; - sha256 = "1kl17anzz535jgkn9qcy0c2m0zlafph0iv7ph3bb9mfrs2bgvagv"; + sha256 = "ef1619ad161f526745d4f0e4e517753d9d985814f1280e330661333d2ba05cdf"; }; propagatedBuildInputs = [ @@ -25,10 +25,10 @@ buildPythonPackage rec { ]; checkPhase = '' - pytest + pytest ${stdenv.lib.optionalString stdenv.isDarwin "--ignore=cherrypy/test/test_wsgi_unix_socket.py"} ''; - meta = with lib; { + meta = with stdenv.lib; { homepage = https://www.cherrypy.org; description = "A pythonic, object-oriented HTTP framework"; license = licenses.bsd3; From d57d67e1c48bf427524ac675540b3d5c7e43db42 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sun, 21 Jul 2019 04:27:00 -0500 Subject: [PATCH 0862/1611] python3Packages.cherrypy: fix build --- pkgs/development/python-modules/cherrypy/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/cherrypy/default.nix b/pkgs/development/python-modules/cherrypy/default.nix index a0c8d24889d..75152d39aeb 100644 --- a/pkgs/development/python-modules/cherrypy/default.nix +++ b/pkgs/development/python-modules/cherrypy/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, isPy3k +{ stdenv, buildPythonPackage, fetchPypi, isPy3k , setuptools_scm , cheroot, portend, more-itertools, zc_lockfile, routes , objgraph, pytest, pytestcov, pathpy, requests_toolbelt, pytest-services @@ -29,11 +29,13 @@ buildPythonPackage rec { objgraph pytest pytestcov pathpy requests_toolbelt pytest-services ]; + # Disable doctest plugin because times out checkPhase = '' - pytest + substituteInPlace pytest.ini --replace "--doctest-modules" "" + pytest --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes ${stdenv.lib.optionalString stdenv.isDarwin "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"} ''; - meta = with lib; { + meta = with stdenv.lib; { homepage = https://www.cherrypy.org; description = "A pythonic, object-oriented HTTP framework"; license = licenses.bsd3; From 8438e3e67f05f2600e2def07f5cc58ae214b6267 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 21 Jul 2019 15:04:45 -0400 Subject: [PATCH 0863/1611] gtk3: don't multiout demos --- pkgs/development/libraries/gtk+/3.x.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 8c3df083087..d814bb58fbc 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -154,17 +154,13 @@ stdenv.mkDerivation rec { done ''; - # Make all demo related things in dev - postFixup = '' - moveToOutput share/icons/hicolor "$dev" - moveToOutput share/applications "$dev" - moveToOutput share/gsettings-schemas "$dev" - + # Wrap demos + postFixup = optionalString (!stdenv.isDarwin) '' demos=(gtk3-demo gtk3-demo-application gtk3-icon-browser gtk3-widget-factory) for program in ''${demos[@]}; do wrapProgram $dev/bin/$program \ - --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$dev/share/gsettings-schemas/${pname}-${version}" + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share/gsettings-schemas/${pname}-${version}" done ''; From caa0f82bf8a0bf7712c9c004be45380ce6e78dd3 Mon Sep 17 00:00:00 2001 From: Danylo Hlynskyi Date: Sun, 21 Jul 2019 22:05:41 +0300 Subject: [PATCH 0864/1611] docs: update docs for postgresql plugins (#64899) docs: update docs for postgresql plugins Co-Authored-By: Mario Rodas --- .../modules/services/databases/postgresql.nix | 40 +++-------- .../modules/services/databases/postgresql.xml | 70 ++++++++++++++++++- pkgs/servers/sql/postgresql/default.nix | 3 + 3 files changed, 80 insertions(+), 33 deletions(-) diff --git a/nixos/modules/services/databases/postgresql.nix b/nixos/modules/services/databases/postgresql.nix index bc47e7e1e0d..37d44e30fbe 100644 --- a/nixos/modules/services/databases/postgresql.nix +++ b/nixos/modules/services/databases/postgresql.nix @@ -6,26 +6,10 @@ let cfg = config.services.postgresql; - # see description of extraPlugins - postgresqlAndPlugins = pg: - if cfg.extraPlugins == [] then pg - else pkgs.buildEnv { - name = "postgresql-and-plugins-${(builtins.parseDrvName pg.name).version}"; - paths = [ pg pg.lib ] ++ cfg.extraPlugins; - # We include /bin to ensure the $out/bin directory is created which is - # needed because we'll be removing files from that directory in postBuild - # below. See #22653 - pathsToLink = [ "/" "/bin" ]; - buildInputs = [ pkgs.makeWrapper ]; - postBuild = - '' - rm $out/bin/{pg_config,postgres,pg_ctl} - cp --target-directory=$out/bin ${pg}/bin/{postgres,pg_config,pg_ctl} - wrapProgram $out/bin/postgres --set NIX_PGLIBDIR $out/lib - ''; - }; - - postgresql = postgresqlAndPlugins cfg.package; + postgresql = + if cfg.extraPlugins == [] + then cfg.package + else cfg.package.withPackages (_: cfg.extraPlugins); # The main PostgreSQL configuration file. configFile = pkgs.writeText "postgresql.conf" @@ -58,7 +42,7 @@ in package = mkOption { type = types.package; - example = literalExample "pkgs.postgresql_9_6"; + example = literalExample "pkgs.postgresql_11"; description = '' PostgreSQL package to use. ''; @@ -74,7 +58,7 @@ in dataDir = mkOption { type = types.path; - example = "/var/lib/postgresql/9.6"; + example = "/var/lib/postgresql/11"; description = '' Data directory for PostgreSQL. ''; @@ -195,17 +179,11 @@ in extraPlugins = mkOption { type = types.listOf types.path; default = []; - example = literalExample "[ (pkgs.postgis.override { postgresql = pkgs.postgresql_9_4; }) ]"; + example = literalExample "with pkgs.postgresql_11.pkgs; [ postgis pg_repack ]"; description = '' - When this list contains elements a new store path is created. - PostgreSQL and the elements are symlinked into it. Then pg_config, - postgres and pg_ctl are copied to make them use the new - $out/lib directory as pkglibdir. This makes it possible to use postgis - without patching the .sql files which reference $libdir/postgis-1.5. + List of PostgreSQL plugins. PostgreSQL version for each plugin should + match version for services.postgresql.package value. ''; - # Note: the duplication of executables is about 4MB size. - # So a nicer solution was patching postgresql to allow setting the - # libdir explicitely. }; extraConfig = mkOption { diff --git a/nixos/modules/services/databases/postgresql.xml b/nixos/modules/services/databases/postgresql.xml index 00bb02dcc5b..02db47568d3 100644 --- a/nixos/modules/services/databases/postgresql.xml +++ b/nixos/modules/services/databases/postgresql.xml @@ -27,10 +27,10 @@ configuration.nix: = true; - = pkgs.postgresql_9_4; + = pkgs.postgresql_11; Note that you are required to specify the desired version of PostgreSQL - (e.g. pkgs.postgresql_9_4). Since upgrading your + (e.g. pkgs.postgresql_11). Since upgrading your PostgreSQL version requires a database dump and reload (see below), NixOS cannot provide a default value for such as the most recent @@ -74,4 +74,70 @@ Type "help" for help. here. +
+ Plugins + + + Plugins collection for each PostgreSQL version can be accessed with + .pkgs. For example, for + pkgs.postgresql_11 package, its plugin collection is + accessed by pkgs.postgresql_11.pkgs: + +$ nix repl '<nixpkgs>' + +Loading '<nixpkgs>'... +Added 10574 variables. + +nix-repl> postgresql_11.pkgs.<TAB><TAB> +postgresql_11.pkgs.cstore_fdw postgresql_11.pkgs.pg_repack +postgresql_11.pkgs.pg_auto_failover postgresql_11.pkgs.pg_safeupdate +postgresql_11.pkgs.pg_bigm postgresql_11.pkgs.pg_similarity +postgresql_11.pkgs.pg_cron postgresql_11.pkgs.pg_topn +postgresql_11.pkgs.pg_hll postgresql_11.pkgs.pgjwt +postgresql_11.pkgs.pg_partman postgresql_11.pkgs.pgroonga +... + + + + To add plugins via NixOS configuration, set services.postgresql.extraPlugins: + + = pkgs.postgresql_11; + = with pkgs.postgresql_11.pkgs; [ + pg_repack + postgis +]; + + + + You can build custom PostgreSQL-with-plugins (to be used outside of NixOS) using + function .withPackages. For example, creating a custom + PostgreSQL package in an overlay can look like: + +self: super: { + postgresql_custom = self.postgresql_11.withPackages (ps: [ + ps.pg_repack + ps.postgis + ]); +} + + + + Here's a recipe on how to override a particular plugin through an overlay: + +self: super: { + postgresql_11 = super.postgresql_11.override { this = self.postgresql_11; } // { + pkgs = super.postgresql_11.pkgs // { + pg_repack = super.postgresql_11.pkgs.pg_repack.overrideAttrs (_: { + name = "pg_repack-v20181024"; + src = self.fetchzip { + url = "https://github.com/reorg/pg_repack/archive/923fa2f3c709a506e111cc963034bf2fd127aa00.tar.gz"; + sha256 = "17k6hq9xaax87yz79j773qyigm4fwk8z4zh5cyp6z0sxnwfqxxw5"; + }; + }); + }; + }; +} + + +
diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 440ee15a518..774ed62a11a 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -151,6 +151,9 @@ let # below. See #22653 pathsToLink = ["/" "/bin"]; + # Note: the duplication of executables is about 4MB size. + # So a nicer solution was patching postgresql to allow setting the + # libdir explicitely. postBuild = '' mkdir -p $out/bin rm $out/bin/{pg_config,postgres,pg_ctl} From 943baed7885c0fd7e841a0c1594ea044bb21e77f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niklas=20Hamb=C3=BCchen?= Date: Sun, 21 Jul 2019 21:13:06 +0200 Subject: [PATCH 0865/1611] postgresql: Make systemd support configurable. See #61580. (#61581) On by default, as was before. The systemd dependency means that all libraries or applications using only libpq will also pull systemd into their closures. Further, no application or library using libpq can be built against musl, as systemd relies on glibc-only features and thus does not build with musl. With it being configurable, packages that need only the library can at least turn it off to reduce their closure size. --- pkgs/servers/sql/postgresql/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 774ed62a11a..6e2c928837c 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -6,6 +6,9 @@ let , glibc, zlib, readline, openssl, icu, systemd, libossp_uuid , pkgconfig, libxml2, tzdata + # This is important to obtain a version of `libpq` that does not depend on systemd. + , enableSystemd ? (lib.versionAtLeast "9.6" version && !stdenv.isDarwin) + # for postgreql.pkgs , this, self, newScope, buildEnv @@ -31,7 +34,7 @@ let buildInputs = [ zlib readline openssl libxml2 makeWrapper ] ++ lib.optionals icuEnabled [ icu ] - ++ lib.optionals (atLeast "9.6" && !stdenv.isDarwin) [ systemd ] + ++ lib.optionals enableSystemd [ systemd ] ++ lib.optionals (!stdenv.isDarwin) [ libossp_uuid ]; nativeBuildInputs = lib.optionals icuEnabled [ pkgconfig ]; @@ -51,7 +54,7 @@ let "--sysconfdir=/etc" "--libdir=$(lib)/lib" "--with-system-tzdata=${tzdata}/share/zoneinfo" - (lib.optionalString (atLeast "9.6" && !stdenv.isDarwin) "--with-systemd") + (lib.optionalString enableSystemd "--with-systemd") (if stdenv.isDarwin then "--with-uuid=e2fs" else "--with-ossp-uuid") ] ++ lib.optionals icuEnabled [ "--with-icu" ]; From 543ef567d9787f3979058fe00780992ab2ef0a6d Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 21 Jul 2019 15:32:43 +0200 Subject: [PATCH 0866/1611] prometheus-wireguard-exporter: 2.0.1 -> 3.0.0 Two new releases are available: * https://github.com/MindFlavor/prometheus_wireguard_exporter/releases/tag/3.0.0 * https://github.com/MindFlavor/prometheus_wireguard_exporter/releases/tag/2.0.2 The main new feature is that the exporter exposes all allowed ips and subnets. --- nixos/tests/prometheus-exporters.nix | 3 ++- pkgs/servers/monitoring/prometheus/wireguard-exporter.nix | 8 +++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index 90c7c9701f6..9a85501d15f 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -331,11 +331,12 @@ let inherit (snakeoil.peer1) publicKey; }; }; + systemd.services.prometheus-wireguard-exporter.after = [ "wireguard-wg0.service" ]; }; exporterTest = '' waitForUnit("prometheus-wireguard-exporter.service"); waitForOpenPort(9586); - succeed("curl -sSf http://localhost:9586/metrics | grep '${snakeoil.peer1.publicKey}'"); + waitUntilSucceeds("curl -sSf http://localhost:9586/metrics | grep '${snakeoil.peer1.publicKey}'"); ''; }; }; diff --git a/pkgs/servers/monitoring/prometheus/wireguard-exporter.nix b/pkgs/servers/monitoring/prometheus/wireguard-exporter.nix index 77bc187e357..52620478339 100644 --- a/pkgs/servers/monitoring/prometheus/wireguard-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/wireguard-exporter.nix @@ -2,21 +2,19 @@ rustPlatform.buildRustPackage rec { pname = "wireguard-exporter"; - version = "2.0.1"; + version = "3.0.0"; src = fetchFromGitHub { owner = "MindFlavor"; repo = "prometheus_wireguard_exporter"; rev = version; - sha256 = "11yrry8fzalcigqsx1wx371w543gdcsx48fd7dacbrsfl2dk2azp"; + sha256 = "1vgwsg81xcxh7pcdc667mfviwwpzsm4lpllykf78vfahi9qmwffn"; }; - cargoSha256 = "1wnk39p144zjsdhnyjk6y41xs448bxnbbxkqk53r6i2f2wzrsk2m"; + cargoSha256 = "06s9194lvwd7lynxnsrjfbjfj87ngvjbqjhx3idf7d1w9mgi4ysw"; buildInputs = lib.optional stdenv.isDarwin Security; - doCheck = false; - meta = with lib; { description = "A Prometheus exporter for WireGuard, written in Rust."; license = licenses.mit; From 7095bdf9889cc0e412ab6d2270d3c671c39fe70a Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 21 Jul 2019 15:41:51 +0200 Subject: [PATCH 0867/1611] nixos/prometheus-exporters/wireguard: add support for `-s` switch Since version 3.0 all allowed IPs and subnets are exposed by the exporter. With `-s` set on the CLI, instead of a comma-separated list, each allowed IP and subnet will be in a single field with the schema `allowed_ip_`. --- .../monitoring/prometheus/exporters/wireguard.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix index c5b84e574b8..eae7a61297d 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix @@ -23,12 +23,24 @@ in { to set the peers up. ''; }; + + singleSubnetPerField = mkOption { + type = types.bool; + default = false; + description = '' + By default, all allowed IPs and subnets are comma-separated in the + allowed_ips field. With this option enabled, + a single IP and subnet will be listed in fields like allowed_ip_0, + allowed_ip_1 and so on. + ''; + }; }; serviceOpts = { script = '' ${pkgs.prometheus-wireguard-exporter}/bin/prometheus_wireguard_exporter \ -p ${toString cfg.port} \ ${optionalString cfg.verbose "-v"} \ + ${optionalString cfg.singleSubnetPerField "-s"} \ ${optionalString (cfg.wireguardConfig != null) "-n ${cfg.wireguardConfig}"} ''; From 2c55fe18bacb4634faa1ee4ea02898a626df42ee Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Sun, 21 Jul 2019 22:20:35 +0200 Subject: [PATCH 0868/1611] phpPackages.mailparse: 3.0.2 -> 3.0.3 Mailparse 3.0.3 adds PHP 7.3 compatibility. --- pkgs/top-level/php-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index 080754b4b1f..3b7bb5692a2 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -189,11 +189,11 @@ let buildInputs = [ (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ]; }; - mailparse = assert !isPhp73; buildPecl rec { - version = "3.0.2"; + mailparse = buildPecl rec { + version = "3.0.3"; pname = "mailparse"; - sha256 = "0fw447ralqihsjnn0fm2hkaj8343cvb90v0d1wfclgz49256y6nq"; + sha256 = "00nk14jbdbln93mx3ag691avc11ff94hkadrcv5pn51c6ihsxbmz"; }; memcached = buildPecl rec { From 78eac95d233ad2206c7523396c487cfc5823555d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20L=C3=B6tzsch?= Date: Fri, 19 Jul 2019 15:21:51 +0200 Subject: [PATCH 0869/1611] xygrib: init at 1.2.6.1 --- maintainers/maintainer-list.nix | 5 ++++ pkgs/applications/misc/xygrib/default.nix | 33 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 ++- 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/misc/xygrib/default.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 787365b08cd..37c9ccf48f5 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2271,6 +2271,11 @@ github = "j-keck"; name = "Jürgen Keck"; }; + j03 = { + email = "github@johannesloetzsch.de"; + github = "johannesloetzsch"; + name = "Johannes Lötzsch"; + }; jagajaga = { email = "ars.seroka@gmail.com"; github = "jagajaga"; diff --git a/pkgs/applications/misc/xygrib/default.nix b/pkgs/applications/misc/xygrib/default.nix new file mode 100644 index 00000000000..4f1ecbaf8b3 --- /dev/null +++ b/pkgs/applications/misc/xygrib/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchFromGitHub, cmake, bzip2, qtbase, qttools, libnova, proj, libpng, openjpeg } : + +stdenv.mkDerivation rec { + version = "1.2.6.1"; + pname = "xygrib"; + + src = fetchFromGitHub { + owner = "opengribs"; + repo = "XyGrib"; + rev = "v${version}"; + sha256 = "0xzsm8pr0zjk3f8j880fg5n82jyxn8xf1330qmmq1fqv7rsrg9ia"; + }; + + nativeBuildInputs = [ cmake qttools ]; + buildInputs = [ bzip2 qtbase libnova proj openjpeg libpng ]; + cmakeFlags = [ "-DOPENJPEG_INCLUDE_DIR=${openjpeg.dev}/include/openjpeg-2.3" ]; + + postInstall = '' + mkdir $out/bin + ln -s $out/XyGrib/XyGrib $out/bin/XyGrib + ''; + + meta = with stdenv.lib; { + homepage = "https://opengribs.org"; + description = "Weather Forecast Visualization"; + longDescription = ''XyGrib is a leading opensource weather visualization package. + It interacts with OpenGribs's Grib server providing a choice + of global and large area atmospheric and wave models.''; + license = licenses.gpl3; + platforms = platforms.all; + maintainers = [ maintainers.j03 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52fcdb2167d..2f6ee3497de 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21317,6 +21317,8 @@ in inherit (gnome2) scrollkeeper libglade; }; + xygrib = libsForQt5.callPackage ../applications/misc/xygrib/default.nix {}; + xzgv = callPackage ../applications/graphics/xzgv { }; yabar = callPackage ../applications/window-managers/yabar { }; @@ -24412,5 +24414,4 @@ in dapper = callPackage ../development/tools/dapper { }; kube3d = callPackage ../applications/networking/cluster/kube3d {}; - } From 874eddc6ec0c11a1625108aab49cdacbfb5573c6 Mon Sep 17 00:00:00 2001 From: Steven Shaw Date: Mon, 22 Jul 2019 07:45:09 +1000 Subject: [PATCH 0870/1611] rescuetime: 2.14.2.1 -> 2.14.3.1 --- pkgs/applications/misc/rescuetime/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/rescuetime/default.nix b/pkgs/applications/misc/rescuetime/default.nix index b934788cdbe..cd232088b5b 100644 --- a/pkgs/applications/misc/rescuetime/default.nix +++ b/pkgs/applications/misc/rescuetime/default.nix @@ -5,15 +5,15 @@ let if stdenv.hostPlatform.system == "i686-linux" then fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_i386.deb"; - sha256 = "136ci4q0ns0qzikndlkbab947m47zv2nmnn8mda2374ip43kn6ri"; + sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji"; } else fetchurl { name = "rescuetime-installer.deb"; url = "https://www.rescuetime.com/installers/rescuetime_current_amd64.deb"; - sha256 = "1cw10lr7hrsr9xvq3wv1wkyk7jqsgfnnlkq4km9kxr39f51hv6na"; + sha256 = "03bky9vja7fijz45n44b6gawd6q8yd30nx6nya9lqdlxd1bkqmji"; }; in stdenv.mkDerivation { # https://www.rescuetime.com/updates/linux_release_notes.html - name = "rescuetime-2.14.2.1"; + name = "rescuetime-2.14.3.1"; inherit src; buildInputs = [ dpkg makeWrapper ]; # avoid https://github.com/NixOS/patchelf/issues/99 From 77418835549e3c15046e937a0b603263bf4780b6 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:33:16 -0400 Subject: [PATCH 0871/1611] linux: 4.14.133 -> 4.14.134 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index d3d2e2728a2..448c36a481c 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.14.133"; + version = "4.14.134"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "005pg4f8l2qz8g6hd71pj567z91hwjwdwb37h4dbb3fj6kjl965y"; + sha256 = "0b9xj1rwr5fpw2giirfghzxxc0wp1hwf4nqvalx314pxxysyf88b"; }; } // (args.argsOverride or {})) From 7e6342dfe3f9dcdcdcaa13c4ab2ec62c07f37b87 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:33:45 -0400 Subject: [PATCH 0872/1611] linux: 4.19.59 -> 4.19.60 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index b244f48f24c..6891b6ce2c2 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.59"; + version = "4.19.60"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0nxkr196q0b1hs3a3zavpsjp0jgbqmcwdf0y0f3hbpirshjiid5q"; + sha256 = "0ibayrvrnw2lw7si78vdqnr20mm1d3z0g6a0ykndvgn5vdax5x9a"; }; } // (args.argsOverride or {})) From 822ae870b36126e112386f7ce9b501ac9587e3e2 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:34:20 -0400 Subject: [PATCH 0873/1611] linux: 4.4.185 -> 4.4.186 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 1e3da908519..366bf1ad265 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, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.4.185"; + version = "4.4.186"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1ll694m5193dmwn8ys4sf2p6a6njd5pm38v862ih1iw7l3vj0l3s"; + sha256 = "113rjf8842glzi23y1g1yrwncihv2saah6wz0r726r06bk9p64hb"; }; } // (args.argsOverride or {})) From a4a4e08f565eca9898cb19ce3cbdee116a881107 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:34:45 -0400 Subject: [PATCH 0874/1611] linux: 4.9.185 -> 4.9.186 --- pkgs/os-specific/linux/kernel/linux-4.9.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix index d611e4cf71e..8fe5d3dfcb2 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, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.9.185"; + version = "4.9.186"; extraMeta.branch = "4.9"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "16z3ijfzffpkp4mj42j3j8zbnpba1a67kd5cdqwb28spf32a66vc"; + sha256 = "0sjbp7m6d625rw06wv34a0805d1lgldii4pxiqfpja871m1q8914"; }; } // (args.argsOverride or {})) From 84d2eb6c7b13e5a3db4faa0fda99649cb202658b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:35:10 -0400 Subject: [PATCH 0875/1611] linux: 5.1.18 -> 5.1.19 --- pkgs/os-specific/linux/kernel/linux-5.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix index 958aca39048..1f4663452dd 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.1.18"; + version = "5.1.19"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0spkk3pqp5fhvchgjhcm53zl1qqwsvdy7p4filb1nz4xypfff4v0"; + sha256 = "1hk8dhp402vr74wq22j66yqr7iik0mcrahpmmq3dcl657vw1n8qf"; }; } // (args.argsOverride or {})) From e1309f73eb6045ad30c48c0ac4210fa9e2bedc86 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:35:34 -0400 Subject: [PATCH 0876/1611] linux: 5.2.1 -> 5.2.2 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 512fb351200..0b44c6adfe9 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2.1"; + version = "5.2.2"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "01k5v3kdwk65cfx6bw4cl32jbfvf976jbya7q4a8lab3km7fi09m"; + sha256 = "173da67d51qcjwrczqsfd6g9phzazqzr11xfxwlf54ckd6117ng5"; }; } // (args.argsOverride or {})) From 2b350d16efab2dd2acc40dd6f1b2da7c390c199f Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 21 Jul 2019 20:46:37 -0400 Subject: [PATCH 0877/1611] vivaldi: 2.6.1566.44-1 -> 2.6.1566.49-1 --- pkgs/applications/networking/browsers/vivaldi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index ff83452d45f..4b0071bfabc 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -17,11 +17,11 @@ let vivaldiName = if isSnapshot then "vivaldi-snapshot" else "vivaldi"; in stdenv.mkDerivation rec { pname = "vivaldi"; - version = "2.6.1566.44-1"; + version = "2.6.1566.49-1"; src = fetchurl { url = "https://downloads.vivaldi.com/${branch}/vivaldi-${branch}_${version}_amd64.deb"; - sha256 = "0bqx78bikcgrpg7qg10jylxa582fcxiwah7g2151hadvy8xl15ab"; + sha256 = "1hl7aqq3i6mkkg7sdcax26kn08p8mqwlq4xpg4v05ivdvyh5ac9d"; }; unpackPhase = '' From 735199a2104bc52b09f0193bdce7b1d95e4c7288 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 21 Jul 2019 22:53:18 -0400 Subject: [PATCH 0878/1611] deepin: use qt5.mkDerivation where needed, cleanup wrappers This switches a majority of the applications to using qt5.mkDerivation which automatically adds wrapQtAppsHook. In certain places, where GLib and gtk intersect with Qt, we also needed to use wrapGAppsHook. In these cases there will be multiple wrappers. --- pkgs/desktops/deepin/dde-calendar/default.nix | 4 ++-- pkgs/desktops/deepin/dde-control-center/default.nix | 6 +++--- pkgs/desktops/deepin/dde-dock/default.nix | 10 +++++----- pkgs/desktops/deepin/dde-file-manager/default.nix | 4 ++-- pkgs/desktops/deepin/dde-launcher/default.nix | 4 ++-- pkgs/desktops/deepin/dde-network-utils/default.nix | 4 ++-- pkgs/desktops/deepin/dde-polkit-agent/default.nix | 4 ++-- pkgs/desktops/deepin/dde-session-ui/default.nix | 6 +++--- pkgs/desktops/deepin/deepin-anything/default.nix | 4 ++-- pkgs/desktops/deepin/deepin-calculator/default.nix | 6 +++--- pkgs/desktops/deepin/deepin-image-viewer/default.nix | 4 ++-- pkgs/desktops/deepin/deepin-menu/default.nix | 4 ++-- pkgs/desktops/deepin/deepin-metacity/default.nix | 3 ++- pkgs/desktops/deepin/deepin-movie-reborn/default.nix | 4 ++-- pkgs/desktops/deepin/deepin-screenshot/default.nix | 4 ++-- .../desktops/deepin/deepin-shortcut-viewer/default.nix | 4 ++-- pkgs/desktops/deepin/deepin-terminal/default.nix | 3 ++- pkgs/desktops/deepin/deepin-turbo/default.nix | 4 ++-- pkgs/desktops/deepin/dtkcore/default.nix | 4 ++-- pkgs/desktops/deepin/dtkwidget/default.nix | 4 ++-- pkgs/desktops/deepin/dtkwm/default.nix | 4 ++-- pkgs/desktops/deepin/qcef/default.nix | 4 ++-- pkgs/desktops/deepin/qt5dxcb-plugin/default.nix | 4 ++-- pkgs/desktops/deepin/qt5integration/default.nix | 6 +++--- pkgs/desktops/deepin/udisks2-qt5/default.nix | 4 ++-- 25 files changed, 57 insertions(+), 55 deletions(-) diff --git a/pkgs/desktops/deepin/dde-calendar/default.nix b/pkgs/desktops/deepin/dde-calendar/default.nix index 16c8002b8e4..0d25d9083eb 100644 --- a/pkgs/desktops/deepin/dde-calendar/default.nix +++ b/pkgs/desktops/deepin/dde-calendar/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, qttools, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qttools, deepin-gettext-tools, dtkcore, dtkwidget, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-calendar"; version = "1.2.10"; diff --git a/pkgs/desktops/deepin/dde-control-center/default.nix b/pkgs/desktops/deepin/dde-control-center/default.nix index 906812cf98b..88c3639ff2e 100644 --- a/pkgs/desktops/deepin/dde-control-center/default.nix +++ b/pkgs/desktops/deepin/dde-control-center/default.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, deepin, qttools, qtdeclarative, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, deepin, qttools, qtdeclarative, networkmanager, qtsvg, qtx11extras, dtkcore, dtkwidget, geoip, gsettings-qt, dde-network-utils, networkmanager-qt, xorg, mtdev, fontconfig, freetype, dde-api, dde-daemon, qt5integration, deepin-desktop-base, deepin-desktop-schemas, dbus, systemd, dde-qt-dbus-factory, qtmultimedia, qtbase, glib, gnome3, which, - substituteAll, wrapGAppsHook, tzdata + substituteAll, tzdata, wrapGAppsHook }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-control-center"; version = "4.10.11"; diff --git a/pkgs/desktops/deepin/dde-dock/default.nix b/pkgs/desktops/deepin/dde-dock/default.nix index e143f783a5a..21c8221bd13 100644 --- a/pkgs/desktops/deepin/dde-dock/default.nix +++ b/pkgs/desktops/deepin/dde-dock/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, qttools, qtx11extras, - qtsvg, libsForQt5, polkit, gsettings-qt, dtkcore, dtkwidget, +{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qttools, qtx11extras, + qtsvg, polkit, gsettings-qt, dtkcore, dtkwidget, dde-qt-dbus-factory, dde-network-utils, dde-daemon, deepin-desktop-schemas, xorg, glib, wrapGAppsHook, deepin, - plugins ? [], symlinkJoin, makeWrapper }: + plugins ? [], symlinkJoin, makeWrapper, libdbusmenu }: let -unwrapped = stdenv.mkDerivation rec { +unwrapped = mkDerivation rec { name = "${pname}-${version}"; pname = "dde-dock"; version = "4.10.3"; @@ -34,7 +34,7 @@ unwrapped = stdenv.mkDerivation rec { dtkwidget glib.bin gsettings-qt - libsForQt5.libdbusmenu + libdbusmenu polkit qtsvg qtx11extras diff --git a/pkgs/desktops/deepin/dde-file-manager/default.nix b/pkgs/desktops/deepin/dde-file-manager/default.nix index c203ccae6fb..3580eeb4304 100644 --- a/pkgs/desktops/deepin/dde-file-manager/default.nix +++ b/pkgs/desktops/deepin/dde-file-manager/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pkgconfig, avfs, dde-daemon, dde-dock, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, avfs, dde-daemon, dde-dock, dde-polkit-agent, dde-qt-dbus-factory, deepin, deepin-anything, deepin-desktop-schemas, deepin-gettext-tools, deepin-movie-reborn, deepin-shortcut-viewer, deepin-terminal, dtkcore, dtkwidget, @@ -8,7 +8,7 @@ qtx11extras, runtimeShell, samba, shadow, taglib, udisks2-qt5, xdg-user-dirs, xorg, zlib, wrapGAppsHook }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-file-manager"; version = "4.8.6.4"; diff --git a/pkgs/desktops/deepin/dde-launcher/default.nix b/pkgs/desktops/deepin/dde-launcher/default.nix index 2710393a257..f8a05b86980 100644 --- a/pkgs/desktops/deepin/dde-launcher/default.nix +++ b/pkgs/desktops/deepin/dde-launcher/default.nix @@ -1,9 +1,9 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, dde-qt-dbus-factory, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, dde-qt-dbus-factory, dde-session-ui, deepin, deepin-desktop-schemas, deepin-wallpapers, dtkcore, dtkwidget, gsettings-qt, qtsvg, qttools, qtx11extras, which, xdg_utils, wrapGAppsHook }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-launcher"; version = "4.6.13"; diff --git a/pkgs/desktops/deepin/dde-network-utils/default.nix b/pkgs/desktops/deepin/dde-network-utils/default.nix index 84c7c9207ec..4fd08749ee4 100644 --- a/pkgs/desktops/deepin/dde-network-utils/default.nix +++ b/pkgs/desktops/deepin/dde-network-utils/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, substituteAll, qmake, pkgconfig, qttools, +{ stdenv, mkDerivation, fetchFromGitHub, substituteAll, qmake, pkgconfig, qttools, dde-qt-dbus-factory, proxychains, which, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-network-utils"; version = "0.1.4"; diff --git a/pkgs/desktops/deepin/dde-polkit-agent/default.nix b/pkgs/desktops/deepin/dde-polkit-agent/default.nix index 8e58ae2f684..d1f1bed2775 100644 --- a/pkgs/desktops/deepin/dde-polkit-agent/default.nix +++ b/pkgs/desktops/deepin/dde-polkit-agent/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, polkit-qt, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qttools, polkit-qt, dtkcore, dtkwidget, dde-qt-dbus-factory, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-polkit-agent"; version = "0.2.10"; diff --git a/pkgs/desktops/deepin/dde-session-ui/default.nix b/pkgs/desktops/deepin/dde-session-ui/default.nix index 0c00627cd4f..8302e8e97bc 100644 --- a/pkgs/desktops/deepin/dde-session-ui/default.nix +++ b/pkgs/desktops/deepin/dde-session-ui/default.nix @@ -1,11 +1,11 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, dbus, dde-daemon, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, dbus, dde-daemon, dde-qt-dbus-factory, deepin, deepin-desktop-schemas, deepin-gettext-tools, deepin-icon-theme, deepin-wallpapers, dtkcore, dtkwidget, gnugrep, gsettings-qt, hicolor-icon-theme, lightdm_qt, onboard, qtsvg, qttools, qtx11extras, setxkbmap, utillinux, which, xkeyboard_config, xorg, xrandr, wrapGAppsHook }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dde-session-ui"; version = "4.9.12"; @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { postFixup = '' # wrapGAppsHook does not work with binaries outside of $out/bin or $out/libexec for binary in $out/lib/deepin-daemon/*; do - wrapProgram $binary "''${gappsWrapperArgs[@]}" + wrapProgram $binary "''${qtWrapperArgs[@]}" done searchHardCodedPaths $out # debugging diff --git a/pkgs/desktops/deepin/deepin-anything/default.nix b/pkgs/desktops/deepin/deepin-anything/default.nix index a8cce9ba392..c768fa60ce7 100644 --- a/pkgs/desktops/deepin/deepin-anything/default.nix +++ b/pkgs/desktops/deepin/deepin-anything/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qtbase, udisks2-qt5, utillinux, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qtbase, udisks2-qt5, utillinux, dtkcore, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-anything"; version = "0.1.0"; diff --git a/pkgs/desktops/deepin/deepin-calculator/default.nix b/pkgs/desktops/deepin/deepin-calculator/default.nix index 5b7ca756607..51f0b666cb1 100644 --- a/pkgs/desktops/deepin/deepin-calculator/default.nix +++ b/pkgs/desktops/deepin/deepin-calculator/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, qtsvg, dtkcore, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qttools, qtsvg, dtkcore, dtkwidget, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-calculator"; version = "1.0.11"; @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { postFixup = '' searchHardCodedPaths $out # debugging ''; - + passthru.updateScript = deepin.updateScript { inherit name; }; meta = with stdenv.lib; { diff --git a/pkgs/desktops/deepin/deepin-image-viewer/default.nix b/pkgs/desktops/deepin/deepin-image-viewer/default.nix index 5957478aa48..89ef6247504 100644 --- a/pkgs/desktops/deepin/deepin-image-viewer/default.nix +++ b/pkgs/desktops/deepin/deepin-image-viewer/default.nix @@ -1,9 +1,9 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, qtsvg, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qttools, qtsvg, qtx11extras, dtkcore, dtkwidget, qt5integration, freeimage, libraw, libexif, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-image-viewer"; version = "1.3.17"; diff --git a/pkgs/desktops/deepin/deepin-menu/default.nix b/pkgs/desktops/deepin/deepin-menu/default.nix index 43a124c0719..4292fb2d212 100644 --- a/pkgs/desktops/deepin/deepin-menu/default.nix +++ b/pkgs/desktops/deepin/deepin-menu/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget, qt5integration, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-menu"; version = "3.4.8"; diff --git a/pkgs/desktops/deepin/deepin-metacity/default.nix b/pkgs/desktops/deepin/deepin-metacity/default.nix index fdf2c240e2c..a4aede5857c 100644 --- a/pkgs/desktops/deepin/deepin-metacity/default.nix +++ b/pkgs/desktops/deepin/deepin-metacity/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, pkgconfig, intltool, libtool, gnome3, glib, gtk3, libgtop, bamf, json-glib, libcanberra-gtk3, libxkbcommon, libstartup_notification, deepin-wallpapers, deepin-desktop-schemas, - deepin }: + deepin, wrapGAppsHook }: stdenv.mkDerivation rec { name = "${pname}-${version}"; @@ -21,6 +21,7 @@ stdenv.mkDerivation rec { libtool glib.dev gnome3.gnome-common + wrapGAppsHook ]; buildInputs = [ diff --git a/pkgs/desktops/deepin/deepin-movie-reborn/default.nix b/pkgs/desktops/deepin/deepin-movie-reborn/default.nix index cdf3019e5fe..6e14f0fd804 100644 --- a/pkgs/desktops/deepin/deepin-movie-reborn/default.nix +++ b/pkgs/desktops/deepin/deepin-movie-reborn/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, qttools, qtx11extras, +{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qttools, qtx11extras, dtkcore, dtkwidget, ffmpeg, ffmpegthumbnailer, mpv, pulseaudio, libdvdnav, libdvdread, xorg, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-movie-reborn"; version = "3.2.24"; diff --git a/pkgs/desktops/deepin/deepin-screenshot/default.nix b/pkgs/desktops/deepin/deepin-screenshot/default.nix index 4096df66190..256744828db 100644 --- a/pkgs/desktops/deepin/deepin-screenshot/default.nix +++ b/pkgs/desktops/deepin/deepin-screenshot/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, fetchpatch, cmake, pkgconfig, xdg_utils, qttools, qtx11extras, +{ stdenv, mkDerivation, fetchFromGitHub, fetchpatch, cmake, pkgconfig, xdg_utils, qttools, qtx11extras, dtkcore, dtkwidget, dtkwm, deepin-turbo, deepin-shortcut-viewer, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-screenshot"; version = "4.2.1"; diff --git a/pkgs/desktops/deepin/deepin-shortcut-viewer/default.nix b/pkgs/desktops/deepin/deepin-shortcut-viewer/default.nix index 737c99261f9..8c482d53405 100644 --- a/pkgs/desktops/deepin/deepin-shortcut-viewer/default.nix +++ b/pkgs/desktops/deepin/deepin-shortcut-viewer/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, dtkcore, dtkwidget, qt5integration, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-shortcut-viewer"; version = "1.3.5"; diff --git a/pkgs/desktops/deepin/deepin-terminal/default.nix b/pkgs/desktops/deepin/deepin-terminal/default.nix index 937c1f0d218..51156554f99 100644 --- a/pkgs/desktops/deepin/deepin-terminal/default.nix +++ b/pkgs/desktops/deepin/deepin-terminal/default.nix @@ -2,7 +2,7 @@ gettext, at-spi2-core, dbus, epoxy, expect, gtk3, json-glib, libXdmcp, libgee, libpthreadstubs, librsvg, libsecret, libtasn1, libxcb, libxkbcommon, p11-kit, pcre, vte, wnck, libselinux, - libsepol, utillinux, deepin-menu, deepin-shortcut-viewer, deepin }: + libsepol, utillinux, deepin-menu, deepin-shortcut-viewer, deepin, wrapGAppsHook }: stdenv.mkDerivation rec { name = "${pname}-${version}"; @@ -24,6 +24,7 @@ stdenv.mkDerivation rec { gettext libselinux libsepol utillinux # required by gio deepin.setupHook + wrapGAppsHook ]; buildInputs = [ diff --git a/pkgs/desktops/deepin/deepin-turbo/default.nix b/pkgs/desktops/deepin/deepin-turbo/default.nix index d5702a55d90..1fe930ea490 100644 --- a/pkgs/desktops/deepin/deepin-turbo/default.nix +++ b/pkgs/desktops/deepin/deepin-turbo/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, cmake, pkgconfig, qtbase, deepin }: +{ stdenv, mkDerivation, fetchFromGitHub, cmake, pkgconfig, qtbase, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "deepin-turbo"; version = "0.0.3"; diff --git a/pkgs/desktops/deepin/dtkcore/default.nix b/pkgs/desktops/deepin/dtkcore/default.nix index a0ed5c04e18..2a527e3cc19 100644 --- a/pkgs/desktops/deepin/dtkcore/default.nix +++ b/pkgs/desktops/deepin/dtkcore/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, gsettings-qt, pythonPackages, deepin }: +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, gsettings-qt, pythonPackages, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dtkcore"; version = "2.0.14"; diff --git a/pkgs/desktops/deepin/dtkwidget/default.nix b/pkgs/desktops/deepin/dtkwidget/default.nix index 4992519f832..667d418276b 100644 --- a/pkgs/desktops/deepin/dtkwidget/default.nix +++ b/pkgs/desktops/deepin/dtkwidget/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qttools, qtmultimedia, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qttools, qtmultimedia, qtsvg, qtx11extras, librsvg, libstartup_notification, gsettings-qt, dde-qt-dbus-factory, dtkcore, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dtkwidget"; version = "2.0.14"; diff --git a/pkgs/desktops/deepin/dtkwm/default.nix b/pkgs/desktops/deepin/dtkwm/default.nix index c0834ace8f8..bc51c3dd7b4 100644 --- a/pkgs/desktops/deepin/dtkwm/default.nix +++ b/pkgs/desktops/deepin/dtkwm/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, dtkcore, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qtx11extras, dtkcore, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "dtkwm"; version = "2.0.11"; diff --git a/pkgs/desktops/deepin/qcef/default.nix b/pkgs/desktops/deepin/qcef/default.nix index 8e75917907a..9f37a9bbeae 100644 --- a/pkgs/desktops/deepin/qcef/default.nix +++ b/pkgs/desktops/deepin/qcef/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, qtwebchannel, qtx11extras, gnome2, nss, nspr, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, gdk_pixbuf, glib, gtk2, @@ -38,7 +38,7 @@ let libPath = stdenv.lib.makeLibraryPath rpahtLibraries; in -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "qcef"; version = "1.1.6"; diff --git a/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix index 2e6ddfcdb2d..8c176ea2ecb 100644 --- a/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix +++ b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, qtx11extras, libSM, +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qtx11extras, libSM, mtdev, cairo, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "qt5dxcb-plugin"; version = "1.2.2"; diff --git a/pkgs/desktops/deepin/qt5integration/default.nix b/pkgs/desktops/deepin/qt5integration/default.nix index 7df1fdf3165..8302e701b38 100644 --- a/pkgs/desktops/deepin/qt5integration/default.nix +++ b/pkgs/desktops/deepin/qt5integration/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, pkgconfig, qmake, mtdev , - lxqt, qtx11extras, qtmultimedia, qtsvg , +{ stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, mtdev, + lxqt, qtx11extras, qtmultimedia, qtsvg, qt5dxcb-plugin, qtstyleplugins, dtkcore, dtkwidget, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "qt5integration"; version = "0.3.12"; diff --git a/pkgs/desktops/deepin/udisks2-qt5/default.nix b/pkgs/desktops/deepin/udisks2-qt5/default.nix index b0f5aaee97c..e7f735a4256 100644 --- a/pkgs/desktops/deepin/udisks2-qt5/default.nix +++ b/pkgs/desktops/deepin/udisks2-qt5/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, qmake, qtbase, deepin }: +{ stdenv, mkDerivation, fetchFromGitHub, qmake, qtbase, deepin }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "${pname}-${version}"; pname = "udisks2-qt5"; version = "0.0.1"; From 0f73418f432d728382ab03941f8b5b71b2b43653 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 21 Jul 2019 23:23:25 -0400 Subject: [PATCH 0879/1611] deepin.qt5dxcb-plugin: use qmakeFlags --- pkgs/desktops/deepin/qt5dxcb-plugin/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix index 8c176ea2ecb..f2e6eb0d123 100644 --- a/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix +++ b/pkgs/desktops/deepin/qt5dxcb-plugin/default.nix @@ -1,5 +1,5 @@ { stdenv, mkDerivation, fetchFromGitHub, pkgconfig, qmake, qtx11extras, libSM, - mtdev, cairo, deepin }: + mtdev, cairo, deepin, qtbase }: mkDerivation rec { name = "${pname}-${version}"; @@ -25,9 +25,9 @@ mkDerivation rec { cairo ]; - preConfigure = '' - qmakeFlags="$qmakeFlags INSTALL_PATH=$out/$qtPluginPrefix/platforms" - ''; + qmakeFlags = [ + "INSTALL_PATH=${placeholder ''out''}/${qtbase.qtPluginPrefix}/platforms" + ]; enableParallelBuilding = true; From 98656c95d8bd70afbfba726dbbd6b9831d874070 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 21 Jul 2019 23:26:05 -0400 Subject: [PATCH 0880/1611] deepin.dtkwm: use qmakeFlags --- pkgs/desktops/deepin/dtkwm/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/deepin/dtkwm/default.nix b/pkgs/desktops/deepin/dtkwm/default.nix index bc51c3dd7b4..c05eedd8857 100644 --- a/pkgs/desktops/deepin/dtkwm/default.nix +++ b/pkgs/desktops/deepin/dtkwm/default.nix @@ -23,12 +23,13 @@ mkDerivation rec { qtx11extras ]; - preConfigure = '' - qmakeFlags="$qmakeFlags \ - QT_HOST_DATA=$out \ - INCLUDE_INSTALL_DIR=$out/include \ - LIB_INSTALL_DIR=$out/lib" - ''; + outRef = placeholder "out"; + + qmakeFlags = [ + "QT_HOST_DATA=${outRef}" + "INCLUDE_INSTALL_DIR=${outRef}/include" + "LIB_INSTALL_DIR=${outRef}/lib" + ]; passthru.updateScript = deepin.updateScript { inherit name; }; From d01d0c1a8175c99b3322bd0c34d981900443eb37 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 21 Jul 2019 23:30:24 -0400 Subject: [PATCH 0881/1611] deepin.dtkwidget: use qmakeFlags --- pkgs/desktops/deepin/dtkwidget/default.nix | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/deepin/dtkwidget/default.nix b/pkgs/desktops/deepin/dtkwidget/default.nix index 667d418276b..8487509e73b 100644 --- a/pkgs/desktops/deepin/dtkwidget/default.nix +++ b/pkgs/desktops/deepin/dtkwidget/default.nix @@ -31,12 +31,13 @@ mkDerivation rec { dtkcore ]; - preConfigure = '' - qmakeFlags="$qmakeFlags \ - INCLUDE_INSTALL_DIR=$out/include \ - LIB_INSTALL_DIR=$out/lib \ - QT_HOST_DATA=$out" - ''; + outRef = placeholder "out"; + + qmakeFlags = [ + "INCLUDE_INSTALL_DIR=${outRef}/include" + "LIB_INSTALL_DIR=${outRef}/lib" + "QT_HOST_DATA=${outRef}" + ]; enableParallelBuilding = true; From 2000a9ebcbf60572642cfae5a9196444fe35aa82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 22 Jul 2019 08:08:35 +0200 Subject: [PATCH 0882/1611] Add antora --- .../node-packages/node-packages-v10.json | 1 + .../node-packages/node-packages-v10.nix | 2949 +++++++++-------- pkgs/top-level/all-packages.nix | 2 + 3 files changed, 1643 insertions(+), 1309 deletions(-) diff --git a/pkgs/development/node-packages/node-packages-v10.json b/pkgs/development/node-packages/node-packages-v10.json index 49ab6ec9841..26599311625 100644 --- a/pkgs/development/node-packages/node-packages-v10.json +++ b/pkgs/development/node-packages/node-packages-v10.json @@ -1,6 +1,7 @@ [ "@angular/cli" , "asar" +, "@antora/cli" , "aws-azure-login" , "azure-functions-core-tools" , "bash-language-server" diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix index 6f3e3d2ce6a..cac338aa815 100644 --- a/pkgs/development/node-packages/node-packages-v10.nix +++ b/pkgs/development/node-packages/node-packages-v10.nix @@ -13,31 +13,40 @@ let sha512 = "t4WmWoGV9gyzypwG3y3JlcK2t8fKLtvzBA7xEoFTj9SMPvOuLsf13uh4ikK0RRaaa9RPPWLgFUdOyIRaQvCpwQ=="; }; }; - "@angular-devkit/architect-0.801.1" = { + "@angular-devkit/architect-0.801.2" = { name = "_at_angular-devkit_slash_architect"; packageName = "@angular-devkit/architect"; - version = "0.801.1"; + version = "0.801.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.801.1.tgz"; - sha512 = "Y+4kDpZeh+uIr179gbkpRcyeLizd94sC608TM8XQLM2+sgUB9PoW/KBotuED9Rjlvui4yURQm4UU8LnCsNqWSQ=="; + url = "https://registry.npmjs.org/@angular-devkit/architect/-/architect-0.801.2.tgz"; + sha512 = "gdPdT6y3TDA3hzTAlI3Ym8QB8Zj8kqAMzDwP1JSXxekF6md0qc+NK7WCu6Y+pj1Bbo5mXpxHBov4Xwv1l4STQA=="; }; }; - "@angular-devkit/core-8.1.1" = { + "@angular-devkit/core-8.1.2" = { name = "_at_angular-devkit_slash_core"; packageName = "@angular-devkit/core"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/core/-/core-8.1.1.tgz"; - sha512 = "Wq/6HOkT3gSOQRiSmHijzy/bzEqzI44Ho4S/NIZ192M/m28f46Neu2LV9juniQKnAAZ8RmHnXecxq3KjvCRkNg=="; + url = "https://registry.npmjs.org/@angular-devkit/core/-/core-8.1.2.tgz"; + sha512 = "sNkqXbkHE9+ObtLOYmDKJL1bOf1zY0AwGVKemgDqCmu1mRUNqhb7CmF13DRscfU3MEcuiJYDjXqBQDjIszrFiw=="; }; }; - "@angular-devkit/schematics-8.1.1" = { + "@angular-devkit/schematics-8.1.2" = { name = "_at_angular-devkit_slash_schematics"; packageName = "@angular-devkit/schematics"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-8.1.1.tgz"; - sha512 = "Hzq3eFo33XsWe5q4tFq7kxDAE4ZbTeBySLsgqRd6m3gjGOjYUpAa5dlXdsPtZlOI5/LfR/1j1ALutf/6RG3ugw=="; + url = "https://registry.npmjs.org/@angular-devkit/schematics/-/schematics-8.1.2.tgz"; + sha512 = "Di/3vPR4jwdYcMAk13t19sAF0qQUH8KSkFcmO/5E/gECTL1tXNvV690K1Vhn6zpeE17Z1MLB5HwRNcb6nJkD+Q=="; + }; + }; + "@antora/playbook-builder-2.0.0" = { + name = "_at_antora_slash_playbook-builder"; + packageName = "@antora/playbook-builder"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/playbook-builder/-/playbook-builder-2.0.0.tgz"; + sha512 = "uLU4+rpIRZiMit8s1lkbiz5L5V8cPL40RJMRHFb4B7k2PXbvNiZZAMHZBeFgVwfJIKmKAIeUCDgOHgiBIlFc+A=="; }; }; "@apollographql/apollo-tools-0.3.7" = { @@ -85,6 +94,15 @@ let sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; }; }; + "@babel/code-frame-7.5.5" = { + name = "_at_babel_slash_code-frame"; + packageName = "@babel/code-frame"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz"; + sha512 = "27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw=="; + }; + }; "@babel/core-7.3.4" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; @@ -94,13 +112,13 @@ let sha512 = "jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA=="; }; }; - "@babel/core-7.5.4" = { + "@babel/core-7.5.5" = { name = "_at_babel_slash_core"; packageName = "@babel/core"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.5.4.tgz"; - sha512 = "+DaeBEpYq6b2+ZmHx3tHspC+ZRflrvLqwfv8E3hNr5LVQoyBnL8RPKSBCg+rK2W2My9PWlujBiqd0ZPsR9Q6zQ=="; + url = "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz"; + sha512 = "i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg=="; }; }; "@babel/generator-7.0.0-beta.38" = { @@ -121,13 +139,13 @@ let sha512 = "8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg=="; }; }; - "@babel/generator-7.5.0" = { + "@babel/generator-7.5.5" = { name = "_at_babel_slash_generator"; packageName = "@babel/generator"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.5.0.tgz"; - sha512 = "1TTVrt7J9rcG5PMjvO7VEG3FrEoEJNHxumRq66GemPmzboLWtIjjcJgk8rokuAS7IiRSpgVSu5Vb9lc99iJkOA=="; + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz"; + sha512 = "ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ=="; }; }; "@babel/helper-annotate-as-pure-7.0.0" = { @@ -166,22 +184,22 @@ let sha512 = "l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ=="; }; }; - "@babel/helper-create-class-features-plugin-7.5.0" = { + "@babel/helper-create-class-features-plugin-7.5.5" = { name = "_at_babel_slash_helper-create-class-features-plugin"; packageName = "@babel/helper-create-class-features-plugin"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.0.tgz"; - sha512 = "EAoMc3hE5vE5LNhMqDOwB1usHvmRjCDAnH8CD4PVkX9/Yr3W/tcz8xE8QvdZxfsFBDICwZnF2UTHIqslRpvxmA=="; + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz"; + sha512 = "ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg=="; }; }; - "@babel/helper-define-map-7.4.4" = { + "@babel/helper-define-map-7.5.5" = { name = "_at_babel_slash_helper-define-map"; packageName = "@babel/helper-define-map"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz"; - sha512 = "IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg=="; + url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.5.5.tgz"; + sha512 = "fTfxx7i0B5NJqvUOBBGREnrqbTxRh7zinBANpZXAVDlsZxYdclDp467G1sQ8VZYMnAURY3RpBUAgOYT9GfzHBg=="; }; }; "@babel/helper-explode-assignable-expression-7.1.0" = { @@ -220,13 +238,13 @@ let sha512 = "VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w=="; }; }; - "@babel/helper-member-expression-to-functions-7.0.0" = { + "@babel/helper-member-expression-to-functions-7.5.5" = { name = "_at_babel_slash_helper-member-expression-to-functions"; packageName = "@babel/helper-member-expression-to-functions"; - version = "7.0.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz"; - sha512 = "avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg=="; + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz"; + sha512 = "5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA=="; }; }; "@babel/helper-module-imports-7.0.0" = { @@ -238,13 +256,13 @@ let sha512 = "aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A=="; }; }; - "@babel/helper-module-transforms-7.4.4" = { + "@babel/helper-module-transforms-7.5.5" = { name = "_at_babel_slash_helper-module-transforms"; packageName = "@babel/helper-module-transforms"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz"; - sha512 = "3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w=="; + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.5.5.tgz"; + sha512 = "jBeCvETKuJqeiaCdyaheF40aXnnU1+wkSiUs/IQg3tB85up1LyL8x77ClY8qJpuRJUcXQo+ZtdNESmZl4j56Pw=="; }; }; "@babel/helper-optimise-call-expression-7.0.0" = { @@ -265,13 +283,13 @@ let sha512 = "CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA=="; }; }; - "@babel/helper-regex-7.4.4" = { + "@babel/helper-regex-7.5.5" = { name = "_at_babel_slash_helper-regex"; packageName = "@babel/helper-regex"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.4.4.tgz"; - sha512 = "Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q=="; + url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.5.5.tgz"; + sha512 = "CkCYQLkfkiugbRDO8eZn6lRuR8kzZoGXCg3149iTk5se7g6qykSpy3+hELSwquhu+TgHn8nkLiBwHvNX8Hofcw=="; }; }; "@babel/helper-remap-async-to-generator-7.1.0" = { @@ -283,13 +301,13 @@ let sha512 = "3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg=="; }; }; - "@babel/helper-replace-supers-7.4.4" = { + "@babel/helper-replace-supers-7.5.5" = { name = "_at_babel_slash_helper-replace-supers"; packageName = "@babel/helper-replace-supers"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz"; - sha512 = "04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg=="; + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz"; + sha512 = "XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg=="; }; }; "@babel/helper-simple-access-7.1.0" = { @@ -319,13 +337,13 @@ let sha512 = "o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ=="; }; }; - "@babel/helpers-7.5.4" = { + "@babel/helpers-7.5.5" = { name = "_at_babel_slash_helpers"; packageName = "@babel/helpers"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.4.tgz"; - sha512 = "6LJ6xwUEJP51w0sIgKyfvFMJvIb9mWAfohJp0+m6eHJigkFdcH8duZ1sfhn0ltJRzwUIT/yqqhdSfRpCpL7oow=="; + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz"; + sha512 = "nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g=="; }; }; "@babel/highlight-7.5.0" = { @@ -346,13 +364,13 @@ let sha512 = "tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ=="; }; }; - "@babel/parser-7.5.0" = { + "@babel/parser-7.5.5" = { name = "_at_babel_slash_parser"; packageName = "@babel/parser"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.5.0.tgz"; - sha512 = "I5nW8AhGpOXGCCNYGc+p7ExQIBxRFnS2fd/d862bNOKvmoEPjYPcfIjsfdy0ujagYOIYPczKgD9l3FsgTkAzKA=="; + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz"; + sha512 = "E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g=="; }; }; "@babel/plugin-external-helpers-7.0.0" = { @@ -373,13 +391,13 @@ let sha512 = "+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ=="; }; }; - "@babel/plugin-proposal-class-properties-7.5.0" = { + "@babel/plugin-proposal-class-properties-7.5.5" = { name = "_at_babel_slash_plugin-proposal-class-properties"; packageName = "@babel/plugin-proposal-class-properties"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.0.tgz"; - sha512 = "9L/JfPCT+kShiiTTzcnBJ8cOwdKVmlC1RcCf9F0F9tERVrM4iWtWnXtjWCRqNm2la2BxO1MPArWNsU9zsSJWSQ=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz"; + sha512 = "AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A=="; }; }; "@babel/plugin-proposal-dynamic-import-7.5.0" = { @@ -400,13 +418,13 @@ let sha512 = "MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg=="; }; }; - "@babel/plugin-proposal-object-rest-spread-7.5.4" = { + "@babel/plugin-proposal-object-rest-spread-7.5.5" = { name = "_at_babel_slash_plugin-proposal-object-rest-spread"; packageName = "@babel/plugin-proposal-object-rest-spread"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.4.tgz"; - sha512 = "KCx0z3y7y8ipZUMAEEJOyNi11lMb/FOPUjjB113tfowgw0c16EGYos7worCKBcUAh2oG+OBnoUhsnTSoLpV9uA=="; + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.5.tgz"; + sha512 = "F2DxJJSQ7f64FyTVl5cw/9MWn6naXGdk3Q3UhDbFEEHv+EilCPoeRD3Zh/Utx1CJz4uyKlQ4uH+bJPbEhMV7Zw=="; }; }; "@babel/plugin-proposal-optional-catch-binding-7.2.0" = { @@ -526,22 +544,22 @@ let sha512 = "ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w=="; }; }; - "@babel/plugin-transform-block-scoping-7.4.4" = { + "@babel/plugin-transform-block-scoping-7.5.5" = { name = "_at_babel_slash_plugin-transform-block-scoping"; packageName = "@babel/plugin-transform-block-scoping"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz"; - sha512 = "jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.5.5.tgz"; + sha512 = "82A3CLRRdYubkG85lKwhZB0WZoHxLGsJdux/cOVaJCJpvYFl1LVzAIFyRsa7CvXqW8rBM4Zf3Bfn8PHt5DP0Sg=="; }; }; - "@babel/plugin-transform-classes-7.4.4" = { + "@babel/plugin-transform-classes-7.5.5" = { name = "_at_babel_slash_plugin-transform-classes"; packageName = "@babel/plugin-transform-classes"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz"; - sha512 = "/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.5.5.tgz"; + sha512 = "U2htCNK/6e9K7jGyJ++1p5XRU+LJjrwtoiVn9SzRlDT2KubcZ11OOwy3s24TjHxPgxNwonCYP7U2K51uVYCMDg=="; }; }; "@babel/plugin-transform-computed-properties-7.2.0" = { @@ -706,13 +724,13 @@ let sha512 = "r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA=="; }; }; - "@babel/plugin-transform-object-super-7.2.0" = { + "@babel/plugin-transform-object-super-7.5.5" = { name = "_at_babel_slash_plugin-transform-object-super"; packageName = "@babel/plugin-transform-object-super"; - version = "7.2.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz"; - sha512 = "VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.5.5.tgz"; + sha512 = "un1zJQAhSosGFBduPgN/YFNvWVpRuHKU7IHBglLoLZsGmruJPOo6pbInneflUdmq7YvSVqhpPs5zdBvLnteltQ=="; }; }; "@babel/plugin-transform-parameters-7.4.4" = { @@ -760,13 +778,13 @@ let sha512 = "fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw=="; }; }; - "@babel/plugin-transform-runtime-7.5.0" = { + "@babel/plugin-transform-runtime-7.5.5" = { name = "_at_babel_slash_plugin-transform-runtime"; packageName = "@babel/plugin-transform-runtime"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.0.tgz"; - sha512 = "LmPIZOAgTLl+86gR9KjLXex6P/lRz1fWEjTz6V6QZMmKie51ja3tvzdwORqhHc4RWR8TcZ5pClpRWs0mlaA2ng=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.5.tgz"; + sha512 = "6Xmeidsun5rkwnGfMOp6/z9nSzWpHFNVr2Jx7kwoq4mVatQfQx5S56drBgEHF+XQbKOdIaOiMIINvp/kAwMN+w=="; }; }; "@babel/plugin-transform-shorthand-properties-7.2.0" = { @@ -814,13 +832,13 @@ let sha512 = "2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw=="; }; }; - "@babel/plugin-transform-typescript-7.5.2" = { + "@babel/plugin-transform-typescript-7.5.5" = { name = "_at_babel_slash_plugin-transform-typescript"; packageName = "@babel/plugin-transform-typescript"; - version = "7.5.2"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.5.2.tgz"; - sha512 = "r4zJOMbKY5puETm8+cIpaa0RQZG/sSASW1u0pj8qYklcERgVIbxVbP2wyJA7zI1//h7lEagQmXi9IL9iI5rfsA=="; + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.5.5.tgz"; + sha512 = "pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w=="; }; }; "@babel/plugin-transform-unicode-regex-7.4.4" = { @@ -850,13 +868,13 @@ let sha512 = "2mwqfYMK8weA0g0uBKOt4FE3iEodiHy9/CW0b+nWXcbL+pGzLx8ESYc+j9IIxr6LTDHWKgPm71i9smo02bw+gA=="; }; }; - "@babel/preset-env-7.5.4" = { + "@babel/preset-env-7.5.5" = { name = "_at_babel_slash_preset-env"; packageName = "@babel/preset-env"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.5.4.tgz"; - sha512 = "hFnFnouyRNiH1rL8YkX1ANCNAUVC8Djwdqfev8i1415tnAG+7hlA5zhZ0Q/3Q5gkop4HioIPbCEWAalqcbxRoQ=="; + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.5.5.tgz"; + sha512 = "GMZQka/+INwsMz1A5UEql8tG015h5j/qjptpKY2gJ7giy8ohzU710YciJB5rcKsWGWHiW3RUnHib0E5/m3Tp3A=="; }; }; "@babel/preset-flow-7.0.0" = { @@ -886,13 +904,13 @@ let sha512 = "mzMVuIP4lqtn4du2ynEfdO0+RYcslwrZiJHXu4MGaC1ctJiW2fyaeDrtjJGs7R/KebZ1sgowcIoWf4uRpEfKEg=="; }; }; - "@babel/register-7.4.4" = { + "@babel/register-7.5.5" = { name = "_at_babel_slash_register"; packageName = "@babel/register"; - version = "7.4.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/register/-/register-7.4.4.tgz"; - sha512 = "sn51H88GRa00+ZoMqCVgOphmswG4b7mhf9VOB0LUBAieykq2GnRFerlN+JQkO/ntT7wz4jaHNSRPg9IdMPEUkA=="; + url = "https://registry.npmjs.org/@babel/register/-/register-7.5.5.tgz"; + sha512 = "pdd5nNR+g2qDkXZlW1yRCWFlNrAn2PPdnZUB72zjX4l1Vv4fMRRLwyf+n/idFCLI1UgVGboUU8oVziwTBiyNKQ=="; }; }; "@babel/runtime-7.3.4" = { @@ -913,22 +931,22 @@ let sha512 = "TuI4qpWZP6lGOGIuGWtp9sPluqYICmbk8T/1vpSysqJxRPkudh/ofFWyqdcMsDf2s7KvDL4/YHgKyvcS3g9CJQ=="; }; }; - "@babel/runtime-7.5.4" = { + "@babel/runtime-7.5.5" = { name = "_at_babel_slash_runtime"; packageName = "@babel/runtime"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.4.tgz"; - sha512 = "Na84uwyImZZc3FKf4aUF1tysApzwf3p2yuFBIyBfbzT5glzKTdvYI4KVW4kcgjrzoGUjC7w3YyCHcJKaRxsr2Q=="; + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.5.5.tgz"; + sha512 = "28QvEGyQyNkB0/m2B4FU7IEZGK2NUrcMtT6BZEFALTguLk+AUT6ofsHtPk5QyjAdUkpMJ+/Em+quwz4HOt30AQ=="; }; }; - "@babel/runtime-corejs2-7.5.4" = { + "@babel/runtime-corejs2-7.5.5" = { name = "_at_babel_slash_runtime-corejs2"; packageName = "@babel/runtime-corejs2"; - version = "7.5.4"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.5.4.tgz"; - sha512 = "sHv74OzyZ18d6tjHU0HmlVES3+l+lydkOMTiKsJSTGWcTBpIMfXLEgduahlJrQjknW9RCQAqLIEdLOHjBmq/hg=="; + url = "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.5.5.tgz"; + sha512 = "FYATQVR00NSNi7mUfpPDp7E8RYMXDuO8gaix7u/w3GekfUinKgX1AcTxs7SoiEmoEW9mbpjrwqWSW6zCmw5h8A=="; }; }; "@babel/template-7.2.2" = { @@ -958,13 +976,13 @@ let sha512 = "TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ=="; }; }; - "@babel/traverse-7.5.0" = { + "@babel/traverse-7.5.5" = { name = "_at_babel_slash_traverse"; packageName = "@babel/traverse"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.0.tgz"; - sha512 = "SnA9aLbyOCcnnbQEGwdfBggnc142h/rbqqsXcaATj2hZcegCl903pUD/lfpsNBlBSuWow/YDfRyJuWi2EPR5cg=="; + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz"; + sha512 = "MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ=="; }; }; "@babel/types-7.0.0-beta.38" = { @@ -985,13 +1003,13 @@ let sha512 = "WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ=="; }; }; - "@babel/types-7.5.0" = { + "@babel/types-7.5.5" = { name = "_at_babel_slash_types"; packageName = "@babel/types"; - version = "7.5.0"; + version = "7.5.5"; src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.5.0.tgz"; - sha512 = "UFpDVqRABKsW01bvw7/wSUe56uy6RXM5+VJibVVAybDGxEW25jdwiFJEf7ASvSaC7sN7rbE/l3cLp2izav+CtQ=="; + url = "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz"; + sha512 = "s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw=="; }; }; "@calebboyd/semaphore-1.3.1" = { @@ -1102,40 +1120,40 @@ let sha512 = "Ce3xE2JvTSEbASFbRbA1gAIcMcZWdS2yUYRaQbeM0nbOzaZrUYfa3ePtcriYRZOZmr+CkKA+zbjhvTpIOAYVcw=="; }; }; - "@evocateur/libnpmaccess-3.1.0" = { + "@evocateur/libnpmaccess-3.1.2" = { name = "_at_evocateur_slash_libnpmaccess"; packageName = "@evocateur/libnpmaccess"; - version = "3.1.0"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@evocateur/libnpmaccess/-/libnpmaccess-3.1.0.tgz"; - sha512 = "bfrqZ0v+Il5TJBsgF2oyepeJg34K2pBItapzP+UT1QMIGpUh/Zc1pQql4jrafamZTqP3ZvdJxaElat8B5K3ICA=="; + url = "https://registry.npmjs.org/@evocateur/libnpmaccess/-/libnpmaccess-3.1.2.tgz"; + sha512 = "KSCAHwNWro0CF2ukxufCitT9K5LjL/KuMmNzSu8wuwN2rjyKHD8+cmOsiybK+W5hdnwc5M1SmRlVCaMHQo+3rg=="; }; }; - "@evocateur/libnpmpublish-1.2.0" = { + "@evocateur/libnpmpublish-1.2.2" = { name = "_at_evocateur_slash_libnpmpublish"; packageName = "@evocateur/libnpmpublish"; - version = "1.2.0"; + version = "1.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/@evocateur/libnpmpublish/-/libnpmpublish-1.2.0.tgz"; - sha512 = "sezhX9FSnPIyrBBvxVocVJVO1uIWPczf6rOmUZSntCWfQMraO8pWTFlDJbroFqPbEqFFHf3eyw8NQ0Eb7OLd1g=="; + url = "https://registry.npmjs.org/@evocateur/libnpmpublish/-/libnpmpublish-1.2.2.tgz"; + sha512 = "MJrrk9ct1FeY9zRlyeoyMieBjGDG9ihyyD9/Ft6MMrTxql9NyoEx2hw9casTIP4CdqEVu+3nQ2nXxoJ8RCXyFg=="; }; }; - "@evocateur/npm-registry-fetch-3.9.1" = { + "@evocateur/npm-registry-fetch-4.0.0" = { name = "_at_evocateur_slash_npm-registry-fetch"; packageName = "@evocateur/npm-registry-fetch"; - version = "3.9.1"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/@evocateur/npm-registry-fetch/-/npm-registry-fetch-3.9.1.tgz"; - sha512 = "6v1bHbcAypQ+te/1RGSNL4JkK6mcMtcZrUusqo5iKRtYSAig9UJXlOaCcBR+eLywt2DQMNpEwAj24jwWDX5G/w=="; + url = "https://registry.npmjs.org/@evocateur/npm-registry-fetch/-/npm-registry-fetch-4.0.0.tgz"; + sha512 = "k1WGfKRQyhJpIr+P17O5vLIo2ko1PFLKwoetatdduUSt/aQ4J2sJrJwwatdI5Z3SiYk/mRH9S3JpdmMFd/IK4g=="; }; }; - "@evocateur/pacote-9.6.0" = { + "@evocateur/pacote-9.6.3" = { name = "_at_evocateur_slash_pacote"; packageName = "@evocateur/pacote"; - version = "9.6.0"; + version = "9.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/@evocateur/pacote/-/pacote-9.6.0.tgz"; - sha512 = "nKx8EPxXhzqNfePbqC6603z7Kkf6GBS2q+SNGtBS/bCgS5Q+p3OVR6MXKOkpvC3WHse98W2WLu8QaV9axtfxyw=="; + url = "https://registry.npmjs.org/@evocateur/pacote/-/pacote-9.6.3.tgz"; + sha512 = "ExqNqcbdHQprEgKnY/uQz7WRtyHRbQxRl4JnVkSkmtF8qffRrF9K+piZKNLNSkRMOT/3H0e3IP44QVCHaXMWOQ=="; }; }; "@gulp-sourcemaps/identity-map-1.0.2" = { @@ -1318,40 +1336,40 @@ let sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q=="; }; }; - "@lerna/add-3.15.0" = { + "@lerna/add-3.16.1" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-3.15.0.tgz"; - sha512 = "+KrG4GFy/6FISZ+DwWf5Fj5YB4ESa4VTnSn/ujf3VEda6dxngHPN629j+TcPbsdOxUYVah+HuZbC/B8NnkrKpQ=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.1.tgz"; + sha512 = "zk1ldthrXPl+Xuj0vVD3JYqTQzU+qKv8sOvvQrBXimuf/d+r+LJc10DXPGaCE9LwPeLgkrpPbIOQ7tTtkh0xGg=="; }; }; - "@lerna/batch-packages-3.14.0" = { + "@lerna/batch-packages-3.16.0" = { name = "_at_lerna_slash_batch-packages"; packageName = "@lerna/batch-packages"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.14.0.tgz"; - sha512 = "RlBkQVNTqk1qvn6PFWiWNiskllUHh6tXbTVm43mZRNd+vhAyvrQC8RWJxH0ECVvnFAt9rSNGRIVbEJ31WnNQLg=="; + url = "https://registry.npmjs.org/@lerna/batch-packages/-/batch-packages-3.16.0.tgz"; + sha512 = "7AdMkANpubY/FKFI01im01tlx6ygOBJ/0JcixMUWoWP/7Ds3SWQF22ID6fbBr38jUWptYLDs2fagtTDL7YUPuA=="; }; }; - "@lerna/bootstrap-3.15.0" = { + "@lerna/bootstrap-3.16.1" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.15.0.tgz"; - sha512 = "4AxsPKKbgj2Ju03qDddQTpOHvpqnwd0yaiEU/aCcWv/4tDTe79NqUne2Z3+P2WZY0Zzb8+nUKcskwYBMTeq+Mw=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.1.tgz"; + sha512 = "flHK3PRNEzGjK5u94ARlTmvraNUDgtG3TpO4dOLgiG4DDqk/7JjRq/vNXhBqgrtoKzm+zp4tH/6+uCAqF6la5w=="; }; }; - "@lerna/changed-3.15.0" = { + "@lerna/changed-3.16.1" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.15.0.tgz"; - sha512 = "Hns1ssI9T9xOTGVc7PT2jUaqzsSkxV3hV/Y7iFO0uKTk+fduyTwGTHU9A/ybQ/xi/9iaJbvaXyjxKiGoEnzmhg=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.1.tgz"; + sha512 = "qXm0psRXo2U0EOmnt4PY8i525FbYIkEjaI+I92VzFN9vIlxd40pXJpiPCYMJzVEMr3gInDz5LHAINzoQ+7YAeQ=="; }; }; "@lerna/check-working-tree-3.14.2" = { @@ -1372,13 +1390,13 @@ let sha512 = "xnq+W5yQb6RkwI0p16ZQnrn6HkloH/MWTw4lGE1nKsBLAUbmSU5oTE93W1nrG0X3IMF/xWc9UYvNdUGMWvZZ4w=="; }; }; - "@lerna/clean-3.15.0" = { + "@lerna/clean-3.16.0" = { name = "_at_lerna_slash_clean"; packageName = "@lerna/clean"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.15.0.tgz"; - sha512 = "D1BN7BnJk6YjrSR7E7RiCmWiFVWDo3L+OSe6zDq6rNNYexPBtSi2JOCeF/Dibi3jd2luVu0zkVpUtuEEdPiD+A=="; + url = "https://registry.npmjs.org/@lerna/clean/-/clean-3.16.0.tgz"; + sha512 = "5P9U5Y19WmYZr7UAMGXBpY7xCRdlR7zhHy8MAPDKVx70rFIBS6nWXn5n7Kntv74g7Lm1gJ2rsiH5tj1OPcRJgg=="; }; }; "@lerna/cli-3.13.0" = { @@ -1399,49 +1417,49 @@ let sha512 = "4EkQu4jIOdNL2BMzy/N0ydHB8+Z6syu6xiiKXOoFl0WoWU9H1jEJCX4TH7CmVxXL1+jcs8FIS2pfQz4oew99Eg=="; }; }; - "@lerna/collect-updates-3.14.2" = { + "@lerna/collect-updates-3.16.0" = { name = "_at_lerna_slash_collect-updates"; packageName = "@lerna/collect-updates"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.14.2.tgz"; - sha512 = "+zSQ2ZovH8Uc0do5dR+sk8VvRJc6Xl+ZnJJGESIl17KSpEw/lVjcOyt6f3BP+WHn+iSOjMWcGvUVA601FIEdZw=="; + url = "https://registry.npmjs.org/@lerna/collect-updates/-/collect-updates-3.16.0.tgz"; + sha512 = "HwAIl815X2TNlmcp28zCrSdXfoZWNP7GJPEqNWYk7xDJTYLqQ+SrmKUePjb3AMGBwYAraZSEJLbHdBpJ5+cHmQ=="; }; }; - "@lerna/command-3.15.0" = { + "@lerna/command-3.16.0" = { name = "_at_lerna_slash_command"; packageName = "@lerna/command"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/command/-/command-3.15.0.tgz"; - sha512 = "dZqr4rKFN+veuXakIQ1DcGUpzBgcWKaYFNN4O6/skOdVQaEfGefzo1sZET+q7k/BkypxkhXHXpv5UqqSuL/EHQ=="; + url = "https://registry.npmjs.org/@lerna/command/-/command-3.16.0.tgz"; + sha512 = "u7tE4GC4/gfbPA9eQg+0ulnoJ+PMoMqomx033r/IxqZrHtmJR9+pF/37S0fsxJ2hX/RMFPC7c9Q/i8NEufSpdQ=="; }; }; - "@lerna/conventional-commits-3.14.0" = { + "@lerna/conventional-commits-3.16.0" = { name = "_at_lerna_slash_conventional-commits"; packageName = "@lerna/conventional-commits"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.14.0.tgz"; - sha512 = "hGZ2qQZ9uEGf2eeIiIpEodSs9Qkkf/2uYEtNT7QN1RYISPUh6/lKGBssc5dpbCF64aEuxmemWLdlDf1ogG6++w=="; + url = "https://registry.npmjs.org/@lerna/conventional-commits/-/conventional-commits-3.16.0.tgz"; + sha512 = "zdvhU+aI7galRyLBFDhvC8T7NbGORJiZbIw/Qgp/TzkSaJfOAE3R7J8J1OZKDgxvhOoVhzMphNycaV3DiUlERQ=="; }; }; - "@lerna/create-3.15.0" = { + "@lerna/create-3.16.0" = { name = "_at_lerna_slash_create"; packageName = "@lerna/create"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create/-/create-3.15.0.tgz"; - sha512 = "doXGt0HTwTQl8GkC2tOrraA/5OWbz35hJqi7Dsl3Fl0bAxiv9XmF3LykHFJ+YTDHfGpdoJ8tKu66f/VKP16G0w=="; + url = "https://registry.npmjs.org/@lerna/create/-/create-3.16.0.tgz"; + sha512 = "OZApR1Iz7awutbmj4sAArwhqCyKgcrnw9rH0aWAUrkYWrD1w4TwkvAcYAsfx5GpQGbLQwoXhoyyPwPfZRRWz3Q=="; }; }; - "@lerna/create-symlink-3.14.0" = { + "@lerna/create-symlink-3.16.0" = { name = "_at_lerna_slash_create-symlink"; packageName = "@lerna/create-symlink"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.14.0.tgz"; - sha512 = "Kw51HYOOi6UfCKncqkgEU1k/SYueSBXgkNL91FR8HAZH7EPSRTEtp9mnJo568g0+Hog5C+3cOaWySwhHpRG29A=="; + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.16.0.tgz"; + sha512 = "MiQga30ZYB5mioUA37qkiIMb6X9JtyYhkzgDZFz7iZVdOF0NxkRQJZy+osGnXWij9s1DFfl70pOdVBPMl7LzRA=="; }; }; "@lerna/describe-ref-3.14.2" = { @@ -1453,40 +1471,40 @@ let sha512 = "qa5pzDRK2oBQXNjyRmRnN7E8a78NMYfQjjlRFB0KNHMsT6mCiL9+8kIS39sSE2NqT8p7xVNo2r2KAS8R/m3CoQ=="; }; }; - "@lerna/diff-3.15.0" = { + "@lerna/diff-3.16.0" = { name = "_at_lerna_slash_diff"; packageName = "@lerna/diff"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.15.0.tgz"; - sha512 = "N1Pr0M554Bt+DlVoD+DXWGh92gcq6G9icn8sH5GSqfwi0XCpPNJ2i1BNEZpUQ6ulLWOMa1YHR4PypPxecRGBjA=="; + url = "https://registry.npmjs.org/@lerna/diff/-/diff-3.16.0.tgz"; + sha512 = "QUpVs5TPl8vBIne10/vyjUxanQBQQp7Lk3iaB8MnCysKr0O+oy7trWeFVDPEkBTCD177By7yPGyW5Yey1nCBbA=="; }; }; - "@lerna/exec-3.15.0" = { + "@lerna/exec-3.16.0" = { name = "_at_lerna_slash_exec"; packageName = "@lerna/exec"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.15.0.tgz"; - sha512 = "YuXPd64TNG9wbb3lRvyMARQbdlbMZ1bJZ+GCm0enivnIWUyg0qtBDcfPY2dWpIgOif04zx+K/gmOX4lCaGM4UQ=="; + url = "https://registry.npmjs.org/@lerna/exec/-/exec-3.16.0.tgz"; + sha512 = "mH3O5NXf/O88jBaBBTUf+d56CUkxpg782s3Jxy7HWbVuSUULt3iMRPTh+zEXO5/555etsIVVDDyUR76meklrJA=="; }; }; - "@lerna/filter-options-3.14.2" = { + "@lerna/filter-options-3.16.0" = { name = "_at_lerna_slash_filter-options"; packageName = "@lerna/filter-options"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.14.2.tgz"; - sha512 = "Ct8oYvRttbYB9JalngHhirb8o9ZVyLm5a9MpXNevXoHiu6j0vNhI19BQCwNnrL6wZvEHJnzPuUl/jO23tWxemg=="; + url = "https://registry.npmjs.org/@lerna/filter-options/-/filter-options-3.16.0.tgz"; + sha512 = "InIi1fF8+PxpCwir9bIy+pGxrdE6hvN0enIs1eNGCVS1TTE8osNgiZXa838bMQ1yaEccdcnVX6Z03BNKd56kNg=="; }; }; - "@lerna/filter-packages-3.13.0" = { + "@lerna/filter-packages-3.16.0" = { name = "_at_lerna_slash_filter-packages"; packageName = "@lerna/filter-packages"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.13.0.tgz"; - sha512 = "RWiZWyGy3Mp7GRVBn//CacSnE3Kw82PxE4+H6bQ3pDUw/9atXn7NRX+gkBVQIYeKamh7HyumJtyOKq3Pp9BADQ=="; + url = "https://registry.npmjs.org/@lerna/filter-packages/-/filter-packages-3.16.0.tgz"; + sha512 = "eGFzQTx0ogkGDCnbTuXqssryR6ilp8+dcXt6B+aq1MaqL/vOJRZyqMm4TY3CUOUnzZCi9S2WWyMw3PnAJOF+kg=="; }; }; "@lerna/get-npm-exec-opts-3.13.0" = { @@ -1498,22 +1516,22 @@ let sha512 = "Y0xWL0rg3boVyJk6An/vurKzubyJKtrxYv2sj4bB8Mc5zZ3tqtv0ccbOkmkXKqbzvNNF7VeUt1OJ3DRgtC/QZw=="; }; }; - "@lerna/get-packed-3.13.0" = { + "@lerna/get-packed-3.16.0" = { name = "_at_lerna_slash_get-packed"; packageName = "@lerna/get-packed"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-3.13.0.tgz"; - sha512 = "EgSim24sjIjqQDC57bgXD9l22/HCS93uQBbGpkzEOzxAVzEgpZVm7Fm1t8BVlRcT2P2zwGnRadIvxTbpQuDPTg=="; + url = "https://registry.npmjs.org/@lerna/get-packed/-/get-packed-3.16.0.tgz"; + sha512 = "AjsFiaJzo1GCPnJUJZiTW6J1EihrPkc2y3nMu6m3uWFxoleklsSCyImumzVZJssxMi3CPpztj8LmADLedl9kXw=="; }; }; - "@lerna/github-client-3.14.2" = { + "@lerna/github-client-3.16.0" = { name = "_at_lerna_slash_github-client"; packageName = "@lerna/github-client"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-3.14.2.tgz"; - sha512 = "+2Xh7t4qVmXiXE2utPnh5T7YwSltG74JP7c+EiooRY5+3zjh9MpPOcTKxVY3xKclzpsyXMohk2KpTF4tzA5rrg=="; + url = "https://registry.npmjs.org/@lerna/github-client/-/github-client-3.16.0.tgz"; + sha512 = "IVJjcKjkYaUEPJsDyAblHGEFFNKCRyMagbIDm14L7Ab94ccN6i4TKOqAFEJn2SJHYvKKBdp3Zj2zNlASOMe3DA=="; }; }; "@lerna/gitlab-client-3.15.0" = { @@ -1534,103 +1552,103 @@ let sha512 = "SlZvh1gVRRzYLVluz9fryY1nJpZ0FHDGB66U9tFfvnnxmueckRQxLopn3tXj3NU1kc3QANT2I5BsQkOqZ4TEFQ=="; }; }; - "@lerna/has-npm-version-3.14.2" = { + "@lerna/has-npm-version-3.16.0" = { name = "_at_lerna_slash_has-npm-version"; packageName = "@lerna/has-npm-version"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.14.2.tgz"; - sha512 = "cG+z5bB8JPd5f+nT2eLN2LmKg06O11AxlnUxgw2W7cLyc7cnsmMSp/rxt2JBMwW2r4Yn+CLLJIRwJZ2Es8jFSw=="; + url = "https://registry.npmjs.org/@lerna/has-npm-version/-/has-npm-version-3.16.0.tgz"; + sha512 = "TIY036dA9J8OyTrZq9J+it2DVKifL65k7hK8HhkUPpitJkw6jwbMObA/8D40LOGgWNPweJWqmlrTbRSwsR7DrQ=="; }; }; - "@lerna/import-3.15.0" = { + "@lerna/import-3.16.0" = { name = "_at_lerna_slash_import"; packageName = "@lerna/import"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/import/-/import-3.15.0.tgz"; - sha512 = "4GKQgeTXBTwMbZNkYyPdQIVA41HIISD7D6XRNrDaG0falUfvoPsknijQPCBmGqeh66u1Fcn2+4lkL3OCTj2FMg=="; + url = "https://registry.npmjs.org/@lerna/import/-/import-3.16.0.tgz"; + sha512 = "trsOmGHzw0rL/f8BLNvd+9PjoTkXq2Dt4/V2UCha254hMQaYutbxcYu8iKPxz9x86jSPlH7FpbTkkHXDsoY7Yg=="; }; }; - "@lerna/init-3.15.0" = { + "@lerna/init-3.16.0" = { name = "_at_lerna_slash_init"; packageName = "@lerna/init"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/init/-/init-3.15.0.tgz"; - sha512 = "VOqH6kFbFtfUbXxhSqXKY6bjnVp9nLuLRI6x9tVHOANX2LmSlXm17OUGBnNt+eM4uJLuiUsAR8nTlpCiz//lPQ=="; + url = "https://registry.npmjs.org/@lerna/init/-/init-3.16.0.tgz"; + sha512 = "Ybol/x5xMtBgokx4j7/Y3u0ZmNh0NiSWzBFVaOs2NOJKvuqrWimF67DKVz7yYtTYEjtaMdug64ohFF4jcT/iag=="; }; }; - "@lerna/link-3.15.0" = { + "@lerna/link-3.16.0" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-3.15.0.tgz"; - sha512 = "yKHuifADINobvDOLljBGkVGpVwy6J3mg5p9lQXBdOLXBoIKC8o/UKBR9JvZMFvT/Iy6zn6FPy1v5lz9iU1Ib0Q=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.0.tgz"; + sha512 = "nm9olZuvNGOqTFusgsD1eBDqTWwre3FUX0DkLORbqvvm/TIwRvXoOBmFceV2Q9zpAFRwj4vrnsPNQ/RYC3X4ZQ=="; }; }; - "@lerna/list-3.15.0" = { + "@lerna/list-3.16.0" = { name = "_at_lerna_slash_list"; packageName = "@lerna/list"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/list/-/list-3.15.0.tgz"; - sha512 = "8SvxnlfAnbEzQDf2NL0IxWyUuqWTykF9cHt5/f5TOzgESClpaOkDtqwh/UlE8nVTzWMnxnQUPQi3UTKyJD3i3g=="; + url = "https://registry.npmjs.org/@lerna/list/-/list-3.16.0.tgz"; + sha512 = "TkvstoPsgKqqQ0KfRumpsdMXfRSEhdXqOLq519XyI5IRWYxhoqXqfi8gG37UoBPhBNoe64japn5OjphF3rOmQA=="; }; }; - "@lerna/listable-3.14.0" = { + "@lerna/listable-3.16.0" = { name = "_at_lerna_slash_listable"; packageName = "@lerna/listable"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.14.0.tgz"; - sha512 = "ZK44Mo8xf/N97eQZ236SPSq0ek6+gk4HqHIx05foEMZVV1iIDH4a/nblLsJNjGQVsIdMYFPaqNJ0z+ZQfiJazQ=="; + url = "https://registry.npmjs.org/@lerna/listable/-/listable-3.16.0.tgz"; + sha512 = "mtdAT2EEECqrJSDm/aXlOUFr1MRE4p6hppzY//Klp05CogQy6uGaKk+iKG5yyCLaOXFFZvG4HfO11CmoGSDWzw=="; }; }; - "@lerna/log-packed-3.13.0" = { + "@lerna/log-packed-3.16.0" = { name = "_at_lerna_slash_log-packed"; packageName = "@lerna/log-packed"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-3.13.0.tgz"; - sha512 = "Rmjrcz+6aM6AEcEVWmurbo8+AnHOvYtDpoeMMJh9IZ9SmZr2ClXzmD7wSvjTQc8BwOaiWjjC/ukcT0UYA2m7wg=="; + url = "https://registry.npmjs.org/@lerna/log-packed/-/log-packed-3.16.0.tgz"; + sha512 = "Fp+McSNBV/P2mnLUYTaSlG8GSmpXM7krKWcllqElGxvAqv6chk2K3c2k80MeVB4WvJ9tRjUUf+i7HUTiQ9/ckQ=="; }; }; - "@lerna/npm-conf-3.13.0" = { + "@lerna/npm-conf-3.16.0" = { name = "_at_lerna_slash_npm-conf"; packageName = "@lerna/npm-conf"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.13.0.tgz"; - sha512 = "Jg2kANsGnhg+fbPEzE0X9nX5oviEAvWj0nYyOkcE+cgWuT7W0zpnPXC4hA4C5IPQGhwhhh0IxhWNNHtjTuw53g=="; + url = "https://registry.npmjs.org/@lerna/npm-conf/-/npm-conf-3.16.0.tgz"; + sha512 = "HbO3DUrTkCAn2iQ9+FF/eisDpWY5POQAOF1m7q//CZjdC2HSW3UYbKEGsSisFxSfaF9Z4jtrV+F/wX6qWs3CuA=="; }; }; - "@lerna/npm-dist-tag-3.15.0" = { + "@lerna/npm-dist-tag-3.16.0" = { name = "_at_lerna_slash_npm-dist-tag"; packageName = "@lerna/npm-dist-tag"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.15.0.tgz"; - sha512 = "lnbdwc4Ebs7/EI9fTIgbH3dxXnP+SuCcGhG7P5ZjOqo67SY09sRZGcygEzabpvIwXvKpBF8vCd4xxzjnF2u+PA=="; + url = "https://registry.npmjs.org/@lerna/npm-dist-tag/-/npm-dist-tag-3.16.0.tgz"; + sha512 = "MQrBkqJJB9+eNphuj9w90QPMOs4NQXMuSRk9NqzeFunOmdDopPCV0Q7IThSxEuWnhJ2n3B7G0vWUP7tNMPdqIQ=="; }; }; - "@lerna/npm-install-3.14.2" = { + "@lerna/npm-install-3.16.0" = { name = "_at_lerna_slash_npm-install"; packageName = "@lerna/npm-install"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.14.2.tgz"; - sha512 = "JYJJRtLETrGpcQZa8Rj16vbye399RqnaXmJlZuZ2twjJ2DYVYtwkfsGEOdvdaKw5KVOEpWcAxBA9OMmKQtCLQw=="; + url = "https://registry.npmjs.org/@lerna/npm-install/-/npm-install-3.16.0.tgz"; + sha512 = "APUOIilZCzDzce92uLEwzt1r7AEMKT/hWA1ThGJL+PO9Rn8A95Km3o2XZAYG4W0hR+P4O2nSVuKbsjQtz8CjFQ=="; }; }; - "@lerna/npm-publish-3.15.0" = { + "@lerna/npm-publish-3.16.1" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.15.0.tgz"; - sha512 = "G7rcNcSGjG0La8eHPXDvCvoNXbwNnP6XJ+GPh3CH5xiR/nikfLOa+Bfm4ytdjVWWxnKfCT4qyMTCoV1rROlqQQ=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.16.1.tgz"; + sha512 = "+whucIDWaBecV4BsPrpA8nCv0eTv96BKOTVSURm3G7voR7yCSl7Fi/grC5Id9cjG3IiIE03rPTw54cUwOQSZdQ=="; }; }; "@lerna/npm-run-script-3.14.2" = { @@ -1642,13 +1660,13 @@ let sha512 = "LbVFv+nvAoRTYLMrJlJ8RiakHXrLslL7Jp/m1R18vYrB8LYWA3ey+nz5Tel2OELzmjUiemAKZsD9h6i+Re5egg=="; }; }; - "@lerna/otplease-3.14.0" = { + "@lerna/otplease-3.16.0" = { name = "_at_lerna_slash_otplease"; packageName = "@lerna/otplease"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-3.14.0.tgz"; - sha512 = "rYAWzaYZ81bwnrmTkYWGgcc13bl/6DlG7pjWQWNGAJNLzO5zzj0xmXN5sMFJnNvDpSiS/ZS1sIuPvb4xnwLUkg=="; + url = "https://registry.npmjs.org/@lerna/otplease/-/otplease-3.16.0.tgz"; + sha512 = "uqZ15wYOHC+/V0WnD2iTLXARjvx3vNrpiIeyIvVlDB7rWse9mL4egex/QSgZ+lDx1OID7l2kgvcUD9cFpbqB7Q=="; }; }; "@lerna/output-3.13.0" = { @@ -1660,49 +1678,49 @@ let sha512 = "7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg=="; }; }; - "@lerna/pack-directory-3.14.2" = { + "@lerna/pack-directory-3.16.1" = { name = "_at_lerna_slash_pack-directory"; packageName = "@lerna/pack-directory"; - version = "3.14.2"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.14.2.tgz"; - sha512 = "b3LnJEmIml3sDj94TQT8R+kVyrDlmE7Su0WwcBYZDySXPMSZ38WA2/2Xjy/EWhXlFxp/nUJKyUG78nDrZ/00Uw=="; + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.16.1.tgz"; + sha512 = "mygbdbmHhM8QDWsi8QHFkv8djv6oHnP7c5OpnPbagM7QRdXxchwLrSjcSASJvljzmQeRo4zgHN71CHgyhichOA=="; }; }; - "@lerna/package-3.14.2" = { + "@lerna/package-3.16.0" = { name = "_at_lerna_slash_package"; packageName = "@lerna/package"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package/-/package-3.14.2.tgz"; - sha512 = "YR/+CzYdufJYfsUlrfuhTjA35iSZpXK7mVOZmeR9iRWhSaqesm4kq2zfxm9vCpZV2oAQQZOwi4eo5h0rQBtdiw=="; + url = "https://registry.npmjs.org/@lerna/package/-/package-3.16.0.tgz"; + sha512 = "2lHBWpaxcBoiNVbtyLtPUuTYEaB/Z+eEqRS9duxpZs6D+mTTZMNy6/5vpEVSCBmzvdYpyqhqaYjjSLvjjr5Riw=="; }; }; - "@lerna/package-graph-3.14.0" = { + "@lerna/package-graph-3.16.0" = { name = "_at_lerna_slash_package-graph"; packageName = "@lerna/package-graph"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.14.0.tgz"; - sha512 = "dNpA/64STD5YXhaSlg4gT6Z474WPJVCHoX1ibsVIFu0fVgH609Y69bsdmbvTRdI7r6Dcu4ZfGxdR636RTrH+Eg=="; + url = "https://registry.npmjs.org/@lerna/package-graph/-/package-graph-3.16.0.tgz"; + sha512 = "A2mum/gNbv7zCtAwJqoxzqv89As73OQNK2MgSX1SHWya46qoxO9a9Z2c5lOFQ8UFN5ZxqWMfFYXRCz7qzwmFXw=="; }; }; - "@lerna/prerelease-id-from-version-3.14.0" = { + "@lerna/prerelease-id-from-version-3.16.0" = { name = "_at_lerna_slash_prerelease-id-from-version"; packageName = "@lerna/prerelease-id-from-version"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-3.14.0.tgz"; - sha512 = "Ap3Z/dNhqQuSrKmK+JmzYvQYI2vowxHvUVxZJiDVilW8dyNnxkCsYFmkuZytk5sxVz4VeGLNPS2RSsU5eeSS+Q=="; + url = "https://registry.npmjs.org/@lerna/prerelease-id-from-version/-/prerelease-id-from-version-3.16.0.tgz"; + sha512 = "qZyeUyrE59uOK8rKdGn7jQz+9uOpAaF/3hbslJVFL1NqF9ELDTqjCPXivuejMX/lN4OgD6BugTO4cR7UTq/sZA=="; }; }; - "@lerna/project-3.15.0" = { + "@lerna/project-3.16.0" = { name = "_at_lerna_slash_project"; packageName = "@lerna/project"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/project/-/project-3.15.0.tgz"; - sha512 = "eNGUWiMbQ9kh9kGkomtMnsLypS0rfLqxKgZP2+VnNVtIXjnLv4paeTm+1lkL+naNJUwhnpMk2NSLEeoxT/20QA=="; + url = "https://registry.npmjs.org/@lerna/project/-/project-3.16.0.tgz"; + sha512 = "NrKcKK1EqXqhrGvslz6Q36+ZHuK3zlDhGdghRqnxDcHxMPT01NgLcmsnymmQ+gjMljuLRmvKYYCuHrknzX8VrA=="; }; }; "@lerna/prompt-3.13.0" = { @@ -1714,13 +1732,13 @@ let sha512 = "P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA=="; }; }; - "@lerna/publish-3.15.0" = { + "@lerna/publish-3.16.1" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.15.0.tgz"; - sha512 = "6tRRBJ8olLSXfrUsR4f7vSfx0cT1oPi6/v06yI3afDSsUX6eQ3ooZh7gMY4RWmd+nM/IJHTUzhlKF6WhTvo+9g=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.1.tgz"; + sha512 = "a2y27d5m37sT/16eI9MLfZk+v5LDRr+Dpj8kT+FTsQqi4uS1ZOtzx9JyC9sLjZTSSivr1ZTQrrZbgyQ2YtRAMg=="; }; }; "@lerna/pulse-till-done-3.13.0" = { @@ -1732,22 +1750,22 @@ let sha512 = "1SOHpy7ZNTPulzIbargrgaJX387csN7cF1cLOGZiJQA6VqnS5eWs2CIrG8i8wmaUavj2QlQ5oEbRMVVXSsGrzA=="; }; }; - "@lerna/query-graph-3.14.0" = { + "@lerna/query-graph-3.16.0" = { name = "_at_lerna_slash_query-graph"; packageName = "@lerna/query-graph"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-3.14.0.tgz"; - sha512 = "6YTh3vDMW2hUxHdKeRvx4bosc9lZClKaN+DzC1XKTkwDbWrsjmEzLcemKL6QnyyeuryN2f/eto7P9iSe3z3pQQ=="; + url = "https://registry.npmjs.org/@lerna/query-graph/-/query-graph-3.16.0.tgz"; + sha512 = "p0RO+xmHDO95ChJdWkcy9TNLysLkoDARXeRHzY5U54VCwl3Ot/2q8fMCVlA5UeGXDutEyyByl3URqEpcQCWI7Q=="; }; }; - "@lerna/resolve-symlink-3.13.0" = { + "@lerna/resolve-symlink-3.16.0" = { name = "_at_lerna_slash_resolve-symlink"; packageName = "@lerna/resolve-symlink"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-3.13.0.tgz"; - sha512 = "Lc0USSFxwDxUs5JvIisS8JegjA6SHSAWJCMvi2osZx6wVRkEDlWG2B1JAfXUzCMNfHoZX0/XX9iYZ+4JIpjAtg=="; + url = "https://registry.npmjs.org/@lerna/resolve-symlink/-/resolve-symlink-3.16.0.tgz"; + sha512 = "Ibj5e7njVHNJ/NOqT4HlEgPFPtPLWsO7iu59AM5bJDcAJcR96mLZ7KGVIsS2tvaO7akMEJvt2P+ErwCdloG3jQ=="; }; }; "@lerna/rimraf-dir-3.14.2" = { @@ -1759,58 +1777,58 @@ let sha512 = "eFNkZsy44Bu9v1Hrj5Zk6omzg8O9h/7W6QYK1TTUHeyrjTEwytaNQlqF0lrTLmEvq55sviV42NC/8P3M2cvq8Q=="; }; }; - "@lerna/run-3.15.0" = { + "@lerna/run-3.16.0" = { name = "_at_lerna_slash_run"; packageName = "@lerna/run"; - version = "3.15.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run/-/run-3.15.0.tgz"; - sha512 = "KQBkzZYoEKmzILKjbjsm1KKVWFBXwAdwzqJWj/lfxxd3V5LRF8STASk8aiw8bSpB0bUL9TU/pbXakRxiNzjDwQ=="; + url = "https://registry.npmjs.org/@lerna/run/-/run-3.16.0.tgz"; + sha512 = "woTeLlB1OAAz4zzjdI6RyIxSGuxiUPHJZm89E1pDEPoWwtQV6HMdMgrsQd9ATsJ5Ez280HH4bF/LStAlqW8Ufg=="; }; }; - "@lerna/run-lifecycle-3.14.0" = { + "@lerna/run-lifecycle-3.16.1" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "3.14.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.14.0.tgz"; - sha512 = "GUM3L9MzGRSW0WQ8wbLW1+SYStU1OFjW0GBzShhBnFrO4nGRrU7VchsLpcLu0hk2uCzyhsrDKzifEdOdUyMoEQ=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.16.1.tgz"; + sha512 = "hKvoQis5e+ktR9zWoya/BD1oVqRKDTJHLuCJsYaNYH4p5JJ5k2Y5bw+Gv3weccqb8uNrsXPcQmGPXhmNNSrAfw=="; }; }; - "@lerna/run-parallel-batches-3.13.0" = { + "@lerna/run-parallel-batches-3.16.0" = { name = "_at_lerna_slash_run-parallel-batches"; packageName = "@lerna/run-parallel-batches"; - version = "3.13.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.13.0.tgz"; - sha512 = "bICFBR+cYVF1FFW+Tlm0EhWDioTUTM6dOiVziDEGE1UZha1dFkMYqzqdSf4bQzfLS31UW/KBd/2z8jy2OIjEjg=="; + url = "https://registry.npmjs.org/@lerna/run-parallel-batches/-/run-parallel-batches-3.16.0.tgz"; + sha512 = "2J/Nyv+MvogmQEfC7VcS21ifk7w0HVvzo2yOZRPvkCzGRu/rducxtB4RTcr58XCZ8h/Bt1aqQYKExu3c/3GXwg=="; }; }; - "@lerna/run-topologically-3.14.0" = { + "@lerna/run-topologically-3.16.0" = { name = "_at_lerna_slash_run-topologically"; packageName = "@lerna/run-topologically"; - version = "3.14.0"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-3.14.0.tgz"; - sha512 = "y+KBpC1YExFzGynovt9MY4O/bc3RrJaKeuXieiPfKGKxrdtmZe/r33oj/xePTXZq65jnw3SaU3H8S5CrrdkwDg=="; + url = "https://registry.npmjs.org/@lerna/run-topologically/-/run-topologically-3.16.0.tgz"; + sha512 = "4Hlpv4zDtKWa5Z0tPkeu0sK+bxZEKgkNESMGmWrUCNfj7xwvAJurcraK8+a2Y0TFYwf0qjSLY/MzX+ZbJA3Cgw=="; }; }; - "@lerna/symlink-binary-3.14.2" = { + "@lerna/symlink-binary-3.16.0" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.14.2.tgz"; - sha512 = "tqMwuWi6z1da0AFFbleWyu3H9fqayiV50rjj4anFTfayel9jSjlA1xPG+56sGIP6zUUNuUSc9kLh7oRRmlauoA=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.0.tgz"; + sha512 = "7sgLWKP7RVxKPmnJZnq3ynqOsO6FDNFtJ/eQA46aV8ivKYoJY3+083FFErvka460V2MTBCEZsKXfX8Nezly/fg=="; }; }; - "@lerna/symlink-dependencies-3.14.2" = { + "@lerna/symlink-dependencies-3.16.0" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "3.14.2"; + version = "3.16.0"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.14.2.tgz"; - sha512 = "Ox7WKXnHZ7IwWlejcCq3n0Hd/yMLv8AwIryhvWxM/RauAge+ML4wg578SsdCyKob8ecgm/R0ytHiU06j81iL1w=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.0.tgz"; + sha512 = "Pi3knz/+es8WltHBTG6UzYA3jFulv8kDGUVw225Bhv3YNcotX8ijXhm6oBO5zvFuW24b4fojZQxznM/EqJdaIw=="; }; }; "@lerna/timer-3.13.0" = { @@ -1831,13 +1849,13 @@ let sha512 = "SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA=="; }; }; - "@lerna/version-3.15.0" = { + "@lerna/version-3.16.1" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-3.15.0.tgz"; - sha512 = "vReYX1NMXZ9PwzTZm97wAl/k3bmRnRZhnQi3mq/m49xTnDavq7p4sbUdFpvu8cVZNKnYS02pNIVGHrQw+K8ZCw=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.1.tgz"; + sha512 = "CtDjZmrtcuKSk6xJc74ZBUJuJSH2N5BKkB29Yli1NvH+Tsn1CHHamr9bGYmRBEZlNSAxf1exlLPMX9jlZb5J8g=="; }; }; "@lerna/write-log-file-3.13.0" = { @@ -1921,22 +1939,22 @@ let sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; }; }; - "@octokit/endpoint-5.2.2" = { + "@octokit/endpoint-5.3.1" = { name = "_at_octokit_slash_endpoint"; packageName = "@octokit/endpoint"; - version = "5.2.2"; + version = "5.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.2.2.tgz"; - sha512 = "VhKxM4CQanIUZDffExqpdpgqu3heF51qbY1wazoNtvIKXAAVoFjqLq2BOhesXkTqxXMO1Ze1XbS8DkIjUxAB+g=="; + url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.1.tgz"; + sha512 = "4mKqSQfeTRFpQMUGIUG1ewdQT64b2YpvjG2dE1x7nhQupdI/AjdgdcIsmPtRFEXlih/uLQLRWJL4FrivpQdC7A=="; }; }; - "@octokit/plugin-enterprise-rest-2.2.2" = { + "@octokit/plugin-enterprise-rest-3.6.2" = { name = "_at_octokit_slash_plugin-enterprise-rest"; packageName = "@octokit/plugin-enterprise-rest"; - version = "2.2.2"; + version = "3.6.2"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-2.2.2.tgz"; - sha512 = "CTZr64jZYhGWNTDGlSJ2mvIlFsm9OEO3LqWn9I/gmoHI4jRBp4kpHoFYNemG4oA75zUAcmbuWblb7jjP877YZw=="; + url = "https://registry.npmjs.org/@octokit/plugin-enterprise-rest/-/plugin-enterprise-rest-3.6.2.tgz"; + sha512 = "3wF5eueS5OHQYuAEudkpN+xVeUsg8vYEMMenEzLphUZ7PRZ8OJtDcsreL3ad9zxXmBbaFWzLmFcdob5CLyZftA=="; }; }; "@octokit/request-5.0.1" = { @@ -1957,13 +1975,13 @@ let sha512 = "L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig=="; }; }; - "@octokit/rest-16.28.4" = { + "@octokit/rest-16.28.5" = { name = "_at_octokit_slash_rest"; packageName = "@octokit/rest"; - version = "16.28.4"; + version = "16.28.5"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.4.tgz"; - sha512 = "ZBsfD46t3VNkwealxm5zloVgQta8d8o4KYBR/hMAZ582IgjmSDKZdkjyv5w37IUCM3tcPZWKUT+kml9pEIC2GA=="; + url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.5.tgz"; + sha512 = "W8hHSm6103c+lNdTuQBMKdZNDCOFFXJdatj92g2d6Hqk134EMDHRc02QWI/Fs1WGnWZ8Leb0QFbXPKO2njeevQ=="; }; }; "@parcel/fs-1.11.0" = { @@ -2101,22 +2119,22 @@ let sha1 = "a777360b5b39a1a2e5106f8e858f2fd2d060c570"; }; }; - "@schematics/angular-8.1.1" = { + "@schematics/angular-8.1.2" = { name = "_at_schematics_slash_angular"; packageName = "@schematics/angular"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/angular/-/angular-8.1.1.tgz"; - sha512 = "3zyVLV/PbkRjaqBE3gOJbwFkpQ62TKKFDgxm41OPakyy0XeC9Zc+2i3UIWDDfOd6chs+NMJRXjDfvO+gkmp6FQ=="; + url = "https://registry.npmjs.org/@schematics/angular/-/angular-8.1.2.tgz"; + sha512 = "BeEzuS0s4j+BPboUhl97VMfhj7V+HpNbbY3PkD3TLd0cnSEoaLmtX+YjxbxZgwk6vhDp+l6YtpWt//5H/+0rFQ=="; }; }; - "@schematics/update-0.801.1" = { + "@schematics/update-0.801.2" = { name = "_at_schematics_slash_update"; packageName = "@schematics/update"; - version = "0.801.1"; + version = "0.801.2"; src = fetchurl { - url = "https://registry.npmjs.org/@schematics/update/-/update-0.801.1.tgz"; - sha512 = "bVIgNMt3vDYNmit7KUSmjUbTEcGNpARlKpyv6lHhlBhWLh8YeXNizD9yGJ0B6hxXVdwF+JKoaVMc1xADgDbT7w=="; + url = "https://registry.npmjs.org/@schematics/update/-/update-0.801.2.tgz"; + sha512 = "xb54QXvII1JLdqgEqsh6mWu5qTt5UezmOWTZayRegsj0vNlzWFzoLXpiPFCWVEKUODa6aV4O5XW5CiQuVYPVuQ=="; }; }; "@sindresorhus/is-0.14.0" = { @@ -2146,13 +2164,13 @@ let sha512 = "hb+6E7kMzWlcwfe//ILDoktBPKL2a3+RnJT/CXnzRXaiLQpsdkf5li4q2v0fmvd+4v7L3tTN8KM+//lJyviEkg=="; }; }; - "@snyk/dep-graph-1.8.1" = { + "@snyk/dep-graph-1.10.0" = { name = "_at_snyk_slash_dep-graph"; packageName = "@snyk/dep-graph"; - version = "1.8.1"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-1.8.1.tgz"; - sha512 = "cWqJwuiU1+9hL0Fd/qgq0DYeWM/6mqPIa/B0yoEsHD8nR/IPFgalVvMbOSdPKeApvi/AxDzcRxr8tfqHJ7aq2w=="; + url = "https://registry.npmjs.org/@snyk/dep-graph/-/dep-graph-1.10.0.tgz"; + sha512 = "QwQTmmnVb1mjAffGsjKKrwit8ahLWyhlKWQcTVZo9UXFgWAwiuCjTXKAXhijZjGvrXQzNf5KbIBu+SZ1Dq2toQ=="; }; }; "@snyk/gemfile-1.2.0" = { @@ -2263,22 +2281,22 @@ let sha512 = "XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA=="; }; }; - "@textlint/ast-node-types-4.2.2" = { + "@textlint/ast-node-types-4.2.4" = { name = "_at_textlint_slash_ast-node-types"; packageName = "@textlint/ast-node-types"; - version = "4.2.2"; + version = "4.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.2.tgz"; - sha512 = "5VHykhxgUat7dvRWGw52Tk55SWjuZDpDO7PKDhfcLTFrD1cjbTtFFnWeJc0BfoqB2AUjfHXRoMdnqbFRGmnPVQ=="; + url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.4.tgz"; + sha512 = "ggiixpScxgdMY42b6UafD1iUboSvl9k3vGA9kynP+kd6mEhTDzxtb1aHPDAnV+DpAEw4qpHMz72GBFkX/iOSFw=="; }; }; - "@textlint/ast-traverse-2.1.3" = { + "@textlint/ast-traverse-2.1.5" = { name = "_at_textlint_slash_ast-traverse"; packageName = "@textlint/ast-traverse"; - version = "2.1.3"; + version = "2.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.1.3.tgz"; - sha512 = "djZYlEtghk1Q9Tb0XU6if0S7JA+dfoO5AB6+Tcmi04HdWlXRZl8U59Sco+JzVFd3haFbDpMvC0sQIda4uZbsOA=="; + url = "https://registry.npmjs.org/@textlint/ast-traverse/-/ast-traverse-2.1.5.tgz"; + sha512 = "Xt1x8eBmXS+4nOQ+0VjIoyXgcz9VFxK3ug8EiG7tGkhezIU90HRW2O8jPOPXhOcrrRzBGQNG9tsL7+IUDzF5FQ=="; }; }; "@textlint/feature-flag-3.1.3" = { @@ -2290,76 +2308,94 @@ let sha512 = "59RaAmdsMB3e32PD04N0YOJI2L3ljWR8fEk9FDLbOJAZeu7c+TqgETHDiVnkrh8gM+m8RL0h4wWq1jbB1kj0Xw=="; }; }; - "@textlint/fixer-formatter-3.1.6" = { + "@textlint/fixer-formatter-3.1.8" = { name = "_at_textlint_slash_fixer-formatter"; packageName = "@textlint/fixer-formatter"; - version = "3.1.6"; + version = "3.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.1.6.tgz"; - sha512 = "bCNQpoo5jyjNBTMrTETzIIjfwe4bAQyqLfDxe+CeclKdpOnoRRAy5oj4p0aOuCaRVlpp3HxqBfVl3a5yCnCj/w=="; + url = "https://registry.npmjs.org/@textlint/fixer-formatter/-/fixer-formatter-3.1.8.tgz"; + sha512 = "PKpUA2EOinFSE9kEhr6C2kpdEJj4U7nHuB4dCRHV9so3hIJyqXJBx4YwTpyggIUgNv6OkY2qo8D0g3YOu99zSw=="; }; }; - "@textlint/kernel-3.1.6" = { + "@textlint/kernel-3.1.8" = { name = "_at_textlint_slash_kernel"; packageName = "@textlint/kernel"; - version = "3.1.6"; + version = "3.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.1.6.tgz"; - sha512 = "0Ox1WEFrqcsp/7hmlN9N3IrbuYT11cmBBIv647Mj2dccaspRhcqi0/PUsrnvB82JW43XTQNWbHG7GqpQaTQ1Pg=="; + url = "https://registry.npmjs.org/@textlint/kernel/-/kernel-3.1.8.tgz"; + sha512 = "ViCHoy2QMpCD8Vu+2vXHXc+Jt9D5lIKUH7+j1TzP5JPiPmV1IbEMrztk4ubjacYQTSRHXE9BCLGOffOKSxt+ag=="; }; }; - "@textlint/linter-formatter-3.1.5" = { + "@textlint/linter-formatter-3.1.7" = { name = "_at_textlint_slash_linter-formatter"; packageName = "@textlint/linter-formatter"; - version = "3.1.5"; + version = "3.1.7"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.1.5.tgz"; - sha512 = "UMCcwoJPa5EgfihPgpouQqoemi66fPD19rdhvdgYcMzObZ0cR+n2FczCadJnW10JxGvm9oEOzIOpWG57/63iCg=="; + url = "https://registry.npmjs.org/@textlint/linter-formatter/-/linter-formatter-3.1.7.tgz"; + sha512 = "myFj1Vj22LdzDecAvfIWojobi0AIGCEuEhLlrGcn478Wv6vQgP+51o0zTu1e2Duth1Z7YYjdTIcn2yZWxWSalg=="; }; }; - "@textlint/markdown-to-ast-6.1.3" = { + "@textlint/markdown-to-ast-6.1.5" = { name = "_at_textlint_slash_markdown-to-ast"; packageName = "@textlint/markdown-to-ast"; - version = "6.1.3"; + version = "6.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.1.3.tgz"; - sha512 = "9/NJkfspGAin8raYKtkcwtXDmC/T66m7b5wRJgOPgdbjO6jnUezAUWCt2HqscSnNU/qw4GBCQDxTJLyOpZwvCg=="; + url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.1.5.tgz"; + sha512 = "WM2z0/wXpEREXAkSoKyPLG4qp5e5XGI5ctuQ5sUG1BE4aaAxJ3ogomaocQc82MPobiQjYp5791A+cXXYx5ML5w=="; }; }; - "@textlint/text-to-ast-3.1.3" = { + "@textlint/module-interop-1.0.1" = { + name = "_at_textlint_slash_module-interop"; + packageName = "@textlint/module-interop"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/@textlint/module-interop/-/module-interop-1.0.1.tgz"; + sha512 = "gqx1Te+lMnXX6xyGTUdzGhm8RT7IfiSRMtWoH1FeTMg2InArRT+lTksCFc/x5dtaPN4vwOFZUvU8oTzYQzXbyg=="; + }; + }; + "@textlint/text-to-ast-3.1.5" = { name = "_at_textlint_slash_text-to-ast"; packageName = "@textlint/text-to-ast"; - version = "3.1.3"; + version = "3.1.5"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.1.3.tgz"; - sha512 = "0Il7SGwwgl6vUsQqnII4DXQDyIsa7nhardr5us4am98dALNd28mlciFHw2JUrwppoSZcYaBibIb22eo2lEmvMA=="; + url = "https://registry.npmjs.org/@textlint/text-to-ast/-/text-to-ast-3.1.5.tgz"; + sha512 = "LGDlK+Jk5hpVPYcBxFU1Go9bG3AYAkHwNkAy573gLBKuGjb69FY6Wpmt4XBcKCKaa1j7S9cq7OxiSu69dVyQlQ=="; }; }; - "@textlint/textlint-plugin-markdown-5.1.6" = { + "@textlint/textlint-plugin-markdown-5.1.8" = { name = "_at_textlint_slash_textlint-plugin-markdown"; packageName = "@textlint/textlint-plugin-markdown"; - version = "5.1.6"; + version = "5.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.1.6.tgz"; - sha512 = "LUrxTQFBpJv0BQJkwUa0p4yY+fclOK2bPu2E5N8fWy3qg5bsIZynoUElYCpjc2c9WItZaaJINjiRVJ01FxnoNg=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-markdown/-/textlint-plugin-markdown-5.1.8.tgz"; + sha512 = "x38FOJzbgz1DLc5inRz0qyjd879CMvWkeUJc0tcuYvZWEoQ7RS5YwjQK3Q9C3LGGM2JGy4Wnkr6jBIBFCBBbdA=="; }; }; - "@textlint/textlint-plugin-text-4.1.6" = { + "@textlint/textlint-plugin-text-4.1.8" = { name = "_at_textlint_slash_textlint-plugin-text"; packageName = "@textlint/textlint-plugin-text"; - version = "4.1.6"; + version = "4.1.8"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.1.6.tgz"; - sha512 = "GxsWRmleYtWNLKOwFJnYXswHn0x21I/htPfKCJ2jAw9Kwr0mDxJvzjyYAgOtoCFZ+q1dAGyq5mtWbh8y6rhvpg=="; + url = "https://registry.npmjs.org/@textlint/textlint-plugin-text/-/textlint-plugin-text-4.1.8.tgz"; + sha512 = "QMc1xQKyQL+oLMNaij6v4Gt02m51lwM4lN5FCjUrhVA+0LfX/2whBLBcXbnw5+GVkkQmVcF98aQovEJ8YPLTtA=="; }; }; - "@textlint/types-1.1.5" = { + "@textlint/types-1.2.1" = { name = "_at_textlint_slash_types"; packageName = "@textlint/types"; - version = "1.1.5"; + version = "1.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/@textlint/types/-/types-1.1.5.tgz"; - sha512 = "z9PqRrk9EEgSP3F83YV9A/yAYMbfubf3D85QwN/EUm3gtg0XuALqt9aHywuFcgVnvEJCUbhwz4xV51oqq5unYw=="; + url = "https://registry.npmjs.org/@textlint/types/-/types-1.2.1.tgz"; + sha512 = "HNbVS+F9hNy4E/Hnv2mV/6rjlPB7Mdc5KCiT+uFjMK7vqiVuW/DeKjkYScRirQ0jf8gWUXBVTxZgwBBlJZmV1Q=="; + }; + }; + "@textlint/utils-1.0.2" = { + name = "_at_textlint_slash_utils"; + packageName = "@textlint/utils"; + version = "1.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/@textlint/utils/-/utils-1.0.2.tgz"; + sha512 = "T8med69p37s1TE/G56kxWSYz8PqWYCnqyVZp2K0WoQbkNDrckmqkJ6xTmw4uZg4kypn3+EXVuktWLOpaSUcktA=="; }; }; "@types/accepts-1.3.5" = { @@ -2506,40 +2542,40 @@ let sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA=="; }; }; - "@types/node-10.14.12" = { + "@types/node-10.14.13" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "10.14.12"; + version = "10.14.13"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-10.14.12.tgz"; - sha512 = "QcAKpaO6nhHLlxWBvpc4WeLrTvPqlHOvaj0s5GriKkA1zq+bsFBPpfYCvQhLqLgYlIko8A9YrPdaMHCo5mBcpg=="; + url = "https://registry.npmjs.org/@types/node/-/node-10.14.13.tgz"; + sha512 = "yN/FNNW1UYsRR1wwAoyOwqvDuLDtVXnaJTZ898XIw/Q5cCaeVAlVwvsmXLX5PuiScBYwZsZU4JYSHB3TvfdwvQ=="; }; }; - "@types/node-12.6.2" = { + "@types/node-12.6.8" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "12.6.2"; + version = "12.6.8"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-12.6.2.tgz"; - sha512 = "gojym4tX0FWeV2gsW4Xmzo5wxGjXGm550oVUII7f7G5o4BV6c7DBdiG1RRQd+y1bvqRyYtPfMK85UM95vsapqQ=="; + url = "https://registry.npmjs.org/@types/node/-/node-12.6.8.tgz"; + sha512 = "aX+gFgA5GHcDi89KG5keey2zf0WfZk/HAQotEamsK2kbey+8yGKcson0hbK8E+v0NArlCJQCqMP161YhV6ZXLg=="; }; }; - "@types/node-6.14.6" = { + "@types/node-6.14.7" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "6.14.6"; + version = "6.14.7"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-6.14.6.tgz"; - sha512 = "rFs9zCFtSHuseiNXxYxFlun8ibu+jtZPgRM+2ILCmeLiGeGLiIGxuOzD+cNyHegI1GD+da3R/cIbs9+xCLp13w=="; + url = "https://registry.npmjs.org/@types/node/-/node-6.14.7.tgz"; + sha512 = "YbPXbaynBTe0pVExPhL76TsWnxSPeFAvImIsmylpBWn/yfw+lHy+Q68aawvZHsgskT44ZAoeE67GM5f+Brekew=="; }; }; - "@types/node-8.10.50" = { + "@types/node-8.10.51" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "8.10.50"; + version = "8.10.51"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-8.10.50.tgz"; - sha512 = "+ZbcUwJdaBgOZpwXeT0v+gHC/jQbEfzoc9s4d0rN0JIKeQbuTrT+A2n1aQY6LpZjrLXJT7avVUqiCecCJeeZxA=="; + url = "https://registry.npmjs.org/@types/node/-/node-8.10.51.tgz"; + sha512 = "cArrlJp3Yv6IyFT/DYe+rlO8o3SIHraALbBW/+CcCYW/a9QucpLI+n2p4sRxAvl2O35TiecpX2heSZtJjvEO+Q=="; }; }; "@types/q-1.5.2" = { @@ -2632,31 +2668,31 @@ let sha512 = "wumeMZTz5aQ+1Y6uxTKegIsgOXEWT3hT8f9sW2mj5SwNDVyQ+AHZTgSynYExTUJg3dH81uKgFDUpPdAvGxzh8g=="; }; }; - "@vue/cli-ui-3.9.2" = { + "@vue/cli-ui-3.9.3" = { name = "_at_vue_slash_cli-ui"; packageName = "@vue/cli-ui"; - version = "3.9.2"; + version = "3.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.9.2.tgz"; - sha512 = "jEDd+QnY8xcRflJcHjbHAPmeC8uvxHip+RRlBvvLRzLJy04Wka7r6LPO5JMD/BwTgh8NS/DUYxYCNaO35ghdCA=="; + url = "https://registry.npmjs.org/@vue/cli-ui/-/cli-ui-3.9.3.tgz"; + sha512 = "CDMQn1An4OlaLoB0paZfXBSvuUUkR3BPU/EWTLszP1lHqTecAkj7ESIdelXfpPwRhxchE/7c9s9XXEhpHublrQ=="; }; }; - "@vue/cli-ui-addon-webpack-3.9.2" = { + "@vue/cli-ui-addon-webpack-3.9.3" = { name = "_at_vue_slash_cli-ui-addon-webpack"; packageName = "@vue/cli-ui-addon-webpack"; - version = "3.9.2"; + version = "3.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.9.2.tgz"; - sha512 = "YMeERzmWjrXd3JgH3ybDs5YOBDGJnTQ5+vz1/zeuYt5PAek63Zw+37Zu1qf6Z13gJZTSInD1XVo/MhAREI+9/Q=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-webpack/-/cli-ui-addon-webpack-3.9.3.tgz"; + sha512 = "BQro2UwHx7w1DcM2MJoF7qfa/Pp48mZWLwqJjCJVqg1utFkAqwjlIM9VweYWEWO7/jJ5B4JfuKCzRrGTtGDbdw=="; }; }; - "@vue/cli-ui-addon-widgets-3.9.2" = { + "@vue/cli-ui-addon-widgets-3.9.3" = { name = "_at_vue_slash_cli-ui-addon-widgets"; packageName = "@vue/cli-ui-addon-widgets"; - version = "3.9.2"; + version = "3.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.9.2.tgz"; - sha512 = "nehd1JqV/1mLrMLv+7wGZj+Lj2/q1lVOVGF12skcfknkwLRDfBN4BQyegvgmNRlxVYyt8Q13Ni8TsE8UibrUnA=="; + url = "https://registry.npmjs.org/@vue/cli-ui-addon-widgets/-/cli-ui-addon-widgets-3.9.3.tgz"; + sha512 = "DnIvWNbhilouNyaevH2aBKSzdUK1zhveQvGp3z9ddVNgD6MadY9qf0YIrGrtzK4gn2Jc42BpOh64Slzwq9KhcQ=="; }; }; "@webassemblyjs/ast-1.8.1" = { @@ -3253,13 +3289,13 @@ let sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="; }; }; - "acorn-6.2.0" = { + "acorn-6.2.1" = { name = "acorn"; packageName = "acorn"; - version = "6.2.0"; + version = "6.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-6.2.0.tgz"; - sha512 = "8oe72N3WPMjA+2zVG71Ia0nXZ8DpQH+QyyHO+p06jT8eg8FGG3FbcUIi8KziHlAfheJQZeoqbvq1mQSQHXKYLw=="; + url = "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz"; + sha512 = "JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q=="; }; }; "acorn-dynamic-import-4.0.0" = { @@ -3541,13 +3577,13 @@ let sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; }; }; - "ajv-6.10.1" = { + "ajv-6.10.2" = { name = "ajv"; packageName = "ajv"; - version = "6.10.1"; + version = "6.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.1.tgz"; - sha512 = "w1YQaVGNC6t2UCPjEawK/vo/dG8OOrVtUmhBT1uJJYxbl5kU2Tj3v6LGqBcsysN1yhuCStJCCA3GqdvKY8sqXQ=="; + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; }; }; "ajv-6.5.3" = { @@ -3991,13 +4027,13 @@ let sha512 = "+KA685AV5ETEJfjZuviRTEImGA11uNBp/MJGnaCvkgr+BYRrGLruVKBv6WvyFod27WEB2sp7SsG8cNBKANhGLg=="; }; }; - "apollo-cache-control-0.7.5" = { + "apollo-cache-control-0.8.0" = { name = "apollo-cache-control"; packageName = "apollo-cache-control"; - version = "0.7.5"; + version = "0.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.7.5.tgz"; - sha512 = "zCPwHjbo/VlmXl0sclZfBq/MlVVeGUAg02Q259OIXSgHBvn9BbExyz+EkO/DJvZfGMquxqS1X1BFO3VKuLUTdw=="; + url = "https://registry.npmjs.org/apollo-cache-control/-/apollo-cache-control-0.8.0.tgz"; + sha512 = "BBnfUmSWRws5dRSDD+R56RLJCE9v6xQuob+i/1Ju9EX4LZszU5JKVmxEvnkJ1bk/BkihjoQXTnP6fJCnt6fCmA=="; }; }; "apollo-cache-inmemory-1.6.2" = { @@ -4090,31 +4126,31 @@ let sha512 = "0/h5hce2FIGn6Y4+EHMeMINQxFwcgjw1vU+xV3KGaaEgyEAEQ3/n9pyz43M8mOm/JVgg8Eb4CtM1AtCkRQuFGw=="; }; }; - "apollo-datasource-0.5.0" = { + "apollo-datasource-0.6.0" = { name = "apollo-datasource"; packageName = "apollo-datasource"; - version = "0.5.0"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.5.0.tgz"; - sha512 = "SVXxJyKlWguuDjxkY/WGlC/ykdsTmPxSF0z8FenagcQ91aPURXzXP1ZDz5PbamY+0iiCRubazkxtTQw4GWTFPg=="; + url = "https://registry.npmjs.org/apollo-datasource/-/apollo-datasource-0.6.0.tgz"; + sha512 = "DOzzYWEOReYRu2vWPKEulqlTb9Xjg67sjVCzve5MXa7GUXjfr8IKioljvfoBMlqm/PpbJVk2ci4n5NIFqoYsrQ=="; }; }; - "apollo-engine-reporting-1.3.6" = { + "apollo-engine-reporting-1.4.0" = { name = "apollo-engine-reporting"; packageName = "apollo-engine-reporting"; - version = "1.3.6"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-1.3.6.tgz"; - sha512 = "oCoFAUBGveg1i1Sao/2gNsf1kirJBT6vw6Zan9BCNUkyh68ewDts+xRg32VnD9lDhaHpXVJ3tVtuaV44HmdSEw=="; + url = "https://registry.npmjs.org/apollo-engine-reporting/-/apollo-engine-reporting-1.4.0.tgz"; + sha512 = "NMiO3h1cuEBt6QZNGHxivwuyZQnoU/2MMx0gUA8Gyy1ERBhK6P235qoMnvoi34rLmqJuyGPX6tXcab8MpMIzYQ=="; }; }; - "apollo-engine-reporting-protobuf-0.3.1" = { + "apollo-engine-reporting-protobuf-0.4.0" = { name = "apollo-engine-reporting-protobuf"; packageName = "apollo-engine-reporting-protobuf"; - version = "0.3.1"; + version = "0.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.3.1.tgz"; - sha512 = "Ui3nPG6BSZF8BEqxFs6EkX6mj2OnFLMejxEHSOdM82bakyeouCGd7J0fiy8AD6liJoIyc4X7XfH4ZGGMvMh11A=="; + url = "https://registry.npmjs.org/apollo-engine-reporting-protobuf/-/apollo-engine-reporting-protobuf-0.4.0.tgz"; + sha512 = "cXHZSienkis8v4RhqB3YG3DkaksqLpcxApRLTpRMs7IXNozgV7CUPYGFyFBEra1ZFgUyHXx4G9MpelV+n2cCfA=="; }; }; "apollo-env-0.5.1" = { @@ -4189,22 +4225,22 @@ let sha512 = "nrWh9m7k1FQw1AK1GB1VTJS0o01cpsP2RYmTAh2j+P4lL2/72WgsblhbuF+yA1/jsgVrzg6xa+TNw3UwgGp3+g=="; }; }; - "apollo-server-caching-0.4.0" = { + "apollo-server-caching-0.5.0" = { name = "apollo-server-caching"; packageName = "apollo-server-caching"; - version = "0.4.0"; + version = "0.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.4.0.tgz"; - sha512 = "GTOZdbLhrSOKYNWMYgaqX5cVNSMT0bGUTZKV8/tYlyYmsB6ey7l6iId3Q7UpHS6F6OR2lstz5XaKZ+T3fDfPzQ=="; + url = "https://registry.npmjs.org/apollo-server-caching/-/apollo-server-caching-0.5.0.tgz"; + sha512 = "l7ieNCGxUaUAVAAp600HjbUJxVaxjJygtPV0tPTe1Q3HkPy6LEWoY6mNHV7T268g1hxtPTxcdRu7WLsJrg7ufw=="; }; }; - "apollo-server-core-2.6.9" = { + "apollo-server-core-2.7.0" = { name = "apollo-server-core"; packageName = "apollo-server-core"; - version = "2.6.9"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.6.9.tgz"; - sha512 = "r2/Kjm1UmxoTViUt5EcExWXkWl0riXsuGyS1q5LpHKKnA+6b+t4LQKECkRU4EWNpuuzJQn7aF7MmMdvURxoEig=="; + url = "https://registry.npmjs.org/apollo-server-core/-/apollo-server-core-2.7.0.tgz"; + sha512 = "CXjXAkgcMBCJZpsZgfAY5W7f5thdxUhn75UgzeH28RTUZ2aKi/LjoCixPWRSF1lU4vuEWneAnM8Vg/KCD+29lQ=="; }; }; "apollo-server-env-2.4.0" = { @@ -4225,31 +4261,40 @@ let sha512 = "errZvnh0vUQChecT7M4A/h94dnBSRL213dNxpM5ueMypaLYgnp4hiCTWIEaooo9E4yMGd1qA6WaNbLDG2+bjcg=="; }; }; - "apollo-server-express-2.6.9" = { + "apollo-server-express-2.7.0" = { name = "apollo-server-express"; packageName = "apollo-server-express"; - version = "2.6.9"; + version = "2.7.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.6.9.tgz"; - sha512 = "iTkdIdX7m9EAlmL/ZPkKR+x/xuFk1HYZWuJIJG57hHUhcOxj50u7F1E5+5fDwl5RFIdepQ61azF31hhNZuNi4g=="; + url = "https://registry.npmjs.org/apollo-server-express/-/apollo-server-express-2.7.0.tgz"; + sha512 = "TIOaLyuxD8xIECXjbPfS9HUWgHCKsG3rR4WuTpTreVEB08EsGeg+VcNGn0hmUnch18fPXTciBHWCv/fFV/YhMg=="; }; }; - "apollo-server-plugin-base-0.5.8" = { + "apollo-server-plugin-base-0.6.0" = { name = "apollo-server-plugin-base"; packageName = "apollo-server-plugin-base"; - version = "0.5.8"; + version = "0.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.5.8.tgz"; - sha512 = "ICbaXr0ycQZL5llbtZhg8zyHbxuZ4khdAJsJgiZaUXXP6+F47XfDQ5uwnl/4Sq9fvkpwS0ctvfZ1D+Ks4NvUzA=="; + url = "https://registry.npmjs.org/apollo-server-plugin-base/-/apollo-server-plugin-base-0.6.0.tgz"; + sha512 = "BjfyWpHyKwHOe819gk3wEFwbnVp9Xvos03lkkYTTcXS/8G7xO78aUcE65mmyAC56/ZQ0aodNFkFrhwNtWBQWUQ=="; }; }; - "apollo-tracing-0.7.4" = { + "apollo-server-types-0.2.0" = { + name = "apollo-server-types"; + packageName = "apollo-server-types"; + version = "0.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/apollo-server-types/-/apollo-server-types-0.2.0.tgz"; + sha512 = "5dgiyXsM90vnfmdXO1ixHvsLn0d9NP4tWufmr3ZmjKv00r4JAQNUaUdgOSGbRIKoHELQGwxUuTySTZ/tYfGaNQ=="; + }; + }; + "apollo-tracing-0.8.0" = { name = "apollo-tracing"; packageName = "apollo-tracing"; - version = "0.7.4"; + version = "0.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.7.4.tgz"; - sha512 = "vA0FJCBkFpwdWyVF5UtCqN+enShejyiqSGqq8NxXHU1+GEYTngWa56x9OGsyhX+z4aoDIa3HPKPnP3pjzA0qpg=="; + url = "https://registry.npmjs.org/apollo-tracing/-/apollo-tracing-0.8.0.tgz"; + sha512 = "cNOtOlyZ56iJRsCjnxjM1V0SnQ2ZZttuyoeOejdat6llPfk5bfYTVOKMjdbSfDvU33LS9g9sqNJCT0MwrEPFKQ=="; }; }; "apollo-upload-client-10.0.1" = { @@ -4387,13 +4432,13 @@ let sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc"; }; }; - "archiver-3.0.0" = { + "archiver-3.0.3" = { name = "archiver"; packageName = "archiver"; - version = "3.0.0"; + version = "3.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/archiver/-/archiver-3.0.0.tgz"; - sha512 = "5QeR6Xc5hSA9X1rbQfcuQ6VZuUXOaEdB65Dhmk9duuRJHYif/ZyJfuyJqsQrj34PFjU5emv5/MmfgA8un06onw=="; + url = "https://registry.npmjs.org/archiver/-/archiver-3.0.3.tgz"; + sha512 = "d0W7NUyXoLklozHHfvWnHoHS3dvQk8eB22pv5tBwcu1jEO5eZY8W+gHytkAaJ0R8fU2TnNThrWYxjvFlKvRxpw=="; }; }; "archiver-utils-1.3.0" = { @@ -4405,13 +4450,13 @@ let sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174"; }; }; - "archiver-utils-2.0.0" = { + "archiver-utils-2.1.0" = { name = "archiver-utils"; packageName = "archiver-utils"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.0.0.tgz"; - sha512 = "JRBgcVvDX4Mwu2RBF8bBaHcQCSxab7afsxAPYDQ5W+19quIPP5CfKE7Ql+UHs9wYvwsaNR8oDuhtf5iqrKmzww=="; + url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz"; + sha512 = "bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw=="; }; }; "archy-1.0.0" = { @@ -4576,6 +4621,15 @@ let sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031"; }; }; + "array-differ-2.1.0" = { + name = "array-differ"; + packageName = "array-differ"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/array-differ/-/array-differ-2.1.0.tgz"; + sha512 = "KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w=="; + }; + }; "array-differ-3.0.0" = { name = "array-differ"; packageName = "array-differ"; @@ -5116,13 +5170,13 @@ let sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ=="; }; }; - "async-2.6.2" = { + "async-2.6.3" = { name = "async"; packageName = "async"; - version = "2.6.2"; + version = "2.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; + url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; + sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; }; }; "async-3.0.1" = { @@ -5305,13 +5359,13 @@ let sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; }; }; - "aws-sdk-2.493.0" = { + "aws-sdk-2.496.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.493.0"; + version = "2.496.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.493.0.tgz"; - sha512 = "xLNpjiNgLZoXqwmLQ+czP3UQzeRgsutpG1KGfVUaj/3giqEElpn0wYkwhkJt4Glm9xf3jgzAdbFEDYM7u+Llxg=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.496.0.tgz"; + sha512 = "6xZ//phdvp7/dUZjOdDsorl+xehhkAgxOMber9vUlMO9ckBOeufIvED7oKF0NvSlfG8laHK4JprXKQvhXqVLqA=="; }; }; "aws-sign2-0.6.0" = { @@ -6007,13 +6061,13 @@ let sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78"; }; }; - "base64-url-2.2.2" = { + "base64-url-2.3.2" = { name = "base64-url"; packageName = "base64-url"; - version = "2.2.2"; + version = "2.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/base64-url/-/base64-url-2.2.2.tgz"; - sha512 = "JMAkNo3MJ7GG2CHPVMiGPrzGQizUcVE9qvCU6pxQln4aYZZgYM6BJHXbawDegSoryvsKGrK3FuBO9IuGWErRLQ=="; + url = "https://registry.npmjs.org/base64-url/-/base64-url-2.3.2.tgz"; + sha512 = "2QpXjtjndKqPn9JKBpMTCbDGpgicfLUu+N5Y1vEfbuyqb1MN1D68C9YKCth4SjTHRvJleF3tPuxhLbH79MM0iQ=="; }; }; "base64id-0.1.0" = { @@ -6331,6 +6385,15 @@ let sha512 = "4xM4DYejOHQ/qWBfeqBXNA4mJ12PwcOibFYnH1kYh5U9BHciCqEJBqGNVnMJXUhm8mflujNRLSv7IiVQxovgjw=="; }; }; + "bitfield-3.0.0" = { + name = "bitfield"; + packageName = "bitfield"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/bitfield/-/bitfield-3.0.0.tgz"; + sha512 = "hJmWKucJQfdSkQPDPBKmWogM9s8+NOSzDT9QVbJbjinXaQ0bJKPu/cn98qRWy3PDNWtKw4XaoUP3XruGRIKEgg=="; + }; + }; "bitfield-rle-2.2.1" = { name = "bitfield-rle"; packageName = "bitfield-rle"; @@ -6376,13 +6439,13 @@ let sha512 = "SYd5H3RbN1ex+TrWAKXkEkASFWxAR7Tk6iLt9tfAT9ehBvZb/Y3AQDVRVJynlrixcWpnmsLYKI7tkRWgp7ORoQ=="; }; }; - "bittorrent-protocol-3.0.1" = { + "bittorrent-protocol-3.1.0" = { name = "bittorrent-protocol"; packageName = "bittorrent-protocol"; - version = "3.0.1"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.0.1.tgz"; - sha512 = "hnvOzAu9u+2H0OLLL5byoFdz6oz5f3bx5f7R+ItUohTHMq9TgUhEJfcjo7xWtQHSKOVciYWwYTJ4EjczF5RX2A=="; + url = "https://registry.npmjs.org/bittorrent-protocol/-/bittorrent-protocol-3.1.0.tgz"; + sha512 = "XPi4PpU8iaHA1HC8ku+3kr+r6TzhG8WFprJs/yUzTE67JSkRcKO5X+XphqeQPj6LkP0syNcUUOp22EDV7Eg4Sg=="; }; }; "bittorrent-tracker-7.7.0" = { @@ -6421,6 +6484,15 @@ let sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="; }; }; + "bl-3.0.0" = { + name = "bl"; + packageName = "bl"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/bl/-/bl-3.0.0.tgz"; + sha512 = "EUAyP5UHU5hxF8BPT0LKW8gjYLhq1DQIcneOX/pL/m2Alo+OYDQAJlHq+yseMP50Os2nHXOSic6Ss3vSQeyf4A=="; + }; + }; "blake2b-2.1.3" = { name = "blake2b"; packageName = "blake2b"; @@ -6970,13 +7042,13 @@ let sha512 = "Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA=="; }; }; - "browserslist-4.6.4" = { + "browserslist-4.6.6" = { name = "browserslist"; packageName = "browserslist"; - version = "4.6.4"; + version = "4.6.6"; src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.6.4.tgz"; - sha512 = "ErJT8qGfRt/VWHSr1HeqZzz50DvxHtr1fVL1m5wf20aGrG8e1ce8fpZ2EjZEfs09DDZYSvtRaDlMpWslBf8Low=="; + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.6.6.tgz"; + sha512 = "D2Nk3W9JL9Fp/gIcWei8LrERCS+eXu9AM5cfXA8WEZ84lFks+ARnZ0q/R69m2SV3Wjma83QDDPxsNKXUwdIsyA=="; }; }; "btoa-lite-1.0.0" = { @@ -7294,13 +7366,13 @@ let sha1 = "741c5216468eadc457b03410118ad77de8c1ddb1"; }; }; - "byte-size-4.0.4" = { + "byte-size-5.0.1" = { name = "byte-size"; packageName = "byte-size"; - version = "4.0.4"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/byte-size/-/byte-size-4.0.4.tgz"; - sha512 = "82RPeneC6nqCdSwCX2hZUz3JPOvN5at/nTEw/CMf05Smu3Hrpo9Psb7LjN+k+XndNArG1EY8L4+BM3aTM4BCvw=="; + url = "https://registry.npmjs.org/byte-size/-/byte-size-5.0.1.tgz"; + sha512 = "/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw=="; }; }; "bytebuffer-3.5.5" = { @@ -7402,6 +7474,15 @@ let sha512 = "p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA=="; }; }; + "cacache-12.0.2" = { + name = "cacache"; + packageName = "cacache"; + version = "12.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/cacache/-/cacache-12.0.2.tgz"; + sha512 = "ifKgxH2CKhJEg6tNdAwziu6Q33EvuG26tYcda6PT3WKisZcYDXsnEdnRv67Po3yCzFfaSoMjGZzJyD2c3DT1dg=="; + }; + }; "cache-base-1.0.1" = { name = "cache-base"; packageName = "cache-base"; @@ -7600,6 +7681,15 @@ let sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77"; }; }; + "camelcase-keys-5.2.0" = { + name = "camelcase-keys"; + packageName = "camelcase-keys"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-5.2.0.tgz"; + sha512 = "mSM/OQKD1HS5Ll2AXxeaHSdqCGC/QQ8IrgTbKYA/rxnC36thBKysfIr9+OVBWuW17jyZF4swHkjtglawgBmVFg=="; + }; + }; "caniuse-api-3.0.0" = { name = "caniuse-api"; packageName = "caniuse-api"; @@ -7609,13 +7699,13 @@ let sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; }; }; - "caniuse-lite-1.0.30000984" = { + "caniuse-lite-1.0.30000985" = { name = "caniuse-lite"; packageName = "caniuse-lite"; - version = "1.0.30000984"; + version = "1.0.30000985"; src = fetchurl { - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000984.tgz"; - sha512 = "n5tKOjMaZ1fksIpQbjERuqCyfgec/m9pferkFQbLmWtqLUdmt12hNhjSwsmPdqeiG2NkITOQhr1VYIwWSAceiA=="; + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000985.tgz"; + sha512 = "1ngiwkgqAYPG0JSSUp3PUDGPKKY59EK7NrGGX+VOxaKCNzRbNc7uXMny+c3VJfZxtoK3wSImTvG9T9sXiTw2+w=="; }; }; "capture-stack-trace-1.0.1" = { @@ -7654,13 +7744,13 @@ let sha1 = "a9193b1a5448b8cb9a0415bd021c8811ed7b0544"; }; }; - "catharsis-0.8.10" = { + "catharsis-0.8.11" = { name = "catharsis"; packageName = "catharsis"; - version = "0.8.10"; + version = "0.8.11"; src = fetchurl { - url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.10.tgz"; - sha512 = "l2OUaz/3PU3MZylspVFJvwHCVfWyvcduPq4lv3AzZ2pJzZCo7kNKFNyatwujD7XgvGkNAE/Jhhbh2uARNwNkfw=="; + url = "https://registry.npmjs.org/catharsis/-/catharsis-0.8.11.tgz"; + sha512 = "a+xUyMV7hD1BrDQA/3iPV7oc+6W26BgVJO05PGEoatMyIuPScQKsde6i3YorWX1qs+AZjnJ18NqdKoCtKiNh1g=="; }; }; "caw-2.0.1" = { @@ -9184,6 +9274,15 @@ let sha1 = "524a9f10903f3a813389b0225d27c48bb751890f"; }; }; + "compress-commons-2.0.0" = { + name = "compress-commons"; + packageName = "compress-commons"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/compress-commons/-/compress-commons-2.0.0.tgz"; + sha512 = "gnETNngrfsAoLBENM8M0DoiCDJkHwz3OfIg4mBtqKDcRgE4oXNwHxHxgHvwKKlrcD7eZ7BVTy4l8t9xVF7q3FQ=="; + }; + }; "compressible-2.0.17" = { name = "compressible"; packageName = "compressible"; @@ -9598,13 +9697,13 @@ let sha512 = "KaA/2EeUkO4bKjinNfGUyqPTX/6w9JGshuQRik4r/wJz7rUw3+D3fDG6sZSEqJvKILzKXFQuFkpPLclcsAuZcg=="; }; }; - "conventional-recommended-bump-4.1.1" = { + "conventional-recommended-bump-5.0.1" = { name = "conventional-recommended-bump"; packageName = "conventional-recommended-bump"; - version = "4.1.1"; + version = "5.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-4.1.1.tgz"; - sha512 = "JT2vKfSP9kR18RXXf55BRY1O3AHG8FPg5btP3l7LYfcWJsiXI6MCf30DepQ98E8Qhowvgv7a8iev0J1bEDkTFA=="; + url = "https://registry.npmjs.org/conventional-recommended-bump/-/conventional-recommended-bump-5.0.1.tgz"; + sha512 = "RVdt0elRcCxL90IrNP0fYCpq1uGt2MALko0eyeQ+zQuDVWtMGAy9ng6yYn3kax42lCj9+XBxQ8ZN6S9bdKxDhQ=="; }; }; "convert-source-map-1.1.3" = { @@ -9625,6 +9724,15 @@ let sha512 = "eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A=="; }; }; + "convict-4.4.1" = { + name = "convict"; + packageName = "convict"; + version = "4.4.1"; + src = fetchurl { + url = "https://registry.npmjs.org/convict/-/convict-4.4.1.tgz"; + sha512 = "celpR4hOWWwb/S8azhzgQwDon6muAJlNe2LTLeOGyoSgH390TsaqoieAe9BLbAv7+9wNfG7DTA2q3IfFp2viKw=="; + }; + }; "cookie-0.0.4" = { name = "cookie"; packageName = "cookie"; @@ -10291,15 +10399,6 @@ let sha512 = "xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA=="; }; }; - "css-tree-1.0.0-alpha.28" = { - name = "css-tree"; - packageName = "css-tree"; - version = "1.0.0-alpha.28"; - src = fetchurl { - url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.28.tgz"; - sha512 = "joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w=="; - }; - }; "css-tree-1.0.0-alpha.29" = { name = "css-tree"; packageName = "css-tree"; @@ -10309,6 +10408,15 @@ let sha512 = "sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg=="; }; }; + "css-tree-1.0.0-alpha.33" = { + name = "css-tree"; + packageName = "css-tree"; + version = "1.0.0-alpha.33"; + src = fetchurl { + url = "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.33.tgz"; + sha512 = "SPt57bh5nQnpsTBsx/IXbO14sRc9xXu5MtMAVuo0BaQQmyf0NupNPPSoMaqiAF5tDFafYsTkfeH4Q/HCKXkg4w=="; + }; + }; "css-unit-converter-1.1.1" = { name = "css-unit-converter"; packageName = "css-unit-converter"; @@ -10318,15 +10426,6 @@ let sha1 = "d9b9281adcfd8ced935bdbaba83786897f64e996"; }; }; - "css-url-regex-1.1.0" = { - name = "css-url-regex"; - packageName = "css-url-regex"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-url-regex/-/css-url-regex-1.1.0.tgz"; - sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec"; - }; - }; "css-what-2.1.3" = { name = "css-what"; packageName = "css-what"; @@ -10462,13 +10561,13 @@ let sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; }; }; - "cssstyle-1.3.0" = { + "cssstyle-1.4.0" = { name = "cssstyle"; packageName = "cssstyle"; - version = "1.3.0"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-1.3.0.tgz"; - sha512 = "wXsoRfsRfsLVNaVzoKdqvEmK/5PFaEXNspVT22Ots6K/cnJdpoDKuQFw+qlMiXnmaif1OgeC466X1zISgAOcGg=="; + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz"; + sha512 = "GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA=="; }; }; "csurf-1.8.3" = { @@ -10822,13 +10921,13 @@ let sha512 = "YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ=="; }; }; - "date-format-2.0.0" = { + "date-format-2.1.0" = { name = "date-format"; packageName = "date-format"; - version = "2.0.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/date-format/-/date-format-2.0.0.tgz"; - sha512 = "M6UqVvZVgFYqZL1SfHsRGIQSz3ZL+qgbsV5Lp1Vj61LZVYuEwcMXYay7DRDtYs2HQQBK5hQtQ0fD9aEJ89V0LA=="; + url = "https://registry.npmjs.org/date-format/-/date-format-2.1.0.tgz"; + sha512 = "bYQuGLeFxhkxNOF3rcMtiZxvCBAquGzZm6oWA1oZ0g2THUzivaRhv8uOhdr19LmoobSOLoIAxeUK2RdbM8IFTA=="; }; }; "date-now-0.1.4" = { @@ -11200,6 +11299,15 @@ let sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; }; }; + "deep-freeze-0.0.1" = { + name = "deep-freeze"; + packageName = "deep-freeze"; + version = "0.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz"; + sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84"; + }; + }; "deep-is-0.1.2" = { name = "deep-is"; packageName = "deep-is"; @@ -12478,13 +12586,13 @@ let sha512 = "PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q=="; }; }; - "electron-to-chromium-1.3.191" = { + "electron-to-chromium-1.3.198" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.191"; + version = "1.3.198"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.191.tgz"; - sha512 = "jasjtY5RUy/TOyiUYM2fb4BDaPZfm6CXRFeJDMfFsXYADGxUN49RBqtgB7EL2RmJXeIRUk9lM1U6A5yk2YJMPQ=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.198.tgz"; + sha512 = "2GcPd1bkU8EGPa3AhxzPswbNvh5wgK4/8r3fg+sSVyVlCWaN9Tq+tVkJLktMZIcrHiZF0vJpnktfoYXFTvjCVg=="; }; }; "elegant-spinner-1.0.1" = { @@ -13271,13 +13379,13 @@ let sha512 = "S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg=="; }; }; - "eslint-6.0.1" = { + "eslint-6.1.0" = { name = "eslint"; packageName = "eslint"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-6.0.1.tgz"; - sha512 = "DyQRaMmORQ+JsWShYsSg4OPTjY56u1nCjAmICrE8vLWqyLKxhFXOthwMj1SA8xwfrv0CofLNVnqbfyhwCkaO0w=="; + url = "https://registry.npmjs.org/eslint/-/eslint-6.1.0.tgz"; + sha512 = "QhrbdRD7ofuV09IuE2ySWBz0FyXCq0rriLTZXZqaWSI79CVtHVRdkFuFTViiqzZhkCgfOh9USpriuGN2gIpZDQ=="; }; }; "eslint-plugin-no-unsafe-innerhtml-1.0.16" = { @@ -13325,13 +13433,22 @@ let sha512 = "p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg=="; }; }; - "eslint-utils-1.3.1" = { + "eslint-scope-5.0.0" = { + name = "eslint-scope"; + packageName = "eslint-scope"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.0.0.tgz"; + sha512 = "oYrhJW7S0bxAFDvWqzvMPRm6pcgcnWc4QnofCAqRTRfQC0JcwenzGglTtsLyIuuWFfkqDG9vz67cnttSd53djw=="; + }; + }; + "eslint-utils-1.4.0" = { name = "eslint-utils"; packageName = "eslint-utils"; - version = "1.3.1"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.3.1.tgz"; - sha512 = "Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q=="; + url = "https://registry.npmjs.org/eslint-utils/-/eslint-utils-1.4.0.tgz"; + sha512 = "7ehnzPaP5IIEh1r1tkjuIrxqhNkzUJa9z3R92tLJdZIVdWaczEhr3EbhGtsMrVxi1KeR8qA7Off6SWc5WNQqyQ=="; }; }; "eslint-visitor-keys-1.0.0" = { @@ -14900,13 +15017,13 @@ let sha512 = "ougBA2q6Rn9sZrjZQ9r5pTFxCotlGouySpD2yRIuq5AYwwfIT8HHhVMeSwrN5qJayjHINLJyrnsSkkPCZyfMrQ=="; }; }; - "flow-parser-0.102.0" = { + "flow-parser-0.103.0" = { name = "flow-parser"; packageName = "flow-parser"; - version = "0.102.0"; + version = "0.103.0"; src = fetchurl { - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.102.0.tgz"; - sha512 = "lePuMLr6QXv3AwTCl/pnh55YIzHNHHNPl0FW0wuug+tJKSN2UoWFCriANsYNax0Bm0GivHUGQPPQ/GmGgEXbSA=="; + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.103.0.tgz"; + sha512 = "H5UaM7mCzrssGa/HiPcr+oWBKosZTI7AlRk3jCEznBC786mdWIrTRjjGIAlRwuTVwT6SlPzV0M7kM6e3GGIQYA=="; }; }; "fluent-ffmpeg-2.1.2" = { @@ -14954,13 +15071,13 @@ let sha512 = "Bwol+72GU5z2DxZlnaxUA9A8qaRcQcdTprmRcgfqn2ldn147ByVh9Zyp90hVGPlo/oEN/yjOBUXcNkK3SYjbgA=="; }; }; - "flumelog-offset-3.4.2" = { + "flumelog-offset-3.4.3" = { name = "flumelog-offset"; packageName = "flumelog-offset"; - version = "3.4.2"; + version = "3.4.3"; src = fetchurl { - url = "https://registry.npmjs.org/flumelog-offset/-/flumelog-offset-3.4.2.tgz"; - sha512 = "pj8gc3idzbpWjGQPXvRwNdkqtHPx/0olLsyip3u1lULP+LVvcYGYvTt8AU0frKWSFsGST0B8WVh9DrZ5rsEzbg=="; + url = "https://registry.npmjs.org/flumelog-offset/-/flumelog-offset-3.4.3.tgz"; + sha512 = "XG2uVxoMjwcWKHniKSp1Iyo4XSZqvpK/KcQNDfTUM+ajpehLveMTd5H0cXWzaVlNjkHE0oGDGL7CgHrDyixiIg=="; }; }; "flumeview-hashtable-1.1.1" = { @@ -15593,13 +15710,13 @@ let sha1 = "979e22f9451b4b38f051f7937c919dbacc692958"; }; }; - "fx-runner-1.0.10" = { + "fx-runner-1.0.11" = { name = "fx-runner"; packageName = "fx-runner"; - version = "1.0.10"; + version = "1.0.11"; src = fetchurl { - url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.10.tgz"; - sha512 = "tXj0lMnSey89Dx7R3Lq+HMUy3ODmOmj5lhRYBgMWNOqbh7Vx8vPUiWMbyJ3HIzGuLnNeXAPH0x/GdFZ7h6h0vQ=="; + url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.11.tgz"; + sha512 = "igHogHf5wTqqaPPTOav18MMTVq/eoeTJiw/PvPUuwnzU8vbyZInFPgR66G9ZBwvwxC7e611nbtB4xSMcYVhlvg=="; }; }; "gauge-1.2.7" = { @@ -15737,6 +15854,15 @@ let sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc"; }; }; + "get-port-4.2.0" = { + name = "get-port"; + packageName = "get-port"; + version = "4.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/get-port/-/get-port-4.2.0.tgz"; + sha512 = "/b3jarXkH8KJoOMQc3uVGHASwGLPq3gSFJ7tgJm2diza+bydJPTGOibin2steecKeOylE8oY2JERlVWkAJO6yw=="; + }; + }; "get-prototype-chain-1.0.1" = { name = "get-prototype-chain"; packageName = "get-prototype-chain"; @@ -16214,13 +16340,13 @@ let sha1 = "e76989268a6c74c38908b1305b10fc0e394e9d0f"; }; }; - "global-agent-2.0.0" = { + "global-agent-2.0.1" = { name = "global-agent"; packageName = "global-agent"; - version = "2.0.0"; + version = "2.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/global-agent/-/global-agent-2.0.0.tgz"; - sha512 = "UxnV7o81DW5aNEg3AjmAbJI7PsXLrJZn3KM/eHDfxjKsLHB4RC2QzSajfTadPqYQCzaOd+Wb8zjvaiHiwwqPUQ=="; + url = "https://registry.npmjs.org/global-agent/-/global-agent-2.0.1.tgz"; + sha512 = "2iGb96/51XxsekctZR4IiP7SoWuGEkmFpsyySasq3RFmvIwDCQJzatB2NqK0sk7h2hVYQdRphL52lrO5grF/jg=="; }; }; "global-dirs-0.1.1" = { @@ -16584,13 +16710,13 @@ let sha512 = "bOufkkog0cSfHJ9gVD3Wy+KHmkSTHWcFfPaV/NVpIvfJx15gU0/CzuC6lcTjioWmn+UGzYdoqmP7OrJAWT57sw=="; }; }; - "graphql-extensions-0.7.7" = { + "graphql-extensions-0.8.0" = { name = "graphql-extensions"; packageName = "graphql-extensions"; - version = "0.7.7"; + version = "0.8.0"; src = fetchurl { - url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.7.7.tgz"; - sha512 = "xiTbVGPUpLbF86Bc+zxI/v/axRkwZx3s+y2/kUb2c2MxNZeNhMZEw1dSutuhY2f2JkRkYFJii0ucjIVqPAQ/Lg=="; + url = "https://registry.npmjs.org/graphql-extensions/-/graphql-extensions-0.8.0.tgz"; + sha512 = "zV9RefkusIXqi9ZJtl7IJ5ecjDKdb7PLAb5E3CmxX3OK1GwNCIubp0vE7Fp4fXlCUKgTB1Woubs0zj71JT8o0A=="; }; }; "graphql-import-0.4.5" = { @@ -18105,15 +18231,6 @@ let sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; }; }; - "import-local-1.0.0" = { - name = "import-local"; - packageName = "import-local"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/import-local/-/import-local-1.0.0.tgz"; - sha512 = "vAaZHieK9qjGo58agRBg+bhHX3hoTZU/Oa3GESWLz7t1U62fk63aHuDJJEteXoDeTCcPmUT+z38gkHPZkkmpmQ=="; - }; - }; "import-local-2.0.0" = { name = "import-local"; packageName = "import-local"; @@ -18195,6 +18312,15 @@ let sha1 = "15dcf56ee9cf65c0234c513c27fbd580e70fbc50"; }; }; + "infer-owner-1.0.4" = { + name = "infer-owner"; + packageName = "infer-owner"; + version = "1.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz"; + sha512 = "IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A=="; + }; + }; "inflected-2.0.4" = { name = "inflected"; packageName = "inflected"; @@ -18528,15 +18654,6 @@ let sha512 = "NXXgESC2nNVtU+pqmC9e6R8B1GpKxzsAQhffvh5AL79qKnodd+L7tnEQmTiUAVngqLalPbSqRA7XGIEL5nCd0Q=="; }; }; - "interop-require-1.0.0" = { - name = "interop-require"; - packageName = "interop-require"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/interop-require/-/interop-require-1.0.0.tgz"; - sha1 = "e53103679944c88d7e6105b62a9f4475c783971e"; - }; - }; "interpret-1.1.0" = { name = "interpret"; packageName = "interpret"; @@ -18681,6 +18798,15 @@ let sha512 = "M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="; }; }; + "ipaddr.js-1.9.1" = { + name = "ipaddr.js"; + packageName = "ipaddr.js"; + version = "1.9.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz"; + sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; + }; + }; "irc-replies-2.0.1" = { name = "irc-replies"; packageName = "irc-replies"; @@ -19959,13 +20085,13 @@ let sha1 = "06d4912255093419477d425633606e0e90782967"; }; }; - "joplin-turndown-4.0.15" = { + "joplin-turndown-4.0.17" = { name = "joplin-turndown"; packageName = "joplin-turndown"; - version = "4.0.15"; + version = "4.0.17"; src = fetchurl { - url = "https://registry.npmjs.org/joplin-turndown/-/joplin-turndown-4.0.15.tgz"; - sha512 = "68ukx19XFbKtJ5hfPfPX6IDLFZ1+NI+CpxJZyDEXAN5rPkyGXDw9xnEfo1IYRd+fq56upjo5Fn7J1hTCQTVTIA=="; + url = "https://registry.npmjs.org/joplin-turndown/-/joplin-turndown-4.0.17.tgz"; + sha512 = "57mw92ZOKoR77YBLUkauN1xNq1xlxOm2KaPty/jlYrkEyGotUBBvq46a6wXh6d3aM4CccGuwymSge18/9IoB3A=="; }; }; "joplin-turndown-plugin-gfm-1.0.8" = { @@ -20013,13 +20139,13 @@ let sha512 = "M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw=="; }; }; - "js-beautify-1.10.0" = { + "js-beautify-1.10.1" = { name = "js-beautify"; packageName = "js-beautify"; - version = "1.10.0"; + version = "1.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.0.tgz"; - sha512 = "OMwf/tPDpE/BLlYKqZOhqWsd3/z2N3KOlyn1wsCRGFwViE8LOQTcDtathQvHvZc+q+zWmcNAbwKSC+iJoMaH2Q=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.1.tgz"; + sha512 = "4y8SHOIRC+/YQ2gs3zJEKBUraQerq49FJYyXRpdzUGYQzCq8q9xtIh0YXial1S5KmonVui4aiUb6XaGyjE51XA=="; }; }; "js-levenshtein-1.1.6" = { @@ -21256,22 +21382,22 @@ let sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8"; }; }; - "libsodium-0.7.4" = { + "libsodium-0.7.5" = { name = "libsodium"; packageName = "libsodium"; - version = "0.7.4"; + version = "0.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.4.tgz"; - sha512 = "fTU3vUdrxQzhPAAjmTSqKk4LzYbR0OtcYjp1P92AlH50JIxXZFEIXWh1yryCmU6RLGfwS2IzBdZjbmpYf/TlyQ=="; + url = "https://registry.npmjs.org/libsodium/-/libsodium-0.7.5.tgz"; + sha512 = "0YVU2QJc5sDR5HHkGCaliYImS7pGeXi11fiOfm4DirBd96PJVZIn3LJa06ZOFjLNsWkL3UbNjYhLRUOABPL9vw=="; }; }; - "libsodium-wrappers-0.7.4" = { + "libsodium-wrappers-0.7.5" = { name = "libsodium-wrappers"; packageName = "libsodium-wrappers"; - version = "0.7.4"; + version = "0.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.4.tgz"; - sha512 = "axKkW01L0q+urLeE7UMSZKWwk4LrRbi6s5pjKBAvbgDBYnsSaolK1oN/Syilm1dqJFkJQNi6qodwOp8dzSoc9Q=="; + url = "https://registry.npmjs.org/libsodium-wrappers/-/libsodium-wrappers-0.7.5.tgz"; + sha512 = "QE9Q+FxLLGdJRiJTuC2GB3LEHZeHX/VcbMQeNPdAixEKo86JPy6bOWND1XmMLu0tjWUu0xIY0YpJYQApxIZwbQ=="; }; }; "lie-3.3.0" = { @@ -21391,6 +21517,15 @@ let sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; }; }; + "load-json-file-5.3.0" = { + name = "load-json-file"; + packageName = "load-json-file"; + version = "5.3.0"; + src = fetchurl { + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-5.3.0.tgz"; + sha512 = "cJGP40Jc/VXUsp8/OrnyKyTZ1y6v/dphm3bioS+RrKXjK2BB6wHUd6JptZEFDGgGahMT+InnZO5i1Ei9mpC8Bw=="; + }; + }; "load-plugin-2.3.1" = { name = "load-plugin"; packageName = "load-plugin"; @@ -21499,22 +21634,13 @@ let sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; }; }; - "lodash-4.17.11" = { + "lodash-4.17.15" = { name = "lodash"; packageName = "lodash"; - version = "4.17.11"; + version = "4.17.15"; src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; - }; - }; - "lodash-4.17.14" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.14"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz"; - sha512 = "mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw=="; + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; }; }; "lodash-4.17.5" = { @@ -21544,13 +21670,13 @@ let sha1 = "c6940128a9d30f8e902cd2cf99fd0cba4ecfc183"; }; }; - "lodash-es-4.17.14" = { + "lodash-es-4.17.15" = { name = "lodash-es"; packageName = "lodash-es"; - version = "4.17.14"; + version = "4.17.15"; src = fetchurl { - url = "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.14.tgz"; - sha512 = "7zchRrGa8UZXjD/4ivUWP1867jDkhzTG2c/uj739utSd7O/pFFdxspCemIFKEEjErbcqRzn8nKnGsi7mvTgRPA=="; + url = "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.15.tgz"; + sha512 = "rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ=="; }; }; "lodash-id-0.14.0" = { @@ -23029,6 +23155,15 @@ let sha512 = "YMJrAjHSb/BordlsDEcVcPyTbiJKkzqMf48N8dAJZT9Zjctrkb6Yg4TY9Sq2AwSIQJFn5qBBKVTYt3vP5FMIHA=="; }; }; + "make-fetch-happen-5.0.0" = { + name = "make-fetch-happen"; + packageName = "make-fetch-happen"; + version = "5.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-5.0.0.tgz"; + sha512 = "nFr/vpL1Jc60etMVKeaLOqfGjMMb3tAHFVJWxHOFCFS04Zmd7kGlMxo0l1tzfhoQje0/UPnd0X8OeGUiXXnfPA=="; + }; + }; "make-iterator-1.0.1" = { name = "make-iterator"; packageName = "make-iterator"; @@ -23119,6 +23254,15 @@ let sha1 = "a65cd29087a92598b8791257a523e021222ac1f9"; }; }; + "map-obj-3.1.0" = { + name = "map-obj"; + packageName = "map-obj"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/map-obj/-/map-obj-3.1.0.tgz"; + sha512 = "Xg1iyYz/+iIW6YoMldux47H/e5QZyDSB41Kb0ev+YYHh3FJnyyzY0vTk/WbVeWcCvdXd70cOriUBmhP8alUFBA=="; + }; + }; "map-stream-0.0.7" = { name = "map-stream"; packageName = "map-stream"; @@ -23227,6 +23371,15 @@ let sha512 = "Fqa7eq+UaxfMriqzYLayfqAE40WN03jf+zHjT18/uXNuzjq3TY0XTbrAoPeqSJrAmPz11VuUA+kBPYOhHt9oOQ=="; }; }; + "marked-0.7.0" = { + name = "marked"; + packageName = "marked"; + version = "0.7.0"; + src = fetchurl { + url = "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz"; + sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg=="; + }; + }; "match-casing-1.0.2" = { name = "match-casing"; packageName = "match-casing"; @@ -23236,13 +23389,13 @@ let sha512 = "NH4X/9dxkjgl08sGHg0M15YJH8xk49kPpeSsVqr+5Ct4Qd8gaBn41ubSBd+nEzMZt5iJDdoeSnKXV57UVeyK2w=="; }; }; - "match-index-1.0.1" = { + "match-index-1.0.3" = { name = "match-index"; packageName = "match-index"; - version = "1.0.1"; + version = "1.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/match-index/-/match-index-1.0.1.tgz"; - sha1 = "b4b673e99ab3ac5a6af303ccf4db709812bc3f58"; + url = "https://registry.npmjs.org/match-index/-/match-index-1.0.3.tgz"; + sha512 = "1XjyBWqCvEFFUDW/MPv0RwbITRD4xQXOvKoPYtLDq8IdZTfdF/cQSo5Yn4qvhfSSZgjgkTFsqJD2wOUG4ovV8Q=="; }; }; "matchdep-2.0.0" = { @@ -23344,6 +23497,15 @@ let sha512 = "FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA=="; }; }; + "mdn-data-2.0.4" = { + name = "mdn-data"; + packageName = "mdn-data"; + version = "2.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz"; + sha512 = "iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA=="; + }; + }; "mdns-js-0.5.0" = { name = "mdns-js"; packageName = "mdns-js"; @@ -24109,6 +24271,15 @@ let sha1 = "cf67e0b31c47ab9badb5c9c25651862127bb8317"; }; }; + "moment-2.22.2" = { + name = "moment"; + packageName = "moment"; + version = "2.22.2"; + src = fetchurl { + url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz"; + sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66"; + }; + }; "moment-2.24.0" = { name = "moment"; packageName = "moment"; @@ -24325,6 +24496,15 @@ let sha512 = "zzOLNRxzszwd+61JFuAo0fxdQfvku12aNJgnla0AQ+hHxFmfc/B7jBVuPr5Rmvu46Jze/iJrFpSOsD7afO8SDw=="; }; }; + "multer-1.4.2" = { + name = "multer"; + packageName = "multer"; + version = "1.4.2"; + src = fetchurl { + url = "https://registry.npmjs.org/multer/-/multer-1.4.2.tgz"; + sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; + }; + }; "multi-random-access-2.1.1" = { name = "multi-random-access"; packageName = "multi-random-access"; @@ -24406,6 +24586,15 @@ let sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"; }; }; + "multimatch-3.0.0" = { + name = "multimatch"; + packageName = "multimatch"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/multimatch/-/multimatch-3.0.0.tgz"; + sha512 = "22foS/gqQfANZ3o+W7ST2x25ueHDVNWl/b9OlGcLpy/iKxjCpvcNCM51YCenUi7Mt/jAjjqv8JwZRs8YP5sRjA=="; + }; + }; "multimatch-4.0.0" = { name = "multimatch"; packageName = "multimatch"; @@ -24451,13 +24640,13 @@ let sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; }; }; - "multiserver-3.3.6" = { + "multiserver-3.4.0" = { name = "multiserver"; packageName = "multiserver"; - version = "3.3.6"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/multiserver/-/multiserver-3.3.6.tgz"; - sha512 = "zuPjEaPEVMosWXnfNalXv3QyjYCwaD2emC6l/ozwMeaCcZ/Do7WMb/ZF8MC6TVwhV9Y7eTcnBiYEP/hq8zA2nA=="; + url = "https://registry.npmjs.org/multiserver/-/multiserver-3.4.0.tgz"; + sha512 = "HSGnZBXDM9e8gi3YyhObwiDYP3BFeL+TV22H1dAReigHHMc52IDBsz9N1OR72OKxCd7SMD+gKBpVJbJohhb3og=="; }; }; "multiserver-address-1.0.1" = { @@ -25347,13 +25536,13 @@ let sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw=="; }; }; - "node-gyp-4.0.0" = { + "node-gyp-5.0.3" = { name = "node-gyp"; packageName = "node-gyp"; - version = "4.0.0"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-4.0.0.tgz"; - sha512 = "2XiryJ8sICNo6ej8d0idXDEMKfVfFK7kekGCtJAuelGsYHQxhj13KTf95swTCN2dZ/4lTfZ84Fu31jqJEEgjWA=="; + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz"; + sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ=="; }; }; "node-gyp-build-3.7.0" = { @@ -25509,13 +25698,13 @@ let sha512 = "ft/8/dTRGzGQ9vCnAzuBxzR+aDv4Yun/vuSKi/eI5Qj2/ZBal28L9HpWziSTWlLrMhZns8CRz7s2p84P2ee/vA=="; }; }; - "node-red-node-sentiment-0.1.3" = { + "node-red-node-sentiment-0.1.4" = { name = "node-red-node-sentiment"; packageName = "node-red-node-sentiment"; - version = "0.1.3"; + version = "0.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/node-red-node-sentiment/-/node-red-node-sentiment-0.1.3.tgz"; - sha512 = "X3F7VdfFJ4iioWCiMgIv1Pyp6YxUuA8Mod/zcHN3FHBM8aue2vL4bvAT/1zQgxqxehUVkKCbXr+cdRnJx5e7nw=="; + url = "https://registry.npmjs.org/node-red-node-sentiment/-/node-red-node-sentiment-0.1.4.tgz"; + sha512 = "lZxov4OdGKoqvXcUK7oyVeW5a2qJsBr5+T8cq9kP5N0bnI9AQoywiIiVQ2HcFCHXy70U4ZIAhetGroNfAb68Zg=="; }; }; "node-red-node-tail-0.0.2" = { @@ -25635,13 +25824,13 @@ let sha512 = "/x5MRIh56VyuuhLfcz+DL2SlBARpZpgQIf2A4Ao4hMb69MHSgDIMPwYmFwesGT1lkRDZ0eBSoym5+JoIZ3N+cQ=="; }; }; - "nodemailer-6.2.1" = { + "nodemailer-6.3.0" = { name = "nodemailer"; packageName = "nodemailer"; - version = "6.2.1"; + version = "6.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.2.1.tgz"; - sha512 = "TagB7iuIi9uyNgHExo8lUDq3VK5/B0BpbkcjIgNvxbtVrjNqq0DwAOTuzALPVkK76kMhTSzIgHqg8X1uklVs6g=="; + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-6.3.0.tgz"; + sha512 = "TEHBNBPHv7Ie/0o3HXnb7xrPSSQmH1dXwQKRaMKDBGt/ZN54lvDVujP6hKkO/vjkIYL9rK8kHSG11+G42Nhxuw=="; }; }; "nodemon-1.19.1" = { @@ -25851,13 +26040,13 @@ let sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67"; }; }; - "npm-lifecycle-2.1.1" = { + "npm-lifecycle-3.0.0" = { name = "npm-lifecycle"; packageName = "npm-lifecycle"; - version = "2.1.1"; + version = "3.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-2.1.1.tgz"; - sha512 = "+Vg6I60Z75V/09pdcH5iUo/99Q/vop35PaI99elvxk56azSVVsdsSsS/sXqKDNwbRRNN1qSxkcO45ZOu0yOWew=="; + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.0.0.tgz"; + sha512 = "/x/8zxo5Tn3qWj1eSUXgyr2pLBnEoFkpJQE/8pRwrEpJI4irZM0+YSp7W8NGDLzN6SaBOGOPaJV9O2dhY1IWwQ=="; }; }; "npm-package-arg-6.1.0" = { @@ -25941,6 +26130,15 @@ let sha512 = "VQCEZlydXw4AwLROAXWUR7QDfe2Y8Id/vpAgp6TI1/H78a4SiQ1kQrKZALm5/zxM5n4HIi+aYb+idUAV/RuY0Q=="; }; }; + "npm-registry-fetch-4.0.0" = { + name = "npm-registry-fetch"; + packageName = "npm-registry-fetch"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-4.0.0.tgz"; + sha512 = "Jllq35Jag8dtv0M17ue74XtdQTyqKzuAYGiX9mAjOhkmNjib3bBUgK6mUY61+AHnXeSRobQkpY3/xIOS/omptw=="; + }; + }; "npm-run-4.1.2" = { name = "npm-run"; packageName = "npm-run"; @@ -26401,13 +26599,13 @@ let sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ=="; }; }; - "omggif-1.0.9" = { + "omggif-1.0.10" = { name = "omggif"; packageName = "omggif"; - version = "1.0.9"; + version = "1.0.10"; src = fetchurl { - url = "https://registry.npmjs.org/omggif/-/omggif-1.0.9.tgz"; - sha1 = "dcb7024dacd50c52b4d303f04802c91c057c765f"; + url = "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz"; + sha512 = "LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw=="; }; }; "on-change-network-0.0.2" = { @@ -26617,13 +26815,13 @@ let sha1 = "6a341442f09d7d866bc11ed03de1e3828e3d6aab"; }; }; - "opentracing-0.14.3" = { + "opentracing-0.14.4" = { name = "opentracing"; packageName = "opentracing"; - version = "0.14.3"; + version = "0.14.4"; src = fetchurl { - url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.3.tgz"; - sha1 = "23e3ad029fa66a653926adbe57e834469f8550aa"; + url = "https://registry.npmjs.org/opentracing/-/opentracing-0.14.4.tgz"; + sha512 = "nNnZDkUNExBwEpb7LZaeMeQgvrlO8l4bgY/LvGNZCR0xG/dGWqHqjKrAmR5GUoYo0FIz38kxasvA1aevxWs2CA=="; }; }; "opn-5.3.0" = { @@ -27013,13 +27211,13 @@ let sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; }; }; - "p-map-1.2.0" = { + "p-map-2.1.0" = { name = "p-map"; packageName = "p-map"; - version = "1.2.0"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/p-map/-/p-map-1.2.0.tgz"; - sha512 = "r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA=="; + url = "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"; + sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; }; }; "p-map-series-1.0.0" = { @@ -27193,13 +27391,13 @@ let sha512 = "Zqvczvf/zZ7QNosdE9uTC7SRuvSs9tFqRkF6cJl+2HH7COBnx4BRAGpeXJlrbN+mM0CMHpbi620xdEHhCflghA=="; }; }; - "pacote-9.5.2" = { + "pacote-9.5.4" = { name = "pacote"; packageName = "pacote"; - version = "9.5.2"; + version = "9.5.4"; src = fetchurl { - url = "https://registry.npmjs.org/pacote/-/pacote-9.5.2.tgz"; - sha512 = "KVxalD57jaHnWIBQKPeU/eFU4UoMqUOj3h5AXvVMp9oJd8BZvIdTm8qmazy4jpYBf7RX9xCFmeFcU3ebvrUSZQ=="; + url = "https://registry.npmjs.org/pacote/-/pacote-9.5.4.tgz"; + sha512 = "nWr0ari6E+apbdoN0hToTKZElO5h4y8DGFa2pyNA5GQIdcP0imC96bA0bbPw1gpeguVIiUgHHaAlq/6xfPp8Qw=="; }; }; "pad-0.0.5" = { @@ -28165,15 +28363,6 @@ let sha1 = "378e56d6fd13e88bfb6f4a25df7a83faabddba5b"; }; }; - "pkg-dir-2.0.0" = { - name = "pkg-dir"; - packageName = "pkg-dir"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"; - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; - }; - }; "pkg-dir-3.0.0" = { name = "pkg-dir"; packageName = "pkg-dir"; @@ -29156,13 +29345,13 @@ let sha1 = "0ee97a7fc020b1a2a55b8659eda4aa8d869094bd"; }; }; - "property-information-5.1.0" = { + "property-information-5.2.2" = { name = "property-information"; packageName = "property-information"; - version = "5.1.0"; + version = "5.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/property-information/-/property-information-5.1.0.tgz"; - sha512 = "tODH6R3+SwTkAQckSp2S9xyYX8dEKYkeXw+4TmJzTxnNzd6mQPu1OD4f9zPrvw/Rm4wpPgI+Zp63mNSGNzUgHg=="; + url = "https://registry.npmjs.org/property-information/-/property-information-5.2.2.tgz"; + sha512 = "N2moasZmjn2mjVGIWpaqz5qnz6QyeQSGgGvMtl81gA9cPTWa6wpesRSe/quNnOjUHpvSH1oZx0pdz0EEckLFnA=="; }; }; "proto-list-1.2.4" = { @@ -30857,6 +31046,15 @@ let sha512 = "S/TQAZJO+D3m9xeN1WTI8dLKBBiRgXBlTJvbWjCThHWZj9EvHK70Ff50/tYj2J/fvBY6JtFVwRuazHN2E7M9BA=="; }; }; + "regenerator-runtime-0.13.3" = { + name = "regenerator-runtime"; + packageName = "regenerator-runtime"; + version = "0.13.3"; + src = fetchurl { + url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.3.tgz"; + sha512 = "naKIZz2GQ8JWh///G7L3X6LaQUAMp2lvb1rvwwsURe/VXwD6VMfr+/1NuNw3ag8v2kY1aQ/go5SNn79O9JU7yw=="; + }; + }; "regenerator-runtime-0.9.6" = { name = "regenerator-runtime"; packageName = "regenerator-runtime"; @@ -30866,13 +31064,13 @@ let sha1 = "d33eb95d0d2001a4be39659707c51b0cb71ce029"; }; }; - "regenerator-transform-0.14.0" = { + "regenerator-transform-0.14.1" = { name = "regenerator-transform"; packageName = "regenerator-transform"; - version = "0.14.0"; + version = "0.14.1"; src = fetchurl { - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.0.tgz"; - sha512 = "rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w=="; + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.1.tgz"; + sha512 = "flVuee02C3FKRISbxhXl9mGzdbWUVHubl1SMaknjxkFB1/iqpJhArQUvRxOOPEc/9tAiX0BaQ28FJH10E4isSQ=="; }; }; "regex-cache-0.4.4" = { @@ -30965,15 +31163,6 @@ let sha512 = "4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A=="; }; }; - "registry-auth-token-4.0.0" = { - name = "registry-auth-token"; - packageName = "registry-auth-token"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.0.0.tgz"; - sha512 = "lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw=="; - }; - }; "registry-url-3.1.0" = { name = "registry-url"; packageName = "registry-url"; @@ -31460,13 +31649,13 @@ let sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; }; }; - "requizzle-0.2.2" = { + "requizzle-0.2.3" = { name = "requizzle"; packageName = "requizzle"; - version = "0.2.2"; + version = "0.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.2.tgz"; - sha512 = "oJ6y7JcUJkblRGhMByGNcszeLgU0qDxNKFCiUZR1XyzHyVsev+Mxb1tyygxLd1ORsKee1SA5BInFdUwY64GE/A=="; + url = "https://registry.npmjs.org/requizzle/-/requizzle-0.2.3.tgz"; + sha512 = "YanoyJjykPxGHii0fZP0uUPEXpvqfBDxWV7s6GKAiiOsiqhX6vHNyW3Qzdmqp/iq/ExbhaGbVrjB4ruEVSM4GQ=="; }; }; "resolve-1.1.7" = { @@ -32225,13 +32414,13 @@ let sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; }; }; - "safer-eval-1.3.3" = { + "safer-eval-1.3.5" = { name = "safer-eval"; packageName = "safer-eval"; - version = "1.3.3"; + version = "1.3.5"; src = fetchurl { - url = "https://registry.npmjs.org/safer-eval/-/safer-eval-1.3.3.tgz"; - sha512 = "j/qb0rtnwTp5V1D7nR0Ns/14HU8OiHPaoZNJhM+Lfmv1nbXZCXG9LHaVW157agEocdSVAeeRNddK/yuWfalzGQ=="; + url = "https://registry.npmjs.org/safer-eval/-/safer-eval-1.3.5.tgz"; + sha512 = "BJ//K2Y+EgCbOHEsDGS5YahYBcYy7JcFpKDo2ba5t4MnOGHYtk7HvQkcxTDFvjQvJ0CRcdas/PyF+gTTCay+3w=="; }; }; "sander-0.5.1" = { @@ -32882,13 +33071,13 @@ let sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; }; }; - "seventh-0.7.23" = { + "seventh-0.7.27" = { name = "seventh"; packageName = "seventh"; - version = "0.7.23"; + version = "0.7.27"; src = fetchurl { - url = "https://registry.npmjs.org/seventh/-/seventh-0.7.23.tgz"; - sha512 = "QPxE3WAc7N/IJz1Gw5HbdNUXLt3GFPco7z/RfZViQ1LgiCsuayN+us15NSve2pL+C3Ad/lqhx3hqikCZpLEuCQ=="; + url = "https://registry.npmjs.org/seventh/-/seventh-0.7.27.tgz"; + sha512 = "vId7EbEQ7xr+wjBBFQBChtLzbqIQWe0cNtZMGtOVBig5p1XrsjVXvkBhdVcJRJdDh6pnn/5h5ai+208fDldXXA=="; }; }; "sha.js-2.4.11" = { @@ -33116,13 +33305,13 @@ let sha512 = "Wvre/Jq5vgoz31Z9stYWPLn0PqRqmBDpFSdypAnHu5AvRVCYPRYGnvryNLiXu8GOBNDH82J2FRHUGMjjHUpXFw=="; }; }; - "simple-git-1.120.0" = { + "simple-git-1.122.0" = { name = "simple-git"; packageName = "simple-git"; - version = "1.120.0"; + version = "1.122.0"; src = fetchurl { - url = "https://registry.npmjs.org/simple-git/-/simple-git-1.120.0.tgz"; - sha512 = "caF3eLrUSrL6d5fBVU85bmY0lpbMpbkWze1W2Tg946kN75s/WWvKqpc4Agn3DLHyzXEeiWfv8yPULiCKumuIQg=="; + url = "https://registry.npmjs.org/simple-git/-/simple-git-1.122.0.tgz"; + sha512 = "plTwhnkIHrw2TFMJbJH/mKwWGgFbj03V9wcfBKa4FsuvgJbpwdlSJnlvkIQWDV1CVLaf2Gl6zSNeRRnxBRhX1g=="; }; }; "simple-markdown-0.4.4" = { @@ -33431,22 +33620,22 @@ let sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; }; }; - "snyk-1.193.1" = { + "snyk-1.195.1" = { name = "snyk"; packageName = "snyk"; - version = "1.193.1"; + version = "1.195.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.193.1.tgz"; - sha512 = "bwxrpR8T5tOQgLGwBMq7BYKDvLQRVsB3znMJpdZpYnMCY34MpmkuDhU+546TA8kmp5cLPCg+0BlaO7Yrj3Ouag=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; + sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; }; }; - "snyk-config-2.2.1" = { + "snyk-config-2.2.2" = { name = "snyk-config"; packageName = "snyk-config"; - version = "2.2.1"; + version = "2.2.2"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-config/-/snyk-config-2.2.1.tgz"; - sha512 = "eCsFKHHE4J2DpD/1NzAtCmkmVDK310OXRtmoW0RlLnld1ESprJ5A/QRJ5Zxx1JbA8gjuwERY5vfUFA8lEJeopA=="; + url = "https://registry.npmjs.org/snyk-config/-/snyk-config-2.2.2.tgz"; + sha512 = "ud1UJhU5b3z2achCVbXin6m3eeESvJTn9hBDYjp5BafI+1ajOJt0LnUB9+SAZ3CnQIK90PUb/3nSx0xjtda7sA=="; }; }; "snyk-docker-plugin-1.25.1" = { @@ -33575,13 +33764,13 @@ let sha512 = "GP3VBrkz1iDDw2q8ftTqppHqzIAxmsUIoXR+FRWDKcipkKHXHJyUmtEo11QVT5fNRV0D0RCsssk2S5CTxTCu6A=="; }; }; - "snyk-sbt-plugin-2.5.6" = { + "snyk-sbt-plugin-2.5.7" = { name = "snyk-sbt-plugin"; packageName = "snyk-sbt-plugin"; - version = "2.5.6"; + version = "2.5.7"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.5.6.tgz"; - sha512 = "ioZW6WxN0lYnVkUHxSXR+6DBeA1Jlah/r3mMwEhnCwp1um2pE9O9F+piQzbuQi1+q64ZDb7EzBnvmL/aqJdwdA=="; + url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.5.7.tgz"; + sha512 = "nVGsYq/EZfSFzKaXJvUTqaf9phH5+EgZNN3ynN9Y54EO8Lh4Dljnd/gBIQzxHMI2joQDH4FMB3ojDZeiCkeQ1Q=="; }; }; "snyk-tree-1.0.0" = { @@ -33791,13 +33980,13 @@ let sha512 = "FbZ/X/2Xq3DAMhuRA4bnN0jy1QxaPTVPLFvyv6CEj0QDKSTdWp9yRxo1JhqXmWKhPQeJyUMajHJB2UjT43pFcw=="; }; }; - "sodium-browserify-1.2.7" = { + "sodium-browserify-1.3.0" = { name = "sodium-browserify"; packageName = "sodium-browserify"; - version = "1.2.7"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/sodium-browserify/-/sodium-browserify-1.2.7.tgz"; - sha512 = "PGhNO8KravjroRDYvurMPRYi4xMM7zjTW10R77Nq9sjkU314YA2sPeXS6UA5k/rLHaXLaZ6YfLLVz+DdCU5w0g=="; + url = "https://registry.npmjs.org/sodium-browserify/-/sodium-browserify-1.3.0.tgz"; + sha512 = "1KRS6Oew3X13AIZhbmGF0YBdt2pQdafJMfv83OZHWbzxG92YBBnN8HYx/VKmYB4xCe90eidNaDJWBEFw/o3ahw=="; }; }; "sodium-browserify-tweetnacl-0.2.6" = { @@ -34457,13 +34646,13 @@ let sha1 = "9e857d170dff152c53a273eb9004a0a914a106e5"; }; }; - "ssb-keys-7.1.7" = { + "ssb-keys-7.2.0" = { name = "ssb-keys"; packageName = "ssb-keys"; - version = "7.1.7"; + version = "7.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-7.1.7.tgz"; - sha512 = "Zncn++gtpoF4Wjz/po4Jvt7mCHbQfU6ATljahqf1CprWAio4JBUJnQrUeUlmlTn3f4Tseo0/hoh3vk7Bu6M/Sw=="; + url = "https://registry.npmjs.org/ssb-keys/-/ssb-keys-7.2.0.tgz"; + sha512 = "qxbVBYB5CsxWPEFg6qe+98hL6Jbs0rztA5zYsoQmYqz2+j3EhhIuXMTki92K4xREOCA2x45FFdOjDFy7ReDpBA=="; }; }; "ssb-links-3.0.8" = { @@ -35762,13 +35951,13 @@ let sha1 = "3cf87dfeb4d07b4a3f14827bc186b3fd0c645cd8"; }; }; - "svgo-1.2.2" = { + "svgo-1.3.0" = { name = "svgo"; packageName = "svgo"; - version = "1.2.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/svgo/-/svgo-1.2.2.tgz"; - sha512 = "rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA=="; + url = "https://registry.npmjs.org/svgo/-/svgo-1.3.0.tgz"; + sha512 = "MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ=="; }; }; "swagger-converter-0.1.7" = { @@ -35906,13 +36095,13 @@ let sha512 = "UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA=="; }; }; - "table-5.4.1" = { + "table-5.4.4" = { name = "table"; packageName = "table"; - version = "5.4.1"; + version = "5.4.4"; src = fetchurl { - url = "https://registry.npmjs.org/table/-/table-5.4.1.tgz"; - sha512 = "E6CK1/pZe2N75rGZQotFOdmzWQ1AILtgYbMAbAjvms0S1l5IDB47zG3nCnFGB/w+7nB3vKofbLXCH7HPBo864w=="; + url = "https://registry.npmjs.org/table/-/table-5.4.4.tgz"; + sha512 = "IIfEAUx5QlODLblLrGTTLJA7Tk0iLSGBvgY8essPRVNGHAzThujww1YqHLs6h3HfTg55h++RzLHH5Xw/rfv+mg=="; }; }; "table-layout-0.4.5" = { @@ -36069,6 +36258,15 @@ let sha512 = "rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A=="; }; }; + "tar-stream-2.1.0" = { + name = "tar-stream"; + packageName = "tar-stream"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.0.tgz"; + sha512 = "+DAn4Nb4+gz6WZigRzKEZl1QuJVOLtAwwF+WUxy1fJ6X63CaGaUAxJRD2KEn1OMfcbCjySTYpNC6WmfQoIEOdw=="; + }; + }; "taskkill-2.0.0" = { name = "taskkill"; packageName = "taskkill"; @@ -36195,13 +36393,13 @@ let sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; }; }; - "terminal-kit-1.28.7" = { + "terminal-kit-1.28.19" = { name = "terminal-kit"; packageName = "terminal-kit"; - version = "1.28.7"; + version = "1.28.19"; src = fetchurl { - url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.7.tgz"; - sha512 = "ouEiquaNQyiwvS2WBMji17rFZAzEr+0L0N7TkloeywAb04sJ7NSFo8af7qSVJj+9rqhs9WBlO3AjD41+FGMoPg=="; + url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.19.tgz"; + sha512 = "lcQgNFfjb+VKCtmXG8K6VCryUMURLKTM3xumY4Y1eXV4ikpjAZ/SFdnb44bnL5iJTEr20xw2m20rJyTsDUeFSw=="; }; }; "terser-3.17.0" = { @@ -38391,15 +38589,6 @@ let sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw=="; }; }; - "update-notifier-3.0.0" = { - name = "update-notifier"; - packageName = "update-notifier"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/update-notifier/-/update-notifier-3.0.0.tgz"; - sha512 = "6Xe3oF2bvuoj4YECUc52yxVs94yWrxwqHbzyveDktTS1WhnlTRpNcQMxUshcB7nRVGi1jEXiqL5cW1S5WSyzKg=="; - }; - }; "update-notifier-3.0.1" = { name = "update-notifier"; packageName = "update-notifier"; @@ -38625,13 +38814,13 @@ let sha512 = "4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw=="; }; }; - "ut_metadata-3.3.0" = { + "ut_metadata-3.4.0" = { name = "ut_metadata"; packageName = "ut_metadata"; - version = "3.3.0"; + version = "3.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.3.0.tgz"; - sha512 = "IK+ke9yL6a4oPLz/3oSW9TW7m9Wr4RG+5kW5aS2YulzEU1QDGAtago/NnOlno91fo3fSO7mnsqzn3NXNXdv8nA=="; + url = "https://registry.npmjs.org/ut_metadata/-/ut_metadata-3.4.0.tgz"; + sha512 = "/Igrr2rPD0NH/dNx493alpHxGBF/XREu68bZU4zigrYiQMQpYL68sKbNo9ND5DcmbMp0lNppw4mOhSSONgUYKw=="; }; }; "ut_pex-1.2.1" = { @@ -38931,6 +39120,15 @@ let sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="; }; }; + "validator-10.8.0" = { + name = "validator"; + packageName = "validator"; + version = "10.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/validator/-/validator-10.8.0.tgz"; + sha512 = "mXqMxfCh5NLsVgYVKl9WvnHNDPCcbNppHSPPowu0VjtSsGWVY+z8hJF44edLR1nbLNzi3jYoYsIl8KZpioIk6g=="; + }; + }; "value-or-function-3.0.0" = { name = "value-or-function"; packageName = "value-or-function"; @@ -39759,22 +39957,22 @@ let sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; }; }; - "webpack-4.35.3" = { + "webpack-4.36.1" = { name = "webpack"; packageName = "webpack"; - version = "4.35.3"; + version = "4.36.1"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.35.3.tgz"; - sha512 = "xggQPwr9ILlXzz61lHzjvgoqGU08v5+Wnut19Uv3GaTtzN4xBTcwnobodrXE142EL1tOiS5WVEButooGzcQzTA=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; + sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; }; }; - "webpack-cli-3.3.5" = { + "webpack-cli-3.3.6" = { name = "webpack-cli"; packageName = "webpack-cli"; - version = "3.3.5"; + version = "3.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.5.tgz"; - sha512 = "w0j/s42c5UhchwTmV/45MLQnTVwRoaUTu9fM5LuyOd/8lFoCNCELDogFoecx5NzRUndO0yD/gF2b02XKMnmAWQ=="; + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.6.tgz"; + sha512 = "0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A=="; }; }; "webpack-core-0.6.9" = { @@ -40308,6 +40506,15 @@ let sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f"; }; }; + "write-json-file-3.2.0" = { + name = "write-json-file"; + packageName = "write-json-file"; + version = "3.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/write-json-file/-/write-json-file-3.2.0.tgz"; + sha512 = "3xZqT7Byc2uORAatYiP3DHUUAVEkNOswEWNs9H5KXiicRTvzYzYqKjYc4G7p+8pltvAw641lVByKVtMpf+4sYQ=="; + }; + }; "write-pkg-3.2.0" = { name = "write-pkg"; packageName = "write-pkg"; @@ -40389,13 +40596,13 @@ let sha512 = "GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA=="; }; }; - "ws-7.1.0" = { + "ws-7.1.1" = { name = "ws"; packageName = "ws"; - version = "7.1.0"; + version = "7.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-7.1.0.tgz"; - sha512 = "Swie2C4fs7CkwlHu1glMePLYJJsWjzhl1vm3ZaLplD0h7OMkZyZ6kLTB/OagiU923bZrPFXuDTeEqaEN4NWG4g=="; + url = "https://registry.npmjs.org/ws/-/ws-7.1.1.tgz"; + sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A=="; }; }; "wtf-8-1.0.0" = { @@ -40885,6 +41092,15 @@ let sha512 = "VCIyR1wJoEBZUqk5PA+oOBF6ypbwh5aNB3I50guxAL/quggdfs4TtNHQrSazFA3fYZ+tEqfs0zIGlv0c/rgjbQ=="; }; }; + "yargs-parser-11.0.0" = { + name = "yargs-parser"; + packageName = "yargs-parser"; + version = "11.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.0.0.tgz"; + sha512 = "dvsafRjM45h79WOTvS/dP35Sb31SlGAKz6tFjI97kGC4MJFBuzTZY6TTYHrz0QSMQdkyd8Y+RsOMLr+JY0nPFQ=="; + }; + }; "yargs-parser-11.1.1" = { name = "yargs-parser"; packageName = "yargs-parser"; @@ -41092,13 +41308,13 @@ let sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04"; }; }; - "zip-stream-2.0.1" = { + "zip-stream-2.1.0" = { name = "zip-stream"; packageName = "zip-stream"; - version = "2.0.1"; + version = "2.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/zip-stream/-/zip-stream-2.0.1.tgz"; - sha512 = "c+eUhhkDpaK87G/py74wvWLtz2kzMPNCCkUApkun50ssE0oQliIQzWpTnwjB+MTKVIf2tGzIgHyqW/Y+W77ecQ=="; + url = "https://registry.npmjs.org/zip-stream/-/zip-stream-2.1.0.tgz"; + sha512 = "F/xoLqlQShgvn1BzHQCNiYIoo2R93GQIMH+tA6JC3ckMDkme4bnhEEXSferZcG5ea/6bZNx3GqSUHqT8TUO6uQ=="; }; }; }; @@ -41107,17 +41323,17 @@ in "@angular/cli" = nodeEnv.buildNodePackage { name = "_at_angular_slash_cli"; packageName = "@angular/cli"; - version = "8.1.1"; + version = "8.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/@angular/cli/-/cli-8.1.1.tgz"; - sha512 = "7EXTjS7XXZyWhW4JMuGRRSLmdn8KSWK41xoAiod8P6csJkGgsmFGLs2QkZd/mvGnU9rOKaNkEjHPI9QO+iprxw=="; + url = "https://registry.npmjs.org/@angular/cli/-/cli-8.1.2.tgz"; + sha512 = "Zz9WGqPgr+w9SfpDeKLPzGFLZaX7uu2kU7/r6vxvnESJcnoxKOJBf+ipXu42TY7D3FtSiPBO27GBTSVgPCseoQ=="; }; dependencies = [ - sources."@angular-devkit/architect-0.801.1" - sources."@angular-devkit/core-8.1.1" - sources."@angular-devkit/schematics-8.1.1" - sources."@schematics/angular-8.1.1" - sources."@schematics/update-0.801.1" + sources."@angular-devkit/architect-0.801.2" + sources."@angular-devkit/core-8.1.2" + sources."@angular-devkit/schematics-8.1.2" + sources."@schematics/angular-8.1.2" + sources."@schematics/update-0.801.2" sources."@yarnpkg/lockfile-1.1.0" sources."JSONStream-1.3.5" sources."agent-base-4.3.0" @@ -41238,7 +41454,7 @@ in sources."json-stringify-safe-5.0.1" sources."jsonparse-1.3.1" sources."jsprim-1.4.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lru-cache-5.1.1" sources."magic-string-0.25.3" sources."make-fetch-happen-4.0.2" @@ -41447,6 +41663,51 @@ in bypassCache = true; reconstructLock = true; }; + "@antora/cli" = nodeEnv.buildNodePackage { + name = "_at_antora_slash_cli"; + packageName = "@antora/cli"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/cli/-/cli-2.0.0.tgz"; + sha512 = "vgoGTRRFkPtKeMgGoBevYzK97DwT75rxUeE6yAtm50i7e/aIGoXFyCglaXdsyP4FAfENVqN+DWy3ZuKxhPfc7g=="; + }; + dependencies = [ + sources."@antora/playbook-builder-2.0.0" + sources."@iarna/toml-2.2.3" + sources."argparse-1.0.10" + sources."camelcase-5.3.1" + sources."camelcase-keys-5.2.0" + sources."commander-2.20.0" + (sources."convict-4.4.1" // { + dependencies = [ + sources."json5-1.0.1" + ]; + }) + sources."decamelize-1.2.0" + sources."deep-freeze-0.0.1" + sources."depd-1.1.2" + sources."esprima-4.0.1" + sources."js-yaml-3.13.1" + sources."json5-2.1.0" + sources."lodash.clonedeep-4.5.0" + sources."map-obj-3.1.0" + sources."minimist-1.2.0" + sources."moment-2.22.2" + sources."quick-lru-1.1.0" + sources."sprintf-js-1.0.3" + sources."validator-10.8.0" + sources."yargs-parser-11.0.0" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "The command line interface for Antora."; + homepage = https://antora.org/; + license = "MPL-2.0"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; aws-azure-login = nodeEnv.buildNodePackage { name = "aws-azure-login"; packageName = "aws-azure-login"; @@ -41456,14 +41717,14 @@ in sha512 = "rVvYFWwCmm65WdXxpkw/A9CIOuX2alccau2Pq97rkEweELN/jfj2hDOUMyheDdMQyywiecrbZG0VDbxr3US2Jw=="; }; dependencies = [ - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."agent-base-4.3.0" sources."ansi-escapes-3.2.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" sources."ast-types-0.13.2" sources."async-limiter-1.0.0" - sources."aws-sdk-2.493.0" + sources."aws-sdk-2.496.0" sources."balanced-match-1.0.0" sources."base64-js-1.3.0" sources."bluebird-3.5.5" @@ -41493,7 +41754,7 @@ in sources."css-what-2.1.3" (sources."data-uri-to-buffer-2.0.1" // { dependencies = [ - sources."@types/node-8.10.50" + sources."@types/node-8.10.51" ]; }) sources."debug-4.1.1" @@ -41561,7 +41822,7 @@ in sources."isarray-1.0.0" sources."jmespath-0.15.0" sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lru-cache-4.1.5" sources."mime-2.4.4" sources."mimic-fn-1.2.0" @@ -41663,10 +41924,10 @@ in azure-functions-core-tools = nodeEnv.buildNodePackage { name = "azure-functions-core-tools"; packageName = "azure-functions-core-tools"; - version = "2.7.1373"; + version = "2.7.1480"; src = fetchurl { - url = "https://registry.npmjs.org/azure-functions-core-tools/-/azure-functions-core-tools-2.7.1373.tgz"; - sha512 = "EC4lgHBgmSoDFjJSIXMWT24Ner3ctUzDBKM0Xz8mX+RlrpIkKHJq7I8EtcGXBWpF4QIAJYbD3sGP/9h6JqI10A=="; + url = "https://registry.npmjs.org/azure-functions-core-tools/-/azure-functions-core-tools-2.7.1480.tgz"; + sha512 = "Yr0YtXQ6JHB8ep68X9E5FQvbNb0Hs05t8o8exl+LJ8c/0VpIg2Ff7slzRHseTuQF4RysYk2VbRNPaN6ZPS1kWw=="; }; dependencies = [ sources."agent-base-4.3.0" @@ -41744,11 +42005,11 @@ in sources."acorn-5.7.3" (sources."acorn-globals-4.3.2" // { dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" ]; }) sources."acorn-walk-6.2.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -41775,7 +42036,7 @@ in sources."console-control-strings-1.1.0" sources."core-util-is-1.0.2" sources."cssom-0.3.8" - sources."cssstyle-1.3.0" + sources."cssstyle-1.4.0" sources."dashdash-1.14.1" (sources."data-urls-1.1.0" // { dependencies = [ @@ -41830,7 +42091,7 @@ in sources."jsprim-1.4.1" sources."left-pad-1.3.0" sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.sortby-4.7.0" sources."mime-db-1.40.0" sources."mime-types-2.1.24" @@ -42109,7 +42370,7 @@ in }; dependencies = [ sources."JSONStream-1.3.5" - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-dynamic-import-4.0.0" sources."acorn-node-1.7.0" sources."acorn-walk-6.2.0" @@ -42296,7 +42557,7 @@ in dependencies = [ sources."addr-to-ip-port-1.5.1" sources."airplay-js-0.2.16" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-1.1.1" sources."ansi-styles-2.2.1" sources."append-0.1.1" @@ -42425,7 +42686,7 @@ in sources."internal-ip-1.2.0" sources."ip-1.1.5" sources."ip-set-1.0.2" - sources."ipaddr.js-1.9.0" + sources."ipaddr.js-1.9.1" sources."is-arrayish-0.2.1" sources."is-finite-1.0.2" sources."is-typedarray-1.0.0" @@ -42786,7 +43047,7 @@ in sha512 = "HwWCWql35j7EIp29mO4yRAxPH+Z2t2gwsLk3RLr6wktYjRacy0S83sG4RBDNfbfyLqJeZxFgMoKaCC/bTNxoWA=="; }; dependencies = [ - sources."async-2.6.2" + sources."async-2.6.3" sources."color-3.0.0" sources."color-convert-1.9.3" sources."color-name-1.1.3" @@ -42810,7 +43071,7 @@ in sources."is-stream-1.1.0" sources."isarray-1.0.0" sources."kuler-1.0.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."logform-2.1.2" sources."lynx-0.2.0" sources."mersenne-0.0.4" @@ -42860,10 +43121,10 @@ in sources."@types/events-3.0.0" sources."@types/glob-7.1.1" sources."@types/minimatch-3.0.3" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."abbrev-1.1.1" sources."accepts-1.3.7" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-0.3.1" sources."ansi-align-2.0.0" sources."ansi-escapes-3.2.0" @@ -42880,7 +43141,7 @@ in sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" @@ -43170,7 +43431,7 @@ in sources."kind-of-6.0.2" sources."latest-version-3.1.0" sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.debounce-4.0.8" sources."loud-rejection-2.1.0" sources."lowercase-keys-1.0.1" @@ -43492,7 +43753,7 @@ in sources."@types/events-3.0.0" sources."@types/glob-7.1.1" sources."@types/minimatch-3.0.3" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."arr-diff-4.0.0" sources."arr-flatten-1.1.0" sources."arr-union-3.1.0" @@ -43820,7 +44081,7 @@ in sources."@cycle/run-3.4.0" sources."@cycle/time-0.10.1" sources."@types/cookiejar-2.1.1" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@types/superagent-3.8.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" @@ -43875,7 +44136,7 @@ in sources."is-promise-2.1.0" sources."isarray-1.0.0" sources."isexe-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash._baseiteratee-4.7.0" sources."lodash._basetostring-4.12.0" sources."lodash._baseuniq-4.6.0" @@ -44004,7 +44265,7 @@ in sources."isarray-0.0.1" sources."isexe-2.0.0" sources."jsonfile-4.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-0.0.8" @@ -44154,7 +44415,7 @@ in }; dependencies = [ sources."abstract-random-access-1.1.2" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-align-2.0.0" sources."ansi-diff-1.1.1" sources."ansi-regex-3.0.0" @@ -44981,12 +45242,12 @@ in }; dependencies = [ sources."JSONStream-1.3.5" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" - sources."aws-sdk-2.493.0" + sources."aws-sdk-2.496.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" sources."base64-js-1.3.0" @@ -45030,7 +45291,7 @@ in sources."json-stringify-safe-5.0.1" sources."jsonparse-1.3.1" sources."jsprim-1.4.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.find-4.6.0" sources."lodash.max-4.0.1" sources."lodash.merge-4.6.2" @@ -45177,7 +45438,7 @@ in sources."inherits-2.0.3" sources."internal-ip-3.0.1" sources."ip-regex-2.1.0" - sources."ipaddr.js-1.9.0" + sources."ipaddr.js-1.9.1" sources."is-binary-path-2.1.0" sources."is-buffer-1.1.6" sources."is-extglob-2.1.1" @@ -45375,7 +45636,7 @@ in ]; }) sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.debounce-4.0.8" sources."lodash.flattendeep-4.4.0" sources."lodash.isequal-4.5.0" @@ -45505,19 +45766,19 @@ in eslint = nodeEnv.buildNodePackage { name = "eslint"; packageName = "eslint"; - version = "6.0.1"; + version = "6.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-6.0.1.tgz"; - sha512 = "DyQRaMmORQ+JsWShYsSg4OPTjY56u1nCjAmICrE8vLWqyLKxhFXOthwMj1SA8xwfrv0CofLNVnqbfyhwCkaO0w=="; + url = "https://registry.npmjs.org/eslint/-/eslint-6.1.0.tgz"; + sha512 = "QhrbdRD7ofuV09IuE2ySWBz0FyXCq0rriLTZXZqaWSI79CVtHVRdkFuFTViiqzZhkCgfOh9USpriuGN2gIpZDQ=="; }; dependencies = [ - sources."@babel/code-frame-7.0.0" + sources."@babel/code-frame-7.5.5" sources."@babel/highlight-7.5.0" - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-jsx-5.0.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-escapes-3.2.0" - sources."ansi-regex-4.1.0" + sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" sources."argparse-1.0.10" sources."astral-regex-1.0.0" @@ -45531,14 +45792,18 @@ in sources."color-convert-1.9.3" sources."color-name-1.1.3" sources."concat-map-0.0.1" - sources."cross-spawn-6.0.5" + (sources."cross-spawn-6.0.5" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."debug-4.1.1" sources."deep-is-0.1.3" sources."doctrine-3.0.0" sources."emoji-regex-7.0.3" sources."escape-string-regexp-1.0.5" - sources."eslint-scope-4.0.3" - sources."eslint-utils-1.3.1" + sources."eslint-scope-5.0.0" + sources."eslint-utils-1.4.0" sources."eslint-visitor-keys-1.0.0" sources."espree-6.0.0" sources."esprima-4.0.1" @@ -45557,11 +45822,7 @@ in sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.4" - (sources."glob-parent-3.1.0" // { - dependencies = [ - sources."is-glob-3.1.0" - ]; - }) + sources."glob-parent-5.0.0" sources."globals-11.12.0" sources."has-flag-3.0.0" sources."iconv-lite-0.4.24" @@ -45570,11 +45831,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - (sources."inquirer-6.5.0" // { - dependencies = [ - sources."strip-ansi-5.2.0" - ]; - }) + sources."inquirer-6.5.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" sources."is-glob-4.0.1" @@ -45585,7 +45842,7 @@ in sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-0.0.8" @@ -45599,7 +45856,6 @@ in sources."optionator-0.8.2" sources."os-tmpdir-1.0.2" sources."parent-module-1.0.1" - sources."path-dirname-1.0.2" sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" sources."prelude-ls-1.1.2" @@ -45612,24 +45868,27 @@ in sources."run-async-2.3.0" sources."rxjs-6.5.2" sources."safer-buffer-2.1.2" - sources."semver-5.7.0" + sources."semver-6.2.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" sources."slice-ansi-2.1.0" sources."sprintf-js-1.0.3" - sources."string-width-2.1.1" - (sources."strip-ansi-4.0.0" // { + (sources."string-width-2.1.1" // { dependencies = [ - sources."ansi-regex-3.0.0" + sources."strip-ansi-4.0.0" ]; }) - sources."strip-json-comments-2.0.1" + (sources."strip-ansi-5.2.0" // { + dependencies = [ + sources."ansi-regex-4.1.0" + ]; + }) + sources."strip-json-comments-3.0.1" sources."supports-color-5.5.0" - (sources."table-5.4.1" // { + (sources."table-5.4.4" // { dependencies = [ sources."string-width-3.1.0" - sources."strip-ansi-5.2.0" ]; }) sources."text-table-0.2.0" @@ -45638,6 +45897,7 @@ in sources."tslib-1.10.0" sources."type-check-0.3.2" sources."uri-js-4.2.2" + sources."v8-compile-cache-2.0.3" sources."which-1.3.1" sources."wordwrap-1.0.0" sources."wrappy-1.0.2" @@ -45662,13 +45922,13 @@ in sha512 = "9I+AC6Y7WTX4J1O3GGg1LqGiDxOUedLxzIxtKSWnD1FP3z2MPQbnWNNycg9Pq/L5B0NlszdaBlajUexZ8qzuag=="; }; dependencies = [ - sources."@babel/code-frame-7.0.0" + sources."@babel/code-frame-7.5.5" sources."@babel/highlight-7.5.0" - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-jsx-5.0.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-escapes-3.2.0" - sources."ansi-regex-4.1.0" + sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" sources."argparse-1.0.10" sources."astral-regex-1.0.0" @@ -45683,15 +45943,19 @@ in sources."color-name-1.1.3" sources."concat-map-0.0.1" sources."core_d-1.0.1" - sources."cross-spawn-6.0.5" + (sources."cross-spawn-6.0.5" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."debug-4.1.1" sources."deep-is-0.1.3" sources."doctrine-3.0.0" sources."emoji-regex-7.0.3" sources."escape-string-regexp-1.0.5" - sources."eslint-6.0.1" - sources."eslint-scope-4.0.3" - sources."eslint-utils-1.3.1" + sources."eslint-6.1.0" + sources."eslint-scope-5.0.0" + sources."eslint-utils-1.4.0" sources."eslint-visitor-keys-1.0.0" sources."espree-6.0.0" sources."esprima-4.0.1" @@ -45710,11 +45974,7 @@ in sources."fs.realpath-1.0.0" sources."functional-red-black-tree-1.0.1" sources."glob-7.1.4" - (sources."glob-parent-3.1.0" // { - dependencies = [ - sources."is-glob-3.1.0" - ]; - }) + sources."glob-parent-5.0.0" sources."globals-11.12.0" sources."has-flag-3.0.0" sources."iconv-lite-0.4.24" @@ -45723,11 +45983,7 @@ in sources."imurmurhash-0.1.4" sources."inflight-1.0.6" sources."inherits-2.0.4" - (sources."inquirer-6.5.0" // { - dependencies = [ - sources."strip-ansi-5.2.0" - ]; - }) + sources."inquirer-6.5.0" sources."is-extglob-2.1.1" sources."is-fullwidth-code-point-2.0.0" sources."is-glob-4.0.1" @@ -45738,7 +45994,7 @@ in sources."json-schema-traverse-0.4.1" sources."json-stable-stringify-without-jsonify-1.0.1" sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."mimic-fn-1.2.0" sources."minimatch-3.0.4" sources."minimist-0.0.8" @@ -45753,7 +46009,6 @@ in sources."optionator-0.8.2" sources."os-tmpdir-1.0.2" sources."parent-module-1.0.1" - sources."path-dirname-1.0.2" sources."path-is-absolute-1.0.1" sources."path-key-2.0.1" sources."path-parse-1.0.6" @@ -45768,24 +46023,27 @@ in sources."run-async-2.3.0" sources."rxjs-6.5.2" sources."safer-buffer-2.1.2" - sources."semver-5.7.0" + sources."semver-6.2.0" sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" sources."slice-ansi-2.1.0" sources."sprintf-js-1.0.3" - sources."string-width-2.1.1" - (sources."strip-ansi-4.0.0" // { + (sources."string-width-2.1.1" // { dependencies = [ - sources."ansi-regex-3.0.0" + sources."strip-ansi-4.0.0" ]; }) - sources."strip-json-comments-2.0.1" + (sources."strip-ansi-5.2.0" // { + dependencies = [ + sources."ansi-regex-4.1.0" + ]; + }) + sources."strip-json-comments-3.0.1" sources."supports-color-5.5.0" - (sources."table-5.4.1" // { + (sources."table-5.4.4" // { dependencies = [ sources."string-width-3.1.0" - sources."strip-ansi-5.2.0" ]; }) sources."text-table-0.2.0" @@ -45794,6 +46052,7 @@ in sources."tslib-1.10.0" sources."type-check-0.3.2" sources."uri-js-4.2.2" + sources."v8-compile-cache-2.0.3" sources."which-1.3.1" sources."wordwrap-1.0.0" sources."wrappy-1.0.2" @@ -45835,7 +46094,7 @@ in sha1 = "81f5f98043cc2517053f96ba5d61ef5db430c010"; }; dependencies = [ - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-escapes-1.4.0" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -46094,7 +46353,7 @@ in sources."json-stringify-safe-5.0.1" sources."load-json-file-4.0.0" sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."loud-rejection-1.6.0" sources."lru-cache-4.1.5" sources."map-obj-2.0.0" @@ -46644,14 +46903,14 @@ in sha512 = "76zCOpXUl/85CMk9aJwWbBy2vGYv+Yn17PcUMhksTtMJLAUujje3eP8v7FufC2pN9SbQx88Gtr4ARXGeVWwAJA=="; }; dependencies = [ - sources."async-2.6.2" + sources."async-2.6.3" sources."debug-4.1.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.groupby-4.6.0" sources."microee-0.0.6" sources."minilog-3.1.0" sources."ms-2.1.2" - sources."simple-git-1.120.0" + sources."simple-git-1.122.0" sources."tabtab-git+https://github.com/mixu/node-tabtab.git" ]; buildInputs = globalBuildInputs; @@ -46705,8 +46964,8 @@ in sources."jsonpointer-4.0.1" sources."kvgraph-0.1.0" sources."kvset-1.0.0" - sources."libsodium-0.7.4" - sources."libsodium-wrappers-0.7.4" + sources."libsodium-0.7.5" + sources."libsodium-wrappers-0.7.5" sources."lodash.get-4.4.2" sources."looper-4.0.0" sources."lrucache-1.0.3" @@ -46722,7 +46981,7 @@ in sources."moo-0.4.3" sources."ms-2.1.2" sources."multicb-1.2.2" - sources."multiserver-3.3.6" + sources."multiserver-3.4.0" sources."multiserver-address-1.0.1" sources."multiserver-scopes-1.0.0" sources."muxrpc-6.4.2" @@ -46795,7 +47054,7 @@ in sources."sha.js-2.4.5" sources."smart-buffer-4.0.2" sources."socks-2.3.2" - sources."sodium-browserify-1.2.7" + sources."sodium-browserify-1.3.0" (sources."sodium-browserify-tweetnacl-0.2.6" // { dependencies = [ sources."sha.js-2.4.11" @@ -46816,7 +47075,7 @@ in sources."ssb-git-0.5.0" sources."ssb-git-repo-2.8.3" sources."ssb-issues-1.0.0" - sources."ssb-keys-7.1.7" + sources."ssb-keys-7.2.0" sources."ssb-marked-0.6.0" (sources."ssb-mentions-0.1.2" // { dependencies = [ @@ -46895,7 +47154,7 @@ in }) sources."accepts-1.3.7" sources."agent-base-4.3.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-align-2.0.0" sources."ansi-escapes-3.2.0" sources."ansi-regex-3.0.0" @@ -46918,7 +47177,7 @@ in sources."array-flatten-1.1.1" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" @@ -47211,7 +47470,7 @@ in ]; }) sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.get-4.4.2" sources."lodash.includes-4.3.0" sources."lodash.isboolean-3.0.3" @@ -48571,7 +48830,7 @@ in sha512 = "uXuRyVhQa0HlNmZg5LJ1BRJvRq5f7IJL/34tItHhZr9re15pwaqAuLUAIcqtwd1bLUCE++7HVPtR+NSReFW0iA=="; }; dependencies = [ - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."async-2.6.1" @@ -48638,7 +48897,7 @@ in sources."json-schema-traverse-0.4.1" sources."json-stringify-safe-5.0.1" sources."jsprim-1.4.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."mime-db-1.40.0" sources."mime-types-2.1.24" sources."minimatch-3.0.4" @@ -48827,10 +49086,10 @@ in ionic = nodeEnv.buildNodePackage { name = "ionic"; packageName = "ionic"; - version = "5.2.2"; + version = "5.2.3"; src = fetchurl { - url = "https://registry.npmjs.org/ionic/-/ionic-5.2.2.tgz"; - sha512 = "sTPHEGOp0Od+b3d6vfRshjQm24xwOCK0ZNNfVCobUhFpi1/dosfGK8RRQfWKbWSIW3dLL9QwNgcoW+GymDtcCw=="; + url = "https://registry.npmjs.org/ionic/-/ionic-5.2.3.tgz"; + sha512 = "4TX29yrOhlcSFX8LRoB3ss2PaSyV6DBVnnCC7S/hBhmN0jS6/bQS7nO7gafvX8he08MF9DEfz5GVqXvME9a4og=="; }; dependencies = [ sources."@ionic/cli-framework-2.1.2" @@ -48843,7 +49102,7 @@ in sources."@ionic/utils-stream-2.0.0" sources."@ionic/utils-subprocess-1.0.3" sources."@ionic/utils-terminal-1.0.1" - sources."@types/node-8.10.50" + sources."@types/node-8.10.51" sources."agent-base-4.3.0" sources."ansi-escapes-3.2.0" sources."ansi-regex-3.0.0" @@ -48960,7 +49219,7 @@ in ]; }) sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash._baseassign-3.2.0" sources."lodash._basecopy-3.0.1" sources."lodash._bindcallback-3.0.1" @@ -49113,7 +49372,7 @@ in }) sources."wrappy-1.0.2" sources."write-file-atomic-3.0.0" - sources."ws-7.1.0" + sources."ws-7.1.1" sources."xregexp-2.0.0" sources."yallist-2.1.2" ]; @@ -49313,7 +49572,7 @@ in sources."opentracing-0.13.0" ]; }) - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."long-2.4.0" sources."minimatch-3.0.4" sources."mz-2.7.0" @@ -49321,7 +49580,7 @@ in sources."object-assign-4.1.1" sources."object-hash-1.3.1" sources."once-1.4.0" - sources."opentracing-0.14.3" + sources."opentracing-0.14.4" sources."path-is-absolute-1.0.1" sources."pathval-1.1.0" sources."rxjs-5.5.12" @@ -49370,11 +49629,11 @@ in sources."acorn-5.7.3" (sources."acorn-globals-4.3.2" // { dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" ]; }) sources."acorn-walk-6.2.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" (sources."ansi-escape-sequences-4.1.0" // { dependencies = [ sources."array-back-3.1.0" @@ -49433,7 +49692,7 @@ in sources."crypt-0.0.2" sources."css-2.2.4" sources."cssom-0.3.8" - sources."cssstyle-1.3.0" + sources."cssstyle-1.4.0" sources."cwise-compiler-1.1.3" sources."dashdash-1.14.1" (sources."data-urls-1.1.0" // { @@ -49569,7 +49828,7 @@ in }) sources."isarray-1.0.0" sources."isstream-0.1.2" - sources."joplin-turndown-4.0.15" + sources."joplin-turndown-4.0.17" sources."joplin-turndown-plugin-gfm-1.0.8" sources."jpeg-js-0.1.2" sources."js-tokens-4.0.0" @@ -49588,8 +49847,8 @@ in sources."levn-0.3.0" sources."linkify-it-2.2.0" sources."locate-path-2.0.0" - sources."lodash-4.17.14" - sources."lodash-es-4.17.14" + sources."lodash-4.17.15" + sources."lodash-es-4.17.15" sources."lodash.padend-4.6.1" sources."lodash.sortby-4.7.0" sources."lodash.toarray-4.4.0" @@ -49647,7 +49906,7 @@ in sources."magicli-0.0.5" ]; }) - sources."omggif-1.0.9" + sources."omggif-1.0.10" sources."once-1.4.0" sources."optionator-0.8.2" sources."os-homedir-1.0.2" @@ -49714,7 +49973,7 @@ in sources."server-destroy-1.0.1" sources."set-blocking-2.0.0" sources."setimmediate-1.0.5" - sources."seventh-0.7.23" + sources."seventh-0.7.27" sources."sharp-0.22.1" sources."signal-exit-3.0.2" sources."simple-concat-1.0.0" @@ -49776,7 +50035,7 @@ in sources."q-0.9.7" ]; }) - sources."terminal-kit-1.28.7" + sources."terminal-kit-1.28.19" (sources."tkwidgets-0.5.26" // { dependencies = [ sources."is-fullwidth-code-point-2.0.0" @@ -49852,30 +50111,30 @@ in jsdoc = nodeEnv.buildNodePackage { name = "jsdoc"; packageName = "jsdoc"; - version = "3.6.2"; + version = "3.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.2.tgz"; - sha512 = "S2vzg99C5+gb7FWlrK4TVdyzVPGGkdvpDkCEJH1JABi2PKzPeLu5/zZffcJUifgWUJqXWl41Hoc+MmuM2GukIg=="; + url = "https://registry.npmjs.org/jsdoc/-/jsdoc-3.6.3.tgz"; + sha512 = "Yf1ZKA3r9nvtMWHO1kEuMZTlHOF8uoQ0vyo5eH7SQy5YeIiHM+B0DgKnn+X6y6KDYZcF7G2SPkKF+JORCXWE/A=="; }; dependencies = [ - sources."@babel/parser-7.5.0" + sources."@babel/parser-7.5.5" sources."argparse-1.0.10" sources."bluebird-3.5.5" - sources."catharsis-0.8.10" + sources."catharsis-0.8.11" sources."entities-1.1.2" sources."escape-string-regexp-2.0.0" sources."graceful-fs-4.2.0" sources."js2xmlparser-4.0.0" sources."klaw-3.0.0" sources."linkify-it-2.2.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."markdown-it-8.4.2" sources."markdown-it-anchor-5.2.4" - sources."marked-0.6.3" + sources."marked-0.7.0" sources."mdurl-1.0.1" sources."minimist-0.0.8" sources."mkdirp-0.5.1" - sources."requizzle-0.2.2" + sources."requizzle-0.2.3" sources."sprintf-js-1.0.3" sources."strip-json-comments-3.0.1" sources."taffydb-2.6.2" @@ -49925,7 +50184,7 @@ in sources."inflight-1.0.6" sources."inherits-2.0.4" sources."isarray-0.0.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."minimatch-3.0.4" sources."once-1.4.0" sources."path-is-absolute-1.0.1" @@ -49965,10 +50224,10 @@ in js-beautify = nodeEnv.buildNodePackage { name = "js-beautify"; packageName = "js-beautify"; - version = "1.10.0"; + version = "1.10.1"; src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.0.tgz"; - sha512 = "OMwf/tPDpE/BLlYKqZOhqWsd3/z2N3KOlyn1wsCRGFwViE8LOQTcDtathQvHvZc+q+zWmcNAbwKSC+iJoMaH2Q=="; + url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.1.tgz"; + sha512 = "4y8SHOIRC+/YQ2gs3zJEKBUraQerq49FJYyXRpdzUGYQzCq8q9xtIh0YXial1S5KmonVui4aiUb6XaGyjE51XA=="; }; dependencies = [ sources."abbrev-1.1.1" @@ -50087,7 +50346,7 @@ in sources."inherits-2.0.4" sources."isarray-1.0.0" sources."js-yaml-3.13.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."methods-1.1.2" sources."mime-1.6.0" sources."mime-db-1.40.0" @@ -50129,7 +50388,7 @@ in sources."@sindresorhus/is-0.14.0" sources."@szmarczak/http-timer-1.1.2" sources."accepts-1.3.7" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-align-3.0.0" sources."ansi-regex-4.1.0" sources."ansi-styles-3.2.1" @@ -50260,7 +50519,7 @@ in sources."keyv-3.1.0" sources."latest-version-5.1.0" sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash-id-0.14.0" sources."lowdb-1.0.0" sources."lowercase-keys-1.0.1" @@ -50439,7 +50698,7 @@ in sources."after-0.8.2" sources."anymatch-3.0.3" sources."arraybuffer.slice-0.0.7" - sources."async-2.6.2" + sources."async-2.6.3" sources."async-limiter-1.0.0" sources."backo2-1.0.2" sources."balanced-match-1.0.0" @@ -50468,7 +50727,7 @@ in sources."cookie-0.3.1" sources."core-js-3.1.4" sources."custom-event-1.0.1" - sources."date-format-2.0.0" + sources."date-format-2.1.0" sources."debug-2.6.9" sources."depd-1.1.2" sources."di-0.0.1" @@ -50520,7 +50779,7 @@ in sources."isarray-2.0.1" sources."isbinaryfile-3.0.3" sources."jsonfile-4.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" (sources."log4js-4.5.1" // { dependencies = [ sources."debug-4.1.1" @@ -50721,7 +50980,7 @@ in sources."abab-1.0.4" sources."acorn-2.7.0" sources."acorn-globals-1.0.9" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."asn1-0.2.4" @@ -50818,7 +51077,7 @@ in sources."lcid-1.0.0" sources."levn-0.3.0" sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."log-symbols-2.2.0" sources."map-age-cleaner-0.1.3" (sources."mem-4.3.0" // { @@ -50968,96 +51227,113 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "3.15.0"; + version = "3.16.1"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-3.15.0.tgz"; - sha512 = "kRIQ3bgzkmew5/WZQ0C9WjH0IUf3ZmTNnBwTHfXgLkVY7td0lbwMQFD7zehflUn0zG4ou54o/gn+IfjF0ti/5A=="; + url = "https://registry.npmjs.org/lerna/-/lerna-3.16.1.tgz"; + sha512 = "MjVOWbSq5GABjfSG4q4wTw2eOTTFR5pwNmbDioI3nmrGsXI/kzzo3iRPTJlqL1klL+7O6s3lio7838vsPz9Iew=="; }; dependencies = [ - (sources."@evocateur/libnpmaccess-3.1.0" // { + (sources."@evocateur/libnpmaccess-3.1.2" // { dependencies = [ sources."aproba-2.0.0" ]; }) - (sources."@evocateur/libnpmpublish-1.2.0" // { + (sources."@evocateur/libnpmpublish-1.2.2" // { dependencies = [ sources."aproba-2.0.0" + sources."semver-5.7.0" ]; }) - (sources."@evocateur/npm-registry-fetch-3.9.1" // { + sources."@evocateur/npm-registry-fetch-4.0.0" + (sources."@evocateur/pacote-9.6.3" // { dependencies = [ - sources."lru-cache-4.1.5" + sources."semver-5.7.0" ]; }) - sources."@evocateur/pacote-9.6.0" - sources."@lerna/add-3.15.0" - sources."@lerna/batch-packages-3.14.0" - sources."@lerna/bootstrap-3.15.0" - sources."@lerna/changed-3.15.0" + sources."@lerna/add-3.16.1" + sources."@lerna/batch-packages-3.16.0" + sources."@lerna/bootstrap-3.16.1" + sources."@lerna/changed-3.16.1" sources."@lerna/check-working-tree-3.14.2" sources."@lerna/child-process-3.14.2" - sources."@lerna/clean-3.15.0" + sources."@lerna/clean-3.16.0" sources."@lerna/cli-3.13.0" sources."@lerna/collect-uncommitted-3.14.2" - sources."@lerna/collect-updates-3.14.2" - sources."@lerna/command-3.15.0" - sources."@lerna/conventional-commits-3.14.0" - sources."@lerna/create-3.15.0" - sources."@lerna/create-symlink-3.14.0" + sources."@lerna/collect-updates-3.16.0" + sources."@lerna/command-3.16.0" + (sources."@lerna/conventional-commits-3.16.0" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) + (sources."@lerna/create-3.16.0" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) + sources."@lerna/create-symlink-3.16.0" sources."@lerna/describe-ref-3.14.2" - sources."@lerna/diff-3.15.0" - sources."@lerna/exec-3.15.0" - sources."@lerna/filter-options-3.14.2" - sources."@lerna/filter-packages-3.13.0" + sources."@lerna/diff-3.16.0" + sources."@lerna/exec-3.16.0" + sources."@lerna/filter-options-3.16.0" + sources."@lerna/filter-packages-3.16.0" sources."@lerna/get-npm-exec-opts-3.13.0" - sources."@lerna/get-packed-3.13.0" - sources."@lerna/github-client-3.14.2" + sources."@lerna/get-packed-3.16.0" + sources."@lerna/github-client-3.16.0" sources."@lerna/gitlab-client-3.15.0" sources."@lerna/global-options-3.13.0" - sources."@lerna/has-npm-version-3.14.2" - sources."@lerna/import-3.15.0" - sources."@lerna/init-3.15.0" - sources."@lerna/link-3.15.0" - sources."@lerna/list-3.15.0" - sources."@lerna/listable-3.14.0" - sources."@lerna/log-packed-3.13.0" - sources."@lerna/npm-conf-3.13.0" - sources."@lerna/npm-dist-tag-3.15.0" - sources."@lerna/npm-install-3.14.2" - sources."@lerna/npm-publish-3.15.0" + sources."@lerna/has-npm-version-3.16.0" + sources."@lerna/import-3.16.0" + sources."@lerna/init-3.16.0" + sources."@lerna/link-3.16.0" + sources."@lerna/list-3.16.0" + sources."@lerna/listable-3.16.0" + sources."@lerna/log-packed-3.16.0" + (sources."@lerna/npm-conf-3.16.0" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) + sources."@lerna/npm-dist-tag-3.16.0" + sources."@lerna/npm-install-3.16.0" + (sources."@lerna/npm-publish-3.16.1" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) sources."@lerna/npm-run-script-3.14.2" - sources."@lerna/otplease-3.14.0" + sources."@lerna/otplease-3.16.0" sources."@lerna/output-3.13.0" - sources."@lerna/pack-directory-3.14.2" - sources."@lerna/package-3.14.2" - sources."@lerna/package-graph-3.14.0" - sources."@lerna/prerelease-id-from-version-3.14.0" - sources."@lerna/project-3.15.0" + sources."@lerna/pack-directory-3.16.1" + sources."@lerna/package-3.16.0" + sources."@lerna/package-graph-3.16.0" + sources."@lerna/prerelease-id-from-version-3.16.0" + sources."@lerna/project-3.16.0" sources."@lerna/prompt-3.13.0" - sources."@lerna/publish-3.15.0" + sources."@lerna/publish-3.16.1" sources."@lerna/pulse-till-done-3.13.0" - sources."@lerna/query-graph-3.14.0" - sources."@lerna/resolve-symlink-3.13.0" + sources."@lerna/query-graph-3.16.0" + sources."@lerna/resolve-symlink-3.16.0" sources."@lerna/rimraf-dir-3.14.2" - sources."@lerna/run-3.15.0" - sources."@lerna/run-lifecycle-3.14.0" - sources."@lerna/run-parallel-batches-3.13.0" - sources."@lerna/run-topologically-3.14.0" - sources."@lerna/symlink-binary-3.14.2" - sources."@lerna/symlink-dependencies-3.14.2" + sources."@lerna/run-3.16.0" + sources."@lerna/run-lifecycle-3.16.1" + sources."@lerna/run-parallel-batches-3.16.0" + sources."@lerna/run-topologically-3.16.0" + sources."@lerna/symlink-binary-3.16.0" + sources."@lerna/symlink-dependencies-3.16.0" sources."@lerna/timer-3.13.0" sources."@lerna/validation-error-3.13.0" - sources."@lerna/version-3.15.0" + sources."@lerna/version-3.16.1" sources."@lerna/write-log-file-3.13.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" - (sources."@octokit/endpoint-5.2.2" // { + (sources."@octokit/endpoint-5.3.1" // { dependencies = [ sources."is-plain-object-3.0.0" sources."isobject-4.0.0" ]; }) - sources."@octokit/plugin-enterprise-rest-2.2.2" + sources."@octokit/plugin-enterprise-rest-3.6.2" (sources."@octokit/request-5.0.1" // { dependencies = [ sources."is-plain-object-3.0.0" @@ -51065,12 +51341,16 @@ in ]; }) sources."@octokit/request-error-1.0.4" - sources."@octokit/rest-16.28.4" + sources."@octokit/rest-16.28.5" + sources."@types/events-3.0.0" + sources."@types/glob-7.1.1" + sources."@types/minimatch-3.0.3" + sources."@types/node-12.6.8" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."agent-base-4.3.0" sources."agentkeepalive-3.5.2" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" @@ -51080,7 +51360,7 @@ in sources."arr-diff-4.0.0" sources."arr-flatten-1.1.0" sources."arr-union-3.1.0" - sources."array-differ-1.0.0" + sources."array-differ-2.1.0" sources."array-find-index-1.0.2" sources."array-ify-1.0.0" sources."array-union-1.0.2" @@ -51115,8 +51395,8 @@ in sources."buffer-from-1.1.1" sources."builtins-1.0.3" sources."byline-5.0.0" - sources."byte-size-4.0.4" - sources."cacache-11.3.3" + sources."byte-size-5.0.1" + sources."cacache-12.0.2" sources."cache-base-1.0.1" sources."call-me-maybe-1.0.1" sources."caller-callsite-2.0.0" @@ -51132,7 +51412,7 @@ in sources."chalk-2.4.2" sources."chardet-0.7.0" sources."chownr-1.1.2" - sources."ci-info-1.6.0" + sources."ci-info-2.0.0" (sources."class-utils-0.3.6" // { dependencies = [ sources."define-property-0.2.5" @@ -51186,7 +51466,6 @@ in sources."conventional-changelog-preset-loader-2.1.1" (sources."conventional-changelog-writer-4.0.6" // { dependencies = [ - sources."semver-6.2.0" sources."through2-3.0.1" ]; }) @@ -51196,7 +51475,7 @@ in sources."through2-3.0.1" ]; }) - (sources."conventional-recommended-bump-4.1.1" // { + (sources."conventional-recommended-bump-5.0.1" // { dependencies = [ sources."concat-stream-2.0.0" sources."readable-stream-3.4.0" @@ -51206,7 +51485,11 @@ in sources."copy-descriptor-0.1.1" sources."core-util-is-1.0.2" sources."cosmiconfig-5.2.1" - sources."cross-spawn-6.0.5" + (sources."cross-spawn-6.0.5" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."currently-unhandled-0.4.1" sources."cyclist-0.2.2" sources."dargs-4.1.0" @@ -51235,13 +51518,14 @@ in sources."deprecation-2.3.1" sources."detect-indent-5.0.0" sources."dezalgo-1.0.3" - sources."dir-glob-2.0.0" + sources."dir-glob-2.2.2" sources."dot-prop-4.2.0" sources."duplexer-0.1.1" sources."duplexify-3.7.1" sources."ecc-jsbn-0.1.2" sources."encoding-0.1.12" sources."end-of-stream-1.4.1" + sources."env-paths-1.0.0" sources."err-code-1.1.2" sources."error-ex-1.3.2" sources."es-abstract-1.13.0" @@ -51289,7 +51573,11 @@ in sources."fast-deep-equal-2.0.1" (sources."fast-glob-2.2.7" // { dependencies = [ - sources."is-glob-4.0.1" + (sources."glob-parent-3.1.0" // { + dependencies = [ + sources."is-glob-3.1.0" + ]; + }) ]; }) sources."fast-json-stable-stringify-2.0.0" @@ -51307,7 +51595,7 @@ in sources."form-data-2.3.3" sources."fragment-cache-0.2.1" sources."from2-2.3.0" - sources."fs-extra-7.0.1" + sources."fs-extra-8.1.0" sources."fs-minipass-1.2.6" sources."fs-write-stream-atomic-1.0.10" sources."fs.realpath-1.0.0" @@ -51342,7 +51630,7 @@ in sources."trim-newlines-1.0.0" ]; }) - sources."get-port-3.2.0" + sources."get-port-4.2.0" sources."get-stdin-4.0.1" sources."get-stream-4.1.0" sources."get-value-2.0.6" @@ -51353,18 +51641,18 @@ in sources."pify-2.3.0" ]; }) - (sources."git-semver-tags-2.0.3" // { - dependencies = [ - sources."semver-6.2.0" - ]; - }) + sources."git-semver-tags-2.0.3" sources."git-up-4.0.1" sources."git-url-parse-11.1.2" sources."gitconfiglocal-1.0.0" sources."glob-7.1.4" - sources."glob-parent-3.1.0" + sources."glob-parent-5.0.0" sources."glob-to-regexp-0.3.0" - sources."globby-8.0.2" + (sources."globby-9.2.0" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) sources."graceful-fs-4.2.0" (sources."handlebars-4.1.2" // { dependencies = [ @@ -51391,20 +51679,25 @@ in sources."humanize-ms-1.2.1" sources."iconv-lite-0.4.24" sources."iferr-0.1.5" - sources."ignore-3.3.10" + sources."ignore-4.0.6" sources."ignore-walk-3.0.1" (sources."import-fresh-2.0.0" // { dependencies = [ sources."resolve-from-3.0.0" ]; }) - sources."import-local-1.0.0" + sources."import-local-2.0.0" sources."imurmurhash-0.1.4" sources."indent-string-3.2.0" + sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.5" - sources."init-package-json-1.10.3" + (sources."init-package-json-1.10.3" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) (sources."inquirer-6.5.0" // { dependencies = [ sources."ansi-regex-4.1.0" @@ -51417,7 +51710,7 @@ in sources."is-arrayish-0.2.1" sources."is-buffer-1.1.6" sources."is-callable-1.1.4" - sources."is-ci-1.2.1" + sources."is-ci-2.0.0" sources."is-data-descriptor-1.0.0" sources."is-date-object-1.0.1" sources."is-descriptor-1.0.2" @@ -51426,7 +51719,7 @@ in sources."is-extglob-2.1.1" sources."is-finite-1.0.2" sources."is-fullwidth-code-point-2.0.0" - sources."is-glob-3.1.0" + sources."is-glob-4.0.1" (sources."is-number-3.0.0" // { dependencies = [ sources."kind-of-3.2.2" @@ -51459,9 +51752,13 @@ in sources."jsprim-1.4.1" sources."kind-of-6.0.2" sources."lcid-2.0.0" - sources."load-json-file-4.0.0" + (sources."load-json-file-5.3.0" // { + dependencies = [ + sources."pify-4.0.1" + ]; + }) sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash._reinterpolate-3.0.0" sources."lodash.clonedeep-4.5.0" sources."lodash.get-4.4.2" @@ -51472,14 +51769,10 @@ in sources."lodash.templatesettings-4.2.0" sources."lodash.uniq-4.5.0" sources."loud-rejection-1.6.0" - (sources."lru-cache-5.1.1" // { - dependencies = [ - sources."yallist-3.0.3" - ]; - }) + sources."lru-cache-5.1.1" sources."macos-release-2.3.0" sources."make-dir-1.3.0" - sources."make-fetch-happen-4.0.2" + sources."make-fetch-happen-5.0.0" sources."map-age-cleaner-0.1.3" sources."map-cache-0.2.2" sources."map-obj-2.0.0" @@ -51502,11 +51795,7 @@ in sources."minimatch-3.0.4" sources."minimist-0.0.8" sources."minimist-options-3.0.2" - (sources."minipass-2.3.5" // { - dependencies = [ - sources."yallist-3.0.3" - ]; - }) + sources."minipass-2.3.5" sources."minizlib-1.2.1" sources."mississippi-3.0.0" (sources."mixin-deep-1.3.2" // { @@ -51518,26 +51807,38 @@ in sources."modify-values-1.0.1" sources."move-concurrently-1.0.1" sources."ms-2.1.2" - sources."multimatch-2.1.0" + sources."multimatch-3.0.0" sources."mute-stream-0.0.7" sources."nanomatch-1.2.13" sources."neo-async-2.6.1" sources."nice-try-1.0.5" sources."node-fetch-2.6.0" sources."node-fetch-npm-2.0.2" - (sources."node-gyp-4.0.0" // { + (sources."node-gyp-5.0.3" // { dependencies = [ sources."semver-5.3.0" ]; }) sources."nopt-3.0.6" - sources."normalize-package-data-2.5.0" + (sources."normalize-package-data-2.5.0" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."normalize-url-3.3.0" sources."npm-bundled-1.0.6" - sources."npm-lifecycle-2.1.1" - sources."npm-package-arg-6.1.0" + sources."npm-lifecycle-3.0.0" + (sources."npm-package-arg-6.1.0" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."npm-packlist-1.4.4" - sources."npm-pick-manifest-2.2.3" + (sources."npm-pick-manifest-2.2.3" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) sources."npm-run-path-2.0.2" sources."npmlog-4.1.2" sources."number-is-nan-1.0.1" @@ -51574,7 +51875,7 @@ in sources."p-is-promise-2.1.0" sources."p-limit-2.2.0" sources."p-locate-3.0.0" - sources."p-map-1.2.0" + sources."p-map-2.1.0" sources."p-map-series-1.0.0" sources."p-pipe-1.2.0" sources."p-queue-4.0.0" @@ -51597,15 +51898,7 @@ in sources."pify-3.0.0" sources."pinkie-2.0.4" sources."pinkie-promise-2.0.1" - (sources."pkg-dir-2.0.0" // { - dependencies = [ - sources."find-up-2.1.0" - sources."locate-path-2.0.0" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" - ]; - }) + sources."pkg-dir-3.0.0" sources."posix-character-classes-0.1.1" sources."process-nextick-args-2.0.1" sources."promise-inflight-1.0.1" @@ -51614,7 +51907,6 @@ in sources."proto-list-1.2.4" sources."protocols-1.4.7" sources."protoduck-5.0.1" - sources."pseudomap-1.0.2" sources."psl-1.2.0" sources."pump-3.0.0" (sources."pumpify-1.5.1" // { @@ -51628,9 +51920,17 @@ in sources."quick-lru-1.1.0" sources."read-1.0.7" sources."read-cmd-shim-1.0.1" - sources."read-package-json-2.0.13" + (sources."read-package-json-2.0.13" // { + dependencies = [ + sources."slash-1.0.0" + ]; + }) sources."read-package-tree-5.3.1" - sources."read-pkg-3.0.0" + (sources."read-pkg-3.0.0" // { + dependencies = [ + sources."load-json-file-4.0.0" + ]; + }) (sources."read-pkg-up-3.0.0" // { dependencies = [ sources."find-up-2.1.0" @@ -51672,7 +51972,7 @@ in sources."safe-buffer-5.2.0" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" - sources."semver-5.7.0" + sources."semver-6.2.0" sources."set-blocking-2.0.0" (sources."set-value-2.0.1" // { dependencies = [ @@ -51682,7 +51982,7 @@ in sources."shebang-command-1.2.0" sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" - sources."slash-1.0.0" + sources."slash-2.0.0" sources."slide-1.1.6" sources."smart-buffer-4.0.2" (sources."snapdragon-0.8.2" // { @@ -51775,11 +52075,7 @@ in ]; }) sources."supports-color-5.5.0" - (sources."tar-4.4.10" // { - dependencies = [ - sources."yallist-3.0.3" - ]; - }) + sources."tar-4.4.10" sources."temp-dir-1.0.0" sources."temp-write-3.4.0" sources."text-extensions-2.0.0" @@ -51804,6 +52100,7 @@ in sources."tslib-1.10.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" + sources."type-fest-0.3.1" sources."typedarray-0.0.6" (sources."uglify-js-3.6.0" // { dependencies = [ @@ -51853,11 +52150,21 @@ in }) sources."wrappy-1.0.2" sources."write-file-atomic-2.4.3" - sources."write-json-file-2.3.0" - sources."write-pkg-3.2.0" + (sources."write-json-file-3.2.0" // { + dependencies = [ + sources."make-dir-2.1.0" + sources."pify-4.0.1" + sources."semver-5.7.0" + ]; + }) + (sources."write-pkg-3.2.0" // { + dependencies = [ + sources."write-json-file-2.3.0" + ]; + }) sources."xtend-4.0.2" sources."y18n-4.0.0" - sources."yallist-2.1.2" + sources."yallist-3.0.3" sources."yargs-12.0.5" sources."yargs-parser-11.1.1" ]; @@ -51880,7 +52187,7 @@ in sha512 = "31CmtPEZraNUtuUREYjSqRkeETFdyEHSEPAGq4erDlUXtda7pzNmctdljdIagSb589d/qXGWiiP31R5JVf+v0w=="; }; dependencies = [ - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."asap-2.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" @@ -52311,7 +52618,7 @@ in dependencies = [ sources."accepts-1.3.7" sources."after-0.8.2" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."anymatch-1.3.2" sources."argparse-1.0.10" sources."arr-diff-2.0.0" @@ -52807,38 +53114,38 @@ in version = "1.9.0"; src = ../interpreters/clojurescript/lumo; dependencies = [ - sources."@babel/code-frame-7.0.0" - sources."@babel/core-7.5.4" - sources."@babel/generator-7.5.0" + sources."@babel/code-frame-7.5.5" + sources."@babel/core-7.5.5" + sources."@babel/generator-7.5.5" sources."@babel/helper-annotate-as-pure-7.0.0" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0" sources."@babel/helper-call-delegate-7.4.4" - sources."@babel/helper-create-class-features-plugin-7.5.0" - sources."@babel/helper-define-map-7.4.4" + sources."@babel/helper-create-class-features-plugin-7.5.5" + sources."@babel/helper-define-map-7.5.5" sources."@babel/helper-explode-assignable-expression-7.1.0" sources."@babel/helper-function-name-7.1.0" sources."@babel/helper-get-function-arity-7.0.0" sources."@babel/helper-hoist-variables-7.4.4" - sources."@babel/helper-member-expression-to-functions-7.0.0" + sources."@babel/helper-member-expression-to-functions-7.5.5" sources."@babel/helper-module-imports-7.0.0" - sources."@babel/helper-module-transforms-7.4.4" + sources."@babel/helper-module-transforms-7.5.5" sources."@babel/helper-optimise-call-expression-7.0.0" sources."@babel/helper-plugin-utils-7.0.0" - sources."@babel/helper-regex-7.4.4" + sources."@babel/helper-regex-7.5.5" sources."@babel/helper-remap-async-to-generator-7.1.0" - sources."@babel/helper-replace-supers-7.4.4" + sources."@babel/helper-replace-supers-7.5.5" sources."@babel/helper-simple-access-7.1.0" sources."@babel/helper-split-export-declaration-7.4.4" sources."@babel/helper-wrap-function-7.2.0" - sources."@babel/helpers-7.5.4" + sources."@babel/helpers-7.5.5" sources."@babel/highlight-7.5.0" - sources."@babel/parser-7.5.0" + sources."@babel/parser-7.5.5" sources."@babel/plugin-external-helpers-7.0.0" sources."@babel/plugin-proposal-async-generator-functions-7.2.0" - sources."@babel/plugin-proposal-class-properties-7.5.0" + sources."@babel/plugin-proposal-class-properties-7.5.5" sources."@babel/plugin-proposal-dynamic-import-7.5.0" sources."@babel/plugin-proposal-json-strings-7.2.0" - sources."@babel/plugin-proposal-object-rest-spread-7.5.4" + sources."@babel/plugin-proposal-object-rest-spread-7.5.5" sources."@babel/plugin-proposal-optional-catch-binding-7.2.0" sources."@babel/plugin-proposal-unicode-property-regex-7.4.4" sources."@babel/plugin-syntax-async-generators-7.2.0" @@ -52849,8 +53156,8 @@ in sources."@babel/plugin-transform-arrow-functions-7.2.0" sources."@babel/plugin-transform-async-to-generator-7.5.0" sources."@babel/plugin-transform-block-scoped-functions-7.2.0" - sources."@babel/plugin-transform-block-scoping-7.4.4" - sources."@babel/plugin-transform-classes-7.4.4" + sources."@babel/plugin-transform-block-scoping-7.5.5" + sources."@babel/plugin-transform-classes-7.5.5" sources."@babel/plugin-transform-computed-properties-7.2.0" sources."@babel/plugin-transform-destructuring-7.5.0" sources."@babel/plugin-transform-dotall-regex-7.4.4" @@ -52866,24 +53173,24 @@ in sources."@babel/plugin-transform-modules-umd-7.2.0" sources."@babel/plugin-transform-named-capturing-groups-regex-7.4.5" sources."@babel/plugin-transform-new-target-7.4.4" - sources."@babel/plugin-transform-object-super-7.2.0" + sources."@babel/plugin-transform-object-super-7.5.5" sources."@babel/plugin-transform-parameters-7.4.4" sources."@babel/plugin-transform-property-literals-7.2.0" sources."@babel/plugin-transform-regenerator-7.4.5" sources."@babel/plugin-transform-reserved-words-7.2.0" - sources."@babel/plugin-transform-runtime-7.5.0" + sources."@babel/plugin-transform-runtime-7.5.5" sources."@babel/plugin-transform-shorthand-properties-7.2.0" sources."@babel/plugin-transform-spread-7.2.2" sources."@babel/plugin-transform-sticky-regex-7.2.0" sources."@babel/plugin-transform-template-literals-7.4.4" sources."@babel/plugin-transform-typeof-symbol-7.2.0" sources."@babel/plugin-transform-unicode-regex-7.4.4" - sources."@babel/preset-env-7.5.4" + sources."@babel/preset-env-7.5.5" sources."@babel/preset-stage-2-7.0.0" - sources."@babel/runtime-7.5.4" + sources."@babel/runtime-7.5.5" sources."@babel/template-7.4.4" - sources."@babel/traverse-7.5.0" - sources."@babel/types-7.5.0" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."@calebboyd/semaphore-1.3.1" sources."@comandeer/babel-plugin-banner-4.1.0" sources."@mrmlnc/readdir-enhanced-2.2.1" @@ -52894,7 +53201,7 @@ in sources."@types/events-3.0.0" sources."@types/glob-7.1.1" sources."@types/minimatch-3.0.3" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@webassemblyjs/ast-1.8.5" sources."@webassemblyjs/floating-point-hex-parser-1.8.5" sources."@webassemblyjs/helper-api-error-1.8.5" @@ -52916,8 +53223,8 @@ in sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" sources."ace.improved-0.2.1" - sources."acorn-6.2.0" - sources."ajv-6.10.1" + sources."acorn-6.2.1" + sources."ajv-6.10.2" sources."ajv-errors-1.0.1" sources."ajv-keywords-3.4.1" sources."amdefine-1.0.1" @@ -53087,7 +53394,7 @@ in sources."browserify-rsa-4.0.1" sources."browserify-sign-4.0.4" sources."browserify-zlib-0.2.0" - sources."browserslist-4.6.4" + sources."browserslist-4.6.6" sources."buffer-5.2.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -53110,7 +53417,7 @@ in }) sources."call-me-maybe-1.0.1" sources."camelcase-5.3.1" - sources."caniuse-lite-1.0.30000984" + sources."caniuse-lite-1.0.30000985" sources."caw-2.0.1" (sources."chalk-2.4.2" // { dependencies = [ @@ -53269,7 +53576,7 @@ in }) sources."duplexer3-0.1.4" sources."duplexify-3.7.1" - sources."electron-to-chromium-1.3.191" + sources."electron-to-chromium-1.3.198" sources."elliptic-6.5.0" sources."emoji-regex-7.0.3" sources."emojis-list-2.1.0" @@ -53572,7 +53879,7 @@ in ]; }) sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.isplainobject-4.0.6" sources."lodash.some-4.6.0" sources."log-symbols-2.2.0" @@ -53821,8 +54128,8 @@ in }) sources."regenerate-1.4.0" sources."regenerate-unicode-properties-8.1.0" - sources."regenerator-runtime-0.13.2" - sources."regenerator-transform-0.14.0" + sources."regenerator-runtime-0.13.3" + sources."regenerator-transform-0.14.1" sources."regex-cache-0.4.4" sources."regex-not-1.0.2" sources."regexp-tree-0.1.11" @@ -54056,7 +54363,7 @@ in sources."vm-browserify-1.1.0" sources."watchpack-1.6.0" sources."wcwidth-1.0.1" - (sources."webpack-4.35.3" // { + (sources."webpack-4.36.1" // { dependencies = [ sources."arr-diff-4.0.0" sources."array-unique-0.3.2" @@ -54098,7 +54405,7 @@ in sources."ms-2.0.0" ]; }) - (sources."webpack-cli-3.3.5" // { + (sources."webpack-cli-3.3.6" // { dependencies = [ sources."supports-color-6.1.0" ]; @@ -54186,11 +54493,11 @@ in sha512 = "X/HWomzeox5HtkKLupin4affBXHq22r7RNqiSKsxlgZQMSU9n+zpGY0sbzJr1IycB6FXpKUZet1VH3Rs1/8WQg=="; }; dependencies = [ - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-styles-3.2.1" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" @@ -54228,7 +54535,7 @@ in sources."json-stringify-safe-5.0.1" sources."jsprim-1.4.1" sources."link-check-4.4.5" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."markdown-link-extractor-1.2.1" sources."marked-0.6.3" sources."mime-db-1.40.0" @@ -54647,7 +54954,7 @@ in }) (sources."gulp-uglify-3.0.1" // { dependencies = [ - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."readable-stream-2.3.6" sources."string_decoder-1.1.1" sources."through2-2.0.5" @@ -55045,10 +55352,10 @@ in mocha = nodeEnv.buildNodePackage { name = "mocha"; packageName = "mocha"; - version = "6.1.4"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/mocha/-/mocha-6.1.4.tgz"; - sha512 = "PN8CIy4RXsIoxoFJzS4QNnCH4psUCPWc4/rPrst/ecSJJbLBkubMiyGCP2Kj/9YnWbotFqAoeXyXMucj7gwCFg=="; + url = "https://registry.npmjs.org/mocha/-/mocha-6.2.0.tgz"; + sha512 = "qwfFgY+7EKAAUAdv7VYMZQknI7YJSGesxHyhn6qD52DV8UcSZs5XwCifcZGMVIE4a5fbmhvbotxC0DLQ0oKohQ=="; }; dependencies = [ sources."ansi-colors-3.2.3" @@ -55107,7 +55414,7 @@ in sources."js-yaml-3.13.1" sources."lcid-2.0.0" sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."log-symbols-2.2.0" sources."map-age-cleaner-0.1.3" sources."mem-4.3.0" @@ -55219,7 +55526,7 @@ in sources."commander-2.19.0" ]; }) - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."methods-1.1.2" sources."mime-1.6.0" sources."mime-db-1.40.0" @@ -55267,7 +55574,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isstream-0.1.2" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."msgpack-lite-0.1.26" sources."semver-5.7.0" sources."stack-trace-0.0.10" @@ -55317,7 +55624,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -55500,14 +55807,14 @@ in node-gyp = nodeEnv.buildNodePackage { name = "node-gyp"; packageName = "node-gyp"; - version = "5.0.2"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.2.tgz"; - sha512 = "sNcb5O7eJ9XiNAhWZ/UE2bWsBJn3Jb7rayMqMP4wjenlr1DwzZxUmbtmIrl04EU0p5fN2rU9WIDV+u0EbsI8oQ=="; + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz"; + sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ=="; }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -56384,7 +56691,7 @@ in sha512 = "klwQup/74kYGLBujQj4txrmpMYUdR88A68xjdycedD9dwMDwWCu8NL5t+O8XMWYxJ332hOIgLS62tm8ChxrkuQ=="; }; dependencies = [ - sources."@babel/runtime-7.5.4" + sources."@babel/runtime-7.5.5" sources."@node-red/editor-api-0.20.7" sources."@node-red/editor-client-0.20.7" (sources."@node-red/nodes-0.20.7" // { @@ -56622,7 +56929,7 @@ in sources."libmime-4.1.1" sources."libqp-1.1.0" sources."linkify-it-2.1.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.assign-4.2.0" sources."lodash.assignin-4.2.0" sources."lodash.bind-4.2.1" @@ -56700,10 +57007,10 @@ in sources."node-red-node-email-1.6.2" sources."node-red-node-feedparser-0.1.14" sources."node-red-node-rbe-0.2.4" - sources."node-red-node-sentiment-0.1.3" + sources."node-red-node-sentiment-0.1.4" sources."node-red-node-tail-0.0.2" sources."node-red-node-twitter-1.1.5" - sources."nodemailer-6.2.1" + sources."nodemailer-6.3.0" sources."nopt-4.0.1" sources."npm-bundled-1.0.6" sources."npm-packlist-1.4.4" @@ -56759,7 +57066,7 @@ in sources."raw-body-2.4.0" sources."rc-1.2.8" sources."readable-stream-3.4.0" - sources."regenerator-runtime-0.13.2" + sources."regenerator-runtime-0.13.3" sources."reinterval-1.1.0" sources."remove-trailing-separator-1.1.0" (sources."request-2.88.0" // { @@ -56898,7 +57205,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -57067,10 +57374,10 @@ in npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; - version = "3.1.18"; + version = "3.1.20"; src = fetchurl { - url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-3.1.18.tgz"; - sha512 = "e4UGOGdFs9+9uRrZrojueT+fjg4uVZzi8fyDdWIS9+JIl4J4xqODh0vp1TdCnedjn8jTPy1dhUtbjQtRWAhV8w=="; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-3.1.20.tgz"; + sha512 = "mc9BAoOYSTwP/IvoA+ofdkWSipwRvhgC0qop1PvlMZojgzi7N/dykdxOIWrw0OlZPnEKvXkKFEuPk97LrvXE1A=="; }; dependencies = [ sources."@sindresorhus/is-0.14.0" @@ -57089,7 +57396,7 @@ in sources."brace-expansion-1.1.11" sources."buffer-from-1.1.1" sources."builtins-1.0.3" - sources."cacache-11.3.3" + sources."cacache-12.0.2" (sources."cacheable-request-6.1.0" // { dependencies = [ sources."get-stream-5.1.0" @@ -57174,6 +57481,7 @@ in sources."ignore-walk-3.0.1" sources."import-lazy-2.1.0" sources."imurmurhash-0.1.4" + sources."infer-owner-1.0.4" sources."inflight-1.0.6" sources."inherits-2.0.4" sources."ini-1.3.5" @@ -57211,11 +57519,11 @@ in ]; }) sources."locate-path-5.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lowercase-keys-1.0.1" sources."lru-cache-5.1.1" sources."make-dir-1.3.0" - sources."make-fetch-happen-4.0.2" + sources."make-fetch-happen-5.0.0" sources."mimic-response-1.0.1" sources."minimatch-3.0.4" sources."minimist-0.0.8" @@ -57252,7 +57560,7 @@ in sources."semver-5.7.0" ]; }) - sources."npm-registry-fetch-3.9.1" + sources."npm-registry-fetch-4.0.0" sources."npm-run-path-2.0.2" sources."object-assign-4.1.1" sources."object-keys-1.1.1" @@ -57265,12 +57573,8 @@ in sources."p-limit-2.2.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - (sources."package-json-6.4.0" // { - dependencies = [ - sources."registry-auth-token-3.4.0" - ]; - }) - (sources."pacote-9.5.2" // { + sources."package-json-6.4.0" + (sources."pacote-9.5.4" // { dependencies = [ sources."semver-5.7.0" ]; @@ -57312,7 +57616,7 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."registry-auth-token-4.0.0" + sources."registry-auth-token-3.4.0" sources."registry-url-5.1.0" sources."require-from-string-2.0.2" (sources."requireg-0.2.2" // { @@ -57564,7 +57868,7 @@ in sources."ansi-styles-3.2.1" sources."chalk-2.4.2" sources."is-fullwidth-code-point-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."string-width-2.1.1" sources."strip-ansi-4.0.0" sources."supports-color-5.5.0" @@ -57573,7 +57877,7 @@ in sources."internal-ip-1.2.0" sources."ip-1.1.5" sources."ip-set-1.0.2" - sources."ipaddr.js-1.9.0" + sources."ipaddr.js-1.9.1" sources."is-arrayish-0.2.1" sources."is-finite-1.0.2" sources."is-fullwidth-code-point-1.0.0" @@ -57764,13 +58068,17 @@ in sources."accepts-1.2.13" sources."addr-to-ip-port-1.5.1" sources."after-0.8.2" - sources."ajv-6.10.1" - sources."archiver-3.0.0" - sources."archiver-utils-2.0.0" + sources."ajv-6.10.2" + sources."archiver-3.0.3" + (sources."archiver-utils-2.1.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + ]; + }) sources."arraybuffer.slice-0.0.6" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" @@ -57794,7 +58102,7 @@ in sources."minimist-1.2.0" ]; }) - sources."bl-1.2.2" + sources."bl-3.0.0" sources."blob-0.0.4" sources."bn.js-4.11.8" sources."bncode-0.5.3" @@ -57823,9 +58131,9 @@ in sources."component-bind-1.0.0" sources."component-emitter-1.2.1" sources."component-inherit-0.0.3" - (sources."compress-commons-1.2.2" // { + (sources."compress-commons-2.0.0" // { dependencies = [ - sources."normalize-path-2.1.1" + sources."readable-stream-2.3.6" ]; }) sources."compressible-2.0.17" @@ -57855,7 +58163,11 @@ in sources."cookie-signature-1.0.6" sources."core-util-is-1.0.2" sources."crc-3.8.0" - sources."crc32-stream-2.0.0" + (sources."crc32-stream-2.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + ]; + }) (sources."csrf-3.0.6" // { dependencies = [ sources."uid-safe-2.1.4" @@ -57975,14 +58287,16 @@ in sources."bencode-2.0.1" ]; }) - sources."lazystream-1.0.0" - sources."lodash-4.17.14" - sources."lodash.assign-4.2.0" + (sources."lazystream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + ]; + }) + sources."lodash-4.17.15" sources."lodash.defaults-4.2.0" sources."lodash.difference-4.5.0" sources."lodash.flatten-4.4.0" sources."lodash.isplainobject-4.0.6" - sources."lodash.toarray-4.4.0" sources."lodash.union-4.6.0" sources."lru-2.0.1" sources."magnet-uri-2.0.1" @@ -58062,8 +58376,7 @@ in }) sources."re-emitter-1.1.4" sources."read-torrent-1.3.1" - sources."readable-stream-2.3.6" - sources."remove-trailing-separator-1.1.0" + sources."readable-stream-3.4.0" sources."request-2.88.0" sources."response-time-2.3.2" sources."rimraf-2.6.3" @@ -58105,10 +58418,15 @@ in sources."setprototypeof-1.1.1" sources."simple-concat-1.0.0" sources."simple-get-2.8.1" - sources."simple-peer-6.4.4" + (sources."simple-peer-6.4.4" // { + dependencies = [ + sources."readable-stream-2.3.6" + ]; + }) sources."simple-sha1-2.1.2" (sources."simple-websocket-4.3.1" // { dependencies = [ + sources."readable-stream-2.3.6" sources."safe-buffer-5.0.1" sources."ultron-1.1.1" sources."ws-2.3.1" @@ -58150,11 +58468,10 @@ in }) sources."string2compact-1.3.0" sources."string_decoder-1.1.1" - sources."tar-stream-1.6.2" + sources."tar-stream-2.1.0" sources."thirty-two-0.0.2" sources."thunky-1.0.3" sources."to-array-0.1.4" - sources."to-buffer-1.1.1" sources."toidentifier-1.0.0" sources."torrent-discovery-5.4.0" sources."torrent-piece-1.1.2" @@ -58193,7 +58510,7 @@ in sources."xmlhttprequest-ssl-1.5.3" sources."xtend-4.0.2" sources."yeast-0.1.2" - sources."zip-stream-2.0.1" + sources."zip-stream-2.1.0" ]; buildInputs = globalBuildInputs; meta = { @@ -58208,10 +58525,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "3.5.7"; + version = "3.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-3.5.7.tgz"; - sha512 = "RmUJo7V8mSw9Tu8hRhi4tXagjO3+S/qHdDkAtYxZA/v9fvG3ux1aSiKcIeOmN4A1FCRHG7xy/sfFQC1lhSm5uQ=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-3.6.0.tgz"; + sha512 = "tjBYCFDvnGdA/FHlOfLn4WZ2Iy1JO8GRFem0RkbtbKO91Z9Jz8v2oYQYkMspY7/7lCBbjQA8+eUatTUu3d6eqw=="; }; buildInputs = globalBuildInputs; meta = { @@ -58249,16 +58566,17 @@ in sources."@babel/helper-builder-react-jsx-7.3.0" (sources."@babel/helper-call-delegate-7.4.4" // { dependencies = [ - sources."@babel/generator-7.5.0" - sources."@babel/parser-7.5.0" - sources."@babel/traverse-7.5.0" - sources."@babel/types-7.5.0" + sources."@babel/code-frame-7.5.5" + sources."@babel/generator-7.5.5" + sources."@babel/parser-7.5.5" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."source-map-0.5.7" ]; }) - (sources."@babel/helper-define-map-7.4.4" // { + (sources."@babel/helper-define-map-7.5.5" // { dependencies = [ - sources."@babel/types-7.5.0" + sources."@babel/types-7.5.5" ]; }) sources."@babel/helper-explode-assignable-expression-7.1.0" @@ -58266,45 +58584,51 @@ in sources."@babel/helper-get-function-arity-7.0.0" (sources."@babel/helper-hoist-variables-7.4.4" // { dependencies = [ - sources."@babel/types-7.5.0" + sources."@babel/types-7.5.5" ]; }) - sources."@babel/helper-member-expression-to-functions-7.0.0" - sources."@babel/helper-module-imports-7.0.0" - (sources."@babel/helper-module-transforms-7.4.4" // { + (sources."@babel/helper-member-expression-to-functions-7.5.5" // { dependencies = [ - sources."@babel/parser-7.5.0" + sources."@babel/types-7.5.5" + ]; + }) + sources."@babel/helper-module-imports-7.0.0" + (sources."@babel/helper-module-transforms-7.5.5" // { + dependencies = [ + sources."@babel/parser-7.5.5" sources."@babel/template-7.4.4" - sources."@babel/types-7.5.0" + sources."@babel/types-7.5.5" ]; }) sources."@babel/helper-optimise-call-expression-7.0.0" sources."@babel/helper-plugin-utils-7.0.0" - sources."@babel/helper-regex-7.4.4" + sources."@babel/helper-regex-7.5.5" sources."@babel/helper-remap-async-to-generator-7.1.0" - (sources."@babel/helper-replace-supers-7.4.4" // { + (sources."@babel/helper-replace-supers-7.5.5" // { dependencies = [ - sources."@babel/generator-7.5.0" - sources."@babel/parser-7.5.0" - sources."@babel/traverse-7.5.0" - sources."@babel/types-7.5.0" + sources."@babel/code-frame-7.5.5" + sources."@babel/generator-7.5.5" + sources."@babel/parser-7.5.5" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."source-map-0.5.7" ]; }) sources."@babel/helper-simple-access-7.1.0" (sources."@babel/helper-split-export-declaration-7.4.4" // { dependencies = [ - sources."@babel/types-7.5.0" + sources."@babel/types-7.5.5" ]; }) sources."@babel/helper-wrap-function-7.2.0" - (sources."@babel/helpers-7.5.4" // { + (sources."@babel/helpers-7.5.5" // { dependencies = [ - sources."@babel/generator-7.5.0" - sources."@babel/parser-7.5.0" + sources."@babel/code-frame-7.5.5" + sources."@babel/generator-7.5.5" + sources."@babel/parser-7.5.5" sources."@babel/template-7.4.4" - sources."@babel/traverse-7.5.0" - sources."@babel/types-7.5.0" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."source-map-0.5.7" ]; }) @@ -58312,7 +58636,7 @@ in sources."@babel/parser-7.3.4" sources."@babel/plugin-proposal-async-generator-functions-7.2.0" sources."@babel/plugin-proposal-json-strings-7.2.0" - sources."@babel/plugin-proposal-object-rest-spread-7.5.4" + sources."@babel/plugin-proposal-object-rest-spread-7.5.5" sources."@babel/plugin-proposal-optional-catch-binding-7.2.0" sources."@babel/plugin-proposal-unicode-property-regex-7.4.4" sources."@babel/plugin-syntax-async-generators-7.2.0" @@ -58324,8 +58648,8 @@ in sources."@babel/plugin-transform-arrow-functions-7.2.0" sources."@babel/plugin-transform-async-to-generator-7.5.0" sources."@babel/plugin-transform-block-scoped-functions-7.2.0" - sources."@babel/plugin-transform-block-scoping-7.4.4" - sources."@babel/plugin-transform-classes-7.4.4" + sources."@babel/plugin-transform-block-scoping-7.5.5" + sources."@babel/plugin-transform-classes-7.5.5" sources."@babel/plugin-transform-computed-properties-7.2.0" sources."@babel/plugin-transform-destructuring-7.5.0" sources."@babel/plugin-transform-dotall-regex-7.4.4" @@ -58341,7 +58665,7 @@ in sources."@babel/plugin-transform-modules-umd-7.2.0" sources."@babel/plugin-transform-named-capturing-groups-regex-7.4.5" sources."@babel/plugin-transform-new-target-7.4.4" - sources."@babel/plugin-transform-object-super-7.2.0" + sources."@babel/plugin-transform-object-super-7.5.5" sources."@babel/plugin-transform-parameters-7.4.4" sources."@babel/plugin-transform-react-jsx-7.3.0" sources."@babel/plugin-transform-regenerator-7.4.5" @@ -58370,11 +58694,11 @@ in sources."acorn-5.7.3" (sources."acorn-globals-4.3.2" // { dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" ]; }) sources."acorn-walk-6.2.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."alphanum-sort-1.0.2" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" @@ -58445,7 +58769,7 @@ in sources."pako-1.0.10" ]; }) - sources."browserslist-4.6.4" + sources."browserslist-4.6.6" (sources."buffer-4.9.1" // { dependencies = [ sources."isarray-1.0.0" @@ -58461,7 +58785,7 @@ in sources."caller-path-2.0.0" sources."callsites-2.0.0" sources."caniuse-api-3.0.0" - sources."caniuse-lite-1.0.30000984" + sources."caniuse-lite-1.0.30000985" sources."caseless-0.12.0" sources."chalk-2.4.2" sources."chokidar-2.1.6" @@ -58524,13 +58848,12 @@ in sources."regjsparser-0.1.5" ]; }) - (sources."css-tree-1.0.0-alpha.28" // { + (sources."css-tree-1.0.0-alpha.33" // { dependencies = [ sources."source-map-0.5.7" ]; }) sources."css-unit-converter-1.1.1" - sources."css-url-regex-1.1.0" sources."css-what-2.1.3" sources."cssesc-0.1.0" sources."cssnano-4.1.10" @@ -58542,11 +58865,12 @@ in (sources."csso-3.5.1" // { dependencies = [ sources."css-tree-1.0.0-alpha.29" + sources."mdn-data-1.1.4" sources."source-map-0.5.7" ]; }) sources."cssom-0.3.8" - sources."cssstyle-1.3.0" + sources."cssstyle-1.4.0" sources."dashdash-1.14.1" sources."data-urls-1.1.0" sources."date-now-0.1.4" @@ -58594,7 +58918,7 @@ in sources."ecc-jsbn-0.1.2" sources."editorconfig-0.15.3" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.191" + sources."electron-to-chromium-1.3.198" sources."elliptic-6.5.0" sources."encodeurl-1.0.2" sources."entities-1.1.2" @@ -58744,7 +59068,7 @@ in sources."isexe-2.0.0" sources."isobject-3.0.1" sources."isstream-0.1.2" - sources."js-beautify-1.10.0" + sources."js-beautify-1.10.1" sources."js-levenshtein-1.1.6" sources."js-tokens-4.0.0" (sources."js-yaml-3.13.1" // { @@ -58755,9 +59079,9 @@ in sources."jsbn-0.1.1" (sources."jsdom-15.1.1" // { dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."escodegen-1.11.1" - sources."ws-7.1.0" + sources."ws-7.1.1" ]; }) sources."jsesc-2.5.2" @@ -58769,7 +59093,7 @@ in sources."jsprim-1.4.1" sources."kind-of-3.2.2" sources."levn-0.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.clone-4.5.0" sources."lodash.memoize-4.1.2" sources."lodash.sortby-4.7.0" @@ -58781,7 +59105,7 @@ in sources."map-cache-0.2.2" sources."map-visit-1.0.0" sources."md5.js-1.3.5" - sources."mdn-data-1.1.4" + sources."mdn-data-2.0.4" (sources."merge-source-map-1.0.4" // { dependencies = [ sources."source-map-0.5.7" @@ -58971,7 +59295,7 @@ in sources."regenerate-1.4.0" sources."regenerate-unicode-properties-8.1.0" sources."regenerator-runtime-0.12.1" - sources."regenerator-transform-0.14.0" + sources."regenerator-transform-0.14.1" (sources."regex-not-1.0.2" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -59013,7 +59337,7 @@ in sources."safe-buffer-5.1.2" sources."safe-regex-1.1.0" sources."safer-buffer-2.1.2" - sources."safer-eval-1.3.3" + sources."safer-eval-1.3.5" sources."sax-1.2.4" sources."saxes-3.1.11" sources."semver-5.7.0" @@ -59084,7 +59408,7 @@ in ]; }) sources."supports-color-5.5.0" - sources."svgo-1.2.2" + sources."svgo-1.3.0" sources."symbol-tree-3.2.4" sources."terser-3.17.0" sources."through2-2.0.5" @@ -59214,7 +59538,7 @@ in }; dependencies = [ sources."JSONStream-1.3.5" - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-dynamic-import-4.0.0" sources."acorn-node-1.7.0" sources."acorn-walk-6.2.0" @@ -59327,7 +59651,7 @@ in sources."jsonify-0.0.0" sources."jsonparse-1.3.1" sources."labeled-stream-splicer-2.0.2" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.memoize-3.0.4" sources."md5.js-1.3.5" sources."miller-rabin-4.0.1" @@ -59596,7 +59920,7 @@ in sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198"; }; dependencies = [ - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."asynckit-0.4.0" @@ -59860,7 +60184,7 @@ in sources."CSSwhat-0.4.7" sources."accepts-1.3.7" sources."after-0.8.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."array-flatten-1.1.1" sources."arraybuffer.slice-0.0.6" sources."asn1-0.2.4" @@ -60198,7 +60522,7 @@ in sources."isarray-1.0.0" sources."isobject-3.0.1" sources."kind-of-6.0.2" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."map-cache-0.2.2" sources."map-visit-1.0.0" sources."micromatch-3.1.10" @@ -60469,19 +60793,19 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.193.1"; + version = "1.195.1"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.193.1.tgz"; - sha512 = "bwxrpR8T5tOQgLGwBMq7BYKDvLQRVsB3znMJpdZpYnMCY34MpmkuDhU+546TA8kmp5cLPCg+0BlaO7Yrj3Ouag=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; + sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; }; dependencies = [ sources."@snyk/composer-lockfile-parser-1.0.3" - sources."@snyk/dep-graph-1.8.1" + sources."@snyk/dep-graph-1.10.0" sources."@snyk/gemfile-1.2.0" sources."@types/agent-base-4.2.0" sources."@types/debug-4.1.4" sources."@types/events-3.0.0" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@yarnpkg/lockfile-1.1.0" sources."abbrev-1.1.1" sources."agent-base-4.3.0" @@ -60537,7 +60861,7 @@ in sources."crypto-random-string-1.0.0" (sources."data-uri-to-buffer-2.0.1" // { dependencies = [ - sources."@types/node-8.10.50" + sources."@types/node-8.10.51" ]; }) sources."debug-3.2.6" @@ -60650,7 +60974,7 @@ in sources."lcid-1.0.0" sources."levn-0.3.0" sources."lie-3.3.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.assign-4.2.0" sources."lodash.assignin-4.2.0" sources."lodash.clone-4.5.0" @@ -60745,7 +61069,7 @@ in sources."shebang-regex-1.0.0" sources."signal-exit-3.0.2" sources."smart-buffer-4.0.2" - sources."snyk-config-2.2.1" + sources."snyk-config-2.2.2" (sources."snyk-docker-plugin-1.25.1" // { dependencies = [ sources."debug-4.1.1" @@ -60780,7 +61104,7 @@ in sources."semver-5.7.0" ]; }) - (sources."snyk-sbt-plugin-2.5.6" // { + (sources."snyk-sbt-plugin-2.5.7" // { dependencies = [ sources."tmp-0.1.0" ]; @@ -61130,10 +61454,10 @@ in ssb-server = nodeEnv.buildNodePackage { name = "ssb-server"; packageName = "ssb-server"; - version = "15.0.2"; + version = "15.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/ssb-server/-/ssb-server-15.0.2.tgz"; - sha512 = "xY3H+E3P5vSQREtoBohUT/1Lhx01NNTkooud29h+fhwXX1+Erowds/b0M+HpVpVClY8/yR4/0jATBg0oKvD+VA=="; + url = "https://registry.npmjs.org/ssb-server/-/ssb-server-15.1.0.tgz"; + sha512 = "4qn3Q+xpKL6BKBTgO1dHSt5ljyrZkWVoHYaZzCYbs75rGbaGvc0evSyu2TpaYwiiSxrVxJGYr8s4MyXzdPqUVQ=="; }; dependencies = [ sources."abstract-leveldown-6.0.3" @@ -61165,7 +61489,7 @@ in sources."isobject-3.0.1" ]; }) - sources."base64-url-2.2.2" + sources."base64-url-2.3.2" sources."bash-color-0.0.4" sources."binary-extensions-1.13.1" sources."binary-search-1.3.5" @@ -61289,7 +61613,7 @@ in ]; }) sources."flumedb-1.1.0" - sources."flumelog-offset-3.4.2" + sources."flumelog-offset-3.4.3" sources."flumeview-hashtable-1.1.1" sources."flumeview-level-3.0.13" (sources."flumeview-query-6.3.0" // { @@ -61443,8 +61767,8 @@ in }) sources."levelup-4.1.0" sources."libnested-1.4.1" - sources."libsodium-0.7.4" - sources."libsodium-wrappers-0.7.4" + sources."libsodium-0.7.5" + sources."libsodium-wrappers-0.7.5" sources."lodash.get-4.4.2" sources."log-symbols-1.0.2" sources."log-update-1.0.2" @@ -61478,7 +61802,7 @@ in sources."multiblob-1.13.4" sources."multiblob-http-1.0.0" sources."multicb-1.2.2" - sources."multiserver-3.3.6" + sources."multiserver-3.4.0" sources."multiserver-address-1.0.1" sources."multiserver-scopes-1.0.0" sources."muxrpc-6.4.2" @@ -61753,7 +62077,7 @@ in }) sources."snapdragon-util-3.0.1" sources."socks-2.3.2" - sources."sodium-browserify-1.2.7" + sources."sodium-browserify-1.3.0" (sources."sodium-browserify-tweetnacl-0.2.6" // { dependencies = [ sources."sha.js-2.4.11" @@ -61776,7 +62100,7 @@ in sources."ssb-friends-4.1.4" sources."ssb-gossip-1.1.0" sources."ssb-invite-2.1.3" - sources."ssb-keys-7.1.7" + sources."ssb-keys-7.2.0" sources."ssb-links-3.0.8" sources."ssb-local-1.0.0" sources."ssb-logging-1.0.0" @@ -61930,10 +62254,10 @@ in svgo = nodeEnv.buildNodePackage { name = "svgo"; packageName = "svgo"; - version = "1.2.2"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/svgo/-/svgo-1.2.2.tgz"; - sha512 = "rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA=="; + url = "https://registry.npmjs.org/svgo/-/svgo-1.3.0.tgz"; + sha512 = "MLfUA6O+qauLDbym+mMZgtXCGRfIxyQoeH6IKVcFslyODEe/ElJNwr0FohQ3xG4C6HK6bk3KYPPXwHVJk3V5NQ=="; }; dependencies = [ sources."@types/q-1.5.2" @@ -61946,12 +62270,12 @@ in sources."color-name-1.1.3" sources."css-select-2.0.2" sources."css-select-base-adapter-0.1.1" - sources."css-tree-1.0.0-alpha.28" - sources."css-url-regex-1.1.0" + sources."css-tree-1.0.0-alpha.33" sources."css-what-2.1.3" (sources."csso-3.5.1" // { dependencies = [ sources."css-tree-1.0.0-alpha.29" + sources."mdn-data-1.1.4" ]; }) sources."define-properties-1.1.3" @@ -61972,7 +62296,7 @@ in sources."is-regex-1.0.4" sources."is-symbol-1.0.2" sources."js-yaml-3.13.1" - sources."mdn-data-1.1.4" + sources."mdn-data-2.0.4" sources."minimist-0.0.8" sources."mkdirp-0.5.1" sources."nth-check-1.0.2" @@ -62204,7 +62528,7 @@ in sources."graceful-fs-4.2.0" (sources."graphlib-2.1.7" // { dependencies = [ - sources."lodash-4.17.14" + sources."lodash-4.17.15" ]; }) sources."growl-1.9.2" @@ -62275,7 +62599,7 @@ in sources."json-refs-2.1.7" (sources."json-schema-deref-sync-0.3.4" // { dependencies = [ - sources."lodash-4.17.14" + sources."lodash-4.17.15" ]; }) sources."jsonfile-2.4.0" @@ -62342,7 +62666,7 @@ in }) sources."mpath-0.2.1" sources."ms-2.0.0" - sources."multer-1.4.1" + sources."multer-1.4.2" sources."mute-stream-0.0.5" sources."nan-2.14.0" sources."nanomatch-1.2.13" @@ -62635,8 +62959,8 @@ in sha256 = "886069ecc5eedf0371b948e8ff66e7f2943c85fe7cfdaa7183e1a3572d55852b"; }; dependencies = [ - sources."@types/node-12.6.2" - sources."ajv-6.10.1" + sources."@types/node-12.6.8" + sources."ajv-6.10.2" sources."ansi-regex-4.1.0" sources."ansi-styles-3.2.1" sources."argparse-1.0.10" @@ -62760,7 +63084,7 @@ in sha512 = "6jK0DcgziZ0NAitZNncg+do/fKGh8hQJShcVU7dHoAljdckr7qr2oozd4l4kTIA7M+0FoKXy6gvRBLO8oWpTEw=="; }; dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-loose-6.1.0" sources."acorn-walk-6.2.0" sources."balanced-match-1.0.0" @@ -62803,25 +63127,27 @@ in textlint = nodeEnv.buildNodePackage { name = "textlint"; packageName = "textlint"; - version = "11.2.6"; + version = "11.3.1"; src = fetchurl { - url = "https://registry.npmjs.org/textlint/-/textlint-11.2.6.tgz"; - sha512 = "TkiRpF6kdP2WMSeJSZjeLU2Kec8+kd369H4zIdTOBSiQ6QgWG8aM2MUw9R07HFe28G9CRTU6wF7C9hguWBnAyg=="; + url = "https://registry.npmjs.org/textlint/-/textlint-11.3.1.tgz"; + sha512 = "svbO/fhj7dLTJcdKgrW5fJtNRHoFFVL+sutsKBmNUcSJgvgWteLOUZAKT/dp/4S0QfkwkpNOts7Bzn9T+0h0Cw=="; }; dependencies = [ sources."@azu/format-text-1.0.1" sources."@azu/style-format-1.0.0" - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/ast-traverse-2.1.3" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/ast-traverse-2.1.5" sources."@textlint/feature-flag-3.1.3" - sources."@textlint/fixer-formatter-3.1.6" - sources."@textlint/kernel-3.1.6" - sources."@textlint/linter-formatter-3.1.5" - sources."@textlint/markdown-to-ast-6.1.3" - sources."@textlint/text-to-ast-3.1.3" - sources."@textlint/textlint-plugin-markdown-5.1.6" - sources."@textlint/textlint-plugin-text-4.1.6" - sources."@textlint/types-1.1.5" + sources."@textlint/fixer-formatter-3.1.8" + sources."@textlint/kernel-3.1.8" + sources."@textlint/linter-formatter-3.1.7" + sources."@textlint/markdown-to-ast-6.1.5" + sources."@textlint/module-interop-1.0.1" + sources."@textlint/text-to-ast-3.1.5" + sources."@textlint/textlint-plugin-markdown-5.1.8" + sources."@textlint/textlint-plugin-text-4.1.8" + sources."@textlint/types-1.2.1" + sources."@textlint/utils-1.0.2" sources."@types/bluebird-3.5.27" sources."ajv-4.11.8" sources."ajv-keywords-1.5.1" @@ -62875,7 +63201,6 @@ in sources."hosted-git-info-2.7.1" sources."inflight-1.0.6" sources."inherits-2.0.4" - sources."interop-require-1.0.0" sources."is-alphabetical-1.0.3" sources."is-alphanumerical-1.0.3" sources."is-arrayish-0.2.1" @@ -62905,7 +63230,7 @@ in sources."levn-0.3.0" sources."load-json-file-1.1.0" sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."log-symbols-1.0.2" sources."map-like-2.0.0" sources."markdown-escapes-1.0.3" @@ -63027,7 +63352,7 @@ in sha1 = "9139c65b8da891c983b368a50a286338cd76777a"; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" + sources."@textlint/ast-node-types-4.2.4" sources."txt-to-ast-3.0.3" ]; buildInputs = globalBuildInputs; @@ -63050,7 +63375,7 @@ in }; dependencies = [ sources."define-properties-1.1.3" - sources."match-index-1.0.1" + sources."match-index-1.0.3" sources."object-keys-1.1.1" sources."regexp.prototype.flags-1.2.0" ]; @@ -63073,8 +63398,8 @@ in sha512 = "TP+dtJcCe0+ZR7Gp1E3iJdf3XtOImrEIcUdaQnok4QJJEutZ1dTiP4rCfnyOxz70NZ+2RdBJgZeZZWGhuJzSwA=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/types-1.1.5" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/types-1.2.1" sources."alex-5.1.0" sources."ansi-align-2.0.0" sources."ansi-regex-3.0.0" @@ -63507,8 +63832,8 @@ in sha512 = "HydBbkWjnMn4KrnlpnusY1BGjIG+64UySxRCvRphUAIiuJL2nbkdrIIiOjwfQhllKUa7Sf33bs6RAcbEWjZVfg=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/types-1.1.5" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/types-1.2.1" sources."boundary-1.0.1" sources."buffer-from-1.1.1" sources."concat-stream-1.6.2" @@ -63589,16 +63914,16 @@ in textlint-rule-stop-words = nodeEnv.buildNodePackage { name = "textlint-rule-stop-words"; packageName = "textlint-rule-stop-words"; - version = "1.0.14"; + version = "1.0.16"; src = fetchurl { - url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-1.0.14.tgz"; - sha512 = "Erogu6UvuFHHzUrEG9Jq2oMWYVcJ5eYy9/CLw2yRbfmSvTwo1MqAE5Ua4NJsdm5vcMARHJsQCPyWzLIgVIVsRA=="; + url = "https://registry.npmjs.org/textlint-rule-stop-words/-/textlint-rule-stop-words-1.0.16.tgz"; + sha512 = "gteiC5eaOlb0jqewGVb5u85MudqCIPdoDn8Un8TgPJQR0w5BxfBNJEXxDgegeh4d+e2yeEJCgUzfLrdt1rHVMg=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/types-1.1.5" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/types-1.2.1" sources."boundary-1.0.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."split-lines-2.0.0" sources."structured-source-3.0.2" sources."textlint-rule-helper-2.1.1" @@ -63625,10 +63950,10 @@ in sha512 = "PsLiridAdaLyho236adWnTEAbAcxxUsxVqaXWaJce+aRsjCOeyYPBLNRisFGz90KZ0S1NDYT/v5CvzBrgsiuzQ=="; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/types-1.1.5" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/types-1.2.1" sources."boundary-1.0.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."strip-json-comments-2.0.1" sources."structured-source-3.0.2" sources."textlint-rule-helper-2.1.1" @@ -63688,8 +64013,8 @@ in sha1 = "3c79b04091319d4e8be5fb442c596bf500e8493e"; }; dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/types-1.1.5" + sources."@textlint/ast-node-types-4.2.4" + sources."@textlint/types-1.2.1" sources."adverb-where-0.0.9" sources."boundary-1.0.1" sources."define-properties-1.1.3" @@ -63758,10 +64083,10 @@ in triton = nodeEnv.buildNodePackage { name = "triton"; packageName = "triton"; - version = "7.1.1"; + version = "7.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/triton/-/triton-7.1.1.tgz"; - sha512 = "BVo5Xc7R6VLw1AIyPUSbc5mQ5z9b7TzyU3bRzknIYwWDcK1QgrXYJy5NR4C3Yzsyl0pzRyNoX6hfIevDaG+pqA=="; + url = "https://registry.npmjs.org/triton/-/triton-7.3.0.tgz"; + sha512 = "7O44Ds3J1bVeTHW4uZKSaEzxyV4+Dy5P29hQ4G9XgxGMUAVGtfUZEe77gppEqIxoIscDP9LRpzBPim21b6p+8Q=="; }; dependencies = [ sources."asn1-0.2.4" @@ -63817,7 +64142,7 @@ in ]; }) sources."keep-alive-agent-0.0.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" (sources."lomstream-1.1.0" // { dependencies = [ sources."assert-plus-0.1.5" @@ -63956,7 +64281,7 @@ in sha512 = "N8E1X543CWEjg0/A70ZnA/kfAfAY/uogILsIuWBhHGxzv9kaJaj7/JCSwDiBH86CPEy37chSgW86KxVeYKsswQ=="; }; dependencies = [ - sources."@types/node-6.14.6" + sources."@types/node-6.14.7" sources."ansi-0.3.1" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -64096,7 +64421,7 @@ in sources."abbrev-1.1.1" sources."accepts-1.3.7" sources."after-0.8.2" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" sources."aproba-1.2.0" @@ -64299,7 +64624,7 @@ in sources."lcid-2.0.0" sources."locate-path-3.0.0" sources."locks-0.2.2" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.merge-4.6.2" sources."lru-cache-4.1.5" sources."map-age-cleaner-0.1.3" @@ -64602,7 +64927,7 @@ in }; dependencies = [ sources."absolute-0.0.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-escapes-3.2.0" sources."ansi-red-0.1.1" sources."ansi-regex-3.0.0" @@ -64615,7 +64940,7 @@ in sources."arrify-1.0.1" sources."asn1-0.2.4" sources."assert-plus-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" @@ -64744,7 +65069,7 @@ in sources."jsonfile-2.4.0" sources."jsprim-1.4.1" sources."klaw-1.3.1" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."log-symbols-2.2.0" sources."lowercase-keys-1.0.1" (sources."make-dir-1.3.0" // { @@ -64891,50 +65216,50 @@ in "@vue/cli" = nodeEnv.buildNodePackage { name = "_at_vue_slash_cli"; packageName = "@vue/cli"; - version = "3.9.2"; + version = "3.9.3"; src = fetchurl { - url = "https://registry.npmjs.org/@vue/cli/-/cli-3.9.2.tgz"; - sha512 = "JKDt7plf3FOCK6X4OpK6ZETFFFw0AkrnmPqwyyi1Jc/irFz6eNVRBlodXk8rikQuY5MKbi+6hVOXitHPXbZc+w=="; + url = "https://registry.npmjs.org/@vue/cli/-/cli-3.9.3.tgz"; + sha512 = "+l/N5sNSwvDe6UsVrqcz8GIWp8QO5Q72OUW7P0X3xdcVo0XPnzwJ/jzKaYGnp7/syOFTIfL6KyW4gVezPE2oPA=="; }; dependencies = [ sources."@akryum/winattr-3.0.0" sources."@apollographql/apollo-tools-0.3.7" sources."@apollographql/graphql-playground-html-1.6.24" - sources."@babel/code-frame-7.0.0" - (sources."@babel/core-7.5.4" // { + sources."@babel/code-frame-7.5.5" + (sources."@babel/core-7.5.5" // { dependencies = [ sources."semver-5.7.0" ]; }) - sources."@babel/generator-7.5.0" + sources."@babel/generator-7.5.5" sources."@babel/helper-annotate-as-pure-7.0.0" sources."@babel/helper-builder-binary-assignment-operator-visitor-7.1.0" sources."@babel/helper-call-delegate-7.4.4" - sources."@babel/helper-create-class-features-plugin-7.5.0" - sources."@babel/helper-define-map-7.4.4" + sources."@babel/helper-create-class-features-plugin-7.5.5" + sources."@babel/helper-define-map-7.5.5" sources."@babel/helper-explode-assignable-expression-7.1.0" sources."@babel/helper-function-name-7.1.0" sources."@babel/helper-get-function-arity-7.0.0" sources."@babel/helper-hoist-variables-7.4.4" - sources."@babel/helper-member-expression-to-functions-7.0.0" + sources."@babel/helper-member-expression-to-functions-7.5.5" sources."@babel/helper-module-imports-7.0.0" - sources."@babel/helper-module-transforms-7.4.4" + sources."@babel/helper-module-transforms-7.5.5" sources."@babel/helper-optimise-call-expression-7.0.0" sources."@babel/helper-plugin-utils-7.0.0" - sources."@babel/helper-regex-7.4.4" + sources."@babel/helper-regex-7.5.5" sources."@babel/helper-remap-async-to-generator-7.1.0" - sources."@babel/helper-replace-supers-7.4.4" + sources."@babel/helper-replace-supers-7.5.5" sources."@babel/helper-simple-access-7.1.0" sources."@babel/helper-split-export-declaration-7.4.4" sources."@babel/helper-wrap-function-7.2.0" - sources."@babel/helpers-7.5.4" + sources."@babel/helpers-7.5.5" sources."@babel/highlight-7.5.0" - sources."@babel/parser-7.5.0" + sources."@babel/parser-7.5.5" sources."@babel/plugin-proposal-async-generator-functions-7.2.0" - sources."@babel/plugin-proposal-class-properties-7.5.0" + sources."@babel/plugin-proposal-class-properties-7.5.5" sources."@babel/plugin-proposal-dynamic-import-7.5.0" sources."@babel/plugin-proposal-json-strings-7.2.0" - sources."@babel/plugin-proposal-object-rest-spread-7.5.4" + sources."@babel/plugin-proposal-object-rest-spread-7.5.5" sources."@babel/plugin-proposal-optional-catch-binding-7.2.0" sources."@babel/plugin-proposal-unicode-property-regex-7.4.4" sources."@babel/plugin-syntax-async-generators-7.2.0" @@ -64947,8 +65272,8 @@ in sources."@babel/plugin-transform-arrow-functions-7.2.0" sources."@babel/plugin-transform-async-to-generator-7.5.0" sources."@babel/plugin-transform-block-scoped-functions-7.2.0" - sources."@babel/plugin-transform-block-scoping-7.4.4" - sources."@babel/plugin-transform-classes-7.4.4" + sources."@babel/plugin-transform-block-scoping-7.5.5" + sources."@babel/plugin-transform-classes-7.5.5" sources."@babel/plugin-transform-computed-properties-7.2.0" sources."@babel/plugin-transform-destructuring-7.5.0" sources."@babel/plugin-transform-dotall-regex-7.4.4" @@ -64965,7 +65290,7 @@ in sources."@babel/plugin-transform-modules-umd-7.2.0" sources."@babel/plugin-transform-named-capturing-groups-regex-7.4.5" sources."@babel/plugin-transform-new-target-7.4.4" - sources."@babel/plugin-transform-object-super-7.2.0" + sources."@babel/plugin-transform-object-super-7.5.5" sources."@babel/plugin-transform-parameters-7.4.4" sources."@babel/plugin-transform-property-literals-7.2.0" sources."@babel/plugin-transform-regenerator-7.4.5" @@ -64975,19 +65300,19 @@ in sources."@babel/plugin-transform-sticky-regex-7.2.0" sources."@babel/plugin-transform-template-literals-7.4.4" sources."@babel/plugin-transform-typeof-symbol-7.2.0" - sources."@babel/plugin-transform-typescript-7.5.2" + sources."@babel/plugin-transform-typescript-7.5.5" sources."@babel/plugin-transform-unicode-regex-7.4.4" - (sources."@babel/preset-env-7.5.4" // { + (sources."@babel/preset-env-7.5.5" // { dependencies = [ sources."semver-5.7.0" ]; }) sources."@babel/preset-flow-7.0.0" sources."@babel/preset-typescript-7.3.3" - sources."@babel/register-7.4.4" + sources."@babel/register-7.5.5" sources."@babel/template-7.4.4" - sources."@babel/traverse-7.5.0" - sources."@babel/types-7.5.0" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."@hapi/address-2.0.0" sources."@hapi/hoek-6.2.4" sources."@hapi/joi-15.1.0" @@ -65020,25 +65345,25 @@ in sources."@types/long-4.0.0" sources."@types/mime-2.0.1" sources."@types/minimatch-3.0.3" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@types/range-parser-1.2.3" sources."@types/serve-static-1.13.2" sources."@types/ws-6.0.1" sources."@types/zen-observable-0.8.0" sources."@vue/cli-shared-utils-3.9.0" - (sources."@vue/cli-ui-3.9.2" // { + (sources."@vue/cli-ui-3.9.3" // { dependencies = [ sources."clone-2.1.2" ]; }) - sources."@vue/cli-ui-addon-webpack-3.9.2" - sources."@vue/cli-ui-addon-widgets-3.9.2" + sources."@vue/cli-ui-addon-webpack-3.9.3" + sources."@vue/cli-ui-addon-widgets-3.9.3" sources."@wry/context-0.4.4" sources."@wry/equality-0.1.9" sources."abbrev-1.1.1" sources."accepts-1.3.7" sources."aggregate-error-3.0.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-align-2.0.0" sources."ansi-escapes-3.2.0" sources."ansi-regex-4.1.0" @@ -65049,12 +65374,12 @@ in ]; }) sources."apollo-cache-1.3.2" - sources."apollo-cache-control-0.7.5" + sources."apollo-cache-control-0.8.0" sources."apollo-cache-inmemory-1.6.2" sources."apollo-client-2.6.3" - sources."apollo-datasource-0.5.0" - sources."apollo-engine-reporting-1.3.6" - sources."apollo-engine-reporting-protobuf-0.3.1" + sources."apollo-datasource-0.6.0" + sources."apollo-engine-reporting-1.4.0" + sources."apollo-engine-reporting-protobuf-0.4.0" sources."apollo-env-0.5.1" sources."apollo-graphql-0.3.3" sources."apollo-link-1.2.12" @@ -65063,13 +65388,14 @@ in sources."apollo-link-persisted-queries-0.2.2" sources."apollo-link-state-0.4.2" sources."apollo-link-ws-1.0.18" - sources."apollo-server-caching-0.4.0" - sources."apollo-server-core-2.6.9" + sources."apollo-server-caching-0.5.0" + sources."apollo-server-core-2.7.0" sources."apollo-server-env-2.4.0" sources."apollo-server-errors-2.3.1" - sources."apollo-server-express-2.6.9" - sources."apollo-server-plugin-base-0.5.8" - sources."apollo-tracing-0.7.4" + sources."apollo-server-express-2.7.0" + sources."apollo-server-plugin-base-0.6.0" + sources."apollo-server-types-0.2.0" + sources."apollo-tracing-0.8.0" sources."apollo-upload-client-10.0.1" sources."apollo-utilities-1.3.2" sources."arg-4.1.1" @@ -65121,7 +65447,7 @@ in sources."boxen-1.3.0" sources."brace-expansion-1.1.11" sources."braces-2.3.2" - sources."browserslist-4.6.4" + sources."browserslist-4.6.6" sources."buffer-5.2.1" sources."buffer-alloc-1.2.0" sources."buffer-alloc-unsafe-1.1.0" @@ -65134,7 +65460,7 @@ in sources."cache-base-1.0.1" sources."call-me-maybe-1.0.1" sources."camelcase-4.1.0" - sources."caniuse-lite-1.0.30000984" + sources."caniuse-lite-1.0.30000985" sources."capture-stack-trace-1.0.1" sources."caseless-0.12.0" sources."caw-2.0.1" @@ -65259,7 +65585,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.6.2" - sources."electron-to-chromium-1.3.191" + sources."electron-to-chromium-1.3.198" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.1" sources."entities-1.1.2" @@ -65340,7 +65666,7 @@ in }) sources."find-up-3.0.0" sources."fkill-6.2.0" - sources."flow-parser-0.102.0" + sources."flow-parser-0.103.0" sources."for-in-1.0.2" sources."forever-agent-0.6.1" sources."form-data-2.3.3" @@ -65388,7 +65714,7 @@ in sources."ts-invariant-0.3.3" ]; }) - sources."graphql-extensions-0.7.7" + sources."graphql-extensions-0.8.0" sources."graphql-subscriptions-1.1.0" sources."graphql-tag-2.10.1" sources."graphql-tools-4.0.5" @@ -65499,7 +65825,7 @@ in sources."latest-version-3.1.0" sources."launch-editor-2.2.1" sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.clonedeep-4.5.0" sources."lodash.merge-4.6.2" sources."lodash.sortby-4.7.0" @@ -65662,7 +65988,7 @@ in sources."proto-list-1.2.4" (sources."protobufjs-6.8.8" // { dependencies = [ - sources."@types/node-10.14.12" + sources."@types/node-10.14.13" ]; }) sources."proxy-addr-2.0.5" @@ -65691,7 +66017,7 @@ in }) sources."regenerate-1.4.0" sources."regenerate-unicode-properties-8.1.0" - sources."regenerator-transform-0.14.0" + sources."regenerator-transform-0.14.1" (sources."regex-not-1.0.2" // { dependencies = [ sources."extend-shallow-3.0.2" @@ -65991,7 +66317,7 @@ in sha512 = "o0CSn0HJdo1/ASh2nY9MZh/dZrq+U+fVfIL4XDL/VRMrFAyr9pPmhT9/pdRZlHPN46r05UhBfGQXnbeOOssguA=="; }; dependencies = [ - sources."@babel/code-frame-7.0.0" + sources."@babel/code-frame-7.5.5" sources."@babel/highlight-7.5.0" sources."@emmetio/extract-abbreviation-0.1.6" sources."@starptech/expression-parser-0.9.0" @@ -66004,14 +66330,14 @@ in sources."@starptech/rehype-minify-whitespace-0.9.0" sources."@starptech/rehype-webparser-0.9.0" sources."@starptech/webparser-0.9.0" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@types/unist-2.0.3" sources."@types/vfile-3.0.2" sources."@types/vfile-message-1.0.1" sources."abbrev-1.1.1" - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-jsx-5.0.1" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ajv-keywords-2.1.1" sources."amdefine-1.0.1" sources."ansi-align-2.0.0" @@ -66181,7 +66507,7 @@ in ]; }) sources."eslint-scope-4.0.3" - sources."eslint-utils-1.3.1" + sources."eslint-utils-1.4.0" sources."eslint-visitor-keys-1.0.0" sources."espree-5.0.1" sources."esprima-4.0.1" @@ -66338,7 +66664,7 @@ in sources."isarray-1.0.0" sources."isexe-2.0.0" sources."isobject-2.1.0" - sources."js-beautify-1.10.0" + sources."js-beautify-1.10.1" sources."js-tokens-4.0.0" sources."js-yaml-3.13.1" sources."json-parse-better-errors-1.0.2" @@ -66357,7 +66683,7 @@ in sources."load-json-file-4.0.0" sources."load-plugin-2.3.1" sources."locate-path-2.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.assign-4.2.0" sources."lodash.assigninwith-4.2.0" sources."lodash.defaults-4.0.1" @@ -66523,7 +66849,7 @@ in sources."pretty-format-23.6.0" sources."process-nextick-args-2.0.1" sources."progress-2.0.3" - sources."property-information-5.1.0" + sources."property-information-5.2.2" sources."proto-list-1.2.4" sources."pseudomap-1.0.2" sources."punycode-2.1.1" @@ -66744,7 +67070,7 @@ in sources."stylus-supremacy-2.12.7" sources."supports-color-5.5.0" sources."symbol-0.2.3" - (sources."table-5.4.1" // { + (sources."table-5.4.4" // { dependencies = [ sources."ansi-regex-4.1.0" sources."string-width-3.1.0" @@ -67040,12 +67366,12 @@ in sha512 = "yeYV4sTOLCWEjbJrR/g43vUFAKj73813JV2cN60AIf7Bcikzao3scoUKvPvMQxgUC2dTYSvEpdzp2KGS3c/sUg=="; }; dependencies = [ - sources."@babel/code-frame-7.0.0" - sources."@babel/generator-7.5.0" + sources."@babel/code-frame-7.5.5" + sources."@babel/generator-7.5.5" sources."@babel/highlight-7.5.0" - sources."@babel/parser-7.5.0" + sources."@babel/parser-7.5.5" sources."@babel/template-7.4.4" - sources."@babel/types-7.5.0" + sources."@babel/types-7.5.5" sources."@webassemblyjs/ast-1.8.5" sources."@webassemblyjs/floating-point-hex-parser-1.8.5" sources."@webassemblyjs/helper-api-error-1.8.5" @@ -67071,7 +67397,7 @@ in sources."has-flag-3.0.0" sources."js-tokens-4.0.0" sources."jsesc-2.5.2" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."mamacro-0.0.3" sources."source-map-0.5.7" sources."supports-color-5.5.0" @@ -67120,10 +67446,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "4.35.3"; + version = "4.36.1"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.35.3.tgz"; - sha512 = "xggQPwr9ILlXzz61lHzjvgoqGU08v5+Wnut19Uv3GaTtzN4xBTcwnobodrXE142EL1tOiS5WVEButooGzcQzTA=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; + sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; }; dependencies = [ sources."@webassemblyjs/ast-1.8.5" @@ -67146,8 +67472,8 @@ in sources."@webassemblyjs/wast-printer-1.8.5" sources."@xtuc/ieee754-1.2.0" sources."@xtuc/long-4.2.2" - sources."acorn-6.2.0" - sources."ajv-6.10.1" + sources."acorn-6.2.1" + sources."ajv-6.10.2" sources."ajv-errors-1.0.1" sources."ajv-keywords-3.4.1" (sources."anymatch-2.0.0" // { @@ -67595,10 +67921,10 @@ in webpack-cli = nodeEnv.buildNodePackage { name = "webpack-cli"; packageName = "webpack-cli"; - version = "3.3.5"; + version = "3.3.6"; src = fetchurl { - url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.5.tgz"; - sha512 = "w0j/s42c5UhchwTmV/45MLQnTVwRoaUTu9fM5LuyOd/8lFoCNCELDogFoecx5NzRUndO0yD/gF2b02XKMnmAWQ=="; + url = "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.6.tgz"; + sha512 = "0vEa83M7kJtxK/jUhlpZ27WHIOndz5mghWL2O53kiDoA9DIxSKnfqB92LoqEn77cT4f3H2cZm1BMEat/6AZz3A=="; }; dependencies = [ sources."ansi-regex-4.1.0" @@ -67924,10 +68250,10 @@ in webtorrent-cli = nodeEnv.buildNodePackage { name = "webtorrent-cli"; packageName = "webtorrent-cli"; - version = "2.0.1"; + version = "2.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-2.0.1.tgz"; - sha512 = "isbO4uXmNAPgHA0rD3FAlxC6Z8nOf8zeUgntweT/BahVqjyxZa3KuNCusjyaeShqgx+T6+kZmzJvSOTTDIG3Qw=="; + url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-2.0.2.tgz"; + sha512 = "thdHJQpoOLDXZMJQ708JhAQvqceds3R79LIDmzAALLRV5h1O/Ezmj7en3L3b/s1ek0TLkYW9TJxs1ohDcjaU9Q=="; }; dependencies = [ sources."addr-to-ip-port-1.5.1" @@ -67945,12 +68271,11 @@ in ]; }) sources."bittorrent-peerid-1.3.0" - (sources."bittorrent-protocol-3.0.1" // { + (sources."bittorrent-protocol-3.1.0" // { dependencies = [ - sources."debug-3.2.6" + sources."bitfield-3.0.0" + sources."debug-4.1.1" sources."ms-2.1.2" - sources."readable-stream-2.3.6" - sources."safe-buffer-5.1.2" ]; }) (sources."bittorrent-tracker-9.11.0" // { @@ -67991,6 +68316,7 @@ in sources."clivas-0.2.0" sources."closest-to-2.0.0" sources."colour-0.7.1" + sources."common-tags-1.8.0" sources."compact2string-1.4.1" sources."concat-map-0.0.1" (sources."concat-stream-1.6.2" // { @@ -68038,7 +68364,7 @@ in sources."inherits-2.0.4" sources."ip-1.1.5" sources."ip-set-1.0.2" - sources."ipaddr.js-1.9.0" + sources."ipaddr.js-1.9.1" sources."is-ascii-1.0.0" sources."is-file-1.0.0" sources."is-typedarray-1.0.0" @@ -68185,9 +68511,10 @@ in sources."upnp-device-client-1.0.2" sources."upnp-mediarenderer-client-1.2.4" sources."url-join-4.0.1" - (sources."ut_metadata-3.3.0" // { + (sources."ut_metadata-3.4.0" // { dependencies = [ - sources."debug-3.2.6" + sources."bitfield-3.0.0" + sources."debug-4.1.1" sources."ms-2.1.2" ]; }) @@ -68224,29 +68551,29 @@ in web-ext = nodeEnv.buildNodePackage { name = "web-ext"; packageName = "web-ext"; - version = "3.1.0"; + version = "3.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/web-ext/-/web-ext-3.1.0.tgz"; - sha512 = "uuJRuAJFHJqHKkfHcZcSPb0ceOsVf/EoLJHynAgFOMxCIPAjbnq7gWT2e792hTpQEMXZE7XsXIeXwqogjLxofA=="; + url = "https://registry.npmjs.org/web-ext/-/web-ext-3.1.1.tgz"; + sha512 = "snTfhuxoplm8QAlv+CwOaF0XSaycDUmxsrLfi4NtZRvZ6J79+ijOu9HyTXP0rd1zT3uagWYOBc3ol/ZOsf1LQQ=="; }; dependencies = [ - sources."@babel/code-frame-7.0.0" + sources."@babel/code-frame-7.5.5" sources."@babel/highlight-7.5.0" sources."@babel/polyfill-7.4.4" sources."@babel/runtime-7.4.5" - sources."@babel/runtime-corejs2-7.5.4" + sources."@babel/runtime-corejs2-7.5.5" sources."@cliqz-oss/firefox-client-0.3.1" sources."@cliqz-oss/node-firefox-connect-1.2.1" sources."@sindresorhus/is-0.14.0" sources."@snyk/composer-lockfile-parser-1.0.3" - sources."@snyk/dep-graph-1.8.1" + sources."@snyk/dep-graph-1.10.0" sources."@snyk/gemfile-1.2.0" sources."@szmarczak/http-timer-1.1.2" sources."@types/agent-base-4.2.0" sources."@types/debug-4.1.4" sources."@types/events-3.0.0" sources."@types/minimatch-3.0.3" - sources."@types/node-12.6.2" + sources."@types/node-12.6.8" sources."@yarnpkg/lockfile-1.1.0" sources."JSONSelect-0.2.1" sources."abbrev-1.1.1" @@ -68259,7 +68586,11 @@ in sources."adbkit-2.11.1" sources."adbkit-logcat-1.1.0" sources."adbkit-monkey-1.0.1" - sources."addons-linter-1.10.0" + (sources."addons-linter-1.10.0" // { + dependencies = [ + sources."regenerator-runtime-0.13.2" + ]; + }) sources."adm-zip-0.4.13" (sources."agent-base-4.3.0" // { dependencies = [ @@ -68279,7 +68610,7 @@ in sources."anymatch-2.0.0" (sources."archiver-2.1.1" // { dependencies = [ - sources."async-2.6.2" + sources."async-2.6.3" sources."isarray-1.0.0" sources."readable-stream-2.3.6" sources."string_decoder-1.1.1" @@ -68482,7 +68813,7 @@ in sources."dashdash-1.14.1" (sources."data-uri-to-buffer-2.0.1" // { dependencies = [ - sources."@types/node-8.10.50" + sources."@types/node-8.10.51" ]; }) sources."debounce-1.2.0" @@ -68597,11 +68928,11 @@ in ]; }) sources."eslint-scope-4.0.3" - sources."eslint-utils-1.3.1" + sources."eslint-utils-1.4.0" sources."eslint-visitor-keys-1.0.0" (sources."espree-5.0.1" // { dependencies = [ - sources."acorn-6.2.0" + sources."acorn-6.2.1" sources."acorn-jsx-5.0.1" ]; }) @@ -68692,11 +69023,10 @@ in ]; }) sources."functional-red-black-tree-1.0.1" - (sources."fx-runner-1.0.10" // { + (sources."fx-runner-1.0.11" // { dependencies = [ sources."commander-2.9.0" sources."isexe-1.1.2" - sources."lodash-4.17.11" sources."which-1.2.4" ]; }) @@ -68883,7 +69213,7 @@ in sources."levn-0.3.0" sources."lie-3.3.0" sources."locate-path-3.0.0" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.assign-4.2.0" sources."lodash.assignin-4.2.0" sources."lodash.clone-4.5.0" @@ -69118,7 +69448,7 @@ in ]; }) sources."rechoir-0.6.2" - sources."regenerator-runtime-0.13.2" + sources."regenerator-runtime-0.13.3" sources."regex-not-1.0.2" sources."regexpp-2.0.1" sources."registry-auth-token-3.4.0" @@ -69222,7 +69552,7 @@ in ]; }) sources."snapdragon-util-3.0.1" - (sources."snyk-1.193.1" // { + (sources."snyk-1.195.1" // { dependencies = [ sources."ansi-regex-4.1.0" sources."debug-3.2.6" @@ -69231,7 +69561,7 @@ in sources."update-notifier-2.5.0" ]; }) - (sources."snyk-config-2.2.1" // { + (sources."snyk-config-2.2.2" // { dependencies = [ sources."debug-3.2.6" sources."ms-2.1.2" @@ -69302,7 +69632,7 @@ in sources."semver-5.7.0" ]; }) - (sources."snyk-sbt-plugin-2.5.6" // { + (sources."snyk-sbt-plugin-2.5.7" // { dependencies = [ sources."semver-6.2.0" ]; @@ -69372,8 +69702,9 @@ in sources."strip-eof-1.0.0" sources."strip-json-comments-3.0.1" sources."supports-color-5.5.0" - (sources."table-5.4.1" // { + (sources."table-5.4.4" // { dependencies = [ + sources."ajv-6.10.2" sources."ansi-regex-4.1.0" sources."string-width-3.1.0" sources."strip-ansi-5.2.0" @@ -69444,7 +69775,7 @@ in }) sources."unzip-response-2.0.1" sources."upath-1.1.2" - (sources."update-notifier-3.0.0" // { + (sources."update-notifier-3.0.1" // { dependencies = [ sources."ansi-align-3.0.0" sources."ansi-regex-4.1.0" @@ -69618,7 +69949,7 @@ in sources."@nodelib/fs.stat-1.1.3" sources."@sindresorhus/is-0.7.0" sources."aggregate-error-1.0.0" - sources."ajv-6.10.1" + sources."ajv-6.10.2" sources."ansi-0.3.1" sources."ansi-align-2.0.0" sources."ansi-escapes-3.2.0" @@ -69637,7 +69968,7 @@ in sources."assert-plus-1.0.0" sources."assign-symbols-1.0.0" sources."astral-regex-1.0.0" - sources."async-2.6.2" + sources."async-2.6.3" sources."asynckit-0.4.0" sources."atob-2.1.2" sources."aws-sign2-0.7.0" @@ -69826,7 +70157,7 @@ in ]; }) sources."glob-to-regexp-0.3.0" - (sources."global-agent-2.0.0" // { + (sources."global-agent-2.0.1" // { dependencies = [ sources."semver-6.2.0" ]; @@ -69935,7 +70266,7 @@ in }) sources."locate-path-2.0.0" sources."locutus-2.0.11" - sources."lodash-4.17.14" + sources."lodash-4.17.15" sources."lodash.debounce-4.0.8" sources."lodash.pad-4.5.1" sources."lodash.padend-4.6.1" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf609b073b3..1b55b99f2ab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -553,6 +553,8 @@ in ansifilter = callPackage ../tools/text/ansifilter {}; + antora = nodePackages_10_x."@antora/cli"; + apktool = callPackage ../development/tools/apktool { inherit (androidenv.androidPkgs_9_0) build-tools; }; From bc6366b728511cbc01696bb93cc4825e0af21ee2 Mon Sep 17 00:00:00 2001 From: Max Wittig Date: Mon, 22 Jul 2019 08:29:01 +0200 Subject: [PATCH 0883/1611] gitlab-runner: 12.0.2 -> 12.1.0 Corresponding runner for GitLab version 12.1.0 Changelog: https://gitlab.com/gitlab-org/gitlab-runner/blob/12-1-stable/CHANGELOG.md --- .../continuous-integration/gitlab-runner/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix index a93b791f7e6..3ced385e9da 100644 --- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix +++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix @@ -1,16 +1,16 @@ { lib, buildGoPackage, fetchFromGitLab, fetchurl }: let - version = "12.0.2"; + version = "12.1.0"; # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64 docker_x86_64 = fetchurl { url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz"; - sha256 = "0b1xkksd4rgqvjahp5bf53sk887z2fxwr7rf8vqs9j9aw54zm5cn"; + sha256 = "0zrlprzbjnssrf0qjb80fy50ypryrqhmkqrpad68bnsz7da34idk"; }; docker_arm = fetchurl { url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-arm.tar.xz"; - sha256 = "1cjl64g3ymnrs9c3fl28aydfzf18ik4vnjcvijv28c3gm1i6chs0"; + sha256 = "0zsin76qiq46w675wdkaz3ng1i9szad3hzmk5dngdnr59gq5mqhk"; }; in buildGoPackage rec { @@ -29,7 +29,7 @@ buildGoPackage rec { owner = "gitlab-org"; repo = "gitlab-runner"; rev = "v${version}"; - sha256 = "0cbh11libcyfdgrvnl1aa11x90ac7zgn1d9myc4dwmqzfdm4kdlb"; + sha256 = "0npjgarbwih8j2ih1mshwyp4nj9h15phvg61kifh63p9mf4r63nn"; }; patches = [ ./fix-shell-path.patch ]; From 950b7ed61ac340fa7810daa76e8b5eb438e10d33 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 03:06:59 -0400 Subject: [PATCH 0884/1611] dee: fix build See https://gitlab.gnome.org/GNOME/vala/issues/803. --- pkgs/development/libraries/dee/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/dee/default.nix b/pkgs/development/libraries/dee/default.nix index f0f31ae1ffc..04ecadadefa 100644 --- a/pkgs/development/libraries/dee/default.nix +++ b/pkgs/development/libraries/dee/default.nix @@ -5,7 +5,7 @@ , icu , gobject-introspection , dbus-glib -, vala +, vala_0_40 , python3 , autoreconfHook }: @@ -30,7 +30,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig - vala + # https://gitlab.gnome.org/GNOME/vala/issues/803 + vala_0_40 autoreconfHook gobject-introspection python3 From 9b7a0ae718d85d7cbedb9d123b453b19968fd034 Mon Sep 17 00:00:00 2001 From: Delan Azabani Date: Mon, 22 Jul 2019 17:08:02 +1000 Subject: [PATCH 0885/1611] maintainers: add delan --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 8e474b651a1..553c78418a9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1237,6 +1237,11 @@ github = "deepfire"; name = "Kosyrev Serge"; }; + delan = { + name = "Delan Azabani"; + email = "delan@azabani.com"; + github = "delan"; + }; delroth = { email = "delroth@gmail.com"; github = "delroth"; From d6e03ca5cf1bfcd3a2ac751e1fd34fcc880d5a81 Mon Sep 17 00:00:00 2001 From: Delan Azabani Date: Mon, 22 Jul 2019 17:08:18 +1000 Subject: [PATCH 0886/1611] fxlinuxprint: init at 1.1.2-1 --- .../cups/drivers/fxlinuxprint/default.nix | 51 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/misc/cups/drivers/fxlinuxprint/default.nix diff --git a/pkgs/misc/cups/drivers/fxlinuxprint/default.nix b/pkgs/misc/cups/drivers/fxlinuxprint/default.nix new file mode 100644 index 00000000000..ffcc46d66e3 --- /dev/null +++ b/pkgs/misc/cups/drivers/fxlinuxprint/default.nix @@ -0,0 +1,51 @@ +{ stdenv, lib, fetchzip, dpkg, autoPatchelfHook, cups }: +let + debPlatform = + if stdenv.hostPlatform.system == "x86_64-linux" then "amd64" + else if stdenv.hostPlatform.system == "i686-linux" then "i386" + else throw "Unsupported system: ${stdenv.hostPlatform.system}"; +in +stdenv.mkDerivation rec { + name = "fxlinuxprint-${version}"; + version = "1.1.2-1"; + + src = fetchzip { + url = "https://onlinesupport.fujixerox.com/driver_downloads/fxlinuxpdf112119031.zip"; + sha256 = "1mv07ch6ysk9bknfmjqsgxb803sj6vfin29s9knaqv17jvgyh0n3"; + curlOpts = "--user-agent Mozilla/5.0"; # HTTP 410 otherwise + }; + + nativeBuildInputs = [ dpkg autoPatchelfHook ]; + buildInputs = [ cups ]; + + sourceRoot = "."; + unpackCmd = "dpkg-deb -x $curSrc/fxlinuxprint_${version}_${debPlatform}.deb ."; + + dontConfigure = true; + dontBuild = true; + + installPhase = '' + mkdir -p $out + mv etc $out + mv usr/lib $out + + mkdir -p $out/share/cups/model + mv usr/share/ppd/FujiXerox/* $out/share/cups/model + ''; + + meta = with stdenv.lib; { + description = "Fuji Xerox Linux Printer Driver"; + longDescription = '' + DocuPrint P365/368 d + DocuPrint CM315/318 z + DocuPrint CP315/318 dw + ApeosPort-VI C2271/C3370/C3371/C4471/C5571/C6671/C7771 + DocuCentre-VI C2271/C3370/C3371/C4471/C5571/C6671/C7771 + DocuPrint 3205 d/3208 d/3505 d/3508 d/4405 d/4408 d + ''; + homepage = https://onlinesupport.fujixerox.com; + license = licenses.unfree; + maintainers = with maintainers; [ delan ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5d02146f46d..4e2d2c2bb01 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23899,6 +23899,8 @@ in brlaser = callPackage ../misc/cups/drivers/brlaser { }; + fxlinuxprint = callPackage ../misc/cups/drivers/fxlinuxprint { }; + brscan4 = callPackage ../applications/graphics/sane/backends/brscan4 { }; dsseries = callPackage ../applications/graphics/sane/backends/dsseries { }; From 835f6b67bf65545db0259b6261aaae5a890be51f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Mon, 22 Jul 2019 09:15:01 +0200 Subject: [PATCH 0887/1611] Revert "strip setup hook: Strip using --strip-unneeded instead of --strip-debug." This broke the bootstrapping of Darwin. This reverts commit 3e867d16cde4ecf81d04d41acb99ea464f5c4663. --- pkgs/build-support/setup-hooks/strip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/setup-hooks/strip.sh b/pkgs/build-support/setup-hooks/strip.sh index a36caa26810..fc4c7bfbaf9 100644 --- a/pkgs/build-support/setup-hooks/strip.sh +++ b/pkgs/build-support/setup-hooks/strip.sh @@ -25,7 +25,7 @@ _doStrip() { stripDebugList=${stripDebugList:-lib lib32 lib64 libexec bin sbin} if [ -n "$stripDebugList" ]; then - stripDirs "$stripCmd" "$stripDebugList" "${stripDebugFlags:---strip-unneeded}" + stripDirs "$stripCmd" "$stripDebugList" "${stripDebugFlags:--S}" fi stripAllList=${stripAllList:-} From bc4361a540e2305f3c12e87ed4b7ae2e2d89b12f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Sun, 21 Jul 2019 16:25:58 +0200 Subject: [PATCH 0888/1611] kdeconnect: Fix build --- pkgs/applications/misc/kdeconnect/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/kdeconnect/default.nix b/pkgs/applications/misc/kdeconnect/default.nix index b92a7ac476c..d3905c8d3ea 100644 --- a/pkgs/applications/misc/kdeconnect/default.nix +++ b/pkgs/applications/misc/kdeconnect/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ extra-cmake-modules kdoctools ]; postInstall = '' - wrapProgram $out/lib/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]} + wrapProgram $out/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]} ''; enableParallelBuilding = true; From acc8f087904606fff31be8837f56989923cc6551 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 03:14:05 -0400 Subject: [PATCH 0889/1611] patheon.elementary.terminal: 5.3.5 -> 5.3.6 https://github.com/elementary/terminal/releases/tag/5.3.6 --- pkgs/desktops/pantheon/apps/elementary-terminal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix index 2c146169f42..2479d999e8f 100644 --- a/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-terminal/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { pname = "terminal"; - version = "5.3.5"; + version = "5.3.6"; name = "elementary-${pname}-${version}"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { owner = "elementary"; repo = pname; rev = version; - sha256 = "1gd5m24digmx3sgs21ggfiqiwhgym6s1dlg1sv9mdqh5wgsa6b8f"; + sha256 = "0jp21sy8k3jq3ycvng9yy2hbhcvfgiknxxa8vcg3c06vqhadmnc3"; }; passthru = { From cf9dca23969400e4a8d31e5e37186c39fd99b12f Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 04:23:23 -0400 Subject: [PATCH 0890/1611] gnome3.mutter328: add API for reorder workspaces backport for a feature added in gala --- pkgs/desktops/gnome-3/core/mutter/3.28.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/desktops/gnome-3/core/mutter/3.28.nix b/pkgs/desktops/gnome-3/core/mutter/3.28.nix index 4f436b54ce4..7e1f696c58d 100644 --- a/pkgs/desktops/gnome-3/core/mutter/3.28.nix +++ b/pkgs/desktops/gnome-3/core/mutter/3.28.nix @@ -48,6 +48,12 @@ stdenv.mkDerivation rec { url = "https://src.fedoraproject.org/rpms/mutter328/raw/fff28bebda02111b4c534952465ff967ba7efced/f/0075-backends-Update-to-new-output-setting-for-tablets-to.patch"; sha256 = "141p3an83s042f67fw2fqmr79i5g634ndrbpd8cs47fd4wwiwpj5"; }) + # https://gitlab.gnome.org/GNOME/mutter/merge_requests/670 + # Needed for gala redorder workspace + (fetchpatch { + url = "https://github.com/elementary/os-patches/commit/d636a44885c5be662997f8e19f7dcd26670b3219.patch"; + sha256 = "12pbxk6f39a09jxjam5a5hxl4whp3cifzpck2m7fpp0n98nc63qh"; + }) ]; configureFlags = [ From 17fd9ab8e6d60d151d5a99116b30804b06a3b42c Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 03:14:56 -0400 Subject: [PATCH 0891/1611] pantheon.gala: 2019-07-01 -> 2019-07-21 --- pkgs/desktops/pantheon/desktop/gala/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/pantheon/desktop/gala/default.nix b/pkgs/desktops/pantheon/desktop/gala/default.nix index 9117a7b8f74..440426c00df 100644 --- a/pkgs/desktops/pantheon/desktop/gala/default.nix +++ b/pkgs/desktops/pantheon/desktop/gala/default.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { pname = "gala"; - version = "unstable-2019-07-01"; # Is tracking https://github.com/elementary/gala/commits/stable/juno + version = "unstable-2019-07-21"; # Is tracking https://github.com/elementary/gala/commits/stable/juno src = fetchFromGitHub { owner = "elementary"; repo = pname; - rev = "5f1dbf15a7571bd16779d964b0cb3bd54232a928"; - sha256 = "1mbxqqfl54pydgs9pvvgfdbbck91vwyg770gd3vgzc6kmf6c34d5"; + rev = "50694796d4c8f0ca92517d5a628b0efdf748279c"; + sha256 = "17d0hd2145mrf8y5ws3xypdbwj72qv7hrrp6p6lm4k16xd96yznr"; }; passthru = { From 6bc620a78226c96420fc7b0ae79260c58d534fe0 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 03:15:44 -0400 Subject: [PATCH 0892/1611] pantheon.wingpanel-indicator-session: 2.2.4 -> 2.2.5 https://github.com/elementary/wingpanel-indicator-session/releases/tag/2.2.5 --- .../pantheon/desktop/wingpanel-indicators/session/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix index b6607d54a7e..61572f07e2e 100644 --- a/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix +++ b/pkgs/desktops/pantheon/desktop/wingpanel-indicators/session/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { pname = "wingpanel-indicator-session"; - version = "2.2.4"; + version = "2.2.5"; src = fetchFromGitHub { owner = "elementary"; repo = pname; rev = version; - sha256 = "1x2p2sjal42bspmqcg9lzixv6rnihvgmwk92gfcccrmvk8j4bx6s"; + sha256 = "0lqh9g6qq09m744gncspm79lbwx1vjl1d6j2szwcq9f0jdm01pm5"; }; passthru = { From bbf5a8a861d91d67dca91e2518722a54b7365935 Mon Sep 17 00:00:00 2001 From: Delan Azabani Date: Sun, 21 Jul 2019 20:04:30 +1000 Subject: [PATCH 0893/1611] fxlinuxprintutil: init at 1.1.1-1 --- pkgs/tools/misc/fxlinuxprintutil/default.nix | 59 +++++++++++++++++++ .../fxlinuxprintutil/fxlocalechk.tcl.patch | 18 ++++++ .../misc/fxlinuxprintutil/fxlputil.patch | 28 +++++++++ .../misc/fxlinuxprintutil/fxlputil.tcl.patch | 21 +++++++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 128 insertions(+) create mode 100644 pkgs/tools/misc/fxlinuxprintutil/default.nix create mode 100644 pkgs/tools/misc/fxlinuxprintutil/fxlocalechk.tcl.patch create mode 100644 pkgs/tools/misc/fxlinuxprintutil/fxlputil.patch create mode 100644 pkgs/tools/misc/fxlinuxprintutil/fxlputil.tcl.patch diff --git a/pkgs/tools/misc/fxlinuxprintutil/default.nix b/pkgs/tools/misc/fxlinuxprintutil/default.nix new file mode 100644 index 00000000000..7965b591afb --- /dev/null +++ b/pkgs/tools/misc/fxlinuxprintutil/default.nix @@ -0,0 +1,59 @@ +{ stdenv, lib, fetchzip, substituteAll, dpkg, autoPatchelfHook, cups, tcl, tk, xorg, makeWrapper }: +let + debPlatform = + if stdenv.hostPlatform.system == "x86_64-linux" then "amd64" + else if stdenv.hostPlatform.system == "i686-linux" then "i386" + else throw "Unsupported system: ${stdenv.hostPlatform.system}"; +in +stdenv.mkDerivation rec { + pname = "fxlinuxprintutil"; + version = "1.1.1-1"; + + src = fetchzip { + url = "https://onlinesupport.fujixerox.com/driver_downloads/fxlinuxpdf112119031.zip"; + sha256 = "1mv07ch6ysk9bknfmjqsgxb803sj6vfin29s9knaqv17jvgyh0n3"; + curlOpts = "--user-agent Mozilla/5.0"; # HTTP 410 otherwise + }; + + patches = [ + # replaces references to “path/to/fxlputil” via $0 that are broken by our wrapProgram + # with /nix/store/fxlinuxprintutil/bin/fxlputil + ./fxlputil.patch + + # replaces the code that looks for Tcl packages in the working directory and /usr/lib + # or /usr/lib64 with /nix/store/fxlinuxprintutil/lib + ./fxlputil.tcl.patch + + # replaces the code that looks for X11’s locale.alias in /usr/share/X11/locale or + # /usr/lib/X11/locale with /nix/store/libX11/share/X11/locale + (substituteAll { + src = ./fxlocalechk.tcl.patch; + inherit (xorg) libX11; + }) + ]; + + nativeBuildInputs = [ dpkg autoPatchelfHook makeWrapper ]; + buildInputs = [ cups tcl tk ]; + + sourceRoot = "."; + unpackCmd = "dpkg-deb -x $curSrc/${pname}_${version}_${debPlatform}.deb ."; + + dontConfigure = true; + dontBuild = true; + + installPhase = '' + mkdir -p $out + mv usr/bin $out + mv usr/lib $out + + wrapProgram $out/bin/fxlputil --prefix PATH : ${lib.makeBinPath [ tcl tk ]} + ''; + + meta = with stdenv.lib; { + description = "Optional configuration tool for fxlinuxprint"; + homepage = https://onlinesupport.fujixerox.com; + license = licenses.unfree; + maintainers = with maintainers; [ delan ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/misc/fxlinuxprintutil/fxlocalechk.tcl.patch b/pkgs/tools/misc/fxlinuxprintutil/fxlocalechk.tcl.patch new file mode 100644 index 00000000000..fbf211065e9 --- /dev/null +++ b/pkgs/tools/misc/fxlinuxprintutil/fxlocalechk.tcl.patch @@ -0,0 +1,18 @@ +diff --git a/usr/bin/fxlocalechk.tcl b/usr/bin/fxlocalechk.tcl +index f0ebc6c..c3486fe 100755 +--- a/usr/bin/fxlocalechk.tcl ++++ b/usr/bin/fxlocalechk.tcl +@@ -12,12 +12,7 @@ + #THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + #i18N +-#---- check locale with environment variable +-set locale_alias_path /usr/share/X11/locale +- +-if {[file exists $locale_alias_path/locale.alias] != 1} { +- set locale_alias_path /usr/lib/X11/locale +-} ++set locale_alias_path @libX11@/share/X11/locale + + proc conv_locale {alias} { + global env envL locale_alias_path diff --git a/pkgs/tools/misc/fxlinuxprintutil/fxlputil.patch b/pkgs/tools/misc/fxlinuxprintutil/fxlputil.patch new file mode 100644 index 00000000000..972152b2cc3 --- /dev/null +++ b/pkgs/tools/misc/fxlinuxprintutil/fxlputil.patch @@ -0,0 +1,28 @@ +diff --git a/usr/bin/fxlputil b/usr/bin/fxlputil +index cdac66d..aa86d02 100755 +--- a/usr/bin/fxlputil ++++ b/usr/bin/fxlputil +@@ -7,17 +7,19 @@ + # TCL=`which fxlputil` + #fi + ++wrapper=$(dirname $0)/fxlputil ++ + #set LC_ALL +-locale=`tclsh $0lo.tcl` ++locale=`tclsh ${wrapper}lo.tcl` + + case $locale in + "ja") +- env LC_ALL=ja_JP.UTF-8 wish $0.tcl $1 ++ env LC_ALL=ja_JP.UTF-8 wish ${wrapper}.tcl $1 + ;; + "en") +- env LC_ALL=en_US.ISO8859-1 wish $0.tcl $1 ++ env LC_ALL=en_US.ISO8859-1 wish ${wrapper}.tcl $1 + ;; + *) +- env LC_ALL=C wish $0.tcl $1 ++ env LC_ALL=C wish ${wrapper}.tcl $1 + ;; + esac diff --git a/pkgs/tools/misc/fxlinuxprintutil/fxlputil.tcl.patch b/pkgs/tools/misc/fxlinuxprintutil/fxlputil.tcl.patch new file mode 100644 index 00000000000..2bfbab450cb --- /dev/null +++ b/pkgs/tools/misc/fxlinuxprintutil/fxlputil.tcl.patch @@ -0,0 +1,21 @@ +diff --git a/usr/bin/fxlputil.tcl b/usr/bin/fxlputil.tcl +index 02eeaf6..788ed5a 100755 +--- a/usr/bin/fxlputil.tcl ++++ b/usr/bin/fxlputil.tcl +@@ -25,14 +25,8 @@ catch {namespace import combobox::*} + + + +-lappend auto_path $cwd +- +-if {[lsearch $auto_path /usr/lib] == -1} { +- lappend auto_path /usr/lib +-} +-if {[lsearch $auto_path /usr/lib64] == -1} { +- lappend auto_path /usr/lib64 +-} ++# https://stackoverflow.com/a/23287132 ++lappend auto_path [file join [file dirname [file dirname [info script]]] lib] + + package require fxlputil + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 635942018eb..1dff6fdf6d4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -782,6 +782,8 @@ in ezstream = callPackage ../tools/audio/ezstream { }; + fxlinuxprintutil = callPackage ../tools/misc/fxlinuxprintutil { }; + genymotion = callPackage ../development/mobile/genymotion { }; gamecube-tools = callPackage ../development/tools/gamecube-tools { }; From 5cece63aad54a521189cb52dc3fe976a4e15bf15 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 22 Jul 2019 09:04:00 +0000 Subject: [PATCH 0894/1611] github: use the new issue template (#64983) Create new categories for the issues: * Bug report * Packaging request * Security Add metadata information to the issues so that we may match issues to maintainers using a bot in the future. The old `.github/ISSUE_TEMPLATE.md` is being used by the "Open a regular issue." link. --- .github/ISSUE_TEMPLATE.md | 3 +- .github/ISSUE_TEMPLATE/bug_report.md | 37 +++++++++++++++++++++ .github/ISSUE_TEMPLATE/packaging_request.md | 18 ++++++++++ .github/ISSUE_TEMPLATE/security.md | 27 +++++++++++++++ 4 files changed, 83 insertions(+), 2 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/packaging_request.md create mode 100644 .github/ISSUE_TEMPLATE/security.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 466d8d2c359..d7463385ae5 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -8,5 +8,4 @@ ## Technical details -Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the -results. +Please run `nix run nixpkgs.nix-info -c nix-info -m` and paste the result. diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 00000000000..8cc9a80758d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,37 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: '0.kind: bug' +assignees: '' + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. ... +2. ... +3. ... + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Additional context** +Add any other context about the problem here. + +**Metadata** +Please run `nix run nixpkgs.nix-info -c nix-info -m` and paste the result. + +Maintainer information: +```yaml +# a list of nixpkgs attributes affected by the problem +attribute: +# a list of nixos modules affected by the problem +module: +``` diff --git a/.github/ISSUE_TEMPLATE/packaging_request.md b/.github/ISSUE_TEMPLATE/packaging_request.md new file mode 100644 index 00000000000..1ddcd983f31 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/packaging_request.md @@ -0,0 +1,18 @@ +--- +name: Packaging requests +about: For packages that are missing +title: '' +labels: '0.kind: packaging request' +assignees: '' + +--- + +**Project description** +_describe the project a little_ + +**Metadata** + +* homepage URL: +* source URL: +* license: mit, bsd, gpl2+ , ... +* platforms: unix, linux, darwin, ... diff --git a/.github/ISSUE_TEMPLATE/security.md b/.github/ISSUE_TEMPLATE/security.md new file mode 100644 index 00000000000..59e7b64cc66 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/security.md @@ -0,0 +1,27 @@ +--- +name: Security report +about: Report security issues +title: '' +labels: '1.severity: security' +assignees: '' + +--- + +To privately report a security issue with NixOS, Nix, and its ecosystem, +please email a member of the NixOS Security Team and we will ensure the issue +is handled. Our responses will be signed with our GPG keys: +https://nixos.org/nixos/security.html + +**Report** + +CVE: + +**Metadata** + +Maintainer information: +```yaml +# a list of nixpkgs attributes affected by the problem +attribute: +# a list of nixos modules affected by the problem +module: +``` From dd6eea86f8f1a3ae6e02d8a265ab4c4aaf8e3e5e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 22 Jul 2019 04:20:00 -0500 Subject: [PATCH 0895/1611] terraform-lsp: init at 0.0.5 --- .../tools/misc/terraform-lsp/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/tools/misc/terraform-lsp/default.nix diff --git a/pkgs/development/tools/misc/terraform-lsp/default.nix b/pkgs/development/tools/misc/terraform-lsp/default.nix new file mode 100644 index 00000000000..573575f2d4f --- /dev/null +++ b/pkgs/development/tools/misc/terraform-lsp/default.nix @@ -0,0 +1,22 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "terraform-lsp"; + version = "0.0.5"; + + src = fetchFromGitHub { + owner = "juliosueiras"; + repo = pname; + rev = "v${version}"; + sha256 = "018ypvmd9cwys5l7rm1c7b9jf8fljdk0m22id32d88jiw4iwq44m"; + }; + + modSha256 = "1196fn69nnplj7sz5mffawf58j9n7h211shv795gknvfnwavh344"; + + meta = with lib; { + description = "Language Server Protocol for Terraform"; + homepage = "https://github.com/juliosueiras/terraform-lsp"; + license = licenses.mit; + maintainers = [ maintainers.marsam ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9584d65c8d2..577436dbff6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9801,6 +9801,8 @@ in teensy-loader-cli = callPackage ../development/tools/misc/teensy-loader-cli { }; + terraform-lsp = callPackage ../development/tools/misc/terraform-lsp { }; + texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { }; texinfo4 = texinfo413; texinfo5 = callPackage ../development/tools/misc/texinfo/5.2.nix { }; From fbf05d6741ea39597e538108178b7695db0707ee Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 22 Jul 2019 04:20:00 -0500 Subject: [PATCH 0896/1611] rubocop: 0.72.0 -> 0.73.0 --- pkgs/development/tools/rubocop/Gemfile.lock | 2 +- pkgs/development/tools/rubocop/gemset.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rubocop/Gemfile.lock b/pkgs/development/tools/rubocop/Gemfile.lock index 91fca663bf2..5d18d344281 100644 --- a/pkgs/development/tools/rubocop/Gemfile.lock +++ b/pkgs/development/tools/rubocop/Gemfile.lock @@ -7,7 +7,7 @@ GEM parser (2.6.3.0) ast (~> 2.4.0) rainbow (3.0.0) - rubocop (0.72.0) + rubocop (0.73.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.6) diff --git a/pkgs/development/tools/rubocop/gemset.nix b/pkgs/development/tools/rubocop/gemset.nix index 1f83bbf96b7..9eaa50eff95 100644 --- a/pkgs/development/tools/rubocop/gemset.nix +++ b/pkgs/development/tools/rubocop/gemset.nix @@ -56,10 +56,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "192vmm9ah6b4wyabawaszpr8n3z93y3ymykp3m4pncrbwngmn3m2"; + sha256 = "1b5zc8xaqb5krchjrjqj7sc205awmnpksc4ng0rbckd6xcbr7n0f"; type = "gem"; }; - version = "0.72.0"; + version = "0.73.0"; }; ruby-progressbar = { groups = ["default"]; From 94e62564cb9c04e726e1d40c16d7cab211696952 Mon Sep 17 00:00:00 2001 From: Aria Edmonds Date: Mon, 22 Jul 2019 19:18:22 +1000 Subject: [PATCH 0897/1611] ripgrep: turn withPCRE2 on by default This is set by default in archpkgs and debian repos, and would confuse fewer new users. --- pkgs/tools/text/ripgrep/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix index 1563fe744ef..311767a786f 100644 --- a/pkgs/tools/text/ripgrep/default.nix +++ b/pkgs/tools/text/ripgrep/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, rustPlatform, asciidoc, docbook_xsl, libxslt , Security -, withPCRE2 ? false, pcre2 ? null +, withPCRE2 ? true, pcre2 ? null }: rustPlatform.buildRustPackage rec { From 16dec3974696dd2a83865f017402ac9fdfb8cf8a Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sun, 21 Jul 2019 11:53:23 +0200 Subject: [PATCH 0898/1611] haskellPackages.zip-archive: disable tests (cherry picked from commit d6059ae25c6a8e4f4191b568e74087640e07b93f) --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index c975b1e2a2c..5cddf2f3672 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -386,6 +386,7 @@ self: super: { xsd = dontCheck super.xsd; snap-core = dontCheck super.snap-core; sourcemap = dontCheck super.sourcemap; + zip-archive = dontCheck super.zip-archive; # https://github.com/jgm/zip-archive/issues/57 # These test suites run for ages, even on a fast machine. This is nuts. Random123 = dontCheck super.Random123; From bb1a648506b9b8bfdabeb48abe446bfe9eafaccb Mon Sep 17 00:00:00 2001 From: Tmplt Date: Mon, 22 Jul 2019 12:21:57 +0200 Subject: [PATCH 0899/1611] xst: repo owner neeasade -> gnotclub neeasade/xst forwards to gnotclub/xst. --- pkgs/applications/misc/st/xst.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/st/xst.nix b/pkgs/applications/misc/st/xst.nix index b63a41bb915..1a9e3f4ecc1 100644 --- a/pkgs/applications/misc/st/xst.nix +++ b/pkgs/applications/misc/st/xst.nix @@ -9,7 +9,7 @@ in stdenv.mkDerivation { inherit name; src = fetchFromGitHub { - owner = "neeasade"; + owner = "gnotclub"; repo = "xst"; rev = "v${version}"; sha256 = "1fh4y2w0icaij99kihl3w8j5d5b38d72afp17c81pi57f43ss6pc"; From 1885399186c3a36ba661863907cf48a9ddc9d5ff Mon Sep 17 00:00:00 2001 From: David Wood Date: Mon, 22 Jul 2019 11:26:52 +0100 Subject: [PATCH 0900/1611] franz: 5.1.0 -> 5.2.0 --- .../networking/instant-messengers/franz/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/franz/default.nix b/pkgs/applications/networking/instant-messengers/franz/default.nix index 63624146aeb..15cd797dcd2 100644 --- a/pkgs/applications/networking/instant-messengers/franz/default.nix +++ b/pkgs/applications/networking/instant-messengers/franz/default.nix @@ -3,12 +3,12 @@ , gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }: let - version = "5.1.0"; + version = "5.2.0"; in stdenv.mkDerivation rec { name = "franz-${version}"; src = fetchurl { url = "https://github.com/meetfranz/franz/releases/download/v${version}/franz_${version}_amd64.deb"; - sha256 = "a474d2e9c6fb99abfc4c7e9290a0e52eef62233fa25c962afdde75fe151277d0"; + sha256 = "1wlfd1ja38vbjy8y5pg95cpvf5ixkkq53m7v3c24q473jax4ynvg"; }; # don't remove runtime deps From d2144755a41be5e6c866686aabbfb0d4dd79392c Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Sun, 21 Jul 2019 14:07:37 +0900 Subject: [PATCH 0901/1611] nixos-test-driver: allow configuration of net frontend and backend When IPXE tests were added, an option was added for configuring only the frontend, and the backend configuration was dropped entirely. This caused most installer tests to fail. --- nixos/lib/test-driver/Machine.pm | 15 ++++++++++----- nixos/tests/boot.nix | 5 +++-- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/nixos/lib/test-driver/Machine.pm b/nixos/lib/test-driver/Machine.pm index 5e4c14e749f..4d3d63cd2db 100644 --- a/nixos/lib/test-driver/Machine.pm +++ b/nixos/lib/test-driver/Machine.pm @@ -31,12 +31,17 @@ sub new { if (!$startCommand) { # !!! merge with qemu-vm.nix. - my $netArgs = ""; - $netArgs .= ",romfile=$args->{netRomFile}" - if defined $args->{netRomFile}; + my $netBackend = "-netdev user,id=net0"; + my $netFrontend = "-device virtio-net-pci,netdev=net0"; + + $netBackend .= "," . $args->{netBackendArgs} + if defined $args->{netBackendArgs}; + + $netFrontend .= "," . $args->{netFrontendArgs} + if defined $args->{netFrontendArgs}; + $startCommand = - "qemu-kvm -m 384 " . - "-device virtio-net-pci,netdev=net0${netArgs} \$QEMU_OPTS "; + "qemu-kvm -m 384 $netBackend $netFrontend \$QEMU_OPTS "; if (defined $args->{hda}) { if ($args->{hdaInterface} eq "scsi") { diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index 12a34d4401f..7d1b393da1e 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -61,7 +61,8 @@ let ]; }; machineConfig = perlAttrs ({ - qemuFlags = "-boot order=n -netdev user,id=net0,tftp=${ipxeBootDir}/,bootfile=netboot.ipxe -m 2000"; + qemuFlags = "-boot order=n -m 2000"; + netBackendArgs = "tftp=${ipxeBootDir},bootfile=netboot.ipxe"; } // extraConfig); in makeTest { @@ -100,6 +101,6 @@ in { uefiNetboot = makeNetbootTest "uefi" { bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; # Custom ROM is needed for EFI PXE boot. I failed to understand exactly why, because QEMU should still use iPXE for EFI. - netRomFile = ''"${pkgs.ipxe}/ipxe.efirom"''; + netFrontendArgs = ''romfile="${pkgs.ipxe}/ipxe.efirom"''; }; } From 120ce0298ed28ae42b3e32e740d4ca0a8296541d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 15:26:09 -0700 Subject: [PATCH 0902/1611] xastir: 2.1.2 -> 2.1.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/xastir/versions --- pkgs/applications/misc/xastir/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/xastir/default.nix b/pkgs/applications/misc/xastir/default.nix index 987b676034f..4086c0e094a 100644 --- a/pkgs/applications/misc/xastir/default.nix +++ b/pkgs/applications/misc/xastir/default.nix @@ -6,13 +6,13 @@ stdenv.mkDerivation rec { pname = "xastir"; - version = "2.1.2"; + version = "2.1.4"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "Release-${version}"; - sha256 = "1xfzd2m4l0zbb96ak2pniffxdrs9lax0amkxfgdsnyg8x5j0xcxm"; + sha256 = "14f908jy5jzvgm1h1sr47hjqjq3q2nq91byhimk84kj044fn21w9"; }; buildInputs = [ From fd20e227a0c56c48c5c9907bb68b205995c75ee7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Zimmermann?= Date: Mon, 15 Jul 2019 21:36:18 +0200 Subject: [PATCH 0903/1611] coqPackages.math-classes: 8.8.1 -> 8.9.1 Introduces compatibility with Coq 8.10. --- pkgs/development/coq-modules/math-classes/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/coq-modules/math-classes/default.nix b/pkgs/development/coq-modules/math-classes/default.nix index 0fa17e292fa..82802b8f30e 100644 --- a/pkgs/development/coq-modules/math-classes/default.nix +++ b/pkgs/development/coq-modules/math-classes/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "coq${coq.coq-version}-math-classes-${version}"; - version = "8.8.1"; + version = "8.9.1"; src = fetchFromGitHub { owner = "coq-community"; repo = "math-classes"; rev = version; - sha256 = "05vlrrwnlfhd7l3xwn4zwpnkwvziw84zpd9775c6ffb83z48ri1r"; + sha256 = "1lw89js07m1wcaycpnyd85sf0snil2rrsfmry9lna2x66ah1mzn5"; }; buildInputs = [ coq bignums ]; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { }; passthru = { - compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" ]; + compatibleCoqVersions = v: builtins.elem v [ "8.6" "8.7" "8.8" "8.9" "8.10" ]; }; } From 5f4288d49df7b0846e6f10a12997b6234df235b4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 22 Jul 2019 13:21:33 +0300 Subject: [PATCH 0904/1611] boot tests: don't use globbing Turns out I broke all the boot tests except netboot. Instead of relying on build-time search for .iso we can use a proper attribute. --- nixos/tests/boot.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/nixos/tests/boot.nix b/nixos/tests/boot.nix index 7d1b393da1e..57d8006d7ac 100644 --- a/nixos/tests/boot.nix +++ b/nixos/tests/boot.nix @@ -17,7 +17,7 @@ let ]; }).config.system.build.isoImage; - perlAttrs = params: "{ ${concatStringsSep "," (mapAttrsToList (name: param: "${name} => '${toString param}'") params)} }"; + perlAttrs = params: "{ ${concatStringsSep ", " (mapAttrsToList (name: param: "${name} => ${builtins.toJSON param}") params)} }"; makeBootTest = name: extraConfig: let @@ -79,28 +79,28 @@ let in { biosCdrom = makeBootTest "bios-cdrom" { - cdrom = ''glob("${iso}/iso/*.iso")''; + cdrom = "${iso}/iso/${iso.isoName}"; }; biosUsb = makeBootTest "bios-usb" { - usb = ''glob("${iso}/iso/*.iso")''; + usb = "${iso}/iso/${iso.isoName}"; }; uefiCdrom = makeBootTest "uefi-cdrom" { - cdrom = ''glob("${iso}/iso/*.iso"''; - bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + cdrom = "${iso}/iso/${iso.isoName}"; + bios = "${pkgs.OVMF.fd}/FV/OVMF.fd"; }; uefiUsb = makeBootTest "uefi-usb" { - usb = ''glob("${iso}/iso/*.iso")''; - bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + usb = "${iso}/iso/${iso.isoName}"; + bios = "${pkgs.OVMF.fd}/FV/OVMF.fd"; }; biosNetboot = makeNetbootTest "bios" {}; uefiNetboot = makeNetbootTest "uefi" { - bios = ''"${pkgs.OVMF.fd}/FV/OVMF.fd"''; + bios = "${pkgs.OVMF.fd}/FV/OVMF.fd"; # Custom ROM is needed for EFI PXE boot. I failed to understand exactly why, because QEMU should still use iPXE for EFI. - netFrontendArgs = ''romfile="${pkgs.ipxe}/ipxe.efirom"''; + netFrontendArgs = "romfile=${pkgs.ipxe}/ipxe.efirom"; }; } From 6f1a71e995b3ddcf8326c083816ac84ed3b53121 Mon Sep 17 00:00:00 2001 From: Juanjo Presa Date: Mon, 22 Jul 2019 13:47:17 +0200 Subject: [PATCH 0905/1611] python37Packages.pysonos: 0.0.14 -> 0.0.21 --- pkgs/development/python-modules/pysonos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysonos/default.nix b/pkgs/development/python-modules/pysonos/default.nix index ced2906486a..3f4ee6fea28 100644 --- a/pkgs/development/python-modules/pysonos/default.nix +++ b/pkgs/development/python-modules/pysonos/default.nix @@ -13,13 +13,13 @@ buildPythonPackage rec { pname = "pysonos"; - version = "0.0.14"; + version = "0.0.21"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "6ebab661eb3ff9f814139924c18a87d0b1cab8a6af98d323e2b1ee313ed856c9"; + sha256 = "0x2nznjnm721qw9nys5ap3b6hq9s48bsd1yj5xih50pvn0rf0nz2"; }; propagatedBuildInputs = [ xmltodict requests ifaddr ]; From b24841dd2260516bfde0b9029619a0f9ef87e97c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 22 Jul 2019 14:36:43 +0300 Subject: [PATCH 0906/1611] lutris: add multilib dependencies Fix 32-bit Wine, possibly PCSX2. --- pkgs/applications/misc/lutris/chrootenv.nix | 33 +++++++++++---------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/pkgs/applications/misc/lutris/chrootenv.nix b/pkgs/applications/misc/lutris/chrootenv.nix index a02639e1668..ab40dfc8131 100644 --- a/pkgs/applications/misc/lutris/chrootenv.nix +++ b/pkgs/applications/misc/lutris/chrootenv.nix @@ -9,7 +9,6 @@ let xorgDeps = pkgs: with pkgs.xorg; [ libX11 libXrender libXrandr libxcb libXmu libpthreadstubs libXext libXdmcp libXxf86vm libXinerama libSM libXv libXaw libXi libXcursor libXcomposite - xrandr ]; in buildFHSUserEnv { @@ -20,15 +19,6 @@ in buildFHSUserEnv { targetPkgs = pkgs: with pkgs; [ lutris-unwrapped - # Common - libsndfile libtheora libogg libvorbis libopus libGLU libpcap libpulseaudio - libao libusb libevdev libudev libgcrypt libxml2 libusb libpng libmpeg2 libv4l - libjpeg libxkbcommon libass libcdio libjack2 libsamplerate libzip libmad libaio - libcap libtiff libva libgphoto2 libxslt libtxc_dxtn libsndfile giflib zlib glib - alsaLib zziplib bash dbus keyutils zip cabextract freetype unzip coreutils - readline gcc SDL SDL2 curl graphite2 gtk2 gtk3 udev ncurses wayland libglvnd - vulkan-loader xdg_utils sqlite - # Adventure Game Studio allegro dumb @@ -70,8 +60,6 @@ in buildFHSUserEnv { # Osmose qt4 - # PCSX2 // TODO: "libgobject-2.0.so.0: wrong ELF class: ELFCLASS64" - # PPSSPP glew snappy @@ -93,16 +81,31 @@ in buildFHSUserEnv { bison flex # WINE - perl which p7zip gnused gnugrep psmisc cups lcms2 mpg123 cairo unixODBC - samba4 sane-backends openldap opencl-headers ocl-icd utillinux + xorg.xrandr perl which p7zip gnused gnugrep psmisc opencl-headers # ZDOOM soundfont-fluid bzip2 game-music-emu ] ++ qt5Deps pkgs ++ gnome3Deps pkgs - ++ xorgDeps pkgs ++ lib.optional steamSupport pkgs.steam; + multiPkgs = pkgs: with pkgs; [ + # Common + libsndfile libtheora libogg libvorbis libopus libGLU libpcap libpulseaudio + libao libusb libevdev libudev libgcrypt libxml2 libusb libpng libmpeg2 libv4l + libjpeg libxkbcommon libass libcdio libjack2 libsamplerate libzip libmad libaio + libcap libtiff libva libgphoto2 libxslt libtxc_dxtn libsndfile giflib zlib glib + alsaLib zziplib bash dbus keyutils zip cabextract freetype unzip coreutils + readline gcc SDL SDL2 curl graphite2 gtk2 gtk3 udev ncurses wayland libglvnd + vulkan-loader xdg_utils sqlite + + # PCSX2 // TODO: "libgobject-2.0.so.0: wrong ELF class: ELFCLASS64" + + # WINE + cups lcms2 mpg123 cairo unixODBC samba4 sane-backends openldap + ocl-icd utillinux + ] ++ xorgDeps pkgs; + extraInstallCommands = '' mkdir -p $out/share ln -sf ${lutris-unwrapped}/share/applications $out/share From 7136e0d0a6f61734994c566e2cc72fd75733b873 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Mon, 22 Jul 2019 05:02:47 -0700 Subject: [PATCH 0907/1611] bundlerUpdateScript: init and use (#64822) --- .../graphics/image_optim/default.nix | 8 +++--- .../graphics/image_optim/update.sh | 9 ------- pkgs/applications/misc/doing/default.nix | 8 +++--- pkgs/applications/misc/gollum/default.nix | 6 +++-- pkgs/applications/misc/pt/default.nix | 6 +++-- .../applications/misc/taskjuggler/default.nix | 6 +++-- .../cluster/terraform-landscape/default.nix | 7 +++--- .../networking/mailreaders/sup/default.nix | 10 +++----- .../office/ledger-web/default.nix | 6 +++-- pkgs/applications/office/timetrap/default.nix | 6 +++-- .../bitbucket-server-cli/default.nix | 6 +++-- .../git-and-tools/git-fame/default.nix | 6 +++-- .../compilers/matter-compiler/default.nix | 6 +++-- .../ruby-modules/bundler-env/default.nix | 3 ++- .../bundler-update-script/default.nix | 25 +++++++++++++++++++ .../ruby-modules/solargraph/default.nix | 6 +++-- .../tools/build-managers/drake/default.nix | 6 +++-- .../tools/build-managers/rake/default.nix | 6 +++-- pkgs/development/tools/cadre/default.nix | 6 +++-- pkgs/development/tools/cbor-diag/default.nix | 7 +++--- pkgs/development/tools/cddl/default.nix | 7 +++--- pkgs/development/tools/chefdk/default.nix | 12 ++++----- pkgs/development/tools/compass/default.nix | 6 +++-- .../continuous-integration/cide/default.nix | 6 +++-- pkgs/development/tools/corundum/default.nix | 6 +++-- pkgs/development/tools/cucumber/default.nix | 6 +++-- .../github-changelog-generator/default.nix | 6 +++-- pkgs/development/tools/jazzy/default.nix | 6 ++--- pkgs/development/tools/jazzy/update | 10 -------- pkgs/development/tools/jsduck/default.nix | 8 +++--- .../development/tools/misc/mdl/.bundle/config | 3 --- pkgs/development/tools/misc/mdl/default.nix | 6 +++-- .../tools/misc/one_gadget/default.nix | 6 +++-- .../development/tools/misc/travis/default.nix | 11 +++----- .../tools/misc/watson-ruby/default.nix | 6 +++-- pkgs/development/tools/redis-dump/default.nix | 6 +++-- pkgs/development/tools/ronn/default.nix | 6 +++-- pkgs/development/tools/rubocop/default.nix | 4 ++- pkgs/development/tools/sass/default.nix | 6 +++-- pkgs/development/tools/scss-lint/default.nix | 6 +++-- pkgs/development/tools/sqlint/default.nix | 7 +++--- pkgs/development/tools/xcpretty/default.nix | 10 ++------ pkgs/development/web/mailcatcher/default.nix | 6 +++-- pkgs/servers/http/showoff/default.nix | 6 +++-- .../monitoring/riemann-dash/default.nix | 6 +++-- pkgs/servers/monitoring/sensu/default.nix | 6 +++-- pkgs/tools/admin/fastlane/default.nix | 5 +++- pkgs/tools/admin/fastlane/update | 10 -------- pkgs/tools/admin/oxidized/default.nix | 6 +++-- pkgs/tools/backup/lvmsync/default.nix | 6 +++-- pkgs/tools/inputmethods/fusuma/default.nix | 6 +++-- pkgs/tools/misc/docker-sync/default.nix | 6 +++-- pkgs/tools/misc/fluentd/default.nix | 6 +++-- pkgs/tools/misc/homesick/default.nix | 8 +++--- pkgs/tools/misc/lolcat/default.nix | 6 +++-- pkgs/tools/misc/pws/default.nix | 8 +++--- pkgs/tools/misc/riemann-tools/default.nix | 6 +++-- pkgs/tools/misc/t/default.nix | 6 +++-- pkgs/tools/misc/td/default.nix | 6 +++-- pkgs/tools/misc/teamocil/default.nix | 5 +++- pkgs/tools/misc/teamocil/update | 10 -------- pkgs/tools/networking/hue-cli/default.nix | 6 +++-- pkgs/tools/networking/maphosts/default.nix | 6 +++-- .../elm-github-install/default.nix | 8 ++++-- pkgs/tools/package-management/fpm/default.nix | 6 +++-- pkgs/tools/package-management/fpm/update | 10 -------- pkgs/tools/security/bundler-audit/default.nix | 6 +++-- pkgs/tools/system/colorls/default.nix | 6 +++-- pkgs/tools/system/hiera-eyaml/default.nix | 6 +++-- pkgs/tools/system/procodile/default.nix | 6 +++-- pkgs/tools/system/r10k/default.nix | 6 +++-- pkgs/tools/text/bcat/default.nix | 6 +++-- pkgs/tools/text/papertrail/default.nix | 13 ++++++++-- pkgs/tools/text/papertrail/shell.nix | 19 -------------- pkgs/tools/text/reckon/default.nix | 7 ++++-- pkgs/tools/text/ruby-zoom/default.nix | 6 +++-- .../tools/typesetting/asciidoctor/default.nix | 12 +++------ pkgs/tools/typesetting/asciidoctor/update.sh | 6 ----- pkgs/top-level/all-packages.nix | 1 + 79 files changed, 310 insertions(+), 249 deletions(-) delete mode 100755 pkgs/applications/graphics/image_optim/update.sh create mode 100644 pkgs/development/ruby-modules/bundler-update-script/default.nix delete mode 100755 pkgs/development/tools/jazzy/update delete mode 100644 pkgs/development/tools/misc/mdl/.bundle/config delete mode 100755 pkgs/tools/admin/fastlane/update delete mode 100755 pkgs/tools/misc/teamocil/update delete mode 100755 pkgs/tools/package-management/fpm/update delete mode 100644 pkgs/tools/text/papertrail/shell.nix delete mode 100755 pkgs/tools/typesetting/asciidoctor/update.sh diff --git a/pkgs/applications/graphics/image_optim/default.nix b/pkgs/applications/graphics/image_optim/default.nix index c3dffee3aa8..385f9825e46 100644 --- a/pkgs/applications/graphics/image_optim/default.nix +++ b/pkgs/applications/graphics/image_optim/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, ruby, makeWrapper, +{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, withPngcrush ? true, pngcrush ? null, withPngout ? true, pngout ? null, withAdvpng ? true, advancecomp ? null, @@ -45,8 +45,6 @@ bundlerApp { pname = "image_optim"; gemdir = ./.; - inherit ruby; - exes = [ "image_optim" ]; buildInputs = [ makeWrapper ]; @@ -56,11 +54,13 @@ bundlerApp { --prefix PATH : ${makeBinPath optionalDepsPath} ''; + passthru.updateScript = bundlerUpdateScript "image_optim"; + meta = with lib; { description = "Command line tool and ruby interface to optimize (lossless compress, optionally lossy) jpeg, png, gif and svg images using external utilities (advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegrescan, jpegtran, optipng, pngcrush, pngout, pngquant, svgo)"; homepage = https://github.com/toy/image_optim; license = licenses.mit; - maintainers = with maintainers; [ srghma ]; + maintainers = with maintainers; [ srghma nicknovitski ]; platforms = platforms.all; }; } diff --git a/pkgs/applications/graphics/image_optim/update.sh b/pkgs/applications/graphics/image_optim/update.sh deleted file mode 100755 index 8afd7f90436..00000000000 --- a/pkgs/applications/graphics/image_optim/update.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/usr/bin/env nix-shell -#!nix-shell -i bash -p bundix bundler - -SCRIPT_DIR=$(dirname "$(readlink -f "$BASH_SOURCE")") - -cd $SCRIPT_DIR - -bundle lock --update -bundix diff --git a/pkgs/applications/misc/doing/default.nix b/pkgs/applications/misc/doing/default.nix index 9ae2ea41d83..20c802a1cbd 100644 --- a/pkgs/applications/misc/doing/default.nix +++ b/pkgs/applications/misc/doing/default.nix @@ -1,8 +1,6 @@ -{ lib, bundlerEnv, ruby +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: -# Bundix: -# nix-shell -p bundix zlib bundlerEnv rec { pname = "doing"; version = (import ./gemset.nix).doing.version; @@ -10,6 +8,8 @@ bundlerEnv rec { inherit ruby; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "doing"; + meta = with lib; { description = "A command line tool for keeping track of what you’re doing and tracking what you’ve done."; longDescription = '' @@ -19,7 +19,7 @@ bundlerEnv rec { ''; homepage = https://brettterpstra.com/projects/doing/; license = licenses.mit; - maintainers = with maintainers; [ ktf ]; + maintainers = with maintainers; [ ktf nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/misc/gollum/default.nix b/pkgs/applications/misc/gollum/default.nix index 4a0a4e38a61..62f2d7a069d 100644 --- a/pkgs/applications/misc/gollum/default.nix +++ b/pkgs/applications/misc/gollum/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bundlerEnv, ruby, makeWrapper +{ stdenv, bundlerEnv, ruby, makeWrapper, bundlerUpdateScript , git }: stdenv.mkDerivation rec { @@ -23,11 +23,13 @@ stdenv.mkDerivation rec { --prefix PATH ":" ${stdenv.lib.makeBinPath [ git ]} ''; + passthru.updateScript = bundlerUpdateScript "gollum"; + meta = with stdenv.lib; { description = "A simple, Git-powered wiki"; homepage = https://github.com/gollum/gollum; license = licenses.mit; - maintainers = with maintainers; [ jgillich primeos ]; + maintainers = with maintainers; [ jgillich primeos nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/misc/pt/default.nix b/pkgs/applications/misc/pt/default.nix index 6f9078bb50a..f5504721987 100644 --- a/pkgs/applications/misc/pt/default.nix +++ b/pkgs/applications/misc/pt/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "pt"; gemdir = ./.; exes = [ "pt" ]; + passthru.updateScript = bundlerUpdateScript "pt"; + meta = with lib; { description = "Minimalist command-line Pivotal Tracker client"; homepage = http://www.github.com/raul/pt; license = licenses.mit; - maintainers = with maintainers; [ ebzzry manveru ]; + maintainers = with maintainers; [ ebzzry manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/misc/taskjuggler/default.nix b/pkgs/applications/misc/taskjuggler/default.nix index 1b3bacf71df..838cc199a6c 100644 --- a/pkgs/applications/misc/taskjuggler/default.nix +++ b/pkgs/applications/misc/taskjuggler/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "taskjuggler"; @@ -9,11 +9,13 @@ bundlerApp { "tj3ts_receiver" "tj3ts_sender" "tj3ts_summary" "tj3webd" ]; + passthru.updateScript = bundlerUpdateScript "taskjuggler"; + meta = with lib; { description = "A modern and powerful project management tool"; homepage = http://taskjuggler.org/; license = licenses.gpl2; platforms = platforms.unix; - maintainers = [ maintainers.manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; }; } diff --git a/pkgs/applications/networking/cluster/terraform-landscape/default.nix b/pkgs/applications/networking/cluster/terraform-landscape/default.nix index 1380005a1c1..6973938b60d 100644 --- a/pkgs/applications/networking/cluster/terraform-landscape/default.nix +++ b/pkgs/applications/networking/cluster/terraform-landscape/default.nix @@ -1,17 +1,18 @@ -{ lib, bundlerApp, ruby }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "terraform_landscape"; - inherit ruby; gemdir = ./.; exes = [ "landscape" ]; + passthru.updateScript = bundlerUpdateScript "terraform-landscape"; + meta = with lib; { description = "Improve Terraform's plan output to be easier to read and understand"; homepage = https://github.com/coinbase/terraform-landscape; license = with licenses; apsl20; - maintainers = with maintainers; [ mbode manveru ]; + maintainers = with maintainers; [ mbode manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/networking/mailreaders/sup/default.nix b/pkgs/applications/networking/mailreaders/sup/default.nix index f7b7d6e8c3d..ccd092ba63c 100644 --- a/pkgs/applications/networking/mailreaders/sup/default.nix +++ b/pkgs/applications/networking/mailreaders/sup/default.nix @@ -1,8 +1,4 @@ -{ lib, bundlerApp }: - -# Updated with: -# rm gemset.nix Gemfile.lock -# nix-shell -p bundler bundix --run 'bundle lock && bundix' +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "sup"; @@ -20,11 +16,13 @@ bundlerApp { "sup-tweak-labels" ]; + passthru.updateScript = bundlerUpdateScript "sup"; + meta = with lib; { description = "A curses threads-with-tags style email client"; homepage = http://sup-heliotrope.github.io; license = licenses.gpl2; - maintainers = with maintainers; [ cstrahan lovek323 manveru ]; + maintainers = with maintainers; [ cstrahan lovek323 manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/office/ledger-web/default.nix b/pkgs/applications/office/ledger-web/default.nix index 13c559cfac1..df8298579e8 100644 --- a/pkgs/applications/office/ledger-web/default.nix +++ b/pkgs/applications/office/ledger-web/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp +{ lib, bundlerApp, bundlerUpdateScript , withPostgresql ? true, postgresql , withSqlite ? false, sqlite }: @@ -11,11 +11,13 @@ bundlerApp rec { buildInputs = lib.optional withPostgresql postgresql ++ lib.optional withSqlite sqlite; + passthru.updateScript = bundlerUpdateScript "ledger-web"; + meta = with lib; { description = "A web frontend to the Ledger CLI tool"; homepage = https://github.com/peterkeen/ledger-web; license = licenses.mit; - maintainers = with maintainers; [ peterhoeg manveru ]; + maintainers = with maintainers; [ peterhoeg manveru nicknovitski ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/office/timetrap/default.nix b/pkgs/applications/office/timetrap/default.nix index efeb23b3e83..6d094ecb5dc 100644 --- a/pkgs/applications/office/timetrap/default.nix +++ b/pkgs/applications/office/timetrap/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "timetrap"; gemdir = ./.; exes = [ "t" "timetrap" ]; + passthru.updateScript = bundlerUpdateScript "timetrap"; + meta = with lib; { description = "A simple command line time tracker written in ruby"; homepage = https://github.com/samg/timetrap; license = licenses.mit; - maintainers = with maintainers; [ jerith666 manveru ]; + maintainers = with maintainers; [ jerith666 manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix b/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix index 341b50f0ef2..fda89e33180 100644 --- a/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix +++ b/pkgs/applications/version-management/git-and-tools/bitbucket-server-cli/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv rec { name = "bitbucket-server-cli-${version}"; @@ -9,11 +9,13 @@ bundlerEnv rec { pname = "atlassian-stash"; + passthru.updateScript = bundlerUpdateScript "gitAndTools.bitbucket-server-cli"; + meta = with lib; { description = "A command line interface to interact with BitBucket Server (formerly Atlassian Stash)"; homepage = https://bitbucket.org/atlassian/bitbucket-server-cli; license = licenses.mit; - maintainers = with maintainers; [ jgertm ]; + maintainers = with maintainers; [ jgertm nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/applications/version-management/git-and-tools/git-fame/default.nix b/pkgs/applications/version-management/git-and-tools/git-fame/default.nix index 9ca7a67a53e..2d6de24167b 100644 --- a/pkgs/applications/version-management/git-and-tools/git-fame/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-fame/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bundlerEnv, ruby }: +{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv rec { inherit ruby; @@ -7,13 +7,15 @@ bundlerEnv rec { gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "gitAndTools.git-fame"; + meta = with stdenv.lib; { description = '' A command-line tool that helps you summarize and pretty-print collaborators based on contributions ''; homepage = http://oleander.io/git-fame-rb; license = licenses.mit; - maintainers = with maintainers; [ expipiplus1 ]; + maintainers = with maintainers; [ expipiplus1 nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/compilers/matter-compiler/default.nix b/pkgs/development/compilers/matter-compiler/default.nix index 4b3ff844977..f415fa8c012 100644 --- a/pkgs/development/compilers/matter-compiler/default.nix +++ b/pkgs/development/compilers/matter-compiler/default.nix @@ -1,10 +1,12 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "matter_compiler"; gemdir = ./.; exes = [ "matter_compiler" ]; + passthru.updateScript = bundlerUpdateScript "matter-compiler"; + meta = with lib; { description = '' Matter Compiler is a API Blueprint AST Media Types to API Blueprint conversion tool. @@ -12,7 +14,7 @@ bundlerApp { ''; homepage = https://github.com/apiaryio/matter_compiler/; license = licenses.mit; - maintainers = with maintainers; [ rvlander manveru ]; + maintainers = with maintainers; [ rvlander manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/ruby-modules/bundler-env/default.nix b/pkgs/development/ruby-modules/bundler-env/default.nix index 5d1489ba200..b3f91b678c4 100644 --- a/pkgs/development/ruby-modules/bundler-env/default.nix +++ b/pkgs/development/ruby-modules/bundler-env/default.nix @@ -13,6 +13,7 @@ , document ? [] , meta ? {} , ignoreCollisions ? false +, passthru ? {} , ... }@args: @@ -55,5 +56,5 @@ in passthru = basicEnv.passthru // { inherit basicEnv; inherit (basicEnv) env; - }; + } // passthru; }) diff --git a/pkgs/development/ruby-modules/bundler-update-script/default.nix b/pkgs/development/ruby-modules/bundler-update-script/default.nix new file mode 100644 index 00000000000..50d0364aa06 --- /dev/null +++ b/pkgs/development/ruby-modules/bundler-update-script/default.nix @@ -0,0 +1,25 @@ +{ runtimeShell, lib, writeScript, bundix, bundler, bundler-audit, coreutils, git, nix }: + +attrPath: + +let + updateScript = writeScript "bundler-update-script" '' + #!${runtimeShell} + PATH=${lib.makeBinPath [ bundler bundler-audit bundix coreutils git nix ]} + set -o errexit + set -o nounset + set -o pipefail + + attrPath=$1 + + toplevel=$(git rev-parse --show-toplevel) + position=$(nix eval -f "$toplevel" --raw "$attrPath.meta.position") + gemdir=$(dirname "$position") + + cd "$gemdir" + + bundler lock --update + bundler-audit check --update + bundix + ''; +in [ updateScript attrPath ] diff --git a/pkgs/development/ruby-modules/solargraph/default.nix b/pkgs/development/ruby-modules/solargraph/default.nix index 2f60dacd358..0cfd8c5d66b 100644 --- a/pkgs/development/ruby-modules/solargraph/default.nix +++ b/pkgs/development/ruby-modules/solargraph/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp rec { pname = "solargraph"; exes = ["solargraph" "solargraph-runtime"]; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "solargraph"; + meta = with lib; { description = "IDE tools for the Ruby language"; homepage = http://www.github.com/castwide/solargraph; license = licenses.mit; - maintainers = with maintainers; [ worldofpeace ]; + maintainers = with maintainers; [ worldofpeace nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/build-managers/drake/default.nix b/pkgs/development/tools/build-managers/drake/default.nix index a7bb93d52ed..15fc682a315 100644 --- a/pkgs/development/tools/build-managers/drake/default.nix +++ b/pkgs/development/tools/build-managers/drake/default.nix @@ -1,14 +1,16 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "drake"; gemdir = ./.; exes = [ "drake" ]; + passthru.updateScript = bundlerUpdateScript "drake"; + meta = with lib; { description = "A branch of Rake supporting automatic parallelizing of tasks"; homepage = http://quix.github.io/rake/; - maintainers = with maintainers; [ romildo manveru ]; + maintainers = with maintainers; [ romildo manveru nicknovitski ]; license = licenses.mit; platforms = platforms.unix; }; diff --git a/pkgs/development/tools/build-managers/rake/default.nix b/pkgs/development/tools/build-managers/rake/default.nix index 8de0130d31b..2ce65b28fae 100644 --- a/pkgs/development/tools/build-managers/rake/default.nix +++ b/pkgs/development/tools/build-managers/rake/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "rake"; gemdir = ./.; exes = [ "rake" ]; + passthru.updateScript = bundlerUpdateScript "rake"; + meta = with lib; { description = "A software task management and build automation tool"; homepage = https://github.com/ruby/rake; license = with licenses; mit; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/cadre/default.nix b/pkgs/development/tools/cadre/default.nix index 93eb32cfb51..77b49107e16 100644 --- a/pkgs/development/tools/cadre/default.nix +++ b/pkgs/development/tools/cadre/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "cadre"; gemdir = ./.; exes = [ "cadre" ]; + passthru.updateScript = bundlerUpdateScript "cadre"; + meta = with lib; { description = "Toolkit to add Ruby development - in-editor coverage, libnotify of test runs"; homepage = https://github.com/nyarly/cadre; license = licenses.mit; - maintainers = [ maintainers.nyarly ]; + maintainers = with maintainers; [ nyarly nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/cbor-diag/default.nix b/pkgs/development/tools/cbor-diag/default.nix index 049d9f38c0c..7942ff52645 100644 --- a/pkgs/development/tools/cbor-diag/default.nix +++ b/pkgs/development/tools/cbor-diag/default.nix @@ -1,9 +1,8 @@ -{ lib, bundlerApp, ruby }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "cbor-diag"; - inherit ruby; gemdir = ./.; exes = [ @@ -20,11 +19,13 @@ bundlerApp { "yaml2cbor.rb" ]; + passthru.updateScript = bundlerUpdateScript "cbor-diag"; + meta = with lib; { description = "CBOR diagnostic utilities"; homepage = https://github.com/cabo/cbor-diag; license = with licenses; asl20; - maintainers = with maintainers; [ fdns ]; + maintainers = with maintainers; [ fdns nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/cddl/default.nix b/pkgs/development/tools/cddl/default.nix index 37ad593d796..60e7edc7520 100644 --- a/pkgs/development/tools/cddl/default.nix +++ b/pkgs/development/tools/cddl/default.nix @@ -1,17 +1,18 @@ -{ lib, bundlerApp, ruby }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "cddl"; - inherit ruby; gemdir = ./.; exes = [ "cddl" ]; + passthru.updateScript = bundlerUpdateScript "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 ]; + maintainers = with maintainers; [ fdns nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/chefdk/default.nix b/pkgs/development/tools/chefdk/default.nix index 1d81d469eb2..921448855a6 100644 --- a/pkgs/development/tools/chefdk/default.nix +++ b/pkgs/development/tools/chefdk/default.nix @@ -1,20 +1,20 @@ -{ lib, bundlerEnv, ruby_2_4, perl, autoconf }: +{ lib, bundlerEnv, bundlerUpdateScript, ruby_2_4, perl, autoconf }: -bundlerEnv { - # Last updated via: - # nix-shell -p bundix -p gcc -p libxml2 -p zlib --run "bundix -mdl" - name = "chefdk-2.4.17"; +bundlerEnv rec { + pname = "chef-dk"; ruby = ruby_2_4; gemdir = ./.; buildInputs = [ perl autoconf ]; + passthru.updateScript = bundlerUpdateScript "chefdk"; + meta = with lib; { description = "A streamlined development and deployment workflow for Chef platform"; homepage = https://downloads.chef.io/chef-dk/; license = licenses.asl20; - maintainers = with maintainers; [ offline ]; + maintainers = with maintainers; [ offline nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/compass/default.nix b/pkgs/development/tools/compass/default.nix index c47bddd4d9c..516900c2067 100644 --- a/pkgs/development/tools/compass/default.nix +++ b/pkgs/development/tools/compass/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "compass"; gemdir = ./.; exes = [ "compass" ]; + passthru.updateScript = bundlerUpdateScript "compass"; + meta = with lib; { description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain"; homepage = https://github.com/Compass/compass; license = with licenses; mit; - maintainers = with maintainers; [ offline manveru ]; + maintainers = with maintainers; [ offline manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/continuous-integration/cide/default.nix b/pkgs/development/tools/continuous-integration/cide/default.nix index 932a02cf2bc..fe83a9aa170 100644 --- a/pkgs/development/tools/continuous-integration/cide/default.nix +++ b/pkgs/development/tools/continuous-integration/cide/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundlerEnv, makeWrapper, docker, git, gnutar, gzip }: +{ stdenv, lib, bundlerEnv, bundlerUpdateScript, makeWrapper, docker, git, gnutar, gzip }: stdenv.mkDerivation rec { name = "cide-${version}"; @@ -20,11 +20,13 @@ stdenv.mkDerivation rec { --set PATH ${stdenv.lib.makeBinPath [ docker git gnutar gzip ]} ''; + passthru.updateScript = bundlerUpdateScript "cide"; + meta = with lib; { description = "Isolated test runner with Docker"; homepage = http://zimbatm.github.io/cide/; license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with maintainers; [ zimbatm nicknovitski ]; platforms = docker.meta.platforms; }; } diff --git a/pkgs/development/tools/corundum/default.nix b/pkgs/development/tools/corundum/default.nix index 22d7b236ffa..0d1c6985663 100644 --- a/pkgs/development/tools/corundum/default.nix +++ b/pkgs/development/tools/corundum/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "corundum"; gemdir = ./.; exes = [ "corundum-skel" ]; + passthru.updateScript = bundlerUpdateScript "corundum"; + meta = with lib; { description = "Tool and libraries for maintaining Ruby gems."; homepage = https://github.com/nyarly/corundum; license = licenses.mit; - maintainers = [ maintainers.nyarly ]; + maintainers = with maintainers; [ nyarly nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/cucumber/default.nix b/pkgs/development/tools/cucumber/default.nix index 4a3ed739550..15db6013deb 100644 --- a/pkgs/development/tools/cucumber/default.nix +++ b/pkgs/development/tools/cucumber/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "cucumber"; gemdir = ./.; exes = [ "cucumber" ]; + passthru.updateScript = bundlerUpdateScript "cucumber"; + meta = with lib; { description = "A tool for executable specifications"; homepage = https://cucumber.io/; license = with licenses; mit; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/github-changelog-generator/default.nix b/pkgs/development/tools/github-changelog-generator/default.nix index 02de300138d..39aab9cfa27 100644 --- a/pkgs/development/tools/github-changelog-generator/default.nix +++ b/pkgs/development/tools/github-changelog-generator/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp}: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp rec { pname = "github_changelog_generator"; gemdir = ./.; exes = [ "github_changelog_generator" ]; + passthru.updateScript = bundlerUpdateScript "github-changelog-generator"; + meta = with lib; { description = "Fully automated changelog generation - This gem generates a changelog file based on tags, issues and merged pull requests"; homepage = https://github.com/github-changelog-generator/github-changelog-generator; license = licenses.mit; - maintainers = with maintainers; [ Scriptkiddi ]; + maintainers = with maintainers; [ Scriptkiddi nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/jazzy/default.nix b/pkgs/development/tools/jazzy/default.nix index 7fff98e0325..ad71dfb22a8 100644 --- a/pkgs/development/tools/jazzy/default.nix +++ b/pkgs/development/tools/jazzy/default.nix @@ -1,12 +1,11 @@ -{ lib, bundlerApp, ruby }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp rec { - inherit ruby; pname = "jazzy"; gemdir = ./.; exes = [ "jazzy" ]; - passthru.updateScript = ./update; + passthru.updateScript = bundlerUpdateScript "jazzy"; meta = with lib; { description = "A command-line utility that generates documentation for Swift or Objective-C"; @@ -16,6 +15,7 @@ bundlerApp rec { maintainers = with maintainers; [ peterromfeldhk lilyball + nicknovitski ]; }; } diff --git a/pkgs/development/tools/jazzy/update b/pkgs/development/tools/jazzy/update deleted file mode 100755 index 1f0d11c7dde..00000000000 --- a/pkgs/development/tools/jazzy/update +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p bash bundler bundix - -set -e - -cd "$(dirname "${BASH_SOURCE[0]}")" - -rm -f Gemfile.lock -bundler lock -bundix diff --git a/pkgs/development/tools/jsduck/default.nix b/pkgs/development/tools/jsduck/default.nix index ef89517966d..dc8e618910c 100644 --- a/pkgs/development/tools/jsduck/default.nix +++ b/pkgs/development/tools/jsduck/default.nix @@ -1,9 +1,9 @@ -{ stdenv, lib, bundlerEnv, makeWrapper, }: +{ stdenv, lib, bundlerEnv, makeWrapper, bundlerUpdateScript }: stdenv.mkDerivation rec { pname = "jsduck"; name = "${pname}-${version}"; - version = "5.3.4"; + version = (import ./gemset.nix).jsduck.version; env = bundlerEnv { name = "${pname}"; @@ -21,11 +21,13 @@ stdenv.mkDerivation rec { makeWrapper ${env}/bin/jsduck $out/bin/jsduck ''; + passthru.updateScript = bundlerUpdateScript "jsduck"; + meta = with lib; { description = "Simple JavaScript Duckumentation generator."; homepage = https://github.com/senchalabs/jsduck; license = with licenses; gpl3; - maintainers = with stdenv.lib.maintainers; [ periklis ]; + maintainers = with maintainers; [ periklis nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/misc/mdl/.bundle/config b/pkgs/development/tools/misc/mdl/.bundle/config deleted file mode 100644 index d28c8337bc4..00000000000 --- a/pkgs/development/tools/misc/mdl/.bundle/config +++ /dev/null @@ -1,3 +0,0 @@ ---- -BUNDLE_PATH: "vendor/bundle" -BUNDLE_CACHE_ALL: "true" diff --git a/pkgs/development/tools/misc/mdl/default.nix b/pkgs/development/tools/misc/mdl/default.nix index f0aca5c36a1..eda2fabd9c6 100644 --- a/pkgs/development/tools/misc/mdl/default.nix +++ b/pkgs/development/tools/misc/mdl/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "mdl"; gemdir = ./.; exes = [ "mdl" ]; + passthru.updateScript = bundlerUpdateScript "mdl"; + meta = with lib; { description = "A tool to check markdown files and flag style issues"; homepage = https://github.com/markdownlint/markdownlint; license = licenses.mit; - maintainers = with maintainers; [ gerschtli manveru ]; + maintainers = with maintainers; [ gerschtli manveru nicknovitski ]; platforms = platforms.all; }; } diff --git a/pkgs/development/tools/misc/one_gadget/default.nix b/pkgs/development/tools/misc/one_gadget/default.nix index cf4a719292c..1c2cbe35439 100644 --- a/pkgs/development/tools/misc/one_gadget/default.nix +++ b/pkgs/development/tools/misc/one_gadget/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "one_gadget"; gemdir = ./.; exes = [ "one_gadget" ]; + passthru.updateScript = bundlerUpdateScript "one_gadget"; + meta = with lib; { description = "The best tool for finding one gadget RCE in libc.so.6"; homepage = https://github.com/david942j/one_gadget; license = licenses.mit; - maintainers = [ maintainers.artemist ]; + maintainers = with maintainers; [ artemist nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/misc/travis/default.nix b/pkgs/development/tools/misc/travis/default.nix index b5c5740e80f..9020766fd86 100644 --- a/pkgs/development/tools/misc/travis/default.nix +++ b/pkgs/development/tools/misc/travis/default.nix @@ -1,19 +1,16 @@ -{ lib, bundlerEnv, ruby }: - -# Maintainer notes for updating -# 1. increment version number in Gemfile -# 2. run $ nix-shell --command "bundler install && bundix" -# in the travis directory in nixpkgs +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv { inherit ruby; pname = "travis"; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "travis"; + meta = with lib; { description = "CLI and Ruby client library for Travis CI"; homepage = https://github.com/travis-ci/travis.rb; license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with maintainers; [ zimbatm nicknovitski ]; }; } diff --git a/pkgs/development/tools/misc/watson-ruby/default.nix b/pkgs/development/tools/misc/watson-ruby/default.nix index 32f94a1f228..d6b8eb5b95f 100644 --- a/pkgs/development/tools/misc/watson-ruby/default.nix +++ b/pkgs/development/tools/misc/watson-ruby/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bundlerEnv, ruby }: +{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }: stdenv.mkDerivation rec { @@ -19,11 +19,13 @@ stdenv.mkDerivation rec { ln -s ${env}/bin/watson $out/bin/watson ''; + passthru.updateScript = bundlerUpdateScript "watson-ruby"; + meta = with stdenv.lib; { description = "An inline issue manager"; homepage = http://goosecode.com/watson/; license = with licenses; mit; - maintainers = with maintainers; [ robertodr ]; + maintainers = with maintainers; [ robertodr nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/redis-dump/default.nix b/pkgs/development/tools/redis-dump/default.nix index c8311786010..646d04c266f 100644 --- a/pkgs/development/tools/redis-dump/default.nix +++ b/pkgs/development/tools/redis-dump/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "redis-dump"; gemdir = ./.; exes = [ "redis-dump" ]; + passthru.updateScript = bundlerUpdateScript "redis-dump"; + meta = with lib; { description = "Backup and restore your Redis data to and from JSON"; homepage = http://delanotes.com/redis-dump/; license = licenses.mit; - maintainers = with maintainers; [ offline manveru ]; + maintainers = with maintainers; [ offline manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/ronn/default.nix b/pkgs/development/tools/ronn/default.nix index 5f20e89d408..499cec2e6a7 100644 --- a/pkgs/development/tools/ronn/default.nix +++ b/pkgs/development/tools/ronn/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundlerEnv, makeWrapper, groff }: +{ stdenv, lib, bundlerEnv, bundlerUpdateScript, makeWrapper, groff }: stdenv.mkDerivation rec { name = "ronn-${version}"; @@ -19,11 +19,13 @@ stdenv.mkDerivation rec { --set PATH ${groff}/bin ''; + passthru.updateScript = bundlerUpdateScript "ronn"; + meta = with lib; { description = "markdown-based tool for building manpages"; homepage = https://rtomayko.github.io/ronn/; license = licenses.mit; - maintainers = with maintainers; [ zimbatm ]; + maintainers = with maintainers; [ zimbatm nicknovitski ]; platforms = env.ruby.meta.platforms; }; } diff --git a/pkgs/development/tools/rubocop/default.nix b/pkgs/development/tools/rubocop/default.nix index b91a36cb061..5d965fc87a7 100644 --- a/pkgs/development/tools/rubocop/default.nix +++ b/pkgs/development/tools/rubocop/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv rec { pname = "rubocop"; @@ -7,6 +7,8 @@ bundlerEnv rec { gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "rubocop"; + meta = with lib; { description = "Automatic Ruby code style checking tool"; homepage = "https://docs.rubocop.org/"; diff --git a/pkgs/development/tools/sass/default.nix b/pkgs/development/tools/sass/default.nix index c204ba8cd40..6d9a7f1c080 100644 --- a/pkgs/development/tools/sass/default.nix +++ b/pkgs/development/tools/sass/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "sass"; gemdir = ./.; exes = [ "sass" "sass-convert" "scss" ]; + passthru.updateScript = bundlerUpdateScript "sass"; + meta = with lib; { description = "Tools and Ruby libraries for the CSS3 extension languages: Sass and SCSS"; homepage = https://sass-lang.com; license = licenses.mit; - maintainers = with maintainers; [ romildo manveru ]; + maintainers = with maintainers; [ romildo manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/scss-lint/default.nix b/pkgs/development/tools/scss-lint/default.nix index d1d0dbababa..8d17969b55e 100644 --- a/pkgs/development/tools/scss-lint/default.nix +++ b/pkgs/development/tools/scss-lint/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "scss_lint"; gemdir = ./.; exes = [ "scss-lint" ]; + passthru.updateScript = bundlerUpdateScript "scss-lint"; + meta = with lib; { description = "A tool to help keep your SCSS files clean and readable"; homepage = https://github.com/brigade/scss-lint; license = licenses.mit; - maintainers = [ maintainers.lovek323 ]; + maintainers = with maintainers; [ lovek323 nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/tools/sqlint/default.nix b/pkgs/development/tools/sqlint/default.nix index 67fbd09f102..d7ff9199460 100644 --- a/pkgs/development/tools/sqlint/default.nix +++ b/pkgs/development/tools/sqlint/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, fetchurl, ruby }: +{ lib, bundlerApp, fetchurl, bundlerUpdateScript }: let LIB_PG_QUERY_TAG = "10-1.0.1"; @@ -10,7 +10,6 @@ let in bundlerApp { pname = "sqlint"; gemdir = ./.; - inherit ruby; exes = [ "sqlint" ]; @@ -24,11 +23,13 @@ in bundlerApp { }; }; + passthru.updateScript = bundlerUpdateScript "sqlint"; + meta = with lib; { description = "Simple SQL linter"; homepage = https://github.com/purcell/sqlint; license = licenses.mit; - maintainers = with maintainers; [ ariutta ]; + maintainers = with maintainers; [ ariutta nicknovitski ]; platforms = with platforms; [ "x86_64-linux" "x86_64-darwin" ]; }; } diff --git a/pkgs/development/tools/xcpretty/default.nix b/pkgs/development/tools/xcpretty/default.nix index 99af752086f..84a6798afe3 100644 --- a/pkgs/development/tools/xcpretty/default.nix +++ b/pkgs/development/tools/xcpretty/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, bundler, bundix }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "xcpretty"; @@ -7,13 +7,7 @@ bundlerApp { exes = [ "xcpretty" ]; passthru = { - updateScript = '' - set -e - echo - cd ${toString ./.} - ${bundler}/bin/bundle lock --update - ${bundix}/bin/bundix - ''; + updateScript = bundlerUpdateScript "xcpretty"; }; meta = with lib; { diff --git a/pkgs/development/web/mailcatcher/default.nix b/pkgs/development/web/mailcatcher/default.nix index a2fa509232d..f960fe19278 100644 --- a/pkgs/development/web/mailcatcher/default.nix +++ b/pkgs/development/web/mailcatcher/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "mailcatcher"; gemdir = ./.; exes = [ "mailcatcher" "catchmail" ]; + passthru.updateScript = bundlerUpdateScript "mailcatcher"; + meta = with lib; { description = "SMTP server and web interface to locally test outbound emails"; homepage = https://mailcatcher.me/; license = licenses.mit; - maintainers = [ maintainers.zarelit ]; + maintainers = with maintainers; [ zarelit nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/servers/http/showoff/default.nix b/pkgs/servers/http/showoff/default.nix index 79b92bdd7c5..136fcb3e07c 100644 --- a/pkgs/servers/http/showoff/default.nix +++ b/pkgs/servers/http/showoff/default.nix @@ -1,16 +1,18 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "showoff"; gemdir = ./.; exes = [ "showoff" ]; + passthru.updateScript = bundlerUpdateScript "showoff"; + meta = with lib; { description = "A slideshow presentation tool with a twist"; longDescription = "It runs as a web application, with audience interactivity features. This means that your audience can follow along in their own browsers, can download supplemental materials, can participate in quizzes or polls, post questions for the presenter, etc. By default, their slideshows will synchronize with the presenter, but they can switch to self-navigation mode"; homepage = https://puppetlabs.github.io/showoff/; license = with licenses; mit; platforms = platforms.unix; - maintainers = with maintainers; [ mwilsoninsight ]; + maintainers = with maintainers; [ mwilsoninsight nicknovitski ]; }; } diff --git a/pkgs/servers/monitoring/riemann-dash/default.nix b/pkgs/servers/monitoring/riemann-dash/default.nix index 6e0e97c7cc6..943fa0af63f 100644 --- a/pkgs/servers/monitoring/riemann-dash/default.nix +++ b/pkgs/servers/monitoring/riemann-dash/default.nix @@ -1,15 +1,17 @@ -{ bundlerApp, lib }: +{ bundlerApp, lib, bundlerUpdateScript }: bundlerApp { pname = "riemann-dash"; gemdir = ./.; exes = [ "riemann-dash" ]; + passthru.updateScript = bundlerUpdateScript "riemann-dash"; + meta = with lib; { description = "A javascript, websockets-powered dashboard for Riemann"; homepage = https://github.com/riemann/riemann-dash; license = licenses.mit; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/servers/monitoring/sensu/default.nix b/pkgs/servers/monitoring/sensu/default.nix index f1a6a08267d..82c52b18d40 100644 --- a/pkgs/servers/monitoring/sensu/default.nix +++ b/pkgs/servers/monitoring/sensu/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "sensu"; @@ -42,11 +42,13 @@ bundlerApp { "check-systemd.rb" ]; + passthru.updateScript = bundlerUpdateScript "sensu"; + meta = with lib; { description = "A monitoring framework that aims to be simple, malleable, and scalable"; homepage = https://sensuapp.org/; license = licenses.mit; - maintainers = with maintainers; [ theuni peterhoeg manveru ]; + maintainers = with maintainers; [ theuni peterhoeg manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/admin/fastlane/default.nix b/pkgs/tools/admin/fastlane/default.nix index 8aba7524008..3dbc8eea87b 100644 --- a/pkgs/tools/admin/fastlane/default.nix +++ b/pkgs/tools/admin/fastlane/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bundlerEnv, ruby, makeWrapper }: +{ stdenv, bundlerEnv, ruby, bundlerUpdateScript, makeWrapper }: stdenv.mkDerivation rec { name = "${pname}-${version}"; @@ -21,6 +21,8 @@ stdenv.mkDerivation rec { --set FASTLANE_SKIP_UPDATE_CHECK 1 ''; + passthru.updateScript = bundlerUpdateScript "fastlane"; + meta = with stdenv.lib; { description = "A tool to automate building and releasing iOS and Android apps"; longDescription = "fastlane is a tool for iOS and Android developers to automate tedious tasks like generating screenshots, dealing with provisioning profiles, and releasing your application."; @@ -28,6 +30,7 @@ stdenv.mkDerivation rec { license = licenses.mit; maintainers = with maintainers; [ peterromfeldhk + nicknovitski ]; }; } diff --git a/pkgs/tools/admin/fastlane/update b/pkgs/tools/admin/fastlane/update deleted file mode 100755 index 22d1e52e297..00000000000 --- a/pkgs/tools/admin/fastlane/update +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p bash ruby bundler bundix - -rm Gemfile.lock -bundler install -bundix - -if [ "clean" == "$1" ]; then - rm -r ~/.gem -fi diff --git a/pkgs/tools/admin/oxidized/default.nix b/pkgs/tools/admin/oxidized/default.nix index 25b8bdb6585..e49d3957659 100644 --- a/pkgs/tools/admin/oxidized/default.nix +++ b/pkgs/tools/admin/oxidized/default.nix @@ -1,4 +1,4 @@ -{ lib, ruby, bundlerApp }: +{ lib, ruby, bundlerApp, bundlerUpdateScript }: bundlerApp rec { pname = "oxidized"; @@ -8,11 +8,13 @@ bundlerApp rec { exes = [ "oxidized" "oxidized-web" "oxidized-script" ]; + passthru.updateScript = bundlerUpdateScript "oxidized"; + meta = with lib; { description = "Oxidized is a network device configuration backup tool. It's a RANCID replacement!"; homepage = https://github.com/ytti/oxidized; license = licenses.asl20; - maintainers = [ maintainers.willibutz ]; + maintainers = with maintainers; [ willibutz nicknovitski ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/backup/lvmsync/default.nix b/pkgs/tools/backup/lvmsync/default.nix index dc589316a58..0ed70ade829 100644 --- a/pkgs/tools/backup/lvmsync/default.nix +++ b/pkgs/tools/backup/lvmsync/default.nix @@ -1,4 +1,4 @@ -{ stdenv, bundlerEnv, ruby, makeWrapper }: +{ stdenv, bundlerEnv, ruby, bundlerUpdateScript, makeWrapper }: let @@ -26,12 +26,14 @@ in stdenv.mkDerivation rec { makeWrapper ${env}/bin/lvmsync $out/bin/lvmsync ''; + passthru.updateScript = bundlerUpdateScript "lvmsync"; + meta = with stdenv.lib; { description = "Optimised synchronisation of LVM snapshots over a network"; homepage = http://theshed.hezmatt.org/lvmsync/; license = licenses.gpl3; platforms = platforms.all; - maintainers = with maintainers; [ jluttine ]; + maintainers = with maintainers; [ jluttine nicknovitski ]; }; } diff --git a/pkgs/tools/inputmethods/fusuma/default.nix b/pkgs/tools/inputmethods/fusuma/default.nix index 2630ab0fc81..b410a21cd6b 100644 --- a/pkgs/tools/inputmethods/fusuma/default.nix +++ b/pkgs/tools/inputmethods/fusuma/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, makeWrapper, libinput }: +{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, libinput }: bundlerApp { pname = "fusuma"; @@ -12,11 +12,13 @@ bundlerApp { --prefix PATH : ${lib.makeBinPath [ libinput ]} ''; + passthru.updateScript = bundlerUpdateScript "fusuma"; + meta = with lib; { description = "Multitouch gestures with libinput driver on X11, Linux"; homepage = https://github.com/iberianpig/fusuma; license = licenses.mit; - maintainers = with maintainers; [ jfrankenau ]; + maintainers = with maintainers; [ jfrankenau nicknovitski ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/misc/docker-sync/default.nix b/pkgs/tools/misc/docker-sync/default.nix index e541fc0f0d4..e75b8347568 100644 --- a/pkgs/tools/misc/docker-sync/default.nix +++ b/pkgs/tools/misc/docker-sync/default.nix @@ -1,4 +1,4 @@ -{ lib, ruby, bundlerApp }: +{ lib, ruby, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "docker-sync"; @@ -8,11 +8,13 @@ bundlerApp { exes = ["docker-sync"]; + passthru.updateScript = bundlerUpdateScript "docker-sync"; + meta = with lib; { description = "Run your application at full speed while syncing your code for development"; homepage = http://docker-sync.io; license = licenses.gpl3; - maintainers = [ maintainers.manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/fluentd/default.nix b/pkgs/tools/misc/fluentd/default.nix index c9ee511ff83..18d03982f37 100644 --- a/pkgs/tools/misc/fluentd/default.nix +++ b/pkgs/tools/misc/fluentd/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv { inherit ruby; @@ -6,11 +6,13 @@ bundlerEnv { pname = "fluentd"; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "fluentd"; + meta = with lib; { description = "A data collector"; homepage = https://www.fluentd.org/; license = licenses.asl20; - maintainers = with maintainers; [ offline ]; + maintainers = with maintainers; [ offline nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/homesick/default.nix b/pkgs/tools/misc/homesick/default.nix index d35267fae27..00a9bf85650 100644 --- a/pkgs/tools/misc/homesick/default.nix +++ b/pkgs/tools/misc/homesick/default.nix @@ -1,6 +1,6 @@ -{ lib, bundlerEnv, git}: +{ lib, bundlerEnv, bundlerUpdateScript, git }: bundlerEnv { - name = "homesick-1.1.6"; + pname = "homesick"; gemdir = ./.; @@ -10,6 +10,8 @@ bundlerEnv { sed 1a'ENV["PATH"] = "${git}/bin:#{ENV["PATH"] ? ":#{ENV["PATH"]}" : "" }"' -i $out/bin/homesick ''; + passthru.updateScript = bundlerUpdateScript "homesick"; + meta = with lib; { description = "Your home directory is your castle. Don't leave your dotfiles behind"; longDescription = @@ -20,7 +22,7 @@ bundlerEnv { ''; homepage = https://github.com/technicalpickles/homesick; license = licenses.mit; - maintainers = with maintainers; [ aaronschif ]; + maintainers = with maintainers; [ aaronschif nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/lolcat/default.nix b/pkgs/tools/misc/lolcat/default.nix index 5b9466426bd..25efcdf3461 100644 --- a/pkgs/tools/misc/lolcat/default.nix +++ b/pkgs/tools/misc/lolcat/default.nix @@ -1,14 +1,16 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "lolcat"; gemdir = ./.; exes = [ "lolcat" ]; + passthru.updateScript = bundlerUpdateScript "lolcat"; + meta = with lib; { description = "A rainbow version of cat"; homepage = https://github.com/busyloop/lolcat; license = licenses.bsd3; - maintainers = with maintainers; [ StillerHarpo manveru ]; + maintainers = with maintainers; [ StillerHarpo manveru nicknovitski ]; }; } diff --git a/pkgs/tools/misc/pws/default.nix b/pkgs/tools/misc/pws/default.nix index 7294c61da8f..d5f2fd4afd4 100644 --- a/pkgs/tools/misc/pws/default.nix +++ b/pkgs/tools/misc/pws/default.nix @@ -1,7 +1,7 @@ -{ stdenv, lib, bundlerEnv, ruby, xsel, makeWrapper }: +{ stdenv, lib, bundlerEnv, ruby, bundlerUpdateScript, xsel, makeWrapper }: stdenv.mkDerivation rec { - name = "pws-1.0.6"; + name = "pws-${(import ./gemset.nix).pws.version}"; env = bundlerEnv { name = "${name}-gems"; @@ -21,11 +21,13 @@ stdenv.mkDerivation rec { --set PATH '"${xsel}/bin/:$PATH"' ''; + passthru.updateScript = bundlerUpdateScript "pws"; + meta = with lib; { description = "Command-line password safe"; homepage = https://github.com/janlelis/pws; license = licenses.mit; - maintainers = [ maintainers.swistak35 ]; + maintainers = with maintainers; [ swistak35 nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/riemann-tools/default.nix b/pkgs/tools/misc/riemann-tools/default.nix index 6a3e1f3deb1..a9977aefd66 100644 --- a/pkgs/tools/misc/riemann-tools/default.nix +++ b/pkgs/tools/misc/riemann-tools/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "riemann-tools"; @@ -26,10 +26,12 @@ bundlerApp { "riemann-zookeeper" ]; + passthru.updateScript = bundlerUpdateScript "riemann-tools"; + meta = with lib; { description = "Tools to submit data to Riemann"; homepage = "https://riemann.io"; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; license = licenses.mit; }; } diff --git a/pkgs/tools/misc/t/default.nix b/pkgs/tools/misc/t/default.nix index 53e8471fb53..aa34b98bbe2 100644 --- a/pkgs/tools/misc/t/default.nix +++ b/pkgs/tools/misc/t/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "t"; gemdir = ./.; exes = [ "t" ]; + passthru.updateScript = bundlerUpdateScript "t"; + meta = with lib; { description = "A command-line power tool for Twitter"; homepage = http://sferik.github.io/t/; license = licenses.asl20; - maintainers = with maintainers; [ offline manveru ]; + maintainers = with maintainers; [ offline manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/td/default.nix b/pkgs/tools/misc/td/default.nix index 121eff450b5..437bdb0373f 100644 --- a/pkgs/tools/misc/td/default.nix +++ b/pkgs/tools/misc/td/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "td"; gemdir = ./.; exes = [ "td" ]; + passthru.updateScript = bundlerUpdateScript "td"; + meta = with lib; { description = "CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing."; homepage = https://github.com/treasure-data/td; license = licenses.asl20; - maintainers = with maintainers; [ groodt ]; + maintainers = with maintainers; [ groodt nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/misc/teamocil/default.nix b/pkgs/tools/misc/teamocil/default.nix index 2215e4d4fee..82aba612699 100644 --- a/pkgs/tools/misc/teamocil/default.nix +++ b/pkgs/tools/misc/teamocil/default.nix @@ -1,10 +1,12 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv rec { inherit ruby; pname = "teamocil"; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "teamocil"; + meta = with lib; { description = "A simple tool used to automatically create windows and panes in tmux with YAML files"; homepage = https://github.com/remiprev/teamocil; @@ -12,6 +14,7 @@ bundlerEnv rec { platforms = platforms.all; maintainers = with maintainers; [ zachcoyle + nicknovitski ]; }; } diff --git a/pkgs/tools/misc/teamocil/update b/pkgs/tools/misc/teamocil/update deleted file mode 100755 index 58a7bd4a453..00000000000 --- a/pkgs/tools/misc/teamocil/update +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p bash ruby bundler bundix - -rm Gemfile.lock -bundler install -bundix - -if [ "clean" == "$1" ]; then - rm -rf ~/.gem -fi diff --git a/pkgs/tools/networking/hue-cli/default.nix b/pkgs/tools/networking/hue-cli/default.nix index ae51bb69bda..b9b4a8eac9d 100644 --- a/pkgs/tools/networking/hue-cli/default.nix +++ b/pkgs/tools/networking/hue-cli/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "hue-cli"; gemdir = ./.; exes = [ "hue" ]; + passthru.updateScript = bundlerUpdateScript "hue-cli"; + meta = with lib; { description = "Command line interface for controlling Philips Hue system's lights and bridge"; homepage = https://github.com/birkirb/hue-cli; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; }; } diff --git a/pkgs/tools/networking/maphosts/default.nix b/pkgs/tools/networking/maphosts/default.nix index 3a48814928e..e54a2b21d9f 100644 --- a/pkgs/tools/networking/maphosts/default.nix +++ b/pkgs/tools/networking/maphosts/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, bundlerEnv, ruby }: +{ stdenv, lib, bundlerEnv, ruby, bundlerUpdateScript }: stdenv.mkDerivation rec { name = "maphosts-${env.gems.maphosts.version}"; @@ -16,11 +16,13 @@ stdenv.mkDerivation rec { ln -s "${env}/bin/maphosts" "$out/bin/maphosts" ''; + passthru.updateScript = bundlerUpdateScript "maphosts"; + meta = with lib; { description = "Small command line application for keeping your project hostnames in sync with /etc/hosts"; homepage = https://github.com/mpscholten/maphosts; license = licenses.mit; - maintainers = with maintainers; [ mpscholten ]; + maintainers = with maintainers; [ mpscholten nicknovitski ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/package-management/elm-github-install/default.nix b/pkgs/tools/package-management/elm-github-install/default.nix index 1f70dc1c8c8..5703a13745b 100644 --- a/pkgs/tools/package-management/elm-github-install/default.nix +++ b/pkgs/tools/package-management/elm-github-install/default.nix @@ -1,17 +1,21 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv rec { + pname = "elm_install"; name = "elm-github-install-${version}"; version = (import ./gemset.nix).elm_install.version; + inherit ruby; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "elm-github-install"; + meta = with lib; { description = "Install Elm packages from git repositories."; homepage = https://github.com/gdotdesign/elm-github-install; license = licenses.unfree; - maintainers = [ maintainers.roberth ]; + maintainers = with maintainers; [ roberth nicknovitski ]; platforms = platforms.all; }; } diff --git a/pkgs/tools/package-management/fpm/default.nix b/pkgs/tools/package-management/fpm/default.nix index 905c686fede..ccb50717acc 100644 --- a/pkgs/tools/package-management/fpm/default.nix +++ b/pkgs/tools/package-management/fpm/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "fpm"; gemdir = ./.; exes = [ "fpm" ]; + passthru.updateScript = bundlerUpdateScript "fpm"; + meta = with lib; { description = "Tool to build packages for multiple platforms with ease"; homepage = https://github.com/jordansissel/fpm; license = licenses.mit; - maintainers = with maintainers; [ manveru ]; + maintainers = with maintainers; [ manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/package-management/fpm/update b/pkgs/tools/package-management/fpm/update deleted file mode 100755 index 22d1e52e297..00000000000 --- a/pkgs/tools/package-management/fpm/update +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p bash ruby bundler bundix - -rm Gemfile.lock -bundler install -bundix - -if [ "clean" == "$1" ]; then - rm -r ~/.gem -fi diff --git a/pkgs/tools/security/bundler-audit/default.nix b/pkgs/tools/security/bundler-audit/default.nix index 8b19b6103d4..3712c129cf6 100644 --- a/pkgs/tools/security/bundler-audit/default.nix +++ b/pkgs/tools/security/bundler-audit/default.nix @@ -1,4 +1,4 @@ -{ bundlerEnv, ruby, lib }: +{ bundlerEnv, ruby, lib, bundlerUpdateScript }: bundlerEnv rec { name = "${pname}-${version}"; @@ -8,6 +8,8 @@ bundlerEnv rec { inherit ruby; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "bundler-audit"; + meta = with lib; { description = "Patch-level verification for Bundler"; longDescription = '' @@ -20,7 +22,7 @@ bundlerEnv rec { ''; homepage = https://github.com/rubysec/bundler-audit; license = licenses.gpl3Plus; - maintainers = with maintainers; [ primeos ]; + maintainers = with maintainers; [ primeos nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/system/colorls/default.nix b/pkgs/tools/system/colorls/default.nix index 45c3bdf1f40..62670fa11a0 100644 --- a/pkgs/tools/system/colorls/default.nix +++ b/pkgs/tools/system/colorls/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, ruby, ... }: +{ lib, bundlerApp, ruby, bundlerUpdateScript }: bundlerApp rec { pname = "colorls"; @@ -6,11 +6,13 @@ bundlerApp rec { gemdir = ./.; exes = [ "colorls" ]; + passthru.updateScript = bundlerUpdateScript "colorls"; + meta = with lib; { description = "Prettified LS"; homepage = https://github.com/athityakumar/colorls; license = with licenses; mit; - maintainers = with maintainers; [ lukebfox ]; + maintainers = with maintainers; [ lukebfox nicknovitski ]; platforms = ruby.meta.platforms; }; } diff --git a/pkgs/tools/system/hiera-eyaml/default.nix b/pkgs/tools/system/hiera-eyaml/default.nix index e0ff7d5ca8b..33d97aa7d6b 100644 --- a/pkgs/tools/system/hiera-eyaml/default.nix +++ b/pkgs/tools/system/hiera-eyaml/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerEnv, ruby }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv { inherit ruby; pname = "hiera-eyaml"; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "hiera-eyaml"; + meta = with lib; { description = "Per-value asymmetric encryption of sensitive data for Hiera"; homepage = https://github.com/TomPoulton/hiera-eyaml; license = licenses.mit; - maintainers = [ maintainers.benley ]; + maintainers = with maintainers; [ benley nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/system/procodile/default.nix b/pkgs/tools/system/procodile/default.nix index 22dc59a9e8e..3ae80a312ed 100644 --- a/pkgs/tools/system/procodile/default.nix +++ b/pkgs/tools/system/procodile/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "procodile"; gemdir = ./.; exes = [ "procodile" ]; + passthru.updateScript = bundlerUpdateScript "procodile"; + meta = with lib; { description = "Run processes in the background (and foreground) on Mac & Linux from a Procfile (for production and/or development environments)"; homepage = https://adam.ac/procodile; license = with licenses; mit; - maintainers = with maintainers; [ ravloony manveru ]; + maintainers = with maintainers; [ ravloony manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/system/r10k/default.nix b/pkgs/tools/system/r10k/default.nix index 43d35410760..56e4e4f94fa 100644 --- a/pkgs/tools/system/r10k/default.nix +++ b/pkgs/tools/system/r10k/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerApp, makeWrapper, git, gnutar, gzip }: +{ lib, bundlerApp, bundlerUpdateScript, makeWrapper, git, gnutar, gzip }: bundlerApp { pname = "r10k"; @@ -11,11 +11,13 @@ bundlerApp { wrapProgram $out/bin/r10k --prefix PATH : ${lib.makeBinPath [ git gnutar gzip ]} ''; + passthru.updateScript = bundlerUpdateScript "r10k"; + meta = with lib; { description = "Puppet environment and module deployment"; homepage = https://github.com/puppetlabs/r10k; license = licenses.asl20; - maintainers = with maintainers; [ zimbatm manveru ]; + maintainers = with maintainers; [ zimbatm manveru nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/text/bcat/default.nix b/pkgs/tools/text/bcat/default.nix index 72fb8aa8e2e..e8000f17cde 100644 --- a/pkgs/tools/text/bcat/default.nix +++ b/pkgs/tools/text/bcat/default.nix @@ -1,15 +1,17 @@ -{ lib, bundlerApp }: +{ lib, bundlerApp, bundlerUpdateScript }: bundlerApp { pname = "bcat"; gemdir = ./.; exes = [ "bcat" "btee" "a2h" ]; + passthru.updateScript = bundlerUpdateScript "bcat"; + meta = with lib; { description = "Pipe to browser utility"; homepage = http://rtomayko.github.com/bcat/; license = licenses.mit; - maintainers = [ maintainers.jraygauthier ]; + maintainers = with maintainers; [ jraygauthier nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/text/papertrail/default.nix b/pkgs/tools/text/papertrail/default.nix index a02ca1cd3dd..05213ff1a87 100644 --- a/pkgs/tools/text/papertrail/default.nix +++ b/pkgs/tools/text/papertrail/default.nix @@ -1,7 +1,6 @@ -{ stdenv, bundlerEnv, ruby}: +{ stdenv, bundlerEnv, ruby, bundlerUpdateScript }: let - # To update, just run `nix-shell` in this directory. papertrail-env = bundlerEnv rec { name = "papertrail-env"; inherit ruby; @@ -18,4 +17,14 @@ in stdenv.mkDerivation { mkdir -p $out/bin ln -s ${papertrail-env}/bin/papertrail $out/bin/papertrail ''; + + passthru.updateScript = bundlerUpdateScript "papertrail"; + + meta = with stdenv.lib; { + description = "Command-line client for Papertrail log management service"; + homepage = http://github.com/papertrail/papertrail-cli/; + license = licenses.mit; + maintainers = with maintainers; [ nicknovitski ]; + platforms = ruby.meta.platforms; + }; } diff --git a/pkgs/tools/text/papertrail/shell.nix b/pkgs/tools/text/papertrail/shell.nix deleted file mode 100644 index 55a7a18f57b..00000000000 --- a/pkgs/tools/text/papertrail/shell.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.stdenv.mkDerivation { - name = "papertrail"; - src = ./.; - - buildInputs = with pkgs; [ - bundix - bundler - ruby - ]; - - shellHook = '' - truncate --size 0 Gemfile.lock - bundle install --path=vendor/bundle - rm -rf vendor .bundle - bundix - ''; -} diff --git a/pkgs/tools/text/reckon/default.nix b/pkgs/tools/text/reckon/default.nix index b97ffc7c58a..9e3e4d5b41d 100644 --- a/pkgs/tools/text/reckon/default.nix +++ b/pkgs/tools/text/reckon/default.nix @@ -1,8 +1,8 @@ -{ stdenv, lib, bundlerEnv, makeWrapper }: +{ stdenv, lib, bundlerEnv, bundlerUpdateScript, makeWrapper }: stdenv.mkDerivation rec { name = "reckon-${version}"; - version = "0.4.4"; + version = (import ./gemset.nix).reckon.version; env = bundlerEnv { name = "${name}-gems"; @@ -19,9 +19,12 @@ stdenv.mkDerivation rec { makeWrapper ${env}/bin/reckon $out/bin/reckon ''; + passthru.updateScript = bundlerUpdateScript "reckon"; + meta = with lib; { description = "Flexibly import bank account CSV files into Ledger for command line accounting"; license = licenses.mit; + maintainers = with maintainers; [ nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/text/ruby-zoom/default.nix b/pkgs/tools/text/ruby-zoom/default.nix index b939e1500e4..c3953840836 100644 --- a/pkgs/tools/text/ruby-zoom/default.nix +++ b/pkgs/tools/text/ruby-zoom/default.nix @@ -1,4 +1,4 @@ -{ lib, bundlerEnv, ruby, stdenv }: +{ lib, bundlerEnv, ruby, bundlerUpdateScript }: bundlerEnv { pname = "ruby-zoom"; @@ -6,11 +6,13 @@ bundlerEnv { inherit ruby; gemdir = ./.; + passthru.updateScript = bundlerUpdateScript "ruby-zoom"; + meta = with lib; { description = "Quickly open CLI search results in your favorite editor!"; homepage = https://gitlab.com/mjwhitta/zoom; license = with licenses; gpl3; - maintainers = with stdenv.lib.maintainers; [ vmandela ]; + maintainers = with maintainers; [ vmandela nicknovitski ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/typesetting/asciidoctor/default.nix b/pkgs/tools/typesetting/asciidoctor/default.nix index 2f1c7e46154..20bbe782d91 100644 --- a/pkgs/tools/typesetting/asciidoctor/default.nix +++ b/pkgs/tools/typesetting/asciidoctor/default.nix @@ -1,8 +1,7 @@ { lib, bundlerApp, makeWrapper, # Optional dependencies, can be null epubcheck, kindlegen, - # For the update shell - mkShell, bundix + bundlerUpdateScript }: let @@ -26,21 +25,16 @@ let ''; passthru = { - inherit updateShell; + updateScript = bundlerUpdateScript "asciidoctor"; }; meta = with lib; { description = "A faster Asciidoc processor written in Ruby"; homepage = https://asciidoctor.org/; license = licenses.mit; - maintainers = with maintainers; [ gpyh ]; + maintainers = with maintainers; [ gpyh nicknovitski ]; platforms = platforms.unix; }; }; - - updateShell = mkShell { - inputsFrom = lib.attrValues app.gems; - buildInputs = [ bundix ]; - }; in app diff --git a/pkgs/tools/typesetting/asciidoctor/update.sh b/pkgs/tools/typesetting/asciidoctor/update.sh deleted file mode 100755 index 1f7e5541cee..00000000000 --- a/pkgs/tools/typesetting/asciidoctor/update.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env bash -nix-shell ../../../.. -A asciidoctor.updateShell --run ' - rm gemset.nix Gemfile.lock - bundix -m --bundle-pack-path $TMPDIR/asciidoctor-ruby-bundle - rm -r .bundle -' diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1dff6fdf6d4..9584d65c8d2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8671,6 +8671,7 @@ in bundler = callPackage ../development/ruby-modules/bundler { }; bundlerEnv = callPackage ../development/ruby-modules/bundler-env { }; bundlerApp = callPackage ../development/ruby-modules/bundler-app { }; + bundlerUpdateScript = callPackage ../development/ruby-modules/bundler-update-script { }; bundler-audit = callPackage ../tools/security/bundler-audit { }; From d383eade73c068ee0a2369d5e6cb73455caf65b6 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Wed, 17 Jul 2019 18:10:50 -0400 Subject: [PATCH 0908/1611] pythonPackages.numcodecs: init at 0.6.3 --- .../python-modules/numcodecs/default.nix | 45 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/python-modules/numcodecs/default.nix diff --git a/pkgs/development/python-modules/numcodecs/default.nix b/pkgs/development/python-modules/numcodecs/default.nix new file mode 100644 index 00000000000..775cfeded8b --- /dev/null +++ b/pkgs/development/python-modules/numcodecs/default.nix @@ -0,0 +1,45 @@ +{ lib +, buildPythonPackage +, fetchPypi +, setuptools_scm +, cython +, numpy +, msgpack +, pytest +, python +}: + +buildPythonPackage rec { + pname = "numcodecs"; + version = "0.6.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "086qwlyi01rpgyyyy8bmhh9i7hpksyz33ldci3wdwmhiblyl362y"; + }; + + nativeBuildInputs = [ + setuptools_scm + cython + ]; + + propagatedBuildInputs = [ + numpy + msgpack + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest $out/${python.sitePackages}/numcodecs -k "not test_backwards_compatibility" + ''; + + meta = with lib;{ + homepage = https://github.com/alimanfoo/numcodecs; + license = licenses.mit; + description = "Buffer compression and transformation codecs for use in data storage and communication applications"; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cc3e62d2da..5254d04ceac 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3816,6 +3816,8 @@ in { numba = callPackage ../development/python-modules/numba { }; + numcodecs = callPackage ../development/python-modules/numcodecs { }; + numexpr = callPackage ../development/python-modules/numexpr { }; Nuitka = callPackage ../development/python-modules/nuitka { }; From 62cb4f72282b228a9072452448b0574170bebc06 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Thu, 18 Jul 2019 09:37:12 -0400 Subject: [PATCH 0909/1611] pythonPackages.zarr: init at 2.3.2 --- .../python-modules/zarr/default.nix | 46 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/development/python-modules/zarr/default.nix diff --git a/pkgs/development/python-modules/zarr/default.nix b/pkgs/development/python-modules/zarr/default.nix new file mode 100644 index 00000000000..5570688e98b --- /dev/null +++ b/pkgs/development/python-modules/zarr/default.nix @@ -0,0 +1,46 @@ +{ lib +, buildPythonPackage +, fetchPypi +, setuptools_scm +, asciitree +, numpy +, fasteners +, numcodecs +, pytest +}: + +buildPythonPackage rec { + pname = "zarr"; + version = "2.3.2"; + + src = fetchPypi { + inherit pname version; + sha256 = "c62d0158fb287151c978904935a177b3d2d318dea3057cfbeac8541915dfa105"; + }; + + nativeBuildInputs = [ + setuptools_scm + ]; + + propagatedBuildInputs = [ + asciitree + numpy + fasteners + numcodecs + ]; + + checkInputs = [ + pytest + ]; + + checkPhase = '' + pytest + ''; + + meta = with lib; { + description = "An implementation of chunked, compressed, N-dimensional arrays for Python"; + homepage = https://github.com/zarr-developers/zarr; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5254d04ceac..69ea0d72a60 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3901,6 +3901,8 @@ in { zake = callPackage ../development/python-modules/zake { }; + zarr = callPackage ../development/python-modules/zarr { }; + kazoo = callPackage ../development/python-modules/kazoo { }; FormEncode = callPackage ../development/python-modules/FormEncode { }; From 0aa30f5901ed2befd23f83bcdfc875237d578ca1 Mon Sep 17 00:00:00 2001 From: angristan Date: Fri, 19 Jul 2019 16:51:25 +0200 Subject: [PATCH 0910/1611] slack: 3.4.2 -> 4.0.0 --- .../networking/instant-messengers/slack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 309b09f10c4..09d5cf9ca61 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -6,7 +6,7 @@ at-spi2-atk, libuuid let - version = "3.4.2"; + version = "4.0.0"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -51,7 +51,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb"; - sha256 = "0qbj41ymckz8w1p2pazyxg7pimgn9gmpvxz4ygcm0nyivfmw2crq"; + sha256 = "911a4c05fb4f85181df13f013e82440b0d171862c9cb137dc19b6381d47bd57e"; } else throw "Slack is not supported on ${stdenv.hostPlatform.system}"; From 3c65adaa750a66de589e61e01e96200a29187cd6 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sat, 20 Jul 2019 16:09:40 -0400 Subject: [PATCH 0911/1611] slack-dark: Fix 4.0.0 --- .../instant-messengers/slack/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 09d5cf9ca61..5d28daf816d 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -1,7 +1,7 @@ { theme ? null, stdenv, fetchurl, dpkg, makeWrapper , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib , gnome2, gtk3, gdk_pixbuf, libappindicator-gtk3, libnotify, libxcb, nspr, nss, pango , systemd, xorg, -at-spi2-atk, libuuid +at-spi2-atk, libuuid, nodePackages }: let @@ -66,7 +66,7 @@ in stdenv.mkDerivation { gtk3 # needed for GSETTINGS_SCHEMAS_PATH ]; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ makeWrapper nodePackages.asar ]; dontUnpack = true; buildCommand = '' @@ -93,18 +93,20 @@ in stdenv.mkDerivation { --replace /usr/bin/ $out/bin/ \ --replace /usr/share/ $out/share/ '' + stdenv.lib.optionalString (theme != null) '' - cat <> $out/lib/slack/resources/app.asar.unpacked/src/static/ssb-interop.js + asar extract $out/lib/slack/resources/app.asar $out/lib/slack/resources/app.asar.unpacked + cat <> $out/lib/slack/resources/app.asar.unpacked/dist/ssb-interop.bundle.js + var fs = require('fs'); document.addEventListener('DOMContentLoaded', function() { - let tt__customCss = ".menu ul li a:not(.inline_menu_link) {color: #fff !important;}" fs.readFile('${theme}/theme.css', 'utf8', function(err, css) { - \$("").appendTo('head').html(css + tt__customCss); - \$("").appendTo('head').html('#reply_container.upload_in_threads .inline_message_input_container {background: padding-box #545454}'); - \$("").appendTo('head').html('.p-channel_sidebar {background: #363636 !important}'); - \$("").appendTo('head').html('#client_body:not(.onboarding):not(.feature_global_nav_layout):before {background: inherit;}'); + let s = document.createElement('style'); + s.type = 'text/css'; + s.innerHTML = css; + document.head.appendChild(s); }); }); EOF + asar pack $out/lib/slack/resources/app.asar.unpacked $out/lib/slack/resources/app.asar ''; meta = with stdenv.lib; { From c76044dab0d20b69ccde6e24cc556f65efed9d04 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Mon, 22 Jul 2019 10:55:52 +0200 Subject: [PATCH 0912/1611] brewtarget: init at 2.3.1 --- pkgs/applications/misc/brewtarget/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/applications/misc/brewtarget/default.nix diff --git a/pkgs/applications/misc/brewtarget/default.nix b/pkgs/applications/misc/brewtarget/default.nix new file mode 100644 index 00000000000..11824503450 --- /dev/null +++ b/pkgs/applications/misc/brewtarget/default.nix @@ -0,0 +1,38 @@ +{ lib +, mkDerivation +, fetchFromGitHub +, bash +, cmake +, qtbase +, qttools +, qtmultimedia +, qtwebkit +, qtsvg +}: + +mkDerivation rec { + pname = "brewtarget"; + version = "2.3.1"; + + src = fetchFromGitHub { + owner = "Brewtarget"; + repo = pname; + rev = "v${version}"; + sha256 = "14xmm6f8xmvypagx4qdw8q9llzmyi9zzfhnzh4kbbflhjbcr7isz"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ qtbase qttools qtmultimedia qtwebkit qtsvg ]; + + preConfigure = '' + chmod +x configure + substituteInPlace configure --replace /bin/bash "${bash}/bin/bash" + ''; + + meta = with lib; { + description = "Open source beer recipe creation tool"; + homepage = "http://www.brewtarget.org/"; + license = licenses.gpl3; + maintainers = [ maintainers.mmahut ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf609b073b3..7d37f122c02 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -661,6 +661,8 @@ in brakeman = callPackage ../development/tools/analysis/brakeman { }; + brewtarget = libsForQt5.callPackage ../applications/misc/brewtarget { } ; + ec2_api_tools = callPackage ../tools/virtualization/ec2-api-tools { }; ec2_ami_tools = callPackage ../tools/virtualization/ec2-ami-tools { }; From f1ba9c2083dd42e86d243218d536f5b1e2e90abb Mon Sep 17 00:00:00 2001 From: jD91mZM2 Date: Fri, 1 Mar 2019 11:33:13 +0100 Subject: [PATCH 0913/1611] x11docker: v5.4.4 -> v6.0.0 --- pkgs/applications/virtualization/x11docker/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/virtualization/x11docker/default.nix b/pkgs/applications/virtualization/x11docker/default.nix index 94682893d51..59d64210837 100644 --- a/pkgs/applications/virtualization/x11docker/default.nix +++ b/pkgs/applications/virtualization/x11docker/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchFromGitHub, makeWrapper, nx-libs, xorg }: stdenv.mkDerivation rec { name = "x11docker-${version}"; - version = "5.4.4"; + version = "6.0.0"; src = fetchFromGitHub { owner = "mviereck"; repo = "x11docker"; rev = "v${version}"; - sha256 = "1p45dyd1zfjxlawsy190q71hwl083f90ryaslslhxsadsi9m64dq"; + sha256 = "1sfdxlh50hv8j3dj5bphihqdyf8s7ixm6ckrmvqgr2y3gak1y840"; }; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ nx-libs xorg.xhost xorg.xinit ]; From 01ee2ee2ba5b1d4763c77a6ed46523c17df97167 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:17:58 +0200 Subject: [PATCH 0914/1611] nixos/test: fix prometheus-{bind,varnish}-exporter tests --- .../services/monitoring/prometheus/exporters/varnish.nix | 1 - nixos/tests/prometheus-exporters.nix | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix index aaed76175b8..924689dc994 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix @@ -68,7 +68,6 @@ in serviceOpts = { path = [ pkgs.varnish ]; serviceConfig = { - DynamicUser = true; RestartSec = mkDefault 1; ExecStart = '' ${pkgs.prometheus-varnish-exporter}/bin/prometheus_varnish_exporter \ diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index 9a85501d15f..fb01b501821 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -73,7 +73,7 @@ let exporterTest = '' waitForUnit("prometheus-bind-exporter.service"); waitForOpenPort(9119); - succeed("curl -sSf http://localhost:9119/metrics" | grep -q 'bind_query_recursions_total 0'); + succeed("curl -sSf http://localhost:9119/metrics | grep -q 'bind_query_recursions_total 0'"); ''; }; @@ -311,6 +311,7 @@ let }; exporterTest = '' waitForUnit("prometheus-varnish-exporter.service"); + waitForOpenPort(6081); waitForOpenPort(9131); succeed("curl -sSf http://localhost:9131/metrics | grep -q 'varnish_up 1'"); ''; From 774221191dcd9614b8316cc00bbd7e4a7604ae2c Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:19:18 +0200 Subject: [PATCH 0915/1611] nixos/prometheus-exporters: refactor imports, replace 'with lib;' Pass through 'options' to exporter definitions and replace 'with lib;' by explicit function imports. --- .../monitoring/prometheus/exporters.nix | 49 ++++++++++--------- .../monitoring/prometheus/exporters/bind.nix | 2 +- .../prometheus/exporters/blackbox.nix | 2 +- .../prometheus/exporters/collectd.nix | 2 +- .../prometheus/exporters/dnsmasq.nix | 2 +- .../prometheus/exporters/dovecot.nix | 2 +- .../prometheus/exporters/fritzbox.nix | 2 +- .../monitoring/prometheus/exporters/json.nix | 2 +- .../monitoring/prometheus/exporters/minio.nix | 2 +- .../monitoring/prometheus/exporters/nginx.nix | 2 +- .../monitoring/prometheus/exporters/node.nix | 2 +- .../prometheus/exporters/postfix.nix | 2 +- .../monitoring/prometheus/exporters/snmp.nix | 2 +- .../prometheus/exporters/surfboard.nix | 2 +- .../monitoring/prometheus/exporters/tor.nix | 2 +- .../monitoring/prometheus/exporters/unifi.nix | 2 +- .../prometheus/exporters/varnish.nix | 2 +- .../prometheus/exporters/wireguard.nix | 2 +- 18 files changed, 44 insertions(+), 39 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 20e7eba4341..e7cc7448c89 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -1,8 +1,10 @@ -{ config, pkgs, lib, ... }: - -with lib; +{ config, pkgs, lib, options, ... }: let + inherit (lib) concatStrings foldl foldl' genAttrs literalExample maintainers + mapAttrsToList mkDefault mkEnableOption mkIf mkMerge mkOption + optional types; + cfg = config.services.prometheus.exporters; # each attribute in `exporterOpts` is expected to have specified: @@ -17,25 +19,28 @@ let # Note that `extraOpts` is optional, but a script for the exporter's # systemd service must be provided by specifying either # `serviceOpts.script` or `serviceOpts.serviceConfig.ExecStart` - exporterOpts = { - blackbox = import ./exporters/blackbox.nix { inherit config lib pkgs; }; - collectd = import ./exporters/collectd.nix { inherit config lib pkgs; }; - dnsmasq = import ./exporters/dnsmasq.nix { inherit config lib pkgs; }; - dovecot = import ./exporters/dovecot.nix { inherit config lib pkgs; }; - fritzbox = import ./exporters/fritzbox.nix { inherit config lib pkgs; }; - json = import ./exporters/json.nix { inherit config lib pkgs; }; - minio = import ./exporters/minio.nix { inherit config lib pkgs; }; - nginx = import ./exporters/nginx.nix { inherit config lib pkgs; }; - node = import ./exporters/node.nix { inherit config lib pkgs; }; - postfix = import ./exporters/postfix.nix { inherit config lib pkgs; }; - snmp = import ./exporters/snmp.nix { inherit config lib pkgs; }; - surfboard = import ./exporters/surfboard.nix { inherit config lib pkgs; }; - tor = import ./exporters/tor.nix { inherit config lib pkgs; }; - unifi = import ./exporters/unifi.nix { inherit config lib pkgs; }; - varnish = import ./exporters/varnish.nix { inherit config lib pkgs; }; - bind = import ./exporters/bind.nix { inherit config lib pkgs; }; - wireguard = import ./exporters/wireguard.nix { inherit config lib pkgs; }; - }; + + exporterOpts = genAttrs [ + "bind" + "blackbox" + "collectd" + "dnsmasq" + "dovecot" + "fritzbox" + "json" + "minio" + "nginx" + "node" + "postfix" + "snmp" + "surfboard" + "tor" + "unifi" + "varnish" + "wireguard" + ] (name: + import (./. + "/exporters/${name}.nix") { inherit config lib pkgs options; } + ); mkExporterOpts = ({ name, port }: { enable = mkEnableOption "the prometheus ${name} exporter"; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/bind.nix b/nixos/modules/services/monitoring/prometheus/exporters/bind.nix index a9746c4d65d..7bcd03e0706 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/bind.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/bind.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix b/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix index d09d1c4f366..bf78cb15ad9 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix b/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix index 0eba3527162..8c8ea08b5d4 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix b/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix index b1fab85109a..1b2ab93b302 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix index c47e87a3dc3..039242b730c 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix b/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix index 530206681d3..f2f7dcf06a8 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/json.nix b/nixos/modules/services/monitoring/prometheus/exporters/json.nix index a5494e85e01..c0b677f2f62 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/json.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/json.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/minio.nix b/nixos/modules/services/monitoring/prometheus/exporters/minio.nix index 3cc4ffdbc8f..2ecc62b0d79 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/minio.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/minio.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix index 431dd8b4ead..519bd9efca2 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/node.nix b/nixos/modules/services/monitoring/prometheus/exporters/node.nix index 8c4128f9b63..2477e69ea26 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/node.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/node.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix index efe78ebcba8..963fa759256 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix b/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix index 0d919412432..4361c3543ba 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix b/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix index 715dba06a3d..197a0a949e0 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/tor.nix b/nixos/modules/services/monitoring/prometheus/exporters/tor.nix index e0ae8380242..4a59e83fc2e 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/tor.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/tor.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix index 011dcbe208e..696c2fe3535 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix index 924689dc994..f38221527b3 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix index eae7a61297d..5aed4a3a966 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix @@ -1,4 +1,4 @@ -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; From 77ccb1fe6ac002564c848e8c48271f4cafd661a6 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:20:39 +0200 Subject: [PATCH 0916/1611] nixos/tests/prometheus-exporters: replace 'with lib;' Replace 'with lib;' by explicit function imports. --- nixos/tests/prometheus-exporters.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index fb01b501821..2286d70be28 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -3,10 +3,11 @@ , pkgs ? import ../.. { inherit system config; } }: -with pkgs.lib; -with import ../lib/testing.nix { inherit system pkgs; }; - let + inherit (import ../lib/testing.nix { inherit system pkgs; }) makeTest; + inherit (pkgs.lib) concatStringsSep maintainers mapAttrs mkMerge + removeSuffix replaceChars singleton splitString; + escape' = str: replaceChars [''"'' "$" "\n"] [''\\\"'' "\\$" ""] str; /* From fb6f0a48bbe439e9fd34e365308f36e2cd395026 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:33:40 +0200 Subject: [PATCH 0917/1611] nixos/prometheus-exporters: add option renaming for submodules Adds the functionality to create option renamings and removals for exporter submodules as in nixos/modules/rename.nix. --- .../monitoring/prometheus/exporters.nix | 7 +++- .../monitoring/prometheus/exporters.xml | 40 ++++++++++++++++++- 2 files changed, 44 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index e7cc7448c89..802281e7164 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -102,9 +102,10 @@ let }; }); - mkSubModule = { name, port, extraOpts, ... }: { + mkSubModule = { name, port, extraOpts, imports }: { ${name} = mkOption { type = types.submodule { + inherit imports; options = (mkExporterOpts { inherit name port; } // extraOpts); @@ -117,13 +118,15 @@ let mkSubModules = (foldl' (a: b: a//b) {} (mapAttrsToList (name: opts: mkSubModule { inherit name; - inherit (opts) port serviceOpts; + inherit (opts) port; extraOpts = opts.extraOpts or {}; + imports = opts.imports or []; }) exporterOpts) ); mkExporterConf = { name, conf, serviceOpts }: mkIf conf.enable { + warnings = conf.warnings or []; networking.firewall.extraCommands = mkIf conf.openFirewall (concatStrings [ "ip46tables -A nixos-fw ${conf.firewallFilter} " "-m comment --comment ${name}-exporter -j nixos-fw-accept" diff --git a/nixos/modules/services/monitoring/prometheus/exporters.xml b/nixos/modules/services/monitoring/prometheus/exporters.xml index 81ac998729b..616f29e8dd0 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.xml +++ b/nixos/modules/services/monitoring/prometheus/exporters.xml @@ -113,7 +113,7 @@ specific options and configuration: # nixpgs/nixos/modules/services/prometheus/exporters/postfix.nix -{ config, lib, pkgs }: +{ config, lib, pkgs, options }: with lib; @@ -184,4 +184,42 @@ in
+
+ Updating an exporter module + + Should an exporter option change at some point, it is possible to add + information about the change to the exporter definition similar to + nixpkgs/nixos/modules/rename.nix: + +{ config, lib, pkgs, options }: + +with lib; + +let + cfg = config.services.prometheus.exporters.nginx; +in +{ + port = 9113; + extraOpts = { + # additional module options + # ... + }; + serviceOpts = { + # service configuration + # ... + }; + imports = [ + # 'services.prometheus.exporters.nginx.telemetryEndpoint' -> 'services.prometheus.exporters.nginx.telemetryPath' + (mkRenamedOptionModule [ "telemetryEndpoint" ] [ "telemetryPath" ]) + + # removed option 'services.prometheus.exporters.nginx.insecure' + (mkRemovedOptionModule [ "insecure" ] '' + This option was replaced by 'prometheus.exporters.nginx.sslVerify' which defaults to true. + '') + ({ options.warnings = options.warnings; }) + ]; +} + + +
From 86c884fb5bd5d104f83078a78d0723bf8555fdb0 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:35:07 +0200 Subject: [PATCH 0918/1611] prometheus-nginx-exporter: 0.1.0 -> 0.4.1, use official version Use official exporter from nginxinc. --- .../monitoring/prometheus/nginx-exporter.nix | 22 ++-- .../prometheus/nginx-exporter_deps.nix | 119 ------------------ 2 files changed, 12 insertions(+), 129 deletions(-) delete mode 100644 pkgs/servers/monitoring/prometheus/nginx-exporter_deps.nix diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix index 5c5042b6c7c..94cb2f74cb0 100644 --- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix @@ -2,23 +2,25 @@ buildGoPackage rec { name = "nginx_exporter-${version}"; - version = "0.1.0"; + version = "0.4.1"; - goPackagePath = "github.com/discordianfish/nginx_exporter"; + goPackagePath = "github.com/nginxinc/nginx-prometheus-exporter"; + + buildFlagsArray = [ + "-ldflags=" "-X main.version=${version}" + ]; src = fetchFromGitHub { rev = "v${version}"; - owner = "discordianfish"; - repo = "nginx_exporter"; - sha256 = "1xwxnvkzslaj44r44ag24a9qfzjdxwz67hhpkdq42193zqpnlim7"; + owner = "nginxinc"; + repo = "nginx-prometheus-exporter"; + sha256 = "0c5bxl9xrd4gh2w5wyrzghmbcy9k1khydzml5cm0rsyqhwsvs8m5"; }; - goDeps = ./nginx-exporter_deps.nix; - meta = with stdenv.lib; { - description = "Metrics relay from nginx stats to Prometheus"; - homepage = https://github.com/discordianfish/nginx_exporter; - license = licenses.mit; + description = "NGINX Prometheus Exporter for NGINX and NGINX Plus"; + homepage = "https://github.com/nginxinc/nginx-prometheus-exporter"; + license = licenses.asl20; maintainers = with maintainers; [ benley fpletz willibutz ]; platforms = platforms.unix; }; diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.nix deleted file mode 100644 index 2fa60de5b49..00000000000 --- a/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.nix +++ /dev/null @@ -1,119 +0,0 @@ -[ - { - goPackagePath = "github.com/alecthomas/template"; - fetch = { - type = "git"; - url = "https://github.com/alecthomas/template"; - rev = "a0175ee3bccc567396460bf5acd36800cb10c49c"; - sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; - }; - } - { - goPackagePath = "github.com/alecthomas/units"; - fetch = { - type = "git"; - url = "https://github.com/alecthomas/units"; - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; - }; - } - { - goPackagePath = "github.com/beorn7/perks"; - fetch = { - type = "git"; - url = "https://github.com/beorn7/perks"; - rev = "3a771d992973f24aa725d07868b467d1ddfceafb"; - sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; - }; - } - { - goPackagePath = "github.com/golang/protobuf"; - fetch = { - type = "git"; - url = "https://github.com/golang/protobuf"; - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; - }; - } - { - goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; - fetch = { - type = "git"; - url = "https://github.com/matttproud/golang_protobuf_extensions"; - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; - sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; - }; - } - { - goPackagePath = "github.com/prometheus/client_golang"; - fetch = { - type = "git"; - url = "https://github.com/prometheus/client_golang"; - rev = "82f5ff156b29e276022b1a958f7d385870fb9814"; - sha256 = "111j329yrlgvh73dm80gawwxsh9dgjkw74254kyj5c2rfmra7znz"; - }; - } - { - goPackagePath = "github.com/prometheus/client_model"; - fetch = { - type = "git"; - url = "https://github.com/prometheus/client_model"; - rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; - sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; - }; - } - { - goPackagePath = "github.com/prometheus/common"; - fetch = { - type = "git"; - url = "https://github.com/prometheus/common"; - rev = "d811d2e9bf898806ecfb6ef6296774b13ffc314c"; - sha256 = "0r4067r4ysmljksqw3awcxx5qplqhykahc5igdzgkky7i4bvaik1"; - }; - } - { - goPackagePath = "github.com/prometheus/procfs"; - fetch = { - type = "git"; - url = "https://github.com/prometheus/procfs"; - rev = "8b1c2da0d56deffdbb9e48d4414b4e674bd8083e"; - sha256 = "0x128p15h35mgwqxkigfkk1lfrcz9g697ahl8v6xp9kwvcqvjrrf"; - }; - } - { - goPackagePath = "github.com/sirupsen/logrus"; - fetch = { - type = "git"; - url = "https://github.com/sirupsen/logrus"; - rev = "778f2e774c725116edbc3d039dc0dfc1cc62aae8"; - sha256 = "0drlrl192k4qkpcf1b6nw2qlixply31x2jhcckjzl3hn4mzwi6nf"; - }; - } - { - goPackagePath = "golang.org/x/crypto"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/crypto"; - rev = "ae8bce0030810cf999bb2b9868ae5c7c58e6343b"; - sha256 = "0aihwcf0g8mq1sb96pwhpgvwxlf862pdhsfr7mdppz7bii4i9shw"; - }; - } - { - goPackagePath = "golang.org/x/sys"; - fetch = { - type = "git"; - url = "https://go.googlesource.com/sys"; - rev = "78d5f264b493f125018180c204871ecf58a2dce1"; - sha256 = "0x23n60wskys39dwybz5za77ldky9i518kp58ragpd5528kcc68s"; - }; - } - { - goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; - fetch = { - type = "git"; - url = "https://gopkg.in/alecthomas/kingpin.v2"; - rev = "947dcec5ba9c011838740e680966fd7087a71d0d"; - sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; - }; - } -] From c64f621bfd6f8746eb8441872492173cfb12e8c9 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 17 Jul 2019 14:36:37 +0200 Subject: [PATCH 0919/1611] nixos/prometheus-nginx-exporter: update module Update exporter submodule to match the new exporter version. --- .../monitoring/prometheus/exporters/nginx.nix | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix index 519bd9efca2..7d819b04ada 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix @@ -16,32 +16,40 @@ in Can be enabled with services.nginx.statusPage = true. ''; }; - telemetryEndpoint = mkOption { + telemetryPath = mkOption { type = types.str; default = "/metrics"; description = '' Path under which to expose metrics. ''; }; - insecure = mkOption { + sslVerify = mkOption { type = types.bool; default = true; description = '' - Ignore server certificate if using https. + Whether to perform certificate verification for https. ''; }; + }; serviceOpts = { serviceConfig = { DynamicUser = true; ExecStart = '' - ${pkgs.prometheus-nginx-exporter}/bin/nginx_exporter \ - --nginx.scrape_uri '${cfg.scrapeUri}' \ - --telemetry.address ${cfg.listenAddress}:${toString cfg.port} \ - --telemetry.endpoint ${cfg.telemetryEndpoint} \ - --insecure ${toString cfg.insecure} \ + ${pkgs.prometheus-nginx-exporter}/bin/nginx-prometheus-exporter \ + --nginx.scrape-uri '${cfg.scrapeUri}' \ + --nginx.ssl-verify ${toString cfg.sslVerify} \ + --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ + --web.telemetry-path ${cfg.telemetryPath} \ ${concatStringsSep " \\\n " cfg.extraFlags} ''; }; }; + imports = [ + (mkRenamedOptionModule [ "telemetryEndpoint" ] [ "telemetryPath" ]) + (mkRemovedOptionModule [ "insecure" ] '' + This option was replaced by 'prometheus.exporters.nginx.sslVerify'. + '') + ({ options.warnings = options.warnings; }) + ]; } From 294bed66dc4329ab5e1b4fa6b7bf5e019e507dfa Mon Sep 17 00:00:00 2001 From: WilliButz Date: Mon, 22 Jul 2019 16:32:48 +0200 Subject: [PATCH 0920/1611] nixos/release-notes: add note about nginx-exporter --- nixos/doc/manual/release-notes/rl-1909.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index c8739d04638..8cb8bba6263 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -195,6 +195,13 @@ and may break if it relies on those options being set. + + + The prometheus-nginx-exporter package now uses the offical exporter provided by NGINX Inc. + Its metrics are differently structured and are incompatible to the old ones. For information about the metrics, + have a look at the official repo. + + From 7ed3d2d6fd130b8c8beede5cf1f44c3f63c71f88 Mon Sep 17 00:00:00 2001 From: Symphorien Gibol Date: Sun, 21 Jul 2019 22:29:40 +0200 Subject: [PATCH 0921/1611] rls: 1.34 -> 1.35 --- pkgs/development/tools/rust/rls/default.nix | 32 ++++++++------------- pkgs/top-level/all-packages.nix | 4 ++- 2 files changed, 15 insertions(+), 21 deletions(-) diff --git a/pkgs/development/tools/rust/rls/default.nix b/pkgs/development/tools/rust/rls/default.nix index f52ab0d767a..0427eadea19 100644 --- a/pkgs/development/tools/rust/rls/default.nix +++ b/pkgs/development/tools/rust/rls/default.nix @@ -1,46 +1,38 @@ { stdenv, fetchFromGitHub, rustPlatform -, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv }: +, openssh, openssl, pkgconfig, cmake, zlib, curl, libiconv +, CoreFoundation, Security }: rustPlatform.buildRustPackage rec { - name = "rls-${version}"; + pname = "rls"; # with rust 1.x you can only build rls version 1.x.y - version = "1.34.0"; + version = "1.35.0"; src = fetchFromGitHub { owner = "rust-lang"; - repo = "rls"; - rev = "0d6f53e1a4adbaf7d83cdc0cb54720203fcb522e"; - sha256 = "1aabs0kr87sp68n9893im5wz21dicip9ixir9a9l56nis4qxpm7i"; + repo = pname; + rev = version; + sha256 = "1l3fvlgfzri8954nbwqxqghjy5wa8p1aiml12r1lqs92dh0g192f"; }; - cargoSha256 = "16r9rmjhb0dbdgx9qf740nsckjazz4z663vaajw5z9i4qh0jsy18"; + cargoSha256 = "0v96ndys6bv5dfjg01chrqrqjc57qqfjw40n6vppi9bpw0f6wkf5"; # a nightly compiler is required unless we use this cheat code. RUSTC_BOOTSTRAP=1; - # clippy is hard to build with stable rust so we disable clippy lints - cargoBuildFlags = [ "--no-default-features" ]; - nativeBuildInputs = [ pkgconfig cmake ]; - buildInputs = [ openssh openssl curl zlib libiconv ]; + buildInputs = [ openssh openssl curl zlib libiconv ] + ++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]); doCheck = true; - # the default checkPhase has no way to pass --no-default-features - checkPhase = '' - runHook preCheck - + preCheck = '' # client tests are flaky rm tests/client.rs - - echo "Running cargo test" - cargo test --no-default-features - runHook postCheck ''; meta = with stdenv.lib; { description = "Rust Language Server - provides information about Rust programs to IDEs and other tools"; homepage = https://github.com/rust-lang/rls/; - license = licenses.mit; + license = with licenses; [ asl20 /* or */ mit ]; maintainers = with maintainers; [ symphorien ]; platforms = platforms.all; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9584d65c8d2..0d7f965a512 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8120,7 +8120,9 @@ in pyo3-pack = callPackage ../development/tools/rust/pyo3-pack { }; rainicorn = callPackage ../development/tools/rust/rainicorn { }; - rls = callPackage ../development/tools/rust/rls { }; + rls = callPackage ../development/tools/rust/rls { + inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; + }; rustfmt = callPackage ../development/tools/rust/rustfmt { }; rustracer = callPackage ../development/tools/rust/racer { }; rustracerd = callPackage ../development/tools/rust/racerd { }; From 594c287e45ce812696cc8c5b82eb8fd61758642f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20D=2E=20Mih=C4=83il=C4=83?= Date: Mon, 22 Jul 2019 17:19:02 +0200 Subject: [PATCH 0922/1611] maintainers: add cypherpunk2140 --- maintainers/maintainer-list.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 339524f703d..3ab9476f64f 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -1148,6 +1148,19 @@ github = "cwoac"; name = "Oliver Matthews"; }; + cypherpunk2140 = { + email = "stefan.mihaila@pm.me"; + github = "cypherpunk2140"; + name = "Ștefan D. Mihăilă"; + keys = [ + { longkeyid = "rsa4096/6E68A39BF16A3ECB"; + fingerprint = "CBC9 C7CC 51F0 4A61 3901 C723 6E68 A39B F16A 3ECB"; + } + { longkeyid = "rsa4096/6220AD7846220A52"; + fingerprint = "7EAB 1447 5BBA 7DDE 7092 7276 6220 AD78 4622 0A52"; + } + ]; + }; dalance = { email = "dalance@gmail.com"; github = "dalance"; From cd508010731d37e9097ada4c967852aef86dbb43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20D=2E=20Mih=C4=83il=C4=83?= Date: Mon, 22 Jul 2019 17:19:15 +0200 Subject: [PATCH 0923/1611] lnd: init at 0.7.0-beta --- pkgs/applications/altcoins/default.nix | 2 ++ pkgs/applications/altcoins/lnd.nix | 22 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 25 insertions(+) create mode 100644 pkgs/applications/altcoins/lnd.nix diff --git a/pkgs/applications/altcoins/default.nix b/pkgs/applications/altcoins/default.nix index 23eb9033ed1..5293c1eefa3 100644 --- a/pkgs/applications/altcoins/default.nix +++ b/pkgs/applications/altcoins/default.nix @@ -65,6 +65,8 @@ rec { }; litecoind = litecoin.override { withGui = false; }; + lnd = callPackage ./lnd.nix { }; + masari = callPackage ./masari.nix { boost = boost165; }; memorycoin = callPackage ./memorycoin.nix { boost = boost165; withGui = true; }; diff --git a/pkgs/applications/altcoins/lnd.nix b/pkgs/applications/altcoins/lnd.nix new file mode 100644 index 00000000000..7fcaca487b1 --- /dev/null +++ b/pkgs/applications/altcoins/lnd.nix @@ -0,0 +1,22 @@ +{ buildGoModule, fetchFromGitHub, lib }: + +buildGoModule rec { + pname = "lnd"; + version = "0.7.0-beta"; + + src = fetchFromGitHub { + owner = "lightningnetwork"; + repo = "lnd"; + rev = "v${version}"; + sha256 = "0d6m1vfy33rg6d7qmkpydiypav1girxsnxan9njyjz0vhinmq0sx"; + }; + + modSha256 = "0akxi7xhyz7xx0vc003abidva02sp940cc2gfjg4fmzkc95cajc9"; + + meta = with lib; { + description = "Lightning Network Daemon"; + homepage = "https://github.com/lightningnetwork/lnd"; + license = lib.licenses.mit; + maintainers = with maintainers; [ cypherpunk2140 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1dff6fdf6d4..db09cc4432a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17016,6 +17016,7 @@ in bitcoin = altcoins.bitcoin; clightning = altcoins.clightning; + lnd = altcoins.lnd; bitcoin-xt = altcoins.bitcoin-xt; cryptop = altcoins.cryptop; From 3944aa051ca503e255a9da5cf03a58faf6dec268 Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 28 Jun 2019 17:54:11 +0200 Subject: [PATCH 0924/1611] nixos/nextcloud: write config to additional config file One of the main problems of the Nextcloud module is that it's currently not possible to alter e.g. database configuration after the initial setup as it's written by their imperative installer to a file. After some research[1] it turned out that it's possible to override all values with an additional config file. The documentation has been slightly updated to remain up-to-date, but the warnings should remain there as the imperative configuration is still used and may cause unwanted side-effects. Also simplified the postgresql test which uses `ensure{Databases,Users}` to configure the database. Fixes #49783 [1] https://github.com/NixOS/nixpkgs/issues/49783#issuecomment-483063922 --- nixos/doc/manual/release-notes/rl-1909.xml | 9 +++ nixos/modules/services/web-apps/nextcloud.nix | 33 ++++++++-- nixos/modules/services/web-apps/nextcloud.xml | 64 +++++++++---------- .../nextcloud/with-postgresql-and-redis.nix | 15 ++--- 4 files changed, 74 insertions(+), 47 deletions(-) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index 8cb8bba6263..77ba3181164 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -354,6 +354,15 @@ The tomcat-connector httpd.extraSubservice has been removed from nixpkgs. + + + It's now possible to change configuration in + services.nextcloud after the initial deploy + since all config parameters are persisted in an additional config file generated by the module. + Previously core configuration like database parameters were set using their imperative + installer after creating /var/lib/nextcloud. + + diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index fa9a36d1189..7051b73fb57 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -297,8 +297,23 @@ in { systemd.services = { "nextcloud-setup" = let + c = cfg.config; + writePhpArrary = a: "[${concatMapStringsSep "," (val: ''"${toString val}"'') a}]"; overrideConfig = pkgs.writeText "nextcloud-config.php" '' [ [ 'path' => '${cfg.home}/apps', 'url' => '/apps', 'writable' => false ], @@ -309,19 +324,27 @@ in { ${optionalString cfg.caching.apcu "'memcache.local' => '\\OC\\Memcache\\APCu',"} 'log_type' => 'syslog', 'log_level' => '${builtins.toString cfg.logLevel}', - ${optionalString (cfg.config.overwriteProtocol != null) "'overwriteprotocol' => '${cfg.config.overwriteProtocol}',"} + ${optionalString (c.overwriteProtocol != null) "'overwriteprotocol' => '${c.overwriteProtocol}',"} + ${optionalString (c.dbname != null) "'dbname' => '${c.dbname}',"} + ${optionalString (c.dbhost != null) "'dbhost' => '${c.dbhost}',"} + ${optionalString (c.dbport != null) "'dbport' => '${toString c.dbport}',"} + ${optionalString (c.dbuser != null) "'dbuser' => '${c.dbuser}',"} + ${optionalString (c.dbtableprefix != null) "'dbtableprefix' => '${toString c.dbtableprefix}',"} + ${optionalString (c.dbpass != null) "'dbpassword' => '${c.dbpass}',"} + ${optionalString (c.dbpassFile != null) "'dbpassword' => nix_read_pwd(),"} + 'dbtype' => '${c.dbtype}', + 'trusted_domains' => ${writePhpArrary c.extraTrustedDomains}, ]; ''; occInstallCmd = let - c = cfg.config; - adminpass = if c.adminpassFile != null - then ''"$(<"${toString c.adminpassFile}")"'' - else ''"${toString c.adminpass}"''; dbpass = if c.dbpassFile != null then ''"$(<"${toString c.dbpassFile}")"'' else if c.dbpass != null then ''"${toString c.dbpass}"'' else null; + adminpass = if c.adminpassFile != null + then ''"$(<"${toString c.adminpassFile}")"'' + else ''"${toString c.adminpass}"''; installFlags = concatStringsSep " \\\n " (mapAttrsToList (k: v: "${k} ${toString v}") { "--database" = ''"${c.dbtype}"''; diff --git a/nixos/modules/services/web-apps/nextcloud.xml b/nixos/modules/services/web-apps/nextcloud.xml index d78d866086a..d66e0f0c299 100644 --- a/nixos/modules/services/web-apps/nextcloud.xml +++ b/nixos/modules/services/web-apps/nextcloud.xml @@ -42,10 +42,12 @@ services.postgresql = { enable = true; - initialScript = pkgs.writeText "psql-init" '' - CREATE ROLE nextcloud WITH LOGIN; - CREATE DATABASE nextcloud WITH OWNER nextcloud; - ''; + ensureDatabases = [ "nextcloud" ]; + ensureUsers = [ + { name = "nextcloud"; + ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; + } + ]; }; # ensure that postgres is running *before* running the setup @@ -63,17 +65,22 @@ are used internally to configure an HTTP server using PHP-FPM and nginx. The config attribute set is - used for the config.php which is used for the - application's configuration. Beware: this isn't entirely pure - since the config is modified by the application's runtime! + used by the imperative installer and all values are written to an additional file + to ensure that changes can be applied by changing the module's options. - In case the application serves multiple hosts (those are checked with + In case the application serves multiple domains (those are checked with $_SERVER['HTTP_HOST']) - those can be added using + it's needed to add them to services.nextcloud.config.extraTrustedDomains. + + + Auto updates for Nextcloud apps can be enabled using + services.nextcloud.autoUpdateApps. + +
Pitfalls @@ -87,35 +94,24 @@ - Right now changes to the services.nextcloud.config - attribute set won't take effect after the first install (except - services.nextcloud.config.extraTrustedDomains) - since the actual configuration file is generated by the NextCloud installer - which also sets up critical parts such as the database structure. + All configuration parameters are also stored in + /var/lib/nextcloud/config/override.config.php which is generated by + the module and linked from the store to ensure that all values from config.php + can be modified by the module. + However config.php manages the application's state and shouldn't be touched + manually because of that. - - Warning: don't delete config.php! This file + + Don't delete config.php! This file tracks the application's state and a deletion can cause unwanted - side-effects! - + side-effects! + - - Warning: don't rerun nextcloud-occ + + Don't rerun nextcloud-occ maintenance:install! This command tries to install the application - and can cause unwanted side-effects! - - - - The issues are known and reported in - #49783, - for now it's unfortunately necessary to manually work around these issues. - - - - Right now app installation and configuration is done imperatively in the nextcloud web ui or via the nextcloud-occ command line utility. - You can activate auto updates for your apps via - services.nextcloud.autoUpdateApps. - + and can cause unwanted side-effects! +
diff --git a/nixos/tests/nextcloud/with-postgresql-and-redis.nix b/nixos/tests/nextcloud/with-postgresql-and-redis.nix index 0351d4db69a..8a840a60875 100644 --- a/nixos/tests/nextcloud/with-postgresql-and-redis.nix +++ b/nixos/tests/nextcloud/with-postgresql-and-redis.nix @@ -27,10 +27,7 @@ in { dbtype = "pgsql"; dbname = "nextcloud"; dbuser = "nextcloud"; - dbhost = "localhost"; - dbpassFile = toString (pkgs.writeText "db-pass-file" '' - hunter2 - ''); + dbhost = "/run/postgresql"; inherit adminuser; adminpassFile = toString (pkgs.writeText "admin-pass-file" '' ${adminpass} @@ -84,10 +81,12 @@ in { services.postgresql = { enable = true; - initialScript = pkgs.writeText "psql-init" '' - create role nextcloud with login password 'hunter2'; - create database nextcloud with owner nextcloud; - ''; + ensureDatabases = [ "nextcloud" ]; + ensureUsers = [ + { name = "nextcloud"; + ensurePermissions."DATABASE nextcloud" = "ALL PRIVILEGES"; + } + ]; }; }; }; From bbd4a0c1001a2cce7457c8ae2a8f8ef905daa424 Mon Sep 17 00:00:00 2001 From: Johan Thomsen Date: Fri, 19 Jul 2019 14:16:15 +0200 Subject: [PATCH 0925/1611] nixos/gitlab: gitlab-workhorse requires exiftool on path to process uploaded images --- nixos/modules/services/misc/gitlab.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 52589b593b4..9fce9419a1a 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -585,6 +585,7 @@ in { after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; path = with pkgs; [ + exiftool gitAndTools.git gnutar gzip From cd032364b6598a175b80b1f5e26ec7f24b8f0141 Mon Sep 17 00:00:00 2001 From: Lev Livnev Date: Sun, 24 Feb 2019 18:08:35 +0000 Subject: [PATCH 0926/1611] tree-from-tags: init at 1.1 tree-from-tags is a tool for organising tagged audio into a tree, commonly used with bongo, a buffer-oriented media player for emacs --- .../applications/audio/tree-from-tags/Gemfile | 3 ++ .../audio/tree-from-tags/Gemfile.lock | 13 +++++++ .../audio/tree-from-tags/default.nix | 37 +++++++++++++++++++ .../audio/tree-from-tags/gemset.nix | 10 +++++ pkgs/top-level/all-packages.nix | 2 + 5 files changed, 65 insertions(+) create mode 100644 pkgs/applications/audio/tree-from-tags/Gemfile create mode 100644 pkgs/applications/audio/tree-from-tags/Gemfile.lock create mode 100644 pkgs/applications/audio/tree-from-tags/default.nix create mode 100644 pkgs/applications/audio/tree-from-tags/gemset.nix diff --git a/pkgs/applications/audio/tree-from-tags/Gemfile b/pkgs/applications/audio/tree-from-tags/Gemfile new file mode 100644 index 00000000000..24f308f3f42 --- /dev/null +++ b/pkgs/applications/audio/tree-from-tags/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "taglib-ruby" diff --git a/pkgs/applications/audio/tree-from-tags/Gemfile.lock b/pkgs/applications/audio/tree-from-tags/Gemfile.lock new file mode 100644 index 00000000000..2ef77caa6f6 --- /dev/null +++ b/pkgs/applications/audio/tree-from-tags/Gemfile.lock @@ -0,0 +1,13 @@ +GEM + remote: https://rubygems.org/ + specs: + taglib-ruby (0.7.1) + +PLATFORMS + ruby + +DEPENDENCIES + taglib-ruby + +BUNDLED WITH + 1.16.3 diff --git a/pkgs/applications/audio/tree-from-tags/default.nix b/pkgs/applications/audio/tree-from-tags/default.nix new file mode 100644 index 00000000000..cdee979768c --- /dev/null +++ b/pkgs/applications/audio/tree-from-tags/default.nix @@ -0,0 +1,37 @@ +{ stdenv, bundlerEnv, ruby, fetchFromGitHub }: +let + version = "1.1"; + gems = bundlerEnv { + name = "tree-from-tags-${version}-gems"; + inherit ruby; + gemdir = ./.; + }; +in stdenv.mkDerivation { + name = "tree-from-tags-${version}"; + src = fetchFromGitHub { + owner = "dbrock"; + repo = "bongo"; + rev = version; + sha256 = "1nszph9mn98flyhn1jq3y6mdh6jymjkvj5ng36ql016dj92apvhv"; + }; + buildInputs = [ gems ruby ]; + installPhase = '' + mkdir -p $out/{bin,share} + cp tree-from-tags.rb $out/share/ + bin=$out/bin/tree-from-tags +# we are using bundle exec to start in the bundled environment + cat > $bin < Date: Thu, 18 Jul 2019 23:13:15 -0400 Subject: [PATCH 0927/1611] gnome3.ghex: 3.18.3 -> 3.18.4 * Meson! * enable extra validation during build * multiout * add license * enable darwin support https://gitlab.gnome.org/GNOME/ghex/blob/master/NEWS --- pkgs/desktops/gnome-3/apps/ghex/default.nix | 76 ++++++++++++++++++--- 1 file changed, 66 insertions(+), 10 deletions(-) diff --git a/pkgs/desktops/gnome-3/apps/ghex/default.nix b/pkgs/desktops/gnome-3/apps/ghex/default.nix index 388808b7d64..f776f4dbe5a 100644 --- a/pkgs/desktops/gnome-3/apps/ghex/default.nix +++ b/pkgs/desktops/gnome-3/apps/ghex/default.nix @@ -1,30 +1,86 @@ -{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, libxml2, gtk3, - wrapGAppsHook }: +{ stdenv +, fetchurl +, fetchpatch +, pkgconfig +, meson +, ninja +, python3 +, gnome3 +, hicolor-icon-theme +, desktop-file-utils +, appstream-glib +, gettext +, itstool +, libxml2 +, gtk3 +, glib +, atk +, wrapGAppsHook +}: stdenv.mkDerivation rec { - name = "ghex-${version}"; - version = "3.18.3"; + pname = "ghex"; + version = "3.18.4"; + + outputs = [ "out" "dev" ]; src = fetchurl { - url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "c67450f86f9c09c20768f1af36c11a66faf460ea00fbba628a9089a6804808d3"; + url = "mirror://gnome/sources/ghex/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; + sha256 = "1h1pjrr9wynclfykizqd78dbi785wjz6b63p31k87kjvzy8w3nf2"; }; - nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + nativeBuildInputs = [ + desktop-file-utils + gettext + hicolor-icon-theme # for setup-hook + itstool + meson + ninja + pkgconfig + python3 + wrapGAppsHook + ]; - buildInputs = [ gtk3 intltool itstool libxml2 ]; + buildInputs = [ + gtk3 + atk + glib + ]; + + checkInputs = [ + appstream-glib + desktop-file-utils + ]; + + patches = [ + # Fixes for darwin. Drop in next release. + (fetchpatch { + url = "https://gitlab.gnome.org/GNOME/ghex/commit/b0af26666cd990d99076c242b2abb3efc6e98671.patch"; + sha256 = "1zwdkgr2nqrn9q3ydyvrrpn5x55cdi747fhbq6mh6blp9cbrk9b5"; + }) + (fetchpatch { + url = "https://gitlab.gnome.org/GNOME/ghex/commit/cc8ef9e67b23604c402460010dc0b5dccb85391b.patch"; + sha256 = "0j2165rfhlbrlzhmcnirqd5m89ljpz0n3nz20sxbwlc8h42zv36s"; + }) + ]; + + postPatch = '' + chmod +x meson_post_install.py + patchShebangs meson_post_install.py + ''; passthru = { updateScript = gnome3.updateScript { packageName = "ghex"; - attrPath = "gnome3.ghex"; + attrPath = "gnome3.${pname}"; }; }; meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Ghex; description = "Hex editor for GNOME desktop environment"; - platforms = platforms.linux; + platforms = platforms.unix; + license = licenses.gpl2Plus; maintainers = gnome3.maintainers; }; } From 42deadd6f4f9b3efd606845d14255a4d5ce44532 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 18 Jul 2019 23:14:19 -0400 Subject: [PATCH 0928/1611] gnome3.evolution: 3.32.3 -> 3.32.4 https://gitlab.gnome.org/GNOME/evolution/blob/3.32.4/NEWS --- pkgs/desktops/gnome-3/apps/evolution/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/apps/evolution/default.nix b/pkgs/desktops/gnome-3/apps/evolution/default.nix index b82c1b2dfe5..a29b24f13be 100644 --- a/pkgs/desktops/gnome-3/apps/evolution/default.nix +++ b/pkgs/desktops/gnome-3/apps/evolution/default.nix @@ -42,11 +42,11 @@ stdenv.mkDerivation rec { pname = "evolution"; - version = "3.32.3"; + version = "3.32.4"; src = fetchurl { url = "mirror://gnome/sources/evolution/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz"; - sha256 = "0ghwi4mmx6l28dkjx7ayiqcrvmfakqfiyvdg6946v5dcimgsclxn"; + sha256 = "00hmmg4hfns8rq9rcilmy0gi1xkksld27lfbd9zmw2xw37wjmbqh"; }; nativeBuildInputs = [ From ad79946f899a468bb4f74775cc8dd5b89267a200 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 19 Jul 2019 19:10:44 -0400 Subject: [PATCH 0929/1611] gnome3.gnome-notes: 3.32.1 -> 3.32.2 https://gitlab.gnome.org/GNOME/gnome-notes/blob/BIJIBEN_3_32_2/NEWS --- pkgs/desktops/gnome-3/apps/gnome-notes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/apps/gnome-notes/default.nix b/pkgs/desktops/gnome-3/apps/gnome-notes/default.nix index 3a28b8635a1..2941d629f8f 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-notes/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-notes/default.nix @@ -5,13 +5,13 @@ , gnome3, libxml2, gsettings-desktop-schemas }: let - version = "3.32.1"; + version = "3.32.2"; in stdenv.mkDerivation rec { name = "gnome-notes-${version}"; src = fetchurl { url = "mirror://gnome/sources/bijiben/${stdenv.lib.versions.majorMinor version}/bijiben-${version}.tar.xz"; - sha256 = "02b7afg3ps0hxp5dkb4kv6315ydc2r6bxgk1kamwp581lc7ghd67"; + sha256 = "0chm2fks7cpx3mycxzddpj6v9by203c3m1y6zns5ra43bspwafy2"; }; doCheck = true; From 3c9046f2eb3b9b263a2a51cb864bd88eb6995b3f Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 22 Jul 2019 13:30:17 -0400 Subject: [PATCH 0930/1611] appstream-glib: set platforms to unix --- pkgs/development/libraries/appstream-glib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/appstream-glib/default.nix b/pkgs/development/libraries/appstream-glib/default.nix index 45ad58819c3..a21ffcdfcee 100644 --- a/pkgs/development/libraries/appstream-glib/default.nix +++ b/pkgs/development/libraries/appstream-glib/default.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { description = "Objects and helper methods to read and write AppStream metadata"; homepage = https://people.freedesktop.org/~hughsient/appstream-glib/; license = licenses.lgpl2Plus; - platforms = platforms.linux; + platforms = platforms.unix; maintainers = with maintainers; [ lethalman matthewbauer ]; }; } From d98aebfb9ae8054f147963a9936d637fd61202bb Mon Sep 17 00:00:00 2001 From: Nazarii Bardiuk Date: Mon, 22 Jul 2019 18:42:34 +0100 Subject: [PATCH 0931/1611] vimPlugins: Update --- pkgs/misc/vim-plugins/generated.nix | 100 ++++++++++++++-------------- 1 file changed, 50 insertions(+), 50 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index e1c7e5de08f..98f10213d0e 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -384,8 +384,8 @@ let src = fetchFromGitHub { owner = "neoclide"; repo = "coc-lists"; - rev = "f7d3c25fbefdf53cd5458904209d066545dbddc0"; - sha256 = "1x3al8km0d61p2k42p5q2xkd1xx80hmhbv8l22wj6knrr9mpjmp2"; + rev = "987409e8d350378a5b3ed40c21bceb8f6252c3df"; + sha256 = "11xampj0pk6393qx340ldgpk0131r756156gm1yhk4mlcc4qfbh1"; }; }; @@ -424,12 +424,12 @@ let coc-python = buildVimPluginFrom2Nix { pname = "coc-python"; - version = "2019-07-09"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-python"; - rev = "f36feb0251aa668a84f027bd937c93f69bf98c84"; - sha256 = "1hc6hn5qlsvbyc52f0m398kjqw4j4sdqhjzpkxcdssa541fvn7pz"; + rev = "afe3a0854206675f961e96e8514d758224e0a7df"; + sha256 = "06nqmiypg55isa1iaz9k6jnwrb2whj06pmxq4r3jx9r6jgg2zf0g"; }; }; @@ -457,12 +457,12 @@ let coc-smartf = buildVimPluginFrom2Nix { pname = "coc-smartf"; - version = "2019-07-19"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-smartf"; - rev = "12e76fcadda3f0bb16c64b2db2a1f8cd8025c47a"; - sha256 = "0dfr7dcrnf40flcvdydywy5xmpxbrfswcq6vj12kjbwkcxlisj0s"; + rev = "ccc4431b17d1e02a33d005ecc30af8638f32e5a5"; + sha256 = "1gawpziv5qilhw5v7x7ihkmypfkjq22qgar6cfq6332c5rjqk6xi"; }; }; @@ -501,12 +501,12 @@ let coc-tabnine = buildVimPluginFrom2Nix { pname = "coc-tabnine"; - version = "2019-07-19"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tabnine"; - rev = "0bfb17e090e1dd44ec159c31968e0b5b249430eb"; - sha256 = "1psn13bqj1yxanh45g72npjbv9mzgv2fjnib0fyzvw7460bvqn8r"; + rev = "4cddbdc9ecb92fb1633bd3b89bb9aacc3a5504ce"; + sha256 = "08k6vmdzgws6f9461gjc4psqn2ypwf1nz9sjncs1vddckxwxl9k3"; }; }; @@ -534,12 +534,12 @@ let coc-tsserver = buildVimPluginFrom2Nix { pname = "coc-tsserver"; - version = "2019-07-19"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tsserver"; - rev = "ed538dc3b55bb94efe2bc511327d81a90c00e674"; - sha256 = "06anjgidbf04g0wnxkmdzgdszn22afr3sxbsx445cvwinm2q3i87"; + rev = "f8ed02524da46c71e5c3b79e0707cbc6d66666f5"; + sha256 = "1w7lz287b322zan6rqimcmypaf9vq3x0ix1ka9s63qzgnpwg7g1i"; }; }; @@ -777,12 +777,12 @@ let denite-nvim = buildVimPluginFrom2Nix { pname = "denite-nvim"; - version = "2019-07-15"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "Shougo"; repo = "denite.nvim"; - rev = "3a1b508116652a6c9b4b174ddafaee7852a15fc4"; - sha256 = "18af8d9rmb0x3ln03ph2m0msaji7wvyvyn3xck12y99mpsf1l50w"; + rev = "1b5b057fc5fdae0745b84d15954245ac23618dc2"; + sha256 = "1f96br849xh0xhjny4q29wxzrf1ypgw10sx2s0rfdmbfip32djh4"; }; }; @@ -834,12 +834,12 @@ let deoplete-jedi = buildVimPluginFrom2Nix { pname = "deoplete-jedi"; - version = "2019-06-30"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "deoplete-plugins"; repo = "deoplete-jedi"; - rev = "763c7befa7bbe44aa00a0c832916958a16e71254"; - sha256 = "1dvw8l8f0k9hkfv4n791lgm1lipf5n2xhjyrwx1px92j1h94i8f1"; + rev = "46121d9ca7688c148764d7ee488bb3572d1434c4"; + sha256 = "1hiw42dm12xyhmvg180mrbjv3bbbvrgl4p2abll0lv5l2zmsbf12"; fetchSubmodules = true; }; }; @@ -890,12 +890,12 @@ let deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete-nvim"; - version = "2019-07-17"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "6e9f26a0cf5d7d60ddf04ce126e4adebe5a01cf2"; - sha256 = "10r7c2jjy2q3wq30rsv7bml0cxjs19hzrfmba4g407yckync92bi"; + rev = "53ad762d357f74c02c04403325f8f9122ba3bade"; + sha256 = "0j2fx981r5bzcw408x1jy82inkly1kc3ciwdyqlhi94lg8sl20jv"; }; }; @@ -945,12 +945,12 @@ let editorconfig-vim = buildVimPluginFrom2Nix { pname = "editorconfig-vim"; - version = "2019-05-21"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-vim"; - rev = "37bedf88cabb61d4580295b6e347058df7e7f1b4"; - sha256 = "120fi53qp915qnhaqil15b4n22mp4gp5jvi9yirfmsk88hgz2lab"; + rev = "c718cefc51ccdaf7bd27c4c1ae2de55103434241"; + sha256 = "1sbpkv2q68s6qnm03jr1vazvdqqnrgiw53w4jn38dr8l9i2im199"; fetchSubmodules = true; }; }; @@ -1499,12 +1499,12 @@ let ncm2 = buildVimPluginFrom2Nix { pname = "ncm2"; - version = "2019-04-10"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "ncm2"; repo = "ncm2"; - rev = "e5a7976ad175251a96c537488d2d9557fafdcc8b"; - sha256 = "0jdhbv56vg53vy5yd4322pjyqaidjj0jdbn1ykvi4scci26rzq35"; + rev = "53b6531769e43c7e3c9051e3a12ab31e3e06a422"; + sha256 = "1kf2gfcw0wmyib72na3j2dsw6q4qff1r9lvdbk7cm7iclhwylhma"; }; }; @@ -1653,12 +1653,12 @@ let neomake = buildVimPluginFrom2Nix { pname = "neomake"; - version = "2019-07-16"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "neomake"; repo = "neomake"; - rev = "9c0dfbfc90c50ebbfbe53aa5a6094e1b1c806459"; - sha256 = "1rbfhmf1vnvn4p63q3pbdcyqnagb9kvckr0m6dp4hx9pc4d393xd"; + rev = "999b6710ab915de2a3a23ce2a2456e2a295a2cf8"; + sha256 = "18j0d6mvkr5a29d7v14j87lz63svv6f2xm7xi5drl0r4s8lvjmhw"; }; }; @@ -1675,12 +1675,12 @@ let neosnippet-snippets = buildVimPluginFrom2Nix { pname = "neosnippet-snippets"; - version = "2019-07-11"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "Shougo"; repo = "neosnippet-snippets"; - rev = "eac39588c45bda3bcd46f386e063309449f23ff5"; - sha256 = "105w3qfyjbmx8w8cxcq476zy8yyblkzz3gs8jpl2dl453zs2qli6"; + rev = "25dbe4ac607580fa05940dae24e544147d0bafeb"; + sha256 = "19vbk47mxa7j4bznk4vbxqzlscbk9kfqrsp6ja6x6bv7xvnhs8wm"; }; }; @@ -2379,12 +2379,12 @@ let traces-vim = buildVimPluginFrom2Nix { pname = "traces-vim"; - version = "2019-07-12"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "markonm"; repo = "traces.vim"; - rev = "a30c11ee96cd402e0044a2c3dde6d6e5cc4d6273"; - sha256 = "01zncza0b7bm7f4dna88pq42fq4ajg8zhyk1kzzrf4n1fid3nljz"; + rev = "6c82275b8cd4c70e0610fd87f0574ef2463952a6"; + sha256 = "1pms2bm4g0v0idkva1f9bdcbbwvs6fhbzzx90zdyyhs73xp62k9k"; }; }; @@ -3017,12 +3017,12 @@ let vim-dirvish = buildVimPluginFrom2Nix { pname = "vim-dirvish"; - version = "2019-05-05"; + version = "2019-07-20"; src = fetchFromGitHub { owner = "justinmk"; repo = "vim-dirvish"; - rev = "5a51bf3d52054990beef3221ec3a03d4ea9188e3"; - sha256 = "02sfi5138km2gnmv6vx5gff9xkd9bl0wz6n9dx6478syc49a2sai"; + rev = "eba64ed111a3aab8121a0e5b6df62c6f19e05322"; + sha256 = "13cmxbpimnm9nkn9igkd8cpcvydw6nlzgyxzq11qdj31bjfs4nma"; }; }; @@ -3105,12 +3105,12 @@ let vim-elixir = buildVimPluginFrom2Nix { pname = "vim-elixir"; - version = "2019-06-27"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "vim-elixir"; - rev = "a219dc1f702e581878f51746c4c31b8b4805aa4e"; - sha256 = "1bw8i3nvqwrb8d0dbsz53jy3pvcx7kwz48xy7b9sslrhkf4llwpn"; + rev = "46a68476fc7b4f454c829d83d21997b82ac66f76"; + sha256 = "1fyi39s211cw2db7zb5a5jy2r18h5azpkiij52ba6asxk7n5dghs"; }; }; @@ -3149,12 +3149,12 @@ let vim-fireplace = buildVimPluginFrom2Nix { pname = "vim-fireplace"; - version = "2019-07-19"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fireplace"; - rev = "5aed1bc834456a5517221ba82f57d2577e8c932c"; - sha256 = "0gdghfpxkxx4hfsr5liqjqb8sg1qjhaadb9vqh30rhl08q47zdlk"; + rev = "923dfbdbdb395d6192483e12ec6069910162619a"; + sha256 = "1q1x5qxi081nnx7zqisr8ryb0ffskmjb0pylfzaswv7cwx4v4kpc"; }; }; @@ -3215,12 +3215,12 @@ let vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2019-07-18"; + version = "2019-07-21"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "adba9c6345af58b31bcba8599b5bb162575d5755"; - sha256 = "1x7rjh45npsvylcbhfyxcxpa8lhb5l8jal6x6cx4rbc6csw65nb2"; + rev = "80996c2e2c5a0185cc6ce77c2cd18665d26d4041"; + sha256 = "0wjwj06nqvx2q084l309mz9vma951xyjhi2h4psb7k1iwybiqkwf"; }; }; From 828d2d52b0d09e705020067a116cf98977a76e6e Mon Sep 17 00:00:00 2001 From: Nazarii Bardiuk Date: Mon, 22 Jul 2019 19:06:05 +0100 Subject: [PATCH 0932/1611] vimPlugins.ghcid: Init at 2019-07-04 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/overrides.nix | 4 ++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 3 files changed, 16 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 98f10213d0e..311a3aac8a7 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -1111,6 +1111,17 @@ let }; }; + ghcid = buildVimPluginFrom2Nix { + pname = "ghcid"; + version = "2019-07-04"; + src = fetchFromGitHub { + owner = "ndmitchell"; + repo = "ghcid"; + rev = "08dff021a806c252d8eeccf44fa30e8d4118b137"; + sha256 = "05w4lqqs25m10rpjglkm1ggyssl9kig0nbd0qkg0l38zhc87afjr"; + }; + }; + ghcmod-vim = buildVimPluginFrom2Nix { pname = "ghcmod-vim"; version = "2016-06-19"; diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix index 0c597e2d8c5..0281f9220e9 100644 --- a/pkgs/misc/vim-plugins/overrides.nix +++ b/pkgs/misc/vim-plugins/overrides.nix @@ -186,6 +186,10 @@ self: super: { dependencies = with super; [ super.self ]; }); + ghcid = super.ghcid.overrideAttrs(old: { + configurePhase = "cd plugins/nvim"; + }); + gist-vim = super.gist-vim.overrideAttrs(old: { dependencies = with super; [ webapi-vim ]; }); diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 7cfc14ccd4f..83857d09634 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -229,6 +229,7 @@ ncm2/ncm2-jedi ncm2/ncm2-path ncm2/ncm2-tmux ncm2/ncm2-ultisnips +ndmitchell/ghcid neoclide/coc-css neoclide/coc-denite neoclide/coc-emmet From 03603200540daac78fb7057423f7de5c88ca0398 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B0=D1=80=D0=B8=D0=BA?= Date: Sun, 21 Jul 2019 22:23:38 +0300 Subject: [PATCH 0933/1611] helio-workstation: init at 2.2 --- .../audio/helio-workstation/default.nix | 46 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/applications/audio/helio-workstation/default.nix diff --git a/pkgs/applications/audio/helio-workstation/default.nix b/pkgs/applications/audio/helio-workstation/default.nix new file mode 100644 index 00000000000..bfd211316a7 --- /dev/null +++ b/pkgs/applications/audio/helio-workstation/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchFromGitHub +, alsaLib, freetype, xorg, curl, libGL, libjack2, gnome3 +, pkgconfig, makeWrapper +}: + +stdenv.mkDerivation rec { + pname = "helio-workstation"; + version = "2.2"; + + src = fetchFromGitHub { + owner = "helio-fm"; + repo = pname; + rev = version; + fetchSubmodules = true; + sha256 = "16iwj4mjs1nm8dlk70q97svp3vkcgs7hdj9hfda9h67acn4a8vvk"; + }; + + buildInputs = [ + alsaLib freetype xorg.libX11 xorg.libXext xorg.libXinerama xorg.libXrandr + xorg.libXcursor xorg.libXcomposite curl libGL libjack2 gnome3.zenity + ]; + + nativeBuildInputs = [ pkgconfig makeWrapper ]; + + preBuild = "cd Projects/LinuxMakefile"; + buildFlags = [ "CONFIG=Release64" ]; + + installPhase = '' + mkdir -p $out/bin + install -Dm755 build/Helio $out/bin + wrapProgram $out/bin/Helio --prefix PATH ":" ${gnome3.zenity}/bin + + mkdir -p $out/share + cp -r ../Deployment/Linux/Debian/x64/usr/share/* $out/share + substituteInPlace $out/share/applications/Helio.desktop \ + --replace "/usr/bin/helio" "$out/bin/Helio" + ''; + + meta = with stdenv.lib; { + description = "One music sequencer for all major platforms, both desktop and mobile"; + homepage = https://helio.fm/; + license = licenses.gpl3; + maintainers = [ maintainers.suhr ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf609b073b3..b2e12ae671d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3668,6 +3668,8 @@ in heimdall-gui = heimdall.override { enableGUI = true; }; + helio-workstation = callPackage ../applications/audio/helio-workstation { }; + hevea = callPackage ../tools/typesetting/hevea { }; hexd = callPackage ../tools/misc/hexd { }; From d013d4723b049de78a28aba922450ddd761b0951 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Tue, 23 Jul 2019 03:09:19 +0800 Subject: [PATCH 0934/1611] eksctl: 0.1.40 -> 0.2.0 --- pkgs/tools/admin/eksctl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix index 520fffa9750..ec3b4b7d46f 100644 --- a/pkgs/tools/admin/eksctl/default.nix +++ b/pkgs/tools/admin/eksctl/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "eksctl"; - version = "0.1.40"; + version = "0.2.0"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; - sha256 = "08r4p2brs9gxxqnyv44zi1agv5q3ss8292201z9vh5ji9fmck2vb"; + sha256 = "1q7qcmipqq83wm44jn8r0ssvsd3qx8bg3qz0ksj136gf4rhkf59p"; }; modSha256 = "1lmkwx0r19c2wg9nm85k92nlxjzr8q917jf3f333yf3csfyiix2f"; From 0419d983480a3dbc8583ac55c3dc849d2f65ccc2 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Mon, 22 Jul 2019 21:46:31 +0200 Subject: [PATCH 0935/1611] lf: 12 -> 13 --- pkgs/tools/misc/lf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/lf/default.nix b/pkgs/tools/misc/lf/default.nix index 6b5e836b14d..95f88654425 100644 --- a/pkgs/tools/misc/lf/default.nix +++ b/pkgs/tools/misc/lf/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { name = "lf-${version}"; - version = "12"; + version = "13"; src = fetchFromGitHub { owner = "gokcehan"; repo = "lf"; rev = "r${version}"; - sha256 = "1pjydnwlc6mrnwz13s13c91nvjvb1ibwl944ppg8xq8dcy9b2cs4"; + sha256 = "1ld3q75v8rvp169w5p85z1vznqs9bhck6bm2f6fykxx16hmpb6ga"; }; modSha256 = "14fvn8yjm9cnpsmzgxw2dypr3h8h36mxrbk7zma42w8rsp46jpz7"; From b1bc0645eaa0118757275871c31fe17547cbc477 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 22 May 2019 07:03:39 -0400 Subject: [PATCH 0936/1611] gdk-pixbuf: rename from gdk_pixbuf --- nixos/modules/services/x11/gdk-pixbuf.nix | 8 +- nixos/tests/gdk-pixbuf.nix | 4 +- nixos/tests/ostree.nix | 2 +- pkgs/applications/altcoins/exodus/default.nix | 4 +- pkgs/applications/altcoins/parity-ui/env.nix | 4 +- pkgs/applications/audio/amarok/default.nix | 4 +- pkgs/applications/audio/audacious/qt-5.nix | 4 +- .../audio/bitwig-studio/bitwig-studio1.nix | 4 +- pkgs/applications/audio/cmusfm/default.nix | 4 +- pkgs/applications/audio/faust/faust2alsa.nix | 4 +- .../default.nix | 4 +- pkgs/applications/audio/gtkpod/default.nix | 4 +- pkgs/applications/audio/quodlibet/default.nix | 4 +- pkgs/applications/audio/reaper/default.nix | 4 +- pkgs/applications/audio/spotify/default.nix | 4 +- .../applications/audio/transcribe/default.nix | 4 +- .../crashplan/crashplan-small-business.nix | 4 +- .../lightdm-enso-os-greeter/default.nix | 4 +- pkgs/applications/editors/atom/env.nix | 4 +- .../applications/editors/brackets/default.nix | 4 +- .../editors/lighttable/default.nix | 4 +- .../editors/rednotebook/default.nix | 4 +- .../applications/graphics/avocode/default.nix | 4 +- pkgs/applications/graphics/drawio/default.nix | 4 +- pkgs/applications/graphics/gimp/default.nix | 6 +- pkgs/applications/graphics/giv/default.nix | 4 +- .../applications/graphics/mypaint/default.nix | 4 +- pkgs/applications/graphics/pencil/default.nix | 4 +- .../rapid-photo-downloader/default.nix | 4 +- .../graphics/shotwell/default.nix | 4 +- .../applications/graphics/shutter/default.nix | 4 +- .../graphics/viewnior/default.nix | 4 +- .../misc/adobe-reader/default.nix | 4 +- pkgs/applications/misc/airtame/default.nix | 4 +- pkgs/applications/misc/batti/default.nix | 4 +- pkgs/applications/misc/dunst/default.nix | 4 +- pkgs/applications/misc/et/default.nix | 4 +- pkgs/applications/misc/evilvte/default.nix | 4 +- .../misc/green-pdfviewer/default.nix | 4 +- pkgs/applications/misc/hyper/default.nix | 4 +- pkgs/applications/misc/kiwix/default.nix | 4 +- pkgs/applications/misc/lutris/default.nix | 4 +- pkgs/applications/misc/mako/default.nix | 4 +- pkgs/applications/misc/mlterm/default.nix | 4 +- pkgs/applications/misc/navit/default.nix | 4 +- pkgs/applications/misc/plank/default.nix | 4 +- .../misc/polar-bookshelf/default.nix | 10 +- pkgs/applications/misc/roxterm/default.nix | 4 +- .../misc/rxvt_unicode/default.nix | 4 +- pkgs/applications/misc/safeeyes/default.nix | 4 +- pkgs/applications/misc/simplenote/default.nix | 4 +- pkgs/applications/misc/stretchly/default.nix | 4 +- pkgs/applications/misc/terminus/default.nix | 4 +- pkgs/applications/misc/volnoti/default.nix | 4 +- pkgs/applications/misc/xneur/default.nix | 4 +- pkgs/applications/misc/xxkb/default.nix | 6 +- .../networking/browsers/brave/default.nix | 4 +- .../browsers/firefox-bin/default.nix | 4 +- .../browsers/google-chrome/default.nix | 4 +- .../mozilla-plugins/bluejeans/default.nix | 4 +- .../mozilla-plugins/flashplayer/default.nix | 4 +- .../flashplayer/standalone.nix | 4 +- .../google-talk-plugin/default.nix | 4 +- .../networking/browsers/opera/default.nix | 4 +- .../tor-browser-bundle-bin/default.nix | 4 +- .../networking/browsers/vivaldi/default.nix | 4 +- pkgs/applications/networking/dropbox/cli.nix | 4 +- .../instant-messengers/bluejeans/default.nix | 4 +- .../instant-messengers/coyim/default.nix | 4 +- .../instant-messengers/dino/default.nix | 4 +- .../instant-messengers/discord/base.nix | 4 +- .../instant-messengers/franz/default.nix | 4 +- .../instant-messengers/gitter/default.nix | 4 +- .../instant-messengers/linphone/default.nix | 4 +- .../mattermost-desktop/default.nix | 4 +- .../pidgin-plugins/skype4pidgin/default.nix | 4 +- .../instant-messengers/profanity/default.nix | 6 +- .../signal-desktop/default.nix | 4 +- .../skypeforlinux/default.nix | 4 +- .../instant-messengers/slack/default.nix | 4 +- .../instant-messengers/stride/default.nix | 4 +- .../instant-messengers/toxic/default.nix | 4 +- .../wire-desktop/default.nix | 4 +- .../mailreaders/inboxer/default.nix | 4 +- .../mailreaders/mailnag/default.nix | 4 +- .../mailreaders/nylas-mail-bin/default.nix | 4 +- .../mailreaders/thunderbird-bin/default.nix | 4 +- .../networking/mullvad-vpn/default.nix | 4 +- .../networking/p2p/tixati/default.nix | 4 +- .../networking/p2p/transgui/default.nix | 10 +- .../networking/remote/anydesk/default.nix | 4 +- .../remote/citrix-receiver/default.nix | 6 +- .../remote/citrix-workspace/default.nix | 6 +- .../ssb/patchwork-classic/default.nix | 6 +- .../networking/super-productivity/default.nix | 4 +- .../applications/office/moneyplex/default.nix | 4 +- pkgs/applications/office/pinpoint/default.nix | 4 +- pkgs/applications/office/spice-up/default.nix | 4 +- pkgs/applications/office/zotero/default.nix | 8 +- .../science/electronics/bitscope/common.nix | 4 +- .../science/logic/verifast/default.nix | 4 +- .../version-management/gitkraken/default.nix | 4 +- pkgs/applications/video/devede/default.nix | 4 +- .../applications/video/lightworks/default.nix | 6 +- .../video/webtorrent_desktop/default.nix | 4 +- .../window-managers/awesome/default.nix | 4 +- .../window-managers/dwm/dwm-status.nix | 4 +- .../window-managers/icewm/default.nix | 4 +- .../window-managers/sawfish/default.nix | 4 +- pkgs/applications/window-managers/sway/bg.nix | 4 +- .../window-managers/sway/default.nix | 4 +- .../window-managers/sway/lock.nix | 4 +- .../window-managers/trayer/default.nix | 4 +- .../window-managers/way-cooler/crates-io.nix | 108 +++++++++--------- .../window-managers/way-cooler/default.nix | 4 +- .../window-managers/yabar/build.nix | 4 +- pkgs/build-support/appimage/default.nix | 2 +- .../rust/default-crate-overrides.nix | 4 +- .../elementary-xfce-icon-theme/default.nix | 4 +- pkgs/data/themes/greybird/default.nix | 4 +- pkgs/data/themes/matcha/default.nix | 4 +- pkgs/data/themes/materia-theme/default.nix | 4 +- pkgs/data/themes/plano/default.nix | 4 +- pkgs/data/themes/plata/default.nix | 4 +- pkgs/data/themes/qogir/default.nix | 4 +- pkgs/data/themes/sierra/default.nix | 4 +- pkgs/data/themes/stilo/default.nix | 4 +- pkgs/data/themes/zuki/default.nix | 4 +- pkgs/desktops/deepin/go-lib/default.nix | 4 +- pkgs/desktops/deepin/qcef/default.nix | 4 +- pkgs/desktops/gnome-3/apps/cheese/default.nix | 6 +- .../gnome-3/apps/evolution/default.nix | 4 +- pkgs/desktops/gnome-3/apps/glade/default.nix | 4 +- .../gnome-3/apps/gnome-books/default.nix | 4 +- .../gnome-3/apps/gnome-clocks/default.nix | 4 +- .../gnome-3/apps/gnome-documents/default.nix | 4 +- .../gnome-3/apps/gnome-maps/default.nix | 4 +- .../gnome-3/apps/gnome-music/default.nix | 4 +- .../gnome-3/apps/gnome-photos/default.nix | 4 +- .../apps/gnome-sound-recorder/default.nix | 4 +- pkgs/desktops/gnome-3/apps/polari/default.nix | 4 +- .../core/adwaita-icon-theme/default.nix | 4 +- .../desktops/gnome-3/core/empathy/default.nix | 4 +- pkgs/desktops/gnome-3/core/eog/default.nix | 6 +- .../gnome-3/core/epiphany/default.nix | 4 +- pkgs/desktops/gnome-3/core/evince/default.nix | 4 +- pkgs/desktops/gnome-3/core/gjs/default.nix | 4 +- .../core/gnome-control-center/default.nix | 6 +- .../core/gnome-remote-desktop/default.nix | 4 +- .../gnome-3/core/gnome-shell/default.nix | 4 +- .../core/gnome-system-monitor/default.nix | 4 +- .../core/gnome-themes-extra/default.nix | 4 +- .../gnome-3/core/nautilus/default.nix | 4 +- .../gnome-3/core/simple-scan/default.nix | 4 +- pkgs/desktops/gnome-3/core/sushi/default.nix | 4 +- pkgs/desktops/gnome-3/core/totem/default.nix | 4 +- .../desktops/gnome-3/games/atomix/default.nix | 4 +- pkgs/desktops/gnome-3/games/iagno/default.nix | 4 +- .../gnome-3/games/lightsoff/default.nix | 4 +- .../gnome-3/games/quadrapassel/default.nix | 4 +- pkgs/desktops/gnome-3/games/tali/default.nix | 4 +- .../gnome-3/misc/gnome-tweaks/default.nix | 4 +- pkgs/desktops/lxde/core/lxpanel/default.nix | 4 +- pkgs/desktops/mate/caja-dropbox/default.nix | 4 +- pkgs/desktops/mate/mate-themes/default.nix | 4 +- pkgs/desktops/maxx/default.nix | 6 +- pkgs/desktops/xfce/core/tumbler.nix | 4 +- pkgs/desktops/xfce4-14/thunar/default.nix | 4 +- pkgs/desktops/xfce4-14/tumbler/default.nix | 4 +- .../arduino/arduino-core/default.nix | 6 +- .../adoptopenjdk-bin/jdk-linux-base.nix | 4 +- .../compilers/cudatoolkit/default.nix | 4 +- .../compilers/factor-lang/default.nix | 8 +- pkgs/development/compilers/fpc/lazarus.nix | 4 +- .../compilers/jetbrains-jdk/default.nix | 4 +- .../compilers/oraclejdk/jdk-linux-base.nix | 4 +- pkgs/development/compilers/zulu/8.nix | 4 +- pkgs/development/compilers/zulu/default.nix | 4 +- .../libraries/appstream-glib/default.nix | 4 +- .../libraries/clutter-gst/default.nix | 4 +- pkgs/development/libraries/cogl/default.nix | 4 +- pkgs/development/libraries/gcr/default.nix | 4 +- .../libraries/gdk-pixbuf/default.nix | 1 - pkgs/development/libraries/geis/default.nix | 4 +- .../development/libraries/geoclue/default.nix | 4 +- pkgs/development/libraries/gom/default.nix | 4 +- .../libraries/gstreamer/good/default.nix | 4 +- .../legacy/gst-plugins-good/default.nix | 4 +- pkgs/development/libraries/gtk+/2.x.nix | 4 +- pkgs/development/libraries/gtk+/3.x.nix | 4 +- pkgs/development/libraries/gtkd/default.nix | 8 +- .../libraries/java/swt/default.nix | 4 +- pkgs/development/libraries/lasem/default.nix | 4 +- pkgs/development/libraries/libcef/default.nix | 4 +- .../development/libraries/libgpod/default.nix | 4 +- pkgs/development/libraries/libgsf/default.nix | 4 +- .../libraries/libmediaart/default.nix | 4 +- .../libraries/libnotify/default.nix | 4 +- .../development/libraries/librsvg/default.nix | 8 +- .../libraries/qt-4.x/4.8/default.nix | 4 +- .../ocaml-modules/ocaml-cairo/default.nix | 4 +- .../python-modules/cairocffi/0_9.nix | 4 +- .../python-modules/cairocffi/default.nix | 4 +- .../cairocffi/dlopen-paths-0.9.patch | 12 +- .../cairocffi/dlopen-paths.patch | 12 +- .../python-modules/cairocffi/generic.nix | 4 +- .../python-modules/pyglet/default.nix | 4 +- .../ruby-modules/gem-config/default.nix | 6 +- pkgs/development/tools/node-webkit/nw12.nix | 4 +- pkgs/development/tools/nwjs/default.nix | 4 +- .../tools/react-native-debugger/default.nix | 4 +- .../tools/selenium/chromedriver/default.nix | 4 +- pkgs/development/tools/thrust/default.nix | 4 +- pkgs/development/tools/unity3d/default.nix | 10 +- pkgs/development/web/insomnia/default.nix | 8 +- pkgs/development/web/postman/default.nix | 2 +- pkgs/games/arena/default.nix | 4 +- pkgs/games/planetaryannihilation/default.nix | 6 +- pkgs/games/steam/chrootenv.nix | 2 +- pkgs/misc/emulators/cdemu/analyzer.nix | 4 +- pkgs/misc/emulators/cdemu/gui.nix | 4 +- pkgs/misc/emulators/epsxe/default.nix | 4 +- pkgs/misc/emulators/kega-fusion/default.nix | 4 +- pkgs/misc/emulators/nestopia/default.nix | 4 +- pkgs/misc/solfege/default.nix | 4 +- pkgs/misc/themes/adapta/default.nix | 4 +- pkgs/misc/themes/equilux-theme/default.nix | 4 +- pkgs/misc/themes/numix-solarized/default.nix | 4 +- pkgs/misc/themes/numix/default.nix | 4 +- pkgs/os-specific/linux/usermount/default.nix | 4 +- pkgs/tools/X11/caffeine-ng/default.nix | 4 +- pkgs/tools/X11/xpra/default.nix | 4 +- pkgs/tools/audio/gvolicon/default.nix | 4 +- pkgs/tools/graphics/blur-effect/default.nix | 4 +- pkgs/tools/inputmethods/ibus/default.nix | 4 +- pkgs/tools/misc/birdfont/default.nix | 4 +- pkgs/tools/misc/staruml/default.nix | 4 +- pkgs/tools/misc/sweep-visualizer/default.nix | 8 +- .../misc/system-config-printer/default.nix | 4 +- pkgs/tools/networking/driftnet/default.nix | 4 +- pkgs/tools/security/encryptr/default.nix | 4 +- pkgs/tools/security/keybase/gui.nix | 4 +- pkgs/tools/system/collectd/default.nix | 4 +- pkgs/tools/system/ddrescueview/default.nix | 4 +- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 2 +- 246 files changed, 581 insertions(+), 581 deletions(-) diff --git a/nixos/modules/services/x11/gdk-pixbuf.nix b/nixos/modules/services/x11/gdk-pixbuf.nix index 2dc8eabd95a..9ad926369ec 100644 --- a/nixos/modules/services/x11/gdk-pixbuf.nix +++ b/nixos/modules/services/x11/gdk-pixbuf.nix @@ -5,21 +5,21 @@ with lib; let cfg = config.services.xserver.gdk-pixbuf; - # Get packages to generate the cache for. We always include gdk_pixbuf. - effectivePackages = unique ([pkgs.gdk_pixbuf] ++ cfg.modulePackages); + # Get packages to generate the cache for. We always include gdk-pixbuf. + effectivePackages = unique ([pkgs.gdk-pixbuf] ++ cfg.modulePackages); # Generate the cache file by running gdk-pixbuf-query-loaders for each # package and concatenating the results. loadersCache = pkgs.runCommand "gdk-pixbuf-loaders.cache" { preferLocalBuild = true; } '' ( for package in ${concatStringsSep " " effectivePackages}; do - module_dir="$package/${pkgs.gdk_pixbuf.moduleDir}" + module_dir="$package/${pkgs.gdk-pixbuf.moduleDir}" if [[ ! -d $module_dir ]]; then echo "Warning (services.xserver.gdk-pixbuf): missing module directory $module_dir" 1>&2 continue fi GDK_PIXBUF_MODULEDIR="$module_dir" \ - ${pkgs.gdk_pixbuf.dev}/bin/gdk-pixbuf-query-loaders + ${pkgs.gdk-pixbuf.dev}/bin/gdk-pixbuf-query-loaders done ) > "$out" ''; diff --git a/nixos/tests/gdk-pixbuf.nix b/nixos/tests/gdk-pixbuf.nix index 005c5111da2..9a62b593f46 100644 --- a/nixos/tests/gdk-pixbuf.nix +++ b/nixos/tests/gdk-pixbuf.nix @@ -3,12 +3,12 @@ import ./make-test.nix ({ pkgs, ... }: { name = "gdk-pixbuf"; meta = { - maintainers = pkgs.gdk_pixbuf.meta.maintainers; + maintainers = pkgs.gdk-pixbuf.meta.maintainers; }; machine = { pkgs, ... }: { environment.systemPackages = with pkgs; [ gnome-desktop-testing ]; - environment.variables.XDG_DATA_DIRS = [ "${pkgs.gdk_pixbuf.installedTests}/share" ]; + environment.variables.XDG_DATA_DIRS = [ "${pkgs.gdk-pixbuf.installedTests}/share" ]; # Tests allocate a lot of memory trying to exploit a CVE # but qemu-system-i386 has a 2047M memory limit diff --git a/nixos/tests/ostree.nix b/nixos/tests/ostree.nix index 8b19004874e..d7ad84a1a5f 100644 --- a/nixos/tests/ostree.nix +++ b/nixos/tests/ostree.nix @@ -12,7 +12,7 @@ import ./make-test.nix ({ pkgs, lib, ... }: { gnome-desktop-testing ostree gnupg (python3.withPackages (p: with p; [ pyyaml ])) ]; - environment.variables.GI_TYPELIB_PATH = lib.makeSearchPath "lib/girepository-1.0" (with pkgs; [ gtk3 pango.out ostree gdk_pixbuf atk ]); # for GJS tests + environment.variables.GI_TYPELIB_PATH = lib.makeSearchPath "lib/girepository-1.0" (with pkgs; [ gtk3 pango.out ostree gdk-pixbuf atk ]); # for GJS tests }; testScript = '' diff --git a/pkgs/applications/altcoins/exodus/default.nix b/pkgs/applications/altcoins/exodus/default.nix index 421f739a7a8..bc354a5213e 100644 --- a/pkgs/applications/altcoins/exodus/default.nix +++ b/pkgs/applications/altcoins/exodus/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, unzip, glib, systemd, nss, nspr, gtk3-x11, gnome2, -atk, cairo, gdk_pixbuf, xorg, xorg_sys_opengl, utillinux, alsaLib, dbus, at-spi2-atk, +atk, cairo, gdk-pixbuf, xorg, xorg_sys_opengl, utillinux, alsaLib, dbus, at-spi2-atk, cups, vivaldi-ffmpeg-codecs, libpulseaudio }: stdenv.mkDerivation rec { @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { gnome2.pango atk cairo - gdk_pixbuf + gdk-pixbuf xorg.libX11 xorg.libxcb xorg.libXcomposite diff --git a/pkgs/applications/altcoins/parity-ui/env.nix b/pkgs/applications/altcoins/parity-ui/env.nix index 625a008af91..a878bbf2e3e 100644 --- a/pkgs/applications/altcoins/parity-ui/env.nix +++ b/pkgs/applications/altcoins/parity-ui/env.nix @@ -1,11 +1,11 @@ { stdenv, lib, zlib, glib, alsaLib, dbus, gtk2, atk, pango, freetype, fontconfig -, libgnome-keyring3, gdk_pixbuf, cairo, cups, expat, libgpgerror, nspr +, libgnome-keyring3, gdk-pixbuf, cairo, cups, expat, libgpgerror, nspr , nss, xorg, libcap, systemd, libnotify, libsecret, gnome2 }: let packages = [ stdenv.cc.cc zlib glib dbus gtk2 atk pango freetype libgnome-keyring3 - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr nss + fontconfig gdk-pixbuf cairo cups expat libgpgerror alsaLib nspr nss xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr xorg.libXcursor xorg.libxkbfile xorg.libXScrnSaver libcap systemd libnotify diff --git a/pkgs/applications/audio/amarok/default.nix b/pkgs/applications/audio/amarok/default.nix index 855d31aadbb..a4aa6428097 100644 --- a/pkgs/applications/audio/amarok/default.nix +++ b/pkgs/applications/audio/amarok/default.nix @@ -3,7 +3,7 @@ , qca-qt5, qjson, qtquickcontrols2, qtscript, qtwebengine , karchive, kcmutils, kconfig, kdnssd, kguiaddons, kinit, kirigami2, knewstuff, knotifyconfig, ktexteditor, kwindowsystem , fftw, phonon, plasma-framework, threadweaver -, curl, ffmpeg, gdk_pixbuf, libaio, libmtp, loudmouth, lzo, lz4, mysql57, pcre, snappy, taglib, taglib_extras +, curl, ffmpeg, gdk-pixbuf, libaio, libmtp, loudmouth, lzo, lz4, mysql57, pcre, snappy, taglib, taglib_extras }: let @@ -29,7 +29,7 @@ in mkDerivation { qca-qt5 qjson qtquickcontrols2 qtscript qtwebengine karchive kcmutils kconfig kdnssd kguiaddons kinit kirigami2 knewstuff knotifyconfig ktexteditor kwindowsystem phonon plasma-framework threadweaver - curl fftw ffmpeg gdk_pixbuf libaio libmtp loudmouth lz4 lzo mysql57.server mysql57.server.static + curl fftw ffmpeg gdk-pixbuf libaio libmtp loudmouth lz4 lzo mysql57.server mysql57.server.static pcre snappy taglib taglib_extras ]; diff --git a/pkgs/applications/audio/audacious/qt-5.nix b/pkgs/applications/audio/audacious/qt-5.nix index 019bde7cc64..baf7b108e50 100644 --- a/pkgs/applications/audio/audacious/qt-5.nix +++ b/pkgs/applications/audio/audacious/qt-5.nix @@ -2,7 +2,7 @@ mkDerivation, lib, fetchurl, fetchpatch, gettext, pkgconfig, qtbase, - alsaLib, curl, faad2, ffmpeg, flac, fluidsynth, gdk_pixbuf, lame, libbs2b, + alsaLib, curl, faad2, ffmpeg, flac, fluidsynth, gdk-pixbuf, lame, libbs2b, libcddb, libcdio, libcue, libjack2, libmad, libmms, libmodplug, libmowgli, libnotify, libogg, libpulseaudio, libsamplerate, libsidplayfp, libsndfile, libvorbis, libxml2, lirc, mpg123, neon, qtmultimedia, soxr, @@ -45,7 +45,7 @@ mkDerivation { qtbase # Plugin dependencies - alsaLib curl faad2 ffmpeg flac fluidsynth gdk_pixbuf lame libbs2b libcddb + alsaLib curl faad2 ffmpeg flac fluidsynth gdk-pixbuf lame libbs2b libcddb libcdio libcue libjack2 libmad libmms libmodplug libmowgli libnotify libogg libpulseaudio libsamplerate libsidplayfp libsndfile libvorbis libxml2 lirc mpg123 neon qtmultimedia soxr wavpack diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix index 125c0f7a753..31716fce1c2 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio1.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, alsaLib, bzip2, cairo, dpkg, freetype, gdk_pixbuf +{ stdenv, fetchurl, alsaLib, bzip2, cairo, dpkg, freetype, gdk-pixbuf , wrapGAppsHook, gtk2, gtk3, harfbuzz, jdk, lib, xorg , libbsd, libjack2, libpng, ffmpeg , libxkbcommon @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { dontWrapGApps = true; # we only want $gappsWrapperArgs here buildInputs = with xorg; [ - alsaLib bzip2.out cairo freetype gdk_pixbuf gtk2 gtk3 harfbuzz libX11 libXau + alsaLib bzip2.out cairo freetype gdk-pixbuf gtk2 gtk3 harfbuzz libX11 libXau libXcursor libXdmcp libXext libXfixes libXrender libbsd libjack2 libpng libxcb libxkbfile pixman xcbutil xcbutilwm zlib ]; diff --git a/pkgs/applications/audio/cmusfm/default.nix b/pkgs/applications/audio/cmusfm/default.nix index e528e9699a7..2147a84f24b 100644 --- a/pkgs/applications/audio/cmusfm/default.nix +++ b/pkgs/applications/audio/cmusfm/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, libnotify, gdk_pixbuf }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, libnotify, gdk-pixbuf }: stdenv.mkDerivation rec { version = "2018-10-11"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { # building configureFlags = [ "--enable-libnotify" ]; nativeBuildInputs = [ autoreconfHook pkgconfig ]; - buildInputs = [ curl libnotify gdk_pixbuf ]; + buildInputs = [ curl libnotify gdk-pixbuf ]; meta = with stdenv.lib; { description = "Last.fm and Libre.fm standalone scrobbler for the cmus music player"; diff --git a/pkgs/applications/audio/faust/faust2alsa.nix b/pkgs/applications/audio/faust/faust2alsa.nix index 17cec46f6c6..6af5af9bbaf 100644 --- a/pkgs/applications/audio/faust/faust2alsa.nix +++ b/pkgs/applications/audio/faust/faust2alsa.nix @@ -4,7 +4,7 @@ , cairo , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , gtk2 , pango @@ -20,7 +20,7 @@ faust.wrapWithBuildEnv { cairo fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gtk2 pango diff --git a/pkgs/applications/audio/google-play-music-desktop-player/default.nix b/pkgs/applications/audio/google-play-music-desktop-player/default.nix index 5951572dd24..7716b1e0c35 100644 --- a/pkgs/applications/audio/google-play-music-desktop-player/default.nix +++ b/pkgs/applications/audio/google-play-music-desktop-player/default.nix @@ -1,5 +1,5 @@ { stdenv, alsaLib, atk, cairo, cups, dbus, dpkg, expat, fontconfig, freetype -, fetchurl, GConf, gdk_pixbuf, glib, gtk2, gtk3, libpulseaudio, makeWrapper, nspr +, fetchurl, GConf, gdk-pixbuf, glib, gtk2, gtk3, libpulseaudio, makeWrapper, nspr , nss, pango, udev, xorg }: @@ -16,7 +16,7 @@ let fontconfig freetype GConf - gdk_pixbuf + gdk-pixbuf glib gtk2 gtk3 diff --git a/pkgs/applications/audio/gtkpod/default.nix b/pkgs/applications/audio/gtkpod/default.nix index 0727ab56f7d..e01dbc1d30f 100644 --- a/pkgs/applications/audio/gtkpod/default.nix +++ b/pkgs/applications/audio/gtkpod/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, pkgconfig, wrapGAppsHook, intltool, libgpod, curl, flac, gnome3, gtk3, gettext, perlPackages, flex, libid3tag, gdl, - libvorbis, gdk_pixbuf }: + libvorbis, gdk-pixbuf }: stdenv.mkDerivation rec { version = "2.1.5"; @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig wrapGAppsHook intltool ]; buildInputs = [ curl gettext - flex libgpod libid3tag flac libvorbis gtk3 gdk_pixbuf + flex libgpod libid3tag flac libvorbis gtk3 gdk-pixbuf gdl gnome3.adwaita-icon-theme gnome3.anjuta ] ++ (with perlPackages; [ perl XMLParser ]); diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index d457f25e316..8db837105f8 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, python3, wrapGAppsHook, gettext, libsoup, gnome3, gtk3, gdk_pixbuf, +{ stdenv, fetchurl, python3, wrapGAppsHook, gettext, libsoup, gnome3, gtk3, gdk-pixbuf, tag ? "", xvfb_run, dbus, glibcLocales, glib, glib-networking, gobject-introspection, gst_all_1, withGstPlugins ? true, xineBackend ? false, xineLib, @@ -20,7 +20,7 @@ python3.pkgs.buildPythonApplication rec { checkInputs = with python3.pkgs; [ pytest pytest_xdist pyflakes pycodestyle polib xvfb_run dbus.daemon glibcLocales ]; - buildInputs = [ gnome3.adwaita-icon-theme libsoup glib glib-networking gtk3 webkitgtk gdk_pixbuf keybinder3 gtksourceview libmodplug libappindicator-gtk3 kakasi gobject-introspection ] + buildInputs = [ gnome3.adwaita-icon-theme libsoup glib glib-networking gtk3 webkitgtk gdk-pixbuf keybinder3 gtksourceview libmodplug libappindicator-gtk3 kakasi gobject-introspection ] ++ (if xineBackend then [ xineLib ] else with gst_all_1; [ gstreamer gst-plugins-base ] ++ optionals withGstPlugins [ gst-plugins-good gst-plugins-ugly gst-plugins-bad ]); diff --git a/pkgs/applications/audio/reaper/default.nix b/pkgs/applications/audio/reaper/default.nix index 95a08b59b00..0c1d91254da 100644 --- a/pkgs/applications/audio/reaper/default.nix +++ b/pkgs/applications/audio/reaper/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, autoPatchelfHook, makeWrapper , alsaLib, xorg -, gtk3, pango, gdk_pixbuf, cairo, glib, freetype +, gtk3, pango, gdk-pixbuf, cairo, glib, freetype , libpulseaudio, xdg_utils }: @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { xorg.libX11 xorg.libXi - gdk_pixbuf + gdk-pixbuf pango cairo glib diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 6e926fe11c3..77aa7994994 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype -, glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng, libnotify +, glib, pango, cairo, atk, gdk-pixbuf, gtk2, cups, nspr, nss, libpng, libnotify , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 , at-spi2-atk }: @@ -32,7 +32,7 @@ let ffmpeg_3 fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gtk2 libgcrypt diff --git a/pkgs/applications/audio/transcribe/default.nix b/pkgs/applications/audio/transcribe/default.nix index 29021e870af..74079041948 100644 --- a/pkgs/applications/audio/transcribe/default.nix +++ b/pkgs/applications/audio/transcribe/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, wrapGAppsHook, alsaLib, atk, cairo, gdk_pixbuf +{ stdenv, fetchzip, wrapGAppsHook, alsaLib, atk, cairo, gdk-pixbuf , glib, gst_all_1, gtk3, libSM, libX11, libpng12, pango, zlib }: stdenv.mkDerivation rec { @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { dontPatchELF = true; libPath = with gst_all_1; stdenv.lib.makeLibraryPath [ - stdenv.cc.cc glib gtk3 atk pango cairo gdk_pixbuf alsaLib + stdenv.cc.cc glib gtk3 atk pango cairo gdk-pixbuf alsaLib libX11 libSM libpng12 gstreamer gst-plugins-base zlib ]; diff --git a/pkgs/applications/backup/crashplan/crashplan-small-business.nix b/pkgs/applications/backup/crashplan/crashplan-small-business.nix index 2016d21c592..5db4badeb6c 100644 --- a/pkgs/applications/backup/crashplan/crashplan-small-business.nix +++ b/pkgs/applications/backup/crashplan/crashplan-small-business.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, getopt, jre, cpio, gawk, gnugrep, gnused, - procps, which, gtk2, atk, glib, pango, gdk_pixbuf, cairo, freetype, + procps, which, gtk2, atk, glib, pango, gdk-pixbuf, cairo, freetype, fontconfig, dbus, gconf, nss, nspr, alsaLib, cups, expat, udev, libX11, libxcb, libXi, libXcursor, libXdamage, libXrandr, libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nodePackages, @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { postFixup = '' patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/electron/crashplan wrapProgram $out/bin/CrashPlanDesktop --prefix LD_LIBRARY_PATH ":" "${stdenv.lib.makeLibraryPath [ - stdenv.cc.cc.lib gtk2 atk glib pango gdk_pixbuf cairo freetype + stdenv.cc.cc.lib gtk2 atk glib pango gdk-pixbuf cairo freetype fontconfig dbus gconf nss nspr alsaLib cups expat udev libX11 libxcb libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes libXrender libXtst libXScrnSaver]}" diff --git a/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix b/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix index 38270a25c9c..45fd3cb8cbb 100644 --- a/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix +++ b/pkgs/applications/display-managers/lightdm-enso-os-greeter/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchgit, pkgconfig , dbus, pcre, epoxy, libXdmcp, at-spi2-core, libxklavier, libxkbcommon, libpthreadstubs -, gtk3, vala, cmake, libgee, libX11, lightdm, gdk_pixbuf, clutter-gtk }: +, gtk3, vala, cmake, libgee, libX11, lightdm, gdk-pixbuf, clutter-gtk }: stdenv.mkDerivation rec { version = "0.2.1"; @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { libX11 lightdm libXdmcp - gdk_pixbuf + gdk-pixbuf clutter-gtk libxklavier at-spi2-core diff --git a/pkgs/applications/editors/atom/env.nix b/pkgs/applications/editors/atom/env.nix index da78c39324a..46dd4a22864 100644 --- a/pkgs/applications/editors/atom/env.nix +++ b/pkgs/applications/editors/atom/env.nix @@ -1,12 +1,12 @@ { stdenv, lib, zlib, glib, alsaLib, dbus, gtk3, atk, pango, freetype, fontconfig -, libgnome-keyring3, gdk_pixbuf, cairo, cups, expat, libgpgerror, nspr +, libgnome-keyring3, gdk-pixbuf, cairo, cups, expat, libgpgerror, nspr , gconf, nss, xorg, libcap, systemd, libnotify, libsecret }: let packages = [ stdenv.cc.cc zlib glib dbus gtk3 atk pango freetype libgnome-keyring3 - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss + fontconfig gdk-pixbuf cairo cups expat libgpgerror alsaLib nspr gconf nss xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr xorg.libXcursor xorg.libxkbfile xorg.libXScrnSaver libcap systemd libnotify diff --git a/pkgs/applications/editors/brackets/default.nix b/pkgs/applications/editors/brackets/default.nix index ce9f10f39c4..17ae4052198 100644 --- a/pkgs/applications/editors/brackets/default.nix +++ b/pkgs/applications/editors/brackets/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, gconf +{ stdenv, fetchurl, gtk2, glib, gdk-pixbuf, alsaLib, nss, nspr, gconf , cups, libgcrypt_1_5, systemd, dbus, libXdamage, expat }: with stdenv.lib; let bracketsLibs = makeLibraryPath [ - gtk2 glib gdk_pixbuf stdenv.cc.cc.lib alsaLib nss nspr gconf cups libgcrypt_1_5 dbus systemd libXdamage expat + gtk2 glib gdk-pixbuf stdenv.cc.cc.lib alsaLib nss nspr gconf cups libgcrypt_1_5 dbus systemd libXdamage expat ]; in stdenv.mkDerivation rec { diff --git a/pkgs/applications/editors/lighttable/default.nix b/pkgs/applications/editors/lighttable/default.nix index dfd6543c598..c3a280aed92 100644 --- a/pkgs/applications/editors/lighttable/default.nix +++ b/pkgs/applications/editors/lighttable/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, zlib, glib, alsaLib, makeDesktopItem -, dbus, gtk2, atk, pango, freetype, fontconfig, libgnome-keyring3, gdk_pixbuf +, dbus, gtk2, atk, pango, freetype, fontconfig, libgnome-keyring3, gdk-pixbuf , cairo, cups, expat, libgpgerror, nspr, gnome2, nss, xorg, systemd, libnotify }: let libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc zlib glib dbus gtk2 atk pango freetype libgnome-keyring3 nss - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr gnome2.GConf + fontconfig gdk-pixbuf cairo cups expat libgpgerror alsaLib nspr gnome2.GConf xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst xorg.libXcomposite xorg.libXi xorg.libXfixes libnotify xorg.libXrandr xorg.libXcursor diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix index de9a089ec8c..11154250e58 100644 --- a/pkgs/applications/editors/rednotebook/default.nix +++ b/pkgs/applications/editors/rednotebook/default.nix @@ -1,5 +1,5 @@ { lib, buildPythonApplication, fetchFromGitHub -, gdk_pixbuf, glib, gobject-introspection, gtk3, gtksourceview, pango, webkitgtk +, gdk-pixbuf, glib, gobject-introspection, gtk3, gtksourceview, pango, webkitgtk , pygobject3, pyyaml }: @@ -20,7 +20,7 @@ buildPythonApplication rec { nativeBuildInputs = [ gobject-introspection ]; propagatedBuildInputs = [ - gdk_pixbuf glib gtk3 gtksourceview pango webkitgtk + gdk-pixbuf glib gtk3 gtksourceview pango webkitgtk pygobject3 pyyaml ]; diff --git a/pkgs/applications/graphics/avocode/default.nix b/pkgs/applications/graphics/avocode/default.nix index 57631037cd0..140548cd20a 100644 --- a/pkgs/applications/graphics/avocode/default.nix +++ b/pkgs/applications/graphics/avocode/default.nix @@ -1,5 +1,5 @@ { stdenv, makeDesktopItem, fetchurl, unzip -, gdk_pixbuf, glib, gtk3, atk, at-spi2-atk, pango, cairo, freetype, fontconfig, dbus, nss, nspr, alsaLib, cups, expat, udev, gnome3 +, gdk-pixbuf, glib, gtk3, atk, at-spi2-atk, pango, cairo, freetype, fontconfig, dbus, nss, nspr, alsaLib, cups, expat, udev, gnome3 , xorg, mozjpeg, makeWrapper, wrapGAppsHook, hicolor-icon-theme, libuuid }: @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { libPath = stdenv.lib.makeLibraryPath (with xorg; [ stdenv.cc.cc.lib - gdk_pixbuf + gdk-pixbuf glib gtk3 atk diff --git a/pkgs/applications/graphics/drawio/default.nix b/pkgs/applications/graphics/drawio/default.nix index 70cf1c149ab..4d5dbeb35b1 100644 --- a/pkgs/applications/graphics/drawio/default.nix +++ b/pkgs/applications/graphics/drawio/default.nix @@ -2,7 +2,7 @@ # Dynamic libraries , alsaLib, atk, at-spi2-atk, at-spi2-core, cairo, dbus, cups, expat -, gdk_pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor +, gdk-pixbuf, glib, gtk3, libX11, libXScrnSaver, libXcomposite, libXcursor , libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst , libxcb, libuuid, nspr, nss, pango @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { cups dbus expat - gdk_pixbuf + gdk-pixbuf glib gtk3 libX11 diff --git a/pkgs/applications/graphics/gimp/default.nix b/pkgs/applications/graphics/gimp/default.nix index 16b520fa7ed..e3994b1b412 100644 --- a/pkgs/applications/graphics/gimp/default.nix +++ b/pkgs/applications/graphics/gimp/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, substituteAll, pkgconfig, intltool, babl, gegl, gtk2, glib, gdk_pixbuf, isocodes +{ stdenv, fetchurl, substituteAll, pkgconfig, intltool, babl, gegl, gtk2, glib, gdk-pixbuf, isocodes , pango, cairo, freetype, fontconfig, lcms, libpng, libjpeg, poppler, poppler_data, libtiff , libmng, librsvg, libwmf, zlib, libzip, ghostscript, aalib, shared-mime-info , python2Packages, libexif, gettext, xorg, glib-networking, libmypaint, gexiv2 @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool gettext wrapPython ]; propagatedBuildInputs = [ gegl ]; # needed by gimp-2.0.pc buildInputs = [ - babl gegl gtk2 glib gdk_pixbuf pango cairo gexiv2 harfbuzz isocodes + babl gegl gtk2 glib gdk-pixbuf pango cairo gexiv2 harfbuzz isocodes freetype fontconfig lcms libpng libjpeg poppler poppler_data libtiff openexr libmng librsvg libwmf zlib libzip ghostscript aalib shared-mime-info libwebp libheif python pygtk libexif xorg.libXpm glib-networking libmypaint mypaint-brushes @@ -30,7 +30,7 @@ in stdenv.mkDerivation rec { pythonPath = [ pygtk ]; # Check if librsvg was built with --disable-pixbuf-loader. - PKG_CONFIG_GDK_PIXBUF_2_0_GDK_PIXBUF_MODULEDIR = "${librsvg}/${gdk_pixbuf.moduleDir}"; + PKG_CONFIG_GDK_PIXBUF_2_0_GDK_PIXBUF_MODULEDIR = "${librsvg}/${gdk-pixbuf.moduleDir}"; preConfigure = '' # The check runs before glib-networking is registered diff --git a/pkgs/applications/graphics/giv/default.nix b/pkgs/applications/graphics/giv/default.nix index c5eb126cfbf..ec708ad971a 100644 --- a/pkgs/applications/graphics/giv/default.nix +++ b/pkgs/applications/graphics/giv/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gdk_pixbuf, scons, pkgconfig, gtk2, glib +{ stdenv, fetchFromGitHub, gdk-pixbuf, scons, pkgconfig, gtk2, glib , pcre, cfitsio, perl, gob2, vala, libtiff, json-glib }: stdenv.mkDerivation rec { @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { patches = [ ./build.patch ]; nativeBuildInputs = [ scons pkgconfig vala perl gob2 ]; - buildInputs = [ gdk_pixbuf gtk2 glib pcre cfitsio libtiff json-glib ]; + buildInputs = [ gdk-pixbuf gtk2 glib pcre cfitsio libtiff json-glib ]; meta = with stdenv.lib; { description = "Cross platform image and hierarchical vector viewer based"; diff --git a/pkgs/applications/graphics/mypaint/default.nix b/pkgs/applications/graphics/mypaint/default.nix index 36c7e7e2fb3..466ab3e26fb 100644 --- a/pkgs/applications/graphics/mypaint/default.nix +++ b/pkgs/applications/graphics/mypaint/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, gtk3, intltool, json_c, lcms2, libpng, librsvg, gobject-introspection, hicolor-icon-theme -, gdk_pixbuf, pkgconfig, python2Packages, scons, swig, wrapGAppsHook }: +, gdk-pixbuf, pkgconfig, python2Packages, scons, swig, wrapGAppsHook }: let inherit (python2Packages) python pycairo pygobject3 numpy; @@ -21,7 +21,7 @@ in stdenv.mkDerivation rec { ]; buildInputs = [ - gtk3 gdk_pixbuf json_c lcms2 libpng librsvg pycairo pygobject3 python hicolor-icon-theme + gtk3 gdk-pixbuf json_c lcms2 libpng librsvg pycairo pygobject3 python hicolor-icon-theme ]; propagatedBuildInputs = [ numpy ]; diff --git a/pkgs/applications/graphics/pencil/default.nix b/pkgs/applications/graphics/pencil/default.nix index de758271004..f622d3f388e 100644 --- a/pkgs/applications/graphics/pencil/default.nix +++ b/pkgs/applications/graphics/pencil/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, lib, makeWrapper, # build dependencies alsaLib, atk, cairo, cups, dbus, expat, fontconfig, - freetype, gdk_pixbuf, glib, gnome2, nspr, nss, xorg, + freetype, gdk-pixbuf, glib, gnome2, nspr, nss, xorg, glibc, systemd }: @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.gtk diff --git a/pkgs/applications/graphics/rapid-photo-downloader/default.nix b/pkgs/applications/graphics/rapid-photo-downloader/default.nix index b244bed9294..5991a3351ee 100644 --- a/pkgs/applications/graphics/rapid-photo-downloader/default.nix +++ b/pkgs/applications/graphics/rapid-photo-downloader/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, python3Packages , file, intltool, gobject-introspection, libgudev , udisks, gexiv2, gst_all_1, libnotify -, exiftool, gdk_pixbuf, libmediainfo, vmtouch +, exiftool, gdk-pixbuf, libmediainfo, vmtouch }: python3Packages.buildPythonApplication rec { @@ -33,7 +33,7 @@ python3Packages.buildPythonApplication rec { # NOTE: Without gobject-introspection in buildInputs, launching fails with # "Namespace [Notify / GExiv2 / GUdev] not available" buildInputs = [ - gdk_pixbuf + gdk-pixbuf gexiv2 gobject-introspection gst_all_1.gst-libav diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index 294737ee733..79bc743fbf0 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -24,7 +24,7 @@ , librest , gettext , desktop-file-utils -, gdk_pixbuf +, gdk-pixbuf , librsvg , wrapGAppsHook , gobject-introspection @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { libraw json-glib glib - gdk_pixbuf + gdk-pixbuf librsvg librest gcr diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix index 18754b2b854..527a21f93fe 100644 --- a/pkgs/applications/graphics/shutter/default.nix +++ b/pkgs/applications/graphics/shutter/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, perlPackages, makeWrapper, imagemagick, gdk_pixbuf, librsvg +{ stdenv, fetchurl, perlPackages, makeWrapper, imagemagick, gdk-pixbuf, librsvg , hicolor-icon-theme, procps }: @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ makeWrapper ]; - buildInputs = [ perlPackages.perl procps gdk_pixbuf librsvg ] ++ perlModules; + buildInputs = [ perlPackages.perl procps gdk-pixbuf librsvg ] ++ perlModules; installPhase = '' mkdir -p "$out" diff --git a/pkgs/applications/graphics/viewnior/default.nix b/pkgs/applications/graphics/viewnior/default.nix index 5afd7a0237d..48930ccbbb9 100644 --- a/pkgs/applications/graphics/viewnior/default.nix +++ b/pkgs/applications/graphics/viewnior/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gtk2, libpng, exiv2, lcms -, intltool, gettext, shared-mime-info, glib, gdk_pixbuf, perl}: +, intltool, gettext, shared-mime-info, glib, gdk-pixbuf, perl}: stdenv.mkDerivation rec { name = "viewnior-${version}"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ pkgconfig gtk2 libpng exiv2 lcms intltool gettext - shared-mime-info glib gdk_pixbuf perl + shared-mime-info glib gdk-pixbuf perl ]; preFixup = '' diff --git a/pkgs/applications/misc/adobe-reader/default.nix b/pkgs/applications/misc/adobe-reader/default.nix index 0ca12a0096e..d1e4856e052 100644 --- a/pkgs/applications/misc/adobe-reader/default.nix +++ b/pkgs/applications/misc/adobe-reader/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, libX11, cups, zlib, libxml2, pango, atk, gtk2, glib -, gdk_pixbuf }: +, gdk-pixbuf }: assert stdenv.hostPlatform.system == "i686-linux"; @@ -20,7 +20,7 @@ stdenv.mkDerivation { # versions. libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.cc libX11 zlib libxml2 cups pango atk gtk2 glib gdk_pixbuf ]; + [ stdenv.cc.cc libX11 zlib libxml2 cups pango atk gtk2 glib gdk-pixbuf ]; passthru.mozillaPlugin = "/libexec/adobe-reader/Browser/intellinux"; diff --git a/pkgs/applications/misc/airtame/default.nix b/pkgs/applications/misc/airtame/default.nix index 3e5bf8df4a7..50582d94ff4 100644 --- a/pkgs/applications/misc/airtame/default.nix +++ b/pkgs/applications/misc/airtame/default.nix @@ -1,12 +1,12 @@ { stdenv, lib, fetchurl, makeDesktopItem, makeWrapper , alsaLib, atk, cairo, cups, curl, dbus, expat, ffmpeg, fontconfig, freetype -, gdk_pixbuf, glib, glibc, gnome2, gtk2, libX11, libXScrnSaver, libXcomposite +, gdk-pixbuf, glib, glibc, gnome2, gtk2, libX11, libXScrnSaver, libXcomposite , libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender , libXtst, libopus, libpulseaudio, libxcb, nspr, nss, pango, udev, x264 }: let libPath = lib.makeLibraryPath [ - alsaLib atk cairo cups curl dbus expat ffmpeg fontconfig freetype gdk_pixbuf + alsaLib atk cairo cups curl dbus expat ffmpeg fontconfig freetype gdk-pixbuf glib glibc gnome2.GConf gtk2 libopus nspr nss pango stdenv.cc.cc udev x264 libX11 libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXtst libpulseaudio libxcb diff --git a/pkgs/applications/misc/batti/default.nix b/pkgs/applications/misc/batti/default.nix index 9322aefb2d6..abb3eb33536 100644 --- a/pkgs/applications/misc/batti/default.nix +++ b/pkgs/applications/misc/batti/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl , pkgconfig, gettext, pythonPackages -, gtk2, gdk_pixbuf, upower +, gtk2, gdk-pixbuf, upower , makeWrapper }: let @@ -16,7 +16,7 @@ in stdenv.mkDerivation rec { }; buildInputs = with stdenv.lib; - [ pkgconfig gettext python gtk2 pygtk dbus-python gdk_pixbuf upower makeWrapper ]; + [ pkgconfig gettext python gtk2 pygtk dbus-python gdk-pixbuf upower makeWrapper ]; dontConfigure = true; diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix index 35073db2ae1..7da2ae421d7 100644 --- a/pkgs/applications/misc/dunst/default.nix +++ b/pkgs/applications/misc/dunst/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchFromGitHub, makeWrapper , pkgconfig, which, perl, libXrandr -, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver +, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver , libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false }: @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ]; buildInputs = [ - cairo dbus gdk_pixbuf glib libX11 libXScrnSaver + cairo dbus gdk-pixbuf glib libX11 libXScrnSaver libXinerama libnotify pango xorgproto librsvg libXrandr ]; diff --git a/pkgs/applications/misc/et/default.nix b/pkgs/applications/misc/et/default.nix index 4aaaa333998..bf1ae3037fc 100644 --- a/pkgs/applications/misc/et/default.nix +++ b/pkgs/applications/misc/et/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk_pixbuf }: +{ stdenv, fetchFromGitHub, pkgconfig, libnotify, gdk-pixbuf }: stdenv.mkDerivation rec { name = "et-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "167w9qwfpd63rgy0xmkkkh5krmd91q42c3ijy3j099krgdfbb9bc"; }; - buildInputs = [ libnotify gdk_pixbuf ]; + buildInputs = [ libnotify gdk-pixbuf ]; nativeBuildInputs = [ pkgconfig ]; installPhase = '' diff --git a/pkgs/applications/misc/evilvte/default.nix b/pkgs/applications/misc/evilvte/default.nix index c7fcf18e4e3..4746f4ead1b 100644 --- a/pkgs/applications/misc/evilvte/default.nix +++ b/pkgs/applications/misc/evilvte/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, makeWrapper, pkgconfig, - gnome2, glib, pango, cairo, gdk_pixbuf, atk, freetype, xorg, + gnome2, glib, pango, cairo, gdk-pixbuf, atk, freetype, xorg, configH ? "" }: @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - gnome2.vte glib pango gnome2.gtk cairo gdk_pixbuf atk freetype xorg.libX11 + gnome2.vte glib pango gnome2.gtk cairo gdk-pixbuf atk freetype xorg.libX11 xorg.xorgproto xorg.libXext makeWrapper pkgconfig ]; diff --git a/pkgs/applications/misc/green-pdfviewer/default.nix b/pkgs/applications/misc/green-pdfviewer/default.nix index 00421a2e033..cb4f4748eec 100644 --- a/pkgs/applications/misc/green-pdfviewer/default.nix +++ b/pkgs/applications/misc/green-pdfviewer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, poppler, pkgconfig, gdk_pixbuf, SDL, gtk2 }: +{ stdenv, fetchFromGitHub, poppler, pkgconfig, gdk-pixbuf, SDL, gtk2 }: stdenv.mkDerivation rec { name = "green-pdfviewer-${version}"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ poppler gdk_pixbuf SDL gtk2 ]; + buildInputs = [ poppler gdk-pixbuf SDL gtk2 ]; patches = [ ./gdk-libs.patch diff --git a/pkgs/applications/misc/hyper/default.nix b/pkgs/applications/misc/hyper/default.nix index 2fd7e2f94af..f8d808a49c2 100644 --- a/pkgs/applications/misc/hyper/default.nix +++ b/pkgs/applications/misc/hyper/default.nix @@ -1,11 +1,11 @@ -{ stdenv, lib, fetchurl, dpkg, atk, glib, pango, gdk_pixbuf, gnome2, gtk2, cairo +{ stdenv, lib, fetchurl, dpkg, atk, glib, pango, gdk-pixbuf, gnome2, gtk2, cairo , freetype, fontconfig, dbus, libXi, libXcursor, libXdamage, libXrandr , libXcomposite, libXext, libXfixes, libXrender, libX11, libXtst, libXScrnSaver , libxcb, nss, nspr, alsaLib, cups, expat, udev, libpulseaudio }: let libPath = stdenv.lib.makeLibraryPath [ - stdenv.cc.cc gtk2 gnome2.GConf atk glib pango gdk_pixbuf cairo freetype fontconfig dbus + stdenv.cc.cc gtk2 gnome2.GConf atk glib pango gdk-pixbuf cairo freetype fontconfig dbus libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes libxcb libXrender libX11 libXtst libXScrnSaver nss nspr alsaLib cups expat udev libpulseaudio ]; diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix index bc49e810d4e..01aef93e5e5 100644 --- a/pkgs/applications/misc/kiwix/default.nix +++ b/pkgs/applications/misc/kiwix/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, makeWrapper, pkgconfig , zip, python, zlib, which, icu, libmicrohttpd, lzma, aria2, wget, bc , libuuid, libX11, libXext, libXt, libXrender, glib, dbus, dbus-glib -, gtk2, gdk_pixbuf, pango, cairo, freetype, fontconfig, alsaLib, atk, cmake +, gtk2, gdk-pixbuf, pango, cairo, freetype, fontconfig, alsaLib, atk, cmake , xapian, ctpp2, zimlib }: @@ -93,7 +93,7 @@ stdenv.mkDerivation rec { rm $out/bin/kiwix makeWrapper $out/lib/kiwix/kiwix-launcher $out/bin/kiwix \ - --suffix LD_LIBRARY_PATH : ${makeLibraryPath [stdenv.cc.cc libX11 libXext libXt libXrender glib dbus dbus-glib gtk2 gdk_pixbuf pango cairo freetype fontconfig alsaLib atk]} \ + --suffix LD_LIBRARY_PATH : ${makeLibraryPath [stdenv.cc.cc libX11 libXext libXt libXrender glib dbus dbus-glib gtk2 gdk-pixbuf pango cairo freetype fontconfig alsaLib atk]} \ --suffix PATH : ${aria2}/bin ''; diff --git a/pkgs/applications/misc/lutris/default.nix b/pkgs/applications/misc/lutris/default.nix index 0f2274ad259..7ccd4d6e5e9 100644 --- a/pkgs/applications/misc/lutris/default.nix +++ b/pkgs/applications/misc/lutris/default.nix @@ -1,6 +1,6 @@ { buildPythonApplication, lib, fetchFromGitHub , wrapGAppsHook, gobject-introspection, gnome-desktop, libnotify, libgnome-keyring, pango -, gdk_pixbuf, atk, webkitgtk, gst_all_1 +, gdk-pixbuf, atk, webkitgtk, gst_all_1 , evdev, pyyaml, pygobject3, requests, pillow , xrandr, pciutils, psmisc, glxinfo, vulkan-tools, xboxdrv, pulseaudio, p7zip, xgamma , libstrangle, wine, fluidsynth, xorgserver @@ -42,7 +42,7 @@ in buildPythonApplication rec { buildInputs = [ wrapGAppsHook gobject-introspection gnome-desktop libnotify libgnome-keyring pango - gdk_pixbuf atk webkitgtk + gdk-pixbuf atk webkitgtk ] ++ gstDeps; makeWrapperArgs = [ diff --git a/pkgs/applications/misc/mako/default.nix b/pkgs/applications/misc/mako/default.nix index 32aa15b09e4..afa1ba5e751 100644 --- a/pkgs/applications/misc/mako/default.nix +++ b/pkgs/applications/misc/mako/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, meson, ninja, pkgconfig, scdoc -, systemd, pango, cairo, gdk_pixbuf +, systemd, pango, cairo, gdk-pixbuf , wayland, wayland-protocols , fetchpatch }: @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ meson ninja pkgconfig scdoc wayland-protocols ]; - buildInputs = [ systemd pango cairo gdk_pixbuf wayland ]; + buildInputs = [ systemd pango cairo gdk-pixbuf wayland ]; mesonFlags = [ "-Dicons=enabled" "-Dman-pages=enabled" "-Dzsh-completions=true" diff --git a/pkgs/applications/misc/mlterm/default.nix b/pkgs/applications/misc/mlterm/default.nix index 2cfa6010853..46ba9d450c8 100644 --- a/pkgs/applications/misc/mlterm/default.nix +++ b/pkgs/applications/misc/mlterm/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, autoconf, makeDesktopItem -, libX11, gdk_pixbuf, cairo, libXft, gtk3, vte +, libX11, gdk-pixbuf, cairo, libXft, gtk3, vte , harfbuzz #substituting glyphs with opentype fonts , fribidi, m17n_lib #bidi and encoding , openssl, libssh2 #build-in ssh @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig autoconf ]; buildInputs = [ - libX11 gdk_pixbuf.dev cairo libXft gtk3 vte + libX11 gdk-pixbuf.dev cairo libXft gtk3 vte harfbuzz fribidi m17n_lib openssl libssh2 ]; diff --git a/pkgs/applications/misc/navit/default.nix b/pkgs/applications/misc/navit/default.nix index 8dc288c0162..e8497dbc7bd 100644 --- a/pkgs/applications/misc/navit/default.nix +++ b/pkgs/applications/misc/navit/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pkgconfig, gtk2, fontconfig, freetype, imlib2 , SDL_image, libGLU_combined, libXmu, freeglut, pcre, dbus, dbus-glib, glib -, librsvg, freeimage, libxslt, cairo, gdk_pixbuf, pango +, librsvg, freeimage, libxslt, cairo, gdk-pixbuf, pango , atk, patchelf, fetchurl, bzip2, python, gettext, quesoglc , gd, cmake, shapelib, SDL_ttf, fribidi, makeWrapper , qtquickcontrols, qtmultimedia, qtspeech, qtsensors @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { gtk2 fontconfig freetype imlib2 libGLU_combined freeimage libxslt libXmu freeglut python gettext quesoglc gd fribidi pcre dbus dbus-glib librsvg shapelib glib - cairo gdk_pixbuf pango atk + cairo gdk-pixbuf pango atk ] ++ optionals sdlSupport [ SDL SDL_ttf SDL_image ] ++ optional postgresqlSupport postgresql ++ optional speechdSupport speechd diff --git a/pkgs/applications/misc/plank/default.nix b/pkgs/applications/misc/plank/default.nix index 8aff573ab83..d5a071fcb54 100644 --- a/pkgs/applications/misc/plank/default.nix +++ b/pkgs/applications/misc/plank/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, vala, atk, cairo, glib, gnome3, gtk3, libwnck3 , libX11, libXfixes, libXi, pango, intltool, pkgconfig, libxml2 -, bamf, gdk_pixbuf, libdbusmenu-gtk3, file, gnome-menus, libgee +, bamf, gdk-pixbuf, libdbusmenu-gtk3, file, gnome-menus, libgee , wrapGAppsHook, autoreconfHook, pantheon }: stdenv.mkDerivation rec { @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { atk bamf cairo - gdk_pixbuf + gdk-pixbuf glib gnome-menus gnome3.dconf diff --git a/pkgs/applications/misc/polar-bookshelf/default.nix b/pkgs/applications/misc/polar-bookshelf/default.nix index 11c643fac2c..81e3d80f516 100644 --- a/pkgs/applications/misc/polar-bookshelf/default.nix +++ b/pkgs/applications/misc/polar-bookshelf/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, makeWrapper, fetchurl , dpkg, wrapGAppsHook, autoPatchelfHook -, gtk3, cairo, gnome2, atk, gdk_pixbuf, glib +, gtk3, cairo, gnome2, atk, gdk-pixbuf, glib , at-spi2-atk, dbus, libX11, libxcb, libXi , libXcursor, libXdamage, libXrandr, libXcomposite , libXext, libXfixes, libXrender, libXtst, libXScrnSaver @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { cairo gnome2.pango atk - gdk_pixbuf + gdk-pixbuf at-spi2-atk dbus libX11 @@ -48,10 +48,10 @@ stdenv.mkDerivation rec { expat ]; - nativeBuildInputs = [ + nativeBuildInputs = [ wrapGAppsHook autoPatchelfHook - makeWrapper + makeWrapper dpkg ]; @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { mv usr/share/* $out/share/ ln -s $out/share/polar-bookshelf/polar-bookshelf $out/bin/polar-bookshelf - + # Correct desktop file `Exec` substituteInPlace $out/share/applications/polar-bookshelf.desktop \ --replace "/opt/Polar Bookshelf/polar-bookshelf" "$out/bin/polar-bookshelf" diff --git a/pkgs/applications/misc/roxterm/default.nix b/pkgs/applications/misc/roxterm/default.nix index 11a75e4064f..aa0ebc29a55 100644 --- a/pkgs/applications/misc/roxterm/default.nix +++ b/pkgs/applications/misc/roxterm/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, docbook_xsl, dbus, dbus-glib, expat -, gsettings-desktop-schemas, gdk_pixbuf, gtk3, hicolor-icon-theme +, gsettings-desktop-schemas, gdk-pixbuf, gtk3, hicolor-icon-theme , imagemagick, itstool, librsvg, libtool, libxslt, makeWrapper , pkgconfig, python, pythonPackages, vte , wrapGAppsHook}: @@ -23,7 +23,7 @@ in stdenv.mkDerivation rec { buildInputs = [ docbook_xsl expat imagemagick itstool librsvg libtool libxslt makeWrapper python pythonPackages.lockfile dbus dbus-glib - gdk_pixbuf gsettings-desktop-schemas gtk3 + gdk-pixbuf gsettings-desktop-schemas gtk3 hicolor-icon-theme vte ]; NIX_CFLAGS_COMPILE = [ "-I${dbus-glib.dev}/include/dbus-1.0" diff --git a/pkgs/applications/misc/rxvt_unicode/default.nix b/pkgs/applications/misc/rxvt_unicode/default.nix index d198c595135..053eaf6e54c 100644 --- a/pkgs/applications/misc/rxvt_unicode/default.nix +++ b/pkgs/applications/misc/rxvt_unicode/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, makeDesktopItem, perlSupport ? true, libX11, libXt, libXft, ncurses, perl, fontconfig, freetype, pkgconfig, libXrender, - gdkPixbufSupport ? true, gdk_pixbuf, unicode3Support ? true }: + gdkPixbufSupport ? true, gdk-pixbuf, unicode3Support ? true }: let pname = "rxvt-unicode"; @@ -31,7 +31,7 @@ stdenv.mkDerivation (rec { [ libX11 libXt libXft ncurses /* required to build the terminfo file */ fontconfig freetype pkgconfig libXrender ] ++ stdenv.lib.optional perlSupport perl - ++ stdenv.lib.optional gdkPixbufSupport gdk_pixbuf; + ++ stdenv.lib.optional gdkPixbufSupport gdk-pixbuf; outputs = [ "out" "terminfo" ]; diff --git a/pkgs/applications/misc/safeeyes/default.nix b/pkgs/applications/misc/safeeyes/default.nix index de1e7a093d5..30f54cdee7e 100644 --- a/pkgs/applications/misc/safeeyes/default.nix +++ b/pkgs/applications/misc/safeeyes/default.nix @@ -1,4 +1,4 @@ -{ lib, python3Packages, gobject-introspection, libappindicator-gtk3, libnotify, gtk3, gnome3, xprintidle-ng, wrapGAppsHook, gdk_pixbuf, shared-mime-info, librsvg +{ lib, python3Packages, gobject-introspection, libappindicator-gtk3, libnotify, gtk3, gnome3, xprintidle-ng, wrapGAppsHook, gdk-pixbuf, shared-mime-info, librsvg }: let inherit (python3Packages) python buildPythonApplication fetchPypi; @@ -50,7 +50,7 @@ in buildPythonApplication rec { preFixup = '' gappsWrapperArgs+=( - --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" + --prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share" --prefix XDG_DATA_DIRS : "${shared-mime-info}/share" --prefix XDG_DATA_DIRS : "${librsvg}/share" diff --git a/pkgs/applications/misc/simplenote/default.nix b/pkgs/applications/misc/simplenote/default.nix index 719b8d32b33..6a16741a06b 100644 --- a/pkgs/applications/misc/simplenote/default.nix +++ b/pkgs/applications/misc/simplenote/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, lib, zlib, glib, alsaLib, dbus, gtk2, atk, pango, freetype, fontconfig -, libgnome-keyring3, gdk_pixbuf, cairo, cups, expat, libgpgerror, nspr +, libgnome-keyring3, gdk-pixbuf, cairo, cups, expat, libgpgerror, nspr , nss, xorg, libcap, systemd, libnotify ,libXScrnSaver, gnome2 }: stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { packages = [ stdenv.cc.cc zlib glib dbus gtk2 atk pango freetype libgnome-keyring3 - fontconfig gdk_pixbuf cairo cups expat libgpgerror alsaLib nspr nss + fontconfig gdk-pixbuf cairo cups expat libgpgerror alsaLib nspr nss xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr xorg.libXcursor libcap systemd libnotify libXScrnSaver gnome2.GConf diff --git a/pkgs/applications/misc/stretchly/default.nix b/pkgs/applications/misc/stretchly/default.nix index 8f26ee99e22..213f308646a 100644 --- a/pkgs/applications/misc/stretchly/default.nix +++ b/pkgs/applications/misc/stretchly/default.nix @@ -8,7 +8,7 @@ , expat , fetchurl , fontconfig -, gdk_pixbuf +, gdk-pixbuf , glib , gtk2 , gtk3 @@ -51,7 +51,7 @@ let dbus expat fontconfig - gdk_pixbuf + gdk-pixbuf glib gtk2 gtk3 diff --git a/pkgs/applications/misc/terminus/default.nix b/pkgs/applications/misc/terminus/default.nix index c12a4c9f8da..8518b72bc95 100644 --- a/pkgs/applications/misc/terminus/default.nix +++ b/pkgs/applications/misc/terminus/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, dpkg, gnome2, gtk2, atk, glib, pango, gdk_pixbuf, cairo +{ stdenv, lib, fetchurl, dpkg, gnome2, gtk2, atk, glib, pango, gdk-pixbuf, cairo , freetype, fontconfig, dbus, libXi, libXcursor, libXdamage, libXrandr , libXcomposite, libXext, libXfixes, libXrender, libX11, libXtst, libXScrnSaver , libxcb, makeWrapper, nodejs @@ -6,7 +6,7 @@ let libPath = stdenv.lib.makeLibraryPath [ - stdenv.cc.cc gtk2 atk glib pango gdk_pixbuf cairo freetype fontconfig dbus + 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 gnome2.GConf nss nspr alsaLib cups expat systemd libpulseaudio ]; diff --git a/pkgs/applications/misc/volnoti/default.nix b/pkgs/applications/misc/volnoti/default.nix index 166811fb4ae..47b0385be68 100644 --- a/pkgs/applications/misc/volnoti/default.nix +++ b/pkgs/applications/misc/volnoti/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, fetchpatch -, pkgconfig, dbus, gdk_pixbuf, glib, libX11, gtk2, librsvg +, pkgconfig, dbus, gdk-pixbuf, glib, libX11, gtk2, librsvg , dbus-glib, autoreconfHook, wrapGAppsHook }: stdenv.mkDerivation rec { @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig autoreconfHook wrapGAppsHook ]; buildInputs = [ - dbus gdk_pixbuf glib libX11 gtk2 dbus-glib librsvg + dbus gdk-pixbuf glib libX11 gtk2 dbus-glib librsvg ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/misc/xneur/default.nix b/pkgs/applications/misc/xneur/default.nix index c6438a21f2c..1cce7b155fd 100644 --- a/pkgs/applications/misc/xneur/default.nix +++ b/pkgs/applications/misc/xneur/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, intltool, xorg, pcre, gst_all_1, glib -, xosd, libnotify, enchant, wrapGAppsHook, gdk_pixbuf }: +, xosd, libnotify, enchant, wrapGAppsHook, gdk-pixbuf }: stdenv.mkDerivation rec { name = "xneur-${version}"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { buildInputs = [ xorg.libX11 xorg.libXtst pcre gst_all_1.gstreamer glib xosd xorg.libXext xorg.libXi libnotify - enchant gdk_pixbuf + enchant gdk-pixbuf gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]; diff --git a/pkgs/applications/misc/xxkb/default.nix b/pkgs/applications/misc/xxkb/default.nix index 56638d126c1..db952758f04 100644 --- a/pkgs/applications/misc/xxkb/default.nix +++ b/pkgs/applications/misc/xxkb/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, libX11, libXt, libXext, libXpm, imake, gccmakedep -, svgSupport ? false, librsvg, glib, gdk_pixbuf, pkgconfig +, svgSupport ? false, librsvg, glib, gdk-pixbuf, pkgconfig }: assert svgSupport -> - librsvg != null && glib != null && gdk_pixbuf != null && pkgconfig != null; + librsvg != null && glib != null && gdk-pixbuf != null && pkgconfig != null; stdenv.mkDerivation rec { name = "xxkb-1.11.1"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ imake gccmakedep ]; buildInputs = [ libX11 libXt libXext libXpm - ] ++ stdenv.lib.optionals svgSupport [ librsvg glib gdk_pixbuf pkgconfig ]; + ] ++ stdenv.lib.optionals svgSupport [ librsvg glib gdk-pixbuf pkgconfig ]; outputs = [ "out" "man" ]; diff --git a/pkgs/applications/networking/browsers/brave/default.nix b/pkgs/applications/networking/browsers/brave/default.nix index 4a6af3f96b4..3603e1605f9 100644 --- a/pkgs/applications/networking/browsers/brave/default.nix +++ b/pkgs/applications/networking/browsers/brave/default.nix @@ -10,7 +10,7 @@ , expat , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , gnome2 , gnome3 @@ -52,7 +52,7 @@ rpath = lib.makeLibraryPath [ expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gtk3 diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index c52bf0ba95e..2f79f6900cd 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -9,7 +9,7 @@ , fontconfig , freetype , gconf -, gdk_pixbuf +, gdk-pixbuf , glib , glibc , gtk2 @@ -104,7 +104,7 @@ stdenv.mkDerivation { fontconfig freetype gconf - gdk_pixbuf + gdk-pixbuf glib glibc gtk2 diff --git a/pkgs/applications/networking/browsers/google-chrome/default.nix b/pkgs/applications/networking/browsers/google-chrome/default.nix index b0ae61c761d..977b40e4a7e 100644 --- a/pkgs/applications/networking/browsers/google-chrome/default.nix +++ b/pkgs/applications/networking/browsers/google-chrome/default.nix @@ -4,7 +4,7 @@ , glib, fontconfig, freetype, pango, cairo, libX11, libXi, atk, gconf, nss, nspr , libXcursor, libXext, libXfixes, libXrender, libXScrnSaver, libXcomposite, libxcb , alsaLib, libXdamage, libXtst, libXrandr, expat, cups -, dbus, gtk2, gtk3, gdk_pixbuf, gcc-unwrapped, at-spi2-atk, at-spi2-core +, dbus, gtk2, gtk3, gdk-pixbuf, gcc-unwrapped, at-spi2-atk, at-spi2-core , kerberos # command line arguments which are always set e.g "--disable-gpu" @@ -52,7 +52,7 @@ let glib fontconfig freetype pango cairo libX11 libXi atk gconf nss nspr libXcursor libXext libXfixes libXrender libXScrnSaver libXcomposite libxcb alsaLib libXdamage libXtst libXrandr expat cups - dbus gdk_pixbuf gcc-unwrapped.lib + dbus gdk-pixbuf gcc-unwrapped.lib systemd libexif liberation_ttf curl utillinux xdg_utils wget diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix index fa98f2a9e78..32e4366a4e4 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/bluejeans/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, xorg, gtk2, glib, gdk_pixbuf, dpkg, libXext, libXfixes +{ stdenv, fetchurl, xorg, gtk2, glib, gdk-pixbuf, dpkg, libXext, libXfixes , libXrender, libuuid, libXrandr, libXcomposite, libpulseaudio }: @@ -10,7 +10,7 @@ let [gtk2 glib stdenv.cc.cc]; rpathPlugin = makeLibraryPath - ([ stdenv.cc.cc gtk2 glib xorg.libX11 gdk_pixbuf libXext libXfixes libXrender libXrandr libXcomposite libpulseaudio ] ++ optional (libuuid != null) libuuid); + ([ stdenv.cc.cc gtk2 glib xorg.libX11 gdk-pixbuf libXext libXfixes libXrender libXrandr libXcomposite libpulseaudio ] ++ optional (libuuid != null) libuuid); in diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix index b4d0b91deac..8aa51366e47 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/default.nix @@ -9,7 +9,7 @@ , expat , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , glibc , graphite2 @@ -130,7 +130,7 @@ stdenv.mkDerivation rec { rpath = lib.makeLibraryPath [ stdenv.cc.cc - alsaLib atk bzip2 cairo curl expat fontconfig freetype gdk_pixbuf glib + alsaLib atk bzip2 cairo curl expat fontconfig freetype gdk-pixbuf glib glibc graphite2 gtk2 harfbuzz libICE libSM libX11 libXau libXcomposite libXcursor libXdamage libXdmcp libXext libXfixes libXi libXinerama libXrandr libXrender libXt libXxf86vm libdrm libffi libglvnd libpng diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix index 585c0be26d1..c9081ee3d69 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer/standalone.nix @@ -9,7 +9,7 @@ , expat , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , glibc , graphite2 @@ -86,7 +86,7 @@ stdenv.mkDerivation rec { rpath = lib.makeLibraryPath [ stdenv.cc.cc - alsaLib atk bzip2 cairo curl expat fontconfig freetype gdk_pixbuf glib + alsaLib atk bzip2 cairo curl expat fontconfig freetype gdk-pixbuf glib glibc graphite2 gtk2 harfbuzz libICE libSM libX11 libXau libXcomposite libXcursor libXdamage libXdmcp libXext libXfixes libXi libXinerama libXrandr libXrender libXt libXxf86vm libdrm libffi libglvnd libpng diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix index 71b5161c1e3..8a25036c70a 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, libGL, xorg, cairo -, libpng, gtk2, glib, gdk_pixbuf, fontconfig, freetype, curl +, libpng, gtk2, glib, gdk-pixbuf, fontconfig, freetype, curl , dbus-glib, alsaLib, libpulseaudio, systemd, pango }: @@ -24,7 +24,7 @@ let ]; rpathProgram = makeLibraryPath - [ gdk_pixbuf + [ gdk-pixbuf glib gtk2 xorg.libX11 diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix index 732e020604a..062d2e6582b 100644 --- a/pkgs/applications/networking/browsers/opera/default.nix +++ b/pkgs/applications/networking/browsers/opera/default.nix @@ -9,7 +9,7 @@ , fetchurl , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , gnome2 , gtk3 @@ -55,7 +55,7 @@ let expat.out fontconfig.lib freetype.out - gdk_pixbuf.out + gdk-pixbuf.out glib.out gnome2.GConf gtk3.out diff --git a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix index 4eeb6582672..6632b116fc3 100644 --- a/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix +++ b/pkgs/applications/networking/browsers/tor-browser-bundle-bin/default.nix @@ -12,7 +12,7 @@ , dbus-glib , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , gtk3 , libxcb @@ -67,7 +67,7 @@ let dbus-glib fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gtk3 libxcb diff --git a/pkgs/applications/networking/browsers/vivaldi/default.nix b/pkgs/applications/networking/browsers/vivaldi/default.nix index 4b0071bfabc..2367c0a9855 100644 --- a/pkgs/applications/networking/browsers/vivaldi/default.nix +++ b/pkgs/applications/networking/browsers/vivaldi/default.nix @@ -4,7 +4,7 @@ , freetype, fontconfig, libXft, libXrender, libxcb, expat , libuuid , gstreamer, gst-plugins-base, libxml2 -, glib, gtk3, pango, gdk_pixbuf, cairo, atk, at-spi2-atk, at-spi2-core, gnome2 +, glib, gtk3, pango, gdk-pixbuf, cairo, atk, at-spi2-atk, at-spi2-core, gnome2 , nss, nspr , patchelf, makeWrapper , isSnapshot ? false @@ -34,7 +34,7 @@ in stdenv.mkDerivation rec { buildInputs = [ stdenv.cc.cc stdenv.cc.libc zlib libX11 libXt libXext libSM libICE libxcb libXi libXft libXcursor libXfixes libXScrnSaver libXcomposite libXdamage libXtst libXrandr - atk at-spi2-atk at-spi2-core alsaLib dbus cups gtk3 gdk_pixbuf libexif ffmpeg systemd + atk at-spi2-atk at-spi2-core alsaLib dbus cups gtk3 gdk-pixbuf libexif ffmpeg systemd freetype fontconfig libXrender libuuid expat glib nss nspr gstreamer libxml2 gst-plugins-base pango cairo gnome2.GConf ] ++ stdenv.lib.optional proprietaryCodecs vivaldi-ffmpeg-codecs; diff --git a/pkgs/applications/networking/dropbox/cli.nix b/pkgs/applications/networking/dropbox/cli.nix index 2b6645b2c8a..ae0643669dc 100644 --- a/pkgs/applications/networking/dropbox/cli.nix +++ b/pkgs/applications/networking/dropbox/cli.nix @@ -6,7 +6,7 @@ , dropbox , gtk3 , gnome3 -, gdk_pixbuf +, gdk-pixbuf , gobject-introspection }: @@ -36,7 +36,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkgconfig gobject-introspection - gdk_pixbuf + gdk-pixbuf # only for build, the install command also wants to use GTK through introspection # but we are using Nix for installation so we will not need that. (python3.withPackages (ps: with ps; [ diff --git a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix index a2ba2f09f76..fb38255ea38 100644 --- a/pkgs/applications/networking/instant-messengers/bluejeans/default.nix +++ b/pkgs/applications/networking/instant-messengers/bluejeans/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, rpmextract, patchelf, libnotify, libcap, cairo, pango, fontconfig, udev, dbus -, gtk2, atk, expat, gdk_pixbuf, freetype, nspr, glib, nss, gconf, libX11, libXrender, libXtst, libXdamage +, gtk2, atk, expat, gdk-pixbuf, freetype, nspr, glib, nss, gconf, libX11, libXrender, libXtst, libXdamage , libXi, libXext, libXfixes, libXcomposite, alsaLib, bash }: @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { libPath = stdenv.lib.makeLibraryPath - [ libnotify libcap cairo pango fontconfig gtk2 atk expat gdk_pixbuf dbus udev.lib + [ libnotify libcap cairo pango fontconfig gtk2 atk expat gdk-pixbuf dbus udev.lib freetype nspr glib stdenv.cc stdenv.cc.cc.lib nss gconf libX11 libXrender libXtst libXdamage libXi libXext libXfixes libXcomposite alsaLib ]; diff --git a/pkgs/applications/networking/instant-messengers/coyim/default.nix b/pkgs/applications/networking/instant-messengers/coyim/default.nix index e2e94db089d..fb47d8db8c8 100644 --- a/pkgs/applications/networking/instant-messengers/coyim/default.nix +++ b/pkgs/applications/networking/instant-messengers/coyim/default.nix @@ -1,5 +1,5 @@ { stdenv, buildGoPackage, fetchFromGitHub, pkgconfig, - cairo, gdk_pixbuf, glib, gnome3, wrapGAppsHook, gtk3 }: + cairo, gdk-pixbuf, glib, gnome3, wrapGAppsHook, gtk3 }: buildGoPackage rec { name = "coyim-${version}"; @@ -14,7 +14,7 @@ buildGoPackage rec { sha256 = "1g8nf56j17rdhhj7pv3ha1rb2mfc0mdvyzl35pgcki08w7iw08j3"; }; - nativeBuildInputs = [ pkgconfig wrapGAppsHook glib cairo gdk_pixbuf gtk3 gnome3.adwaita-icon-theme ]; + nativeBuildInputs = [ pkgconfig wrapGAppsHook glib cairo gdk-pixbuf gtk3 gnome3.adwaita-icon-theme ]; meta = with stdenv.lib; { description = "a safe and secure chat client"; diff --git a/pkgs/applications/networking/instant-messengers/dino/default.nix b/pkgs/applications/networking/instant-messengers/dino/default.nix index 7c2b312c4b3..2158409471f 100644 --- a/pkgs/applications/networking/instant-messengers/dino/default.nix +++ b/pkgs/applications/networking/instant-messengers/dino/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub , vala, cmake, ninja, wrapGAppsHook, pkgconfig, gettext -, gobject-introspection, gnome3, glib, gdk_pixbuf, gtk3, glib-networking +, gobject-introspection, gnome3, glib, gdk-pixbuf, gtk3, glib-networking , xorg, libXdmcp, libxkbcommon , libnotify, libsoup, libgee , libgcrypt @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { libgee gnome3.adwaita-icon-theme sqlite - gdk_pixbuf + gdk-pixbuf gtk3 libnotify gpgme diff --git a/pkgs/applications/networking/instant-messengers/discord/base.nix b/pkgs/applications/networking/instant-messengers/discord/base.nix index 17f6f477374..4dadcb6ce23 100644 --- a/pkgs/applications/networking/instant-messengers/discord/base.nix +++ b/pkgs/applications/networking/instant-messengers/discord/base.nix @@ -1,7 +1,7 @@ { pname, version, src, binaryName, desktopName , stdenv, fetchurl, makeDesktopItem, wrapGAppsHook , alsaLib, atk, at-spi2-atk, at-spi2-core, cairo, cups, dbus, expat, fontconfig, freetype -, gdk_pixbuf, glib, gtk3, libnotify, libX11, libXcomposite, libXcursor, libXdamage, libuuid +, gdk-pixbuf, glib, gtk3, libnotify, libX11, libXcomposite, libXcursor, libXdamage, libuuid , libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, libxcb , pango, systemd, libXScrnSaver, libcxx, libpulseaudio }: @@ -17,7 +17,7 @@ in stdenv.mkDerivation rec { libPath = stdenv.lib.makeLibraryPath [ libcxx systemd libpulseaudio stdenv.cc.cc alsaLib atk at-spi2-atk at-spi2-core cairo cups dbus expat fontconfig freetype - gdk_pixbuf glib gtk3 libnotify libX11 libXcomposite libuuid + gdk-pixbuf glib gtk3 libnotify libX11 libXcomposite libuuid libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXtst nspr nss libxcb pango systemd libXScrnSaver ]; diff --git a/pkgs/applications/networking/instant-messengers/franz/default.nix b/pkgs/applications/networking/instant-messengers/franz/default.nix index 63624146aeb..9db5f30033d 100644 --- a/pkgs/applications/networking/instant-messengers/franz/default.nix +++ b/pkgs/applications/networking/instant-messengers/franz/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, wrapGAppsHook, autoPatchelfHook, dpkg -, xorg, atk, glib, pango, gdk_pixbuf, cairo, freetype, fontconfig, gtk3 +, xorg, atk, glib, pango, gdk-pixbuf, cairo, freetype, fontconfig, gtk3 , gnome2, dbus, nss, nspr, alsaLib, cups, expat, udev, libnotify, xdg_utils }: let @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { libXi libXcursor libXdamage libXrandr libXcomposite libXext libXfixes libXrender libX11 libXtst libXScrnSaver ]) ++ [ - gtk3 atk glib pango gdk_pixbuf cairo freetype fontconfig dbus + gtk3 atk glib pango gdk-pixbuf cairo freetype fontconfig dbus gnome2.GConf nss nspr alsaLib cups expat stdenv.cc.cc ]; runtimeDependencies = [ udev.lib libnotify ]; diff --git a/pkgs/applications/networking/instant-messengers/gitter/default.nix b/pkgs/applications/networking/instant-messengers/gitter/default.nix index 5b664415c1f..6878c9a870b 100644 --- a/pkgs/applications/networking/instant-messengers/gitter/default.nix +++ b/pkgs/applications/networking/instant-messengers/gitter/default.nix @@ -1,5 +1,5 @@ { stdenv, alsaLib, atk, cairo, cups, dbus, dpkg, expat, fetchurl -, fontconfig, freetype, gdk_pixbuf, glib, gnome2, gtk3, libX11 +, fontconfig, freetype, gdk-pixbuf, glib, gnome2, gtk3, libX11 , libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes , libXi, libXrandr, libXrender, libXtst, libappindicator-gtk3, libcxx , libnotify, libpulseaudio, libxcb, makeDesktopItem, makeWrapper, nspr, nss @@ -12,7 +12,7 @@ let gitterDirectorySuffix = "opt/gitter"; $out/${gitterDirectorySuffix}/${target} ''; libPath = stdenv.lib.makeLibraryPath [ - alsaLib atk cairo cups dbus expat fontconfig freetype gdk_pixbuf glib + alsaLib atk cairo cups dbus expat fontconfig freetype gdk-pixbuf glib gnome2.GConf gtk3 libX11 libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXtst libappindicator-gtk3 libcxx libnotify libpulseaudio libxcb nspr nss pango stdenv.cc.cc systemd diff --git a/pkgs/applications/networking/instant-messengers/linphone/default.nix b/pkgs/applications/networking/instant-messengers/linphone/default.nix index 4282e99a712..67d5e56a021 100644 --- a/pkgs/applications/networking/instant-messengers/linphone/default.nix +++ b/pkgs/applications/networking/instant-messengers/linphone/default.nix @@ -2,7 +2,7 @@ , zlib, libxml2, gtk2, libnotify, speex, ffmpeg, libX11, libsoup, udev , ortp, mediastreamer, sqlite, belle-sip, libosip, libexosip, bzrtp , mediastreamer-openh264, bctoolbox, makeWrapper, fetchFromGitHub, cmake -, libmatroska, bcunit, doxygen, gdk_pixbuf, glib, cairo, pango, polarssl +, libmatroska, bcunit, doxygen, gdk-pixbuf, glib, cairo, pango, polarssl , python, graphviz, belcard , withGui ? true }: @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { buildInputs = [ readline openldap cyrus_sasl libupnp zlib libxml2 gtk2 libnotify speex ffmpeg libX11 polarssl libsoup udev ortp mediastreamer sqlite belle-sip libosip libexosip - bctoolbox libmatroska bcunit gdk_pixbuf glib cairo pango bzrtp belcard + bctoolbox libmatroska bcunit gdk-pixbuf glib cairo pango bzrtp belcard ]; nativeBuildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix b/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix index e8c28dc3e53..1fb74314811 100644 --- a/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/mattermost-desktop/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gnome2, gtk3, pango, atk, cairo, gdk_pixbuf, glib, +{ stdenv, fetchurl, gnome2, gtk3, pango, atk, cairo, gdk-pixbuf, glib, freetype, fontconfig, dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite, libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib, cups, expat, udev }: @@ -12,7 +12,7 @@ let expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gtk3 diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix index ddb9217d5e2..6657ff96b11 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/skype4pidgin/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, pidgin, libnotify, gdk_pixbuf, glib, dbus +{ stdenv, fetchurl, pkgconfig, pidgin, libnotify, gdk-pixbuf, glib, dbus , dbus-glib }: stdenv.mkDerivation rec { @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { postInstall = "ln -s \$out/lib/pidgin \$out/share/pidgin-otr"; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ pidgin libnotify gdk_pixbuf glib dbus dbus-glib ]; + buildInputs = [ pidgin libnotify gdk-pixbuf glib dbus dbus-glib ]; meta = { homepage = https://github.com/novas0x2a/skype4pidgin; diff --git a/pkgs/applications/networking/instant-messengers/profanity/default.nix b/pkgs/applications/networking/instant-messengers/profanity/default.nix index 1273c7dd3c3..fbbf6204971 100644 --- a/pkgs/applications/networking/instant-messengers/profanity/default.nix +++ b/pkgs/applications/networking/instant-messengers/profanity/default.nix @@ -4,14 +4,14 @@ , autoconf-archive , autoAwaySupport ? true, libXScrnSaver ? null, libX11 ? null -, notifySupport ? true, libnotify ? null, gdk_pixbuf ? null +, notifySupport ? true, libnotify ? null, gdk-pixbuf ? null , traySupport ? true, gnome2 ? null , pgpSupport ? true, gpgme ? null , pythonPluginSupport ? true, python ? null }: assert autoAwaySupport -> libXScrnSaver != null && libX11 != null; -assert notifySupport -> libnotify != null && gdk_pixbuf != null; +assert notifySupport -> libnotify != null && gdk-pixbuf != null; assert traySupport -> gnome2 != null; assert pgpSupport -> gpgme != null; assert pythonPluginSupport -> python != null; @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { expect readline libuuid glib openssl expat ncurses libotr curl libmesode cmocka libmicrohttpd stabber ] ++ optionals autoAwaySupport [ libXScrnSaver libX11 ] - ++ optionals notifySupport [ libnotify gdk_pixbuf ] + ++ optionals notifySupport [ libnotify gdk-pixbuf ] ++ optionals traySupport [ gnome2.gtk ] ++ optionals pgpSupport [ gpgme ] ++ optionals pythonPluginSupport [ python ]; diff --git a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix index e0cb977d5c2..fa72d234ce9 100644 --- a/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/signal-desktop/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, dpkg, wrapGAppsHook -, gnome2, gtk3, atk, at-spi2-atk, cairo, pango, gdk_pixbuf, glib, freetype, fontconfig +, gnome2, gtk3, atk, at-spi2-atk, cairo, pango, gdk-pixbuf, glib, freetype, fontconfig , dbus, libX11, xorg, libXi, libXcursor, libXdamage, libXrandr, libXcomposite , libXext, libXfixes, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib , cups, expat, udev, libnotify, libuuid @@ -31,7 +31,7 @@ let expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gtk3 diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix index 8a732de08ce..59db08a35ac 100644 --- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix +++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, dpkg -, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk_pixbuf, glib, glibc, gnome2, gnome3 +, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, glibc, gnome2, gnome3 , gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, wrapGAppsHook, xorg , at-spi2-atk }: @@ -25,7 +25,7 @@ let libsecret gnome2.GConf - gdk_pixbuf + gdk-pixbuf gtk3 gnome3.gnome-keyring diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 309b09f10c4..8b74cbc4d93 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -1,5 +1,5 @@ { theme ? null, stdenv, fetchurl, dpkg, makeWrapper , alsaLib, atk, cairo, -cups, curl, dbus, expat, fontconfig, freetype, glib , gnome2, gtk3, gdk_pixbuf, +cups, curl, dbus, expat, fontconfig, freetype, glib , gnome2, gtk3, gdk-pixbuf, libappindicator-gtk3, libnotify, libxcb, nspr, nss, pango , systemd, xorg, at-spi2-atk, libuuid }: @@ -21,7 +21,7 @@ let freetype glib gnome2.GConf - gdk_pixbuf + gdk-pixbuf gtk3 pango libnotify diff --git a/pkgs/applications/networking/instant-messengers/stride/default.nix b/pkgs/applications/networking/instant-messengers/stride/default.nix index 9df816dd890..17a38479f82 100644 --- a/pkgs/applications/networking/instant-messengers/stride/default.nix +++ b/pkgs/applications/networking/instant-messengers/stride/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, dpkg, alsaLib, atk, cairo, cups, dbus, expat, fontconfig -, freetype, gdk_pixbuf, glib, gnome2, nspr, nss, pango, udev, xorg }: +, freetype, gdk-pixbuf, glib, gnome2, nspr, nss, pango, udev, xorg }: let fullPath = stdenv.lib.makeLibraryPath [ alsaLib @@ -10,7 +10,7 @@ let expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.gtk diff --git a/pkgs/applications/networking/instant-messengers/toxic/default.nix b/pkgs/applications/networking/instant-messengers/toxic/default.nix index c4acb22c810..95879fef05a 100644 --- a/pkgs/applications/networking/instant-messengers/toxic/default.nix +++ b/pkgs/applications/networking/instant-messengers/toxic/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, libsodium, ncurses, curl , libtoxcore, openal, libvpx, freealut, libconfig, pkgconfig, libopus -, qrencode, gdk_pixbuf, libnotify }: +, qrencode, gdk-pixbuf, libnotify }: stdenv.mkDerivation rec { name = "toxic-${version}"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { installFlags = [ "PREFIX=$(out)"]; buildInputs = [ - libtoxcore libsodium ncurses curl gdk_pixbuf libnotify + libtoxcore libsodium ncurses curl gdk-pixbuf libnotify ] ++ stdenv.lib.optionals (!stdenv.isAarch32) [ openal libopus libvpx freealut qrencode ]; diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index f2ae27e2c7d..fb8a24be70d 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, dpkg, makeDesktopItem, libuuid, gtk3, atk, cairo, pango -, gdk_pixbuf, glib, freetype, fontconfig, dbus, libnotify, libX11, xorg, libXi +, gdk-pixbuf, glib, freetype, fontconfig, dbus, libnotify, libX11, xorg, libXi , libXcursor, libXdamage, libXrandr, libXcomposite, libXext, libXfixes , libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib, cups, expat, udev , xdg_utils, hunspell, pulseaudio, pciutils, at-spi2-atk @@ -16,7 +16,7 @@ let expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gtk3 at-spi2-atk diff --git a/pkgs/applications/networking/mailreaders/inboxer/default.nix b/pkgs/applications/networking/mailreaders/inboxer/default.nix index 72b9ce09d76..4139b650fb7 100644 --- a/pkgs/applications/networking/mailreaders/inboxer/default.nix +++ b/pkgs/applications/networking/mailreaders/inboxer/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, binutils, patchelf, makeWrapper -, expat, xorg, gdk_pixbuf, glib, gnome2, cairo, atk, freetype +, expat, xorg, gdk-pixbuf, glib, gnome2, cairo, atk, freetype , fontconfig, dbus, nss, nspr, gtk2-x11, alsaLib, cups, libpulseaudio, udev }: stdenv.mkDerivation rec { @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { xorg.libXtst xorg.libXScrnSaver xorg.libxcb - gdk_pixbuf + gdk-pixbuf glib gnome2.pango gnome2.GConf diff --git a/pkgs/applications/networking/mailreaders/mailnag/default.nix b/pkgs/applications/networking/mailreaders/mailnag/default.nix index 32455e1132f..d8151340662 100644 --- a/pkgs/applications/networking/mailreaders/mailnag/default.nix +++ b/pkgs/applications/networking/mailreaders/mailnag/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, gettext, gtk3, pythonPackages -, gdk_pixbuf, libnotify, gst_all_1 +, gdk-pixbuf, libnotify, gst_all_1 , libgnome-keyring3 , wrapGAppsHook, gnome3 # otherwise passwords are stored unencrypted @@ -18,7 +18,7 @@ in pythonPackages.buildPythonApplication rec { }; buildInputs = [ - gtk3 gdk_pixbuf libnotify gst_all_1.gstreamer + gtk3 gdk-pixbuf libnotify gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gnome3.adwaita-icon-theme diff --git a/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix b/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix index 3d8673a87a1..5bb24c9ded7 100644 --- a/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix +++ b/pkgs/applications/networking/mailreaders/nylas-mail-bin/default.nix @@ -10,7 +10,7 @@ , fontconfig , freetype , gcc-unwrapped -, gdk_pixbuf +, gdk-pixbuf , glib , gnome2 , libgnome-keyring @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { fontconfig freetype gcc-unwrapped - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.gtk diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix index 08823364479..5e005cd6669 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/default.nix @@ -10,7 +10,7 @@ , dbus , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , glibc , gst-plugins-base @@ -90,7 +90,7 @@ stdenv.mkDerivation { dbus fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib glibc gst-plugins-base diff --git a/pkgs/applications/networking/mullvad-vpn/default.nix b/pkgs/applications/networking/mullvad-vpn/default.nix index 2d5f47ee982..2cbf83c16ae 100644 --- a/pkgs/applications/networking/mullvad-vpn/default.nix +++ b/pkgs/applications/networking/mullvad-vpn/default.nix @@ -1,6 +1,6 @@ { stdenv, makeWrapper, fetchurl, dpkg , alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype -, gdk_pixbuf, glib, gnome2, pango, nspr, nss, gtk3 +, gdk-pixbuf, glib, gnome2, pango, nspr, nss, gtk3 , xorg, autoPatchelfHook, systemd, libnotify }: @@ -13,7 +13,7 @@ let deps = [ expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf pango diff --git a/pkgs/applications/networking/p2p/tixati/default.nix b/pkgs/applications/networking/p2p/tixati/default.nix index 7a5f389af24..ea8b5c3a11f 100644 --- a/pkgs/applications/networking/p2p/tixati/default.nix +++ b/pkgs/applications/networking/p2p/tixati/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, glib, zlib, dbus, dbus-glib, gtk2, gdk_pixbuf, cairo, pango }: +{ stdenv, fetchurl, glib, zlib, dbus, dbus-glib, gtk2, gdk-pixbuf, cairo, pango }: stdenv.mkDerivation rec { name = "tixati-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { installPhase = '' patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath ${stdenv.lib.makeLibraryPath [ glib zlib dbus dbus-glib gtk2 gdk_pixbuf cairo pango ]} \ + --set-rpath ${stdenv.lib.makeLibraryPath [ glib zlib dbus dbus-glib gtk2 gdk-pixbuf cairo pango ]} \ tixati install -D tixati $out/bin/tixati install -D tixati.desktop $out/share/applications/tixati.desktop diff --git a/pkgs/applications/networking/p2p/transgui/default.nix b/pkgs/applications/networking/p2p/transgui/default.nix index d4823988526..7c720cf35a0 100644 --- a/pkgs/applications/networking/p2p/transgui/default.nix +++ b/pkgs/applications/networking/p2p/transgui/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, pkgconfig, makeDesktopItem, unzip, fpc, lazarus, -libX11, glib, gtk2, gdk_pixbuf, pango, atk, cairo, openssl }: +libX11, glib, gtk2, gdk-pixbuf, pango, atk, cairo, openssl }: stdenv.mkDerivation rec { pname = "transgui"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ unzip fpc lazarus stdenv.cc - libX11 glib gtk2 gdk_pixbuf pango atk cairo openssl + libX11 glib gtk2 gdk-pixbuf pango atk cairo openssl ]; NIX_LDFLAGS = " @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { "INSTALL_PREFIX=$(out)" ]; - LCL_PLATFORM = "gtk2"; + LCL_PLATFORM = "gtk2"; desktopItem = makeDesktopItem rec { name = "transgui"; @@ -63,10 +63,10 @@ stdenv.mkDerivation rec { mkdir -p "$out/share/icons/hicolor/48x48/apps" cp transgui.png "$out/share/icons/hicolor/48x48/apps" mkdir -p "$out/share/transgui" - cp -r "./lang" "$out/share/transgui" + cp -r "./lang" "$out/share/transgui" ''; - meta = { + meta = { description = "A cross platform front-end for the Transmission Bit-Torrent client"; homepage = https://sourceforge.net/p/transgui; license = stdenv.lib.licenses.gpl2Plus; diff --git a/pkgs/applications/networking/remote/anydesk/default.nix b/pkgs/applications/networking/remote/anydesk/default.nix index a9b358fc793..66edc203276 100644 --- a/pkgs/applications/networking/remote/anydesk/default.nix +++ b/pkgs/applications/networking/remote/anydesk/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, makeDesktopItem -, atk, cairo, gdk_pixbuf, glib, gnome2, gtk2, libGLU_combined, pango, xorg +, atk, cairo, gdk-pixbuf, glib, gnome2, gtk2, libGLU_combined, pango, xorg , lsb-release, freetype, fontconfig, pangox_compat, polkit, polkit_gnome }: let @@ -35,7 +35,7 @@ in stdenv.mkDerivation rec { }; buildInputs = [ - atk cairo gdk_pixbuf glib gtk2 stdenv.cc.cc pango + atk cairo gdk-pixbuf glib gtk2 stdenv.cc.cc pango gnome2.gtkglext libGLU_combined freetype fontconfig pangox_compat polkit polkit_gnome ] ++ (with xorg; [ diff --git a/pkgs/applications/networking/remote/citrix-receiver/default.nix b/pkgs/applications/networking/remote/citrix-receiver/default.nix index d6e25ae4e7b..1f70cb56b54 100644 --- a/pkgs/applications/networking/remote/citrix-receiver/default.nix +++ b/pkgs/applications/networking/remote/citrix-receiver/default.nix @@ -12,7 +12,7 @@ , glib , gtk2 , atk -, gdk_pixbuf +, gdk-pixbuf , cairo , pango , gnome3 @@ -100,14 +100,14 @@ let busybox file gtk2 - gdk_pixbuf + gdk-pixbuf ]; libPath = stdenv.lib.makeLibraryPath [ glib gtk2 atk - gdk_pixbuf + gdk-pixbuf cairo pango gnome3.dconf diff --git a/pkgs/applications/networking/remote/citrix-workspace/default.nix b/pkgs/applications/networking/remote/citrix-workspace/default.nix index 13a16a6e224..4598903d201 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/default.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/default.nix @@ -12,7 +12,7 @@ , glib , gtk2 , atk -, gdk_pixbuf +, gdk-pixbuf , cairo , pango , gnome3 @@ -100,14 +100,14 @@ let busybox file gtk2 - gdk_pixbuf + gdk-pixbuf ]; libPath = stdenv.lib.makeLibraryPath [ glib gtk2 atk - gdk_pixbuf + gdk-pixbuf cairo pango gnome3.dconf diff --git a/pkgs/applications/networking/ssb/patchwork-classic/default.nix b/pkgs/applications/networking/ssb/patchwork-classic/default.nix index 1f8d0cba6d0..706dd670324 100644 --- a/pkgs/applications/networking/ssb/patchwork-classic/default.nix +++ b/pkgs/applications/networking/ssb/patchwork-classic/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, lib, makeWrapper, # build dependencies alsaLib, atk, cairo, cups, dbus, expat, fontconfig, - freetype, gdk_pixbuf, glib, gnome2, nspr, nss, xorg, + freetype, gdk-pixbuf, glib, gnome2, nspr, nss, xorg, glibc, systemd }: @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.gtk @@ -99,7 +99,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Electron wrapper for Patchwork Classic: run as a desktop app outside the browser"; homepage = "https://github.com/ssbc/patchwork-classic-electron"; - license = licenses.gpl3; + license = licenses.gpl3; maintainers = with maintainers; [ mrVanDalo ]; platforms = platforms.linux; }; diff --git a/pkgs/applications/networking/super-productivity/default.nix b/pkgs/applications/networking/super-productivity/default.nix index 9bb4254c64a..3f87c8558e1 100644 --- a/pkgs/applications/networking/super-productivity/default.nix +++ b/pkgs/applications/networking/super-productivity/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, dpkg, makeWrapper , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib -, gnome2, gtk3, gdk_pixbuf, libnotify, libxcb, nspr, nss, pango +, gnome2, gtk3, gdk-pixbuf, libnotify, libxcb, nspr, nss, pango , systemd, xorg, xprintidle-ng }: let @@ -19,7 +19,7 @@ let freetype glib gnome2.GConf - gdk_pixbuf + gdk-pixbuf gtk3 pango libnotify diff --git a/pkgs/applications/office/moneyplex/default.nix b/pkgs/applications/office/moneyplex/default.nix index ad621303d7d..3e666b0f627 100644 --- a/pkgs/applications/office/moneyplex/default.nix +++ b/pkgs/applications/office/moneyplex/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, patchelf, coreutils, pcsclite -, zlib, glib, gdk_pixbuf, gtk2, cairo, pango, libX11, atk, openssl +, zlib, glib, gdk-pixbuf, gtk2, cairo, pango, libX11, atk, openssl , runtimeShell }: let libPath = stdenv.lib.makeLibraryPath [ - stdenv.cc.cc zlib glib gdk_pixbuf gtk2 cairo pango libX11 atk openssl + stdenv.cc.cc zlib glib gdk-pixbuf gtk2 cairo pango libX11 atk openssl ]; src_i686 = { diff --git a/pkgs/applications/office/pinpoint/default.nix b/pkgs/applications/office/pinpoint/default.nix index 680b3fd40d7..7e6da96db80 100644 --- a/pkgs/applications/office/pinpoint/default.nix +++ b/pkgs/applications/office/pinpoint/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, autoconf, automake, clutter, clutter-gst -, gdk_pixbuf, cairo, clutter-gtk }: +, gdk-pixbuf, cairo, clutter-gtk }: stdenv.mkDerivation rec { name = "pinpoint-${version}"; @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "1jp8chr9vjlpb5lybwp5cg6g90ak5jdzz9baiqkbg0anlg8ps82s"; }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ autoconf automake clutter clutter-gst gdk_pixbuf + buildInputs = [ autoconf automake clutter clutter-gst gdk-pixbuf cairo clutter-gtk ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/office/spice-up/default.nix b/pkgs/applications/office/spice-up/default.nix index a99ac7e44b7..2c3dfa82c8c 100644 --- a/pkgs/applications/office/spice-up/default.nix +++ b/pkgs/applications/office/spice-up/default.nix @@ -1,7 +1,7 @@ { stdenv , fetchFromGitHub , cmake -, gdk_pixbuf +, gdk-pixbuf , gtk3 , gettext , ninja @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { buildInputs = [ pantheon.elementary-icon-theme pantheon.granite - gdk_pixbuf + gdk-pixbuf gtk3 json-glib libevdev diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix index 86eb0ab4c38..3d4f98ddd44 100644 --- a/pkgs/applications/office/zotero/default.nix +++ b/pkgs/applications/office/zotero/default.nix @@ -7,7 +7,7 @@ , dbus , fontconfig , freetype -, gdk_pixbuf +, gdk-pixbuf , glib , glibc , gtk3 @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { name = "zotero-${version}"; version = "5.0.71"; - + src = fetchurl { url = "https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-x86_64.tar.bz2"; sha256 = "070b1ak870jv8h702a9g930p01jsmly93c44igw48ylbgqjyhlwq"; }; - + buildInputs= [ wrapGAppsHook gsettings-desktop-schemas gtk3 gnome3.adwaita-icon-theme gnome3.dconf ]; phases = [ "unpackPhase" "patchPhase" "installPhase" "fixupPhase" ]; @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { dbus fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib glibc gtk3 diff --git a/pkgs/applications/science/electronics/bitscope/common.nix b/pkgs/applications/science/electronics/bitscope/common.nix index 64777b5a0ac..9101f1fdbe5 100644 --- a/pkgs/applications/science/electronics/bitscope/common.nix +++ b/pkgs/applications/science/electronics/bitscope/common.nix @@ -2,7 +2,7 @@ , buildFHSUserEnv , cairo , dpkg -, gdk_pixbuf +, gdk-pixbuf , glib , gtk2-x11 , makeWrapper @@ -39,7 +39,7 @@ let libs = attrs.libs or [ atk cairo - gdk_pixbuf + gdk-pixbuf glib gtk2-x11 pango diff --git a/pkgs/applications/science/logic/verifast/default.nix b/pkgs/applications/science/logic/verifast/default.nix index 22eb5d07f1c..360f75cc6f0 100644 --- a/pkgs/applications/science/logic/verifast/default.nix +++ b/pkgs/applications/science/logic/verifast/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl, gtk2, gdk_pixbuf, atk, pango, glib, cairo, freetype +{ stdenv, fetchurl, gtk2, gdk-pixbuf, atk, pango, glib, cairo, freetype , fontconfig, libxml2, gnome2 }: let libPath = stdenv.lib.makeLibraryPath - [ stdenv.cc.libc stdenv.cc.cc gtk2 gdk_pixbuf atk pango glib cairo + [ stdenv.cc.libc stdenv.cc.cc gtk2 gdk-pixbuf atk pango glib cairo freetype fontconfig libxml2 gnome2.gtksourceview ] + ":${stdenv.cc.cc.lib}/lib64:$out/libexec"; diff --git a/pkgs/applications/version-management/gitkraken/default.nix b/pkgs/applications/version-management/gitkraken/default.nix index 12d22e2cc3c..ffca24ab27d 100644 --- a/pkgs/applications/version-management/gitkraken/default.nix +++ b/pkgs/applications/version-management/gitkraken/default.nix @@ -1,7 +1,7 @@ { stdenv, libXcomposite, libgnome-keyring, makeWrapper, udev, curl, alsaLib , libXfixes, atk, gtk3, libXrender, pango, gnome2, gnome3, cairo, freetype, fontconfig , libX11, libXi, libxcb, libXext, libXcursor, glib, libXScrnSaver, libxkbfile, libXtst -, nss, nspr, cups, fetchurl, expat, gdk_pixbuf, libXdamage, libXrandr, dbus +, nss, nspr, cups, fetchurl, expat, gdk-pixbuf, libXdamage, libXrandr, dbus , dpkg, makeDesktopItem, openssl, wrapGAppsHook, hicolor-icon-theme, at-spi2-atk, libuuid }: @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { cups alsaLib expat - gdk_pixbuf + gdk-pixbuf dbus libXdamage libXrandr diff --git a/pkgs/applications/video/devede/default.nix b/pkgs/applications/video/devede/default.nix index 4802d259fb2..d614523f534 100644 --- a/pkgs/applications/video/devede/default.nix +++ b/pkgs/applications/video/devede/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, python3Packages, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor -, gtk3, gettext, wrapGAppsHook, gdk_pixbuf, gobject-introspection }: +, gtk3, gettext, wrapGAppsHook, gdk-pixbuf, gobject-introspection }: let inherit (python3Packages) dbus-python buildPythonApplication pygobject3 urllib3; @@ -34,7 +34,7 @@ in buildPythonApplication rec { ]; propagatedBuildInputs = [ - gtk3 pygobject3 gdk_pixbuf dbus-python ffmpeg mplayer dvdauthor vcdimager cdrkit urllib3 + gtk3 pygobject3 gdk-pixbuf dbus-python ffmpeg mplayer dvdauthor vcdimager cdrkit urllib3 ]; postPatch = '' diff --git a/pkgs/applications/video/lightworks/default.nix b/pkgs/applications/video/lightworks/default.nix index 6d74c64343d..b4d4312c0fa 100644 --- a/pkgs/applications/video/lightworks/default.nix +++ b/pkgs/applications/video/lightworks/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, dpkg, makeWrapper, buildFHSUserEnv -, gtk3, gdk_pixbuf, cairo, libjpeg_original, glib, gnome2, libGLU +, gtk3, gdk-pixbuf, cairo, libjpeg_original, glib, gnome2, libGLU , nvidia_cg_toolkit, zlib, openssl, portaudio }: let fullPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc gtk3 - gdk_pixbuf + gdk-pixbuf cairo libjpeg_original glib @@ -60,7 +60,7 @@ let wrapProgram $out/lib/lightworks/ntcardvt \ --prefix LD_LIBRARY_PATH : ${fullPath}:$out/lib/lightworks \ --set FONTCONFIG_FILE $out/lib/lightworks/fonts.conf - + cp -r usr/share $out/share ''; diff --git a/pkgs/applications/video/webtorrent_desktop/default.nix b/pkgs/applications/video/webtorrent_desktop/default.nix index 086190000ab..0c28b4d5737 100644 --- a/pkgs/applications/video/webtorrent_desktop/default.nix +++ b/pkgs/applications/video/webtorrent_desktop/default.nix @@ -1,6 +1,6 @@ { alsaLib, atk, cairo, cups, dbus, dpkg, expat, fetchurl, fontconfig, freetype, - gdk_pixbuf, glib, gnome2, libX11, libXScrnSaver, libXcomposite, libXcursor, + gdk-pixbuf, glib, gnome2, libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb, nspr, nss, stdenv, udev }: @@ -15,7 +15,7 @@ expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.gtk diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index 25438c81605..5c897926432 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, luaPackages, cairo, librsvg, cmake, imagemagick, pkgconfig, gdk_pixbuf +{ stdenv, fetchFromGitHub, luaPackages, cairo, librsvg, cmake, imagemagick, pkgconfig, gdk-pixbuf , xorg, libstartup_notification, libxdg_basedir, libpthreadstubs , xcb-util-cursor, makeWrapper, pango, gobject-introspection , which, dbus, nettools, git, doxygen @@ -40,7 +40,7 @@ with luaPackages; stdenv.mkDerivation rec { FONTCONFIG_FILE = toString fontsConf; propagatedUserEnvPkgs = [ hicolor-icon-theme ]; - buildInputs = [ cairo librsvg dbus gdk_pixbuf gobject-introspection + buildInputs = [ cairo librsvg dbus gdk-pixbuf gobject-introspection git lgi libpthreadstubs libstartup_notification libxdg_basedir lua nettools pango xcb-util-cursor xorg.libXau xorg.libXdmcp xorg.libxcb xorg.libxshmfence diff --git a/pkgs/applications/window-managers/dwm/dwm-status.nix b/pkgs/applications/window-managers/dwm/dwm-status.nix index 734d70598fb..5ffd94e9f87 100644 --- a/pkgs/applications/window-managers/dwm/dwm-status.nix +++ b/pkgs/applications/window-managers/dwm/dwm-status.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, rustPlatform, fetchFromGitHub, dbus, gdk_pixbuf, libnotify, makeWrapper, pkgconfig, xorg +{ stdenv, lib, rustPlatform, fetchFromGitHub, dbus, gdk-pixbuf, libnotify, makeWrapper, pkgconfig, xorg , enableAlsaUtils ? true, alsaUtils, coreutils , enableNetwork ? true, dnsutils, iproute, wirelesstools }: @@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec { }; nativeBuildInputs = [ makeWrapper pkgconfig ]; - buildInputs = [ dbus gdk_pixbuf libnotify xorg.libX11 ]; + buildInputs = [ dbus gdk-pixbuf libnotify xorg.libX11 ]; cargoSha256 = "1r2wczfkdpvjc7iylwajkminraaz1ix6n724in0dvv5klfcdxlxb"; diff --git a/pkgs/applications/window-managers/icewm/default.nix b/pkgs/applications/window-managers/icewm/default.nix index 8406736541c..2f6199122f1 100644 --- a/pkgs/applications/window-managers/icewm/default.nix +++ b/pkgs/applications/window-managers/icewm/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, cmake, gettext , libjpeg, libtiff, libungif, libpng, imlib, expat -, freetype, fontconfig, pkgconfig, gdk_pixbuf +, freetype, fontconfig, pkgconfig, gdk-pixbuf , mkfontdir, libX11, libXft, libXext, libXinerama , libXrandr, libICE, libSM, libXpm, libXdmcp, libxcb , libpthreadstubs, pcre }: @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ cmake gettext libjpeg libtiff libungif libpng imlib expat - freetype fontconfig pkgconfig gdk_pixbuf mkfontdir libX11 + freetype fontconfig pkgconfig gdk-pixbuf mkfontdir libX11 libXft libXext libXinerama libXrandr libICE libSM libXpm libXdmcp libxcb libpthreadstubs pcre ]; diff --git a/pkgs/applications/window-managers/sawfish/default.nix b/pkgs/applications/window-managers/sawfish/default.nix index 887a58b748d..d8bb58c21b6 100644 --- a/pkgs/applications/window-managers/sawfish/default.nix +++ b/pkgs/applications/window-managers/sawfish/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl , pkgconfig, which, autoreconfHook -, rep-gtk, pango, gdk_pixbuf +, rep-gtk, pango, gdk-pixbuf , imlib, gettext, texinfo , libXinerama, libXrandr, libXtst, libICE, libSM , makeWrapper @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ autoreconfHook pkgconfig ]; buildInputs = [ which - rep-gtk pango gdk_pixbuf imlib gettext texinfo + rep-gtk pango gdk-pixbuf imlib gettext texinfo libXinerama libXrandr libXtst libICE libSM makeWrapper ]; diff --git a/pkgs/applications/window-managers/sway/bg.nix b/pkgs/applications/window-managers/sway/bg.nix index d68cacf666f..595197a3f6f 100644 --- a/pkgs/applications/window-managers/sway/bg.nix +++ b/pkgs/applications/window-managers/sway/bg.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub , meson, ninja, pkgconfig, scdoc -, wayland, wayland-protocols, cairo, gdk_pixbuf +, wayland, wayland-protocols, cairo, gdk-pixbuf }: stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ meson ninja pkgconfig scdoc ]; - buildInputs = [ wayland wayland-protocols cairo gdk_pixbuf ]; + buildInputs = [ wayland wayland-protocols cairo gdk-pixbuf ]; mesonFlags = [ "-Dgdk-pixbuf=enabled" "-Dman-pages=enabled" diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix index 7d5c4c05131..12427b91265 100644 --- a/pkgs/applications/window-managers/sway/default.nix +++ b/pkgs/applications/window-managers/sway/default.nix @@ -2,7 +2,7 @@ , meson, ninja , pkgconfig, scdoc , wayland, libxkbcommon, pcre, json_c, dbus, libevdev -, pango, cairo, libinput, libcap, pam, gdk_pixbuf +, pango, cairo, libinput, libcap, pam, gdk-pixbuf , wlroots, wayland-protocols, swaybg }: @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { buildInputs = [ wayland libxkbcommon pcre json_c dbus libevdev - pango cairo libinput libcap pam gdk_pixbuf + pango cairo libinput libcap pam gdk-pixbuf wlroots wayland-protocols ]; diff --git a/pkgs/applications/window-managers/sway/lock.nix b/pkgs/applications/window-managers/sway/lock.nix index a7505e14168..80d6ed4e072 100644 --- a/pkgs/applications/window-managers/sway/lock.nix +++ b/pkgs/applications/window-managers/sway/lock.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub , meson, ninja, pkgconfig, scdoc -, wayland, wayland-protocols, libxkbcommon, cairo, gdk_pixbuf, pam +, wayland, wayland-protocols, libxkbcommon, cairo, gdk-pixbuf, pam }: stdenv.mkDerivation rec { @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { ''; nativeBuildInputs = [ meson ninja pkgconfig scdoc ]; - buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk_pixbuf pam ]; + buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ]; mesonFlags = [ "-Dpam=enabled" "-Dgdk-pixbuf=enabled" "-Dman-pages=enabled" diff --git a/pkgs/applications/window-managers/trayer/default.nix b/pkgs/applications/window-managers/trayer/default.nix index 5aec0973a7c..5705ae8256c 100644 --- a/pkgs/applications/window-managers/trayer/default.nix +++ b/pkgs/applications/window-managers/trayer/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchFromGitHub, pkgconfig, gdk_pixbuf, gtk2 }: +{ stdenv, fetchFromGitHub, pkgconfig, gdk-pixbuf, gtk2 }: stdenv.mkDerivation rec { name = "trayer-1.1.8"; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ gdk_pixbuf gtk2 ]; + buildInputs = [ gdk-pixbuf gtk2 ]; src = fetchFromGitHub { owner = "sargon"; diff --git a/pkgs/applications/window-managers/way-cooler/crates-io.nix b/pkgs/applications/window-managers/way-cooler/crates-io.nix index 9dbd367a67f..29e25640191 100644 --- a/pkgs/applications/window-managers/way-cooler/crates-io.nix +++ b/pkgs/applications/window-managers/way-cooler/crates-io.nix @@ -546,76 +546,76 @@ rec { # end # gdk-pixbuf-0.2.0 - crates.gdk_pixbuf."0.2.0" = deps: { features?(features_.gdk_pixbuf."0.2.0" deps {}) }: buildRustCrate { + crates.gdk-pixbuf."0.2.0" = deps: { features?(features_.gdk-pixbuf."0.2.0" deps {}) }: buildRustCrate { crateName = "gdk-pixbuf"; version = "0.2.0"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "082z1s30haa59ax35wsv06mj8z8bhhq0fac36g01qa77kpiphj5y"; - libName = "gdk_pixbuf"; + libName = "gdk-pixbuf"; build = "build.rs"; dependencies = mapFeatures features ([ - (crates."gdk_pixbuf_sys"."${deps."gdk_pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) - (crates."glib"."${deps."gdk_pixbuf"."0.2.0"."glib"}" deps) - (crates."glib_sys"."${deps."gdk_pixbuf"."0.2.0"."glib_sys"}" deps) - (crates."gobject_sys"."${deps."gdk_pixbuf"."0.2.0"."gobject_sys"}" deps) - (crates."libc"."${deps."gdk_pixbuf"."0.2.0"."libc"}" deps) + (crates."gdk_pixbuf_sys"."${deps."gdk-pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) + (crates."glib"."${deps."gdk-pixbuf"."0.2.0"."glib"}" deps) + (crates."glib_sys"."${deps."gdk-pixbuf"."0.2.0"."glib_sys"}" deps) + (crates."gobject_sys"."${deps."gdk-pixbuf"."0.2.0"."gobject_sys"}" deps) + (crates."libc"."${deps."gdk-pixbuf"."0.2.0"."libc"}" deps) ]); buildDependencies = mapFeatures features ([ ]); - features = mkFeatures (features."gdk_pixbuf"."0.2.0" or {}); + features = mkFeatures (features."gdk-pixbuf"."0.2.0" or {}); }; - features_.gdk_pixbuf."0.2.0" = deps: f: updateFeatures f (rec { - gdk_pixbuf = fold recursiveUpdate {} [ - { "0.2.0".default = (f.gdk_pixbuf."0.2.0".default or true); } + features_.gdk-pixbuf."0.2.0" = deps: f: updateFeatures f (rec { + gdk-pixbuf = fold recursiveUpdate {} [ + { "0.2.0".default = (f.gdk-pixbuf."0.2.0".default or true); } { "0.2.0".gtk-rs-lgpl-docs = - (f.gdk_pixbuf."0.2.0".gtk-rs-lgpl-docs or false) || - (f.gdk_pixbuf."0.2.0".embed-lgpl-docs or false) || - (gdk_pixbuf."0.2.0"."embed-lgpl-docs" or false) || - (f.gdk_pixbuf."0.2.0".purge-lgpl-docs or false) || - (gdk_pixbuf."0.2.0"."purge-lgpl-docs" or false); } + (f.gdk-pixbuf."0.2.0".gtk-rs-lgpl-docs or false) || + (f.gdk-pixbuf."0.2.0".embed-lgpl-docs or false) || + (gdk-pixbuf."0.2.0"."embed-lgpl-docs" or false) || + (f.gdk-pixbuf."0.2.0".purge-lgpl-docs or false) || + (gdk-pixbuf."0.2.0"."purge-lgpl-docs" or false); } { "0.2.0".v2_28 = - (f.gdk_pixbuf."0.2.0".v2_28 or false) || - (f.gdk_pixbuf."0.2.0".v2_30 or false) || - (gdk_pixbuf."0.2.0"."v2_30" or false); } + (f.gdk-pixbuf."0.2.0".v2_28 or false) || + (f.gdk-pixbuf."0.2.0".v2_30 or false) || + (gdk-pixbuf."0.2.0"."v2_30" or false); } { "0.2.0".v2_30 = - (f.gdk_pixbuf."0.2.0".v2_30 or false) || - (f.gdk_pixbuf."0.2.0".v2_32 or false) || - (gdk_pixbuf."0.2.0"."v2_32" or false); } + (f.gdk-pixbuf."0.2.0".v2_30 or false) || + (f.gdk-pixbuf."0.2.0".v2_32 or false) || + (gdk-pixbuf."0.2.0"."v2_32" or false); } { "0.2.0".v2_32 = - (f.gdk_pixbuf."0.2.0".v2_32 or false) || - (f.gdk_pixbuf."0.2.0".v2_36 or false) || - (gdk_pixbuf."0.2.0"."v2_36" or false); } + (f.gdk-pixbuf."0.2.0".v2_32 or false) || + (f.gdk-pixbuf."0.2.0".v2_36 or false) || + (gdk-pixbuf."0.2.0"."v2_36" or false); } ]; gdk_pixbuf_sys = fold recursiveUpdate {} [ - { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" = - (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" or false) || - (gdk_pixbuf."0.2.0"."v2_28" or false) || - (f."gdk_pixbuf"."0.2.0"."v2_28" or false); } - { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" = - (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" or false) || - (gdk_pixbuf."0.2.0"."v2_30" or false) || - (f."gdk_pixbuf"."0.2.0"."v2_30" or false); } - { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" = - (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" or false) || - (gdk_pixbuf."0.2.0"."v2_32" or false) || - (f."gdk_pixbuf"."0.2.0"."v2_32" or false); } - { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" = - (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" or false) || - (gdk_pixbuf."0.2.0"."v2_36" or false) || - (f."gdk_pixbuf"."0.2.0"."v2_36" or false); } - { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}".default = true; } + { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" = + (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" or false) || + (gdk-pixbuf."0.2.0"."v2_28" or false) || + (f."gdk-pixbuf"."0.2.0"."v2_28" or false); } + { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" = + (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" or false) || + (gdk-pixbuf."0.2.0"."v2_30" or false) || + (f."gdk-pixbuf"."0.2.0"."v2_30" or false); } + { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" = + (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" or false) || + (gdk-pixbuf."0.2.0"."v2_32" or false) || + (f."gdk-pixbuf"."0.2.0"."v2_32" or false); } + { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" = + (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" or false) || + (gdk-pixbuf."0.2.0"."v2_36" or false) || + (f."gdk-pixbuf"."0.2.0"."v2_36" or false); } + { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}".default = true; } ]; - glib."${deps.gdk_pixbuf."0.2.0".glib}".default = true; - glib_sys."${deps.gdk_pixbuf."0.2.0".glib_sys}".default = true; - gobject_sys."${deps.gdk_pixbuf."0.2.0".gobject_sys}".default = true; - libc."${deps.gdk_pixbuf."0.2.0".libc}".default = true; + glib."${deps.gdk-pixbuf."0.2.0".glib}".default = true; + glib_sys."${deps.gdk-pixbuf."0.2.0".glib_sys}".default = true; + gobject_sys."${deps.gdk-pixbuf."0.2.0".gobject_sys}".default = true; + libc."${deps.gdk-pixbuf."0.2.0".libc}".default = true; }) [ - (features_.gdk_pixbuf_sys."${deps."gdk_pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) - (features_.glib."${deps."gdk_pixbuf"."0.2.0"."glib"}" deps) - (features_.glib_sys."${deps."gdk_pixbuf"."0.2.0"."glib_sys"}" deps) - (features_.gobject_sys."${deps."gdk_pixbuf"."0.2.0"."gobject_sys"}" deps) - (features_.libc."${deps."gdk_pixbuf"."0.2.0"."libc"}" deps) + (features_.gdk_pixbuf_sys."${deps."gdk-pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) + (features_.glib."${deps."gdk-pixbuf"."0.2.0"."glib"}" deps) + (features_.glib_sys."${deps."gdk-pixbuf"."0.2.0"."glib_sys"}" deps) + (features_.gobject_sys."${deps."gdk-pixbuf"."0.2.0"."gobject_sys"}" deps) + (features_.libc."${deps."gdk-pixbuf"."0.2.0"."libc"}" deps) ]; @@ -2357,7 +2357,7 @@ rec { (crates."dbus"."${deps."way_cooler"."0.8.1"."dbus"}" deps) (crates."dbus_macros"."${deps."way_cooler"."0.8.1"."dbus_macros"}" deps) (crates."env_logger"."${deps."way_cooler"."0.8.1"."env_logger"}" deps) - (crates."gdk_pixbuf"."${deps."way_cooler"."0.8.1"."gdk_pixbuf"}" deps) + (crates."gdk-pixbuf"."${deps."way_cooler"."0.8.1"."gdk-pixbuf"}" deps) (crates."getopts"."${deps."way_cooler"."0.8.1"."getopts"}" deps) (crates."glib"."${deps."way_cooler"."0.8.1"."glib"}" deps) (crates."json_macro"."${deps."way_cooler"."0.8.1"."json_macro"}" deps) @@ -2386,7 +2386,7 @@ rec { dbus."${deps.way_cooler."0.8.1".dbus}".default = true; dbus_macros."${deps.way_cooler."0.8.1".dbus_macros}".default = true; env_logger."${deps.way_cooler."0.8.1".env_logger}".default = true; - gdk_pixbuf."${deps.way_cooler."0.8.1".gdk_pixbuf}".default = true; + gdk-pixbuf."${deps.way_cooler."0.8.1".gdk-pixbuf}".default = true; getopts."${deps.way_cooler."0.8.1".getopts}".default = true; glib."${deps.way_cooler."0.8.1".glib}".default = true; json_macro."${deps.way_cooler."0.8.1".json_macro}".default = true; @@ -2434,7 +2434,7 @@ rec { (features_.dbus."${deps."way_cooler"."0.8.1"."dbus"}" deps) (features_.dbus_macros."${deps."way_cooler"."0.8.1"."dbus_macros"}" deps) (features_.env_logger."${deps."way_cooler"."0.8.1"."env_logger"}" deps) - (features_.gdk_pixbuf."${deps."way_cooler"."0.8.1"."gdk_pixbuf"}" deps) + (features_.gdk-pixbuf."${deps."way_cooler"."0.8.1"."gdk-pixbuf"}" deps) (features_.getopts."${deps."way_cooler"."0.8.1"."getopts"}" deps) (features_.glib."${deps."way_cooler"."0.8.1"."glib"}" deps) (features_.json_macro."${deps."way_cooler"."0.8.1"."json_macro"}" deps) diff --git a/pkgs/applications/window-managers/way-cooler/default.nix b/pkgs/applications/window-managers/way-cooler/default.nix index 24320ff0073..f06020143d7 100644 --- a/pkgs/applications/window-managers/way-cooler/default.nix +++ b/pkgs/applications/window-managers/way-cooler/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, symlinkJoin, writeShellScriptBin, callPackage, defaultCrateOverrides -, wayland, wlc, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk_pixbuf +, wayland, wlc, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk-pixbuf }: let @@ -22,7 +22,7 @@ let way-cooler = ((way_cooler_ { builtin-lua = true; }).override { crateOverrides = defaultCrateOverrides // { - way-cooler = attrs: { buildInputs = [ wlc cairo libxkbcommon fakegit gdk_pixbuf wayland ]; }; + way-cooler = attrs: { buildInputs = [ wlc cairo libxkbcommon fakegit gdk-pixbuf wayland ]; }; };}).overrideAttrs (oldAttrs: rec { postBuild = '' mkdir -p $out/etc diff --git a/pkgs/applications/window-managers/yabar/build.nix b/pkgs/applications/window-managers/yabar/build.nix index 6fc1797dd25..678ebad75dd 100644 --- a/pkgs/applications/window-managers/yabar/build.nix +++ b/pkgs/applications/window-managers/yabar/build.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cairo, gdk_pixbuf, libconfig, pango, pkgconfig +{ stdenv, fetchFromGitHub, cairo, gdk-pixbuf, libconfig, pango, pkgconfig , xcbutilwm, alsaLib, wirelesstools, asciidoc, libxslt, makeWrapper, docbook_xsl , configFile ? null, lib , rev, sha256, version, patches ? [] @@ -20,7 +20,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ - cairo gdk_pixbuf libconfig pango xcbutilwm docbook_xsl + cairo gdk-pixbuf libconfig pango xcbutilwm docbook_xsl alsaLib wirelesstools asciidoc libxslt makeWrapper ]; diff --git a/pkgs/build-support/appimage/default.nix b/pkgs/build-support/appimage/default.nix index 990f1ce2e3e..1f84403c10f 100644 --- a/pkgs/build-support/appimage/default.nix +++ b/pkgs/build-support/appimage/default.nix @@ -97,7 +97,7 @@ rec { gtk2 bzip2 zlib - gdk_pixbuf + gdk-pixbuf xorg.libXinerama xorg.libXdamage diff --git a/pkgs/build-support/rust/default-crate-overrides.nix b/pkgs/build-support/rust/default-crate-overrides.nix index c0b1797f73f..b3ab9f5ba78 100644 --- a/pkgs/build-support/rust/default-crate-overrides.nix +++ b/pkgs/build-support/rust/default-crate-overrides.nix @@ -1,5 +1,5 @@ { stdenv, pkgconfig, curl, darwin, libiconv, libgit2, libssh2, - openssl, sqlite, zlib, dbus, dbus-glib, gdk_pixbuf, cairo, python3, + openssl, sqlite, zlib, dbus, dbus-glib, gdk-pixbuf, cairo, python3, libsodium, postgresql, gmp, foundationdb, ... }: let @@ -62,7 +62,7 @@ in }; gdk-pixbuf = attrs: { - buildInputs = [ gdk_pixbuf ]; + buildInputs = [ gdk-pixbuf ]; }; libgit2-sys = attrs: { diff --git a/pkgs/data/icons/elementary-xfce-icon-theme/default.nix b/pkgs/data/icons/elementary-xfce-icon-theme/default.nix index d4a15a105cd..4b42f0b6ee9 100644 --- a/pkgs/data/icons/elementary-xfce-icon-theme/default.nix +++ b/pkgs/data/icons/elementary-xfce-icon-theme/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pkgconfig, gdk_pixbuf, optipng, librsvg, gtk3, hicolor-icon-theme }: +{ stdenv, fetchFromGitHub, pkgconfig, gdk-pixbuf, optipng, librsvg, gtk3, hicolor-icon-theme }: stdenv.mkDerivation rec { name = "elementary-xfce-icon-theme-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "16msdrazhbv80cvh5ffvgj13xmkpf87r7mq6xz071fza6nv7g0jn"; }; - nativeBuildInputs = [ pkgconfig gdk_pixbuf librsvg optipng gtk3 hicolor-icon-theme ]; + nativeBuildInputs = [ pkgconfig gdk-pixbuf librsvg optipng gtk3 hicolor-icon-theme ]; postPatch = '' substituteInPlace svgtopng/Makefile --replace "-O0" "-O" diff --git a/pkgs/data/themes/greybird/default.nix b/pkgs/data/themes/greybird/default.nix index 02c8d2b6490..d573603ce90 100644 --- a/pkgs/data/themes/greybird/default.nix +++ b/pkgs/data/themes/greybird/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk-pixbuf, librsvg, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "greybird"; @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gdk_pixbuf + gdk-pixbuf librsvg ]; diff --git a/pkgs/data/themes/matcha/default.nix b/pkgs/data/themes/matcha/default.nix index 5a43511d532..762ab3eac3e 100644 --- a/pkgs/data/themes/matcha/default.nix +++ b/pkgs/data/themes/matcha/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gdk_pixbuf, librsvg, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, gdk-pixbuf, librsvg, gtk-engine-murrine }: stdenv.mkDerivation rec { name = "matcha-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "1x954rmxv14xndn4ybhbr4pmzccnwqp462bpvzd2hak5wsqs4wxc"; }; - buildInputs = [ gdk_pixbuf librsvg ]; + buildInputs = [ gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/materia-theme/default.nix b/pkgs/data/themes/materia-theme/default.nix index 46b44d3ff90..ccdd1067302 100644 --- a/pkgs/data/themes/materia-theme/default.nix +++ b/pkgs/data/themes/materia-theme/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gnome3, glib, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }: +{ stdenv, fetchFromGitHub, gnome3, glib, libxml2, gtk-engine-murrine, gdk-pixbuf, librsvg, bc }: stdenv.mkDerivation rec { pname = "materia-theme"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ glib libxml2 bc ]; - buildInputs = [ gnome3.gnome-themes-extra gdk_pixbuf librsvg ]; + buildInputs = [ gnome3.gnome-themes-extra gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/plano/default.nix b/pkgs/data/themes/plano/default.nix index d672855df09..b009bd2780c 100644 --- a/pkgs/data/themes/plano/default.nix +++ b/pkgs/data/themes/plano/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gdk_pixbuf, gtk_engines, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, gdk-pixbuf, gtk_engines, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "plano-theme"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0p9j4p32489jb6d67jhf9x26my0mddcc6a174x713drch8zvb96l"; }; - buildInputs = [ gdk_pixbuf gtk_engines ]; + buildInputs = [ gdk-pixbuf gtk_engines ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/plata/default.nix b/pkgs/data/themes/plata/default.nix index 0d87cd848f8..52d843a5986 100644 --- a/pkgs/data/themes/plata/default.nix +++ b/pkgs/data/themes/plata/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitLab, autoreconfHook, pkgconfig, parallel -, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine +, sassc, inkscape, libxml2, glib, gdk-pixbuf, librsvg, gtk-engine-murrine , cinnamonSupport ? true , gnomeFlashbackSupport ? true , gnomeShellSupport ? true @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional telegramSupport zip; buildInputs = [ - gdk_pixbuf + gdk-pixbuf librsvg ]; diff --git a/pkgs/data/themes/qogir/default.nix b/pkgs/data/themes/qogir/default.nix index aac9ec5e85e..4d91b60960b 100644 --- a/pkgs/data/themes/qogir/default.nix +++ b/pkgs/data/themes/qogir/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gdk_pixbuf, librsvg, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, gdk-pixbuf, librsvg, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "qogir-theme"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "031nqr47b3x8ahcym7cfc75y8sy53dcmrrrlywi7m1a10ckfp0pd"; }; - buildInputs = [ gdk_pixbuf librsvg ]; + buildInputs = [ gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/sierra/default.nix b/pkgs/data/themes/sierra/default.nix index b845522a28a..e5b5ad8d611 100644 --- a/pkgs/data/themes/sierra/default.nix +++ b/pkgs/data/themes/sierra/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, libxml2, gdk_pixbuf, librsvg, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, libxml2, gdk-pixbuf, librsvg, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "sierra-gtk-theme"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ libxml2 ]; - buildInputs = [ gdk_pixbuf librsvg ]; + buildInputs = [ gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/stilo/default.nix b/pkgs/data/themes/stilo/default.nix index 48f29ad3111..61ec697d841 100644 --- a/pkgs/data/themes/stilo/default.nix +++ b/pkgs/data/themes/stilo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk_pixbuf, librsvg, gtk_engines, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "stilo-themes"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ meson ninja sassc ]; - buildInputs = [ gdk_pixbuf librsvg gtk_engines ]; + buildInputs = [ gdk-pixbuf librsvg gtk_engines ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/data/themes/zuki/default.nix b/pkgs/data/themes/zuki/default.nix index f55ed31c1ce..59099bf5227 100644 --- a/pkgs/data/themes/zuki/default.nix +++ b/pkgs/data/themes/zuki/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk_pixbuf, librsvg, gtk_engines, gtk-engine-murrine }: +{ stdenv, fetchFromGitHub, meson, ninja, sassc, gdk-pixbuf, librsvg, gtk_engines, gtk-engine-murrine }: stdenv.mkDerivation rec { pname = "zuki-themes"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ meson ninja sassc ]; - buildInputs = [ gdk_pixbuf librsvg gtk_engines ]; + buildInputs = [ gdk-pixbuf librsvg gtk_engines ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/desktops/deepin/go-lib/default.nix b/pkgs/desktops/deepin/go-lib/default.nix index a6282b979f7..6f3a851eb2f 100644 --- a/pkgs/desktops/deepin/go-lib/default.nix +++ b/pkgs/desktops/deepin/go-lib/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, glib, xorg, gdk_pixbuf, pulseaudio, +{ stdenv, fetchFromGitHub, glib, xorg, gdk-pixbuf, pulseaudio, mobile-broadband-provider-info, deepin }: stdenv.mkDerivation rec { @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib xorg.libX11 - gdk_pixbuf + gdk-pixbuf pulseaudio mobile-broadband-provider-info ]; diff --git a/pkgs/desktops/deepin/qcef/default.nix b/pkgs/desktops/deepin/qcef/default.nix index 8e75917907a..eb220dcdae6 100644 --- a/pkgs/desktops/deepin/qcef/default.nix +++ b/pkgs/desktops/deepin/qcef/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, pkgconfig, cmake, qtbase, qttools, qtwebchannel, qtx11extras, gnome2, nss, nspr, alsaLib, atk, cairo, cups, dbus, - expat, fontconfig, gdk_pixbuf, glib, gtk2, + expat, fontconfig, gdk-pixbuf, glib, gtk2, libxcb, pango, pulseaudio, xorg, deepin }: let @@ -14,7 +14,7 @@ let dbus expat fontconfig - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gtk2 diff --git a/pkgs/desktops/gnome-3/apps/cheese/default.nix b/pkgs/desktops/gnome-3/apps/cheese/default.nix index 4e5595385b4..f21e81237b2 100644 --- a/pkgs/desktops/gnome-3/apps/cheese/default.nix +++ b/pkgs/desktops/gnome-3/apps/cheese/default.nix @@ -2,7 +2,7 @@ , pkgconfig, gtk3, glib, clutter-gtk, clutter-gst, udev, gst_all_1, itstool , libgudev, autoreconfHook, vala, docbook_xml_dtd_43, docbook_xsl, appstream-glib , libxslt, yelp-tools, gnome-common, gtk-doc -, adwaita-icon-theme, librsvg, totem, gdk_pixbuf, gnome3, gnome-desktop, libxml2 }: +, adwaita-icon-theme, librsvg, totem, gdk-pixbuf, gnome3, gnome-desktop, libxml2 }: stdenv.mkDerivation rec { name = "cheese-${version}"; @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { autoreconfHook gtk-doc yelp-tools gnome-common ]; buildInputs = [ gtk3 glib gnome-video-effects - gdk_pixbuf adwaita-icon-theme librsvg udev gst_all_1.gstreamer + gdk-pixbuf adwaita-icon-theme librsvg udev gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gnome-desktop gst_all_1.gst-plugins-bad clutter-gtk clutter-gst libcanberra-gtk3 libgudev ]; @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { # vp8enc preset --prefix GST_PRESET_PATH : "${gst_all_1.gst-plugins-good}/share/gstreamer-1.0/presets" # Thumbnailers - --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" + --prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share" --prefix XDG_DATA_DIRS : "${totem}/share" ) ''; diff --git a/pkgs/desktops/gnome-3/apps/evolution/default.nix b/pkgs/desktops/gnome-3/apps/evolution/default.nix index b82c1b2dfe5..621506653d6 100644 --- a/pkgs/desktops/gnome-3/apps/evolution/default.nix +++ b/pkgs/desktops/gnome-3/apps/evolution/default.nix @@ -27,7 +27,7 @@ , sqlite , gnome3 , librsvg -, gdk_pixbuf +, gdk-pixbuf , libsecret , nss , nspr @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { db evolution-data-server gcr - gdk_pixbuf + gdk-pixbuf glib glib-networking gnome-desktop diff --git a/pkgs/desktops/gnome-3/apps/glade/default.nix b/pkgs/desktops/gnome-3/apps/glade/default.nix index e0078d5ae41..4424eb4a3fd 100644 --- a/pkgs/desktops/gnome-3/apps/glade/default.nix +++ b/pkgs/desktops/gnome-3/apps/glade/default.nix @@ -1,7 +1,7 @@ { stdenv, intltool, fetchurl, python3 , pkgconfig, gtk3, glib, gobject-introspection , wrapGAppsHook, itstool, libxml2, docbook_xsl -, gnome3, gdk_pixbuf, libxslt, gsettings-desktop-schemas }: +, gnome3, gdk-pixbuf, libxslt, gsettings-desktop-schemas }: stdenv.mkDerivation rec { name = "glade-${version}"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk3 glib libxml2 python3 python3.pkgs.pygobject3 gsettings-desktop-schemas - gdk_pixbuf gnome3.adwaita-icon-theme + gdk-pixbuf gnome3.adwaita-icon-theme ]; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/apps/gnome-books/default.nix b/pkgs/desktops/gnome-3/apps/gnome-books/default.nix index 6edf86ec552..25ee957224c 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-books/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-books/default.nix @@ -1,6 +1,6 @@ { stdenv, meson, ninja, gettext, fetchurl, evince, gjs , pkgconfig, gtk3, glib, tracker, tracker-miners, libxslt -, webkitgtk, gnome-desktop, libgepub, gnome3, gdk_pixbuf +, webkitgtk, gnome-desktop, libgepub, gnome3, gdk-pixbuf , gsettings-desktop-schemas, adwaita-icon-theme, docbook_xsl , docbook_xml_dtd_42, desktop-file-utils, python3 , gobject-introspection, wrapGAppsHook }: @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk3 glib gsettings-desktop-schemas - gdk_pixbuf adwaita-icon-theme evince + gdk-pixbuf adwaita-icon-theme evince webkitgtk gjs gobject-introspection tracker tracker-miners gnome-desktop libgepub ]; diff --git a/pkgs/desktops/gnome-3/apps/gnome-clocks/default.nix b/pkgs/desktops/gnome-3/apps/gnome-clocks/default.nix index f29f324f2ee..d2845bef2a1 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-clocks/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-clocks/default.nix @@ -2,7 +2,7 @@ , meson, ninja, gettext, pkgconfig, wrapGAppsHook, itstool, desktop-file-utils , vala, gobject-introspection, libxml2, gtk3, glib, gsound, sound-theme-freedesktop , gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, geocode-glib -, gnome3, gdk_pixbuf, geoclue2, libgweather }: +, gnome3, gdk-pixbuf, geoclue2, libgweather }: stdenv.mkDerivation rec { name = "gnome-clocks-${version}"; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { gobject-introspection # for finding vapi files ]; buildInputs = [ - gtk3 glib gsettings-desktop-schemas gdk_pixbuf adwaita-icon-theme + gtk3 glib gsettings-desktop-schemas gdk-pixbuf adwaita-icon-theme gnome-desktop geocode-glib geoclue2 libgweather gsound ]; diff --git a/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix index e0f28bc3446..e8796d49e9a 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-documents/default.nix @@ -2,7 +2,7 @@ , pkgconfig, gtk3, glib, tracker, tracker-miners , itstool, libxslt, webkitgtk, libgdata , gnome-desktop, libzapojit, libgepub -, gnome3, gdk_pixbuf, libsoup, docbook_xsl, docbook_xml_dtd_42 +, gnome3, gdk-pixbuf, libsoup, docbook_xsl, docbook_xml_dtd_42 , gobject-introspection, inkscape, poppler_utils , desktop-file-utils, wrapGAppsHook, python3, gsettings-desktop-schemas }: @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ gtk3 glib gsettings-desktop-schemas - gdk_pixbuf gnome3.adwaita-icon-theme evince + gdk-pixbuf gnome3.adwaita-icon-theme evince libsoup webkitgtk gjs gobject-introspection tracker tracker-miners libgdata gnome-desktop libzapojit libgepub diff --git a/pkgs/desktops/gnome-3/apps/gnome-maps/default.nix b/pkgs/desktops/gnome-3/apps/gnome-maps/default.nix index 25faf2676b8..6011092c0e0 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-maps/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-maps/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, meson, ninja, gettext, python3, pkgconfig, gnome3, gtk3 -, gobject-introspection, gdk_pixbuf, librsvg, libgweather +, gobject-introspection, gdk-pixbuf, librsvg, libgweather , geoclue2, wrapGAppsHook, folks, libchamplain, gfbgraph, libsoup, gsettings-desktop-schemas , webkitgtk, gjs, libgee, geocode-glib, evolution-data-server, gnome-online-accounts }: @@ -21,7 +21,7 @@ in stdenv.mkDerivation rec { gobject-introspection gtk3 geoclue2 gjs libgee folks gfbgraph geocode-glib libchamplain libsoup - gdk_pixbuf librsvg libgweather + gdk-pixbuf librsvg libgweather gsettings-desktop-schemas evolution-data-server gnome-online-accounts gnome3.adwaita-icon-theme webkitgtk diff --git a/pkgs/desktops/gnome-3/apps/gnome-music/default.nix b/pkgs/desktops/gnome-3/apps/gnome-music/default.nix index 1f1bfafb595..9b8c96729ad 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-music/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-music/default.nix @@ -1,4 +1,4 @@ -{ stdenv, meson, ninja, gettext, fetchurl, gdk_pixbuf, tracker +{ stdenv, meson, ninja, gettext, fetchurl, gdk-pixbuf, tracker , libxml2, python3, libnotify, wrapGAppsHook, libmediaart , gobject-introspection, gnome-online-accounts, grilo, grilo-plugins , pkgconfig, gtk3, glib, desktop-file-utils, appstream-glib @@ -18,7 +18,7 @@ python3.pkgs.buildPythonApplication rec { nativeBuildInputs = [ meson ninja gettext itstool pkgconfig libxml2 wrapGAppsHook desktop-file-utils appstream-glib gobject-introspection ]; buildInputs = with gst_all_1; [ gtk3 glib libmediaart gnome-online-accounts gobject-introspection - gdk_pixbuf gnome3.adwaita-icon-theme python3 + gdk-pixbuf gnome3.adwaita-icon-theme python3 grilo grilo-plugins libnotify libdazzle libsoup gsettings-desktop-schemas tracker gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly diff --git a/pkgs/desktops/gnome-3/apps/gnome-photos/default.nix b/pkgs/desktops/gnome-3/apps/gnome-photos/default.nix index 9d08cc24aad..e5bd4d8b950 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-photos/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-photos/default.nix @@ -3,7 +3,7 @@ , itstool, gegl, babl, libdazzle, gfbgraph, grilo-plugins , grilo, gnome-online-accounts , desktop-file-utils, wrapGAppsHook -, gnome3, gdk_pixbuf, gexiv2, geocode-glib +, gnome3, gdk-pixbuf, gexiv2, geocode-glib , dleyna-renderer, dbus, meson, ninja, python3, gsettings-desktop-schemas }: let @@ -26,7 +26,7 @@ in stdenv.mkDerivation rec { buildInputs = [ gtk3 glib gegl babl libgdata libdazzle gsettings-desktop-schemas - gdk_pixbuf gnome3.adwaita-icon-theme + gdk-pixbuf gnome3.adwaita-icon-theme gfbgraph grilo-plugins grilo gnome-online-accounts tracker gexiv2 geocode-glib dleyna-renderer diff --git a/pkgs/desktops/gnome-3/apps/gnome-sound-recorder/default.nix b/pkgs/desktops/gnome-3/apps/gnome-sound-recorder/default.nix index fbf80fc32e8..907c0424454 100644 --- a/pkgs/desktops/gnome-3/apps/gnome-sound-recorder/default.nix +++ b/pkgs/desktops/gnome-3/apps/gnome-sound-recorder/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gettext, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk_pixbuf, gst_all_1, gnome3 +{ stdenv, fetchurl, pkgconfig, gettext, gobject-introspection, wrapGAppsHook, gjs, glib, gtk3, gdk-pixbuf, gst_all_1, gnome3 , meson, ninja, python3, hicolor-icon-theme, desktop-file-utils }: stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { pkgconfig gettext meson ninja gobject-introspection wrapGAppsHook python3 hicolor-icon-theme desktop-file-utils ]; - buildInputs = [ gjs glib gtk3 gdk_pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]); + buildInputs = [ gjs glib gtk3 gdk-pixbuf ] ++ (with gst_all_1; [ gstreamer.dev gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad ]); postPatch = '' chmod +x build-aux/meson_post_install.py diff --git a/pkgs/desktops/gnome-3/apps/polari/default.nix b/pkgs/desktops/gnome-3/apps/polari/default.nix index 73b8016d97b..51fea63b714 100644 --- a/pkgs/desktops/gnome-3/apps/polari/default.nix +++ b/pkgs/desktops/gnome-3/apps/polari/default.nix @@ -1,4 +1,4 @@ -{ stdenv, itstool, fetchurl, gdk_pixbuf, adwaita-icon-theme +{ stdenv, itstool, fetchurl, gdk-pixbuf, adwaita-icon-theme , telepathy-glib, gjs, meson, ninja, gettext, telepathy-idle, libxml2, desktop-file-utils , pkgconfig, gtk3, glib, libsecret, libsoup, gobject-introspection, appstream-glib , gnome3, wrapGAppsHook, telepathy-logger, gspell, gsettings-desktop-schemas }: @@ -23,7 +23,7 @@ in stdenv.mkDerivation rec { buildInputs = [ gtk3 glib adwaita-icon-theme gsettings-desktop-schemas - telepathy-glib telepathy-logger gjs gspell gdk_pixbuf libsecret libsoup + telepathy-glib telepathy-logger gjs gspell gdk-pixbuf libsecret libsoup ]; passthru = { diff --git a/pkgs/desktops/gnome-3/core/adwaita-icon-theme/default.nix b/pkgs/desktops/gnome-3/core/adwaita-icon-theme/default.nix index 0f88372d9cf..9ef94adcbd0 100644 --- a/pkgs/desktops/gnome-3/core/adwaita-icon-theme/default.nix +++ b/pkgs/desktops/gnome-3/core/adwaita-icon-theme/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, intltool, gnome3 -, iconnamingutils, gtk3, gdk_pixbuf, librsvg, hicolor-icon-theme }: +, iconnamingutils, gtk3, gdk-pixbuf, librsvg, hicolor-icon-theme }: stdenv.mkDerivation rec { name = "adwaita-icon-theme-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { # For convenience, we can specify adwaita-icon-theme only in packages propagatedBuildInputs = [ hicolor-icon-theme ]; - buildInputs = [ gdk_pixbuf librsvg ]; + buildInputs = [ gdk-pixbuf librsvg ]; nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk3 ]; diff --git a/pkgs/desktops/gnome-3/core/empathy/default.nix b/pkgs/desktops/gnome-3/core/empathy/default.nix index 5a08454cb35..73c3f65a968 100644 --- a/pkgs/desktops/gnome-3/core/empathy/default.nix +++ b/pkgs/desktops/gnome-3/core/empathy/default.nix @@ -1,5 +1,5 @@ { stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib -, file, librsvg, gnome3, gdk_pixbuf, python3 +, file, librsvg, gnome3, gdk-pixbuf, python3 , telepathy-glib, telepathy-farstream, glibcLocales , clutter-gtk, clutter-gst, gst_all_1, cogl, gnome-online-accounts , gcr, libsecret, folks, libpulseaudio, telepathy-mission-control @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { gtk3 glib webkitgtk icu gnome-online-accounts telepathy-glib clutter-gtk clutter-gst cogl gst_all_1.gstreamer gst_all_1.gst-plugins-base - gcr libsecret libpulseaudio gdk_pixbuf + gcr libsecret libpulseaudio gdk-pixbuf libnotify clutter libsoup gnutls libgee p11-kit libcanberra-gtk3 telepathy-farstream farstream gnome3.adwaita-icon-theme gsettings-desktop-schemas diff --git a/pkgs/desktops/gnome-3/core/eog/default.nix b/pkgs/desktops/gnome-3/core/eog/default.nix index 5c896ec01fc..8bb727a6fc5 100644 --- a/pkgs/desktops/gnome-3/core/eog/default.nix +++ b/pkgs/desktops/gnome-3/core/eog/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, meson, ninja, gettext, itstool, pkgconfig, libxml2, libjpeg, libpeas, gnome3 -, gtk3, glib, gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, lcms2, gdk_pixbuf, exempi +, gtk3, glib, gsettings-desktop-schemas, adwaita-icon-theme, gnome-desktop, lcms2, gdk-pixbuf, exempi , shared-mime-info, wrapGAppsHook, librsvg, libexif, gobject-introspection, python3 }: let @@ -16,7 +16,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ meson ninja pkgconfig gettext itstool wrapGAppsHook libxml2 gobject-introspection python3 ]; buildInputs = [ - libjpeg gtk3 gdk_pixbuf glib libpeas librsvg lcms2 gnome-desktop libexif exempi + libjpeg gtk3 gdk-pixbuf glib libpeas librsvg lcms2 gnome-desktop libexif exempi gsettings-desktop-schemas shared-mime-info adwaita-icon-theme ]; @@ -28,7 +28,7 @@ in stdenv.mkDerivation rec { preFixup = '' gappsWrapperArgs+=( # Thumbnailers - --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" + --prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share" --prefix XDG_DATA_DIRS : "${librsvg}/share" --prefix XDG_DATA_DIRS : "${shared-mime-info}/share" ) diff --git a/pkgs/desktops/gnome-3/core/epiphany/default.nix b/pkgs/desktops/gnome-3/core/epiphany/default.nix index f4e87b50906..776da94242f 100644 --- a/pkgs/desktops/gnome-3/core/epiphany/default.nix +++ b/pkgs/desktops/gnome-3/core/epiphany/default.nix @@ -2,7 +2,7 @@ , wrapGAppsHook, gnome3, libxml2, libxslt, itstool , webkitgtk, libsoup, glib-networking, libsecret, gnome-desktop, libnotify, p11-kit , sqlite, gcr, isocodes, desktop-file-utils, python3 -, gdk_pixbuf, gst_all_1, json-glib, libdazzle, libhandy }: +, gdk-pixbuf, gst_all_1, json-glib, libdazzle, libhandy }: stdenv.mkDerivation rec { name = "epiphany-${version}"; @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk3 glib webkitgtk libsoup libxml2 libsecret gnome-desktop libnotify sqlite isocodes p11-kit icu libhandy - gdk_pixbuf gnome3.adwaita-icon-theme gcr + gdk-pixbuf gnome3.adwaita-icon-theme gcr glib-networking gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly gst_all_1.gst-libav json-glib libdazzle diff --git a/pkgs/desktops/gnome-3/core/evince/default.nix b/pkgs/desktops/gnome-3/core/evince/default.nix index 68beb0e47e3..9313ca8990c 100644 --- a/pkgs/desktops/gnome-3/core/evince/default.nix +++ b/pkgs/desktops/gnome-3/core/evince/default.nix @@ -11,7 +11,7 @@ , gtk3 , pango , atk -, gdk_pixbuf +, gdk-pixbuf , shared-mime-info , itstool , gnome3 @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { gtk3 pango atk - gdk_pixbuf + gdk-pixbuf libxml2 gsettings-desktop-schemas poppler diff --git a/pkgs/desktops/gnome-3/core/gjs/default.nix b/pkgs/desktops/gnome-3/core/gjs/default.nix index ef4de369915..4e43d5f9d50 100644 --- a/pkgs/desktops/gnome-3/core/gjs/default.nix +++ b/pkgs/desktops/gnome-3/core/gjs/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, gnome3, gtk3, atk, gobject-introspection -, spidermonkey_60, pango, readline, glib, libxml2, dbus, gdk_pixbuf +, spidermonkey_60, pango, readline, glib, libxml2, dbus, gdk-pixbuf , makeWrapper }: stdenv.mkDerivation rec { @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { moveToOutput "libexec/gjs/installed-tests" "$installedTests" wrapProgram "$installedTests/libexec/gjs/installed-tests/minijasmine" \ - --prefix GI_TYPELIB_PATH : "${stdenv.lib.makeSearchPath "lib/girepository-1.0" [ gtk3 atk pango.out gdk_pixbuf ]}:$installedTests/libexec/gjs/installed-tests" + --prefix GI_TYPELIB_PATH : "${stdenv.lib.makeSearchPath "lib/girepository-1.0" [ gtk3 atk pango.out gdk-pixbuf ]}:$installedTests/libexec/gjs/installed-tests" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix b/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix index c7a9b4ccfbd..e947f8625c6 100644 --- a/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-control-center/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, substituteAll, meson, ninja, pkgconfig, gnome3, ibus, gettext, upower, wrapGAppsHook , libcanberra-gtk3, accountsservice, libpwquality, libpulseaudio -, gdk_pixbuf, librsvg, libgudev, libsecret, gnome-color-manager +, gdk-pixbuf, librsvg, libgudev, libsecret, gnome-color-manager , libxml2, polkit, libxslt, libgtop, libsoup, colord, colord-gtk , libkrb5, networkmanagerapplet, networkmanager, glibc , libwacom, samba, shared-mime-info, tzdata, libgnomekbd @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { gnome-online-accounts libsoup colord libpulseaudio fontconfig colord-gtk accountsservice libkrb5 networkmanagerapplet libwacom samba grilo libpwquality vino libcanberra-gtk3 libgudev libsecret - gdk_pixbuf adwaita-icon-theme librsvg clutter clutter-gtk cheese + gdk-pixbuf adwaita-icon-theme librsvg clutter clutter-gtk cheese networkmanager modemmanager gnome-bluetooth tracker udisks2 gsound libhandy mutter # schemas for the keybindings @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { gappsWrapperArgs+=( --prefix XDG_DATA_DIRS : "${sound-theme-freedesktop}/share" # Thumbnailers (for setting user profile pictures) - --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" + --prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share" --prefix XDG_DATA_DIRS : "${librsvg}/share" # WM keyboard shortcuts --prefix XDG_DATA_DIRS : "${mutter}/share" diff --git a/pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix b/pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix index 4a22fc53519..fd507acc009 100644 --- a/pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-remote-desktop/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitLab, meson, ninja, pkgconfig, python3, wrapGAppsHook -, glib, pipewire, systemd, libvncserver, libsecret, libnotify, gdk_pixbuf, gnome3 }: +, glib, pipewire, systemd, libvncserver, libsecret, libnotify, gdk-pixbuf, gnome3 }: stdenv.mkDerivation rec { pname = "gnome-remote-desktop"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib pipewire systemd libvncserver libsecret libnotify - gdk_pixbuf # For libnotify + gdk-pixbuf # For libnotify ]; postPatch = '' diff --git a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix index d9001d9b1b9..1363cf6d669 100644 --- a/pkgs/desktops/gnome-3/core/gnome-shell/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-shell/default.nix @@ -3,7 +3,7 @@ , libstartup_notification, telepathy-glib, telepathy-logger, libXtst, unzip, glibcLocales, shared-mime-info , libgweather, libcanberra-gtk3, librsvg, geoclue2, perl, docbook_xml_dtd_42, desktop-file-utils , libpulseaudio, libical, gobject-introspection, gstreamer, wrapGAppsHook, libxslt, gcr, caribou -, accountsservice, gdk_pixbuf, gdm, upower, ibus, networkmanagerapplet, libgnomekbd, gnome-desktop +, accountsservice, gdk-pixbuf, gdm, upower, ibus, networkmanagerapplet, libgnomekbd, gnome-desktop , gsettings-desktop-schemas, gnome-keyring, glib, gjs, mutter, evolution-data-server, gtk3 , sassc, systemd, gst_all_1, adwaita-icon-theme, gnome-bluetooth, gnome-clocks, gnome-settings-daemon }: @@ -30,7 +30,7 @@ in stdenv.mkDerivation rec { buildInputs = [ systemd caribou gsettings-desktop-schemas gnome-keyring glib gcr json-glib accountsservice - libcroco libsecret libsoup polkit gdk_pixbuf librsvg + libcroco libsecret libsoup polkit gdk-pixbuf librsvg clutter networkmanager libstartup_notification telepathy-glib libXtst gjs mutter libpulseaudio evolution-data-server libical gtk3 gstreamer gdm libcanberra-gtk3 geoclue2 diff --git a/pkgs/desktops/gnome-3/core/gnome-system-monitor/default.nix b/pkgs/desktops/gnome-3/core/gnome-system-monitor/default.nix index 83159c2ad72..5c332c4135c 100644 --- a/pkgs/desktops/gnome-3/core/gnome-system-monitor/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-system-monitor/default.nix @@ -1,6 +1,6 @@ { stdenv, gettext, fetchurl, pkgconfig, gtkmm3, libxml2, polkit , bash, gtk3, glib, wrapGAppsHook, meson, ninja, python3 -, gsettings-desktop-schemas, itstool, gnome3, librsvg, gdk_pixbuf, libgtop, systemd }: +, gsettings-desktop-schemas, itstool, gnome3, librsvg, gdk-pixbuf, libgtop, systemd }: stdenv.mkDerivation rec { name = "gnome-system-monitor-${version}"; @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { polkit # for ITS file ]; buildInputs = [ - bash gtk3 glib libxml2 gtkmm3 libgtop gdk_pixbuf gnome3.adwaita-icon-theme librsvg + bash gtk3 glib libxml2 gtkmm3 libgtop gdk-pixbuf gnome3.adwaita-icon-theme librsvg gsettings-desktop-schemas systemd ]; 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 3d5cfb85d67..5cd8f249481 100644 --- a/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix +++ b/pkgs/desktops/gnome-3/core/gnome-themes-extra/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, intltool, gtk3, gnome3, librsvg, pkgconfig, pango, atk, gtk2 -, gdk_pixbuf }: +, gdk-pixbuf }: let pname = "gnome-themes-extra"; @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig intltool ]; - buildInputs = [ gtk3 librsvg pango atk gtk2 gdk_pixbuf gnome3.adwaita-icon-theme ]; + buildInputs = [ gtk3 librsvg pango atk gtk2 gdk-pixbuf gnome3.adwaita-icon-theme ]; postFixup = '' gtk-update-icon-cache "$out"/share/icons/HighContrast diff --git a/pkgs/desktops/gnome-3/core/nautilus/default.nix b/pkgs/desktops/gnome-3/core/nautilus/default.nix index 2eeb77db0c6..854ce936446 100644 --- a/pkgs/desktops/gnome-3/core/nautilus/default.nix +++ b/pkgs/desktops/gnome-3/core/nautilus/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, libxml2 , desktop-file-utils, python3, wrapGAppsHook , gtk3, gnome3, gnome-autoar , glib-networking, shared-mime-info, libnotify, libexif, libseccomp , exempi -, librsvg, tracker, tracker-miners, gexiv2, libselinux, gdk_pixbuf +, librsvg, tracker, tracker-miners, gexiv2, libselinux, gdk-pixbuf , substituteAll, bubblewrap, gst_all_1, gsettings-desktop-schemas }: @@ -32,7 +32,7 @@ in stdenv.mkDerivation rec { preFixup = '' gappsWrapperArgs+=( # Thumbnailers - --prefix XDG_DATA_DIRS : "${gdk_pixbuf}/share" + --prefix XDG_DATA_DIRS : "${gdk-pixbuf}/share" --prefix XDG_DATA_DIRS : "${librsvg}/share" --prefix XDG_DATA_DIRS : "${shared-mime-info}/share" ) diff --git a/pkgs/desktops/gnome-3/core/simple-scan/default.nix b/pkgs/desktops/gnome-3/core/simple-scan/default.nix index 047e79e14e5..4f57c5247d9 100644 --- a/pkgs/desktops/gnome-3/core/simple-scan/default.nix +++ b/pkgs/desktops/gnome-3/core/simple-scan/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, gettext, itstool, python3, wrapGAppsHook -, cairo, gdk_pixbuf, colord, glib, gtk3, gusb, packagekit, libwebp +, cairo, gdk-pixbuf, colord, glib, gtk3, gusb, packagekit, libwebp , libxml2, sane-backends, vala, gnome3, gobject-introspection }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ - cairo gdk_pixbuf colord glib gnome3.adwaita-icon-theme gusb + cairo gdk-pixbuf colord glib gnome3.adwaita-icon-theme gusb gtk3 libwebp packagekit sane-backends vala ]; nativeBuildInputs = [ diff --git a/pkgs/desktops/gnome-3/core/sushi/default.nix b/pkgs/desktops/gnome-3/core/sushi/default.nix index c0d5d2be26d..5554dbdfe30 100644 --- a/pkgs/desktops/gnome-3/core/sushi/default.nix +++ b/pkgs/desktops/gnome-3/core/sushi/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, meson, gettext, gobject-introspection, glib , clutter-gtk, clutter-gst, gnome3, gtksourceview, gjs , webkitgtk, libmusicbrainz5, icu, wrapGAppsHook, gst_all_1 -, gdk_pixbuf, librsvg, gtk3, harfbuzz, ninja }: +, gdk-pixbuf, librsvg, gtk3, harfbuzz, ninja }: stdenv.mkDerivation rec { name = "sushi-${version}"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ glib gtk3 gnome3.evince icu harfbuzz - clutter-gtk clutter-gst gjs gtksourceview gdk_pixbuf + clutter-gtk clutter-gst gjs gtksourceview gdk-pixbuf librsvg libmusicbrainz5 webkitgtk gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]; diff --git a/pkgs/desktops/gnome-3/core/totem/default.nix b/pkgs/desktops/gnome-3/core/totem/default.nix index 15417d4ddbb..4953b7ec7a8 100644 --- a/pkgs/desktops/gnome-3/core/totem/default.nix +++ b/pkgs/desktops/gnome-3/core/totem/default.nix @@ -3,7 +3,7 @@ , pkgconfig, gtk3, glib, gobject-introspection, totem-pl-parser , wrapGAppsHook, itstool, libxml2, vala, gnome3, grilo, grilo-plugins , libpeas, adwaita-icon-theme, gnome-desktop, gsettings-desktop-schemas -, gdk_pixbuf, tracker, nautilus, xvfb_run }: +, gdk-pixbuf, tracker, nautilus, xvfb_run }: stdenv.mkDerivation rec { name = "totem-${version}"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { gtk3 glib grilo clutter-gtk clutter-gst totem-pl-parser grilo-plugins gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-ugly gst_all_1.gst-libav libpeas shared-mime-info - gdk_pixbuf libxml2 adwaita-icon-theme gnome-desktop + gdk-pixbuf libxml2 adwaita-icon-theme gnome-desktop gsettings-desktop-schemas tracker nautilus python3Packages.pygobject3 python3Packages.dbus-python # for plug-ins ]; diff --git a/pkgs/desktops/gnome-3/games/atomix/default.nix b/pkgs/desktops/gnome-3/games/atomix/default.nix index 00b3a04a168..c9395166c52 100644 --- a/pkgs/desktops/gnome-3/games/atomix/default.nix +++ b/pkgs/desktops/gnome-3/games/atomix/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, wrapGAppsHook, python3 -, gettext, gnome3, glib, gtk3, libgnome-games-support, gdk_pixbuf }: +, gettext, gnome3, glib, gtk3, libgnome-games-support, gdk-pixbuf }: let pname = "atomix"; @@ -13,7 +13,7 @@ in stdenv.mkDerivation rec { }; nativeBuildInputs = [ meson ninja pkgconfig gettext wrapGAppsHook python3 ]; - buildInputs = [ glib gtk3 gdk_pixbuf libgnome-games-support gnome3.adwaita-icon-theme ]; + buildInputs = [ glib gtk3 gdk-pixbuf libgnome-games-support gnome3.adwaita-icon-theme ]; postPatch = '' chmod +x meson_post_install.py diff --git a/pkgs/desktops/gnome-3/games/iagno/default.nix b/pkgs/desktops/gnome-3/games/iagno/default.nix index 540e379210e..86a1bd6485b 100644 --- a/pkgs/desktops/gnome-3/games/iagno/default.nix +++ b/pkgs/desktops/gnome-3/games/iagno/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk-pixbuf, librsvg, wrapGAppsHook , itstool, libcanberra-gtk3, libxml2 , meson, ninja, python3, vala, desktop-file-utils }: @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { meson ninja python3 vala desktop-file-utils pkgconfig wrapGAppsHook itstool libxml2 ]; - buildInputs = [ gtk3 gnome3.adwaita-icon-theme gdk_pixbuf librsvg libcanberra-gtk3 ]; + buildInputs = [ gtk3 gnome3.adwaita-icon-theme gdk-pixbuf librsvg libcanberra-gtk3 ]; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/games/lightsoff/default.nix b/pkgs/desktops/gnome-3/games/lightsoff/default.nix index 18c6f43b3b3..5801c293563 100644 --- a/pkgs/desktops/gnome-3/games/lightsoff/default.nix +++ b/pkgs/desktops/gnome-3/games/lightsoff/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, vala, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook +{ stdenv, fetchurl, vala, pkgconfig, gtk3, gnome3, gdk-pixbuf, librsvg, wrapGAppsHook , gettext, itstool, clutter, clutter-gtk, libxml2, appstream-glib , meson, ninja, python3 }: @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { vala pkgconfig wrapGAppsHook itstool gettext appstream-glib libxml2 meson ninja python3 ]; - buildInputs = [ gtk3 gnome3.adwaita-icon-theme gdk_pixbuf librsvg clutter clutter-gtk ]; + buildInputs = [ gtk3 gnome3.adwaita-icon-theme gdk-pixbuf librsvg clutter clutter-gtk ]; postPatch = '' chmod +x build-aux/meson_post_install.py diff --git a/pkgs/desktops/gnome-3/games/quadrapassel/default.nix b/pkgs/desktops/gnome-3/games/quadrapassel/default.nix index 712f984cbf9..78ed0d9fa68 100644 --- a/pkgs/desktops/gnome-3/games/quadrapassel/default.nix +++ b/pkgs/desktops/gnome-3/games/quadrapassel/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk-pixbuf , librsvg, libcanberra-gtk3, libmanette , gettext, itstool, libxml2, clutter, clutter-gtk, wrapGAppsHook , meson, ninja, python3, vala, desktop-file-utils @@ -21,7 +21,7 @@ in stdenv.mkDerivation rec { libxml2 itstool gettext wrapGAppsHook ]; buildInputs = [ - gtk3 gdk_pixbuf librsvg libmanette + gtk3 gdk-pixbuf librsvg libmanette libcanberra-gtk3 clutter libxml2 clutter-gtk ]; diff --git a/pkgs/desktops/gnome-3/games/tali/default.nix b/pkgs/desktops/gnome-3/games/tali/default.nix index 5ec29554b36..d9f3e5fc5ff 100644 --- a/pkgs/desktops/gnome-3/games/tali/default.nix +++ b/pkgs/desktops/gnome-3/games/tali/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk-pixbuf , librsvg, gettext, itstool, libxml2, wrapGAppsHook , meson, ninja, python3, desktop-file-utils }: @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { pkgconfig gnome3.adwaita-icon-theme libxml2 itstool gettext wrapGAppsHook ]; - buildInputs = [ gtk3 gdk_pixbuf librsvg ]; + buildInputs = [ gtk3 gdk-pixbuf librsvg ]; postPatch = '' chmod +x build-aux/meson_post_install.py diff --git a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix index fd7f7ef609d..7a54114d2db 100644 --- a/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix +++ b/pkgs/desktops/gnome-3/misc/gnome-tweaks/default.nix @@ -1,7 +1,7 @@ { stdenv, meson, ninja, gettext, fetchurl , pkgconfig, gtk3, glib, libsoup, gsettings-desktop-schemas , itstool, libxml2, python3Packages -, gnome3, gdk_pixbuf, libnotify, gobject-introspection, wrapGAppsHook }: +, gnome3, gdk-pixbuf, libnotify, gobject-introspection, wrapGAppsHook }: let pname = "gnome-tweaks"; @@ -19,7 +19,7 @@ in stdenv.mkDerivation rec { ]; buildInputs = [ gtk3 glib gsettings-desktop-schemas - gdk_pixbuf gnome3.adwaita-icon-theme + gdk-pixbuf gnome3.adwaita-icon-theme libnotify gnome3.gnome-shell python3Packages.pygobject3 libsoup gnome3.gnome-settings-daemon gnome3.nautilus gnome3.mutter gnome3.gnome-desktop gobject-introspection diff --git a/pkgs/desktops/lxde/core/lxpanel/default.nix b/pkgs/desktops/lxde/core/lxpanel/default.nix index af9570a2c73..a24a33c2e76 100644 --- a/pkgs/desktops/lxde/core/lxpanel/default.nix +++ b/pkgs/desktops/lxde/core/lxpanel/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, gettext, m4, intltool, libxmlxx, keybinder -, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk_pixbuf +, gtk2, libX11, libfm, libwnck, libXmu, libXpm, cairo, gdk-pixbuf , menu-cache, lxmenu-data, wirelesstools , supportAlsa ? false, alsaLib }: @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig gettext m4 intltool libxmlxx ]; buildInputs = [ - keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk_pixbuf + keybinder gtk2 libX11 libfm libwnck libXmu libXpm cairo gdk-pixbuf menu-cache lxmenu-data m4 wirelesstools ] ++ stdenv.lib.optional supportAlsa alsaLib; diff --git a/pkgs/desktops/mate/caja-dropbox/default.nix b/pkgs/desktops/mate/caja-dropbox/default.nix index f5b71eba141..597391eb135 100644 --- a/pkgs/desktops/mate/caja-dropbox/default.nix +++ b/pkgs/desktops/mate/caja-dropbox/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, substituteAll -, pkgconfig, gobject-introspection, gdk_pixbuf +, pkgconfig, gobject-introspection, gdk-pixbuf , gtk3, mate, python3, dropbox }: let @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig gobject-introspection - gdk_pixbuf + gdk-pixbuf (python3.withPackages (ps: with ps; [ docutils pygobject3 diff --git a/pkgs/desktops/mate/mate-themes/default.nix b/pkgs/desktops/mate/mate-themes/default.nix index 3c7b16a6831..a4724049f7c 100644 --- a/pkgs/desktops/mate/mate-themes/default.nix +++ b/pkgs/desktops/mate/mate-themes/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, intltool, mate, gtk2, gtk3, - gtk_engines, gtk-engine-murrine, gdk_pixbuf, librsvg }: + gtk_engines, gtk-engine-murrine, gdk-pixbuf, librsvg }: stdenv.mkDerivation rec { name = "mate-themes-${version}"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool gtk3 ]; - buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gdk_pixbuf librsvg ]; + buildInputs = [ mate.mate-icon-theme gtk2 gtk_engines gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/desktops/maxx/default.nix b/pkgs/desktops/maxx/default.nix index 5edebb39be4..aaf9986fbb2 100644 --- a/pkgs/desktops/maxx/default.nix +++ b/pkgs/desktops/maxx/default.nix @@ -3,7 +3,7 @@ , libX11, libXext, libXi, libXau, libXrender, libXft, libXmu, libSM, libXcomposite, libXfixes, libXpm , libXinerama, libXdamage, libICE, libXtst, libXaw, fontconfig, pango, cairo, glib, libxml2, atk, gtk2 -, gdk_pixbuf, libGL, ncurses5 +, gdk-pixbuf, libGL, ncurses5 , dmidecode, pciutils, usbutils }: @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ stdenv.cc.cc libX11 libXext libXi libXau libXrender libXft libXmu libSM libXcomposite libXfixes libXpm libXinerama libXdamage libICE libXtst libXaw fontconfig pango cairo glib libxml2 atk gtk2 - gdk_pixbuf libGL ncurses5 + gdk-pixbuf libGL ncurses5 ]; buildPhase = '' @@ -70,7 +70,7 @@ stdenv.mkDerivation rec { maintainers = [ maintainers.gnidorah ]; platforms = ["x86_64-linux"]; longDescription = '' - A clone of IRIX Interactive Desktop made in agreement with SGI. + A clone of IRIX Interactive Desktop made in agreement with SGI. Provides simple and fast retro desktop environment. ''; }; diff --git a/pkgs/desktops/xfce/core/tumbler.nix b/pkgs/desktops/xfce/core/tumbler.nix index 3e1d2be2b53..9087d3a0255 100644 --- a/pkgs/desktops/xfce/core/tumbler.nix +++ b/pkgs/desktops/xfce/core/tumbler.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, intltool, dbus-glib, gdk_pixbuf, curl, freetype +{ stdenv, fetchurl, pkgconfig, intltool, dbus-glib, gdk-pixbuf, curl, freetype , libgsf, poppler, bzip2 }: let p_name = "tumbler"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ - intltool dbus-glib gdk_pixbuf curl freetype + intltool dbus-glib gdk-pixbuf curl freetype poppler libgsf bzip2 ]; diff --git a/pkgs/desktops/xfce4-14/thunar/default.nix b/pkgs/desktops/xfce4-14/thunar/default.nix index e559505aca6..27fe256490a 100644 --- a/pkgs/desktops/xfce4-14/thunar/default.nix +++ b/pkgs/desktops/xfce4-14/thunar/default.nix @@ -1,4 +1,4 @@ -{ mkXfceDerivation, docbook_xsl, exo, gdk_pixbuf, gtk3, libgudev ? null +{ mkXfceDerivation, docbook_xsl, exo, gdk-pixbuf, gtk3, libgudev ? null , libnotify ? null, libX11, libxfce4ui, libxfce4util, libxslt, xfconf }: mkXfceDerivation rec { @@ -19,7 +19,7 @@ mkXfceDerivation rec { buildInputs = [ exo - gdk_pixbuf + gdk-pixbuf gtk3 libgudev libnotify diff --git a/pkgs/desktops/xfce4-14/tumbler/default.nix b/pkgs/desktops/xfce4-14/tumbler/default.nix index e67c7f1e298..81cc0922ff3 100644 --- a/pkgs/desktops/xfce4-14/tumbler/default.nix +++ b/pkgs/desktops/xfce4-14/tumbler/default.nix @@ -1,4 +1,4 @@ -{ mkXfceDerivation, gdk_pixbuf ? null, ffmpegthumbnailer ? null, libgsf ? null +{ mkXfceDerivation, gdk-pixbuf ? null, ffmpegthumbnailer ? null, libgsf ? null , poppler ? null }: # TODO: add libopenraw @@ -11,5 +11,5 @@ mkXfceDerivation rec { sha256 = "1k579g8dmcfpw1vakspv6k2qkr1y1axyr8cbd0fqjhqdj4pis81i"; - buildInputs = [ gdk_pixbuf ffmpegthumbnailer libgsf poppler ]; + buildInputs = [ gdk-pixbuf ffmpegthumbnailer libgsf poppler ]; } diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix index 2df5d16dbac..5d151e5fa21 100644 --- a/pkgs/development/arduino/arduino-core/default.nix +++ b/pkgs/development/arduino/arduino-core/default.nix @@ -3,7 +3,7 @@ , withGui ? false, gtk2 ? null, withTeensyduino ? false /* Packages needed for Teensyduino */ , upx, fontconfig, xorg, gcc -, atk, glib, pango, gdk_pixbuf, libpng12, expat, freetype, +, atk, glib, pango, gdk-pixbuf, libpng12, expat, freetype, }: assert withGui -> gtk2 != null; @@ -36,7 +36,7 @@ let fontconfig freetype gcc.cc.lib - gdk_pixbuf + gdk-pixbuf glib gtk2 libpng12 @@ -115,7 +115,7 @@ stdenv.mkDerivation rec { substituteInPlace build/build.xml --replace "get src" "get error" cd ./arduino-core && ant - cd ../build && ant + cd ../build && ant cd .. ''; diff --git a/pkgs/development/compilers/adoptopenjdk-bin/jdk-linux-base.nix b/pkgs/development/compilers/adoptopenjdk-bin/jdk-linux-base.nix index 8e8b157aa22..a837c6f1e85 100644 --- a/pkgs/development/compilers/adoptopenjdk-bin/jdk-linux-base.nix +++ b/pkgs/development/compilers/adoptopenjdk-bin/jdk-linux-base.nix @@ -17,7 +17,7 @@ sourcePerArch: , cairo , alsaLib , atk -, gdk_pixbuf +, gdk-pixbuf , zlib , elfutils }: @@ -35,7 +35,7 @@ let libraries = [ stdenv.cc.libc glib libxml2 ffmpeg_2 libxslt libGL - xorg.libXxf86vm alsaLib fontconfig freetype pango gtk2 cairo gdk_pixbuf + xorg.libXxf86vm alsaLib fontconfig freetype pango gtk2 cairo gdk-pixbuf atk zlib elfutils ] ++ (stdenv.lib.optionals swingSupport [ xorg.libX11 xorg.libXext xorg.libXtst xorg.libXi xorg.libXp xorg.libXt diff --git a/pkgs/development/compilers/cudatoolkit/default.nix b/pkgs/development/compilers/cudatoolkit/default.nix index 6a18c05f38e..5b9e9010ef0 100644 --- a/pkgs/development/compilers/cudatoolkit/default.nix +++ b/pkgs/development/compilers/cudatoolkit/default.nix @@ -1,6 +1,6 @@ { lib, stdenv, makeWrapper, fetchurl, requireFile, perl, ncurses5, expat, python27, zlib , gcc48, gcc49, gcc5, gcc6, gcc7 -, xorg, gtk2, gdk_pixbuf, glib, fontconfig, freetype, unixODBC, alsaLib, glibc +, xorg, gtk2, gdk-pixbuf, glib, fontconfig, freetype, unixODBC, alsaLib, glibc , addOpenGLRunpath }: @@ -41,7 +41,7 @@ let outputs = [ "out" "lib" "doc" ]; nativeBuildInputs = [ perl makeWrapper addOpenGLRunpath ]; - buildInputs = [ gdk_pixbuf ]; # To get $GDK_PIXBUF_MODULE_FILE via setup-hook + buildInputs = [ gdk-pixbuf ]; # To get $GDK_PIXBUF_MODULE_FILE via setup-hook runtimeDependencies = [ ncurses5 expat python zlib glibc xorg.libX11 xorg.libXext xorg.libXrender xorg.libXt xorg.libXtst xorg.libXi xorg.libXext diff --git a/pkgs/development/compilers/factor-lang/default.nix b/pkgs/development/compilers/factor-lang/default.nix index 0f9a1a94bcc..405aa8aa3ca 100644 --- a/pkgs/development/compilers/factor-lang/default.nix +++ b/pkgs/development/compilers/factor-lang/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, glib, git, rlwrap, curl, pkgconfig, perl, makeWrapper, tzdata, ncurses, - pango, cairo, gtk2, gdk_pixbuf, gtkglext, + pango, cairo, gtk2, gdk-pixbuf, gtkglext, mesa, xorg, openssl, unzip }: stdenv.mkDerivation rec { @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { ]; buildInputs = with xorg; [ git rlwrap curl pkgconfig perl makeWrapper - libX11 pango cairo gtk2 gdk_pixbuf gtkglext + libX11 pango cairo gtk2 gdk-pixbuf gtkglext mesa libXmu libXt libICE libSM openssl unzip ]; buildPhase = '' @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { # will work only on the known libraries. There does not seem # to be a generic solution here. find $(echo ${stdenv.lib.makeLibraryPath (with xorg; [ - glib libX11 pango cairo gtk2 gdk_pixbuf gtkglext + glib libX11 pango cairo gtk2 gdk-pixbuf gtkglext mesa libXmu libXt libICE libSM ])} | sed -e 's#:# #g') -name \*.so.\* > $TMPDIR/so.lst (echo $(cat $TMPDIR/so.lst | wc -l) "libs found in cache \`/etc/ld.so.cache'"; @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { cp ./factor $out/bin wrapProgram $out/bin/factor --prefix LD_LIBRARY_PATH : \ "${stdenv.lib.makeLibraryPath (with xorg; [ glib - libX11 pango cairo gtk2 gdk_pixbuf gtkglext + libX11 pango cairo gtk2 gdk-pixbuf gtkglext mesa libXmu libXt libICE libSM openssl])}" sed -ie 's#/bin/.factor-wrapped#/lib/factor/factor#g' $out/bin/factor diff --git a/pkgs/development/compilers/fpc/lazarus.nix b/pkgs/development/compilers/fpc/lazarus.nix index 74ca246deb0..3fe72e6b505 100644 --- a/pkgs/development/compilers/fpc/lazarus.nix +++ b/pkgs/development/compilers/fpc/lazarus.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper -, fpc, gtk2, glib, pango, atk, gdk_pixbuf +, fpc, gtk2, glib, pango, atk, gdk-pixbuf , libXi, xorgproto, libX11, libXext }: stdenv.mkDerivation rec { @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ fpc gtk2 glib libXi xorgproto libX11 libXext pango atk - stdenv.cc makeWrapper gdk_pixbuf + stdenv.cc makeWrapper gdk-pixbuf ]; makeFlags = [ diff --git a/pkgs/development/compilers/jetbrains-jdk/default.nix b/pkgs/development/compilers/jetbrains-jdk/default.nix index 08e3ec4f445..d407fb46b9b 100644 --- a/pkgs/development/compilers/jetbrains-jdk/default.nix +++ b/pkgs/development/compilers/jetbrains-jdk/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchurl, file, glib, libxml2, libav_0_8, ffmpeg, libxslt , libGL , xorg, alsaLib, fontconfig, freetype, pango, gtk2, cairo -, gdk_pixbuf, atk, zlib }: +, gdk-pixbuf, atk, zlib }: # TODO: Investigate building from source instead of patching binaries. # TODO: Binary patching for not just x86_64-linux but also x86_64-darwin i686-linux @@ -38,7 +38,7 @@ let drv = stdenv.mkDerivation rec { rpath = lib.makeLibraryPath ([ stdenv.cc.cc stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL - alsaLib fontconfig freetype pango gtk2 cairo gdk_pixbuf atk zlib + alsaLib fontconfig freetype pango gtk2 cairo gdk-pixbuf atk zlib (placeholder "out") ] ++ (with xorg; [ libX11 libXext libXtst libXi libXp libXt libXrender libXxf86vm diff --git a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix index ea6b9d2a9fe..e80d81dc5a0 100644 --- a/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix +++ b/pkgs/development/compilers/oraclejdk/jdk-linux-base.nix @@ -32,7 +32,7 @@ , cairo , alsaLib , atk -, gdk_pixbuf +, gdk-pixbuf , setJavaClassPath }: @@ -183,7 +183,7 @@ let result = stdenv.mkDerivation rec { * libXt is only needed on amd64 */ libraries = - [stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL xorg.libXxf86vm alsaLib fontconfig freetype pango gtk2 cairo gdk_pixbuf atk] ++ + [stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL xorg.libXxf86vm alsaLib fontconfig freetype pango gtk2 cairo gdk-pixbuf atk] ++ (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; diff --git a/pkgs/development/compilers/zulu/8.nix b/pkgs/development/compilers/zulu/8.nix index fb1798ab819..cc42ee1dd3f 100644 --- a/pkgs/development/compilers/zulu/8.nix +++ b/pkgs/development/compilers/zulu/8.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchurl, unzip, makeWrapper, setJavaClassPath , zulu, glib, libxml2, libav_0_8, ffmpeg, libxslt, libGL, alsaLib -, fontconfig, freetype, gnome2, cairo, gdk_pixbuf, atk, xorg +, fontconfig, freetype, gnome2, cairo, gdk-pixbuf, atk, xorg , swingSupport ? true }: let @@ -17,7 +17,7 @@ let libraries = [ stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL xorg.libXxf86vm alsaLib fontconfig freetype gnome2.pango - gnome2.gtk cairo gdk_pixbuf atk + gnome2.gtk cairo gdk-pixbuf atk ] ++ (lib.optionals swingSupport (with xorg; [ xorg.libX11 xorg.libXext xorg.libXtst xorg.libXi xorg.libXp xorg.libXt xorg.libXrender stdenv.cc.cc diff --git a/pkgs/development/compilers/zulu/default.nix b/pkgs/development/compilers/zulu/default.nix index 908aa29e178..a43992164d2 100644 --- a/pkgs/development/compilers/zulu/default.nix +++ b/pkgs/development/compilers/zulu/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchurl, unzip, makeWrapper, setJavaClassPath , zulu, glib, libxml2, libav_0_8, ffmpeg, libxslt, libGL, alsaLib -, fontconfig, freetype, gnome2, cairo, gdk_pixbuf, atk, xorg, zlib +, fontconfig, freetype, gnome2, cairo, gdk-pixbuf, atk, xorg, zlib , swingSupport ? true }: let @@ -17,7 +17,7 @@ let libraries = [ stdenv.cc.libc glib libxml2 libav_0_8 ffmpeg libxslt libGL xorg.libXxf86vm alsaLib fontconfig freetype gnome2.pango - gnome2.gtk cairo gdk_pixbuf atk zlib + gnome2.gtk cairo gdk-pixbuf atk zlib ] ++ (lib.optionals swingSupport (with xorg; [ xorg.libX11 xorg.libXext xorg.libXtst xorg.libXi xorg.libXp xorg.libXt xorg.libXrender stdenv.cc.cc diff --git a/pkgs/development/libraries/appstream-glib/default.nix b/pkgs/development/libraries/appstream-glib/default.nix index 45ad58819c3..c9395ea6df7 100644 --- a/pkgs/development/libraries/appstream-glib/default.nix +++ b/pkgs/development/libraries/appstream-glib/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, substituteAll, pkgconfig, gettext, gtk3, glib , gtk-doc, libarchive, gobject-introspection, libxslt, pngquant , sqlite, libsoup, attr, acl, docbook_xsl, docbook_xml_dtd_42 -, libuuid, json-glib, meson, gperf, ninja, gdk_pixbuf +, libuuid, json-glib, meson, gperf, ninja, gdk-pixbuf }: stdenv.mkDerivation rec { name = "appstream-glib-0.7.15"; @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib gettext sqlite libsoup attr acl libuuid json-glib - libarchive gperf gdk_pixbuf + libarchive gperf gdk-pixbuf ]; propagatedBuildInputs = [ gtk3 ]; diff --git a/pkgs/development/libraries/clutter-gst/default.nix b/pkgs/development/libraries/clutter-gst/default.nix index 9577bfe9e8a..3c88327c790 100644 --- a/pkgs/development/libraries/clutter-gst/default.nix +++ b/pkgs/development/libraries/clutter-gst/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl, gnome3, gdk_pixbuf }: +{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl, gnome3, gdk-pixbuf }: let pname = "clutter-gst"; @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { sha256 = "17czmpl92dzi4h3rn5rishk015yi3jwiw29zv8qan94xcmnbssgy"; }; - propagatedBuildInputs = [ clutter gtk3 glib cogl gdk_pixbuf ]; + propagatedBuildInputs = [ clutter gtk3 glib cogl gdk-pixbuf ]; nativeBuildInputs = [ pkgconfig ]; postBuild = "rm -rf $out/share/gtk-doc"; diff --git a/pkgs/development/libraries/cogl/default.nix b/pkgs/development/libraries/cogl/default.nix index 8eacbb4f855..4700d9e2418 100644 --- a/pkgs/development/libraries/cogl/default.nix +++ b/pkgs/development/libraries/cogl/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, fetchpatch, pkgconfig, libGL, glib, gdk_pixbuf, xorg, libintl +{ stdenv, fetchurl, fetchpatch, pkgconfig, libGL, glib, gdk-pixbuf, xorg, libintl , pangoSupport ? true, pango, cairo, gobject-introspection, wayland, gnome3 , mesa , gstreamerSupport ? true, gst_all_1 }: @@ -44,7 +44,7 @@ in stdenv.mkDerivation rec { ++ stdenv.lib.optionals (!stdenv.isDarwin) [ "--enable-gles1" "--enable-gles2" ]; propagatedBuildInputs = with xorg; [ - glib gdk_pixbuf gobject-introspection wayland mesa + glib gdk-pixbuf gobject-introspection wayland mesa libGL libXrandr libXfixes libXcomposite libXdamage ] ++ stdenv.lib.optionals gstreamerSupport [ gst_all_1.gstreamer diff --git a/pkgs/development/libraries/gcr/default.nix b/pkgs/development/libraries/gcr/default.nix index 218a44215c6..dcb4df1419e 100644 --- a/pkgs/development/libraries/gcr/default.nix +++ b/pkgs/development/libraries/gcr/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, intltool, gnupg, p11-kit, glib -, libgcrypt, libtasn1, dbus-glib, gtk3, pango, gdk_pixbuf, atk +, libgcrypt, libtasn1, dbus-glib, gtk3, pango, gdk-pixbuf, atk , gobject-introspection, makeWrapper, libxslt, vala, gnome3 , python2 }: @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { buildInputs = let gpg = gnupg.override { guiSupport = false; }; # prevent build cycle with pinentry_gnome in [ - gpg libgcrypt libtasn1 dbus-glib pango gdk_pixbuf atk + gpg libgcrypt libtasn1 dbus-glib pango gdk-pixbuf atk ]; propagatedBuildInputs = [ glib gtk3 p11-kit ]; diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 48c232c122b..59e7808057f 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -83,7 +83,6 @@ in stdenv.mkDerivation rec { passthru = { updateScript = gnome3.updateScript { packageName = pname; - attrPath = "gdk_pixbuf"; }; # gdk_pixbuf_moduledir variable from gdk-pixbuf-2.0.pc diff --git a/pkgs/development/libraries/geis/default.nix b/pkgs/development/libraries/geis/default.nix index e1f243f8fd3..4b9f67b7aaf 100644 --- a/pkgs/development/libraries/geis/default.nix +++ b/pkgs/development/libraries/geis/default.nix @@ -6,7 +6,7 @@ , dbus , evemu , frame -, gdk_pixbuf +, gdk-pixbuf , gobject-introspection , grail , gtk3 @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { [ pygobject3 ]; nativeBuildInputs = [ pkgconfig wrapGAppsHook python3Packages.wrapPython]; - buildInputs = [ atk dbus evemu frame gdk_pixbuf gobject-introspection grail + buildInputs = [ atk dbus evemu frame gdk-pixbuf gobject-introspection grail gtk3 libX11 libXext libXi libXtst pango python3Packages.python xorgserver ]; diff --git a/pkgs/development/libraries/geoclue/default.nix b/pkgs/development/libraries/geoclue/default.nix index 466720176a9..cc2037791e0 100644 --- a/pkgs/development/libraries/geoclue/default.nix +++ b/pkgs/development/libraries/geoclue/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitLab, intltool, meson, ninja, pkgconfig, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, json-glib, libsoup, libnotify, gdk_pixbuf +{ stdenv, fetchFromGitLab, intltool, meson, ninja, pkgconfig, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, json-glib, libsoup, libnotify, gdk-pixbuf , modemmanager, avahi, glib-networking, python3, wrapGAppsHook, gobject-introspection, vala , withDemoAgent ? false }: @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib json-glib libsoup avahi ] ++ optionals withDemoAgent [ - libnotify gdk_pixbuf + libnotify gdk-pixbuf ] ++ optionals (!stdenv.isDarwin) [ modemmanager ]; propagatedBuildInputs = [ glib glib-networking ]; diff --git a/pkgs/development/libraries/gom/default.nix b/pkgs/development/libraries/gom/default.nix index 5694c50e90a..9a947c3ff82 100644 --- a/pkgs/development/libraries/gom/default.nix +++ b/pkgs/development/libraries/gom/default.nix @@ -7,7 +7,7 @@ , glib , python3 , sqlite -, gdk_pixbuf +, gdk-pixbuf , gnome3 , gobject-introspection }: @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gdk_pixbuf + gdk-pixbuf glib sqlite python3.pkgs.pygobject3 diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index b76142c9d86..7ef9fbcc44b 100644 --- a/pkgs/development/libraries/gstreamer/good/default.nix +++ b/pkgs/development/libraries/gstreamer/good/default.nix @@ -2,7 +2,7 @@ , gst-plugins-base, orc, bzip2, gettext , libv4l, libdv, libavc1394, libiec61883 , libvpx, speex, flac, taglib, libshout -, cairo, gdk_pixbuf, aalib, libcaca +, cairo, gdk-pixbuf, aalib, libcaca , libsoup, libpulseaudio, libintl , darwin, lame, mpg123, twolame , gtkSupport ? false, gtk3 ? null @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { buildInputs = [ gst-plugins-base orc bzip2 libdv libvpx speex flac taglib - cairo gdk_pixbuf aalib libcaca + cairo gdk-pixbuf aalib libcaca libsoup libshout lame mpg123 twolame libintl libXdamage libXext diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix index 7ecb6c34b43..2b78d4daaf3 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, lib, pkgconfig, gst-plugins-base, aalib, cairo , flac, libjpeg, speex, libpng, libdv, libcaca, libvpx -, taglib, libpulseaudio, gdk_pixbuf, orc +, taglib, libpulseaudio, gdk-pixbuf, orc , glib, gstreamer, bzip2, libsoup, libshout, ncurses, libintl , # Whether to build no plugins that have external dependencies # (except the PulseAudio plugin). @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ++ lib.optional stdenv.isLinux libpulseaudio ++ lib.optionals (!minimalDeps) [ aalib libcaca cairo libdv flac libjpeg libpng speex - taglib bzip2 libvpx gdk_pixbuf orc libsoup libshout ]; + taglib bzip2 libvpx gdk-pixbuf orc libsoup libshout ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix index 8dad69eb998..886f0aefafb 100644 --- a/pkgs/development/libraries/gtk+/2.x.nix +++ b/pkgs/development/libraries/gtk+/2.x.nix @@ -1,5 +1,5 @@ { config, stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xorg -, gdk_pixbuf, xlibsWrapper, gobject-introspection +, gdk-pixbuf, xlibsWrapper, gobject-introspection , xineramaSupport ? stdenv.isLinux , cupsSupport ? config.gtk2.cups or stdenv.isLinux, cups ? null , gdktarget ? if stdenv.isDarwin then "quartz" else "x11" @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { ]; propagatedBuildInputs = with xorg; - [ glib cairo pango gdk_pixbuf atk ] + [ glib cairo pango gdk-pixbuf atk ] ++ optionals (stdenv.isLinux || stdenv.isDarwin) [ libXrandr libXrender libXcomposite libXi libXcursor ] diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index 8c3df083087..074e4e29d51 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -13,7 +13,7 @@ , glib , cairo , pango -, gdk_pixbuf +, gdk-pixbuf , atk , at-spi2-atk , gobject-introspection @@ -121,7 +121,7 @@ stdenv.mkDerivation rec { cairo expat fribidi - gdk_pixbuf + gdk-pixbuf glib gsettings-desktop-schemas libICE diff --git a/pkgs/development/libraries/gtkd/default.nix b/pkgs/development/libraries/gtkd/default.nix index 1c238a8424c..c2f05b51a65 100644 --- a/pkgs/development/libraries/gtkd/default.nix +++ b/pkgs/development/libraries/gtkd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchzip, atk, cairo, dmd, gdk_pixbuf, gnome3, gst_all_1, librsvg +{ stdenv, fetchzip, atk, cairo, dmd, gdk-pixbuf, gnome3, gst_all_1, librsvg , glib, gtk3, gtksourceview, libgda, libpeas, pango, pkgconfig, which, vte }: let @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ dmd pkgconfig which ]; propagatedBuildInputs = [ - atk cairo gdk_pixbuf glib gstreamer gst-plugins-base gtk3 gtksourceview + atk cairo gdk-pixbuf glib gstreamer gst-plugins-base gtk3 gtksourceview libgda libpeas librsvg pango vte ]; @@ -28,8 +28,8 @@ in stdenv.mkDerivation rec { --replace libcairo.so.2 ${cairo}/lib/libcairo.so.2 \ --replace libcairo.dylib ${cairo}/lib/libcairo.dylib substituteInPlace generated/gtkd/gdkpixbuf/c/functions.d \ - --replace libgdk_pixbuf-2.0.so.0 ${gdk_pixbuf}/lib/libgdk_pixbuf-2.0.so.0 \ - --replace libgdk_pixbuf-2.0.0.dylib ${gdk_pixbuf}/lib/libgdk_pixbuf-2.0.0.dylib + --replace libgdk_pixbuf-2.0.so.0 ${gdk-pixbuf}/lib/libgdk_pixbuf-2.0.so.0 \ + --replace libgdk_pixbuf-2.0.0.dylib ${gdk-pixbuf}/lib/libgdk_pixbuf-2.0.0.dylib substituteInPlace generated/gtkd/atk/c/functions.d \ --replace libatk-1.0.so.0 ${atk}/lib/libatk-1.0.so.0 \ --replace libatk-1.0.0.dylib ${atk}/lib/libatk-1.0.0.dylib diff --git a/pkgs/development/libraries/java/swt/default.nix b/pkgs/development/libraries/java/swt/default.nix index 0dc9e8bd892..c2acd234893 100644 --- a/pkgs/development/libraries/java/swt/default.nix +++ b/pkgs/development/libraries/java/swt/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, fetchurl, unzip, jdk, pkgconfig, gtk2 , libXt, libXtst, libXi, libGLU_combined, webkitgtk, libsoup, xorg -, pango, gdk_pixbuf, glib +, pango, gdk-pixbuf, glib }: let @@ -38,7 +38,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ unzip pkgconfig ]; buildInputs = [ jdk gtk2 libXt libXtst libXi libGLU_combined webkitgtk libsoup ]; - NIX_LFLAGS = (map (x: "-L${lib.getLib x}/lib") [ xorg.libX11 pango gdk_pixbuf glib ]) ++ + NIX_LFLAGS = (map (x: "-L${lib.getLib x}/lib") [ xorg.libX11 pango gdk-pixbuf glib ]) ++ [ "-lX11" "-lpango-1.0" "-lgdk_pixbuf-2.0" "-lglib-2.0" ]; buildPhase = '' diff --git a/pkgs/development/libraries/lasem/default.nix b/pkgs/development/libraries/lasem/default.nix index b5e62b960c0..5e00ce1037f 100644 --- a/pkgs/development/libraries/lasem/default.nix +++ b/pkgs/development/libraries/lasem/default.nix @@ -1,4 +1,4 @@ -{ fetchurl, stdenv, pkgconfig, intltool, gobject-introspection, glib, gdk_pixbuf +{ fetchurl, stdenv, pkgconfig, intltool, gobject-introspection, glib, gdk-pixbuf , libxml2, cairo, pango, gnome3 }: stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool gobject-introspection ]; propagatedBuildInputs = [ - glib gdk_pixbuf libxml2 cairo pango + glib gdk-pixbuf libxml2 cairo pango ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/libcef/default.nix b/pkgs/development/libraries/libcef/default.nix index 9e7d608b512..ecba18cd58c 100644 --- a/pkgs/development/libraries/libcef/default.nix +++ b/pkgs/development/libraries/libcef/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cmake, alsaLib, atk, cairo, cups, dbus, expat, fontconfig -, GConf, gdk_pixbuf, glib, gtk2, libX11, libxcb, libXcomposite, libXcursor +, GConf, gdk-pixbuf, glib, gtk2, libX11, libxcb, libXcomposite, libXcursor , libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXScrnSaver , libXtst, nspr, nss, pango, libpulseaudio, systemd }: let libPath = stdenv.lib.makeLibraryPath [ - alsaLib atk cairo cups dbus expat fontconfig GConf gdk_pixbuf glib gtk2 + alsaLib atk cairo cups dbus expat fontconfig GConf gdk-pixbuf glib gtk2 libX11 libxcb libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXScrnSaver libXtst nspr nss pango libpulseaudio systemd diff --git a/pkgs/development/libraries/libgpod/default.nix b/pkgs/development/libraries/libgpod/default.nix index b77690bd159..d561ebcd7af 100644 --- a/pkgs/development/libraries/libgpod/default.nix +++ b/pkgs/development/libraries/libgpod/default.nix @@ -1,5 +1,5 @@ {stdenv, lib, fetchurl, gettext, perlPackages, intltool, pkgconfig, glib, - libxml2, sqlite, zlib, sg3_utils, gdk_pixbuf, taglib, + libxml2, sqlite, zlib, sg3_utils, gdk-pixbuf, taglib, libimobiledevice, pythonPackages, mutagen, monoSupport ? false, mono, gtk-sharp-2_0 }: @@ -23,7 +23,7 @@ in stdenv.mkDerivation rec { dontStrip = true; propagatedBuildInputs = [ glib libxml2 sqlite zlib sg3_utils - gdk_pixbuf taglib libimobiledevice python pygobject2 mutagen ]; + gdk-pixbuf taglib libimobiledevice python pygobject2 mutagen ]; nativeBuildInputs = [ gettext intltool pkgconfig ] ++ (with perlPackages; [ perl XMLParser ]) diff --git a/pkgs/development/libraries/libgsf/default.nix b/pkgs/development/libraries/libgsf/default.nix index f2d31cf1676..89a72bba872 100644 --- a/pkgs/development/libraries/libgsf/default.nix +++ b/pkgs/development/libraries/libgsf/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, intltool, gettext, glib, libxml2, zlib, bzip2 -, python, perl, gdk_pixbuf, libiconv, libintl, gnome3 }: +, python, perl, gdk-pixbuf, libiconv, libintl, gnome3 }: stdenv.mkDerivation rec { pname = "libgsf"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { buildInputs = [ gettext bzip2 zlib python ]; checkInputs = [ perl ]; - propagatedBuildInputs = [ libxml2 glib gdk_pixbuf libiconv ]; + propagatedBuildInputs = [ libxml2 glib gdk-pixbuf libiconv ]; outputs = [ "out" "dev" ]; diff --git a/pkgs/development/libraries/libmediaart/default.nix b/pkgs/development/libraries/libmediaart/default.nix index 64d2cc7577c..569c567e928 100644 --- a/pkgs/development/libraries/libmediaart/default.nix +++ b/pkgs/development/libraries/libmediaart/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, meson, ninja, pkgconfig, vala, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, gdk_pixbuf, gobject-introspection, gnome3 }: +{ stdenv, fetchurl, meson, ninja, pkgconfig, vala, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, gdk-pixbuf, gobject-introspection, gnome3 }: stdenv.mkDerivation rec { pname = "libmediaart"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ meson ninja pkgconfig vala gtk-doc docbook_xsl docbook_xml_dtd_412 gobject-introspection ]; - buildInputs = [ glib gdk_pixbuf ]; + buildInputs = [ glib gdk-pixbuf ]; # FIXME: Turn on again when https://github.com/NixOS/nixpkgs/issues/53701 # is fixed on master. diff --git a/pkgs/development/libraries/libnotify/default.nix b/pkgs/development/libraries/libnotify/default.nix index ddadb3cd97b..be1daa0505a 100644 --- a/pkgs/development/libraries/libnotify/default.nix +++ b/pkgs/development/libraries/libnotify/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, meson, ninja, pkgconfig, fetchpatch -, glib, gdk_pixbuf, gobject-introspection, gnome3 }: +, glib, gdk-pixbuf, gobject-introspection, gnome3 }: stdenv.mkDerivation rec { pname = "libnotify"; @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ meson ninja pkgconfig gobject-introspection ]; - buildInputs = [ glib gdk_pixbuf ]; + buildInputs = [ glib gdk-pixbuf ]; passthru = { updateScript = gnome3.updateScript { diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index 0cbd60409b4..a911524a9ac 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, pango, cairo, libxml2, libgsf +{ lib, stdenv, fetchurl, pkgconfig, glib, gdk-pixbuf, pango, cairo, libxml2, libgsf , bzip2, libcroco, libintl, darwin, rustc, cargo, gnome3 , withGTK ? false, gtk3 ? null , vala, gobject-introspection }: @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ libxml2 libgsf bzip2 libcroco pango libintl ]; - propagatedBuildInputs = [ glib gdk_pixbuf cairo ] ++ lib.optional withGTK gtk3; + propagatedBuildInputs = [ glib gdk-pixbuf cairo ] ++ lib.optional withGTK gtk3; nativeBuildInputs = [ pkgconfig rustc cargo vala gobject-introspection ] ++ lib.optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { -i gdk-pixbuf-loader/Makefile # Fix thumbnailer path - sed -e "s#@bindir@\(/gdk-pixbuf-thumbnailer\)#${gdk_pixbuf}/bin\1#g" \ + sed -e "s#@bindir@\(/gdk-pixbuf-thumbnailer\)#${gdk-pixbuf}/bin\1#g" \ -i gdk-pixbuf-loader/librsvg.thumbnailer.in ''; @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { # Merge gdkpixbuf and librsvg loaders postInstall = '' mv $GDK_PIXBUF/loaders.cache $GDK_PIXBUF/loaders.cache.tmp - cat ${gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache + cat ${gdk-pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache rm $GDK_PIXBUF/loaders.cache.tmp ''; diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index afd2a01e722..de6457db98b 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -6,7 +6,7 @@ , buildMultimedia ? stdenv.isLinux, alsaLib, gstreamer, gst-plugins-base , buildWebkit ? (stdenv.isLinux || stdenv.isDarwin) , libGLSupported ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms -, flashplayerFix ? false, gdk_pixbuf +, flashplayerFix ? false, gdk-pixbuf , gtkStyle ? stdenv.hostPlatform == stdenv.buildPlatform, gtk2 , gnomeStyle ? false, libgnomeui, GConf, gnome_vfs , developerBuild ? false @@ -188,7 +188,7 @@ stdenv.mkDerivation rec { [ cups # Qt dlopen's libcups instead of linking to it postgresql sqlite libjpeg libmng libtiff icu ] ++ lib.optionals (mysql != null) [ mysql.connector-c ] - ++ lib.optionals gtkStyle [ gtk2 gdk_pixbuf ] + ++ lib.optionals gtkStyle [ gtk2 gdk-pixbuf ] ++ lib.optionals stdenv.isDarwin [ ApplicationServices OpenGL Cocoa AGL libcxx libobjc ]; nativeBuildInputs = [ perl pkgconfig which ]; diff --git a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix index 22215b8da0d..cd9d9f2d150 100644 --- a/pkgs/development/ocaml-modules/ocaml-cairo/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-cairo/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, automake, ocaml, autoconf, gnum4, pkgconfig, freetype, lablgtk, unzip, cairo, findlib, gdk_pixbuf, gtk2, pango }: +{stdenv, fetchurl, automake, ocaml, autoconf, gnum4, pkgconfig, freetype, lablgtk, unzip, cairo, findlib, gdk-pixbuf, gtk2, pango }: let pname = "ocaml-cairo"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ ocaml automake gnum4 autoconf unzip - findlib freetype lablgtk cairo gdk_pixbuf gtk2 pango ]; + findlib freetype lablgtk cairo gdk-pixbuf gtk2 pango ]; createFindlibDestdir = true; diff --git a/pkgs/development/python-modules/cairocffi/0_9.nix b/pkgs/development/python-modules/cairocffi/0_9.nix index 19a469dad26..bd7bde42901 100644 --- a/pkgs/development/python-modules/cairocffi/0_9.nix +++ b/pkgs/development/python-modules/cairocffi/0_9.nix @@ -1,4 +1,4 @@ -# FIXME: make gdk_pixbuf dependency optional +# FIXME: make gdk-pixbuf dependency optional { stdenv , buildPythonPackage , pythonOlder @@ -15,7 +15,7 @@ , withXcffib ? false, xcffib , python , glib -, gdk_pixbuf +, gdk-pixbuf }@args: import ./generic.nix ({ diff --git a/pkgs/development/python-modules/cairocffi/default.nix b/pkgs/development/python-modules/cairocffi/default.nix index 528c845c07e..f91b33d2010 100644 --- a/pkgs/development/python-modules/cairocffi/default.nix +++ b/pkgs/development/python-modules/cairocffi/default.nix @@ -1,4 +1,4 @@ -# FIXME: make gdk_pixbuf dependency optional +# FIXME: make gdk-pixbuf dependency optional { stdenv , buildPythonPackage , pythonOlder @@ -15,7 +15,7 @@ , withXcffib ? false, xcffib , python , glib -, gdk_pixbuf +, gdk-pixbuf }@args: import ./generic.nix ({ diff --git a/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch b/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch index 862f7bd4bf7..a1018e6eb33 100644 --- a/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch +++ b/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch @@ -3,7 +3,7 @@ Author: Alexander V. Nikolaev Date: Sat Feb 6 08:09:06 2016 +0200 Patch dlopen() to allow direct paths to all required libs - + This patch is NixOS specific diff --git a/cairocffi/__init__.py b/cairocffi/__init__.py @@ -13,15 +13,15 @@ index 718aa7f..1a1dcff 100644 @@ -27,20 +27,22 @@ VERSION = '0.7.2' version = '1.10.0' version_info = (1, 10, 0) - + +# Use hardcoded soname, because ctypes.util use gcc/objdump which shouldn't be required for runtime +_LIBS = { + 'cairo': '@cairo@/lib/libcairo@ext@', + 'glib-2.0': '@glib@/lib/libglib-2.0@ext@', + 'gobject-2.0': '@glib@/lib/libgobject-2.0@ext@', -+ 'gdk_pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', ++ 'gdk-pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', +} - + -def dlopen(ffi, *names): +def dlopen(ffi, name, *names): """Try various names for the same library, for different platforms.""" @@ -42,6 +42,6 @@ index 718aa7f..1a1dcff 100644 + if lib: + return lib + raise OSError("dlopen() failed to load a library: %s as %s" % (name, path)) - - + + cairo = dlopen(ffi, 'cairo', 'cairo-2') diff --git a/pkgs/development/python-modules/cairocffi/dlopen-paths.patch b/pkgs/development/python-modules/cairocffi/dlopen-paths.patch index d42b8bcce48..9fd2832b323 100644 --- a/pkgs/development/python-modules/cairocffi/dlopen-paths.patch +++ b/pkgs/development/python-modules/cairocffi/dlopen-paths.patch @@ -3,7 +3,7 @@ Author: Alexander V. Nikolaev Date: Sat Feb 6 08:09:06 2016 +0200 Patch dlopen() to allow direct paths to all required libs - + This patch is NixOS specific diff --git a/cairocffi/__init__.py b/cairocffi/__init__.py @@ -13,15 +13,15 @@ index 6061973..3538a58 100644 @@ -21,19 +21,22 @@ VERSION = __version__ = (Path(__file__).parent / 'VERSION').read_text().strip() version = '1.16.0' version_info = (1, 16, 0) - + +# Use hardcoded soname, because ctypes.util use gcc/objdump which shouldn't be required for runtime +_LIBS = { + 'cairo': '@cairo@/lib/libcairo@ext@', + 'glib-2.0': '@glib@/lib/libglib-2.0@ext@', + 'gobject-2.0': '@glib@/lib/libgobject-2.0@ext@', -+ 'gdk_pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', ++ 'gdk-pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', +} - + -def dlopen(ffi, *names): +def dlopen(ffi, name, *names): """Try various names for the same library, for different platforms.""" @@ -41,6 +41,6 @@ index 6061973..3538a58 100644 + if lib: + return lib + raise OSError("dlopen() failed to load a library: %s as %s" % (name, path)) - - + + cairo = dlopen(ffi, 'cairo', 'cairo-2', 'cairo-gobject-2', 'cairo.so.2') diff --git a/pkgs/development/python-modules/cairocffi/generic.nix b/pkgs/development/python-modules/cairocffi/generic.nix index 4fa5cc466c3..cf1618a865b 100644 --- a/pkgs/development/python-modules/cairocffi/generic.nix +++ b/pkgs/development/python-modules/cairocffi/generic.nix @@ -31,13 +31,13 @@ buildPythonPackage rec { ''; patches = [ - # OSError: dlopen() failed to load a library: gdk_pixbuf-2.0 / gdk_pixbuf-2.0-0 + # OSError: dlopen() failed to load a library: gdk-pixbuf-2.0 / gdk-pixbuf-2.0-0 (substituteAll { src = dlopen_patch; ext = stdenv.hostPlatform.extensions.sharedLibrary; cairo = cairo.out; glib = glib.out; - gdk_pixbuf = gdk_pixbuf.out; + gdk_pixbuf = gdk-pixbuf.out; }) ./fix_test_scaled_font.patch ]; diff --git a/pkgs/development/python-modules/pyglet/default.nix b/pkgs/development/python-modules/pyglet/default.nix index 1b00e1264ff..b3093390e3b 100644 --- a/pkgs/development/python-modules/pyglet/default.nix +++ b/pkgs/development/python-modules/pyglet/default.nix @@ -7,7 +7,7 @@ , pytest , glibc , gtk2-x11 -, gdk_pixbuf +, gdk-pixbuf }: buildPythonPackage rec { @@ -42,7 +42,7 @@ buildPythonPackage rec { elif name == 'gdk-x11-2.0': path = '${gtk2-x11}/lib/libgdk-x11-2.0${ext}' elif name == 'gdk_pixbuf-2.0': - path = '${gdk_pixbuf}/lib/libgdk_pixbuf-2.0${ext}' + path = '${gdk-pixbuf}/lib/libgdk_pixbuf-2.0${ext}' if path is not None: return ctypes.cdll.LoadLibrary(path) raise Exception("Could not load library {}".format(names)) diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index eb136d4c243..4e9bd0538a9 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -22,7 +22,7 @@ , pkgconfig , ncurses, xapian_1_2_22, gpgme, utillinux, fetchpatch, tzdata, icu, libffi , cmake, libssh2, openssl, mysql, darwin, git, perl, pcre, gecode_3, curl , msgpack, qt59, libsodium, snappy, libossp_uuid, lxc, libpcap, xorg, gtk2, buildRubyGem -, cairo, re2, rake, gobject-introspection, gdk_pixbuf, zeromq, czmq, graphicsmagick, libcxx +, cairo, re2, rake, gobject-introspection, gdk-pixbuf, zeromq, czmq, graphicsmagick, libcxx , file, libvirt, glib, vips, taglib, libopus, linux-pam, libidn, protobuf, fribidi, harfbuzz , bison, flex, pango, python3, patchelf , libselinux ? null, libsepol ? null @@ -159,7 +159,7 @@ in gdk_pixbuf2 = attrs: { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ rake gdk_pixbuf ]; + buildInputs = [ rake gdk-pixbuf ]; }; gpgme = attrs: { @@ -255,7 +255,7 @@ in pkgconfig cairo pango - gdk_pixbuf + gdk-pixbuf libxml2 python3 ]; diff --git a/pkgs/development/tools/node-webkit/nw12.nix b/pkgs/development/tools/node-webkit/nw12.nix index 099e31b8d62..57beec8f171 100644 --- a/pkgs/development/tools/node-webkit/nw12.nix +++ b/pkgs/development/tools/node-webkit/nw12.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, makeWrapper , xorg, alsaLib, dbus, glib, gtk2, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, nss, nspr, gconf, expat, systemd, libcap +, gdk-pixbuf, cairo, nss, nspr, gconf, expat, systemd, libcap , libnotify}: let bits = if stdenv.hostPlatform.system == "x86_64-linux" then "x64" @@ -9,7 +9,7 @@ let nwEnv = buildEnv { name = "nwjs-env"; paths = [ - xorg.libX11 xorg.libXrender glib gtk2 atk pango cairo gdk_pixbuf + xorg.libX11 xorg.libXrender glib gtk2 atk pango cairo gdk-pixbuf freetype fontconfig xorg.libXcomposite alsaLib xorg.libXdamage xorg.libXext xorg.libXfixes nss nspr gconf expat dbus xorg.libXtst xorg.libXi xorg.libXcursor xorg.libXrandr libcap diff --git a/pkgs/development/tools/nwjs/default.nix b/pkgs/development/tools/nwjs/default.nix index 211934080c8..96516bfda48 100644 --- a/pkgs/development/tools/nwjs/default.nix +++ b/pkgs/development/tools/nwjs/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, buildEnv, makeWrapper , xorg, alsaLib, dbus, glib, gtk3, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, nss, nspr, gconf, expat, systemd, libcap +, gdk-pixbuf, cairo, nss, nspr, gconf, expat, systemd, libcap , libnotify , ffmpeg, libxcb, cups , sqlite, udev @@ -15,7 +15,7 @@ let nwEnv = buildEnv { name = "nwjs-env"; paths = [ - xorg.libX11 xorg.libXrender glib /*gtk2*/ gtk3 atk pango cairo gdk_pixbuf + xorg.libX11 xorg.libXrender glib /*gtk2*/ gtk3 atk pango cairo gdk-pixbuf freetype fontconfig xorg.libXcomposite alsaLib xorg.libXdamage xorg.libXext xorg.libXfixes nss nspr gconf expat dbus xorg.libXtst xorg.libXi xorg.libXcursor xorg.libXrandr diff --git a/pkgs/development/tools/react-native-debugger/default.nix b/pkgs/development/tools/react-native-debugger/default.nix index 97e92c3472c..939febae693 100644 --- a/pkgs/development/tools/react-native-debugger/default.nix +++ b/pkgs/development/tools/react-native-debugger/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, cairo, xorg, gdk_pixbuf, fontconfig, pango, gnome2, atk, gtk2, glib +{ stdenv, fetchurl, unzip, cairo, xorg, gdk-pixbuf, fontconfig, pango, gnome2, atk, gtk2, glib , freetype, dbus, nss, nspr, alsaLib, cups, expat, udev, makeDesktopItem }: @@ -6,7 +6,7 @@ let rpath = stdenv.lib.makeLibraryPath [ cairo stdenv.cc.cc - gdk_pixbuf + gdk-pixbuf fontconfig pango atk diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix index 50aad7a013a..178bfc2dc17 100644 --- a/pkgs/development/tools/selenium/chromedriver/default.nix +++ b/pkgs/development/tools/selenium/chromedriver/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cairo, fontconfig, freetype, gdk_pixbuf, glib +{ stdenv, fetchurl, cairo, fontconfig, freetype, gdk-pixbuf, glib , glibc, gtk2, libX11, makeWrapper, nspr, nss, pango, unzip, gconf , libXi, libXrender, libXext }: @@ -21,7 +21,7 @@ let libs = stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib cairo fontconfig freetype - gdk_pixbuf glib gtk2 gconf + gdk-pixbuf glib gtk2 gconf libX11 nspr nss pango libXrender gconf libXext libXi ]; diff --git a/pkgs/development/tools/thrust/default.nix b/pkgs/development/tools/thrust/default.nix index 91a01edc23a..f07451ae840 100644 --- a/pkgs/development/tools/thrust/default.nix +++ b/pkgs/development/tools/thrust/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, buildEnv, makeWrapper, glib, alsaLib , dbus, gtk2, atk -, pango, freetype, fontconfig, gdk_pixbuf , cairo, cups, expat, nspr, gconf, nss +, pango, freetype, fontconfig, gdk-pixbuf , cairo, cups, expat, nspr, gconf, nss , xorg, libcap, unzip }: @@ -7,7 +7,7 @@ let thrustEnv = buildEnv { name = "env-thrust"; paths = [ - stdenv.cc.cc glib dbus gtk2 atk pango freetype fontconfig gdk_pixbuf + stdenv.cc.cc glib dbus gtk2 atk pango freetype fontconfig gdk-pixbuf cairo cups expat alsaLib nspr gconf nss xorg.libXrender xorg.libX11 xorg.libXext xorg.libXdamage xorg.libXtst xorg.libXcomposite xorg.libXi xorg.libXfixes xorg.libXrandr xorg.libXcursor libcap diff --git a/pkgs/development/tools/unity3d/default.nix b/pkgs/development/tools/unity3d/default.nix index 032865be7f5..54ace72c5fb 100644 --- a/pkgs/development/tools/unity3d/default.nix +++ b/pkgs/development/tools/unity3d/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, makeWrapper, file, getopt -, gtk2, gtk3, gdk_pixbuf, glib, libGL, libGLU, nss, nspr, udev, tbb +, gtk2, gtk3, gdk-pixbuf, glib, libGL, libGLU, nss, nspr, udev, tbb , alsaLib, GConf, cups, libcap, fontconfig, freetype, pango , cairo, dbus, expat, zlib, libpng12, nodejs, gnutar, gcc, gcc_32bit , libX11, libXcursor, libXdamage, libXfixes, libXrender, libXi @@ -9,12 +9,12 @@ let libPath64 = lib.makeLibraryPath [ - gcc.cc gtk2 gdk_pixbuf glib libGL libGLU nss nspr + gcc.cc gtk2 gdk-pixbuf glib libGL libGLU nss nspr alsaLib GConf cups libcap fontconfig freetype pango cairo dbus expat zlib libpng12 udev tbb libX11 libXcursor libXdamage libXfixes libXrender libXi libXcomposite libXext libXrandr libXtst libSM libICE libxcb - libpqxx gtk3 + libpqxx gtk3 ]; libPath32 = lib.makeLibraryPath [ gcc_32bit.cc ]; binPath = lib.makeBinPath [ nodejs gnutar ]; @@ -82,7 +82,7 @@ in stdenv.mkDerivation rec { } upm_linux=$unitydir/Data/Resources/PackageManager/Server/UnityPackageManager - + orig_size=$(stat --printf=%s $upm_linux) @@ -102,7 +102,7 @@ in stdenv.mkDerivation rec { # ^-- grep points here # # var_* are as described above - # shift_by seems to be safe so long as all patchelf adjustments occur + # shift_by seems to be safe so long as all patchelf adjustments occur # before any locations pointed to by hardcoded offsets var_skip=20 diff --git a/pkgs/development/web/insomnia/default.nix b/pkgs/development/web/insomnia/default.nix index 264f77a7fd9..26cec8f3730 100644 --- a/pkgs/development/web/insomnia/default.nix +++ b/pkgs/development/web/insomnia/default.nix @@ -1,6 +1,6 @@ { stdenv, makeWrapper, fetchurl, dpkg , alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype -, gdk_pixbuf, glib, gnome2, nspr, nss, gtk3, gtk2, at-spi2-atk +, gdk-pixbuf, glib, gnome2, nspr, nss, gtk3, gtk2, at-spi2-atk , gsettings-desktop-schemas, gobject-introspection, wrapGAppsHook , libX11, libXScrnSaver, libXcomposite, libXcursor, libXdamage, libXext , libXfixes, libXi, libXrandr, libXrender, libXtst, libxcb, nghttp2 @@ -25,13 +25,13 @@ in stdenv.mkDerivation rec { sha256 = "0km7anw5xpcfr6j7pwqhv26pk7nxv1jywqlz0lpvgj6w85aafcm3"; }; - nativeBuildInputs = [ + nativeBuildInputs = [ autoPatchelfHook dpkg makeWrapper gobject-introspection wrapGAppsHook ]; - + buildInputs = [ alsaLib at-spi2-atk @@ -42,7 +42,7 @@ in stdenv.mkDerivation rec { expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gnome2.GConf gnome2.pango diff --git a/pkgs/development/web/postman/default.nix b/pkgs/development/web/postman/default.nix index a09a84e4bf7..58b0f0e876f 100644 --- a/pkgs/development/web/postman/default.nix +++ b/pkgs/development/web/postman/default.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { pkgs.cups pkgs.dbus.daemon.lib pkgs.expat - pkgs.gdk_pixbuf + pkgs.gdk-pixbuf pkgs.glib pkgs.gtk2-x11 pkgs.freetype diff --git a/pkgs/games/arena/default.nix b/pkgs/games/arena/default.nix index 460fc049c7b..a2a5f7b723a 100644 --- a/pkgs/games/arena/default.nix +++ b/pkgs/games/arena/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gtk2-x11, glib, pango, cairo, atk, gdk_pixbuf, libX11 }: +{ stdenv, fetchurl, gtk2-x11, glib, pango, cairo, atk, gdk-pixbuf, libX11 }: # Arena is free software in the sense of "free beer" but not as in "free # speech". We can install it as we please, but we cannot re-distribute it in @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { }; # stdenv.cc.cc.lib is in that list to pick up libstdc++.so. Is there a better way? - buildInputs = [gtk2-x11 glib pango cairo atk gdk_pixbuf libX11 stdenv.cc.cc.lib]; + buildInputs = [gtk2-x11 glib pango cairo atk gdk-pixbuf libX11 stdenv.cc.cc.lib]; unpackPhase = '' # This is is a tar bomb, i.e. it extract a dozen files and directories to diff --git a/pkgs/games/planetaryannihilation/default.nix b/pkgs/games/planetaryannihilation/default.nix index 391ced36207..74e3b897a03 100644 --- a/pkgs/games/planetaryannihilation/default.nix +++ b/pkgs/games/planetaryannihilation/default.nix @@ -1,5 +1,5 @@ { stdenv, config, fetchurl, patchelf, makeWrapper, gtk2, glib, udev, alsaLib, atk -, nspr, fontconfig, cairo, pango, nss, freetype, gnome2, gdk_pixbuf, curl, systemd, xorg }: +, nspr, fontconfig, cairo, pango, nss, freetype, gnome2, gdk-pixbuf, curl, systemd, xorg }: # TODO: use dynamic attributes once Nix 1.7 is out assert ((config.planetary_annihilation or null).url or null) != null; @@ -23,7 +23,7 @@ stdenv.mkDerivation { }; nativeBuildInputs = [ patchelf makeWrapper ]; - + installPhase = '' mkdir -p $out/{bin,lib} @@ -34,7 +34,7 @@ stdenv.mkDerivation { ln -s ${systemd}/lib/libudev.so.1 $out/lib/libudev.so.0 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/PA" - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib xorg.libXdamage xorg.libXfixes gtk2 glib stdenv.glibc.out "$out" xorg.libXext pango udev xorg.libX11 xorg.libXcomposite alsaLib atk nspr fontconfig cairo pango nss freetype gnome2.GConf gdk_pixbuf xorg.libXrender ]}:{stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" "$out/host/CoherentUI_Host" + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib xorg.libXdamage xorg.libXfixes gtk2 glib stdenv.glibc.out "$out" xorg.libXext pango udev xorg.libX11 xorg.libXcomposite alsaLib atk nspr fontconfig cairo pango nss freetype gnome2.GConf gdk-pixbuf xorg.libXrender ]}:{stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" "$out/host/CoherentUI_Host" wrapProgram $out/PA --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib stdenv.glibc.out xorg.libX11 xorg.libXcursor gtk2 glib curl "$out" ]}:${stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index 3cf2d896645..9e6bfc7bab8 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -90,7 +90,7 @@ in buildFHSUserEnv rec { gtk2 bzip2 zlib - gdk_pixbuf + gdk-pixbuf # Without these it silently fails xorg.libXinerama diff --git a/pkgs/misc/emulators/cdemu/analyzer.nix b/pkgs/misc/emulators/cdemu/analyzer.nix index a57fda56ddd..e52cf7efc6b 100644 --- a/pkgs/misc/emulators/cdemu/analyzer.nix +++ b/pkgs/misc/emulators/cdemu/analyzer.nix @@ -1,5 +1,5 @@ { callPackage, makeWrapper, gobject-introspection, cmake -, python3Packages, gtk3, glib, libxml2, gnuplot, gnome3, gdk_pixbuf, librsvg, intltool, libmirage }: +, python3Packages, gtk3, glib, libxml2, gnuplot, gnome3, gdk-pixbuf, librsvg, intltool, libmirage }: let pkg = import ./base.nix { version = "3.2.2"; pkgName = "image-analyzer"; @@ -7,7 +7,7 @@ let pkg = import ./base.nix { }; in callPackage pkg { buildInputs = [ glib gtk3 libxml2 gnuplot libmirage makeWrapper - gnome3.adwaita-icon-theme gdk_pixbuf librsvg intltool + gnome3.adwaita-icon-theme gdk-pixbuf librsvg intltool python3Packages.python python3Packages.pygobject3 python3Packages.matplotlib ]; drvParams = { nativeBuildInputs = [ gobject-introspection cmake ]; diff --git a/pkgs/misc/emulators/cdemu/gui.nix b/pkgs/misc/emulators/cdemu/gui.nix index 331ad0ded24..e06853b8f73 100644 --- a/pkgs/misc/emulators/cdemu/gui.nix +++ b/pkgs/misc/emulators/cdemu/gui.nix @@ -1,5 +1,5 @@ { callPackage, makeWrapper, gobject-introspection, cmake -, python3Packages, gtk3, glib, libnotify, intltool, gnome3, gdk_pixbuf, librsvg }: +, python3Packages, gtk3, glib, libnotify, intltool, gnome3, gdk-pixbuf, librsvg }: let pkg = import ./base.nix { version = "3.2.1"; @@ -9,7 +9,7 @@ let inherit (python3Packages) python pygobject3; in callPackage pkg { buildInputs = [ python pygobject3 gtk3 glib libnotify intltool makeWrapper - gnome3.adwaita-icon-theme gdk_pixbuf librsvg ]; + gnome3.adwaita-icon-theme gdk-pixbuf librsvg ]; drvParams = { nativeBuildInputs = [ gobject-introspection cmake ]; postFixup = '' diff --git a/pkgs/misc/emulators/epsxe/default.nix b/pkgs/misc/emulators/epsxe/default.nix index 5fee8b4b83d..edf4fe017a2 100644 --- a/pkgs/misc/emulators/epsxe/default.nix +++ b/pkgs/misc/emulators/epsxe/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, alsaLib, curl, gdk_pixbuf, glib, gtk3, libGLU_combined, +{ stdenv, fetchurl, alsaLib, curl, gdk-pixbuf, glib, gtk3, libGLU_combined, libX11, openssl, ncurses5, SDL, SDL_ttf, unzip, zlib, wrapGAppsHook }: with stdenv.lib; @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ alsaLib curl - gdk_pixbuf + gdk-pixbuf glib gtk3 libX11 diff --git a/pkgs/misc/emulators/kega-fusion/default.nix b/pkgs/misc/emulators/kega-fusion/default.nix index 01785bd9a27..32d3013d842 100644 --- a/pkgs/misc/emulators/kega-fusion/default.nix +++ b/pkgs/misc/emulators/kega-fusion/default.nix @@ -1,7 +1,7 @@ -{ stdenv, lib, writeText, fetchurl, upx, libGLU, glib, gtk2, alsaLib, libSM, libX11, gdk_pixbuf, pango, libXinerama, mpg123, runtimeShell }: +{ stdenv, lib, writeText, fetchurl, upx, libGLU, glib, gtk2, alsaLib, libSM, libX11, gdk-pixbuf, pango, libXinerama, mpg123, runtimeShell }: let - libPath = lib.makeLibraryPath [ stdenv.cc.cc libGLU glib gtk2 alsaLib libSM libX11 gdk_pixbuf pango libXinerama ]; + libPath = lib.makeLibraryPath [ stdenv.cc.cc libGLU glib gtk2 alsaLib libSM libX11 gdk-pixbuf pango libXinerama ]; in stdenv.mkDerivation rec { name = "kega-fusion-${version}"; diff --git a/pkgs/misc/emulators/nestopia/default.nix b/pkgs/misc/emulators/nestopia/default.nix index 9eb353ede58..5bc7bcec9d4 100644 --- a/pkgs/misc/emulators/nestopia/default.nix +++ b/pkgs/misc/emulators/nestopia/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pkgconfig, SDL2, alsaLib, gtk3 , makeWrapper, libGLU_combined, libarchive, libao, unzip, xdg_utils -, epoxy, gdk_pixbuf, gnome3, wrapGAppsHook +, epoxy, gdk-pixbuf, gnome3, wrapGAppsHook }: stdenv.mkDerivation rec { @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { alsaLib epoxy gtk3 - gdk_pixbuf + gdk-pixbuf libGLU_combined libarchive libao diff --git a/pkgs/misc/solfege/default.nix b/pkgs/misc/solfege/default.nix index 4fef8d08043..7ca9843e2e3 100644 --- a/pkgs/misc/solfege/default.nix +++ b/pkgs/misc/solfege/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, pythonPackages, gettext, texinfo -, ghostscript, librsvg, gdk_pixbuf, txt2man, timidity, mpg123 +, ghostscript, librsvg, gdk-pixbuf, txt2man, timidity, mpg123 , alsaUtils, vorbis-tools, csound, lilypond , makeWrapper }: @@ -16,7 +16,7 @@ in stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ python pygtk gettext texinfo - ghostscript librsvg gdk_pixbuf txt2man makeWrapper + ghostscript librsvg gdk-pixbuf txt2man makeWrapper ]; preBuild = '' diff --git a/pkgs/misc/themes/adapta/default.nix b/pkgs/misc/themes/adapta/default.nix index cb281e68dfd..6d2a16cbfd2 100644 --- a/pkgs/misc/themes/adapta/default.nix +++ b/pkgs/misc/themes/adapta/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, parallel, sassc, inkscape, libxml2, glib, gdk_pixbuf, librsvg, gtk-engine-murrine, gnome3 }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, parallel, sassc, inkscape, libxml2, glib, gdk-pixbuf, librsvg, gtk-engine-murrine, gnome3 }: stdenv.mkDerivation rec { name = "adapta-gtk-theme-${version}"; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gdk_pixbuf + gdk-pixbuf librsvg ]; diff --git a/pkgs/misc/themes/equilux-theme/default.nix b/pkgs/misc/themes/equilux-theme/default.nix index 66e88630342..bc4b57e8b58 100644 --- a/pkgs/misc/themes/equilux-theme/default.nix +++ b/pkgs/misc/themes/equilux-theme/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, gnome3, glib, libxml2, gtk-engine-murrine, gdk_pixbuf, librsvg, bc }: +{ stdenv, fetchFromGitHub, gnome3, glib, libxml2, gtk-engine-murrine, gdk-pixbuf, librsvg, bc }: stdenv.mkDerivation rec { name = "equilux-theme-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ glib libxml2 bc ]; - buildInputs = [ gnome3.gnome-themes-extra gdk_pixbuf librsvg ]; + buildInputs = [ gnome3.gnome-themes-extra gdk-pixbuf librsvg ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/misc/themes/numix-solarized/default.nix b/pkgs/misc/themes/numix-solarized/default.nix index 3c81e4308ca..97a018f929e 100644 --- a/pkgs/misc/themes/numix-solarized/default.nix +++ b/pkgs/misc/themes/numix-solarized/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, python3, sass, glib, gdk_pixbuf, libxml2, +{ stdenv, fetchFromGitHub, python3, sass, glib, gdk-pixbuf, libxml2, inkscape, optipng, gtk-engine-murrine }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "0l4xvsiyg15kp6xwpvm3jckxyhr1lxd678lkhrcyf40n7rd4xinl"; }; - nativeBuildInputs = [ python3 sass glib gdk_pixbuf libxml2 inkscape optipng ]; + nativeBuildInputs = [ python3 sass glib gdk-pixbuf libxml2 inkscape optipng ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/misc/themes/numix/default.nix b/pkgs/misc/themes/numix/default.nix index 4fb41248109..eb4b8c76301 100644 --- a/pkgs/misc/themes/numix/default.nix +++ b/pkgs/misc/themes/numix/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk_pixbuf +{ stdenv, fetchFromGitHub, sass, glib, libxml2, gdk-pixbuf , gtk-engine-murrine }: @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { sha256 = "12mw0kr0kkvg395qlbsvkvaqccr90cmxw5rrsl236zh43kj8grb7"; }; - nativeBuildInputs = [ sass glib libxml2 gdk_pixbuf ]; + nativeBuildInputs = [ sass glib libxml2 gdk-pixbuf ]; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/os-specific/linux/usermount/default.nix b/pkgs/os-specific/linux/usermount/default.nix index 94e5d998cd0..5cb49485c5b 100644 --- a/pkgs/os-specific/linux/usermount/default.nix +++ b/pkgs/os-specific/linux/usermount/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchgit, pkgconfig, dbus, libnotify, udisks2, gdk_pixbuf }: +{ stdenv, fetchgit, pkgconfig, dbus, libnotify, udisks2, gdk-pixbuf }: stdenv.mkDerivation { name = "usermount-0.1"; @@ -10,7 +10,7 @@ stdenv.mkDerivation { }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ dbus libnotify udisks2 gdk_pixbuf ]; + buildInputs = [ dbus libnotify udisks2 gdk-pixbuf ]; NIX_CFLAGS_COMPILE = [ "-DENABLE_NOTIFICATIONS" ]; diff --git a/pkgs/tools/X11/caffeine-ng/default.nix b/pkgs/tools/X11/caffeine-ng/default.nix index aff7b8adfc2..57f32ed8225 100644 --- a/pkgs/tools/X11/caffeine-ng/default.nix +++ b/pkgs/tools/X11/caffeine-ng/default.nix @@ -1,4 +1,4 @@ -{ gdk_pixbuf, glib, gobject-introspection, gtk3, lib, libnotify, +{ gdk-pixbuf, glib, gobject-introspection, gtk3, lib, libnotify, pythonPackages, wrapGAppsHook }: @@ -12,7 +12,7 @@ pythonPackages.buildPythonApplication rec { }; nativeBuildInputs = [ wrapGAppsHook glib ]; - buildInputs = [ gdk_pixbuf gobject-introspection libnotify gtk3 ]; + buildInputs = [ gdk-pixbuf gobject-introspection libnotify gtk3 ]; pythonPath = with pythonPackages; [ dbus-python docopt ewmh pygobject3 pyxdg setproctitle setuptools setuptools_scm wheel diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index efafbb3692e..863c02fb23d 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, callPackage, substituteAll, python3, pkgconfig -, xorg, gtk3, glib, pango, cairo, gdk_pixbuf, atk +, xorg, gtk3, glib, pango, cairo, gdk-pixbuf, atk , wrapGAppsHook, xorgserver, getopt, xauth, utillinux, which , ffmpeg_4, x264, libvpx, libwebp, x265 , libfakeXinerama @@ -40,7 +40,7 @@ in buildPythonApplication rec { ] ++ [ cython - pango cairo gdk_pixbuf atk.out gtk3 glib + pango cairo gdk-pixbuf atk.out gtk3 glib ffmpeg_4 libvpx x264 libwebp x265 diff --git a/pkgs/tools/audio/gvolicon/default.nix b/pkgs/tools/audio/gvolicon/default.nix index 4a0c244f07f..c66c6bc1f7e 100644 --- a/pkgs/tools/audio/gvolicon/default.nix +++ b/pkgs/tools/audio/gvolicon/default.nix @@ -1,4 +1,4 @@ -{ stdenv, makeWrapper, alsaLib, pkgconfig, fetchgit, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook }: +{ stdenv, makeWrapper, alsaLib, pkgconfig, fetchgit, gtk3, gnome3, gdk-pixbuf, librsvg, wrapGAppsHook }: stdenv.mkDerivation { name = "gvolicon-2014-04-28"; @@ -10,7 +10,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ - makeWrapper alsaLib gtk3 gdk_pixbuf gnome3.adwaita-icon-theme + makeWrapper alsaLib gtk3 gdk-pixbuf gnome3.adwaita-icon-theme librsvg wrapGAppsHook ]; diff --git a/pkgs/tools/graphics/blur-effect/default.nix b/pkgs/tools/graphics/blur-effect/default.nix index 5bb20998439..49900401319 100644 --- a/pkgs/tools/graphics/blur-effect/default.nix +++ b/pkgs/tools/graphics/blur-effect/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, gdk_pixbuf, libGL, mesa }: +{ stdenv, fetchFromGitHub, pkgconfig, cmake, gdk-pixbuf, libGL, mesa }: stdenv.mkDerivation rec { pname = "blur-effect"; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { ]; buildInputs = [ - gdk_pixbuf + gdk-pixbuf libGL mesa ]; diff --git a/pkgs/tools/inputmethods/ibus/default.nix b/pkgs/tools/inputmethods/ibus/default.nix index d2090d77676..07fa8d2beb5 100644 --- a/pkgs/tools/inputmethods/ibus/default.nix +++ b/pkgs/tools/inputmethods/ibus/default.nix @@ -1,5 +1,5 @@ { stdenv, substituteAll, fetchurl, fetchFromGitHub, autoreconfHook, gettext, makeWrapper, pkgconfig -, vala, wrapGAppsHook, dbus, dconf ? null, glib, gdk_pixbuf, gobject-introspection, gtk2 +, vala, wrapGAppsHook, dbus, dconf ? null, glib, gdk-pixbuf, gobject-introspection, gtk2 , gtk3, gtk-doc, isocodes, python3, json-glib, libnotify ? null, enablePython2Library ? false , enableUI ? true, withWayland ? false, libxkbcommon ? null, wayland ? null , buildPackages, runtimeShell }: @@ -134,7 +134,7 @@ stdenv.mkDerivation rec { buildInputs = [ dbus dconf - gdk_pixbuf + gdk-pixbuf gobject-introspection python3.pkgs.pygobject3 # for pygobject overrides gtk2 diff --git a/pkgs/tools/misc/birdfont/default.nix b/pkgs/tools/misc/birdfont/default.nix index 2de6715db8f..56e7650673e 100644 --- a/pkgs/tools/misc/birdfont/default.nix +++ b/pkgs/tools/misc/birdfont/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, python3, xmlbird, -cairo, gdk_pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala, +cairo, gdk-pixbuf, libgee, glib, gtk3, webkitgtk, libnotify, sqlite, vala, gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection wrapGAppsHook ]; - buildInputs = [ xmlbird libgee cairo gdk_pixbuf glib gtk3 webkitgtk libnotify sqlite gsettings-desktop-schemas ]; + buildInputs = [ xmlbird libgee cairo gdk-pixbuf glib gtk3 webkitgtk libnotify sqlite gsettings-desktop-schemas ]; postPatch = "patchShebangs ."; diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix index dcbee0e343e..794c06b8044 100644 --- a/pkgs/tools/misc/staruml/default.nix +++ b/pkgs/tools/misc/staruml/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper , dpkg, patchelf -, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, systemd +, gtk2, glib, gdk-pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, systemd , libXdamage, expat }: let inherit (stdenv) lib; LD_LIBRARY_PATH = lib.makeLibraryPath - [ glib gtk2 gdk_pixbuf alsaLib nss nspr GConf cups libgcrypt dbus libXdamage expat ]; + [ glib gtk2 gdk-pixbuf alsaLib nss nspr GConf cups libgcrypt dbus libXdamage expat ]; in stdenv.mkDerivation rec { version = "2.8.1"; diff --git a/pkgs/tools/misc/sweep-visualizer/default.nix b/pkgs/tools/misc/sweep-visualizer/default.nix index cbf849494b7..fd0a766f54e 100644 --- a/pkgs/tools/misc/sweep-visualizer/default.nix +++ b/pkgs/tools/misc/sweep-visualizer/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, makeWrapper, fetchurl, - alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf, glib, + alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, gnome2, gtk2-x11, nspr, nss, libX11, libxcb, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr, libXrender, libXScrnSaver, libXtst, @@ -13,7 +13,7 @@ url = "https://s3.amazonaws.com/scanse/Visualizer/v${version}/sweepvisualizer_${version}_amd64.deb"; sha256 = "1k6rdjw2340qrzafv6hjxvbvyh3s1wad6d3629nchdcrpyx9xy1c"; }; - + nativeBuildInputs = [ makeWrapper ]; sourceRoot = "."; @@ -32,8 +32,8 @@ preFixup = let libPath = lib.makeLibraryPath [ - alsaLib atk cairo cups.lib dbus.lib expat fontconfig.lib freetype - gdk_pixbuf glib gnome2.GConf gnome2.pango gtk2-x11 nspr nss stdenv.cc.cc.lib + alsaLib atk cairo cups.lib dbus.lib expat fontconfig.lib freetype + gdk-pixbuf glib gnome2.GConf gnome2.pango gtk2-x11 nspr nss stdenv.cc.cc.lib libX11 libxcb libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXScrnSaver libXtst ]; diff --git a/pkgs/tools/misc/system-config-printer/default.nix b/pkgs/tools/misc/system-config-printer/default.nix index 02583343117..6750bbe8ae6 100644 --- a/pkgs/tools/misc/system-config-printer/default.nix +++ b/pkgs/tools/misc/system-config-printer/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, udev, intltool, pkgconfig, glib, xmlto, wrapGAppsHook , docbook_xml_dtd_412, docbook_xsl -, libxml2, desktop-file-utils, libusb1, cups, gdk_pixbuf, pango, atk, libnotify +, libxml2, desktop-file-utils, libusb1, cups, gdk-pixbuf, pango, atk, libnotify , gobject-introspection, libsecret , cups-filters , pythonPackages @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { buildInputs = [ glib udev libusb1 cups pythonPackages.python - libnotify gobject-introspection gdk_pixbuf pango atk + libnotify gobject-introspection gdk-pixbuf pango atk libsecret ]; diff --git a/pkgs/tools/networking/driftnet/default.nix b/pkgs/tools/networking/driftnet/default.nix index bf0a43ce515..fd932617c93 100644 --- a/pkgs/tools/networking/driftnet/default.nix +++ b/pkgs/tools/networking/driftnet/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchFromGitHub, libpcap, libjpeg , libungif, libpng -, giflib, glib, gtk2, cairo, pango, gdk_pixbuf, atk +, giflib, glib, gtk2, cairo, pango, gdk-pixbuf, atk , pkgconfig, autoreconfHook }: with lib; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libpcap libjpeg libungif libpng giflib - glib gtk2 glib cairo pango gdk_pixbuf atk autoreconfHook + glib gtk2 glib cairo pango gdk-pixbuf atk autoreconfHook ]; src = fetchFromGitHub { diff --git a/pkgs/tools/security/encryptr/default.nix b/pkgs/tools/security/encryptr/default.nix index 8d0c7876431..6f79be83be5 100644 --- a/pkgs/tools/security/encryptr/default.nix +++ b/pkgs/tools/security/encryptr/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, glib, nss, nspr, gconf, fontconfig, freetype , pango , cairo, libX11 , libXi, libXcursor, libXext, libXfixes , libXrender, libXcomposite , alsaLib, libXdamage, libXtst, libXrandr -, expat, libcap, systemd , dbus, gtk2 , gdk_pixbuf, libnotify +, expat, libcap, systemd , dbus, gtk2 , gdk-pixbuf, libnotify }: let @@ -27,7 +27,7 @@ in stdenv.mkDerivation rec { rpath = stdenv.lib.makeLibraryPath [ glib nss nspr gconf fontconfig freetype pango cairo libX11 libXi libXcursor libXext libXfixes libXrender libXcomposite alsaLib - libXdamage libXtst libXrandr expat libcap dbus gtk2 gdk_pixbuf + libXdamage libXtst libXrandr expat libcap dbus gtk2 gdk-pixbuf libnotify stdenv.cc.cc ]; diff --git a/pkgs/tools/security/keybase/gui.nix b/pkgs/tools/security/keybase/gui.nix index f84f0039347..afe2d457a7f 100644 --- a/pkgs/tools/security/keybase/gui.nix +++ b/pkgs/tools/security/keybase/gui.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, alsaLib, atk, cairo, cups, udev -, dbus, expat, fontconfig, freetype, gdk_pixbuf, glib, gtk3 +, dbus, expat, fontconfig, freetype, gdk-pixbuf, glib, gtk3 , libnotify, nspr, nss, pango, systemd, xorg, autoPatchelfHook, wrapGAppsHook , runtimeShell, gsettings-desktop-schemas }: @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { expat fontconfig freetype - gdk_pixbuf + gdk-pixbuf glib gsettings-desktop-schemas gtk3 diff --git a/pkgs/tools/system/collectd/default.nix b/pkgs/tools/system/collectd/default.nix index 3fdc8780888..d71fa0c4e58 100644 --- a/pkgs/tools/system/collectd/default.nix +++ b/pkgs/tools/system/collectd/default.nix @@ -13,7 +13,7 @@ , libmemcached, cyrus_sasl , libmicrohttpd , libmodbus -, libnotify, gdk_pixbuf +, libnotify, gdk-pixbuf , liboping , libpcap , libsigrok @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig autoreconfHook ]; buildInputs = [ curl libdbi libgcrypt libmemcached - cyrus_sasl libnotify gdk_pixbuf liboping libpcap libvirt + cyrus_sasl libnotify gdk-pixbuf liboping libpcap libvirt libxml2 postgresql protobufc rrdtool varnish yajl jdk libtool python hiredis libmicrohttpd riemann_c_client mosquitto rdkafka mongoc diff --git a/pkgs/tools/system/ddrescueview/default.nix b/pkgs/tools/system/ddrescueview/default.nix index 517cefb6a2b..466232e2bf7 100644 --- a/pkgs/tools/system/ddrescueview/default.nix +++ b/pkgs/tools/system/ddrescueview/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, fpc, lazarus, atk, cairo, gdk_pixbuf, glib, gtk2, libX11, pango }: +{ stdenv, lib, fetchurl, fpc, lazarus, atk, cairo, gdk-pixbuf, glib, gtk2, libX11, pango }: stdenv.mkDerivation rec { name = "ddrescueview-0.4alpha3"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ fpc lazarus ]; - buildInputs = [ atk cairo gdk_pixbuf glib gtk2 libX11 pango ]; + buildInputs = [ atk cairo gdk-pixbuf glib gtk2 libX11 pango ]; sourceRoot = "source"; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index fd873605056..44a27fa6c17 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -107,6 +107,7 @@ mapAliases ({ fuseki = apache-jena-fuseki; # added 2018-04-25 gccApple = throw "gccApple is no longer supported"; # added 2018-04-25 gdb-multitarget = gdb; # added 2017-11-13 + gdk_pixbuf = gdk-pixbuf; # added 2019-05-22 gettextWithExpat = gettext; # 2016-02-19 git-hub = gitAndTools.git-hub; # added 2016-04-29 glib_networking = glib-networking; # added 2018-02-25 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f7a160d14e8..2de4367a9e7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10883,7 +10883,7 @@ in gdata-sharp = callPackage ../development/libraries/gdata-sharp { }; - gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { }; + gdk-pixbuf = callPackage ../development/libraries/gdk-pixbuf { }; gnome-sharp = callPackage ../development/libraries/gnome-sharp { mono = mono4; }; From 07bbae0bb721d84d8ffca4fef57e090130fe7c36 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Mon, 1 Jul 2019 17:52:08 -0400 Subject: [PATCH 0937/1611] way-cooler: regenerate crates-io.nix --- .../window-managers/way-cooler/crates-io.nix | 784 ++++++++++-------- 1 file changed, 436 insertions(+), 348 deletions(-) diff --git a/pkgs/applications/window-managers/way-cooler/crates-io.nix b/pkgs/applications/window-managers/way-cooler/crates-io.nix index 29e25640191..955dfe9b44a 100644 --- a/pkgs/applications/window-managers/way-cooler/crates-io.nix +++ b/pkgs/applications/window-managers/way-cooler/crates-io.nix @@ -10,6 +10,7 @@ rec { crates.aho_corasick."0.5.3" = deps: { features?(features_.aho_corasick."0.5.3" deps {}) }: buildRustCrate { crateName = "aho-corasick"; version = "0.5.3"; + description = "Fast multiple substring searching with finite state machines."; authors = [ "Andrew Gallant " ]; sha256 = "1igab46mvgknga3sxkqc917yfff0wsjxjzabdigmh240p5qxqlnn"; libName = "aho_corasick"; @@ -33,6 +34,7 @@ rec { crates.bitflags."0.4.0" = deps: { features?(features_.bitflags."0.4.0" deps {}) }: buildRustCrate { crateName = "bitflags"; version = "0.4.0"; + description = "A macro to generate structures which behave like bitflags.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0an03kibhfcc0mcxf6a0mvbab0s7cggnvflw8jn0b15i351h828c"; features = mkFeatures (features."bitflags"."0.4.0" or {}); @@ -48,6 +50,7 @@ rec { crates.bitflags."0.6.0" = deps: { features?(features_.bitflags."0.6.0" deps {}) }: buildRustCrate { crateName = "bitflags"; version = "0.6.0"; + description = "A macro to generate structures which behave like bitflags.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1znq4b770mdp3kdj9yz199ylc2pmf8l5j2f281jjrcfhg1mm22h6"; }; @@ -62,6 +65,7 @@ rec { crates.bitflags."0.7.0" = deps: { features?(features_.bitflags."0.7.0" deps {}) }: buildRustCrate { crateName = "bitflags"; version = "0.7.0"; + description = "A macro to generate structures which behave like bitflags.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1hr72xg5slm0z4pxs2hiy4wcyx3jva70h58b7mid8l0a4c8f7gn5"; }; @@ -76,17 +80,18 @@ rec { crates.bitflags."0.9.1" = deps: { features?(features_.bitflags."0.9.1" deps {}) }: buildRustCrate { crateName = "bitflags"; version = "0.9.1"; + description = "A macro to generate structures which behave like bitflags.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "18h073l5jd88rx4qdr95fjddr9rk79pb1aqnshzdnw16cfmb9rws"; features = mkFeatures (features."bitflags"."0.9.1" or {}); }; features_.bitflags."0.9.1" = deps: f: updateFeatures f (rec { bitflags = fold recursiveUpdate {} [ - { "0.9.1".default = (f.bitflags."0.9.1".default or true); } - { "0.9.1".example_generated = - (f.bitflags."0.9.1".example_generated or false) || + { "0.9.1"."example_generated" = + (f.bitflags."0.9.1"."example_generated" or false) || (f.bitflags."0.9.1".default or false) || (bitflags."0.9.1"."default" or false); } + { "0.9.1".default = (f.bitflags."0.9.1".default or true); } ]; }) []; @@ -97,6 +102,7 @@ rec { crates.bitflags."1.0.4" = deps: { features?(features_.bitflags."1.0.4" deps {}) }: buildRustCrate { crateName = "bitflags"; version = "1.0.4"; + description = "A macro to generate structures which behave like bitflags.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1g1wmz2001qmfrd37dnd5qiss5njrw26aywmg6yhkmkbyrhjxb08"; features = mkFeatures (features."bitflags"."1.0.4" or {}); @@ -112,6 +118,7 @@ rec { crates.c_vec."1.2.1" = deps: { features?(features_.c_vec."1.2.1" deps {}) }: buildRustCrate { crateName = "c_vec"; version = "1.2.1"; + description = "Structures to wrap C arrays"; authors = [ "Guillaume Gomez " ]; sha256 = "15gm72wx9kd0n51454i58rmpkmig8swghrj2440frxxi9kqg97xd"; }; @@ -126,6 +133,7 @@ rec { crates.cairo_rs."0.2.0" = deps: { features?(features_.cairo_rs."0.2.0" deps {}) }: buildRustCrate { crateName = "cairo-rs"; version = "0.2.0"; + description = "Rust bindings for the Cairo library"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "0bcbhbyips15b7la4r43p4x57jv1w2ll8iwg9lxwvzz5k6c7iwvd"; libName = "cairo"; @@ -148,25 +156,25 @@ rec { features_.cairo_rs."0.2.0" = deps: f: updateFeatures f (rec { c_vec."${deps.cairo_rs."0.2.0".c_vec}".default = true; cairo_rs = fold recursiveUpdate {} [ - { "0.2.0".default = (f.cairo_rs."0.2.0".default or true); } - { "0.2.0".glib = - (f.cairo_rs."0.2.0".glib or false) || + { "0.2.0"."glib" = + (f.cairo_rs."0.2.0"."glib" or false) || (f.cairo_rs."0.2.0".use_glib or false) || (cairo_rs."0.2.0"."use_glib" or false); } - { "0.2.0".glib-sys = - (f.cairo_rs."0.2.0".glib-sys or false) || + { "0.2.0"."glib-sys" = + (f.cairo_rs."0.2.0"."glib-sys" or false) || (f.cairo_rs."0.2.0".use_glib or false) || (cairo_rs."0.2.0"."use_glib" or false); } - { "0.2.0".gtk-rs-lgpl-docs = - (f.cairo_rs."0.2.0".gtk-rs-lgpl-docs or false) || + { "0.2.0"."gtk-rs-lgpl-docs" = + (f.cairo_rs."0.2.0"."gtk-rs-lgpl-docs" or false) || (f.cairo_rs."0.2.0".embed-lgpl-docs or false) || (cairo_rs."0.2.0"."embed-lgpl-docs" or false) || (f.cairo_rs."0.2.0".purge-lgpl-docs or false) || (cairo_rs."0.2.0"."purge-lgpl-docs" or false); } - { "0.2.0".use_glib = - (f.cairo_rs."0.2.0".use_glib or false) || + { "0.2.0"."use_glib" = + (f.cairo_rs."0.2.0"."use_glib" or false) || (f.cairo_rs."0.2.0".default or false) || (cairo_rs."0.2.0"."default" or false); } + { "0.2.0".default = (f.cairo_rs."0.2.0".default or true); } ]; cairo_sys_rs = fold recursiveUpdate {} [ { "${deps.cairo_rs."0.2.0".cairo_sys_rs}"."png" = @@ -203,6 +211,7 @@ rec { crates.cairo_sys_rs."0.4.0" = deps: { features?(features_.cairo_sys_rs."0.4.0" deps {}) }: buildRustCrate { crateName = "cairo-sys-rs"; version = "0.4.0"; + description = "FFI bindings to libcairo"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "062nxihlydci65pyy2ldn7djkc9sm7a5xvkl8pxrsxfxvfapm5br"; libName = "cairo_sys"; @@ -221,15 +230,15 @@ rec { }; features_.cairo_sys_rs."0.4.0" = deps: f: updateFeatures f (rec { cairo_sys_rs = fold recursiveUpdate {} [ - { "0.4.0".default = (f.cairo_sys_rs."0.4.0".default or true); } - { "0.4.0".v1_12 = - (f.cairo_sys_rs."0.4.0".v1_12 or false) || + { "0.4.0"."v1_12" = + (f.cairo_sys_rs."0.4.0"."v1_12" or false) || (f.cairo_sys_rs."0.4.0".v1_14 or false) || (cairo_sys_rs."0.4.0"."v1_14" or false); } - { "0.4.0".x11 = - (f.cairo_sys_rs."0.4.0".x11 or false) || + { "0.4.0"."x11" = + (f.cairo_sys_rs."0.4.0"."x11" or false) || (f.cairo_sys_rs."0.4.0".xlib or false) || (cairo_sys_rs."0.4.0"."xlib" or false); } + { "0.4.0".default = (f.cairo_sys_rs."0.4.0".default or true); } ]; libc."${deps.cairo_sys_rs."0.4.0".libc}".default = true; pkg_config."${deps.cairo_sys_rs."0.4.0".pkg_config}".default = true; @@ -247,6 +256,7 @@ rec { crates.cc."1.0.25" = deps: { features?(features_.cc."1.0.25" deps {}) }: buildRustCrate { crateName = "cc"; version = "1.0.25"; + description = "A build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n"; authors = [ "Alex Crichton " ]; sha256 = "0pd8fhjlpr5qan984frkf1c8nxrqp6827wmmfzhm2840229z2hq0"; dependencies = mapFeatures features ([ @@ -255,11 +265,11 @@ rec { }; features_.cc."1.0.25" = deps: f: updateFeatures f (rec { cc = fold recursiveUpdate {} [ - { "1.0.25".default = (f.cc."1.0.25".default or true); } - { "1.0.25".rayon = - (f.cc."1.0.25".rayon or false) || + { "1.0.25"."rayon" = + (f.cc."1.0.25"."rayon" or false) || (f.cc."1.0.25".parallel or false) || (cc."1.0.25"."parallel" or false); } + { "1.0.25".default = (f.cc."1.0.25".default or true); } ]; }) []; @@ -270,6 +280,7 @@ rec { crates.cfg_if."0.1.6" = deps: { features?(features_.cfg_if."0.1.6" deps {}) }: buildRustCrate { crateName = "cfg-if"; version = "0.1.6"; + description = "A macro to ergonomically define an item depending on a large number of #[cfg]\nparameters. Structured like an if-else chain, the first matching branch is the\nitem that gets emitted.\n"; authors = [ "Alex Crichton " ]; sha256 = "11qrix06wagkplyk908i3423ps9m9np6c4vbcq81s9fyl244xv3n"; }; @@ -284,6 +295,7 @@ rec { crates.cloudabi."0.0.3" = deps: { features?(features_.cloudabi."0.0.3" deps {}) }: buildRustCrate { crateName = "cloudabi"; version = "0.0.3"; + description = "Low level interface to CloudABI. Contains all syscalls and related types."; authors = [ "Nuxi (https://nuxi.nl/) and contributors" ]; sha256 = "1z9lby5sr6vslfd14d6igk03s7awf91mxpsfmsp3prxbxlk0x7h5"; libPath = "cloudabi.rs"; @@ -295,8 +307,8 @@ rec { features_.cloudabi."0.0.3" = deps: f: updateFeatures f (rec { bitflags."${deps.cloudabi."0.0.3".bitflags}".default = true; cloudabi = fold recursiveUpdate {} [ - { "0.0.3".bitflags = - (f.cloudabi."0.0.3".bitflags or false) || + { "0.0.3"."bitflags" = + (f.cloudabi."0.0.3"."bitflags" or false) || (f.cloudabi."0.0.3".default or false) || (cloudabi."0.0.3"."default" or false); } { "0.0.3".default = (f.cloudabi."0.0.3".default or true); } @@ -312,6 +324,7 @@ rec { crates.dbus."0.4.1" = deps: { features?(features_.dbus."0.4.1" deps {}) }: buildRustCrate { crateName = "dbus"; version = "0.4.1"; + description = "Bindings to D-Bus, which is a bus commonly used on Linux for inter-process communication."; authors = [ "David Henningsson " ]; sha256 = "0qw32qj2rys318h780klxlznkwg93dfimbn8mc34m4940l8v00g9"; build = "build.rs"; @@ -339,6 +352,7 @@ rec { crates.dbus_macros."0.0.6" = deps: { features?(features_.dbus_macros."0.0.6" deps {}) }: buildRustCrate { crateName = "dbus-macros"; version = "0.0.6"; + description = "Convenient macros to use the dbus crate"; authors = [ "Antoni Boucher " ]; sha256 = "1nymk2hzzgyafyr5nfa4r4frx4hml3wlwgzfr9b69vmcvn3d2jyd"; dependencies = mapFeatures features ([ @@ -359,6 +373,7 @@ rec { crates.dlib."0.3.1" = deps: { features?(features_.dlib."0.3.1" deps {}) }: buildRustCrate { crateName = "dlib"; version = "0.3.1"; + description = "Helper macros for handling manually loading optionnal system libraries."; authors = [ "Victor Berger " ]; sha256 = "11mhh6g9vszp2ay3r46x4capnnmvvhx5hcp74bapxjhiixqjfvkr"; dependencies = mapFeatures features ([ @@ -380,6 +395,7 @@ rec { crates.dlib."0.4.1" = deps: { features?(features_.dlib."0.4.1" deps {}) }: buildRustCrate { crateName = "dlib"; version = "0.4.1"; + description = "Helper macros for handling manually loading optional system libraries."; authors = [ "Victor Berger " ]; sha256 = "0h5xm6lanbl6v9y16g592bia33g7xb0n0fg98pvz6nsvg0layxlk"; dependencies = mapFeatures features ([ @@ -401,6 +417,7 @@ rec { crates.dtoa."0.4.3" = deps: { features?(features_.dtoa."0.4.3" deps {}) }: buildRustCrate { crateName = "dtoa"; version = "0.4.3"; + description = "Fast functions for printing floating-point primitives to an io::Write"; authors = [ "David Tolnay " ]; sha256 = "1xysdxdm24sk5ysim7lps4r2qaxfnj0sbakhmps4d42yssx30cw8"; }; @@ -415,6 +432,7 @@ rec { crates.dummy_rustwlc."0.7.1" = deps: { features?(features_.dummy_rustwlc."0.7.1" deps {}) }: buildRustCrate { crateName = "dummy-rustwlc"; version = "0.7.1"; + description = "A dummy version of the functions defined in rust-wlc, to be used in testing and for travis builds"; authors = [ "Snirk Immington " "Preston Carpenter " ]; sha256 = "13priwnxpjvmym6yh9v9x1230ca04cba7bzbnn21pbvqngis1y88"; dependencies = mapFeatures features ([ @@ -445,6 +463,7 @@ rec { crates.env_logger."0.3.5" = deps: { features?(features_.env_logger."0.3.5" deps {}) }: buildRustCrate { crateName = "env_logger"; version = "0.3.5"; + description = "An logging implementation for `log` which is configured via an environment\nvariable.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1mvxiaaqsyjliv1mm1qaagjqiccw11mdyi3n9h9rf8y6wj15zycw"; dependencies = mapFeatures features ([ @@ -455,11 +474,11 @@ rec { }; features_.env_logger."0.3.5" = deps: f: updateFeatures f (rec { env_logger = fold recursiveUpdate {} [ - { "0.3.5".default = (f.env_logger."0.3.5".default or true); } - { "0.3.5".regex = - (f.env_logger."0.3.5".regex or false) || + { "0.3.5"."regex" = + (f.env_logger."0.3.5"."regex" or false) || (f.env_logger."0.3.5".default or false) || (env_logger."0.3.5"."default" or false); } + { "0.3.5".default = (f.env_logger."0.3.5".default or true); } ]; log."${deps.env_logger."0.3.5".log}".default = true; regex."${deps.env_logger."0.3.5".regex}".default = true; @@ -475,6 +494,7 @@ rec { crates.fixedbitset."0.1.9" = deps: { features?(features_.fixedbitset."0.1.9" deps {}) }: buildRustCrate { crateName = "fixedbitset"; version = "0.1.9"; + description = "FixedBitSet is a simple bitset collection"; authors = [ "bluss" ]; sha256 = "1bkb5aq7h9p4rzlgxagnda1f0dd11q0qz41bmdy11z18q1p8igy1"; }; @@ -489,6 +509,7 @@ rec { crates.fuchsia_zircon."0.3.3" = deps: { features?(features_.fuchsia_zircon."0.3.3" deps {}) }: buildRustCrate { crateName = "fuchsia-zircon"; version = "0.3.3"; + description = "Rust bindings for the Zircon kernel"; authors = [ "Raph Levien " ]; sha256 = "0jrf4shb1699r4la8z358vri8318w4mdi6qzfqy30p2ymjlca4gk"; dependencies = mapFeatures features ([ @@ -512,6 +533,7 @@ rec { crates.fuchsia_zircon_sys."0.3.3" = deps: { features?(features_.fuchsia_zircon_sys."0.3.3" deps {}) }: buildRustCrate { crateName = "fuchsia-zircon-sys"; version = "0.3.3"; + description = "Low-level Rust bindings for the Zircon kernel"; authors = [ "Raph Levien " ]; sha256 = "08jp1zxrm9jbrr6l26bjal4dbm8bxfy57ickdgibsqxr1n9j3hf5"; }; @@ -526,6 +548,7 @@ rec { crates.gcc."0.3.55" = deps: { features?(features_.gcc."0.3.55" deps {}) }: buildRustCrate { crateName = "gcc"; version = "0.3.55"; + description = "**Deprecated** crate, renamed to `cc`\n\nA build-time dependency for Cargo build scripts to assist in invoking the native\nC compiler to compile native C code into a static archive to be linked into Rust\ncode.\n"; authors = [ "Alex Crichton " ]; sha256 = "18qxv3hjdhp7pfcvbm2hvyicpgmk7xw8aii1l7fla8cxxbcrg2nz"; dependencies = mapFeatures features ([ @@ -534,11 +557,11 @@ rec { }; features_.gcc."0.3.55" = deps: f: updateFeatures f (rec { gcc = fold recursiveUpdate {} [ - { "0.3.55".default = (f.gcc."0.3.55".default or true); } - { "0.3.55".rayon = - (f.gcc."0.3.55".rayon or false) || + { "0.3.55"."rayon" = + (f.gcc."0.3.55"."rayon" or false) || (f.gcc."0.3.55".parallel or false) || (gcc."0.3.55"."parallel" or false); } + { "0.3.55".default = (f.gcc."0.3.55".default or true); } ]; }) []; @@ -546,76 +569,77 @@ rec { # end # gdk-pixbuf-0.2.0 - crates.gdk-pixbuf."0.2.0" = deps: { features?(features_.gdk-pixbuf."0.2.0" deps {}) }: buildRustCrate { + crates.gdk_pixbuf."0.2.0" = deps: { features?(features_.gdk_pixbuf."0.2.0" deps {}) }: buildRustCrate { crateName = "gdk-pixbuf"; version = "0.2.0"; + description = "Rust bindings for the GdkPixbuf library"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "082z1s30haa59ax35wsv06mj8z8bhhq0fac36g01qa77kpiphj5y"; - libName = "gdk-pixbuf"; + libName = "gdk_pixbuf"; build = "build.rs"; dependencies = mapFeatures features ([ - (crates."gdk_pixbuf_sys"."${deps."gdk-pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) - (crates."glib"."${deps."gdk-pixbuf"."0.2.0"."glib"}" deps) - (crates."glib_sys"."${deps."gdk-pixbuf"."0.2.0"."glib_sys"}" deps) - (crates."gobject_sys"."${deps."gdk-pixbuf"."0.2.0"."gobject_sys"}" deps) - (crates."libc"."${deps."gdk-pixbuf"."0.2.0"."libc"}" deps) + (crates."gdk_pixbuf_sys"."${deps."gdk_pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) + (crates."glib"."${deps."gdk_pixbuf"."0.2.0"."glib"}" deps) + (crates."glib_sys"."${deps."gdk_pixbuf"."0.2.0"."glib_sys"}" deps) + (crates."gobject_sys"."${deps."gdk_pixbuf"."0.2.0"."gobject_sys"}" deps) + (crates."libc"."${deps."gdk_pixbuf"."0.2.0"."libc"}" deps) ]); buildDependencies = mapFeatures features ([ ]); - features = mkFeatures (features."gdk-pixbuf"."0.2.0" or {}); + features = mkFeatures (features."gdk_pixbuf"."0.2.0" or {}); }; - features_.gdk-pixbuf."0.2.0" = deps: f: updateFeatures f (rec { - gdk-pixbuf = fold recursiveUpdate {} [ - { "0.2.0".default = (f.gdk-pixbuf."0.2.0".default or true); } - { "0.2.0".gtk-rs-lgpl-docs = - (f.gdk-pixbuf."0.2.0".gtk-rs-lgpl-docs or false) || - (f.gdk-pixbuf."0.2.0".embed-lgpl-docs or false) || - (gdk-pixbuf."0.2.0"."embed-lgpl-docs" or false) || - (f.gdk-pixbuf."0.2.0".purge-lgpl-docs or false) || - (gdk-pixbuf."0.2.0"."purge-lgpl-docs" or false); } - { "0.2.0".v2_28 = - (f.gdk-pixbuf."0.2.0".v2_28 or false) || - (f.gdk-pixbuf."0.2.0".v2_30 or false) || - (gdk-pixbuf."0.2.0"."v2_30" or false); } - { "0.2.0".v2_30 = - (f.gdk-pixbuf."0.2.0".v2_30 or false) || - (f.gdk-pixbuf."0.2.0".v2_32 or false) || - (gdk-pixbuf."0.2.0"."v2_32" or false); } - { "0.2.0".v2_32 = - (f.gdk-pixbuf."0.2.0".v2_32 or false) || - (f.gdk-pixbuf."0.2.0".v2_36 or false) || - (gdk-pixbuf."0.2.0"."v2_36" or false); } + features_.gdk_pixbuf."0.2.0" = deps: f: updateFeatures f (rec { + gdk_pixbuf = fold recursiveUpdate {} [ + { "0.2.0"."gtk-rs-lgpl-docs" = + (f.gdk_pixbuf."0.2.0"."gtk-rs-lgpl-docs" or false) || + (f.gdk_pixbuf."0.2.0".embed-lgpl-docs or false) || + (gdk_pixbuf."0.2.0"."embed-lgpl-docs" or false) || + (f.gdk_pixbuf."0.2.0".purge-lgpl-docs or false) || + (gdk_pixbuf."0.2.0"."purge-lgpl-docs" or false); } + { "0.2.0"."v2_28" = + (f.gdk_pixbuf."0.2.0"."v2_28" or false) || + (f.gdk_pixbuf."0.2.0".v2_30 or false) || + (gdk_pixbuf."0.2.0"."v2_30" or false); } + { "0.2.0"."v2_30" = + (f.gdk_pixbuf."0.2.0"."v2_30" or false) || + (f.gdk_pixbuf."0.2.0".v2_32 or false) || + (gdk_pixbuf."0.2.0"."v2_32" or false); } + { "0.2.0"."v2_32" = + (f.gdk_pixbuf."0.2.0"."v2_32" or false) || + (f.gdk_pixbuf."0.2.0".v2_36 or false) || + (gdk_pixbuf."0.2.0"."v2_36" or false); } + { "0.2.0".default = (f.gdk_pixbuf."0.2.0".default or true); } ]; gdk_pixbuf_sys = fold recursiveUpdate {} [ - { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" = - (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" or false) || - (gdk-pixbuf."0.2.0"."v2_28" or false) || - (f."gdk-pixbuf"."0.2.0"."v2_28" or false); } - { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" = - (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" or false) || - (gdk-pixbuf."0.2.0"."v2_30" or false) || - (f."gdk-pixbuf"."0.2.0"."v2_30" or false); } - { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" = - (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" or false) || - (gdk-pixbuf."0.2.0"."v2_32" or false) || - (f."gdk-pixbuf"."0.2.0"."v2_32" or false); } - { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" = - (f.gdk_pixbuf_sys."${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" or false) || - (gdk-pixbuf."0.2.0"."v2_36" or false) || - (f."gdk-pixbuf"."0.2.0"."v2_36" or false); } - { "${deps.gdk-pixbuf."0.2.0".gdk_pixbuf_sys}".default = true; } + { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" = + (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_28" or false) || + (gdk_pixbuf."0.2.0"."v2_28" or false) || + (f."gdk_pixbuf"."0.2.0"."v2_28" or false); } + { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" = + (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_30" or false) || + (gdk_pixbuf."0.2.0"."v2_30" or false) || + (f."gdk_pixbuf"."0.2.0"."v2_30" or false); } + { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" = + (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_32" or false) || + (gdk_pixbuf."0.2.0"."v2_32" or false) || + (f."gdk_pixbuf"."0.2.0"."v2_32" or false); } + { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" = + (f.gdk_pixbuf_sys."${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}"."v2_36" or false) || + (gdk_pixbuf."0.2.0"."v2_36" or false) || + (f."gdk_pixbuf"."0.2.0"."v2_36" or false); } + { "${deps.gdk_pixbuf."0.2.0".gdk_pixbuf_sys}".default = true; } ]; - glib."${deps.gdk-pixbuf."0.2.0".glib}".default = true; - glib_sys."${deps.gdk-pixbuf."0.2.0".glib_sys}".default = true; - gobject_sys."${deps.gdk-pixbuf."0.2.0".gobject_sys}".default = true; - libc."${deps.gdk-pixbuf."0.2.0".libc}".default = true; + glib."${deps.gdk_pixbuf."0.2.0".glib}".default = true; + glib_sys."${deps.gdk_pixbuf."0.2.0".glib_sys}".default = true; + gobject_sys."${deps.gdk_pixbuf."0.2.0".gobject_sys}".default = true; + libc."${deps.gdk_pixbuf."0.2.0".libc}".default = true; }) [ - (features_.gdk_pixbuf_sys."${deps."gdk-pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) - (features_.glib."${deps."gdk-pixbuf"."0.2.0"."glib"}" deps) - (features_.glib_sys."${deps."gdk-pixbuf"."0.2.0"."glib_sys"}" deps) - (features_.gobject_sys."${deps."gdk-pixbuf"."0.2.0"."gobject_sys"}" deps) - (features_.libc."${deps."gdk-pixbuf"."0.2.0"."libc"}" deps) + (features_.gdk_pixbuf_sys."${deps."gdk_pixbuf"."0.2.0"."gdk_pixbuf_sys"}" deps) + (features_.glib."${deps."gdk_pixbuf"."0.2.0"."glib"}" deps) + (features_.glib_sys."${deps."gdk_pixbuf"."0.2.0"."glib_sys"}" deps) + (features_.gobject_sys."${deps."gdk_pixbuf"."0.2.0"."gobject_sys"}" deps) + (features_.libc."${deps."gdk_pixbuf"."0.2.0"."libc"}" deps) ]; @@ -625,6 +649,7 @@ rec { crates.gdk_pixbuf_sys."0.4.0" = deps: { features?(features_.gdk_pixbuf_sys."0.4.0" deps {}) }: buildRustCrate { crateName = "gdk-pixbuf-sys"; version = "0.4.0"; + description = "FFI bindings to libgdk_pixbuf-2.0"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "1r98zdqqik3hh1l10jmhhcjx59yk4m0bs9pc7hnkwp2p6gm968vp"; libName = "gdk_pixbuf_sys"; @@ -645,19 +670,19 @@ rec { features_.gdk_pixbuf_sys."0.4.0" = deps: f: updateFeatures f (rec { bitflags."${deps.gdk_pixbuf_sys."0.4.0".bitflags}".default = true; gdk_pixbuf_sys = fold recursiveUpdate {} [ - { "0.4.0".default = (f.gdk_pixbuf_sys."0.4.0".default or true); } - { "0.4.0".v2_28 = - (f.gdk_pixbuf_sys."0.4.0".v2_28 or false) || + { "0.4.0"."v2_28" = + (f.gdk_pixbuf_sys."0.4.0"."v2_28" or false) || (f.gdk_pixbuf_sys."0.4.0".v2_30 or false) || (gdk_pixbuf_sys."0.4.0"."v2_30" or false); } - { "0.4.0".v2_30 = - (f.gdk_pixbuf_sys."0.4.0".v2_30 or false) || + { "0.4.0"."v2_30" = + (f.gdk_pixbuf_sys."0.4.0"."v2_30" or false) || (f.gdk_pixbuf_sys."0.4.0".v2_32 or false) || (gdk_pixbuf_sys."0.4.0"."v2_32" or false); } - { "0.4.0".v2_32 = - (f.gdk_pixbuf_sys."0.4.0".v2_32 or false) || + { "0.4.0"."v2_32" = + (f.gdk_pixbuf_sys."0.4.0"."v2_32" or false) || (f.gdk_pixbuf_sys."0.4.0".v2_36 or false) || (gdk_pixbuf_sys."0.4.0"."v2_36" or false); } + { "0.4.0".default = (f.gdk_pixbuf_sys."0.4.0".default or true); } ]; gio_sys."${deps.gdk_pixbuf_sys."0.4.0".gio_sys}".default = true; glib_sys."${deps.gdk_pixbuf_sys."0.4.0".glib_sys}".default = true; @@ -680,6 +705,7 @@ rec { crates.getopts."0.2.18" = deps: { features?(features_.getopts."0.2.18" deps {}) }: buildRustCrate { crateName = "getopts"; version = "0.2.18"; + description = "getopts-like option parsing.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0c1m95wg8pkvdq4mwcd2v78r1lb6a5s3ljm7158dsl56mvzcwd5y"; dependencies = mapFeatures features ([ @@ -700,6 +726,7 @@ rec { crates.gio_sys."0.4.0" = deps: { features?(features_.gio_sys."0.4.0" deps {}) }: buildRustCrate { crateName = "gio-sys"; version = "0.4.0"; + description = "FFI bindings to libgio-2.0"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "064lv6h3qfgjzc6pbbxgln24b2fq9gxzh78z6d7fwfa97azllv2l"; libName = "gio_sys"; @@ -719,39 +746,39 @@ rec { features_.gio_sys."0.4.0" = deps: f: updateFeatures f (rec { bitflags."${deps.gio_sys."0.4.0".bitflags}".default = true; gio_sys = fold recursiveUpdate {} [ - { "0.4.0".default = (f.gio_sys."0.4.0".default or true); } - { "0.4.0".v2_34 = - (f.gio_sys."0.4.0".v2_34 or false) || + { "0.4.0"."v2_34" = + (f.gio_sys."0.4.0"."v2_34" or false) || (f.gio_sys."0.4.0".v2_36 or false) || (gio_sys."0.4.0"."v2_36" or false); } - { "0.4.0".v2_36 = - (f.gio_sys."0.4.0".v2_36 or false) || + { "0.4.0"."v2_36" = + (f.gio_sys."0.4.0"."v2_36" or false) || (f.gio_sys."0.4.0".v2_38 or false) || (gio_sys."0.4.0"."v2_38" or false); } - { "0.4.0".v2_38 = - (f.gio_sys."0.4.0".v2_38 or false) || + { "0.4.0"."v2_38" = + (f.gio_sys."0.4.0"."v2_38" or false) || (f.gio_sys."0.4.0".v2_40 or false) || (gio_sys."0.4.0"."v2_40" or false); } - { "0.4.0".v2_40 = - (f.gio_sys."0.4.0".v2_40 or false) || + { "0.4.0"."v2_40" = + (f.gio_sys."0.4.0"."v2_40" or false) || (f.gio_sys."0.4.0".v2_42 or false) || (gio_sys."0.4.0"."v2_42" or false); } - { "0.4.0".v2_42 = - (f.gio_sys."0.4.0".v2_42 or false) || + { "0.4.0"."v2_42" = + (f.gio_sys."0.4.0"."v2_42" or false) || (f.gio_sys."0.4.0".v2_44 or false) || (gio_sys."0.4.0"."v2_44" or false); } - { "0.4.0".v2_44 = - (f.gio_sys."0.4.0".v2_44 or false) || + { "0.4.0"."v2_44" = + (f.gio_sys."0.4.0"."v2_44" or false) || (f.gio_sys."0.4.0".v2_46 or false) || (gio_sys."0.4.0"."v2_46" or false); } - { "0.4.0".v2_46 = - (f.gio_sys."0.4.0".v2_46 or false) || + { "0.4.0"."v2_46" = + (f.gio_sys."0.4.0"."v2_46" or false) || (f.gio_sys."0.4.0".v2_48 or false) || (gio_sys."0.4.0"."v2_48" or false); } - { "0.4.0".v2_48 = - (f.gio_sys."0.4.0".v2_48 or false) || + { "0.4.0"."v2_48" = + (f.gio_sys."0.4.0"."v2_48" or false) || (f.gio_sys."0.4.0".v2_50 or false) || (gio_sys."0.4.0"."v2_50" or false); } + { "0.4.0".default = (f.gio_sys."0.4.0".default or true); } ]; glib_sys."${deps.gio_sys."0.4.0".glib_sys}".default = true; gobject_sys."${deps.gio_sys."0.4.0".gobject_sys}".default = true; @@ -772,6 +799,7 @@ rec { crates.glib."0.3.1" = deps: { features?(features_.glib."0.3.1" deps {}) }: buildRustCrate { crateName = "glib"; version = "0.3.1"; + description = "Rust bindings for the GLib library"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "00s3n0pd8by1fk2l01mxmbnqq4ff6wadnkcf9jbjvr1l9bzgyqbl"; dependencies = mapFeatures features ([ @@ -786,31 +814,31 @@ rec { features_.glib."0.3.1" = deps: f: updateFeatures f (rec { bitflags."${deps.glib."0.3.1".bitflags}".default = true; glib = fold recursiveUpdate {} [ - { "0.3.1".default = (f.glib."0.3.1".default or true); } - { "0.3.1".v2_34 = - (f.glib."0.3.1".v2_34 or false) || + { "0.3.1"."v2_34" = + (f.glib."0.3.1"."v2_34" or false) || (f.glib."0.3.1".v2_38 or false) || (glib."0.3.1"."v2_38" or false); } - { "0.3.1".v2_38 = - (f.glib."0.3.1".v2_38 or false) || + { "0.3.1"."v2_38" = + (f.glib."0.3.1"."v2_38" or false) || (f.glib."0.3.1".v2_40 or false) || (glib."0.3.1"."v2_40" or false); } - { "0.3.1".v2_40 = - (f.glib."0.3.1".v2_40 or false) || + { "0.3.1"."v2_40" = + (f.glib."0.3.1"."v2_40" or false) || (f.glib."0.3.1".v2_44 or false) || (glib."0.3.1"."v2_44" or false); } - { "0.3.1".v2_44 = - (f.glib."0.3.1".v2_44 or false) || + { "0.3.1"."v2_44" = + (f.glib."0.3.1"."v2_44" or false) || (f.glib."0.3.1".v2_46 or false) || (glib."0.3.1"."v2_46" or false); } - { "0.3.1".v2_46 = - (f.glib."0.3.1".v2_46 or false) || + { "0.3.1"."v2_46" = + (f.glib."0.3.1"."v2_46" or false) || (f.glib."0.3.1".v2_48 or false) || (glib."0.3.1"."v2_48" or false); } - { "0.3.1".v2_48 = - (f.glib."0.3.1".v2_48 or false) || + { "0.3.1"."v2_48" = + (f.glib."0.3.1"."v2_48" or false) || (f.glib."0.3.1".v2_50 or false) || (glib."0.3.1"."v2_50" or false); } + { "0.3.1".default = (f.glib."0.3.1".default or true); } ]; glib_sys = fold recursiveUpdate {} [ { "${deps.glib."0.3.1".glib_sys}"."v2_34" = @@ -879,6 +907,7 @@ rec { crates.glib_sys."0.4.0" = deps: { features?(features_.glib_sys."0.4.0" deps {}) }: buildRustCrate { crateName = "glib-sys"; version = "0.4.0"; + description = "FFI bindings to libglib-2.0"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "153i1zmk824hdf8agkaqcgddlwpvgng71n7bdpaav5f4zzlfyp2w"; libName = "glib_sys"; @@ -896,35 +925,35 @@ rec { features_.glib_sys."0.4.0" = deps: f: updateFeatures f (rec { bitflags."${deps.glib_sys."0.4.0".bitflags}".default = true; glib_sys = fold recursiveUpdate {} [ - { "0.4.0".default = (f.glib_sys."0.4.0".default or true); } - { "0.4.0".v2_34 = - (f.glib_sys."0.4.0".v2_34 or false) || + { "0.4.0"."v2_34" = + (f.glib_sys."0.4.0"."v2_34" or false) || (f.glib_sys."0.4.0".v2_36 or false) || (glib_sys."0.4.0"."v2_36" or false); } - { "0.4.0".v2_36 = - (f.glib_sys."0.4.0".v2_36 or false) || + { "0.4.0"."v2_36" = + (f.glib_sys."0.4.0"."v2_36" or false) || (f.glib_sys."0.4.0".v2_38 or false) || (glib_sys."0.4.0"."v2_38" or false); } - { "0.4.0".v2_38 = - (f.glib_sys."0.4.0".v2_38 or false) || + { "0.4.0"."v2_38" = + (f.glib_sys."0.4.0"."v2_38" or false) || (f.glib_sys."0.4.0".v2_40 or false) || (glib_sys."0.4.0"."v2_40" or false); } - { "0.4.0".v2_40 = - (f.glib_sys."0.4.0".v2_40 or false) || + { "0.4.0"."v2_40" = + (f.glib_sys."0.4.0"."v2_40" or false) || (f.glib_sys."0.4.0".v2_44 or false) || (glib_sys."0.4.0"."v2_44" or false); } - { "0.4.0".v2_44 = - (f.glib_sys."0.4.0".v2_44 or false) || + { "0.4.0"."v2_44" = + (f.glib_sys."0.4.0"."v2_44" or false) || (f.glib_sys."0.4.0".v2_46 or false) || (glib_sys."0.4.0"."v2_46" or false); } - { "0.4.0".v2_46 = - (f.glib_sys."0.4.0".v2_46 or false) || + { "0.4.0"."v2_46" = + (f.glib_sys."0.4.0"."v2_46" or false) || (f.glib_sys."0.4.0".v2_48 or false) || (glib_sys."0.4.0"."v2_48" or false); } - { "0.4.0".v2_48 = - (f.glib_sys."0.4.0".v2_48 or false) || + { "0.4.0"."v2_48" = + (f.glib_sys."0.4.0"."v2_48" or false) || (f.glib_sys."0.4.0".v2_50 or false) || (glib_sys."0.4.0"."v2_50" or false); } + { "0.4.0".default = (f.glib_sys."0.4.0".default or true); } ]; libc."${deps.glib_sys."0.4.0".libc}".default = true; pkg_config."${deps.glib_sys."0.4.0".pkg_config}".default = true; @@ -941,6 +970,7 @@ rec { crates.gobject_sys."0.4.0" = deps: { features?(features_.gobject_sys."0.4.0" deps {}) }: buildRustCrate { crateName = "gobject-sys"; version = "0.4.0"; + description = "FFI bindings to libgobject-2.0"; authors = [ "The Gtk-rs Project Developers" ]; sha256 = "00zmcbzqfhn9w01cphhf3hbq8ldd9ajba7x07z59vv1gdq6wjzli"; libName = "gobject_sys"; @@ -960,27 +990,27 @@ rec { bitflags."${deps.gobject_sys."0.4.0".bitflags}".default = true; glib_sys."${deps.gobject_sys."0.4.0".glib_sys}".default = true; gobject_sys = fold recursiveUpdate {} [ - { "0.4.0".default = (f.gobject_sys."0.4.0".default or true); } - { "0.4.0".v2_34 = - (f.gobject_sys."0.4.0".v2_34 or false) || + { "0.4.0"."v2_34" = + (f.gobject_sys."0.4.0"."v2_34" or false) || (f.gobject_sys."0.4.0".v2_36 or false) || (gobject_sys."0.4.0"."v2_36" or false); } - { "0.4.0".v2_36 = - (f.gobject_sys."0.4.0".v2_36 or false) || + { "0.4.0"."v2_36" = + (f.gobject_sys."0.4.0"."v2_36" or false) || (f.gobject_sys."0.4.0".v2_38 or false) || (gobject_sys."0.4.0"."v2_38" or false); } - { "0.4.0".v2_38 = - (f.gobject_sys."0.4.0".v2_38 or false) || + { "0.4.0"."v2_38" = + (f.gobject_sys."0.4.0"."v2_38" or false) || (f.gobject_sys."0.4.0".v2_42 or false) || (gobject_sys."0.4.0"."v2_42" or false); } - { "0.4.0".v2_42 = - (f.gobject_sys."0.4.0".v2_42 or false) || + { "0.4.0"."v2_42" = + (f.gobject_sys."0.4.0"."v2_42" or false) || (f.gobject_sys."0.4.0".v2_44 or false) || (gobject_sys."0.4.0"."v2_44" or false); } - { "0.4.0".v2_44 = - (f.gobject_sys."0.4.0".v2_44 or false) || + { "0.4.0"."v2_44" = + (f.gobject_sys."0.4.0"."v2_44" or false) || (f.gobject_sys."0.4.0".v2_46 or false) || (gobject_sys."0.4.0"."v2_46" or false); } + { "0.4.0".default = (f.gobject_sys."0.4.0".default or true); } ]; libc."${deps.gobject_sys."0.4.0".libc}".default = true; pkg_config."${deps.gobject_sys."0.4.0".pkg_config}".default = true; @@ -998,6 +1028,7 @@ rec { crates.itoa."0.3.4" = deps: { features?(features_.itoa."0.3.4" deps {}) }: buildRustCrate { crateName = "itoa"; version = "0.3.4"; + description = "Fast functions for printing integer primitives to an io::Write"; authors = [ "David Tolnay " ]; sha256 = "1nfkzz6vrgj0d9l3yzjkkkqzdgs68y294fjdbl7jq118qi8xc9d9"; features = mkFeatures (features."itoa"."0.3.4" or {}); @@ -1013,6 +1044,7 @@ rec { crates.json_macro."0.1.1" = deps: { features?(features_.json_macro."0.1.1" deps {}) }: buildRustCrate { crateName = "json_macro"; version = "0.1.1"; + description = "Pure json macro for rust_serialize. No need compiler features."; authors = [ "Denis Kolodin " ]; sha256 = "0hl2934shpwqbszrq035valbdz9y8p7dza183brygy5dbvivcyqy"; dependencies = mapFeatures features ([ @@ -1033,6 +1065,7 @@ rec { crates.kernel32_sys."0.2.2" = deps: { features?(features_.kernel32_sys."0.2.2" deps {}) }: buildRustCrate { crateName = "kernel32-sys"; version = "0.2.2"; + description = "Contains function definitions for the Windows API library kernel32. See winapi for types and constants."; authors = [ "Peter Atashian " ]; sha256 = "1lrw1hbinyvr6cp28g60z97w32w8vsk6pahk64pmrv2fmby8srfj"; libName = "kernel32"; @@ -1061,6 +1094,7 @@ rec { crates.lazy_static."0.2.11" = deps: { features?(features_.lazy_static."0.2.11" deps {}) }: buildRustCrate { crateName = "lazy_static"; version = "0.2.11"; + description = "A macro for declaring lazily evaluated statics in Rust."; authors = [ "Marvin Löbel " ]; sha256 = "1x6871cvpy5b96yv4c7jvpq316fp5d4609s9py7qk6cd6x9k34vm"; dependencies = mapFeatures features ([ @@ -1069,19 +1103,19 @@ rec { }; features_.lazy_static."0.2.11" = deps: f: updateFeatures f (rec { lazy_static = fold recursiveUpdate {} [ - { "0.2.11".compiletest_rs = - (f.lazy_static."0.2.11".compiletest_rs or false) || + { "0.2.11"."compiletest_rs" = + (f.lazy_static."0.2.11"."compiletest_rs" or false) || (f.lazy_static."0.2.11".compiletest or false) || (lazy_static."0.2.11"."compiletest" or false); } + { "0.2.11"."nightly" = + (f.lazy_static."0.2.11"."nightly" or false) || + (f.lazy_static."0.2.11".spin_no_std or false) || + (lazy_static."0.2.11"."spin_no_std" or false); } + { "0.2.11"."spin" = + (f.lazy_static."0.2.11"."spin" or false) || + (f.lazy_static."0.2.11".spin_no_std or false) || + (lazy_static."0.2.11"."spin_no_std" or false); } { "0.2.11".default = (f.lazy_static."0.2.11".default or true); } - { "0.2.11".nightly = - (f.lazy_static."0.2.11".nightly or false) || - (f.lazy_static."0.2.11".spin_no_std or false) || - (lazy_static."0.2.11"."spin_no_std" or false); } - { "0.2.11".spin = - (f.lazy_static."0.2.11".spin or false) || - (f.lazy_static."0.2.11".spin_no_std or false) || - (lazy_static."0.2.11"."spin_no_std" or false); } ]; }) []; @@ -1092,6 +1126,7 @@ rec { crates.lazy_static."1.2.0" = deps: { features?(features_.lazy_static."1.2.0" deps {}) }: buildRustCrate { crateName = "lazy_static"; version = "1.2.0"; + description = "A macro for declaring lazily evaluated statics in Rust."; authors = [ "Marvin Löbel " ]; sha256 = "07p3b30k2akyr6xw08ggd5qiz5nw3vd3agggj360fcc1njz7d0ss"; dependencies = mapFeatures features ([ @@ -1100,11 +1135,11 @@ rec { }; features_.lazy_static."1.2.0" = deps: f: updateFeatures f (rec { lazy_static = fold recursiveUpdate {} [ - { "1.2.0".default = (f.lazy_static."1.2.0".default or true); } - { "1.2.0".spin = - (f.lazy_static."1.2.0".spin or false) || + { "1.2.0"."spin" = + (f.lazy_static."1.2.0"."spin" or false) || (f.lazy_static."1.2.0".spin_no_std or false) || (lazy_static."1.2.0"."spin_no_std" or false); } + { "1.2.0".default = (f.lazy_static."1.2.0".default or true); } ]; }) []; @@ -1115,6 +1150,7 @@ rec { crates.libc."0.2.44" = deps: { features?(features_.libc."0.2.44" deps {}) }: buildRustCrate { crateName = "libc"; version = "0.2.44"; + description = "A library for types and bindings to native C functions often found in libc or\nother common platform libraries.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "17a7p0lcf3qwl1pcxffdflgnx8zr2659mgzzg4zi5fnv1mlj3q6z"; build = "build.rs"; @@ -1124,19 +1160,19 @@ rec { }; features_.libc."0.2.44" = deps: f: updateFeatures f (rec { libc = fold recursiveUpdate {} [ - { "0.2.44".align = - (f.libc."0.2.44".align or false) || + { "0.2.44"."align" = + (f.libc."0.2.44"."align" or false) || (f.libc."0.2.44".rustc-dep-of-std or false) || (libc."0.2.44"."rustc-dep-of-std" or false); } - { "0.2.44".default = (f.libc."0.2.44".default or true); } - { "0.2.44".rustc-std-workspace-core = - (f.libc."0.2.44".rustc-std-workspace-core or false) || + { "0.2.44"."rustc-std-workspace-core" = + (f.libc."0.2.44"."rustc-std-workspace-core" or false) || (f.libc."0.2.44".rustc-dep-of-std or false) || (libc."0.2.44"."rustc-dep-of-std" or false); } - { "0.2.44".use_std = - (f.libc."0.2.44".use_std or false) || + { "0.2.44"."use_std" = + (f.libc."0.2.44"."use_std" or false) || (f.libc."0.2.44".default or false) || (libc."0.2.44"."default" or false); } + { "0.2.44".default = (f.libc."0.2.44".default or true); } ]; }) []; @@ -1147,6 +1183,7 @@ rec { crates.libloading."0.3.4" = deps: { features?(features_.libloading."0.3.4" deps {}) }: buildRustCrate { crateName = "libloading"; version = "0.3.4"; + description = "A safer binding to platform’s dynamic library loading utilities"; authors = [ "Simonas Kazlauskas " ]; sha256 = "1f2vy32cr434n638nv8sdf05iwa53q9q5ahlcpw1l9ywh1bcbhf1"; build = "build.rs"; @@ -1182,6 +1219,7 @@ rec { crates.libloading."0.5.0" = deps: { features?(features_.libloading."0.5.0" deps {}) }: buildRustCrate { crateName = "libloading"; version = "0.5.0"; + description = "A safer binding to platform’s dynamic library loading utilities"; authors = [ "Simonas Kazlauskas " ]; sha256 = "11vzjaka1y979aril4ggwp33p35yz2isvx9m5w88r5sdcmq6iscn"; build = "build.rs"; @@ -1214,6 +1252,7 @@ rec { crates.log."0.3.9" = deps: { features?(features_.log."0.3.9" deps {}) }: buildRustCrate { crateName = "log"; version = "0.3.9"; + description = "A lightweight logging facade for Rust\n"; authors = [ "The Rust Project Developers" ]; sha256 = "19i9pwp7lhaqgzangcpw00kc3zsgcqcx84crv07xgz3v7d3kvfa2"; dependencies = mapFeatures features ([ @@ -1276,11 +1315,11 @@ rec { (log."0.3.9"."use_std" or false) || (f."log"."0.3.9"."use_std" or false); } { "${deps.log."0.3.9".log}".default = true; } - { "0.3.9".default = (f.log."0.3.9".default or true); } - { "0.3.9".use_std = - (f.log."0.3.9".use_std or false) || + { "0.3.9"."use_std" = + (f.log."0.3.9"."use_std" or false) || (f.log."0.3.9".default or false) || (log."0.3.9"."default" or false); } + { "0.3.9".default = (f.log."0.3.9".default or true); } ]; }) [ (features_.log."${deps."log"."0.3.9"."log"}" deps) @@ -1293,6 +1332,7 @@ rec { crates.log."0.4.6" = deps: { features?(features_.log."0.4.6" deps {}) }: buildRustCrate { crateName = "log"; version = "0.4.6"; + description = "A lightweight logging facade for Rust\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1nd8dl9mvc9vd6fks5d4gsxaz990xi6rzlb8ymllshmwi153vngr"; dependencies = mapFeatures features ([ @@ -1314,6 +1354,7 @@ rec { crates.memchr."0.1.11" = deps: { features?(features_.memchr."0.1.11" deps {}) }: buildRustCrate { crateName = "memchr"; version = "0.1.11"; + description = "Safe interface to memchr."; authors = [ "Andrew Gallant " "bluss" ]; sha256 = "0x73jghamvxxq5fsw9wb0shk5m6qp3q6fsf0nibn0i6bbqkw91s8"; dependencies = mapFeatures features ([ @@ -1334,6 +1375,7 @@ rec { crates.nix."0.6.0" = deps: { features?(features_.nix."0.6.0" deps {}) }: buildRustCrate { crateName = "nix"; version = "0.6.0"; + description = "Rust friendly bindings to *nix APIs"; authors = [ "Carl Lerche " ]; sha256 = "1bgh75y897isnxbw3vd79vns9h6q4d59p1cgv9c4laysyw6fkqwf"; build = "build.rs"; @@ -1374,6 +1416,7 @@ rec { crates.nix."0.9.0" = deps: { features?(features_.nix."0.9.0" deps {}) }: buildRustCrate { crateName = "nix"; version = "0.9.0"; + description = "Rust friendly bindings to *nix APIs"; authors = [ "The nix-rust Project Developers" ]; sha256 = "00p63bphzwwn460rja5l2wcpgmv7ljf7illf6n95cppx63d180q0"; dependencies = mapFeatures features ([ @@ -1403,6 +1446,7 @@ rec { crates.num_traits."0.1.43" = deps: { features?(features_.num_traits."0.1.43" deps {}) }: buildRustCrate { crateName = "num-traits"; version = "0.1.43"; + description = "Numeric traits for generic mathematics"; authors = [ "The Rust Project Developers" ]; sha256 = "1zdzx78vrcg3f39w94pqjs1mwxl1phyv7843hwgwkzggwcxhhf6s"; dependencies = mapFeatures features ([ @@ -1425,6 +1469,7 @@ rec { crates.num_traits."0.2.6" = deps: { features?(features_.num_traits."0.2.6" deps {}) }: buildRustCrate { crateName = "num-traits"; version = "0.2.6"; + description = "Numeric traits for generic mathematics"; authors = [ "The Rust Project Developers" ]; sha256 = "1d20sil9n0wgznd1nycm3yjfj1mzyl41ambb7by1apxlyiil1azk"; build = "build.rs"; @@ -1432,11 +1477,11 @@ rec { }; features_.num_traits."0.2.6" = deps: f: updateFeatures f (rec { num_traits = fold recursiveUpdate {} [ - { "0.2.6".default = (f.num_traits."0.2.6".default or true); } - { "0.2.6".std = - (f.num_traits."0.2.6".std or false) || + { "0.2.6"."std" = + (f.num_traits."0.2.6"."std" or false) || (f.num_traits."0.2.6".default or false) || (num_traits."0.2.6"."default" or false); } + { "0.2.6".default = (f.num_traits."0.2.6".default or true); } ]; }) []; @@ -1447,6 +1492,7 @@ rec { crates.ordermap."0.3.5" = deps: { features?(features_.ordermap."0.3.5" deps {}) }: buildRustCrate { crateName = "ordermap"; version = "0.3.5"; + description = "A hash table with consistent order and fast iteration."; authors = [ "bluss" ]; sha256 = "0b6vxfyh627yqm6war3392g1hhi4dbn49ibx2qv6mv490jdhv7d3"; dependencies = mapFeatures features ([ @@ -1455,11 +1501,11 @@ rec { }; features_.ordermap."0.3.5" = deps: f: updateFeatures f (rec { ordermap = fold recursiveUpdate {} [ - { "0.3.5".default = (f.ordermap."0.3.5".default or true); } - { "0.3.5".serde = - (f.ordermap."0.3.5".serde or false) || + { "0.3.5"."serde" = + (f.ordermap."0.3.5"."serde" or false) || (f.ordermap."0.3.5".serde-1 or false) || (ordermap."0.3.5"."serde-1" or false); } + { "0.3.5".default = (f.ordermap."0.3.5".default or true); } ]; }) []; @@ -1470,6 +1516,7 @@ rec { crates.petgraph."0.4.13" = deps: { features?(features_.petgraph."0.4.13" deps {}) }: buildRustCrate { crateName = "petgraph"; version = "0.4.13"; + description = "Graph data structure library. Provides graph types and graph algorithms."; authors = [ "bluss" "mitchmindtree" ]; sha256 = "0a8k12b9vd0bndwqhafa853w186axdw05bv4kqjimyaz67428g1i"; dependencies = mapFeatures features ([ @@ -1482,43 +1529,43 @@ rec { fixedbitset."${deps.petgraph."0.4.13".fixedbitset}".default = true; ordermap."${deps.petgraph."0.4.13".ordermap}".default = true; petgraph = fold recursiveUpdate {} [ - { "0.4.13".default = (f.petgraph."0.4.13".default or true); } - { "0.4.13".generate = - (f.petgraph."0.4.13".generate or false) || + { "0.4.13"."generate" = + (f.petgraph."0.4.13"."generate" or false) || (f.petgraph."0.4.13".unstable or false) || (petgraph."0.4.13"."unstable" or false); } - { "0.4.13".graphmap = - (f.petgraph."0.4.13".graphmap or false) || + { "0.4.13"."graphmap" = + (f.petgraph."0.4.13"."graphmap" or false) || (f.petgraph."0.4.13".all or false) || (petgraph."0.4.13"."all" or false) || (f.petgraph."0.4.13".default or false) || (petgraph."0.4.13"."default" or false); } - { "0.4.13".ordermap = - (f.petgraph."0.4.13".ordermap or false) || + { "0.4.13"."ordermap" = + (f.petgraph."0.4.13"."ordermap" or false) || (f.petgraph."0.4.13".graphmap or false) || (petgraph."0.4.13"."graphmap" or false); } - { "0.4.13".quickcheck = - (f.petgraph."0.4.13".quickcheck or false) || + { "0.4.13"."quickcheck" = + (f.petgraph."0.4.13"."quickcheck" or false) || (f.petgraph."0.4.13".all or false) || (petgraph."0.4.13"."all" or false); } - { "0.4.13".serde = - (f.petgraph."0.4.13".serde or false) || + { "0.4.13"."serde" = + (f.petgraph."0.4.13"."serde" or false) || (f.petgraph."0.4.13".serde-1 or false) || (petgraph."0.4.13"."serde-1" or false); } - { "0.4.13".serde_derive = - (f.petgraph."0.4.13".serde_derive or false) || + { "0.4.13"."serde_derive" = + (f.petgraph."0.4.13"."serde_derive" or false) || (f.petgraph."0.4.13".serde-1 or false) || (petgraph."0.4.13"."serde-1" or false); } - { "0.4.13".stable_graph = - (f.petgraph."0.4.13".stable_graph or false) || + { "0.4.13"."stable_graph" = + (f.petgraph."0.4.13"."stable_graph" or false) || (f.petgraph."0.4.13".all or false) || (petgraph."0.4.13"."all" or false) || (f.petgraph."0.4.13".default or false) || (petgraph."0.4.13"."default" or false); } - { "0.4.13".unstable = - (f.petgraph."0.4.13".unstable or false) || + { "0.4.13"."unstable" = + (f.petgraph."0.4.13"."unstable" or false) || (f.petgraph."0.4.13".all or false) || (petgraph."0.4.13"."all" or false); } + { "0.4.13".default = (f.petgraph."0.4.13".default or true); } ]; }) [ (features_.fixedbitset."${deps."petgraph"."0.4.13"."fixedbitset"}" deps) @@ -1532,6 +1579,7 @@ rec { crates.phf."0.7.23" = deps: { features?(features_.phf."0.7.23" deps {}) }: buildRustCrate { crateName = "phf"; version = "0.7.23"; + description = "Runtime support for perfect hash function data structures"; authors = [ "Steven Fackler " ]; sha256 = "0annmaf9mmm12g2cdwpip32p674pmsf6xpiwa27mz3glmz73y8aq"; libPath = "src/lib.rs"; @@ -1564,6 +1612,7 @@ rec { crates.phf_codegen."0.7.23" = deps: { features?(features_.phf_codegen."0.7.23" deps {}) }: buildRustCrate { crateName = "phf_codegen"; version = "0.7.23"; + description = "Codegen library for PHF types"; authors = [ "Steven Fackler " ]; sha256 = "0k5ly0qykw56fxd19iy236wzghqdxq9zxnzcg8nm22cfzw4a35n0"; dependencies = mapFeatures features ([ @@ -1587,6 +1636,7 @@ rec { crates.phf_generator."0.7.23" = deps: { features?(features_.phf_generator."0.7.23" deps {}) }: buildRustCrate { crateName = "phf_generator"; version = "0.7.23"; + description = "PHF generation logic"; authors = [ "Steven Fackler " ]; sha256 = "106cd0bx3jf7mf2gaa8nx62c1las1w95c5gwsd4yqm5lj2rj4mza"; dependencies = mapFeatures features ([ @@ -1610,6 +1660,7 @@ rec { crates.phf_shared."0.7.23" = deps: { features?(features_.phf_shared."0.7.23" deps {}) }: buildRustCrate { crateName = "phf_shared"; version = "0.7.23"; + description = "Support code shared by PHF libraries"; authors = [ "Steven Fackler " ]; sha256 = "04gzsq9vg9j8cr39hpkddxb0yqjdknvcpnylw112rqamy7ml4fy1"; libPath = "src/lib.rs"; @@ -1632,6 +1683,7 @@ rec { crates.pkg_config."0.3.14" = deps: { features?(features_.pkg_config."0.3.14" deps {}) }: buildRustCrate { crateName = "pkg-config"; version = "0.3.14"; + description = "A library to run the pkg-config system tool at build time in order to be used in\nCargo build scripts.\n"; authors = [ "Alex Crichton " ]; sha256 = "0207fsarrm412j0dh87lfcas72n8mxar7q3mgflsbsrqnb140sv6"; }; @@ -1646,6 +1698,7 @@ rec { crates.rand."0.3.22" = deps: { features?(features_.rand."0.3.22" deps {}) }: buildRustCrate { crateName = "rand"; version = "0.3.22"; + description = "Random number generators and other randomness functionality.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0wrj12acx7l4hr7ag3nz8b50yhp8ancyq988bzmnnsxln67rsys0"; dependencies = mapFeatures features ([ @@ -1662,11 +1715,11 @@ rec { libc."${deps.rand."0.3.22".libc}".default = true; rand = fold recursiveUpdate {} [ { "${deps.rand."0.3.22".rand}".default = true; } - { "0.3.22".default = (f.rand."0.3.22".default or true); } - { "0.3.22".i128_support = - (f.rand."0.3.22".i128_support or false) || + { "0.3.22"."i128_support" = + (f.rand."0.3.22"."i128_support" or false) || (f.rand."0.3.22".nightly or false) || (rand."0.3.22"."nightly" or false); } + { "0.3.22".default = (f.rand."0.3.22".default or true); } ]; }) [ (features_.libc."${deps."rand"."0.3.22"."libc"}" deps) @@ -1681,6 +1734,7 @@ rec { crates.rand."0.4.3" = deps: { features?(features_.rand."0.4.3" deps {}) }: buildRustCrate { crateName = "rand"; version = "0.4.3"; + description = "Random number generators and other randomness functionality.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1644wri45l147822xy7dgdm4k7myxzs66cb795ga0x7dan11ci4f"; dependencies = (if kernel == "fuchsia" then mapFeatures features ([ @@ -1698,19 +1752,19 @@ rec { fuchsia_zircon."${deps.rand."0.4.3".fuchsia_zircon}".default = true; libc."${deps.rand."0.4.3".libc}".default = true; rand = fold recursiveUpdate {} [ - { "0.4.3".default = (f.rand."0.4.3".default or true); } - { "0.4.3".i128_support = - (f.rand."0.4.3".i128_support or false) || + { "0.4.3"."i128_support" = + (f.rand."0.4.3"."i128_support" or false) || (f.rand."0.4.3".nightly or false) || (rand."0.4.3"."nightly" or false); } - { "0.4.3".libc = - (f.rand."0.4.3".libc or false) || + { "0.4.3"."libc" = + (f.rand."0.4.3"."libc" or false) || (f.rand."0.4.3".std or false) || (rand."0.4.3"."std" or false); } - { "0.4.3".std = - (f.rand."0.4.3".std or false) || + { "0.4.3"."std" = + (f.rand."0.4.3"."std" or false) || (f.rand."0.4.3".default or false) || (rand."0.4.3"."default" or false); } + { "0.4.3".default = (f.rand."0.4.3".default or true); } ]; winapi = fold recursiveUpdate {} [ { "${deps.rand."0.4.3".winapi}"."minwindef" = true; } @@ -1732,6 +1786,7 @@ rec { crates.rand."0.5.5" = deps: { features?(features_.rand."0.5.5" deps {}) }: buildRustCrate { crateName = "rand"; version = "0.5.5"; + description = "Random number generators and other randomness functionality.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0d7pnsh57qxhz1ghrzk113ddkn13kf2g758ffnbxq4nhwjfzhlc9"; dependencies = mapFeatures features ([ @@ -1758,43 +1813,43 @@ rec { fuchsia_zircon."${deps.rand."0.5.5".fuchsia_zircon}".default = true; libc."${deps.rand."0.5.5".libc}".default = true; rand = fold recursiveUpdate {} [ - { "0.5.5".alloc = - (f.rand."0.5.5".alloc or false) || + { "0.5.5"."alloc" = + (f.rand."0.5.5"."alloc" or false) || (f.rand."0.5.5".std or false) || (rand."0.5.5"."std" or false); } - { "0.5.5".cloudabi = - (f.rand."0.5.5".cloudabi or false) || + { "0.5.5"."cloudabi" = + (f.rand."0.5.5"."cloudabi" or false) || + (f.rand."0.5.5".std or false) || + (rand."0.5.5"."std" or false); } + { "0.5.5"."fuchsia-zircon" = + (f.rand."0.5.5"."fuchsia-zircon" or false) || + (f.rand."0.5.5".std or false) || + (rand."0.5.5"."std" or false); } + { "0.5.5"."i128_support" = + (f.rand."0.5.5"."i128_support" or false) || + (f.rand."0.5.5".nightly or false) || + (rand."0.5.5"."nightly" or false); } + { "0.5.5"."libc" = + (f.rand."0.5.5"."libc" or false) || + (f.rand."0.5.5".std or false) || + (rand."0.5.5"."std" or false); } + { "0.5.5"."serde" = + (f.rand."0.5.5"."serde" or false) || + (f.rand."0.5.5".serde1 or false) || + (rand."0.5.5"."serde1" or false); } + { "0.5.5"."serde_derive" = + (f.rand."0.5.5"."serde_derive" or false) || + (f.rand."0.5.5".serde1 or false) || + (rand."0.5.5"."serde1" or false); } + { "0.5.5"."std" = + (f.rand."0.5.5"."std" or false) || + (f.rand."0.5.5".default or false) || + (rand."0.5.5"."default" or false); } + { "0.5.5"."winapi" = + (f.rand."0.5.5"."winapi" or false) || (f.rand."0.5.5".std or false) || (rand."0.5.5"."std" or false); } { "0.5.5".default = (f.rand."0.5.5".default or true); } - { "0.5.5".fuchsia-zircon = - (f.rand."0.5.5".fuchsia-zircon or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5".i128_support = - (f.rand."0.5.5".i128_support or false) || - (f.rand."0.5.5".nightly or false) || - (rand."0.5.5"."nightly" or false); } - { "0.5.5".libc = - (f.rand."0.5.5".libc or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } - { "0.5.5".serde = - (f.rand."0.5.5".serde or false) || - (f.rand."0.5.5".serde1 or false) || - (rand."0.5.5"."serde1" or false); } - { "0.5.5".serde_derive = - (f.rand."0.5.5".serde_derive or false) || - (f.rand."0.5.5".serde1 or false) || - (rand."0.5.5"."serde1" or false); } - { "0.5.5".std = - (f.rand."0.5.5".std or false) || - (f.rand."0.5.5".default or false) || - (rand."0.5.5"."default" or false); } - { "0.5.5".winapi = - (f.rand."0.5.5".winapi or false) || - (f.rand."0.5.5".std or false) || - (rand."0.5.5"."std" or false); } ]; rand_core = fold recursiveUpdate {} [ { "${deps.rand."0.5.5".rand_core}"."alloc" = @@ -1833,6 +1888,7 @@ rec { crates.rand_core."0.2.2" = deps: { features?(features_.rand_core."0.2.2" deps {}) }: buildRustCrate { crateName = "rand_core"; version = "0.2.2"; + description = "Core random number generator traits and tools for implementation.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1cxnaxmsirz2wxsajsjkd1wk6lqfqbcprqkha4bq3didznrl22sc"; dependencies = mapFeatures features ([ @@ -1868,6 +1924,7 @@ rec { crates.rand_core."0.3.0" = deps: { features?(features_.rand_core."0.3.0" deps {}) }: buildRustCrate { crateName = "rand_core"; version = "0.3.0"; + description = "Core random number generator traits and tools for implementation.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "1vafw316apjys9va3j987s02djhqp7y21v671v3ix0p5j9bjq339"; dependencies = mapFeatures features ([ @@ -1876,23 +1933,23 @@ rec { }; features_.rand_core."0.3.0" = deps: f: updateFeatures f (rec { rand_core = fold recursiveUpdate {} [ - { "0.3.0".alloc = - (f.rand_core."0.3.0".alloc or false) || + { "0.3.0"."alloc" = + (f.rand_core."0.3.0"."alloc" or false) || (f.rand_core."0.3.0".std or false) || (rand_core."0.3.0"."std" or false); } - { "0.3.0".default = (f.rand_core."0.3.0".default or true); } - { "0.3.0".serde = - (f.rand_core."0.3.0".serde or false) || + { "0.3.0"."serde" = + (f.rand_core."0.3.0"."serde" or false) || (f.rand_core."0.3.0".serde1 or false) || (rand_core."0.3.0"."serde1" or false); } - { "0.3.0".serde_derive = - (f.rand_core."0.3.0".serde_derive or false) || + { "0.3.0"."serde_derive" = + (f.rand_core."0.3.0"."serde_derive" or false) || (f.rand_core."0.3.0".serde1 or false) || (rand_core."0.3.0"."serde1" or false); } - { "0.3.0".std = - (f.rand_core."0.3.0".std or false) || + { "0.3.0"."std" = + (f.rand_core."0.3.0"."std" or false) || (f.rand_core."0.3.0".default or false) || (rand_core."0.3.0"."default" or false); } + { "0.3.0".default = (f.rand_core."0.3.0".default or true); } ]; }) []; @@ -1903,6 +1960,7 @@ rec { crates.regex."0.1.80" = deps: { features?(features_.regex."0.1.80" deps {}) }: buildRustCrate { crateName = "regex"; version = "0.1.80"; + description = "An implementation of regular expressions for Rust. This implementation uses\nfinite automata and guarantees linear time matching on all inputs.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0y4s8ghhx6sgzb35irwivm3w0l2hhqhmdcd2px9hirqnkagal9l6"; dependencies = mapFeatures features ([ @@ -1918,11 +1976,11 @@ rec { aho_corasick."${deps.regex."0.1.80".aho_corasick}".default = true; memchr."${deps.regex."0.1.80".memchr}".default = true; regex = fold recursiveUpdate {} [ - { "0.1.80".default = (f.regex."0.1.80".default or true); } - { "0.1.80".simd = - (f.regex."0.1.80".simd or false) || + { "0.1.80"."simd" = + (f.regex."0.1.80"."simd" or false) || (f.regex."0.1.80".simd-accel or false) || (regex."0.1.80"."simd-accel" or false); } + { "0.1.80".default = (f.regex."0.1.80".default or true); } ]; regex_syntax."${deps.regex."0.1.80".regex_syntax}".default = true; thread_local."${deps.regex."0.1.80".thread_local}".default = true; @@ -1942,6 +2000,7 @@ rec { crates.regex_syntax."0.3.9" = deps: { features?(features_.regex_syntax."0.3.9" deps {}) }: buildRustCrate { crateName = "regex-syntax"; version = "0.3.9"; + description = "A regular expression parser."; authors = [ "The Rust Project Developers" ]; sha256 = "1mzhphkbwppwd1zam2jkgjk550cqgf6506i87bw2yzrvcsraiw7m"; }; @@ -1956,6 +2015,7 @@ rec { crates.rlua."0.9.7" = deps: { features?(features_.rlua."0.9.7" deps {}) }: buildRustCrate { crateName = "rlua"; version = "0.9.7"; + description = "High level bindings to Lua 5.3"; authors = [ "kyren " ]; sha256 = "1671b5ga54aq49sqx69hvnjr732hf9jpqwswwxgpcqq8q05mfzgp"; dependencies = mapFeatures features ([ @@ -1971,15 +2031,15 @@ rec { gcc."${deps.rlua."0.9.7".gcc}".default = true; libc."${deps.rlua."0.9.7".libc}".default = true; rlua = fold recursiveUpdate {} [ - { "0.9.7".builtin-lua = - (f.rlua."0.9.7".builtin-lua or false) || + { "0.9.7"."builtin-lua" = + (f.rlua."0.9.7"."builtin-lua" or false) || (f.rlua."0.9.7".default or false) || (rlua."0.9.7"."default" or false); } - { "0.9.7".default = (f.rlua."0.9.7".default or true); } - { "0.9.7".gcc = - (f.rlua."0.9.7".gcc or false) || + { "0.9.7"."gcc" = + (f.rlua."0.9.7"."gcc" or false) || (f.rlua."0.9.7".builtin-lua or false) || (rlua."0.9.7"."builtin-lua" or false); } + { "0.9.7".default = (f.rlua."0.9.7".default or true); } ]; }) [ (features_.libc."${deps."rlua"."0.9.7"."libc"}" deps) @@ -1993,6 +2053,7 @@ rec { crates.rustc_serialize."0.3.24" = deps: { features?(features_.rustc_serialize."0.3.24" deps {}) }: buildRustCrate { crateName = "rustc-serialize"; version = "0.3.24"; + description = "Generic serialization/deserialization support corresponding to the\n`derive(RustcEncodable, RustcDecodable)` mode in the compiler. Also includes\nsupport for hex, base64, and json encoding and decoding.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "0rfk6p66mqkd3g36l0ddlv2rvnp1mp3lrq5frq9zz5cbnz5pmmxn"; }; @@ -2007,6 +2068,7 @@ rec { crates.rustc_version."0.1.7" = deps: { features?(features_.rustc_version."0.1.7" deps {}) }: buildRustCrate { crateName = "rustc_version"; version = "0.1.7"; + description = "A library for querying the version of a installed rustc compiler"; authors = [ "Marvin Löbel " ]; sha256 = "0plm9pbyvcwfibd0kbhzil9xmr1bvqi8fgwlfw0x4vali8s6s99p"; dependencies = mapFeatures features ([ @@ -2027,6 +2089,7 @@ rec { crates.rustwlc."0.7.0" = deps: { features?(features_.rustwlc."0.7.0" deps {}) }: buildRustCrate { crateName = "rustwlc"; version = "0.7.0"; + description = "wlc Wayland library bindings for Rust"; authors = [ "Snirk Immington " "Timidger " ]; sha256 = "0gqi9pdw74al33ja25h33q68vnfklj3gpjgkiqqbr3gflgli5h1i"; build = "build.rs"; @@ -2041,11 +2104,11 @@ rec { bitflags."${deps.rustwlc."0.7.0".bitflags}".default = true; libc."${deps.rustwlc."0.7.0".libc}".default = true; rustwlc = fold recursiveUpdate {} [ - { "0.7.0".default = (f.rustwlc."0.7.0".default or true); } - { "0.7.0".wayland-sys = - (f.rustwlc."0.7.0".wayland-sys or false) || + { "0.7.0"."wayland-sys" = + (f.rustwlc."0.7.0"."wayland-sys" or false) || (f.rustwlc."0.7.0".wlc-wayland or false) || (rustwlc."0.7.0"."wlc-wayland" or false); } + { "0.7.0".default = (f.rustwlc."0.7.0".default or true); } ]; wayland_sys = fold recursiveUpdate {} [ { "${deps.rustwlc."0.7.0".wayland_sys}"."server" = true; } @@ -2064,6 +2127,7 @@ rec { crates.semver."0.1.20" = deps: { features?(features_.semver."0.1.20" deps {}) }: buildRustCrate { crateName = "semver"; version = "0.1.20"; + description = "Semantic version parsing and comparison.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "05cdig0071hls2k8lxbqmyqpl0zjmc53i2d43mwzps033b8njh4n"; }; @@ -2078,6 +2142,7 @@ rec { crates.serde."0.9.15" = deps: { features?(features_.serde."0.9.15" deps {}) }: buildRustCrate { crateName = "serde"; version = "0.9.15"; + description = "A generic serialization/deserialization framework"; authors = [ "Erick Tryzelaar " ]; sha256 = "0rlflkc57kvy69hnhj4arfsj7ic4hpihxsb00zg5lkdxfj5qjx9b"; dependencies = mapFeatures features ([ @@ -2086,29 +2151,29 @@ rec { }; features_.serde."0.9.15" = deps: f: updateFeatures f (rec { serde = fold recursiveUpdate {} [ - { "0.9.15".alloc = - (f.serde."0.9.15".alloc or false) || + { "0.9.15"."alloc" = + (f.serde."0.9.15"."alloc" or false) || (f.serde."0.9.15".collections or false) || (serde."0.9.15"."collections" or false); } - { "0.9.15".default = (f.serde."0.9.15".default or true); } - { "0.9.15".serde_derive = - (f.serde."0.9.15".serde_derive or false) || + { "0.9.15"."serde_derive" = + (f.serde."0.9.15"."serde_derive" or false) || (f.serde."0.9.15".derive or false) || (serde."0.9.15"."derive" or false) || (f.serde."0.9.15".playground or false) || (serde."0.9.15"."playground" or false); } - { "0.9.15".std = - (f.serde."0.9.15".std or false) || + { "0.9.15"."std" = + (f.serde."0.9.15"."std" or false) || (f.serde."0.9.15".default or false) || (serde."0.9.15"."default" or false) || (f.serde."0.9.15".unstable-testing or false) || (serde."0.9.15"."unstable-testing" or false); } - { "0.9.15".unstable = - (f.serde."0.9.15".unstable or false) || + { "0.9.15"."unstable" = + (f.serde."0.9.15"."unstable" or false) || (f.serde."0.9.15".alloc or false) || (serde."0.9.15"."alloc" or false) || (f.serde."0.9.15".unstable-testing or false) || (serde."0.9.15"."unstable-testing" or false); } + { "0.9.15".default = (f.serde."0.9.15".default or true); } ]; }) []; @@ -2119,6 +2184,7 @@ rec { crates.serde_json."0.9.10" = deps: { features?(features_.serde_json."0.9.10" deps {}) }: buildRustCrate { crateName = "serde_json"; version = "0.9.10"; + description = "A JSON serialization file format"; authors = [ "Erick Tryzelaar " ]; sha256 = "0g6bxlfnvf2miicnsizyrxm686rfval6gbss1i2qcna8msfwc005"; dependencies = mapFeatures features ([ @@ -2135,11 +2201,11 @@ rec { num_traits."${deps.serde_json."0.9.10".num_traits}".default = true; serde."${deps.serde_json."0.9.10".serde}".default = true; serde_json = fold recursiveUpdate {} [ - { "0.9.10".default = (f.serde_json."0.9.10".default or true); } - { "0.9.10".linked-hash-map = - (f.serde_json."0.9.10".linked-hash-map or false) || + { "0.9.10"."linked-hash-map" = + (f.serde_json."0.9.10"."linked-hash-map" or false) || (f.serde_json."0.9.10".preserve_order or false) || (serde_json."0.9.10"."preserve_order" or false); } + { "0.9.10".default = (f.serde_json."0.9.10".default or true); } ]; }) [ (features_.dtoa."${deps."serde_json"."0.9.10"."dtoa"}" deps) @@ -2155,6 +2221,7 @@ rec { crates.siphasher."0.2.3" = deps: { features?(features_.siphasher."0.2.3" deps {}) }: buildRustCrate { crateName = "siphasher"; version = "0.2.3"; + description = "SipHash functions from rust-core < 1.13"; authors = [ "Frank Denis " ]; sha256 = "1ganj1grxqnkvv4ds3vby039bm999jrr58nfq2x3kjhzkw2bnqkw"; }; @@ -2169,6 +2236,7 @@ rec { crates.target_build_utils."0.3.1" = deps: { features?(features_.target_build_utils."0.3.1" deps {}) }: buildRustCrate { crateName = "target_build_utils"; version = "0.3.1"; + description = "DEPRECATED: Use Cargo environment variables `CARGO_CFG_TARGET_*`"; authors = [ "Simonas Kazlauskas " ]; sha256 = "1b450nyxlbgicp2p45mhxiv6yv0z7s4iw01lsaqh3v7b4bm53flj"; build = "build.rs"; @@ -2187,11 +2255,11 @@ rec { phf_codegen."${deps.target_build_utils."0.3.1".phf_codegen}".default = true; serde_json."${deps.target_build_utils."0.3.1".serde_json}".default = true; target_build_utils = fold recursiveUpdate {} [ - { "0.3.1".default = (f.target_build_utils."0.3.1".default or true); } - { "0.3.1".serde_json = - (f.target_build_utils."0.3.1".serde_json or false) || + { "0.3.1"."serde_json" = + (f.target_build_utils."0.3.1"."serde_json" or false) || (f.target_build_utils."0.3.1".default or false) || (target_build_utils."0.3.1"."default" or false); } + { "0.3.1".default = (f.target_build_utils."0.3.1".default or true); } ]; }) [ (features_.phf."${deps."target_build_utils"."0.3.1"."phf"}" deps) @@ -2206,6 +2274,7 @@ rec { crates.thread_id."2.0.0" = deps: { features?(features_.thread_id."2.0.0" deps {}) }: buildRustCrate { crateName = "thread-id"; version = "2.0.0"; + description = "Get a unique thread ID"; authors = [ "Ruud van Asseldonk " ]; sha256 = "06i3c8ckn97i5rp16civ2vpqbknlkx66dkrl070iw60nawi0kjc3"; dependencies = mapFeatures features ([ @@ -2229,6 +2298,7 @@ rec { crates.thread_local."0.2.7" = deps: { features?(features_.thread_local."0.2.7" deps {}) }: buildRustCrate { crateName = "thread_local"; version = "0.2.7"; + description = "Per-object thread-local storage"; authors = [ "Amanieu d'Antras " ]; sha256 = "19p0zrs24rdwjvpi10jig5ms3sxj00pv8shkr9cpddri8cdghqp7"; dependencies = mapFeatures features ([ @@ -2249,6 +2319,7 @@ rec { crates.token_store."0.1.2" = deps: { features?(features_.token_store."0.1.2" deps {}) }: buildRustCrate { crateName = "token_store"; version = "0.1.2"; + description = "A token-based store for arbitrary values"; authors = [ "Victor Berger " ]; sha256 = "1v7acraqyh6iibg87pwkxm41v783sminxm5k9f4ndra7r0vq4zvq"; }; @@ -2263,6 +2334,7 @@ rec { crates.unicode_width."0.1.5" = deps: { features?(features_.unicode_width."0.1.5" deps {}) }: buildRustCrate { crateName = "unicode-width"; version = "0.1.5"; + description = "Determine displayed width of `char` and `str` types\naccording to Unicode Standard Annex #11 rules.\n"; authors = [ "kwantam " ]; sha256 = "0886lc2aymwgy0lhavwn6s48ik3c61ykzzd3za6prgnw51j7bi4w"; features = mkFeatures (features."unicode_width"."0.1.5" or {}); @@ -2278,6 +2350,7 @@ rec { crates.utf8_ranges."0.1.3" = deps: { features?(features_.utf8_ranges."0.1.3" deps {}) }: buildRustCrate { crateName = "utf8-ranges"; version = "0.1.3"; + description = "Convert ranges of Unicode codepoints to UTF-8 byte ranges."; authors = [ "Andrew Gallant " ]; sha256 = "1cj548a91a93j8375p78qikaiam548xh84cb0ck8y119adbmsvbp"; }; @@ -2292,6 +2365,7 @@ rec { crates.uuid."0.3.1" = deps: { features?(features_.uuid."0.3.1" deps {}) }: buildRustCrate { crateName = "uuid"; version = "0.3.1"; + description = "A library to generate and parse UUIDs.\n"; authors = [ "The Rust Project Developers" ]; sha256 = "16ak1c84dfkd8h33cvkxrkvc30k7b0bhrnza8ni2c0jsx85fpbip"; dependencies = mapFeatures features ([ @@ -2304,15 +2378,15 @@ rec { rand."${deps.uuid."0.3.1".rand}".default = true; rustc_serialize."${deps.uuid."0.3.1".rustc_serialize}".default = true; uuid = fold recursiveUpdate {} [ - { "0.3.1".default = (f.uuid."0.3.1".default or true); } - { "0.3.1".rand = - (f.uuid."0.3.1".rand or false) || + { "0.3.1"."rand" = + (f.uuid."0.3.1"."rand" or false) || (f.uuid."0.3.1".v4 or false) || (uuid."0.3.1"."v4" or false); } - { "0.3.1".sha1 = - (f.uuid."0.3.1".sha1 or false) || + { "0.3.1"."sha1" = + (f.uuid."0.3.1"."sha1" or false) || (f.uuid."0.3.1".v5 or false) || (uuid."0.3.1"."v5" or false); } + { "0.3.1".default = (f.uuid."0.3.1".default or true); } ]; }) [ (features_.rand."${deps."uuid"."0.3.1"."rand"}" deps) @@ -2326,17 +2400,18 @@ rec { crates.void."1.0.2" = deps: { features?(features_.void."1.0.2" deps {}) }: buildRustCrate { crateName = "void"; version = "1.0.2"; + description = "The uninhabited void type for use in statically impossible cases."; authors = [ "Jonathan Reem " ]; sha256 = "0h1dm0dx8dhf56a83k68mijyxigqhizpskwxfdrs1drwv2cdclv3"; features = mkFeatures (features."void"."1.0.2" or {}); }; features_.void."1.0.2" = deps: f: updateFeatures f (rec { void = fold recursiveUpdate {} [ - { "1.0.2".default = (f.void."1.0.2".default or true); } - { "1.0.2".std = - (f.void."1.0.2".std or false) || + { "1.0.2"."std" = + (f.void."1.0.2"."std" or false) || (f.void."1.0.2".default or false) || (void."1.0.2"."default" or false); } + { "1.0.2".default = (f.void."1.0.2".default or true); } ]; }) []; @@ -2347,6 +2422,7 @@ rec { crates.way_cooler."0.8.1" = deps: { features?(features_.way_cooler."0.8.1" deps {}) }: buildRustCrate { crateName = "way-cooler"; version = "0.8.1"; + description = "Customizeable Wayland compositor written in Rust"; authors = [ "Snirk Immington " "Timidger " ]; sha256 = "01cp5z0qf522d7cvsr9gfp7f4hkphmp38hv70dsf9lvcnp6p1qkc"; build = "build.rs"; @@ -2357,7 +2433,7 @@ rec { (crates."dbus"."${deps."way_cooler"."0.8.1"."dbus"}" deps) (crates."dbus_macros"."${deps."way_cooler"."0.8.1"."dbus_macros"}" deps) (crates."env_logger"."${deps."way_cooler"."0.8.1"."env_logger"}" deps) - (crates."gdk-pixbuf"."${deps."way_cooler"."0.8.1"."gdk-pixbuf"}" deps) + (crates."gdk_pixbuf"."${deps."way_cooler"."0.8.1"."gdk_pixbuf"}" deps) (crates."getopts"."${deps."way_cooler"."0.8.1"."getopts"}" deps) (crates."glib"."${deps."way_cooler"."0.8.1"."glib"}" deps) (crates."json_macro"."${deps."way_cooler"."0.8.1"."json_macro"}" deps) @@ -2386,7 +2462,7 @@ rec { dbus."${deps.way_cooler."0.8.1".dbus}".default = true; dbus_macros."${deps.way_cooler."0.8.1".dbus_macros}".default = true; env_logger."${deps.way_cooler."0.8.1".env_logger}".default = true; - gdk-pixbuf."${deps.way_cooler."0.8.1".gdk-pixbuf}".default = true; + gdk_pixbuf."${deps.way_cooler."0.8.1".gdk_pixbuf}".default = true; getopts."${deps.way_cooler."0.8.1".getopts}".default = true; glib."${deps.way_cooler."0.8.1".glib}".default = true; json_macro."${deps.way_cooler."0.8.1".json_macro}".default = true; @@ -2434,7 +2510,7 @@ rec { (features_.dbus."${deps."way_cooler"."0.8.1"."dbus"}" deps) (features_.dbus_macros."${deps."way_cooler"."0.8.1"."dbus_macros"}" deps) (features_.env_logger."${deps."way_cooler"."0.8.1"."env_logger"}" deps) - (features_.gdk-pixbuf."${deps."way_cooler"."0.8.1"."gdk-pixbuf"}" deps) + (features_.gdk_pixbuf."${deps."way_cooler"."0.8.1"."gdk_pixbuf"}" deps) (features_.getopts."${deps."way_cooler"."0.8.1"."getopts"}" deps) (features_.glib."${deps."way_cooler"."0.8.1"."glib"}" deps) (features_.json_macro."${deps."way_cooler"."0.8.1"."json_macro"}" deps) @@ -2459,6 +2535,7 @@ rec { crates.wayland_scanner."0.12.5" = deps: { features?(features_.wayland_scanner."0.12.5" deps {}) }: buildRustCrate { crateName = "wayland-scanner"; version = "0.12.5"; + description = "Wayland Scanner for generating rust APIs from XML wayland protocol files. Intented for use with wayland-sys. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings."; authors = [ "Victor Berger " ]; sha256 = "1s0fsc3pff0fxvzqsy8n018smwacih9ix8ww0yf969aa0vak15dz"; dependencies = mapFeatures features ([ @@ -2479,6 +2556,7 @@ rec { crates.wayland_server."0.12.5" = deps: { features?(features_.wayland_server."0.12.5" deps {}) }: buildRustCrate { crateName = "wayland-server"; version = "0.12.5"; + description = "Bindings to the standard C implementation of the wayland protocol, server side."; authors = [ "Victor Berger " ]; sha256 = "17g0m9afcmi24ylirw4l8i70s5849x7m4b5nxk9k13s5pkza68ag"; build = "build.rs"; @@ -2526,6 +2604,7 @@ rec { crates.wayland_sys."0.6.0" = deps: { features?(features_.wayland_sys."0.6.0" deps {}) }: buildRustCrate { crateName = "wayland-sys"; version = "0.6.0"; + description = "FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings."; authors = [ "Victor Berger " ]; sha256 = "0m6db0kld2d4xv4ai9kxlqrh362hwi0030b4zbss0sfha1hx5mfl"; dependencies = mapFeatures features ([ @@ -2544,15 +2623,15 @@ rec { ]; libc."${deps.wayland_sys."0.6.0".libc}".default = true; wayland_sys = fold recursiveUpdate {} [ - { "0.6.0".default = (f.wayland_sys."0.6.0".default or true); } - { "0.6.0".lazy_static = - (f.wayland_sys."0.6.0".lazy_static or false) || + { "0.6.0"."lazy_static" = + (f.wayland_sys."0.6.0"."lazy_static" or false) || (f.wayland_sys."0.6.0".dlopen or false) || (wayland_sys."0.6.0"."dlopen" or false); } - { "0.6.0".libc = - (f.wayland_sys."0.6.0".libc or false) || + { "0.6.0"."libc" = + (f.wayland_sys."0.6.0"."libc" or false) || (f.wayland_sys."0.6.0".server or false) || (wayland_sys."0.6.0"."server" or false); } + { "0.6.0".default = (f.wayland_sys."0.6.0".default or true); } ]; }) [ (features_.dlib."${deps."wayland_sys"."0.6.0"."dlib"}" deps) @@ -2566,6 +2645,7 @@ rec { crates.wayland_sys."0.9.10" = deps: { features?(features_.wayland_sys."0.9.10" deps {}) }: buildRustCrate { crateName = "wayland-sys"; version = "0.9.10"; + description = "FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings."; authors = [ "Victor Berger " ]; sha256 = "011q7lfii222whvif39asvryl1sf3rc1fxp8qs8gh84kr4mna0k8"; dependencies = mapFeatures features ([ @@ -2586,15 +2666,15 @@ rec { lazy_static."${deps.wayland_sys."0.9.10".lazy_static}".default = true; libc."${deps.wayland_sys."0.9.10".libc}".default = true; wayland_sys = fold recursiveUpdate {} [ - { "0.9.10".default = (f.wayland_sys."0.9.10".default or true); } - { "0.9.10".lazy_static = - (f.wayland_sys."0.9.10".lazy_static or false) || + { "0.9.10"."lazy_static" = + (f.wayland_sys."0.9.10"."lazy_static" or false) || (f.wayland_sys."0.9.10".dlopen or false) || (wayland_sys."0.9.10"."dlopen" or false); } - { "0.9.10".libc = - (f.wayland_sys."0.9.10".libc or false) || + { "0.9.10"."libc" = + (f.wayland_sys."0.9.10"."libc" or false) || (f.wayland_sys."0.9.10".server or false) || (wayland_sys."0.9.10"."server" or false); } + { "0.9.10".default = (f.wayland_sys."0.9.10".default or true); } ]; }) [ (features_.dlib."${deps."wayland_sys"."0.9.10"."dlib"}" deps) @@ -2609,6 +2689,7 @@ rec { crates.wayland_sys."0.12.5" = deps: { features?(features_.wayland_sys."0.12.5" deps {}) }: buildRustCrate { crateName = "wayland-sys"; version = "0.12.5"; + description = "FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings."; authors = [ "Victor Berger " ]; sha256 = "0mwk5vc7mibxka5w66vy2qj32b72d1srqvp36nr15xfl9lwf3dc4"; dependencies = mapFeatures features ([ @@ -2629,15 +2710,15 @@ rec { lazy_static."${deps.wayland_sys."0.12.5".lazy_static}".default = true; libc."${deps.wayland_sys."0.12.5".libc}".default = true; wayland_sys = fold recursiveUpdate {} [ - { "0.12.5".default = (f.wayland_sys."0.12.5".default or true); } - { "0.12.5".lazy_static = - (f.wayland_sys."0.12.5".lazy_static or false) || + { "0.12.5"."lazy_static" = + (f.wayland_sys."0.12.5"."lazy_static" or false) || (f.wayland_sys."0.12.5".dlopen or false) || (wayland_sys."0.12.5"."dlopen" or false); } - { "0.12.5".libc = - (f.wayland_sys."0.12.5".libc or false) || + { "0.12.5"."libc" = + (f.wayland_sys."0.12.5"."libc" or false) || (f.wayland_sys."0.12.5".server or false) || (wayland_sys."0.12.5"."server" or false); } + { "0.12.5".default = (f.wayland_sys."0.12.5".default or true); } ]; }) [ (features_.dlib."${deps."wayland_sys"."0.12.5"."dlib"}" deps) @@ -2652,6 +2733,7 @@ rec { crates.winapi."0.2.8" = deps: { features?(features_.winapi."0.2.8" deps {}) }: buildRustCrate { crateName = "winapi"; version = "0.2.8"; + description = "Types and constants for WinAPI bindings. See README for list of crates providing function bindings."; authors = [ "Peter Atashian " ]; sha256 = "0a45b58ywf12vb7gvj6h3j264nydynmzyqz8d8rqxsj6icqv82as"; }; @@ -2666,6 +2748,7 @@ rec { crates.winapi."0.3.6" = deps: { features?(features_.winapi."0.3.6" deps {}) }: buildRustCrate { crateName = "winapi"; version = "0.3.6"; + description = "Raw FFI bindings for all of Windows API."; authors = [ "Peter Atashian " ]; sha256 = "1d9jfp4cjd82sr1q4dgdlrkvm33zhhav9d7ihr0nivqbncr059m4"; build = "build.rs"; @@ -2693,6 +2776,7 @@ rec { crates.winapi_build."0.1.1" = deps: { features?(features_.winapi_build."0.1.1" deps {}) }: buildRustCrate { crateName = "winapi-build"; version = "0.1.1"; + description = "Common code for build.rs in WinAPI -sys crates."; authors = [ "Peter Atashian " ]; sha256 = "1lxlpi87rkhxcwp2ykf1ldw3p108hwm24nywf3jfrvmff4rjhqga"; libName = "build"; @@ -2708,6 +2792,7 @@ rec { crates.winapi_i686_pc_windows_gnu."0.4.0" = deps: { features?(features_.winapi_i686_pc_windows_gnu."0.4.0" deps {}) }: buildRustCrate { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; + description = "Import libraries for the i686-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."; authors = [ "Peter Atashian " ]; sha256 = "05ihkij18r4gamjpxj4gra24514can762imjzlmak5wlzidplzrp"; build = "build.rs"; @@ -2723,6 +2808,7 @@ rec { crates.winapi_x86_64_pc_windows_gnu."0.4.0" = deps: { features?(features_.winapi_x86_64_pc_windows_gnu."0.4.0" deps {}) }: buildRustCrate { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; + description = "Import libraries for the x86_64-pc-windows-gnu target. Please don't use this crate directly, depend on winapi instead."; authors = [ "Peter Atashian " ]; sha256 = "0n1ylmlsb8yg1v583i4xy0qmqg42275flvbc51hdqjjfjcl9vlbj"; build = "build.rs"; @@ -2738,6 +2824,7 @@ rec { crates.xcb."0.8.2" = deps: { features?(features_.xcb."0.8.2" deps {}) }: buildRustCrate { crateName = "xcb"; version = "0.8.2"; + description = "Rust bindings and wrappers for XCB"; authors = [ "Remi Thebault " ]; sha256 = "06l8jms57wvz01vx82a3cwak9b9qwdkadvpmkk1zimy2qg7i7dkl"; build = "build.rs"; @@ -2755,41 +2842,40 @@ rec { libc."${deps.xcb."0.8.2".libc}".default = true; log."${deps.xcb."0.8.2".log}".default = true; xcb = fold recursiveUpdate {} [ - { "0.8.2".composite = - (f.xcb."0.8.2".composite or false) || + { "0.8.2"."composite" = + (f.xcb."0.8.2"."composite" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".damage = - (f.xcb."0.8.2".damage or false) || + { "0.8.2"."damage" = + (f.xcb."0.8.2"."damage" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".default = (f.xcb."0.8.2".default or true); } - { "0.8.2".dpms = - (f.xcb."0.8.2".dpms or false) || + { "0.8.2"."dpms" = + (f.xcb."0.8.2"."dpms" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".dri2 = - (f.xcb."0.8.2".dri2 or false) || + { "0.8.2"."dri2" = + (f.xcb."0.8.2"."dri2" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".dri3 = - (f.xcb."0.8.2".dri3 or false) || + { "0.8.2"."dri3" = + (f.xcb."0.8.2"."dri3" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".glx = - (f.xcb."0.8.2".glx or false) || + { "0.8.2"."glx" = + (f.xcb."0.8.2"."glx" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".randr = - (f.xcb."0.8.2".randr or false) || + { "0.8.2"."randr" = + (f.xcb."0.8.2"."randr" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".record = - (f.xcb."0.8.2".record or false) || + { "0.8.2"."record" = + (f.xcb."0.8.2"."record" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".render = - (f.xcb."0.8.2".render or false) || + { "0.8.2"."render" = + (f.xcb."0.8.2"."render" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false) || (f.xcb."0.8.2".present or false) || @@ -2798,44 +2884,44 @@ rec { (xcb."0.8.2"."randr" or false) || (f.xcb."0.8.2".xfixes or false) || (xcb."0.8.2"."xfixes" or false); } - { "0.8.2".res = - (f.xcb."0.8.2".res or false) || + { "0.8.2"."res" = + (f.xcb."0.8.2"."res" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".screensaver = - (f.xcb."0.8.2".screensaver or false) || + { "0.8.2"."screensaver" = + (f.xcb."0.8.2"."screensaver" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".shape = - (f.xcb."0.8.2".shape or false) || + { "0.8.2"."shape" = + (f.xcb."0.8.2"."shape" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false) || (f.xcb."0.8.2".xfixes or false) || (xcb."0.8.2"."xfixes" or false); } - { "0.8.2".shm = - (f.xcb."0.8.2".shm or false) || + { "0.8.2"."shm" = + (f.xcb."0.8.2"."shm" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false) || (f.xcb."0.8.2".xv or false) || (xcb."0.8.2"."xv" or false); } - { "0.8.2".sync = - (f.xcb."0.8.2".sync or false) || + { "0.8.2"."sync" = + (f.xcb."0.8.2"."sync" or false) || (f.xcb."0.8.2".present or false) || (xcb."0.8.2"."present" or false); } - { "0.8.2".thread = - (f.xcb."0.8.2".thread or false) || + { "0.8.2"."thread" = + (f.xcb."0.8.2"."thread" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xevie = - (f.xcb."0.8.2".xevie or false) || + { "0.8.2"."xevie" = + (f.xcb."0.8.2"."xevie" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xf86dri = - (f.xcb."0.8.2".xf86dri or false) || + { "0.8.2"."xf86dri" = + (f.xcb."0.8.2"."xf86dri" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xfixes = - (f.xcb."0.8.2".xfixes or false) || + { "0.8.2"."xfixes" = + (f.xcb."0.8.2"."xfixes" or false) || (f.xcb."0.8.2".composite or false) || (xcb."0.8.2"."composite" or false) || (f.xcb."0.8.2".damage or false) || @@ -2846,40 +2932,41 @@ rec { (xcb."0.8.2"."present" or false) || (f.xcb."0.8.2".xinput or false) || (xcb."0.8.2"."xinput" or false); } - { "0.8.2".xinerama = - (f.xcb."0.8.2".xinerama or false) || + { "0.8.2"."xinerama" = + (f.xcb."0.8.2"."xinerama" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xkb = - (f.xcb."0.8.2".xkb or false) || + { "0.8.2"."xkb" = + (f.xcb."0.8.2"."xkb" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xlib_xcb = - (f.xcb."0.8.2".xlib_xcb or false) || + { "0.8.2"."xlib_xcb" = + (f.xcb."0.8.2"."xlib_xcb" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xprint = - (f.xcb."0.8.2".xprint or false) || + { "0.8.2"."xprint" = + (f.xcb."0.8.2"."xprint" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xselinux = - (f.xcb."0.8.2".xselinux or false) || + { "0.8.2"."xselinux" = + (f.xcb."0.8.2"."xselinux" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xtest = - (f.xcb."0.8.2".xtest or false) || + { "0.8.2"."xtest" = + (f.xcb."0.8.2"."xtest" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } - { "0.8.2".xv = - (f.xcb."0.8.2".xv or false) || + { "0.8.2"."xv" = + (f.xcb."0.8.2"."xv" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false) || (f.xcb."0.8.2".xvmc or false) || (xcb."0.8.2"."xvmc" or false); } - { "0.8.2".xvmc = - (f.xcb."0.8.2".xvmc or false) || + { "0.8.2"."xvmc" = + (f.xcb."0.8.2"."xvmc" or false) || (f.xcb."0.8.2".debug_all or false) || (xcb."0.8.2"."debug_all" or false); } + { "0.8.2".default = (f.xcb."0.8.2".default or true); } ]; }) [ (features_.libc."${deps."xcb"."0.8.2"."libc"}" deps) @@ -2894,6 +2981,7 @@ rec { crates.xml_rs."0.7.0" = deps: { features?(features_.xml_rs."0.7.0" deps {}) }: buildRustCrate { crateName = "xml-rs"; version = "0.7.0"; + description = "An XML library in pure Rust"; authors = [ "Vladimir Matveev " ]; sha256 = "12rynhqjgkg2hzy9x1d1232p9d9jm40bc3by5yzjv8gx089mflyb"; libPath = "src/lib.rs"; From 14be42251cf26545dd6ce10402cea331f2f903f2 Mon Sep 17 00:00:00 2001 From: Luke Petre Date: Tue, 23 Jul 2019 00:16:21 +0100 Subject: [PATCH 0938/1611] squashfuse - fix sha for 0.1.103 This sha was from 0.1.101 Before: ``` rev = "540204955134eee44201d50132a5f66a246bcfaf"; sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq"; these paths will be fetched (2.21 MiB download, 12.08 MiB unpacked): /nix/store/847cqb062fl6j0vxp2mk3kx392711kyw-pcre-8.43 /nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9 /nix/store/gnkgv4i8kkn6zf1d6v7bzmsf8ksv3yys-lzo-2.10 /nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0 /nix/store/hzjx5kj1s5a5aj28wsk22vpggs1jcqnw-util-linux-2.33.1-bin /nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3 /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3 /nix/store/rqmcbh8hxms5pc92z4namrqx8hanfjyl-util-linux-2.33.1 /nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103 copying path '/nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3' from 'https://cache.nixos.org'... copying path '/nix/store/gnkgv4i8kkn6zf1d6v7bzmsf8ksv3yys-lzo-2.10' from 'https://cache.nixos.org'... copying path '/nix/store/847cqb062fl6j0vxp2mk3kx392711kyw-pcre-8.43' from 'https://cache.nixos.org'... copying path '/nix/store/rqmcbh8hxms5pc92z4namrqx8hanfjyl-util-linux-2.33.1' from 'https://cache.nixos.org'... copying path '/nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3' from 'https://cache.nixos.org'... copying path '/nix/store/hzjx5kj1s5a5aj28wsk22vpggs1jcqnw-util-linux-2.33.1-bin' from 'https://cache.nixos.org'... copying path '/nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0' from 'https://cache.nixos.org'... copying path '/nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9' from 'https://cache.nixos.org'... copying path '/nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103' from 'https://cache.nixos.org'... /nix/store/x16x3l0xjad9mbyvn6405y340l28iwcq-squashfuse-0.1.103 -bash-4.4# ./result/bin/squashfuse_ll -h squashfuse 0.1.101 (c) 2012 Dave Vasilevsky ``` After: ``` rev = "540204955134eee44201d50132a5f66a246bcfaf"; sha256 = "062s77y32p80vc24a79z31g90b9wxzvws1xvicgx5fn1pd0xa0q6"; these derivations will be built: /nix/store/kqa03vhiazr4x5bsmn8k7q2ld2hmx44z-source.drv /nix/store/gcl771ydc882l7vnw5vadpnr4xni3hdh-squashfuse-0.1.103.drv these paths will be fetched (55.13 MiB download, 252.08 MiB unpacked): /nix/store/0bjp89ji70xl81j55wg2ixkf9xmaijcv-bison-3.3.2 /nix/store/0dsk1x8j94pzd65fnysjc6wa1zad1s3d-nghttp2-1.38.0 /nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6 /nix/store/31raqw28q43v4spkfzsiiihqx2jm5a8i-unzip-6.0 /nix/store/3h8wyghnjzk8hn4f5zhwvvlwq9xrpry8-expand-response-params /nix/store/3k6hy33b1dkdfldii7s5f4vy9lll74x5-mirrors-list /nix/store/5c5yyihla8kzzy82sa1bf34m61isfzm1-linux-headers-4.19.16 /nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0 /nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1 /nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1 /nix/store/7vhy5372gjpfj9day5wrvch54mwj4l8d-stdenv-linux /nix/store/96sxibafi2h67xljsgkh9ix2j616iqrd-nghttp2-1.38.0-dev /nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1 /nix/store/bz73l5rgz7wffmfxwqnsdz48vzh7il95-c-ares-1.15.0 /nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1 /nix/store/dd6g1cvqk791l7zqznfhfqi1pgy56qdx-curl-7.64.1-dev /nix/store/dmjc6zqbr5h36rw3jy9qzcnl3mgnl1n8-hook /nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7 /nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6 /nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18 /nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2 /nix/store/gx3xv0vnfrxf7zfb8h2hnw9pzzkygixy-libssh2-1.8.2-dev /nix/store/h9n269c03cky1q0h30y88px26fxmbwv7-nghttp2-1.38.0-bin /nix/store/i12myp4crs9blcjxbs598di17cp018h9-openssl-1.0.2r-bin /nix/store/i546smf3my4rvn2ymxarzzgivcvwksly-openssl-1.0.2r-dev /nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0 /nix/store/jg5rlm10r0yvdmx0g8nl5z2rqjndfdzd-curl-7.64.1-bin /nix/store/jh11qj0kjsv5bslrdvn7qdcacah54d1j-xz-5.2.4-dev /nix/store/jyqagsh6yhfbx5w0xspwi91lfr3nyvda-stdenv-linux /nix/store/n0pjpb8gq2bd7nadav6ziz3xz7rvxx6z-libkrb5-1.17-dev /nix/store/nsnwjpp0yihpjhh9036hljzihjkawrip-ed-1.15 /nix/store/prnm6wrsgfqcs684ymprnjvn1w6g10jg-lz4-1.8.3-dev /nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0 /nix/store/riaglhp3igiyi5r9ahg9yw9p6nb7iwi3-curl-7.64.1-man /nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1 /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69 /nix/store/skc18xbf3sb6ik2q201qw42hjg8fq9r1-libev-4.25 /nix/store/wzn5g91zj8ajqzdwwlyxcwaw4y1bj04h-perl-5.28.2 /nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1 /nix/store/yhm526ifvk6cb217r28h8m8vv2n3qzp8-libtool-2.4.6-lib /nix/store/yjdnj9pcjgb09xif4ngmf13vb8npklys-glibc-2.27-dev /nix/store/yya1b8cb81jv4i348f4kpaspafs1xqhi-zlib-1.2.11-dev /nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9 copying path '/nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1' from 'https://cache.nixos.org'... copying path '/nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1' from 'https://cache.nixos.org'... copying path '/nix/store/bz73l5rgz7wffmfxwqnsdz48vzh7il95-c-ares-1.15.0' from 'https://cache.nixos.org'... copying path '/nix/store/jg5rlm10r0yvdmx0g8nl5z2rqjndfdzd-curl-7.64.1-bin' from 'https://cache.nixos.org'... copying path '/nix/store/riaglhp3igiyi5r9ahg9yw9p6nb7iwi3-curl-7.64.1-man' from 'https://cache.nixos.org'... copying path '/nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7' from 'https://cache.nixos.org'... copying path '/nix/store/nsnwjpp0yihpjhh9036hljzihjkawrip-ed-1.15' from 'https://cache.nixos.org'... copying path '/nix/store/3h8wyghnjzk8hn4f5zhwvvlwq9xrpry8-expand-response-params' from 'https://cache.nixos.org'... copying path '/nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0' from 'https://cache.nixos.org'... copying path '/nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18' from 'https://cache.nixos.org'... copying path '/nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1' from 'https://cache.nixos.org'... copying path '/nix/store/0bjp89ji70xl81j55wg2ixkf9xmaijcv-bison-3.3.2' from 'https://cache.nixos.org'... copying path '/nix/store/skc18xbf3sb6ik2q201qw42hjg8fq9r1-libev-4.25' from 'https://cache.nixos.org'... copying path '/nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1' from 'https://cache.nixos.org'... copying path '/nix/store/n0pjpb8gq2bd7nadav6ziz3xz7rvxx6z-libkrb5-1.17-dev' from 'https://cache.nixos.org'... copying path '/nix/store/gx3xv0vnfrxf7zfb8h2hnw9pzzkygixy-libssh2-1.8.2-dev' from 'https://cache.nixos.org'... copying path '/nix/store/yhm526ifvk6cb217r28h8m8vv2n3qzp8-libtool-2.4.6-lib' from 'https://cache.nixos.org'... copying path '/nix/store/5c5yyihla8kzzy82sa1bf34m61isfzm1-linux-headers-4.19.16' from 'https://cache.nixos.org'... copying path '/nix/store/prnm6wrsgfqcs684ymprnjvn1w6g10jg-lz4-1.8.3-dev' from 'https://cache.nixos.org'... copying path '/nix/store/yjdnj9pcjgb09xif4ngmf13vb8npklys-glibc-2.27-dev' from 'https://cache.nixos.org'... copying path '/nix/store/3k6hy33b1dkdfldii7s5f4vy9lll74x5-mirrors-list' from 'https://cache.nixos.org'... copying path '/nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1' from 'https://cache.nixos.org'... copying path '/nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0' from 'https://cache.nixos.org'... copying path '/nix/store/0dsk1x8j94pzd65fnysjc6wa1zad1s3d-nghttp2-1.38.0' from 'https://cache.nixos.org'... copying path '/nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0' from 'https://cache.nixos.org'... copying path '/nix/store/h9n269c03cky1q0h30y88px26fxmbwv7-nghttp2-1.38.0-bin' from 'https://cache.nixos.org'... copying path '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6' from 'https://cache.nixos.org'... copying path '/nix/store/96sxibafi2h67xljsgkh9ix2j616iqrd-nghttp2-1.38.0-dev' from 'https://cache.nixos.org'... copying path '/nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6' from 'https://cache.nixos.org'... copying path '/nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9' from 'https://cache.nixos.org'... copying path '/nix/store/wzn5g91zj8ajqzdwwlyxcwaw4y1bj04h-perl-5.28.2' from 'https://cache.nixos.org'... copying path '/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2' from 'https://cache.nixos.org'... copying path '/nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69' from 'https://cache.nixos.org'... copying path '/nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1' from 'https://cache.nixos.org'... copying path '/nix/store/i12myp4crs9blcjxbs598di17cp018h9-openssl-1.0.2r-bin' from 'https://cache.nixos.org'... copying path '/nix/store/dmjc6zqbr5h36rw3jy9qzcnl3mgnl1n8-hook' from 'https://cache.nixos.org'... copying path '/nix/store/i546smf3my4rvn2ymxarzzgivcvwksly-openssl-1.0.2r-dev' from 'https://cache.nixos.org'... copying path '/nix/store/7vhy5372gjpfj9day5wrvch54mwj4l8d-stdenv-linux' from 'https://cache.nixos.org'... copying path '/nix/store/jyqagsh6yhfbx5w0xspwi91lfr3nyvda-stdenv-linux' from 'https://cache.nixos.org'... copying path '/nix/store/31raqw28q43v4spkfzsiiihqx2jm5a8i-unzip-6.0' from 'https://cache.nixos.org'... copying path '/nix/store/jh11qj0kjsv5bslrdvn7qdcacah54d1j-xz-5.2.4-dev' from 'https://cache.nixos.org'... copying path '/nix/store/yya1b8cb81jv4i348f4kpaspafs1xqhi-zlib-1.2.11-dev' from 'https://cache.nixos.org'... copying path '/nix/store/dd6g1cvqk791l7zqznfhfqi1pgy56qdx-curl-7.64.1-dev' from 'https://cache.nixos.org'... building '/nix/store/kqa03vhiazr4x5bsmn8k7q2ld2hmx44z-source.drv'... trying https://github.com/vasi/squashfuse/archive/540204955134eee44201d50132a5f66a246bcfaf.tar.gz % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 157 0 157 0 0 501 0 --:--:-- --:--:-- --:--:-- 501 100 58730 0 58730 0 0 56362 0 --:--:-- 0:00:01 --:--:-- 284k unpacking source archive /tmp/nix-build-source.drv-0/540204955134eee44201d50132a5f66a246bcfaf.tar.gz building '/nix/store/gcl771ydc882l7vnw5vadpnr4xni3hdh-squashfuse-0.1.103.drv'... unpacking sources unpacking source archive /nix/store/3634l5iajqgh2q1nj5w4xkk8kb9rb9mh-source source root is source patching sources autoreconfPhase autoreconf: Entering directory `.' autoreconf: configure.ac: not using Gettext autoreconf: running: aclocal --force -I m4 --install aclocal: installing 'm4/pkg.m4' from '/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/share/aclocal/pkg.m4' aclocal: installing 'm4/libtool.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/libtool.m4' aclocal: installing 'm4/ltoptions.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltoptions.m4' aclocal: installing 'm4/ltsugar.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltsugar.m4' aclocal: installing 'm4/ltversion.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/ltversion.m4' aclocal: installing 'm4/lt~obsolete.m4' from '/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/share/aclocal/lt~obsolete.m4' autoreconf: configure.ac: tracing autoreconf: configure.ac: creating directory build-aux autoreconf: running: libtoolize --copy --force libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'build-aux'. libtoolize: copying file 'build-aux/ltmain.sh' libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'. libtoolize: copying file 'm4/libtool.m4' libtoolize: copying file 'm4/ltoptions.m4' libtoolize: copying file 'm4/ltsugar.m4' libtoolize: copying file 'm4/ltversion.m4' libtoolize: copying file 'm4/lt~obsolete.m4' autoreconf: running: /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin/autoconf --force autoreconf: running: /nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin/autoheader --force autoreconf: running: automake --add-missing --copy --force-missing configure.ac:8: installing 'build-aux/ar-lib' configure.ac:8: installing 'build-aux/compile' configure.ac:5: installing 'build-aux/config.guess' configure.ac:5: installing 'build-aux/config.sub' configure.ac:6: installing 'build-aux/install-sh' configure.ac:6: installing 'build-aux/missing' Makefile.am: installing 'build-aux/depcomp' autoreconf: Leaving directory `.' configuring fixing libtool script ./build-aux/ltmain.sh configure flags: --disable-static --disable-dependency-tracking --prefix=/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103 checking build system type... x86_64-pc-linux-gnu checking host system type... x86_64-pc-linux-gnu checking target system type... x86_64-pc-linux-gnu checking for a BSD-compatible install... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c checking whether build environment is sane... yes checking for a thread-safe mkdir -p... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether make supports the include directive... yes (GNU style) checking for gcc... gcc checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables... checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether gcc accepts -g... yes checking for gcc option to accept ISO C89... none needed checking whether gcc understands -c and -o together... yes checking dependency style of gcc... none checking the archiver (ar) interface... ar checking how to print strings... printf checking for a sed that does not truncate output... /nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed checking for grep that handles long lines and -e... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep checking for egrep... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep -E checking for fgrep... /nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin/grep -F checking for ld used by gcc... ld checking if the linker (ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... nm checking the name lister (nm) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... 1572864 checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop checking for ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for archiver @FILE support... @ checking for strip... strip checking for ranlib... ranlib checking command to parse nm output from gcc object... ok checking for sysroot... no checking for a working dd... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/dd checking how to truncate binary pipes... /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/dd bs=4096 count=1 ./configure: line 6862: /usr/bin/file: No such file or directory checking for mt... no checking if : is a manifest tool... no checking how to run the C preprocessor... gcc -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking for dlfcn.h... yes checking for objdir... .libs checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC -DPIC checking if gcc PIC flag -fPIC -DPIC works... yes checking if gcc static flag -static works... no checking if gcc supports -c -o file.o... yes checking if gcc supports -c -o file.o... (cached) yes checking whether the gcc linker (ld) supports shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... no checking for pkg-config... /nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/bin/pkg-config checking pkg-config is at least version 0.9.0... yes checking for gawk... (cached) gawk checking for a sed that does not truncate output... (cached) /nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed checking how to run the C preprocessor... gcc -E checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for option for POSIX-2001 preprocessor... none checking how to enable all compiler warnings... -Wall checking for QNX makedev... no checking for sys/mkdev.h... no checking for sys/sysmacros.h... yes configure: checking for definition needed by makedev checking if makedev works without changes... yes configure: checking for definition needed by pread checking if pread works without changes... no checking if pread requires changing _DARWIN_C_SOURCE... no checking if pread requires changing _NETBSD_SOURCE... no checking if pread requires changing _XOPEN_SOURCE... yes configure: checking for definition needed by S_IFSOCK checking if S_IFSOCK works without changes... no checking if S_IFSOCK requires changing _DARWIN_C_SOURCE... no checking if S_IFSOCK requires changing _NETBSD_SOURCE... no checking if S_IFSOCK requires changing _XOPEN_SOURCE... yes checking for attr/xattr.h... no configure: checking for definition needed by ENOATTR checking if ENOATTR works without changes... no checking if ENOATTR requires changing _DARWIN_C_SOURCE... no checking if ENOATTR requires changing _NETBSD_SOURCE... no checking if ENOATTR requires changing _XOPEN_SOURCE... no checking if ENOATTR requires changing _BSD_SOURCE... no checking if ENOATTR requires changing _GNU_SOURCE... no checking if ENOATTR requires changing _POSIX_C_SOURCE... no checking for library containing uncompress... -lz checking zlib.h usability... yes checking zlib.h presence... yes checking for zlib.h... yes checking for liblzma... yes checking for library containing lzma_stream_buffer_decode... none required checking lzma.h usability... yes checking lzma.h presence... yes checking for lzma.h... yes checking for library containing lzo1x_decompress_safe... -llzo2 checking lzo/lzo1x.h usability... yes checking lzo/lzo1x.h presence... yes checking for lzo/lzo1x.h... yes checking for library containing LZ4_decompress_safe... -llz4 checking lz4.h usability... yes checking lz4.h presence... yes checking for lz4.h... yes checking for library containing ZSTD_decompress... -lzstd checking zstd.h usability... yes checking zstd.h presence... yes checking for zstd.h... yes checking for fuse >= 2.5... yes checking for FUSE library... already present checking for FUSE header... yes checking whether fuse_lowlevel_new is declared... yes checking for fuse_lowlevel_new... yes checking whether fuse_add_direntry is declared... yes checking whether fuse_add_dirent is declared... no checking whether fuse_daemonize is declared... yes checking whether fuse_session_remove_chan is declared... yes checking for two-argument fuse_unmount... yes checking for position argument to FUSE xattr operations... no checking if make supports export... yes checking for __le16... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating squashfuse.pc config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands Compression support ....... : ZLIB XZ LZO LZ4 ZSTD High-level FUSE driver .... : yes Low-level FUSE driver ..... : yes Demo program .............. : yes building build flags: SHELL=/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash make all-am make[1]: Entering directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source' CC squashfuse-hl.o SED="/nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin/sed" ./gen_swap.sh ./squashfs_fs.h CC libsquashfuse_la-swap.lo CC libsquashfuse_la-cache.lo CC libsquashfuse_la-table.lo CC libsquashfuse_la-dir.lo CC libsquashfuse_la-file.lo CC libsquashfuse_la-fs.lo CC libsquashfuse_la-decompress.lo CC libsquashfuse_la-xattr.lo CC libsquashfuse_la-hash.lo CC libsquashfuse_la-stack.lo CC libsquashfuse_la-traverse.lo CC libsquashfuse_la-util.lo CC libsquashfuse_la-nonstd-pread.lo CC libsquashfuse_la-nonstd-stat.lo CCLD libsquashfuse.la CC libfuseprivate_la-fuseprivate.lo CC libfuseprivate_la-nonstd-makedev.lo CC libfuseprivate_la-nonstd-enoattr.lo CCLD libfuseprivate.la CCLD squashfuse CC squashfuse_ll-ll.o CC squashfuse_ll-ll_inode.o CC squashfuse_ll-nonstd-daemon.o CCLD squashfuse_ll CC ls.o CCLD squashfuse_ls CC squashfuse_extract-extract.o extract.c: In function 'sqfs_stat': extract.c:51:17: warning: implicit declaration of function 'sqfs_makedev'; did you mean 'sqfs_mode'? [-Wimplicit-function-declaration] st->st_rdev = sqfs_makedev(inode->xtra.dev.major, ^~~~~~~~~~~~ sqfs_mode CCLD squashfuse_extract make[1]: Leaving directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source' installing install flags: SHELL=/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash install make[1]: Entering directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib' /nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash ./libtool --mode=install /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c libsquashfuse.la libfuseprivate.la '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib' libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libsquashfuse.so.0.0.0 /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.so.0.0.0 libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libsquashfuse.so.0.0.0 libsquashfuse.so.0 || { rm -f libsquashfuse.so.0 && ln -s libsquashfuse.so.0.0.0 libsquashfuse.so.0; }; }) libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libsquashfuse.so.0.0.0 libsquashfuse.so || { rm -f libsquashfuse.so && ln -s libsquashfuse.so.0.0.0 libsquashfuse.so; }; }) libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libsquashfuse.lai /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.la libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libfuseprivate.so.0.0.0 /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.so.0.0.0 libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libfuseprivate.so.0.0.0 libfuseprivate.so.0 || { rm -f libfuseprivate.so.0 && ln -s libfuseprivate.so.0.0.0 libfuseprivate.so.0; }; }) libtool: install: (cd /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib && { ln -s -f libfuseprivate.so.0.0.0 libfuseprivate.so || { rm -f libfuseprivate.so && ln -s libfuseprivate.so.0.0.0 libfuseprivate.so; }; }) libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/libfuseprivate.lai /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.la libtool: finish: PATH="/nix/store/sahaj6vg42sfvdpmv43l4h4hxqaj4h1g-autoconf-2.69/bin:/nix/store/xvq0kcfh5z66j6ir1fskn0cx3n3qbc44-automake-1.16.1/bin:/nix/store/ry56l2m6y8ajx7613vvq17rqgffzga6f-gettext-0.19.8.1/bin:/nix/store/fzdm7x4j4nf8d4a8lrcabbf4zi7s0ys6-libtool-2.4.6/bin:/nix/store/g6rhmp2xcdzgibhx1i4b32gvsxbcqj09-gnum4-1.4.18/bin:/nix/store/gk7whjwi6zg4a94v3pk5fk108m2x4d6z-pkg-config-0.29.2/bin:/nix/store/zw60vbl6khdzcx8vwivm7gwz4bvam3xy-patchelf-0.9/bin:/nix/store/ra3441ikg993p85kw3p1cnnm1g73h6hk-gcc-wrapper-7.4.0/bin:/nix/store/6a1djj4dvsd8bdvs544krj64zlq2d1xf-gcc-7.4.0/bin:/nix/store/ngf4xva3wvw1m0pb84v9h4jgl784lxkh-glibc-2.27-bin/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/c8ifvpkrr7lgr3j475gabqzs5bm8sk4z-binutils-wrapper-2.31.1/bin:/nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1/bin:/nix/store/ngf4xva3wvw1m0pb84v9h4jgl784lxkh-glibc-2.27-bin/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/mki5p8408jklwf0znj9160r4msjzglk3-lz4-1.8.3/bin:/nix/store/hx8iii059gcfp2530kj453cbbx55rqlw-xz-5.2.4-bin/bin:/nix/store/hl4hc5i5x8dv8p5l09mb4i7p8d8kfy9n-zstd-1.4.0/bin:/nix/store/cb9f9d1a1gg9kyjb5bzaxwg7zjfb1wrs-fuse-2.9.9/bin:/nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin:/nix/store/j2mb6w72ycxpmabhhprbz3biczfnr27r-findutils-4.6.0/bin:/nix/store/dsjpr08xs2bcr9bphcmd53m8if31z2kk-diffutils-3.7/bin:/nix/store/cch4zpdfh5acdx913dfvwjlvjy0a0ajz-gnused-4.7/bin:/nix/store/mzvffy1yvzq8mhygga1r7q0npc7qcdnb-gnugrep-3.3/bin:/nix/store/b2fy54j80bizmnfaqxy3rl0vk2006jm4-gawk-4.2.1/bin:/nix/store/qxpnd7kdz119phdvhfica39pzbyi05sl-gnutar-1.32/bin:/nix/store/iyjjp49s7w3lm2w9n2p26vxzg0qyhbpk-gzip-1.10/bin:/nix/store/11hv812f14jzb3xjgb3g48z8b5rr71z9-bzip2-1.0.6.0.1-bin/bin:/nix/store/6yg0jj8x9agnzqh94nxxlfwjjxjn2z35-gnumake-4.2.1/bin:/nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin:/nix/store/2czn8xhnpx82802v4lww80r4q6s3xhyk-patch-2.7.6/bin:/nix/store/hx8iii059gcfp2530kj453cbbx55rqlw-xz-5.2.4-bin/bin:/sbin" ldconfig -n /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib ---------------------------------------------------------------------- Libraries have been installed in: /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the '-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the 'LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the 'LD_RUN_PATH' environment variable during linking - use the '-Wl,-rpath -Wl,LIBDIR' linker flag See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin' /nix/store/2ch3pwfv40ls6qhdmzwsz9wky9pq6cyl-bash-4.4-p23/bin/bash ./libtool --mode=install /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c squashfuse squashfuse_ll '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin' libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/squashfuse /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse libtool: install: /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c .libs/squashfuse_ll /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse_ll /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/include' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.h squashfs_fs.h '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/include' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/man1' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.1 '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/man1' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/mkdir -p '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/pkgconfig' /nix/store/dfsviv3myzcwzc9l416xv92w1j33av25-coreutils-8.31/bin/install -c -m 644 squashfuse.pc '/nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/pkgconfig' make[1]: Leaving directory '/tmp/nix-build-squashfuse-0.1.103.drv-0/source' post-installation fixup shrinking RPATHs of ELF executables and libraries in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103 shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libsquashfuse.so.0.0.0 shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib/libfuseprivate.so.0.0.0 shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse_ll shrinking /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin/squashfuse gzipping man pages under /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/share/man/ strip is /nix/store/6yjpyqkx6d9k5f2s2g8h9kz40q6rz1yx-binutils-2.31.1/bin/strip stripping (with command strip and flags -S) in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/lib /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103/bin patching script interpreter paths in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103 checking for references to /tmp/nix-build-squashfuse-0.1.103.drv-0/ in /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103... /nix/store/2f121bjbx0pkybs962q45878rhv66z5p-squashfuse-0.1.103 -bash-4.4# ./result/bin/squashfuse_ll -h squashfuse 0.1.103 (c) 2012 Dave Vasilevsky ``` --- pkgs/tools/filesystems/squashfuse/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/filesystems/squashfuse/default.nix b/pkgs/tools/filesystems/squashfuse/default.nix index d7d917d5e9f..40e350846c5 100644 --- a/pkgs/tools/filesystems/squashfuse/default.nix +++ b/pkgs/tools/filesystems/squashfuse/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { owner = "vasi"; repo = "${pname}"; rev = "540204955134eee44201d50132a5f66a246bcfaf"; - sha256 = "07jv4qjjz9ky3mw3p5prgs19g1bna9dcd7jjdz8083s1wyipdgcq"; + sha256 = "062s77y32p80vc24a79z31g90b9wxzvws1xvicgx5fn1pd0xa0q6"; }; nativeBuildInputs = [ autoreconfHook libtool pkgconfig ]; From 290cfc767c810226dde1db7e070a34e5fb8a11a1 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 23 Jul 2019 05:08:28 +0200 Subject: [PATCH 0939/1611] postgresql: fix systemd support See comments in #61581. versionAtLeast was called with arguments in the wrong order. --- pkgs/servers/sql/postgresql/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 6e2c928837c..ba4fd8e3d38 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -7,7 +7,7 @@ let , pkgconfig, libxml2, tzdata # This is important to obtain a version of `libpq` that does not depend on systemd. - , enableSystemd ? (lib.versionAtLeast "9.6" version && !stdenv.isDarwin) + , enableSystemd ? (lib.versionAtLeast version "9.6" && !stdenv.isDarwin) # for postgreql.pkgs , this, self, newScope, buildEnv From 5ccfa0c816860a32e2687a034d6bd8bbd6ed2709 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Tue, 29 Jan 2019 20:38:47 -0500 Subject: [PATCH 0940/1611] nixos/modules: add greenclip user service --- nixos/modules/module-list.nix | 1 + nixos/modules/services/misc/greenclip.nix | 31 +++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 nixos/modules/services/misc/greenclip.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 1b944199a66..0b8ed530889 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -422,6 +422,7 @@ ./services/misc/gollum.nix ./services/misc/gpsd.nix ./services/misc/headphones.nix + ./services/misc/greenclip.nix ./services/misc/home-assistant.nix ./services/misc/ihaskell.nix ./services/misc/irkerd.nix diff --git a/nixos/modules/services/misc/greenclip.nix b/nixos/modules/services/misc/greenclip.nix new file mode 100644 index 00000000000..21d8365697a --- /dev/null +++ b/nixos/modules/services/misc/greenclip.nix @@ -0,0 +1,31 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.greenclip; +in { + + options.services.greenclip = { + enable = mkEnableOption "Whether to enable the greenclip daemon that will listen to selections"; + + package = mkOption { + type = types.package; + default = pkgs.haskellPackages.greenclip; + defaultText = "pkgs.haskellPackages.greenclip"; + description = "greenclip derivation to use."; + }; + }; + + config = mkIf cfg.enable { + systemd.user.services.greenclip = { + enable = true; + description = "greenclip daemon"; + wantedBy = [ "graphical-session.target" ]; + after = [ "graphical-session.target" ]; + serviceConfig.ExecStart = "${cfg.package}/bin/greenclip daemon"; + }; + + environment.systemPackages = [ cfg.package ]; + }; +} From dfd3a0269cc9b9ca4cd03e8c1799e103ebc203e0 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Mon, 22 Jul 2019 19:50:21 -0500 Subject: [PATCH 0941/1611] Shorten mkEnableOption description --- nixos/modules/services/misc/greenclip.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/greenclip.nix b/nixos/modules/services/misc/greenclip.nix index 21d8365697a..9152a782d7f 100644 --- a/nixos/modules/services/misc/greenclip.nix +++ b/nixos/modules/services/misc/greenclip.nix @@ -7,7 +7,7 @@ let in { options.services.greenclip = { - enable = mkEnableOption "Whether to enable the greenclip daemon that will listen to selections"; + enable = mkEnableOption "Greenclip daemon"; package = mkOption { type = types.package; From 39a34ec20f714a6285a7cd2c9accbc0ee4787fa2 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Fri, 12 Jul 2019 10:54:55 +0200 Subject: [PATCH 0942/1611] bitwig-studio3: add version 3 --- .../audio/bitwig-studio/bitwig-studio3.nix | 16 ++++++++++++++++ pkgs/top-level/all-packages.nix | 5 ++++- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix new file mode 100644 index 00000000000..45054764a10 --- /dev/null +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix @@ -0,0 +1,16 @@ +{ fetchurl, bitwig-studio1, + pulseaudio }: + +bitwig-studio1.overrideAttrs (oldAttrs: rec { + name = "bitwig-studio-${version}"; + version = "3.0"; + + src = fetchurl { + url = "https://downloads.bitwig.com/stable/${version}/bitwig-studio-${version}.deb"; + sha256 = "0p7wi1srfzalb0rl94vqppfbnxdfwqzgg5blkdwkf4sx977aihpv"; + }; + + runtimeDependencies = [ + pulseaudio + ]; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b56dbe6c15..6f752268e31 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17121,7 +17121,10 @@ in bitwig-studio2 = callPackage ../applications/audio/bitwig-studio/bitwig-studio2.nix { inherit (pkgs) bitwig-studio1; }; - bitwig-studio = bitwig-studio2; + bitwig-studio3 = callPackage ../applications/audio/bitwig-studio/bitwig-studio3.nix { + inherit (pkgs) bitwig-studio1; + }; + bitwig-studio = bitwig-studio3; bgpdump = callPackage ../tools/networking/bgpdump { }; From 356d9ad758b75674108cb0fbe22238acf260816d Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 23 Jul 2019 03:43:21 -0400 Subject: [PATCH 0943/1611] nixos/pantheon: don't add extraPortals Pantheon's XDG Portal is still WIP and we it's probably not proper to use gtk's one. --- nixos/modules/services/x11/desktop-managers/pantheon.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/pantheon.nix b/nixos/modules/services/x11/desktop-managers/pantheon.nix index c0eae1eb8d4..41903b33fae 100644 --- a/nixos/modules/services/x11/desktop-managers/pantheon.nix +++ b/nixos/modules/services/x11/desktop-managers/pantheon.nix @@ -145,8 +145,6 @@ in isSystem = true; }; - xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; - networking.networkmanager.enable = mkDefault true; networking.networkmanager.basePackages = { inherit (pkgs) networkmanager modemmanager wpa_supplicant; From e765dde91096854a872ded32566ad242280c12cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 23 Jul 2019 10:10:51 +0200 Subject: [PATCH 0944/1611] antora: include site-generator-default --- .../node-packages/node-packages-v10.json | 3 +- .../node-packages/node-packages-v10.nix | 816 ++++++++++++++++-- .../tools/documentation/antora/default.nix | 25 + pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 768 insertions(+), 78 deletions(-) create mode 100644 pkgs/development/tools/documentation/antora/default.nix diff --git a/pkgs/development/node-packages/node-packages-v10.json b/pkgs/development/node-packages/node-packages-v10.json index 26599311625..8ca43faed78 100644 --- a/pkgs/development/node-packages/node-packages-v10.json +++ b/pkgs/development/node-packages/node-packages-v10.json @@ -1,7 +1,8 @@ [ "@angular/cli" -, "asar" , "@antora/cli" +, "@antora/site-generator-default" +, "asar" , "aws-azure-login" , "azure-functions-core-tools" , "bash-language-server" diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix index cac338aa815..e2e539efb43 100644 --- a/pkgs/development/node-packages/node-packages-v10.nix +++ b/pkgs/development/node-packages/node-packages-v10.nix @@ -40,6 +40,69 @@ let sha512 = "Di/3vPR4jwdYcMAk13t19sAF0qQUH8KSkFcmO/5E/gECTL1tXNvV690K1Vhn6zpeE17Z1MLB5HwRNcb6nJkD+Q=="; }; }; + "@antora/asciidoc-loader-2.0.0" = { + name = "_at_antora_slash_asciidoc-loader"; + packageName = "@antora/asciidoc-loader"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/asciidoc-loader/-/asciidoc-loader-2.0.0.tgz"; + sha512 = "kbpSBMM618Do5dXtG5mC5kk8VEXYDsciJ0orw7vrYeFzRBbR4Y4qpzbsQeuQNB4r2iLoztxErvg04SBb5CsGdQ=="; + }; + }; + "@antora/content-aggregator-2.0.0" = { + name = "_at_antora_slash_content-aggregator"; + packageName = "@antora/content-aggregator"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/content-aggregator/-/content-aggregator-2.0.0.tgz"; + sha512 = "24JQSDQZ609yJHs7abIqF5FikNg0EWvFwBYck1Kbl5vRikmDTpSMBhhPKJhAVe4lREm6/FVYO7t9CEmjp69prA=="; + }; + }; + "@antora/content-classifier-2.0.0" = { + name = "_at_antora_slash_content-classifier"; + packageName = "@antora/content-classifier"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/content-classifier/-/content-classifier-2.0.0.tgz"; + sha512 = "d1MB57X3AaXy30rw+dudxbJ2cdw/Uk1U4JxHbWIkdrEJKty2fbnBu3xjyb70qAv5G0ayovJpqZOaR+YwS0ibbQ=="; + }; + }; + "@antora/document-converter-2.0.0" = { + name = "_at_antora_slash_document-converter"; + packageName = "@antora/document-converter"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/document-converter/-/document-converter-2.0.0.tgz"; + sha512 = "8slnLdeMxI4kU64fMsNp58HjpFYZ7chrl5tCYr1/4Jr00fVHwn8vx2YS1cKyowcrmb9uG6YI/pMNt9F3kjTtYA=="; + }; + }; + "@antora/expand-path-helper-1.0.0" = { + name = "_at_antora_slash_expand-path-helper"; + packageName = "@antora/expand-path-helper"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/expand-path-helper/-/expand-path-helper-1.0.0.tgz"; + sha512 = "hg3y6M3OvRTb7jtLAnwwloYDxafbyKYttcf16kGCXvP7Wqosh7c+Ag+ltaZ7VSebpzpphO/umb/BXdpU7rxapw=="; + }; + }; + "@antora/navigation-builder-2.0.0" = { + name = "_at_antora_slash_navigation-builder"; + packageName = "@antora/navigation-builder"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/navigation-builder/-/navigation-builder-2.0.0.tgz"; + sha512 = "tuI2dNDy9sqgkHoiqn52M0lWrxxOafrEUIPSskjyGf0MjFP3pBPKnHiBmAl2r+NhXCAfcIb5khe4rSS18bfiVA=="; + }; + }; + "@antora/page-composer-2.0.0" = { + name = "_at_antora_slash_page-composer"; + packageName = "@antora/page-composer"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/page-composer/-/page-composer-2.0.0.tgz"; + sha512 = "1I0vhO6UCyNJRLYICTU+jCTEmkHeJ13tao0nfOOAiSyamDkyX7vM935qfzGBjwZdur8Clq4jpiCuvFTmXMtIfQ=="; + }; + }; "@antora/playbook-builder-2.0.0" = { name = "_at_antora_slash_playbook-builder"; packageName = "@antora/playbook-builder"; @@ -49,6 +112,42 @@ let sha512 = "uLU4+rpIRZiMit8s1lkbiz5L5V8cPL40RJMRHFb4B7k2PXbvNiZZAMHZBeFgVwfJIKmKAIeUCDgOHgiBIlFc+A=="; }; }; + "@antora/redirect-producer-2.0.0" = { + name = "_at_antora_slash_redirect-producer"; + packageName = "@antora/redirect-producer"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/redirect-producer/-/redirect-producer-2.0.0.tgz"; + sha512 = "qlRPGNAhtbIOWK9XHEdH4Iiaz1/8SBvm5rK46R4YinjZqMibMehOfFoIdRf2qsE9mfOsYKwKUSF8Jnv/emXuJw=="; + }; + }; + "@antora/site-mapper-2.0.0" = { + name = "_at_antora_slash_site-mapper"; + packageName = "@antora/site-mapper"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/site-mapper/-/site-mapper-2.0.0.tgz"; + sha512 = "rPpDLuJbM7c0fNpzf95qrxsjzNAXuyACXE+FXUOwmFp3SYIFGEWATLk1MMNes7SfLAchMMVwjEr1Uii3D5+/Mw=="; + }; + }; + "@antora/site-publisher-2.0.0" = { + name = "_at_antora_slash_site-publisher"; + packageName = "@antora/site-publisher"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/site-publisher/-/site-publisher-2.0.0.tgz"; + sha512 = "kjKfQSEpcLiw653h9IzCG+L9sYm/v9GXAcbzXN1IYoNPO1Od0EPQ2RXGviqeQNYcWJLyRq48cQpNx7o2/KqVag=="; + }; + }; + "@antora/ui-loader-2.0.0" = { + name = "_at_antora_slash_ui-loader"; + packageName = "@antora/ui-loader"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/ui-loader/-/ui-loader-2.0.0.tgz"; + sha512 = "CaD+Dp13G7EZhEr6Jg6OEvPHjJZ2FROXwdaY4XP+vBrKmI+QZwS3V+uG0NYbCRxhR1W8N8CYm5hc1UTvGH19cA=="; + }; + }; "@apollographql/apollo-tools-0.3.7" = { name = "_at_apollographql_slash_apollo-tools"; packageName = "@apollographql/apollo-tools"; @@ -4936,6 +5035,15 @@ let sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; }; }; + "asciidoctor.js-1.5.9" = { + name = "asciidoctor.js"; + packageName = "asciidoctor.js"; + version = "1.5.9"; + src = fetchurl { + url = "https://registry.npmjs.org/asciidoctor.js/-/asciidoctor.js-1.5.9.tgz"; + sha512 = "k5JgwyV82TsiCpnYbDPReuHhzf/vRUt6NaZ+OGywkDDGeGG/CPfvN2Gd1MJ0iIZKDyuk4iJHOdY/2x1KBrWMzA=="; + }; + }; "ascli-0.3.0" = { name = "ascli"; packageName = "ascli"; @@ -5215,6 +5323,15 @@ let sha512 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="; }; }; + "async-lock-1.2.2" = { + name = "async-lock"; + packageName = "async-lock"; + version = "1.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/async-lock/-/async-lock-1.2.2.tgz"; + sha512 = "uczz62z2fMWOFbyo6rG4NlV2SdxugJT6sZA2QcfB1XaSjEiOh8CuOb/TttyMnYQCda6nkWecJe465tGQDPJiKw=="; + }; + }; "async-mutex-0.1.3" = { name = "async-mutex"; packageName = "async-mutex"; @@ -6034,6 +6151,15 @@ let sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; }; }; + "base64-js-0.0.2" = { + name = "base64-js"; + packageName = "base64-js"; + version = "0.0.2"; + src = fetchurl { + url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz"; + sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784"; + }; + }; "base64-js-0.0.8" = { name = "base64-js"; packageName = "base64-js"; @@ -6196,6 +6322,15 @@ let sha512 = "IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A=="; }; }; + "benchmark-1.0.0" = { + name = "benchmark"; + packageName = "benchmark"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz"; + sha1 = "2f1e2fa4c359f11122aa183082218e957e390c73"; + }; + }; "bencode-0.7.0" = { name = "bencode"; packageName = "bencode"; @@ -6421,13 +6556,13 @@ let sha512 = "fvb6M58Ceiv/S94nu6zeaiMoJvUYOeIqRbgaClm+kJTzCAqJPtAR/31pXNYB5iEReOoKqQB5zY33gY0W6ZRWQQ=="; }; }; - "bittorrent-dht-9.0.0" = { + "bittorrent-dht-9.0.1" = { name = "bittorrent-dht"; packageName = "bittorrent-dht"; - version = "9.0.0"; + version = "9.0.1"; src = fetchurl { - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-9.0.0.tgz"; - sha512 = "X5ax4G/PLtEPfqOUjqDZ2nmPENndWRMK4sT2jcQ4sXor904zhR40r4KqTyTvWYAljh5/hPPqM9DCUUtqWzRXoQ=="; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-9.0.1.tgz"; + sha512 = "DgymMDZyv5y0pyys73pFa3rImRliqxkiDvVwJ35e+co6MHQJ30M5ZvTstwJ38CtdMlF36RoLnL2z14ICl7pv/A=="; }; }; "bittorrent-peerid-1.3.0" = { @@ -6484,6 +6619,15 @@ let sha512 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="; }; }; + "bl-2.2.0" = { + name = "bl"; + packageName = "bl"; + version = "2.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/bl/-/bl-2.2.0.tgz"; + sha512 = "wbgvOpqopSr7uq6fJrLH8EsvYMJf9gzfo2jCsL2eTy75qXPukA4pCgHamOQkZtY5vmfVtjB+P3LNlMHW5CEZXA=="; + }; + }; "bl-3.0.0" = { name = "bl"; packageName = "bl"; @@ -6745,6 +6889,15 @@ let sha512 = "SiHJE2jEXjAL3TewN99wDl5Ehpm5DKA75oIyiY+2EMWWMPhIuZlQ/AvDzsLktNkwhylmAVLwiW+nuBPIU7kcoQ=="; }; }; + "bops-0.0.7" = { + name = "bops"; + packageName = "bops"; + version = "0.0.7"; + src = fetchurl { + url = "https://registry.npmjs.org/bops/-/bops-0.0.7.tgz"; + sha1 = "b4a0a5a839a406454af0fe05a8b91a7a766a54e2"; + }; + }; "bottleneck-1.5.3" = { name = "bottleneck"; packageName = "bottleneck"; @@ -7492,6 +7645,15 @@ let sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; }; }; + "cache-directory-2.0.0" = { + name = "cache-directory"; + packageName = "cache-directory"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/cache-directory/-/cache-directory-2.0.0.tgz"; + sha512 = "7YKEapH+2Uikde8hySyfobXBqPKULDyHNl/lhKm7cKf/GJFdG/tU/WpLrOg2y9aUrQrWUilYqawFIiGJPS6gDA=="; + }; + }; "cacheable-request-2.1.4" = { name = "cacheable-request"; packageName = "cacheable-request"; @@ -8248,6 +8410,15 @@ let sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g=="; }; }; + "clean-git-ref-1.0.3" = { + name = "clean-git-ref"; + packageName = "clean-git-ref"; + version = "1.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/clean-git-ref/-/clean-git-ref-1.0.3.tgz"; + sha1 = "5325dc839eab01c974ae0e97f5734782750f88ec"; + }; + }; "clean-stack-1.3.0" = { name = "clean-stack"; packageName = "clean-stack"; @@ -10111,6 +10282,15 @@ let sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ=="; }; }; + "crc-32-1.2.0" = { + name = "crc-32"; + packageName = "crc-32"; + version = "1.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/crc-32/-/crc-32-1.2.0.tgz"; + sha512 = "1uBwHxF+Y/4yF5G48fwnKq6QsIXheor3ZLPT80yGBV1oEUwpPojlEhQbWKVw1VwcTQyMGHK1/XMmTjmlsmTTGA=="; + }; + }; "crc32-stream-2.0.0" = { name = "crc32-stream"; packageName = "crc32-stream"; @@ -11848,6 +12028,15 @@ let sha512 = "s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q=="; }; }; + "diff-lines-1.1.1" = { + name = "diff-lines"; + packageName = "diff-lines"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/diff-lines/-/diff-lines-1.1.1.tgz"; + sha512 = "Oo5JzEEriF/+T0usOeRP5yOzr6SWvni2rrxvIgijMZSxPcEvf8JOvCO5GpnWwkte7fcOgnue/f5ECg1H9lMPCw=="; + }; + }; "diff-match-patch-1.0.4" = { name = "diff-match-patch"; packageName = "diff-match-patch"; @@ -12586,13 +12775,13 @@ let sha512 = "PcW2a0tyTuPHz3tWyYqtK6r1fZ3gp+3Sop8Ph+ZYN81Ob5rwmbHEzaqs10N3BEsaGTkh/ooniXK+WwszGlc2+Q=="; }; }; - "electron-to-chromium-1.3.198" = { + "electron-to-chromium-1.3.199" = { name = "electron-to-chromium"; packageName = "electron-to-chromium"; - version = "1.3.198"; + version = "1.3.199"; src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.198.tgz"; - sha512 = "2GcPd1bkU8EGPa3AhxzPswbNvh5wgK4/8r3fg+sSVyVlCWaN9Tq+tVkJLktMZIcrHiZF0vJpnktfoYXFTvjCVg=="; + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.199.tgz"; + sha512 = "gachlDdHSK47s0N2e58GH9HMC6Z4ip0SfmYUa5iEbE50AKaOUXysaJnXMfKj0xB245jWbYcyFSH+th3rqsF8hA=="; }; }; "elegant-spinner-1.0.1" = { @@ -16007,6 +16196,15 @@ let sha1 = "2c5a6638d893934b9b55037d0ad82cb7004b2679"; }; }; + "git-apply-delta-0.0.7" = { + name = "git-apply-delta"; + packageName = "git-apply-delta"; + version = "0.0.7"; + src = fetchurl { + url = "https://registry.npmjs.org/git-apply-delta/-/git-apply-delta-0.0.7.tgz"; + sha1 = "fb76ae144540d79440b52b31de03e63c993c7219"; + }; + }; "git-clone-0.1.0" = { name = "git-clone"; packageName = "git-clone"; @@ -16431,6 +16629,15 @@ let sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="; }; }; + "globalyzer-0.1.4" = { + name = "globalyzer"; + packageName = "globalyzer"; + version = "0.1.4"; + src = fetchurl { + url = "https://registry.npmjs.org/globalyzer/-/globalyzer-0.1.4.tgz"; + sha512 = "LeguVWaxgHN0MNbWC6YljNMzHkrCny9fzjmEUdnF1kQ7wATFD1RHFRqA1qxaX2tgxGENlcxjOflopBwj3YZiXA=="; + }; + }; "globby-4.1.0" = { name = "globby"; packageName = "globby"; @@ -16458,6 +16665,15 @@ let sha512 = "ollPHROa5mcxDEkwg6bPt3QbEf4pDQSNtd6JPL1YvOvAo/7/0VAm9TccUeoTmarjPw4pfUthSCqcyfNB1I3ZSg=="; }; }; + "globrex-0.1.2" = { + name = "globrex"; + packageName = "globrex"; + version = "0.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz"; + sha512 = "uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg=="; + }; + }; "globule-0.1.0" = { name = "globule"; packageName = "globule"; @@ -16962,6 +17178,15 @@ let sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; }; }; + "gulp-vinyl-zip-2.1.2" = { + name = "gulp-vinyl-zip"; + packageName = "gulp-vinyl-zip"; + version = "2.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/gulp-vinyl-zip/-/gulp-vinyl-zip-2.1.2.tgz"; + sha512 = "wJn09jsb8PyvUeyFF7y7ImEJqJwYy40BqL9GKfJs6UGpaGW9A+N68Q+ajsIpb9AeR6lAdjMbIdDPclIGo1/b7Q=="; + }; + }; "gulplog-1.0.0" = { name = "gulplog"; packageName = "gulplog"; @@ -17907,13 +18132,13 @@ let sha512 = "xFwOnNlOt8L+SovC7dTNchKaNYJb5l8rKZZwpWQnCme1r7CU4Hlhp1RDqPES6b0OpS7DkTo9iU0GltQGkpsjMw=="; }; }; - "hypercore-protocol-6.11.0" = { + "hypercore-protocol-6.11.1" = { name = "hypercore-protocol"; packageName = "hypercore-protocol"; - version = "6.11.0"; + version = "6.11.1"; src = fetchurl { - url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.11.0.tgz"; - sha512 = "V/0Vru8gavoO++K2QFOAXu7xgBuXcBAjURQ9BQ48DnQ/p4hK4Jy76ulRnppDHpbDthxRziMWLZfmYXncwD63Aw=="; + url = "https://registry.npmjs.org/hypercore-protocol/-/hypercore-protocol-6.11.1.tgz"; + sha512 = "4vyYGzSTRCfpIPnpYO/WN0VeS2oGeIrzCCwIXfz5TL2dyyHu7wF5xiigNuUfTn9n3cTOwwbH+EKsygTNsO2yfw=="; }; }; "hyperdrive-9.15.0" = { @@ -19941,6 +20166,15 @@ let sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; }; }; + "isomorphic-git-0.47.0" = { + name = "isomorphic-git"; + packageName = "isomorphic-git"; + version = "0.47.0"; + src = fetchurl { + url = "https://registry.npmjs.org/isomorphic-git/-/isomorphic-git-0.47.0.tgz"; + sha512 = "oea4It03KvuJrEbwYGMrRmlY+Wh7a/J/jBYKezkiUW/s6GrcAePOCnpfLR8TXkHiASZlEHCgckMd7uMAfJ9w/w=="; + }; + }; "isstream-0.1.2" = { name = "isstream"; packageName = "isstream"; @@ -23380,6 +23614,15 @@ let sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg=="; }; }; + "marky-1.2.1" = { + name = "marky"; + packageName = "marky"; + version = "1.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/marky/-/marky-1.2.1.tgz"; + sha512 = "md9k+Gxa3qLH6sUKpeC2CNkJK/Ld+bEz5X96nYwloqphQE0CKCVEKco/6jxEZixinqNdz5RFi/KaCyfbMDMAXQ=="; + }; + }; "match-casing-1.0.2" = { name = "match-casing"; packageName = "match-casing"; @@ -23407,6 +23650,15 @@ let sha1 = "c6f34834a0d8dbc3b37c27ee8bbcb27c7775582e"; }; }; + "matcher-1.1.1" = { + name = "matcher"; + packageName = "matcher"; + version = "1.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/matcher/-/matcher-1.1.1.tgz"; + sha512 = "+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg=="; + }; + }; "matcher-2.0.0" = { name = "matcher"; packageName = "matcher"; @@ -24091,6 +24343,15 @@ let sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; }; }; + "minimatch-all-1.1.0" = { + name = "minimatch-all"; + packageName = "minimatch-all"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch-all/-/minimatch-all-1.1.0.tgz"; + sha1 = "40c496a27a2e128d19bf758e76bb01a0c7145787"; + }; + }; "minimist-0.0.10" = { name = "minimist"; packageName = "minimist"; @@ -24127,6 +24388,15 @@ let sha512 = "FyBrT/d0d4+uiZRbqznPXqw3IpZZG3gl3wKWiX784FycUKVwBt0uLBFkQrtE4tZOrgo78nZp2jnKz3L65T5LdQ=="; }; }; + "minimisted-2.0.0" = { + name = "minimisted"; + packageName = "minimisted"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/minimisted/-/minimisted-2.0.0.tgz"; + sha512 = "oP88Dw3LK/pdrKyMdlbmg3W50969UNr4ctISzJfPl+YPYHTAOrS+dihXnsgRNKSRIzDsrnV3eE2CCVlZbpOKdQ=="; + }; + }; "minipass-2.3.5" = { name = "minipass"; packageName = "minipass"; @@ -24505,6 +24775,15 @@ let sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; }; }; + "multi-progress-2.0.0" = { + name = "multi-progress"; + packageName = "multi-progress"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/multi-progress/-/multi-progress-2.0.0.tgz"; + sha1 = "29ccb42cf24874b1c6384f03127ce5dff7b22f2c"; + }; + }; "multi-random-access-2.1.1" = { name = "multi-random-access"; packageName = "multi-random-access"; @@ -25328,6 +25607,15 @@ let sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; }; }; + "nick-0.1.3" = { + name = "nick"; + packageName = "nick"; + version = "0.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/nick/-/nick-0.1.3.tgz"; + sha1 = "d8a30b7da789d417e0baa5437f33c487be9b6020"; + }; + }; "nijs-0.0.25" = { name = "nijs"; packageName = "nijs"; @@ -26743,6 +27031,15 @@ let sha512 = "jQ31cORBFE6td25deYeD80wxKBMj+zBmHTrVxnc6CKhx8gho6ipmWM5zj/oeoqioZ99yqBls9Z/9Nss7J26G2g=="; }; }; + "opal-runtime-1.0.11" = { + name = "opal-runtime"; + packageName = "opal-runtime"; + version = "1.0.11"; + src = fetchurl { + url = "https://registry.npmjs.org/opal-runtime/-/opal-runtime-1.0.11.tgz"; + sha512 = "L+6pnRvXPlDtbamBRnJAnB9mEMXmsIQ/b+0r/2xJ5/n/nxheEkLo+Pm5QNQ08LEbEN9TI6/kedhIspqRRu6tXA=="; + }; + }; "open-0.0.2" = { name = "open"; packageName = "open"; @@ -29084,6 +29381,15 @@ let sha1 = "c438ca2ca33e3927671db4ab69c0e52f936a4f0f"; }; }; + "printj-1.1.2" = { + name = "printj"; + packageName = "printj"; + version = "1.1.2"; + src = fetchurl { + url = "https://registry.npmjs.org/printj/-/printj-1.1.2.tgz"; + sha512 = "zA2SmoLaxZyArQTOPj5LXecR+RagfPSU5Kw1qP+jkWeNlrq+eJZyY2oS68SU1Z/7/myXM4lo9716laOFAVStCQ=="; + }; + }; "prism-media-0.0.3" = { name = "prism-media"; packageName = "prism-media"; @@ -29111,13 +29417,13 @@ let sha512 = "dWBTeQbyWr/4d97ZKjxFPvIHytnNlBsNzgsJC1eew3qoZ9A8vtRIFhsnPiD3kYIf67w56i2QO2O5Infe2FzMww=="; }; }; - "prismjs-1.16.0" = { + "prismjs-1.17.1" = { name = "prismjs"; packageName = "prismjs"; - version = "1.16.0"; + version = "1.17.1"; src = fetchurl { - url = "https://registry.npmjs.org/prismjs/-/prismjs-1.16.0.tgz"; - sha512 = "OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA=="; + url = "https://registry.npmjs.org/prismjs/-/prismjs-1.17.1.tgz"; + sha512 = "PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q=="; }; }; "private-0.1.8" = { @@ -30335,6 +30641,15 @@ let sha512 = "w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA=="; }; }; + "queue-4.5.1" = { + name = "queue"; + packageName = "queue"; + version = "4.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/queue/-/queue-4.5.1.tgz"; + sha512 = "AMD7w5hRXcFSb8s9u38acBZ+309u6GsiibP4/0YacJeaurRshogB7v/ZcVPxP5gD5+zIw6ixRHdutiYUJfwKHw=="; + }; + }; "quick-format-unescaped-3.0.2" = { name = "quick-format-unescaped"; packageName = "quick-format-unescaped"; @@ -33620,13 +33935,13 @@ let sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; }; }; - "snyk-1.195.1" = { + "snyk-1.196.0" = { name = "snyk"; packageName = "snyk"; - version = "1.195.1"; + version = "1.196.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; - sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.196.0.tgz"; + sha512 = "Gv/N2mzAfh+9xhK72Z+ZDiKepQyE1NLF6S6WTLhoyxkvABUfnxgmfj7I6adn9AmLtMxMCqwo9neOdqQW1rLDYQ=="; }; }; "snyk-config-2.2.2" = { @@ -35168,6 +35483,15 @@ let sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; }; }; + "stream-source-0.3.5" = { + name = "stream-source"; + packageName = "stream-source"; + version = "0.3.5"; + src = fetchurl { + url = "https://registry.npmjs.org/stream-source/-/stream-source-0.3.5.tgz"; + sha512 = "ZuEDP9sgjiAwUVoDModftG0JtYiLUV8K4ljYD1VyUMRWtbVf92474o4kuuul43iZ8t/hRuiDAx1dIJSvirrK/g=="; + }; + }; "stream-splicer-2.0.1" = { name = "stream-splicer"; packageName = "stream-splicer"; @@ -36393,13 +36717,13 @@ let sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; }; }; - "terminal-kit-1.28.19" = { + "terminal-kit-1.28.25" = { name = "terminal-kit"; packageName = "terminal-kit"; - version = "1.28.19"; + version = "1.28.25"; src = fetchurl { - url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.19.tgz"; - sha512 = "lcQgNFfjb+VKCtmXG8K6VCryUMURLKTM3xumY4Y1eXV4ikpjAZ/SFdnb44bnL5iJTEr20xw2m20rJyTsDUeFSw=="; + url = "https://registry.npmjs.org/terminal-kit/-/terminal-kit-1.28.25.tgz"; + sha512 = "6E/vLiMg7uUZI7T1GLVLITx3Hw22VVPL3O8+s4Lh9q/wuzJ0s1fDD0L9F/u+tHMFH2lHIRa0n7QPCzHOv/AYGA=="; }; }; "terser-3.17.0" = { @@ -37023,6 +37347,15 @@ let sha1 = "fc92adaba072647bc0b67d6b03664aa195093af6"; }; }; + "to-utf8-0.0.1" = { + name = "to-utf8"; + packageName = "to-utf8"; + version = "0.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz"; + sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852"; + }; + }; "to-vfile-1.0.0" = { name = "to-vfile"; packageName = "to-vfile"; @@ -39147,6 +39480,15 @@ let sha1 = "d2bd5c66db76c13879d96e6a306edc989df978da"; }; }; + "varint-0.0.3" = { + name = "varint"; + packageName = "varint"; + version = "0.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/varint/-/varint-0.0.3.tgz"; + sha1 = "b821de9b04b38b3cd22f72c18d94a9fb72ab3518"; + }; + }; "varint-3.0.1" = { name = "varint"; packageName = "varint"; @@ -40794,6 +41136,15 @@ let sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; }; }; + "xmlhttprequest-1.8.0" = { + name = "xmlhttprequest"; + packageName = "xmlhttprequest"; + version = "1.8.0"; + src = fetchurl { + url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; + sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; + }; + }; "xmlhttprequest-https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = { name = "xmlhttprequest"; packageName = "xmlhttprequest"; @@ -41191,6 +41542,15 @@ let sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; }; }; + "yazl-2.5.1" = { + name = "yazl"; + packageName = "yazl"; + version = "2.5.1"; + src = fetchurl { + url = "https://registry.npmjs.org/yazl/-/yazl-2.5.1.tgz"; + sha512 = "phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw=="; + }; + }; "yeast-0.1.2" = { name = "yeast"; packageName = "yeast"; @@ -41623,46 +41983,6 @@ in bypassCache = true; reconstructLock = true; }; - asar = nodeEnv.buildNodePackage { - name = "asar"; - packageName = "asar"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/asar/-/asar-2.0.1.tgz"; - sha512 = "Vo9yTuUtyFahkVMFaI6uMuX6N7k5DWa6a/8+7ov0/f8Lq9TVR0tUjzSzxQSxT1Y+RJIZgnP7BVb6Uhi+9cjxqA=="; - }; - dependencies = [ - sources."balanced-match-1.0.0" - sources."bluebird-3.5.5" - sources."brace-expansion-1.1.11" - sources."chromium-pickle-js-0.2.0" - sources."commander-2.20.0" - sources."concat-map-0.0.1" - sources."cuint-0.2.2" - sources."fs.realpath-1.0.0" - sources."glob-7.1.4" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."rimraf-2.6.3" - sources."tmp-0.1.0" - sources."tmp-promise-1.1.0" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Creating Electron app packages"; - homepage = https://github.com/electron/asar; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; "@antora/cli" = nodeEnv.buildNodePackage { name = "_at_antora_slash_cli"; packageName = "@antora/cli"; @@ -41708,6 +42028,350 @@ in bypassCache = true; reconstructLock = true; }; + "@antora/site-generator-default" = nodeEnv.buildNodePackage { + name = "_at_antora_slash_site-generator-default"; + packageName = "@antora/site-generator-default"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@antora/site-generator-default/-/site-generator-default-2.0.0.tgz"; + sha512 = "YMor7dPAef4Pqyxbz7/ZqS0k5haxtcIkmEAfTJpGthCtRhrYfOu2iH+ZntnKRCubNdSgs77CRYjpSjm43rQ7FQ=="; + }; + dependencies = [ + sources."@antora/asciidoc-loader-2.0.0" + sources."@antora/content-aggregator-2.0.0" + sources."@antora/content-classifier-2.0.0" + sources."@antora/document-converter-2.0.0" + sources."@antora/expand-path-helper-1.0.0" + sources."@antora/navigation-builder-2.0.0" + sources."@antora/page-composer-2.0.0" + sources."@antora/playbook-builder-2.0.0" + sources."@antora/redirect-producer-2.0.0" + sources."@antora/site-mapper-2.0.0" + sources."@antora/site-publisher-2.0.0" + sources."@antora/ui-loader-2.0.0" + sources."@babel/runtime-7.5.5" + sources."@iarna/toml-2.2.3" + sources."@sindresorhus/is-0.14.0" + sources."@szmarczak/http-timer-1.1.2" + sources."append-buffer-1.0.2" + sources."argparse-1.0.10" + sources."asciidoctor.js-1.5.9" + sources."async-lock-1.2.2" + sources."balanced-match-1.0.0" + sources."base64-js-0.0.2" + sources."benchmark-1.0.0" + (sources."bl-2.2.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."bops-0.0.7" + sources."brace-expansion-1.1.11" + sources."buffer-crc32-0.2.13" + sources."buffer-equal-1.0.0" + sources."cache-directory-2.0.0" + (sources."cacheable-request-6.1.0" // { + dependencies = [ + sources."get-stream-5.1.0" + sources."lowercase-keys-2.0.0" + sources."pump-3.0.0" + ]; + }) + sources."camelcase-5.3.1" + sources."camelcase-keys-5.2.0" + sources."clean-git-ref-1.0.3" + sources."clone-2.1.2" + sources."clone-buffer-1.0.0" + sources."clone-response-1.0.2" + sources."clone-stats-1.0.0" + (sources."cloneable-readable-1.1.3" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."commander-2.20.0" + sources."concat-map-0.0.1" + sources."convert-source-map-1.6.0" + (sources."convict-4.4.1" // { + dependencies = [ + sources."json5-1.0.1" + ]; + }) + sources."core-util-is-1.0.2" + sources."crc-32-1.2.0" + sources."decamelize-1.2.0" + sources."decompress-response-3.3.0" + sources."deep-freeze-0.0.1" + sources."defer-to-connect-1.0.2" + sources."define-properties-1.1.3" + sources."depd-1.1.2" + sources."diff-3.5.0" + sources."diff-lines-1.1.1" + sources."duplexer-0.1.1" + sources."duplexer3-0.1.4" + (sources."duplexify-3.7.1" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."end-of-stream-1.4.1" + sources."escape-string-regexp-1.0.5" + sources."esprima-4.0.1" + sources."event-stream-3.3.4" + sources."exit-on-epipe-1.0.1" + sources."extend-3.0.2" + sources."fd-slicer-1.1.0" + (sources."flush-write-stream-1.1.1" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."from-0.1.7" + sources."fs-extra-7.0.1" + (sources."fs-mkdirp-stream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."fs.realpath-1.0.0" + sources."function-bind-1.1.1" + (sources."get-stream-4.1.0" // { + dependencies = [ + sources."pump-3.0.0" + ]; + }) + sources."git-apply-delta-0.0.7" + sources."glob-6.0.4" + sources."glob-parent-3.1.0" + (sources."glob-stream-6.1.0" // { + dependencies = [ + sources."glob-7.1.4" + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."globalyzer-0.1.4" + sources."globrex-0.1.2" + sources."got-9.6.0" + sources."graceful-fs-4.2.0" + (sources."gulp-vinyl-zip-2.1.2" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."handlebars-4.1.2" + sources."has-symbols-1.0.0" + sources."http-cache-semantics-4.0.3" + sources."ignore-5.1.2" + sources."inflight-1.0.6" + sources."inherits-2.0.4" + sources."is-absolute-1.0.0" + sources."is-buffer-1.1.6" + sources."is-extglob-2.1.1" + sources."is-glob-3.1.0" + sources."is-negated-glob-1.0.0" + sources."is-relative-1.0.0" + sources."is-unc-path-1.0.0" + sources."is-utf8-0.2.1" + sources."is-valid-glob-1.0.0" + sources."is-windows-1.0.2" + sources."isarray-1.0.0" + sources."isomorphic-git-0.47.0" + sources."js-yaml-3.13.1" + sources."json-buffer-3.0.0" + sources."json-stable-stringify-without-jsonify-1.0.1" + sources."json5-2.1.0" + sources."jsonfile-4.0.0" + sources."keyv-3.1.0" + (sources."lazystream-1.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."lead-1.0.0" + sources."lodash-4.17.15" + sources."lodash.clonedeep-4.5.0" + sources."lowercase-keys-1.0.1" + sources."map-obj-3.1.0" + sources."map-stream-0.1.0" + sources."marky-1.2.1" + sources."matcher-1.1.1" + sources."mime-db-1.40.0" + sources."mime-types-2.1.24" + sources."mimic-response-1.0.1" + sources."minimatch-3.0.4" + sources."minimatch-all-1.1.0" + sources."minimist-1.2.0" + sources."minimisted-2.0.0" + sources."moment-2.22.2" + sources."multi-progress-2.0.0" + sources."neo-async-2.6.1" + sources."nick-0.1.3" + sources."normalize-path-2.1.1" + sources."normalize-url-4.3.0" + sources."now-and-later-2.0.1" + sources."object-keys-1.1.1" + sources."object.assign-4.1.0" + sources."once-1.4.0" + sources."opal-runtime-1.0.11" + (sources."optimist-0.6.1" // { + dependencies = [ + sources."minimist-0.0.10" + ]; + }) + (sources."ordered-read-streams-1.0.1" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."p-cancelable-1.1.0" + sources."pako-1.0.10" + sources."path-dirname-1.0.2" + sources."path-is-absolute-1.0.1" + sources."pause-stream-0.0.11" + sources."pend-1.2.0" + sources."pify-4.0.1" + sources."prepend-http-2.0.0" + sources."printj-1.1.2" + sources."process-nextick-args-2.0.1" + sources."progress-1.1.8" + sources."pump-2.0.1" + sources."pumpify-1.5.1" + sources."queue-4.5.1" + sources."quick-lru-1.1.0" + sources."readable-stream-3.4.0" + sources."regenerator-runtime-0.13.3" + sources."remove-bom-buffer-3.0.0" + (sources."remove-bom-stream-1.2.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."remove-trailing-separator-1.1.0" + sources."replace-ext-1.0.0" + sources."require-from-string-2.0.2" + sources."resolve-options-1.1.0" + sources."responselike-1.0.2" + sources."safe-buffer-5.1.2" + sources."sha.js-2.4.11" + sources."simple-concat-1.0.0" + sources."simple-get-3.0.3" + sources."source-map-0.6.1" + sources."split-0.3.3" + sources."split2-3.1.1" + sources."sprintf-js-1.0.3" + sources."stream-combiner-0.0.4" + sources."stream-shift-1.0.0" + sources."stream-source-0.3.5" + sources."string_decoder-1.2.0" + sources."through-2.3.8" + sources."through2-3.0.1" + (sources."through2-filter-3.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."to-absolute-glob-2.0.2" + sources."to-readable-stream-1.0.0" + (sources."to-through-2.0.0" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."to-utf8-0.0.1" + sources."uglify-js-3.6.0" + sources."unc-path-regex-0.1.2" + sources."unique-stream-2.3.1" + sources."universalify-0.1.2" + sources."url-parse-lax-3.0.0" + sources."util-deprecate-1.0.2" + sources."validator-10.8.0" + sources."value-or-function-3.0.0" + sources."varint-0.0.3" + sources."vinyl-2.2.0" + (sources."vinyl-fs-3.0.3" // { + dependencies = [ + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + sources."through2-2.0.5" + ]; + }) + sources."vinyl-sourcemap-1.1.0" + sources."wordwrap-0.0.3" + sources."wrappy-1.0.2" + sources."xdg-basedir-3.0.0" + sources."xmlhttprequest-1.8.0" + sources."xtend-4.0.2" + sources."yargs-parser-11.0.0" + sources."yauzl-2.10.0" + sources."yazl-2.5.1" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "The default site generator pipeline for producing and publishing static documentation sites with Antora."; + homepage = https://antora.org/; + license = "MPL-2.0"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; + asar = nodeEnv.buildNodePackage { + name = "asar"; + packageName = "asar"; + version = "2.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/asar/-/asar-2.0.1.tgz"; + sha512 = "Vo9yTuUtyFahkVMFaI6uMuX6N7k5DWa6a/8+7ov0/f8Lq9TVR0tUjzSzxQSxT1Y+RJIZgnP7BVb6Uhi+9cjxqA=="; + }; + dependencies = [ + sources."balanced-match-1.0.0" + sources."bluebird-3.5.5" + sources."brace-expansion-1.1.11" + sources."chromium-pickle-js-0.2.0" + sources."commander-2.20.0" + sources."concat-map-0.0.1" + sources."cuint-0.2.2" + sources."fs.realpath-1.0.0" + sources."glob-7.1.4" + sources."inflight-1.0.6" + sources."inherits-2.0.4" + sources."minimatch-3.0.4" + sources."minimist-0.0.8" + sources."mkdirp-0.5.1" + sources."once-1.4.0" + sources."path-is-absolute-1.0.1" + sources."rimraf-2.6.3" + sources."tmp-0.1.0" + sources."tmp-promise-1.1.0" + sources."wrappy-1.0.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "Creating Electron app packages"; + homepage = https://github.com/electron/asar; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; aws-azure-login = nodeEnv.buildNodePackage { name = "aws-azure-login"; packageName = "aws-azure-login"; @@ -44667,7 +45331,7 @@ in ]; }) sources."hypercore-crypto-1.0.0" - (sources."hypercore-protocol-6.11.0" // { + (sources."hypercore-protocol-6.11.1" // { dependencies = [ sources."varint-5.0.0" ]; @@ -50035,7 +50699,7 @@ in sources."q-0.9.7" ]; }) - sources."terminal-kit-1.28.19" + sources."terminal-kit-1.28.25" (sources."tkwidgets-0.5.26" // { dependencies = [ sources."is-fullwidth-code-point-2.0.0" @@ -53576,7 +54240,7 @@ in }) sources."duplexer3-0.1.4" sources."duplexify-3.7.1" - sources."electron-to-chromium-1.3.198" + sources."electron-to-chromium-1.3.199" sources."elliptic-6.5.0" sources."emoji-regex-7.0.3" sources."emojis-list-2.1.0" @@ -58918,7 +59582,7 @@ in sources."ecc-jsbn-0.1.2" sources."editorconfig-0.15.3" sources."ee-first-1.1.1" - sources."electron-to-chromium-1.3.198" + sources."electron-to-chromium-1.3.199" sources."elliptic-6.5.0" sources."encodeurl-1.0.2" sources."entities-1.1.2" @@ -60793,10 +61457,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.195.1"; + version = "1.196.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.195.1.tgz"; - sha512 = "PJ5K8W+gTkg/CktePxvhahiHZ75PC6ZPVpsk2icYX9nx9Fx4VYZ8pt8GJYo31KLrlwENG3WxBNV5xas+dd2csg=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.196.0.tgz"; + sha512 = "Gv/N2mzAfh+9xhK72Z+ZDiKepQyE1NLF6S6WTLhoyxkvABUfnxgmfj7I6adn9AmLtMxMCqwo9neOdqQW1rLDYQ=="; }; dependencies = [ sources."@snyk/composer-lockfile-parser-1.0.3" @@ -65585,7 +66249,7 @@ in sources."ecc-jsbn-0.1.2" sources."ee-first-1.1.1" sources."ejs-2.6.2" - sources."electron-to-chromium-1.3.198" + sources."electron-to-chromium-1.3.199" sources."encodeurl-1.0.2" sources."end-of-stream-1.4.1" sources."entities-1.1.2" @@ -65981,7 +66645,7 @@ in }) sources."posix-character-classes-0.1.1" sources."prepend-http-1.0.4" - sources."prismjs-1.16.0" + sources."prismjs-1.17.1" sources."private-0.1.8" sources."process-exists-3.1.0" sources."process-nextick-args-2.0.1" @@ -68264,9 +68928,9 @@ in sources."bencode-2.0.1" sources."binary-search-1.3.5" sources."bitfield-2.0.0" - (sources."bittorrent-dht-9.0.0" // { + (sources."bittorrent-dht-9.0.1" // { dependencies = [ - sources."debug-3.2.6" + sources."debug-4.1.1" sources."ms-2.1.2" ]; }) @@ -69552,7 +70216,7 @@ in ]; }) sources."snapdragon-util-3.0.1" - (sources."snyk-1.195.1" // { + (sources."snyk-1.196.0" // { dependencies = [ sources."ansi-regex-4.1.0" sources."debug-3.2.6" diff --git a/pkgs/development/tools/documentation/antora/default.nix b/pkgs/development/tools/documentation/antora/default.nix new file mode 100644 index 00000000000..9f1aa037087 --- /dev/null +++ b/pkgs/development/tools/documentation/antora/default.nix @@ -0,0 +1,25 @@ +{ stdenv, nodePackages_10_x }: + +let + drvName = drv: (builtins.parseDrvName drv).name; + linkNodeDeps = ({ pkg, deps, name ? "" }: + let + targetModule = if name != "" then name else drvName pkg; + in nodePackages_10_x.${pkg}.override (oldAttrs: { + postInstall = '' + mkdir -p $out/lib/node_modules/${targetModule}/node_modules + ${stdenv.lib.concatStringsSep "\n" (map (dep: '' + ln -s ${nodePackages_10_x.${dep}}/lib/node_modules/${drvName dep} \ + $out/lib/node_modules/${targetModule}/node_modules/${drvName dep} + '') deps + )} + ''; + }) +); +in linkNodeDeps { + pkg = "@antora/cli"; + name = "@antora/cli"; + deps = [ + "@antora/site-generator-default" + ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 594facfb5af..a2c01d55187 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -553,7 +553,7 @@ in ansifilter = callPackage ../tools/text/ansifilter {}; - antora = nodePackages_10_x."@antora/cli"; + antora = callPackage ../development/tools/documentation/antora {}; apktool = callPackage ../development/tools/apktool { inherit (androidenv.androidPkgs_9_0) build-tools; From cfd507d581815ae6b99ef9565ed9c4d52b402af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 23 Jul 2019 10:19:17 +0200 Subject: [PATCH 0945/1611] system-boot: configurationLimit should be null as default --- .../boot/loader/systemd-boot/systemd-boot.nix | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix index 910a602c61d..22d459ceb04 100644 --- a/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix +++ b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix @@ -22,7 +22,9 @@ let editor = if cfg.editor then "True" else "False"; - inherit (cfg) consoleMode configurationLimit; + configurationLimit = if cfg.configurationLimit == null then 0 else cfg.configurationLimit; + + inherit (cfg) consoleMode; inherit (efi) efiSysMountPoint canTouchEfiVariables; @@ -58,12 +60,15 @@ in { }; configurationLimit = mkOption { - default = 100; + default = null; example = 120; - type = types.int; + type = types.nullOr types.int; description = '' - Maximum of configurations in boot menu. Otherwise boot partition could - run out of disk space. + Maximum number of latest generations in the boot menu. + Useful to prevent boot partition running out of disk space. + + null means no limit i.e. all generations + that were not garbage collected yet. ''; }; From 8d6f00a23425c6de8c1c453cdfdace0ee2f859a3 Mon Sep 17 00:00:00 2001 From: Aria Edmonds Date: Tue, 23 Jul 2019 18:36:46 +1000 Subject: [PATCH 0946/1611] barrier: 2.1.1 -> 2.3.0 fixes #65292 --- pkgs/applications/misc/barrier/default.nix | 29 ++++++++-------------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 12 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/misc/barrier/default.nix b/pkgs/applications/misc/barrier/default.nix index 6151b3d55ab..5d3564f38e6 100644 --- a/pkgs/applications/misc/barrier/default.nix +++ b/pkgs/applications/misc/barrier/default.nix @@ -1,26 +1,19 @@ -{ stdenv, fetchpatch, fetchurl, cmake, curl, xorg, avahi, qt5, +{ stdenv, fetchFromGitHub, cmake, curl, xorg, avahi, qtbase, mkDerivation, avahiWithLibdnssdCompat ? avahi.override { withLibdnssdCompat = true; } }: -stdenv.mkDerivation rec { - name = "barrier-${version}"; - version = "2.1.1"; - src = fetchurl { - url = "https://github.com/debauchee/barrier/archive/v${version}.tar.gz"; - sha256 = "0x17as5ikfx2r5hawr368a9risvcavyc8zv5g724s709nr6m0pbp"; +mkDerivation rec { + pname = "barrier"; + version = "2.3.0"; + + src = fetchFromGitHub { + owner = "debauchee"; + repo = pname; + rev = "v${version}"; + sha256 = "1fy7xjwqyisapf8wv50gwpbgbv5b4ldf7766w453h5iw10d18kh0"; }; - buildInputs = [ cmake curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat ]; - propagatedBuildInputs = with qt5; [ qtbase ]; - - patches = [ - # Fix compilation on Qt 5.11 - # Patch should be removed on next version bump from 2.1.1! - (fetchpatch { - url = "https://github.com/debauchee/barrier/commit/a956cad0da23f544b874888c6c3540dc7f8f22cf.patch"; - sha256 = "0x5045bdks1f9casp0v7svx9ml1gxhkhw5sqc7xk36h184m24a21"; - }) - ]; + buildInputs = [ cmake curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ]; postFixup = '' substituteInPlace "$out/share/applications/barrier.desktop" --replace "Exec=barrier" "Exec=$out/bin/barrier" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1dff6fdf6d4..f2554c3458c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17083,7 +17083,7 @@ in baresip = callPackage ../applications/networking/instant-messengers/baresip { }; - barrier = callPackage ../applications/misc/barrier {}; + barrier = libsForQt5.callPackage ../applications/misc/barrier {}; bashSnippets = callPackage ../applications/misc/bashSnippets { }; From 3d1905e3f5d8cf79928f02300a007cb492369b97 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Mon, 22 Jul 2019 13:22:16 -0400 Subject: [PATCH 0947/1611] linux/kernel: enable automatic cpu hotplug support --- pkgs/os-specific/linux/kernel/common-config.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 855f854b111..b392dc853d3 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -699,11 +699,13 @@ let PREEMPT_VOLUNTARY = yes; } // optionalAttrs (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "aarch64-linux") { - # Enable memory hotplug support - # Allows you to dynamically add & remove memory to a VM client running NixOS without requiring a reboot + # Enable CPU/memory hotplug support + # Allows you to dynamically add & remove CPUs/memory to a VM client running NixOS without requiring a reboot + ACPI_HOTPLUG_CPU = yes; ACPI_HOTPLUG_MEMORY = yes; MEMORY_HOTPLUG = yes; MEMORY_HOTREMOVE = yes; + HOTPLUG_CPU = yes; MIGRATION = yes; SPARSEMEM = yes; From 9e1e574145188a24d696a7d7fc30216436953b68 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 23 Jul 2019 12:29:21 +0200 Subject: [PATCH 0948/1611] ladspa-sdk: 1.13 -> 1.15 --- pkgs/applications/audio/ladspa-sdk/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/ladspa-sdk/default.nix b/pkgs/applications/audio/ladspa-sdk/default.nix index 296a4f86a84..72bb7010b62 100644 --- a/pkgs/applications/audio/ladspa-sdk/default.nix +++ b/pkgs/applications/audio/ladspa-sdk/default.nix @@ -1,16 +1,16 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { name = "ladspa-sdk-${version}"; - version = "1.13"; + version = "1.15"; src = fetchurl { url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz"; - sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm"; + sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2"; }; patchPhase = '' cd src - sed -i 's@/usr/@$(out)/@g' makefile - sed -i 's@-mkdirhier@mkdir -p@g' makefile + sed -i 's@/usr/@$(out)/@g' Makefile + sed -i 's@-mkdirhier@mkdir -p@g' Makefile ''; meta = { From 16d2c4bb9fd067f48b0047ce9839b788fbf9a1fa Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Tue, 23 Jul 2019 12:30:08 +0200 Subject: [PATCH 0949/1611] ladspah: 1.13 -> 1.15 --- pkgs/applications/audio/ladspa-sdk/ladspah.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/ladspa-sdk/ladspah.nix b/pkgs/applications/audio/ladspa-sdk/ladspah.nix index 01acc0d01f7..b57b7283b85 100644 --- a/pkgs/applications/audio/ladspa-sdk/ladspah.nix +++ b/pkgs/applications/audio/ladspa-sdk/ladspah.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { name = "ladspa.h-${version}"; - version = "1.13"; + version = "1.15"; src = fetchurl { url = "https://www.ladspa.org/download/ladspa_sdk_${version}.tgz"; - sha256 = "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm"; + sha256 = "1vgx54cgsnc3ncl9qbgjbmq12c444xjafjkgr348h36j16draaa2"; }; installPhase = '' From a37b32bc8fcb0bf736057479599300fb1c6bd73b Mon Sep 17 00:00:00 2001 From: Mrmaxmeier Date: Mon, 22 Jul 2019 18:51:56 +0200 Subject: [PATCH 0950/1611] thelounge: init node package at v3.0.1 --- pkgs/development/node-packages/default-v10.nix | 4 ++++ pkgs/development/node-packages/node-packages-v10.json | 1 + pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 7 insertions(+) diff --git a/pkgs/development/node-packages/default-v10.nix b/pkgs/development/node-packages/default-v10.nix index b7c5859708e..df3a07b26e8 100644 --- a/pkgs/development/node-packages/default-v10.nix +++ b/pkgs/development/node-packages/default-v10.nix @@ -125,4 +125,8 @@ nodePackages // { nodePackages.node-pre-gyp ]; }; + + thelounge = nodePackages.thelounge.override { + buildInputs = [ nodePackages.node-pre-gyp ]; + }; } diff --git a/pkgs/development/node-packages/node-packages-v10.json b/pkgs/development/node-packages/node-packages-v10.json index 8ca43faed78..14012438bc1 100644 --- a/pkgs/development/node-packages/node-packages-v10.json +++ b/pkgs/development/node-packages/node-packages-v10.json @@ -127,6 +127,7 @@ , "textlint-rule-terminology" , "textlint-rule-unexpanded-acronym" , "textlint-rule-write-good" +, "thelounge" , "three" , "tiddlywiki" , "triton" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index df983bb971b..73bd93024c4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6262,6 +6262,8 @@ in theharvester = callPackage ../tools/security/theharvester { }; + inherit (nodePackages) thelounge; + thefuck = python3Packages.callPackage ../tools/misc/thefuck { }; thin-provisioning-tools = callPackage ../tools/misc/thin-provisioning-tools { }; From d54e52276bc381fd7093d44884fe4c6ad9629ad6 Mon Sep 17 00:00:00 2001 From: Danylo Hlynskyi Date: Tue, 23 Jul 2019 14:17:14 +0300 Subject: [PATCH 0951/1611] postgresql: update docs https://github.com/NixOS/nixpkgs/issues/32156 --- nixos/modules/services/databases/postgresql.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/databases/postgresql.xml b/nixos/modules/services/databases/postgresql.xml index 02db47568d3..72d4a8249a3 100644 --- a/nixos/modules/services/databases/postgresql.xml +++ b/nixos/modules/services/databases/postgresql.xml @@ -52,7 +52,7 @@ Type "help" for help. By default, PostgreSQL stores its databases in - /var/db/postgresql. You can override this using + /var/lib/postgresql/$psqlSchema. You can override this using , e.g. = "/data/postgresql"; From 09b004102ddbb83d83db36f3c350b8996862b9ec Mon Sep 17 00:00:00 2001 From: Mrmaxmeier Date: Fri, 7 Jun 2019 15:53:08 +0200 Subject: [PATCH 0952/1611] regenerate node-packages*.nix for nodePackages.thelounge --- .../node-packages/node-packages-v10.nix | 880 +++++++++++++++--- .../node-packages/node-packages-v12.nix | 53 +- .../node-packages/node-packages-v8.nix | 644 ++++++------- 3 files changed, 1118 insertions(+), 459 deletions(-) diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix index e2e539efb43..b587d1391fa 100644 --- a/pkgs/development/node-packages/node-packages-v10.nix +++ b/pkgs/development/node-packages/node-packages-v10.nix @@ -1435,13 +1435,13 @@ let sha512 = "CNVsCrMge/jq6DCT5buNZ8PACY9RTvPJbCNoIcndfkJOCsNxOx9dnc5qw4pHZdHi8GS6l3qlgkuFKp33iD8J2Q=="; }; }; - "@lerna/add-3.16.1" = { + "@lerna/add-3.16.2" = { name = "_at_lerna_slash_add"; packageName = "@lerna/add"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.1.tgz"; - sha512 = "zk1ldthrXPl+Xuj0vVD3JYqTQzU+qKv8sOvvQrBXimuf/d+r+LJc10DXPGaCE9LwPeLgkrpPbIOQ7tTtkh0xGg=="; + url = "https://registry.npmjs.org/@lerna/add/-/add-3.16.2.tgz"; + sha512 = "RAAaF8aODPogj2Ge9Wj3uxPFIBGpog9M+HwSuq03ZnkkO831AmasCTJDqV+GEpl1U2DvnhZQEwHpWmTT0uUeEw=="; }; }; "@lerna/batch-packages-3.16.0" = { @@ -1453,22 +1453,22 @@ let sha512 = "7AdMkANpubY/FKFI01im01tlx6ygOBJ/0JcixMUWoWP/7Ds3SWQF22ID6fbBr38jUWptYLDs2fagtTDL7YUPuA=="; }; }; - "@lerna/bootstrap-3.16.1" = { + "@lerna/bootstrap-3.16.2" = { name = "_at_lerna_slash_bootstrap"; packageName = "@lerna/bootstrap"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.1.tgz"; - sha512 = "flHK3PRNEzGjK5u94ARlTmvraNUDgtG3TpO4dOLgiG4DDqk/7JjRq/vNXhBqgrtoKzm+zp4tH/6+uCAqF6la5w=="; + url = "https://registry.npmjs.org/@lerna/bootstrap/-/bootstrap-3.16.2.tgz"; + sha512 = "I+gs7eh6rv9Vyd+CwqL7sftRfOOsSzCle8cv/CGlMN7/p7EAVhxEdAw8SYoHIKHzipXszuqqy1Y3opyleD0qdA=="; }; }; - "@lerna/changed-3.16.1" = { + "@lerna/changed-3.16.2" = { name = "_at_lerna_slash_changed"; packageName = "@lerna/changed"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.1.tgz"; - sha512 = "qXm0psRXo2U0EOmnt4PY8i525FbYIkEjaI+I92VzFN9vIlxd40pXJpiPCYMJzVEMr3gInDz5LHAINzoQ+7YAeQ=="; + url = "https://registry.npmjs.org/@lerna/changed/-/changed-3.16.2.tgz"; + sha512 = "CXr4R1s/IGsLy0xjVfgFtv4Hx8gUvIgmGteRuH2Ma9bl1yMcyy8zQd/e0M+dzL6tEhjo56ZTSs9hHiU2w/uwIg=="; }; }; "@lerna/check-working-tree-3.14.2" = { @@ -1552,13 +1552,13 @@ let sha512 = "OZApR1Iz7awutbmj4sAArwhqCyKgcrnw9rH0aWAUrkYWrD1w4TwkvAcYAsfx5GpQGbLQwoXhoyyPwPfZRRWz3Q=="; }; }; - "@lerna/create-symlink-3.16.0" = { + "@lerna/create-symlink-3.16.2" = { name = "_at_lerna_slash_create-symlink"; packageName = "@lerna/create-symlink"; - version = "3.16.0"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.16.0.tgz"; - sha512 = "MiQga30ZYB5mioUA37qkiIMb6X9JtyYhkzgDZFz7iZVdOF0NxkRQJZy+osGnXWij9s1DFfl70pOdVBPMl7LzRA=="; + url = "https://registry.npmjs.org/@lerna/create-symlink/-/create-symlink-3.16.2.tgz"; + sha512 = "pzXIJp6av15P325sgiIRpsPXLFmkisLhMBCy4764d+7yjf2bzrJ4gkWVMhsv4AdF0NN3OyZ5jjzzTtLNqfR+Jw=="; }; }; "@lerna/describe-ref-3.14.2" = { @@ -1678,13 +1678,13 @@ let sha512 = "Ybol/x5xMtBgokx4j7/Y3u0ZmNh0NiSWzBFVaOs2NOJKvuqrWimF67DKVz7yYtTYEjtaMdug64ohFF4jcT/iag=="; }; }; - "@lerna/link-3.16.0" = { + "@lerna/link-3.16.2" = { name = "_at_lerna_slash_link"; packageName = "@lerna/link"; - version = "3.16.0"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.0.tgz"; - sha512 = "nm9olZuvNGOqTFusgsD1eBDqTWwre3FUX0DkLORbqvvm/TIwRvXoOBmFceV2Q9zpAFRwj4vrnsPNQ/RYC3X4ZQ=="; + url = "https://registry.npmjs.org/@lerna/link/-/link-3.16.2.tgz"; + sha512 = "eCPg5Lo8HT525fIivNoYF3vWghO3UgEVFdbsiPmhzwI7IQyZro5HWYzLtywSAdEog5XZpd2Bbn0CsoHWBB3gww=="; }; }; "@lerna/list-3.16.0" = { @@ -1741,13 +1741,13 @@ let sha512 = "APUOIilZCzDzce92uLEwzt1r7AEMKT/hWA1ThGJL+PO9Rn8A95Km3o2XZAYG4W0hR+P4O2nSVuKbsjQtz8CjFQ=="; }; }; - "@lerna/npm-publish-3.16.1" = { + "@lerna/npm-publish-3.16.2" = { name = "_at_lerna_slash_npm-publish"; packageName = "@lerna/npm-publish"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.16.1.tgz"; - sha512 = "+whucIDWaBecV4BsPrpA8nCv0eTv96BKOTVSURm3G7voR7yCSl7Fi/grC5Id9cjG3IiIE03rPTw54cUwOQSZdQ=="; + url = "https://registry.npmjs.org/@lerna/npm-publish/-/npm-publish-3.16.2.tgz"; + sha512 = "tGMb9vfTxP57vUV5svkBQxd5Tzc+imZbu9ZYf8Mtwe0+HYfDjNiiHLIQw7G95w4YRdc5KsCE8sQ0uSj+f2soIg=="; }; }; "@lerna/npm-run-script-3.14.2" = { @@ -1777,13 +1777,13 @@ let sha512 = "7ZnQ9nvUDu/WD+bNsypmPG5MwZBwu86iRoiW6C1WBuXXDxM5cnIAC1m2WxHeFnjyMrYlRXM9PzOQ9VDD+C15Rg=="; }; }; - "@lerna/pack-directory-3.16.1" = { + "@lerna/pack-directory-3.16.2" = { name = "_at_lerna_slash_pack-directory"; packageName = "@lerna/pack-directory"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.16.1.tgz"; - sha512 = "mygbdbmHhM8QDWsi8QHFkv8djv6oHnP7c5OpnPbagM7QRdXxchwLrSjcSASJvljzmQeRo4zgHN71CHgyhichOA=="; + url = "https://registry.npmjs.org/@lerna/pack-directory/-/pack-directory-3.16.2.tgz"; + sha512 = "aM8MQnkhRUW81s/UBEUKA+qRfSdf9TcJzTY9Wjrd94UxzULn1BQ+Y3F8cysTR0TS/ILLyiteIllxlVSByWHD2w=="; }; }; "@lerna/package-3.16.0" = { @@ -1831,13 +1831,13 @@ let sha512 = "P+lWSFokdyvYpkwC3it9cE0IF2U5yy2mOUbGvvE4iDb9K7TyXGE+7lwtx2thtPvBAfIb7O13POMkv7df03HJeA=="; }; }; - "@lerna/publish-3.16.1" = { + "@lerna/publish-3.16.2" = { name = "_at_lerna_slash_publish"; packageName = "@lerna/publish"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.1.tgz"; - sha512 = "a2y27d5m37sT/16eI9MLfZk+v5LDRr+Dpj8kT+FTsQqi4uS1ZOtzx9JyC9sLjZTSSivr1ZTQrrZbgyQ2YtRAMg=="; + url = "https://registry.npmjs.org/@lerna/publish/-/publish-3.16.2.tgz"; + sha512 = "6CZhnzO5goChQPqcBEN+6f6wA5ERBYcKB8RlBlsG38H8f8uYNZM6m34ywy1MLihZQA0z/RWrhYWAf4daF+AUkA=="; }; }; "@lerna/pulse-till-done-3.13.0" = { @@ -1885,13 +1885,13 @@ let sha512 = "woTeLlB1OAAz4zzjdI6RyIxSGuxiUPHJZm89E1pDEPoWwtQV6HMdMgrsQd9ATsJ5Ez280HH4bF/LStAlqW8Ufg=="; }; }; - "@lerna/run-lifecycle-3.16.1" = { + "@lerna/run-lifecycle-3.16.2" = { name = "_at_lerna_slash_run-lifecycle"; packageName = "@lerna/run-lifecycle"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.16.1.tgz"; - sha512 = "hKvoQis5e+ktR9zWoya/BD1oVqRKDTJHLuCJsYaNYH4p5JJ5k2Y5bw+Gv3weccqb8uNrsXPcQmGPXhmNNSrAfw=="; + url = "https://registry.npmjs.org/@lerna/run-lifecycle/-/run-lifecycle-3.16.2.tgz"; + sha512 = "RqFoznE8rDpyyF0rOJy3+KjZCeTkO8y/OB9orPauR7G2xQ7PTdCpgo7EO6ZNdz3Al+k1BydClZz/j78gNCmL2A=="; }; }; "@lerna/run-parallel-batches-3.16.0" = { @@ -1912,22 +1912,22 @@ let sha512 = "4Hlpv4zDtKWa5Z0tPkeu0sK+bxZEKgkNESMGmWrUCNfj7xwvAJurcraK8+a2Y0TFYwf0qjSLY/MzX+ZbJA3Cgw=="; }; }; - "@lerna/symlink-binary-3.16.0" = { + "@lerna/symlink-binary-3.16.2" = { name = "_at_lerna_slash_symlink-binary"; packageName = "@lerna/symlink-binary"; - version = "3.16.0"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.0.tgz"; - sha512 = "7sgLWKP7RVxKPmnJZnq3ynqOsO6FDNFtJ/eQA46aV8ivKYoJY3+083FFErvka460V2MTBCEZsKXfX8Nezly/fg=="; + url = "https://registry.npmjs.org/@lerna/symlink-binary/-/symlink-binary-3.16.2.tgz"; + sha512 = "kz9XVoFOGSF83gg4gBqH+mG6uxfJfTp8Uy+Cam40CvMiuzfODrGkjuBEFoM/uO2QOAwZvbQDYOBpKUa9ZxHS1Q=="; }; }; - "@lerna/symlink-dependencies-3.16.0" = { + "@lerna/symlink-dependencies-3.16.2" = { name = "_at_lerna_slash_symlink-dependencies"; packageName = "@lerna/symlink-dependencies"; - version = "3.16.0"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.0.tgz"; - sha512 = "Pi3knz/+es8WltHBTG6UzYA3jFulv8kDGUVw225Bhv3YNcotX8ijXhm6oBO5zvFuW24b4fojZQxznM/EqJdaIw=="; + url = "https://registry.npmjs.org/@lerna/symlink-dependencies/-/symlink-dependencies-3.16.2.tgz"; + sha512 = "wnZqGJQ+Jvr1I3inxrkffrFZfmQI7Ta8gySw/UWCy95QtZWF/f5yk8zVIocCAsjzD0wgb3jJE3CFJ9W5iwWk1A=="; }; }; "@lerna/timer-3.13.0" = { @@ -1948,13 +1948,13 @@ let sha512 = "SiJP75nwB8GhgwLKQfdkSnDufAaCbkZWJqEDlKOUPUvVOplRGnfL+BPQZH5nvq2BYSRXsksXWZ4UHVnQZI/HYA=="; }; }; - "@lerna/version-3.16.1" = { + "@lerna/version-3.16.2" = { name = "_at_lerna_slash_version"; packageName = "@lerna/version"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.1.tgz"; - sha512 = "CtDjZmrtcuKSk6xJc74ZBUJuJSH2N5BKkB29Yli1NvH+Tsn1CHHamr9bGYmRBEZlNSAxf1exlLPMX9jlZb5J8g=="; + url = "https://registry.npmjs.org/@lerna/version/-/version-3.16.2.tgz"; + sha512 = "Gd4ajnhYkpIpHfuzRbcqfdiMLgOTnZfKsJDIdWsMJDoerhHFtNkhVSyaw4rQd2AIO4dCi63QxuGM9fUTFk0VKw=="; }; }; "@lerna/write-log-file-3.13.0" = { @@ -2038,13 +2038,13 @@ let sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw=="; }; }; - "@octokit/endpoint-5.3.1" = { + "@octokit/endpoint-5.3.2" = { name = "_at_octokit_slash_endpoint"; packageName = "@octokit/endpoint"; - version = "5.3.1"; + version = "5.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.1.tgz"; - sha512 = "4mKqSQfeTRFpQMUGIUG1ewdQT64b2YpvjG2dE1x7nhQupdI/AjdgdcIsmPtRFEXlih/uLQLRWJL4FrivpQdC7A=="; + url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-5.3.2.tgz"; + sha512 = "gRjteEM9I6f4D8vtwU2iGUTn9RX/AJ0SVXiqBUEuYEWVGGAVjSXdT0oNmghH5lvQNWs8mwt6ZaultuG6yXivNw=="; }; }; "@octokit/plugin-enterprise-rest-3.6.2" = { @@ -2074,13 +2074,13 @@ let sha512 = "L4JaJDXn8SGT+5G0uX79rZLv0MNJmfGa4vb4vy1NnpjSnWDLJRy6m90udGwvMmavwsStgbv2QNkPzzTCMmL+ig=="; }; }; - "@octokit/rest-16.28.5" = { + "@octokit/rest-16.28.6" = { name = "_at_octokit_slash_rest"; packageName = "@octokit/rest"; - version = "16.28.5"; + version = "16.28.6"; src = fetchurl { - url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.5.tgz"; - sha512 = "W8hHSm6103c+lNdTuQBMKdZNDCOFFXJdatj92g2d6Hqk134EMDHRc02QWI/Fs1WGnWZ8Leb0QFbXPKO2njeevQ=="; + url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.28.6.tgz"; + sha512 = "ERfzS6g6ZNPJkEUclxLenr+UEncbymCe//IBrWWdp59nslYDeJboq07Ue9brX05Uv0+SY3kwA33cdiVBVPAOMQ=="; }; }; "@parcel/fs-1.11.0" = { @@ -3190,6 +3190,15 @@ let sha512 = "uUrgZ8AxS+Lio0fZKAipJjAh415JyrOZowliZAzmnJSsf7piVL5w+G0+gFJ0KSu3QRhvui/7zuvpLz03YjXAhg=="; }; }; + "@zkochan/cmd-shim-3.1.0" = { + name = "_at_zkochan_slash_cmd-shim"; + packageName = "@zkochan/cmd-shim"; + version = "3.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@zkochan/cmd-shim/-/cmd-shim-3.1.0.tgz"; + sha512 = "o8l0+x7C7sMZU3v9GuJIAU10qQLtwR1dtRQIOmlNMtyaqhmpXOzx1HWiYoWfmmf9HHZoAkXpc9TM9PQYF9d4Jg=="; + }; + }; "CSSselect-0.4.1" = { name = "CSSselect"; packageName = "CSSselect"; @@ -3307,6 +3316,15 @@ let sha512 = "jzewKKpZbaYUa6HTThnrl+GrJhzjEAeuc7hTVpZdzg7kupXZFoqQDFwyOwLNbmJKJlmzw8yiipMPkDiuKkT06Q=="; }; }; + "abstract-logging-1.0.0" = { + name = "abstract-logging"; + packageName = "abstract-logging"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/abstract-logging/-/abstract-logging-1.0.0.tgz"; + sha1 = "8b7deafd310559bc28f77724dd1bb30177278c1b"; + }; + }; "abstract-random-access-1.1.2" = { name = "abstract-random-access"; packageName = "abstract-random-access"; @@ -5062,6 +5080,15 @@ let sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; }; }; + "asn1-0.2.3" = { + name = "asn1"; + packageName = "asn1"; + version = "0.2.3"; + src = fetchurl { + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; + sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; + }; + }; "asn1-0.2.4" = { name = "asn1"; packageName = "asn1"; @@ -5080,6 +5107,15 @@ let sha512 = "p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw=="; }; }; + "asn1.js-5.2.0" = { + name = "asn1.js"; + packageName = "asn1.js"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/asn1.js/-/asn1.js-5.2.0.tgz"; + sha512 = "Q7hnYGGNYbcmGrCPulXfkEw7oW7qjWeM4ZTALmgpuIcZLxyqqKYWxCZg2UBm8bklrnB4m2mGyJPWfoktdORD8A=="; + }; + }; "assert-1.5.0" = { name = "assert"; packageName = "assert"; @@ -5476,13 +5512,13 @@ let sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; }; }; - "aws-sdk-2.496.0" = { + "aws-sdk-2.497.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.496.0"; + version = "2.497.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.496.0.tgz"; - sha512 = "6xZ//phdvp7/dUZjOdDsorl+xehhkAgxOMber9vUlMO9ckBOeufIvED7oKF0NvSlfG8laHK4JprXKQvhXqVLqA=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.497.0.tgz"; + sha512 = "SCAVfWqj0qe22Lj6ZHMP/4autc9x3GqgWTj3YrE3VleSuql62xhyCC9gSYfbm7wo8Puqx0+kEnKYyyXR7Z98QA=="; }; }; "aws-sign2-0.6.0" = { @@ -13910,6 +13946,15 @@ let sha1 = "8c7ac44b87baab55cd50c828dc38778eac052ea5"; }; }; + "eventemitter3-2.0.3" = { + name = "eventemitter3"; + packageName = "eventemitter3"; + version = "2.0.3"; + src = fetchurl { + url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz"; + sha1 = "b5e1079b59fb5e1ba2771c0a993be060a58c99ba"; + }; + }; "eventemitter3-3.1.2" = { name = "eventemitter3"; packageName = "eventemitter3"; @@ -14594,6 +14639,15 @@ let sha512 = "q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg=="; }; }; + "fast-text-encoding-1.0.0" = { + name = "fast-text-encoding"; + packageName = "fast-text-encoding"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/fast-text-encoding/-/fast-text-encoding-1.0.0.tgz"; + sha512 = "R9bHCvweUxxwkDwhjav5vxpFvdPGlVngtqmx4pIZfSUhM/Q4NiIUHB456BAf+Q1Nwu3HEZYONtu+Rya+af4jiQ=="; + }; + }; "fast-url-parser-1.1.3" = { name = "fast-url-parser"; packageName = "fast-url-parser"; @@ -14747,6 +14801,15 @@ let sha512 = "uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw=="; }; }; + "file-type-12.0.1" = { + name = "file-type"; + packageName = "file-type"; + version = "12.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/file-type/-/file-type-12.0.1.tgz"; + sha512 = "YIs1E51cmqcmgF38ODjy0+M/l5DyfIIy3vngTOujQr/lXqkaSskfBniaZoZ1HVIpa5FTf5e7hCXS4TzxfNGMRQ=="; + }; + }; "file-type-3.9.0" = { name = "file-type"; packageName = "file-type"; @@ -14837,6 +14900,15 @@ let sha512 = "ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA=="; }; }; + "filenamify-4.1.0" = { + name = "filenamify"; + packageName = "filenamify"; + version = "4.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/filenamify/-/filenamify-4.1.0.tgz"; + sha512 = "KQV/uJDI9VQgN7sHH1Zbk6+42cD6mnQ2HONzkXUfPJ+K2FC8GZ1dpewbbHw0Sz8Tf5k3EVdHVayM4DoAwWlmtg=="; + }; + }; "filesize-3.6.1" = { name = "filesize"; packageName = "filesize"; @@ -16854,6 +16926,15 @@ let sha1 = "5b9e6b78c3832452d2ba2bb1cb830f96276410ac"; }; }; + "grapheme-splitter-1.0.4" = { + name = "grapheme-splitter"; + packageName = "grapheme-splitter"; + version = "1.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"; + sha512 = "bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ=="; + }; + }; "graphlib-2.1.7" = { name = "graphlib"; packageName = "graphlib"; @@ -18051,6 +18132,15 @@ let sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; }; }; + "http_ece-1.1.0" = { + name = "http_ece"; + packageName = "http_ece"; + version = "1.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/http_ece/-/http_ece-1.1.0.tgz"; + sha512 = "bptAfCDdPJxOs5zYSe7Y3lpr772s1G346R4Td5LgRUeCwIGpCGDUTJxRrhTNcAXbx37spge0kWEIH7QAYWNTlA=="; + }; + }; "https-browserify-1.0.0" = { name = "https-browserify"; packageName = "https-browserify"; @@ -19005,6 +19095,15 @@ let sha512 = "Mb6kv78bTi4RNAIIWL8Bbre7hXOR2pNUi3j8FaQkLaitf/ZWxkq3/iIwXNYk2ACO3IMfdVdQrOkUtwZblO7uBA=="; }; }; + "ipaddr.js-0.1.3" = { + name = "ipaddr.js"; + packageName = "ipaddr.js"; + version = "0.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.3.tgz"; + sha1 = "27a9ca37f148d2102b0ef191ccbf2c51a8f025c6"; + }; + }; "ipaddr.js-1.0.5" = { name = "ipaddr.js"; packageName = "ipaddr.js"; @@ -19032,6 +19131,15 @@ let sha512 = "0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="; }; }; + "irc-framework-4.4.0" = { + name = "irc-framework"; + packageName = "irc-framework"; + version = "4.4.0"; + src = fetchurl { + url = "https://registry.npmjs.org/irc-framework/-/irc-framework-4.4.0.tgz"; + sha512 = "81ZjeFg0J+OdwGO4S90f8/GpwNwIcP9KaCt0lvRqt1GueT7cKPX2v1yiRML3cJXofkz/MsVZqJCnAEThYYaTUQ=="; + }; + }; "irc-replies-2.0.1" = { name = "irc-replies"; packageName = "irc-replies"; @@ -20175,6 +20283,15 @@ let sha512 = "oea4It03KvuJrEbwYGMrRmlY+Wh7a/J/jBYKezkiUW/s6GrcAePOCnpfLR8TXkHiASZlEHCgckMd7uMAfJ9w/w=="; }; }; + "isomorphic-textencoder-1.0.1" = { + name = "isomorphic-textencoder"; + packageName = "isomorphic-textencoder"; + version = "1.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/isomorphic-textencoder/-/isomorphic-textencoder-1.0.1.tgz"; + sha512 = "676hESgHullDdHDsj469hr+7t3i/neBKU9J7q1T4RHaWwLAsaQnywC0D1dIUId0YZ+JtVrShzuBk1soo0+GVcQ=="; + }; + }; "isstream-0.1.2" = { name = "isstream"; packageName = "isstream"; @@ -21382,6 +21499,15 @@ let sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="; }; }; + "ldap-filter-0.2.2" = { + name = "ldap-filter"; + packageName = "ldap-filter"; + version = "0.2.2"; + src = fetchurl { + url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; + sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; + }; + }; "lead-1.0.0" = { name = "lead"; packageName = "lead"; @@ -21868,6 +21994,15 @@ let sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; }; }; + "lodash-4.17.14" = { + name = "lodash"; + packageName = "lodash"; + version = "4.17.14"; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.14.tgz"; + sha512 = "mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw=="; + }; + }; "lodash-4.17.15" = { name = "lodash"; packageName = "lodash"; @@ -24118,6 +24253,15 @@ let sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; }; }; + "middleware-handler-0.2.0" = { + name = "middleware-handler"; + packageName = "middleware-handler"; + version = "0.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/middleware-handler/-/middleware-handler-0.2.0.tgz"; + sha1 = "bf02af7e6b577c0230609b2ae58df0e446f3fd02"; + }; + }; "miller-rabin-4.0.1" = { name = "miller-rabin"; packageName = "miller-rabin"; @@ -24496,6 +24640,15 @@ let sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; }; }; + "mkdirp-promise-5.0.1" = { + name = "mkdirp-promise"; + packageName = "mkdirp-promise"; + version = "5.0.1"; + src = fetchurl { + url = "https://registry.npmjs.org/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz"; + sha1 = "e9b8f68e552c68a9c1713b84883f7a1dd039b8a1"; + }; + }; "mkpath-1.0.0" = { name = "mkpath"; packageName = "mkpath"; @@ -26328,13 +26481,13 @@ let sha1 = "99b85aec29fcb388d2dd351f0013bf5268787e67"; }; }; - "npm-lifecycle-3.0.0" = { + "npm-lifecycle-3.1.2" = { name = "npm-lifecycle"; packageName = "npm-lifecycle"; - version = "3.0.0"; + version = "3.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.0.0.tgz"; - sha512 = "/x/8zxo5Tn3qWj1eSUXgyr2pLBnEoFkpJQE/8pRwrEpJI4irZM0+YSp7W8NGDLzN6SaBOGOPaJV9O2dhY1IWwQ=="; + url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.1.2.tgz"; + sha512 = "nhfOcoTHrW1lJJlM2o77vTE2RWR4YOVyj7YzmY0y5itsMjEuoJHteio/ez0BliENEPsNxIUQgwhyEW9dShj3Ww=="; }; }; "npm-package-arg-6.1.0" = { @@ -27652,6 +27805,15 @@ let sha512 = "bd1T8OBG7hcvMd9c/udgv6u5v9wISP3Oyl9Cm7Weop8EFwrtcQDnS2sb6zhwqus2WslSr5wSTIPiTTpxxmPm7Q=="; }; }; + "package-json-6.5.0" = { + name = "package-json"; + packageName = "package-json"; + version = "6.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/package-json/-/package-json-6.5.0.tgz"; + sha512 = "k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ=="; + }; + }; "package-json-versionify-1.0.4" = { name = "package-json-versionify"; packageName = "package-json-versionify"; @@ -30425,13 +30587,13 @@ let sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; }; }; - "puppeteer-1.18.1" = { + "puppeteer-1.19.0" = { name = "puppeteer"; packageName = "puppeteer"; - version = "1.18.1"; + version = "1.19.0"; src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.18.1.tgz"; - sha512 = "luUy0HPSuWPsPZ1wAp6NinE0zgetWtudf5zwZ6dHjMWfYpTQcmKveFRox7VBNhQ98OjNA9PQ9PzQyX8k/KrxTg=="; + url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.19.0.tgz"; + sha512 = "2S6E6ygpoqcECaagDbBopoSOPDv0pAZvTbnBgUY+6hq0/XDFDOLEMNlHF/SKJlzcaZ9ckiKjKDuueWI3FN/WXw=="; }; }; "push-stream-10.1.2" = { @@ -31478,6 +31640,15 @@ let sha512 = "4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A=="; }; }; + "registry-auth-token-4.0.0" = { + name = "registry-auth-token"; + packageName = "registry-auth-token"; + version = "4.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.0.0.tgz"; + sha512 = "lpQkHxd9UL6tb3k/aHAVfnVtn+Bcs9ob5InuFLLEDqSqeq+AljB8GZW9xY0x7F+xYwEcjKe07nyoxzEYz6yvkw=="; + }; + }; "registry-url-3.1.0" = { name = "registry-url"; packageName = "registry-url"; @@ -33935,13 +34106,13 @@ let sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; }; }; - "snyk-1.196.0" = { + "snyk-1.197.0" = { name = "snyk"; packageName = "snyk"; - version = "1.196.0"; + version = "1.197.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.196.0.tgz"; - sha512 = "Gv/N2mzAfh+9xhK72Z+ZDiKepQyE1NLF6S6WTLhoyxkvABUfnxgmfj7I6adn9AmLtMxMCqwo9neOdqQW1rLDYQ=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.197.0.tgz"; + sha512 = "qZSQ0nW+ow1sjogLME3CumXgMJXpm37lyhikt8SurGUH8ogkq4Q7s7Md9ercJJpEd9+LVjKJY4IBp+2Qv4HInw=="; }; }; "snyk-config-2.2.2" = { @@ -34079,13 +34250,13 @@ let sha512 = "GP3VBrkz1iDDw2q8ftTqppHqzIAxmsUIoXR+FRWDKcipkKHXHJyUmtEo11QVT5fNRV0D0RCsssk2S5CTxTCu6A=="; }; }; - "snyk-sbt-plugin-2.5.7" = { + "snyk-sbt-plugin-2.6.0" = { name = "snyk-sbt-plugin"; packageName = "snyk-sbt-plugin"; - version = "2.5.7"; + version = "2.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.5.7.tgz"; - sha512 = "nVGsYq/EZfSFzKaXJvUTqaf9phH5+EgZNN3ynN9Y54EO8Lh4Dljnd/gBIQzxHMI2joQDH4FMB3ojDZeiCkeQ1Q=="; + url = "https://registry.npmjs.org/snyk-sbt-plugin/-/snyk-sbt-plugin-2.6.0.tgz"; + sha512 = "a2NGX82rWkzGbgL9HZNACvGWR25SnPpCWw4aM+bDuSBYuWp/61oBz2DW1kI+pCP658FYjzDql7pmz0H+UPiwNA=="; }; }; "snyk-tree-1.0.0" = { @@ -34295,6 +34466,15 @@ let sha512 = "FbZ/X/2Xq3DAMhuRA4bnN0jy1QxaPTVPLFvyv6CEj0QDKSTdWp9yRxo1JhqXmWKhPQeJyUMajHJB2UjT43pFcw=="; }; }; + "socksjs-0.5.0" = { + name = "socksjs"; + packageName = "socksjs"; + version = "0.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/socksjs/-/socksjs-0.5.0.tgz"; + sha1 = "77b005e32d1bfc96e560fedd5d7eedcf120f87e3"; + }; + }; "sodium-browserify-1.3.0" = { name = "sodium-browserify"; packageName = "sodium-browserify"; @@ -34349,13 +34529,13 @@ let sha512 = "csdVyakzHJRyCevY4aZC2Eacda8paf+4nmRGF2N7KxCLKY2Ajn72JsExaQlJQ2BiXJncp44p3T+b80cU+2TTsg=="; }; }; - "sonic-boom-0.7.4" = { + "sonic-boom-0.7.5" = { name = "sonic-boom"; packageName = "sonic-boom"; - version = "0.7.4"; + version = "0.7.5"; src = fetchurl { - url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.7.4.tgz"; - sha512 = "8JRAJg0RxZtFLQMxolwETvWd2JSlH3ZGo/Z4xPxMbpqF14xCgVYPVeFCFOR3zyr3pcfG82QDVj6537Sx5ZWdNw=="; + url = "https://registry.npmjs.org/sonic-boom/-/sonic-boom-0.7.5.tgz"; + sha512 = "1pKrnAV6RfvntPnarY71tpthFTM3pWZWWQdghZY8ARjtDPGzG/inxqSuRwQY/7V1woUjfyxPb437zn4p5phgnQ=="; }; }; "sorcery-0.10.0" = { @@ -36816,6 +36996,15 @@ let sha512 = "PW6rXqLNGL3xZ6d5/INrX+pt8qbffmeDPLcvkBOlfNpDRFhVvNNjFmZXH86ZQjrOz9t/nNZDBXqnzqJuioJbSQ=="; }; }; + "thelounge-ldapjs-non-maintained-fork-1.0.4" = { + name = "thelounge-ldapjs-non-maintained-fork"; + packageName = "thelounge-ldapjs-non-maintained-fork"; + version = "1.0.4"; + src = fetchurl { + url = "https://registry.npmjs.org/thelounge-ldapjs-non-maintained-fork/-/thelounge-ldapjs-non-maintained-fork-1.0.4.tgz"; + sha512 = "uf6H6UMv6EKmU81V1Q5lECwiGz4noSua+C+nGiC/Vgtayu3VRjtSSIJzUJDUjJT3YS8HJgkvBe2SsgGrPlT/7g=="; + }; + }; "then-fs-2.0.0" = { name = "then-fs"; packageName = "then-fs"; @@ -38094,6 +38283,15 @@ let sha1 = "5c080e5d661cbbe38259d2e70a3c7253e873881d"; }; }; + "ua-parser-js-0.7.20" = { + name = "ua-parser-js"; + packageName = "ua-parser-js"; + version = "0.7.20"; + src = fetchurl { + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.20.tgz"; + sha512 = "8OaIKfzL5cpx8eCMAhhvTlft8GYF8b2eQr6JkCyVdrgjcytyOmPCXrqXFcUnhonRpLlh5yxEZVohm6mzaowUOw=="; + }; + }; "uc.micro-1.0.6" = { name = "uc.micro"; packageName = "uc.micro"; @@ -39111,6 +39309,15 @@ let sha1 = "1505a03a289a48cbd7a434efbaeec5055f5633a9"; }; }; + "urlsafe-base64-1.0.0" = { + name = "urlsafe-base64"; + packageName = "urlsafe-base64"; + version = "1.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/urlsafe-base64/-/urlsafe-base64-1.0.0.tgz"; + sha1 = "23f89069a6c62f46cf3a1d3b00169cefb90be0c6"; + }; + }; "use-3.1.1" = { name = "use"; packageName = "use"; @@ -39561,6 +39768,15 @@ let sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94"; }; }; + "vasync-1.6.4" = { + name = "vasync"; + packageName = "vasync"; + version = "1.6.4"; + src = fetchurl { + url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; + sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; + }; + }; "vendors-1.0.3" = { name = "vendors"; packageName = "vendors"; @@ -40272,6 +40488,15 @@ let sha1 = "7137946585c73fe44882013853bd000c5d687a4e"; }; }; + "web-push-3.3.5" = { + name = "web-push"; + packageName = "web-push"; + version = "3.3.5"; + src = fetchurl { + url = "https://registry.npmjs.org/web-push/-/web-push-3.3.5.tgz"; + sha512 = "sukVBk0chRCL4n+Xwurl2TlD4/JmezNv4L2nwlTZx4KwMeUPfmD9TdGl6A6taayNgjObYzp0k0gubAcQCp7TMg=="; + }; + }; "webassemblyjs-1.8.5" = { name = "webassemblyjs"; packageName = "webassemblyjs"; @@ -40299,13 +40524,13 @@ let sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; }; }; - "webpack-4.36.1" = { + "webpack-4.37.0" = { name = "webpack"; packageName = "webpack"; - version = "4.36.1"; + version = "4.37.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; - sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.37.0.tgz"; + sha512 = "iJPPvL7XpbcbwOthbzpa2BSPlmGp8lGDokAj/LdWtK80rsPoPOdANSbDBf2GAVLKZD3GhCuQ/gGkgN9HWs0Keg=="; }; }; "webpack-cli-3.3.6" = { @@ -41524,6 +41749,15 @@ let sha512 = "HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw=="; }; }; + "yarn-1.16.0" = { + name = "yarn"; + packageName = "yarn"; + version = "1.16.0"; + src = fetchurl { + url = "https://registry.npmjs.org/yarn/-/yarn-1.16.0.tgz"; + sha512 = "cfemyGlnWKA1zopUUgebTPf8C4WkPIZ+TJmklwcEAJ4u6oWPtJeAzrsamaGGh/+b1XWe8W51yzAImC4AWbWR1g=="; + }; + }; "yauzl-2.10.0" = { name = "yauzl"; packageName = "yauzl"; @@ -42388,7 +42622,7 @@ in sources."ansi-styles-3.2.1" sources."ast-types-0.13.2" sources."async-limiter-1.0.0" - sources."aws-sdk-2.496.0" + sources."aws-sdk-2.497.0" sources."balanced-match-1.0.0" sources."base64-js-1.3.0" sources."bluebird-3.5.5" @@ -42521,7 +42755,7 @@ in sources."proxy-from-env-1.0.0" sources."pseudomap-1.0.2" sources."punycode-1.3.2" - sources."puppeteer-1.18.1" + sources."puppeteer-1.19.0" sources."querystring-0.2.0" sources."raw-body-2.4.1" sources."readable-stream-3.4.0" @@ -45911,7 +46145,7 @@ in sources."assert-plus-1.0.0" sources."async-2.6.3" sources."asynckit-0.4.0" - sources."aws-sdk-2.496.0" + sources."aws-sdk-2.497.0" sources."aws-sign2-0.7.0" sources."aws4-1.8.0" sources."base64-js-1.3.0" @@ -51218,7 +51452,7 @@ in sources."p-limit-2.2.0" sources."p-locate-3.0.0" sources."p-try-2.2.0" - sources."package-json-6.4.0" + sources."package-json-6.5.0" sources."parseurl-1.3.3" sources."path-exists-3.0.0" sources."path-is-inside-1.0.2" @@ -51238,7 +51472,7 @@ in sources."range-parser-1.2.1" sources."raw-body-2.4.0" sources."rc-1.2.8" - sources."registry-auth-token-3.4.0" + sources."registry-auth-token-4.0.0" sources."registry-url-5.1.0" (sources."request-2.88.0" // { dependencies = [ @@ -51891,10 +52125,10 @@ in lerna = nodeEnv.buildNodePackage { name = "lerna"; packageName = "lerna"; - version = "3.16.1"; + version = "3.16.2"; src = fetchurl { - url = "https://registry.npmjs.org/lerna/-/lerna-3.16.1.tgz"; - sha512 = "MjVOWbSq5GABjfSG4q4wTw2eOTTFR5pwNmbDioI3nmrGsXI/kzzo3iRPTJlqL1klL+7O6s3lio7838vsPz9Iew=="; + url = "https://registry.npmjs.org/lerna/-/lerna-3.16.2.tgz"; + sha512 = "El4BJ3/h2Dw1TIMNk/30v6CXZrX85sVANMan5wmAaEGhlKwUGPV4HZLa7trFYCUSYgT4dL4pN15Vv3L48oYX/A=="; }; dependencies = [ (sources."@evocateur/libnpmaccess-3.1.2" // { @@ -51914,10 +52148,10 @@ in sources."semver-5.7.0" ]; }) - sources."@lerna/add-3.16.1" + sources."@lerna/add-3.16.2" sources."@lerna/batch-packages-3.16.0" - sources."@lerna/bootstrap-3.16.1" - sources."@lerna/changed-3.16.1" + sources."@lerna/bootstrap-3.16.2" + sources."@lerna/changed-3.16.2" sources."@lerna/check-working-tree-3.14.2" sources."@lerna/child-process-3.14.2" sources."@lerna/clean-3.16.0" @@ -51935,7 +52169,7 @@ in sources."pify-4.0.1" ]; }) - sources."@lerna/create-symlink-3.16.0" + sources."@lerna/create-symlink-3.16.2" sources."@lerna/describe-ref-3.14.2" sources."@lerna/diff-3.16.0" sources."@lerna/exec-3.16.0" @@ -51949,7 +52183,7 @@ in sources."@lerna/has-npm-version-3.16.0" sources."@lerna/import-3.16.0" sources."@lerna/init-3.16.0" - sources."@lerna/link-3.16.0" + sources."@lerna/link-3.16.2" sources."@lerna/list-3.16.0" sources."@lerna/listable-3.16.0" sources."@lerna/log-packed-3.16.0" @@ -51960,7 +52194,7 @@ in }) sources."@lerna/npm-dist-tag-3.16.0" sources."@lerna/npm-install-3.16.0" - (sources."@lerna/npm-publish-3.16.1" // { + (sources."@lerna/npm-publish-3.16.2" // { dependencies = [ sources."pify-4.0.1" ]; @@ -51968,30 +52202,30 @@ in sources."@lerna/npm-run-script-3.14.2" sources."@lerna/otplease-3.16.0" sources."@lerna/output-3.13.0" - sources."@lerna/pack-directory-3.16.1" + sources."@lerna/pack-directory-3.16.2" sources."@lerna/package-3.16.0" sources."@lerna/package-graph-3.16.0" sources."@lerna/prerelease-id-from-version-3.16.0" sources."@lerna/project-3.16.0" sources."@lerna/prompt-3.13.0" - sources."@lerna/publish-3.16.1" + sources."@lerna/publish-3.16.2" sources."@lerna/pulse-till-done-3.13.0" sources."@lerna/query-graph-3.16.0" sources."@lerna/resolve-symlink-3.16.0" sources."@lerna/rimraf-dir-3.14.2" sources."@lerna/run-3.16.0" - sources."@lerna/run-lifecycle-3.16.1" + sources."@lerna/run-lifecycle-3.16.2" sources."@lerna/run-parallel-batches-3.16.0" sources."@lerna/run-topologically-3.16.0" - sources."@lerna/symlink-binary-3.16.0" - sources."@lerna/symlink-dependencies-3.16.0" + sources."@lerna/symlink-binary-3.16.2" + sources."@lerna/symlink-dependencies-3.16.2" sources."@lerna/timer-3.13.0" sources."@lerna/validation-error-3.13.0" - sources."@lerna/version-3.16.1" + sources."@lerna/version-3.16.2" sources."@lerna/write-log-file-3.13.0" sources."@mrmlnc/readdir-enhanced-2.2.1" sources."@nodelib/fs.stat-1.1.3" - (sources."@octokit/endpoint-5.3.1" // { + (sources."@octokit/endpoint-5.3.2" // { dependencies = [ sources."is-plain-object-3.0.0" sources."isobject-4.0.0" @@ -52005,11 +52239,12 @@ in ]; }) sources."@octokit/request-error-1.0.4" - sources."@octokit/rest-16.28.5" + sources."@octokit/rest-16.28.6" sources."@types/events-3.0.0" sources."@types/glob-7.1.1" sources."@types/minimatch-3.0.3" sources."@types/node-12.6.8" + sources."@zkochan/cmd-shim-3.1.0" sources."JSONStream-1.3.5" sources."abbrev-1.1.1" sources."agent-base-4.3.0" @@ -52018,6 +52253,7 @@ in sources."ansi-escapes-3.2.0" sources."ansi-regex-2.1.1" sources."ansi-styles-3.2.1" + sources."any-promise-1.3.0" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" sources."argparse-1.0.10" @@ -52103,7 +52339,6 @@ in ]; }) sources."clone-1.0.4" - sources."cmd-shim-2.0.2" sources."code-point-at-1.1.0" sources."collection-visit-1.0.0" sources."color-convert-1.9.3" @@ -52468,11 +52703,13 @@ in ]; }) sources."mkdirp-0.5.1" + sources."mkdirp-promise-5.0.1" sources."modify-values-1.0.1" sources."move-concurrently-1.0.1" sources."ms-2.1.2" sources."multimatch-3.0.0" sources."mute-stream-0.0.7" + sources."mz-2.7.0" sources."nanomatch-1.2.13" sources."neo-async-2.6.1" sources."nice-try-1.0.5" @@ -52491,7 +52728,7 @@ in }) sources."normalize-url-3.3.0" sources."npm-bundled-1.0.6" - sources."npm-lifecycle-3.0.0" + sources."npm-lifecycle-3.1.2" (sources."npm-package-arg-6.1.0" // { dependencies = [ sources."semver-5.7.0" @@ -52743,6 +52980,8 @@ in sources."temp-dir-1.0.0" sources."temp-write-3.4.0" sources."text-extensions-2.0.0" + sources."thenify-3.3.0" + sources."thenify-all-1.6.0" sources."through-2.3.8" sources."through2-2.0.5" sources."tmp-0.0.33" @@ -55027,7 +55266,7 @@ in sources."vm-browserify-1.1.0" sources."watchpack-1.6.0" sources."wcwidth-1.0.1" - (sources."webpack-4.36.1" // { + (sources."webpack-4.37.0" // { dependencies = [ sources."arr-diff-4.0.0" sources."array-unique-0.3.2" @@ -58237,7 +58476,7 @@ in sources."p-limit-2.2.0" sources."p-locate-4.1.0" sources."p-try-2.2.0" - sources."package-json-6.4.0" + sources."package-json-6.5.0" (sources."pacote-9.5.4" // { dependencies = [ sources."semver-5.7.0" @@ -58280,7 +58519,7 @@ in sources."safe-buffer-5.1.2" ]; }) - sources."registry-auth-token-3.4.0" + sources."registry-auth-token-4.0.0" sources."registry-url-5.1.0" sources."require-from-string-2.0.2" (sources."requireg-0.2.2" // { @@ -61457,10 +61696,10 @@ in snyk = nodeEnv.buildNodePackage { name = "snyk"; packageName = "snyk"; - version = "1.196.0"; + version = "1.197.0"; src = fetchurl { - url = "https://registry.npmjs.org/snyk/-/snyk-1.196.0.tgz"; - sha512 = "Gv/N2mzAfh+9xhK72Z+ZDiKepQyE1NLF6S6WTLhoyxkvABUfnxgmfj7I6adn9AmLtMxMCqwo9neOdqQW1rLDYQ=="; + url = "https://registry.npmjs.org/snyk/-/snyk-1.197.0.tgz"; + sha512 = "qZSQ0nW+ow1sjogLME3CumXgMJXpm37lyhikt8SurGUH8ogkq4Q7s7Md9ercJJpEd9+LVjKJY4IBp+2Qv4HInw=="; }; dependencies = [ sources."@snyk/composer-lockfile-parser-1.0.3" @@ -61768,7 +62007,7 @@ in sources."semver-5.7.0" ]; }) - (sources."snyk-sbt-plugin-2.5.7" // { + (sources."snyk-sbt-plugin-2.6.0" // { dependencies = [ sources."tmp-0.1.0" ]; @@ -64708,6 +64947,401 @@ in bypassCache = true; reconstructLock = true; }; + thelounge = nodeEnv.buildNodePackage { + name = "thelounge"; + packageName = "thelounge"; + version = "3.1.1"; + src = fetchurl { + url = "https://registry.npmjs.org/thelounge/-/thelounge-3.1.1.tgz"; + sha512 = "TaYiWjvP5wjKAob3qMr8Ks+C8LfTxIohrhZ8b4DuilHlZCpIeEgADXs2K8u+ZVSMJ6GHOQKvpCogSE30sTL36A=="; + }; + dependencies = [ + sources."@sindresorhus/is-0.14.0" + sources."@szmarczak/http-timer-1.1.2" + sources."abbrev-1.1.1" + sources."abstract-logging-1.0.0" + sources."accepts-1.3.7" + sources."after-0.8.2" + sources."agent-base-4.3.0" + sources."ajv-6.10.2" + sources."ansi-regex-2.1.1" + sources."ansi-styles-3.2.1" + sources."aproba-1.2.0" + (sources."are-we-there-yet-1.1.5" // { + dependencies = [ + sources."isarray-1.0.0" + sources."readable-stream-2.3.6" + sources."string_decoder-1.1.1" + ]; + }) + sources."array-flatten-1.1.1" + sources."arraybuffer.slice-0.0.7" + sources."asn1-0.2.3" + sources."asn1.js-5.2.0" + sources."assert-plus-1.0.0" + sources."async-limiter-1.0.0" + sources."asynckit-0.4.0" + sources."aws-sign2-0.7.0" + sources."aws4-1.8.0" + sources."backo2-1.0.2" + sources."backoff-2.5.0" + sources."balanced-match-1.0.0" + sources."base64-arraybuffer-0.1.5" + sources."base64id-1.0.0" + sources."bcrypt-pbkdf-1.0.2" + sources."bcryptjs-2.4.3" + sources."better-assert-1.0.2" + sources."blob-0.0.5" + sources."bn.js-4.11.8" + sources."body-parser-1.19.0" + sources."boolbase-1.0.0" + sources."brace-expansion-1.1.11" + sources."buffer-equal-constant-time-1.0.1" + sources."busboy-0.3.1" + sources."bytes-3.1.0" + (sources."cacheable-request-6.1.0" // { + dependencies = [ + sources."get-stream-5.1.0" + sources."lowercase-keys-2.0.0" + ]; + }) + sources."callsite-1.0.0" + sources."caseless-0.12.0" + sources."chalk-2.4.2" + sources."cheerio-0.22.0" + sources."chownr-1.1.2" + sources."clone-response-1.0.2" + sources."code-point-at-1.1.0" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" + sources."combined-stream-1.0.8" + sources."commander-2.20.0" + sources."component-bind-1.0.0" + sources."component-emitter-1.2.1" + sources."component-inherit-0.0.3" + sources."concat-map-0.0.1" + sources."console-control-strings-1.1.0" + sources."content-disposition-0.5.3" + sources."content-type-1.0.4" + sources."cookie-0.4.0" + sources."cookie-signature-1.0.6" + sources."core-js-3.1.4" + sources."core-util-is-1.0.2" + sources."css-select-1.2.0" + sources."css-what-2.1.3" + sources."dashdash-1.14.1" + sources."debug-2.6.9" + sources."decompress-response-3.3.0" + sources."deep-extend-0.6.0" + sources."defer-to-connect-1.0.2" + sources."delayed-stream-1.0.0" + sources."delegates-1.0.0" + sources."depd-1.1.2" + sources."destroy-1.0.4" + sources."detect-libc-1.0.3" + sources."dicer-0.3.0" + sources."dom-serializer-0.1.1" + sources."domelementtype-1.3.1" + sources."domhandler-2.4.2" + sources."domutils-1.5.1" + sources."duplexer3-0.1.4" + sources."ecc-jsbn-0.1.2" + sources."ecdsa-sig-formatter-1.0.11" + sources."ee-first-1.1.1" + sources."encodeurl-1.0.2" + sources."end-of-stream-1.4.1" + (sources."engine.io-3.3.2" // { + dependencies = [ + sources."cookie-0.3.1" + sources."debug-3.1.0" + ]; + }) + (sources."engine.io-client-3.3.2" // { + dependencies = [ + sources."debug-3.1.0" + ]; + }) + sources."engine.io-parser-2.1.3" + sources."entities-1.1.2" + sources."es6-promise-4.2.8" + sources."es6-promisify-5.0.0" + sources."escape-html-1.0.3" + sources."escape-string-regexp-1.0.5" + sources."etag-1.8.1" + sources."eventemitter3-2.0.3" + sources."express-4.17.1" + sources."extend-3.0.2" + sources."extsprintf-1.2.0" + sources."fast-deep-equal-2.0.1" + sources."fast-json-stable-stringify-2.0.0" + sources."fast-text-encoding-1.0.0" + sources."file-type-12.0.1" + sources."filename-reserved-regex-2.0.0" + sources."filenamify-4.1.0" + sources."finalhandler-1.1.2" + sources."forever-agent-0.6.1" + sources."form-data-2.3.3" + sources."forwarded-0.1.2" + sources."fresh-0.5.2" + sources."fs-extra-8.1.0" + sources."fs-minipass-1.2.6" + sources."fs.realpath-1.0.0" + sources."gauge-2.7.4" + sources."get-stream-4.1.0" + sources."getpass-0.1.7" + sources."glob-7.1.4" + sources."got-9.6.0" + sources."graceful-fs-4.2.0" + sources."grapheme-splitter-1.0.4" + sources."har-schema-2.0.0" + sources."har-validator-5.1.3" + sources."has-binary2-1.0.3" + sources."has-cors-1.1.0" + sources."has-flag-3.0.0" + sources."has-unicode-2.0.1" + sources."htmlparser2-3.10.1" + sources."http-cache-semantics-4.0.3" + (sources."http-errors-1.7.2" // { + dependencies = [ + sources."inherits-2.0.3" + ]; + }) + sources."http-signature-1.2.0" + sources."http_ece-1.1.0" + (sources."https-proxy-agent-2.2.2" // { + dependencies = [ + sources."debug-3.2.6" + sources."ms-2.1.2" + ]; + }) + sources."iconv-lite-0.4.24" + sources."ignore-walk-3.0.1" + sources."indexof-0.0.1" + sources."inflight-1.0.6" + sources."inherits-2.0.4" + sources."ini-1.3.5" + sources."ipaddr.js-1.9.0" + sources."irc-framework-4.4.0" + sources."is-fullwidth-code-point-1.0.0" + sources."is-typedarray-1.0.0" + sources."is-utf8-0.2.1" + sources."isarray-2.0.1" + sources."isomorphic-textencoder-1.0.1" + sources."isstream-0.1.2" + sources."jsbn-0.1.1" + sources."json-buffer-3.0.0" + sources."json-schema-0.2.3" + sources."json-schema-traverse-0.4.1" + sources."json-stringify-safe-5.0.1" + sources."jsonfile-4.0.0" + (sources."jsprim-1.4.1" // { + dependencies = [ + sources."extsprintf-1.3.0" + ]; + }) + sources."jwa-1.4.1" + sources."jws-3.2.2" + sources."keyv-3.1.0" + (sources."ldap-filter-0.2.2" // { + dependencies = [ + sources."assert-plus-0.1.5" + ]; + }) + sources."linkify-it-2.1.0" + sources."lodash-4.17.14" + sources."lodash.assignin-4.2.0" + sources."lodash.bind-4.2.1" + sources."lodash.defaults-4.2.0" + sources."lodash.filter-4.6.0" + sources."lodash.flatten-4.4.0" + sources."lodash.foreach-4.5.0" + sources."lodash.map-4.6.0" + sources."lodash.merge-4.6.2" + sources."lodash.pick-4.4.0" + sources."lodash.reduce-4.6.0" + sources."lodash.reject-4.6.0" + sources."lodash.some-4.6.0" + sources."lowercase-keys-1.0.1" + sources."media-typer-0.3.0" + sources."merge-descriptors-1.0.1" + sources."methods-1.1.2" + sources."middleware-handler-0.2.0" + sources."mime-1.6.0" + sources."mime-db-1.40.0" + sources."mime-types-2.1.24" + sources."mimic-response-1.0.1" + sources."minimalistic-assert-1.0.1" + sources."minimatch-3.0.4" + sources."minimist-1.2.0" + sources."minipass-2.3.5" + sources."minizlib-1.2.1" + (sources."mkdirp-0.5.1" // { + dependencies = [ + sources."minimist-0.0.8" + ]; + }) + sources."ms-2.0.0" + sources."mute-stream-0.0.8" + sources."nan-2.14.0" + (sources."needle-2.4.0" // { + dependencies = [ + sources."debug-3.2.6" + sources."ms-2.1.2" + ]; + }) + sources."negotiator-0.6.2" + (sources."node-pre-gyp-0.11.0" // { + dependencies = [ + sources."semver-5.7.0" + ]; + }) + sources."nopt-4.0.1" + sources."normalize-url-4.3.0" + sources."npm-bundled-1.0.6" + sources."npm-packlist-1.4.4" + sources."npmlog-4.1.2" + sources."nth-check-1.0.2" + sources."number-is-nan-1.0.1" + sources."oauth-sign-0.9.0" + sources."object-assign-4.1.1" + sources."object-component-0.0.3" + sources."on-finished-2.3.0" + sources."once-1.4.0" + sources."os-homedir-1.0.2" + sources."os-tmpdir-1.0.2" + sources."osenv-0.1.5" + sources."p-cancelable-1.1.0" + sources."p-finally-1.0.0" + sources."p-try-2.2.0" + sources."package-json-6.4.0" + sources."parseqs-0.0.5" + sources."parseuri-0.0.5" + sources."parseurl-1.3.3" + sources."path-is-absolute-1.0.1" + sources."path-to-regexp-0.1.7" + sources."performance-now-2.1.0" + sources."pify-4.0.1" + sources."precond-0.2.3" + sources."prepend-http-2.0.0" + sources."process-nextick-args-2.0.1" + sources."proxy-addr-2.0.5" + sources."psl-1.2.0" + sources."pump-3.0.0" + sources."punycode-2.1.1" + sources."qs-6.7.0" + sources."range-parser-1.2.1" + sources."raw-body-2.4.0" + sources."rc-1.2.8" + sources."read-1.0.7" + sources."read-chunk-3.2.0" + sources."readable-stream-3.4.0" + sources."regenerator-runtime-0.13.3" + sources."registry-auth-token-3.4.0" + sources."registry-url-5.1.0" + (sources."request-2.88.0" // { + dependencies = [ + sources."qs-6.5.2" + ]; + }) + sources."responselike-1.0.2" + sources."rimraf-2.6.3" + sources."safe-buffer-5.1.2" + sources."safer-buffer-2.1.2" + sources."sax-1.2.4" + sources."semver-6.2.0" + (sources."send-0.17.1" // { + dependencies = [ + sources."ms-2.1.1" + ]; + }) + sources."serve-static-1.14.1" + sources."set-blocking-2.0.0" + sources."setprototypeof-1.1.1" + sources."signal-exit-3.0.2" + (sources."socket.io-2.2.0" // { + dependencies = [ + sources."debug-4.1.1" + sources."ms-2.1.2" + ]; + }) + sources."socket.io-adapter-1.1.1" + (sources."socket.io-client-2.2.0" // { + dependencies = [ + sources."debug-3.1.0" + ]; + }) + (sources."socket.io-parser-3.3.0" // { + dependencies = [ + sources."debug-3.1.0" + ]; + }) + (sources."socksjs-0.5.0" // { + dependencies = [ + sources."ipaddr.js-0.1.3" + ]; + }) + sources."sqlite3-4.0.9" + sources."sshpk-1.16.1" + sources."statuses-1.5.0" + sources."streamsearch-0.1.2" + sources."string-width-1.0.2" + sources."string_decoder-1.2.0" + sources."strip-ansi-3.0.1" + sources."strip-json-comments-2.0.1" + sources."strip-outer-1.0.1" + sources."supports-color-5.5.0" + sources."tar-4.4.10" + sources."thelounge-ldapjs-non-maintained-fork-1.0.4" + sources."tlds-1.203.1" + sources."to-array-0.1.4" + sources."to-readable-stream-1.0.0" + sources."toidentifier-1.0.0" + (sources."tough-cookie-2.4.3" // { + dependencies = [ + sources."punycode-1.4.1" + ]; + }) + sources."trim-repeated-1.0.0" + sources."tunnel-agent-0.6.0" + sources."tweetnacl-0.14.5" + sources."type-is-1.6.18" + sources."ua-parser-js-0.7.20" + sources."uc.micro-1.0.6" + sources."universalify-0.1.2" + sources."unpipe-1.0.0" + sources."uri-js-4.2.2" + sources."url-parse-lax-3.0.0" + sources."urlsafe-base64-1.0.0" + sources."util-deprecate-1.0.2" + sources."utils-merge-1.0.1" + sources."uuid-3.3.2" + sources."vary-1.1.2" + (sources."vasync-1.6.4" // { + dependencies = [ + sources."verror-1.6.0" + ]; + }) + sources."verror-1.10.0" + sources."web-push-3.3.5" + sources."wide-align-1.1.3" + sources."with-open-file-0.1.6" + sources."wrappy-1.0.2" + sources."ws-6.1.4" + sources."xmlhttprequest-ssl-1.5.5" + sources."yallist-3.0.3" + sources."yarn-1.16.0" + sources."yeast-0.1.2" + ]; + buildInputs = globalBuildInputs; + meta = { + description = "The self-hosted Web IRC client"; + homepage = https://thelounge.chat/; + license = "MIT"; + }; + production = true; + bypassCache = true; + reconstructLock = true; + }; three = nodeEnv.buildNodePackage { name = "three"; packageName = "three"; @@ -68110,10 +68744,10 @@ in webpack = nodeEnv.buildNodePackage { name = "webpack"; packageName = "webpack"; - version = "4.36.1"; + version = "4.37.0"; src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-4.36.1.tgz"; - sha512 = "Ej01/N9W8DVyhEpeQnbUdGvOECw0L46FxS12cCOs8gSK7bhUlrbHRnWkjiXckGlHjUrmL89kDpTRIkUk6Y+fKg=="; + url = "https://registry.npmjs.org/webpack/-/webpack-4.37.0.tgz"; + sha512 = "iJPPvL7XpbcbwOthbzpa2BSPlmGp8lGDokAj/LdWtK80rsPoPOdANSbDBf2GAVLKZD3GhCuQ/gGkgN9HWs0Keg=="; }; dependencies = [ sources."@webassemblyjs/ast-1.8.5" @@ -70216,7 +70850,7 @@ in ]; }) sources."snapdragon-util-3.0.1" - (sources."snyk-1.196.0" // { + (sources."snyk-1.197.0" // { dependencies = [ sources."ansi-regex-4.1.0" sources."debug-3.2.6" @@ -70296,7 +70930,7 @@ in sources."semver-5.7.0" ]; }) - (sources."snyk-sbt-plugin-2.5.7" // { + (sources."snyk-sbt-plugin-2.6.0" // { dependencies = [ sources."semver-6.2.0" ]; @@ -70316,7 +70950,7 @@ in sources."es6-promisify-5.0.0" ]; }) - sources."sonic-boom-0.7.4" + sources."sonic-boom-0.7.5" sources."source-map-0.6.1" sources."source-map-resolve-0.5.2" sources."source-map-support-0.5.12" @@ -70451,9 +71085,11 @@ in sources."is-ci-2.0.0" sources."is-npm-3.0.0" sources."latest-version-5.1.0" - sources."package-json-6.4.0" + sources."package-json-6.5.0" sources."prepend-http-2.0.0" + sources."registry-auth-token-4.0.0" sources."registry-url-5.1.0" + sources."semver-6.2.0" sources."string-width-3.1.0" sources."strip-ansi-5.2.0" sources."type-fest-0.3.1" diff --git a/pkgs/development/node-packages/node-packages-v12.nix b/pkgs/development/node-packages/node-packages-v12.nix index e02ec8eeb1e..210c35c1db6 100644 --- a/pkgs/development/node-packages/node-packages-v12.nix +++ b/pkgs/development/node-packages/node-packages-v12.nix @@ -13,13 +13,13 @@ let sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; }; }; - "ajv-6.10.0" = { + "ajv-6.10.2" = { name = "ajv"; packageName = "ajv"; - version = "6.10.0"; + version = "6.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; }; }; "ansi-regex-2.1.1" = { @@ -256,13 +256,13 @@ let sha1 = "1b681c21ff84033c826543090689420d187151dc"; }; }; - "chownr-1.1.1" = { + "chownr-1.1.2" = { name = "chownr"; packageName = "chownr"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz"; - sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g=="; + url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz"; + sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A=="; }; }; "class-utils-0.3.6" = { @@ -1786,6 +1786,15 @@ let sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; }; }; + "safe-buffer-5.2.0" = { + name = "safe-buffer"; + packageName = "safe-buffer"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; + }; + }; "safe-regex-1.1.0" = { name = "safe-regex"; packageName = "safe-regex"; @@ -1957,13 +1966,13 @@ let sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; }; }; - "spdx-license-ids-3.0.4" = { + "spdx-license-ids-3.0.5" = { name = "spdx-license-ids"; packageName = "spdx-license-ids"; - version = "3.0.4"; + version = "3.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; - sha512 = "7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA=="; + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; + sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; }; }; "split-string-3.1.0" = { @@ -2591,7 +2600,7 @@ in }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.10.0" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -2607,7 +2616,7 @@ in sources."buffer-from-1.1.1" sources."builtins-1.0.3" sources."caseless-0.12.0" - sources."chownr-1.1.1" + sources."chownr-1.1.2" sources."code-point-at-1.1.0" sources."combined-stream-1.0.8" sources."concat-map-0.0.1" @@ -2710,12 +2719,16 @@ in sources."psl-1.2.0" sources."punycode-2.1.1" sources."qs-6.5.2" - sources."readable-stream-2.3.6" + (sources."readable-stream-2.3.6" // { + dependencies = [ + sources."safe-buffer-5.1.2" + ]; + }) sources."request-2.88.0" sources."resolve-1.11.1" sources."retry-0.10.1" sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" + sources."safe-buffer-5.2.0" sources."safer-buffer-2.1.2" sources."semver-6.1.3" sources."set-blocking-2.0.0" @@ -2725,11 +2738,15 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.4" + sources."spdx-license-ids-3.0.5" sources."sshpk-1.16.1" sources."ssri-5.3.0" sources."string-width-1.0.2" - sources."string_decoder-1.1.1" + (sources."string_decoder-1.1.1" // { + dependencies = [ + sources."safe-buffer-5.1.2" + ]; + }) sources."strip-ansi-3.0.1" sources."tar-4.4.10" sources."temp-0.9.0" diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix index 3e5acf2e852..8f78d6fb227 100644 --- a/pkgs/development/node-packages/node-packages-v8.nix +++ b/pkgs/development/node-packages/node-packages-v8.nix @@ -4,6 +4,114 @@ let sources = { + "@babel/code-frame-7.5.5" = { + name = "_at_babel_slash_code-frame"; + packageName = "@babel/code-frame"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz"; + sha512 = "27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw=="; + }; + }; + "@babel/core-7.5.5" = { + name = "_at_babel_slash_core"; + packageName = "@babel/core"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz"; + sha512 = "i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg=="; + }; + }; + "@babel/generator-7.5.5" = { + name = "_at_babel_slash_generator"; + packageName = "@babel/generator"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz"; + sha512 = "ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ=="; + }; + }; + "@babel/helper-function-name-7.1.0" = { + name = "_at_babel_slash_helper-function-name"; + packageName = "@babel/helper-function-name"; + version = "7.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"; + sha512 = "A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw=="; + }; + }; + "@babel/helper-get-function-arity-7.0.0" = { + name = "_at_babel_slash_helper-get-function-arity"; + packageName = "@babel/helper-get-function-arity"; + version = "7.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"; + sha512 = "r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ=="; + }; + }; + "@babel/helper-split-export-declaration-7.4.4" = { + name = "_at_babel_slash_helper-split-export-declaration"; + packageName = "@babel/helper-split-export-declaration"; + version = "7.4.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz"; + sha512 = "Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q=="; + }; + }; + "@babel/helpers-7.5.5" = { + name = "_at_babel_slash_helpers"; + packageName = "@babel/helpers"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz"; + sha512 = "nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g=="; + }; + }; + "@babel/highlight-7.5.0" = { + name = "_at_babel_slash_highlight"; + packageName = "@babel/highlight"; + version = "7.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz"; + sha512 = "7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ=="; + }; + }; + "@babel/parser-7.5.5" = { + name = "_at_babel_slash_parser"; + packageName = "@babel/parser"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz"; + sha512 = "E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g=="; + }; + }; + "@babel/template-7.4.4" = { + name = "_at_babel_slash_template"; + packageName = "@babel/template"; + version = "7.4.4"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz"; + sha512 = "CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw=="; + }; + }; + "@babel/traverse-7.5.5" = { + name = "_at_babel_slash_traverse"; + packageName = "@babel/traverse"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz"; + sha512 = "MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ=="; + }; + }; + "@babel/types-7.5.5" = { + name = "_at_babel_slash_types"; + packageName = "@babel/types"; + version = "7.5.5"; + src = fetchurl { + url = "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz"; + sha512 = "s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw=="; + }; + }; "@sailshq/lodash-3.10.3" = { name = "_at_sailshq_slash_lodash"; packageName = "@sailshq/lodash"; @@ -40,13 +148,13 @@ let sha512 = "xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w=="; }; }; - "@types/node-8.10.49" = { + "@types/node-8.10.51" = { name = "_at_types_slash_node"; packageName = "@types/node"; - version = "8.10.49"; + version = "8.10.51"; src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-8.10.49.tgz"; - sha512 = "YX30JVx0PvSmJ3Eqr74fYLGeBxD+C7vIL20ek+GGGLJeUbVYRUW3EzyAXpIRA0K8c8o0UWqR/GwEFYiFoz1T8w=="; + url = "https://registry.npmjs.org/@types/node/-/node-8.10.51.tgz"; + sha512 = "cArrlJp3Yv6IyFT/DYe+rlO8o3SIHraALbBW/+CcCYW/a9QucpLI+n2p4sRxAvl2O35TiecpX2heSZtJjvEO+Q=="; }; }; "JSV-4.0.2" = { @@ -175,13 +283,13 @@ let sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7"; }; }; - "ajv-6.10.0" = { + "ajv-6.10.2" = { name = "ajv"; packageName = "ajv"; - version = "6.10.0"; + version = "6.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; }; }; "align-text-0.1.4" = { @@ -238,6 +346,15 @@ let sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; }; }; + "ansi-styles-3.2.1" = { + name = "ansi-styles"; + packageName = "ansi-styles"; + version = "3.2.1"; + src = fetchurl { + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; + sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; + }; + }; "append-field-1.0.0" = { name = "append-field"; packageName = "append-field"; @@ -517,13 +634,13 @@ let sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ=="; }; }; - "async-2.6.2" = { + "async-2.6.3" = { name = "async"; packageName = "async"; - version = "2.6.2"; + version = "2.6.3"; src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; + url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; + sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; }; }; "async-limiter-1.0.0" = { @@ -553,13 +670,13 @@ let sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; }; }; - "aws-sdk-2.486.0" = { + "aws-sdk-2.497.0" = { name = "aws-sdk"; packageName = "aws-sdk"; - version = "2.486.0"; + version = "2.497.0"; src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.486.0.tgz"; - sha512 = "Gd5IB3HPG+fBE7sh16ATwEuHLv7DcpRLmG381i+0UwrWmka+0t6Dc7/yHKkLOXQKVBDI5FvRdlsWAsP/LFpOxw=="; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.497.0.tgz"; + sha512 = "SCAVfWqj0qe22Lj6ZHMP/4autc9x3GqgWTj3YrE3VleSuql62xhyCC9gSYfbm7wo8Puqx0+kEnKYyyXR7Z98QA=="; }; }; "aws-sign2-0.6.0" = { @@ -886,13 +1003,13 @@ let sha512 = "IM5nUITXMgTFTF4avRxsz/oLcMXLSZEzpukulRRpO1emXBI4EgSIr0++hUo+AZ94MINE2C4DXgCDiQ9P0suYXw=="; }; }; - "azure-common-0.9.20" = { + "azure-common-0.9.22" = { name = "azure-common"; packageName = "azure-common"; - version = "0.9.20"; + version = "0.9.22"; src = fetchurl { - url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz"; - sha512 = "0gxFOLV12poak+raLYAU4z9JAZEafYSo9LrS+7WlToOawb2Ye2BfHYAGfLBkQrAZbo/NHpJ28/IaiUZVqiZ4fQ=="; + url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.22.tgz"; + sha512 = "0r9tK9D+1xl2/VPVtfmGmtkMqfooiBLS87fX+Ab0hOCPVVe/6CgVC4in0wSf2Ta8r65DbvxV5P4/t8fp8Q3EsQ=="; }; }; "azure-gallery-2.0.0-pre.18" = { @@ -949,60 +1066,6 @@ let sha512 = "IGLs5Xj6kO8Ii90KerQrrwuJKexLgSwYC4oLWmc11mzKe7Jt2E5IVg+ZQ8K53YWZACtVTMBNO3iGuA+4ipjJxQ=="; }; }; - "babel-code-frame-6.26.0" = { - name = "babel-code-frame"; - packageName = "babel-code-frame"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; - }; - }; - "babel-core-6.26.3" = { - name = "babel-core"; - packageName = "babel-core"; - version = "6.26.3"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"; - sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA=="; - }; - }; - "babel-generator-6.26.1" = { - name = "babel-generator"; - packageName = "babel-generator"; - version = "6.26.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz"; - sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA=="; - }; - }; - "babel-helpers-6.24.1" = { - name = "babel-helpers"; - packageName = "babel-helpers"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; - sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; - }; - }; - "babel-messages-6.23.0" = { - name = "babel-messages"; - packageName = "babel-messages"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; - sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; - }; - }; - "babel-register-6.26.0" = { - name = "babel-register"; - packageName = "babel-register"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; - sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; - }; - }; "babel-runtime-6.26.0" = { name = "babel-runtime"; packageName = "babel-runtime"; @@ -1012,24 +1075,6 @@ let sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; }; }; - "babel-template-6.26.0" = { - name = "babel-template"; - packageName = "babel-template"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; - sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; - }; - }; - "babel-traverse-6.26.0" = { - name = "babel-traverse"; - packageName = "babel-traverse"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; - sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; - }; - }; "babel-types-6.26.0" = { name = "babel-types"; packageName = "babel-types"; @@ -1471,6 +1516,15 @@ let sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; }; }; + "chalk-2.4.2" = { + name = "chalk"; + packageName = "chalk"; + version = "2.4.2"; + src = fetchurl { + url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; + sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; + }; + }; "chance-1.0.18" = { name = "chance"; packageName = "chance"; @@ -1498,13 +1552,13 @@ let sha512 = "Y5uI7Iq/Az6HgJEL6pdw7THVd7jbVOTPwsmcPOBjQL8e3N+pz872kzK5QxYGEy21iRys+iHWV0UZQXDFJo1hyA=="; }; }; - "chownr-1.1.1" = { + "chownr-1.1.2" = { name = "chownr"; packageName = "chownr"; - version = "1.1.1"; + version = "1.1.2"; src = fetchurl { - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz"; - sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g=="; + url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz"; + sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A=="; }; }; "class-utils-0.3.6" = { @@ -1579,6 +1633,24 @@ let sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; }; }; + "color-convert-1.9.3" = { + name = "color-convert"; + packageName = "color-convert"; + version = "1.9.3"; + src = fetchurl { + url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; + sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; + }; + }; + "color-name-1.1.3" = { + name = "color-name"; + packageName = "color-name"; + version = "1.1.3"; + src = fetchurl { + url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; + }; + }; "colors-0.6.2" = { name = "colors"; packageName = "colors"; @@ -2164,15 +2236,6 @@ let sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; }; }; - "detect-indent-4.0.0" = { - name = "detect-indent"; - packageName = "detect-indent"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; - sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; - }; - }; "detect-libc-1.0.3" = { name = "detect-libc"; packageName = "detect-libc"; @@ -2758,13 +2821,13 @@ let sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; }; }; - "form-data-2.4.0" = { + "form-data-2.5.0" = { name = "form-data"; packageName = "form-data"; - version = "2.4.0"; + version = "2.5.0"; src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.4.0.tgz"; - sha512 = "4FinE8RfqYnNim20xDwZZE0V2kOs/AuElIjFUbPuegQSaoZM+vUT5FnwSl10KPugH4voTg1bEQlcbCG9ka75TA=="; + url = "https://registry.npmjs.org/form-data/-/form-data-2.5.0.tgz"; + sha512 = "WXieX3G/8side6VIqx44ablyULoGruSde5PNTxoUyo5CeyAMX6nVWUd0rgist/EuX655cjhUhTo1Fo3tRYqbcA=="; }; }; "formidable-1.2.1" = { @@ -3001,13 +3064,13 @@ let sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; }; }; - "globals-9.18.0" = { + "globals-11.12.0" = { name = "globals"; packageName = "globals"; - version = "9.18.0"; + version = "11.12.0"; src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; - sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="; + url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; + sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; }; }; "gm-1.23.1" = { @@ -3118,6 +3181,15 @@ let sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; }; }; + "has-flag-3.0.0" = { + name = "has-flag"; + packageName = "has-flag"; + version = "3.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; + }; + }; "has-unicode-2.0.1" = { name = "has-unicode"; packageName = "has-unicode"; @@ -3208,15 +3280,6 @@ let sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; }; }; - "home-or-tmp-2.0.0" = { - name = "home-or-tmp"; - packageName = "home-or-tmp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; - sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; - }; - }; "homedir-polyfill-1.0.3" = { name = "homedir-polyfill"; packageName = "homedir-polyfill"; @@ -3406,15 +3469,6 @@ let sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"; }; }; - "invariant-2.2.4" = { - name = "invariant"; - packageName = "invariant"; - version = "2.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; - sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; - }; - }; "invert-kv-1.0.0" = { name = "invert-kv"; packageName = "invert-kv"; @@ -3577,15 +3631,6 @@ let sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; }; }; - "is-finite-1.0.2" = { - name = "is-finite"; - packageName = "is-finite"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; - sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; - }; - }; "is-fullwidth-code-point-1.0.0" = { name = "is-fullwidth-code-point"; packageName = "is-fullwidth-code-point"; @@ -3838,13 +3883,13 @@ let sha1 = "1736fddfd9724f28a3682adc6230ae7e4e9679db"; }; }; - "js-tokens-3.0.2" = { + "js-tokens-4.0.0" = { name = "js-tokens"; packageName = "js-tokens"; - version = "3.0.2"; + version = "4.0.0"; src = fetchurl { - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; + sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; }; }; "js-yaml-3.13.1" = { @@ -3883,13 +3928,13 @@ let sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; }; }; - "jsesc-1.3.0" = { + "jsesc-2.5.2" = { name = "jsesc"; packageName = "jsesc"; - version = "1.3.0"; + version = "2.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; - sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; + sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; }; }; "json-edm-parser-0.1.2" = { @@ -3946,15 +3991,6 @@ let sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; }; }; - "json5-0.5.1" = { - name = "json5"; - packageName = "json5"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; - sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; - }; - }; "json5-1.0.1" = { name = "json5"; packageName = "json5"; @@ -3964,6 +4000,15 @@ let sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; }; }; + "json5-2.1.0" = { + name = "json5"; + packageName = "json5"; + version = "2.1.0"; + src = fetchurl { + url = "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz"; + sha512 = "8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ=="; + }; + }; "jsonfile-4.0.0" = { name = "jsonfile"; packageName = "jsonfile"; @@ -4252,13 +4297,13 @@ let sha1 = "d22c9ac660288f3843e16ba7d2b5d06cca27d777"; }; }; - "lodash-4.17.11" = { + "lodash-4.17.15" = { name = "lodash"; packageName = "lodash"; - version = "4.17.11"; + version = "4.17.15"; src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; }; }; "lodash.get-4.4.2" = { @@ -4306,15 +4351,6 @@ let sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e"; }; }; - "loose-envify-1.4.0" = { - name = "loose-envify"; - packageName = "loose-envify"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; - }; - }; "lru-cache-4.1.5" = { name = "lru-cache"; packageName = "lru-cache"; @@ -4675,13 +4711,13 @@ let sha1 = "400515e05b1924889cb61a1ec6054290a68e1207"; }; }; - "ms-rest-2.5.1" = { + "ms-rest-2.5.3" = { name = "ms-rest"; packageName = "ms-rest"; - version = "2.5.1"; + version = "2.5.3"; src = fetchurl { - url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.1.tgz"; - sha512 = "bRRHn/asERilNDXrm4/paFRAljnIh+L6Qo6zQkBUZRXaDiHYDRq4AFCNX4Bau0db+eXlcnjnHyu3A9EjQc4s6Q=="; + url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.3.tgz"; + sha512 = "p0CnzrTzEkS8UTEwgCqT2O5YVK9E8KGBBlJVm3hFtMZvf0dmncKYXWFPyUa4PAsfBL7h4jfu39tOIFTu6exntg=="; }; }; "ms-rest-azure-1.15.7" = { @@ -4702,13 +4738,13 @@ let sha512 = "J6386a9krZ4VtU7CRt+Ypgo9RGf8+d3gjMBkH7zbkM4zzkhbbMOYiPRaZ+bHZcfihkKLlktTgA6rjshTjF329A=="; }; }; - "multer-1.4.1" = { + "multer-1.4.2" = { name = "multer"; packageName = "multer"; - version = "1.4.1"; + version = "1.4.2"; src = fetchurl { - url = "https://registry.npmjs.org/multer/-/multer-1.4.1.tgz"; - sha512 = "zzOLNRxzszwd+61JFuAo0fxdQfvku12aNJgnla0AQ+hHxFmfc/B7jBVuPr5Rmvu46Jze/iJrFpSOsD7afO8SDw=="; + url = "https://registry.npmjs.org/multer/-/multer-1.4.2.tgz"; + sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; }; }; "mustache-2.3.2" = { @@ -5575,15 +5611,6 @@ let sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; }; }; - "private-0.1.8" = { - name = "private"; - packageName = "private"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz"; - sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="; - }; - }; "process-nextick-args-1.0.7" = { name = "process-nextick-args"; packageName = "process-nextick-args"; @@ -6025,15 +6052,6 @@ let sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; }; }; - "repeating-2.0.1" = { - name = "repeating"; - packageName = "repeating"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; - sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; - }; - }; "request-2.74.0" = { name = "request"; packageName = "request"; @@ -6250,6 +6268,15 @@ let sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; }; }; + "safe-buffer-5.2.0" = { + name = "safe-buffer"; + packageName = "safe-buffer"; + version = "5.2.0"; + src = fetchurl { + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; + }; + }; "safe-json-stringify-1.2.0" = { name = "safe-json-stringify"; packageName = "safe-json-stringify"; @@ -6277,15 +6304,6 @@ let sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; }; }; - "sax-0.5.2" = { - name = "sax"; - packageName = "sax"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-0.5.2.tgz"; - sha1 = "735ffaa39a1cff8ffb9598f0223abdb03a9fb2ea"; - }; - }; "sax-0.5.8" = { name = "sax"; packageName = "sax"; @@ -6556,15 +6574,6 @@ let sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA=="; }; }; - "source-map-support-0.4.18" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.4.18"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; - sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA=="; - }; - }; "source-map-support-0.5.12" = { name = "source-map-support"; packageName = "source-map-support"; @@ -6610,13 +6619,13 @@ let sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; }; }; - "spdx-license-ids-3.0.4" = { + "spdx-license-ids-3.0.5" = { name = "spdx-license-ids"; packageName = "spdx-license-ids"; - version = "3.0.4"; + version = "3.0.5"; src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; - sha512 = "7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA=="; + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; + sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; }; }; "split-0.2.10" = { @@ -6925,6 +6934,15 @@ let sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; }; }; + "supports-color-5.5.0" = { + name = "supports-color"; + packageName = "supports-color"; + version = "5.5.0"; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; + sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; + }; + }; "swagger-express-mw-0.7.0" = { name = "swagger-express-mw"; packageName = "swagger-express-mw"; @@ -7078,6 +7096,15 @@ let sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; }; }; + "to-fast-properties-2.0.0" = { + name = "to-fast-properties"; + packageName = "to-fast-properties"; + version = "2.0.0"; + src = fetchurl { + url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; + sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; + }; + }; "to-object-path-0.3.0" = { name = "to-object-path"; packageName = "to-object-path"; @@ -7789,15 +7816,6 @@ let sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; }; }; - "xml2js-0.2.7" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.7.tgz"; - sha1 = "1838518bb01741cae0878bab4915e494c32306af"; - }; - }; "xml2js-0.2.8" = { name = "xml2js"; packageName = "xml2js"; @@ -7897,13 +7915,13 @@ let sha512 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ=="; }; }; - "xtend-4.0.1" = { + "xtend-4.0.2" = { name = "xtend"; packageName = "xtend"; - version = "4.0.1"; + version = "4.0.2"; src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; - sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; + url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; + sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; }; }; "y18n-3.2.1" = { @@ -8029,47 +8047,47 @@ in alloy = nodeEnv.buildNodePackage { name = "alloy"; packageName = "alloy"; - version = "1.13.10"; + version = "1.14.0"; src = fetchurl { - url = "https://registry.npmjs.org/alloy/-/alloy-1.13.10.tgz"; - sha512 = "bqkApu0vIEGaUPyS7wKv9BkUpHJTE51B5oJ45VHF5GuBmP8YCGgIUw7z4bluMb7q7SVrpzfc2/RIORwjoz6GOA=="; + url = "https://registry.npmjs.org/alloy/-/alloy-1.14.0.tgz"; + sha512 = "42iwEb64YKWuX7E73Q6zIz7/eP6p3SvacSR02LVoTfveitVXTXw5lzW9JFmBQRqua1kdN+YeaPgx8ocz8Ea3wQ=="; }; dependencies = [ + sources."@babel/code-frame-7.5.5" + (sources."@babel/core-7.5.5" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + (sources."@babel/generator-7.5.5" // { + dependencies = [ + sources."source-map-0.5.7" + ]; + }) + sources."@babel/helper-function-name-7.1.0" + sources."@babel/helper-get-function-arity-7.0.0" + sources."@babel/helper-split-export-declaration-7.4.4" + sources."@babel/helpers-7.5.5" + sources."@babel/highlight-7.5.0" + sources."@babel/parser-7.5.5" + sources."@babel/template-7.4.4" + sources."@babel/traverse-7.5.5" + sources."@babel/types-7.5.5" sources."JSV-4.0.2" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" + sources."ansi-styles-3.2.1" sources."array-unique-0.3.2" - sources."async-2.6.2" - sources."babel-code-frame-6.26.0" - (sources."babel-core-6.26.3" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - (sources."babel-generator-6.26.1" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-register-6.26.0" - sources."babel-runtime-6.26.0" - sources."babel-template-6.26.0" - sources."babel-traverse-6.26.0" - sources."babel-types-6.26.0" - sources."babylon-6.18.0" + sources."async-2.6.3" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."chalk-1.1.3" + sources."chalk-2.4.2" sources."chmodr-1.2.0" + sources."color-convert-1.9.3" + sources."color-name-1.1.3" sources."colors-1.3.3" sources."commander-2.20.0" sources."concat-map-0.0.1" sources."convert-source-map-1.6.0" - sources."core-js-2.6.9" - sources."debug-2.6.9" - sources."detect-indent-4.0.0" + sources."debug-4.1.1" sources."ejs-2.5.7" sources."ensure-posix-path-1.1.1" sources."escape-string-regexp-1.0.5" @@ -8086,62 +8104,44 @@ in sources."is-windows-0.2.0" ]; }) - sources."globals-9.18.0" + sources."globals-11.12.0" sources."graceful-fs-4.2.0" - sources."has-ansi-2.0.0" sources."has-color-0.1.7" - sources."home-or-tmp-2.0.0" + sources."has-flag-3.0.0" sources."homedir-polyfill-1.0.3" sources."ini-1.3.5" - sources."invariant-2.2.4" sources."is-3.3.0" - sources."is-finite-1.0.2" sources."is-windows-1.0.2" sources."isexe-2.0.0" - sources."js-tokens-3.0.2" - sources."jsesc-1.3.0" - sources."json5-0.5.1" + sources."js-tokens-4.0.0" + sources."jsesc-2.5.2" + sources."json5-2.1.0" sources."jsonfile-4.0.0" sources."jsonlint-1.6.2" - sources."lodash-4.17.11" - sources."loose-envify-1.4.0" + sources."lodash-4.17.15" sources."matcher-collection-1.1.2" sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" + sources."minimist-1.2.0" sources."moment-2.20.1" - sources."ms-2.0.0" + sources."ms-2.1.2" sources."node.extend-2.0.0" (sources."nomnom-1.8.1" // { dependencies = [ sources."ansi-styles-1.0.0" sources."chalk-0.4.0" - sources."strip-ansi-0.1.1" ]; }) - sources."number-is-nan-1.0.1" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" sources."parse-passwd-1.0.0" - sources."path-is-absolute-1.0.1" sources."path-parse-1.0.6" sources."pkginfo-0.4.1" - sources."private-0.1.8" - sources."regenerator-runtime-0.11.1" - sources."repeating-2.0.1" sources."resolve-1.11.1" sources."safe-buffer-5.1.2" sources."sax-0.5.8" - sources."slash-1.0.0" + sources."semver-5.7.0" sources."source-map-0.6.1" - (sources."source-map-support-0.4.18" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."to-fast-properties-1.0.3" + sources."strip-ansi-0.1.1" + sources."supports-color-5.5.0" + sources."to-fast-properties-2.0.0" sources."trim-right-1.0.1" sources."underscore-1.6.0" sources."universalify-0.1.2" @@ -8170,10 +8170,10 @@ in sha512 = "MMiK5sFfIocNMWCc5PshUCAe6aY4P13/GCmSwudOziA/pFdQMHU8jhu+jU2SSWFug4K1ugeuCwtMXe43oL0PhQ=="; }; dependencies = [ - sources."@types/node-8.10.49" + sources."@types/node-8.10.51" sources."JSV-4.0.2" sources."adal-node-0.1.28" - sources."ajv-6.10.0" + sources."ajv-6.10.2" sources."amdefine-1.0.1" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -8257,10 +8257,14 @@ in sources."underscore-1.9.1" ]; }) - (sources."azure-common-0.9.20" // { + (sources."azure-common-0.9.22" // { dependencies = [ sources."validator-9.4.1" - sources."xml2js-0.2.7" + (sources."xml2js-0.4.19" // { + dependencies = [ + sources."xmlbuilder-9.0.7" + ]; + }) ]; }) sources."azure-gallery-2.0.0-pre.18" @@ -8275,6 +8279,7 @@ in (sources."azure-storage-2.10.3" // { dependencies = [ sources."readable-stream-2.0.6" + sources."sax-0.5.8" sources."underscore-1.8.3" sources."validator-9.4.1" sources."xml2js-0.2.8" @@ -8305,6 +8310,7 @@ in dependencies = [ sources."process-nextick-args-2.0.1" sources."readable-stream-2.3.6" + sources."safe-buffer-5.1.2" sources."string_decoder-1.1.1" ]; }) @@ -8339,7 +8345,7 @@ in sources."forever-agent-0.6.1" (sources."form-data-1.0.1" // { dependencies = [ - sources."async-2.6.2" + sources."async-2.6.3" ]; }) sources."from-0.1.7" @@ -8405,7 +8411,7 @@ in sources."streamline-0.4.11" ]; }) - sources."lodash-4.17.11" + sources."lodash-4.17.15" sources."map-stream-0.1.0" sources."md5.js-1.3.4" sources."mime-db-1.40.0" @@ -8414,7 +8420,7 @@ in sources."minimist-0.0.8" sources."mkdirp-0.5.1" sources."moment-2.24.0" - (sources."ms-rest-2.5.1" // { + (sources."ms-rest-2.5.3" // { dependencies = [ sources."through-2.3.8" sources."tunnel-0.0.5" @@ -8487,9 +8493,9 @@ in }) sources."revalidator-0.1.8" sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" + sources."safe-buffer-5.2.0" sources."safer-buffer-2.1.2" - sources."sax-0.5.2" + sources."sax-1.2.4" sources."sntp-1.0.9" sources."source-map-0.1.43" sources."split-0.2.10" @@ -8553,7 +8559,7 @@ in sources."xmlbuilder-0.4.3" sources."xmldom-0.1.27" sources."xpath.js-1.1.0" - sources."xtend-4.0.1" + sources."xtend-4.0.2" ]; buildInputs = globalBuildInputs; meta = { @@ -8870,14 +8876,14 @@ in node-gyp = nodeEnv.buildNodePackage { name = "node-gyp"; packageName = "node-gyp"; - version = "5.0.1"; + version = "5.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.1.tgz"; - sha512 = "D68549U6EDVJLrAkSOZCWX/nmlYo0eCX2dYZoTOOZJ7bEIFrSE/MQgsgMFBKjByJ323hNzkifw2OuT3A5bR5mA=="; + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz"; + sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ=="; }; dependencies = [ sources."abbrev-1.1.1" - sources."ajv-6.10.0" + sources."ajv-6.10.2" sources."ansi-regex-2.1.1" sources."aproba-1.2.0" sources."are-we-there-yet-1.1.5" @@ -8890,7 +8896,7 @@ in sources."bcrypt-pbkdf-1.0.2" sources."brace-expansion-1.1.11" sources."caseless-0.12.0" - sources."chownr-1.1.1" + sources."chownr-1.1.2" sources."code-point-at-1.1.0" sources."combined-stream-1.0.8" sources."concat-map-0.0.1" @@ -9020,7 +9026,7 @@ in sources."are-we-there-yet-1.1.5" sources."balanced-match-1.0.0" sources."brace-expansion-1.1.11" - sources."chownr-1.1.1" + sources."chownr-1.1.2" sources."code-point-at-1.1.0" sources."concat-map-0.0.1" sources."console-control-strings-1.1.0" @@ -9096,10 +9102,10 @@ in pnpm = nodeEnv.buildNodePackage { name = "pnpm"; packageName = "pnpm"; - version = "3.5.3"; + version = "3.6.0"; src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-3.5.3.tgz"; - sha512 = "4gBUaY+IiuJLmoqP3QEtqxmFzY4yqbpnYx7WFrv0Aoy9zR6oneI4429KEO5G3rX+P3jF/OuYdVZ8E59URgD0ag=="; + url = "https://registry.npmjs.org/pnpm/-/pnpm-3.6.0.tgz"; + sha512 = "tjBYCFDvnGdA/FHlOfLn4WZ2Iy1JO8GRFem0RkbtbKO91Z9Jz8v2oYQYkMspY7/7lCBbjQA8+eUatTUu3d6eqw=="; }; buildInputs = globalBuildInputs; meta = { @@ -9162,7 +9168,7 @@ in sources."semver-5.0.3" ]; }) - sources."ajv-6.10.0" + sources."ajv-6.10.2" sources."align-text-0.1.4" sources."ansi-regex-2.1.1" sources."ansi-styles-2.2.1" @@ -9179,7 +9185,7 @@ in sources."async-1.5.2" sources."async-limiter-1.0.0" sources."asynckit-0.4.0" - sources."aws-sdk-2.486.0" + sources."aws-sdk-2.497.0" sources."aws-sign2-0.6.0" sources."aws4-1.8.0" sources."babel-runtime-6.26.0" @@ -9485,7 +9491,7 @@ in }) sources."load-json-file-1.1.0" sources."locate-path-3.0.0" - sources."lodash-4.17.11" + sources."lodash-4.17.15" sources."lodash.get-4.4.2" sources."lodash.isequal-4.5.0" sources."long-2.4.0" @@ -9535,7 +9541,7 @@ in sources."mkdirp-0.5.1" sources."moment-2.24.0" sources."ms-2.0.0" - sources."multer-1.4.1" + sources."multer-1.4.2" sources."mustache-2.3.2" sources."mv-2.1.1" sources."my-local-ip-1.0.0" @@ -9720,7 +9726,7 @@ in sources."spdx-correct-3.1.0" sources."spdx-exceptions-2.2.0" sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.4" + sources."spdx-license-ids-3.0.5" sources."split-1.0.1" sources."sprintf-js-1.0.3" (sources."sshpk-1.16.1" // { @@ -9756,7 +9762,7 @@ in (sources."superagent-3.8.3" // { dependencies = [ sources."debug-3.2.6" - sources."form-data-2.4.0" + sources."form-data-2.5.0" sources."ms-2.1.2" sources."qs-6.7.0" sources."readable-stream-2.3.6" @@ -9888,7 +9894,7 @@ in sources."xmlhttprequest-ssl-1.5.5" sources."xpath-0.0.5" sources."xpath.js-1.1.0" - sources."xtend-4.0.1" + sources."xtend-4.0.2" sources."y18n-4.0.0" sources."yallist-2.1.2" (sources."yargs-6.6.0" // { @@ -9942,7 +9948,7 @@ in }; dependencies = [ sources."adm-zip-0.4.13" - sources."ajv-6.10.0" + sources."ajv-6.10.2" sources."asn1-0.2.4" sources."assert-plus-1.0.0" sources."async-2.6.1" @@ -9996,7 +10002,7 @@ in sources."jsonfile-4.0.0" sources."jsprim-1.4.1" sources."keypress-0.2.1" - sources."lodash-4.17.11" + sources."lodash-4.17.15" sources."longjohn-0.2.12" sources."mime-db-1.40.0" sources."mime-types-2.1.24" @@ -10021,7 +10027,7 @@ in sources."qs-6.5.2" sources."request-2.88.0" sources."rimraf-2.2.8" - sources."safe-buffer-5.1.2" + sources."safe-buffer-5.2.0" sources."safer-buffer-2.1.2" sources."semver-5.6.0" sources."source-map-0.6.1" From 37a2f058ed7ee008a8363933617ccb07db140541 Mon Sep 17 00:00:00 2001 From: Mrmaxmeier Date: Mon, 22 Jul 2019 18:52:20 +0200 Subject: [PATCH 0953/1611] nixos/thelounge: init The Lounge is the official and community-managed fork of Shout. This intends to replace the `shout` service. --- nixos/modules/module-list.nix | 1 + .../modules/services/networking/thelounge.nix | 75 +++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 nixos/modules/services/networking/thelounge.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 0b8ed530889..5041e49db1d 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -692,6 +692,7 @@ ./services/networking/tcpcrypt.nix ./services/networking/teamspeak3.nix ./services/networking/tedicross.nix + ./services/networking/thelounge.nix ./services/networking/tinc.nix ./services/networking/tinydns.nix ./services/networking/tftpd.nix diff --git a/nixos/modules/services/networking/thelounge.nix b/nixos/modules/services/networking/thelounge.nix new file mode 100644 index 00000000000..b1d23372955 --- /dev/null +++ b/nixos/modules/services/networking/thelounge.nix @@ -0,0 +1,75 @@ +{ pkgs, lib, config, ... }: + +with lib; + +let + cfg = config.services.thelounge; + dataDir = "/var/lib/thelounge"; + configJsData = "module.exports = " + builtins.toJSON ( + { private = cfg.private; port = cfg.port; } // cfg.extraConfig + ); +in { + options.services.thelounge = { + enable = mkEnableOption "The Lounge web IRC client"; + + private = mkOption { + type = types.bool; + default = false; + description = '' + Make your The Lounge instance private. You will need to configure user + accounts by using the (thelounge) command or by adding + entries in ${dataDir}/users. You might need to restart + The Lounge after making changes to the state directory. + ''; + }; + + port = mkOption { + type = types.port; + default = 9000; + description = "TCP port to listen on for http connections."; + }; + + extraConfig = mkOption { + default = {}; + type = types.attrs; + example = literalExample ''{ + reverseProxy = true; + defaults = { + name = "Your Network"; + host = "localhost"; + port = 6697; + }; + }''; + description = '' + The Lounge's config.js contents as attribute set (will be + converted to JSON to generate the configuration file). + + The options defined here will be merged to the default configuration file. + Note: In case of duplicate configuration, options from have priority. + + Documentation: + ''; + }; + }; + + config = mkIf cfg.enable { + users.users.thelounge = { + description = "thelounge service user"; + group = "thelounge"; + }; + users.groups.thelounge = {}; + systemd.services.thelounge = { + description = "The Lounge web IRC client"; + wantedBy = [ "multi-user.target" ]; + environment = { THELOUNGE_HOME = dataDir; }; + preStart = "ln -sf ${pkgs.writeText "config.js" configJsData} ${dataDir}/config.js"; + serviceConfig = { + User = "thelounge"; + StateDirectory = baseNameOf dataDir; + ExecStart = "${pkgs.thelounge}/bin/thelounge start"; + }; + }; + + environment.systemPackages = [ pkgs.thelounge ]; + }; +} From c5e515f5c7bd0bfdd1ab90500225e2d26f5a6cbb Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Tue, 23 Jul 2019 13:15:27 +0200 Subject: [PATCH 0954/1611] nixos/nextcloud: fix inclusion of trusted_domains in override config Regression I caused with 3944aa051ca503e255a9da5cf03a58faf6dec268, sorry for this! The Nextcloud installer broke back then because `trusted_domains` was an empty value by default (a.k.a an empty array) which seemed to break the config merger of Nextcloud as Nextcloud doesn't do recursive merging and now no domain was trusted because of that, hence Nextcloud was unreachable for the `curl` call. --- nixos/modules/services/web-apps/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index 7051b73fb57..a0214a75d93 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -333,7 +333,7 @@ in { ${optionalString (c.dbpass != null) "'dbpassword' => '${c.dbpass}',"} ${optionalString (c.dbpassFile != null) "'dbpassword' => nix_read_pwd(),"} 'dbtype' => '${c.dbtype}', - 'trusted_domains' => ${writePhpArrary c.extraTrustedDomains}, + 'trusted_domains' => ${writePhpArrary ([ cfg.hostName ] ++ c.extraTrustedDomains)}, ]; ''; occInstallCmd = let From ebf746457da9877d5637764357b80a37bce9f653 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 23 Jul 2019 08:18:15 -0400 Subject: [PATCH 0955/1611] oh-my-zsh: 2019-07-13 -> 2019-07-22 --- pkgs/shells/zsh/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index 53a4d4b9087..d0f3fc88fc0 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -4,13 +4,13 @@ { stdenv, fetchgit }: stdenv.mkDerivation rec { - version = "2019-07-13"; + version = "2019-07-22"; name = "oh-my-zsh-${version}"; - rev = "17f4cfca99398cb5511557b8515a17bf1bf2948a"; + rev = "508cba2fc2ec545504abcf38ecdd958f3a89e5e8"; src = fetchgit { inherit rev; url = "https://github.com/robbyrussell/oh-my-zsh"; - sha256 = "19f29mrvnhvndvl48fd5kdiixfs0apmb27h4mck5v95p6yw27b6f"; + sha256 = "0pql5p8dwz576s0hgqrzk4543qawlghy7rv3k3jyhrwi4xx4z84d"; }; pathsToLink = [ "/share/oh-my-zsh" ]; From f0ef270336f84ad1dc86037478ba401ae6502f4c Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Tue, 23 Jul 2019 21:01:45 +0800 Subject: [PATCH 0956/1611] eksctl: 0.2.0 -> 0.2.1 --- pkgs/tools/admin/eksctl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/admin/eksctl/default.nix b/pkgs/tools/admin/eksctl/default.nix index ec3b4b7d46f..8de71ce1256 100644 --- a/pkgs/tools/admin/eksctl/default.nix +++ b/pkgs/tools/admin/eksctl/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { pname = "eksctl"; - version = "0.2.0"; + version = "0.2.1"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; - sha256 = "1q7qcmipqq83wm44jn8r0ssvsd3qx8bg3qz0ksj136gf4rhkf59p"; + sha256 = "0f8rj7jw8ym97bjqaxzn1rnhp5nfx3jf5f51jwczljvr67ik9q75"; }; modSha256 = "1lmkwx0r19c2wg9nm85k92nlxjzr8q917jf3f333yf3csfyiix2f"; From 3cb3d7f5f4a091725eb1ac85e319ce24ce2374c1 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Wed, 10 Jul 2019 23:40:12 +0800 Subject: [PATCH 0957/1611] tilt: 0.8.8 -> 0.9.2 --- .../networking/cluster/tilt/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/cluster/tilt/default.nix b/pkgs/applications/networking/cluster/tilt/default.nix index 86496d18e2e..9a26b94f336 100644 --- a/pkgs/applications/networking/cluster/tilt/default.nix +++ b/pkgs/applications/networking/cluster/tilt/default.nix @@ -1,25 +1,24 @@ { stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { - pname = "tilt"; - name = "${pname}-${version}"; + pname = "tilt"; /* Do not use "dev" as a version. If you do, Tilt will consider itself running in development environment and try to serve assets from the source tree, which is not there once build completes. */ - version = "0.8.8"; - rev = "344dc1dc61ffe2c29606b105cea0df79fb5897f5"; + version = "0.9.2"; src = fetchFromGitHub { owner = "windmilleng"; - repo = "tilt"; - rev = "${rev}"; - sha256 = "13yda6m2d92mmc9w4k8ngdxmpqcqf86bkrvcpmpaby848ls1yx8g"; + repo = pname; + rev = "v${version}"; + sha256 = "1kwama90bxmnylmj6hipnx5raiqq42dq31lb66xyd89fzbkdnzk4"; }; goPackagePath = "github.com/windmilleng/tilt"; + subPackages = [ "cmd/tilt" ]; - buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-06-03"); + buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-10"); meta = with stdenv.lib; { description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production"; From c4fec1c6314c0c9c7af59bb465a17d1950ec7464 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Tue, 23 Jul 2019 21:08:33 +0800 Subject: [PATCH 0958/1611] tilt: 0.9.2 -> 0.9.4 --- pkgs/applications/networking/cluster/tilt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/cluster/tilt/default.nix b/pkgs/applications/networking/cluster/tilt/default.nix index 9a26b94f336..f3361f30b21 100644 --- a/pkgs/applications/networking/cluster/tilt/default.nix +++ b/pkgs/applications/networking/cluster/tilt/default.nix @@ -5,20 +5,20 @@ buildGoPackage rec { /* Do not use "dev" as a version. If you do, Tilt will consider itself running in development environment and try to serve assets from the source tree, which is not there once build completes. */ - version = "0.9.2"; + version = "0.9.4"; src = fetchFromGitHub { owner = "windmilleng"; repo = pname; rev = "v${version}"; - sha256 = "1kwama90bxmnylmj6hipnx5raiqq42dq31lb66xyd89fzbkdnzk4"; + sha256 = "1n1hys9mwqr4jiwl2z5bi2lgbw4rp800hsavih87xzrda1gzvmad"; }; goPackagePath = "github.com/windmilleng/tilt"; subPackages = [ "cmd/tilt" ]; - buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-10"); + buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-23"); meta = with stdenv.lib; { description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production"; From 2797ddee7ddebbb1292ea7673c42d77bc82b8515 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 23 Jul 2019 15:19:39 +0200 Subject: [PATCH 0959/1611] Remove .github/FUNDING.yml The configuration is now done through the shared configuration repo: https://github.com/nixos/.github --- .github/FUNDING.yml | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml deleted file mode 100644 index 15792e7132e..00000000000 --- a/.github/FUNDING.yml +++ /dev/null @@ -1,3 +0,0 @@ -# These are supported funding model platforms - -open_collective: nixos From 9332773e5108b096d1e67fb01158cd1a9530e0b0 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Tue, 23 Jul 2019 16:30:56 +0200 Subject: [PATCH 0960/1611] wine: disable zbar in gst-plugins-bad --- pkgs/development/libraries/gstreamer/bad/default.nix | 4 +++- pkgs/misc/emulators/wine/base.nix | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index ba59a251437..2ae0ad2b453 100644 --- a/pkgs/development/libraries/gstreamer/bad/default.nix +++ b/pkgs/development/libraries/gstreamer/bad/default.nix @@ -2,6 +2,7 @@ , config , pkgconfig, python3, gst-plugins-base, orc , gobject-introspection +, enableZbar ? true , faacSupport ? false, faac ? null , faad2, libass, libkate, libmms, librdf, ladspaH , libnice, webrtc-audio-processing, lilv, lv2, serd, sord, sratom @@ -136,13 +137,13 @@ stdenv.mkDerivation rec { soundtouch spandsp srtp - zbar fluidsynth libvdpau libwebp xvidcore gnutls libGLU_combined libgme openssl x265 libxml2 libintl srt ] + ++ optional enableZbar zbar ++ optional faacSupport faac ++ optional stdenv.isLinux wayland # wildmidi requires apple's OpenAL @@ -158,6 +159,7 @@ stdenv.mkDerivation rec { "-Dexamples=disabled" # requires many dependencies and probably not useful for our users "-Ddts=disabled" # required `libdca` library not packaged in nixpkgs as of writing, and marked as "BIG FAT WARNING: libdca is still in early development" + "-Dzbar=${if enableZbar then "enabled" else "disabled"}" "-Dfaac=${if faacSupport then "enabled" else "disabled"}" "-Diqa=disabled" # required `dssim` library not packaging in nixpkgs as of writing "-Dmsdk=disabled" # not packaged in nixpkgs as of writing / no Windows support diff --git a/pkgs/misc/emulators/wine/base.nix b/pkgs/misc/emulators/wine/base.nix index 8edf7ad3959..01d09659915 100644 --- a/pkgs/misc/emulators/wine/base.nix +++ b/pkgs/misc/emulators/wine/base.nix @@ -46,7 +46,9 @@ stdenv.mkDerivation ((lib.optionalAttrs (buildScript != null) { ++ lib.optional udevSupport pkgs.udev ++ lib.optional vulkanSupport pkgs.vulkan-loader ++ lib.optional sdlSupport pkgs.SDL2 - ++ lib.optionals gstreamerSupport (with pkgs.gst_all_1; [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav ]) + ++ lib.optionals gstreamerSupport (with pkgs.gst_all_1; + [ gstreamer gst-plugins-base gst-plugins-good gst-plugins-ugly gst-libav + (gst-plugins-bad.override { enableZbar = false; }) ]) ++ lib.optionals gtkSupport [ pkgs.gtk3 pkgs.glib ] ++ lib.optionals openclSupport [ pkgs.opencl-headers pkgs.ocl-icd ] ++ lib.optionals xmlSupport [ pkgs.libxml2 pkgs.libxslt ] From a354cbb7156bb19f4c9da801ec6c90255ff9e0dc Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 13 Jul 2019 01:30:33 +0800 Subject: [PATCH 0961/1611] fcitx-qt5: 1.2.1 -> 1.2.3 --- pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix | 28 +++++++-------------- 1 file changed, 9 insertions(+), 19 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix index 166fd16811a..b371edb1ace 100644 --- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix +++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix @@ -1,25 +1,16 @@ -{ stdenv, fetchurl, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules -, fetchpatch -}: +{ stdenv, fetchFromGitLab, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules }: stdenv.mkDerivation rec { - name = "fcitx-qt5-${version}"; - version = "1.2.1"; + pname = "fcitx-qt5"; + version = "1.2.3"; - src = fetchurl { - url = "http://download.fcitx-im.org/fcitx-qt5/${name}.tar.xz"; - sha256 = "0z8ax0dxk88byic41mfaiahjdv1k8ciwn97xfjkkgr4ijgscdr8c"; + src = fetchFromGitLab { + owner = "fcitx"; + repo = pname; + rev = version; + sha256 = "0860v3rxsh054wkkbawvyin5mk0flp4cwfcpmcpq147lvdm5lq2i"; }; - patches = [ - # Fix build with Qt 5.11 - # https://github.com/fcitx/fcitx-qt5/issues/34 - (fetchpatch { - url = https://github.com/fcitx/fcitx-qt5/commit/af033e3d5305108eecc568adff7f8b2da5831ed6.diff; - sha256 = "14vfz1fw2k362wnqpglw766fg3d3mc8cmfgic2p96yyipjh9xx3b"; - }) - ]; - nativeBuildInputs = [ cmake extra-cmake-modules pkgconfig ]; buildInputs = [ fcitx qtbase ]; @@ -32,11 +23,10 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = https://github.com/fcitx/fcitx-qt5; + homepage = https://gitlab.com/fcitx/fcitx-qt5; description = "Qt5 IM Module for Fcitx"; license = licenses.gpl2; platforms = platforms.linux; maintainers = with maintainers; [ ericsagnes ]; }; - } From 19e62c89ccc416d32bc0847b201ce14c969954e9 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Tue, 23 Jul 2019 20:29:23 +0200 Subject: [PATCH 0962/1611] dwm-status: 1.6.0 -> 1.6.2 --- pkgs/applications/window-managers/dwm/dwm-status.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/window-managers/dwm/dwm-status.nix b/pkgs/applications/window-managers/dwm/dwm-status.nix index 734d70598fb..308d5508542 100644 --- a/pkgs/applications/window-managers/dwm/dwm-status.nix +++ b/pkgs/applications/window-managers/dwm/dwm-status.nix @@ -9,19 +9,19 @@ in rustPlatform.buildRustPackage rec { name = "dwm-status-${version}"; - version = "1.6.0"; + version = "1.6.2"; src = fetchFromGitHub { owner = "Gerschtli"; repo = "dwm-status"; rev = version; - sha256 = "02gvlxv6ylx4mdkf59crm2zyahiz1zd4cr5zz29dnhx7r7738i9a"; + sha256 = "16vf7val1isc4227amng2ap9af34xa2va23dxv43px006xhrar78"; }; nativeBuildInputs = [ makeWrapper pkgconfig ]; buildInputs = [ dbus gdk_pixbuf libnotify xorg.libX11 ]; - cargoSha256 = "1r2wczfkdpvjc7iylwajkminraaz1ix6n724in0dvv5klfcdxlxb"; + cargoSha256 = "0pprf8509d321azg2l51lpxylgpk7290y38z9p5hxgkcwhrhrcss"; postInstall = lib.optionalString (bins != []) '' wrapProgram $out/bin/dwm-status --prefix "PATH" : "${stdenv.lib.makeBinPath bins}" From 36a6109259b4f996ad63d9d9dd80fbdf80362571 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Tue, 23 Jul 2019 13:19:43 -0700 Subject: [PATCH 0963/1611] geekbench: 4.3.3 -> 4.4.0 (#65080) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/geekbench/versions --- pkgs/tools/misc/geekbench/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/geekbench/default.nix b/pkgs/tools/misc/geekbench/default.nix index df623d0c178..fddb1c99634 100644 --- a/pkgs/tools/misc/geekbench/default.nix +++ b/pkgs/tools/misc/geekbench/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "geekbench-${version}"; - version = "4.3.3"; + version = "4.4.0"; src = fetchurl { url = "https://cdn.geekbench.com/Geekbench-${version}-Linux.tar.gz"; - sha256 = "0bqa0k4cf4w8gjs49lnrvns11jv21kqcgdbqp2zhwqgmkx9gr8ny"; + sha256 = "1awdr54vw29ah7aah2bxpy4qkqasxj67sqk6gir8ybnxb5hxm3ri"; }; dontConfigure = true; From 6988b0b929d78b4f237b917baad1fb979adaa5c2 Mon Sep 17 00:00:00 2001 From: Guanpeng Xu Date: Wed, 24 Jul 2019 04:23:00 +0800 Subject: [PATCH 0964/1611] mathematica: 11.3.0 -> 12.0.0 (#65031) * mathematica: archive version 11 * mathematica: 11.3.0 -> 12.0.0 --- maintainers/maintainer-list.nix | 5 + .../science/math/mathematica/11.nix | 150 ++++++++++++++++++ .../science/math/mathematica/default.nix | 22 +-- .../science/math/mathematica/l10ns.nix | 31 +++- pkgs/top-level/all-packages.nix | 1 + 5 files changed, 194 insertions(+), 15 deletions(-) create mode 100644 pkgs/applications/science/math/mathematica/11.nix diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index e8a501c793a..07c810ed976 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2132,6 +2132,11 @@ github = "henrytill"; name = "Henry Till"; }; + herberteuler = { + email = "herberteuler@gmail.com"; + github = "herberteuler"; + name = "Guanpeng Xu"; + }; hhm = { email = "heehooman+nixpkgs@gmail.com"; github = "hhm0"; diff --git a/pkgs/applications/science/math/mathematica/11.nix b/pkgs/applications/science/math/mathematica/11.nix new file mode 100644 index 00000000000..521cb70099b --- /dev/null +++ b/pkgs/applications/science/math/mathematica/11.nix @@ -0,0 +1,150 @@ +{ stdenv +, coreutils +, patchelf +, requireFile +, callPackage +, alsaLib +, dbus +, fontconfig +, freetype +, gcc +, glib +, ncurses +, opencv +, openssl +, unixODBC +, xkeyboard_config +, xorg +, zlib +, libxml2 +, libuuid +, lang ? "en" +, libGL +, libGLU +}: + +let + l10n = + import ./l10ns.nix { + lib = stdenv.lib; + inherit requireFile lang; + majorVersion = "11"; + }; +in +stdenv.mkDerivation rec { + inherit (l10n) version name src; + + buildInputs = [ + coreutils + patchelf + alsaLib + coreutils + dbus + fontconfig + freetype + gcc.cc + gcc.libc + glib + ncurses + opencv + openssl + unixODBC + xkeyboard_config + libxml2 + libuuid + zlib + libGL + libGLU + ] ++ (with xorg; [ + libX11 + libXext + libXtst + libXi + libXmu + libXrender + libxcb + libXcursor + libXfixes + libXrandr + libICE + libSM + ]); + + ldpath = stdenv.lib.makeLibraryPath buildInputs + + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") + (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); + + phases = "unpackPhase installPhase fixupPhase"; + + unpackPhase = '' + echo "=== Extracting makeself archive ===" + # find offset from file + offset=$(${stdenv.shell} -c "$(grep -axm1 -e 'offset=.*' $src); echo \$offset" $src) + dd if="$src" ibs=$offset skip=1 | tar -xf - + cd Unix + ''; + + installPhase = '' + cd Installer + # don't restrict PATH, that has already been done + sed -i -e 's/^PATH=/# PATH=/' MathInstaller + sed -i -e 's/\/bin\/bash/\/bin\/sh/' MathInstaller + + echo "=== Running MathInstaller ===" + ./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -silent + + # Fix library paths + cd $out/libexec/Mathematica/Executables + for path in mathematica MathKernel Mathematica WolframKernel wolfram math; do + sed -i -e 's#export LD_LIBRARY_PATH$#export LD_LIBRARY_PATH=${zlib}/lib:\''${LD_LIBRARY_PATH}#' $path + done + + # Fix xkeyboard config path for Qt + for path in mathematica Mathematica; do + line=$(grep -n QT_PLUGIN_PATH $path | sed 's/:.*//') + sed -i -e "$line iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"" $path + done + ''; + + preFixup = '' + echo "=== PatchElfing away ===" + # This code should be a bit forgiving of errors, unfortunately + set +e + find $out/libexec/Mathematica/SystemFiles -type f -perm -0100 | while read f; do + type=$(readelf -h "$f" 2>/dev/null | grep 'Type:' | sed -e 's/ *Type: *\([A-Z]*\) (.*/\1/') + if [ -z "$type" ]; then + : + elif [ "$type" == "EXEC" ]; then + echo "patching $f executable <<" + patchelf --shrink-rpath "$f" + patchelf \ + --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ + "$f" \ + && patchelf --shrink-rpath "$f" \ + || echo unable to patch ... ignoring 1>&2 + elif [ "$type" == "DYN" ]; then + echo "patching $f library <<" + patchelf \ + --set-rpath "$(patchelf --print-rpath "$f"):${ldpath}" \ + "$f" \ + && patchelf --shrink-rpath "$f" \ + || echo unable to patch ... ignoring 1>&2 + else + echo "not patching $f <<: unknown elf type" + fi + done + ''; + + # all binaries are already stripped + dontStrip = true; + + # we did this in prefixup already + dontPatchELF = true; + + meta = { + description = "Wolfram Mathematica computational software system"; + homepage = http://www.wolfram.com/mathematica/; + license = stdenv.lib.licenses.unfree; + }; +} diff --git a/pkgs/applications/science/math/mathematica/default.nix b/pkgs/applications/science/math/mathematica/default.nix index 165a5660557..ca9a87abe13 100644 --- a/pkgs/applications/science/math/mathematica/default.nix +++ b/pkgs/applications/science/math/mathematica/default.nix @@ -1,6 +1,7 @@ { stdenv , coreutils , patchelf +, requireFile , callPackage , alsaLib , dbus @@ -24,10 +25,10 @@ let l10n = - with stdenv.lib; - with callPackage ./l10ns.nix {}; - flip (findFirst (l: l.lang == lang)) l10ns - (throw "Language '${lang}' not supported"); + import ./l10ns.nix { + lib = stdenv.lib; + inherit requireFile lang; + }; in stdenv.mkDerivation rec { inherit (l10n) version name src; @@ -72,8 +73,6 @@ stdenv.mkDerivation rec { + stdenv.lib.optionalString (stdenv.hostPlatform.system == "x86_64-linux") (":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" buildInputs); - phases = "unpackPhase installPhase fixupPhase"; - unpackPhase = '' echo "=== Extracting makeself archive ===" # find offset from file @@ -99,8 +98,7 @@ stdenv.mkDerivation rec { # Fix xkeyboard config path for Qt for path in mathematica Mathematica; do - line=$(grep -n QT_PLUGIN_PATH $path | sed 's/:.*//') - sed -i -e "$line iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"" $path + sed -i -e "2iexport QT_XKB_CONFIG_ROOT=\"${xkeyboard_config}/share/X11/xkb\"\n" $path done ''; @@ -134,15 +132,19 @@ stdenv.mkDerivation rec { done ''; + dontBuild = true; + # all binaries are already stripped dontStrip = true; # we did this in prefixup already dontPatchELF = true; - meta = { + meta = with stdenv.lib; { description = "Wolfram Mathematica computational software system"; homepage = http://www.wolfram.com/mathematica/; - license = stdenv.lib.licenses.unfree; + license = licenses.unfree; + maintainers = with maintainers; [ herberteuler ]; + platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/applications/science/math/mathematica/l10ns.nix b/pkgs/applications/science/math/mathematica/l10ns.nix index 065360a112d..51fb489be7e 100644 --- a/pkgs/applications/science/math/mathematica/l10ns.nix +++ b/pkgs/applications/science/math/mathematica/l10ns.nix @@ -1,9 +1,18 @@ -{ lib, requireFile }: +{ lib +, requireFile +, lang +, majorVersion ? null +}: -with lib; -{ - l10ns = flip map +let allVersions = with lib; flip map + # N.B. Versions in this list should be ordered from newest to oldest. [ + { + version = "12.0.0"; + lang = "en"; + language = "English"; + sha256 = "b9fb71e1afcc1d72c200196ffa434512d208fa2920e207878433f504e58ae9d7"; + } { version = "11.3.0"; lang = "en"; @@ -30,4 +39,16 @@ with lib; inherit sha256; }; }); -} +minVersion = + with lib; + if majorVersion == null + then elemAt (builtins.splitVersion (elemAt allVersions 0).version) 0 + else majorVersion; +maxVersion = toString (1 + builtins.fromJSON minVersion); +in +with lib; +findFirst (l: (l.lang == lang + && l.version >= minVersion + && l.version < maxVersion)) + (throw "Version ${minVersion} in language ${lang} not supported") + allVersions diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e1a45d4e45a..a2df651092e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22710,6 +22710,7 @@ in mathematica = callPackage ../applications/science/math/mathematica { }; mathematica9 = callPackage ../applications/science/math/mathematica/9.nix { }; mathematica10 = callPackage ../applications/science/math/mathematica/10.nix { }; + mathematica11 = callPackage ../applications/science/math/mathematica/11.nix { }; metis = callPackage ../development/libraries/science/math/metis {}; From f9486ce1143937519f81541f1e84e2a108cb5f4b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 23 Jul 2019 20:27:55 +0000 Subject: [PATCH 0965/1611] coqPackages.equations: 1.2beta2 -> 1.2 (#65281) * coqPackages.equations: 1.2beta2 -> 1.2 * coqPackages.category-theory: 20181016 -> 20190414 --- .../coq-modules/category-theory/default.nix | 11 ++++++----- .../coq-modules/equations/default.nix | 18 ++++++++++++------ 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/pkgs/development/coq-modules/category-theory/default.nix b/pkgs/development/coq-modules/category-theory/default.nix index 59f2295e215..3dfa95154d3 100644 --- a/pkgs/development/coq-modules/category-theory/default.nix +++ b/pkgs/development/coq-modules/category-theory/default.nix @@ -8,15 +8,16 @@ let rev = "3b9ba7b26a64d49a55e8b6ccea570a7f32c11ead"; sha256 = "0f2nr8dgn1ab7hr7jrdmr1zla9g9h8216q4yf4wnff9qkln8sbbs"; }; - v20181016 = { - version = "20181016"; - rev = "8049479c5aee00ed0b92e5edc7c8996aebf48208"; - sha256 = "14f9rlwh8vgmcl6njykvsiwxx0jn623375afixk26mzpy12zdcph"; + v20190414 = { + version = "20190414"; + rev = "706fdb4065cc2302d92ac2bce62cb59713253119"; + sha256 = "16lg4xs2wzbdbsn148xiacgl4wq4xwfqjnjkdhfr3w0qh1s81hay"; }; in { "8.6" = v20180709; "8.7" = v20180709; - "8.8" = v20181016; + "8.8" = v20190414; + "8.9" = v20190414; }; param = params."${coq.coq-version}"; in diff --git a/pkgs/development/coq-modules/equations/default.nix b/pkgs/development/coq-modules/equations/default.nix index b31fcde1b80..5446b540fac 100644 --- a/pkgs/development/coq-modules/equations/default.nix +++ b/pkgs/development/coq-modules/equations/default.nix @@ -15,15 +15,21 @@ let }; "8.8" = { - version = "1.2beta2"; - rev = "v1.2-beta2-8.8"; - sha256 = "1v9asdlhhks25ngnjn4dafx7nrcc5p0lhriqckh3y79nxbgpq4lx"; + version = "1.2"; + rev = "v1.2-8.8"; + sha256 = "06452fyzalz7zcjjp73qb7d6xvmqb6skljkivf8pfm55fsc8s7kx"; }; "8.9" = { - version = "1.2beta2"; - rev = "v1.2-beta2-8.9"; - sha256 = "0y2zwv7jxs1crprj5qvg46h0v9wyfn99ln40yskq91y9h1lj5h3j"; + version = "1.2"; + rev = "v1.2-8.9"; + sha256 = "1q3wvicr43bgy7xn1diwh4j43mnrhprrc2xd22qlbz9cl6bhf8bj"; + }; + + "8.10" = { + version = "1.2"; + rev = "v1.2-8.10"; + sha256 = "1v5kx0xzxzsbs5r4w08rm1lrmjjggnd3ap0sd1my88ds17jzyasd"; }; }; param = params."${coq.coq-version}"; From 95233e1d3902a25e28f875fde7f47a8c9d0ae10d Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 23 Jul 2019 15:33:05 -0500 Subject: [PATCH 0966/1611] pythonPackages.scrapy: 1.7.1 -> 1.7.2 (#65297) --- pkgs/development/python-modules/scrapy/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix index cc22804d48a..8f3b5a3aacc 100644 --- a/pkgs/development/python-modules/scrapy/default.nix +++ b/pkgs/development/python-modules/scrapy/default.nix @@ -1,8 +1,8 @@ -{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, glibcLocales, mock, pytest, botocore, +{ stdenv, buildPythonPackage, fetchPypi, glibcLocales, mock, pytest, botocore, testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl, service-identity, parsel, pydispatcher, cssselect, lib }: buildPythonPackage rec { - version = "1.7.1"; + version = "1.7.2"; pname = "Scrapy"; checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ]; @@ -16,12 +16,6 @@ buildPythonPackage rec { # root and readonly. As a consequence scrapy can't edit the # project templates. ./permissions-fix.patch - - # Fix configparser import for python2. See: https://github.com/scrapy/scrapy/pull/3887 - (fetchpatch { - url = "https://github.com/scrapy/scrapy/commit/21345dc9ec60dcc1cd2e5c0eace5788aa502ce23.patch"; - sha256 = "09834rcjyggvyj6zignvfga2xbqkknygly5p4a96k2mvz0xn3v6z"; - }) ]; LC_ALL="en_US.UTF-8"; @@ -37,7 +31,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "da8987d199092c3bb33d4d1d021507cd933aa67f5177e2d36f31343e8a6bd7f1"; + sha256 = "7a4ed68cfb44dc86e1895f0fb46257ee4adb1090754ac21faec205763f054464"; }; postInstall = '' From 2e8aa4f9ff028c34cf22c8caf3b81f87e502124a Mon Sep 17 00:00:00 2001 From: Alexander Sosedkin Date: Wed, 24 Jul 2019 00:21:42 +0200 Subject: [PATCH 0967/1611] python3Packages.nixpkgs: 0.2.3 -> 0.2.4 --- pkgs/development/python-modules/nixpkgs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/nixpkgs/default.nix b/pkgs/development/python-modules/nixpkgs/default.nix index 75dcf9b32c4..66e8bb2a735 100644 --- a/pkgs/development/python-modules/nixpkgs/default.nix +++ b/pkgs/development/python-modules/nixpkgs/default.nix @@ -8,12 +8,12 @@ buildPythonPackage rec { pname = "nixpkgs"; - version = "0.2.3"; + version = "0.2.4"; disabled = ! pythonAtLeast "3.5"; src = fetchPypi { inherit pname version; - sha256 = "12ycbv31g4qv14aq6hfb85hhx026lgvzqfsrkpzb64na0c1yjcvn"; + sha256 = "0dlvq4bpamhlva86042wlc0xxfsxlpdgm2adfb1c6y3vjgbm0nvd"; }; buildInputs = [ pbr ]; From a47962010dae5dab891957d58526a90233b27d4d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 1 Jul 2019 02:55:52 -0700 Subject: [PATCH 0968/1611] cryptoverif: 2.01 -> 2.01pl1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cryptoverif/versions --- pkgs/applications/science/logic/cryptoverif/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/logic/cryptoverif/default.nix b/pkgs/applications/science/logic/cryptoverif/default.nix index cd8a3747bea..09801f54e7e 100644 --- a/pkgs/applications/science/logic/cryptoverif/default.nix +++ b/pkgs/applications/science/logic/cryptoverif/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cryptoverif-${version}"; - version = "2.01"; + version = "2.01pl1"; src = fetchurl { url = "http://prosecco.gforge.inria.fr/personal/bblanche/cryptoverif/cryptoverif${version}.tar.gz"; - sha256 = "122pryci8rsdzv9qszw11g3izh78r2lvd1raahv2j7qmvgi76nab"; + sha256 = "1bkmrv3wsy8mwhrxd3z3br9zgv37c2w6443rm4s9jl0aphcgnbiw"; }; buildInputs = [ ocaml ]; From e7178768481f88a63d0949098a204a3a0e599d80 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 5 Jun 2019 21:17:38 -0400 Subject: [PATCH 0969/1611] mediawiki: init at 1.32.2 --- pkgs/servers/web-apps/mediawiki/default.nix | 39 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 41 insertions(+) create mode 100644 pkgs/servers/web-apps/mediawiki/default.nix diff --git a/pkgs/servers/web-apps/mediawiki/default.nix b/pkgs/servers/web-apps/mediawiki/default.nix new file mode 100644 index 00000000000..e526afe661c --- /dev/null +++ b/pkgs/servers/web-apps/mediawiki/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchurl, makeWrapper, writeText }: + +stdenv.mkDerivation rec { + pname = "mediawiki"; + version = "1.33.0"; + + src = with stdenv.lib; fetchurl { + url = "https://releases.wikimedia.org/mediawiki/${versions.majorMinor version}/${pname}-${version}.tar.gz"; + sha256 = "0rydzmr64r3p5n6g8v9rifk277z1v31p82s8ka8xap8cfkca4dc3"; + }; + + prePatch = '' + sed -i 's|$vars = Installer::getExistingLocalSettings();|$vars = null;|' includes/installer/CliInstaller.php + ''; + + phpConfig = writeText "LocalSettings.php" '' + + ''; + + installPhase = '' + runHook preInstall + + mkdir -p $out/share/mediawiki + cp -r * $out/share/mediawiki + cp ${phpConfig} $out/share/mediawiki/LocalSettings.php + + runHook postInstall + ''; + + meta = with stdenv.lib; { + description = "The collaborative editing software that runs Wikipedia"; + license = licenses.gpl2Plus; + homepage = "https://www.mediawiki.org/"; + platforms = platforms.all; + maintainers = [ maintainers.redvers ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 79388cefe84..e0351d3e108 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4579,6 +4579,8 @@ in }; }; + mediawiki = callPackage ../servers/web-apps/mediawiki { }; + memtier-benchmark = callPackage ../tools/networking/memtier-benchmark { }; memtest86-efi = callPackage ../tools/misc/memtest86-efi { }; From 455d33f5143c1127175b2767110c3b1a152a0461 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 5 Jun 2019 21:19:11 -0400 Subject: [PATCH 0970/1611] nixos/mediawiki: init service to replace httpd subservice --- nixos/modules/module-list.nix | 1 + nixos/modules/services/web-apps/mediawiki.nix | 473 ++++++++++++++++++ .../web-servers/apache-httpd/mediawiki.nix | 349 ------------- nixos/tests/all-tests.nix | 1 + nixos/tests/mediawiki.nix | 19 + 5 files changed, 494 insertions(+), 349 deletions(-) create mode 100644 nixos/modules/services/web-apps/mediawiki.nix delete mode 100644 nixos/modules/services/web-servers/apache-httpd/mediawiki.nix create mode 100644 nixos/tests/mediawiki.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 8d63a03dd05..45e554a2bc5 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -780,6 +780,7 @@ ./services/web-apps/icingaweb2/module-monitoring.nix ./services/web-apps/limesurvey.nix ./services/web-apps/mattermost.nix + ./services/web-apps/mediawiki.nix ./services/web-apps/miniflux.nix ./services/web-apps/nextcloud.nix ./services/web-apps/nexus.nix diff --git a/nixos/modules/services/web-apps/mediawiki.nix b/nixos/modules/services/web-apps/mediawiki.nix new file mode 100644 index 00000000000..5bd5977e592 --- /dev/null +++ b/nixos/modules/services/web-apps/mediawiki.nix @@ -0,0 +1,473 @@ +{ config, pkgs, lib, ... }: + +let + + inherit (lib) mkDefault mkEnableOption mkForce mkIf mkMerge mkOption; + inherit (lib) concatStringsSep literalExample mapAttrsToList optional optionals optionalString types; + + cfg = config.services.mediawiki; + fpm = config.services.phpfpm.pools.mediawiki; + user = "mediawiki"; + group = config.services.httpd.group; + cacheDir = "/var/cache/mediawiki"; + stateDir = "/var/lib/mediawiki"; + + pkg = pkgs.stdenv.mkDerivation rec { + pname = "mediawiki-full"; + version = src.version; + src = cfg.package; + + installPhase = '' + mkdir -p $out + cp -r * $out/ + + rm -rf $out/share/mediawiki/skins/* + rm -rf $out/share/mediawiki/extensions/* + + ${concatStringsSep "\n" (mapAttrsToList (k: v: '' + ln -s ${v} $out/share/mediawiki/skins/${k} + '') cfg.skins)} + + ${concatStringsSep "\n" (mapAttrsToList (k: v: '' + ln -s ${v} $out/share/mediawiki/extensions/${k} + '') cfg.extensions)} + ''; + }; + + mediawikiScripts = pkgs.runCommand "mediawiki-scripts" { + buildInputs = [ pkgs.makeWrapper ]; + preferLocalBuild = true; + } '' + mkdir -p $out/bin + for i in changePassword.php createAndPromote.php userOptions.php edit.php nukePage.php update.php; do + makeWrapper ${pkgs.php}/bin/php $out/bin/mediawiki-$(basename $i .php) \ + --set MEDIAWIKI_CONFIG ${mediawikiConfig} \ + --add-flags ${pkg}/share/mediawiki/maintenance/$i + done + ''; + + mediawikiConfig = pkgs.writeText "LocalSettings.php" '' + database.user. + ''; + }; + + tablePrefix = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + If you only have access to a single database and wish to install more than + one version of MediaWiki, or have other applications that also use the + database, you can give the table names a unique prefix to stop any naming + conflicts or confusion. + See . + ''; + }; + + socket = mkOption { + type = types.nullOr types.path; + default = if cfg.database.createLocally then "/run/mysqld/mysqld.sock" else null; + defaultText = "/run/mysqld/mysqld.sock"; + description = "Path to the unix socket file to use for authentication."; + }; + + createLocally = mkOption { + type = types.bool; + default = cfg.database.type == "mysql"; + defaultText = "true"; + description = '' + Create the database and database user locally. + This currently only applies if database type "mysql" is selected. + ''; + }; + }; + + virtualHost = mkOption { + type = types.submodule ({ + options = import ../web-servers/apache-httpd/per-server-options.nix { + inherit lib; + forMainServer = false; + }; + }); + example = literalExample '' + { + hostName = "mediawiki.example.org"; + enableSSL = true; + adminAddr = "webmaster@example.org"; + sslServerCert = "/var/lib/acme/mediawiki.example.org/full.pem"; + sslServerKey = "/var/lib/acme/mediawiki.example.org/key.pem"; + } + ''; + description = '' + Apache configuration can be done by adapting . + See for further information. + ''; + }; + + poolConfig = mkOption { + type = types.lines; + default = '' + pm = dynamic + pm.max_children = 32 + pm.start_servers = 2 + pm.min_spare_servers = 2 + pm.max_spare_servers = 4 + pm.max_requests = 500 + ''; + description = '' + Options for MediaWiki's PHP pool. See the documentation on php-fpm.conf + for details on configuration directives. + ''; + }; + + extraConfig = mkOption { + type = types.lines; + description = '' + Any additional text to be appended to MediaWiki's + LocalSettings.php configuration file. For configuration + settings, see . + ''; + default = ""; + example = '' + $wgEnableEmail = false; + ''; + }; + + }; + }; + + # implementation + config = mkIf cfg.enable { + + assertions = [ + { assertion = cfg.database.createLocally -> cfg.database.type == "mysql"; + message = "services.mediawiki.createLocally is currently only supported for database type 'mysql'"; + } + { assertion = cfg.database.createLocally -> cfg.database.user == user; + message = "services.mediawiki.database.user must be set to ${user} if services.mediawiki.database.createLocally is set true"; + } + { assertion = cfg.database.createLocally -> cfg.database.socket != null; + message = "services.mediawiki.database.socket must be set if services.mediawiki.database.createLocally is set to true"; + } + { assertion = cfg.database.createLocally -> cfg.database.passwordFile == null; + message = "a password cannot be specified if services.mediawiki.database.createLocally is set to true"; + } + ]; + + services.mediawiki.skins = { + MonoBook = "${cfg.package}/share/mediawiki/skins/MonoBook"; + Timeless = "${cfg.package}/share/mediawiki/skins/Timeless"; + Vector = "${cfg.package}/share/mediawiki/skins/Vector"; + }; + + services.mysql = mkIf cfg.database.createLocally { + enable = true; + package = mkDefault pkgs.mariadb; + ensureDatabases = [ cfg.database.name ]; + ensureUsers = [ + { name = cfg.database.user; + ensurePermissions = { "${cfg.database.name}.*" = "ALL PRIVILEGES"; }; + } + ]; + }; + + services.phpfpm.pools.mediawiki = { + listen = "/run/phpfpm/mediawiki.sock"; + extraConfig = '' + listen.owner = ${config.services.httpd.user} + listen.group = ${config.services.httpd.group} + user = ${user} + group = ${group} + + env[MEDIAWIKI_CONFIG] = ${mediawikiConfig} + + ${cfg.poolConfig} + ''; + }; + + services.httpd = { + enable = true; + adminAddr = mkDefault cfg.virtualHost.adminAddr; + extraModules = [ "proxy_fcgi" ]; + virtualHosts = [ (mkMerge [ + cfg.virtualHost { + documentRoot = mkForce "${pkg}/share/mediawiki"; + extraConfig = '' + + + + SetHandler "proxy:unix:${fpm.listen}|fcgi://localhost/" + + + + Require all granted + DirectoryIndex index.php + AllowOverride All + + '' + optionalString (cfg.uploadsDir != null) '' + Alias "/images" "${cfg.uploadsDir}" + + Require all granted + + ''; + } + ]) ]; + }; + + systemd.tmpfiles.rules = [ + "d '${stateDir}' 0750 ${user} ${group} - -" + "d '${cacheDir}' 0750 ${user} ${group} - -" + ] ++ optionals (cfg.uploadsDir != null) [ + "d '${cfg.uploadsDir}' 0750 ${user} ${group} - -" + "Z '${cfg.uploadsDir}' 0750 ${user} ${group} - -" + ]; + + systemd.services.mediawiki-init = { + wantedBy = [ "multi-user.target" ]; + before = [ "phpfpm-mediawiki.service" ]; + after = optional cfg.database.createLocally "mysql.service"; + script = '' + if ! test -e "${stateDir}/secret.key"; then + tr -dc A-Za-z0-9 /dev/null | head -c 64 > ${stateDir}/secret.key + fi + + echo "exit( wfGetDB( DB_MASTER )->tableExists( 'user' ) ? 1 : 0 );" | \ + ${pkgs.php}/bin/php ${pkg}/share/mediawiki/maintenance/eval.php --conf ${mediawikiConfig} && \ + ${pkgs.php}/bin/php ${pkg}/share/mediawiki/maintenance/install.php \ + --confpath /tmp \ + --scriptpath / \ + --dbserver ${cfg.database.host}${optionalString (cfg.database.socket != null) ":${cfg.database.socket}"} \ + --dbport ${toString cfg.database.port} \ + --dbname ${cfg.database.name} \ + ${optionalString (cfg.database.tablePrefix != null) "--dbprefix ${cfg.database.tablePrefix}"} \ + --dbuser ${cfg.database.user} \ + ${optionalString (cfg.database.passwordFile != null) "--dbpassfile ${cfg.database.passwordFile}"} \ + --passfile ${cfg.passwordFile} \ + ${cfg.name} \ + admin + + ${pkgs.php}/bin/php ${pkg}/share/mediawiki/maintenance/update.php --conf ${mediawikiConfig} --quick + ''; + + serviceConfig = { + Type = "oneshot"; + User = user; + Group = group; + PrivateTmp = true; + }; + }; + + systemd.services.httpd.after = optional (cfg.database.createLocally && cfg.database.type == "mysql") "mysql.service"; + + users.users.${user}.group = group; + + environment.systemPackages = [ mediawikiScripts ]; + }; +} diff --git a/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix b/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix deleted file mode 100644 index 6234478014c..00000000000 --- a/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix +++ /dev/null @@ -1,349 +0,0 @@ -{ config, lib, pkgs, serverInfo, php, ... }: - -with lib; - -let - - httpd = serverInfo.serverConfig.package; - - version24 = !versionOlder httpd.version "2.4"; - - allGranted = if version24 then '' - Require all granted - '' else '' - Order allow,deny - Allow from all - ''; - - mediawikiConfig = pkgs.writeText "LocalSettings.php" - '' - - ''; - - # Unpack Mediawiki and put the config file in its root directory. - mediawikiRoot = pkgs.stdenv.mkDerivation rec { - name= "mediawiki-1.31.1"; - - src = pkgs.fetchurl { - url = "https://releases.wikimedia.org/mediawiki/1.31/${name}.tar.gz"; - sha256 = "13x48clij21cmysjkpnx68vggchrdasqp7b290j87xlfgjhdhnnf"; - }; - - skins = config.skins; - extensions = config.extensions; - - buildPhase = - '' - for skin in $skins; do - cp -prvd $skin/* skins/ - done - for extension in $extensions; do - cp -prvd $extension/* extensions/ - done - ''; # */ - - installPhase = - '' - mkdir -p $out - cp -r * $out - cp ${mediawikiConfig} $out/LocalSettings.php - sed -i \ - -e 's|/bin/bash|${pkgs.bash}/bin/bash|g' \ - -e 's|/usr/bin/timeout|${pkgs.coreutils}/bin/timeout|g' \ - $out/includes/shell/limit.sh \ - $out/includes/GlobalFunctions.php - ''; - }; - - mediawikiScripts = pkgs.runCommand "mediawiki-${config.id}-scripts" { - buildInputs = [ pkgs.makeWrapper ]; - preferLocalBuild = true; - } '' - mkdir -p $out/bin - for i in changePassword.php createAndPromote.php userOptions.php edit.php nukePage.php update.php; do - makeWrapper ${php}/bin/php $out/bin/mediawiki-${config.id}-$(basename $i .php) \ - --add-flags ${mediawikiRoot}/maintenance/$i - done - ''; - -in - -{ - - extraConfig = - '' - ${optionalString config.enableUploads '' - Alias ${config.urlPrefix}/images ${config.uploadDir} - - - ${allGranted} - Options -Indexes - - ''} - - ${if config.urlPrefix != "" then "Alias ${config.urlPrefix} ${mediawikiRoot}" else '' - RewriteEngine On - RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f - RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d - ${concatMapStringsSep "\n" (u: "RewriteCond %{REQUEST_URI} !^${u.urlPath}") serverInfo.vhostConfig.servedDirs} - ${concatMapStringsSep "\n" (u: "RewriteCond %{REQUEST_URI} !^${u.urlPath}") serverInfo.vhostConfig.servedFiles} - RewriteRule ${if config.enableUploads - then "!^/images" - else "^.*\$" - } %{DOCUMENT_ROOT}/${if config.articleUrlPrefix == "" - then "" - else "${config.articleUrlPrefix}/" - }index.php [L] - ''} - - - ${allGranted} - DirectoryIndex index.php - - - ${optionalString (config.articleUrlPrefix != "") '' - Alias ${config.articleUrlPrefix} ${mediawikiRoot}/index.php - ''} - ''; - - documentRoot = if config.urlPrefix == "" then mediawikiRoot else null; - - enablePHP = true; - - options = { - - id = mkOption { - default = "main"; - description = '' - A unique identifier necessary to keep multiple MediaWiki server - instances on the same machine apart. This is used to - disambiguate the administrative scripts, which get names like - mediawiki-$id-change-password. - ''; - }; - - dbType = mkOption { - default = "postgres"; - example = "mysql"; - description = "Database type."; - }; - - dbName = mkOption { - default = "mediawiki"; - description = "Name of the database that holds the MediaWiki data."; - }; - - dbServer = mkOption { - default = ""; # use a Unix domain socket - example = "10.0.2.2"; - description = '' - The location of the database server. Leave empty to use a - database server running on the same machine through a Unix - domain socket. - ''; - }; - - dbUser = mkOption { - default = "mediawiki"; - description = "The user name for accessing the database."; - }; - - dbPassword = mkOption { - default = ""; - example = "foobar"; - description = '' - The password of the database user. Warning: this is stored in - cleartext in the Nix store! - ''; - }; - - emergencyContact = mkOption { - default = serverInfo.serverConfig.adminAddr; - example = "admin@example.com"; - description = '' - Emergency contact e-mail address. Defaults to the Apache - admin address. - ''; - }; - - passwordSender = mkOption { - default = serverInfo.serverConfig.adminAddr; - example = "password@example.com"; - description = '' - E-mail address from which password confirmations originate. - Defaults to the Apache admin address. - ''; - }; - - siteName = mkOption { - default = "MediaWiki"; - example = "Foobar Wiki"; - description = "Name of the wiki"; - }; - - logo = mkOption { - default = ""; - example = "/images/logo.png"; - description = "The URL of the site's logo (which should be a 135x135px image)."; - }; - - urlPrefix = mkOption { - default = "/w"; - description = '' - The URL prefix under which the Mediawiki service appears. - ''; - }; - - articleUrlPrefix = mkOption { - default = "/wiki"; - example = ""; - description = '' - The URL prefix under which article pages appear, - e.g. http://server/wiki/Page. Leave empty to use the main URL - prefix, e.g. http://server/w/index.php?title=Page. - ''; - }; - - enableUploads = mkOption { - default = false; - description = "Whether to enable file uploads."; - }; - - uploadDir = mkOption { - default = throw "You must specify `uploadDir'."; - example = "/data/mediawiki-upload"; - description = "The directory that stores uploaded files."; - }; - - defaultSkin = mkOption { - default = ""; - example = "nostalgia"; - description = "Set this value to change the default skin used by MediaWiki."; - }; - - skins = mkOption { - default = []; - type = types.listOf types.path; - description = - '' - List of paths whose content is copied to the ‘skins’ - subdirectory of the MediaWiki installation. - ''; - }; - - extensions = mkOption { - default = []; - type = types.listOf types.path; - description = - '' - List of paths whose content is copied to the 'extensions' - subdirectory of the MediaWiki installation. - ''; - }; - - extraConfig = mkOption { - type = types.lines; - default = ""; - example = - '' - $wgEnableEmail = false; - ''; - description = '' - Any additional text to be appended to MediaWiki's - configuration file. This is a PHP script. For configuration - settings, see . - ''; - }; - - }; - - extraPath = [ mediawikiScripts ]; - - # !!! Need to specify that Apache has a dependency on PostgreSQL! - - startupScript = pkgs.writeScript "mediawiki_startup.sh" - # Initialise the database automagically if we're using a Postgres - # server on localhost. - (optionalString (config.dbType == "postgres" && config.dbServer == "") '' - if ! ${pkgs.postgresql}/bin/psql -l | grep -q ' ${config.dbName} ' ; then - ${pkgs.postgresql}/bin/createuser --no-superuser --no-createdb --no-createrole "${config.dbUser}" || true - ${pkgs.postgresql}/bin/createdb "${config.dbName}" -O "${config.dbUser}" - ( echo 'CREATE LANGUAGE plpgsql;' - cat ${mediawikiRoot}/maintenance/postgres/tables.sql - echo 'CREATE TEXT SEARCH CONFIGURATION public.default ( COPY = pg_catalog.english );' - echo COMMIT - ) | ${pkgs.postgresql}/bin/psql -U "${config.dbUser}" "${config.dbName}" - fi - ${php}/bin/php ${mediawikiRoot}/maintenance/update.php - ''); - - robotsEntries = optionalString (config.articleUrlPrefix != "") - '' - User-agent: * - Disallow: ${config.urlPrefix}/ - Disallow: ${config.articleUrlPrefix}/Special:Search - Disallow: ${config.articleUrlPrefix}/Special:Random - ''; - -} diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index bc5f18d22bc..03b5d8c9854 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -146,6 +146,7 @@ in mailcatcher = handleTest ./mailcatcher.nix {}; mathics = handleTest ./mathics.nix {}; matrix-synapse = handleTest ./matrix-synapse.nix {}; + mediawiki = handleTest ./mediawiki.nix {}; memcached = handleTest ./memcached.nix {}; mesos = handleTest ./mesos.nix {}; miniflux = handleTest ./miniflux.nix {}; diff --git a/nixos/tests/mediawiki.nix b/nixos/tests/mediawiki.nix new file mode 100644 index 00000000000..6293e8a2f46 --- /dev/null +++ b/nixos/tests/mediawiki.nix @@ -0,0 +1,19 @@ +import ./make-test.nix ({ pkgs, lib, ... }: { + name = "mediawiki"; + meta.maintainers = [ lib.maintainers.aanderse ]; + + machine = + { ... }: + { services.mediawiki.enable = true; + services.mediawiki.virtualHost.hostName = "localhost"; + services.mediawiki.virtualHost.adminAddr = "root@example.com"; + services.mediawiki.passwordFile = pkgs.writeText "password" "correcthorsebatterystaple"; + }; + + testScript = '' + startAll; + + $machine->waitForUnit('phpfpm-mediawiki.service'); + $machine->succeed('curl -L http://localhost/') =~ /MediaWiki has been installed/ or die; + ''; +}) From ebd90674738be5d95992568af25ee712dac1d20c Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Tue, 23 Jul 2019 22:03:20 -0400 Subject: [PATCH 0971/1611] nixos/mediawiki: add release notes for 19.09 --- nixos/doc/manual/release-notes/rl-1909.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index bde48bc16af..0e067cf1f55 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -163,7 +163,8 @@ Most of the httpd subservices packaged with NixOS have been replaced with full NixOS modules including LimeSurvey, WordPress, and Zabbix. These modules can be enabled using the , - , and options. + , , + and options. From 03d3ed3eb089f83286b72465fa2a4fe23867eb70 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 23 Jul 2019 15:57:16 -0700 Subject: [PATCH 0972/1611] pythonPackages.sshpubkeys: init at 3.1.0 --- .../python-modules/sshpubkeys/default.nix | 25 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/python-modules/sshpubkeys/default.nix diff --git a/pkgs/development/python-modules/sshpubkeys/default.nix b/pkgs/development/python-modules/sshpubkeys/default.nix new file mode 100644 index 00000000000..aefb4bd4d4b --- /dev/null +++ b/pkgs/development/python-modules/sshpubkeys/default.nix @@ -0,0 +1,25 @@ +{ lib, buildPythonPackage, fetchFromGitHub +, cryptography +, ecdsa +}: + +buildPythonPackage rec { + version = "3.1.0"; + pname = "sshpubkeys"; + + src = fetchFromGitHub { + owner = "ojarva"; + repo = "python-${pname}"; + rev = "v${version}"; + sha256 = "1h4gwmcfn84kkqh83km1vfz8sc5kr2g4gzgzmr8gz704jmqiv7nq"; + }; + + propagatedBuildInputs = [ cryptography ecdsa ]; + + meta = with lib; { + description = "OpenSSH Public Key Parser for Python"; + homepage = https://github.com/ojarva/python-sshpubkeys; + license = licenses.bsd3; + maintainers = [ ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7ff3e6d8149..9537be075ec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1121,6 +1121,8 @@ in { spglib = callPackage ../development/python-modules/spglib { }; + sshpubkeys = callPackage ../development/python-modules/sshpubkeys { }; + sslib = callPackage ../development/python-modules/sslib { }; statistics = callPackage ../development/python-modules/statistics { }; From d12733fee55d0722a8809312fac7257863683373 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 23 Jul 2019 16:00:32 -0700 Subject: [PATCH 0973/1611] pythonPackages.moto: 1.3.8 -> 1.3.10 --- .../python-modules/moto/default.nix | 82 ++++++++++++------- 1 file changed, 53 insertions(+), 29 deletions(-) diff --git a/pkgs/development/python-modules/moto/default.nix b/pkgs/development/python-modules/moto/default.nix index c8f1a0cbd08..f331b211323 100644 --- a/pkgs/development/python-modules/moto/default.nix +++ b/pkgs/development/python-modules/moto/default.nix @@ -1,54 +1,78 @@ -{ buildPythonPackage, fetchPypi, jinja2, werkzeug, flask, cfn-lint -, requests, pytz, backports_tempfile, cookies, jsondiff, botocore, aws-xray-sdk, docker, responses -, six, boto, httpretty, xmltodict, nose, sure, boto3, freezegun, dateutil, mock, pyaml, python-jose }: +{ lib, buildPythonPackage, fetchPypi, isPy27 +, aws-xray-sdk +, backports_tempfile +, boto +, boto3 +, botocore +, cfn-lint +, docker +, flask +, freezegun +, jinja2 +, jsondiff +, mock +, nose +, pyaml +, python-jose +, pytz +, requests +, responses +, six +, sshpubkeys +, sure +, werkzeug +, xmltodict +}: buildPythonPackage rec { pname = "moto"; - version = "1.3.8"; + version = "1.3.10"; src = fetchPypi { inherit pname version; - sha256 = "9cb02134148fbe3ed81f11d6ab9bd71bbd6bc2db7e59a45de77fb1d0fedb744e"; + sha256 = "0vlq015irqqwdknk1an7qqkg1zjk18c7jd89r7zbxxfwy3bgzwwj"; }; postPatch = '' - # regarding aws-xray-sdk: https://github.com/spulec/moto/commit/31eac49e1555c5345021a252cb0c95043197ea16 - # regarding python-jose: https://github.com/spulec/moto/pull/1927 substituteInPlace setup.py \ - --replace "aws-xray-sdk<0.96," "aws-xray-sdk" \ - --replace "jsondiff==1.1.1" "jsondiff>=1.1.1" \ - --replace "python-jose<3.0.0" "python-jose<4.0.0" + --replace "jsondiff==1.1.2" "jsondiff~=1.1" + sed -i '/datetime/d' setup.py # should be taken care of by std library ''; propagatedBuildInputs = [ aws-xray-sdk boto boto3 + botocore cfn-lint - dateutil - flask - httpretty + docker + flask # required for server jinja2 - pytz - werkzeug - requests - six - xmltodict + jsondiff mock pyaml - backports_tempfile - cookies - jsondiff - botocore - docker - responses python-jose - ]; + pytz + six + requests + responses + sshpubkeys + werkzeug + xmltodict + ] ++ lib.optionals isPy27 [ backports_tempfile ]; - checkInputs = [ boto3 nose sure freezegun ]; + checkInputs = [ boto3 freezegun nose sure ]; - checkPhase = "nosetests"; + checkPhase = ''nosetests -v ./tests/ \ + -e test_invoke_function_from_sns \ + -e test_invoke_requestresponse_function \ + -e test_context_manager \ + -e test_decorator_start_and_stop''; - # TODO: make this true; I think lots of the tests want network access but we can probably run the others - doCheck = false; + meta = with lib; { + description = "This project extends the Application Insights API surface to support Python"; + homepage = https://github.com/spulec/moto; + license = licenses.asl20; + maintainers = [ ]; + }; } From 5401315ff98253ccba18d2092e20b22b5e46f5d3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 06:48:50 -0700 Subject: [PATCH 0974/1611] python37Packages.zc_buildout: 2.13.1 -> 2.13.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-zc.buildout/versions --- pkgs/development/python-modules/buildout/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/buildout/default.nix b/pkgs/development/python-modules/buildout/default.nix index c76e62b0aec..419e8dce212 100644 --- a/pkgs/development/python-modules/buildout/default.nix +++ b/pkgs/development/python-modules/buildout/default.nix @@ -2,11 +2,11 @@ buildPythonPackage rec { pname = "zc.buildout"; - version = "2.13.1"; + version = "2.13.2"; src = fetchPypi { inherit pname version; - sha256 = "3d14d07226963a517295dfad5879d2799e2e3b65b2c61c71b53cb80f5ab11484"; + sha256 = "0a73s5q548l2vs2acqs3blkzd9sw6d7ci77fz1pc9156vn3dxm2x"; }; meta = with stdenv.lib; { From 89a4e8d5e038da566b497a8201b379b370a13f75 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 20 Jul 2019 05:26:00 -0700 Subject: [PATCH 0975/1611] python37Packages.pycountry: 18.12.8 -> 19.7.15 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-pycountry/versions --- pkgs/development/python-modules/pycountry/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pycountry/default.nix b/pkgs/development/python-modules/pycountry/default.nix index b946740ff92..99ba6845fa0 100644 --- a/pkgs/development/python-modules/pycountry/default.nix +++ b/pkgs/development/python-modules/pycountry/default.nix @@ -6,11 +6,11 @@ buildPythonPackage rec { pname = "pycountry"; - version = "18.12.8"; + version = "19.7.15"; src = fetchPypi { inherit pname version; - sha256 = "1phn1av57jbm166facjk6r8gw4pf886q4wymjc443k8m5c5h5i4f"; + sha256 = "15lhv18za0zv36laksr86rszjhp0slmqzcylm6ds9vpd7gyqprb8"; }; meta = with stdenv.lib; { From 32c1c5cbe0dfef8b3d7ccc575fa3cb2193a020c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Luis=20Lafuente?= Date: Tue, 23 Jul 2019 21:46:37 +0200 Subject: [PATCH 0976/1611] clojure: 1.10.1.462 -> 1.10.1.466 --- pkgs/development/interpreters/clojure/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/clojure/default.nix b/pkgs/development/interpreters/clojure/default.nix index 8df64de3acb..6b1a71c8020 100644 --- a/pkgs/development/interpreters/clojure/default.nix +++ b/pkgs/development/interpreters/clojure/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "clojure"; - version = "1.10.1.462"; + version = "1.10.1.466"; src = fetchurl { url = "https://download.clojure.org/install/clojure-tools-${version}.tar.gz"; - sha256 = "0mi7fzqvkg2ihigxkkamc742m1iba0yzy8ivciavzmpcnw128sc6"; + sha256 = "1rh4isdac7l8k8p45cqim8lfccjzxw7z173xqnpgk3z307jj4n90"; }; buildInputs = [ makeWrapper ]; From 835027f60108e4737525d75865756233964f4053 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 24 Jul 2019 16:15:47 +0900 Subject: [PATCH 0977/1611] firefox-bin: 68.0 -> 68.0.1 --- .../browsers/firefox-bin/release_sources.nix | 746 +++++++++--------- 1 file changed, 373 insertions(+), 373 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix index 36ed04c8822..18d14d4120a 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/release_sources.nix @@ -1,935 +1,935 @@ { - version = "68.0"; + version = "68.0.1"; sources = [ - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ach/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ach/firefox-68.0.1.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha512 = "d101eef9be53196197eadf6035d09bdce1682f90dc3c740bc87be945790692647f8ca70d9fdeaa7bbaf58a5e5cf44d64138254f5454e4460f69b6288b052ba53"; + sha512 = "afebe9f5723ce941fe5f00a4135ae8efaf9659c6d7645f024d0e971c37ec2ca84193848ebfdd4eb3125784986a4093e86884d88a1b68d5180f6deeef18daa9f3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/af/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/af/firefox-68.0.1.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha512 = "3f3e4728fce97a06e683a6c3642f8a87ce6226d2053c315026d4c8995739d000bc98874a08d2a008751854ec42a1e24ba6cec64e455b354334988f14b31221a3"; + sha512 = "c06bdcb1e67f29005cedfd8255ebe120ac774766ee21acea659752cbc886c014f88caf21e48c2595f69e518fd54c50cca379f46c8b1ba2271bc3ec42b57c2952"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/an/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/an/firefox-68.0.1.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha512 = "a763419d711c5985b45c4983249517767da75ae4e866ed7aec05d5762d724fed1f465dd755ae8059953d832bef2098670124745ee54ef02416d919599bcc9826"; + sha512 = "990fc0b0982c5793b7b2f8f95730335091c31c322001302fcbf9a0802425a8e218278c5b65cbc66d1a5078e51a32bde10baeb633c564fa5f639bbd985fb6e441"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ar/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ar/firefox-68.0.1.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha512 = "80e2942cc30772b50e13cb3dacff3142cb73b16a67ed5c2dfedcce89c7a82e9e678a858c467dc79e8b5d68c34310532a1a9711d2888777ff7d7a44fca5b55880"; + sha512 = "436134d474b5f76eca8edcd16661ffe6af7e169ea617fef6605a513be628fc662eb5f64c491813a8bd31fdb20b574f5937ad1287a32465b8024e21699845069e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ast/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ast/firefox-68.0.1.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha512 = "0c8648f85936373e0d18f9ca91b2f77976d116f3ef876a857a76ad2c82ac7cb1c021e44b84cfca7cb05993692a89e8cdf624c40ca42028ea7c61b1d134c7d5db"; + sha512 = "ebb609e71fa97a43b55f14af6ab96f757d3d4f8feb27ca36a29f1dbae2a8cad7ff2ec186d715000399b300ef4ac222b339c0935acfb36efa39cff7878150fa71"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/az/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/az/firefox-68.0.1.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha512 = "3011e7445fa2b6c5fdbbfb56de6718b601c90d7de004083edcbe29f8aaec0976ffde21351a1444f38a88df4dd8892050d9e3bd5fb578a59d4c84bb88e0b77b67"; + sha512 = "545f0fdc8e872d22dca7dfff9162634d58250f2575c09ee534aa537db02d641cbed2c70b93b06e35677ae061a25518813e69a771fd10f02149df658bdf20835a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/be/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/be/firefox-68.0.1.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha512 = "967dbfff34c92199d00e2f2a5d8270f8d8039527b25c80406db7b647d383f836c8e79e5ac0f86e3055e5386afef7d157b4c88ebf9928745f3b95c8239b374cb4"; + sha512 = "1a6e1130c20af4c72f21ab5fb9cfbf206a20dbbbb3f2a96ffeb2f5c4e755a545eece645f5d022cda6989890715cdd633be14391344ebbcf20d8ae7e6077f8f28"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bg/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bg/firefox-68.0.1.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha512 = "401a394d1f9abb91894932ffd31c92280e2a94ec499bb41b851b000b5eaac701c553781b7a520a862037f854ac7323bd554707b304440914d10232e94fec2b63"; + sha512 = "bd2001033e785eccb2fd1007231aa290042a4c8be1a39cf9770545dc8c779f3caaae8f4709f62753c0d7442082592864f2c8077ab9decad1bce9b817631a3e21"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bn/firefox-68.0.1.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha512 = "25b613ace3f48fab8d13f0b7da414cd96f74908ad15f7c0f8858e222d8b261a4c3569609845f0c6ac755d1c3dac16968b6e7557d048a543eaa774ffff9db9736"; + sha512 = "0426330b97dc387ba6e418c1d8410f7acfe6461da9cf8527286d97e8716886e743ff874ae6d4ecf50b2cf40ebafecd0ea0a4282aa4eb1e6e89ad85d84567558d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/br/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/br/firefox-68.0.1.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha512 = "e1638c65de18fab7669cf684eca3cc2c2fc2f5c4dfec76aa71f30f8a6e31868727be4979868f684c43d0c3c9da383e4d0c02718ad096ee84d88586e5b67b2f95"; + sha512 = "9373aa27dc0b00588d90f9d08b0c65fde1153a79edd69b886fa01052f84cbd5c041d6b06cdc8c441f8bb33b9abd29dff98b6d0cf6a79de0111cdad0383317338"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/bs/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/bs/firefox-68.0.1.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha512 = "1cd0e4893bf9b1270533a4f1e66b3392240d25e0f62492a1cdb9e7c9e4455bc7966b2373915b9235788f5a419c38ef81c57fd6d4633968c8a3b2706306f64b39"; + sha512 = "5268133d1f1a22d8c4577ec39c772d30430cdfc8a1038ec817a045bce5de08dd09b1cc980ca124e3bf6675cca30d7a2f728397484e6218f859e6c2c7b3f67f9a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ca/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ca/firefox-68.0.1.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha512 = "62fcd17294fe8560acd0f5288fdd3e46cdf47f12663e92c2bc6f8b5f27efb8d8d03769d364c187fe6a36e784da62ab5bc77c596ff04f6db4f2bb207952dcb237"; + sha512 = "96137fff14c26d3ed2fa6d27ca9a3a16773dbb37cd6f00aeef68cb88797ea9159684594d9b6252b384d878e9439e630b5b1e208bfa32251627ee187bc059742f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cak/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cak/firefox-68.0.1.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha512 = "d520b16988f435d9617e470f6404b249365cc4069bbdf1a011958e19d9b4d277389f259220345a735e534f18147da3262d7d6ccc5a17690273ba9d750f7beb33"; + sha512 = "f3aeb0953e86f6bbb8a7f6bf3be70ed80b653c4473fea54ab49025976d3752ff58c32f24700056ff9d176055ef6708c930ef98f29bec2ee82bfdab6f2fa721e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cs/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cs/firefox-68.0.1.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha512 = "9d86ed813c8c96a9743ad67ab424d50c3363468c7a53c7ae0d1835b91a63fadeb3f6305d6960b84e4b9e3cf5d5e3f77e383f6b25439b91df8c8f7a1888d6c103"; + sha512 = "a233241811e4616cb1bfa2d772c29895b3f4be669fd4e5d7a247b572d840ec4987246b556df23958a6a7953b8e4f04e891071ad5cad21be9017bc70d6e21e0e7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/cy/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/cy/firefox-68.0.1.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha512 = "5ba474d654323792da1dc0c5be474b43186c27fc1c060a46b348003a4c9c1333dcf9cc60a8dfebea136d275263cf40efa1e724f805cec153be7b59cf18b0efd1"; + sha512 = "2c13078a947961c7d91a3646f760ab85121e01d2b3f7b521a14aef4fe8fe0c341a0d605df0966a03ce58a6214cfd9f463504be4bfbedf22253d73c18781c0076"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/da/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/da/firefox-68.0.1.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha512 = "86550341ce9cfc1942e611c2ef718123424a495c7c7fa2b964063f3503bba477027c62f355c861ad0afefbd7d0279ac8b945719db8f428236a6d91ed5032efb0"; + sha512 = "9e146040a61915fba2531d798b3e4874154cf9750ed55af2018542df6ff294f690929747fb110286fb1176be016034c637d18f97599e54a28e05f639c5ced4aa"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/de/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/de/firefox-68.0.1.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha512 = "81df9031e8b1adec65c9fe5a34564f425a60affbdc5e1662392d70dc4724dd08624ddabacb2fb6cd6739e87ea117f0433d2a2034e883c2097a09e62fa7bb1480"; + sha512 = "af243d5764a47c3df49661e1011a9cb776ced13483ebdd054ee4be507e56136dcbc734988849e61c87ea9795b364ca002431eeef16c343a4cd8508583e7cc5bb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/dsb/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/dsb/firefox-68.0.1.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha512 = "7a8bb3cd4c4dd1907a2a86026a81eab2f456520ef28f0c1c8751f17faae23ef9f3063d773fe9bfd7efd1285f06096daa2e9dfeabc621906ce344239c32a4f1e5"; + sha512 = "5f4335d5bbed003c3692cd3fc6fbc196559d629d9b09ef1e6d94f758658bcd637c300e9c72ee7a53fa5ecfc998b276ddd94f87e961df914e193b762bb2889c94"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/el/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/el/firefox-68.0.1.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha512 = "cbb7ff2010719ae2cc278d4243f72bcb0ea1170ba3729c49aca0e1c500a3c5905e6768702af3ac3b5568fcd529258aadf4ed6584d1f98250f3a2a0f71e6e62b0"; + sha512 = "ff2d55b5658b4c2718b9b0d62d1926bf6735a2342b3c91c49a94cc25af19fe28194588c7c75d24298815d7fa8dd32e30511716db57ff521f14def69b22c7441b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-CA/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-CA/firefox-68.0.1.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha512 = "aadb72f6dd1360e93549b0a0470276d7a9e97c050fba6cdc2b0309d87d8bba5614e366f0b526d31f1840e3fe67e5143aa1ab00173bba36b9c0ba376a070cadad"; + sha512 = "788c6f0aeb2c5a4565b2d187115c948978c02c4143d20cfeb47421c8afd81c0bb5f0285d15fc0ce2129455347a0dd61bd75b01c8774c9fddf1915c653c874739"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-GB/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-GB/firefox-68.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha512 = "a6969f9873b430341b324b0e0d99a384520bc09b3156f2d4d969f80a0784399e0b297166db0456b96c10e6773b85cb1a4047107d71ac061240ef970ed8c1a1b8"; + sha512 = "97ee51e6fdb76d690adc2fdccf5decf18a1a3fb34ec3542c795aef8cf45e3e97bfc7def170535057f3362685f5fa75a3dcc8b7b1383f3b08e5b16c08c5edd9e0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/en-US/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/en-US/firefox-68.0.1.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha512 = "e93ab3bb54f14b59d8e0a1339bf1f0193ea081116e1fbd706c37ce218788e827520920e1a67c5fd35c500364949d257db7183ee95a13889a40543e2fdaa42897"; + sha512 = "4c489c1cdb76ade26918307af3d8d69ea1e407013382a84d4511ee4fa9e40d0627814ee57ca87faea38e1b879486d57481d74dd0f3344cea90b4101e403fb25a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/eo/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/eo/firefox-68.0.1.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha512 = "78b134194bd1eeee34f3ca405a55c368ba345d17c82495b227a04149bd93af233c27df62374e12adfe6637dd9cfb3d69394243cab6558468f159481468a9fb08"; + sha512 = "16392ea6d0aa5c63af1f2b81444ffa091f462a686e911a425b7938a5f34c300f39487fdd4322bb13b5f7631be55dc8bf2c53dcd6a57c347c3862c47cca0c6559"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-AR/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-AR/firefox-68.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha512 = "6729b204377653635f62b161c4022f1598fbd5a49f8edcf1603e416a0fa525d1f89182400f4fec087b13a9b3566cb51b5d964e895e7a46efc734ffc92daa9467"; + sha512 = "e4c612f300a210470d166bb1386fd9a8308c3de1d107da53b31356a091d8a1a1aff00f60e8feb0fc1d4a6526acf0510f95bf9d266b72f52f887af52337048172"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-CL/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-CL/firefox-68.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha512 = "761d623120743a8bc8191f0996bdd4e48242531000b58e80aa74b6af99142b91a39195b647b662833bf494c3db3e105d01cf0301eea5ac085b4ca766df79ac98"; + sha512 = "608decca1ff70bac17bbe0160b00c1fef3b0f0e65f53caa2cc549ac1250c2e5973439123c8e34fd0b5e130269ca5816a7cca78632a15724cf8ebbde3e08fa9a3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-ES/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-ES/firefox-68.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha512 = "10f9f0980376ce0799925d4f9e86b03c2cac7dfa857f8f4c874b9aa069ee1b021f25bb274d6c8357cc51aa9b4ac4b3b877e782c4dcd5ffc846ce5190a960c9f3"; + sha512 = "b8b56148d7d08d560b9b34be4034a6d2abd1b59f1b1da993a92d80bdb83c44bb261860573aab5726af56835bb03c13c65a32b1f8b0b5f5d02df855b576d0a398"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/es-MX/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/es-MX/firefox-68.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha512 = "3b8df6f200e71234cc9ab5d096c84084c24886aa08389572bd952e3c6178b20f6d8e2e44012327942713716d4bc26f087792869e246708f0cbdb6bbd0839b7de"; + sha512 = "c4040e736647fff866f69a054b1b917d66799c29f54dcbf968942b6447adeed8ce8cd24bb4195be44bd134710053daeba996bafe6e029f5e6c7fba767904d084"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/et/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/et/firefox-68.0.1.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha512 = "f7d0b6c4d7692baf332460ce41d9bf243e41f3fed0a547ad2acf82101429e1301aee18b5168aab00e758b6953e8c28e6466efc524a48b0dde686d5a18c2ac10d"; + sha512 = "ee0d9b469bb717ac317daeecd1fccf10290e72e2359d17ebf58f62fe7d4c266b740ff235438d937f30550cfd4f66387b9d1535156d37e3b689c323cb732b37f0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/eu/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/eu/firefox-68.0.1.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha512 = "a5146238c071f3361f24b016a24bfab8449e8d79d1357614694bb42aa24e8266cedc127be3ffa107f3f4481a791e9c16aa914f0edb1433d3f8120cecd7104cf8"; + sha512 = "5f94492be3a70be304c3e6c0068c8d50f5e3b94cc8ea0559a5cc521564cfcbb4facaa90a4e237425e63dce093a0c51987b40c6cdda8d1e72792327d6f5562cf8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fa/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fa/firefox-68.0.1.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha512 = "6150cc3f001910963c83b9c6baea10396c79aaf78d74ba35af73821b5c8ddd9c41f867fd9fdc143a532e693c9c42601c54bdfa01391700b22f3e571133bebf8a"; + sha512 = "7a89b49ca9eadedc2a84a990ba2601740dd3494a27694f6d728f2dfa9b7e7bf41e171b2ff9bb004797da1d30f18f65d70d9a94a398483b1b604633bd3388b7be"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ff/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ff/firefox-68.0.1.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha512 = "e93a1a41ea65433e7b55c72519d0b1d5d3b742887ea380c62e19345fdd9715124804e161eedb59eba9ff61431eca2d3f74fcf788315080733ddaf89e6bc2475a"; + sha512 = "a889efda3c2acf0d0d96d857689c8264f1ac79d4103f7188458e1232ebe1646357194aef9e6c448e2636cfabef2c5948d0158c933c04405c6587b1cc745ec741"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fi/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fi/firefox-68.0.1.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha512 = "8462ee57dd9e5affe5acb78290916c45b68ba4219a9ee0a71fc3c7eca5a1174ae4b738bb6807de4dbe4216851b6e13b49f367bdd9ab17e0ae3c336937831f318"; + sha512 = "363ea795d1dbf428124885f475dc93d962a8c4ddcd253dbfffe1471777616d3c3c348223d5f3a1249a89a636ee99a9d4b48ac644e5009f9ce1a4236200b3f23e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fr/firefox-68.0.1.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha512 = "270c53b297ac3164ef791800a4e1413e58b4ce95e3006456e3ac4c24da054001c4efc0ac2be61d814d6d0b04ebe0e427437cc75cfc80b4a85cb51363ec6ee26b"; + sha512 = "0b869afa50f2212bdb1312551ba3c552fb9f7008f0bcf4f0c5f9c5f4deee920cf96064120b7442050233bf6367b232a79874321b7b4d98c3326ee12d9151a7a6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/fy-NL/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/fy-NL/firefox-68.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha512 = "6d748ffa25bc34d8bdbde1d849ddc683e947a4e046114ec97aceb7703d67241f395cffd0a056cb01c50c616cb19a03a9d1c94d292031e39b9326fffe4c96f1dc"; + sha512 = "40fa18e5e8aa1c987c81832b7ce7ae7ac7314a0bc058b3eb226101457b2f7af65e7a5d33cdcd85d10f87d54336ff348bf2a743505f16b904c5d6d09a3d64221d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ga-IE/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ga-IE/firefox-68.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha512 = "7b5437f7da1d7b991896e4cd9599248f6336a0303f9cf4e6e59979d5c49eec768393994ff788912a69e52153e3b85b21d5faf6988a642c197a44393eb363b638"; + sha512 = "3b2c8b42c6290c41ce08e4857b53ee8838e06f0822c7eabd820071058dc70479bcc1886f6436295cba2ed94ba8d7daf1eff8b6a22e1be3014ec838b3a3d77804"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gd/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gd/firefox-68.0.1.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha512 = "4fbeba40f7c87d5121586768acfa86b652a37fc5ea6886ada09e77e637952ec00f6875be5260daf35274c9800f1838ba89e711bf7f93c6bbe948d40b16402100"; + sha512 = "8724028836689cf83f4529eb04c747f2990d7b10f17e5f19295bbb2d53b301ae427d4aa836dbe994c3ba5b7a986a3ceeb2e32eec02a09539ec972ee9f180649e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gl/firefox-68.0.1.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha512 = "3605779f504f5e6cadd6e185244a008156290779e3dd3f243a86792d8aa8d967a3f9e83cbbb509eee0ba698729a51a01626d956c2ddd5f337eb58f0ca4adc8dc"; + sha512 = "587dabdfce3ba644f10cfc4998ea6492611e8480166f44d97a6733496e55a7a4662b8a296de6361d8f515bdf4122f2bc73f3337763323e3ed0884a6d4300106f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gn/firefox-68.0.1.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha512 = "1feb11fbc99bd526ae43b9e377262803e092ce973f68fa5703b07ba296012f9e707d1b3ecb627bf4b5b1a97383c7af0d460e60665a87c10f79ba644d463415a8"; + sha512 = "8945bf41a214bc79ef0dfaa774afa4bc2a16a1f92da02e6ea1e9813cd96c1a874da93b17086de587d232cd0e78c13873beb647b87afd74d98be7fa1aa6658dc6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/gu-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/gu-IN/firefox-68.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha512 = "8d857d0b09d23bbec739e3a6dd7a834f16bf9a7f7c60ebd36e68ccbcca121535201b43d7d5eb206e1801250dbbbc509bfc3acc8b5cec814307aa7fc680c77661"; + sha512 = "05dcc39f297723e287476103f149ba80408a015d92442f0aaa791e29a73195605aabcf13a1c11e1030eb74dbab52570600c1848fec0a474b986d580effe8ca60"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/he/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/he/firefox-68.0.1.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha512 = "816c8855effaebd765383c4fa355dbe50694ec2916431be9c4665927f906c8d705f4913ebccfc822f56ef44c74e74a532f3d3f46dc003302672b0e766dbe8616"; + sha512 = "ec76920d51958ba23d1a63f4c2432cd8054f88ac024cc55be040dd92c5828ab05dfcd654d35552be30ddf3dd49ab3a5870ea90b5f0757a0fffbb269f97ad5b61"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hi-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hi-IN/firefox-68.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha512 = "338ad80834548cde84be8dc26d597b8f69ff0fc7770dd69758d71301ef749723c634d5abc757326c8b4caea1b81341108ce4a3641a967437c77b4eebc31e55c3"; + sha512 = "a7e368618ace4281eee7b52b2d053c37f43d6077022400d81da5bd3f896d135476a06579d4e60042277f9410ae2b993bfdcea973184a45bd58d5d5b55c7ed306"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hr/firefox-68.0.1.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha512 = "5c501a55279fadb611b872510235e3ab905116f4e6f107977ae9a790fbc2df9690ba6e96cdd5a51522eb3fc88d2dda35657691991129acce7cca2a65210885dd"; + sha512 = "88cfa3193770dbb074ef0e23860e2d6f30214e0f886c1f38c966b3eff3f395b8229f4a2051369c7f7a13dc2af50e442a1b1f08e6c9e582c6634a3037ec37e990"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hsb/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hsb/firefox-68.0.1.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha512 = "254b5d2d8127638a9c75140e562be7bd51915f4870306ba1f8d5fbdfa89a6d62d24a529e0951d7aaf88454a2a7197f1ac32a030a08968e22ca7b81649af6846c"; + sha512 = "277d1bfc26fe19776d5696ca34f63893ead25a203a7a447365a253bed7ed575da6c5569549d3b4f55d7c9e7e36bc36b732bed1d50a214371724589e02cd7666e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hu/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hu/firefox-68.0.1.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha512 = "0d2f182d9640bc5af616145715808a2bc24327b4066e9e0f92fd98932d33dfe45f5bbb24a1ea4595be85d29919aab31e4a8d805e628418ad7497c727fd523492"; + sha512 = "207f279661c57534519a8134f64153b219e5d604d3a1bf0265765658ee9390abcfe051d8f1c11c8dfea975da38c1d9f8bcc50f2090813f091251dfd326216eb6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/hy-AM/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/hy-AM/firefox-68.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha512 = "efa98720171d7f4793c02c6270badc7f7c5fd0951dcd6e569216e642da112c94e39de7bf67fea4a535da17cb6d852ef34983f573e210440958fc540cbf54963d"; + sha512 = "567d75ed252779c89c23dbacfb23138cde921c24c798190d93f4fe20b3b2366caea44ede5b0e66678d5befa0d22e91ccf350aa91733938dda9a6ccc21fda58dd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ia/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ia/firefox-68.0.1.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha512 = "bf60c3d07c9d3008d0ca4cc4e09759d9176df6e9632150d03435f1eb1edab76bf4504d4055d1826c526c435fcf7747546f7574ac85fd87e497165bf2f6a3c34c"; + sha512 = "6e0b22dd63a5e04cd4f61d5ffce9a5ec1569f8e1d4df4abb29e22c8f3c63143233c7b91410d020c00afa6f6aeb3375c2a9a795e20a8efa9ba284f60ed782762f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/id/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/id/firefox-68.0.1.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha512 = "ae11410bf6338659b3259d144461706bfcb1c85e6f9e3484bdae75c72cf1f015ff1d8acbb7daea7dc78df1bd1428462b52c5b2fbc32ac22a2264e501758712e9"; + sha512 = "3294e5b22144d3d79dd72b00cd71817e55127ac42e2409953f4052751e07cbd40dc195d00133d7bedbaf5cd760a7f72d85a1acf5e7041be5cf91c40ce9f40e4e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/is/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/is/firefox-68.0.1.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha512 = "703c104d9cbc3c36394a8854000a5fc1e919c28c382347f23e09f348808f84cc173ce3b20cdbe615594536a0817e77b942a4ba211eb4019d45b224d6a074c2dc"; + sha512 = "76e409bc8a84fea6a2b257e91171309afcd5a0a95803a741d50012fdb602f98d58e6f2b90d1d81c73b8a4cb961aa619ef7702a467e247657c12f721ab6495351"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/it/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/it/firefox-68.0.1.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha512 = "13381af9f0b85c7eca0c17b5ebbd7918f8dfdc1228c19804855dd78e84966de7d95dc104ac93d002deeea0689ed9e64a965062541dc4464e63b783683d3baf99"; + sha512 = "e40c3231959d8f2e96387a4726852f45c05c5a3b2e191b44dee4d718fa10e15e98c701eaa0d4f61bfcb027a832b21b3080c84a55073f6bbb6e199edbeb8d9ca6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ja/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ja/firefox-68.0.1.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha512 = "22aa65d53fea68d327725e78d8e6226bbf97b76abb0361917faddba0704c1dff81e4b8ce5e3bfb3e719625cde2257cc64e361791e6c9eb02d25614ce2e072d07"; + sha512 = "fe74f30aed27e57be51f3840a5035219062149a1fa63dace282ebb257757a8baf0c82c31a506b416b505a640348799a22e7299cb1e6f1b2355a0a649fdba5625"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ka/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ka/firefox-68.0.1.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha512 = "c1d6e80fcc16ac47c23123d871230d96295820e0a406ec7f20e4829b00378a4fcdb205a1556abd218d126a7b6873440cce3ca651b552117ea179bb8542e6c925"; + sha512 = "a8508d13328f23a967e1083fc0a9faeb9e4cdfc0c412ffb36e8fd962de9e34f5d264e4462cecc716bf40ce45de83e976b114ab1bf541c8fb8be005c574b2fa11"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kab/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kab/firefox-68.0.1.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha512 = "6e5b60fbaf1221e035ad6341b3d8fc154d663c0e361f768df0182416b66f3705cf0d2c14caf2787c915a981e9ee7c67848576e3204a50975d1160ad23fbcd7ff"; + sha512 = "f825b1786530690f0ecba3c4e486ca42dee067496c58e2e3930fa433dd7f7991df1bd7d6180103d695a565d9a3cd908d84276395a29f854c306f8149ecf94da1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kk/firefox-68.0.1.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha512 = "48484e9b8e67dee1f5c02c654b3bd4212e36ae2397a30b4e443f769ef10d8309f76ec0bd0bbbcd59f2cb9cc37e96482970777a573b099d864160ca9a546d87f7"; + sha512 = "7c5939ff37c83f31c1a18932c50bc6dbbdf059b2ce191e892bdabaef64b60530f8e54340d2231fdd3223d087c94f55e0b922df2ad21687384dc05d780631b0bf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/km/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/km/firefox-68.0.1.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha512 = "00f10438a68194ee206603df9583e737191fb323e71412b9ab5f41486376725f285019b9429a4048b48a363b66c2dc821b3f761a3b1f529bf43dcdfa0f18dec2"; + sha512 = "3e304bfaebd97cebec3f5bc517e763ad55af6fd44ba1e9a58fd5835a1bb1f7e688ce04de9f5f4a0c01f670faa2f60a0bdd137dacd7eff735fa5f43bfb162a5e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/kn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/kn/firefox-68.0.1.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha512 = "d73e519768ae0e5b16f33ab8ff2277d865e856ae4fa8242de3ecf6df9f74f1e04d0cbce9c4c7e351362dd2cd419ad67019fa0d8c05d0f718a585284c51748261"; + sha512 = "665b75da1af2a98d69999ea578fcb86fc6c770bd638eee98b5096731b63db5803c0c298a922cd6bc77a686fff78d38ed193fe64c17e73e7a8bd9b7faf381e6b2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ko/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ko/firefox-68.0.1.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha512 = "38a54be34b004a4a378af09a354e96a41814303fca0cc55d693cfc6c70e40e927e1ac47d554457a1be6efdc0981d68eb9463a406c415db677b8a6c9e1097992c"; + sha512 = "52fac04c41e6a5396688f7cd80f9df1c4515cab7b0821a67170ab301d056e00fe37555a1c3d8aba1afb309102b97c518bae215dd777622e55339d0f4a63b8827"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lij/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lij/firefox-68.0.1.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha512 = "30432760846675034194e36f005e71eea19c13f8063472aa30b00bd8f2cb359c577c194b71d2aee21fe6371ef01918c3ccc77b4d9adac7dc5e8697d1ae788d29"; + sha512 = "9dff958a02e26e378ca64337875ad9890b7f574dcec338f96e9253a1bd9ef6e640959faf0f8a46621822a5d1947589ed9705ac7b7be374b9c6114133b732c72e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lt/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lt/firefox-68.0.1.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha512 = "06036a7271e654dafa39519e52f1e860a7e0c9c554a10b9a2e06ba3e8fd684b1dc12f1fed969db580939ab534b399c3bea3556668de32a3e6755bed5ed1f05d6"; + sha512 = "e089fc095ce21ded59dc553a1cb500453541e564296348fa7e0d64c2c649a3da8b838601e03dbd431724e693ad96e91919bb64b598e19a5f64d716c8d41c10de"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/lv/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/lv/firefox-68.0.1.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha512 = "6ee8f158bd9995fa02cab38272fcb493400778cd398557e9b8c8335c66199ee64fded5dafe5f46a2a082611602024a7571fca8377dd74014f36c50059dccc008"; + sha512 = "038161a7d0cfd81f47146d6cce5ac8b3acbef126c05c28e832b554820ef107cc7d33b01c892c1a4bf59dbe7ba2d6b97c2f5820c02fdafb0e2e32e12a27a3f9e2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/mk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/mk/firefox-68.0.1.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha512 = "68e85cdebd1b4811ea8a90666bdf18e519b2731be8a01b099ab55ee2d2823267e76d7329e8cbbcb6a3e9b31553a8e882a8f4590402f4883ea600c81d4c861519"; + sha512 = "100f67b45de3ec311eead8fbea6ecd1e9d767c19cb9cce00dc87568c6e123c9bd558b43dea27f6163cd5dfee3e4db84da80f646effef27637f9ce603bb6eb110"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/mr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/mr/firefox-68.0.1.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha512 = "06267cf13d3bde94280fc7ee837a24809e8e856fdf769e6f5e6f9d2583863d70b00d0da262ee3c96fb2b72d7cbe0b04e8697e4d3b73eb128ba26b25c0a304e8b"; + sha512 = "02c4a73dfade16aef4688cbc38aeea0092da846ebe85589dcad472acd2fb06e2ec2a3264b0241e64d7346237238602e5c46f21335f9d0eb965d8c804a73ca561"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ms/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ms/firefox-68.0.1.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha512 = "d52ac748c903b763308bf83f9da8e898fe7f97418da43061c8c717ddab97aaa778647b241529d023490bb7c28434b1b04284234d6c1f1ac6c4bc4bfaf0133e1e"; + sha512 = "2e417277438a82212b82c11da36b826ba64a1c9994b11b6b2e4d5c00e6d62d928e8870fdf97ead915d69ebf5125a9a13d8ee37515b55f2c0da9cbfbc3592608d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/my/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/my/firefox-68.0.1.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha512 = "c59fe9e91260af739f37de4ea81b3fa09a6202fe76e9cc03922b136de8e8deae140798de1b9645732c31203e4617954da83d8e2f279330f0a3ddcc949b95d550"; + sha512 = "c7050e05d39e3050987062337569f1cb30bf5505e92c01de313fa5d0c882ece4c1e62e9caa64f5ea7b87d9bb6c63ab2fb7f88c8b52eefeb7e88233427cf381a0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nb-NO/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nb-NO/firefox-68.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha512 = "87c37012c85ce2301655d81b8b388bf5412c19e401e4e48713607b69157e017fc9cd0a9dd7ec980761ff11bdf74e3b3899c568c808f98a77005add4a23632b33"; + sha512 = "4e90965dd0f2fd44c8a87cea7dda3c3cf5ebd49a2321be18f133f78f93a4b3728ce1a4ba83d52e274b4367652a280143814a88515a07635f27b98ffb28acf59d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ne-NP/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ne-NP/firefox-68.0.1.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha512 = "5847c023bf23b8f399b13b85e9d41006d7871593b64c158ea873b9dc1d272345b7daf08b89faf0af072336d09523025997d2d769035e4bcd0fda6919a9afcd68"; + sha512 = "8a367b81d5dd1dd30abc02fcf60b406de2e9735cd4eaf39f9d50ec62817abae18d1255781648981120362beed305f3c126c721536faee7712b1f95209fdad463"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nl/firefox-68.0.1.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha512 = "55543a83655090fc326c0c58714faace33c43ac478f3471efc1508bb66c6cc60a306bedd9a059c3eb8c130a330bffced32eade1d93c5a2efad6c168f801b8c80"; + sha512 = "e17960bc934d3e17a04f3ca27133a9c98e6e9b992683eb541bfa47e8b71c077456f03f281d1534560b96bb4ee6bbd5a0613f6f1cc5e99968856eb3b3e9b7611f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/nn-NO/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/nn-NO/firefox-68.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha512 = "110778a27744add44dd912af54bd72a304e6ffe8627e8d2e557fe52b4ff616ff65649d8be21bb34d5c3198125bd4e645050a761795877ed2bc52ffb18a19c74d"; + sha512 = "675d15cadeb505b4afe801f593dc6d012854b80e9aaa195aededca6b0ea4ae580a0c366cfc99ef5858bc5fa11bc4855cd17cfb66baabe4d0f8ca2c65615234cd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/oc/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/oc/firefox-68.0.1.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha512 = "ee4924824d66643e92ed30190c391a6f18aec76d134b0eb5a300a824d5e24abc368623792a034dac7ac9fed1d70e0e07903446670b14ffebd78df191021e2970"; + sha512 = "b46b563b05bf5a1c048f3c2ba0cfe73ab3ff5bccb24c5aff899ce2ef601b55416507d3b35cc0688f9a7602710626479a0824e579ad0a55b22436b1d8b658c6bd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pa-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pa-IN/firefox-68.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha512 = "440d04629c926288de2b1f7e2dd0849e2743155cb51d98cda33583cf352fbea6bb742f12cae1031708f55e0407ec390777f7e6d0ac6aed9c542ae6558b37aa4e"; + sha512 = "77c533421b6eee5033d239e67ccd517c2bd484f803969396e2a02c39246e43db710461b61b819fbe2fb8b2f97bbeb0201e31b89c499eb992b565628977467a9a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pl/firefox-68.0.1.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha512 = "fb91cf62eab23a1b1d1406844a6703ad63acf5b59d727728660ff02670969903deeca9436615a3682c7aa24e3dec96b335561db62cd8f02eeddc1064e0cd5c9c"; + sha512 = "e9349a3416a1e82723cb90db970514a608742ea8589801bb1fcb8c922a302cac83779fbf83c151d13760773d9ca69fc7d57dd91c547d3ba581d731d4d122a195"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pt-BR/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pt-BR/firefox-68.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha512 = "61f34d2b0f3b9191e3ea7ef18d17d64044b030fdc066ce169b3464bfdaa6c47c1490e45eed5a864ce9cda2b49a688b8c3a43ff80b6933f0ef3e4402082005122"; + sha512 = "1f2a1417604a73d94712a81638dceb222ffd9594aa319e09d6bd4de3e37dd07a1059af63c27fe26469070d678cb23dcf977e7b8aa86451df1db5d60e698f25f7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/pt-PT/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/pt-PT/firefox-68.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha512 = "a23a5dc6634ab4e92d93017a9cdbdc6d5fb8fd2582da9eef80dc9e7c1aa374e8f25349e8dc62af71fe79a4144358161c01317125196c2492dc27fbfe2bac3732"; + sha512 = "480770430c8a3a84cd367cdb90c157d0f67e22b4b2d84e3eb3760c6e4463655d74ff6228df31386b8a40221262dbb12549a9c88372e7b2483c099d5a983a4a5f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/rm/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/rm/firefox-68.0.1.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha512 = "bdbef6e73b7b151b45ed55c4a58aa2543388a3b0ff93afc6120981f5e7f43a2b4016355aa253d25061f31772934d3f5c12fc06901e77a1d57f49fbe29fb895bf"; + sha512 = "291a8627380c933c6df5bb73599ab3c25406710a19b979a893369d30e5117e563fd77b50ac2c1a1b7a37779df7a57a55cfbb42d8f56765cd719fe6ab6c0404eb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ro/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ro/firefox-68.0.1.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha512 = "44aba7def57c5aac88a64aa67f185a487cb8f6833c8cf608f3e0dfc4271f66f1c91582120ebf81eb9e8f3547a2124a99be322401c7ba8c3d70a2dc67002299c3"; + sha512 = "1e2f0c4950a2e67e2cd11e27c6979315f78d4c682962387ddf1e47eda5a1d39136662cc3730a45474ad2978e01f1fb7888e82ad764791ad0d06b5dbbb3088c1b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ru/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ru/firefox-68.0.1.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha512 = "6c51da10756208b0a7ec5b411f72f3fbe20e7966df5e53f65c27290cab29b70e270c9a6ae56ea21e6fec2855660200a543b79647e9b7031c604e747507191411"; + sha512 = "af5d5167e1f1e39b5b727f269dd57060840ac46c21e593ea9938e6b1d1a97ce75d4ae0430f6a96ec7e403046616fb771aa62e15093c5852e256f49683a704cc1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/si/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/si/firefox-68.0.1.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha512 = "c005b4f99142002aa4e6ad2baec8bf80dac8dcd5010242ae0ade76fa21a47f04cee53f8813ee23007862e52e9347fd4ee0f573e497e01c50fa7eb12e1a40081c"; + sha512 = "36083df5d4d1b5737453f433fcad2a610445c66888067d6b7351b1ea3b32d3494ec349d825025df77658d8726219faf94e2018e5f8ba47fb03b456657f16fbd8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sk/firefox-68.0.1.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha512 = "3eb07a28d0bdbb76348932c2c9af9d6f108d32d6598fa2a77edc1d7b124f1ee7cd6b7861a8ad3687bfe19cf43fa3a2b6cd54b1f688d40d89a0e9592c081e7808"; + sha512 = "393576a17577b9642afbceff032328a571189938a89d34eb1f9d0dd9d0fb2ab0bf37c83548eecea75894464887d3e7875e6c25b4382db8bd57ad54f534836439"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sl/firefox-68.0.1.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha512 = "4765af13425c1f2bbb5b389d43a1409e82534f24ef880a18025a09f9c686b257563e7478cfeb3cb0e104d13ddbd7f761a0783d7dc684b6dd133d8aaabc5a2e6b"; + sha512 = "2c2cd423e0b8e01ecb12574b3d461e79864989d179c785de745b458e03844201b9a5baf9ccdf40cc06d591e96fcc9152d231382bd3862082662ef015f61c4ca5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/son/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/son/firefox-68.0.1.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha512 = "4c6182c4d94a6dac615a57f7fc5e7b1ef7e79d9574d04750c40f4b0b803983ec4e22538caed24b12b1ba97f16e3726924fd9c203ae14d286aa82462ce0c6bcf3"; + sha512 = "5b714236fd01e0f7cdf57c441c44b772433cf890a1aa32f2ea6ea6207140845125c8770e2fb92c228838e7af012eb535418ceb2fcb9f2eff2ec3bb6d769b01e2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sq/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sq/firefox-68.0.1.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha512 = "8a392701fccff096a0af7f1af3ad4c591c222a61f55bac80e12b09fd760fc23ed162308f96680cef459f324254bd6f989a4d11a1e24a5f8eaafedf81641d938e"; + sha512 = "f8e1a366bc6a423dcd45c2c89195dabc46d62d5333d8df075e86a07b122c32d00893fac6dddbe9a8c2a5f14d961dfed7b1faa1eb8324caa91d8bfc335ccc4386"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sr/firefox-68.0.1.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha512 = "5db4ff2f488d18091e5499a6f32cbca16bc115e5f4cefed50b6d2e6b074a245613a7e1e397ce7c902d2ec227d94b02c11ad1a785cfdb54b6bcf2f16ea54161e7"; + sha512 = "df817b50e802fde8653e24c590fca64099a29b1eb8391527ea2aef19c995c10a51a6674914f933b1d90838ae8a0ea66b5ab309b7cf5f2ad601d0367696499ce5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/sv-SE/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/sv-SE/firefox-68.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha512 = "e4e6546b45421837029b4234a6166a170c62167f7353f06f6dad4500c9aa63460c421a64219a258bc1efe2caea4d0def9a37bb62e99b95d7d33744498661b8ae"; + sha512 = "f50094058ee1ae5abf089cd11aa7cabd3435dee79147fec091c18f61c8e6248a79d195fe374e8b5e2a4dd13594bb936c6a7393463fe4c245e2933b26790c94a0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ta/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ta/firefox-68.0.1.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha512 = "c6eca4d784c78d60eeefb65148b7c184d24edf3cd97824cb17c1bcdf234503d2989177a2f11f75b6491cfe98d1c3d55bdf5a8b33317791dbf19dc33e62c46d23"; + sha512 = "31fc4b39d78615d83a2082edc82bce70242b2106d14afc2ee631499a3b3b7c8828ed89252f86c37fb2ef4d8e1fb9a778314b759e3570059771c9a4c1506b27ec"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/te/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/te/firefox-68.0.1.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha512 = "df4a964e69ef9809d6e6bf50a3985d89805b3aa27614831a923e064ae58981fd6a10abdf4b91314986a8617a59e10793310a7c0f92897d01402e331da682ad06"; + sha512 = "81ac4e7fa49dc61a476d993709093d05c6853ac74502310c01ba97061cd04590f11c205a4df9ce2ec5c5537feda7b52e42506eda820e4e0fec173d0fa1629da6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/th/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/th/firefox-68.0.1.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha512 = "764bfcbe5b81656959e5736509b3749a3e42c4850800992ce74cdd409b491c57e06c675c1ae5f2571311f0583a0e6ce3ac1f8b0537c5c005ca494e67839d981f"; + sha512 = "477001631c285096f6630541c511a15501ca4c5cfe1a25bf273e4fb505d7376ce0662d392683f33ff0a976f3362c0aa850dad999835679419b98b61cb0d94465"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/tr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/tr/firefox-68.0.1.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha512 = "580dd7c33ed8e54ee6e9a05cf570bb0d5604a4f602dff9708aa0075d2120fbb011443d134e7adbd53f45ac3405b5796d3d955fb1a33b2de1238b5acdcbfed2a5"; + sha512 = "7d90a8a3aa1f3d06610997ade0ecf9da1b4ea5ecb93252ef254ee9e23280ef9462333a2b041fbc7aa450ca567d8a053c3b415f9f135a2b278b4ac6f466ab6525"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/uk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/uk/firefox-68.0.1.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha512 = "2e9ba8759ca9478173dd5d8f175cf827b4fef9e8cf778630ddf240554347c0c3ce9e76a2df9ad3f371cf379ddc04b058e9c9a8e0abfaa53236c95c2e088ab82a"; + sha512 = "22ef62d00b6ebb7f0f01e442bcd6ef767ccdc5630b7c732d09d42df3089842a8c9db4a6094b20209de722f7cf903993f19e2e1173682fa71d883a0ecdbba2706"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/ur/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/ur/firefox-68.0.1.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha512 = "5dad30d09dce8ca3b5f8d2dd2bd2bc3bfc0e03cb21b07995e3c1c8364cb0095c16799fca879820998880579c88bd6a1883c2faeb47f53058e35095bd263862f2"; + sha512 = "e21fe585a204a00e1b6b038141f4e8c188076e57c601822005d64b56ad3b4b6285d3de6e6a2dda46833a0e8ffb2c3e34af67bbf0f54c2f11000a9edd4fbe30d2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/uz/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/uz/firefox-68.0.1.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha512 = "62f894177712c0e1cf536afd93a15d146abb60936416d6fe8172b87e56a510927245aafdd0ca14472e2f938cae63e4773804d258f362fb8bb65b981b2b2928ba"; + sha512 = "c8238c9cb18a9ffb861eec6eec4bcc1335d19e24e1684c592985e380c231f5eb0eb1c311ffb0750efcea9f784f6d9dfa5d4231e1765f53a8d0467479328c0bc1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/vi/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/vi/firefox-68.0.1.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha512 = "177065bb438cfa27d21d3f371a2a602b00b7f8411b4119e4f7248087ced64d31bef0b3bd8b71f5b55f9a3a3dc2f946f67bd37b74e501bd03d565d94735a26b3a"; + sha512 = "f51f299082f0accb6cf2cb055d361067907a020e60e5e1acebf45313e0065a1ae52e8b60ead16d3a45626492e50d809af36d24fa588395a60a7bd3774671ebcf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/xh/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/xh/firefox-68.0.1.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha512 = "e9b764770520b1d2caf358e9a0baf27bf693201493ac8008bca4e46d5e918d1d3659c6142d60745944cb4ce9673cb165ce72248527dafc801fa8c2acb4768371"; + sha512 = "5ce836611f3fc95034cd950e727ae7c1080f79ed584a3e4ddb87494e8be790061c0761e34dcfdd381e074e6db5f846a52d9f5821bbe079681e17d91205eecf02"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/zh-CN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/zh-CN/firefox-68.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha512 = "3ec5489e08c721fb62c28426d3bc3bbb40005a37b0a7ac0476dabd9e207dd199f8f58f79cdac7cd411baf1b8c3f7bf647db211d509821c0742f4fa104c5ae2cf"; + sha512 = "e48fa39d1c183ed9dfdab93da265d10fa5782e8a9744661ae1b6283344c689c4a63f20f386dbccc7f822fd434865692c1c7f0cdbb44f7f1eeda860ea105aac12"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-x86_64/zh-TW/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-x86_64/zh-TW/firefox-68.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha512 = "318a7f3cbbbebf222ef5524d40bc9b8dbf4d2bdea16b8c81d311ad54872c0c0e4312655b7bdb59029a8092b8a7e9fe6a25c3c85fd637c0a4ed794644eb639841"; + sha512 = "116c39b237985ab27f007fff740e1a7c5adf638f8a05b7e8bd9124671f83c523e4e80294521542986add8399a4754f7551d823b2d689051aa533fee551092416"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ach/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ach/firefox-68.0.1.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha512 = "507638c2bd8840a4abb4b2f5165bd6bd9b2a23179c895563792fa1930826dec9e63be7a494e70af95ce39c051798f81a9cfdadd9b8af0b3f05a6ee12c67d9ab7"; + sha512 = "992f2ce9b0fe7fcb73bc999da0f76269efa6b7deb232a7c20c62706400822ceb6aec932c1b86ff475ae9a2cd173fdb37f481399a8b03b9893e697c217b333845"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/af/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/af/firefox-68.0.1.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha512 = "6c1f477ff2348cb01bff82c6dcaf9902c296831cd4104fbcfa4755688135249a7afaad464f00a2d569d152fd409c50b6b0d6e14b34aa504afc139d7e7a32d3f2"; + sha512 = "0f692c38ebf187b51c177d90d76181911e07ed1956bcd4ebe3dd9df8ac70a4fb38b07eea6c021c4b7efe5441113a4e7cc1df738e1ad773bc48e99ad50edc414d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/an/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/an/firefox-68.0.1.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha512 = "2a1c9f44a19f717e9831f34afd6b1948572789cbc14183b3c8fa4aeccc74d4d0616124af84e2cdfbc24bb6e709e5c09352183f5a4d8e92e9498f7f41e9b5b10b"; + sha512 = "b9966ad9cd07a9ec998865b78d7d6c6a5995806d49d438354ba5ddff1c982858d1144ce960a1b3c2cf735c7c13c74217741600561f0f03db86a61a07e1dafae9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ar/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ar/firefox-68.0.1.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha512 = "aa838908e9b6a712e74d786ecb4d32c7a51335fe35d3952b98b685fd7c3e7caf0a18359f24088459f45aced141cecfd58b04e23e56f1e712c42cd4925ceb123f"; + sha512 = "c2fe29032df66698a11c7608979125d888d0ff79a5ffc4544fdddd3cd0401272544ece1b8136edec036f6ec388a6474645bd68873b7d8a3a1ae60e37002913e4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ast/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ast/firefox-68.0.1.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha512 = "5b4d3101dfc82886478395008a0de194b94b23f1b8beef6f29eefada2289ed60d1593d88ddab6dcf6644670dd0133cd5671a5ac30125db2efeae5407181aecf8"; + sha512 = "4a78956be92a98a291767cb29c8029c07aab2c88eb71f1527188010950c8c34cd94923fcc6bd4e4969e286dae32d3c8673ef61a754e027e2e45e04bf21ef71ca"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/az/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/az/firefox-68.0.1.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha512 = "51faf8a870124f96088c913345a81c665203a2677f9d1e7fc993a2de34c6181c3e3aa86fd02efb0a11f45afbcb27a27e98a875c71d15cf8d2e6b9c9368cf5153"; + sha512 = "e9b88f53294781662f4fcd96f85de5a73de6ad2d9f2c4c10ab9202530a3774cade8a421c32794406dbed0a276bb40a6598db2b8254bb814345eae1eb79fb82e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/be/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/be/firefox-68.0.1.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha512 = "4046b43b1d3bdbc721cad19c771450bd02580a29f6d14a6a4c6875b5d6aaa05c4c6afe23d4682246d75a42fe96710cce6f4082395dd67ad2bb2ded7c352b31ff"; + sha512 = "cfb0f17fdde9dc400785ecb1b4951312fc16685d7bd1a3fcd4743b729b831f8b25e92d64bf7366aebc5e3325e12e00a6a7a28cb1b2775755c0ccbbbc02a25b28"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bg/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bg/firefox-68.0.1.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha512 = "bdca1aa33f7dfb5430bea80993a18d12edc7b395907dfa2c687ab6d8e1b6e8d2f684680056da96e2122523d831a8e20b38fdea2ac8570978a3af7768f36d0c2d"; + sha512 = "a2efc640303e0244430c4c9feff0862e5f554cbc62fc63656419dce0099ade9ff6d459aa5d1f8fb243c0e4b129870feb54ee5b18d25603524992edb3c27f3b04"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bn/firefox-68.0.1.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha512 = "ee90ed4ac7182c42459976f84bec6318482f321abdf2048060c1e279bea6764b96cea64b2876fead39f5c194ff4baafefac189e05d264376e2c7a4afb7137b29"; + sha512 = "91f116045b7658ad6119105c469e6a9791cb5ac37b6f47fdf8f8fb2955836b1d1c474eccf3e51852d69a98a31244b778264b2eb8133afe75db9514407ea2aa32"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/br/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/br/firefox-68.0.1.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha512 = "c697fbb1aebd277d30daa907b99b1e1bac9c883b074db42c24788cce719bd97d036824d517e5c4d88abd92e1db42d3edd7b834a36fb57fbaa3474b45096cca37"; + sha512 = "207e2da1d5fb769799fb3f6e47b3aa28aa4e79a1d9c8a2d63985c22c5628738e12692cac5ce130715796880d3025975ff7a224179374401c6402eebb0385183e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/bs/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/bs/firefox-68.0.1.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha512 = "ee20cce9514ceeed247f250da5c685d26f6606d9db46e60786ce46e7807cca81b8b2ace58ecc17dedbcece83313cc8aa7b4b12495f26d4421990597e68a8f617"; + sha512 = "90437aaec77e3f2b63e0e0db35109fbd8b81f76c349e1f1b19a3eb1866beabf63c608cf77b2e720ffebd1f28c092de64932822684aa009cafbe7e88b213570c7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ca/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ca/firefox-68.0.1.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha512 = "e11f71785eb7ea3b571980cfd214d3c8355122d6a6e5a338a7cfe1a52a43f448580109ed0fa3a5f081cc4b33983473459a41f5a2e89ab06ba924a23f446e05ef"; + sha512 = "9d42c1854e344a776223cab5d7ba06950ee9713398916b90a575106426e5991a5bdcba29f60c695b2f46f9d0a2dab7cc5a19149b0025d46a324e75e876e186b1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cak/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cak/firefox-68.0.1.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha512 = "7989ba79d408e4d9d277a9ad29bfb8d8d74bc89e68cde6f026a505e941417ea585b762b21f18c0041c65cc7a3a5447b850f74d12cf2484c208430b4c213bbe34"; + sha512 = "dedcaeaf2165229b281af26555b0f219cdf4bde907f5dab190f5ec4fb7bf3360a9b9d45dc4f9bcec27bc5216210b8b79a9b6c1ed0d0569712ceb965b9d094905"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cs/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cs/firefox-68.0.1.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha512 = "1246c3850e8ce51ee7ff844001c1dcb8f50c1e132c22d2ac78865f140248031b0960d5531e115d21e6cf9a6d99f579c902012117045b4153f32e24fa08a77436"; + sha512 = "b551cc15580de7e0f58dbeadad25b74ac50dd15942d3132d14983c239342829f5dee2e7feb9b0e4aa950fd18f3c8be6b80e28ff71c7175c0b905565e59555574"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/cy/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/cy/firefox-68.0.1.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha512 = "ce07f94f3e5937cc94067b01e59b30d2063ece9b91c0788b0e4ed3c99fa8ae234db42ea19b53e0ef998a478c3ae4fd1d490499bea82082d4c5a2d8374dcb8e19"; + sha512 = "02ec0b98aa8ab3fe1173a193dd7a77519f73fbe406846cc39ebd54633e19b415bf3667e1996aef6aa84f4551d154ef24e8126221def2d4b6df98d34408df59f4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/da/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/da/firefox-68.0.1.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha512 = "9e78b03982951ba49b4965a6659416ec6ad05a57d38a80036297879c35214c401d69900563ee5a9bcc63be88ef82eadc0a7b77484bd36e1d71ff3ee8e92526b2"; + sha512 = "969e14d63859039d1bad21ed6d0d083536a9becc476ca9ea1a87ff8159aac9711b981d9d34898dadbc161344aeedf529c64b0979bb4a371c778818441c97bf70"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/de/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/de/firefox-68.0.1.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha512 = "c527fc6c30ec28adc873d6aa98e880b90ef3cfb9b5522996a94f5e45075f0248e3e6340bc4b18549bc7c0db98af0e8f9078eeca34aca3e829853dc08d178c32d"; + sha512 = "710ca362783ae98bea8f3f3a0fdf8be05abb051c456118091d27e2854be718a0d28ae8496be8f8ac71fbffd270dee46ce161dedc2dcfc27a411c1e4dae0622e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/dsb/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/dsb/firefox-68.0.1.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha512 = "38c654c6bc6cf74b50af68ffac1bc1857ee334d0046c178fb1ad620de5e5c8d06348db6bd64717adeb4c938bab95426c0f12df9b9a5575154570214d2c6f57e7"; + sha512 = "c5eadd98981da8e91138267832680e0d3e0e2d38525d91ba68647ed89c15c21d4a245069ad7352669f411433b72fdf262436224df408cad1ae1e9b8d7510326c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/el/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/el/firefox-68.0.1.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha512 = "05c6fd48d2e8d3d8aa29198867136eec1921f4ed7e3539095be5fa9751d8993de7070c92fc5492d99e91f7609e5fa29eb35b955a489eb7180970f0f904cb1987"; + sha512 = "ad5b36d527c5ae3c5b5b1c44ead91d0cd31d0517657b391c68f446cef1df1dbbfd7eda9661acfee8fb132f2947a929bd54223139a15e4b8b4fb44c0375858c9e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-CA/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-CA/firefox-68.0.1.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha512 = "dc86f2395cadfcee44727b7beca3778badbeabd816787d29efafce96fb6ae2dd3c1ec1c22aa2ca2b80c460868cfce602897e1551f2cce960bbb1964b8851b362"; + sha512 = "72f0aeb46b2d5fc59bea781faad79b41d5ceec9f0100d5d82f961057252c74f94903cf5eac679f5711b2984ebb376ca92f5f58a8d46542beb6ed3d482e298df3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-GB/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-GB/firefox-68.0.1.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha512 = "863d32935c992fd0f13c7060650e013f98ae6cad34474d8ba537696dd906bb80a753693707e64af8216f51caf83e0b7a124182280533a8d19e9c9262357a42df"; + sha512 = "51ad08d603a664f34ca4a5aa4d24959f587a140ee2ca1d351032441d2ccd28cc478b0bd14138f020e02f1e5c4d2e5e69664dfca095586d30cbedca9034b3f37f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/en-US/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/en-US/firefox-68.0.1.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha512 = "37dfd7d1f901941fa61443729125b6f327cef5d310401834bb35ee6a97ea28967b07b321e239dbf145a5ff55e4c3d28a8492a4c5838794c2862beb0847ce5271"; + sha512 = "ba1d3a34b13c543544f364934dc936d6d1e63e8c62d2d6cf0a503c4a439db5d0d4d5fe88da77932c42a52832016ef197804014930fffc0361c16ff34b7883a7c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/eo/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/eo/firefox-68.0.1.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha512 = "cae422321ebf8ff0d39d2c68b5aa92edc02e99cdd749a9fe166c2d6b0ced0ce667b430f29285a89841052c68f2bcd44fe1363bfe594bea9694a9e0461ff5585a"; + sha512 = "55a65074af541dfc4f25639ba1604336f3f77f9a3243f5b11e80387e00f7c9df9cdc6401f1d297341064450678514d3c663bebdc1090b33259151215025e2f7c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-AR/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-AR/firefox-68.0.1.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha512 = "a8391bae6d3611685e1727e0f09166d51727cd4718375b4eaff0de918cbdbeb294f72a5502db2858eb81fe99d7b941f03b7483f0c481199f6555a70b0ecb0045"; + sha512 = "c7d82986325f467aa8ef762850fef81cd12e6a5ff2ed8ba2f7d23badd17fe0ed0777572b9a2b18d8addfcefc30b603c7350504b943e005de690da5c48d72db8b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-CL/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-CL/firefox-68.0.1.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha512 = "7ca917d51fa0554f66821f37057178b255b0ac127e702d81e4e30b49512c335f6a9947590ad10ec84c533e529022c538b43752b04446e8ffa0150af666abc943"; + sha512 = "88cb20885971219fd11b44becfd72b0622e7b9bc04cb1f9bca03b634399566e3c02222cf3aa10ea039c43a6f2415059b814b6e510c1c4a0f80ce83a3cabff32c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-ES/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-ES/firefox-68.0.1.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha512 = "6595348d944cf68072836581890e9a3058ebf5126f4c44b907c8493be51f67f7431e03ddd6f62ea09459b853029ae5c42ef753ce81ae83bd8ef5b99bc3c46f54"; + sha512 = "5105a3c0d613dcf9c5e6bbef8d73428efba49e470d0af5f8a63077e0ecde4e83731efaa71da503e3315eaff05a3cb98e47d7d3ed6ca1fba72678f9e4b2cc1069"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/es-MX/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/es-MX/firefox-68.0.1.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha512 = "1d9317b799a89d0177677c2b7ab10b8260442deab2cab03c6867364f4f4872032e9cf364eeb74036627bcee38bbac173658b5cf9beae82f2440cefd3c6304b84"; + sha512 = "0f793eca6858c63dd38e867c844c0c5ca11928904e67aa50e6613d895ceb49803079e360302851fd37bbbfd6c6ea2566d50c9421e6a4358aae6400f8872a4f6d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/et/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/et/firefox-68.0.1.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha512 = "6be56086b78fc6190dd812da88e60662216391db92216430ee8c0123a7f2cf95a7456b7ef7a42d34d39c9c37755568d99992a417feac73d8f3b0b4f46e18e821"; + sha512 = "16dceecc270ccdbe998d2bf523f3c8efe7b70b466d754b93b10e782add602a003b6c00ff91d0eb06cdfbe7a5ec752714d5a65837235ba16c62651d9e3fd1b818"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/eu/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/eu/firefox-68.0.1.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha512 = "e6abb85b38179a6d33f422ac2e69d677febbf47f823b469acd55e737922d76cd09a34af5b1105697f44ba542a85d9d16674f0dada7bae418a9e3d5b8dfa7edba"; + sha512 = "c8785c8af23149595e31e6ffb8305cccbc40e89a60944c3e3db126a6348d43ba3b2db13e3bf9da12d44d515ac8b6ed97c66c73b06592af7f454427afdee0dff5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fa/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fa/firefox-68.0.1.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha512 = "1f4da6b0f5dc40d653c020365284d33182ea0a115268158f9e22e603ac5f2a951c726518bc859748f955cbc07e032ca0a7c6582e29f9ef1af1cf3a10335bcc49"; + sha512 = "467793f8c9129477053fb1f90b19eb905310b2e3d7e0463b404bd4e2d50f9041fdfde4358d6b86d04d02caddf48ed0f3294ec93bad5edc8a1e5b9e69ee2292b8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ff/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ff/firefox-68.0.1.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha512 = "c18d91c33414a0bf583b5bcbc09422325e8b974e59e6d161027c68727e6b40f81919e97bf812bce093b1d71d9d0c7a404fe1d4d1e8ecd90e6d2813a2d644d7d5"; + sha512 = "68f76f18b0796d67f8d2d901d3bc4168fab14005b9ede5d01b80a8f151ba5d18700babb6c76d0e36768b32c488fddb48ff85900161804166106ea05ec2700ddf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fi/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fi/firefox-68.0.1.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha512 = "079a4a418fb93c59c151af61423ae9ed73b36b5ef6811b05ed8e276323ab51a0dbeb7e247147961920f2747561bbebe49cfc8fc95ab9db4ac4056c1814c77e44"; + sha512 = "4a72d9c8989d66eab070a0713deb49b419b0756bb50c889af9895e56bad25da129974f860c4ca7c97a178546bcaff9f7b1c1073d3886cf93b7f55d8627fd7969"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fr/firefox-68.0.1.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha512 = "b7a668487d9573642f0499e27d7ef7b56ef836f132c3c8c1c58da05477f177489dabcc316297e16ade0405d200c6d66073a883d534b38497e6ed8f20e0973760"; + sha512 = "5375cdad39dd217da9a145a9d3d8c1370371f324321a793393d47c67938cb55796f4c99c1f3ce1ae7fc536263df4ffbcba0be0ab3af7b908b1632b7f3ee9a501"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/fy-NL/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/fy-NL/firefox-68.0.1.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha512 = "302ab58859a2dad709e20b9593c5020c02964bd6ac71aa21a0f8ad321c12c4ee24a6d24fcdd88735ff60411ac8c137837a2f6f86bff24b415a948d9384a02f65"; + sha512 = "367657456e186a052f5351d4e7f0a94373ed400c94dfd0ca64851a16cbb16e5d8dbb62cd5153a8e7178d7fe83dc22a601838942f9cb658af4624327a6309c0e8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ga-IE/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ga-IE/firefox-68.0.1.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha512 = "2e47ff4f35e8ee118aae3f655e38f58d9730bf86f6bc12080a514a9761f96f340d3f25f7ac55c4f95fd3118c4f5ff22645c4d26c3973afcc7666f3bdb644082c"; + sha512 = "11fe334d97565e47080c969fce1b979b33c3bcba4aa87992433982483cedb49badb6c456c3e47d57cdca37f7da48100bae120ab7defb78fefd4151da5d2b348a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gd/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gd/firefox-68.0.1.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha512 = "bbe4c3ed5f57cb6eba8856207d112d350041113cbf72d473b28996de733fdabaac3d83348e6940739a957205f12527c8f11f589456c62243b5a4ec60832644da"; + sha512 = "b11806066cdad015aa9f71e501b108af023ebefb04ee73fcdf6186c29fb0779b6e83d185fb501e5768262bd4850d9cf70ad3ca9db38a3c6c26ec7b4bc67e9552"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gl/firefox-68.0.1.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha512 = "60214ec1f9aa29b979fb67604b1e16d251a872cadf8c3da604ad0c3d01b7f73cbb756968760873bbfffbb379734caba66016dadc29c8e487cb5641b4a9709a93"; + sha512 = "c4f057d049d58164119c9cebc8c12404afb090a87fa8c70c5c948ab3150e997672a6831fff1437f50319a65f66a40e4b4b174f40b3768184c6e6c060c38f9c6d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gn/firefox-68.0.1.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha512 = "485960787162c311d05dd4c028812691e9869dd8b57aa2fb50aae47733545deeada36c6518d060251d1a883377cff787d852648602c554d70e80c652f28a431c"; + sha512 = "376205bfc04eb9d293b7ac618dc30218661c107ead680121163fdb26c7ea43c34b2eb2d5c081b3c1a015fb19c55fbae1792475c7c0c2021efe695fa1f9bbd794"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/gu-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/gu-IN/firefox-68.0.1.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha512 = "15dbcfb3db5d6e60be14af811f5ae69668a330b4e59abfc75a4e90db91390bf17716d7b25d2d65783df5baf9b0e35babff879bdc26af661f98364f3996972ade"; + sha512 = "35104699fe4b8680ae04ca6371f39227e99fa10d75c78e9615e4a63abae622ec1fccdcfba48cfc6da33bb717bafd55e8a4bc08a7712758f1eef677753f75d93f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/he/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/he/firefox-68.0.1.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha512 = "8f15a5512ff4c5ab9d94092e8b93d36633b31b8a8c5ddaf2b1621d2607defa01bea3d6496f88aaf6c4769bd16a29b8df7b173667290cd1637e48835832841102"; + sha512 = "5e2471b33a132833eb4c128e5d93f14f9ed03822362461ebfcbb0791eb7e468e5ad49e34266c6a9bc219e5285011307587f2e9098b7864b1a24fba853911fd36"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hi-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hi-IN/firefox-68.0.1.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha512 = "a84d627df710941cf2997ed842f75c0d61e699ca4d2960846dd2a012d87f085b414ae91bce178e1f1cf180ee964f0b40e1741b2408ff9a340005cc56c314bb42"; + sha512 = "b691bd4adc2589a09f780d2a301921d4aadad231e0c9df810085fcbe57d52acdfb801d18ac21bbe7070292d40f009f6d3bf43f7a107b0e58f4bdf98818bcab10"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hr/firefox-68.0.1.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha512 = "d0deccb5b7d0ff3a8158ed293c84ab015bbf3ab9feef7f881584166db649ff0cd66797856c89b178c81862b0a23a55cc50824a88108cd322d84d4ddced5ae56d"; + sha512 = "199977cdae135d15c6e57194f93425c9058ba0a43f1071c8124c03d154e3b6be9bb1755b77b2313da102a973f82efd427ec195759811e3ce4a780a17d4c66ca1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hsb/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hsb/firefox-68.0.1.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha512 = "0d929bbf4350ae0a450eda2258b642dce44d232b18a4942590f5a47a271a6cc5ae2629af0fcfd916402adc593356345f1e92a6f9ba7f479bc7b1be9489349369"; + sha512 = "411f411c6967fb4126637dc86edcaa8dc2d30da1b4898a1b762916f3b42429fe9ced5f4511f8482dcc5d6a3e0864ae1c002d995b559fc29847c4a447e3c35c2d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hu/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hu/firefox-68.0.1.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha512 = "040b30479f3db19d56daf0cf8541e6ed7da7952be75b3e34b5ba39e4cadb4e48214ab39df5d54f000c2ccd242ef00924ea56de11be1bc6636d9e334a457cfc08"; + sha512 = "b63bb10f875f313af70177212c2fa89c7e7bd0750f2f3a756690ba0e4b447a046b1ed5550527d840b9a6792f9e2e8d9d0dad2d168db2375c1bcaaee7e20b3709"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/hy-AM/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/hy-AM/firefox-68.0.1.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha512 = "835bdfb4eb527c815e46320a729be1695ba7a56aaabdc19198c6e2029a69979c6716a0640dfe55a8d7b5086643c2352e8adfa0964a5bfbcb831a1a2da287430f"; + sha512 = "aaf4184373fe79fee98e5029c6d869d6799665e561441cc47c25b800d502c5e25fd254945cae950b662093b407761100662928631e285940693ad209043ac2a8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ia/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ia/firefox-68.0.1.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha512 = "400ea5d0c6dc2b3a4f7c6c054f89de89e836994608ef956016ac5a17ae5893b3a1db8f5951f44f2ef2e76124a88662a6031e975381007925791401d8e7d825da"; + sha512 = "df93e81ce41af39dd54a01485dde96803c1d9fd6be1a514999f6983e71805e25e1abca7469df1c322fdb5b933370a3f1be7040783ee496bb6525bb457eeea8fb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/id/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/id/firefox-68.0.1.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha512 = "34164d93a3dd8b7dd5a3ecf85f744ce706f33838b202050c4a7c32283e1f09ba6d40232af79b729e9e12d85864c8d8c6f4515b443320a0efcba8eb5bc4421ecb"; + sha512 = "b195ed2de8f83f4dbb5b5f8703407666d29e5d7430bdc92e6373f0c7617ad85d1405acfa7b2634eaedc9c114d9793a5202cdc4051a0636947c99147fcfc76444"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/is/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/is/firefox-68.0.1.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha512 = "5462c980419738e0db5eb9345af198e6d090646e12a70f9cc9c9c65f7732837e9e57d98ddce93d11db47bed9ec661165c17352f699e47239f78308f4e828cf3e"; + sha512 = "4bc445b3d4666f695c48524ebfb5378a2c3914a2f884f6e4a3a83076906f8d8f5c7d87866f04bd5df96092cbcc6f5d204be40fe9a0417b2d9383f2fe6bb2c314"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/it/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/it/firefox-68.0.1.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha512 = "90875707e86b58e0cdd456a59c9dba08cb195f5e945bd0a716ea08ac3839b8143a086941f3a34cc928fead6a74b09f48dd25a61611d53e4cef5343eaee60fef7"; + sha512 = "b07507137aa522f57df53f005ac3c201a6e369bf6a9ec9ebe2c26a91c2d72cd9e065abbecb591e68ccbc151513da7c62aaa0fc49cf99cf2a134331e4a2fe56b5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ja/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ja/firefox-68.0.1.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha512 = "d80a2152c04ed3a41a5d8c65847d26f7fd7a0003b50625bcc741a3fae3aac5e4b6e9b8f24c718936cf3698c65dbcfc89ebd1c55b1077d64103dd6e1c0293b230"; + sha512 = "f2134162dcae6be75cdc4fd9f94bfe03f89ed6ac80c6b9894cc322f7cbd96bf478d13fea6b17ff082b1c90f8699cbddeeaeaed77e41e0996a1df28cb23cde70b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ka/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ka/firefox-68.0.1.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha512 = "fee5c2e5ab258e13042a5d582535e5eb67b05e241df7b839f50833740b05afa05fda347e0c8ff8803053799f7d09f7007c4b6e5c647d8e313d9ece535131e247"; + sha512 = "6128c485ad9bc47c3afcb404b07f3afc344957328ab63cb90874179c913e479cc2b910975442a7af01585ce85ec6604fe4cb190e853527d19f29c80d98043c3c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kab/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kab/firefox-68.0.1.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha512 = "6154ab3d0409d26bc32e503cd68147c1c72b4328c18174a95dd4ac52309ccace8e5dda1d2687867cb784bb682720deaeff17955320c6b6922f807738f25a9cbe"; + sha512 = "9ee4940d57ea364c8f01510d480c0175220a8b5946921bcba87fcc0d21a2cec673ce3e823e17c1637e332bed6c4d8829a404185e583056375009ffb34e963988"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kk/firefox-68.0.1.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha512 = "c4e628cd9d16ef12e46d8a8dfec3c904e6145c71bea86630622959573ea516a92042726e9ade567f1f6a82a56033392e79e380ff19057026b2500d0626bb390f"; + sha512 = "92255a43141ca91fad054e597acbde26e9468019a5e1b3250ed25372e27ce1a5f3843898060a11a727c3ce38c4e233cf5b10fe0cd658d2d64b17638f207e5224"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/km/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/km/firefox-68.0.1.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha512 = "6323eb37dcc8020287a712364d2a1233aec8556b14ce70d431892889c323100b2cfb45a9e92ed1090cabcb16a2612a6f00e4758eb9c182f20260485ed16be1fd"; + sha512 = "cf9f5eeed7fbb332c18374d070eee9a143643e4e34b6a924cd0c18a6589f68781330d0066f20f495be92cd96889b2770d5b737e8c96be4f0c45fc2b8949ff025"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/kn/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/kn/firefox-68.0.1.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha512 = "fa2ae302dbc24b87b832a0bc56b36dd172d4506e50a1034b579ae7091d88cda81735db2514c52a42311bcd4497c2545dbd173c7b8eee09885675e836ee9eabcf"; + sha512 = "3091d42eb7820b9b258c0f735ff8d9b00d2c850651916cb209dd28830e2d664b85f56673feece131f7a3531b0f2a808b7f8ddfb1f23fa35c52b98f29cf0ba18c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ko/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ko/firefox-68.0.1.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha512 = "46356f06c988d22c6d61b0992d827669838bb4019b450f219cc5a5124589ddefc072d97c1fab33927408a02649c579377b9f1a1c23a5b5ff1bd9abb3df663130"; + sha512 = "847e70bb62ba1d12a424fd0e33aa2605c090bea64bf3c4b653661a863f9988c2860eeda9dbea021b1cf67f0808554872d7b74bd73abef39dc104f436fdc1b57c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lij/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lij/firefox-68.0.1.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha512 = "174427a5da567195811f2d12f60e0b2ab063980a452a60960b591a36e8094d0a495e0dce10b068a0db0793fc6a6327e957caaa27f3bd86293658ce2df1bdf89f"; + sha512 = "f084db30d883189604087432ae8e8bb4958ef44f50e26bf1df5a72b7a2b6b2107bdee3a28f305b619f6fed9f0d800b259e92b8b9554c96e0e9d68426c6dbb97b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lt/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lt/firefox-68.0.1.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha512 = "39ce98ee07778e7a5275b22a2f68e81bb0363fcebb0371dbfab8b1dfc7aa8f7a755b5e49ef1f3c29b16999a5a3a9403bf1d35309969ea2ff539cfa40608c54f9"; + sha512 = "45aa058345f691fec5efdc309842dd13271e717b87fad43b74f1c7d15e64b991eec667536a333965f5eaa8a3842722dc2b27b1ac29ff59b7da5ba278be2afd3b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/lv/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/lv/firefox-68.0.1.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha512 = "d631400d24bd3790ce62e2e9ec5c3e2716fb5849d014d1d57122d5ead7cc9857ba46ab6450bb72bc05b94dc4d6022b693e82713dfd4ab934668c769452e0c1b6"; + sha512 = "07ac2c7c0829d952c9327bc2f9ec354920a5a2b738df6ad639d51c454567498b4ce6daf320046a62a03da082d8880ba455d3de8222003b00142c2f4cfb0ee1f6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/mk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/mk/firefox-68.0.1.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha512 = "eaa6ef0130cb39bc626523ccf6b884554c2abb31e1a506b779bad7b9be3442c95bd6eec0762bfc99f8dede2596173daf907deef7612c6ac86e8d3b26a355913d"; + sha512 = "685369c075265a35f7338f50a87c7e00059fdd5c1ab3dbfdf23753fd30c5bcd3a0eafd546876a5c06aa15731673cf6e8b03d629148ba3894595da7a2215aaac6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/mr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/mr/firefox-68.0.1.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha512 = "48c05b3ce08858113f3c2874029d78041930ba79ead74a6d2b6d836f057763be624f66264210a091a60b92a653b4dce22a5210fd1a7469078612940474a66388"; + sha512 = "3e169297be6530b3a1f0733a22680df25688eacea37377dd763779cfe6ecf9695e904e471821ea3cd6558bddb33a2ca9f6c769a0d7c59467144979a431316b1f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ms/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ms/firefox-68.0.1.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha512 = "ada772d59677f4c7608617253c34d89df25638816e38533c06dc157b378671fd23b1ad6f1176212748c5330c25753755665c1174164a284b028ca7f078ab9aaf"; + sha512 = "5c32f67a5d9e88c4025d51e80cec6d21be37f4120bab2b2adf69fb82dd44fb0368e2b4ec8e66f8fa13570d35d133b74710f9aa37104459f2a15446261f026149"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/my/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/my/firefox-68.0.1.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha512 = "2f3a3f5d2a8f505106efafad5caf33613ce1929a80c02a0b0138ca6a39c8db0012d7c27b0ee00d1a39d7c7291f52f351feceddc1885a87bd715ac35892fc3d63"; + sha512 = "9829f5e90f7ced1b83052a2741a6776da2f6ad7613ff174b1b92e123962df6ddad76abc1ca51feb9b9324c68baa6100e8306858d515558f2f27a144cddd64647"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nb-NO/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nb-NO/firefox-68.0.1.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha512 = "6c080669b4903e7429252d16a662915ba420e28d8b290686fae7d6194a5077a78ed358488241c92d3dd9f26ba343c8ff9b79b116a92c7af99dcdcb4fdafa46dd"; + sha512 = "5431508873ac32627d8ba28fb5d5863f0b6eaadee0e02c07397c1effc388ea82a568f1d1f91f78230ebdcaa88cfce0a62f890e922c1b2f56889d6cbff95dc983"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ne-NP/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ne-NP/firefox-68.0.1.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha512 = "0d5f08a0c2ddd132fda00c742099323441caedced36994d0521869175af2a0c43c1465623be2299de508407061521dd41eabddb180194d4183ab270cd430f781"; + sha512 = "a5a65a0ee02a83833ad4b8759aa7221ae9af6e12c246a9dde975c19346b5182aa8445f304a0507b89bba6891cdafdd3dfef0b80adb859de95427846c42921d9d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nl/firefox-68.0.1.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha512 = "a15d64d1c9d9d4a59fba4cb67e6425cd68ad0b7050b67001909262e9765af0501b3d8a270c321e9b5496bce14a84d77be6fc11e65fd28a54807f707051ee2458"; + sha512 = "d5ba84a3d0a8423e0568060cc6c11bd1490d4701a53f25c8635ec59824208595584f7c61451e0c16ab669c324f2be9c80005cf80c05a394c85b90fa636ae90be"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/nn-NO/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/nn-NO/firefox-68.0.1.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha512 = "50cfed4352dcc571193fbf832be4ae20486d6f11ca5ef06f46fc24bacea30a431ce99aaff2ecf5f0efcf475cf855be45292080f70664249aa5065b467101a0ce"; + sha512 = "36a7f33a78edd79979c0033ba3c63ab3f680bad2aed051968e9f790776c02c5c2f050402e7ad292cf31fbbb2c73ac81f2c646244ce829cd3e655a6c2ca772bd4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/oc/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/oc/firefox-68.0.1.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha512 = "8497da1c9b49ebbb09d70a8e84c76b47868ebaa116127db68eec97e8f336b8aecbd2fd39d7da51f12b166afd9e477d59ce620baf8dc3ae8ae97a2fbf07d627e4"; + sha512 = "8f27e10e5424cceb71ed9e5388289b8bd37ea9003b2003d1d98c140335f80e156f4fceb812565092b98e47071ca4dcabd7afc21f03c7797ef59ea107e66b5e88"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pa-IN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pa-IN/firefox-68.0.1.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha512 = "e02bab0b8f649f6c1324061fa6efd4f1670f99f9bfa552b344fb3e43ec0cafca4807212f8727ebb2d90d57eefe2b6c18313c8272fe777fa92d9828ebe22dfaf7"; + sha512 = "b01ad4efe6ba519435d11fab4696264d9a92ee8dbc86e2019573e475823cc0fed276fc26de77611deab9197e31d278187c49457a63d122e8e5f8b3a82aa2c128"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pl/firefox-68.0.1.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha512 = "b88cedc985dce847d9d8504dfd3b726667b9c3596349c4e65e0effd2af3185296f0eeabf412dffa6b523cb63583815c9361979722493884cc4762f81ae3b6507"; + sha512 = "c6dd411c9bd1e8ce0db99e619955e3b036aedc084f9065d71c35daefb66f5745905eadf09bf291975b96ea1ab23aac77f56e26ddc73ff4b608dd3a56f345834b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pt-BR/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pt-BR/firefox-68.0.1.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha512 = "b82f0f7f3eb071272cce5452e3ad5ea9718fee76c9881e40bedb7862b7dde7bd7b0a07442891feee15d0637ce0023d9ffd98d30950eb2c4157aca1095d44cac0"; + sha512 = "81c9a23041e71610efbdd05a37f4a4112715e002b146366640cee437b2da77c776ec98f030c81c58a7fc87b386f1aff9dbae2890fb99d0663bd61375c6aa7e08"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/pt-PT/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/pt-PT/firefox-68.0.1.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha512 = "afe28d592dc295acd7140eda084ea6040aa5fc64b548f04bba547c4118d53b243c28e25a7a2e87a5750e500eb31c0b67a9c7881e796dde1451948154b72deddd"; + sha512 = "2d4d770531e166a597fa27c8e95a4586e580a2c872b31aa9a1d7a0ac98fb2571ce368711258d552abdd3205f4beaedfdc0404b8261a047a737f4991abe01ecab"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/rm/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/rm/firefox-68.0.1.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha512 = "6ba0a99e82345ea09ceead864bf4ce077ef82e6a7c243cab0b6ddf037a1c299ed54198cbe069a8f9f7feb14ec32bd5f3b60dd0c20797b6703493f6ec84e51169"; + sha512 = "2bccb963953f99a92e266a5996819db8cf439244fb3e328ca19d7282a3b9839fb44f3da6c6ac78dbd75c91766b7c7bcd1af8dd61b0562a9ab3a390d0789c930f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ro/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ro/firefox-68.0.1.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha512 = "27d4f1cfed08d8c51cb76759324af81ef4071352a956e6f4da1fd03e623ebb7f5319b85e27df27f9067b5f86b062d95e381b70c22f00aded622a9371cdbbb5e1"; + sha512 = "8f4f79bbdc55ab8490df7158540ddf79bd75099eea285815f267f72426e8ecc5d8818b9a5617995fb44e3da88d79889f0b2fbd2065a38ab2e04c4d462a5818f8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ru/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ru/firefox-68.0.1.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha512 = "baef019f8f4450f02571c5dbd42268be8fe17879ea23ae1f9053093e6aa6ba92ae0323e2e24a0061ab41904185fe0afc809d1a3a8c0291b593f2c4065fe3af99"; + sha512 = "8b4d2f096c0833e91e9392a874de9cc1adcf90651c49f95792a4b63219b380fb419a8ff5a2a90bfab4da8ccfb212622f295646d0abcf1a3317780fd4b5fd97b9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/si/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/si/firefox-68.0.1.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha512 = "8c10604eea95adbcf8aa7e7a76ca0facda741596ea31f3ea9ddbffef6f9e99eee14e5afac25fe2da3df102b3a7a6932661378b90d321a1ccca0ceafed64bd394"; + sha512 = "ff91edbe087b3302692f2cdc22f1f6961560dd752980c6a2d1859a99489e6a6a8bcd872776a795974d4ef7afb5b21acb4d77c9461b34cb949809ff64d3a3744f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sk/firefox-68.0.1.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha512 = "973199eb4a590a56eb797e8ecefaa4e435c4a8d7896024e6a1eca1f1d3c2f73924a2724d0cfa74a31a6c50f4afb4c45f61d6f403067243948fd06540ba869aeb"; + sha512 = "94334d2ed2819339b725573284b8ffb5b8a8b7cc210e8ff341d0b54172a72053ea7b501189a2d928c79b62f185a00ac02e8bac4e8f90d44f4088b81cd64999e1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sl/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sl/firefox-68.0.1.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha512 = "36bbb0113f68a4d040a95c60b5ab796c8562db641c03eccf3edf1272f94a4c1f1850b8588c4c01bd1b5d94d5137ff97441d95037e0b68ed6b776ada171c4ceb5"; + sha512 = "bffdbadea3d80d51ef2f35cebc245d7649970cdded7a98ba6ad8c6d293cd076445c802c376ee5ca76235416e8dac3793888e3e93f83e88598fe7752dbddb9a46"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/son/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/son/firefox-68.0.1.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha512 = "4e243138ad6991b464e0ad9c5cb93788e0a6d30c840d1e31c60517c05d50ceec57075eaa9dd63d789b0030118cc17d98a8ac6014a9b4b0e6fb0a9cf27dbdcd32"; + sha512 = "c38f4605af7ae181514d060cf72060c461d5e78c6f63f0e7c2dfc4a42b8fa929b239e189a33d632ffb1517bd6c73e19bca0fdd96c06456969fd9cff2ee22a23b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sq/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sq/firefox-68.0.1.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha512 = "3549297c0e4fc4e09250f6f7dd5bec54bbfabea8acfd70fedfecf376f3cffa61c11ab83d68307c4db7c34ba0e5bcef48f88f092312a1e5ab85dde37cbcedfce4"; + sha512 = "6aa2a1a2d2cfcbf2c603e825a5331c831aa49a5a1149dfa4112747d0003ef8025ccc5c0ff35c3893f810749edee45cfd9831e0a11020b1d96e4585e4c014625e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sr/firefox-68.0.1.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha512 = "939fb1a0d54053ac1d53c9ad41057e100aec9379bc4960c8788f9f0f0c92ddff2583631d9c64834b708cfc96d2e0e0944b6718e1c366fda4bb20802608b0d9b8"; + sha512 = "c9dcdd960e035e937fda42ea96bfb854d293969dd0a0c46ea1585436c4fd5762e3f8a4154027b4919dc582a6eff4412d69d5ef8b27201ad54c6fd07fd502106e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/sv-SE/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/sv-SE/firefox-68.0.1.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha512 = "bdeec5c396c7b00f4d7a4a8d12a002f4ea1c8fdec382874c2424bd5ecd8ffdfb21ea8ef08224c870902b1678111c015f823ebf41588f68c02e0ac96e324077f1"; + sha512 = "97ba9fdad986567f6bf4ca3866bd474390a09114413515bc4df848ca832d9e620e7a0e47210fed1503b7e4103b77ec5ed25e0a605557df74515dca0b511956f5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ta/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ta/firefox-68.0.1.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha512 = "35ebd3fce76f647b3f1a51bd39e8da5b1103acc8e6e26b65dabaea3d7b25107257d516a5236363c7c500c22d22c11d00dc3026fc3e569d136a56265572e6f50e"; + sha512 = "aec52cc2af72f3b34639435fedde839dfe5da8dfee521e7e987b10587bfd257cc44b848e79df8fda26d35848d47cd56c4732edbd02be8a3be0fda28e9da92237"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/te/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/te/firefox-68.0.1.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha512 = "dcf273cc1bbd7df8cac3c714b07cbb70153485674a7421820a1ee4dfcae5d68f47ed12712088e65b46c1b907dfe69bc4ab1fc67bfeaba7b672eb7b3fccfe22e9"; + sha512 = "bce11fc72ea11b2f5a95f2edb273dfb0829ad49063274427c6b3f1380c6a8cd1c26fbaab0caec241dceaaac96c421cb353a6bb15c28e4943b238ff793ceee39b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/th/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/th/firefox-68.0.1.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha512 = "a26bf5ed87b9eb40c9539eae142a03a33deb3813e57ad3a8b4828e78a563fcab2630abbbef8c866a499540d44756cd4f5434da854ae04bcd2cfe0df85cd59351"; + sha512 = "8d97c763b0689e315d866fc27642589cd10bc94dc2281a7eacf60b2509a01e9b0312178f4b387dd1dceccaff9235e41308c10f536efb189039c3374829c2894e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/tr/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/tr/firefox-68.0.1.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha512 = "b8e0cf35ac9f53895a94dd1df2f71256eec331e1076558f8738dbb04744bfcd1ea672e54df19c7d0be4255d4d259362994acbec72eacc91c21ccc413b990f98c"; + sha512 = "3443bdd68555d8cb36a827ae9cc2a94e26f6718561286ce1ecf8cce9c15822c1daebdcafb90d02c241d9bdb41641397c1e4ee6175f36e764025003a10d420456"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/uk/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/uk/firefox-68.0.1.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha512 = "50f9a7225ed7130d1f612d0f2a1b7fe6eff93f59836826057ce75a3eeec3ad078e3cff524dc123f1e92ab523342cea724ddc1c09da8a86fb6847ad2dab773ec6"; + sha512 = "25af455760eb79dfbbab7d27dc6b738d9b1800f9043f429b978bd087b19f3c0a690634e7ebe07bb1bd03d9e64d2628ffdf4356c74cd0fb042569660f28fe52e3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/ur/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/ur/firefox-68.0.1.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha512 = "5cc90daaacc19954cc9086dcf5b5f747d8303238bb1514f7985c8b5cb9314fddfd425f524417a8ca5e7b50db8241986e43f1a9727b22c7978452802e76ee9716"; + sha512 = "cde44d69bc67bde135be5f7a9a364aded951ae9f1c69a8209bd09e54aff576400effe538d87473ce5cea633494b035d4d98f4dc63fd9dc6b2e33d66eee66d426"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/uz/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/uz/firefox-68.0.1.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha512 = "7d7d3a69d39451414232fa6ada7c31abe3b0807c6a95147b505b8972828ac8315f130c0893881bfd1b1efc9f8712dbbf71267109f212e171f7606d18e58c3076"; + sha512 = "2c4cfa944e937ec1eb87678eb5a022912b3c8c97a51fccdf673248fc0c06bd0bf175c95ccd26c90c9e9fa02730b0b84f07df5ec5a8be4061c15b494b967ee4cf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/vi/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/vi/firefox-68.0.1.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha512 = "fc3edf8262f75c2ea210ea43fd1c8efb067fc955ef8f0486b7be211dee50d6fdba891faaa502cefeca42e860a21d8dafecc9535e1258b7cdcece40b43c07de5e"; + sha512 = "e4039206f13126be5b4ab1fcde6f25ed60054274cba96c2c0cbd3ee37af16275f1e9db9f617b87bcdb5dd81f90b171a444eac194f170b15cad9a9c5d28310cfe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/xh/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/xh/firefox-68.0.1.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha512 = "27655e8458d67130500dfd2e1d1700972ed03d2bb47c698aa42460e4315c99f93d2ba833365c1c78ec5b8735e2162a90e74f0393ee0a9106ea6fdca9698e292f"; + sha512 = "7162e25df7626472d4f1878d7f8ff9e8bfdf50fe386f53faf5341449915ad62c4c48bc52e1cc34de664bae4e8fe4546610bb0c98e1678dc1f20ea21a583a5f09"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/zh-CN/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/zh-CN/firefox-68.0.1.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha512 = "061fac502f7ee5c5afa6946f704eec47756ad39d4107ed75a838d9c420603bb662963d20e18fc5d41d8a0b3d72fefb7857ebc87bb6cb5e3fb7b79af521fde789"; + sha512 = "c2d4c2bf53bed935c38b23e1f31b7b462e676c172682aa7d0c896146b11a050c880af2358dac23b08a3d2faf00750fff928d6174620ac3fda2e77d7e04af71bb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0/linux-i686/zh-TW/firefox-68.0.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/68.0.1/linux-i686/zh-TW/firefox-68.0.1.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha512 = "3f098a44a58a42b6ad7132fffe32454459e3261815c696278bc204db145c83948b08e254352744bbbaefed665ca3a148152093c81f1324e5b7d34223b9c6aeb4"; + sha512 = "c1d916c1e728596046bd9344798d582ce05592e9ea20ba11094181f89084b029b6c237c93d5d65048be624a3bc7f4913005af74663b75a72817c9d7224b52be9"; } ]; } From 9c7aa99db2b88841b4927f7f9f281381178dc85f Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 24 Jul 2019 16:18:08 +0900 Subject: [PATCH 0978/1611] firefox: 68.0 -> 68.0.1 --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index 93b6843e5f2..b0505ddce67 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -17,10 +17,10 @@ rec { firefox = common rec { pname = "firefox"; - ffversion = "68.0"; + ffversion = "68.0.1"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; - sha512 = "0pg8ww2ldlvdlri0zrzv20x69x00gxshr4afq62pnz7rgrnppkdd0pw5snflisgvpxq1syxcrg5750wz1k4bfjwnyq47jk9h3fzddpw"; + sha512 = "20rqfa5sdaagryk00iywnbap0bmhq1c74pfbxi3pq1cs52qs5nhjqn3xm6910zwcn5nw08i9qd5jkg5blvqrjzw780nh8qbrwsm3d4n"; }; patches = [ From 71116cd9d5d563294aabcc947b49c635c6832652 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 24 Jul 2019 16:19:05 +0900 Subject: [PATCH 0979/1611] firefox-esr: 68.0esr -> 68.0.1esr --- pkgs/applications/networking/browsers/firefox/packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/packages.nix b/pkgs/applications/networking/browsers/firefox/packages.nix index b0505ddce67..f56154c2764 100644 --- a/pkgs/applications/networking/browsers/firefox/packages.nix +++ b/pkgs/applications/networking/browsers/firefox/packages.nix @@ -99,10 +99,10 @@ rec { firefox-esr-68 = common rec { pname = "firefox-esr"; - ffversion = "68.0esr"; + ffversion = "68.0.1esr"; src = fetchurl { url = "mirror://mozilla/firefox/releases/${ffversion}/source/firefox-${ffversion}.source.tar.xz"; - sha512 = "29iqxxwkz2zgk2ppgq05w0bhs8c0938gina5s8brmwn6zn15nv379pa82a9djpzjryl6c5ff0hk0z7gx6n3xvf7w7ky9010h9il0kbg"; + sha512 = "27ncapq18rdlrf0kp5r09spcqazi0g8nbzbfxijs9pi3cvlkayagi3fbbzzq5jkn0n3j580vadc6v1v3zibvdwb5s3c6bz559a7nra2"; }; patches = [ From a4520359e359c196c4250ccdecc9a0555713e9ab Mon Sep 17 00:00:00 2001 From: Steven Shaw Date: Tue, 23 Jul 2019 18:07:56 +1000 Subject: [PATCH 0980/1611] linkchecker: 9.3.1 -> 9.4.0 Version 9.3.1 was crashing. --- .../linkchecker/add-no-robots-flag.patch | 60 --------------- pkgs/tools/networking/linkchecker/default.nix | 77 ++++++++----------- 2 files changed, 31 insertions(+), 106 deletions(-) delete mode 100644 pkgs/tools/networking/linkchecker/add-no-robots-flag.patch diff --git a/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch b/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch deleted file mode 100644 index 270ef2c02e1..00000000000 --- a/pkgs/tools/networking/linkchecker/add-no-robots-flag.patch +++ /dev/null @@ -1,60 +0,0 @@ -diff --git a/linkcheck/checker/httpurl.py b/linkcheck/checker/httpurl.py -index 6f207b6..161619c 100644 ---- a/linkcheck/checker/httpurl.py -+++ b/linkcheck/checker/httpurl.py -@@ -75,7 +75,7 @@ def allows_robots (self, url): - @return: True if access is granted, otherwise False - @rtype: bool - """ -- return self.aggregate.robots_txt.allows_url(self) -+ return not self.aggregate.config['robotstxt'] or self.aggregate.robots_txt.allows_url(self) - - def content_allows_robots (self): - """ -diff --git a/linkcheck/configuration/__init__.py b/linkcheck/configuration/__init__.py -index fc2c148..234fa05 100644 ---- a/linkcheck/configuration/__init__.py -+++ b/linkcheck/configuration/__init__.py -@@ -163,6 +163,7 @@ def __init__ (self): - ## checking options - self["allowedschemes"] = [] - self['cookiefile'] = None -+ self['robotstxt'] = True - self["debugmemory"] = False - self["localwebroot"] = None - self["maxfilesizeparse"] = 1*1024*1024 -diff --git a/linkcheck/configuration/confparse.py b/linkcheck/configuration/confparse.py -index 67751ed..845fa95 100644 ---- a/linkcheck/configuration/confparse.py -+++ b/linkcheck/configuration/confparse.py -@@ -149,6 +149,7 @@ def read_checking_config (self): - self.get(section, 'allowedschemes').split(',')] - self.read_boolean_option(section, "debugmemory") - self.read_string_option(section, "cookiefile") -+ self.read_boolean_option(section, "robotstxt") - self.read_string_option(section, "localwebroot") - try: - self.read_boolean_option(section, "sslverify") -diff --git a/linkchecker b/linkchecker -index 199532c..9e91fa5 100755 ---- a/linkchecker -+++ b/linkchecker -@@ -321,6 +321,9 @@ group.add_argument("--cookiefile", dest="cookiefile", metavar="FILENAME", - help=_( - """Read a file with initial cookie data. The cookie data format is - explained below.""")) -+# const because store_false doesn't detect absent flags -+group.add_argument("--no-robots", action="store_const", const=False, -+ dest="norobotstxt", help=_("Disable robots.txt checks")) - group.add_argument("--check-extern", action="store_true", - dest="checkextern", help=_("""Check external URLs.""")) - group.add_argument("--ignore-url", action="append", metavar="REGEX", -@@ -431,6 +434,8 @@ if options.externstrict: - if options.extern: - pats = [linkcheck.get_link_pat(arg) for arg in options.extern] - config["externlinks"].extend(pats) -+if options.norobotstxt is not None: -+ config['robotstxt'] = options.norobotstxt - if options.checkextern: - config["checkextern"] = True - elif not config["checkextern"]: diff --git a/pkgs/tools/networking/linkchecker/default.nix b/pkgs/tools/networking/linkchecker/default.nix index acc6893d0cd..3c361fe48ba 100644 --- a/pkgs/tools/networking/linkchecker/default.nix +++ b/pkgs/tools/networking/linkchecker/default.nix @@ -1,64 +1,49 @@ -{ stdenv, lib, fetchFromGitHub, fetchpatch, python2, gettext }: -let - # pin requests version until next release. - # see: https://github.com/linkcheck/linkchecker/issues/76 - python2Packages = (python2.override { - packageOverrides = self: super: { - requests = super.requests.overridePythonAttrs(oldAttrs: rec { - version = "2.14.2"; - src = oldAttrs.src.override { - inherit version; - sha256 = "0lyi82a0ijs1m7k9w1mqwbmq1qjsac35fazx7xqyh8ws76xanx52"; - }; - }); - }; - }).pkgs; -in +{ stdenv, lib, fetchFromGitHub, python2Packages, gettext }: + python2Packages.buildPythonApplication rec { - pname = "LinkChecker"; - version = "9.3.1"; + pname = "linkchecker"; + version = "9.4.0"; - nativeBuildInputs = [ gettext ]; - pythonPath = (with python2Packages; [ - requests - ]) ++ [ gettext ]; - - checkInputs = with python2Packages; [ pytest ]; - - # the original repository is abandoned, development is now happening here: src = fetchFromGitHub { - owner = "linkcheck"; - repo = "linkchecker"; + owner = pname; + repo = pname; rev = "v${version}"; - sha256 = "080mv4iwvlsfnm7l9basd6i8p4q8990mdhkwick9s6javrbf1r1d"; + sha256 = "1vbwl2vb8dyzki27z3sl5yf9dhdd2cpkg10vbgaz868dhpqlshgs"; }; - # 1. upstream refuses to support ignoring robots.txt - # 2. fix build: https://github.com/linkcheck/linkchecker/issues/10 - patches = - let - fix-setup-py = fetchpatch { - name = "fix-setup-py.patch"; - url = https://github.com/linkcheck/linkchecker/commit/e62e630.patch; - sha256 = "046q1whg715w2yv33xx6rkj7fspvvz60cl978ax92lnf8j101czx"; - }; - in [ - ./add-no-robots-flag.patch - fix-setup-py - ]; + nativeBuildInputs = [ gettext ]; - postInstall = '' - rm $out/bin/linkchecker-gui + propagatedBuildInputs = with python2Packages; [ + ConfigArgParse + argcomplete + dnspython + pyxdg + requests + ]; + + checkInputs = with python2Packages; [ + parameterized + pytest + ]; + + postPatch = '' + sed -i 's/^requests.*$/requests>=2.2/' requirements.txt + sed -i "s/'request.*'/'requests >= 2.2'/" setup.py + sed -i 's~/usr/lib/python2.7/argparse.py~~g' po/Makefile ''; checkPhase = '' + runHook preCheck + # the mime test fails for me... rm tests/test_mimeutil.py ${lib.optionalString stdenv.isDarwin '' - # network tests fails on darwin - rm tests/test_network.py + # network tests fails on darwin + rm tests/test_network.py ''} make test PYTESTOPTS="--tb=short" TESTS="tests/test_*.py tests/logger/test_*.py" + + runHook postCheck ''; meta = { From 4921d7d048a0d48b1249fcb3bd74f4425c82fef7 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:53:18 +0200 Subject: [PATCH 0981/1611] humanfriendly: add top level attribute --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f642f9e1832..74b7e0afb2b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3711,6 +3711,8 @@ in hubicfuse = callPackage ../tools/filesystems/hubicfuse { }; + humanfriendly = with python3Packages; toPythonApplication humanfriendly; + hwinfo = callPackage ../tools/system/hwinfo { }; hybridreverb2 = callPackage ../applications/audio/hybridreverb2 { }; From 8238ddfbf820323e63d7cc67273207c23a518eec Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:55:47 +0200 Subject: [PATCH 0982/1611] pythonPackages.verboselogs: init at 1.7 --- .../python-modules/verboselogs/default.nix | 26 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/python-modules/verboselogs/default.nix diff --git a/pkgs/development/python-modules/verboselogs/default.nix b/pkgs/development/python-modules/verboselogs/default.nix new file mode 100644 index 00000000000..f4c78858913 --- /dev/null +++ b/pkgs/development/python-modules/verboselogs/default.nix @@ -0,0 +1,26 @@ +{ lib, buildPythonPackage, fetchFromGitHub, pytest, mock }: + +buildPythonPackage rec { + pname = "verboselogs"; + version = "1.7"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-verboselogs"; + rev = version; + sha256 = "10jzm8pkl49as4y2zyiidmfqqj5zmqg3p73jvx4lfxi0gmp1vhl5"; + }; + + # do not run pylint plugin test, as astroid is a old unsupported version + checkPhase = '' + PATH=$PATH:$out/bin pytest . -k "not test_pylint_plugin" + ''; + checkInputs = [ pytest mock ]; + + meta = with lib; { + description = "Verbose logging for Python's logging module"; + homepage = https://github.com/xolox/python-verboselogs; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 43d76a7fa4e..b162718aafd 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4819,6 +4819,8 @@ in { user-agents = callPackage ../development/python-modules/user-agents { }; + verboselogs = callPackage ../development/python-modules/verboselogs { }; + vega_datasets = callPackage ../development/python-modules/vega_datasets { }; virtkey = callPackage ../development/python-modules/virtkey { From b0b81b0c1821276a89f44d80cb6f00091fbece8f Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:56:25 +0200 Subject: [PATCH 0983/1611] pythonPackages.update-dotdee: init at 5.0 --- .../python-modules/update-dotdee/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 3 files changed, 26 insertions(+) create mode 100644 pkgs/development/python-modules/update-dotdee/default.nix diff --git a/pkgs/development/python-modules/update-dotdee/default.nix b/pkgs/development/python-modules/update-dotdee/default.nix new file mode 100644 index 00000000000..b537ca8c264 --- /dev/null +++ b/pkgs/development/python-modules/update-dotdee/default.nix @@ -0,0 +1,22 @@ +{ lib, buildPythonPackage, fetchFromGitHub, executor, naturalsort }: + +buildPythonPackage rec { + pname = "update-dotdee"; + version = "5.0"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-update-dotdee"; + rev = version; + sha256 = "1h3m593nwzx6vwa24k0wizb7la49yhqxwn73ipclxgxxi4dfdj01"; + }; + + propagatedBuildInputs = [ executor naturalsort ]; + + meta = with lib; { + description = "Generic modularized configuration file manager"; + homepage = https://github.com/xolox/python-update-dotdee; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 74b7e0afb2b..9f00c228063 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5090,6 +5090,8 @@ in oppai-ng = callPackage ../tools/misc/oppai-ng { }; + update-dotdee = with python3Packages; toPythonApplication update-dotdee; + update-resolv-conf = callPackage ../tools/networking/openvpn/update-resolv-conf.nix { }; opae = callPackage ../development/libraries/opae { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b162718aafd..84e3047568d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4807,6 +4807,8 @@ in { update-copyright = callPackage ../development/python-modules/update-copyright {}; + update-dotdee = callPackage ../development/python-modules/update-dotdee { }; + uritemplate = callPackage ../development/python-modules/uritemplate { }; uproot = callPackage ../development/python-modules/uproot {}; From adfa7bd59f100b10d5d48bb401ab5aa7c51bb4a9 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:57:03 +0200 Subject: [PATCH 0984/1611] pythonPackages.property-manager: init at 2.3.1 --- .../property-manager/default.nix | 23 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/python-modules/property-manager/default.nix diff --git a/pkgs/development/python-modules/property-manager/default.nix b/pkgs/development/python-modules/property-manager/default.nix new file mode 100644 index 00000000000..30c720927e7 --- /dev/null +++ b/pkgs/development/python-modules/property-manager/default.nix @@ -0,0 +1,23 @@ +{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, verboselogs, coloredlogs, pytest, pytestcov }: + +buildPythonPackage rec { + pname = "property-manager"; + version = "2.3.1"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-property-manager"; + rev = version; + sha256 = "0s4nwipxd8c2vp4rd8mxrj8wbycniz5ki5n177d0dbrnll5amcz0"; + }; + + propagatedBuildInputs = [ coloredlogs humanfriendly verboselogs ]; + checkInputs = [ pytest pytestcov ]; + + meta = with lib; { + description = "Useful property variants for Python programming"; + homepage = https://github.com/xolox/python-property-manager; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 84e3047568d..5526d169972 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4085,6 +4085,8 @@ in { prettytable = callPackage ../development/python-modules/prettytable { }; + property-manager = callPackage ../development/python-modules/property-manager { }; + prompt_toolkit = let filename = if isPy3k then ../development/python-modules/prompt_toolkit else ../development/python-modules/prompt_toolkit/1.nix; in callPackage filename { }; From d774370939551d00bc040b8e589210d09d8b0dad Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:57:40 +0200 Subject: [PATCH 0985/1611] pythonPackages.rotate-backups: init at 6.0 --- pkgs/tools/backup/rotate-backups/default.nix | 23 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 3 files changed, 27 insertions(+) create mode 100644 pkgs/tools/backup/rotate-backups/default.nix diff --git a/pkgs/tools/backup/rotate-backups/default.nix b/pkgs/tools/backup/rotate-backups/default.nix new file mode 100644 index 00000000000..17397ce838f --- /dev/null +++ b/pkgs/tools/backup/rotate-backups/default.nix @@ -0,0 +1,23 @@ +{ lib, buildPythonPackage, fetchFromGitHub, update-dotdee, simpleeval, dateutil }: + +buildPythonPackage rec { + pname = "rotate-backups"; + version = "6.0"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-rotate-backups"; + rev = version; + sha256 = "0i59qfv1cfm0ss63ab2nrkn5wr4rxpqqmvfd7pf9c3pl9dbfq20c"; + }; + + propagatedBuildInputs = [ update-dotdee simpleeval dateutil ]; + + meta = with lib; { + description = "Simple command line interface for backup rotation"; + homepage = https://github.com/xolox/python-rotate-backups; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9f00c228063..a5e49b0fdef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13097,6 +13097,8 @@ in rocksdb_lite = rocksdb.override { enableLite = true; }; + rotate-backups = with python3Packages; toPythonApplication rotate-backups; + rote = callPackage ../development/libraries/rote { }; ronn = callPackage ../development/tools/ronn { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 5526d169972..565f72b9b7e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2665,6 +2665,8 @@ in { roman = callPackage ../development/python-modules/roman { }; + rotate-backups = callPackage ../tools/backup/rotate-backups { }; + librosa = callPackage ../development/python-modules/librosa { }; samplerate = callPackage ../development/python-modules/samplerate { }; From 531422ab4a924e08f140032176df9df42b89cb97 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:58:17 +0200 Subject: [PATCH 0986/1611] pythonPackages.naturalsort: init at 1.5.1 --- .../python-modules/naturalsort/default.nix | 20 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 22 insertions(+) create mode 100644 pkgs/development/python-modules/naturalsort/default.nix diff --git a/pkgs/development/python-modules/naturalsort/default.nix b/pkgs/development/python-modules/naturalsort/default.nix new file mode 100644 index 00000000000..f7dcbe4d827 --- /dev/null +++ b/pkgs/development/python-modules/naturalsort/default.nix @@ -0,0 +1,20 @@ +{ lib, buildPythonPackage, fetchFromGitHub }: + +buildPythonPackage rec { + pname = "naturalsort"; + version = "1.5.1"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-naturalsort"; + rev = version; + sha256 = "0w43vlddzh97hffnvxp2zkrns9qyirx5g8ijxnxkbx1c4b4gq5ih"; + }; + + meta = with lib; { + description = "Simple natural order sorting API for Python that just works"; + homepage = https://github.com/xolox/python-naturalsort; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 565f72b9b7e..4440c47cc3b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2448,6 +2448,8 @@ in { natsort = callPackage ../development/python-modules/natsort { }; + naturalsort = callPackage ../development/python-modules/naturalsort { }; + ncclient = callPackage ../development/python-modules/ncclient {}; logfury = callPackage ../development/python-modules/logfury { }; From c29a53b3cea3ed86b0b95677e8c6f1508a94f16c Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Thu, 15 Nov 2018 13:18:49 +0800 Subject: [PATCH 0987/1611] clang-tools: install clangd as well --- pkgs/development/tools/clang-tools/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/clang-tools/default.nix b/pkgs/development/tools/clang-tools/default.nix index 0fcaee57468..0abea99f64a 100644 --- a/pkgs/development/tools/clang-tools/default.nix +++ b/pkgs/development/tools/clang-tools/default.nix @@ -2,24 +2,31 @@ let clang = llvmPackages.clang-unwrapped; - version = stdenv.lib.getVersion clang; -in -stdenv.mkDerivation { - name = "clang-tools-${version}"; +in stdenv.mkDerivation { + pname = "clang-tools"; + version = stdenv.lib.getVersion clang; + dontUnpack = true; + installPhase = '' + runHook preInstall + mkdir -p $out/bin for tool in \ clang-apply-replacements \ clang-check \ clang-format \ clang-rename \ - clang-tidy + clang-tidy \ + clangd do ln -s ${clang}/bin/$tool $out/bin/$tool done + + runHook postInstall ''; + meta = clang.meta // { description = "Standalone command line tools for C++ development"; maintainers = with stdenv.lib.maintainers; [ aherrmann ]; From 0a571ae25627f50644a82943b272fd4fe1c94fbc Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Fri, 12 Jul 2019 00:41:34 +0200 Subject: [PATCH 0988/1611] citrix_workspace: add 1906 (`citrix_workspace_19_6_0`) New release available: https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html Apart from the new version the following things changed: * Updated the docs as all notes about `citrix_receiver` also apply for `citrix_workspace`. Also added a deprecation warning about the upcoming removal. * Removed the `libidn_134` override as neither `citrix_workspace_19_3_0` nor `citrix_workspace_19_6_0` require this library anymore according to `readelf -d ./result/opt/citrix-icaclient/wfica` (in contrast to `citrix_receiver_13_10_0`). * Added myself as maintainer as well. --- doc/package-specific-user-notes.xml | 51 ++++++++++++------- .../remote/citrix-workspace/default.nix | 31 ++++++----- pkgs/top-level/all-packages.nix | 4 ++ 3 files changed, 53 insertions(+), 33 deletions(-) diff --git a/doc/package-specific-user-notes.xml b/doc/package-specific-user-notes.xml index ef9198d1de2..196c760251f 100644 --- a/doc/package-specific-user-notes.xml +++ b/doc/package-specific-user-notes.xml @@ -409,11 +409,19 @@ overrides = self: super: rec {
- Citrix Receiver + Citrix Receiver & Citrix Workspace App - The Citrix - Receiver is a remote desktop viewer which provides access to + + + Please note that the citrix_receiver package has been deprecated since its + development was discontinued by upstream + and will be replaced by the citrix workspace app. + + + Citrix Receiver and + Citrix Workspace App + are a remote desktop viewers which provide access to XenDesktop installations. @@ -423,30 +431,35 @@ overrides = self: super: rec { The tarball archive needs to be downloaded manually as the license - agreements of the vendor need to be accepted first. This is available at - the - download - page at citrix.com. Then run nix-prefetch-url - file://$PWD/linuxx64-$version.tar.gz. With the archive available + agreements of the vendor for + Citrix Receiver + or Citrix Workspace + need to be accepted first. + Then run nix-prefetch-url file://$PWD/linuxx64-$version.tar.gz. + With the archive available in the store the package can be built and installed with Nix. - - Note: it's recommended to install Citrix - Receiver using nix-env -i or globally to - ensure that the .desktop files are installed properly - into $XDG_CONFIG_DIRS. Otherwise it won't be possible to - open .ica files automatically from the browser to start - a Citrix connection. - + + Caution with <command>nix-shell</command> installs + + It's recommended to install Citrix Receiver + and/or Citrix Workspace using + nix-env -i or globally to + ensure that the .desktop files are installed properly + into $XDG_CONFIG_DIRS. Otherwise it won't be possible to + open .ica files automatically from the browser to start + a Citrix connection. + +
Custom certificates - The Citrix Receiver in nixpkgs trusts - several certificates + The Citrix Receiver and Citrix Workspace App + in nixpkgs trust several certificates from the Mozilla database by default. However several companies using Citrix might require their own corporate certificate. On distros with imperative @@ -459,7 +472,7 @@ overrides = self: super: rec { { config.allowUnfree = true; }; let extraCerts = [ ./custom-cert-1.pem ./custom-cert-2.pem /* ... */ ]; in -citrix_receiver.override { +citrix_workspace.override { # the same applies for `citrix_receiver` if used. inherit extraCerts; }]]> diff --git a/pkgs/applications/networking/remote/citrix-workspace/default.nix b/pkgs/applications/networking/remote/citrix-workspace/default.nix index 13a16a6e224..2c81a6e7df1 100644 --- a/pkgs/applications/networking/remote/citrix-workspace/default.nix +++ b/pkgs/applications/networking/remote/citrix-workspace/default.nix @@ -22,22 +22,11 @@ , fontconfig , gtk_engines , alsaLib -, libidn , zlib -, version ? "19.3.0" +, version ? "19.6.0" }: let - # In 56e1bdc7f9c (libidn: 1.34 -> 1.35), libidn.so.11 became libidn.so.12. - # Citrix looks for the former so we build version 1.34 to please the binary - libidn_134 = libidn.overrideDerivation (_: rec { - name = "libidn-1.34"; - src = fetchurl { - url = "mirror://gnu/libidn/${name}.tar.gz"; - sha256 = "0g3fzypp0xjcgr90c5cyj57apx1cmy0c6y9lvw2qdcigbyby469p"; - }; - }); - versionInfo = let supportedVersions = { "19.3.0" = { @@ -48,13 +37,27 @@ let x86hash = "1hxgj5lk5ghbpssbqjd404qr84gls967vwrh8ww5hg3pn86kyf8w"; x64suffix = "5"; x86suffix = "5"; + homepage = https://www.citrix.com/downloads/workspace-app/legacy-workspace-app-for-linux/workspace-app-for-linux-1903.html; + }; + + "19.6.0" = { + major = "19"; + minor = "6"; + patch = "0"; + x64hash = "0szqlfmigzgf0309i6ikxkizxaf4ri7qmhys75m0zi3bpwx6hzhs"; + x86hash = "16v3kgavrh62z6vxcbw6mn7h0bfishpl7m92k7g1p2882r1f8vaf"; + x64suffix = "60"; + x86suffix = "60"; homepage = https://www.citrix.com/downloads/workspace-app/linux/workspace-app-for-linux-latest.html; }; }; # Copied this file largely from the citrix-receiver package # Leaving this here even though there are no deprecations yet - # for ease of future maintenance + # for ease of future maintenance. + # + # The lifespans of Citrix products can be found here: + # https://www.citrix.com/support/product-lifecycle/milestones/receiver.html deprecatedVersions = let versions = [ ]; in @@ -117,7 +120,6 @@ let xorg.libXinerama xorg.libXfixes libpng12 - libidn_134 zlib gtk_engines freetype @@ -208,6 +210,7 @@ let inherit homepage; description = "Citrix Workspace"; platforms = platforms.linux; + maintainers = with maintainers; [ ma27 ]; }; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 79388cefe84..9ff5f2daf70 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2149,11 +2149,15 @@ in }; citrix_workspace_unwrapped = callPackage ../applications/networking/remote/citrix-workspace { }; + citrix_workspace_unwrapped_19_6_0 = citrix_workspace_unwrapped.override { version = "19.6.0"; }; citrix_workspace_unwrapped_19_3_0 = citrix_workspace_unwrapped.override { version = "19.3.0"; }; citrix_workspace = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { citrix_workspace = citrix_workspace_unwrapped; }; + citrix_workspace_19_6_0 = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { + citrix_workspace = citrix_workspace_unwrapped_19_6_0; + }; citrix_workspace_19_3_0 = callPackage ../applications/networking/remote/citrix-workspace/wrapper.nix { citrix_workspace = citrix_workspace_unwrapped_19_3_0; }; From 320f50a621d648d5060b6a6903c21a5d38269100 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Wed, 10 Jul 2019 20:11:20 +0900 Subject: [PATCH 0989/1611] maintainers: add Jared Tobin --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 3b3104fc441..5e9c4c5c116 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2601,6 +2601,11 @@ github = "jraygauthier"; name = "Raymond Gauthier"; }; + jtobin = { + email = "jared@jtobin.io"; + github = "jtobin"; + name = "Jared Tobin"; + }; jtojnar = { email = "jtojnar@gmail.com"; github = "jtojnar"; From 9e3253bb72f5e0942bb7c733ea45741f006aa824 Mon Sep 17 00:00:00 2001 From: Jared Tobin Date: Wed, 10 Jul 2019 20:19:31 +0900 Subject: [PATCH 0990/1611] kjv: init at unstable-2018-12-25 --- pkgs/applications/misc/kjv/default.nix | 43 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 45 insertions(+) create mode 100644 pkgs/applications/misc/kjv/default.nix diff --git a/pkgs/applications/misc/kjv/default.nix b/pkgs/applications/misc/kjv/default.nix new file mode 100644 index 00000000000..79f0b8dc6df --- /dev/null +++ b/pkgs/applications/misc/kjv/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchFromGitHub, fetchpatch }: + +let + +patch-base = https://github.com/LukeSmithxyz/kjv/commit/; + +add-apocrypha = fetchpatch { + url = patch-base + "b92b7622285d10464f9274f11e740bef90705bbc.patch"; + sha256 = "0n4sj8p9m10fcair4msc129jxkkx5whqzhjbr5k4lfgp6nb1zk8k"; +}; + +add-install-target = fetchpatch { + url = patch-base + "f4ad73539eb73f1890f4b791d8d38dd95900a4a4.patch"; + sha256 = "1yzj72i5fkzn2i4wl09q6jx7nwn2h4jwm49fc23nxfwchzar9m1q"; +}; + +in + +stdenv.mkDerivation rec { + pname = "kjv"; + version = "unstable-2018-12-25"; + + src = fetchFromGitHub { + owner = "bontibon"; + repo = pname; + rev = "fda81a610e4be0e7c5cf242de655868762dda1d4"; + sha256 = "1favfcjvd3pzz1ywwv3pbbxdg7v37s8vplgsz8ag016xqf5ykqqf"; + }; + + patches = [ add-apocrypha add-install-target ]; + + makeFlags = [ + "PREFIX=${placeholder ''out''}" + ]; + + meta = with stdenv.lib; { + description = "The Bible, King James Version"; + homepage = "https://github.com/bontibon/kjv"; + license = licenses.publicDomain; + maintainers = [ maintainers.jtobin ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf9c11c5615..e380e1d9c7f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -858,6 +858,8 @@ in inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; }; + kjv = callPackage ../applications/misc/kjv { }; + luigi = callPackage ../applications/networking/cluster/luigi { }; m-cli = callPackage ../os-specific/darwin/m-cli { }; From 38033ecf44a203892b22a6e82a4a665973bf739c Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 24 Jul 2019 14:09:59 +0200 Subject: [PATCH 0991/1611] dabtools: init at 20180405 --- pkgs/applications/radio/dabtools/default.nix | 27 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/applications/radio/dabtools/default.nix diff --git a/pkgs/applications/radio/dabtools/default.nix b/pkgs/applications/radio/dabtools/default.nix new file mode 100644 index 00000000000..c9dbc59323e --- /dev/null +++ b/pkgs/applications/radio/dabtools/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig +, libusb1, rtl-sdr, fftw +} : + +stdenv.mkDerivation rec { + pname = "dabtools"; + version = "20180405"; + + src = fetchFromGitHub { + owner = "Opendigitalradio"; + repo = "dabtools"; + rev = "8b0b2258b02020d314efd4d0d33a56c8097de0d1"; + sha256 = "18nkdybgg2w6zh56g6xwmg49sifalvraz4rynw8w5d8cqi3dm9sm"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ rtl-sdr fftw libusb1 ]; + + meta = with stdenv.lib; { + description = "Commandline tools for DAB and DAB+ digital radio broadcasts"; + homepage = "https://github.com/Opendigitalradio/dabtools"; + license = licenses.gpl3Plus; + platforms = platforms.linux; + maintainers = [ maintainers.markuskowa ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf9c11c5615..dce022e46d2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1377,6 +1377,8 @@ in cucumber = callPackage ../development/tools/cucumber {}; + dabtools = callPackage ../applications/radio/dabtools { }; + daemontools = callPackage ../tools/admin/daemontools { }; dale = callPackage ../development/compilers/dale { }; From eb060aace769d3344b44ce9a20f347bd41132fd2 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Wed, 24 Jul 2019 21:00:48 +0800 Subject: [PATCH 0992/1611] go-ethereum: 1.9.0 -> 1.9.1 --- pkgs/applications/altcoins/go-ethereum.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/altcoins/go-ethereum.nix b/pkgs/applications/altcoins/go-ethereum.nix index cf0261e01c4..9ef348abc50 100644 --- a/pkgs/applications/altcoins/go-ethereum.nix +++ b/pkgs/applications/altcoins/go-ethereum.nix @@ -2,7 +2,7 @@ buildGoPackage rec { pname = "go-ethereum"; - version = "1.9.0"; + version = "1.9.1"; goPackagePath = "github.com/ethereum/go-ethereum"; @@ -17,7 +17,7 @@ buildGoPackage rec { owner = "ethereum"; repo = pname; rev = "v${version}"; - sha256 = "03gkrvps1syvyjna7769n4j3mlpxcgdj461gzds2l90k02ajvh7x"; + sha256 = "05vnjdjwahdp2j7c6g81jchpdhxmdpbr20mjzpszylp9824v4cba"; }; meta = with stdenv.lib; { From a5bb4d3c222bde93094ef037f3fb480363cd5025 Mon Sep 17 00:00:00 2001 From: Markus Kowalewski Date: Wed, 24 Jul 2019 14:23:07 +0200 Subject: [PATCH 0993/1611] dablin: init at 1.11.0 --- pkgs/applications/radio/dablin/default.nix | 28 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/applications/radio/dablin/default.nix diff --git a/pkgs/applications/radio/dablin/default.nix b/pkgs/applications/radio/dablin/default.nix new file mode 100644 index 00000000000..9b475b04511 --- /dev/null +++ b/pkgs/applications/radio/dablin/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig +, mpg123, SDL2, gnome3, faad2, pcre +} : + +stdenv.mkDerivation rec { + pname = "dablin"; + version = "1.11.0"; + + src = fetchFromGitHub { + owner = "Opendigitalradio"; + repo = "dablin"; + rev = "${version}"; + sha256 = "04ir7yg7psnnb48s1qfppvvx6lak4s8f6fqdg721y2kd9129jm82"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + + buildInputs = [ faad2 mpg123 SDL2 gnome3.gtkmm pcre ]; + + meta = with stdenv.lib; { + description = "Play DAB/DAB+ from ETI-NI aligned stream"; + homepage = https://github.com/Opendigitalradio/dablin; + license = with licenses; [ gpl3 lgpl21 ]; + platforms = platforms.linux; + maintainers = [ maintainers.markuskowa ]; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf9c11c5615..3aaf13a6531 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17418,6 +17418,8 @@ in cyclone = callPackage ../applications/audio/pd-plugins/cyclone { }; + dablin = callPackage ../applications/radio/dablin { }; + darcs = haskell.lib.overrideCabal (haskell.lib.justStaticExecutables haskellPackages.darcs) (drv: { configureFlags = (stdenv.lib.remove "-flibrary" drv.configureFlags or []) ++ ["-f-library"]; }); From b93bb0664b731eefc0134608114606ab592a26a2 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Wed, 24 Jul 2019 21:36:41 +0800 Subject: [PATCH 0994/1611] uchiwa: 1.5.0 -> 1.7.0 --- pkgs/servers/monitoring/uchiwa/bower-packages.nix | 6 +++--- pkgs/servers/monitoring/uchiwa/src.nix | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/monitoring/uchiwa/bower-packages.nix b/pkgs/servers/monitoring/uchiwa/bower-packages.nix index 40789fa34f8..8585df3349c 100644 --- a/pkgs/servers/monitoring/uchiwa/bower-packages.nix +++ b/pkgs/servers/monitoring/uchiwa/bower-packages.nix @@ -1,7 +1,7 @@ # Generated by bower2nix v3.2.0 (https://github.com/rvl/bower2nix) { fetchbower, buildEnv }: buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ - (fetchbower "uchiwa-web" "1.5.0" "1.5.0" "0z7g4nb7cm5w5l8w1856sbib15sx022mqpap9d49s6ppnn53vcs1") + (fetchbower "uchiwa-web" "1.7.0" "1.7.0" "1qn09j3a1ngqn36rhz7a2dj00szr0r6fjb40lfbmq3drkzppgbm1") (fetchbower "angular" "1.6.10" "~1.6.3" "0ag8xddsgxx5yka4wjq4ala4y6z3x2g1vc3x7a1n291fzz26p7ws") (fetchbower "angular-bootstrap" "2.2.0" "~2.2.0" "11r2nlwp6xrim2y6lnrr8v064mx3bmlxchqpg1i803v9zxz3q53d") (fetchbower "angular-cookies" "1.6.10" "~1.6.3" "0bjgmz5jnw06dfxhq9sajj62fk0b3v4j9p7nb45x8bl8rzkf25pn") @@ -19,7 +19,7 @@ buildEnv { name = "bower-env"; ignoreCollisions = true; paths = [ (fetchbower "highlightjs" "9.1.0" "~9.1.0" "0ld1da3h416a5j8v3v50rrpm4xwvvq8k8y2vwncvaqm9cqddz4s3") (fetchbower "moment" "2.16.0" "~2.16.0" "1mji892i60f2aw3vhl6878acrcgh0ycn3r4af0ivnjf8az2b9n71") (fetchbower "moment-picker" "0.9.11" "~0.9.7" "0p2g6rp2kcixydrga9lfihg4bxb598rvpi8n8l59mp549diy7vsb") - (fetchbower "ua-parser-js" "0.7.19" "~0.7.12" "0s1yaspccz234hm772hlybjsi0kndzwpjx5lzy3y1s4wfk248ks4") + (fetchbower "ua-parser-js" "0.7.20" "~0.7.12" "18r0islba6cwkvx4s2gna7skhsn2vqjcf1xyap5pcmycjnq93j8s") (fetchbower "jsoneditor" "5.5.11" "~5.5.10" "1gfsf8jqnd3hb3r9s9246mg40iqxk2ix8k4bjnrsbfmg6cd3xw6x") - (fetchbower "jquery" "3.3.1" ">= 1.9.0" "1l891s3vgnpi1g8ksplid9jvrvnnv6lci8vraix4ssy50i264rkx") + (fetchbower "jquery" "3.4.1" ">= 1.9.0" "1vk25pbc55m2c82mqf26rfhxhnliq18isi4vbm4p98a1b9vp8fq7") ]; } diff --git a/pkgs/servers/monitoring/uchiwa/src.nix b/pkgs/servers/monitoring/uchiwa/src.nix index cf5376318b4..36e46ea083e 100644 --- a/pkgs/servers/monitoring/uchiwa/src.nix +++ b/pkgs/servers/monitoring/uchiwa/src.nix @@ -1,4 +1,4 @@ { - version = "1.5.0-1"; - sha256 = "05idwiv47zav46wi1hfly6rylpw8qryr12xlz47ic04ggdlga13b"; + version = "1.7.0-1"; + sha256 = "0fa3zzh6d8v1lfn828s0x65pcknycwyv0d1mndi0gvdfbfg463nf"; } From bb71bb15ce30dfc453648ac8979f938b9b3aeed7 Mon Sep 17 00:00:00 2001 From: Tobias Mayer Date: Wed, 24 Jul 2019 16:04:51 +0200 Subject: [PATCH 0995/1611] pkgsStatic: propagate all buildInputs --- pkgs/stdenv/adapters.nix | 12 ++++++++++++ pkgs/top-level/static.nix | 5 +++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/pkgs/stdenv/adapters.nix b/pkgs/stdenv/adapters.nix index 0409bf1104b..8f62bd24dda 100644 --- a/pkgs/stdenv/adapters.nix +++ b/pkgs/stdenv/adapters.nix @@ -65,6 +65,18 @@ rec { static = true; }; + + /* Modify a stdenv so that all buildInputs are implicitly propagated to + consuming derivations + */ + propagateBuildInputs = stdenv: stdenv // + { mkDerivation = args: stdenv.mkDerivation (args // { + propagatedBuildInputs = (args.propagatedBuildInputs or []) ++ (args.buildInputs or []); + buildInputs = []; + }); + }; + + /* Modify a stdenv so that the specified attributes are added to every derivation returned by its mkDerivation function. diff --git a/pkgs/top-level/static.nix b/pkgs/top-level/static.nix index 193356a61ec..108c6006fb6 100644 --- a/pkgs/top-level/static.nix +++ b/pkgs/top-level/static.nix @@ -12,7 +12,8 @@ self: super: let inherit (super.stdenvAdapters) makeStaticBinaries - makeStaticLibraries; + makeStaticLibraries + propagateBuildInputs; inherit (super.lib) foldl optional flip id composeExtensions; inherit (super) makeSetupHook; @@ -30,7 +31,7 @@ self: super: let }); }; - staticAdapters = [ makeStaticLibraries ] + staticAdapters = [ makeStaticLibraries propagateBuildInputs ] # Apple does not provide a static version of libSystem or crt0.o # So we can’t build static binaries without extensive hacks. From ee0cb1855ca8a804ac0db80c88891684f9fd8fce Mon Sep 17 00:00:00 2001 From: Lana Black Date: Wed, 24 Jul 2019 15:04:37 +0000 Subject: [PATCH 0996/1611] mongodb-compass: 1.13.1 -> 1.17.0 --- pkgs/tools/misc/mongodb-compass/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/mongodb-compass/default.nix b/pkgs/tools/misc/mongodb-compass/default.nix index f03b536c615..16762d243db 100644 --- a/pkgs/tools/misc/mongodb-compass/default.nix +++ b/pkgs/tools/misc/mongodb-compass/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, dpkg , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, glib -, gnome2, libnotify, libxcb, nspr, nss, systemd, xorg }: +, gnome2, gnome3, libnotify, libxcb, nspr, nss, systemd, xorg }: let - version = "1.13.1"; + version = "1.17.0"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -19,7 +19,7 @@ let glib gnome2.GConf gnome2.gdk_pixbuf - gnome2.gtk + gnome3.gtk gnome2.pango libnotify libxcb @@ -46,7 +46,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://downloads.mongodb.com/compass/mongodb-compass_${version}_amd64.deb"; - sha256 = "0x23jshnr0rafm5sn2vhq2y2gryg8mksahzyv5fszblgaxay234p"; + sha256 = "085xq1ik8kyza1kq9kn0pf98zk6g2qa21clxhn48rgnqk20aninv"; } else throw "MongoDB compass is not supported on ${stdenv.hostPlatform.system}"; From 96b925e63ddb86d522bdfaf510a386eb68bc5dfb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 24 Jul 2019 17:06:54 +0200 Subject: [PATCH 0997/1611] dnsperf: 2.2.0 -> 2.3.1 Mainly they add support for TCP and TLS. --- pkgs/tools/networking/dnsperf/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/dnsperf/default.nix b/pkgs/tools/networking/dnsperf/default.nix index afe00d7a354..ed46b49d8c7 100644 --- a/pkgs/tools/networking/dnsperf/default.nix +++ b/pkgs/tools/networking/dnsperf/default.nix @@ -1,22 +1,23 @@ -{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook +{ stdenv, fetchurl, fetchFromGitHub, autoreconfHook, pkgconfig , bind, zlib, openssl, libcap }: stdenv.mkDerivation rec { name = "dnsperf-${version}"; - version = "2.2.0"; + version = "2.3.1"; # The same as the initial commit of the new GitHub repo (only readme changed). src = fetchFromGitHub { owner = "DNS-OARC"; repo = "dnsperf"; rev = "v${version}"; - sha256 = "1acbpgk1d7hjs48j3w6xkmyf9xlxhqskjy50a16f9dvjwvvxp84b"; + sha256 = "0yxwm5xi9ry154ayzn2h27bnwwc202bsna8h6i4a65pn76nrn81w"; }; outputs = [ "out" "man" "doc" ]; - nativeBuildInputs = [ autoreconfHook ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ bind zlib openssl ] ++ stdenv.lib.optionals stdenv.isLinux [ libcap.lib ]; From 236d744df7a75abd65143b3f5f8adda33fee1440 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 19 Jul 2019 21:29:24 -0500 Subject: [PATCH 0998/1611] dune: 1.10.0 -> 1.11.0 --- pkgs/development/tools/ocaml/dune/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/ocaml/dune/default.nix b/pkgs/development/tools/ocaml/dune/default.nix index 268890360b6..50d2349a0ac 100644 --- a/pkgs/development/tools/ocaml/dune/default.nix +++ b/pkgs/development/tools/ocaml/dune/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { pname = "dune"; - version = "1.10.0"; + version = "1.11.0"; src = fetchurl { - url = "https://github.com/ocaml/dune/releases/download/${version}/dune-${version}.tbz"; - sha256 = "15fx9rg16g7ig43rg4sdq0wp0br5h1mjxxgv8b15s317vqlfc5pd"; + url = "https://github.com/ocaml/dune/releases/download/${version}/dune-build-info-${version}.tbz"; + sha256 = "11jl2vavypbgvwblch25q10hsd16myik9b3cd4d64zhxk1fzbzdw"; }; buildInputs = [ ocaml findlib ]; From f8825473721978de42708dfb4e3330be5654063e Mon Sep 17 00:00:00 2001 From: Rene de la Garza Date: Wed, 24 Jul 2019 11:02:03 -0500 Subject: [PATCH 0999/1611] ghidra: 9.0 -> 9.0.2 (#65177) --- pkgs/tools/security/ghidra/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/ghidra/default.nix b/pkgs/tools/security/ghidra/default.nix index 71cda94d5f8..0878e058c3e 100644 --- a/pkgs/tools/security/ghidra/default.nix +++ b/pkgs/tools/security/ghidra/default.nix @@ -6,11 +6,11 @@ in stdenv.mkDerivation { - name = "ghidra-9.0"; + name = "ghidra-9.0.2"; src = fetchurl { - url = https://ghidra-sre.org/ghidra_9.0_PUBLIC_20190228.zip; - sha256 = "3b65d29024b9decdbb1148b12fe87bcb7f3a6a56ff38475f5dc9dd1cfc7fd6b2"; + url = https://ghidra-sre.org/ghidra_9.0.2_PUBLIC_20190403.zip; + sha256 = "10ffd65c266e9f5b631c8ed96786c41ef30e2de939c3c42770573bb3548f8e9f"; }; nativeBuildInputs = [ From e415055b5e7e980b9baeb2ccdfc5c0025a046228 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 24 Jul 2019 18:05:17 +0200 Subject: [PATCH 1000/1611] feh: 3.2 -> 3.2.1 --- pkgs/applications/graphics/feh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 09dc9e7656d..3eff3360a6c 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -6,11 +6,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "feh-${version}"; - version = "3.2"; + version = "3.2.1"; src = fetchurl { url = "https://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "004vapxpl001yanqvw3cq37fmkdr527jyz0s5nybz1mnl4926660"; + sha256 = "070axq8jpibcabmjfv4fmjmpk3k349vzvh4qhsi4n62bkcwl35wg"; }; outputs = [ "out" "man" "doc" ]; From b40550232f1aec34de71b45d6562e6f73e6f6368 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 24 Jul 2019 11:26:16 -0500 Subject: [PATCH 1001/1611] pinentry: Use qt5.wrapQtApps as needed --- pkgs/tools/security/pinentry/default.nix | 22 ++++++++++++++++++---- pkgs/top-level/all-packages.nix | 8 ++++++-- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/security/pinentry/default.nix b/pkgs/tools/security/pinentry/default.nix index ba7ef7a3cfd..ac6a50960ad 100644 --- a/pkgs/tools/security/pinentry/default.nix +++ b/pkgs/tools/security/pinentry/default.nix @@ -1,9 +1,21 @@ { fetchurl, fetchpatch, stdenv, lib, pkgconfig -, libgpgerror, libassuan, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null, qt ? null +, libgpgerror, libassuan +, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null +, qt4 ? null, qt5 ? null , enableEmacs ? false }: -stdenv.mkDerivation rec { +assert qt5 != null -> qt4 == null; +assert qt4 != null -> qt5 == null; + +let + mkDerivation = + if qt5 != null + then qt5.mkDerivation + else stdenv.mkDerivation; +in + +mkDerivation rec { name = "pinentry-1.1.0"; src = fetchurl { @@ -12,7 +24,9 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt ]; + buildInputs = + [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt4 ] + ++ stdenv.lib.optional (qt5 != null) qt5.qtbase; prePatch = '' substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses @@ -34,7 +48,7 @@ stdenv.mkDerivation rec { (stdenv.lib.enableFeature enableEmacs "pinentry-emacs") (stdenv.lib.enableFeature (gtk2 != null) "pinentry-gtk2") (stdenv.lib.enableFeature (gcr != null) "pinentry-gnome3") - (stdenv.lib.enableFeature (qt != null) "pinentry-qt") + (stdenv.lib.enableFeature (qt4 != null || qt5 != null) "pinentry-qt") "--with-libassuan-prefix=${libassuan.dev}" "--with-libgpg-error-prefix=${libgpgerror.dev}" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf9c11c5615..0bf8f6f3eb5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5318,6 +5318,8 @@ in pinentry = callPackage ../tools/security/pinentry { libcap = if stdenv.isDarwin then null else libcap; gcr = null; + qt4 = null; + qt5 = null; }; pinentry_ncurses = res.pinentry.override { @@ -5333,11 +5335,13 @@ in }; pinentry_qt4 = res.pinentry.override { - qt = qt4; + gtk2 = null; + inherit qt4; }; pinentry_qt5 = res.pinentry.override { - qt = qt5.qtbase; + gtk2 = null; + inherit qt5; }; pinentry_mac = callPackage ../tools/security/pinentry/mac.nix { From 0d137e199116effde7574bf15da23e53185e2403 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Wed, 24 Jul 2019 18:31:23 +0200 Subject: [PATCH 1002/1611] highlight: 3.43 -> 3.52, use GitLab source --- pkgs/tools/text/highlight/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index 26e09dd7efa..34dacc80d92 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -1,18 +1,20 @@ -{ stdenv, fetchFromGitHub, getopt, lua, boost, pkgconfig, gcc }: +{ stdenv, fetchFromGitLab, getopt, lua, boost, pkgconfig, gcc }: with stdenv.lib; stdenv.mkDerivation rec { name = "highlight-${version}"; - version = "3.43"; + version = "3.52"; - src = fetchFromGitHub { - owner = "andre-simon"; + src = fetchFromGitLab { + owner = "saalen"; repo = "highlight"; rev = "v${version}"; - sha256 = "126nsf4cjxflg2kiv72qf1xl5fsilk0jqcncs6qqgm72cpjfmlsy"; + sha256 = "0zhn1k70ck82ks7ckzsy1yiz686ym2ps7c28wjmkgxfpyjanilrq"; }; + enableParallelBuilding = true; + nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ; buildInputs = [ getopt lua boost ]; From fa7bd53d0d002646870a18e202ac98b3ac0f598c Mon Sep 17 00:00:00 2001 From: Brad Jensen Date: Wed, 24 Jul 2019 09:21:04 -0700 Subject: [PATCH 1003/1611] Resolve symlinks before trying to recognize a lisp implementation The CCL package installs a symlink named "ccl" that points at the actual implementation executable: lx86cl64 (or lx86cl for 32 bit). When clwrapper is used with CCL as the backing implementation, this script fails to recognize the implementation. By resolving the symlink, we are able to recognize which implementation we're actually working with. --- pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh index 65fb6e615f5..3b35d7ba5a9 100755 --- a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh +++ b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh @@ -8,7 +8,12 @@ eval "$NIX_LISP_PREHOOK" NIX_LISP_COMMAND="$1" shift -[ -z "$NIX_LISP" ] && NIX_LISP="${NIX_LISP_COMMAND##*/}" +if [ -z "$NIX_LISP" ]; then + while [ -h "${NIX_LISP_COMMAND}" ]; do + NIX_LISP_COMMAND="$(readlink -n "${NIX_LISP_COMMAND}")" + done + NIX_LISP="${NIX_LISP_COMMAND##*/}" +fi export NIX_LISP NIX_LISP_LOAD_FILE NIX_LISP_EXEC_CODE NIX_LISP_COMMAND NIX_LISP_FINAL_PARAMETERS From 16e70997a8af42f62b6e00cce5776b00f93fb583 Mon Sep 17 00:00:00 2001 From: Brad Jensen Date: Wed, 24 Jul 2019 09:30:24 -0700 Subject: [PATCH 1004/1611] Use if instead of && for deciding whether to run a command The only difference between these forms is the return value when "$NIX_LISP_SKIP_CODE" is the empty string. In the original formulation, the script would return a false exit status. In the new formulation, it will return a true exit status. Its useful to be able to source cl-wrapper.sh (to get the variables it establishes), and its a bit annoying that sourcing it with NIX_LISP_SKIP_CODE=1 results in a false exit status. --- .../development/lisp-modules/clwrapper/cl-wrapper.sh | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh index 3b35d7ba5a9..9836bbe5642 100755 --- a/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh +++ b/pkgs/development/lisp-modules/clwrapper/cl-wrapper.sh @@ -121,8 +121,10 @@ nix_lisp_build_system(){ eval "$NIX_LISP_PRELAUNCH_HOOK" -[ -z "$NIX_LISP_SKIP_CODE" ] && "$NIX_LISP_COMMAND" $NIX_LISP_EARLY_OPTIONS \ - $NIX_LISP_EXEC_CODE "${NIX_LISP_ASDF_LOAD:-"(load \"$NIX_LISP_ASDF/lib/common-lisp/asdf/build/asdf.$NIX_LISP_FASL_TYPE\")"}" \ - $NIX_LISP_EXEC_CODE "$NIX_LISP_ASDF_REGISTRY_CODE" \ - ${NIX_LISP_FINAL_PARAMETERS[*]:+"${NIX_LISP_FINAL_PARAMETERS[@]}"} \ - "$@" +if [ -z "$NIX_LISP_SKIP_CODE" ]; then + "$NIX_LISP_COMMAND" $NIX_LISP_EARLY_OPTIONS \ + $NIX_LISP_EXEC_CODE "${NIX_LISP_ASDF_LOAD:-"(load \"$NIX_LISP_ASDF/lib/common-lisp/asdf/build/asdf.$NIX_LISP_FASL_TYPE\")"}" \ + $NIX_LISP_EXEC_CODE "$NIX_LISP_ASDF_REGISTRY_CODE" \ + ${NIX_LISP_FINAL_PARAMETERS[*]:+"${NIX_LISP_FINAL_PARAMETERS[@]}"} \ + "$@" +fi From 6d25177ca8b003a15d241e452a8b4f2e0e452f64 Mon Sep 17 00:00:00 2001 From: Lefteris Kritikos Date: Tue, 23 Jul 2019 14:52:10 +0100 Subject: [PATCH 1005/1611] bazel-buildtools: 0.22.0 -> 0.28.0 --- .../build-managers/bazel/buildtools/default.nix | 14 +++++++------- .../tools/build-managers/bazel/buildtools/deps.nix | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/buildtools/default.nix b/pkgs/development/tools/build-managers/bazel/buildtools/default.nix index 2e8f806d53a..f7b0184f836 100644 --- a/pkgs/development/tools/build-managers/bazel/buildtools/default.nix +++ b/pkgs/development/tools/build-managers/bazel/buildtools/default.nix @@ -1,16 +1,16 @@ -{ stdenv, buildGoPackage, fetchFromGitHub }: +{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "bazel-buildtools-${version}"; - version = "0.22.0"; + version = "0.28.0"; + rev = "d7ccc5507c6c16e04f5e362e558d70b8b179b052"; goPackagePath = "github.com/bazelbuild/buildtools"; - src = fetchFromGitHub { - owner = "bazelbuild"; - repo = "buildtools"; - rev = "55b64c3d2ddfb57f06477c1d94ef477419c96bd6"; - sha256 = "0n6q8pkgy3vvmwyrxvkmjfbcxc31i31czg2bjdzq7awwrr4fdbwy"; + src = fetchgit { + inherit rev; + url = "https://github.com/bazelbuild/buildtools"; + sha256 = "1d8zjgbg77sk27cz9pjz1h6ajwxqmvdzqgwa2jbh6iykibhpadq0"; }; goDeps = ./deps.nix; diff --git a/pkgs/development/tools/build-managers/bazel/buildtools/deps.nix b/pkgs/development/tools/build-managers/bazel/buildtools/deps.nix index d7cd02c12b8..5bae5b40653 100644 --- a/pkgs/development/tools/build-managers/bazel/buildtools/deps.nix +++ b/pkgs/development/tools/build-managers/bazel/buildtools/deps.nix @@ -5,8 +5,8 @@ fetch = { type = "git"; url = "https://github.com/golang/protobuf"; - rev = "b5d812f8a3706043e23a9cd5babf2e5423744d30"; - sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"; + rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7"; + sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym"; }; } { From 4ec8edaa6af5ebfd6db4717f920592a9768a2575 Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Wed, 24 Jul 2019 10:50:00 -0700 Subject: [PATCH 1006/1611] pythonPackages.joblib: fix the build on Darwin (#65288) The test test_dispatch_multiprocessing is failing on Darwin; Disabling it fixes the build. --- pkgs/development/python-modules/joblib/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/joblib/default.nix b/pkgs/development/python-modules/joblib/default.nix index 9b2a5c44732..c16c7687c8a 100644 --- a/pkgs/development/python-modules/joblib/default.nix +++ b/pkgs/development/python-modules/joblib/default.nix @@ -2,6 +2,7 @@ , buildPythonPackage , fetchPypi , fetchpatch +, stdenv , sphinx , numpydoc , pytest @@ -38,10 +39,10 @@ buildPythonPackage rec { checkInputs = [ sphinx numpydoc pytest ]; propagatedBuildInputs = [ python-lz4 ]; - # test_disk_used is broken - # https://github.com/joblib/joblib/issues/57 + # test_disk_used is broken: https://github.com/joblib/joblib/issues/57 + # test_dispatch_multiprocessing is broken only on Darwin. checkPhase = '' - py.test joblib -k "not test_disk_used" + py.test -k 'not test_disk_used${lib.optionalString (stdenv.isDarwin) " and not test_dispatch_multiprocessing"}' joblib/test ''; meta = { From 293e5d8365bcc7d1caf87528ecace08273b4fe65 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Tue, 21 May 2019 20:12:27 +0300 Subject: [PATCH 1007/1611] nginxMainline: 1.16.0 -> 1.17.2 --- pkgs/servers/http/nginx/mainline.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/nginx/mainline.nix b/pkgs/servers/http/nginx/mainline.nix index abbf171daa9..47082bbeba0 100644 --- a/pkgs/servers/http/nginx/mainline.nix +++ b/pkgs/servers/http/nginx/mainline.nix @@ -1,6 +1,6 @@ { callPackage, ... }@args: callPackage ./generic.nix (args // { - version = "1.16.0"; - sha256 = "0i8krbi1pc39myspwlvb8ck969c8207hz84lh3qyg5w7syx7dlsg"; + version = "1.17.2"; + sha256 = "1v39gslwbvpfhqqv74q0lkfrhrwsp59xc8pwhvxns7af8s3kccsy"; }) From a6ddcd45da2105b1b8b43f92756cbd07db973699 Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Wed, 24 Jul 2019 21:26:13 +0200 Subject: [PATCH 1008/1611] checksec: 1.5 -> 2.0.1 --- ...dprobe-config-before-checking-kernel.patch | 23 +++++---- pkgs/os-specific/linux/checksec/default.nix | 50 +++++++++---------- 2 files changed, 35 insertions(+), 38 deletions(-) diff --git a/pkgs/os-specific/linux/checksec/0001-attempt-to-modprobe-config-before-checking-kernel.patch b/pkgs/os-specific/linux/checksec/0001-attempt-to-modprobe-config-before-checking-kernel.patch index 2caf52f3c0a..9beeab0f954 100644 --- a/pkgs/os-specific/linux/checksec/0001-attempt-to-modprobe-config-before-checking-kernel.patch +++ b/pkgs/os-specific/linux/checksec/0001-attempt-to-modprobe-config-before-checking-kernel.patch @@ -8,20 +8,21 @@ Signed-off-by: Austin Seipp checksec.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -diff --git a/checksec.sh b/checksec.sh +diff --git a/checksec b/checksec index dd1f72e..63acc29 100644 ---- a/checksec.sh -+++ b/checksec.sh -@@ -337,7 +337,8 @@ kernelcheck() { - printf " userspace processes, this option lists the status of kernel configuration\n" - printf " options that harden the kernel itself against attack.\n\n" - printf " Kernel config: " -- +--- a/checksec ++++ b/checksec +@@ -676,7 +676,8 @@ kernelcheck() { + echo_message " userspace processes, this option lists the status of kernel configuration\n" '' '' '' + echo_message " options that harden the kernel itself against attack.\n\n" '' '' '' + echo_message " Kernel config:\n" '' '' '{ "kernel": ' +- + + modprobe configs 2> /dev/null - if [ -f /proc/config.gz ] ; then - kconfig="zcat /proc/config.gz" - printf "\033[32m/proc/config.gz\033[m\n\n" + if [[ ! "${1}" == "" ]] ; then + kconfig="cat ${1}" + echo_message " Warning: The config ${1} on disk may not represent running kernel config!\n\n" "${1}" " Date: Tue, 4 Jun 2019 14:36:25 +0200 Subject: [PATCH 1009/1611] bloop: 1.2.5 -> 1.3.2 --- .../development/tools/build-managers/bloop/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/build-managers/bloop/default.nix b/pkgs/development/tools/build-managers/bloop/default.nix index c20985f31dc..6ed6fe77405 100644 --- a/pkgs/development/tools/build-managers/bloop/default.nix +++ b/pkgs/development/tools/build-managers/bloop/default.nix @@ -2,7 +2,7 @@ let baseName = "bloop"; - version = "1.2.5"; + version = "1.3.2"; deps = stdenv.mkDerivation { name = "${baseName}-deps-${version}"; buildCommand = '' @@ -16,14 +16,14 @@ let ''; outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "19373fyb0g7irrdzb1vsjmyv5xj84qwbcfb6lm076px7wfyn0w1c"; + outputHash = "1npq02npk6qiwghgr3bqd1ala1kv8hwq1qkmyffvigcq7frkz4r8"; }; in stdenv.mkDerivation rec { name = "${baseName}-${version}"; # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py - nailgunCommit = "0c325237"; + nailgunCommit = "9327a60a"; buildInputs = [ jdk makeWrapper deps ]; @@ -31,12 +31,12 @@ stdenv.mkDerivation rec { client = fetchurl { url = "https://raw.githubusercontent.com/scalacenter/nailgun/${nailgunCommit}/pynailgun/ng.py"; - sha256 = "0qjw4nsyb4cxg96jj1yv5c0ivcxvmscxxqfzll5w9p1pjb30bq0n"; + sha256 = "0z4as5ibmzkd145wsch9caiy4037bgg780gcf7pyns0cv9n955b4"; }; zshCompletion = fetchurl { url = "https://raw.githubusercontent.com/scalacenter/bloop/v${version}/etc/zsh/_bloop"; - sha256 = "1id6f1fgy2rk0q5aad6ffivhbxa94fallzsc04l9n0y1s2xdhqpm"; + sha256 = "09qq5888vaqlqan2jbs2qajz2c3ff13zj8r0x2pcxsqmvlqr02hp"; }; installPhase = '' From 3bdd3b158ad15e1750e139660ec1fc24cb5c89f5 Mon Sep 17 00:00:00 2001 From: Kevin Rauscher Date: Sat, 15 Jun 2019 12:11:40 +0200 Subject: [PATCH 1010/1611] bloop: refactor derivation to use subderivations This change prevents accidentally using cached version of dependencies when updating the version --- .../tools/build-managers/bloop/default.nix | 50 ++++++++++++------- 1 file changed, 33 insertions(+), 17 deletions(-) diff --git a/pkgs/development/tools/build-managers/bloop/default.nix b/pkgs/development/tools/build-managers/bloop/default.nix index 6ed6fe77405..69f3dc7e033 100644 --- a/pkgs/development/tools/build-managers/bloop/default.nix +++ b/pkgs/development/tools/build-managers/bloop/default.nix @@ -3,6 +3,8 @@ let baseName = "bloop"; version = "1.3.2"; + nailgunCommit = "9327a60a"; # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py + deps = stdenv.mkDerivation { name = "${baseName}-deps-${version}"; buildCommand = '' @@ -18,39 +20,53 @@ let outputHashAlgo = "sha256"; outputHash = "1npq02npk6qiwghgr3bqd1ala1kv8hwq1qkmyffvigcq7frkz4r8"; }; + + client = stdenv.mkDerivation { + name = "${baseName}-client-${nailgunCommit}"; + + src = fetchurl { + url = "https://raw.githubusercontent.com/scalacenter/nailgun/${nailgunCommit}/pynailgun/ng.py"; + sha256 = "0z4as5ibmzkd145wsch9caiy4037bgg780gcf7pyns0cv9n955b4"; + }; + + phases = [ "installPhase" ]; + + installPhase = '' + cp $src $out + chmod +x $out + ''; + }; + + zsh = stdenv.mkDerivation { + name = "${baseName}-zshcompletion-${version}"; + + src = fetchurl { + url = "https://raw.githubusercontent.com/scalacenter/bloop/v${version}/etc/zsh/_bloop"; + sha256 = "09qq5888vaqlqan2jbs2qajz2c3ff13zj8r0x2pcxsqmvlqr02hp"; + }; + + phases = [ "installPhase" ]; + + installPhase = ''cp $src $out''; + }; in stdenv.mkDerivation rec { name = "${baseName}-${version}"; - # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py - nailgunCommit = "9327a60a"; - buildInputs = [ jdk makeWrapper deps ]; phases = [ "installPhase" ]; - client = fetchurl { - url = "https://raw.githubusercontent.com/scalacenter/nailgun/${nailgunCommit}/pynailgun/ng.py"; - sha256 = "0z4as5ibmzkd145wsch9caiy4037bgg780gcf7pyns0cv9n955b4"; - }; - - zshCompletion = fetchurl { - url = "https://raw.githubusercontent.com/scalacenter/bloop/v${version}/etc/zsh/_bloop"; - sha256 = "09qq5888vaqlqan2jbs2qajz2c3ff13zj8r0x2pcxsqmvlqr02hp"; - }; - installPhase = '' mkdir -p $out/bin mkdir -p $out/share/zsh/site-functions - cp ${client} $out/bin/blp-client - cp ${zshCompletion} $out/share/zsh/site-functions/_bloop - chmod +x $out/bin/blp-client + ln -s ${zsh} $out/share/zsh/site-functions/_bloop makeWrapper ${jre}/bin/java $out/bin/blp-server \ --prefix PATH : ${lib.makeBinPath [ jdk ]} \ --add-flags "-cp $CLASSPATH bloop.Server" - makeWrapper $out/bin/blp-client $out/bin/bloop \ + makeWrapper ${client} $out/bin/bloop \ --prefix PATH : ${lib.makeBinPath [ python ]} ''; From d6b6015d3474590a6e1ea238255f904c866679ff Mon Sep 17 00:00:00 2001 From: Kevin Rauscher Date: Wed, 24 Jul 2019 15:39:08 +0200 Subject: [PATCH 1011/1611] bloop: get closer to standard bloop packaging --- nixos/modules/services/development/bloop.nix | 9 ++-- .../tools/build-managers/bloop/default.nix | 51 +++++++++---------- 2 files changed, 31 insertions(+), 29 deletions(-) diff --git a/nixos/modules/services/development/bloop.nix b/nixos/modules/services/development/bloop.nix index 56904b7c40e..5cb88cc49a1 100644 --- a/nixos/modules/services/development/bloop.nix +++ b/nixos/modules/services/development/bloop.nix @@ -25,10 +25,13 @@ in { systemd.user.services.bloop = { description = "Bloop Scala build server"; + environment = { + PATH = mkForce "${makeBinPath [ config.programs.java.package ]}"; + }; serviceConfig = { - Type = "simple"; - ExecStart = ''${pkgs.bloop}/bin/blp-server''; - Restart = "always"; + Type = "simple"; + ExecStart = ''${pkgs.bloop}/bin/bloop server''; + Restart = "always"; }; }; diff --git a/pkgs/development/tools/build-managers/bloop/default.nix b/pkgs/development/tools/build-managers/bloop/default.nix index 69f3dc7e033..ba842289dba 100644 --- a/pkgs/development/tools/build-managers/bloop/default.nix +++ b/pkgs/development/tools/build-managers/bloop/default.nix @@ -1,28 +1,12 @@ -{ stdenv, lib, fetchurl, coursier, jdk, jre, python, makeWrapper }: +{ stdenv, lib, fetchurl, coursier, python, makeWrapper }: let baseName = "bloop"; version = "1.3.2"; nailgunCommit = "9327a60a"; # Fetched from https://github.com/scalacenter/bloop/releases/download/v${version}/install.py - deps = stdenv.mkDerivation { - name = "${baseName}-deps-${version}"; - buildCommand = '' - export COURSIER_CACHE=$(pwd) - ${coursier}/bin/coursier fetch ch.epfl.scala:bloop-frontend_2.12:${version} \ - -r "bintray:scalameta/maven" \ - -r "bintray:scalacenter/releases" \ - -r "https://oss.sonatype.org/content/repositories/staging" > deps - mkdir -p $out/share/java - cp $(< deps) $out/share/java/ - ''; - outputHashMode = "recursive"; - outputHashAlgo = "sha256"; - outputHash = "1npq02npk6qiwghgr3bqd1ala1kv8hwq1qkmyffvigcq7frkz4r8"; - }; - client = stdenv.mkDerivation { - name = "${baseName}-client-${nailgunCommit}"; + name = "${baseName}-client-${version}"; src = fetchurl { url = "https://raw.githubusercontent.com/scalacenter/nailgun/${nailgunCommit}/pynailgun/ng.py"; @@ -31,10 +15,25 @@ let phases = [ "installPhase" ]; - installPhase = '' - cp $src $out - chmod +x $out + installPhase = ''cp $src $out''; + }; + + server = stdenv.mkDerivation { + name = "${baseName}-server-${version}"; + buildCommand = '' + mkdir -p $out/bin + + export COURSIER_CACHE=$(pwd) + ${coursier}/bin/coursier bootstrap ch.epfl.scala:bloop-frontend_2.12:${version} \ + -r "bintray:scalameta/maven" \ + -r "bintray:scalacenter/releases" \ + -r "https://oss.sonatype.org/content/repositories/staging" \ + --deterministic \ + -f --main bloop.Server -o $out/bin/blp-server ''; + outputHashMode = "recursive"; + outputHashAlgo = "sha256"; + outputHash = "0k9zc9q793fkfwcssbkmzb0nxmgb99rwi0pjkqhvf719vmgvhc2a"; }; zsh = stdenv.mkDerivation { @@ -53,7 +52,7 @@ in stdenv.mkDerivation rec { name = "${baseName}-${version}"; - buildInputs = [ jdk makeWrapper deps ]; + buildInputs = [ makeWrapper ]; phases = [ "installPhase" ]; @@ -61,12 +60,12 @@ stdenv.mkDerivation rec { mkdir -p $out/bin mkdir -p $out/share/zsh/site-functions + ln -s ${server}/bin/blp-server $out/blp-server ln -s ${zsh} $out/share/zsh/site-functions/_bloop - makeWrapper ${jre}/bin/java $out/bin/blp-server \ - --prefix PATH : ${lib.makeBinPath [ jdk ]} \ - --add-flags "-cp $CLASSPATH bloop.Server" - makeWrapper ${client} $out/bin/bloop \ + cp ${client} $out/bloop + chmod +x $out/bloop + makeWrapper $out/bloop $out/bin/bloop \ --prefix PATH : ${lib.makeBinPath [ python ]} ''; From b7eb5b6f7904e7c046f79b2a14e4c2ad4780b1a2 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:58:50 +0200 Subject: [PATCH 1012/1611] pythonPackages.executor: init at 21.3 --- .../python-modules/executor/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 3 files changed, 35 insertions(+) create mode 100644 pkgs/development/python-modules/executor/default.nix diff --git a/pkgs/development/python-modules/executor/default.nix b/pkgs/development/python-modules/executor/default.nix new file mode 100644 index 00000000000..8c71d63ef5c --- /dev/null +++ b/pkgs/development/python-modules/executor/default.nix @@ -0,0 +1,31 @@ +{ lib, buildPythonPackage, fetchFromGitHub, coloredlogs, property-manager, fasteners, pytest, mock, virtualenv }: + +buildPythonPackage rec { + pname = "executor"; + version = "21.3"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-executor"; + rev = version; + sha256 = "0rc14vjx3d6irfaw0pczzw1pn0xjl7xikv32hc1fvxv2ibnldv5d"; + }; + + propagatedBuildInputs = [ coloredlogs property-manager fasteners ]; + + checkInputs = [ pytest mock virtualenv ]; + + # ignore impure tests + checkPhase = '' + pytest . -k "not option and not retry \ + and not remote and not ssh \ + and not foreach and not local_context" + ''; + + meta = with lib; { + description = "Programmer friendly subprocess wrapper"; + homepage = https://github.com/xolox/python-executor; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a5e49b0fdef..bd0d80d2e82 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2845,6 +2845,8 @@ in execline = skawarePackages.execline; + executor = with python3Packages; toPythonApplication executor; + exif = callPackage ../tools/graphics/exif { }; exiftags = callPackage ../tools/graphics/exiftags { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4440c47cc3b..4fc2c85465d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2176,6 +2176,8 @@ in { execnet = callPackage ../development/python-modules/execnet { }; + executor = callPackage ../development/python-modules/executor { }; + ezdxf = callPackage ../development/python-modules/ezdxf {}; facebook-sdk = callPackage ../development/python-modules/facebook-sdk { }; From 1de0c3275a960f3e85bc796749d471e98ceef837 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:59:14 +0200 Subject: [PATCH 1013/1611] pythonPackages.coloredlogs: init at 10.0 --- .../python-modules/coloredlogs/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/python-packages.nix | 2 ++ 3 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/coloredlogs/default.nix diff --git a/pkgs/development/python-modules/coloredlogs/default.nix b/pkgs/development/python-modules/coloredlogs/default.nix new file mode 100644 index 00000000000..48eb4520b16 --- /dev/null +++ b/pkgs/development/python-modules/coloredlogs/default.nix @@ -0,0 +1,34 @@ +{ lib, buildPythonPackage, fetchFromGitHub, stdenv, isPy3k, fetchpatch, humanfriendly, verboselogs, capturer, pytest, mock, utillinux }: + +buildPythonPackage rec { + pname = "coloredlogs"; + version = "10.0"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-coloredlogs"; + rev = version; + sha256 = "0rdvp4dfvzhx7z7s2jdl3fv7x1hazgpy5gc7bcf05bnbv2iia54a"; + }; + + # patch by risicle + patches = lib.optional (stdenv.isDarwin && isPy3k) (fetchpatch { + name = "darwin-py3-capture-fix.patch"; + url = "https://github.com/xolox/python-coloredlogs/pull/74.patch"; + sha256 = "0pk7k94iz0gdripw623vzdl4hd83vwhsfzshl8pbvh1n6swi0xx9"; + }); + + checkPhase = '' + PATH=$PATH:$out/bin pytest . -k "not test_plain_text_output_format" + ''; + checkInputs = [ pytest mock utillinux ]; + + propagatedBuildInputs = [ humanfriendly verboselogs capturer ]; + + meta = with lib; { + description = "Colored stream handler for Python's logging module"; + homepage = https://github.com/xolox/python-coloredlogs; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bd0d80d2e82..6df502d3336 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1302,6 +1302,8 @@ in clprover = callPackage ../applications/science/logic/clprover/clprover.nix { }; + coloredlogs = with python3Packages; toPythonApplication coloredlogs; + colord-kde = libsForQt5.callPackage ../tools/misc/colord-kde {}; colpack = callPackage ../applications/science/math/colpack { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4fc2c85465d..67df72cc091 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1489,6 +1489,8 @@ in { colorcet = callPackage ../development/python-modules/colorcet { }; + coloredlogs = callPackage ../development/python-modules/coloredlogs { }; + colorclass = callPackage ../development/python-modules/colorclass {}; colorlog = callPackage ../development/python-modules/colorlog { }; From 3d91e7fde081da2a6902e0d959baeb0345136945 Mon Sep 17 00:00:00 2001 From: "eyjhbb@gmail.com" Date: Tue, 23 Jul 2019 16:59:48 +0200 Subject: [PATCH 1014/1611] pythonPackages.capturer: init at 2.4 --- .../python-modules/capturer/default.nix | 27 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 pkgs/development/python-modules/capturer/default.nix diff --git a/pkgs/development/python-modules/capturer/default.nix b/pkgs/development/python-modules/capturer/default.nix new file mode 100644 index 00000000000..86062d28a85 --- /dev/null +++ b/pkgs/development/python-modules/capturer/default.nix @@ -0,0 +1,27 @@ +{ lib, buildPythonPackage, fetchFromGitHub, humanfriendly, pytest, pytestcov }: + +buildPythonPackage rec { + pname = "capturer"; + version = "2.4"; + + src = fetchFromGitHub { + owner = "xolox"; + repo = "python-capturer"; + rev = version; + sha256 = "07zy264xd0g7pz9sxjqcpwmrck334xcbb7wfss26lmvgdr5nhcb9"; + }; + + propagatedBuildInputs = [ humanfriendly ]; + + checkPhase = '' + PATH=$PATH:$out/bin pytest . + ''; + checkInputs = [ pytest ]; + + meta = with lib; { + description = "Easily capture stdout/stderr of the current process and subprocesses"; + homepage = https://github.com/xolox/python-capturer; + license = licenses.mit; + maintainers = with maintainers; [ eyjhb ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 67df72cc091..9a3aa7a9a0b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1465,6 +1465,8 @@ in { capstone = callPackage ../development/python-modules/capstone { }; + capturer = callPackage ../development/python-modules/capturer { }; + cement = callPackage ../development/python-modules/cement {}; cgen = callPackage ../development/python-modules/cgen { }; From 3b8e595810fc8faa89a81d4a4c4064bb5cf24e8a Mon Sep 17 00:00:00 2001 From: Matthew Bauer Date: Thu, 18 Jul 2019 23:09:55 -0400 Subject: [PATCH 1015/1611] zmq: add enableDrafts option This is needed by emacs-zmq, and will be used by it. --- pkgs/development/libraries/zeromq/4.x.nix | 4 +++- pkgs/top-level/emacs-packages.nix | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/zeromq/4.x.nix b/pkgs/development/libraries/zeromq/4.x.nix index 9fc0c4ac230..506db644142 100644 --- a/pkgs/development/libraries/zeromq/4.x.nix +++ b/pkgs/development/libraries/zeromq/4.x.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, asciidoc }: +{ stdenv, fetchFromGitHub, cmake, asciidoc, enableDrafts ? false }: stdenv.mkDerivation rec { name = "zeromq-${version}"; @@ -17,6 +17,8 @@ stdenv.mkDerivation rec { doCheck = false; # fails all the tests (ctest) + cmakeFlags = if enableDrafts then [ "-DENABLE_DRAFTS=ON" ] else null; + meta = with stdenv.lib; { branch = "4"; homepage = http://www.zeromq.org; diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 29600670f61..6696520c33e 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -434,7 +434,10 @@ let }; stripDebugList = [ "share" ]; packageRequires = [ emacs ]; - nativeBuildInputs = [ external.autoconf external.automake external.pkgconfig external.libtool external.zeromq ]; + nativeBuildInputs = [ + external.autoconf external.automake external.pkgconfig external.libtool + (external.zeromq.override { enableDrafts = true; }) + ]; preBuild = '' make ''; From 9235a8eaeff094c8e014b669c2e447b6e161e815 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 24 Jul 2019 15:22:07 -0500 Subject: [PATCH 1016/1611] nixos/config/no-x-libs: Fix pinentry arguments --- nixos/modules/config/no-x-libs.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix index aad02a9ca4e..74cf74d7418 100644 --- a/nixos/modules/config/no-x-libs.nix +++ b/nixos/modules/config/no-x-libs.nix @@ -34,7 +34,7 @@ with lib; networkmanager-openvpn = super.networkmanager-openvpn.override { withGnome = false; }; networkmanager-vpnc = super.networkmanager-vpnc.override { withGnome = false; }; networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; }; - pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt = null; }; + pinentry = super.pinentry.override { gtk2 = null; gcr = null; qt4 = null; qt5 = null; }; gobject-introspection = super.gobject-introspection.override { x11Support = false; }; })); }; From 32e552af3ff125bcbf341ec54d545477488f000d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 11 Sep 2018 09:48:33 -0500 Subject: [PATCH 1017/1611] editorconfig: Include runtime dependency on editorconfig-core-c --- pkgs/applications/editors/emacs-modes/melpa-packages.nix | 4 ++++ pkgs/top-level/all-packages.nix | 8 +++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index a401bbc0be1..97681afbe15 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -59,6 +59,10 @@ self: inherit (self.melpaPackages) easy-kill; }; + editorconfig = super.editorconfig.overrideAttrs (attrs: { + propagatedUserEnvPkgs = [ external.editorconfig-core-c ]; + }); + egg = super.egg.overrideAttrs (attrs: { # searches for Git at build time nativeBuildInputs = diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf9c11c5615..899cc0dbf60 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17814,11 +17814,13 @@ in }; external = { - inherit (haskellPackages) ghc-mod structured-haskell-mode Agda hindent; + inherit (haskellPackages) + ghc-mod structured-haskell-mode Agda hindent; inherit (pythonPackages) elpy; inherit - autoconf automake git libffi libpng pkgconfig poppler rtags w3m zlib - substituteAll rustPlatform cmake llvmPackages libtool zeromq; + autoconf automake editorconfig-core-c git libffi libpng pkgconfig + poppler rtags w3m zlib substituteAll rustPlatform cmake llvmPackages + libtool zeromq; }; }; From 1c0e584c6468b7eb74ddb4bdd3dfb6f44e70b3ff Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Tue, 23 Jul 2019 14:51:03 -0700 Subject: [PATCH 1018/1611] ngrok: fix build on darwin --- pkgs/tools/networking/ngrok-2/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/ngrok-2/default.nix b/pkgs/tools/networking/ngrok-2/default.nix index 686bb1d7ebf..c74ceb055ce 100644 --- a/pkgs/tools/networking/ngrok-2/default.nix +++ b/pkgs/tools/networking/ngrok-2/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { sourceRoot = "."; - nativeBuildInputs = [ patchelfUnstable ]; + nativeBuildInputs = optionals stdenv.isLinux [ patchelfUnstable ]; unpackPhase = "cp $src ngrok"; @@ -32,10 +32,10 @@ stdenv.mkDerivation { installPhase = '' install -D ngrok $out/bin/ngrok - + '' + optionalString stdenv.isLinux '' patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ $out/bin/ngrok - ''; + ''; passthru.updateScript = ./update.sh; From ebafb799dcbc6c821c3ecc7bc310deb112c2b350 Mon Sep 17 00:00:00 2001 From: Free Potion <42352817+freepotion@users.noreply.github.com> Date: Thu, 25 Jul 2019 00:40:28 +0300 Subject: [PATCH 1019/1611] harmonist: 0.1 -> 0.2 --- pkgs/games/harmonist/default.nix | 4 ++-- pkgs/games/harmonist/deps.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/harmonist/default.nix b/pkgs/games/harmonist/default.nix index cca17ceee5a..a391a73069a 100644 --- a/pkgs/games/harmonist/default.nix +++ b/pkgs/games/harmonist/default.nix @@ -3,13 +3,13 @@ buildGoPackage rec { pname = "harmonist"; - version = "0.1"; + version = "0.2"; goPackagePath = "git.tuxfamily.org/harmonist/harmonist.git"; src = fetchurl { url = "https://download.tuxfamily.org/harmonist/releases/${pname}-${version}.tar.gz"; - sha256 = "1cvhfvscd80qz95pqkblnyjhz1l87k7y6vmzyzap893mpjk9a3pm"; + sha256 = "1r78v312x2k1v9rkxkxffs5vxn9sc0dcszm66yw10p7qy9lyvicd"; }; goDeps = ./deps.nix; diff --git a/pkgs/games/harmonist/deps.nix b/pkgs/games/harmonist/deps.nix index a785567addd..c65c0e33998 100644 --- a/pkgs/games/harmonist/deps.nix +++ b/pkgs/games/harmonist/deps.nix @@ -4,8 +4,8 @@ fetch = { type = "git"; url = "https://github.com/nsf/termbox-go"; - rev = "288510b9734e30e7966ec2f22b87c5f8e67345e3"; - sha256 = "0hdyisfaf8yb55h3p03p4sbq19546mp9fy28f2kn659mycmhxqk4"; + rev = "eeb6cd0a176293eeb2c69270d83835972e3567bc"; + sha256 = "14695dk07dj41s5f74l3wdf3xjj2flq4fq016i98f5xijh5f64i3"; }; } { From cec27ceabc4f734bddc00f5bbf2c0d56a354f654 Mon Sep 17 00:00:00 2001 From: josephtheengineer Date: Thu, 25 Jul 2019 07:51:06 +1000 Subject: [PATCH 1020/1611] kitty: fix wayland support (EGL: Library not found) --- pkgs/applications/misc/kitty/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/kitty/default.nix b/pkgs/applications/misc/kitty/default.nix index 63e77ec0e67..0be9bc82187 100644 --- a/pkgs/applications/misc/kitty/default.nix +++ b/pkgs/applications/misc/kitty/default.nix @@ -1,6 +1,6 @@ { stdenv, substituteAll, fetchFromGitHub, python3Packages, glfw, libunistring, harfbuzz, fontconfig, pkgconfig, ncurses, imagemagick, xsel, - libstartup_notification, libX11, libXrandr, libXinerama, libXcursor, + libstartup_notification, libGL, libX11, libXrandr, libXinerama, libXcursor, libxkbcommon, libXi, libXext, wayland-protocols, wayland, which, dbus, Cocoa, @@ -57,6 +57,8 @@ buildPythonApplication rec { optipng ]; + propagatedBuildInputs = stdenv.lib.optional stdenv.isLinux libGL; + outputs = [ "out" "terminfo" ]; patches = [ @@ -70,6 +72,10 @@ buildPythonApplication rec { ./png2icns.patch ]; + preConfigure = stdenv.lib.optional (!stdenv.isDarwin) '' + substituteInPlace glfw/egl_context.c --replace "libEGL.so.1" "${stdenv.lib.getLib libGL}/lib/libEGL.so.1" + ''; + buildPhase = if stdenv.isDarwin then '' make app '' else '' From 02d79ced9016ec67f3bfd3928a5c2969b25e2188 Mon Sep 17 00:00:00 2001 From: Marek Fajkus Date: Wed, 3 Jul 2019 13:58:15 +0200 Subject: [PATCH 1021/1611] cargo-generate: init at 0.3.0 --- .../tools/rust/cargo-generate/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/tools/rust/cargo-generate/default.nix diff --git a/pkgs/development/tools/rust/cargo-generate/default.nix b/pkgs/development/tools/rust/cargo-generate/default.nix new file mode 100644 index 00000000000..0ca12bd7bf4 --- /dev/null +++ b/pkgs/development/tools/rust/cargo-generate/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchFromGitHub, rustPlatform, Security, openssl, pkgconfig, libiconv, curl }: + +rustPlatform.buildRustPackage rec { + name = "cargo-generate-${version}"; + version = "0.3.0"; + + src = fetchFromGitHub { + owner = "ashleygwilliams"; + repo = "cargo-generate"; + rev = "v${version}"; + sha256 = "0n6na6xq4bvs9hc7vc86qqmlrkv824qdmja27b21l2wz3l77r4jb"; + }; + + cargoSha256 = "00fgzh1s63rr1vs3ahra604m81fc4imx3s09brw2y0n46syhwypi"; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ openssl ] + ++ stdenv.lib.optionals stdenv.isDarwin [ Security libiconv curl ]; + + doCheck = false; + + meta = with stdenv.lib; { + description = "cargo, make me a project"; + homepage = https://github.com/ashleygwilliams/cargo-generate; + license = licenses.asl20; + maintainers = [ maintainers.turbomack ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3943d02499c..17e7c2395c8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8075,6 +8075,9 @@ in }; cargo-sweep = callPackage ../development/tools/rust/cargo-sweep { }; cargo-xbuild = callPackage ../development/tools/rust/cargo-xbuild { }; + cargo-generate = callPackage ../development/tools/rust/cargo-generate { + inherit (darwin.apple_sdk.frameworks) Security; + }; pyo3-pack = callPackage ../development/tools/rust/pyo3-pack { }; rainicorn = callPackage ../development/tools/rust/rainicorn { }; From c4cebed811f8e10a5c94f1fd559df65d0265e5fc Mon Sep 17 00:00:00 2001 From: GRBurst Date: Tue, 23 Jul 2019 22:11:28 +0200 Subject: [PATCH 1022/1611] protonmail-bridge: 1.1.5 -> 1.1.6 --- .../networking/protonmail-bridge/default.nix | 17 ++++++++++------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/protonmail-bridge/default.nix b/pkgs/applications/networking/protonmail-bridge/default.nix index 807b8116b46..c685a270586 100644 --- a/pkgs/applications/networking/protonmail-bridge/default.nix +++ b/pkgs/applications/networking/protonmail-bridge/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, full -, libsecret, libGL, libpulseaudio, glib, wrapQtAppsHook, makeDesktopItem }: +{ stdenv, fetchurl, lib, qtbase, qtmultimedia, qtsvg, qtdeclarative, qttools, qtgraphicaleffects, qtquickcontrols2, full +, libsecret, libGL, libpulseaudio, glib, wrapQtAppsHook, makeDesktopItem, mkDerivation }: let - version = "1.1.5-1"; + version = "1.1.6-1"; description = '' An application that runs on your computer in the background and seamlessly encrypts @@ -20,16 +20,15 @@ let genericName = "ProtonMail Bridge for Linux"; categories = "Utility;Security;Network;Email"; }; -in stdenv.mkDerivation rec { + +in mkDerivation rec { name = "protonmail-bridge-${version}"; src = fetchurl { url = "https://protonmail.com/download/protonmail-bridge_${version}_amd64.deb"; - sha256 = "1y5mphrs60zd6km9z64vskk70q9zzw4g6js7qvgl572wv81w2l75"; + sha256 = "108dql9q5znsqjkrs41pc6psjbg5bz09rdmjl036xxbvsdvq4a8r"; }; - nativeBuildInputs = [ wrapQtAppsHook ]; - sourceRoot = "."; unpackCmd = '' @@ -51,6 +50,8 @@ in stdenv.mkDerivation rec { rpath = lib.makeLibraryPath [ stdenv.cc.cc.lib qtbase + qtquickcontrols2 + qtgraphicaleffects qtmultimedia qtsvg qtdeclarative @@ -67,6 +68,8 @@ in stdenv.mkDerivation rec { $out/lib/protonmail-bridge ''; + buildInputs = [ qtbase qtquickcontrols2 qtmultimedia qtgraphicaleffects qtdeclarative ]; + meta = with stdenv.lib; { homepage = "https://www.protonmail.com/bridge"; license = licenses.mit; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e1a45d4e45a..be618dc06b2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19869,7 +19869,7 @@ in properties-cpp = callPackage ../development/libraries/properties-cpp { }; - protonmail-bridge = libsForQt511.callPackage ../applications/networking/protonmail-bridge { }; + protonmail-bridge = libsForQt512.callPackage ../applications/networking/protonmail-bridge { }; protonvpn-cli = callPackage ../applications/networking/protonvpn-cli { }; From 88f163ef9aa56cddd51784950b04bcb13650e2bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B0=D1=80=D0=B8=D0=BA?= Date: Sun, 21 Jul 2019 22:01:49 +0300 Subject: [PATCH 1023/1611] klystrack: init at 1.7.6 --- pkgs/applications/audio/klystrack/default.nix | 52 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 54 insertions(+) create mode 100644 pkgs/applications/audio/klystrack/default.nix diff --git a/pkgs/applications/audio/klystrack/default.nix b/pkgs/applications/audio/klystrack/default.nix new file mode 100644 index 00000000000..5e8dc060c28 --- /dev/null +++ b/pkgs/applications/audio/klystrack/default.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchFromGitHub, fetchpatch +, SDL2, SDL2_image +, pkgconfig +}: + +stdenv.mkDerivation rec { + pname = "klystrack"; + version = "1.7.6"; + + src = fetchFromGitHub { + owner = "kometbomb"; + repo = pname; + rev = version; + fetchSubmodules = true; + sha256 = "1h99sm2ddaq483hhk2s3z4bjbgn0d2h7qna7l7qq98wvhqix8iyz"; + }; + + buildInputs = [ + SDL2 SDL2_image + ]; + nativeBuildInputs = [ pkgconfig ]; + + patches = [ + (fetchpatch { + url = "https://github.com/kometbomb/klystrack/commit/bb537595d02140176831c4a1b8e9121978b32d22.patch"; + sha256 = "06gl9q0jwg039kpxb13lg9x0k59s11968qn4lybgkadvzmhxkgmi"; + }) + ]; + + buildFlags = [ "PREFIX=${placeholder "out"}" "CFG=release" ]; + + installPhase = '' + install -Dm755 bin.release/klystrack $out/bin/klystrack + + mkdir -p $out/lib/klystrack + cp -R res $out/lib/klystrack + cp -R key $out/lib/klystrack + + install -DT icon/256x256.png $out/share/icons/hicolor/256x256/apps/klystrack.png + mkdir -p $out/share/applications + substitute linux/klystrack.desktop $out/share/applications/klystrack.desktop \ + --replace "klystrack %f" "$out/bin/klystrack %f" + ''; + + meta = with stdenv.lib; { + description = "A chiptune tracker"; + homepage = "https://kometbomb.github.io/klystrack"; + license = licenses.mit; + maintainers = with maintainers; [ suhr ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf609b073b3..2f3caaec01f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4042,6 +4042,8 @@ in klick = callPackage ../applications/audio/klick { }; + klystrack = callPackage ../applications/audio/klystrack { }; + knockknock = callPackage ../tools/security/knockknock { }; kore = callPackage ../development/web/kore { }; From 57d5b0be29f512c1f6d3e83ec2fbb60ae2923679 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 25 Jul 2019 03:29:55 +0000 Subject: [PATCH 1024/1611] slirp4netns: 0.3.0-alpha.2 -> 0.3.0 --- pkgs/tools/networking/slirp4netns/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/networking/slirp4netns/default.nix b/pkgs/tools/networking/slirp4netns/default.nix index 3515a127510..0f7c035b4c0 100644 --- a/pkgs/tools/networking/slirp4netns/default.nix +++ b/pkgs/tools/networking/slirp4netns/default.nix @@ -1,17 +1,19 @@ -{ stdenv, fetchFromGitHub, autoreconfHook }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, glib }: stdenv.mkDerivation rec { name = "slirp4netns-${version}"; - version = "0.3.0-alpha.2"; + version = "0.3.0"; src = fetchFromGitHub { owner = "rootless-containers"; repo = "slirp4netns"; rev = "v${version}"; - sha256 = "163nwdwi1qigma1c5svm8llgd8pn4sbkchw67ry3v0gfxa9mxibk"; + sha256 = "079m44l4l0p1c2sbkpzsy6zpv94glwmrc72ip2djcscnaq4b1763"; }; - nativeBuildInputs = [ autoreconfHook ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + + buildInputs = [ glib ]; enableParallelBuilding = true; From c555bc38a34b899dfba66663a18c7ea343935b5e Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Tue, 23 Jul 2019 14:14:57 -0700 Subject: [PATCH 1025/1611] jsondiff: 1.1.2 -> 1.2.0 --- pkgs/development/python-modules/jsondiff/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jsondiff/default.nix b/pkgs/development/python-modules/jsondiff/default.nix index fd31dc93fbf..73017ee68b1 100644 --- a/pkgs/development/python-modules/jsondiff/default.nix +++ b/pkgs/development/python-modules/jsondiff/default.nix @@ -5,11 +5,11 @@ buildPythonPackage rec { pname = "jsondiff"; - version = "1.1.2"; + version = "1.2.0"; src = fetchPypi { inherit pname version; - sha256 = "7e18138aecaa4a8f3b7ac7525b8466234e6378dd6cae702b982c9ed851d2ae21"; + sha256 = "00v3689175aqzdscrxpffm712ylp8jvcpqdg51ca22ni6721p51l"; }; # No tests @@ -20,5 +20,4 @@ buildPythonPackage rec { homepage = https://github.com/ZoomerAnalytics/jsondiff; license = lib.licenses.mit; }; - -} \ No newline at end of file +} From d99c6ccecebe0723d8700d5677f699b632f56fd9 Mon Sep 17 00:00:00 2001 From: "Wael M. Nasreddine" Date: Tue, 23 Jul 2019 14:15:39 -0700 Subject: [PATCH 1026/1611] jsondiff: patch setup.py to prevent creating bin/jsondiff pythonPackages.jsonpatch also creates bin/jsondiff, and packages depending on both are not usable. --- pkgs/development/python-modules/jsondiff/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/jsondiff/default.nix b/pkgs/development/python-modules/jsondiff/default.nix index 73017ee68b1..6b254a7221a 100644 --- a/pkgs/development/python-modules/jsondiff/default.nix +++ b/pkgs/development/python-modules/jsondiff/default.nix @@ -12,6 +12,10 @@ buildPythonPackage rec { sha256 = "00v3689175aqzdscrxpffm712ylp8jvcpqdg51ca22ni6721p51l"; }; + postPatch = '' + sed -e "/'jsondiff=jsondiff.cli:main_deprecated',/d" -i setup.py + ''; + # No tests doCheck = false; From 17c2f79e39ecfd7ef7e995a2c8397447f1f75d14 Mon Sep 17 00:00:00 2001 From: Kevin Rauscher Date: Thu, 25 Jul 2019 09:24:25 +0200 Subject: [PATCH 1027/1611] bloop: allow specifying extra cli options --- nixos/modules/services/development/bloop.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/modules/services/development/bloop.nix b/nixos/modules/services/development/bloop.nix index 5cb88cc49a1..226718a9e80 100644 --- a/nixos/modules/services/development/bloop.nix +++ b/nixos/modules/services/development/bloop.nix @@ -9,6 +9,20 @@ let in { options.services.bloop = { + extraOptions = mkOption { + type = types.listOf types.str; + default = [ ]; + example = [ + "-J-Xmx2G" + "-J-XX:MaxInlineLevel=20" + "-J-XX:+UseParallelGC" + ]; + description = '' + Specifies additional command line argument to pass to bloop + java process. + ''; + }; + install = mkOption { type = types.bool; default = false; From e557e7a12ae21e403c419a548be91fc0f5f0ceae Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 25 Jul 2019 01:47:10 -0700 Subject: [PATCH 1028/1611] pythonPackages.moto: fix description --- pkgs/development/python-modules/moto/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/moto/default.nix b/pkgs/development/python-modules/moto/default.nix index f331b211323..04381d73834 100644 --- a/pkgs/development/python-modules/moto/default.nix +++ b/pkgs/development/python-modules/moto/default.nix @@ -70,7 +70,7 @@ buildPythonPackage rec { -e test_decorator_start_and_stop''; meta = with lib; { - description = "This project extends the Application Insights API surface to support Python"; + description = "Allows your tests to easily mock out AWS Services"; homepage = https://github.com/spulec/moto; license = licenses.asl20; maintainers = [ ]; From b5d1d50aa90e0780c57fb4b323203ea5056be857 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 25 Jul 2019 09:04:55 +0000 Subject: [PATCH 1029/1611] google-gflags: move to aliases.nix google-gflags were renamed to gflags in 2012: https://github.com/gflags/gflags/#25-january-2012 gflags.name will be updated in staging. --- pkgs/applications/radio/gnss-sdr/default.nix | 6 +++--- pkgs/applications/science/math/caffe/default.nix | 4 ++-- pkgs/applications/science/misc/openmvs/default.nix | 8 ++++---- pkgs/development/libraries/ceres-solver/default.nix | 8 ++++---- pkgs/development/libraries/folly/default.nix | 4 ++-- .../libraries/{google-gflags => gflags}/default.nix | 0 pkgs/development/libraries/kinetic-cpp-client/default.nix | 4 ++-- pkgs/development/libraries/opencv/3.x.nix | 4 ++-- pkgs/development/libraries/opencv/4.x.nix | 4 ++-- .../development/libraries/science/math/caffe2/default.nix | 4 ++-- .../libraries/science/math/or-tools/default.nix | 6 +++--- pkgs/tools/system/osquery/default.nix | 4 ++-- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 5 ++--- 14 files changed, 31 insertions(+), 31 deletions(-) rename pkgs/development/libraries/{google-gflags => gflags}/default.nix (100%) diff --git a/pkgs/applications/radio/gnss-sdr/default.nix b/pkgs/applications/radio/gnss-sdr/default.nix index 6cbdea8c686..7e132efefbb 100644 --- a/pkgs/applications/radio/gnss-sdr/default.nix +++ b/pkgs/applications/radio/gnss-sdr/default.nix @@ -5,7 +5,7 @@ , glog , gmock , openssl -, google-gflags +, gflags , gnuradio , orc , pkgconfig @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { glog gmock openssl.dev - google-gflags + gflags gnuradio orc pkgconfig @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; cmakeFlags = [ - "-DGFlags_ROOT_DIR=${google-gflags}/lib" + "-DGFlags_ROOT_DIR=${gflags}/lib" "-DGLOG_INCLUDE_DIR=${glog}/include" "-DENABLE_UNIT_TESTING=OFF" diff --git a/pkgs/applications/science/math/caffe/default.nix b/pkgs/applications/science/math/caffe/default.nix index 153ebaa441f..e8171bcb256 100644 --- a/pkgs/applications/science/math/caffe/default.nix +++ b/pkgs/applications/science/math/caffe/default.nix @@ -3,7 +3,7 @@ , fetchurl , cmake , boost -, google-gflags +, gflags , glog , hdf5-cpp , opencv3 @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { ++ ["-DUSE_LEVELDB=${toggle leveldbSupport}"] ++ ["-DUSE_LMDB=${toggle lmdbSupport}"]; - buildInputs = [ boost google-gflags glog protobuf hdf5-cpp opencv3 openblas ] + buildInputs = [ boost gflags glog protobuf hdf5-cpp opencv3 openblas ] ++ lib.optional cudaSupport cudatoolkit ++ lib.optional cudnnSupport cudnn ++ lib.optional lmdbSupport lmdb diff --git a/pkgs/applications/science/misc/openmvs/default.nix b/pkgs/applications/science/misc/openmvs/default.nix index f44d07d36db..43d57feab71 100644 --- a/pkgs/applications/science/misc/openmvs/default.nix +++ b/pkgs/applications/science/misc/openmvs/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchFromGitHub, pkgconfig, cmake , eigen, opencv, ceres-solver, cgal, boost, vcg -, gmp, mpfr, glog, google-gflags, libjpeg_turbo }: +, gmp, mpfr, glog, gflags, libjpeg_turbo }: stdenv.mkDerivation rec { name = "openmvs-unstable-2018-05-26"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "12dgkwwfdp24581y3i41gsd1k9hq0aw917q0ja5s0if4qbmc8pni"; }; - buildInputs = [ eigen opencv ceres-solver cgal boost vcg gmp mpfr glog google-gflags libjpeg_turbo ]; + buildInputs = [ eigen opencv ceres-solver cgal boost vcg gmp mpfr glog gflags libjpeg_turbo ]; nativeBuildInputs = [ cmake pkgconfig ]; @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { "-DCERES_DIR=${ceres-solver}/lib/cmake/Ceres/" ) ''; - + postFixup = '' rp=$(patchelf --print-rpath $out/bin/DensifyPointCloud) patchelf --set-rpath $rp:$out/lib/OpenMVS $out/bin/DensifyPointCloud @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { rp=$(patchelf --print-rpath $out/bin/TextureMesh) patchelf --set-rpath $rp:$out/lib/OpenMVS $out/bin/TextureMesh ''; - + cmakeDir = "./"; dontUseCmakeBuildDir = true; diff --git a/pkgs/development/libraries/ceres-solver/default.nix b/pkgs/development/libraries/ceres-solver/default.nix index 043b9e263d8..52e0f06eeec 100644 --- a/pkgs/development/libraries/ceres-solver/default.nix +++ b/pkgs/development/libraries/ceres-solver/default.nix @@ -2,13 +2,13 @@ , eigen , fetchurl , cmake -, google-gflags +, gflags , glog , runTests ? false }: -# google-gflags is required to run tests -assert runTests -> google-gflags != null; +# gflags is required to run tests +assert runTests -> gflags != null; stdenv.mkDerivation rec { name = "ceres-solver-${version}"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ eigen glog ] - ++ stdenv.lib.optional runTests google-gflags; + ++ stdenv.lib.optional runTests gflags; # The Basel BUILD file conflicts with the cmake build directory on # case-insensitive filesystems, eg. darwin. diff --git a/pkgs/development/libraries/folly/default.nix b/pkgs/development/libraries/folly/default.nix index 61a96af618a..78e32192fb4 100644 --- a/pkgs/development/libraries/folly/default.nix +++ b/pkgs/development/libraries/folly/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchFromGitHub, cmake, boost, libevent, double-conversion, glog -, google-gflags, libiberty, openssl }: +, gflags, libiberty, openssl }: stdenv.mkDerivation rec { name = "folly-${version}"; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { boost double-conversion glog - google-gflags + gflags libevent libiberty openssl diff --git a/pkgs/development/libraries/google-gflags/default.nix b/pkgs/development/libraries/gflags/default.nix similarity index 100% rename from pkgs/development/libraries/google-gflags/default.nix rename to pkgs/development/libraries/gflags/default.nix diff --git a/pkgs/development/libraries/kinetic-cpp-client/default.nix b/pkgs/development/libraries/kinetic-cpp-client/default.nix index 0fa46dde23e..1ebf2c2e21e 100644 --- a/pkgs/development/libraries/kinetic-cpp-client/default.nix +++ b/pkgs/development/libraries/kinetic-cpp-client/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchgit, fetchurl, cmake, protobuf, libunwind, openssl, glog -, google-gflags, gmock, gtest +, gflags, gmock, gtest }: let @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ''; nativeBuildInputs = [ cmake protobuf ]; - buildInputs = [ libunwind glog google-gflags gmock gtest ]; + buildInputs = [ libunwind glog gflags gmock gtest ]; # The headers and library include from these and there is no provided pc file propagatedBuildInputs = [ protobuf openssl ]; diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index 43a68abf825..7055645fe89 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -1,7 +1,7 @@ { lib, stdenv , fetchFromGitHub, fetchpatch , cmake, pkgconfig, unzip, zlib, pcre, hdf5 -, glog, boost, google-gflags, protobuf +, glog, boost, gflags, protobuf , config , enableJPEG ? true, libjpeg @@ -179,7 +179,7 @@ stdenv.mkDerivation rec { ''; buildInputs = - [ zlib pcre hdf5 glog boost google-gflags ] + [ zlib pcre hdf5 glog boost gflags ] ++ lib.optional useSystemProtobuf protobuf ++ lib.optional enablePython pythonPackages.python ++ lib.optional enableGtk2 gtk2 diff --git a/pkgs/development/libraries/opencv/4.x.nix b/pkgs/development/libraries/opencv/4.x.nix index f96e6bf94bb..85bb2f1effd 100644 --- a/pkgs/development/libraries/opencv/4.x.nix +++ b/pkgs/development/libraries/opencv/4.x.nix @@ -1,7 +1,7 @@ { lib, stdenv , fetchurl, fetchFromGitHub , cmake, pkgconfig, unzip, zlib, pcre, hdf5 -, glog, boost, google-gflags, protobuf +, glog, boost, gflags, protobuf , config , enableJPEG ? true, libjpeg @@ -187,7 +187,7 @@ stdenv.mkDerivation rec { ''; buildInputs = - [ zlib pcre hdf5 glog boost google-gflags protobuf ] + [ zlib pcre hdf5 glog boost gflags protobuf ] ++ lib.optional enablePython pythonPackages.python ++ lib.optional enableGtk2 gtk2 ++ lib.optional enableGtk3 gtk3 diff --git a/pkgs/development/libraries/science/math/caffe2/default.nix b/pkgs/development/libraries/science/math/caffe2/default.nix index d568e945202..4746f77a216 100644 --- a/pkgs/development/libraries/science/math/caffe2/default.nix +++ b/pkgs/development/libraries/science/math/caffe2/default.nix @@ -1,6 +1,6 @@ { stdenv, lib, config, fetchFromGitHub , cmake -, glog, google-gflags, gtest +, glog, gflags, gtest , protobuf, snappy , python, future, six, python-protobuf, numpy, pydot , eigen @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { outputs = [ "bin" "out" ]; propagatedBuildOutputs = [ ]; # otherwise propagates out -> bin cycle - buildInputs = [ glog google-gflags protobuf snappy eigen ] + buildInputs = [ glog gflags protobuf snappy eigen ] ++ lib.optional useCuda cudatoolkit ++ lib.optional useCudnn cudnn ++ lib.optional useOpenmp openmp diff --git a/pkgs/development/libraries/science/math/or-tools/default.nix b/pkgs/development/libraries/science/math/or-tools/default.nix index ba6827bf694..2dd63ebfc85 100644 --- a/pkgs/development/libraries/science/math/or-tools/default.nix +++ b/pkgs/development/libraries/science/math/or-tools/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, abseil-cpp, google-gflags, which +{ stdenv, fetchFromGitHub, cmake, abseil-cpp, gflags, which , lsb-release, glog, protobuf, cbc, zlib , ensureNewerSourcesForZipFilesHook, python, swig , pythonProtobuf }: @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { configurePhase = '' cat < Makefile.local UNIX_ABSL_DIR=${abseil-cpp} - UNIX_GFLAGS_DIR=${google-gflags} + UNIX_GFLAGS_DIR=${gflags} UNIX_GLOG_DIR=${glog} UNIX_PROTOBUF_DIR=${protobuf} UNIX_CBC_DIR=${cbc} @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { python.pkgs.setuptools python.pkgs.wheel ]; propagatedBuildInputs = [ - abseil-cpp google-gflags glog protobuf cbc + abseil-cpp gflags glog protobuf cbc pythonProtobuf python.pkgs.six ]; diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix index 80341e88dd0..c34b53c1e62 100644 --- a/pkgs/tools/system/osquery/default.nix +++ b/pkgs/tools/system/osquery/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, fetchFromGitHub, pkgconfig, cmake, python , udev, audit, aws-sdk-cpp, cryptsetup, lvm2, libgcrypt, libarchive , libgpgerror, libuuid, iptables, dpkg, lzma, bzip2, rpm -, beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, google-gflags +, beecrypt, augeas, libxml2, sleuthkit, yara, lldpd, gflags , thrift, boost, rocksdb_lite, glog, gbenchmark, snappy , openssl, file, doxygen , gtest, fpm, zstd, rdkafka, rapidjson, fetchgit, fetchurl, libelfin @@ -53,7 +53,7 @@ let # filter out static linking configuration to avoid that the library will # be linked both statically and dynamically. - gflags = google-gflags.overrideAttrs (old: { + gflags = gflags.overrideAttrs (old: { cmakeFlags = stdenv.lib.filter (f: (builtins.match ".*STATIC.*" f) == null) old.cmakeFlags; }); }; diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index fd873605056..db980c05fb0 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -123,6 +123,7 @@ mapAliases ({ go-pup = pup; # added 2017-12-19 gobjectIntrospection = gobject-introspection; # added 2018-12-02 goimports = gotools; # added 2018-09-16 + google-gflags = gflags; # added 2019-07-25 googleAuthenticator = google-authenticator; # added 2016-10-16 grantlee5 = libsForQt5.grantlee; # added 2015-12-19 gsettings_desktop_schemas = gsettings-desktop-schemas; # added 2018-02-25 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e4c044e5312..c94c2999c17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1263,7 +1263,7 @@ in cdemu-client = callPackage ../misc/emulators/cdemu/client.nix { }; ceres-solver = callPackage ../development/libraries/ceres-solver { - google-gflags = null; # only required for examples/tests + gflags = null; # only required for examples/tests }; gcdemu = callPackage ../misc/emulators/cdemu/gui.nix { }; @@ -10776,8 +10776,7 @@ in goocanvas2 = callPackage ../development/libraries/goocanvas/2.x.nix { }; goocanvasmm2 = callPackage ../development/libraries/goocanvasmm { }; - google-gflags = callPackage ../development/libraries/google-gflags { }; - gflags = google-gflags; # TODO: move to aliases.nix + gflags = callPackage ../development/libraries/gflags { }; gperftools = callPackage ../development/libraries/gperftools { }; From 6d6e2181d66c48a4cbb6ed49d74459308df3854c Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 25 Jul 2019 09:27:43 +0000 Subject: [PATCH 1030/1611] gflags: update pname --- pkgs/development/libraries/gflags/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gflags/default.nix b/pkgs/development/libraries/gflags/default.nix index fefc3a8b4b8..2e818ea94ea 100644 --- a/pkgs/development/libraries/gflags/default.nix +++ b/pkgs/development/libraries/gflags/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, cmake }: stdenv.mkDerivation rec { - name = "google-gflags-${version}"; + pname = "gflags"; version = "2.2.2"; src = fetchFromGitHub { From a8f174ff7ceb3228175eed982ad1e86749654b8c Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Thu, 25 Jul 2019 02:43:45 -0700 Subject: [PATCH 1031/1611] buildBazelPackage: autodetect nix toolchain instead of Xcode on Darwin (#65308) * buildBazelPackage: autodetect nix toolchain instead of Xcode on Darwin * do not export the variables outside of Darwin * remove unecessary parens * move comment within the darwin check --- .../build-bazel-package/default.nix | 37 ++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/build-bazel-package/default.nix b/pkgs/build-support/build-bazel-package/default.nix index 4e19b244f3c..72725f9818c 100644 --- a/pkgs/build-support/build-bazel-package/default.nix +++ b/pkgs/build-support/build-bazel-package/default.nix @@ -1,4 +1,8 @@ -{ stdenv, bazel, cacert }: +{ stdenv +, bazel +, cacert +, lib +}: args@{ name, bazelFlags ? [], bazelTarget, buildAttrs, fetchAttrs, ... }: @@ -109,6 +113,31 @@ in stdenv.mkDerivation (fBuildAttrs // { buildPhase = fBuildAttrs.buildPhase or '' runHook preBuild + '' + lib.optionalString stdenv.isDarwin '' + # Bazel sandboxes the execution of the tools it invokes, so even though we are + # calling the correct nix wrappers, the values of the environment variables + # the wrappers are expecting will not be set. So instead of relying on the + # wrappers picking them up, pass them in explicitly via `--copt`, `--linkopt` + # and related flags. + # + copts=() + host_copts=() + for flag in $NIX_CFLAGS_COMPILE; do + copts+=( "--copt=$flag" ) + host_copts+=( "--host_copt=$flag" ) + done + for flag in $NIX_CXXSTDLIB_COMPILE; do + copts+=( "--copt=$flag" ) + host_copts+=( "--host_copt=$flag" ) + done + linkopts=() + host_linkopts=() + for flag in $NIX_LD_FLAGS; do + linkopts+=( "--linkopt=$flag" ) + host_linkopts+=( "--host_linkopt=$flag" ) + done + '' + '' + BAZEL_USE_CPP_ONLY_TOOLCHAIN=1 \ USER=homeless-shelter \ bazel \ @@ -116,6 +145,12 @@ in stdenv.mkDerivation (fBuildAttrs // { --output_user_root="$bazelUserRoot" \ build \ -j $NIX_BUILD_CORES \ + '' + lib.optionalString stdenv.isDarwin '' + "''${copts[@]}" \ + "''${host_copts[@]}" \ + "''${linkopts[@]}" \ + "''${host_linkopts[@]}" \ + '' + '' $bazelFlags \ $bazelTarget From 3d00d8e4eebbaf41b28163aa1bcf344084b084a4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Jul 2019 11:51:55 +0200 Subject: [PATCH 1032/1611] pythonPackages.pyyaml_3: init , instead of multiple pyyaml overrides Temporary attribute until we can get rid of it everywhere. This was triggered due to the libyaml 0.2.2 incompatibilty requiring patches and still not building. --- .../tools/build-managers/conan/default.nix | 8 +------- pkgs/servers/home-assistant/appdaemon.nix | 9 --------- pkgs/servers/home-assistant/default.nix | 8 +++++--- pkgs/servers/home-assistant/esphome.nix | 7 ------- pkgs/tools/admin/awscli/default.nix | 13 +------------ pkgs/top-level/python-packages.nix | 15 +++++++++++++++ 6 files changed, 22 insertions(+), 38 deletions(-) diff --git a/pkgs/development/tools/build-managers/conan/default.nix b/pkgs/development/tools/build-managers/conan/default.nix index 9c5d22ee07b..ce7b0871044 100644 --- a/pkgs/development/tools/build-managers/conan/default.nix +++ b/pkgs/development/tools/build-managers/conan/default.nix @@ -37,13 +37,7 @@ let newPython = python3.override { sha256 = "c0abe3218b86533cca287e7057a37481883c07acef7814b70583406938214cc8"; }; }); - pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec { - version = "3.13"; - src = oldAttrs.src.override { - inherit version; - sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"; - }; - }); + pyyaml = super.pyyaml_3; }; }; diff --git a/pkgs/servers/home-assistant/appdaemon.nix b/pkgs/servers/home-assistant/appdaemon.nix index 82df1f6b988..5f8884cbd3b 100644 --- a/pkgs/servers/home-assistant/appdaemon.nix +++ b/pkgs/servers/home-assistant/appdaemon.nix @@ -38,15 +38,6 @@ let sha256 = "0f390693f46173d8ffb95669acbb0e2a3ec54ecce676703510ad47f1a6d9dc83"; }; }); - - pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec { - version = "5.1"; - src = oldAttrs.src.override { - inherit version; - sha256 = "436bc774ecf7c103814098159fbb84c2715d25980175292c648f2da143909f95"; - }; - }); - }; }; diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index d778e8df18f..511aff05dea 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -36,8 +36,6 @@ let "03f38115dccb266dd96538f94067442a877932c2322661bdc5bf2502c76658af") (mkOverride "python-slugify" "3.0.2" "57163ffb345c7e26063435a27add1feae67fa821f1ef4b2f292c25847575d758") - (mkOverride "pyyaml" "3.13" - "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf") (mkOverride "requests" "2.21.0" "502a824f31acdacb3a35b6690b5fbf0bc41d63a24a45c4004352b0242707598e") (mkOverride "ruamel_yaml" "0.15.94" @@ -63,6 +61,10 @@ let }; }) + (self: super: { + pyyaml = super.pyyaml_3; + }) + # hass-frontend does not exist in python3.pkgs (self: super: { hass-frontend = self.callPackage ./frontend.nix { }; @@ -78,7 +80,7 @@ let }; }); }; - + py = python3.override { # Put packageOverrides at the start so they are applied after defaultOverrides packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ packageOverrides ] ++ defaultOverrides); diff --git a/pkgs/servers/home-assistant/esphome.nix b/pkgs/servers/home-assistant/esphome.nix index 895b089f991..bd657067939 100644 --- a/pkgs/servers/home-assistant/esphome.nix +++ b/pkgs/servers/home-assistant/esphome.nix @@ -3,13 +3,6 @@ let python = python3.override { packageOverrides = self: super: { - pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec { - version = "5.1"; - src = oldAttrs.src.override { - inherit version; - sha256 = "436bc774ecf7c103814098159fbb84c2715d25980175292c648f2da143909f95"; - }; - }); tornado = super.tornado.overridePythonAttrs (oldAttrs: rec { version = "5.1.1"; src = oldAttrs.src.override { diff --git a/pkgs/tools/admin/awscli/default.nix b/pkgs/tools/admin/awscli/default.nix index f8a68bc6f64..b07db447262 100644 --- a/pkgs/tools/admin/awscli/default.nix +++ b/pkgs/tools/admin/awscli/default.nix @@ -22,18 +22,7 @@ let sha256 = "48eb22f4f8461b1df5734a074b57042430fb06e1d61bd1e11b078c0fe6d7a1f1"; }; }); - pyyaml = super.pyyaml.overridePythonAttrs (oldAttrs: rec { - version = "3.13"; - src = oldAttrs.src.override { - inherit version; - sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"; - }; - # https://github.com/yaml/pyyaml/issues/298#issuecomment-511990948 - patches = lib.singleton (fetchpatch { - url = "https://github.com/yaml/pyyaml/commit/c5b135fe39d41cffbdc006f28ccb2032df6005e0.patch"; - sha256 = "0x1v45rkmj194c41d1nqi3ihj9z4rsy8zvpfcd8p960g1fia7fhn"; - }); - }); + pyyaml = super.pyyaml_3; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8c932c721ae..1151e61d7b5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4434,6 +4434,21 @@ in { pyyaml = callPackage ../development/python-modules/pyyaml { }; + pyyaml_3 = (callPackage ../development/python-modules/pyyaml { }).overridePythonAttrs (oldAttrs: rec { + version = "3.13"; + src = oldAttrs.src.override { + inherit version; + sha256 = "3ef3092145e9b70e3ddd2c7ad59bdd0252a94dfe3949721633e41344de00a6bf"; + }; + # https://github.com/yaml/pyyaml/issues/298#issuecomment-511990948 + patches = singleton (pkgs.fetchpatch { + url = "https://github.com/yaml/pyyaml/commit/c5b135fe39d41cffbdc006f28ccb2032df6005e0.patch"; + sha256 = "0x1v45rkmj194c41d1nqi3ihj9z4rsy8zvpfcd8p960g1fia7fhn"; + }); + # https://github.com/yaml/pyyaml/issues/298#issuecomment-511990948 + doCheck = false; + }); + rabbitpy = callPackage ../development/python-modules/rabbitpy { }; rasterio = callPackage ../development/python-modules/rasterio { From e7e70b7073ca774f2f0dfeace5511d29c75d3cec Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 22 Jun 2019 10:31:51 +0200 Subject: [PATCH 1033/1611] bazel: add fixed output test case Feels like a horrible hack, but it should make sure that downstream hashes are preserved between bazel versions. --- .../tools/build-managers/bazel/default.nix | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index 1a383b76d5d..a8c4ffcb85b 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -1,4 +1,5 @@ -{ stdenv, callPackage, lib, fetchurl, fetchFromGitHub, runCommand, runCommandCC, makeWrapper +{ stdenv, callPackage, lib, fetchurl, fetchFromGitHub +, runCommand, runCommandCC, makeWrapper, recurseIntoAttrs # this package (through the fixpoint glass) , bazel , lr, xe, zip, unzip, bash, writeCBin, coreutils @@ -11,6 +12,8 @@ , buildJdk, runJdk , buildJdkName , runtimeShell +# Downstream packages for tests +, bazel-watcher # Always assume all markers valid (don't redownload dependencies). # Also, don't clean up environment variables. , enableNixHacks ? false @@ -221,10 +224,18 @@ stdenv.mkDerivation rec { pythonBinPath = callPackage ./python-bin-path-test.nix { inherit runLocal bazelTest; }; bashToolsWithNixHacks = callPackage ./bash-tools-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; + cppWithNixHacks = callPackage ./cpp-test.nix { inherit runLocal bazelTest bazel-examples; bazel = bazelWithNixHacks; }; javaWithNixHacks = callPackage ./java-test.nix { inherit runLocal bazelTest bazel-examples; bazel = bazelWithNixHacks; }; protobufWithNixHacks = callPackage ./protobuf-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; pythonBinPathWithNixHacks = callPackage ./python-bin-path-test.nix { inherit runLocal bazelTest; bazel = bazelWithNixHacks; }; + + # downstream packages using buildBazelPackage + # fixed-output hashes of the fetch phase need to be spot-checked manually + downstream = recurseIntoAttrs { + inherit (python3.pkgs) dm-sonnet; + inherit bazel-watcher; + }; }; # update the list of workspace dependencies From eab06d4517f126e6ed22056268eacad32040f09e Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 23 Jul 2019 11:56:42 +0200 Subject: [PATCH 1034/1611] python-modules/dm-sonnet: update fixed-output hash --- pkgs/development/python-modules/dm-sonnet/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dm-sonnet/default.nix b/pkgs/development/python-modules/dm-sonnet/default.nix index c10dafdabc6..ed6bff96d73 100644 --- a/pkgs/development/python-modules/dm-sonnet/default.nix +++ b/pkgs/development/python-modules/dm-sonnet/default.nix @@ -36,7 +36,7 @@ let bazelTarget = ":install"; fetchAttrs = { - sha256 = "0f2rlzrlazmgjrsin8vq3jfv431cc8sx8lxsr6x4wgd4jx5d1zzy"; + sha256 = "141k2caj5hlk31gnqryp6w2mzyz4i5s1rf8f3qr18isxy235k3w6"; }; bazelFlags = [ From 63e0b8b3f96c04344de637fdc968fbcd19864627 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Tue, 23 Jul 2019 12:05:14 +0200 Subject: [PATCH 1035/1611] bazel: execute dm-sonnet test only on linux --- pkgs/development/tools/build-managers/bazel/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index a8c4ffcb85b..3a94b335522 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -232,10 +232,13 @@ stdenv.mkDerivation rec { # downstream packages using buildBazelPackage # fixed-output hashes of the fetch phase need to be spot-checked manually - downstream = recurseIntoAttrs { - inherit (python3.pkgs) dm-sonnet; + downstream = recurseIntoAttrs ({ inherit bazel-watcher; - }; + } + // (lib.optionalAttrs stdenv.isLinux { + # dm-sonnet is only packaged for linux + dm-sonnet-linux = python3.pkgs.dm-sonnet; + })); }; # update the list of workspace dependencies From fdee6f4fae81addf74c4dfe48ff4f1e512e2a7c3 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Thu, 25 Jul 2019 11:49:23 +0200 Subject: [PATCH 1036/1611] bazel: disable dm-sonnet downstream test --- pkgs/development/tools/build-managers/bazel/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index 3a94b335522..8c19c0021d1 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -235,9 +235,10 @@ stdenv.mkDerivation rec { downstream = recurseIntoAttrs ({ inherit bazel-watcher; } - // (lib.optionalAttrs stdenv.isLinux { # dm-sonnet is only packaged for linux - dm-sonnet-linux = python3.pkgs.dm-sonnet; + // (lib.optionalAttrs stdenv.isLinux { + # TODO(timokau) dm-sonnet is broken currently + # dm-sonnet-linux = python3.pkgs.dm-sonnet; })); }; From 1d86714a2b6a9737104a06a27b7564c2c775c6ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 24 Jul 2019 13:41:22 +0100 Subject: [PATCH 1037/1611] nixos/zfs: add trim service Introduces a trim timer similar to the fstrim service. According to zpool(8) for consumer hardware periodic manual TRIM is preferred over automatic TRIM that ZFS implements. The period of one week is based on recommendations of fstrim. --- nixos/modules/tasks/filesystems/zfs.nix | 39 ++++++++++++++++++++----- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index f7f07bad952..ac06b6caee3 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -1,8 +1,6 @@ { config, lib, pkgs, utils, ... }: # -# todo: -# - crontab for scrubs, etc -# - zfs tunables +# TODO: zfs tunables with utils; with lib; @@ -13,6 +11,7 @@ let cfgSnapshots = config.services.zfs.autoSnapshot; cfgSnapFlags = cfgSnapshots.flags; cfgScrub = config.services.zfs.autoScrub; + cfgTrim = config.services.zfs.trim; inInitrd = any (fs: fs == "zfs") config.boot.initrd.supportedFilesystems; inSystem = any (fs: fs == "zfs") config.boot.supportedFilesystems; @@ -268,14 +267,26 @@ in }; }; - services.zfs.autoScrub = { - enable = mkOption { - default = false; - type = types.bool; + services.zfs.trim = { + enable = mkEnableOption "Enables periodic TRIM on all ZFS pools."; + + interval = mkOption { + default = "weekly"; + type = types.str; + example = "daily"; description = '' - Enables periodic scrubbing of ZFS pools. + How often we run trim. For most desktop and server systems + a sufficient trimming frequency is once a week. + + The format is described in + systemd.time + 7. ''; }; + }; + + services.zfs.autoScrub = { + enable = mkEnableOption "Enables periodic scrubbing of ZFS pools."; interval = mkOption { default = "Sun, 02:00"; @@ -535,5 +546,17 @@ in }; }; }) + + (mkIf cfgTrim.enable { + systemd.services.zpool-trim = { + description = "ZFS pools trim"; + after = [ "zfs-import.target" ]; + path = [ packages.zfsUser ]; + startAt = cfgTrim.interval; + script = '' + zpool list -H -o name | xargs -n1 zpool trim + ''; + }; + }) ]; } From e2173096b31c4d7bb2e418b652548f79c8e0cb14 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 25 Jul 2019 15:32:50 +0300 Subject: [PATCH 1038/1611] dovecot: 2.3.7 > 2.3.7.1 --- .../mail/dovecot/2.2.x-module_dir.patch | 53 ++++++++++++------- pkgs/servers/mail/dovecot/default.nix | 4 +- 2 files changed, 35 insertions(+), 22 deletions(-) diff --git a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch index 1914933c558..422bfad92e6 100644 --- a/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch +++ b/pkgs/servers/mail/dovecot/2.2.x-module_dir.patch @@ -1,8 +1,8 @@ diff --git a/src/auth/main.c b/src/auth/main.c -index 5a87c57..74bff52 100644 +index 2dbf9e1..b1e778a 100644 --- a/src/auth/main.c +++ b/src/auth/main.c -@@ -194,7 +194,7 @@ static void main_preinit(void) +@@ -192,7 +192,7 @@ static void main_preinit(void) mod_set.debug = global_auth_settings->debug; mod_set.filter_callback = auth_module_filter; @@ -11,7 +11,7 @@ index 5a87c57..74bff52 100644 module_dir_init(modules); if (!worker) -@@ -225,7 +225,7 @@ void auth_module_load(const char *names) +@@ -223,7 +223,7 @@ void auth_module_load(const char *names) mod_set.debug = global_auth_settings->debug; mod_set.ignore_missing = TRUE; @@ -21,19 +21,19 @@ index 5a87c57..74bff52 100644 module_dir_init(modules); } diff --git a/src/config/all-settings.c b/src/config/all-settings.c -index de223a5..2df2d21 100644 +index 4a2ab53..5057d63 100644 --- a/src/config/all-settings.c +++ b/src/config/all-settings.c -@@ -836,7 +836,7 @@ static const struct mail_user_settings mail_user_default_settings = { +@@ -1079,7 +1079,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", - .mail_log_prefix = "%s(%u): ", + .mail_log_prefix = "%s(%u)<%{pid}><%{session}>: ", -@@ -3545,7 +3545,7 @@ const struct doveadm_settings doveadm_default_settings = { +@@ -4723,7 +4723,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", @@ -43,12 +43,12 @@ index de223a5..2df2d21 100644 .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", diff --git a/src/config/config-parser.c b/src/config/config-parser.c -index 2a5009a..134f92b 100644 +index 6894123..07e9fec 100644 --- a/src/config/config-parser.c +++ b/src/config/config-parser.c -@@ -1047,7 +1047,7 @@ void config_parse_load_modules(void) +@@ -1077,7 +1077,7 @@ void config_parse_load_modules(void) - memset(&mod_set, 0, sizeof(mod_set)); + i_zero(&mod_set); mod_set.abi_version = DOVECOT_ABI_VERSION; - modules = module_dir_load(CONFIG_MODULE_DIR, NULL, &mod_set); + modules = module_dir_load("/etc/dovecot/modules/settings", NULL, &mod_set); @@ -56,10 +56,10 @@ index 2a5009a..134f92b 100644 i_array_init(&new_roots, 64); diff --git a/src/dict/main.c b/src/dict/main.c -index e6c945e..06ad6c5 100644 +index 722ed02..4ed12ae 100644 --- a/src/dict/main.c +++ b/src/dict/main.c -@@ -62,7 +62,7 @@ static void main_init(void) +@@ -104,7 +104,7 @@ static void main_init(void) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.require_init_funcs = TRUE; @@ -69,10 +69,10 @@ index e6c945e..06ad6c5 100644 /* Register only after loading modules. They may contain SQL drivers, diff --git a/src/doveadm/doveadm-settings.c b/src/doveadm/doveadm-settings.c -index df12284..19c18da 100644 +index 88da40c..141ed05 100644 --- a/src/doveadm/doveadm-settings.c +++ b/src/doveadm/doveadm-settings.c -@@ -81,7 +81,7 @@ const struct doveadm_settings doveadm_default_settings = { +@@ -86,7 +86,7 @@ const struct doveadm_settings doveadm_default_settings = { .base_dir = PKG_RUNDIR, .libexec_dir = PKG_LIBEXECDIR, .mail_plugins = "", @@ -82,7 +82,7 @@ index df12284..19c18da 100644 .auth_socket_path = "auth-userdb", .doveadm_socket_path = "doveadm-server", diff --git a/src/lib-fs/fs-api.c b/src/lib-fs/fs-api.c -index b50fbe0..ace3aff 100644 +index a939f61..846cf86 100644 --- a/src/lib-fs/fs-api.c +++ b/src/lib-fs/fs-api.c @@ -114,7 +114,7 @@ static void fs_class_try_load_plugin(const char *driver) @@ -95,10 +95,10 @@ index b50fbe0..ace3aff 100644 module_dir_init(fs_modules); diff --git a/src/lib-ssl-iostream/iostream-ssl.c b/src/lib-ssl-iostream/iostream-ssl.c -index a0659ab..dba3729 100644 +index f857ec9..0d1023b 100644 --- a/src/lib-ssl-iostream/iostream-ssl.c +++ b/src/lib-ssl-iostream/iostream-ssl.c -@@ -34,7 +34,7 @@ static int ssl_module_load(const char **error_r) +@@ -53,7 +53,7 @@ int ssl_module_load(const char **error_r) mod_set.abi_version = DOVECOT_ABI_VERSION; mod_set.setting_name = ""; mod_set.require_init_funcs = TRUE; @@ -108,15 +108,28 @@ index a0659ab..dba3729 100644 &mod_set, error_r) < 0) return -1; diff --git a/src/lib-storage/mail-storage-settings.c b/src/lib-storage/mail-storage-settings.c -index e2233bf..bbf981e 100644 +index b314b52..7055094 100644 --- a/src/lib-storage/mail-storage-settings.c +++ b/src/lib-storage/mail-storage-settings.c -@@ -274,7 +274,7 @@ static const struct mail_user_settings mail_user_default_settings = { +@@ -337,7 +337,7 @@ static const struct mail_user_settings mail_user_default_settings = { .last_valid_gid = 0, .mail_plugins = "", - .mail_plugin_dir = MODULEDIR, + .mail_plugin_dir = "/etc/dovecot/modules", - .mail_log_prefix = "%s(%u): ", + .mail_log_prefix = "%s(%u)<%{pid}><%{session}>: ", +diff --git a/src/lmtp/lmtp-settings.c b/src/lmtp/lmtp-settings.c +index 1666ec9..8a27200 100644 +--- a/src/lmtp/lmtp-settings.c ++++ b/src/lmtp/lmtp-settings.c +@@ -89,7 +89,7 @@ static const struct lmtp_settings lmtp_default_settings = { + .login_trusted_networks = "", + + .mail_plugins = "", +- .mail_plugin_dir = MODULEDIR, ++ .mail_plugin_dir = "/etc/dovecot/modules", + }; + + static const struct setting_parser_info *lmtp_setting_dependencies[] = { diff --git a/pkgs/servers/mail/dovecot/default.nix b/pkgs/servers/mail/dovecot/default.nix index 17286f8ec24..69c1a85760b 100644 --- a/pkgs/servers/mail/dovecot/default.nix +++ b/pkgs/servers/mail/dovecot/default.nix @@ -9,7 +9,7 @@ }: stdenv.mkDerivation rec { - name = "dovecot-2.3.7"; + name = "dovecot-2.3.7.1"; nativeBuildInputs = [ perl pkgconfig ]; buildInputs = @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://dovecot.org/releases/2.3/${name}.tar.gz"; - sha256 = "1al382ykm94if5agasb9h2442a8s7wn43hlwh292ir1rhnp5dq8i"; + sha256 = "1hq333vj4px4xa9djl8c1v3c8rac98v2mrb9vx1wisg6frpiv9f5"; }; enableParallelBuilding = true; From 4f38967ce2eab98cf1f35b9dd2f78b3bbba3d92a Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 25 Jul 2019 15:33:59 +0300 Subject: [PATCH 1039/1611] dovecot_pigeonhole: 0.5.6 > 0.5.7.1 --- pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix b/pkgs/servers/mail/dovecot/plugins/pigeonhole/default.nix index 6a812863f05..30c6f2f44dd 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.6"; + version = "0.5.7.1"; src = fetchurl { url = "https://pigeonhole.dovecot.org/releases/2.3/dovecot-2.3-pigeonhole-${version}.tar.gz"; - sha256 = "1f7m2213w4hvqr3lvr03bv4lh92k35gxl01c2x8q8akk7viffbvw"; + sha256 = "0a10mam68pmdh3fw8fnv5jff6xj1k770hvadym2c39vm3x6b4w1j"; }; buildInputs = [ dovecot openssl ]; From 5f33bcd953a17c903e407e6a5fce51039bae239c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Thu, 25 Jul 2019 15:37:32 +0200 Subject: [PATCH 1040/1611] matrix-synapse: fix documentation better --- nixos/doc/manual/configuration/matrix.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/configuration/matrix.xml b/nixos/doc/manual/configuration/matrix.xml index 40dd1406bb6..ef8d5cbda88 100644 --- a/nixos/doc/manual/configuration/matrix.xml +++ b/nixos/doc/manual/configuration/matrix.xml @@ -95,7 +95,7 @@ in { # forward all Matrix API calls to the synapse Matrix homeserver locations."/_matrix" = { - proxyPass = "http://[::1]:8008/_matrix"; + proxyPass = "http://[::1]:8008"; # without a trailing / }; }; }; From f403684eee39400d78158e713b56360eb4f0d884 Mon Sep 17 00:00:00 2001 From: PsyanticY Date: Wed, 24 Jul 2019 11:02:10 +0100 Subject: [PATCH 1041/1611] vault-bin: init at 1.1.3 This binray contain the UI part of HashiCorp Vault that we were not able to build it due to the need to generate a very big yarn file. #49082 --- pkgs/tools/security/vault/vault-bin.nix | 57 +++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 59 insertions(+) create mode 100644 pkgs/tools/security/vault/vault-bin.nix diff --git a/pkgs/tools/security/vault/vault-bin.nix b/pkgs/tools/security/vault/vault-bin.nix new file mode 100644 index 00000000000..7befface3b5 --- /dev/null +++ b/pkgs/tools/security/vault/vault-bin.nix @@ -0,0 +1,57 @@ +{ stdenv, fetchurl, unzip }: + +let + + version = "1.1.3"; + sources = let + + base = "https://releases.hashicorp.com/vault/${version}"; + + in { + "x86_64-linux" = fetchurl { + url = "${base}/vault_${version}_linux_amd64.zip"; + sha256 = "293b88f4d31f6bcdcc8b508eccb7b856a0423270adebfa0f52f04144c5a22ae0"; + }; + "i686-linux" = fetchurl { + url = "${base}/vault_${version}_linux_386.zip"; + sha256 = "9f2fb99e08fa3d25af1497516d08b5d2d8a73bcacd5354ddec024e9628795867"; + }; + "x86_64-darwin" = fetchurl { + url = "${base}/vault_${version}_darwin_amd64.zip"; + sha256 = "a0a7a242f8299ac4a00af8aa10ccedaf63013c8a068f56eadfb9d730b87155ea"; + }; + "i686-darwin" = fetchurl { + url = "${base}/vault_${version}_darwin_386.zip"; + sha256 = "50542cfb37abb06e8bb6b8ba41f5ca7d72a4d6a4396d4e3f4a8391bed14f63be"; + }; + "aarch64-linux" = fetchurl { + url = "${base}/vault_${version}_linux_arm64.zip"; + sha256 = "c243dce14b2e48e3667c2aa5b7fb37009dd7043b56032d6ebe50dd456715fd3f"; + }; + }; + +in + stdenv.mkDerivation { + + src = sources."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}"); + + name = "vault-bin-${version}"; + + nativeBuildInputs = [ unzip ]; + + unpackPhase = "unzip $src -d vault"; + + installPhase = '' + mkdir -p $out/bin $out/share/bash-completion/completions + mv vault/vault $out/bin + echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault + ''; + + meta = with stdenv.lib; { + homepage = https://www.vaultproject.io; + description = "A tool for managing secrets, this binary includes the UI"; + platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "i686-darwin" ]; + license = licenses.mpl20; + maintainers = with maintainers; [ offline psyanticy ]; + }; + } \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 79388cefe84..dedb6f870d2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24077,6 +24077,8 @@ in vault = callPackage ../tools/security/vault { }; + vault-bin = callPackage ../tools/security/vault/vault-bin.nix { }; + vaultenv = haskellPackages.vaultenv; vazir-fonts = callPackage ../data/fonts/vazir-fonts { }; From 795383204e2a63a41ca38c6ca021a97c7f5d1775 Mon Sep 17 00:00:00 2001 From: danbst Date: Thu, 25 Jul 2019 18:12:15 +0300 Subject: [PATCH 1042/1611] lib/types: change merge strategy for `str`, `int`, `float` and `enum` Change to `mergeEqualOption`. --- lib/types.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/types.nix b/lib/types.nix index b225119299d..e22bcd326c8 100644 --- a/lib/types.nix +++ b/lib/types.nix @@ -111,7 +111,7 @@ rec { name = "int"; description = "signed integer"; check = isInt; - merge = mergeOneOption; + merge = mergeEqualOption; }; # Specialized subdomains of int @@ -176,14 +176,14 @@ rec { name = "float"; description = "floating point number"; check = isFloat; - merge = mergeOneOption; + merge = mergeEqualOption; }; str = mkOptionType { name = "str"; description = "string"; check = isString; - merge = mergeOneOption; + merge = mergeEqualOption; }; strMatching = pattern: mkOptionType { @@ -243,7 +243,7 @@ rec { name = "path"; # Hacky: there is no ‘isPath’ primop. check = x: builtins.substring 0 1 (toString x) == "/"; - merge = mergeOneOption; + merge = mergeEqualOption; }; # drop this in the future: @@ -415,7 +415,7 @@ rec { name = "enum"; description = "one of ${concatMapStringsSep ", " show values}"; check = flip elem values; - merge = mergeOneOption; + merge = mergeEqualOption; functor = (defaultFunctor name) // { payload = values; binOp = a: b: unique (a ++ b); }; }; From f748b501e87cc102f86e2712bd407cb4042dfa45 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sat, 13 Jul 2019 15:00:43 +0200 Subject: [PATCH 1043/1611] yarn2nix-moretea: init at 2019-04-10 --- .../tools/yarn2nix-moretea/fetch-source.nix | 10 + .../tools/yarn2nix-moretea/generate.sh | 40 + .../yarn2nix-moretea/yarn2nix/LICENSE.txt | 674 +++ .../yarn2nix-moretea/yarn2nix/bin/yarn2nix.js | 90 + .../yarn2nix-moretea/yarn2nix/default.nix | 426 ++ .../yarn2nix/internal/fixup_bin.js | 53 + .../yarn2nix/internal/fixup_yarn_lock.js | 49 + .../yarn2nix/lib/fixPkgAddMissingSha1.js | 66 + .../yarn2nix/lib/generateNix.js | 124 + .../yarn2nix/lib/mapObjIndexedReturnArray.js | 21 + .../yarn2nix/lib/urlToName.js | 21 + .../yarn2nix/nix/expectShFunctions.sh | 30 + .../yarn2nix-moretea/yarn2nix/package.json | 47 + .../tools/yarn2nix-moretea/yarn2nix/yarn.lock | 3427 +++++++++++++++ .../tools/yarn2nix-moretea/yarn2nix/yarn.nix | 3813 +++++++++++++++++ pkgs/top-level/aliases.nix | 2 - pkgs/top-level/all-packages.nix | 2 + 17 files changed, 8893 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/tools/yarn2nix-moretea/fetch-source.nix create mode 100755 pkgs/development/tools/yarn2nix-moretea/generate.sh create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt create mode 100755 pkgs/development/tools/yarn2nix-moretea/yarn2nix/bin/yarn2nix.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix create mode 100755 pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_bin.js create mode 100755 pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/fixPkgAddMissingSha1.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/mapObjIndexedReturnArray.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/urlToName.js create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/nix/expectShFunctions.sh create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.lock create mode 100644 pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.nix diff --git a/pkgs/development/tools/yarn2nix-moretea/fetch-source.nix b/pkgs/development/tools/yarn2nix-moretea/fetch-source.nix new file mode 100644 index 00000000000..b15b40c4a04 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/fetch-source.nix @@ -0,0 +1,10 @@ +{ pkgs ? (import ../../../../. {}) +, fetchFromGitHub ? pkgs.fetchFromGitHub +}: + +fetchFromGitHub { + owner = "moretea"; + repo = "yarn2nix"; + rev = "3f2dbb08724bf8841609f932bfe1d61a78277232"; + sha256 = "142av7dwviapsnahgj8r6779gs2zr17achzhr8b97s0hsl08dcl2"; +} diff --git a/pkgs/development/tools/yarn2nix-moretea/generate.sh b/pkgs/development/tools/yarn2nix-moretea/generate.sh new file mode 100755 index 00000000000..bfe1cda5e71 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/generate.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash + +### +### This script runs 'nix-build' with ./fetch-source.nix and copies a subset +### of the resulting store path into the current working directory. +### +### To disable running chmod, you may set the environment +### variable "FIX_RIGHTS" to "no". +### + +set -euo pipefail + +# 'nix-build' command +NIX_BUILD_BIN="${NIX_BUILD_BIN:-"/usr/bin/env nix-build"}" + +# where to place the yarn2nix source +TARGET_DIR="${TARGET_DIR:-"./yarn2nix"}" + +# whether to run 'chmod -R u=rwX,g=rX,o-rwx' on copied files in $TARGET_DIR +FIX_RIGHTS="${FIX_RIGHTS:-"yes"}" + +fetch_git_source() { + [[ -f ./fetch-source.nix ]] && ret="$($NIX_BUILD_BIN --no-out-link ./fetch-source.nix)" && ec="$?" || ec="$?" + if [[ "$ec" == "0" ]]; then + echo "$ret" + else + printf "error: failed at 'fetch_git_source()' with '%s'" "$ret" + fi +} + +result="$(fetch_git_source)" +if [[ "$result" == "/nix/store"* ]]; then + mkdir -p "$TARGET_DIR" + cp -Rv \ + "${result}/"{bin,internal,lib,nix,default.nix,package.json,yarn.nix,yarn.lock,LICENSE.txt} \ + "$TARGET_DIR" + [[ "$FIX_RIGHTS" = "yes" ]] \ + && chmod -v "u=rwX,g=rX,o-rwx" -R \ + "$TARGET_DIR/"{bin,internal,lib,nix,default.nix,package.json,yarn.nix,yarn.lock,LICENSE.txt} +fi diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt new file mode 100644 index 00000000000..94a9ed024d3 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/LICENSE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/bin/yarn2nix.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/bin/yarn2nix.js new file mode 100755 index 00000000000..d4f160b124d --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/bin/yarn2nix.js @@ -0,0 +1,90 @@ +#!/usr/bin/env node + +const fs = require('fs') +const lockfile = require('@yarnpkg/lockfile') +const { docopt } = require('docopt') +const deepEqual = require('deep-equal') +const R = require('ramda') + +const fixPkgAddMissingSha1 = require('../lib/fixPkgAddMissingSha1') +const mapObjIndexedReturnArray = require('../lib/mapObjIndexedReturnArray') +const generateNix = require('../lib/generateNix') + +const USAGE = ` +Usage: yarn2nix [options] + +Options: + -h --help Shows this help. + --no-nix Hide the nix output + --no-patch Don't patch the lockfile if hashes are missing + --lockfile=FILE Specify path to the lockfile [default: ./yarn.lock]. + --builtin-fetchgit Use builtin fetchGit for git dependencies to support on-the-fly generation of yarn.nix without an internet connection +` + +const options = docopt(USAGE) + +const data = fs.readFileSync(options['--lockfile'], 'utf8') + +// json example: + +// { +// type:'success', +// object:{ +// 'abbrev@1':{ +// version:'1.0.9', +// resolved:'https://registry.yarnpkg.com/abbrev/-/abbrev-1.0.9.tgz#91b4792588a7738c25f35dd6f63752a2f8776135' +// }, +// 'shell-quote@git+https://github.com/srghma/node-shell-quote.git#without_unlicenced_jsonify':{ +// version:'1.6.0', +// resolved:'git+https://github.com/srghma/node-shell-quote.git#0aa381896e0cd7409ead15fd444f225807a61e0a' +// }, +// '@graphile/plugin-supporter@git+https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git':{ +// version:'1.6.0', +// resolved:'git+https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git#1234commit' +// }, +// } +// } + +const json = lockfile.parse(data) + +if (json.type !== 'success') { + throw new Error('yarn.lock parse error') +} + +// Check for missing hashes in the yarn.lock and patch if necessary + +const pkgs = R.pipe( + mapObjIndexedReturnArray((value, key) => ({ + ...value, + nameWithVersion: key, + })), + R.uniqBy(R.prop('resolved')), +)(json.object) + +const fixedPkgsPromises = R.map(fixPkgAddMissingSha1, pkgs) + +;(async () => { + const fixedPkgs = await Promise.all(fixedPkgsPromises) + + const origJson = lockfile.parse(data) + + if (!deepEqual(origJson, json)) { + console.error('found changes in the lockfile', options['--lockfile']) + + if (options['--no-patch']) { + console.error('...aborting') + process.exit(1) + } + + fs.writeFileSync(options['--lockfile'], lockfile.stringify(json.object)) + } + + if (!options['--no-nix']) { + // print to stdout + console.log(generateNix(fixedPkgs, options['--builtin-fetchgit'])) + } +})().catch(error => { + console.error(error) + + process.exit(1) +}) diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix new file mode 100644 index 00000000000..82e4402361d --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/default.nix @@ -0,0 +1,426 @@ +{ pkgs ? import {} +, nodejs ? pkgs.nodejs +, yarn ? pkgs.yarn +}: + +let + inherit (pkgs) stdenv lib fetchurl linkFarm callPackage git rsync makeWrapper; + + compose = f: g: x: f (g x); + id = x: x; + composeAll = builtins.foldl' compose id; +in rec { + # Export yarn again to make it easier to find out which yarn was used. + inherit yarn; + + # Re-export pkgs + inherit pkgs; + + unlessNull = item: alt: + if item == null then alt else item; + + reformatPackageName = pname: + let + # regex adapted from `validate-npm-package-name` + # will produce 3 parts e.g. + # "@someorg/somepackage" -> [ "@someorg/" "someorg" "somepackage" ] + # "somepackage" -> [ null null "somepackage" ] + parts = builtins.tail (builtins.match "^(@([^/]+)/)?([^/]+)$" pname); + # if there is no organisation we need to filter out null values. + non-null = builtins.filter (x: x != null) parts; + in builtins.concatStringsSep "-" non-null; + + # https://docs.npmjs.com/files/package.json#license + # TODO: support expression syntax (OR, AND, etc) + spdxLicense = licstr: + if licstr == "UNLICENSED" then + lib.licenses.unfree + else + lib.findFirst + (l: l ? spdxId && l.spdxId == licstr) + { shortName = licstr; } + (builtins.attrValues lib.licenses); + + # Generates the yarn.nix from the yarn.lock file + mkYarnNix = { yarnLock, flags ? [] }: + pkgs.runCommand "yarn.nix" {} + "${yarn2nix}/bin/yarn2nix --lockfile ${yarnLock} --no-patch --builtin-fetchgit ${lib.escapeShellArgs flags} > $out"; + + # Loads the generated offline cache. This will be used by yarn as + # the package source. + importOfflineCache = yarnNix: + let + pkg = callPackage yarnNix { }; + in + pkg.offline_cache; + + defaultYarnFlags = [ + "--offline" + "--frozen-lockfile" + "--ignore-engines" + "--ignore-scripts" + ]; + + mkYarnModules = { + name, # safe name and version, e.g. testcompany-one-modules-1.0.0 + pname, # original name, e.g @testcompany/one + version, + packageJSON, + yarnLock, + yarnNix ? mkYarnNix { inherit yarnLock; }, + yarnFlags ? defaultYarnFlags, + pkgConfig ? {}, + preBuild ? "", + postBuild ? "", + workspaceDependencies ? [], # List of yarn packages + }: + let + offlineCache = importOfflineCache yarnNix; + + extraBuildInputs = (lib.flatten (builtins.map (key: + pkgConfig.${key}.buildInputs or [] + ) (builtins.attrNames pkgConfig))); + + postInstall = (builtins.map (key: + if (pkgConfig.${key} ? postInstall) then + '' + for f in $(find -L -path '*/node_modules/${key}' -type d); do + (cd "$f" && (${pkgConfig.${key}.postInstall})) + done + '' + else + "" + ) (builtins.attrNames pkgConfig)); + + workspaceJSON = pkgs.writeText + "${name}-workspace-package.json" + (builtins.toJSON { private = true; workspaces = ["deps/**"]; }); # scoped packages need second splat + + workspaceDependencyLinks = lib.concatMapStringsSep "\n" + (dep: '' + mkdir -p "deps/${dep.pname}" + ln -sf ${dep.packageJSON} "deps/${dep.pname}/package.json" + '') + workspaceDependencies; + + in stdenv.mkDerivation { + inherit preBuild postBuild name; + phases = ["configurePhase" "buildPhase"]; + buildInputs = [ yarn nodejs git ] ++ extraBuildInputs; + + configurePhase = '' + # Yarn writes cache directories etc to $HOME. + export HOME=$PWD/yarn_home + ''; + + buildPhase = '' + runHook preBuild + + mkdir -p "deps/${pname}" + cp ${packageJSON} "deps/${pname}/package.json" + cp ${workspaceJSON} ./package.json + cp ${yarnLock} ./yarn.lock + chmod +w ./yarn.lock + + yarn config --offline set yarn-offline-mirror ${offlineCache} + + # Do not look up in the registry, but in the offline cache. + ${fixup_yarn_lock}/bin/fixup_yarn_lock yarn.lock + + ${workspaceDependencyLinks} + + yarn install ${lib.escapeShellArgs yarnFlags} + + ${lib.concatStringsSep "\n" postInstall} + + mkdir $out + mv node_modules $out/ + mv deps $out/ + patchShebangs $out + + runHook postBuild + ''; + }; + + # This can be used as a shellHook in mkYarnPackage. It brings the built node_modules into + # the shell-hook environment. + linkNodeModulesHook = '' + if [[ -d node_modules || -L node_modules ]]; then + echo "./node_modules is present. Replacing." + rm -rf node_modules + fi + + ln -s "$node_modules" node_modules + ''; + + mkYarnWorkspace = { + src, + packageJSON ? src + "/package.json", + yarnLock ? src + "/yarn.lock", + packageOverrides ? {}, + ... + }@attrs: + let + package = lib.importJSON packageJSON; + + packageGlobs = package.workspaces; + + globElemToRegex = lib.replaceStrings ["*"] [".*"]; + + # PathGlob -> [PathGlobElem] + splitGlob = lib.splitString "/"; + + # Path -> [PathGlobElem] -> [Path] + # Note: Only directories are included, everything else is filtered out + expandGlobList = base: globElems: + let + elemRegex = globElemToRegex (lib.head globElems); + rest = lib.tail globElems; + children = lib.attrNames (lib.filterAttrs (name: type: type == "directory") (builtins.readDir base)); + matchingChildren = lib.filter (child: builtins.match elemRegex child != null) children; + in if globElems == [] + then [ base ] + else lib.concatMap (child: expandGlobList (base+("/"+child)) rest) matchingChildren; + + # Path -> PathGlob -> [Path] + expandGlob = base: glob: expandGlobList base (splitGlob glob); + + packagePaths = lib.concatMap (expandGlob src) packageGlobs; + + packages = lib.listToAttrs (map (src: + let + packageJSON = src + "/package.json"; + + package = lib.importJSON packageJSON; + + allDependencies = lib.foldl (a: b: a // b) {} (map (field: lib.attrByPath [field] {} package) ["dependencies" "devDependencies"]); + + # { [name: String] : { pname : String, packageJSON : String, ... } } -> { [pname: String] : version } -> [{ pname : String, packageJSON : String, ... }] + getWorkspaceDependencies = packages: allDependencies: + let + packageList = lib.attrValues packages; + in + composeAll [ + (lib.filter (x: x != null)) + (lib.mapAttrsToList (pname: _version: lib.findFirst (package: package.pname == pname) null packageList)) + ] allDependencies; + + workspaceDependencies = getWorkspaceDependencies packages allDependencies; + + name = reformatPackageName package.name; + in { + inherit name; + value = mkYarnPackage ( + builtins.removeAttrs attrs ["packageOverrides"] + // { inherit src packageJSON yarnLock workspaceDependencies; } + // lib.attrByPath [name] {} packageOverrides + ); + }) + packagePaths + ); + in packages; + + mkYarnPackage = { + name ? null, + src, + packageJSON ? src + "/package.json", + yarnLock ? src + "/yarn.lock", + yarnNix ? mkYarnNix { inherit yarnLock; }, + yarnFlags ? defaultYarnFlags, + yarnPreBuild ? "", + pkgConfig ? {}, + extraBuildInputs ? [], + publishBinsFor ? null, + workspaceDependencies ? [], # List of yarnPackages + ... + }@attrs: + let + package = lib.importJSON packageJSON; + pname = package.name; + safeName = reformatPackageName pname; + version = package.version; + baseName = unlessNull name "${safeName}-${version}"; + + workspaceDependenciesTransitive = lib.unique ( + (lib.flatten (builtins.map (dep: dep.workspaceDependencies) workspaceDependencies)) + ++ workspaceDependencies + ); + + deps = mkYarnModules { + name = "${safeName}-modules-${version}"; + preBuild = yarnPreBuild; + workspaceDependencies = workspaceDependenciesTransitive; + inherit packageJSON pname version yarnLock yarnNix yarnFlags pkgConfig; + }; + + publishBinsFor_ = unlessNull publishBinsFor [pname]; + + linkDirFunction = '' + linkDirToDirLinks() { + target=$1 + if [ ! -f "$target" ]; then + mkdir -p "$target" + elif [ -L "$target" ]; then + local new=$(mktemp -d) + trueSource=$(realpath "$target") + if [ "$(ls $trueSource | wc -l)" -gt 0 ]; then + ln -s $trueSource/* $new/ + fi + rm -r "$target" + mv "$new" "$target" + fi + } + ''; + + workspaceDependencyCopy = lib.concatMapStringsSep "\n" + (dep: '' + # ensure any existing scope directory is not a symlink + linkDirToDirLinks "$(dirname node_modules/${dep.pname})" + mkdir -p "deps/${dep.pname}" + tar -xf "${dep}/tarballs/${dep.name}.tgz" --directory "deps/${dep.pname}" --strip-components=1 + if [ ! -e "deps/${dep.pname}/node_modules" ]; then + ln -s "${deps}/deps/${dep.pname}/node_modules" "deps/${dep.pname}/node_modules" + fi + '') + workspaceDependenciesTransitive; + + in stdenv.mkDerivation (builtins.removeAttrs attrs ["pkgConfig" "workspaceDependencies"] // { + inherit src pname; + + name = baseName; + + buildInputs = [ yarn nodejs rsync ] ++ extraBuildInputs; + + node_modules = deps + "/node_modules"; + + configurePhase = attrs.configurePhase or '' + runHook preConfigure + + for localDir in npm-packages-offline-cache node_modules; do + if [[ -d $localDir || -L $localDir ]]; then + echo "$localDir dir present. Removing." + rm -rf $localDir + fi + done + + # move convent of . to ./deps/${pname} + mv $PWD $NIX_BUILD_TOP/temp + mkdir -p "$PWD/deps/${pname}" + rm -fd "$PWD/deps/${pname}" + mv $NIX_BUILD_TOP/temp "$PWD/deps/${pname}" + cd $PWD + + ln -s ${deps}/deps/${pname}/node_modules "deps/${pname}/node_modules" + + cp -r $node_modules node_modules + chmod -R +w node_modules + + ${linkDirFunction} + + linkDirToDirLinks "$(dirname node_modules/${pname})" + ln -s "deps/${pname}" "node_modules/${pname}" + + ${workspaceDependencyCopy} + + # Help yarn commands run in other phases find the package + echo "--cwd deps/${pname}" > .yarnrc + runHook postConfigure + ''; + + # Replace this phase on frontend packages where only the generated + # files are an interesting output. + installPhase = attrs.installPhase or '' + runHook preInstall + + mkdir -p $out/{bin,libexec/${pname}} + mv node_modules $out/libexec/${pname}/node_modules + mv deps $out/libexec/${pname}/deps + + node ${./internal/fixup_bin.js} $out/bin $out/libexec/${pname}/node_modules ${lib.concatStringsSep " " publishBinsFor_} + + runHook postInstall + ''; + + doDist = true; + + distPhase = attrs.distPhase or '' + # pack command ignores cwd option + rm -f .yarnrc + cd $out/libexec/${pname}/deps/${pname} + mkdir -p $out/tarballs/ + yarn pack --offline --ignore-scripts --filename $out/tarballs/${baseName}.tgz + ''; + + passthru = { + inherit pname package packageJSON deps; + workspaceDependencies = workspaceDependenciesTransitive; + } // (attrs.passthru or {}); + + meta = { + inherit (nodejs.meta) platforms; + description = packageJSON.description or ""; + homepage = packageJSON.homepage or ""; + version = packageJSON.version or ""; + license = if packageJSON ? license then spdxLicense packageJSON.license else ""; + } // (attrs.meta or {}); + }); + + yarn2nix = mkYarnPackage { + src = + let + src = ./.; + + mkFilter = { dirsToInclude, filesToInclude, root }: path: type: + let + inherit (pkgs.lib) any flip elem hasSuffix hasPrefix elemAt splitString; + + subpath = elemAt (splitString "${toString root}/" path) 1; + spdir = elemAt (splitString "/" subpath) 0; + in elem spdir dirsToInclude || + (type == "regular" && elem subpath filesToInclude); + in builtins.filterSource + (mkFilter { + dirsToInclude = ["bin" "lib"]; + filesToInclude = ["package.json" "yarn.lock"]; + root = src; + }) + src; + + # yarn2nix is the only package that requires the yarnNix option. + # All the other projects can auto-generate that file. + yarnNix = ./yarn.nix; + + yarnFlags = defaultYarnFlags ++ ["--production=true"]; + + buildPhase = '' + source ${./nix/expectShFunctions.sh} + + expectFilePresent ./node_modules/.yarn-integrity + + # check dependencies are installed + expectFilePresent ./node_modules/@yarnpkg/lockfile/package.json + + # check devDependencies are not installed + expectFileOrDirAbsent ./node_modules/.bin/eslint + expectFileOrDirAbsent ./node_modules/eslint/package.json + ''; + }; + + fixup_yarn_lock = stdenv.mkDerivation rec { + name = "fixup_yarn_lock"; + + buildInputs = [ nodejs ]; + + phases = [ "installPhase" ]; + + installPhase = '' + mkdir -p $out/lib + mkdir -p $out/bin + + cp ${./lib/urlToName.js} $out/lib/urlToName.js + cp ${./internal/fixup_yarn_lock.js} $out/bin/fixup_yarn_lock + + patchShebangs $out + ''; + }; +} diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_bin.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_bin.js new file mode 100755 index 00000000000..6f0b5c93fa0 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_bin.js @@ -0,0 +1,53 @@ +#!/usr/bin/env node + +/* Usage: + * node fixup_bin.js [, ... ] + */ + +const fs = require('fs') +const path = require('path') + +const derivationBinPath = process.argv[2] +const nodeModules = process.argv[3] +const packagesToPublishBin = process.argv.slice(4) + +function processPackage(name) { + console.log('fixup_bin: Processing ', name) + + const packagePath = `${nodeModules}/${name}` + const packageJsonPath = `${packagePath}/package.json` + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath)) + + if (!packageJson.bin) { + console.log('fixup_bin: No binaries provided') + return + } + + // There are two alternative syntaxes for `bin` + // a) just a plain string, in which case the name of the package is the name of the binary. + // b) an object, where key is the name of the eventual binary, and the value the path to that binary. + if (typeof packageJson.bin === 'string') { + const binName = packageJson.bin + packageJson.bin = {} + packageJson.bin[packageJson.name] = binName + } + + // eslint-disable-next-line no-restricted-syntax, guard-for-in + for (const binName in packageJson.bin) { + const binPath = packageJson.bin[binName] + const normalizedBinName = binName.replace('@', '').replace('/', '-') + + const targetPath = path.normalize(`${packagePath}/${binPath}`) + const createdPath = `${derivationBinPath}/${normalizedBinName}` + + console.log( + `fixup_bin: creating link ${createdPath} that points to ${targetPath}`, + ) + + fs.symlinkSync(targetPath, createdPath) + } +} + +packagesToPublishBin.forEach(pkg => { + processPackage(pkg) +}) diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js new file mode 100755 index 00000000000..86e92f85208 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/internal/fixup_yarn_lock.js @@ -0,0 +1,49 @@ +#!/usr/bin/env node + +/* Usage: + * node fixup_yarn_lock.js yarn.lock + */ + +const fs = require('fs') +const readline = require('readline') + +const urlToName = require('../lib/urlToName') + +const yarnLockPath = process.argv[2] + +const readFile = readline.createInterface({ + input: fs.createReadStream(yarnLockPath, { encoding: 'utf8' }), + + // Note: we use the crlfDelay option to recognize all instances of CR LF + // ('\r\n') in input.txt as a single line break. + crlfDelay: Infinity, + + terminal: false, // input and output should be treated like a TTY +}) + +const result = [] + +readFile + .on('line', line => { + const arr = line.match(/^ {2}resolved "([^#]+)#([^"]+)"$/) + + if (arr !== null) { + const [_, url, shaOrRev] = arr + + const fileName = urlToName(url) + + result.push(` resolved "${fileName}#${shaOrRev}"`) + } else { + result.push(line) + } + }) + .on('close', () => { + fs.writeFile(yarnLockPath, result.join('\n'), 'utf8', err => { + if (err) { + console.error( + 'fixup_yarn_lock: fatal error when trying to write to yarn.lock', + err, + ) + } + }) + }) diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/fixPkgAddMissingSha1.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/fixPkgAddMissingSha1.js new file mode 100644 index 00000000000..2826f36e326 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/fixPkgAddMissingSha1.js @@ -0,0 +1,66 @@ +const https = require('https') +const crypto = require('crypto') + +// TODO: +// make test case where getSha1 function is used, i.e. the case when resolved is without sha1? +// consider using https://github.com/request/request-promise-native + +function getSha1(url) { + return new Promise((resolve, reject) => { + https.get(url, res => { + const { statusCode } = res + const hash = crypto.createHash('sha1') + + if (statusCode !== 200) { + const err = new Error(`Request Failed.\nStatus Code: ${statusCode}`) + + // consume response data to free up memory + res.resume() + + reject(err) + } + + res.on('data', chunk => { + hash.update(chunk) + }) + + res.on('end', () => { + resolve(hash.digest('hex')) + }) + + res.on('error', reject) + }) + }) +} + +// Object -> Object +async function fixPkgAddMissingSha1(pkg) { + // local dependency + + if (!pkg.resolved) { + console.error( + `yarn2nix: can't find "resolved" field for package ${ + pkg.nameWithVersion + }, you probably required it using "file:...", this feature is not supported, ignoring`, + ) + return pkg + } + + const [url, sha1] = pkg.resolved.split('#', 2) + + if (sha1) { + return pkg + } + + // if there is no sha1 in resolved url + // (this could happen if yarn.lock was generated by older version of yarn) + // - request it from registry by https and add it to pkg + const newSha1 = await getSha1(url) + + return { + ...pkg, + resolved: `${url}#${newSha1}`, + } +} + +module.exports = fixPkgAddMissingSha1 diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js new file mode 100644 index 00000000000..964eaf2555d --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/generateNix.js @@ -0,0 +1,124 @@ +const R = require('ramda') + +const urlToName = require('./urlToName') +const { execFileSync } = require('child_process') + +// fetchgit transforms +// +// "shell-quote@git+https://github.com/srghma/node-shell-quote.git#without_unlicenced_jsonify": +// version "1.6.0" +// resolved "git+https://github.com/srghma/node-shell-quote.git#1234commit" +// +// to +// +// builtins.fetchGit { +// url = "https://github.com/srghma/node-shell-quote.git"; +// ref = "without_unlicenced_jsonify"; +// rev = "1234commit"; +// } +// +// and transforms +// +// "@graphile/plugin-supporter@git+https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git": +// version "0.6.0" +// resolved "git+https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git#1234commit" +// +// to +// +// builtins.fetchGit { +// url = "https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git"; +// ref = "master"; +// rev = "1234commit"; +// } + +function prefetchgit(url, rev) { + return JSON.parse( + execFileSync("nix-prefetch-git", ["--rev", rev, url], { + stdio: [ "ignore", "pipe", "ignore" ], + timeout: 60000, + }) + ).sha256 +} + +function fetchgit(fileName, url, rev, branch, builtinFetchGit) { + return ` { + name = "${fileName}"; + path = + let${builtinFetchGit ? ` + repo = builtins.fetchGit { + url = "${url}"; + ref = "${branch}"; + rev = "${rev}"; + }; + ` : ` + repo = fetchgit { + url = "${url}"; + rev = "${rev}"; + sha256 = "${prefetchgit(url, rev)}"; + }; + `}in + runCommandNoCC "${fileName}" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C \${repo} . + ''; + }` +} + +function fetchLockedDep(builtinFetchGit) { + return function (pkg) { + const { nameWithVersion, resolved } = pkg + + if (!resolved) { + console.error( + `yarn2nix: can't find "resolved" field for package ${nameWithVersion}, you probably required it using "file:...", this feature is not supported, ignoring`, + ) + return '' + } + + const [url, sha1OrRev] = resolved.split('#') + + const fileName = urlToName(url) + + if (url.startsWith('git+')) { + const rev = sha1OrRev + + const [_, branch] = nameWithVersion.split('#') + + const urlForGit = url.replace(/^git\+/, '') + + return fetchgit(fileName, urlForGit, rev, branch || 'master', builtinFetchGit) + } + + const sha = sha1OrRev + + return ` { + name = "${fileName}"; + path = fetchurl { + name = "${fileName}"; + url = "${url}"; + sha1 = "${sha}"; + }; + }` + } +} + +const HEAD = ` +{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { + offline_cache = linkFarm "offline" packages; + packages = [ +`.trim() + +// Object -> String +function generateNix(pkgs, builtinFetchGit) { + const nameWithVersionAndPackageNix = R.map(fetchLockedDep(builtinFetchGit), pkgs) + + const packagesDefinition = R.join( + '\n', + R.values(nameWithVersionAndPackageNix), + ) + + return R.join('\n', [HEAD, packagesDefinition, ' ];', '}']) +} + +module.exports = generateNix diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/mapObjIndexedReturnArray.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/mapObjIndexedReturnArray.js new file mode 100644 index 00000000000..83c6634f7c8 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/mapObjIndexedReturnArray.js @@ -0,0 +1,21 @@ +const _curry2 = require('ramda/src/internal/_curry2') +const _map = require('ramda/src/internal/_map') +const keys = require('ramda/src/keys') + +// mapObjIndexed: ((v, k, {k: v}) → v') → {k: v} → {k: v'} +// mapObjIndexedReturnArray: ((v, k, {k: v}) → v') → {k: v} → [v'] + +/* + * @example + * + * const xyz = { x: 1, y: 2, z: 3 }; + * const prependKeyAndDouble = (num, key, obj) => key + (num * 2); + * + * mapObjIndexedReturnArray(prependKeyAndDouble, xyz); //=> ['x2', 'y4', 'z6'] + */ + +const mapObjIndexedReturnArray = _curry2((fn, obj) => + _map(key => fn(obj[key], key, obj), keys(obj)), +) + +module.exports = mapObjIndexedReturnArray diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/urlToName.js b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/urlToName.js new file mode 100644 index 00000000000..81feaaf3a65 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/lib/urlToName.js @@ -0,0 +1,21 @@ +const path = require('path') + +// String -> String + +// @url examples: +// - https://registry.yarnpkg.com/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz +// - https://registry.npmjs.org/acorn-es7-plugin/-/acorn-es7-plugin-1.1.7.tgz +// - git+https://github.com/srghma/node-shell-quote.git +// - git+https://1234user:1234pass@git.graphile.com/git/users/1234user/postgraphile-supporter.git + +function urlToName(url) { + if (url.startsWith('git+')) { + return path.basename(url) + } + + return url + .replace('https://registry.yarnpkg.com/', '') // prevents having long directory names + .replace(/[@/:-]/g, '_') // replace @ and : and - characters with underscore +} + +module.exports = urlToName diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/nix/expectShFunctions.sh b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/nix/expectShFunctions.sh new file mode 100644 index 00000000000..fad230c6921 --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/nix/expectShFunctions.sh @@ -0,0 +1,30 @@ +expectFilePresent () { + if [ -f "$1" ]; then + echo "Test passed: file is present - $1" + else + echo "Test failed: file is absent - $1" + exit 1 + fi +} + +expectFileOrDirAbsent () { + if [ ! -e "$1" ]; + then + echo "Test passed: file or dir is absent - $1" + else + echo "Test failed: file or dir is present - $1" + exit 1 + fi +} + +expectEqual () { + if [ "$1" == "$2" ]; + then + echo "Test passed: output is equal to expected_output" + else + echo "Test failed: output is not equal to expected_output:" + echo " output - $1" + echo " expected_output - $2" + exit 1 + fi +} diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json new file mode 100644 index 00000000000..5b85a68ca5c --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/package.json @@ -0,0 +1,47 @@ +{ + "name": "yarn2nix", + "version": "1.0.0", + "description": "Convert packages.json and yarn.lock into a Nix expression that downloads all the dependencies", + "main": "index.js", + "repository": ".", + "author": "Maarten Hoogendoorn ", + "license": "MIT", + "scripts": { + "yarn2nix": "bin/yarn2nix.js", + "format": "prettier-eslint --write './**/*.{js,jsx,json}'", + "lint": "eslint ." + }, + "bin": { + "yarn2nix": "bin/yarn2nix.js" + }, + "engines" : { + "node" : ">=8.0.0" + }, + "dependencies": { + "@yarnpkg/lockfile": "^1.1.0", + "deep-equal": "^1.0.1", + "docopt": "^0.6.2", + "ramda": "^0.26.1" + }, + "devDependencies": { + "babel-eslint": "^10.0.1", + "eslint": "^5.11.1", + "eslint-config-airbnb": "^17.1.0", + "eslint-config-prettier": "^3.3.0", + "eslint-config-standard": "^12.0.0", + "eslint-plugin-import": "^2.14.0", + "eslint-plugin-jsx-a11y": "^6.1.2", + "eslint-plugin-node": "^8.0.0", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-react": "^7.12.2", + "eslint-plugin-standard": "^4.0.0", + "husky": "^1.3.1", + "lint-staged": "^8.1.0", + "prettier-eslint-cli": "^4.7.1" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged" + } + } +} diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.lock b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.lock new file mode 100644 index 00000000000..803f6b3875a --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.lock @@ -0,0 +1,3427 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/generator@^7.2.2": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.2.tgz#18c816c70962640eab42fe8cae5f3947a5c65ccc" + integrity sha512-I4o675J/iS8k+P38dvJ3IBGqObLXyQLTxtrR4u9cSUJOURvafeEWb/pFMOTwtNrmq73mJzyF6ueTbO1BtN0Zeg== + dependencies: + "@babel/types" "^7.2.2" + jsesc "^2.5.1" + lodash "^4.17.10" + source-map "^0.5.0" + trim-right "^1.0.1" + +"@babel/helper-function-name@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== + dependencies: + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-get-function-arity@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-split-export-declaration@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz#3aae285c0311c2ab095d997b8c9a94cad547d813" + integrity sha512-MXkOJqva62dfC0w85mEf/LucPPS/1+04nmmRMPEBUB++hiiThQ2zPtX/mEWQ3mtzCEjIJvPY8nuwxXtQeQwUag== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/highlight@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.0.0", "@babel/parser@^7.2.2", "@babel/parser@^7.2.3": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.3.tgz#32f5df65744b70888d17872ec106b02434ba1489" + integrity sha512-0LyEcVlfCoFmci8mXx8A5oIkpkOgyo8dRHtxBnK9RRBwxO2+JZPNsqtVEZQ7mJFPxnXF9lfmU24mHOPI0qnlkA== + +"@babel/template@^7.1.0": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz#005b3fdf0ed96e88041330379e0da9a708eb2907" + integrity sha512-zRL0IMM02AUDwghf5LMSSDEz7sBCO2YnNmpg3uWTZj/v1rcG2BmQUvaGU8GhU8BvfMh1k2KIAYZ7Ji9KXPUg7g== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.2.2" + "@babel/types" "^7.2.2" + +"@babel/traverse@^7.0.0": + version "7.2.3" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8" + integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/generator" "^7.2.2" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.0.0" + "@babel/parser" "^7.2.3" + "@babel/types" "^7.2.2" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.10" + +"@babel/types@^7.0.0", "@babel/types@^7.2.2": + version "7.2.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz#44e10fc24e33af524488b716cdaee5360ea8ed1e" + integrity sha512-fKCuD6UFUMkR541eDWL+2ih/xFZBXPOg/7EQFeTluMDebfqR4jrpaCjLhkWlQS4hT6nRa2PMEgXKbRB5/H2fpg== + dependencies: + esutils "^2.0.2" + lodash "^4.17.10" + to-fast-properties "^2.0.0" + +"@iamstarkov/listr-update-renderer@0.4.1": + version "0.4.1" + resolved "https://registry.yarnpkg.com/@iamstarkov/listr-update-renderer/-/listr-update-renderer-0.4.1.tgz#d7c48092a2dcf90fd672b6c8b458649cb350c77e" + integrity sha512-IJyxQWsYDEkf8C8QthBn5N8tIUR9V9je6j3sMIpAkonaadjbvxmRC6RAhpa3RKxndhNnU2M6iNbtJwd7usQYIA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +"@samverschueren/stream-to-observable@^0.3.0": + version "0.3.0" + resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz#ecdf48d532c58ea477acfcab80348424f8d0662f" + integrity sha512-MI4Xx6LHs4Webyvi6EbspgyAb4D2Q2VtnCQ1blOJcoLS6mVa8lNN2rkIy1CVxfTUpoyIbCTkXES1rLXztFD1lg== + dependencies: + any-observable "^0.3.0" + +"@yarnpkg/lockfile@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz#e77a97fbd345b76d83245edcd17d393b1b41fb31" + integrity sha512-GpSwvyXOcOOlV70vbnzjj4fW5xW/FdUF6nQEt1ENy7m4ZCczi1+/buVUPAqmGfqznsORNFzUMjctTIp8a9tuCQ== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +acorn-jsx@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" + integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= + dependencies: + acorn "^3.0.4" + +acorn-jsx@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" + integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== + +acorn@^3.0.4: + version "3.3.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" + integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= + +acorn@^5.5.0: + version "5.7.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + +acorn@^6.0.2: + version "6.0.5" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.5.tgz#81730c0815f3f3b34d8efa95cb7430965f4d887a" + integrity sha512-i33Zgp3XWtmZBMNvCr4azvOFeWVw1Rk6p3hfi3LUDvIFraOMywb1kAtrbi+med14m4Xfpqm3zRZMT+c0FNE7kg== + +ajv-keywords@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" + integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= + +ajv@^5.2.3, ajv@^5.3.0: + version "5.5.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" + integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= + dependencies: + co "^4.6.0" + fast-deep-equal "^1.0.0" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.3.0" + +ajv@^6.5.3, ajv@^6.6.1: + version "6.6.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.6.2.tgz#caceccf474bf3fc3ce3b147443711a24063cc30d" + integrity sha512-FBHEW6Jf5TB9MGBgUUA9XHkTbjXYfAUjY43ACMfmdMRHniyoMHjHjzD50OK8LGDWQwp4rWEsIq5kEqq7rvIM1g== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-escapes@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz#f73207bb81207d75fd6c83f125af26eea378ca30" + integrity sha512-UgAb8H9D41AQnu/PbWlCofQVcnV4Gs2bBJi9eZPxfU/hgglFh3SMDMENRIqdr7H6XFnXdoknctFByVsCOotTVw== + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz#70de791edf021404c3fd615aa89118ae0432e5a9" + integrity sha512-iB5Dda8t/UqpPI/IjsejXu5jOGDrzn41wJyljwPH65VCIbk6+1BzFIMJGFwTNrYXT1CrD+B4l19U7awiQ8rk7w== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.1.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +any-observable@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" + integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +aria-query@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz#65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc" + integrity sha1-ZbP8wcoRVajJrmTW7uKX8V1RM8w= + dependencies: + ast-types-flow "0.0.7" + commander "^2.11.0" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +arrify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" + integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +ast-types-flow@0.0.7, ast-types-flow@^0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" + integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0= + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +atob@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +axobject-query@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz#ea187abe5b9002b377f925d8bf7d1c561adf38f9" + integrity sha512-MCeek8ZH7hKyO1rWUbKNQBbl4l2eY0ntk7OGi+q0RlafrCnfPxC06WZA+uebCfmYp4mNU9jRBP1AhGyf8+W3ww== + dependencies: + ast-types-flow "0.0.7" + +babel-code-frame@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-eslint@^10.0.1: + version "10.0.1" + resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed" + integrity sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.0.0" + "@babel/traverse" "^7.0.0" + "@babel/types" "^7.0.0" + eslint-scope "3.7.1" + eslint-visitor-keys "^1.0.0" + +babel-runtime@^6.23.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +boolify@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/boolify/-/boolify-1.0.1.tgz#b5c09e17cacd113d11b7bb3ed384cc012994d86b" + integrity sha1-tcCeF8rNET0Rt7s+04TMASmU2Gs= + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^2.3.1: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +builtin-modules@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" + integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" + integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= + dependencies: + callsites "^0.2.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsites@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" + integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + +callsites@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3" + integrity sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw== + +camelcase-keys@^4.1.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" + integrity sha1-oqpfsa9oh1glnDLBQUJteJI7m3c= + dependencies: + camelcase "^4.1.0" + map-obj "^2.0.0" + quick-lru "^1.0.0" + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +chalk@2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba" + integrity sha512-Az5zJR2CBujap2rqXGaJKaPHyJ0IrUimvYNX+ncCy8PJP4ltOGTrHUIo097ZaL2zMeKYpiCdqDvS6zdrTFok3Q== + dependencies: + ansi-styles "^3.1.0" + escape-string-regexp "^1.0.5" + supports-color "^4.0.0" + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.1, chalk@^2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz#18c49ab16a037b6eb0152cc83e3471338215b66e" + integrity sha512-ObN6h1v2fTJSmUXoS3nMQ92LbDK9be4TV+6G+omQlGJFdcUX5heKi1LZ1YnRMIgwTLEj3E24bT6tYni50rlCfQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chardet@^0.4.0: + version "0.4.2" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" + integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +ci-info@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" + integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== + +circular-json@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" + integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +cli-cursor@^2.0.0, cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + +cli-truncate@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" + integrity sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ= + dependencies: + slice-ansi "0.0.4" + string-width "^1.0.1" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +co@^4.6.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" + integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +commander@^2.11.0, commander@^2.14.1, commander@^2.9.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== + +common-tags@^1.4.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937" + integrity sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw== + +component-emitter@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@^1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +core-js@^2.4.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.1.tgz#87416ae817de957a3f249b3b5ca475d4aaed6042" + integrity sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg== + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@5.0.6: + version "5.0.6" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.6.tgz#dca6cf680a0bd03589aff684700858c81abeeb39" + integrity sha512-6DWfizHriCrFWURP1/qyhsiFvYdlJzbCzmtFWh744+KyWsJo5+kPzUZZaMRSSItoYc0pxFX7gEO7ZC1/gN/7AQ== + dependencies: + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + +cosmiconfig@^5.0.7: + version "5.0.7" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04" + integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.9.0" + parse-json "^4.0.0" + +cross-spawn@^5.0.1, cross-spawn@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +damerau-levenshtein@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz#03191c432cb6eea168bb77f3a55ffdccb8978514" + integrity sha1-AxkcQyy27qFou3fzpV/9zLiXhRQ= + +date-fns@^1.27.2: + version "1.30.1" + resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" + integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== + +debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^3.1.0: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +debug@^4.0.1, debug@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +decamelize@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +dedent@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" + integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= + +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +del@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5" + integrity sha1-U+z2mf/LyzljdpGrE7rxYIGXZuU= + dependencies: + globby "^6.1.0" + is-path-cwd "^1.0.0" + is-path-in-cwd "^1.0.0" + p-map "^1.1.1" + pify "^3.0.0" + rimraf "^2.2.8" + +dlv@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz#270f6737b30d25b6657a7e962c784403f85137e5" + integrity sha512-xxD4VSH67GbRvSGUrckvha94RD7hjgOH7rqGxiytLpkaeMvixOHFZTGFK6EkIm3T761OVHT8ABHmGkq9gXgu6Q== + +docopt@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz#b28e9e2220da5ec49f7ea5bb24a47787405eeb11" + integrity sha1-so6eIiDaXsSffqW7JKR3h0Be6xE= + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +elegant-spinner@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" + integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4= + +emoji-regex@^6.5.1: + version "6.5.1" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz#9baea929b155565c11ea41c6626eaa65cef992c2" + integrity sha512-PAHp6TxrCy7MGMFidro8uikr+zlJJKJ/Q6mm2ExZ7HwkyR9lSVFfE3kt36qcwa24BQL7y0G9axycGjK1A/0uNQ== + +end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== + dependencies: + once "^1.4.0" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.11.0, es-abstract@^1.12.0, es-abstract@^1.7.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +eslint-config-airbnb-base@^13.1.0: + version "13.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz#b5a1b480b80dfad16433d6c4ad84e6605052c05c" + integrity sha512-XWwQtf3U3zIoKO1BbHh6aUhJZQweOwSt4c2JrPDg9FP3Ltv3+YfEv7jIDB8275tVnO/qOHbfuYg3kzw6Je7uWw== + dependencies: + eslint-restricted-globals "^0.1.1" + object.assign "^4.1.0" + object.entries "^1.0.4" + +eslint-config-airbnb@^17.1.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-17.1.0.tgz#3964ed4bc198240315ff52030bf8636f42bc4732" + integrity sha512-R9jw28hFfEQnpPau01NO5K/JWMGLi6aymiF6RsnMURjTk+MqZKllCqGK/0tOvHkPi/NWSSOU2Ced/GX++YxLnw== + dependencies: + eslint-config-airbnb-base "^13.1.0" + object.assign "^4.1.0" + object.entries "^1.0.4" + +eslint-config-prettier@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz#41afc8d3b852e757f06274ed6c44ca16f939a57d" + integrity sha512-Bc3bh5bAcKNvs3HOpSi6EfGA2IIp7EzWcg2tS4vP7stnXu/J1opihHDM7jI9JCIckyIDTgZLSWn7J3HY0j2JfA== + dependencies: + get-stdin "^6.0.0" + +eslint-config-standard@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9" + integrity sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ== + +eslint-import-resolver-node@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + dependencies: + debug "^2.6.9" + resolve "^1.5.0" + +eslint-module-utils@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz#b270362cd88b1a48ad308976ce7fa54e98411746" + integrity sha1-snA2LNiLGkitMIl2zn+lTphBF0Y= + dependencies: + debug "^2.6.8" + pkg-dir "^1.0.0" + +eslint-plugin-es@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz#475f65bb20c993fc10e8c8fe77d1d60068072da6" + integrity sha512-XfFmgFdIUDgvaRAlaXUkxrRg5JSADoRC8IkKLc/cISeR3yHVMefFHQZpcyXXEUUPHfy5DwviBcrfqlyqEwlQVw== + dependencies: + eslint-utils "^1.3.0" + regexpp "^2.0.1" + +eslint-plugin-import@^2.14.0: + version "2.14.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz#6b17626d2e3e6ad52cfce8807a845d15e22111a8" + integrity sha512-FpuRtniD/AY6sXByma2Wr0TXvXJ4nA/2/04VPlfpmUDPOpOY264x+ILiwnrk/k4RINgDAyFZByxqPUbSQ5YE7g== + dependencies: + contains-path "^0.1.0" + debug "^2.6.8" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.1" + eslint-module-utils "^2.2.0" + has "^1.0.1" + lodash "^4.17.4" + minimatch "^3.0.3" + read-pkg-up "^2.0.0" + resolve "^1.6.0" + +eslint-plugin-jsx-a11y@^6.1.2: + version "6.1.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz#69bca4890b36dcf0fe16dd2129d2d88b98f33f88" + integrity sha512-7gSSmwb3A+fQwtw0arguwMdOdzmKUgnUcbSNlo+GjKLAQFuC2EZxWqG9XHRI8VscBJD5a8raz3RuxQNFW+XJbw== + dependencies: + aria-query "^3.0.0" + array-includes "^3.0.3" + ast-types-flow "^0.0.7" + axobject-query "^2.0.1" + damerau-levenshtein "^1.0.4" + emoji-regex "^6.5.1" + has "^1.0.3" + jsx-ast-utils "^2.0.1" + +eslint-plugin-node@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz#55ae3560022863d141fa7a11799532340a685964" + integrity sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w== + dependencies: + eslint-plugin-es "^1.3.1" + eslint-utils "^1.3.1" + ignore "^5.0.2" + minimatch "^3.0.4" + resolve "^1.8.1" + semver "^5.5.0" + +eslint-plugin-promise@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz#2d074b653f35a23d1ba89d8e976a985117d1c6a2" + integrity sha512-Si16O0+Hqz1gDHsys6RtFRrW7cCTB6P7p3OJmKp3Y3dxpQE2qwOA7d3xnV+0mBmrPoi0RBnxlCKvqu70te6wjg== + +eslint-plugin-react@^7.12.2: + version "7.12.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.3.tgz#b9ca4cd7cd3f5d927db418a1950366a12d4568fd" + integrity sha512-WTIA3cS8OzkPeCi4KWuPmjR33lgG9r9Y/7RmnLTRw08MZKgAfnK/n3BO4X0S67MPkVLazdfCNT/XWqcDu4BLTA== + dependencies: + array-includes "^3.0.3" + doctrine "^2.1.0" + has "^1.0.3" + jsx-ast-utils "^2.0.1" + object.fromentries "^2.0.0" + prop-types "^15.6.2" + resolve "^1.9.0" + +eslint-plugin-standard@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz#f845b45109c99cd90e77796940a344546c8f6b5c" + integrity sha512-OwxJkR6TQiYMmt1EsNRMe5qG3GsbjlcOhbGUBY4LtavF9DsLaTcoR+j2Tdjqi23oUwKNUqX7qcn5fPStafMdlA== + +eslint-restricted-globals@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz#35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7" + integrity sha1-NfDVy8ZMLj7WLpO0saevBbp+1Nc= + +eslint-scope@3.7.1: + version "3.7.1" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8" + integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug= + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^3.7.1: + version "3.7.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" + integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-scope@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz#50bf3071e9338bcdc43331794a0cb533f0136172" + integrity sha512-1G6UTDi7Jc1ELFwnR58HV4fK9OQK4S6N985f166xqXxpjU6plxFISJa2Ba9KCQuFa8RCnj/lSFJbHo7UFDBnUA== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-utils@^1.3.0, eslint-utils@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" + integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== + +eslint-visitor-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== + +eslint@^4.0.0, eslint@^4.5.0: + version "4.19.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" + integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ== + dependencies: + ajv "^5.3.0" + babel-code-frame "^6.22.0" + chalk "^2.1.0" + concat-stream "^1.6.0" + cross-spawn "^5.1.0" + debug "^3.1.0" + doctrine "^2.1.0" + eslint-scope "^3.7.1" + eslint-visitor-keys "^1.0.0" + espree "^3.5.4" + esquery "^1.0.0" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.0.1" + ignore "^3.3.3" + imurmurhash "^0.1.4" + inquirer "^3.0.6" + is-resolvable "^1.0.0" + js-yaml "^3.9.1" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.4" + minimatch "^3.0.2" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^7.0.0" + progress "^2.0.0" + regexpp "^1.0.1" + require-uncached "^1.0.3" + semver "^5.3.0" + strip-ansi "^4.0.0" + strip-json-comments "~2.0.1" + table "4.0.2" + text-table "~0.2.0" + +eslint@^5.11.1: + version "5.12.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.12.0.tgz#fab3b908f60c52671fb14e996a450b96c743c859" + integrity sha512-LntwyPxtOHrsJdcSwyQKVtHofPHdv+4+mFwEe91r2V13vqpM8yLr7b1sW+Oo/yheOPkWYsYlYJCkzlFAt8KV7g== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.5.3" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^2.1.0" + eslint-scope "^4.0.0" + eslint-utils "^1.3.1" + eslint-visitor-keys "^1.0.0" + espree "^5.0.0" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^2.0.0" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.7.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^6.1.0" + js-yaml "^3.12.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.5" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + pluralize "^7.0.0" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^5.5.1" + strip-ansi "^4.0.0" + strip-json-comments "^2.0.1" + table "^5.0.2" + text-table "^0.2.0" + +espree@^3.5.2, espree@^3.5.4: + version "3.5.4" + resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" + integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== + dependencies: + acorn "^5.5.0" + acorn-jsx "^3.0.0" + +espree@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c" + integrity sha512-1MpUfwsdS9MMoN7ZXqAr9e9UKdVHDcvrJpyx7mm1WuQlx/ygErEQBzgi5Nh5qBHIoYweprhtMkTCb9GhcAIcsA== + dependencies: + acorn "^6.0.2" + acorn-jsx "^5.0.0" + eslint-visitor-keys "^1.0.0" + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.0, esquery@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + dependencies: + estraverse "^4.1.0" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +external-editor@^2.0.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" + integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== + dependencies: + chardet "^0.4.0" + iconv-lite "^0.4.17" + tmp "^0.0.33" + +external-editor@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" + integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +fast-deep-equal@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" + integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= + +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +figures@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" + integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4= + dependencies: + escape-string-regexp "^1.0.5" + object-assign "^4.1.0" + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" + integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= + dependencies: + flat-cache "^1.2.1" + object-assign "^4.0.1" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +find-parent-dir@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54" + integrity sha1-M8RLQpqysvBkYpnF+fcY83b/jVQ= + +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8= + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +flat-cache@^1.2.1: + version "1.3.4" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" + integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== + dependencies: + circular-json "^0.3.1" + graceful-fs "^4.1.2" + rimraf "~2.6.2" + write "^0.2.1" + +for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +g-status@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/g-status/-/g-status-2.0.2.tgz#270fd32119e8fc9496f066fe5fe88e0a6bc78b97" + integrity sha512-kQoE9qH+T1AHKgSSD0Hkv98bobE90ILQcXAF4wvGgsr7uFqNvwmh8j+Lq3l0RVt3E3HjSbv2B9biEGcEtpHLCA== + dependencies: + arrify "^1.0.1" + matcher "^1.0.0" + simple-git "^1.85.0" + +get-caller-file@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + +get-own-enumerable-property-symbols@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz#b877b49a5c16aefac3655f2ed2ea5b684df8d203" + integrity sha512-CIJYJC4GGF06TakLg8z4GQKvDsx9EMspVxOYih7LerEL/WosUnFIww45CGfxfeKHqlg3twgUrYRT1O3WQqjGCg== + +get-stdin@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398" + integrity sha1-Ei4WFZHiH/TFJTAwVpPyDmOTo5g= + +get-stdin@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" + integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3: + version "7.1.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" + integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@~7.0.6: + version "7.0.6" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a" + integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo= + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.2" + once "^1.3.0" + path-is-absolute "^1.0.0" + +globals@^11.0.1, globals@^11.1.0, globals@^11.7.0: + version "11.9.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz#bde236808e987f290768a93d065060d78e6ab249" + integrity sha512-5cJVtyXWH8PiJPVLZzzoIizXx944O4OmRro5MWKx5fT4MgcN7OfaMutPeaTdJCCURwbWdhhcCWcKIffPnmTzBg== + +globby@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" + integrity sha1-9abXDoOV4hyFj7BInWTfAkJNUGw= + dependencies: + array-union "^1.0.1" + glob "^7.0.3" + object-assign "^4.0.1" + pify "^2.0.0" + pinkie-promise "^2.0.0" + +graceful-fs@^4.1.2: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.1, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hosted-git-info@^2.1.4: + version "2.7.1" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" + integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== + +husky@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/husky/-/husky-1.3.1.tgz#26823e399300388ca2afff11cfa8a86b0033fae0" + integrity sha512-86U6sVVVf4b5NYSZ0yvv88dRgBSSXXmHaiq5pP4KDj5JVzdwKgBjEtUPOm8hcoytezFwbU+7gotXNhpHdystlg== + dependencies: + cosmiconfig "^5.0.7" + execa "^1.0.0" + find-up "^3.0.0" + get-stdin "^6.0.0" + is-ci "^2.0.0" + pkg-dir "^3.0.0" + please-upgrade-node "^3.1.1" + read-pkg "^4.0.1" + run-node "^1.0.0" + slash "^2.0.0" + +iconv-lite@^0.4.17, iconv-lite@^0.4.24: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +ignore@^3.2.7, ignore@^3.3.3: + version "3.3.10" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.0.2: + version "5.0.4" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.0.4.tgz#33168af4a21e99b00c5d41cbadb6a6cb49903a45" + integrity sha512-WLsTMEhsQuXpCiG173+f3aymI43SXa+fB1rSfbzyP4GkPP+ZFVuO0/3sFUGNBtifisPeDcl/uD/Y2NxZ7xFq4g== + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" + integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indent-string@^3.0.0, indent-string@^3.1.0, indent-string@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" + integrity sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok= + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2, inherits@^2.0.3, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +inquirer@^3.0.6: + version "3.3.0" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" + integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^2.0.4" + figures "^2.0.0" + lodash "^4.3.0" + mute-stream "0.0.7" + run-async "^2.2.0" + rx-lite "^4.0.8" + rx-lite-aggregates "^4.0.8" + string-width "^2.1.0" + strip-ansi "^4.0.0" + through "^2.3.6" + +inquirer@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz#9943fc4882161bdb0b0c9276769c75b32dbfcd52" + integrity sha512-088kl3DRT2dLU5riVMKKr1DlImd6X7smDhpXUCkJDCKvTEJeRiXh0G132HG9u5a+6Ylw9plFRY7RuTnwohYSpg== + dependencies: + ansi-escapes "^3.0.0" + chalk "^2.0.0" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.0" + figures "^2.0.0" + lodash "^4.17.10" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.1.0" + string-width "^2.1.0" + strip-ansi "^5.0.0" + through "^2.3.6" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-builtin-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" + integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= + dependencies: + builtin-modules "^1.0.0" + +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== + +is-ci@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" + integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== + dependencies: + ci-info "^2.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-glob@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz#9521c76845cc2610a85203ddf080a958c2ffabc0" + integrity sha1-lSHHaEXMJhCoUgPd8ICpWML/q8A= + dependencies: + is-extglob "^2.1.1" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-obj@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + +is-observable@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" + integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== + dependencies: + symbol-observable "^1.1.0" + +is-path-cwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz#d225ec23132e89edd38fda767472e62e65f1106d" + integrity sha1-0iXsIxMuie3Tj9p2dHLmLmXxEG0= + +is-path-in-cwd@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz#5ac48b345ef675339bd6c7a48a912110b241cf52" + integrity sha512-FjV1RTW48E7CWM7eE/J2NJvAEEVektecDBVBE5Hh3nM1Jd0kvhHtX68Pr3xsDf857xt3Y4AkwVULK1Vku62aaQ== + dependencies: + is-path-inside "^1.0.0" + +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= + dependencies: + path-is-inside "^1.0.1" + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= + dependencies: + has "^1.0.1" + +is-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" + integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + +is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + dependencies: + has-symbols "^1.0.0" + +is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +jest-get-type@^22.1.0: + version "22.4.3" + resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz#e3a8504d8479342dd4420236b322869f18900ce4" + integrity sha512-/jsz0Y+V29w1chdXVygEKSz2nBoHoYqNShPe+QgxSNjAuP1i8+k4LbQNrfoliKej0P45sivkSCh7yiD6ubHS3w== + +jest-validate@^23.5.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz#36761f99d1ed33fcd425b4e4c5595d62b6597474" + integrity sha512-OFKapYxe72yz7agrDAWi8v2WL8GIfVqcbKRCLbRG9PAxtzF9b1SEDdTpytNDN12z2fJynoBwpMpvj2R39plI2A== + dependencies: + chalk "^2.0.1" + jest-get-type "^22.1.0" + leven "^2.1.0" + pretty-format "^23.6.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + +js-yaml@^3.12.0, js-yaml@^3.9.0, js-yaml@^3.9.1: + version "3.12.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" + integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-parse-better-errors@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.3.0: + version "0.3.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" + integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +jsx-ast-utils@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz#e801b1b39985e20fffc87b40e3748080e2dcac7f" + integrity sha1-6AGxs5mF4g//yHtA43SAgOLcrH8= + dependencies: + array-includes "^3.0.3" + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + +leven@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz#c2e7a9f772094dee9d34202ae8acce4687875580" + integrity sha1-wuep93IJTe6dNCAq6KzORoeHVYA= + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +lint-staged@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-8.1.0.tgz#dbc3ae2565366d8f20efb9f9799d076da64863f2" + integrity sha512-yfSkyJy7EuVsaoxtUSEhrD81spdJOe/gMTGea3XaV7HyoRhTb9Gdlp6/JppRZERvKSEYXP9bjcmq6CA5oL2lYQ== + dependencies: + "@iamstarkov/listr-update-renderer" "0.4.1" + chalk "^2.3.1" + commander "^2.14.1" + cosmiconfig "5.0.6" + debug "^3.1.0" + dedent "^0.7.0" + del "^3.0.0" + execa "^1.0.0" + find-parent-dir "^0.3.0" + g-status "^2.0.2" + is-glob "^4.0.0" + is-windows "^1.0.2" + jest-validate "^23.5.0" + listr "^0.14.2" + lodash "^4.17.5" + log-symbols "^2.2.0" + micromatch "^3.1.8" + npm-which "^3.0.1" + p-map "^1.1.1" + path-is-inside "^1.0.2" + pify "^3.0.0" + please-upgrade-node "^3.0.2" + staged-git-files "1.1.2" + string-argv "^0.0.2" + stringify-object "^3.2.2" + +listr-silent-renderer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" + integrity sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4= + +listr-update-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" + integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== + dependencies: + chalk "^1.1.3" + cli-truncate "^0.2.1" + elegant-spinner "^1.0.1" + figures "^1.7.0" + indent-string "^3.0.0" + log-symbols "^1.0.2" + log-update "^2.3.0" + strip-ansi "^3.0.1" + +listr-verbose-renderer@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" + integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== + dependencies: + chalk "^2.4.1" + cli-cursor "^2.1.0" + date-fns "^1.27.2" + figures "^2.0.0" + +listr@^0.14.2: + version "0.14.3" + resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" + integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== + dependencies: + "@samverschueren/stream-to-observable" "^0.3.0" + is-observable "^1.1.0" + is-promise "^2.1.0" + is-stream "^1.1.0" + listr-silent-renderer "^1.1.1" + listr-update-renderer "^0.5.0" + listr-verbose-renderer "^0.5.0" + p-map "^2.0.0" + rxjs "^6.3.3" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.merge@^4.6.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" + integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ== + +lodash.unescape@4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz#bf2249886ce514cda112fae9218cdc065211fc9c" + integrity sha1-vyJJiGzlFM2hEvrpIYzcBlIR/Jw= + +lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.3.0: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== + +log-symbols@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" + integrity sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg= + dependencies: + chalk "^1.0.0" + +log-symbols@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" + integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg== + dependencies: + chalk "^2.0.1" + +log-update@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" + integrity sha1-iDKP19HOeTiykoN0bwsbwSayRwg= + dependencies: + ansi-escapes "^3.0.0" + cli-cursor "^2.0.0" + wrap-ansi "^3.0.1" + +loglevel-colored-level-prefix@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz#6a40218fdc7ae15fc76c3d0f3e676c465388603e" + integrity sha1-akAhj9x64V/HbD0PPmdsRlOIYD4= + dependencies: + chalk "^1.1.3" + loglevel "^1.4.1" + +loglevel@^1.4.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz#e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa" + integrity sha1-4PyVEztu8nbNyIh82vJKpvFW+Po= + +loose-envify@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lru-cache@^4.0.1: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +make-plural@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz#f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735" + integrity sha512-xTYd4JVHpSCW+aqDof6w/MebaMVNTVYBZhbB/vi513xXdiPT92JMVCo0Jq8W2UZnzYRFeVbQiQ+I25l13JuKvA== + optionalDependencies: + minimist "^1.2.0" + +map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-obj@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9" + integrity sha1-plzSkIepJZi4eRJXpSPgISIqwfk= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +matcher@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.1.1.tgz#51d8301e138f840982b338b116bb0c09af62c1c2" + integrity sha512-+BmqxWIubKTRKNWx/ahnCkk3mG8m7OturVlqq6HiojGJTd5hVYbgZm6WzcYPCoB+KBT4Vd6R7WSRG2OADNaCjg== + dependencies: + escape-string-regexp "^1.0.4" + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= + dependencies: + mimic-fn "^1.0.0" + +messageformat-parser@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz#13ba2250a76bbde8e0fca0dbb3475f95c594a90a" + integrity sha512-Hwem6G3MsKDLS1FtBRGIs8T50P1Q00r3srS6QJePCFbad9fq0nYxwf3rnU2BreApRGhmpKMV7oZI06Sy1c9TPA== + +messageformat@^1.0.2: + version "1.1.1" + resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz#ceaa2e6c86929d4807058275a7372b1bd963bdf6" + integrity sha512-Q0uXcDtF5pEZsVSyhzDOGgZZK6ykN79VY9CwU3Nv0gsqx62BjdJW0MT+63UkHQ4exe3HE33ZlxR2/YwoJarRTg== + dependencies: + glob "~7.0.6" + make-plural "^4.1.1" + messageformat-parser "^1.1.0" + nopt "~3.0.6" + reserved-words "^0.1.2" + +micromatch@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +mixin-deep@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" + integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= + dependencies: + minimist "0.0.8" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +nopt@~3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2: + version "2.4.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz#12f95a307d58352075a04907b84ac8be98ac012f" + integrity sha512-9jjUFbTPfEy3R/ad/2oNbKtW9Hgovl5O1FvFWKkKblNXoN/Oou6+9+KKohPK13Yc3/TyunyWhJp6gvRNR/PPAw== + dependencies: + hosted-git-info "^2.1.4" + is-builtin-module "^1.0.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +npm-path@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz#c641347a5ff9d6a09e4d9bce5580c4f505278e64" + integrity sha512-IFsj0R9C7ZdR5cP+ET342q77uSRdtWOlWpih5eC+lu29tIDbNEgDbzgVJ5UFvYHWhxDZ5TFkJafFioO0pPQjCw== + dependencies: + which "^1.2.10" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npm-which@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz#9225f26ec3a285c209cae67c3b11a6b4ab7140aa" + integrity sha1-kiXybsOihcIJyuZ8OxGmtKtxQKo= + dependencies: + commander "^2.9.0" + npm-path "^2.0.2" + which "^1.2.10" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-keys@^1.0.11, object-keys@^1.0.12: + version "1.0.12" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz#09c53855377575310cca62f55bb334abff7b3ed2" + integrity sha512-FTMyFUm2wBcGHnH2eXmz7tC6IwlqQZ6mVZ+6dm6vZ4IQIHjs6FdNsQBuKGPuUUUY6NfJw2PshC08Tn6LzLDOag== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.assign@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da" + integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w== + dependencies: + define-properties "^1.1.2" + function-bind "^1.1.1" + has-symbols "^1.0.0" + object-keys "^1.0.11" + +object.entries@^1.0.4: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519" + integrity sha512-l+H6EQ8qzGRxbkHOd5I/aHRhHDKoQXQ8g0BYt4uSweQU1/J6dZUOyWh9a2Vky35YCKjzmgxOzta2hH6kf9HuXA== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + +object.fromentries@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz#49a543d92151f8277b3ac9600f1e930b189d30ab" + integrity sha512-9iLiI6H083uiqUuvzyY6qrlmc/Gz8hLQFOcb/Ri/0xXFkSNS3ctV+CbE6yM2+AnkYfOB3dGjdzC0wrMLIhQICA== + dependencies: + define-properties "^1.1.2" + es-abstract "^1.11.0" + function-bind "^1.1.1" + has "^1.0.1" + +object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz#1d5a0d20fb12707c758a655f6bbc4386b5930d68" + integrity sha512-NhURkNcrVB+8hNfLuysU8enY5xn2KXphsHBaC2YmRNTZRc7RWusw6apSpdEj3jo4CMb6W9nrF6tTnsJsJeyu6g== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-map@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz#e4e94f311eabbc8633a1e79908165fca26241b6b" + integrity sha512-r6zKACMNhjPJMTl8KcFH4li//gkrXWfbD6feV8l6doRHlzljFWGJ2AP6iKaCJXyZmAUMOPtvbW7EXkbWO/pLEA== + +p-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.0.0.tgz#be18c5a5adeb8e156460651421aceca56c213a50" + integrity sha512-GO107XdrSUmtHxVoi60qc9tUl/KkNKm+X2CF4P9amalpGxv5YqVPJNfSb0wcA+syCopkZvYYIzW8OVTQW59x/w== + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +p-try@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" + integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== + +parent-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5" + integrity sha512-8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA== + dependencies: + callsites "^3.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s= + dependencies: + pinkie-promise "^2.0.0" + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.1, path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pkg-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz#7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4" + integrity sha1-ektQio1bstYp1EcFb/TpyTFM89Q= + dependencies: + find-up "^1.0.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +please-upgrade-node@^3.0.2, please-upgrade-node@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz#ed320051dfcc5024fae696712c8288993595e8ac" + integrity sha512-KY1uHnQ2NlQHqIJQpnh/i54rKkuxCEBx+voJIS/Mvb+L2iYd2NMotwduhKTMjfC1uKoX3VXOxLjIYG66dfJTVQ== + dependencies: + semver-compare "^1.0.0" + +pluralize@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" + integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +prettier-eslint-cli@^4.7.1: + version "4.7.1" + resolved "https://registry.yarnpkg.com/prettier-eslint-cli/-/prettier-eslint-cli-4.7.1.tgz#3d103c494baa4e80b99ad53e2b9db7620101859f" + integrity sha512-hQbsGaEVz97oBBcKdsJ46khv0kOGkMyWrXzcFOXW6X8UuetZ/j0yDJkNJgUTVc6PVFbbzBXk+qgd5vos9qzXPQ== + dependencies: + arrify "^1.0.1" + babel-runtime "^6.23.0" + boolify "^1.0.0" + camelcase-keys "^4.1.0" + chalk "2.3.0" + common-tags "^1.4.0" + eslint "^4.5.0" + find-up "^2.1.0" + get-stdin "^5.0.1" + glob "^7.1.1" + ignore "^3.2.7" + indent-string "^3.1.0" + lodash.memoize "^4.1.2" + loglevel-colored-level-prefix "^1.0.0" + messageformat "^1.0.2" + prettier-eslint "^8.5.0" + rxjs "^5.3.0" + yargs "10.0.3" + +prettier-eslint@^8.5.0: + version "8.8.2" + resolved "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz#fcb29a48ab4524e234680797fe70e9d136ccaf0b" + integrity sha512-2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA== + dependencies: + babel-runtime "^6.26.0" + common-tags "^1.4.0" + dlv "^1.1.0" + eslint "^4.0.0" + indent-string "^3.2.0" + lodash.merge "^4.6.0" + loglevel-colored-level-prefix "^1.0.0" + prettier "^1.7.0" + pretty-format "^23.0.1" + require-relative "^0.8.7" + typescript "^2.5.1" + typescript-eslint-parser "^16.0.0" + vue-eslint-parser "^2.0.2" + +prettier@^1.7.0: + version "1.15.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz#1feaac5bdd181237b54dbe65d874e02a1472786a" + integrity sha512-gAU9AGAPMaKb3NNSUUuhhFAS7SCO4ALTN4nRIn6PJ075Qd28Yn2Ig2ahEJWdJwJmlEBTUfC7mMUSFy8MwsOCfg== + +pretty-format@^23.0.1, pretty-format@^23.6.0: + version "23.6.0" + resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz#5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760" + integrity sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw== + dependencies: + ansi-regex "^3.0.0" + ansi-styles "^3.2.0" + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +prop-types@^15.6.2: + version "15.6.2" + resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz#05d5ca77b4453e985d60fc7ff8c859094a497102" + integrity sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ== + dependencies: + loose-envify "^1.3.1" + object-assign "^4.1.1" + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +quick-lru@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" + integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= + +ramda@^0.26.1: + version "0.26.1" + resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06" + integrity sha512-hLWjpy7EnsDBb0p+Z3B7rPi3GDeRG5ZtiI33kJhTt+ORCd38AbAIjB/9zRIUoeTbE/AVX5ZkU7m6bznsvrf8eQ== + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +read-pkg@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz#963625378f3e1c4d48c85872b5a6ec7d5d093237" + integrity sha1-ljYlN48+HE1IyFhytabsfV0JMjc= + dependencies: + normalize-package-data "^2.3.2" + parse-json "^4.0.0" + pify "^3.0.0" + +readable-stream@^2.2.2: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexpp@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" + integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw== + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + +require-relative@^0.8.7: + version "0.8.7" + resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" + integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= + +require-uncached@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" + integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= + dependencies: + caller-path "^0.1.0" + resolve-from "^1.0.0" + +reserved-words@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1" + integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE= + +resolve-from@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" + integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@^1.5.0, resolve@^1.6.0, resolve@^1.8.1, resolve@^1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06" + integrity sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ== + dependencies: + path-parse "^1.0.6" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +rimraf@^2.2.8, rimraf@~2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= + dependencies: + is-promise "^2.1.0" + +run-node@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz#46b50b946a2aa2d4947ae1d886e9856fd9cabe5e" + integrity sha512-kc120TBlQ3mih1LSzdAJXo4xn/GWS2ec0l3S+syHDXP9uRr0JAT8Qd3mdMuyjqCzeZktgP3try92cEgf9Nks8A== + +rx-lite-aggregates@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" + integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= + dependencies: + rx-lite "*" + +rx-lite@*, rx-lite@^4.0.8: + version "4.0.8" + resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" + integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= + +rxjs@^5.3.0: + version "5.5.12" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz#6fa61b8a77c3d793dbaf270bee2f43f652d741cc" + integrity sha512-xx2itnL5sBbqeeiVgNPVuQQ1nC8Jp2WfNJhXWHmElW9YmrpS9UVnNzhP3EH3HFqexO5Tlp8GhYY+WEcqcVMvGw== + dependencies: + symbol-observable "1.0.1" + +rxjs@^6.1.0, rxjs@^6.3.3: + version "6.3.3" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz#3c6a7fa420e844a81390fb1158a9ec614f4bad55" + integrity sha512-JTWmoY9tWCs7zvIk/CvRjhjGaOd+OVBM987mxFo+OW66cGpdKjZcpmc74ES1sB//7Kl/PAe8+wEakuhG4pcgOw== + dependencies: + tslib "^1.9.0" + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +"safer-buffer@>= 2.1.2 < 3": + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +semver-compare@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= + +"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.5.1: + version "5.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" + integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== + +semver@5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab" + integrity sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA== + +set-blocking@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + +simple-git@^1.85.0: + version "1.107.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-1.107.0.tgz#12cffaf261c14d6f450f7fdb86c21ccee968b383" + integrity sha512-t4OK1JRlp4ayKRfcW6owrWcRVLyHRUlhGd0uN6ZZTqfDq8a5XpcUdOKiGRNobHEuMtNqzp0vcJNvhYWwh5PsQA== + dependencies: + debug "^4.0.1" + +slash@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" + integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== + +slice-ansi@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" + integrity sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU= + +slice-ansi@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" + integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== + dependencies: + is-fullwidth-code-point "^2.0.0" + +slice-ansi@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz#5373bdb8559b45676e8541c66916cdd6251612e7" + integrity sha512-4j2WTWjp3GsZ+AOagyzVbzp4vWGtZ0hEZ/gDY/uTvm6MTxUfTUIsnMIFb1bn8o0RuXiqUw15H1bue8f22Vw2oQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +source-map-resolve@^0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@^0.5.0, source-map@^0.5.6: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +spdx-correct@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.3" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz#81c0ce8f21474756148bbb5f3bfc0f36bf15d76e" + integrity sha512-uBIcIl3Ih6Phe3XHK1NqboJLdGfwr1UN3k6wSD1dZpmPsIkb8AGNbZYJ1fOBk834+Gxy8rpfDxrS6XLEMZMY2g== + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +staged-git-files@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz#4326d33886dc9ecfa29a6193bf511ba90a46454b" + integrity sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA== + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +string-argv@^0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz#dac30408690c21f3c3630a3ff3a05877bdcbd736" + integrity sha1-2sMECGkMIfPDYwo/86BYd73L1zY= + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +stringify-object@^3.2.2: + version "3.3.0" + resolved "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz#703065aefca19300d3ce88af4f5b3956d7556629" + integrity sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw== + dependencies: + get-own-enumerable-property-symbols "^3.0.0" + is-obj "^1.0.1" + is-regexp "^1.0.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz#f78f68b5d0866c20b2c9b8c61b5298508dc8756f" + integrity sha512-Uu7gQyZI7J7gn5qLn1Np3G9vcYGTVqB+lFTytnDJv83dd8T22aGH451P3jueT2/QemInJDfxHB5Tde5OzgG1Ow== + dependencies: + ansi-regex "^4.0.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^4.0.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz#be7a0de484dec5c5cddf8b3d59125044912f635b" + integrity sha1-vnoN5ITexcXN34s9WRJQRJEvY1s= + dependencies: + has-flag "^2.0.0" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +symbol-observable@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz#8340fc4702c3122df5d22288f88283f513d3fdd4" + integrity sha1-g0D8RwLDEi310iKI+IKD9RPT/dQ= + +symbol-observable@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" + integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== + +table@4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" + integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== + dependencies: + ajv "^5.2.3" + ajv-keywords "^2.1.0" + chalk "^2.1.0" + lodash "^4.17.4" + slice-ansi "1.0.0" + string-width "^2.1.1" + +table@^5.0.2: + version "5.1.1" + resolved "https://registry.yarnpkg.com/table/-/table-5.1.1.tgz#92030192f1b7b51b6eeab23ed416862e47b70837" + integrity sha512-NUjapYb/qd4PeFW03HnAuOJ7OMcBkJlqeClWxeNlQ0lXGSb52oZXGzkO0/I0ARegQ2eUT1g2VDJH0eUxDRcHmw== + dependencies: + ajv "^6.6.1" + lodash "^4.17.11" + slice-ansi "2.0.0" + string-width "^2.1.1" + +text-table@^0.2.0, text-table@~0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + +tslib@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" + integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +typescript-eslint-parser@^16.0.0: + version "16.0.1" + resolved "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz#b40681c7043b222b9772748b700a000b241c031b" + integrity sha512-IKawLTu4A2xN3aN/cPLxvZ0bhxZHILGDKTZWvWNJ3sLNhJ3PjfMEDQmR2VMpdRPrmWOadgWXRwjLBzSA8AGsaQ== + dependencies: + lodash.unescape "4.0.1" + semver "5.5.0" + +typescript@^2.5.1: + version "2.9.2" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz#1cbf61d05d6b96269244eb6a3bce4bd914e0f00c" + integrity sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w== + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +vue-eslint-parser@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz#c268c96c6d94cfe3d938a5f7593959b0ca3360d1" + integrity sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw== + dependencies: + debug "^3.1.0" + eslint-scope "^3.7.1" + eslint-visitor-keys "^1.0.0" + espree "^3.5.2" + esquery "^1.0.0" + lodash "^4.17.4" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.10, which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrap-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" + integrity sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo= + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" + integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= + dependencies: + mkdirp "^0.5.1" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yargs-parser@^8.0.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz#f1376a33b6629a5d063782944da732631e966950" + integrity sha512-yP+6QqN8BmrgW2ggLtTbdrOyBNSI7zBa4IykmiV5R1wl1JWNxQvWhMfMdmzIYtKU7oP3OOInY/tl2ov3BDjnJQ== + dependencies: + camelcase "^4.1.0" + +yargs@10.0.3: + version "10.0.3" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz#6542debd9080ad517ec5048fb454efe9e4d4aaae" + integrity sha512-DqBpQ8NAUX4GyPP/ijDGHsJya4tYqLQrjPr95HNsr1YwL3+daCfvBwg7+gIC6IdJhR2kATh3hb61vjzMWEtjdw== + dependencies: + cliui "^3.2.0" + decamelize "^1.1.1" + find-up "^2.1.0" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^8.0.0" diff --git a/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.nix b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.nix new file mode 100644 index 00000000000..9f4154b328b --- /dev/null +++ b/pkgs/development/tools/yarn2nix-moretea/yarn2nix/yarn.nix @@ -0,0 +1,3813 @@ +{ fetchurl, linkFarm, runCommandNoCC, gnutar }: rec { + offline_cache = linkFarm "offline" packages; + packages = [ + { + name = "_babel_code_frame___code_frame_7.0.0.tgz"; + path = fetchurl { + name = "_babel_code_frame___code_frame_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz"; + sha1 = "06e2ab19bdb535385559aabb5ba59729482800f8"; + }; + } + { + name = "_babel_generator___generator_7.2.2.tgz"; + path = fetchurl { + name = "_babel_generator___generator_7.2.2.tgz"; + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.2.2.tgz"; + sha1 = "18c816c70962640eab42fe8cae5f3947a5c65ccc"; + }; + } + { + name = "_babel_helper_function_name___helper_function_name_7.1.0.tgz"; + path = fetchurl { + name = "_babel_helper_function_name___helper_function_name_7.1.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"; + sha1 = "a0ceb01685f73355d4360c1247f582bfafc8ff53"; + }; + } + { + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.0.0.tgz"; + path = fetchurl { + name = "_babel_helper_get_function_arity___helper_get_function_arity_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"; + sha1 = "83572d4320e2a4657263734113c42868b64e49c3"; + }; + } + { + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.0.0.tgz"; + path = fetchurl { + name = "_babel_helper_split_export_declaration___helper_split_export_declaration_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.0.0.tgz"; + sha1 = "3aae285c0311c2ab095d997b8c9a94cad547d813"; + }; + } + { + name = "_babel_highlight___highlight_7.0.0.tgz"; + path = fetchurl { + name = "_babel_highlight___highlight_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz"; + sha1 = "f710c38c8d458e6dd9a201afb637fcb781ce99e4"; + }; + } + { + name = "_babel_parser___parser_7.2.3.tgz"; + path = fetchurl { + name = "_babel_parser___parser_7.2.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.2.3.tgz"; + sha1 = "32f5df65744b70888d17872ec106b02434ba1489"; + }; + } + { + name = "_babel_template___template_7.2.2.tgz"; + path = fetchurl { + name = "_babel_template___template_7.2.2.tgz"; + url = "https://registry.yarnpkg.com/@babel/template/-/template-7.2.2.tgz"; + sha1 = "005b3fdf0ed96e88041330379e0da9a708eb2907"; + }; + } + { + name = "_babel_traverse___traverse_7.2.3.tgz"; + path = fetchurl { + name = "_babel_traverse___traverse_7.2.3.tgz"; + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz"; + sha1 = "7ff50cefa9c7c0bd2d81231fdac122f3957748d8"; + }; + } + { + name = "_babel_types___types_7.2.2.tgz"; + path = fetchurl { + name = "_babel_types___types_7.2.2.tgz"; + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.2.2.tgz"; + sha1 = "44e10fc24e33af524488b716cdaee5360ea8ed1e"; + }; + } + { + name = "_iamstarkov_listr_update_renderer___listr_update_renderer_0.4.1.tgz"; + path = fetchurl { + name = "_iamstarkov_listr_update_renderer___listr_update_renderer_0.4.1.tgz"; + url = "https://registry.yarnpkg.com/@iamstarkov/listr-update-renderer/-/listr-update-renderer-0.4.1.tgz"; + sha1 = "d7c48092a2dcf90fd672b6c8b458649cb350c77e"; + }; + } + { + name = "_samverschueren_stream_to_observable___stream_to_observable_0.3.0.tgz"; + path = fetchurl { + name = "_samverschueren_stream_to_observable___stream_to_observable_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.0.tgz"; + sha1 = "ecdf48d532c58ea477acfcab80348424f8d0662f"; + }; + } + { + name = "_yarnpkg_lockfile___lockfile_1.1.0.tgz"; + path = fetchurl { + name = "_yarnpkg_lockfile___lockfile_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/@yarnpkg/lockfile/-/lockfile-1.1.0.tgz"; + sha1 = "e77a97fbd345b76d83245edcd17d393b1b41fb31"; + }; + } + { + name = "abbrev___abbrev_1.1.1.tgz"; + path = fetchurl { + name = "abbrev___abbrev_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; + }; + } + { + name = "acorn_jsx___acorn_jsx_3.0.1.tgz"; + path = fetchurl { + name = "acorn_jsx___acorn_jsx_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; + sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; + }; + } + { + name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; + path = fetchurl { + name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz"; + sha1 = "32a064fd925429216a09b141102bfdd185fae40e"; + }; + } + { + name = "acorn___acorn_3.3.0.tgz"; + path = fetchurl { + name = "acorn___acorn_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz"; + sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; + }; + } + { + name = "acorn___acorn_5.7.3.tgz"; + path = fetchurl { + name = "acorn___acorn_5.7.3.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; + sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279"; + }; + } + { + name = "acorn___acorn_6.0.5.tgz"; + path = fetchurl { + name = "acorn___acorn_6.0.5.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-6.0.5.tgz"; + sha1 = "81730c0815f3f3b34d8efa95cb7430965f4d887a"; + }; + } + { + name = "ajv_keywords___ajv_keywords_2.1.1.tgz"; + path = fetchurl { + name = "ajv_keywords___ajv_keywords_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz"; + sha1 = "617997fc5f60576894c435f940d819e135b80762"; + }; + } + { + name = "ajv___ajv_5.5.2.tgz"; + path = fetchurl { + name = "ajv___ajv_5.5.2.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz"; + sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; + }; + } + { + name = "ajv___ajv_6.6.2.tgz"; + path = fetchurl { + name = "ajv___ajv_6.6.2.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.6.2.tgz"; + sha1 = "caceccf474bf3fc3ce3b147443711a24063cc30d"; + }; + } + { + name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; + path = fetchurl { + name = "ansi_escapes___ansi_escapes_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.1.0.tgz"; + sha1 = "f73207bb81207d75fd6c83f125af26eea378ca30"; + }; + } + { + name = "ansi_regex___ansi_regex_2.1.1.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz"; + sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; + }; + } + { + name = "ansi_regex___ansi_regex_3.0.0.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; + sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; + }; + } + { + name = "ansi_regex___ansi_regex_4.0.0.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.0.0.tgz"; + sha1 = "70de791edf021404c3fd615aa89118ae0432e5a9"; + }; + } + { + name = "ansi_styles___ansi_styles_2.2.1.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_2.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz"; + sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; + }; + } + { + name = "ansi_styles___ansi_styles_3.2.1.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; + sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; + }; + } + { + name = "any_observable___any_observable_0.3.0.tgz"; + path = fetchurl { + name = "any_observable___any_observable_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz"; + sha1 = "af933475e5806a67d0d7df090dd5e8bef65d119b"; + }; + } + { + name = "argparse___argparse_1.0.10.tgz"; + path = fetchurl { + name = "argparse___argparse_1.0.10.tgz"; + url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; + sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; + }; + } + { + name = "aria_query___aria_query_3.0.0.tgz"; + path = fetchurl { + name = "aria_query___aria_query_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/aria-query/-/aria-query-3.0.0.tgz"; + sha1 = "65b3fcc1ca1155a8c9ae64d6eee297f15d5133cc"; + }; + } + { + name = "arr_diff___arr_diff_4.0.0.tgz"; + path = fetchurl { + name = "arr_diff___arr_diff_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; + sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; + }; + } + { + name = "arr_flatten___arr_flatten_1.1.0.tgz"; + path = fetchurl { + name = "arr_flatten___arr_flatten_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; + sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; + }; + } + { + name = "arr_union___arr_union_3.1.0.tgz"; + path = fetchurl { + name = "arr_union___arr_union_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; + sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; + }; + } + { + name = "array_includes___array_includes_3.0.3.tgz"; + path = fetchurl { + name = "array_includes___array_includes_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz"; + sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d"; + }; + } + { + name = "array_union___array_union_1.0.2.tgz"; + path = fetchurl { + name = "array_union___array_union_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz"; + sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; + }; + } + { + name = "array_uniq___array_uniq_1.0.3.tgz"; + path = fetchurl { + name = "array_uniq___array_uniq_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz"; + sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; + }; + } + { + name = "array_unique___array_unique_0.3.2.tgz"; + path = fetchurl { + name = "array_unique___array_unique_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; + sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; + }; + } + { + name = "arrify___arrify_1.0.1.tgz"; + path = fetchurl { + name = "arrify___arrify_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz"; + sha1 = "898508da2226f380df904728456849c1501a4b0d"; + }; + } + { + name = "assign_symbols___assign_symbols_1.0.0.tgz"; + path = fetchurl { + name = "assign_symbols___assign_symbols_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; + sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; + }; + } + { + name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; + path = fetchurl { + name = "ast_types_flow___ast_types_flow_0.0.7.tgz"; + url = "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz"; + sha1 = "f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"; + }; + } + { + name = "astral_regex___astral_regex_1.0.0.tgz"; + path = fetchurl { + name = "astral_regex___astral_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; + sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; + }; + } + { + name = "atob___atob_2.1.2.tgz"; + path = fetchurl { + name = "atob___atob_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; + sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; + }; + } + { + name = "axobject_query___axobject_query_2.0.2.tgz"; + path = fetchurl { + name = "axobject_query___axobject_query_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.0.2.tgz"; + sha1 = "ea187abe5b9002b377f925d8bf7d1c561adf38f9"; + }; + } + { + name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; + path = fetchurl { + name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; + sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; + }; + } + { + name = "babel_eslint___babel_eslint_10.0.1.tgz"; + path = fetchurl { + name = "babel_eslint___babel_eslint_10.0.1.tgz"; + url = "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz"; + sha1 = "919681dc099614cd7d31d45c8908695092a1faed"; + }; + } + { + name = "babel_runtime___babel_runtime_6.26.0.tgz"; + path = fetchurl { + name = "babel_runtime___babel_runtime_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; + }; + } + { + name = "balanced_match___balanced_match_1.0.0.tgz"; + path = fetchurl { + name = "balanced_match___balanced_match_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; + }; + } + { + name = "base___base_0.11.2.tgz"; + path = fetchurl { + name = "base___base_0.11.2.tgz"; + url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; + sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; + }; + } + { + name = "boolify___boolify_1.0.1.tgz"; + path = fetchurl { + name = "boolify___boolify_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/boolify/-/boolify-1.0.1.tgz"; + sha1 = "b5c09e17cacd113d11b7bb3ed384cc012994d86b"; + }; + } + { + name = "brace_expansion___brace_expansion_1.1.11.tgz"; + path = fetchurl { + name = "brace_expansion___brace_expansion_1.1.11.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; + sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; + }; + } + { + name = "braces___braces_2.3.2.tgz"; + path = fetchurl { + name = "braces___braces_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; + sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; + }; + } + { + name = "buffer_from___buffer_from_1.1.1.tgz"; + path = fetchurl { + name = "buffer_from___buffer_from_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; + sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; + }; + } + { + name = "builtin_modules___builtin_modules_1.1.1.tgz"; + path = fetchurl { + name = "builtin_modules___builtin_modules_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz"; + sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; + }; + } + { + name = "cache_base___cache_base_1.0.1.tgz"; + path = fetchurl { + name = "cache_base___cache_base_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; + sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; + }; + } + { + name = "caller_callsite___caller_callsite_2.0.0.tgz"; + path = fetchurl { + name = "caller_callsite___caller_callsite_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz"; + sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; + }; + } + { + name = "caller_path___caller_path_0.1.0.tgz"; + path = fetchurl { + name = "caller_path___caller_path_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz"; + sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f"; + }; + } + { + name = "caller_path___caller_path_2.0.0.tgz"; + path = fetchurl { + name = "caller_path___caller_path_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz"; + sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; + }; + } + { + name = "callsites___callsites_0.2.0.tgz"; + path = fetchurl { + name = "callsites___callsites_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz"; + sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; + }; + } + { + name = "callsites___callsites_2.0.0.tgz"; + path = fetchurl { + name = "callsites___callsites_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz"; + sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; + }; + } + { + name = "callsites___callsites_3.0.0.tgz"; + path = fetchurl { + name = "callsites___callsites_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz"; + sha1 = "fb7eb569b72ad7a45812f93fd9430a3e410b3dd3"; + }; + } + { + name = "camelcase_keys___camelcase_keys_4.2.0.tgz"; + path = fetchurl { + name = "camelcase_keys___camelcase_keys_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz"; + sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77"; + }; + } + { + name = "camelcase___camelcase_4.1.0.tgz"; + path = fetchurl { + name = "camelcase___camelcase_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz"; + sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; + }; + } + { + name = "chalk___chalk_2.3.0.tgz"; + path = fetchurl { + name = "chalk___chalk_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.3.0.tgz"; + sha1 = "b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"; + }; + } + { + name = "chalk___chalk_1.1.3.tgz"; + path = fetchurl { + name = "chalk___chalk_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz"; + sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; + }; + } + { + name = "chalk___chalk_2.4.1.tgz"; + path = fetchurl { + name = "chalk___chalk_2.4.1.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.1.tgz"; + sha1 = "18c49ab16a037b6eb0152cc83e3471338215b66e"; + }; + } + { + name = "chardet___chardet_0.4.2.tgz"; + path = fetchurl { + name = "chardet___chardet_0.4.2.tgz"; + url = "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz"; + sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; + }; + } + { + name = "chardet___chardet_0.7.0.tgz"; + path = fetchurl { + name = "chardet___chardet_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; + sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; + }; + } + { + name = "ci_info___ci_info_2.0.0.tgz"; + path = fetchurl { + name = "ci_info___ci_info_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz"; + sha1 = "67a9e964be31a51e15e5010d58e6f12834002f46"; + }; + } + { + name = "circular_json___circular_json_0.3.3.tgz"; + path = fetchurl { + name = "circular_json___circular_json_0.3.3.tgz"; + url = "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz"; + sha1 = "815c99ea84f6809529d2f45791bdf82711352d66"; + }; + } + { + name = "class_utils___class_utils_0.3.6.tgz"; + path = fetchurl { + name = "class_utils___class_utils_0.3.6.tgz"; + url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; + sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; + }; + } + { + name = "cli_cursor___cli_cursor_2.1.0.tgz"; + path = fetchurl { + name = "cli_cursor___cli_cursor_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; + sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; + }; + } + { + name = "cli_truncate___cli_truncate_0.2.1.tgz"; + path = fetchurl { + name = "cli_truncate___cli_truncate_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz"; + sha1 = "9f15cfbb0705005369216c626ac7d05ab90dd574"; + }; + } + { + name = "cli_width___cli_width_2.2.0.tgz"; + path = fetchurl { + name = "cli_width___cli_width_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; + sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; + }; + } + { + name = "cliui___cliui_3.2.0.tgz"; + path = fetchurl { + name = "cliui___cliui_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz"; + sha1 = "120601537a916d29940f934da3b48d585a39213d"; + }; + } + { + name = "co___co_4.6.0.tgz"; + path = fetchurl { + name = "co___co_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz"; + sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; + }; + } + { + name = "code_point_at___code_point_at_1.1.0.tgz"; + path = fetchurl { + name = "code_point_at___code_point_at_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz"; + sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; + }; + } + { + name = "collection_visit___collection_visit_1.0.0.tgz"; + path = fetchurl { + name = "collection_visit___collection_visit_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; + sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; + }; + } + { + name = "color_convert___color_convert_1.9.3.tgz"; + path = fetchurl { + name = "color_convert___color_convert_1.9.3.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; + sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; + }; + } + { + name = "color_name___color_name_1.1.3.tgz"; + path = fetchurl { + name = "color_name___color_name_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; + }; + } + { + name = "commander___commander_2.19.0.tgz"; + path = fetchurl { + name = "commander___commander_2.19.0.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz"; + sha1 = "f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"; + }; + } + { + name = "common_tags___common_tags_1.8.0.tgz"; + path = fetchurl { + name = "common_tags___common_tags_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz"; + sha1 = "8e3153e542d4a39e9b10554434afaaf98956a937"; + }; + } + { + name = "component_emitter___component_emitter_1.2.1.tgz"; + path = fetchurl { + name = "component_emitter___component_emitter_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz"; + sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; + }; + } + { + name = "concat_map___concat_map_0.0.1.tgz"; + path = fetchurl { + name = "concat_map___concat_map_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; + }; + } + { + name = "concat_stream___concat_stream_1.6.2.tgz"; + path = fetchurl { + name = "concat_stream___concat_stream_1.6.2.tgz"; + url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; + sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; + }; + } + { + name = "contains_path___contains_path_0.1.0.tgz"; + path = fetchurl { + name = "contains_path___contains_path_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz"; + sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; + }; + } + { + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; + path = fetchurl { + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; + sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; + }; + } + { + name = "core_js___core_js_2.6.1.tgz"; + path = fetchurl { + name = "core_js___core_js_2.6.1.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.1.tgz"; + sha1 = "87416ae817de957a3f249b3b5ca475d4aaed6042"; + }; + } + { + name = "core_util_is___core_util_is_1.0.2.tgz"; + path = fetchurl { + name = "core_util_is___core_util_is_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; + }; + } + { + name = "cosmiconfig___cosmiconfig_5.0.6.tgz"; + path = fetchurl { + name = "cosmiconfig___cosmiconfig_5.0.6.tgz"; + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.6.tgz"; + sha1 = "dca6cf680a0bd03589aff684700858c81abeeb39"; + }; + } + { + name = "cosmiconfig___cosmiconfig_5.0.7.tgz"; + path = fetchurl { + name = "cosmiconfig___cosmiconfig_5.0.7.tgz"; + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz"; + sha1 = "39826b292ee0d78eda137dfa3173bd1c21a43b04"; + }; + } + { + name = "cross_spawn___cross_spawn_5.1.0.tgz"; + path = fetchurl { + name = "cross_spawn___cross_spawn_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz"; + sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; + }; + } + { + name = "cross_spawn___cross_spawn_6.0.5.tgz"; + path = fetchurl { + name = "cross_spawn___cross_spawn_6.0.5.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; + sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; + }; + } + { + name = "damerau_levenshtein___damerau_levenshtein_1.0.4.tgz"; + path = fetchurl { + name = "damerau_levenshtein___damerau_levenshtein_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.4.tgz"; + sha1 = "03191c432cb6eea168bb77f3a55ffdccb8978514"; + }; + } + { + name = "date_fns___date_fns_1.30.1.tgz"; + path = fetchurl { + name = "date_fns___date_fns_1.30.1.tgz"; + url = "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz"; + sha1 = "2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"; + }; + } + { + name = "debug___debug_2.6.9.tgz"; + path = fetchurl { + name = "debug___debug_2.6.9.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; + sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; + }; + } + { + name = "debug___debug_3.2.6.tgz"; + path = fetchurl { + name = "debug___debug_3.2.6.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz"; + sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b"; + }; + } + { + name = "debug___debug_4.1.1.tgz"; + path = fetchurl { + name = "debug___debug_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz"; + sha1 = "3b72260255109c6b589cee050f1d516139664791"; + }; + } + { + name = "decamelize___decamelize_1.2.0.tgz"; + path = fetchurl { + name = "decamelize___decamelize_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; + }; + } + { + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; + path = fetchurl { + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; + sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; + }; + } + { + name = "dedent___dedent_0.7.0.tgz"; + path = fetchurl { + name = "dedent___dedent_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz"; + sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c"; + }; + } + { + name = "deep_equal___deep_equal_1.0.1.tgz"; + path = fetchurl { + name = "deep_equal___deep_equal_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz"; + sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; + }; + } + { + name = "deep_is___deep_is_0.1.3.tgz"; + path = fetchurl { + name = "deep_is___deep_is_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; + sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; + }; + } + { + name = "define_properties___define_properties_1.1.3.tgz"; + path = fetchurl { + name = "define_properties___define_properties_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; + sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; + }; + } + { + name = "define_property___define_property_0.2.5.tgz"; + path = fetchurl { + name = "define_property___define_property_0.2.5.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; + sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; + }; + } + { + name = "define_property___define_property_1.0.0.tgz"; + path = fetchurl { + name = "define_property___define_property_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; + sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; + }; + } + { + name = "define_property___define_property_2.0.2.tgz"; + path = fetchurl { + name = "define_property___define_property_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; + sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; + }; + } + { + name = "del___del_3.0.0.tgz"; + path = fetchurl { + name = "del___del_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz"; + sha1 = "53ecf699ffcbcb39637691ab13baf160819766e5"; + }; + } + { + name = "dlv___dlv_1.1.2.tgz"; + path = fetchurl { + name = "dlv___dlv_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/dlv/-/dlv-1.1.2.tgz"; + sha1 = "270f6737b30d25b6657a7e962c784403f85137e5"; + }; + } + { + name = "docopt___docopt_0.6.2.tgz"; + path = fetchurl { + name = "docopt___docopt_0.6.2.tgz"; + url = "https://registry.yarnpkg.com/docopt/-/docopt-0.6.2.tgz"; + sha1 = "b28e9e2220da5ec49f7ea5bb24a47787405eeb11"; + }; + } + { + name = "doctrine___doctrine_1.5.0.tgz"; + path = fetchurl { + name = "doctrine___doctrine_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz"; + sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; + }; + } + { + name = "doctrine___doctrine_2.1.0.tgz"; + path = fetchurl { + name = "doctrine___doctrine_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz"; + sha1 = "5cd01fc101621b42c4cd7f5d1a66243716d3f39d"; + }; + } + { + name = "elegant_spinner___elegant_spinner_1.0.1.tgz"; + path = fetchurl { + name = "elegant_spinner___elegant_spinner_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz"; + sha1 = "db043521c95d7e303fd8f345bedc3349cfb0729e"; + }; + } + { + name = "emoji_regex___emoji_regex_6.5.1.tgz"; + path = fetchurl { + name = "emoji_regex___emoji_regex_6.5.1.tgz"; + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-6.5.1.tgz"; + sha1 = "9baea929b155565c11ea41c6626eaa65cef992c2"; + }; + } + { + name = "end_of_stream___end_of_stream_1.4.1.tgz"; + path = fetchurl { + name = "end_of_stream___end_of_stream_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz"; + sha1 = "ed29634d19baba463b6ce6b80a37213eab71ec43"; + }; + } + { + name = "error_ex___error_ex_1.3.2.tgz"; + path = fetchurl { + name = "error_ex___error_ex_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; + sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; + }; + } + { + name = "es_abstract___es_abstract_1.13.0.tgz"; + path = fetchurl { + name = "es_abstract___es_abstract_1.13.0.tgz"; + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz"; + sha1 = "ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"; + }; + } + { + name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; + path = fetchurl { + name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz"; + sha1 = "edf72478033456e8dda8ef09e00ad9650707f377"; + }; + } + { + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; + path = fetchurl { + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; + }; + } + { + name = "eslint_config_airbnb_base___eslint_config_airbnb_base_13.1.0.tgz"; + path = fetchurl { + name = "eslint_config_airbnb_base___eslint_config_airbnb_base_13.1.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-airbnb-base/-/eslint-config-airbnb-base-13.1.0.tgz"; + sha1 = "b5a1b480b80dfad16433d6c4ad84e6605052c05c"; + }; + } + { + name = "eslint_config_airbnb___eslint_config_airbnb_17.1.0.tgz"; + path = fetchurl { + name = "eslint_config_airbnb___eslint_config_airbnb_17.1.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-airbnb/-/eslint-config-airbnb-17.1.0.tgz"; + sha1 = "3964ed4bc198240315ff52030bf8636f42bc4732"; + }; + } + { + name = "eslint_config_prettier___eslint_config_prettier_3.3.0.tgz"; + path = fetchurl { + name = "eslint_config_prettier___eslint_config_prettier_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz"; + sha1 = "41afc8d3b852e757f06274ed6c44ca16f939a57d"; + }; + } + { + name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; + path = fetchurl { + name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz"; + sha1 = "638b4c65db0bd5a41319f96bba1f15ddad2107d9"; + }; + } + { + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; + path = fetchurl { + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz"; + sha1 = "58f15fb839b8d0576ca980413476aab2472db66a"; + }; + } + { + name = "eslint_module_utils___eslint_module_utils_2.2.0.tgz"; + path = fetchurl { + name = "eslint_module_utils___eslint_module_utils_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.2.0.tgz"; + sha1 = "b270362cd88b1a48ad308976ce7fa54e98411746"; + }; + } + { + name = "eslint_plugin_es___eslint_plugin_es_1.4.0.tgz"; + path = fetchurl { + name = "eslint_plugin_es___eslint_plugin_es_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz"; + sha1 = "475f65bb20c993fc10e8c8fe77d1d60068072da6"; + }; + } + { + name = "eslint_plugin_import___eslint_plugin_import_2.14.0.tgz"; + path = fetchurl { + name = "eslint_plugin_import___eslint_plugin_import_2.14.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.14.0.tgz"; + sha1 = "6b17626d2e3e6ad52cfce8807a845d15e22111a8"; + }; + } + { + name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.1.2.tgz"; + path = fetchurl { + name = "eslint_plugin_jsx_a11y___eslint_plugin_jsx_a11y_6.1.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.1.2.tgz"; + sha1 = "69bca4890b36dcf0fe16dd2129d2d88b98f33f88"; + }; + } + { + name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; + path = fetchurl { + name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz"; + sha1 = "55ae3560022863d141fa7a11799532340a685964"; + }; + } + { + name = "eslint_plugin_promise___eslint_plugin_promise_4.0.1.tgz"; + path = fetchurl { + name = "eslint_plugin_promise___eslint_plugin_promise_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz"; + sha1 = "2d074b653f35a23d1ba89d8e976a985117d1c6a2"; + }; + } + { + name = "eslint_plugin_react___eslint_plugin_react_7.12.3.tgz"; + path = fetchurl { + name = "eslint_plugin_react___eslint_plugin_react_7.12.3.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.3.tgz"; + sha1 = "b9ca4cd7cd3f5d927db418a1950366a12d4568fd"; + }; + } + { + name = "eslint_plugin_standard___eslint_plugin_standard_4.0.0.tgz"; + path = fetchurl { + name = "eslint_plugin_standard___eslint_plugin_standard_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz"; + sha1 = "f845b45109c99cd90e77796940a344546c8f6b5c"; + }; + } + { + name = "eslint_restricted_globals___eslint_restricted_globals_0.1.1.tgz"; + path = fetchurl { + name = "eslint_restricted_globals___eslint_restricted_globals_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-restricted-globals/-/eslint-restricted-globals-0.1.1.tgz"; + sha1 = "35f0d5cbc64c2e3ed62e93b4b1a7af05ba7ed4d7"; + }; + } + { + name = "eslint_scope___eslint_scope_3.7.1.tgz"; + path = fetchurl { + name = "eslint_scope___eslint_scope_3.7.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz"; + sha1 = "3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"; + }; + } + { + name = "eslint_scope___eslint_scope_3.7.3.tgz"; + path = fetchurl { + name = "eslint_scope___eslint_scope_3.7.3.tgz"; + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz"; + sha1 = "bb507200d3d17f60247636160b4826284b108535"; + }; + } + { + name = "eslint_scope___eslint_scope_4.0.0.tgz"; + path = fetchurl { + name = "eslint_scope___eslint_scope_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.0.tgz"; + sha1 = "50bf3071e9338bcdc43331794a0cb533f0136172"; + }; + } + { + name = "eslint_utils___eslint_utils_1.3.1.tgz"; + path = fetchurl { + name = "eslint_utils___eslint_utils_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz"; + sha1 = "9a851ba89ee7c460346f97cf8939c7298827e512"; + }; + } + { + name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; + path = fetchurl { + name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; + sha1 = "3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"; + }; + } + { + name = "eslint___eslint_4.19.1.tgz"; + path = fetchurl { + name = "eslint___eslint_4.19.1.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz"; + sha1 = "32d1d653e1d90408854bfb296f076ec7e186a300"; + }; + } + { + name = "eslint___eslint_5.12.0.tgz"; + path = fetchurl { + name = "eslint___eslint_5.12.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-5.12.0.tgz"; + sha1 = "fab3b908f60c52671fb14e996a450b96c743c859"; + }; + } + { + name = "espree___espree_3.5.4.tgz"; + path = fetchurl { + name = "espree___espree_3.5.4.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz"; + sha1 = "b0f447187c8a8bed944b815a660bddf5deb5d1a7"; + }; + } + { + name = "espree___espree_5.0.0.tgz"; + path = fetchurl { + name = "espree___espree_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz"; + sha1 = "fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"; + }; + } + { + name = "esprima___esprima_4.0.1.tgz"; + path = fetchurl { + name = "esprima___esprima_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; + sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; + }; + } + { + name = "esquery___esquery_1.0.1.tgz"; + path = fetchurl { + name = "esquery___esquery_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz"; + sha1 = "406c51658b1f5991a5f9b62b1dc25b00e3e5c708"; + }; + } + { + name = "esrecurse___esrecurse_4.2.1.tgz"; + path = fetchurl { + name = "esrecurse___esrecurse_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; + sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; + }; + } + { + name = "estraverse___estraverse_4.2.0.tgz"; + path = fetchurl { + name = "estraverse___estraverse_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz"; + sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; + }; + } + { + name = "esutils___esutils_2.0.2.tgz"; + path = fetchurl { + name = "esutils___esutils_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz"; + sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; + }; + } + { + name = "execa___execa_0.7.0.tgz"; + path = fetchurl { + name = "execa___execa_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz"; + sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; + }; + } + { + name = "execa___execa_1.0.0.tgz"; + path = fetchurl { + name = "execa___execa_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz"; + sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8"; + }; + } + { + name = "expand_brackets___expand_brackets_2.1.4.tgz"; + path = fetchurl { + name = "expand_brackets___expand_brackets_2.1.4.tgz"; + url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; + sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; + }; + } + { + name = "extend_shallow___extend_shallow_2.0.1.tgz"; + path = fetchurl { + name = "extend_shallow___extend_shallow_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; + sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; + }; + } + { + name = "extend_shallow___extend_shallow_3.0.2.tgz"; + path = fetchurl { + name = "extend_shallow___extend_shallow_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; + sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; + }; + } + { + name = "external_editor___external_editor_2.2.0.tgz"; + path = fetchurl { + name = "external_editor___external_editor_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz"; + sha1 = "045511cfd8d133f3846673d1047c154e214ad3d5"; + }; + } + { + name = "external_editor___external_editor_3.0.3.tgz"; + path = fetchurl { + name = "external_editor___external_editor_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz"; + sha1 = "5866db29a97826dbe4bf3afd24070ead9ea43a27"; + }; + } + { + name = "extglob___extglob_2.0.4.tgz"; + path = fetchurl { + name = "extglob___extglob_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; + sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; + }; + } + { + name = "fast_deep_equal___fast_deep_equal_1.1.0.tgz"; + path = fetchurl { + name = "fast_deep_equal___fast_deep_equal_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz"; + sha1 = "c053477817c86b51daa853c81e059b733d023614"; + }; + } + { + name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; + path = fetchurl { + name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; + sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; + }; + } + { + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; + path = fetchurl { + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; + sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; + }; + } + { + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; + path = fetchurl { + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; + sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; + }; + } + { + name = "figures___figures_1.7.0.tgz"; + path = fetchurl { + name = "figures___figures_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz"; + sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; + }; + } + { + name = "figures___figures_2.0.0.tgz"; + path = fetchurl { + name = "figures___figures_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; + sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; + }; + } + { + name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; + path = fetchurl { + name = "file_entry_cache___file_entry_cache_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; + sha1 = "c392990c3e684783d838b8c84a45d8a048458361"; + }; + } + { + name = "fill_range___fill_range_4.0.0.tgz"; + path = fetchurl { + name = "fill_range___fill_range_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; + sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; + }; + } + { + name = "find_parent_dir___find_parent_dir_0.3.0.tgz"; + path = fetchurl { + name = "find_parent_dir___find_parent_dir_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz"; + sha1 = "33c44b429ab2b2f0646299c5f9f718f376ff8d54"; + }; + } + { + name = "find_up___find_up_1.1.2.tgz"; + path = fetchurl { + name = "find_up___find_up_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz"; + sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; + }; + } + { + name = "find_up___find_up_2.1.0.tgz"; + path = fetchurl { + name = "find_up___find_up_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz"; + sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; + }; + } + { + name = "find_up___find_up_3.0.0.tgz"; + path = fetchurl { + name = "find_up___find_up_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz"; + sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73"; + }; + } + { + name = "flat_cache___flat_cache_1.3.4.tgz"; + path = fetchurl { + name = "flat_cache___flat_cache_1.3.4.tgz"; + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz"; + sha1 = "2c2ef77525cc2929007dfffa1dd314aa9c9dee6f"; + }; + } + { + name = "for_in___for_in_1.0.2.tgz"; + path = fetchurl { + name = "for_in___for_in_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; + sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; + }; + } + { + name = "fragment_cache___fragment_cache_0.2.1.tgz"; + path = fetchurl { + name = "fragment_cache___fragment_cache_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; + sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; + }; + } + { + name = "fs.realpath___fs.realpath_1.0.0.tgz"; + path = fetchurl { + name = "fs.realpath___fs.realpath_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; + sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; + }; + } + { + name = "function_bind___function_bind_1.1.1.tgz"; + path = fetchurl { + name = "function_bind___function_bind_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; + sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; + }; + } + { + name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; + path = fetchurl { + name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; + sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; + }; + } + { + name = "g_status___g_status_2.0.2.tgz"; + path = fetchurl { + name = "g_status___g_status_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/g-status/-/g-status-2.0.2.tgz"; + sha1 = "270fd32119e8fc9496f066fe5fe88e0a6bc78b97"; + }; + } + { + name = "get_caller_file___get_caller_file_1.0.3.tgz"; + path = fetchurl { + name = "get_caller_file___get_caller_file_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; + sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; + }; + } + { + name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.0.tgz"; + path = fetchurl { + name = "get_own_enumerable_property_symbols___get_own_enumerable_property_symbols_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz"; + sha1 = "b877b49a5c16aefac3655f2ed2ea5b684df8d203"; + }; + } + { + name = "get_stdin___get_stdin_5.0.1.tgz"; + path = fetchurl { + name = "get_stdin___get_stdin_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz"; + sha1 = "122e161591e21ff4c52530305693f20e6393a398"; + }; + } + { + name = "get_stdin___get_stdin_6.0.0.tgz"; + path = fetchurl { + name = "get_stdin___get_stdin_6.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz"; + sha1 = "9e09bf712b360ab9225e812048f71fde9c89657b"; + }; + } + { + name = "get_stream___get_stream_3.0.0.tgz"; + path = fetchurl { + name = "get_stream___get_stream_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz"; + sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; + }; + } + { + name = "get_stream___get_stream_4.1.0.tgz"; + path = fetchurl { + name = "get_stream___get_stream_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; + sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"; + }; + } + { + name = "get_value___get_value_2.0.6.tgz"; + path = fetchurl { + name = "get_value___get_value_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; + sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; + }; + } + { + name = "glob___glob_7.1.3.tgz"; + path = fetchurl { + name = "glob___glob_7.1.3.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz"; + sha1 = "3960832d3f1574108342dafd3a67b332c0969df1"; + }; + } + { + name = "glob___glob_7.0.6.tgz"; + path = fetchurl { + name = "glob___glob_7.0.6.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz"; + sha1 = "211bafaf49e525b8cd93260d14ab136152b3f57a"; + }; + } + { + name = "globals___globals_11.9.0.tgz"; + path = fetchurl { + name = "globals___globals_11.9.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-11.9.0.tgz"; + sha1 = "bde236808e987f290768a93d065060d78e6ab249"; + }; + } + { + name = "globby___globby_6.1.0.tgz"; + path = fetchurl { + name = "globby___globby_6.1.0.tgz"; + url = "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz"; + sha1 = "f5a6d70e8395e21c858fb0489d64df02424d506c"; + }; + } + { + name = "graceful_fs___graceful_fs_4.1.15.tgz"; + path = fetchurl { + name = "graceful_fs___graceful_fs_4.1.15.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz"; + sha1 = "ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"; + }; + } + { + name = "has_ansi___has_ansi_2.0.0.tgz"; + path = fetchurl { + name = "has_ansi___has_ansi_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz"; + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; + }; + } + { + name = "has_flag___has_flag_2.0.0.tgz"; + path = fetchurl { + name = "has_flag___has_flag_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz"; + sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; + }; + } + { + name = "has_flag___has_flag_3.0.0.tgz"; + path = fetchurl { + name = "has_flag___has_flag_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; + }; + } + { + name = "has_symbols___has_symbols_1.0.0.tgz"; + path = fetchurl { + name = "has_symbols___has_symbols_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz"; + sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44"; + }; + } + { + name = "has_value___has_value_0.3.1.tgz"; + path = fetchurl { + name = "has_value___has_value_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; + sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; + }; + } + { + name = "has_value___has_value_1.0.0.tgz"; + path = fetchurl { + name = "has_value___has_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; + sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; + }; + } + { + name = "has_values___has_values_0.1.4.tgz"; + path = fetchurl { + name = "has_values___has_values_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; + sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; + }; + } + { + name = "has_values___has_values_1.0.0.tgz"; + path = fetchurl { + name = "has_values___has_values_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; + sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; + }; + } + { + name = "has___has_1.0.3.tgz"; + path = fetchurl { + name = "has___has_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; + sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; + }; + } + { + name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; + path = fetchurl { + name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz"; + sha1 = "97f236977bd6e125408930ff6de3eec6281ec047"; + }; + } + { + name = "husky___husky_1.3.1.tgz"; + path = fetchurl { + name = "husky___husky_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/husky/-/husky-1.3.1.tgz"; + sha1 = "26823e399300388ca2afff11cfa8a86b0033fae0"; + }; + } + { + name = "iconv_lite___iconv_lite_0.4.24.tgz"; + path = fetchurl { + name = "iconv_lite___iconv_lite_0.4.24.tgz"; + url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; + sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; + }; + } + { + name = "ignore___ignore_3.3.10.tgz"; + path = fetchurl { + name = "ignore___ignore_3.3.10.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz"; + sha1 = "0a97fb876986e8081c631160f8f9f389157f0043"; + }; + } + { + name = "ignore___ignore_4.0.6.tgz"; + path = fetchurl { + name = "ignore___ignore_4.0.6.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; + sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; + }; + } + { + name = "ignore___ignore_5.0.4.tgz"; + path = fetchurl { + name = "ignore___ignore_5.0.4.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-5.0.4.tgz"; + sha1 = "33168af4a21e99b00c5d41cbadb6a6cb49903a45"; + }; + } + { + name = "import_fresh___import_fresh_2.0.0.tgz"; + path = fetchurl { + name = "import_fresh___import_fresh_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz"; + sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; + }; + } + { + name = "import_fresh___import_fresh_3.0.0.tgz"; + path = fetchurl { + name = "import_fresh___import_fresh_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz"; + sha1 = "a3d897f420cab0e671236897f75bc14b4885c390"; + }; + } + { + name = "imurmurhash___imurmurhash_0.1.4.tgz"; + path = fetchurl { + name = "imurmurhash___imurmurhash_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; + sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; + }; + } + { + name = "indent_string___indent_string_3.2.0.tgz"; + path = fetchurl { + name = "indent_string___indent_string_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz"; + sha1 = "4a5fd6d27cc332f37e5419a504dbb837105c9289"; + }; + } + { + name = "inflight___inflight_1.0.6.tgz"; + path = fetchurl { + name = "inflight___inflight_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; + sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; + }; + } + { + name = "inherits___inherits_2.0.3.tgz"; + path = fetchurl { + name = "inherits___inherits_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; + }; + } + { + name = "inquirer___inquirer_3.3.0.tgz"; + path = fetchurl { + name = "inquirer___inquirer_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz"; + sha1 = "9dd2f2ad765dcab1ff0443b491442a20ba227dc9"; + }; + } + { + name = "inquirer___inquirer_6.2.1.tgz"; + path = fetchurl { + name = "inquirer___inquirer_6.2.1.tgz"; + url = "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.1.tgz"; + sha1 = "9943fc4882161bdb0b0c9276769c75b32dbfcd52"; + }; + } + { + name = "invert_kv___invert_kv_1.0.0.tgz"; + path = fetchurl { + name = "invert_kv___invert_kv_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz"; + sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; + }; + } + { + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; + path = fetchurl { + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; + sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; + }; + } + { + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; + path = fetchurl { + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; + sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; + }; + } + { + name = "is_arrayish___is_arrayish_0.2.1.tgz"; + path = fetchurl { + name = "is_arrayish___is_arrayish_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; + }; + } + { + name = "is_buffer___is_buffer_1.1.6.tgz"; + path = fetchurl { + name = "is_buffer___is_buffer_1.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; + }; + } + { + name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; + path = fetchurl { + name = "is_builtin_module___is_builtin_module_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; + sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; + }; + } + { + name = "is_callable___is_callable_1.1.4.tgz"; + path = fetchurl { + name = "is_callable___is_callable_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz"; + sha1 = "1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"; + }; + } + { + name = "is_ci___is_ci_2.0.0.tgz"; + path = fetchurl { + name = "is_ci___is_ci_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz"; + sha1 = "6bc6334181810e04b5c22b3d589fdca55026404c"; + }; + } + { + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; + path = fetchurl { + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; + sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; + }; + } + { + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; + path = fetchurl { + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; + sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; + }; + } + { + name = "is_date_object___is_date_object_1.0.1.tgz"; + path = fetchurl { + name = "is_date_object___is_date_object_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz"; + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; + }; + } + { + name = "is_descriptor___is_descriptor_0.1.6.tgz"; + path = fetchurl { + name = "is_descriptor___is_descriptor_0.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; + sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; + }; + } + { + name = "is_descriptor___is_descriptor_1.0.2.tgz"; + path = fetchurl { + name = "is_descriptor___is_descriptor_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; + sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; + }; + } + { + name = "is_directory___is_directory_0.3.1.tgz"; + path = fetchurl { + name = "is_directory___is_directory_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz"; + sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; + }; + } + { + name = "is_extendable___is_extendable_0.1.1.tgz"; + path = fetchurl { + name = "is_extendable___is_extendable_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; + sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; + }; + } + { + name = "is_extendable___is_extendable_1.0.1.tgz"; + path = fetchurl { + name = "is_extendable___is_extendable_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; + sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; + }; + } + { + name = "is_extglob___is_extglob_2.1.1.tgz"; + path = fetchurl { + name = "is_extglob___is_extglob_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; + sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; + }; + } + { + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; + path = fetchurl { + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; + sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; + }; + } + { + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; + path = fetchurl { + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; + }; + } + { + name = "is_glob___is_glob_4.0.0.tgz"; + path = fetchurl { + name = "is_glob___is_glob_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.0.tgz"; + sha1 = "9521c76845cc2610a85203ddf080a958c2ffabc0"; + }; + } + { + name = "is_number___is_number_3.0.0.tgz"; + path = fetchurl { + name = "is_number___is_number_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; + sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; + }; + } + { + name = "is_obj___is_obj_1.0.1.tgz"; + path = fetchurl { + name = "is_obj___is_obj_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; + sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; + }; + } + { + name = "is_observable___is_observable_1.1.0.tgz"; + path = fetchurl { + name = "is_observable___is_observable_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz"; + sha1 = "b3e986c8f44de950867cab5403f5a3465005975e"; + }; + } + { + name = "is_path_cwd___is_path_cwd_1.0.0.tgz"; + path = fetchurl { + name = "is_path_cwd___is_path_cwd_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-1.0.0.tgz"; + sha1 = "d225ec23132e89edd38fda767472e62e65f1106d"; + }; + } + { + name = "is_path_in_cwd___is_path_in_cwd_1.0.1.tgz"; + path = fetchurl { + name = "is_path_in_cwd___is_path_in_cwd_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-path-in-cwd/-/is-path-in-cwd-1.0.1.tgz"; + sha1 = "5ac48b345ef675339bd6c7a48a912110b241cf52"; + }; + } + { + name = "is_path_inside___is_path_inside_1.0.1.tgz"; + path = fetchurl { + name = "is_path_inside___is_path_inside_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz"; + sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; + }; + } + { + name = "is_plain_object___is_plain_object_2.0.4.tgz"; + path = fetchurl { + name = "is_plain_object___is_plain_object_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; + sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; + }; + } + { + name = "is_promise___is_promise_2.1.0.tgz"; + path = fetchurl { + name = "is_promise___is_promise_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; + sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; + }; + } + { + name = "is_regex___is_regex_1.0.4.tgz"; + path = fetchurl { + name = "is_regex___is_regex_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz"; + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; + }; + } + { + name = "is_regexp___is_regexp_1.0.0.tgz"; + path = fetchurl { + name = "is_regexp___is_regexp_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz"; + sha1 = "fd2d883545c46bac5a633e7b9a09e87fa2cb5069"; + }; + } + { + name = "is_resolvable___is_resolvable_1.1.0.tgz"; + path = fetchurl { + name = "is_resolvable___is_resolvable_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz"; + sha1 = "fb18f87ce1feb925169c9a407c19318a3206ed88"; + }; + } + { + name = "is_stream___is_stream_1.1.0.tgz"; + path = fetchurl { + name = "is_stream___is_stream_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"; + sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; + }; + } + { + name = "is_symbol___is_symbol_1.0.2.tgz"; + path = fetchurl { + name = "is_symbol___is_symbol_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz"; + sha1 = "a055f6ae57192caee329e7a860118b497a950f38"; + }; + } + { + name = "is_windows___is_windows_1.0.2.tgz"; + path = fetchurl { + name = "is_windows___is_windows_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; + sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; + }; + } + { + name = "isarray___isarray_1.0.0.tgz"; + path = fetchurl { + name = "isarray___isarray_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; + }; + } + { + name = "isexe___isexe_2.0.0.tgz"; + path = fetchurl { + name = "isexe___isexe_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; + sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; + }; + } + { + name = "isobject___isobject_2.1.0.tgz"; + path = fetchurl { + name = "isobject___isobject_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; + sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; + }; + } + { + name = "isobject___isobject_3.0.1.tgz"; + path = fetchurl { + name = "isobject___isobject_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; + sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; + }; + } + { + name = "jest_get_type___jest_get_type_22.4.3.tgz"; + path = fetchurl { + name = "jest_get_type___jest_get_type_22.4.3.tgz"; + url = "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-22.4.3.tgz"; + sha1 = "e3a8504d8479342dd4420236b322869f18900ce4"; + }; + } + { + name = "jest_validate___jest_validate_23.6.0.tgz"; + path = fetchurl { + name = "jest_validate___jest_validate_23.6.0.tgz"; + url = "https://registry.yarnpkg.com/jest-validate/-/jest-validate-23.6.0.tgz"; + sha1 = "36761f99d1ed33fcd425b4e4c5595d62b6597474"; + }; + } + { + name = "js_tokens___js_tokens_4.0.0.tgz"; + path = fetchurl { + name = "js_tokens___js_tokens_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; + sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; + }; + } + { + name = "js_tokens___js_tokens_3.0.2.tgz"; + path = fetchurl { + name = "js_tokens___js_tokens_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz"; + sha1 = "9866df395102130e38f7f996bceb65443209c25b"; + }; + } + { + name = "js_yaml___js_yaml_3.12.1.tgz"; + path = fetchurl { + name = "js_yaml___js_yaml_3.12.1.tgz"; + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz"; + sha1 = "295c8632a18a23e054cf5c9d3cecafe678167600"; + }; + } + { + name = "jsesc___jsesc_2.5.2.tgz"; + path = fetchurl { + name = "jsesc___jsesc_2.5.2.tgz"; + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz"; + sha1 = "80564d2e483dacf6e8ef209650a67df3f0c283a4"; + }; + } + { + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; + path = fetchurl { + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; + sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; + }; + } + { + name = "json_schema_traverse___json_schema_traverse_0.3.1.tgz"; + path = fetchurl { + name = "json_schema_traverse___json_schema_traverse_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz"; + sha1 = "349a6d44c53a51de89b40805c5d5e59b417d3340"; + }; + } + { + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; + path = fetchurl { + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; + sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; + }; + } + { + name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; + path = fetchurl { + name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; + sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; + }; + } + { + name = "jsx_ast_utils___jsx_ast_utils_2.0.1.tgz"; + path = fetchurl { + name = "jsx_ast_utils___jsx_ast_utils_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.0.1.tgz"; + sha1 = "e801b1b39985e20fffc87b40e3748080e2dcac7f"; + }; + } + { + name = "kind_of___kind_of_3.2.2.tgz"; + path = fetchurl { + name = "kind_of___kind_of_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; + sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; + }; + } + { + name = "kind_of___kind_of_4.0.0.tgz"; + path = fetchurl { + name = "kind_of___kind_of_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; + sha1 = "20813df3d712928b207378691a45066fae72dd57"; + }; + } + { + name = "kind_of___kind_of_5.1.0.tgz"; + path = fetchurl { + name = "kind_of___kind_of_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; + sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; + }; + } + { + name = "kind_of___kind_of_6.0.2.tgz"; + path = fetchurl { + name = "kind_of___kind_of_6.0.2.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz"; + sha1 = "01146b36a6218e64e58f3a8d66de5d7fc6f6d051"; + }; + } + { + name = "lcid___lcid_1.0.0.tgz"; + path = fetchurl { + name = "lcid___lcid_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; + sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; + }; + } + { + name = "leven___leven_2.1.0.tgz"; + path = fetchurl { + name = "leven___leven_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/leven/-/leven-2.1.0.tgz"; + sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; + }; + } + { + name = "levn___levn_0.3.0.tgz"; + path = fetchurl { + name = "levn___levn_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; + sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; + }; + } + { + name = "lint_staged___lint_staged_8.1.0.tgz"; + path = fetchurl { + name = "lint_staged___lint_staged_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/lint-staged/-/lint-staged-8.1.0.tgz"; + sha1 = "dbc3ae2565366d8f20efb9f9799d076da64863f2"; + }; + } + { + name = "listr_silent_renderer___listr_silent_renderer_1.1.1.tgz"; + path = fetchurl { + name = "listr_silent_renderer___listr_silent_renderer_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz"; + sha1 = "924b5a3757153770bf1a8e3fbf74b8bbf3f9242e"; + }; + } + { + name = "listr_update_renderer___listr_update_renderer_0.5.0.tgz"; + path = fetchurl { + name = "listr_update_renderer___listr_update_renderer_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz"; + sha1 = "4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2"; + }; + } + { + name = "listr_verbose_renderer___listr_verbose_renderer_0.5.0.tgz"; + path = fetchurl { + name = "listr_verbose_renderer___listr_verbose_renderer_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz"; + sha1 = "f1132167535ea4c1261102b9f28dac7cba1e03db"; + }; + } + { + name = "listr___listr_0.14.3.tgz"; + path = fetchurl { + name = "listr___listr_0.14.3.tgz"; + url = "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz"; + sha1 = "2fea909604e434be464c50bddba0d496928fa586"; + }; + } + { + name = "load_json_file___load_json_file_2.0.0.tgz"; + path = fetchurl { + name = "load_json_file___load_json_file_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz"; + sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; + }; + } + { + name = "locate_path___locate_path_2.0.0.tgz"; + path = fetchurl { + name = "locate_path___locate_path_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz"; + sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; + }; + } + { + name = "locate_path___locate_path_3.0.0.tgz"; + path = fetchurl { + name = "locate_path___locate_path_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz"; + sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e"; + }; + } + { + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; + path = fetchurl { + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; + sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; + }; + } + { + name = "lodash.merge___lodash.merge_4.6.1.tgz"; + path = fetchurl { + name = "lodash.merge___lodash.merge_4.6.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz"; + sha1 = "adc25d9cb99b9391c59624f379fbba60d7111d54"; + }; + } + { + name = "lodash.unescape___lodash.unescape_4.0.1.tgz"; + path = fetchurl { + name = "lodash.unescape___lodash.unescape_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.unescape/-/lodash.unescape-4.0.1.tgz"; + sha1 = "bf2249886ce514cda112fae9218cdc065211fc9c"; + }; + } + { + name = "lodash___lodash_4.17.11.tgz"; + path = fetchurl { + name = "lodash___lodash_4.17.11.tgz"; + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz"; + sha1 = "b39ea6229ef607ecd89e2c8df12536891cac9b8d"; + }; + } + { + name = "log_symbols___log_symbols_1.0.2.tgz"; + path = fetchurl { + name = "log_symbols___log_symbols_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz"; + sha1 = "376ff7b58ea3086a0f09facc74617eca501e1a18"; + }; + } + { + name = "log_symbols___log_symbols_2.2.0.tgz"; + path = fetchurl { + name = "log_symbols___log_symbols_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz"; + sha1 = "5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"; + }; + } + { + name = "log_update___log_update_2.3.0.tgz"; + path = fetchurl { + name = "log_update___log_update_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz"; + sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708"; + }; + } + { + name = "loglevel_colored_level_prefix___loglevel_colored_level_prefix_1.0.0.tgz"; + path = fetchurl { + name = "loglevel_colored_level_prefix___loglevel_colored_level_prefix_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz"; + sha1 = "6a40218fdc7ae15fc76c3d0f3e676c465388603e"; + }; + } + { + name = "loglevel___loglevel_1.6.1.tgz"; + path = fetchurl { + name = "loglevel___loglevel_1.6.1.tgz"; + url = "https://registry.yarnpkg.com/loglevel/-/loglevel-1.6.1.tgz"; + sha1 = "e0fc95133b6ef276cdc8887cdaf24aa6f156f8fa"; + }; + } + { + name = "loose_envify___loose_envify_1.4.0.tgz"; + path = fetchurl { + name = "loose_envify___loose_envify_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; + sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; + }; + } + { + name = "lru_cache___lru_cache_4.1.5.tgz"; + path = fetchurl { + name = "lru_cache___lru_cache_4.1.5.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz"; + sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"; + }; + } + { + name = "make_plural___make_plural_4.3.0.tgz"; + path = fetchurl { + name = "make_plural___make_plural_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/make-plural/-/make-plural-4.3.0.tgz"; + sha1 = "f23de08efdb0cac2e0c9ba9f315b0dff6b4c2735"; + }; + } + { + name = "map_cache___map_cache_0.2.2.tgz"; + path = fetchurl { + name = "map_cache___map_cache_0.2.2.tgz"; + url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; + sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; + }; + } + { + name = "map_obj___map_obj_2.0.0.tgz"; + path = fetchurl { + name = "map_obj___map_obj_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz"; + sha1 = "a65cd29087a92598b8791257a523e021222ac1f9"; + }; + } + { + name = "map_visit___map_visit_1.0.0.tgz"; + path = fetchurl { + name = "map_visit___map_visit_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; + sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; + }; + } + { + name = "matcher___matcher_1.1.1.tgz"; + path = fetchurl { + name = "matcher___matcher_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/matcher/-/matcher-1.1.1.tgz"; + sha1 = "51d8301e138f840982b338b116bb0c09af62c1c2"; + }; + } + { + name = "mem___mem_1.1.0.tgz"; + path = fetchurl { + name = "mem___mem_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz"; + sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; + }; + } + { + name = "messageformat_parser___messageformat_parser_1.1.0.tgz"; + path = fetchurl { + name = "messageformat_parser___messageformat_parser_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/messageformat-parser/-/messageformat-parser-1.1.0.tgz"; + sha1 = "13ba2250a76bbde8e0fca0dbb3475f95c594a90a"; + }; + } + { + name = "messageformat___messageformat_1.1.1.tgz"; + path = fetchurl { + name = "messageformat___messageformat_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/messageformat/-/messageformat-1.1.1.tgz"; + sha1 = "ceaa2e6c86929d4807058275a7372b1bd963bdf6"; + }; + } + { + name = "micromatch___micromatch_3.1.10.tgz"; + path = fetchurl { + name = "micromatch___micromatch_3.1.10.tgz"; + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; + sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; + }; + } + { + name = "mimic_fn___mimic_fn_1.2.0.tgz"; + path = fetchurl { + name = "mimic_fn___mimic_fn_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; + sha1 = "820c86a39334640e99516928bd03fca88057d022"; + }; + } + { + name = "minimatch___minimatch_3.0.4.tgz"; + path = fetchurl { + name = "minimatch___minimatch_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; + sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; + }; + } + { + name = "minimist___minimist_0.0.8.tgz"; + path = fetchurl { + name = "minimist___minimist_0.0.8.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; + }; + } + { + name = "minimist___minimist_1.2.0.tgz"; + path = fetchurl { + name = "minimist___minimist_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; + }; + } + { + name = "mixin_deep___mixin_deep_1.3.1.tgz"; + path = fetchurl { + name = "mixin_deep___mixin_deep_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz"; + sha1 = "a49e7268dce1a0d9698e45326c5626df3543d0fe"; + }; + } + { + name = "mkdirp___mkdirp_0.5.1.tgz"; + path = fetchurl { + name = "mkdirp___mkdirp_0.5.1.tgz"; + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; + }; + } + { + name = "ms___ms_2.0.0.tgz"; + path = fetchurl { + name = "ms___ms_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; + sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; + }; + } + { + name = "ms___ms_2.1.1.tgz"; + path = fetchurl { + name = "ms___ms_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; + sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; + }; + } + { + name = "mute_stream___mute_stream_0.0.7.tgz"; + path = fetchurl { + name = "mute_stream___mute_stream_0.0.7.tgz"; + url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; + sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; + }; + } + { + name = "nanomatch___nanomatch_1.2.13.tgz"; + path = fetchurl { + name = "nanomatch___nanomatch_1.2.13.tgz"; + url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; + sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; + }; + } + { + name = "natural_compare___natural_compare_1.4.0.tgz"; + path = fetchurl { + name = "natural_compare___natural_compare_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; + sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; + }; + } + { + name = "nice_try___nice_try_1.0.5.tgz"; + path = fetchurl { + name = "nice_try___nice_try_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; + sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; + }; + } + { + name = "nopt___nopt_3.0.6.tgz"; + path = fetchurl { + name = "nopt___nopt_3.0.6.tgz"; + url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz"; + sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; + }; + } + { + name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; + path = fetchurl { + name = "normalize_package_data___normalize_package_data_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.0.tgz"; + sha1 = "12f95a307d58352075a04907b84ac8be98ac012f"; + }; + } + { + name = "npm_path___npm_path_2.0.4.tgz"; + path = fetchurl { + name = "npm_path___npm_path_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/npm-path/-/npm-path-2.0.4.tgz"; + sha1 = "c641347a5ff9d6a09e4d9bce5580c4f505278e64"; + }; + } + { + name = "npm_run_path___npm_run_path_2.0.2.tgz"; + path = fetchurl { + name = "npm_run_path___npm_run_path_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz"; + sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; + }; + } + { + name = "npm_which___npm_which_3.0.1.tgz"; + path = fetchurl { + name = "npm_which___npm_which_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/npm-which/-/npm-which-3.0.1.tgz"; + sha1 = "9225f26ec3a285c209cae67c3b11a6b4ab7140aa"; + }; + } + { + name = "number_is_nan___number_is_nan_1.0.1.tgz"; + path = fetchurl { + name = "number_is_nan___number_is_nan_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz"; + sha1 = "097b602b53422a522c1afb8790318336941a011d"; + }; + } + { + name = "object_assign___object_assign_4.1.1.tgz"; + path = fetchurl { + name = "object_assign___object_assign_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; + sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; + }; + } + { + name = "object_copy___object_copy_0.1.0.tgz"; + path = fetchurl { + name = "object_copy___object_copy_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; + sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; + }; + } + { + name = "object_keys___object_keys_1.0.12.tgz"; + path = fetchurl { + name = "object_keys___object_keys_1.0.12.tgz"; + url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.0.12.tgz"; + sha1 = "09c53855377575310cca62f55bb334abff7b3ed2"; + }; + } + { + name = "object_visit___object_visit_1.0.1.tgz"; + path = fetchurl { + name = "object_visit___object_visit_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; + sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; + }; + } + { + name = "object.assign___object.assign_4.1.0.tgz"; + path = fetchurl { + name = "object.assign___object.assign_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz"; + sha1 = "968bf1100d7956bb3ca086f006f846b3bc4008da"; + }; + } + { + name = "object.entries___object.entries_1.1.0.tgz"; + path = fetchurl { + name = "object.entries___object.entries_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz"; + sha1 = "2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"; + }; + } + { + name = "object.fromentries___object.fromentries_2.0.0.tgz"; + path = fetchurl { + name = "object.fromentries___object.fromentries_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.0.tgz"; + sha1 = "49a543d92151f8277b3ac9600f1e930b189d30ab"; + }; + } + { + name = "object.pick___object.pick_1.3.0.tgz"; + path = fetchurl { + name = "object.pick___object.pick_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; + sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; + }; + } + { + name = "once___once_1.4.0.tgz"; + path = fetchurl { + name = "once___once_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; + sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; + }; + } + { + name = "onetime___onetime_2.0.1.tgz"; + path = fetchurl { + name = "onetime___onetime_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; + sha1 = "067428230fd67443b2794b22bba528b6867962d4"; + }; + } + { + name = "optionator___optionator_0.8.2.tgz"; + path = fetchurl { + name = "optionator___optionator_0.8.2.tgz"; + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz"; + sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; + }; + } + { + name = "os_locale___os_locale_2.1.0.tgz"; + path = fetchurl { + name = "os_locale___os_locale_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz"; + sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2"; + }; + } + { + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; + path = fetchurl { + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; + }; + } + { + name = "p_finally___p_finally_1.0.0.tgz"; + path = fetchurl { + name = "p_finally___p_finally_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; + sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; + }; + } + { + name = "p_limit___p_limit_1.3.0.tgz"; + path = fetchurl { + name = "p_limit___p_limit_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz"; + sha1 = "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"; + }; + } + { + name = "p_limit___p_limit_2.1.0.tgz"; + path = fetchurl { + name = "p_limit___p_limit_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.1.0.tgz"; + sha1 = "1d5a0d20fb12707c758a655f6bbc4386b5930d68"; + }; + } + { + name = "p_locate___p_locate_2.0.0.tgz"; + path = fetchurl { + name = "p_locate___p_locate_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz"; + sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; + }; + } + { + name = "p_locate___p_locate_3.0.0.tgz"; + path = fetchurl { + name = "p_locate___p_locate_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz"; + sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4"; + }; + } + { + name = "p_map___p_map_1.2.0.tgz"; + path = fetchurl { + name = "p_map___p_map_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/p-map/-/p-map-1.2.0.tgz"; + sha1 = "e4e94f311eabbc8633a1e79908165fca26241b6b"; + }; + } + { + name = "p_map___p_map_2.0.0.tgz"; + path = fetchurl { + name = "p_map___p_map_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-map/-/p-map-2.0.0.tgz"; + sha1 = "be18c5a5adeb8e156460651421aceca56c213a50"; + }; + } + { + name = "p_try___p_try_1.0.0.tgz"; + path = fetchurl { + name = "p_try___p_try_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz"; + sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; + }; + } + { + name = "p_try___p_try_2.0.0.tgz"; + path = fetchurl { + name = "p_try___p_try_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz"; + sha1 = "85080bb87c64688fa47996fe8f7dfbe8211760b1"; + }; + } + { + name = "parent_module___parent_module_1.0.0.tgz"; + path = fetchurl { + name = "parent_module___parent_module_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz"; + sha1 = "df250bdc5391f4a085fb589dad761f5ad6b865b5"; + }; + } + { + name = "parse_json___parse_json_2.2.0.tgz"; + path = fetchurl { + name = "parse_json___parse_json_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; + sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; + }; + } + { + name = "parse_json___parse_json_4.0.0.tgz"; + path = fetchurl { + name = "parse_json___parse_json_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz"; + sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; + }; + } + { + name = "pascalcase___pascalcase_0.1.1.tgz"; + path = fetchurl { + name = "pascalcase___pascalcase_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; + sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; + }; + } + { + name = "path_exists___path_exists_2.1.0.tgz"; + path = fetchurl { + name = "path_exists___path_exists_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz"; + sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; + }; + } + { + name = "path_exists___path_exists_3.0.0.tgz"; + path = fetchurl { + name = "path_exists___path_exists_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz"; + sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; + }; + } + { + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; + path = fetchurl { + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; + }; + } + { + name = "path_is_inside___path_is_inside_1.0.2.tgz"; + path = fetchurl { + name = "path_is_inside___path_is_inside_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz"; + sha1 = "365417dede44430d1c11af61027facf074bdfc53"; + }; + } + { + name = "path_key___path_key_2.0.1.tgz"; + path = fetchurl { + name = "path_key___path_key_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; + sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; + }; + } + { + name = "path_parse___path_parse_1.0.6.tgz"; + path = fetchurl { + name = "path_parse___path_parse_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; + sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; + }; + } + { + name = "path_type___path_type_2.0.0.tgz"; + path = fetchurl { + name = "path_type___path_type_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz"; + sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; + }; + } + { + name = "pify___pify_2.3.0.tgz"; + path = fetchurl { + name = "pify___pify_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; + sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; + }; + } + { + name = "pify___pify_3.0.0.tgz"; + path = fetchurl { + name = "pify___pify_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; + sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; + }; + } + { + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; + path = fetchurl { + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; + sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; + }; + } + { + name = "pinkie___pinkie_2.0.4.tgz"; + path = fetchurl { + name = "pinkie___pinkie_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; + sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; + }; + } + { + name = "pkg_dir___pkg_dir_1.0.0.tgz"; + path = fetchurl { + name = "pkg_dir___pkg_dir_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-1.0.0.tgz"; + sha1 = "7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"; + }; + } + { + name = "pkg_dir___pkg_dir_3.0.0.tgz"; + path = fetchurl { + name = "pkg_dir___pkg_dir_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz"; + sha1 = "2749020f239ed990881b1f71210d51eb6523bea3"; + }; + } + { + name = "please_upgrade_node___please_upgrade_node_3.1.1.tgz"; + path = fetchurl { + name = "please_upgrade_node___please_upgrade_node_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.1.1.tgz"; + sha1 = "ed320051dfcc5024fae696712c8288993595e8ac"; + }; + } + { + name = "pluralize___pluralize_7.0.0.tgz"; + path = fetchurl { + name = "pluralize___pluralize_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz"; + sha1 = "298b89df8b93b0221dbf421ad2b1b1ea23fc6777"; + }; + } + { + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; + path = fetchurl { + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; + sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; + }; + } + { + name = "prelude_ls___prelude_ls_1.1.2.tgz"; + path = fetchurl { + name = "prelude_ls___prelude_ls_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; + sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; + }; + } + { + name = "prettier_eslint_cli___prettier_eslint_cli_4.7.1.tgz"; + path = fetchurl { + name = "prettier_eslint_cli___prettier_eslint_cli_4.7.1.tgz"; + url = "https://registry.yarnpkg.com/prettier-eslint-cli/-/prettier-eslint-cli-4.7.1.tgz"; + sha1 = "3d103c494baa4e80b99ad53e2b9db7620101859f"; + }; + } + { + name = "prettier_eslint___prettier_eslint_8.8.2.tgz"; + path = fetchurl { + name = "prettier_eslint___prettier_eslint_8.8.2.tgz"; + url = "https://registry.yarnpkg.com/prettier-eslint/-/prettier-eslint-8.8.2.tgz"; + sha1 = "fcb29a48ab4524e234680797fe70e9d136ccaf0b"; + }; + } + { + name = "prettier___prettier_1.15.3.tgz"; + path = fetchurl { + name = "prettier___prettier_1.15.3.tgz"; + url = "https://registry.yarnpkg.com/prettier/-/prettier-1.15.3.tgz"; + sha1 = "1feaac5bdd181237b54dbe65d874e02a1472786a"; + }; + } + { + name = "pretty_format___pretty_format_23.6.0.tgz"; + path = fetchurl { + name = "pretty_format___pretty_format_23.6.0.tgz"; + url = "https://registry.yarnpkg.com/pretty-format/-/pretty-format-23.6.0.tgz"; + sha1 = "5eaac8eeb6b33b987b7fe6097ea6a8a146ab5760"; + }; + } + { + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; + path = fetchurl { + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; + sha1 = "a37d732f4271b4ab1ad070d35508e8290788ffaa"; + }; + } + { + name = "progress___progress_2.0.3.tgz"; + path = fetchurl { + name = "progress___progress_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; + sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; + }; + } + { + name = "prop_types___prop_types_15.6.2.tgz"; + path = fetchurl { + name = "prop_types___prop_types_15.6.2.tgz"; + url = "https://registry.yarnpkg.com/prop-types/-/prop-types-15.6.2.tgz"; + sha1 = "05d5ca77b4453e985d60fc7ff8c859094a497102"; + }; + } + { + name = "pseudomap___pseudomap_1.0.2.tgz"; + path = fetchurl { + name = "pseudomap___pseudomap_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + } + { + name = "pump___pump_3.0.0.tgz"; + path = fetchurl { + name = "pump___pump_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz"; + sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64"; + }; + } + { + name = "punycode___punycode_2.1.1.tgz"; + path = fetchurl { + name = "punycode___punycode_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; + sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; + }; + } + { + name = "quick_lru___quick_lru_1.1.0.tgz"; + path = fetchurl { + name = "quick_lru___quick_lru_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz"; + sha1 = "4360b17c61136ad38078397ff11416e186dcfbb8"; + }; + } + { + name = "ramda___ramda_0.26.1.tgz"; + path = fetchurl { + name = "ramda___ramda_0.26.1.tgz"; + url = "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz"; + sha1 = "8d41351eb8111c55353617fc3bbffad8e4d35d06"; + }; + } + { + name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; + path = fetchurl { + name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; + sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; + }; + } + { + name = "read_pkg___read_pkg_2.0.0.tgz"; + path = fetchurl { + name = "read_pkg___read_pkg_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz"; + sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; + }; + } + { + name = "read_pkg___read_pkg_4.0.1.tgz"; + path = fetchurl { + name = "read_pkg___read_pkg_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-4.0.1.tgz"; + sha1 = "963625378f3e1c4d48c85872b5a6ec7d5d093237"; + }; + } + { + name = "readable_stream___readable_stream_2.3.6.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_2.3.6.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz"; + sha1 = "b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"; + }; + } + { + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; + path = fetchurl { + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; + sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; + }; + } + { + name = "regex_not___regex_not_1.0.2.tgz"; + path = fetchurl { + name = "regex_not___regex_not_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; + sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; + }; + } + { + name = "regexpp___regexpp_1.1.0.tgz"; + path = fetchurl { + name = "regexpp___regexpp_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz"; + sha1 = "0e3516dd0b7904f413d2d4193dce4618c3a689ab"; + }; + } + { + name = "regexpp___regexpp_2.0.1.tgz"; + path = fetchurl { + name = "regexpp___regexpp_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; + sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; + }; + } + { + name = "repeat_element___repeat_element_1.1.3.tgz"; + path = fetchurl { + name = "repeat_element___repeat_element_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; + sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; + }; + } + { + name = "repeat_string___repeat_string_1.6.1.tgz"; + path = fetchurl { + name = "repeat_string___repeat_string_1.6.1.tgz"; + url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; + sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; + }; + } + { + name = "require_directory___require_directory_2.1.1.tgz"; + path = fetchurl { + name = "require_directory___require_directory_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; + sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; + }; + } + { + name = "require_main_filename___require_main_filename_1.0.1.tgz"; + path = fetchurl { + name = "require_main_filename___require_main_filename_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz"; + sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; + }; + } + { + name = "require_relative___require_relative_0.8.7.tgz"; + path = fetchurl { + name = "require_relative___require_relative_0.8.7.tgz"; + url = "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz"; + sha1 = "7999539fc9e047a37928fa196f8e1563dabd36de"; + }; + } + { + name = "require_uncached___require_uncached_1.0.3.tgz"; + path = fetchurl { + name = "require_uncached___require_uncached_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz"; + sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; + }; + } + { + name = "reserved_words___reserved_words_0.1.2.tgz"; + path = fetchurl { + name = "reserved_words___reserved_words_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/reserved-words/-/reserved-words-0.1.2.tgz"; + sha1 = "00a0940f98cd501aeaaac316411d9adc52b31ab1"; + }; + } + { + name = "resolve_from___resolve_from_1.0.1.tgz"; + path = fetchurl { + name = "resolve_from___resolve_from_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz"; + sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"; + }; + } + { + name = "resolve_from___resolve_from_3.0.0.tgz"; + path = fetchurl { + name = "resolve_from___resolve_from_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz"; + sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; + }; + } + { + name = "resolve_from___resolve_from_4.0.0.tgz"; + path = fetchurl { + name = "resolve_from___resolve_from_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; + sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; + }; + } + { + name = "resolve_url___resolve_url_0.2.1.tgz"; + path = fetchurl { + name = "resolve_url___resolve_url_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; + sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; + }; + } + { + name = "resolve___resolve_1.9.0.tgz"; + path = fetchurl { + name = "resolve___resolve_1.9.0.tgz"; + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz"; + sha1 = "a14c6fdfa8f92a7df1d996cb7105fa744658ea06"; + }; + } + { + name = "restore_cursor___restore_cursor_2.0.0.tgz"; + path = fetchurl { + name = "restore_cursor___restore_cursor_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; + sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; + }; + } + { + name = "ret___ret_0.1.15.tgz"; + path = fetchurl { + name = "ret___ret_0.1.15.tgz"; + url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; + sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; + }; + } + { + name = "rimraf___rimraf_2.6.3.tgz"; + path = fetchurl { + name = "rimraf___rimraf_2.6.3.tgz"; + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; + sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; + }; + } + { + name = "run_async___run_async_2.3.0.tgz"; + path = fetchurl { + name = "run_async___run_async_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz"; + sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; + }; + } + { + name = "run_node___run_node_1.0.0.tgz"; + path = fetchurl { + name = "run_node___run_node_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/run-node/-/run-node-1.0.0.tgz"; + sha1 = "46b50b946a2aa2d4947ae1d886e9856fd9cabe5e"; + }; + } + { + name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; + path = fetchurl { + name = "rx_lite_aggregates___rx_lite_aggregates_4.0.8.tgz"; + url = "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz"; + sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; + }; + } + { + name = "rx_lite___rx_lite_4.0.8.tgz"; + path = fetchurl { + name = "rx_lite___rx_lite_4.0.8.tgz"; + url = "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz"; + sha1 = "0b1e11af8bc44836f04a6407e92da42467b79444"; + }; + } + { + name = "rxjs___rxjs_5.5.12.tgz"; + path = fetchurl { + name = "rxjs___rxjs_5.5.12.tgz"; + url = "https://registry.yarnpkg.com/rxjs/-/rxjs-5.5.12.tgz"; + sha1 = "6fa61b8a77c3d793dbaf270bee2f43f652d741cc"; + }; + } + { + name = "rxjs___rxjs_6.3.3.tgz"; + path = fetchurl { + name = "rxjs___rxjs_6.3.3.tgz"; + url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.3.3.tgz"; + sha1 = "3c6a7fa420e844a81390fb1158a9ec614f4bad55"; + }; + } + { + name = "safe_buffer___safe_buffer_5.1.2.tgz"; + path = fetchurl { + name = "safe_buffer___safe_buffer_5.1.2.tgz"; + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; + sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; + }; + } + { + name = "safe_regex___safe_regex_1.1.0.tgz"; + path = fetchurl { + name = "safe_regex___safe_regex_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; + sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; + }; + } + { + name = "safer_buffer___safer_buffer_2.1.2.tgz"; + path = fetchurl { + name = "safer_buffer___safer_buffer_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; + sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; + }; + } + { + name = "semver_compare___semver_compare_1.0.0.tgz"; + path = fetchurl { + name = "semver_compare___semver_compare_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz"; + sha1 = "0dee216a1c941ab37e9efb1788f6afc5ff5537fc"; + }; + } + { + name = "semver___semver_5.6.0.tgz"; + path = fetchurl { + name = "semver___semver_5.6.0.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz"; + sha1 = "7e74256fbaa49c75aa7c7a205cc22799cac80004"; + }; + } + { + name = "semver___semver_5.5.0.tgz"; + path = fetchurl { + name = "semver___semver_5.5.0.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz"; + sha1 = "dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"; + }; + } + { + name = "set_blocking___set_blocking_2.0.0.tgz"; + path = fetchurl { + name = "set_blocking___set_blocking_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; + sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; + }; + } + { + name = "set_value___set_value_0.4.3.tgz"; + path = fetchurl { + name = "set_value___set_value_0.4.3.tgz"; + url = "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz"; + sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; + }; + } + { + name = "set_value___set_value_2.0.0.tgz"; + path = fetchurl { + name = "set_value___set_value_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz"; + sha1 = "71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"; + }; + } + { + name = "shebang_command___shebang_command_1.2.0.tgz"; + path = fetchurl { + name = "shebang_command___shebang_command_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; + sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; + }; + } + { + name = "shebang_regex___shebang_regex_1.0.0.tgz"; + path = fetchurl { + name = "shebang_regex___shebang_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; + sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; + }; + } + { + name = "signal_exit___signal_exit_3.0.2.tgz"; + path = fetchurl { + name = "signal_exit___signal_exit_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; + sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; + }; + } + { + name = "simple_git___simple_git_1.107.0.tgz"; + path = fetchurl { + name = "simple_git___simple_git_1.107.0.tgz"; + url = "https://registry.yarnpkg.com/simple-git/-/simple-git-1.107.0.tgz"; + sha1 = "12cffaf261c14d6f450f7fdb86c21ccee968b383"; + }; + } + { + name = "slash___slash_2.0.0.tgz"; + path = fetchurl { + name = "slash___slash_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz"; + sha1 = "de552851a1759df3a8f206535442f5ec4ddeab44"; + }; + } + { + name = "slice_ansi___slice_ansi_0.0.4.tgz"; + path = fetchurl { + name = "slice_ansi___slice_ansi_0.0.4.tgz"; + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz"; + sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; + }; + } + { + name = "slice_ansi___slice_ansi_1.0.0.tgz"; + path = fetchurl { + name = "slice_ansi___slice_ansi_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz"; + sha1 = "044f1a49d8842ff307aad6b505ed178bd950134d"; + }; + } + { + name = "slice_ansi___slice_ansi_2.0.0.tgz"; + path = fetchurl { + name = "slice_ansi___slice_ansi_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.0.0.tgz"; + sha1 = "5373bdb8559b45676e8541c66916cdd6251612e7"; + }; + } + { + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; + path = fetchurl { + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; + sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; + }; + } + { + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; + path = fetchurl { + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; + sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; + }; + } + { + name = "snapdragon___snapdragon_0.8.2.tgz"; + path = fetchurl { + name = "snapdragon___snapdragon_0.8.2.tgz"; + url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; + sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; + }; + } + { + name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; + path = fetchurl { + name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; + url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz"; + sha1 = "72e2cc34095543e43b2c62b2c4c10d4a9054f259"; + }; + } + { + name = "source_map_url___source_map_url_0.4.0.tgz"; + path = fetchurl { + name = "source_map_url___source_map_url_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; + sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; + }; + } + { + name = "source_map___source_map_0.5.7.tgz"; + path = fetchurl { + name = "source_map___source_map_0.5.7.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; + }; + } + { + name = "spdx_correct___spdx_correct_3.1.0.tgz"; + path = fetchurl { + name = "spdx_correct___spdx_correct_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz"; + sha1 = "fb83e504445268f154b074e218c87c003cd31df4"; + }; + } + { + name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; + path = fetchurl { + name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"; + sha1 = "2ea450aee74f2a89bfb94519c07fcd6f41322977"; + }; + } + { + name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; + path = fetchurl { + name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"; + sha1 = "99e119b7a5da00e05491c9fa338b7904823b41d0"; + }; + } + { + name = "spdx_license_ids___spdx_license_ids_3.0.3.tgz"; + path = fetchurl { + name = "spdx_license_ids___spdx_license_ids_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.3.tgz"; + sha1 = "81c0ce8f21474756148bbb5f3bfc0f36bf15d76e"; + }; + } + { + name = "split_string___split_string_3.1.0.tgz"; + path = fetchurl { + name = "split_string___split_string_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; + sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; + }; + } + { + name = "sprintf_js___sprintf_js_1.0.3.tgz"; + path = fetchurl { + name = "sprintf_js___sprintf_js_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; + sha1 = "04e6926f662895354f3dd015203633b857297e2c"; + }; + } + { + name = "staged_git_files___staged_git_files_1.1.2.tgz"; + path = fetchurl { + name = "staged_git_files___staged_git_files_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz"; + sha1 = "4326d33886dc9ecfa29a6193bf511ba90a46454b"; + }; + } + { + name = "static_extend___static_extend_0.1.2.tgz"; + path = fetchurl { + name = "static_extend___static_extend_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; + sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; + }; + } + { + name = "string_argv___string_argv_0.0.2.tgz"; + path = fetchurl { + name = "string_argv___string_argv_0.0.2.tgz"; + url = "https://registry.yarnpkg.com/string-argv/-/string-argv-0.0.2.tgz"; + sha1 = "dac30408690c21f3c3630a3ff3a05877bdcbd736"; + }; + } + { + name = "string_width___string_width_1.0.2.tgz"; + path = fetchurl { + name = "string_width___string_width_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz"; + sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; + }; + } + { + name = "string_width___string_width_2.1.1.tgz"; + path = fetchurl { + name = "string_width___string_width_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; + }; + } + { + name = "string_decoder___string_decoder_1.1.1.tgz"; + path = fetchurl { + name = "string_decoder___string_decoder_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; + sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; + }; + } + { + name = "stringify_object___stringify_object_3.3.0.tgz"; + path = fetchurl { + name = "stringify_object___stringify_object_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/stringify-object/-/stringify-object-3.3.0.tgz"; + sha1 = "703065aefca19300d3ce88af4f5b3956d7556629"; + }; + } + { + name = "strip_ansi___strip_ansi_3.0.1.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz"; + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; + }; + } + { + name = "strip_ansi___strip_ansi_4.0.0.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; + sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; + }; + } + { + name = "strip_ansi___strip_ansi_5.0.0.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.0.0.tgz"; + sha1 = "f78f68b5d0866c20b2c9b8c61b5298508dc8756f"; + }; + } + { + name = "strip_bom___strip_bom_3.0.0.tgz"; + path = fetchurl { + name = "strip_bom___strip_bom_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; + sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; + }; + } + { + name = "strip_eof___strip_eof_1.0.0.tgz"; + path = fetchurl { + name = "strip_eof___strip_eof_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz"; + sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; + }; + } + { + name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; + path = fetchurl { + name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; + sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; + }; + } + { + name = "supports_color___supports_color_2.0.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz"; + sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; + }; + } + { + name = "supports_color___supports_color_4.5.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-4.5.0.tgz"; + sha1 = "be7a0de484dec5c5cddf8b3d59125044912f635b"; + }; + } + { + name = "supports_color___supports_color_5.5.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_5.5.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; + sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; + }; + } + { + name = "symbol_observable___symbol_observable_1.0.1.tgz"; + path = fetchurl { + name = "symbol_observable___symbol_observable_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.0.1.tgz"; + sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4"; + }; + } + { + name = "symbol_observable___symbol_observable_1.2.0.tgz"; + path = fetchurl { + name = "symbol_observable___symbol_observable_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz"; + sha1 = "c22688aed4eab3cdc2dfeacbb561660560a00804"; + }; + } + { + name = "table___table_4.0.2.tgz"; + path = fetchurl { + name = "table___table_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz"; + sha1 = "a33447375391e766ad34d3486e6e2aedc84d2e36"; + }; + } + { + name = "table___table_5.1.1.tgz"; + path = fetchurl { + name = "table___table_5.1.1.tgz"; + url = "https://registry.yarnpkg.com/table/-/table-5.1.1.tgz"; + sha1 = "92030192f1b7b51b6eeab23ed416862e47b70837"; + }; + } + { + name = "text_table___text_table_0.2.0.tgz"; + path = fetchurl { + name = "text_table___text_table_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; + sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; + }; + } + { + name = "through___through_2.3.8.tgz"; + path = fetchurl { + name = "through___through_2.3.8.tgz"; + url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; + }; + } + { + name = "tmp___tmp_0.0.33.tgz"; + path = fetchurl { + name = "tmp___tmp_0.0.33.tgz"; + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; + sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; + }; + } + { + name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; + path = fetchurl { + name = "to_fast_properties___to_fast_properties_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; + sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; + }; + } + { + name = "to_object_path___to_object_path_0.3.0.tgz"; + path = fetchurl { + name = "to_object_path___to_object_path_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; + sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; + }; + } + { + name = "to_regex_range___to_regex_range_2.1.1.tgz"; + path = fetchurl { + name = "to_regex_range___to_regex_range_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; + sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; + }; + } + { + name = "to_regex___to_regex_3.0.2.tgz"; + path = fetchurl { + name = "to_regex___to_regex_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; + sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; + }; + } + { + name = "trim_right___trim_right_1.0.1.tgz"; + path = fetchurl { + name = "trim_right___trim_right_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz"; + sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; + }; + } + { + name = "tslib___tslib_1.9.3.tgz"; + path = fetchurl { + name = "tslib___tslib_1.9.3.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz"; + sha1 = "d7e4dd79245d85428c4d7e4822a79917954ca286"; + }; + } + { + name = "type_check___type_check_0.3.2.tgz"; + path = fetchurl { + name = "type_check___type_check_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; + sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; + }; + } + { + name = "typedarray___typedarray_0.0.6.tgz"; + path = fetchurl { + name = "typedarray___typedarray_0.0.6.tgz"; + url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; + sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; + }; + } + { + name = "typescript_eslint_parser___typescript_eslint_parser_16.0.1.tgz"; + path = fetchurl { + name = "typescript_eslint_parser___typescript_eslint_parser_16.0.1.tgz"; + url = "https://registry.yarnpkg.com/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz"; + sha1 = "b40681c7043b222b9772748b700a000b241c031b"; + }; + } + { + name = "typescript___typescript_2.9.2.tgz"; + path = fetchurl { + name = "typescript___typescript_2.9.2.tgz"; + url = "https://registry.yarnpkg.com/typescript/-/typescript-2.9.2.tgz"; + sha1 = "1cbf61d05d6b96269244eb6a3bce4bd914e0f00c"; + }; + } + { + name = "union_value___union_value_1.0.0.tgz"; + path = fetchurl { + name = "union_value___union_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz"; + sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"; + }; + } + { + name = "unset_value___unset_value_1.0.0.tgz"; + path = fetchurl { + name = "unset_value___unset_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; + sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; + }; + } + { + name = "uri_js___uri_js_4.2.2.tgz"; + path = fetchurl { + name = "uri_js___uri_js_4.2.2.tgz"; + url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; + sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; + }; + } + { + name = "urix___urix_0.1.0.tgz"; + path = fetchurl { + name = "urix___urix_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; + sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; + }; + } + { + name = "use___use_3.1.1.tgz"; + path = fetchurl { + name = "use___use_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; + sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; + }; + } + { + name = "util_deprecate___util_deprecate_1.0.2.tgz"; + path = fetchurl { + name = "util_deprecate___util_deprecate_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; + sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; + }; + } + { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + path = fetchurl { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; + sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; + }; + } + { + name = "vue_eslint_parser___vue_eslint_parser_2.0.3.tgz"; + path = fetchurl { + name = "vue_eslint_parser___vue_eslint_parser_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz"; + sha1 = "c268c96c6d94cfe3d938a5f7593959b0ca3360d1"; + }; + } + { + name = "which_module___which_module_2.0.0.tgz"; + path = fetchurl { + name = "which_module___which_module_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz"; + sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; + }; + } + { + name = "which___which_1.3.1.tgz"; + path = fetchurl { + name = "which___which_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; + sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; + }; + } + { + name = "wordwrap___wordwrap_1.0.0.tgz"; + path = fetchurl { + name = "wordwrap___wordwrap_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz"; + sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; + }; + } + { + name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; + sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; + }; + } + { + name = "wrap_ansi___wrap_ansi_3.0.1.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz"; + sha1 = "288a04d87eda5c286e060dfe8f135ce8d007f8ba"; + }; + } + { + name = "wrappy___wrappy_1.0.2.tgz"; + path = fetchurl { + name = "wrappy___wrappy_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; + sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; + }; + } + { + name = "write___write_0.2.1.tgz"; + path = fetchurl { + name = "write___write_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz"; + sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; + }; + } + { + name = "y18n___y18n_3.2.1.tgz"; + path = fetchurl { + name = "y18n___y18n_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz"; + sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; + }; + } + { + name = "yallist___yallist_2.1.2.tgz"; + path = fetchurl { + name = "yallist___yallist_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz"; + sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; + }; + } + { + name = "yargs_parser___yargs_parser_8.1.0.tgz"; + path = fetchurl { + name = "yargs_parser___yargs_parser_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-8.1.0.tgz"; + sha1 = "f1376a33b6629a5d063782944da732631e966950"; + }; + } + { + name = "yargs___yargs_10.0.3.tgz"; + path = fetchurl { + name = "yargs___yargs_10.0.3.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-10.0.3.tgz"; + sha1 = "6542debd9080ad517ec5048fb454efe9e4d4aaae"; + }; + } + ]; +} diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index db980c05fb0..fe3f1851913 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -378,8 +378,6 @@ mapAliases ({ xf86_video_nouveau = xorg.xf86videonouveau; # added 2015-09 xlibs = xorg; # added 2015-09 xpraGtk3 = xpra; # added 2018-09-13 - yarn2nix = throw "Use upstream https://github.com/moretea/yarn2nix"; # added 2019-04-12 - mkYarnPackage = yarn2nix; # added 2019-04-12 youtubeDL = youtube-dl; # added 2014-10-26 zdfmediathk = mediathekview; # added 2019-01-19 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e40497eee0b..3d3b74daa84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6993,6 +6993,8 @@ in yarn = callPackage ../development/tools/yarn { }; + yarn2nix-moretea = callPackage ../development/tools/yarn2nix-moretea/yarn2nix { }; + yasr = callPackage ../applications/audio/yasr { }; yank = callPackage ../tools/misc/yank { }; From 969aec30b68935041899accf78634c21efbf2c22 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Jul 2019 15:53:15 +0300 Subject: [PATCH 1044/1611] bazel-remote: mark as broken --- .../tools/build-managers/bazel/bazel-remote/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix b/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix index 0d821fa6166..2eb5f772f89 100644 --- a/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix +++ b/pkgs/development/tools/build-managers/bazel/bazel-remote/default.nix @@ -76,5 +76,6 @@ buildBazelPackage rec { license = licenses.asl20; maintainers = [ maintainers.uri-canva ]; platforms = platforms.darwin; + broken = true; # global variable '_layer' is referenced before assignment. }; } From 7b828532b9b464d418bd3aa19db13408123c3ebc Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Jul 2019 15:56:37 +0300 Subject: [PATCH 1045/1611] bazel-deps: 2019-02-01 -> 2019-07-11, mark as broken Also drop preInstall cleanup for dependencies. The reason is while it's more thorough than default cleanup in buildBazelPackage if such a problem happens we should fix buildBazelPackage instead. Perhaps even move this (awesome!) snippet there but it's very slow-running so we'd rather attempt to fix it in other ways. Anyway after an update at least .deps build, checked with `nix-build -A --check`. --- .../bazel/bazel-deps/default.nix | 51 ++----------------- 1 file changed, 5 insertions(+), 46 deletions(-) diff --git a/pkgs/development/tools/build-managers/bazel/bazel-deps/default.nix b/pkgs/development/tools/build-managers/bazel/bazel-deps/default.nix index 6fdb5734507..62a1329eca6 100644 --- a/pkgs/development/tools/build-managers/bazel/bazel-deps/default.nix +++ b/pkgs/development/tools/build-managers/bazel/bazel-deps/default.nix @@ -2,7 +2,7 @@ buildBazelPackage rec { name = "bazel-deps-${version}"; - version = "2019-02-01"; + version = "2019-07-11"; meta = with stdenv.lib; { homepage = "https://github.com/johnynek/bazel-deps"; @@ -10,13 +10,14 @@ buildBazelPackage rec { license = licenses.mit; maintainers = [ maintainers.uri-canva ]; platforms = platforms.all; + broken = true; # global variable '_common_attrs_for_plugin_bootstrapping' is referenced before assignment. }; src = fetchFromGitHub { owner = "johnynek"; repo = "bazel-deps"; - rev = "6585033409e09028852403ec15ec0c77851234be"; - sha256 = "0hypf7mcbpx2djqm92k82vn1k6pbnv564xbnazx8nw60f6ns0x87"; + rev = "48fdf7f8bcf3aadfa07f9f7e6f0c9f4247cb0f58"; + sha256 = "0wpn5anfgq5wfljfhpn8gbgdmgcp0claffjgqcnv5dh70ch7i0gi"; }; bazelTarget = "//src/scala/com/github/johnynek/bazel_deps:parseproject_deploy.jar"; @@ -24,49 +25,7 @@ buildBazelPackage rec { buildInputs = [ git makeWrapper ]; fetchAttrs = { - preInstall = '' - # Remove all built in external workspaces, Bazel will recreate them when building - rm -rf $bazelOut/external/{bazel_tools,\@bazel_tools.marker,embedded_jdk,\@embedded_jdk.marker,local_*,\@local_*} - # For each external workspace, remove all files that aren't referenced by Bazel - # Many of these files are non-hermetic (for example .git/refs/remotes/origin/HEAD) - files_to_delete=() - for workspace in $(find $bazelOut/external -maxdepth 2 -name "WORKSPACE" -print0 | xargs -0L1 dirname); do - workspaceOut="$NIX_BUILD_TOP/workspaces/$(basename workspace)/output" - workspaceUserRoot="$NIX_BUILD_TOP/workspaces/$(basename workspace)/tmp" - rm -rf $workspace/.git - if ! targets_and_files=$(cd "$workspace" && bazel --output_base="$workspaceOut" --output_user_root="$workspaceUserRoot" query '//...:*' 2> /dev/null | sort -u); then - continue - fi - if ! targets=$(cd "$workspace" && bazel --output_base="$workspaceOut" --output_user_root="$workspaceUserRoot" query '//...:all' 2> /dev/null | sort -u); then - continue - fi - mapfile -t referenced_files < <(comm -23 <(printf '%s' "$targets_and_files") <(printf '%s' "$targets") | sed -e 's,^//:,,g' | sed -e 's,^//,,g' | sed -e 's,:,/,g') - referenced_files+=( "WORKSPACE" ) - for referenced_file in "''${referenced_files[@]}"; do - # Some of the referenced files are symlinks to non-referenced files. - # The symlink targets have deterministic contents, but non-deterministic - # paths. Copy them to the referenced path, which is deterministic. - if target=$(readlink "$workspace/$referenced_file"); then - rm "$workspace/$referenced_file" - cp -a "$target" "$workspace/$referenced_file" - fi - done - mapfile -t workspace_files_to_delete < <(find "$workspace" -type f -or -type l | sort -u | comm -23 - <(printf "$workspace/%s\n" "''${referenced_files[@]}" | sort -u)) - for workspace_file_to_delete in "''${workspace_files_to_delete[@]}"; do - files_to_delete+=("$workspace_file_to_delete") - done - # We're running bazel in many different workspaces in a loop. Letting the - # daemon shut down on its own would leave several daemons alive at the - # same time, using up a lot of memory. Shut them down explicitly instead. - bazel --output_base="$workspaceOut" --output_user_root="$workspaceUserRoot" shutdown 2> /dev/null - done - for file_to_delete in "''${files_to_delete[@]}"; do - rm "$file_to_delete" - done - find . -type d -empty -delete - ''; - - sha256 = "1yirrzhhrsmbgd27fg709plhrhyi8pzwqv84yg72sd3799kswh9m"; + sha256 = "1r5qxsbw2cgww7vcg5psh7404l3jcxpvc0ndgl3k8vj1x8y93nkf"; }; buildAttrs = { From cee4d964a7ade77298f76c1a38318e0279919a90 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sat, 13 Jul 2019 15:09:39 +0200 Subject: [PATCH 1046/1611] codimd: 1.2.0 -> 1.4.0, repackage using yarn2nix-moretea --- .../web-apps/codimd/CodeMirror/default.nix | 46 - .../web-apps/codimd/CodeMirror/deps.json | 8 - .../web-apps/codimd/CodeMirror/generate.sh | 7 - .../codimd/CodeMirror/node-packages.nix | 1481 -- .../web-apps/codimd/CodeMirror/node.nix | 17 - pkgs/servers/web-apps/codimd/default.nix | 233 +- pkgs/servers/web-apps/codimd/deps.json | 149 - pkgs/servers/web-apps/codimd/generate.sh | 7 - .../codimd/js-sequence-diagrams/default.nix | 33 - .../servers/web-apps/codimd/node-packages.nix | 18775 ---------------- pkgs/servers/web-apps/codimd/node.nix | 17 - pkgs/servers/web-apps/codimd/package.json | 211 + pkgs/servers/web-apps/codimd/yarn.lock | 10951 +++++++++ pkgs/servers/web-apps/codimd/yarn.nix | 12109 ++++++++++ pkgs/top-level/all-packages.nix | 8 +- 15 files changed, 23337 insertions(+), 20715 deletions(-) delete mode 100644 pkgs/servers/web-apps/codimd/CodeMirror/default.nix delete mode 100644 pkgs/servers/web-apps/codimd/CodeMirror/deps.json delete mode 100755 pkgs/servers/web-apps/codimd/CodeMirror/generate.sh delete mode 100644 pkgs/servers/web-apps/codimd/CodeMirror/node-packages.nix delete mode 100644 pkgs/servers/web-apps/codimd/CodeMirror/node.nix delete mode 100644 pkgs/servers/web-apps/codimd/deps.json delete mode 100755 pkgs/servers/web-apps/codimd/generate.sh delete mode 100644 pkgs/servers/web-apps/codimd/js-sequence-diagrams/default.nix delete mode 100644 pkgs/servers/web-apps/codimd/node-packages.nix delete mode 100644 pkgs/servers/web-apps/codimd/node.nix create mode 100644 pkgs/servers/web-apps/codimd/package.json create mode 100644 pkgs/servers/web-apps/codimd/yarn.lock create mode 100644 pkgs/servers/web-apps/codimd/yarn.nix diff --git a/pkgs/servers/web-apps/codimd/CodeMirror/default.nix b/pkgs/servers/web-apps/codimd/CodeMirror/default.nix deleted file mode 100644 index 2dba13d0914..00000000000 --- a/pkgs/servers/web-apps/codimd/CodeMirror/default.nix +++ /dev/null @@ -1,46 +0,0 @@ -{ stdenv, pkgs, fetchFromGitHub, nodejs-8_x, phantomjs2, which }: - -let - nodePackages = import ./node.nix { - inherit pkgs; - system = stdenv.system; - }; - - phantomjs-prebuilt = nodePackages."phantomjs-prebuilt-^2.1.12".override (oldAttrs: { - buildInputs = oldAttrs.buildInputs ++ [ phantomjs2 ]; - }); -in - -stdenv.mkDerivation { - name = "codemirror-hackmdio-05-07-2018"; - - src = fetchFromGitHub { - owner = "hackmdio"; - repo = "CodeMirror"; - rev = "df412731ed3923124f9a43f60e84bdf855eb843a"; - sha256 = "02v2wccv9sjdda9x45ib8d08i1pc4b8kwg3p6qc314wqq89nhniw"; - }; - - nativeBuildInputs = [ which ]; - buildInputs = [ nodejs-8_x phantomjs-prebuilt ] ++ (stdenv.lib.attrVals [ - "blint-^1" - "node-static-0.6.0" - "rollup-^0.41.0" - "rollup-plugin-buble-^0.15.0" - "rollup-watch-^3.2.0" - "uglify-js-^2.8.15" - ] nodePackages); - - buildPhase = '' - patchShebangs . - npm run build - node release - ''; - - installPhase = '' - mkdir -p $out/lib/node_modules/codemirror - cp -R {codemirror.min.js,addon,bin,keymap,lib,mode,theme} $out/lib/node_modules/codemirror/ - ln -s ${nodePackages."url-loader-^0.5.7"}/lib/node_modules/url-loader \ - $out/lib/node_modules - ''; -} diff --git a/pkgs/servers/web-apps/codimd/CodeMirror/deps.json b/pkgs/servers/web-apps/codimd/CodeMirror/deps.json deleted file mode 100644 index 672e413a4a9..00000000000 --- a/pkgs/servers/web-apps/codimd/CodeMirror/deps.json +++ /dev/null @@ -1,8 +0,0 @@ -[ { "blint": "^1" } -, { "node-static": "0.6.0" } -, { "phantomjs-prebuilt": "^2.1.12" } -, { "rollup": "^0.41.0" } -, { "rollup-plugin-buble": "^0.15.0" } -, { "rollup-watch": "^3.2.0" } -, { "uglify-js": "^2.8.15" } -, { "url-loader": "^0.5.7" } ] diff --git a/pkgs/servers/web-apps/codimd/CodeMirror/generate.sh b/pkgs/servers/web-apps/codimd/CodeMirror/generate.sh deleted file mode 100755 index 7a9fa8cb1cf..00000000000 --- a/pkgs/servers/web-apps/codimd/CodeMirror/generate.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p nodePackages.node2nix - -node2nix -8 -i deps.json \ - -e ../../../../development/node-packages/node-env.nix \ - --no-copy-node-env \ - -c node.nix diff --git a/pkgs/servers/web-apps/codimd/CodeMirror/node-packages.nix b/pkgs/servers/web-apps/codimd/CodeMirror/node-packages.nix deleted file mode 100644 index ad868f9955d..00000000000 --- a/pkgs/servers/web-apps/codimd/CodeMirror/node-packages.nix +++ /dev/null @@ -1,1481 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: - -let - sources = { - "acorn-3.3.0" = { - name = "acorn"; - packageName = "acorn"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; - sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; - }; - }; - "acorn-5.7.3" = { - name = "acorn"; - packageName = "acorn"; - version = "5.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz"; - sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="; - }; - }; - "acorn-jsx-3.0.1" = { - name = "acorn-jsx"; - packageName = "acorn-jsx"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; - sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; - }; - }; - "acorn-object-spread-1.0.0" = { - name = "acorn-object-spread"; - packageName = "acorn-object-spread"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-object-spread/-/acorn-object-spread-1.0.0.tgz"; - sha1 = "48ead0f4a8eb16995a17a0db9ffc6acaada4ba68"; - }; - }; - "ajv-6.10.0" = { - name = "ajv"; - packageName = "ajv"; - version = "6.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; - }; - }; - "align-text-0.1.4" = { - name = "align-text"; - packageName = "align-text"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; - sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; - }; - }; - "ansi-regex-2.1.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; - }; - }; - "ansi-styles-1.0.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; - }; - }; - "ansi-styles-2.2.1" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; - }; - }; - "asn1-0.2.4" = { - name = "asn1"; - packageName = "asn1"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; - sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; - }; - }; - "assert-plus-1.0.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; - }; - }; - "asynckit-0.4.0" = { - name = "asynckit"; - packageName = "asynckit"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; - }; - }; - "aws-sign2-0.7.0" = { - name = "aws-sign2"; - packageName = "aws-sign2"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; - }; - }; - "aws4-1.8.0" = { - name = "aws4"; - packageName = "aws4"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz"; - sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="; - }; - }; - "balanced-match-1.0.0" = { - name = "balanced-match"; - packageName = "balanced-match"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; - }; - }; - "bcrypt-pbkdf-1.0.2" = { - name = "bcrypt-pbkdf"; - packageName = "bcrypt-pbkdf"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; - }; - }; - "big.js-5.2.2" = { - name = "big.js"; - packageName = "big.js"; - version = "5.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; - sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; - }; - }; - "brace-expansion-1.1.11" = { - name = "brace-expansion"; - packageName = "brace-expansion"; - version = "1.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; - }; - }; - "buble-0.15.2" = { - name = "buble"; - packageName = "buble"; - version = "0.15.2"; - src = fetchurl { - url = "https://registry.npmjs.org/buble/-/buble-0.15.2.tgz"; - sha1 = "547fc47483f8e5e8176d82aa5ebccb183b02d613"; - }; - }; - "buffer-from-1.1.1" = { - name = "buffer-from"; - packageName = "buffer-from"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; - }; - }; - "camelcase-1.2.1" = { - name = "camelcase"; - packageName = "camelcase"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; - sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; - }; - }; - "caseless-0.12.0" = { - name = "caseless"; - packageName = "caseless"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; - sha1 = "1b681c21ff84033c826543090689420d187151dc"; - }; - }; - "center-align-0.1.3" = { - name = "center-align"; - packageName = "center-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; - sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; - }; - }; - "chalk-0.4.0" = { - name = "chalk"; - packageName = "chalk"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; - }; - }; - "chalk-1.1.3" = { - name = "chalk"; - packageName = "chalk"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; - }; - }; - "cliui-2.1.0" = { - name = "cliui"; - packageName = "cliui"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; - sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; - }; - }; - "combined-stream-1.0.8" = { - name = "combined-stream"; - packageName = "combined-stream"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; - }; - }; - "concat-map-0.0.1" = { - name = "concat-map"; - packageName = "concat-map"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; - }; - }; - "concat-stream-1.6.2" = { - name = "concat-stream"; - packageName = "concat-stream"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; - }; - }; - "core-util-is-1.0.2" = { - name = "core-util-is"; - packageName = "core-util-is"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; - }; - }; - "dashdash-1.14.1" = { - name = "dashdash"; - packageName = "dashdash"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; - }; - }; - "debug-2.6.9" = { - name = "debug"; - packageName = "debug"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; - }; - }; - "decamelize-1.2.0" = { - name = "decamelize"; - packageName = "decamelize"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; - }; - }; - "delayed-stream-1.0.0" = { - name = "delayed-stream"; - packageName = "delayed-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; - }; - }; - "ecc-jsbn-0.1.2" = { - name = "ecc-jsbn"; - packageName = "ecc-jsbn"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; - }; - }; - "emojis-list-2.1.0" = { - name = "emojis-list"; - packageName = "emojis-list"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"; - sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; - }; - }; - "es6-promise-4.2.6" = { - name = "es6-promise"; - packageName = "es6-promise"; - version = "4.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz"; - sha512 = "aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q=="; - }; - }; - "escape-string-regexp-1.0.5" = { - name = "escape-string-regexp"; - packageName = "escape-string-regexp"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; - }; - }; - "estree-walker-0.2.1" = { - name = "estree-walker"; - packageName = "estree-walker"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.2.1.tgz"; - sha1 = "bdafe8095383d8414d5dc2ecf4c9173b6db9412e"; - }; - }; - "extend-3.0.2" = { - name = "extend"; - packageName = "extend"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; - }; - }; - "extract-zip-1.6.7" = { - name = "extract-zip"; - packageName = "extract-zip"; - version = "1.6.7"; - src = fetchurl { - url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz"; - sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9"; - }; - }; - "extsprintf-1.3.0" = { - name = "extsprintf"; - packageName = "extsprintf"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; - }; - }; - "fast-deep-equal-2.0.1" = { - name = "fast-deep-equal"; - packageName = "fast-deep-equal"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; - sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; - }; - }; - "fast-json-stable-stringify-2.0.0" = { - name = "fast-json-stable-stringify"; - packageName = "fast-json-stable-stringify"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; - sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; - }; - }; - "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"; - }; - }; - "forever-agent-0.6.1" = { - name = "forever-agent"; - packageName = "forever-agent"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; - }; - }; - "form-data-2.3.3" = { - name = "form-data"; - packageName = "form-data"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; - sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; - }; - }; - "fs-extra-1.0.0" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; - sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; - }; - }; - "getpass-0.1.7" = { - name = "getpass"; - packageName = "getpass"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; - }; - }; - "graceful-fs-4.1.15" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "4.1.15"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz"; - sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="; - }; - }; - "har-schema-2.0.0" = { - name = "har-schema"; - packageName = "har-schema"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; - }; - }; - "har-validator-5.1.3" = { - name = "har-validator"; - packageName = "har-validator"; - version = "5.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; - sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; - }; - }; - "has-ansi-2.0.0" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; - }; - }; - "has-color-0.1.7" = { - name = "has-color"; - packageName = "has-color"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; - }; - }; - "hasha-2.2.0" = { - name = "hasha"; - packageName = "hasha"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz"; - sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1"; - }; - }; - "http-signature-1.2.0" = { - name = "http-signature"; - packageName = "http-signature"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; - }; - }; - "inherits-2.0.3" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; - }; - }; - "is-buffer-1.1.6" = { - name = "is-buffer"; - packageName = "is-buffer"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; - }; - }; - "is-stream-1.1.0" = { - name = "is-stream"; - packageName = "is-stream"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; - }; - }; - "is-typedarray-1.0.0" = { - name = "is-typedarray"; - packageName = "is-typedarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; - }; - }; - "isarray-1.0.0" = { - name = "isarray"; - packageName = "isarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; - }; - }; - "isexe-2.0.0" = { - name = "isexe"; - packageName = "isexe"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; - }; - }; - "isstream-0.1.2" = { - name = "isstream"; - packageName = "isstream"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; - }; - }; - "jsbn-0.1.1" = { - name = "jsbn"; - packageName = "jsbn"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; - }; - }; - "json-schema-0.2.3" = { - name = "json-schema"; - packageName = "json-schema"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; - }; - }; - "json-schema-traverse-0.4.1" = { - name = "json-schema-traverse"; - packageName = "json-schema-traverse"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; - }; - }; - "json-stringify-safe-5.0.1" = { - name = "json-stringify-safe"; - packageName = "json-stringify-safe"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; - }; - }; - "json5-1.0.1" = { - name = "json5"; - packageName = "json5"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; - }; - }; - "jsonfile-2.4.0" = { - name = "jsonfile"; - packageName = "jsonfile"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"; - sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"; - }; - }; - "jsprim-1.4.1" = { - name = "jsprim"; - packageName = "jsprim"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; - }; - }; - "kew-0.7.0" = { - name = "kew"; - packageName = "kew"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; - sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; - }; - }; - "kind-of-3.2.2" = { - name = "kind-of"; - packageName = "kind-of"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; - }; - }; - "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"; - }; - }; - "lazy-cache-1.0.4" = { - name = "lazy-cache"; - packageName = "lazy-cache"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; - sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; - }; - }; - "loader-utils-1.2.3" = { - name = "loader-utils"; - packageName = "loader-utils"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"; - sha512 = "fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA=="; - }; - }; - "longest-1.0.1" = { - name = "longest"; - packageName = "longest"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; - }; - }; - "magic-string-0.14.0" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.14.0.tgz"; - sha1 = "57224aef1701caeed273b17a39a956e72b172462"; - }; - }; - "mime-1.3.6" = { - name = "mime"; - packageName = "mime"; - version = "1.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz"; - sha1 = "591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0"; - }; - }; - "mime-db-1.40.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.40.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz"; - sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="; - }; - }; - "mime-types-2.1.24" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.24"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz"; - sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; - }; - }; - "minimatch-3.0.4" = { - name = "minimatch"; - packageName = "minimatch"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; - }; - }; - "minimist-0.0.8" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; - }; - }; - "minimist-1.2.0" = { - name = "minimist"; - packageName = "minimist"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; - }; - }; - "mkdirp-0.5.1" = { - name = "mkdirp"; - packageName = "mkdirp"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; - }; - }; - "ms-2.0.0" = { - name = "ms"; - packageName = "ms"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; - }; - }; - "nomnom-1.8.1" = { - name = "nomnom"; - packageName = "nomnom"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; - sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; - }; - }; - "oauth-sign-0.9.0" = { - name = "oauth-sign"; - packageName = "oauth-sign"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; - sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; - }; - }; - "os-homedir-1.0.2" = { - name = "os-homedir"; - packageName = "os-homedir"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; - }; - }; - "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"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; - sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; - }; - }; - "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"; - }; - }; - "process-nextick-args-2.0.0" = { - name = "process-nextick-args"; - packageName = "process-nextick-args"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; - sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="; - }; - }; - "progress-1.1.8" = { - name = "progress"; - packageName = "progress"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; - sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; - }; - }; - "psl-1.1.32" = { - name = "psl"; - packageName = "psl"; - version = "1.1.32"; - src = fetchurl { - url = "https://registry.npmjs.org/psl/-/psl-1.1.32.tgz"; - sha512 = "MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g=="; - }; - }; - "punycode-1.4.1" = { - name = "punycode"; - packageName = "punycode"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; - sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; - }; - }; - "punycode-2.1.1" = { - name = "punycode"; - packageName = "punycode"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; - }; - }; - "qs-6.5.2" = { - name = "qs"; - packageName = "qs"; - version = "6.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; - }; - }; - "readable-stream-2.3.6" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; - sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; - }; - }; - "repeat-string-1.6.1" = { - name = "repeat-string"; - packageName = "repeat-string"; - version = "1.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; - }; - }; - "request-2.88.0" = { - name = "request"; - packageName = "request"; - version = "2.88.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; - sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; - }; - }; - "request-progress-2.0.1" = { - name = "request-progress"; - packageName = "request-progress"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; - sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; - }; - }; - "require-relative-0.8.7" = { - name = "require-relative"; - packageName = "require-relative"; - version = "0.8.7"; - src = fetchurl { - url = "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz"; - sha1 = "7999539fc9e047a37928fa196f8e1563dabd36de"; - }; - }; - "right-align-0.1.3" = { - name = "right-align"; - packageName = "right-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; - sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; - }; - }; - "rollup-pluginutils-1.5.2" = { - name = "rollup-pluginutils"; - packageName = "rollup-pluginutils"; - version = "1.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-1.5.2.tgz"; - sha1 = "1e156e778f94b7255bfa1b3d0178be8f5c552408"; - }; - }; - "safe-buffer-5.1.2" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; - }; - }; - "safer-buffer-2.1.2" = { - name = "safer-buffer"; - packageName = "safer-buffer"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; - }; - }; - "source-map-0.5.7" = { - name = "source-map"; - packageName = "source-map"; - version = "0.5.7"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; - }; - }; - "source-map-support-0.4.18" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.4.18"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; - sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA=="; - }; - }; - "sshpk-1.16.1" = { - name = "sshpk"; - packageName = "sshpk"; - version = "1.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; - }; - }; - "string_decoder-1.1.1" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; - }; - }; - "strip-ansi-0.1.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; - }; - }; - "strip-ansi-3.0.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; - }; - }; - "supports-color-2.0.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; - }; - }; - "throttleit-1.0.0" = { - name = "throttleit"; - packageName = "throttleit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; - sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; - }; - }; - "tough-cookie-2.4.3" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz"; - sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ=="; - }; - }; - "tunnel-agent-0.6.0" = { - name = "tunnel-agent"; - packageName = "tunnel-agent"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; - }; - }; - "tweetnacl-0.14.5" = { - name = "tweetnacl"; - packageName = "tweetnacl"; - version = "0.14.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; - }; - }; - "typedarray-0.0.6" = { - name = "typedarray"; - packageName = "typedarray"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; - }; - }; - "uglify-to-browserify-1.0.2" = { - name = "uglify-to-browserify"; - packageName = "uglify-to-browserify"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; - }; - }; - "underscore-1.6.0" = { - name = "underscore"; - packageName = "underscore"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; - }; - }; - "uri-js-4.2.2" = { - name = "uri-js"; - packageName = "uri-js"; - version = "4.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; - sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; - }; - }; - "util-deprecate-1.0.2" = { - name = "util-deprecate"; - packageName = "util-deprecate"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; - }; - }; - "uuid-3.3.2" = { - name = "uuid"; - packageName = "uuid"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"; - sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="; - }; - }; - "verror-1.10.0" = { - name = "verror"; - packageName = "verror"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; - }; - }; - "vlq-0.2.3" = { - name = "vlq"; - packageName = "vlq"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vlq/-/vlq-0.2.3.tgz"; - sha512 = "DRibZL6DsNhIgYQ+wNdWDL2SL3bKPlVrRiBqV5yuMm++op8W4kGFtaQfCs4KEJn0wBZcHVHJ3eoywX8983k1ow=="; - }; - }; - "which-1.3.1" = { - name = "which"; - packageName = "which"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; - }; - }; - "window-size-0.1.0" = { - name = "window-size"; - packageName = "window-size"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; - }; - }; - "wordwrap-0.0.2" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; - }; - }; - "yargs-3.10.0" = { - name = "yargs"; - packageName = "yargs"; - version = "3.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; - }; - }; - "yauzl-2.4.1" = { - name = "yauzl"; - packageName = "yauzl"; - version = "2.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; - sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; - }; - }; - }; -in -{ - "blint-^1" = nodeEnv.buildNodePackage { - name = "blint"; - packageName = "blint"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/blint/-/blint-1.0.3.tgz"; - sha512 = "6RwH3oJYMujQNd38WWU+jUSRqWfECrmpfL8o3fn3Q3fE9nn5iAktLZJHGEHqeecownbZZwZneTLbaNbIWwU9/A=="; - }; - dependencies = [ - sources."acorn-5.7.3" - sources."ansi-styles-1.0.0" - sources."chalk-0.4.0" - sources."has-color-0.1.7" - sources."nomnom-1.8.1" - sources."strip-ansi-0.1.1" - sources."underscore-1.6.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "No-ceremony linter"; - homepage = http://github.com/marijnh/blint; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "node-static-0.6.0" = nodeEnv.buildNodePackage { - name = "node-static"; - packageName = "node-static"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-static/-/node-static-0.6.0.tgz"; - sha1 = "e8543a897f3c82048220b39569284d44796eb1e2"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "simple, compliant file streaming module for node"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "phantomjs-prebuilt-^2.1.12" = nodeEnv.buildNodePackage { - name = "phantomjs-prebuilt"; - packageName = "phantomjs-prebuilt"; - version = "2.1.16"; - src = fetchurl { - url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz"; - sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef"; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."buffer-from-1.1.1" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."concat-stream-1.6.2" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."debug-2.6.9" - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."es6-promise-4.2.6" - sources."extend-3.0.2" - sources."extract-zip-1.6.7" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."fd-slicer-1.0.1" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-extra-1.0.0" - sources."getpass-0.1.7" - sources."graceful-fs-4.1.15" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."hasha-2.2.0" - sources."http-signature-1.2.0" - sources."inherits-2.0.3" - sources."is-stream-1.1.0" - sources."is-typedarray-1.0.0" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-2.4.0" - sources."jsprim-1.4.1" - sources."kew-0.7.0" - sources."klaw-1.3.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."oauth-sign-0.9.0" - sources."pend-1.2.0" - sources."performance-now-2.1.0" - sources."pinkie-2.0.4" - sources."pinkie-promise-2.0.1" - sources."process-nextick-args-2.0.0" - sources."progress-1.1.8" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."readable-stream-2.3.6" - sources."request-2.88.0" - sources."request-progress-2.0.1" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sshpk-1.16.1" - sources."string_decoder-1.1.1" - sources."throttleit-1.0.0" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."typedarray-0.0.6" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."which-1.3.1" - sources."yauzl-2.4.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Headless WebKit with JS API"; - homepage = https://github.com/Medium/phantomjs; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "rollup-^0.41.0" = nodeEnv.buildNodePackage { - name = "rollup"; - packageName = "rollup"; - version = "0.41.6"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-0.41.6.tgz"; - sha1 = "e0d05497877a398c104d816d2733a718a7a94e2a"; - }; - dependencies = [ - sources."source-map-0.5.7" - sources."source-map-support-0.4.18" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Next-generation ES6 module bundler"; - homepage = https://github.com/rollup/rollup; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "rollup-plugin-buble-^0.15.0" = nodeEnv.buildNodePackage { - name = "rollup-plugin-buble"; - packageName = "rollup-plugin-buble"; - version = "0.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-buble/-/rollup-plugin-buble-0.15.0.tgz"; - sha1 = "83c3e89c7fd2266c7918f41ba3980313519c7fd0"; - }; - dependencies = [ - sources."acorn-3.3.0" - sources."acorn-jsx-3.0.1" - sources."acorn-object-spread-1.0.0" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."buble-0.15.2" - sources."chalk-1.1.3" - sources."concat-map-0.0.1" - sources."escape-string-regexp-1.0.5" - sources."estree-walker-0.2.1" - sources."has-ansi-2.0.0" - sources."magic-string-0.14.0" - sources."minimatch-3.0.4" - sources."minimist-1.2.0" - sources."os-homedir-1.0.2" - sources."rollup-pluginutils-1.5.2" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."vlq-0.2.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Compile ES2015 with buble"; - homepage = "https://gitlab.com/rich-harris/rollup-plugin-buble#README"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "rollup-watch-^3.2.0" = nodeEnv.buildNodePackage { - name = "rollup-watch"; - packageName = "rollup-watch"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-watch/-/rollup-watch-3.2.2.tgz"; - sha1 = "5e574232e9ef36da9177f46946d8080cb267354b"; - }; - dependencies = [ - sources."require-relative-0.8.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Watch files for changes and perform incremental rebuilds with Rollup"; - homepage = "https://github.com/rollup/rollup-watch#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "uglify-js-^2.8.15" = nodeEnv.buildNodePackage { - name = "uglify-js"; - packageName = "uglify-js"; - version = "2.8.29"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz"; - sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; - }; - dependencies = [ - sources."align-text-0.1.4" - sources."camelcase-1.2.1" - sources."center-align-0.1.3" - sources."cliui-2.1.0" - sources."decamelize-1.2.0" - sources."is-buffer-1.1.6" - sources."kind-of-3.2.2" - sources."lazy-cache-1.0.4" - sources."longest-1.0.1" - sources."repeat-string-1.6.1" - sources."right-align-0.1.3" - sources."source-map-0.5.7" - sources."uglify-to-browserify-1.0.2" - sources."window-size-0.1.0" - sources."wordwrap-0.0.2" - sources."yargs-3.10.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript parser, mangler/compressor and beautifier toolkit"; - homepage = http://lisperator.net/uglifyjs; - license = "BSD-2-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "url-loader-^0.5.7" = nodeEnv.buildNodePackage { - name = "url-loader"; - packageName = "url-loader"; - version = "0.5.9"; - src = fetchurl { - url = "https://registry.npmjs.org/url-loader/-/url-loader-0.5.9.tgz"; - sha512 = "B7QYFyvv+fOBqBVeefsxv6koWWtjmHaMFT6KZWti4KRw8YUD/hOU+3AECvXuzyVawIBx3z7zQRejXCDSO5kk1Q=="; - }; - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-2.1.0" - sources."json5-1.0.1" - sources."loader-utils-1.2.3" - sources."mime-1.3.6" - sources."minimist-1.2.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "url loader module for webpack"; - homepage = "https://github.com/webpack/url-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; -} \ No newline at end of file diff --git a/pkgs/servers/web-apps/codimd/CodeMirror/node.nix b/pkgs/servers/web-apps/codimd/CodeMirror/node.nix deleted file mode 100644 index fd7fc4dfe0c..00000000000 --- a/pkgs/servers/web-apps/codimd/CodeMirror/node.nix +++ /dev/null @@ -1,17 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{pkgs ? import { - inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: - -let - nodeEnv = import ../../../../development/node-packages/node-env.nix { - inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; - inherit nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in -import ./node-packages.nix { - inherit (pkgs) fetchurl fetchgit; - inherit nodeEnv; -} \ No newline at end of file diff --git a/pkgs/servers/web-apps/codimd/default.nix b/pkgs/servers/web-apps/codimd/default.nix index 79ad58dddd8..2be8a3f5d68 100644 --- a/pkgs/servers/web-apps/codimd/default.nix +++ b/pkgs/servers/web-apps/codimd/default.nix @@ -1,197 +1,82 @@ -{ stdenv, pkgs, buildEnv, fetchFromGitHub, makeWrapper -, fetchpatch, nodejs-8_x, phantomjs2, runtimeShell }: -let - nodePackages = let - # Some packages fail to install with ENOTCACHED due to a mistakenly added - # package-lock.json that bundles optional dependencies not resolved with `node2nix. - # See also https://github.com/svanderburg/node2nix/issues/134 - dontInstall = n: v: - if builtins.match ".*babel.*" n == null - then v - else v.override { dontNpmInstall = true; }; +{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper +, which, nodejs, yarn2nix, python2, phantomjs2 }: - packages = stdenv.lib.mapAttrs (dontInstall) ( - import ./node.nix { - inherit pkgs; - system = stdenv.system; - } - ); - in packages // { - "js-url-^2.3.0" = packages."js-url-^2.3.0".overrideAttrs (_: { - # Don't download chromium (this isn't needed anyway for our case). - PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = "1"; - }); +yarn2nix.mkYarnPackage rec { + name = "codimd"; + version = "1.4.0"; + + src = fetchFromGitHub { + owner = "codimd"; + repo = "server"; + rev = version; + sha256 = "0cljgc056p19pjzphwkcfbvgp642w3r6p626w2fl6m5kdk78qd1g"; }; - addPhantomjs = (pkgs: - map (pkg: pkg.override ( oldAttrs: { - buildInputs = oldAttrs.buildInputs or [] ++ [ phantomjs2 ]; - })) pkgs); + nativeBuildInputs = [ which makeWrapper ]; + extraBuildInputs = [ python2 phantomjs2 ]; - drvName = drv: (builtins.parseDrvName drv).name; + yarnNix = ./yarn.nix; + yarnLock = ./yarn.lock; + packageJSON = ./package.json; - linkNodeDeps = ({ pkg, deps, name ? "" }: - let - targetModule = if name != "" then name else drvName pkg; - in nodePackages.${pkg}.override (oldAttrs: { - postInstall = '' - mkdir -p $out/lib/node_modules/${targetModule}/node_modules - ${stdenv.lib.concatStringsSep "\n" (map (dep: '' - ln -s ${nodePackages.${dep}}/lib/node_modules/${drvName dep} \ - $out/lib/node_modules/${targetModule}/node_modules/${drvName dep} - '') deps - )} - ''; - }) - ); - - filterNodePackagesToList = (filterPkgs: allPkgs: - stdenv.lib.mapAttrsToList (_: v: v) ( - stdenv.lib.filterAttrs (n: _: - ! builtins.elem (drvName n) filterPkgs - ) allPkgs) - ); - - # add phantomjs to buildInputs - pkgsWithPhantomjs = (addPhantomjs (map ( - p: nodePackages.${p} - ) [ - "js-url-^2.3.0" - "markdown-pdf-^8.0.0" - ])); - - # link extra dependencies to lib/node_modules - pkgsWithExtraDeps = map (args: - linkNodeDeps args ) [ - { pkg = "select2-^3.5.2-browserify"; - deps = [ "url-loader-^0.5.7" ]; } - { pkg = "ionicons-~2.0.1"; - deps = [ "url-loader-^0.5.7" "file-loader-^0.9.0" ]; } - { pkg = "font-awesome-^4.7.0"; - deps = [ "url-loader-^0.5.7" "file-loader-^0.9.0" ]; } - { pkg = "bootstrap-^3.3.7"; - deps = [ "url-loader-^0.5.7" "file-loader-^0.9.0" ]; } - { pkg = "markdown-it-^8.2.2"; - deps = [ "json-loader-^0.5.4" ]; } - { pkg = "markdown-it-emoji-^1.3.0"; - deps = [ "json-loader-^0.5.4" ]; } - { pkg = "raphael-git+https://github.com/dmitrybaranovskiy/raphael"; - deps = [ "eve-^0.5.4" ]; - name = "raphael"; } - ]; - - codemirror = pkgs.callPackage ./CodeMirror { }; - - nodeEnv = buildEnv { - name = "codimd-env"; - paths = pkgsWithPhantomjs ++ pkgsWithExtraDeps ++ [ - codemirror - - # `js-sequence-diagrams` has been removed from the registry - # and replaced by a security holding package (the tarballs weren't published by - # upstream as upstream only supports bower, - # see https://github.com/bramp/js-sequence-diagrams/issues/212). - # - # As the tarballs are still there, we build this manually for now until codimd's upstream - # has resolved the issue. - (import ./js-sequence-diagrams { - inherit pkgs; - nodejs = nodejs-8_x; - extraNodePackages = { - lodash = nodePackages."lodash-^4.17.4"; - eve = nodePackages."eve-^0.5.4"; - }; - }) - ] ++ filterNodePackagesToList [ - "bootstrap" - "codemirror-git+https://github.com/hackmdio/CodeMirror.git" - "font-awesome" - "ionicons" - "js-url" - "markdown-it" - "markdown-pdf" - "node-uuid" - "raphael-git+https://github.com/dmitrybaranovskiy/raphael" - "select2-browserify" - "url-loader" - ] nodePackages; - }; - - name = "codimd-${version}"; - version = "1.2.0"; - - src = stdenv.mkDerivation { - name = "${name}-src"; - inherit version; - - src = fetchFromGitHub { - owner = "hackmdio"; - repo = "codimd"; - rev = version; - sha256 = "003v90g5sxxjv5smxvz6y6bq2ny0xpxhsx2cdgkvj7jla243v48s"; - }; - - dontBuild = true; - - installPhase = '' - mkdir $out - cp -R . $out - ''; - }; -in -stdenv.mkDerivation rec { - inherit name version src; - - nativeBuildInputs = [ makeWrapper ]; - buildInputs = [ nodejs-8_x ]; - - NODE_PATH = "${nodeEnv}/lib/node_modules"; - - patches = [ - (fetchpatch { # fixes for configurable paths - url = "https://patch-diff.githubusercontent.com/raw/hackmdio/codimd/pull/940.patch"; - sha256 = "0w1cvnp3k1n8690gzlrfijisn182i0v8psjs3df394rfx2347xyp"; - }) - ]; - - postPatch = '' - # due to the `dontNpmInstall` workaround, `node_modules/.bin` isn't created anymore. - substituteInPlace package.json \ - --replace "webpack --config" "${nodejs-8_x}/bin/node ./node_modules/webpack/bin/webpack.js --config" + postConfigure = '' + rm deps/CodiMD/node_modules + cp -R "$node_modules" deps/CodiMD + chmod -R u+w deps/CodiMD ''; buildPhase = '' - ln -s ${nodeEnv}/lib/node_modules node_modules + runHook preBuild + + cd deps/CodiMD + + pushd node_modules/codemirror + npm run install + popd + + pushd node_modules/sqlite3 + export OLD_HOME="$HOME" + export HOME="$PWD" + mkdir -p .node-gyp/${nodejs.version} + echo 9 > .node-gyp/${nodejs.version}/installVersion + ln -s ${nodejs}/include .node-gyp/${nodejs.version} + npm run install + export HOME="$OLD_HOME" + unset OLD_HOME + popd + + pushd node_modules/phantomjs-prebuilt + npm run install + popd + npm run build + + runHook postBuild ''; - installPhase = '' - mkdir -p $out/bin + dontInstall = true; + + distPhase = '' + runHook preDist + + mkdir -p $out + cp -R {app.js,bin,lib,locales,node_modules,package.json,public} $out + cat > $out/bin/codimd <=4.14" } -, { "express-session": "^1.14.2" } -, { "file-saver": "^1.3.3" } -, { "flowchart.js": "^1.6.4" } -, { "font-awesome": "^4.7.0" } -, { "formidable": "^1.0.17" } -, { "gist-embed": "~2.6.0" } -, { "graceful-fs": "^4.1.11" } -, { "handlebars": "^4.0.6" } -, { "helmet": "^3.3.0" } -, { "highlight.js": "~9.12.0" } -, { "i18n": "^0.8.3" } -, { "imgur": "git+https://github.com/hackmdio/node-imgur.git" } -, { "ionicons": "~2.0.1" } -, { "jquery": "^3.1.1" } -, { "jquery-mousewheel": "^3.1.13" } -, { "jquery-ui": "^1.12.1" } -, { "js-cookie": "^2.1.3" } -, { "js-url": "^2.3.0" } -, { "js-yaml": "^3.7.0" } -, { "jsdom-nogyp": "^0.8.3" } -, { "keymaster": "^1.6.2" } -, { "list.js": "^1.5.0" } -, { "lodash": "^4.17.4" } -, { "lz-string": "1.4.4" } -, { "markdown-it": "^8.2.2" } -, { "markdown-it-abbr": "^1.0.4" } -, { "markdown-it-container": "^2.0.0" } -, { "markdown-it-deflist": "^2.0.1" } -, { "markdown-it-emoji": "^1.3.0" } -, { "markdown-it-footnote": "^3.0.1" } -, { "markdown-it-imsize": "^2.0.1" } -, { "markdown-it-ins": "^2.0.0" } -, { "markdown-it-mark": "^2.0.0" } -, { "markdown-it-mathjax": "^2.0.0" } -, { "markdown-it-regexp": "^0.4.0" } -, { "markdown-it-sub": "^1.0.0" } -, { "markdown-it-sup": "^1.0.0" } -, { "markdown-pdf": "^8.0.0" } -, { "mathjax": "~2.7.0" } -, { "mermaid": "~7.1.0" } -, { "mattermost": "^3.4.0" } -, { "meta-marked": "^0.4.2" } -, { "method-override": "^2.3.7" } -, { "minimist": "^1.2.0" } -, { "minio": "^6.0.0" } -, { "moment": "^2.17.1" } -, { "morgan": "^1.7.0" } -, { "mysql": "^2.12.0" } -, { "node-uuid": "^1.4.7" } -, { "octicons": "~4.4.0" } -, { "passport": "^0.4.0" } -, { "passport-dropbox-oauth2": "^1.1.0" } -, { "passport-facebook": "^2.1.1" } -, { "passport-github": "^1.1.0" } -, { "passport-gitlab2": "^4.0.0" } -, { "passport-google-oauth20": "^1.0.0" } -, { "passport-ldapauth": "^2.0.0" } -, { "passport-local": "^1.0.0" } -, { "passport-oauth2": "^1.4.0" } -, { "passport-twitter": "^1.0.4" } -, { "passport-saml": "^0.31.0" } -, { "passport.socketio": "^3.7.0" } -, { "pdfobject": "^2.0.201604172" } -, { "pg": "^6.1.2" } -, { "pg-hstore": "^2.3.2" } -, { "prismjs": "^1.6.0" } -, { "randomcolor": "^0.5.3" } -, { "raphael": "git+https://github.com/dmitrybaranovskiy/raphael" } -, { "readline-sync": "^1.4.7" } -, { "request": "^2.79.0" } -, { "reveal.js": "~3.6.0" } -, { "scrypt": "^6.0.3" } -, { "select2": "^3.5.2-browserify" } -, { "sequelize": "^3.28.0" } -, { "sequelize-cli": "^2.5.1" } -, { "shortid": "2.2.8" } -, { "socket.io": "~2.0.4" } -, { "socket.io-client": "~2.0.4" } -, { "spin.js": "^2.3.2" } -, { "sqlite3": "^4.0.1" } -, { "store": "^2.0.12" } -, { "string": "^3.3.3" } -, { "tedious": "^1.14.0" } -, { "to-markdown": "^3.0.3" } -, { "toobusy-js": "^0.5.1" } -, { "uuid": "^3.1.0" } -, { "uws": "~0.14.1" } -, { "validator": "^10.4.0" } -, { "velocity-animate": "^1.4.0" } -, { "visibilityjs": "^1.2.4" } -, { "viz.js": "^1.7.0" } -, { "winston": "^2.3.0" } -, { "xss": "^1.0.3" } ] diff --git a/pkgs/servers/web-apps/codimd/generate.sh b/pkgs/servers/web-apps/codimd/generate.sh deleted file mode 100755 index 0089c750dcc..00000000000 --- a/pkgs/servers/web-apps/codimd/generate.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env nix-shell -#! nix-shell -i bash -p nodePackages.node2nix - -node2nix -8 -i deps.json \ - -e ../../../development/node-packages/node-env.nix \ - --no-copy-node-env \ - -c node.nix diff --git a/pkgs/servers/web-apps/codimd/js-sequence-diagrams/default.nix b/pkgs/servers/web-apps/codimd/js-sequence-diagrams/default.nix deleted file mode 100644 index 04dc2d6054a..00000000000 --- a/pkgs/servers/web-apps/codimd/js-sequence-diagrams/default.nix +++ /dev/null @@ -1,33 +0,0 @@ -{ pkgs, nodejs, extraNodePackages }: - -let - nodeEnv = import ../../../../development/node-packages/node-env.nix { - inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; - inherit nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in - nodeEnv.buildNodePackage { - name = "js-sequence-diagrams"; - packageName = "js-sequence-diagrams"; - version = "1000000.0.6"; - src = pkgs.fetchFromGitHub { - owner = "Moeditor"; - repo = "js-sequence-diagrams"; - rev = "4d46bc6229a3f93c9bcad561cab4924034f5456d"; - sha256 = "09ri5cx5yq87p3nla06gs0xb2gifmsy0xhs0s5524xr4ya6pnivv"; - }; - dependencies = [ ]; - dontNpmInstall = true; - meta = { - description = "Fucks NPM and draws simple SVG sequence diagrams from textual representation of the diagram"; - homepage = "https://github.com/Moeditor/js-sequence-diagrams#readme"; - license = "BSD-2-Clause"; - }; - production = true; - bypassCache = true; - - postInstall = builtins.concatStringsSep "\n" (pkgs.lib.mapAttrsToList ( - name: pkg: "ln -s ${pkg}/lib/node_modules/${name} $out/lib/node_modules/${name}" - ) extraNodePackages); - } diff --git a/pkgs/servers/web-apps/codimd/node-packages.nix b/pkgs/servers/web-apps/codimd/node-packages.nix deleted file mode 100644 index 43a2eb351a6..00000000000 --- a/pkgs/servers/web-apps/codimd/node-packages.nix +++ /dev/null @@ -1,18775 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: - -let - sources = { - "@textlint/ast-node-types-4.2.2" = { - name = "_at_textlint_slash_ast-node-types"; - packageName = "@textlint/ast-node-types"; - version = "4.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@textlint/ast-node-types/-/ast-node-types-4.2.2.tgz"; - sha512 = "5VHykhxgUat7dvRWGw52Tk55SWjuZDpDO7PKDhfcLTFrD1cjbTtFFnWeJc0BfoqB2AUjfHXRoMdnqbFRGmnPVQ=="; - }; - }; - "@textlint/markdown-to-ast-6.0.9" = { - name = "_at_textlint_slash_markdown-to-ast"; - packageName = "@textlint/markdown-to-ast"; - version = "6.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/@textlint/markdown-to-ast/-/markdown-to-ast-6.0.9.tgz"; - sha512 = "hfAWBvTeUGh5t5kTn2U3uP3qOSM1BSrxzl1jF3nn0ywfZXpRBZr5yRjXnl4DzIYawCtZOshmRi/tI3/x4TE1jQ=="; - }; - }; - "@types/body-parser-1.17.0" = { - name = "_at_types_slash_body-parser"; - packageName = "@types/body-parser"; - version = "1.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.17.0.tgz"; - sha512 = "a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w=="; - }; - }; - "@types/connect-3.4.32" = { - name = "_at_types_slash_connect"; - packageName = "@types/connect"; - version = "3.4.32"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/connect/-/connect-3.4.32.tgz"; - sha512 = "4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg=="; - }; - }; - "@types/estree-0.0.39" = { - name = "_at_types_slash_estree"; - packageName = "@types/estree"; - version = "0.0.39"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz"; - sha512 = "EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw=="; - }; - }; - "@types/express-4.17.0" = { - name = "_at_types_slash_express"; - packageName = "@types/express"; - version = "4.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/express/-/express-4.17.0.tgz"; - sha512 = "CjaMu57cjgjuZbh9DpkloeGxV45CnMGlVd+XpG7Gm9QgVrd7KFq+X4HY0vM+2v0bczS48Wg7bvnMY5TN+Xmcfw=="; - }; - }; - "@types/express-serve-static-core-4.16.6" = { - name = "_at_types_slash_express-serve-static-core"; - packageName = "@types/express-serve-static-core"; - version = "4.16.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.16.6.tgz"; - sha512 = "8wr3CA/EMybyb6/V8qvTRKiNkPmgUA26uA9XWD6hlA0yFDuqi4r2L0C2B0U2HAYltJamoYJszlkaWM31vrKsHg=="; - }; - }; - "@types/geojson-1.0.6" = { - name = "_at_types_slash_geojson"; - packageName = "@types/geojson"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/geojson/-/geojson-1.0.6.tgz"; - sha512 = "Xqg/lIZMrUd0VRmSRbCAewtwGZiAk3mEUDvV4op1tGl+LvyPcb/MIOSxTl9z+9+J+R4/vpjiCAT4xeKzH9ji1w=="; - }; - }; - "@types/ldapjs-1.0.4" = { - name = "_at_types_slash_ldapjs"; - packageName = "@types/ldapjs"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/ldapjs/-/ldapjs-1.0.4.tgz"; - sha512 = "TXOYipuauiZV+nRslqgm02+wP007GNN7ZFHZtXe8GhnRJw2zxCOtVDi3ZnKTBxbZhFz3xPFSwJ5bCIRmXDMqTg=="; - }; - }; - "@types/mime-2.0.1" = { - name = "_at_types_slash_mime"; - packageName = "@types/mime"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/mime/-/mime-2.0.1.tgz"; - sha512 = "FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw=="; - }; - }; - "@types/node-10.14.8" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "10.14.8"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-10.14.8.tgz"; - sha512 = "I4+DbJEhLEg4/vIy/2gkWDvXBOOtPKV9EnLhYjMoqxcRW+TTZtUftkHktz/a8suoD5mUL7m6ReLrkPvSsCQQmw=="; - }; - }; - "@types/node-12.0.4" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "12.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-12.0.4.tgz"; - sha512 = "j8YL2C0fXq7IONwl/Ud5Kt0PeXw22zGERt+HSSnwbKOJVsAGkEz3sFCYwaF9IOuoG1HOtE0vKCj6sXF7Q0+Vaw=="; - }; - }; - "@types/passport-1.0.0" = { - name = "_at_types_slash_passport"; - packageName = "@types/passport"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/passport/-/passport-1.0.0.tgz"; - sha512 = "R2FXqM+AgsMIym0PuKj08Ybx+GR6d2rU3b1/8OcHolJ+4ga2pRPX105wboV6hq1AJvMo2frQzYKdqXS5+4cyMw=="; - }; - }; - "@types/range-parser-1.2.3" = { - name = "_at_types_slash_range-parser"; - packageName = "@types/range-parser"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.3.tgz"; - sha512 = "ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA=="; - }; - }; - "@types/serve-static-1.13.2" = { - name = "_at_types_slash_serve-static"; - packageName = "@types/serve-static"; - version = "1.13.2"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.2.tgz"; - sha512 = "/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q=="; - }; - }; - "JSV-4.0.2" = { - name = "JSV"; - packageName = "JSV"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; - sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; - }; - }; - "abab-1.0.4" = { - name = "abab"; - packageName = "abab"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"; - sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e"; - }; - }; - "abbrev-1.1.1" = { - name = "abbrev"; - packageName = "abbrev"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; - sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; - }; - }; - "accepts-1.3.7" = { - name = "accepts"; - packageName = "accepts"; - version = "1.3.7"; - src = fetchurl { - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; - }; - }; - "acorn-3.3.0" = { - name = "acorn"; - packageName = "acorn"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; - sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; - }; - }; - "acorn-4.0.13" = { - name = "acorn"; - packageName = "acorn"; - version = "4.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"; - sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; - }; - }; - "acorn-5.7.3" = { - name = "acorn"; - packageName = "acorn"; - version = "5.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz"; - sha512 = "T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw=="; - }; - }; - "acorn-6.1.1" = { - name = "acorn"; - packageName = "acorn"; - version = "6.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz"; - sha512 = "jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA=="; - }; - }; - "acorn-dynamic-import-4.0.0" = { - name = "acorn-dynamic-import"; - packageName = "acorn-dynamic-import"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz"; - sha512 = "d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw=="; - }; - }; - "acorn-globals-3.1.0" = { - name = "acorn-globals"; - packageName = "acorn-globals"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz"; - sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf"; - }; - }; - "acorn-jsx-3.0.1" = { - name = "acorn-jsx"; - packageName = "acorn-jsx"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz"; - sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b"; - }; - }; - "acorn-jsx-5.0.1" = { - name = "acorn-jsx"; - packageName = "acorn-jsx"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.0.1.tgz"; - sha512 = "HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg=="; - }; - }; - "after-0.8.2" = { - name = "after"; - packageName = "after"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz"; - sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; - }; - }; - "agent-base-4.3.0" = { - name = "agent-base"; - packageName = "agent-base"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz"; - sha512 = "salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg=="; - }; - }; - "ajv-4.11.8" = { - name = "ajv"; - packageName = "ajv"; - version = "4.11.8"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz"; - sha1 = "82ffb02b29e662ae53bdc20af15947706739c536"; - }; - }; - "ajv-6.10.0" = { - name = "ajv"; - packageName = "ajv"; - version = "6.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; - }; - }; - "ajv-keywords-1.5.1" = { - name = "ajv-keywords"; - packageName = "ajv-keywords"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz"; - sha1 = "314dd0a4b3368fad3dfcdc54ede6171b886daf3c"; - }; - }; - "align-text-0.1.4" = { - name = "align-text"; - packageName = "align-text"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; - sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; - }; - }; - "alphanum-sort-1.0.2" = { - name = "alphanum-sort"; - packageName = "alphanum-sort"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz"; - sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3"; - }; - }; - "ambi-2.5.0" = { - name = "ambi"; - packageName = "ambi"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ambi/-/ambi-2.5.0.tgz"; - sha1 = "7c8e372be48891157e7cea01cb6f9143d1f74220"; - }; - }; - "amdefine-1.0.1" = { - name = "amdefine"; - packageName = "amdefine"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"; - sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; - }; - }; - "anchor-markdown-header-0.5.7" = { - name = "anchor-markdown-header"; - packageName = "anchor-markdown-header"; - version = "0.5.7"; - src = fetchurl { - url = "https://registry.npmjs.org/anchor-markdown-header/-/anchor-markdown-header-0.5.7.tgz"; - sha1 = "045063d76e6a1f9cd327a57a0126aa0fdec371a7"; - }; - }; - "ansi-escapes-1.4.0" = { - name = "ansi-escapes"; - packageName = "ansi-escapes"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.4.0.tgz"; - sha1 = "d3a8a83b319aa67793662b13e761c7911422306e"; - }; - }; - "ansi-gray-0.1.1" = { - name = "ansi-gray"; - packageName = "ansi-gray"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz"; - sha1 = "2962cf54ec9792c48510a3deb524436861ef7251"; - }; - }; - "ansi-regex-2.1.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; - }; - }; - "ansi-regex-3.0.0" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; - }; - }; - "ansi-styles-1.0.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; - }; - }; - "ansi-styles-2.2.1" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; - }; - }; - "ansi-styles-3.2.1" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; - }; - }; - "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"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz"; - sha512 = "0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA=="; - }; - }; - "aproba-1.2.0" = { - name = "aproba"; - packageName = "aproba"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; - sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; - }; - }; - "archiver-utils-1.3.0" = { - name = "archiver-utils"; - packageName = "archiver-utils"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/archiver-utils/-/archiver-utils-1.3.0.tgz"; - sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174"; - }; - }; - "archy-1.0.0" = { - name = "archy"; - packageName = "archy"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; - sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; - }; - }; - "are-we-there-yet-1.1.5" = { - name = "are-we-there-yet"; - packageName = "are-we-there-yet"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; - sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; - }; - }; - "argparse-0.1.16" = { - name = "argparse"; - packageName = "argparse"; - version = "0.1.16"; - src = fetchurl { - url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz"; - sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c"; - }; - }; - "argparse-1.0.10" = { - name = "argparse"; - packageName = "argparse"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; - }; - }; - "arr-diff-2.0.0" = { - name = "arr-diff"; - packageName = "arr-diff"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz"; - sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf"; - }; - }; - "arr-diff-4.0.0" = { - name = "arr-diff"; - packageName = "arr-diff"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; - }; - }; - "arr-flatten-1.1.0" = { - name = "arr-flatten"; - packageName = "arr-flatten"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"; - sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; - }; - }; - "arr-union-3.1.0" = { - name = "arr-union"; - packageName = "arr-union"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; - 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-each-1.0.1" = { - name = "array-each"; - packageName = "array-each"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"; - sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f"; - }; - }; - "array-equal-1.0.0" = { - name = "array-equal"; - packageName = "array-equal"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz"; - sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; - }; - }; - "array-flatten-1.1.1" = { - name = "array-flatten"; - packageName = "array-flatten"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; - sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; - }; - }; - "array-slice-1.1.0" = { - name = "array-slice"; - packageName = "array-slice"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"; - sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="; - }; - }; - "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"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"; - sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; - }; - }; - "array-unique-0.3.2" = { - name = "array-unique"; - packageName = "array-unique"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; - }; - }; - "array.prototype.find-2.1.0" = { - name = "array.prototype.find"; - packageName = "array.prototype.find"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array.prototype.find/-/array.prototype.find-2.1.0.tgz"; - sha512 = "Wn41+K1yuO5p7wRZDl7890c3xvv5UBrfVXTVIe28rSQb6LS0fZMDrQB6PAcxQFRFy6vJTLDc3A2+3CjQdzVKRg=="; - }; - }; - "arraybuffer.slice-0.0.7" = { - name = "arraybuffer.slice"; - packageName = "arraybuffer.slice"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; - sha512 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog=="; - }; - }; - "asap-2.0.6" = { - name = "asap"; - packageName = "asap"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; - sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; - }; - }; - "asn1-0.2.3" = { - name = "asn1"; - packageName = "asn1"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; - }; - }; - "asn1-0.2.4" = { - name = "asn1"; - packageName = "asn1"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; - sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; - }; - }; - "assert-1.5.0" = { - name = "assert"; - packageName = "assert"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz"; - sha512 = "EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA=="; - }; - }; - "assert-plus-0.1.5" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; - sha1 = "ee74009413002d84cec7219c6ac811812e723160"; - }; - }; - "assert-plus-0.2.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; - }; - }; - "assert-plus-1.0.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; - }; - }; - "assign-symbols-1.0.0" = { - name = "assign-symbols"; - packageName = "assign-symbols"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; - }; - }; - "async-0.2.10" = { - name = "async"; - packageName = "async"; - version = "0.2.10"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; - sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; - }; - }; - "async-0.9.2" = { - name = "async"; - packageName = "async"; - version = "0.9.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; - sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; - }; - }; - "async-1.0.0" = { - name = "async"; - packageName = "async"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; - sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; - }; - }; - "async-1.5.2" = { - name = "async"; - packageName = "async"; - version = "1.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; - sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; - }; - }; - "async-2.6.2" = { - name = "async"; - packageName = "async"; - version = "2.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; - }; - }; - "async-each-1.0.3" = { - name = "async-each"; - packageName = "async-each"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"; - sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="; - }; - }; - "async-limiter-1.0.0" = { - name = "async-limiter"; - packageName = "async-limiter"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz"; - sha512 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="; - }; - }; - "asynckit-0.4.0" = { - name = "asynckit"; - packageName = "asynckit"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; - }; - }; - "atob-2.1.2" = { - name = "atob"; - packageName = "atob"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"; - sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; - }; - }; - "autolinker-0.15.3" = { - name = "autolinker"; - packageName = "autolinker"; - version = "0.15.3"; - src = fetchurl { - url = "https://registry.npmjs.org/autolinker/-/autolinker-0.15.3.tgz"; - sha1 = "342417d8f2f3461b14cf09088d5edf8791dc9832"; - }; - }; - "autoprefixer-6.7.7" = { - name = "autoprefixer"; - packageName = "autoprefixer"; - version = "6.7.7"; - src = fetchurl { - url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz"; - sha1 = "1dbd1c835658e35ce3f9984099db00585c782014"; - }; - }; - "aws-sign2-0.6.0" = { - name = "aws-sign2"; - packageName = "aws-sign2"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; - }; - }; - "aws-sign2-0.7.0" = { - name = "aws-sign2"; - packageName = "aws-sign2"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; - }; - }; - "aws4-1.8.0" = { - name = "aws4"; - packageName = "aws4"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz"; - sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="; - }; - }; - "babel-code-frame-6.26.0" = { - name = "babel-code-frame"; - packageName = "babel-code-frame"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; - sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; - }; - }; - "babel-core-6.26.3" = { - name = "babel-core"; - packageName = "babel-core"; - version = "6.26.3"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"; - sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA=="; - }; - }; - "babel-generator-6.26.1" = { - name = "babel-generator"; - packageName = "babel-generator"; - version = "6.26.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-generator/-/babel-generator-6.26.1.tgz"; - sha512 = "HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA=="; - }; - }; - "babel-helper-call-delegate-6.24.1" = { - name = "babel-helper-call-delegate"; - packageName = "babel-helper-call-delegate"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"; - sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d"; - }; - }; - "babel-helper-define-map-6.26.0" = { - name = "babel-helper-define-map"; - packageName = "babel-helper-define-map"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz"; - sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f"; - }; - }; - "babel-helper-function-name-6.24.1" = { - name = "babel-helper-function-name"; - packageName = "babel-helper-function-name"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"; - sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9"; - }; - }; - "babel-helper-get-function-arity-6.24.1" = { - name = "babel-helper-get-function-arity"; - packageName = "babel-helper-get-function-arity"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"; - sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d"; - }; - }; - "babel-helper-hoist-variables-6.24.1" = { - name = "babel-helper-hoist-variables"; - packageName = "babel-helper-hoist-variables"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"; - sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76"; - }; - }; - "babel-helper-optimise-call-expression-6.24.1" = { - name = "babel-helper-optimise-call-expression"; - packageName = "babel-helper-optimise-call-expression"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"; - sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257"; - }; - }; - "babel-helper-regex-6.26.0" = { - name = "babel-helper-regex"; - packageName = "babel-helper-regex"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz"; - sha1 = "325c59f902f82f24b74faceed0363954f6495e72"; - }; - }; - "babel-helper-replace-supers-6.24.1" = { - name = "babel-helper-replace-supers"; - packageName = "babel-helper-replace-supers"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"; - sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"; - }; - }; - "babel-helpers-6.24.1" = { - name = "babel-helpers"; - packageName = "babel-helpers"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-helpers/-/babel-helpers-6.24.1.tgz"; - sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; - }; - }; - "babel-messages-6.23.0" = { - name = "babel-messages"; - packageName = "babel-messages"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-messages/-/babel-messages-6.23.0.tgz"; - sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; - }; - }; - "babel-plugin-check-es2015-constants-6.22.0" = { - name = "babel-plugin-check-es2015-constants"; - packageName = "babel-plugin-check-es2015-constants"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"; - sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a"; - }; - }; - "babel-plugin-transform-es2015-arrow-functions-6.22.0" = { - name = "babel-plugin-transform-es2015-arrow-functions"; - packageName = "babel-plugin-transform-es2015-arrow-functions"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"; - sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221"; - }; - }; - "babel-plugin-transform-es2015-block-scoped-functions-6.22.0" = { - name = "babel-plugin-transform-es2015-block-scoped-functions"; - packageName = "babel-plugin-transform-es2015-block-scoped-functions"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"; - sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141"; - }; - }; - "babel-plugin-transform-es2015-block-scoping-6.26.0" = { - name = "babel-plugin-transform-es2015-block-scoping"; - packageName = "babel-plugin-transform-es2015-block-scoping"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz"; - sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f"; - }; - }; - "babel-plugin-transform-es2015-classes-6.24.1" = { - name = "babel-plugin-transform-es2015-classes"; - packageName = "babel-plugin-transform-es2015-classes"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"; - sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"; - }; - }; - "babel-plugin-transform-es2015-computed-properties-6.24.1" = { - name = "babel-plugin-transform-es2015-computed-properties"; - packageName = "babel-plugin-transform-es2015-computed-properties"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"; - sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3"; - }; - }; - "babel-plugin-transform-es2015-destructuring-6.23.0" = { - name = "babel-plugin-transform-es2015-destructuring"; - packageName = "babel-plugin-transform-es2015-destructuring"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"; - sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d"; - }; - }; - "babel-plugin-transform-es2015-duplicate-keys-6.24.1" = { - name = "babel-plugin-transform-es2015-duplicate-keys"; - packageName = "babel-plugin-transform-es2015-duplicate-keys"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"; - sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e"; - }; - }; - "babel-plugin-transform-es2015-for-of-6.23.0" = { - name = "babel-plugin-transform-es2015-for-of"; - packageName = "babel-plugin-transform-es2015-for-of"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"; - sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691"; - }; - }; - "babel-plugin-transform-es2015-function-name-6.24.1" = { - name = "babel-plugin-transform-es2015-function-name"; - packageName = "babel-plugin-transform-es2015-function-name"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"; - sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"; - }; - }; - "babel-plugin-transform-es2015-literals-6.22.0" = { - name = "babel-plugin-transform-es2015-literals"; - packageName = "babel-plugin-transform-es2015-literals"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"; - sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e"; - }; - }; - "babel-plugin-transform-es2015-modules-amd-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-amd"; - packageName = "babel-plugin-transform-es2015-modules-amd"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"; - sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154"; - }; - }; - "babel-plugin-transform-es2015-modules-commonjs-6.26.2" = { - name = "babel-plugin-transform-es2015-modules-commonjs"; - packageName = "babel-plugin-transform-es2015-modules-commonjs"; - version = "6.26.2"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz"; - sha512 = "CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q=="; - }; - }; - "babel-plugin-transform-es2015-modules-systemjs-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-systemjs"; - packageName = "babel-plugin-transform-es2015-modules-systemjs"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"; - sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23"; - }; - }; - "babel-plugin-transform-es2015-modules-umd-6.24.1" = { - name = "babel-plugin-transform-es2015-modules-umd"; - packageName = "babel-plugin-transform-es2015-modules-umd"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"; - sha1 = "ac997e6285cd18ed6176adb607d602344ad38468"; - }; - }; - "babel-plugin-transform-es2015-object-super-6.24.1" = { - name = "babel-plugin-transform-es2015-object-super"; - packageName = "babel-plugin-transform-es2015-object-super"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"; - sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d"; - }; - }; - "babel-plugin-transform-es2015-parameters-6.24.1" = { - name = "babel-plugin-transform-es2015-parameters"; - packageName = "babel-plugin-transform-es2015-parameters"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"; - sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b"; - }; - }; - "babel-plugin-transform-es2015-shorthand-properties-6.24.1" = { - name = "babel-plugin-transform-es2015-shorthand-properties"; - packageName = "babel-plugin-transform-es2015-shorthand-properties"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"; - sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0"; - }; - }; - "babel-plugin-transform-es2015-spread-6.22.0" = { - name = "babel-plugin-transform-es2015-spread"; - packageName = "babel-plugin-transform-es2015-spread"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"; - sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"; - }; - }; - "babel-plugin-transform-es2015-sticky-regex-6.24.1" = { - name = "babel-plugin-transform-es2015-sticky-regex"; - packageName = "babel-plugin-transform-es2015-sticky-regex"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"; - sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"; - }; - }; - "babel-plugin-transform-es2015-template-literals-6.22.0" = { - name = "babel-plugin-transform-es2015-template-literals"; - packageName = "babel-plugin-transform-es2015-template-literals"; - version = "6.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"; - sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"; - }; - }; - "babel-plugin-transform-es2015-typeof-symbol-6.23.0" = { - name = "babel-plugin-transform-es2015-typeof-symbol"; - packageName = "babel-plugin-transform-es2015-typeof-symbol"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"; - sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372"; - }; - }; - "babel-plugin-transform-es2015-unicode-regex-6.24.1" = { - name = "babel-plugin-transform-es2015-unicode-regex"; - packageName = "babel-plugin-transform-es2015-unicode-regex"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"; - sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9"; - }; - }; - "babel-plugin-transform-regenerator-6.26.0" = { - name = "babel-plugin-transform-regenerator"; - packageName = "babel-plugin-transform-regenerator"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz"; - sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"; - }; - }; - "babel-plugin-transform-strict-mode-6.24.1" = { - name = "babel-plugin-transform-strict-mode"; - packageName = "babel-plugin-transform-strict-mode"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"; - sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758"; - }; - }; - "babel-polyfill-6.26.0" = { - name = "babel-polyfill"; - packageName = "babel-polyfill"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"; - sha1 = "379937abc67d7895970adc621f284cd966cf2153"; - }; - }; - "babel-register-6.26.0" = { - name = "babel-register"; - packageName = "babel-register"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-register/-/babel-register-6.26.0.tgz"; - sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; - }; - }; - "babel-runtime-6.26.0" = { - name = "babel-runtime"; - packageName = "babel-runtime"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; - }; - }; - "babel-template-6.26.0" = { - name = "babel-template"; - packageName = "babel-template"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-template/-/babel-template-6.26.0.tgz"; - sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; - }; - }; - "babel-traverse-6.26.0" = { - name = "babel-traverse"; - packageName = "babel-traverse"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-traverse/-/babel-traverse-6.26.0.tgz"; - sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; - }; - }; - "babel-types-6.26.0" = { - name = "babel-types"; - packageName = "babel-types"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"; - sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; - }; - }; - "babylon-6.18.0" = { - name = "babylon"; - packageName = "babylon"; - version = "6.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; - sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="; - }; - }; - "backo2-1.0.2" = { - name = "backo2"; - packageName = "backo2"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; - sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; - }; - }; - "backoff-2.5.0" = { - name = "backoff"; - packageName = "backoff"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; - sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; - }; - }; - "bail-1.0.4" = { - name = "bail"; - packageName = "bail"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/bail/-/bail-1.0.4.tgz"; - sha512 = "S8vuDB4w6YpRhICUDET3guPlQpaJl7od94tpZ0Fvnyp+MKW/HyDTcRDck+29C9g+d/qQHnddRH3+94kZdrW0Ww=="; - }; - }; - "balanced-match-0.4.2" = { - name = "balanced-match"; - packageName = "balanced-match"; - version = "0.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz"; - sha1 = "cb3f3e3c732dc0f01ee70b403f302e61d7709838"; - }; - }; - "balanced-match-1.0.0" = { - name = "balanced-match"; - packageName = "balanced-match"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; - }; - }; - "base-0.11.2" = { - name = "base"; - packageName = "base"; - version = "0.11.2"; - src = fetchurl { - url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz"; - sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; - }; - }; - "base64-arraybuffer-0.1.5" = { - name = "base64-arraybuffer"; - packageName = "base64-arraybuffer"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; - sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; - }; - }; - "base64-js-1.3.0" = { - name = "base64-js"; - packageName = "base64-js"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz"; - sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="; - }; - }; - "base64id-1.0.0" = { - name = "base64id"; - packageName = "base64id"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz"; - sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"; - }; - }; - "base64url-3.0.1" = { - name = "base64url"; - packageName = "base64url"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz"; - sha512 = "ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A=="; - }; - }; - "basic-auth-2.0.1" = { - name = "basic-auth"; - packageName = "basic-auth"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/basic-auth/-/basic-auth-2.0.1.tgz"; - sha512 = "NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="; - }; - }; - "bcrypt-pbkdf-1.0.2" = { - name = "bcrypt-pbkdf"; - packageName = "bcrypt-pbkdf"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; - }; - }; - "bcryptjs-2.4.3" = { - name = "bcryptjs"; - packageName = "bcryptjs"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.4.3.tgz"; - sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb"; - }; - }; - "beeper-1.1.1" = { - name = "beeper"; - packageName = "beeper"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/beeper/-/beeper-1.1.1.tgz"; - sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; - }; - }; - "better-assert-1.0.2" = { - name = "better-assert"; - packageName = "better-assert"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; - sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; - }; - }; - "big-number-0.3.1" = { - name = "big-number"; - packageName = "big-number"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/big-number/-/big-number-0.3.1.tgz"; - sha1 = "ac73020c0a59bb79eb17c2ce2db77f77d974e013"; - }; - }; - "big.js-3.2.0" = { - name = "big.js"; - packageName = "big.js"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz"; - sha512 = "+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q=="; - }; - }; - "big.js-5.2.2" = { - name = "big.js"; - packageName = "big.js"; - version = "5.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz"; - sha512 = "vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ=="; - }; - }; - "bignumber.js-7.2.1" = { - name = "bignumber.js"; - packageName = "bignumber.js"; - version = "7.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-7.2.1.tgz"; - sha512 = "S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ=="; - }; - }; - "binary-extensions-1.13.1" = { - name = "binary-extensions"; - packageName = "binary-extensions"; - version = "1.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"; - sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; - }; - }; - "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 = "e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA=="; - }; - }; - "blint-1.0.3" = { - name = "blint"; - packageName = "blint"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/blint/-/blint-1.0.3.tgz"; - sha512 = "6RwH3oJYMujQNd38WWU+jUSRqWfECrmpfL8o3fn3Q3fE9nn5iAktLZJHGEHqeecownbZZwZneTLbaNbIWwU9/A=="; - }; - }; - "blob-0.0.5" = { - name = "blob"; - packageName = "blob"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz"; - sha512 = "gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="; - }; - }; - "block-elements-1.2.0" = { - name = "block-elements"; - packageName = "block-elements"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/block-elements/-/block-elements-1.2.0.tgz"; - sha1 = "8e04ccab638c7e2596f5065fb6c1c7518c905a5d"; - }; - }; - "block-stream2-1.1.0" = { - name = "block-stream2"; - packageName = "block-stream2"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/block-stream2/-/block-stream2-1.1.0.tgz"; - sha1 = "c738e3a91ba977ebb5e1fef431e13ca11d8639e2"; - }; - }; - "bluebird-3.5.5" = { - name = "bluebird"; - packageName = "bluebird"; - version = "3.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz"; - sha512 = "5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w=="; - }; - }; - "body-parser-1.19.0" = { - name = "body-parser"; - packageName = "body-parser"; - version = "1.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; - sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; - }; - }; - "boolbase-1.0.0" = { - name = "boolbase"; - packageName = "boolbase"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; - sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; - }; - }; - "boom-2.10.1" = { - name = "boom"; - packageName = "boom"; - version = "2.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; - }; - }; - "boundary-1.0.1" = { - name = "boundary"; - packageName = "boundary"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/boundary/-/boundary-1.0.1.tgz"; - sha1 = "4d67dc2602c0cc16dd9bce7ebf87e948290f5812"; - }; - }; - "brace-expansion-1.1.11" = { - name = "brace-expansion"; - packageName = "brace-expansion"; - version = "1.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; - }; - }; - "braces-1.8.5" = { - name = "braces"; - packageName = "braces"; - version = "1.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz"; - sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7"; - }; - }; - "braces-2.3.2" = { - name = "braces"; - packageName = "braces"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"; - sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; - }; - }; - "browserify-aes-0.4.0" = { - name = "browserify-aes"; - packageName = "browserify-aes"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-0.4.0.tgz"; - sha1 = "067149b668df31c4b58533e02d01e806d8608e2c"; - }; - }; - "browserify-mime-1.2.9" = { - name = "browserify-mime"; - packageName = "browserify-mime"; - version = "1.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz"; - sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f"; - }; - }; - "browserify-zlib-0.1.4" = { - name = "browserify-zlib"; - packageName = "browserify-zlib"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz"; - sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d"; - }; - }; - "browserslist-1.7.7" = { - name = "browserslist"; - packageName = "browserslist"; - version = "1.7.7"; - src = fetchurl { - url = "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz"; - sha1 = "0bd76704258be829b2398bb50e4b62d1a166b0b9"; - }; - }; - "buble-0.19.7" = { - name = "buble"; - packageName = "buble"; - version = "0.19.7"; - src = fetchurl { - url = "https://registry.npmjs.org/buble/-/buble-0.19.7.tgz"; - sha512 = "YLgWxX/l+NnfotydBlxqCMPR4FREE4ubuHphALz0FxQ7u2hp3BzxTKQ4nKpapOaRJfEm1gukC68KnT2OymRK0g=="; - }; - }; - "buffer-4.9.1" = { - name = "buffer"; - packageName = "buffer"; - version = "4.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz"; - sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; - }; - }; - "buffer-5.2.1" = { - name = "buffer"; - packageName = "buffer"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer/-/buffer-5.2.1.tgz"; - sha512 = "c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg=="; - }; - }; - "buffer-alloc-1.2.0" = { - name = "buffer-alloc"; - packageName = "buffer-alloc"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; - sha512 = "CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow=="; - }; - }; - "buffer-alloc-unsafe-1.1.0" = { - name = "buffer-alloc-unsafe"; - packageName = "buffer-alloc-unsafe"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; - sha512 = "TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg=="; - }; - }; - "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-fill-1.0.0" = { - name = "buffer-fill"; - packageName = "buffer-fill"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"; - sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; - }; - }; - "buffer-from-1.1.1" = { - name = "buffer-from"; - packageName = "buffer-from"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; - }; - }; - "buffer-writer-1.0.1" = { - name = "buffer-writer"; - packageName = "buffer-writer"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-writer/-/buffer-writer-1.0.1.tgz"; - sha1 = "22a936901e3029afcd7547eb4487ceb697a3bf08"; - }; - }; - "builtin-status-codes-3.0.0" = { - name = "builtin-status-codes"; - packageName = "builtin-status-codes"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; - sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; - }; - }; - "bunyan-1.8.12" = { - name = "bunyan"; - packageName = "bunyan"; - version = "1.8.12"; - src = fetchurl { - url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz"; - sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; - }; - }; - "bytes-3.0.0" = { - name = "bytes"; - packageName = "bytes"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; - sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; - }; - }; - "bytes-3.1.0" = { - name = "bytes"; - packageName = "bytes"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; - sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; - }; - }; - "cacache-10.0.4" = { - name = "cacache"; - packageName = "cacache"; - version = "10.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/cacache/-/cacache-10.0.4.tgz"; - sha512 = "Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA=="; - }; - }; - "cache-base-1.0.1" = { - name = "cache-base"; - packageName = "cache-base"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; - sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; - }; - }; - "caller-path-0.1.0" = { - name = "caller-path"; - packageName = "caller-path"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz"; - sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f"; - }; - }; - "callsite-1.0.0" = { - name = "callsite"; - packageName = "callsite"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; - sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; - }; - }; - "callsites-0.2.0" = { - name = "callsites"; - packageName = "callsites"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"; - sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; - }; - }; - "camel-case-3.0.0" = { - name = "camel-case"; - packageName = "camel-case"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz"; - sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"; - }; - }; - "camelcase-1.2.1" = { - name = "camelcase"; - packageName = "camelcase"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; - sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; - }; - }; - "camelcase-4.1.0" = { - name = "camelcase"; - packageName = "camelcase"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"; - sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; - }; - }; - "camelize-1.0.0" = { - name = "camelize"; - packageName = "camelize"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz"; - sha1 = "164a5483e630fa4321e5af07020e531831b2609b"; - }; - }; - "caniuse-api-1.6.1" = { - name = "caniuse-api"; - packageName = "caniuse-api"; - version = "1.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz"; - sha1 = "b534e7c734c4f81ec5fbe8aca2ad24354b962c6c"; - }; - }; - "caniuse-db-1.0.30000973" = { - name = "caniuse-db"; - packageName = "caniuse-db"; - version = "1.0.30000973"; - src = fetchurl { - url = "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000973.tgz"; - sha512 = "leylQOpbgiYSm4G3NT8kq/KkKhKHlOLIBugpr6QsmjrYWgIR+S/iTDjM/5uM6FVqJg4YiD0en3P1udVvnRmrWA=="; - }; - }; - "caseless-0.12.0" = { - name = "caseless"; - packageName = "caseless"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; - sha1 = "1b681c21ff84033c826543090689420d187151dc"; - }; - }; - "center-align-0.1.3" = { - name = "center-align"; - packageName = "center-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; - sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; - }; - }; - "chalk-0.4.0" = { - name = "chalk"; - packageName = "chalk"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; - }; - }; - "chalk-1.1.3" = { - name = "chalk"; - packageName = "chalk"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; - }; - }; - "chalk-2.4.2" = { - name = "chalk"; - packageName = "chalk"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; - }; - }; - "character-entities-1.2.3" = { - name = "character-entities"; - packageName = "character-entities"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/character-entities/-/character-entities-1.2.3.tgz"; - sha512 = "yB4oYSAa9yLcGyTbB4ItFwHw43QHdH129IJ5R+WvxOkWlyFnR5FAaBNnUq4mcxsTVZGh28bHoeTHMKXH1wZf3w=="; - }; - }; - "character-entities-legacy-1.1.3" = { - name = "character-entities-legacy"; - packageName = "character-entities-legacy"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.3.tgz"; - sha512 = "YAxUpPoPwxYFsslbdKkhrGnXAtXoHNgYjlBM3WMXkWGTl5RsY3QmOyhwAgL8Nxm9l5LBThXGawxKPn68y6/fww=="; - }; - }; - "character-reference-invalid-1.1.3" = { - name = "character-reference-invalid"; - packageName = "character-reference-invalid"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.3.tgz"; - sha512 = "VOq6PRzQBam/8Jm6XBGk2fNEnHXAdGd6go0rtd4weAGECBamHDwwCQSOT12TACIYUZegUXnV6xBXqUssijtxIg=="; - }; - }; - "chokidar-1.7.0" = { - name = "chokidar"; - packageName = "chokidar"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz"; - sha1 = "798e689778151c8076b4b360e5edd28cda2bb468"; - }; - }; - "chownr-1.1.1" = { - name = "chownr"; - packageName = "chownr"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz"; - sha512 = "j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g=="; - }; - }; - "circular-json-0.3.3" = { - name = "circular-json"; - packageName = "circular-json"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz"; - sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; - }; - }; - "clap-1.2.3" = { - name = "clap"; - packageName = "clap"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz"; - sha512 = "4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA=="; - }; - }; - "class-utils-0.3.6" = { - name = "class-utils"; - packageName = "class-utils"; - version = "0.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"; - sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; - }; - }; - "clean-css-4.2.1" = { - name = "clean-css"; - packageName = "clean-css"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz"; - sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g=="; - }; - }; - "cli-1.0.1" = { - name = "cli"; - packageName = "cli"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cli/-/cli-1.0.1.tgz"; - sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14"; - }; - }; - "cli-color-1.2.0" = { - name = "cli-color"; - packageName = "cli-color"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cli-color/-/cli-color-1.2.0.tgz"; - sha1 = "3a5ae74fd76b6267af666e69e2afbbd01def34d1"; - }; - }; - "cli-cursor-1.0.2" = { - name = "cli-cursor"; - packageName = "cli-cursor"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz"; - sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987"; - }; - }; - "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"; - }; - }; - "clipboard-2.0.4" = { - name = "clipboard"; - packageName = "clipboard"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/clipboard/-/clipboard-2.0.4.tgz"; - sha512 = "Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ=="; - }; - }; - "cliui-2.1.0" = { - name = "cliui"; - packageName = "cliui"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; - sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; - }; - }; - "cliui-3.2.0" = { - name = "cliui"; - packageName = "cliui"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; - sha1 = "120601537a916d29940f934da3b48d585a39213d"; - }; - }; - "clone-0.2.0" = { - name = "clone"; - packageName = "clone"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz"; - sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; - }; - }; - "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-stats-0.0.1" = { - name = "clone-stats"; - packageName = "clone-stats"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; - sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1"; - }; - }; - "co-4.6.0" = { - name = "co"; - packageName = "co"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz"; - sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"; - }; - }; - "coa-1.0.4" = { - name = "coa"; - packageName = "coa"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz"; - sha1 = "a9ef153660d6a86a8bdec0289a5c684d217432fd"; - }; - }; - "code-point-at-1.1.0" = { - name = "code-point-at"; - packageName = "code-point-at"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; - }; - }; - "collapse-white-space-1.0.5" = { - name = "collapse-white-space"; - packageName = "collapse-white-space"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-1.0.5.tgz"; - sha512 = "703bOOmytCYAX9cXYqoikYIx6twmFCXsnzRQheBcTG3nzKYBR4P/+wkYeH+Mvj7qUz8zZDtdyzbxfnEi/kYzRQ=="; - }; - }; - "collapse-whitespace-1.1.2" = { - name = "collapse-whitespace"; - packageName = "collapse-whitespace"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/collapse-whitespace/-/collapse-whitespace-1.1.2.tgz"; - sha1 = "b9b31d79d5594ee3c22c15819c54828e565b3085"; - }; - }; - "collection-visit-1.0.0" = { - name = "collection-visit"; - packageName = "collection-visit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; - }; - }; - "color-0.11.4" = { - name = "color"; - packageName = "color"; - version = "0.11.4"; - src = fetchurl { - url = "https://registry.npmjs.org/color/-/color-0.11.4.tgz"; - sha1 = "6d7b5c74fb65e841cd48792ad1ed5e07b904d764"; - }; - }; - "color-convert-1.9.3" = { - name = "color-convert"; - packageName = "color-convert"; - version = "1.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; - }; - }; - "color-name-1.1.3" = { - name = "color-name"; - packageName = "color-name"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; - }; - }; - "color-string-0.3.0" = { - name = "color-string"; - packageName = "color-string"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; - sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991"; - }; - }; - "color-support-1.1.3" = { - name = "color-support"; - packageName = "color-support"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz"; - sha512 = "qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg=="; - }; - }; - "colormin-1.1.2" = { - name = "colormin"; - packageName = "colormin"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz"; - sha1 = "ea2f7420a72b96881a38aae59ec124a6f7298133"; - }; - }; - "colors-1.0.3" = { - name = "colors"; - packageName = "colors"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; - }; - }; - "colors-1.1.2" = { - name = "colors"; - packageName = "colors"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; - sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; - }; - }; - "colors-1.3.3" = { - name = "colors"; - packageName = "colors"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz"; - sha512 = "mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg=="; - }; - }; - "combined-stream-1.0.8" = { - name = "combined-stream"; - packageName = "combined-stream"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; - }; - }; - "commander-2.17.1" = { - name = "commander"; - packageName = "commander"; - version = "2.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz"; - sha512 = "wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg=="; - }; - }; - "commander-2.19.0" = { - name = "commander"; - packageName = "commander"; - version = "2.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz"; - sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="; - }; - }; - "commander-2.20.0" = { - name = "commander"; - packageName = "commander"; - version = "2.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz"; - sha512 = "7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ=="; - }; - }; - "commondir-1.0.1" = { - name = "commondir"; - packageName = "commondir"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; - }; - }; - "component-bind-1.0.0" = { - name = "component-bind"; - packageName = "component-bind"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; - sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; - }; - }; - "component-emitter-1.2.1" = { - name = "component-emitter"; - packageName = "component-emitter"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; - sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; - }; - }; - "component-emitter-1.3.0" = { - name = "component-emitter"; - packageName = "component-emitter"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"; - sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; - }; - }; - "component-inherit-0.0.3" = { - name = "component-inherit"; - packageName = "component-inherit"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; - sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; - }; - }; - "compress-commons-1.2.2" = { - name = "compress-commons"; - packageName = "compress-commons"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/compress-commons/-/compress-commons-1.2.2.tgz"; - sha1 = "524a9f10903f3a813389b0225d27c48bb751890f"; - }; - }; - "compressible-2.0.17" = { - name = "compressible"; - packageName = "compressible"; - version = "2.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz"; - sha512 = "BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw=="; - }; - }; - "concat-map-0.0.1" = { - name = "concat-map"; - packageName = "concat-map"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; - }; - }; - "concat-stream-1.6.2" = { - name = "concat-stream"; - packageName = "concat-stream"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; - }; - }; - "config-chain-1.1.12" = { - name = "config-chain"; - packageName = "config-chain"; - version = "1.1.12"; - src = fetchurl { - url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.12.tgz"; - sha512 = "a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA=="; - }; - }; - "console-browserify-1.1.0" = { - name = "console-browserify"; - packageName = "console-browserify"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz"; - sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; - }; - }; - "console-control-strings-1.1.0" = { - name = "console-control-strings"; - packageName = "console-control-strings"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"; - sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; - }; - }; - "constants-browserify-1.0.0" = { - name = "constants-browserify"; - packageName = "constants-browserify"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"; - sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; - }; - }; - "content-disposition-0.5.3" = { - name = "content-disposition"; - packageName = "content-disposition"; - version = "0.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; - sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; - }; - }; - "content-security-policy-builder-2.0.0" = { - name = "content-security-policy-builder"; - packageName = "content-security-policy-builder"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/content-security-policy-builder/-/content-security-policy-builder-2.0.0.tgz"; - sha512 = "j+Nhmj1yfZAikJLImCvPJFE29x/UuBi+/MWqggGGc515JKaZrjuei2RhULJmy0MsstW3E3htl002bwmBNMKr7w=="; - }; - }; - "content-type-1.0.4" = { - name = "content-type"; - packageName = "content-type"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; - sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; - }; - }; - "content-type-parser-1.0.2" = { - name = "content-type-parser"; - packageName = "content-type-parser"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/content-type-parser/-/content-type-parser-1.0.2.tgz"; - sha512 = "lM4l4CnMEwOLHAHr/P6MEZwZFPJFtAAKgL6pogbXmVZggIqXhdB6RbBtPOTsw2FcXwYhehRGERJmRrjOiIB8pQ=="; - }; - }; - "convert-source-map-1.6.0" = { - name = "convert-source-map"; - packageName = "convert-source-map"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz"; - sha512 = "eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A=="; - }; - }; - "cookie-0.3.1" = { - name = "cookie"; - packageName = "cookie"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; - sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; - }; - }; - "cookie-0.4.0" = { - name = "cookie"; - packageName = "cookie"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; - sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; - }; - }; - "cookie-signature-1.0.6" = { - name = "cookie-signature"; - packageName = "cookie-signature"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; - sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; - }; - }; - "cookiejar-2.0.6" = { - name = "cookiejar"; - packageName = "cookiejar"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.6.tgz"; - sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe"; - }; - }; - "copy-concurrently-1.0.5" = { - name = "copy-concurrently"; - packageName = "copy-concurrently"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz"; - sha512 = "f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A=="; - }; - }; - "copy-descriptor-0.1.1" = { - name = "copy-descriptor"; - packageName = "copy-descriptor"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; - }; - }; - "core-js-2.6.9" = { - name = "core-js"; - packageName = "core-js"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz"; - sha512 = "HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A=="; - }; - }; - "core-util-is-1.0.2" = { - name = "core-util-is"; - packageName = "core-util-is"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; - }; - }; - "crc-3.8.0" = { - name = "crc"; - packageName = "crc"; - version = "3.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/crc/-/crc-3.8.0.tgz"; - sha512 = "iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ=="; - }; - }; - "crc32-stream-2.0.0" = { - name = "crc32-stream"; - packageName = "crc32-stream"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-2.0.0.tgz"; - sha1 = "e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4"; - }; - }; - "cross-spawn-5.1.0" = { - name = "cross-spawn"; - packageName = "cross-spawn"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; - sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; - }; - }; - "cryptiles-2.0.5" = { - name = "cryptiles"; - packageName = "cryptiles"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; - }; - }; - "crypto-browserify-3.3.0" = { - name = "crypto-browserify"; - packageName = "crypto-browserify"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.3.0.tgz"; - sha1 = "b9fc75bb4a0ed61dcf1cd5dae96eb30c9c3e506c"; - }; - }; - "csextends-1.2.0" = { - name = "csextends"; - packageName = "csextends"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/csextends/-/csextends-1.2.0.tgz"; - sha512 = "S/8k1bDTJIwuGgQYmsRoE+8P+ohV32WhQ0l4zqrc0XDdxOhjQQD7/wTZwCzoZX53jSX3V/qwjT+OkPTxWQcmjg=="; - }; - }; - "css-color-names-0.0.4" = { - name = "css-color-names"; - packageName = "css-color-names"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz"; - sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; - }; - }; - "css-select-1.2.0" = { - name = "css-select"; - packageName = "css-select"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz"; - sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; - }; - }; - "css-selector-tokenizer-0.7.1" = { - name = "css-selector-tokenizer"; - packageName = "css-selector-tokenizer"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz"; - sha512 = "xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA=="; - }; - }; - "css-what-2.1.3" = { - name = "css-what"; - packageName = "css-what"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz"; - sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg=="; - }; - }; - "cssesc-0.1.0" = { - name = "cssesc"; - packageName = "cssesc"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz"; - sha1 = "c814903e45623371a0477b40109aaafbeeaddbb4"; - }; - }; - "cssfilter-0.0.10" = { - name = "cssfilter"; - packageName = "cssfilter"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/cssfilter/-/cssfilter-0.0.10.tgz"; - sha1 = "c6d2672632a2e5c83e013e6864a42ce8defd20ae"; - }; - }; - "cssnano-3.10.0" = { - name = "cssnano"; - packageName = "cssnano"; - version = "3.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz"; - sha1 = "4f38f6cea2b9b17fa01490f23f1dc68ea65c1c38"; - }; - }; - "csso-2.3.2" = { - name = "csso"; - packageName = "csso"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz"; - sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85"; - }; - }; - "cssom-0.2.5" = { - name = "cssom"; - packageName = "cssom"; - version = "0.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cssom/-/cssom-0.2.5.tgz"; - sha1 = "2682709b5902e7212df529116ff788cd5b254894"; - }; - }; - "cssom-0.3.6" = { - name = "cssom"; - packageName = "cssom"; - version = "0.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz"; - sha512 = "DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A=="; - }; - }; - "cssstyle-0.2.37" = { - name = "cssstyle"; - packageName = "cssstyle"; - version = "0.2.37"; - src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz"; - sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; - }; - }; - "cycle-1.0.3" = { - name = "cycle"; - packageName = "cycle"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; - sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; - }; - }; - "cyclist-0.2.2" = { - name = "cyclist"; - packageName = "cyclist"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz"; - sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640"; - }; - }; - "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"; - }; - }; - "d3-3.5.17" = { - name = "d3"; - packageName = "d3"; - version = "3.5.17"; - src = fetchurl { - url = "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz"; - sha1 = "bc46748004378b21a360c9fc7cf5231790762fb8"; - }; - }; - "dagre-d3-renderer-0.4.26" = { - name = "dagre-d3-renderer"; - packageName = "dagre-d3-renderer"; - version = "0.4.26"; - src = fetchurl { - url = "https://registry.npmjs.org/dagre-d3-renderer/-/dagre-d3-renderer-0.4.26.tgz"; - sha512 = "vOWj1uA4/APTrfDyfHaH/xpfXhPh9rszW+HOaEwPCeA6Afl06Lobfh7OpESuVMQW2QGuY4UQ7pte/p0WhdDs7w=="; - }; - }; - "dagre-layout-0.8.8" = { - name = "dagre-layout"; - packageName = "dagre-layout"; - version = "0.8.8"; - src = fetchurl { - url = "https://registry.npmjs.org/dagre-layout/-/dagre-layout-0.8.8.tgz"; - sha512 = "ZNV15T9za7X+fV8Z07IZquUKugCxm5owoiPPxfEx6OJRD331nkiIaF3vSt0JEY5FkrY0KfRQxcpQ3SpXB7pLPQ=="; - }; - }; - "dashdash-1.14.1" = { - name = "dashdash"; - packageName = "dashdash"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; - }; - }; - "dasherize-2.0.0" = { - name = "dasherize"; - packageName = "dasherize"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dasherize/-/dasherize-2.0.0.tgz"; - sha1 = "6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308"; - }; - }; - "date-now-0.1.4" = { - name = "date-now"; - packageName = "date-now"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz"; - sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; - }; - }; - "dateformat-2.2.0" = { - name = "dateformat"; - packageName = "dateformat"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dateformat/-/dateformat-2.2.0.tgz"; - sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; - }; - }; - "debug-2.6.9" = { - name = "debug"; - packageName = "debug"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; - }; - }; - "debug-3.1.0" = { - name = "debug"; - packageName = "debug"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; - sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; - }; - }; - "debug-3.2.6" = { - name = "debug"; - packageName = "debug"; - version = "3.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"; - sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; - }; - }; - "debug-4.1.1" = { - name = "debug"; - packageName = "debug"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; - sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; - }; - }; - "debug-log-1.0.1" = { - name = "debug-log"; - packageName = "debug-log"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/debug-log/-/debug-log-1.0.1.tgz"; - sha1 = "2307632d4c04382b8df8a32f70b895046d52745f"; - }; - }; - "decamelize-1.2.0" = { - name = "decamelize"; - packageName = "decamelize"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; - }; - }; - "decode-uri-component-0.2.0" = { - name = "decode-uri-component"; - packageName = "decode-uri-component"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; - }; - }; - "deep-equal-1.0.1" = { - name = "deep-equal"; - packageName = "deep-equal"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; - sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; - }; - }; - "deep-extend-0.6.0" = { - name = "deep-extend"; - packageName = "deep-extend"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; - sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; - }; - }; - "deep-is-0.1.3" = { - name = "deep-is"; - packageName = "deep-is"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; - sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; - }; - }; - "defaults-1.0.3" = { - name = "defaults"; - packageName = "defaults"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; - sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; - }; - }; - "define-properties-1.1.3" = { - name = "define-properties"; - packageName = "define-properties"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; - }; - }; - "define-property-0.2.5" = { - name = "define-property"; - packageName = "define-property"; - version = "0.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; - }; - }; - "define-property-1.0.0" = { - name = "define-property"; - packageName = "define-property"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; - }; - }; - "define-property-2.0.2" = { - name = "define-property"; - packageName = "define-property"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"; - sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; - }; - }; - "defined-1.0.0" = { - name = "defined"; - packageName = "defined"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"; - sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; - }; - }; - "deglob-2.1.1" = { - name = "deglob"; - packageName = "deglob"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deglob/-/deglob-2.1.1.tgz"; - sha512 = "2kjwuGGonL7gWE1XU4Fv79+vVzpoQCl0V+boMwWtOQJV2AGDabCwez++nB1Nli/8BabAfZQ/UuHPlp6AymKdWw=="; - }; - }; - "delayed-stream-1.0.0" = { - name = "delayed-stream"; - packageName = "delayed-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; - }; - }; - "delegate-3.2.0" = { - name = "delegate"; - packageName = "delegate"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delegate/-/delegate-3.2.0.tgz"; - sha512 = "IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw=="; - }; - }; - "delegates-1.0.0" = { - name = "delegates"; - packageName = "delegates"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; - sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; - }; - }; - "depd-1.1.2" = { - name = "depd"; - packageName = "depd"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; - sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; - }; - }; - "depd-2.0.0" = { - name = "depd"; - packageName = "depd"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; - sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; - }; - }; - "deprecated-0.0.1" = { - name = "deprecated"; - packageName = "deprecated"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz"; - sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19"; - }; - }; - "destroy-1.0.4" = { - name = "destroy"; - packageName = "destroy"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; - sha1 = "978857442c44749e4206613e37946205826abd80"; - }; - }; - "detect-file-0.1.0" = { - name = "detect-file"; - packageName = "detect-file"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-file/-/detect-file-0.1.0.tgz"; - sha1 = "4935dedfd9488648e006b0129566e9386711ea63"; - }; - }; - "detect-file-1.0.0" = { - name = "detect-file"; - packageName = "detect-file"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"; - sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; - }; - }; - "detect-indent-4.0.0" = { - name = "detect-indent"; - packageName = "detect-indent"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-4.0.0.tgz"; - sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; - }; - }; - "detect-libc-1.0.3" = { - name = "detect-libc"; - packageName = "detect-libc"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; - sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; - }; - }; - "dir-glob-2.2.2" = { - name = "dir-glob"; - packageName = "dir-glob"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/dir-glob/-/dir-glob-2.2.2.tgz"; - sha512 = "f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw=="; - }; - }; - "dns-lookup-all-1.0.2" = { - name = "dns-lookup-all"; - packageName = "dns-lookup-all"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/dns-lookup-all/-/dns-lookup-all-1.0.2.tgz"; - sha1 = "4d8b2b1af69c83a7b262eb5de92485b7b3a215eb"; - }; - }; - "dns-prefetch-control-0.1.0" = { - name = "dns-prefetch-control"; - packageName = "dns-prefetch-control"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dns-prefetch-control/-/dns-prefetch-control-0.1.0.tgz"; - sha1 = "60ddb457774e178f1f9415f0cabb0e85b0b300b2"; - }; - }; - "doctrine-1.5.0" = { - name = "doctrine"; - packageName = "doctrine"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz"; - sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; - }; - }; - "doctrine-2.1.0" = { - name = "doctrine"; - packageName = "doctrine"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"; - sha512 = "35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw=="; - }; - }; - "dom-converter-0.2.0" = { - name = "dom-converter"; - packageName = "dom-converter"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz"; - sha512 = "gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA=="; - }; - }; - "dom-serializer-0.1.1" = { - name = "dom-serializer"; - packageName = "dom-serializer"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.1.tgz"; - sha512 = "l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA=="; - }; - }; - "domain-browser-1.2.0" = { - name = "domain-browser"; - packageName = "domain-browser"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz"; - sha512 = "jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA=="; - }; - }; - "domelementtype-1.3.1" = { - name = "domelementtype"; - packageName = "domelementtype"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz"; - sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w=="; - }; - }; - "domhandler-2.3.0" = { - name = "domhandler"; - packageName = "domhandler"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz"; - sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738"; - }; - }; - "domhandler-2.4.2" = { - name = "domhandler"; - packageName = "domhandler"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz"; - sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA=="; - }; - }; - "domutils-1.5.1" = { - name = "domutils"; - packageName = "domutils"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; - sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; - }; - }; - "domutils-1.7.0" = { - name = "domutils"; - packageName = "domutils"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz"; - sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg=="; - }; - }; - "dont-sniff-mimetype-1.0.0" = { - name = "dont-sniff-mimetype"; - packageName = "dont-sniff-mimetype"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/dont-sniff-mimetype/-/dont-sniff-mimetype-1.0.0.tgz"; - sha1 = "5932890dc9f4e2f19e5eb02a20026e5e5efc8f58"; - }; - }; - "dottie-1.1.1" = { - name = "dottie"; - packageName = "dottie"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dottie/-/dottie-1.1.1.tgz"; - sha1 = "45c2a3f48bd6528eeed267a69a848eaaca6faa6a"; - }; - }; - "dtrace-provider-0.8.7" = { - name = "dtrace-provider"; - packageName = "dtrace-provider"; - version = "0.8.7"; - src = fetchurl { - url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz"; - sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04"; - }; - }; - "duplexer-0.1.1" = { - name = "duplexer"; - packageName = "duplexer"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; - sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; - }; - }; - "duplexer2-0.0.2" = { - name = "duplexer2"; - packageName = "duplexer2"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz"; - sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db"; - }; - }; - "duplexify-3.7.1" = { - name = "duplexify"; - packageName = "duplexify"; - version = "3.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz"; - sha512 = "07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g=="; - }; - }; - "eachr-2.0.4" = { - name = "eachr"; - packageName = "eachr"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/eachr/-/eachr-2.0.4.tgz"; - sha1 = "466f7caa10708f610509e32c807aafe57fc122bf"; - }; - }; - "ecc-jsbn-0.1.2" = { - name = "ecc-jsbn"; - packageName = "ecc-jsbn"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; - }; - }; - "editions-1.3.4" = { - name = "editions"; - packageName = "editions"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/editions/-/editions-1.3.4.tgz"; - sha512 = "gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg=="; - }; - }; - "editions-2.1.3" = { - name = "editions"; - packageName = "editions"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/editions/-/editions-2.1.3.tgz"; - sha512 = "xDZyVm0A4nLgMNWVVLJvcwMjI80ShiH/27RyLiCnW1L273TcJIA25C4pwJ33AWV01OX6UriP35Xu+lH4S7HWQw=="; - }; - }; - "editorconfig-0.15.3" = { - name = "editorconfig"; - packageName = "editorconfig"; - version = "0.15.3"; - src = fetchurl { - url = "https://registry.npmjs.org/editorconfig/-/editorconfig-0.15.3.tgz"; - sha512 = "M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g=="; - }; - }; - "ee-first-1.1.1" = { - name = "ee-first"; - packageName = "ee-first"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; - sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; - }; - }; - "ejs-2.6.1" = { - name = "ejs"; - packageName = "ejs"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz"; - sha512 = "0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ=="; - }; - }; - "electron-to-chromium-1.3.147" = { - name = "electron-to-chromium"; - packageName = "electron-to-chromium"; - version = "1.3.147"; - src = fetchurl { - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.147.tgz"; - sha512 = "pHE+9S2OMXOLAze6KvKMA9Te56M5e4WIdPPPeZ2JiSNvpXkDrn9FoBot1yeeXMRClWvQGI6vj06kQFqCADrspQ=="; - }; - }; - "emoji-regex-6.1.3" = { - name = "emoji-regex"; - packageName = "emoji-regex"; - version = "6.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-6.1.3.tgz"; - sha1 = "ec79a3969b02d2ecf2b72254279bf99bc7a83932"; - }; - }; - "emojis-list-2.1.0" = { - name = "emojis-list"; - packageName = "emojis-list"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz"; - sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; - }; - }; - "encodeurl-1.0.2" = { - name = "encodeurl"; - packageName = "encodeurl"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; - sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; - }; - }; - "end-of-stream-0.1.5" = { - name = "end-of-stream"; - packageName = "end-of-stream"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz"; - sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf"; - }; - }; - "end-of-stream-1.4.1" = { - name = "end-of-stream"; - packageName = "end-of-stream"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz"; - sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q=="; - }; - }; - "engine.io-3.1.5" = { - name = "engine.io"; - packageName = "engine.io"; - version = "3.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-3.1.5.tgz"; - sha512 = "D06ivJkYxyRrcEe0bTpNnBQNgP9d3xog+qZlLbui8EsMr/DouQpf5o9FzJnWYHEYE0YsFHllUv2R1dkgYZXHcA=="; - }; - }; - "engine.io-client-3.1.6" = { - name = "engine.io-client"; - packageName = "engine.io-client"; - version = "3.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.1.6.tgz"; - sha512 = "hnuHsFluXnsKOndS4Hv6SvUrgdYx1pk2NqfaDMW+GWdgfU3+/V25Cj7I8a0x92idSpa5PIhJRKxPvp9mnoLsfg=="; - }; - }; - "engine.io-parser-2.1.3" = { - name = "engine.io-parser"; - packageName = "engine.io-parser"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz"; - sha512 = "6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA=="; - }; - }; - "enhanced-resolve-0.9.1" = { - name = "enhanced-resolve"; - packageName = "enhanced-resolve"; - version = "0.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz"; - sha1 = "4d6e689b3725f86090927ccc86cd9f1635b89e2e"; - }; - }; - "entities-1.0.0" = { - name = "entities"; - packageName = "entities"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; - sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26"; - }; - }; - "entities-1.1.2" = { - name = "entities"; - packageName = "entities"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz"; - sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="; - }; - }; - "errlop-1.1.1" = { - name = "errlop"; - packageName = "errlop"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/errlop/-/errlop-1.1.1.tgz"; - sha512 = "WX7QjiPHhsny7/PQvrhS5VMizXXKoKCS3udaBp8gjlARdbn+XmK300eKBAAN0hGyRaTCtRpOaxK+xFVPUJ3zkw=="; - }; - }; - "errno-0.1.7" = { - name = "errno"; - packageName = "errno"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz"; - sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg=="; - }; - }; - "error-ex-1.3.2" = { - name = "error-ex"; - packageName = "error-ex"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"; - sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; - }; - }; - "es-abstract-1.13.0" = { - name = "es-abstract"; - packageName = "es-abstract"; - version = "1.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz"; - sha512 = "vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg=="; - }; - }; - "es-to-primitive-1.2.0" = { - name = "es-to-primitive"; - packageName = "es-to-primitive"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz"; - sha512 = "qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg=="; - }; - }; - "es5-ext-0.10.50" = { - name = "es5-ext"; - packageName = "es5-ext"; - version = "0.10.50"; - src = fetchurl { - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.50.tgz"; - sha512 = "KMzZTPBkeQV/JcSQhI5/z6d9VWJ3EnQ194USTUwIYZ2ZbpN8+SGXQKt1h68EX44+qt+Fzr8DO17vnxrw7c3agw=="; - }; - }; - "es6-error-2.1.1" = { - name = "es6-error"; - packageName = "es6-error"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-error/-/es6-error-2.1.1.tgz"; - sha1 = "91384301ec5ed1c9a7247d1128247216f03547cd"; - }; - }; - "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-promise-4.2.6" = { - name = "es6-promise"; - packageName = "es6-promise"; - version = "4.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-promise/-/es6-promise-4.2.6.tgz"; - sha512 = "aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q=="; - }; - }; - "es6-promisify-5.0.0" = { - name = "es6-promisify"; - packageName = "es6-promisify"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-promisify/-/es6-promisify-5.0.0.tgz"; - sha1 = "5109d62f3e56ea967c4b63505aef08291c8a5203"; - }; - }; - "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"; - }; - }; - "es6-weak-map-2.0.2" = { - name = "es6-weak-map"; - packageName = "es6-weak-map"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz"; - sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"; - }; - }; - "escape-html-1.0.3" = { - name = "escape-html"; - packageName = "escape-html"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; - sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; - }; - }; - "escape-string-regexp-1.0.5" = { - name = "escape-string-regexp"; - packageName = "escape-string-regexp"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; - }; - }; - "escodegen-1.11.1" = { - name = "escodegen"; - packageName = "escodegen"; - version = "1.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz"; - sha512 = "JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw=="; - }; - }; - "escope-3.6.0" = { - name = "escope"; - packageName = "escope"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz"; - sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3"; - }; - }; - "eslint-3.18.0" = { - name = "eslint"; - packageName = "eslint"; - version = "3.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint/-/eslint-3.18.0.tgz"; - sha1 = "647e985c4ae71502d20ac62c109f66d5104c8a4b"; - }; - }; - "eslint-config-standard-7.1.0" = { - name = "eslint-config-standard"; - packageName = "eslint-config-standard"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-7.1.0.tgz"; - sha1 = "47e769ea0739f5b2d5693b1a501c21c9650fafcf"; - }; - }; - "eslint-config-standard-jsx-3.3.0" = { - name = "eslint-config-standard-jsx"; - packageName = "eslint-config-standard-jsx"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-config-standard-jsx/-/eslint-config-standard-jsx-3.3.0.tgz"; - sha1 = "cab0801a15a360bf63facb97ab22fbdd88d8a5e0"; - }; - }; - "eslint-plugin-promise-3.4.2" = { - name = "eslint-plugin-promise"; - packageName = "eslint-plugin-promise"; - version = "3.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-3.4.2.tgz"; - sha1 = "1be2793eafe2d18b5b123b8136c269f804fe7122"; - }; - }; - "eslint-plugin-react-6.9.0" = { - name = "eslint-plugin-react"; - packageName = "eslint-plugin-react"; - version = "6.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-6.9.0.tgz"; - sha1 = "54c2e9906b76f9d10142030bdc34e9d6840a0bb2"; - }; - }; - "eslint-plugin-standard-2.0.1" = { - name = "eslint-plugin-standard"; - packageName = "eslint-plugin-standard"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-2.0.1.tgz"; - sha1 = "3589699ff9c917f2c25f76a916687f641c369ff3"; - }; - }; - "espree-3.5.4" = { - name = "espree"; - packageName = "espree"; - version = "3.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz"; - sha512 = "yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A=="; - }; - }; - "esprima-2.7.3" = { - name = "esprima"; - packageName = "esprima"; - version = "2.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz"; - sha1 = "96e3b70d5779f6ad49cd032673d1c312767ba581"; - }; - }; - "esprima-3.1.3" = { - name = "esprima"; - packageName = "esprima"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz"; - sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633"; - }; - }; - "esprima-4.0.1" = { - name = "esprima"; - packageName = "esprima"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; - }; - }; - "esquery-1.0.1" = { - name = "esquery"; - packageName = "esquery"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/esquery/-/esquery-1.0.1.tgz"; - sha512 = "SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA=="; - }; - }; - "esrecurse-4.2.1" = { - name = "esrecurse"; - packageName = "esrecurse"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz"; - sha512 = "64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ=="; - }; - }; - "estraverse-4.2.0" = { - name = "estraverse"; - packageName = "estraverse"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz"; - sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; - }; - }; - "estree-walker-0.6.1" = { - name = "estree-walker"; - packageName = "estree-walker"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz"; - sha512 = "SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w=="; - }; - }; - "esutils-2.0.2" = { - name = "esutils"; - packageName = "esutils"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; - sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; - }; - }; - "etag-1.8.1" = { - name = "etag"; - packageName = "etag"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; - sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; - }; - }; - "eve-raphael-0.5.0" = { - name = "eve-raphael"; - packageName = "eve-raphael"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eve-raphael/-/eve-raphael-0.5.0.tgz"; - sha1 = "17c754b792beef3fa6684d79cf5a47c63c4cda30"; - }; - }; - "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"; - }; - }; - "eventemitter2-5.0.1" = { - name = "eventemitter2"; - packageName = "eventemitter2"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-5.0.1.tgz"; - sha1 = "6197a095d5fb6b57e8942f6fd7eaad63a09c9452"; - }; - }; - "events-1.1.1" = { - name = "events"; - packageName = "events"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz"; - sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; - }; - }; - "execa-0.7.0" = { - name = "execa"; - packageName = "execa"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; - sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; - }; - }; - "exit-0.1.2" = { - name = "exit"; - packageName = "exit"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"; - sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; - }; - }; - "exit-hook-1.1.1" = { - name = "exit-hook"; - packageName = "exit-hook"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz"; - sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8"; - }; - }; - "expand-brackets-0.1.5" = { - name = "expand-brackets"; - packageName = "expand-brackets"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz"; - sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; - }; - }; - "expand-brackets-2.1.4" = { - name = "expand-brackets"; - packageName = "expand-brackets"; - version = "2.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; - }; - }; - "expand-range-1.8.2" = { - name = "expand-range"; - packageName = "expand-range"; - version = "1.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz"; - sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; - }; - }; - "expand-tilde-1.2.2" = { - name = "expand-tilde"; - packageName = "expand-tilde"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-1.2.2.tgz"; - sha1 = "0b81eba897e5a3d31d1c3d102f8f01441e559449"; - }; - }; - "expand-tilde-2.0.2" = { - name = "expand-tilde"; - packageName = "expand-tilde"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; - sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; - }; - }; - "expect-ct-0.2.0" = { - name = "expect-ct"; - packageName = "expect-ct"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/expect-ct/-/expect-ct-0.2.0.tgz"; - sha512 = "6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g=="; - }; - }; - "extend-3.0.0" = { - name = "extend"; - packageName = "extend"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz"; - sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; - }; - }; - "extend-3.0.2" = { - name = "extend"; - packageName = "extend"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; - }; - }; - "extend-shallow-2.0.1" = { - name = "extend-shallow"; - packageName = "extend-shallow"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; - }; - }; - "extend-shallow-3.0.2" = { - name = "extend-shallow"; - packageName = "extend-shallow"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"; - sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; - }; - }; - "extendr-2.1.0" = { - name = "extendr"; - packageName = "extendr"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extendr/-/extendr-2.1.0.tgz"; - sha1 = "301aa0bbea565f4d2dc8f570f2a22611a8527b56"; - }; - }; - "extglob-0.3.2" = { - name = "extglob"; - packageName = "extglob"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz"; - sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1"; - }; - }; - "extglob-2.0.4" = { - name = "extglob"; - packageName = "extglob"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"; - sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; - }; - }; - "extract-opts-2.2.0" = { - name = "extract-opts"; - packageName = "extract-opts"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extract-opts/-/extract-opts-2.2.0.tgz"; - sha1 = "1fa28eba7352c6db480f885ceb71a46810be6d7d"; - }; - }; - "extract-zip-1.6.7" = { - name = "extract-zip"; - packageName = "extract-zip"; - version = "1.6.7"; - src = fetchurl { - url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz"; - sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9"; - }; - }; - "extsprintf-1.2.0" = { - name = "extsprintf"; - packageName = "extsprintf"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; - sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; - }; - }; - "extsprintf-1.3.0" = { - name = "extsprintf"; - packageName = "extsprintf"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; - }; - }; - "eyes-0.1.8" = { - name = "eyes"; - packageName = "eyes"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; - sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; - }; - }; - "fancy-log-1.3.3" = { - name = "fancy-log"; - packageName = "fancy-log"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.3.3.tgz"; - sha512 = "k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw=="; - }; - }; - "fast-deep-equal-2.0.1" = { - name = "fast-deep-equal"; - packageName = "fast-deep-equal"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; - sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; - }; - }; - "fast-json-stable-stringify-2.0.0" = { - name = "fast-json-stable-stringify"; - packageName = "fast-json-stable-stringify"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; - sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; - }; - }; - "fast-levenshtein-2.0.6" = { - name = "fast-levenshtein"; - packageName = "fast-levenshtein"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; - sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; - }; - }; - "fastparse-1.1.2" = { - name = "fastparse"; - packageName = "fastparse"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz"; - sha512 = "483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ=="; - }; - }; - "fault-1.0.3" = { - name = "fault"; - packageName = "fault"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fault/-/fault-1.0.3.tgz"; - sha512 = "sfFuP4X0hzrbGKjAUNXYvNqsZ5F6ohx/dZ9I0KQud/aiZNwg263r5L9yGB0clvXHCkzXh5W3t7RSHchggYIFmA=="; - }; - }; - "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"; - }; - }; - "feature-policy-0.3.0" = { - name = "feature-policy"; - packageName = "feature-policy"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/feature-policy/-/feature-policy-0.3.0.tgz"; - sha512 = "ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ=="; - }; - }; - "figures-1.7.0" = { - name = "figures"; - packageName = "figures"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz"; - sha1 = "cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"; - }; - }; - "file-entry-cache-2.0.0" = { - name = "file-entry-cache"; - packageName = "file-entry-cache"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz"; - sha1 = "c392990c3e684783d838b8c84a45d8a048458361"; - }; - }; - "filename-regex-2.0.1" = { - name = "filename-regex"; - packageName = "filename-regex"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz"; - sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"; - }; - }; - "fill-range-2.2.4" = { - name = "fill-range"; - packageName = "fill-range"; - version = "2.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz"; - sha512 = "cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q=="; - }; - }; - "fill-range-4.0.0" = { - name = "fill-range"; - packageName = "fill-range"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; - }; - }; - "finalhandler-1.1.2" = { - name = "finalhandler"; - packageName = "finalhandler"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; - sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; - }; - }; - "find-cache-dir-0.1.1" = { - name = "find-cache-dir"; - packageName = "find-cache-dir"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-0.1.1.tgz"; - sha1 = "c8defae57c8a52a8a784f9e31c57c742e993a0b9"; - }; - }; - "find-cache-dir-1.0.0" = { - name = "find-cache-dir"; - packageName = "find-cache-dir"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-1.0.0.tgz"; - sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f"; - }; - }; - "find-index-0.1.1" = { - name = "find-index"; - packageName = "find-index"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz"; - sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4"; - }; - }; - "find-root-1.1.0" = { - name = "find-root"; - packageName = "find-root"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz"; - sha512 = "NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="; - }; - }; - "find-up-1.1.2" = { - name = "find-up"; - packageName = "find-up"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; - sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; - }; - }; - "find-up-2.1.0" = { - name = "find-up"; - packageName = "find-up"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"; - sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; - }; - }; - "findup-sync-1.0.0" = { - name = "findup-sync"; - packageName = "findup-sync"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-1.0.0.tgz"; - sha1 = "6f7e4b57b6ee3a4037b4414eaedea3f58f71e0ec"; - }; - }; - "findup-sync-2.0.0" = { - name = "findup-sync"; - packageName = "findup-sync"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz"; - sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; - }; - }; - "fined-1.2.0" = { - name = "fined"; - packageName = "fined"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz"; - sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng=="; - }; - }; - "first-chunk-stream-1.0.0" = { - name = "first-chunk-stream"; - packageName = "first-chunk-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; - sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"; - }; - }; - "flagged-respawn-1.0.1" = { - name = "flagged-respawn"; - packageName = "flagged-respawn"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz"; - sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="; - }; - }; - "flat-cache-1.3.4" = { - name = "flat-cache"; - packageName = "flat-cache"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz"; - sha512 = "VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg=="; - }; - }; - "flatten-1.0.2" = { - name = "flatten"; - packageName = "flatten"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz"; - sha1 = "dae46a9d78fbe25292258cc1e780a41d95c03782"; - }; - }; - "flush-write-stream-1.1.1" = { - name = "flush-write-stream"; - packageName = "flush-write-stream"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz"; - sha512 = "3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w=="; - }; - }; - "for-in-1.0.2" = { - name = "for-in"; - packageName = "for-in"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"; - sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; - }; - }; - "for-own-0.1.5" = { - name = "for-own"; - packageName = "for-own"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz"; - sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; - }; - }; - "for-own-1.0.0" = { - name = "for-own"; - packageName = "for-own"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"; - sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; - }; - }; - "forever-agent-0.6.1" = { - name = "forever-agent"; - packageName = "forever-agent"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; - }; - }; - "form-data-1.0.0-rc3" = { - name = "form-data"; - packageName = "form-data"; - version = "1.0.0-rc3"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz"; - sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577"; - }; - }; - "form-data-2.1.4" = { - name = "form-data"; - packageName = "form-data"; - version = "2.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; - sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; - }; - }; - "form-data-2.3.3" = { - name = "form-data"; - packageName = "form-data"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; - sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; - }; - }; - "format-0.2.2" = { - name = "format"; - packageName = "format"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/format/-/format-0.2.2.tgz"; - sha1 = "d6170107e9efdc4ed30c9dc39016df942b5cb58b"; - }; - }; - "formidable-1.0.17" = { - name = "formidable"; - packageName = "formidable"; - version = "1.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz"; - sha1 = "ef5491490f9433b705faa77249c99029ae348559"; - }; - }; - "forwarded-0.1.2" = { - name = "forwarded"; - packageName = "forwarded"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; - sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; - }; - }; - "fragment-cache-0.2.1" = { - name = "fragment-cache"; - packageName = "fragment-cache"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; - }; - }; - "frameguard-3.1.0" = { - name = "frameguard"; - packageName = "frameguard"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/frameguard/-/frameguard-3.1.0.tgz"; - sha512 = "TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g=="; - }; - }; - "fresh-0.5.2" = { - name = "fresh"; - packageName = "fresh"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; - sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; - }; - }; - "from2-2.3.0" = { - name = "from2"; - packageName = "from2"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"; - sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; - }; - }; - "fs-constants-1.0.0" = { - name = "fs-constants"; - packageName = "fs-constants"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz"; - sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; - }; - }; - "fs-exists-sync-0.1.0" = { - name = "fs-exists-sync"; - packageName = "fs-exists-sync"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz"; - sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add"; - }; - }; - "fs-extra-1.0.0" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-1.0.0.tgz"; - sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; - }; - }; - "fs-extra-4.0.3" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "4.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-4.0.3.tgz"; - sha512 = "q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg=="; - }; - }; - "fs-minipass-1.2.6" = { - name = "fs-minipass"; - packageName = "fs-minipass"; - version = "1.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz"; - sha512 = "crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ=="; - }; - }; - "fs-readdir-recursive-1.1.0" = { - name = "fs-readdir-recursive"; - packageName = "fs-readdir-recursive"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; - sha512 = "GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA=="; - }; - }; - "fs-write-stream-atomic-1.0.10" = { - name = "fs-write-stream-atomic"; - packageName = "fs-write-stream-atomic"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz"; - sha1 = "b47df53493ef911df75731e70a9ded0189db40c9"; - }; - }; - "fs.realpath-1.0.0" = { - name = "fs.realpath"; - packageName = "fs.realpath"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; - }; - }; - "fsevents-1.2.9" = { - name = "fsevents"; - packageName = "fsevents"; - version = "1.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz"; - sha512 = "oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw=="; - }; - }; - "function-bind-1.1.1" = { - name = "function-bind"; - packageName = "function-bind"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; - }; - }; - "gauge-2.7.4" = { - name = "gauge"; - packageName = "gauge"; - version = "2.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"; - sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; - }; - }; - "gaze-0.5.2" = { - name = "gaze"; - packageName = "gaze"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz"; - sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f"; - }; - }; - "generate-function-2.3.1" = { - name = "generate-function"; - packageName = "generate-function"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz"; - sha512 = "eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ=="; - }; - }; - "generate-object-property-1.2.0" = { - name = "generate-object-property"; - packageName = "generate-object-property"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; - sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; - }; - }; - "generic-pool-2.4.2" = { - name = "generic-pool"; - packageName = "generic-pool"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/generic-pool/-/generic-pool-2.4.2.tgz"; - sha1 = "886bc5bf0beb7db96e81bcbba078818de5a62683"; - }; - }; - "generic-pool-2.4.3" = { - name = "generic-pool"; - packageName = "generic-pool"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/generic-pool/-/generic-pool-2.4.3.tgz"; - sha1 = "780c36f69dfad05a5a045dd37be7adca11a4f6ff"; - }; - }; - "get-caller-file-1.0.3" = { - name = "get-caller-file"; - packageName = "get-caller-file"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz"; - sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; - }; - }; - "get-stdin-5.0.1" = { - name = "get-stdin"; - packageName = "get-stdin"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz"; - sha1 = "122e161591e21ff4c52530305693f20e6393a398"; - }; - }; - "get-stream-3.0.0" = { - name = "get-stream"; - packageName = "get-stream"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; - sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; - }; - }; - "get-value-2.0.6" = { - name = "get-value"; - packageName = "get-value"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; - }; - }; - "getpass-0.1.7" = { - name = "getpass"; - packageName = "getpass"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; - }; - }; - "glob-3.1.21" = { - name = "glob"; - packageName = "glob"; - version = "3.1.21"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz"; - sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd"; - }; - }; - "glob-4.5.3" = { - name = "glob"; - packageName = "glob"; - version = "4.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz"; - sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f"; - }; - }; - "glob-6.0.4" = { - name = "glob"; - packageName = "glob"; - version = "6.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; - sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; - }; - }; - "glob-7.1.4" = { - name = "glob"; - packageName = "glob"; - version = "7.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz"; - sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A=="; - }; - }; - "glob-base-0.3.0" = { - name = "glob-base"; - packageName = "glob-base"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz"; - sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; - }; - }; - "glob-parent-2.0.0" = { - name = "glob-parent"; - packageName = "glob-parent"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz"; - sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; - }; - }; - "glob-stream-3.1.18" = { - name = "glob-stream"; - packageName = "glob-stream"; - version = "3.1.18"; - src = fetchurl { - url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz"; - sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b"; - }; - }; - "glob-watcher-0.0.6" = { - name = "glob-watcher"; - packageName = "glob-watcher"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz"; - sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b"; - }; - }; - "glob2base-0.0.12" = { - name = "glob2base"; - packageName = "glob2base"; - version = "0.0.12"; - src = fetchurl { - url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz"; - sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56"; - }; - }; - "global-modules-0.2.3" = { - name = "global-modules"; - packageName = "global-modules"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz"; - sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"; - }; - }; - "global-modules-1.0.0" = { - name = "global-modules"; - packageName = "global-modules"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"; - sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg=="; - }; - }; - "global-prefix-0.1.5" = { - name = "global-prefix"; - packageName = "global-prefix"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz"; - sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"; - }; - }; - "global-prefix-1.0.2" = { - name = "global-prefix"; - packageName = "global-prefix"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"; - sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; - }; - }; - "globals-9.18.0" = { - name = "globals"; - packageName = "globals"; - version = "9.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-9.18.0.tgz"; - sha512 = "S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ=="; - }; - }; - "globby-7.1.1" = { - name = "globby"; - packageName = "globby"; - version = "7.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz"; - sha1 = "fb2ccff9401f8600945dfada97440cca972b8680"; - }; - }; - "globule-0.1.0" = { - name = "globule"; - packageName = "globule"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz"; - sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; - }; - }; - "glogg-1.0.2" = { - name = "glogg"; - packageName = "glogg"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/glogg/-/glogg-1.0.2.tgz"; - sha512 = "5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA=="; - }; - }; - "good-listener-1.2.2" = { - name = "good-listener"; - packageName = "good-listener"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/good-listener/-/good-listener-1.2.2.tgz"; - sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; - }; - }; - "graceful-fs-1.2.3" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; - sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364"; - }; - }; - "graceful-fs-3.0.11" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "3.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.11.tgz"; - sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818"; - }; - }; - "graceful-fs-4.1.15" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "4.1.15"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz"; - sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="; - }; - }; - "graphlib-2.1.7" = { - name = "graphlib"; - packageName = "graphlib"; - version = "2.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/graphlib/-/graphlib-2.1.7.tgz"; - sha512 = "TyI9jIy2J4j0qgPmOOrHTCtpPqJGN/aurBwc6ZT+bRii+di1I+Wv3obRhVrmBEXet+qkMaEX67dXrwsd3QQM6w=="; - }; - }; - "graphlibrary-2.2.0" = { - name = "graphlibrary"; - packageName = "graphlibrary"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/graphlibrary/-/graphlibrary-2.2.0.tgz"; - sha512 = "XTcvT55L8u4MBZrM37zXoUxsgxs/7sow7YSygd9CIwfWTVO8RVu7AYXhhCiTuFEf+APKgx6Jk4SuQbYR0vYKmQ=="; - }; - }; - "grunt-contrib-jshint-2.1.0" = { - name = "grunt-contrib-jshint"; - packageName = "grunt-contrib-jshint"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-2.1.0.tgz"; - sha512 = "65S2/C/6RfjY/umTxfwXXn+wVvaYmykHkHSsW6Q6rhkbv3oudTEgqnFFZvWzWCoHUb+3GMZLbP3oSrNyvshmIQ=="; - }; - }; - "grunt-contrib-qunit-3.1.0" = { - name = "grunt-contrib-qunit"; - packageName = "grunt-contrib-qunit"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/grunt-contrib-qunit/-/grunt-contrib-qunit-3.1.0.tgz"; - sha512 = "mdk8UltH6mxCD63E0hTXMAts42DOi4z4bBBrY7qnuHiShflMF7IueSMYe0zWaZ2dO8mgujh57Zfny2EbigJhRg=="; - }; - }; - "grunt-contrib-uglify-4.0.1" = { - name = "grunt-contrib-uglify"; - packageName = "grunt-contrib-uglify"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-4.0.1.tgz"; - sha512 = "dwf8/+4uW1+7pH72WButOEnzErPGmtUvc8p08B0eQS/6ON0WdeQu0+WFeafaPTbbY1GqtS25lsHWaDeiTQNWPg=="; - }; - }; - "gulp-3.9.1" = { - name = "gulp"; - packageName = "gulp"; - version = "3.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz"; - sha1 = "571ce45928dd40af6514fc4011866016c13845b4"; - }; - }; - "gulp-help-1.6.1" = { - name = "gulp-help"; - packageName = "gulp-help"; - version = "1.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/gulp-help/-/gulp-help-1.6.1.tgz"; - sha1 = "261db186e18397fef3f6a2c22e9c315bfa88ae0c"; - }; - }; - "gulp-util-3.0.8" = { - name = "gulp-util"; - packageName = "gulp-util"; - version = "3.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.8.tgz"; - sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; - }; - }; - "gulplog-1.0.0" = { - name = "gulplog"; - packageName = "gulplog"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; - sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5"; - }; - }; - "gzip-size-3.0.0" = { - name = "gzip-size"; - packageName = "gzip-size"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gzip-size/-/gzip-size-3.0.0.tgz"; - sha1 = "546188e9bdc337f673772f81660464b389dce520"; - }; - }; - "har-schema-1.0.5" = { - name = "har-schema"; - packageName = "har-schema"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz"; - sha1 = "d263135f43307c02c602afc8fe95970c0151369e"; - }; - }; - "har-schema-2.0.0" = { - name = "har-schema"; - packageName = "har-schema"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; - }; - }; - "har-validator-4.2.1" = { - name = "har-validator"; - packageName = "har-validator"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz"; - sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a"; - }; - }; - "har-validator-5.1.3" = { - name = "har-validator"; - packageName = "har-validator"; - version = "5.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; - sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; - }; - }; - "has-1.0.3" = { - name = "has"; - packageName = "has"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; - }; - }; - "has-ansi-2.0.0" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; - }; - }; - "has-binary2-1.0.3" = { - name = "has-binary2"; - packageName = "has-binary2"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz"; - sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw=="; - }; - }; - "has-color-0.1.7" = { - name = "has-color"; - packageName = "has-color"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; - }; - }; - "has-cors-1.1.0" = { - name = "has-cors"; - packageName = "has-cors"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"; - sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; - }; - }; - "has-flag-1.0.0" = { - name = "has-flag"; - packageName = "has-flag"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"; - sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa"; - }; - }; - "has-flag-3.0.0" = { - name = "has-flag"; - packageName = "has-flag"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; - }; - }; - "has-gulplog-0.1.0" = { - name = "has-gulplog"; - packageName = "has-gulplog"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz"; - sha1 = "6414c82913697da51590397dafb12f22967811ce"; - }; - }; - "has-symbols-1.0.0" = { - name = "has-symbols"; - packageName = "has-symbols"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz"; - sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44"; - }; - }; - "has-unicode-2.0.1" = { - name = "has-unicode"; - packageName = "has-unicode"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"; - sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; - }; - }; - "has-value-0.3.1" = { - name = "has-value"; - packageName = "has-value"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; - }; - }; - "has-value-1.0.0" = { - name = "has-value"; - packageName = "has-value"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"; - sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; - }; - }; - "has-values-0.1.4" = { - name = "has-values"; - packageName = "has-values"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; - }; - }; - "has-values-1.0.0" = { - name = "has-values"; - packageName = "has-values"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"; - sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; - }; - }; - "hash-base-3.0.4" = { - name = "hash-base"; - packageName = "hash-base"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz"; - sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918"; - }; - }; - "hasha-2.2.0" = { - name = "hasha"; - packageName = "hasha"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz"; - sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1"; - }; - }; - "hawk-3.1.3" = { - name = "hawk"; - packageName = "hawk"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; - }; - }; - "he-1.2.0" = { - name = "he"; - packageName = "he"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; - }; - }; - "helmet-crossdomain-0.3.0" = { - name = "helmet-crossdomain"; - packageName = "helmet-crossdomain"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/helmet-crossdomain/-/helmet-crossdomain-0.3.0.tgz"; - sha512 = "YiXhj0E35nC4Na5EPE4mTfoXMf9JTGpN4OtB4aLqShKuH9d2HNaJX5MQoglO6STVka0uMsHyG5lCut5Kzsy7Lg=="; - }; - }; - "helmet-csp-2.7.1" = { - name = "helmet-csp"; - packageName = "helmet-csp"; - version = "2.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.7.1.tgz"; - sha512 = "sCHwywg4daQ2mY0YYwXSZRsgcCeerUwxMwNixGA7aMLkVmPTYBl7gJoZDHOZyXkqPrtuDT3s2B1A+RLI7WxSdQ=="; - }; - }; - "hide-powered-by-1.0.0" = { - name = "hide-powered-by"; - packageName = "hide-powered-by"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hide-powered-by/-/hide-powered-by-1.0.0.tgz"; - sha1 = "4a85ad65881f62857fc70af7174a1184dccce32b"; - }; - }; - "highlight.js-9.15.8" = { - name = "highlight.js"; - packageName = "highlight.js"; - version = "9.15.8"; - src = fetchurl { - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.8.tgz"; - sha512 = "RrapkKQWwE+wKdF73VsOa2RQdIoO3mxwJ4P8mhbI6KYJUraUHRKM5w5zQQKXNk0xNL4UVRdulV9SBJcmzJNzVA=="; - }; - }; - "hoek-2.16.3" = { - name = "hoek"; - packageName = "hoek"; - version = "2.16.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; - }; - }; - "home-or-tmp-2.0.0" = { - name = "home-or-tmp"; - packageName = "home-or-tmp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; - sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; - }; - }; - "homedir-polyfill-1.0.3" = { - name = "homedir-polyfill"; - packageName = "homedir-polyfill"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; - sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="; - }; - }; - "hooker-0.2.3" = { - name = "hooker"; - packageName = "hooker"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"; - sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959"; - }; - }; - "hosted-git-info-2.7.1" = { - name = "hosted-git-info"; - packageName = "hosted-git-info"; - version = "2.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz"; - sha512 = "7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w=="; - }; - }; - "hpkp-2.0.0" = { - name = "hpkp"; - packageName = "hpkp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hpkp/-/hpkp-2.0.0.tgz"; - sha1 = "10e142264e76215a5d30c44ec43de64dee6d1672"; - }; - }; - "hsts-2.2.0" = { - name = "hsts"; - packageName = "hsts"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/hsts/-/hsts-2.2.0.tgz"; - sha512 = "ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ=="; - }; - }; - "html-comment-regex-1.1.2" = { - name = "html-comment-regex"; - packageName = "html-comment-regex"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; - sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ=="; - }; - }; - "html-encoding-sniffer-1.0.2" = { - name = "html-encoding-sniffer"; - packageName = "html-encoding-sniffer"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; - sha512 = "71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw=="; - }; - }; - "html-minifier-3.5.21" = { - name = "html-minifier"; - packageName = "html-minifier"; - version = "3.5.21"; - src = fetchurl { - url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz"; - sha512 = "LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA=="; - }; - }; - "htmlparser2-3.10.1" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "3.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz"; - sha512 = "IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ=="; - }; - }; - "htmlparser2-3.8.3" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "3.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz"; - sha1 = "996c28b191516a8be86501a7d79757e5c70c1068"; - }; - }; - "htmlparser2-3.9.2" = { - name = "htmlparser2"; - packageName = "htmlparser2"; - version = "3.9.2"; - src = fetchurl { - url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.2.tgz"; - sha1 = "1bdf87acca0f3f9e53fa4fcceb0f4b4cbb00b338"; - }; - }; - "http-errors-1.7.2" = { - name = "http-errors"; - packageName = "http-errors"; - version = "1.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; - sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; - }; - }; - "http-signature-1.1.1" = { - name = "http-signature"; - packageName = "http-signature"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; - }; - }; - "http-signature-1.2.0" = { - name = "http-signature"; - packageName = "http-signature"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; - }; - }; - "https-browserify-0.0.1" = { - name = "https-browserify"; - packageName = "https-browserify"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz"; - sha1 = "3f91365cabe60b77ed0ebba24b454e3e09d95a82"; - }; - }; - "https-proxy-agent-2.2.1" = { - name = "https-proxy-agent"; - packageName = "https-proxy-agent"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-2.2.1.tgz"; - sha512 = "HPCTS1LW51bcyMYbxUIOO4HEOlQ1/1qRaFWcyxvwaqUS9TY88aoEuHUY33kuAh1YhVVaDQhLZsnPd+XNARWZlQ=="; - }; - }; - "iconv-lite-0.4.24" = { - name = "iconv-lite"; - packageName = "iconv-lite"; - version = "0.4.24"; - src = fetchurl { - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; - }; - }; - "icss-replace-symbols-1.1.0" = { - name = "icss-replace-symbols"; - packageName = "icss-replace-symbols"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"; - sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded"; - }; - }; - "ieee754-1.1.13" = { - name = "ieee754"; - packageName = "ieee754"; - version = "1.1.13"; - src = fetchurl { - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz"; - sha512 = "4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg=="; - }; - }; - "ieee754-1.1.8" = { - name = "ieee754"; - packageName = "ieee754"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz"; - sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"; - }; - }; - "ienoopen-1.1.0" = { - name = "ienoopen"; - packageName = "ienoopen"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ienoopen/-/ienoopen-1.1.0.tgz"; - sha512 = "MFs36e/ca6ohEKtinTJ5VvAJ6oDRAYFdYXweUnGY9L9vcoqFOU4n2ZhmJ0C4z/cwGZ3YIQRSB3XZ1+ghZkY5NQ=="; - }; - }; - "iferr-0.1.5" = { - name = "iferr"; - packageName = "iferr"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz"; - sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"; - }; - }; - "ignore-3.3.10" = { - name = "ignore"; - packageName = "ignore"; - version = "3.3.10"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz"; - sha512 = "Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug=="; - }; - }; - "ignore-walk-3.0.1" = { - name = "ignore-walk"; - packageName = "ignore-walk"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz"; - sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ=="; - }; - }; - "ignorefs-1.2.0" = { - name = "ignorefs"; - packageName = "ignorefs"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ignorefs/-/ignorefs-1.2.0.tgz"; - sha1 = "da59fb858976e4a5e43702ccd1f282fdbc9e5756"; - }; - }; - "ignorepatterns-1.1.0" = { - name = "ignorepatterns"; - packageName = "ignorepatterns"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ignorepatterns/-/ignorepatterns-1.1.0.tgz"; - sha1 = "ac8f436f2239b5dfb66d5f0d3a904a87ac67cc5e"; - }; - }; - "image-size-0.5.5" = { - name = "image-size"; - packageName = "image-size"; - version = "0.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz"; - sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"; - }; - }; - "imurmurhash-0.1.4" = { - name = "imurmurhash"; - packageName = "imurmurhash"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; - }; - }; - "indexes-of-1.0.1" = { - name = "indexes-of"; - packageName = "indexes-of"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz"; - sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607"; - }; - }; - "indexof-0.0.1" = { - name = "indexof"; - packageName = "indexof"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; - sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; - }; - }; - "inflection-1.12.0" = { - name = "inflection"; - packageName = "inflection"; - version = "1.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/inflection/-/inflection-1.12.0.tgz"; - sha1 = "a200935656d6f5f6bc4dc7502e1aecb703228416"; - }; - }; - "inflight-1.0.6" = { - name = "inflight"; - packageName = "inflight"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; - }; - }; - "inherits-1.0.2" = { - name = "inherits"; - packageName = "inherits"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz"; - sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; - }; - }; - "inherits-2.0.1" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; - sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; - }; - }; - "inherits-2.0.3" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; - }; - }; - "ini-1.3.5" = { - name = "ini"; - packageName = "ini"; - version = "1.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; - sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="; - }; - }; - "inquirer-0.12.0" = { - name = "inquirer"; - packageName = "inquirer"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz"; - sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e"; - }; - }; - "interpret-0.6.6" = { - name = "interpret"; - packageName = "interpret"; - version = "0.6.6"; - src = fetchurl { - url = "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz"; - sha1 = "fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"; - }; - }; - "interpret-1.2.0" = { - name = "interpret"; - packageName = "interpret"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz"; - sha512 = "mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw=="; - }; - }; - "invariant-2.2.4" = { - name = "invariant"; - packageName = "invariant"; - version = "2.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; - sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; - }; - }; - "invert-kv-1.0.0" = { - name = "invert-kv"; - packageName = "invert-kv"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; - sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; - }; - }; - "ipaddr.js-1.9.0" = { - name = "ipaddr.js"; - packageName = "ipaddr.js"; - version = "1.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz"; - sha512 = "M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="; - }; - }; - "is-absolute-1.0.0" = { - name = "is-absolute"; - packageName = "is-absolute"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"; - sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA=="; - }; - }; - "is-absolute-url-2.1.0" = { - name = "is-absolute-url"; - packageName = "is-absolute-url"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz"; - sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"; - }; - }; - "is-accessor-descriptor-0.1.6" = { - name = "is-accessor-descriptor"; - packageName = "is-accessor-descriptor"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; - }; - }; - "is-accessor-descriptor-1.0.0" = { - name = "is-accessor-descriptor"; - packageName = "is-accessor-descriptor"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; - sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; - }; - }; - "is-alphabetical-1.0.3" = { - name = "is-alphabetical"; - packageName = "is-alphabetical"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.3.tgz"; - sha512 = "eEMa6MKpHFzw38eKm56iNNi6GJ7lf6aLLio7Kr23sJPAECscgRtZvOBYybejWDQ2bM949Y++61PY+udzj5QMLA=="; - }; - }; - "is-alphanumerical-1.0.3" = { - name = "is-alphanumerical"; - packageName = "is-alphanumerical"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.3.tgz"; - sha512 = "A1IGAPO5AW9vSh7omxIlOGwIqEvpW/TA+DksVOPM5ODuxKlZS09+TEM1E3275lJqO2oJ38vDpeAL3DCIiHE6eA=="; - }; - }; - "is-arrayish-0.2.1" = { - name = "is-arrayish"; - packageName = "is-arrayish"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; - }; - }; - "is-binary-path-1.0.1" = { - name = "is-binary-path"; - packageName = "is-binary-path"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"; - sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; - }; - }; - "is-buffer-1.1.6" = { - name = "is-buffer"; - packageName = "is-buffer"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; - }; - }; - "is-callable-1.1.4" = { - name = "is-callable"; - packageName = "is-callable"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz"; - sha512 = "r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA=="; - }; - }; - "is-data-descriptor-0.1.4" = { - name = "is-data-descriptor"; - packageName = "is-data-descriptor"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; - }; - }; - "is-data-descriptor-1.0.0" = { - name = "is-data-descriptor"; - packageName = "is-data-descriptor"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; - sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; - }; - }; - "is-date-object-1.0.1" = { - name = "is-date-object"; - packageName = "is-date-object"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz"; - sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; - }; - }; - "is-decimal-1.0.3" = { - name = "is-decimal"; - packageName = "is-decimal"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.3.tgz"; - sha512 = "bvLSwoDg2q6Gf+E2LEPiklHZxxiSi3XAh4Mav65mKqTfCO1HM3uBs24TjEH8iJX3bbDdLXKJXBTmGzuTUuAEjQ=="; - }; - }; - "is-descriptor-0.1.6" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"; - sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; - }; - }; - "is-descriptor-1.0.2" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"; - sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; - }; - }; - "is-dotfile-1.0.3" = { - name = "is-dotfile"; - packageName = "is-dotfile"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz"; - sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"; - }; - }; - "is-equal-shallow-0.1.3" = { - name = "is-equal-shallow"; - packageName = "is-equal-shallow"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; - sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534"; - }; - }; - "is-extendable-0.1.1" = { - name = "is-extendable"; - packageName = "is-extendable"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; - sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; - }; - }; - "is-extendable-1.0.1" = { - name = "is-extendable"; - packageName = "is-extendable"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"; - sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; - }; - }; - "is-extglob-1.0.0" = { - name = "is-extglob"; - packageName = "is-extglob"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; - sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; - }; - }; - "is-extglob-2.1.1" = { - name = "is-extglob"; - packageName = "is-extglob"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; - }; - }; - "is-finite-1.0.2" = { - name = "is-finite"; - packageName = "is-finite"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz"; - sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; - }; - }; - "is-fullwidth-code-point-1.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; - }; - }; - "is-fullwidth-code-point-2.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; - }; - }; - "is-glob-2.0.1" = { - name = "is-glob"; - packageName = "is-glob"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"; - sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; - }; - }; - "is-glob-3.1.0" = { - name = "is-glob"; - packageName = "is-glob"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; - sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; - }; - }; - "is-glob-4.0.1" = { - name = "is-glob"; - packageName = "is-glob"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz"; - sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg=="; - }; - }; - "is-hexadecimal-1.0.3" = { - name = "is-hexadecimal"; - packageName = "is-hexadecimal"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.3.tgz"; - sha512 = "zxQ9//Q3D/34poZf8fiy3m3XVpbQc7ren15iKqrTtLPwkPD/t3Scy9Imp63FujULGxuK0ZlCwoo5xNpktFgbOA=="; - }; - }; - "is-my-ip-valid-1.0.0" = { - name = "is-my-ip-valid"; - packageName = "is-my-ip-valid"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz"; - sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="; - }; - }; - "is-my-json-valid-2.20.0" = { - name = "is-my-json-valid"; - packageName = "is-my-json-valid"; - version = "2.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz"; - sha512 = "XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA=="; - }; - }; - "is-number-2.1.0" = { - name = "is-number"; - packageName = "is-number"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz"; - sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; - }; - }; - "is-number-3.0.0" = { - name = "is-number"; - packageName = "is-number"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"; - sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; - }; - }; - "is-number-4.0.0" = { - name = "is-number"; - packageName = "is-number"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz"; - sha512 = "rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ=="; - }; - }; - "is-plain-obj-1.1.0" = { - name = "is-plain-obj"; - packageName = "is-plain-obj"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; - sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; - }; - }; - "is-plain-object-2.0.4" = { - name = "is-plain-object"; - packageName = "is-plain-object"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; - sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; - }; - }; - "is-posix-bracket-0.1.1" = { - name = "is-posix-bracket"; - packageName = "is-posix-bracket"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; - sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; - }; - }; - "is-primitive-2.0.0" = { - name = "is-primitive"; - packageName = "is-primitive"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"; - 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-property-1.0.2" = { - name = "is-property"; - packageName = "is-property"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; - sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; - }; - }; - "is-regex-1.0.4" = { - name = "is-regex"; - packageName = "is-regex"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; - sha1 = "5517489b547091b0930e095654ced25ee97e9491"; - }; - }; - "is-relative-1.0.0" = { - name = "is-relative"; - packageName = "is-relative"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"; - sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA=="; - }; - }; - "is-resolvable-1.1.0" = { - name = "is-resolvable"; - packageName = "is-resolvable"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz"; - sha512 = "qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg=="; - }; - }; - "is-stream-1.1.0" = { - name = "is-stream"; - packageName = "is-stream"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; - }; - }; - "is-svg-2.1.0" = { - name = "is-svg"; - packageName = "is-svg"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz"; - sha1 = "cf61090da0d9efbcab8722deba6f032208dbb0e9"; - }; - }; - "is-symbol-1.0.2" = { - name = "is-symbol"; - packageName = "is-symbol"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz"; - sha512 = "HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw=="; - }; - }; - "is-typedarray-1.0.0" = { - name = "is-typedarray"; - packageName = "is-typedarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; - }; - }; - "is-unc-path-1.0.0" = { - name = "is-unc-path"; - packageName = "is-unc-path"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"; - sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="; - }; - }; - "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-whitespace-character-1.0.3" = { - name = "is-whitespace-character"; - packageName = "is-whitespace-character"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-whitespace-character/-/is-whitespace-character-1.0.3.tgz"; - sha512 = "SNPgMLz9JzPccD3nPctcj8sZlX9DAMJSKH8bP7Z6bohCwuNgX8xbWr1eTAYXX9Vpi/aSn8Y1akL9WgM3t43YNQ=="; - }; - }; - "is-windows-0.2.0" = { - name = "is-windows"; - packageName = "is-windows"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz"; - sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c"; - }; - }; - "is-windows-1.0.2" = { - name = "is-windows"; - packageName = "is-windows"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"; - sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; - }; - }; - "is-word-character-1.0.3" = { - name = "is-word-character"; - packageName = "is-word-character"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/is-word-character/-/is-word-character-1.0.3.tgz"; - sha512 = "0wfcrFgOOOBdgRNT9H33xe6Zi6yhX/uoc4U8NBZGeQQB0ctU1dnlNTyL9JM2646bHDTpsDm1Brb3VPoCIMrd/A=="; - }; - }; - "isarray-0.0.1" = { - name = "isarray"; - packageName = "isarray"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; - }; - }; - "isarray-1.0.0" = { - name = "isarray"; - packageName = "isarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; - }; - }; - "isarray-2.0.1" = { - name = "isarray"; - packageName = "isarray"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz"; - sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; - }; - }; - "isexe-2.0.0" = { - name = "isexe"; - packageName = "isexe"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; - }; - }; - "isobject-2.1.0" = { - name = "isobject"; - packageName = "isobject"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"; - sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; - }; - }; - "isobject-3.0.1" = { - name = "isobject"; - packageName = "isobject"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; - }; - }; - "isstream-0.1.2" = { - name = "isstream"; - packageName = "isstream"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; - }; - }; - "jmespath-0.15.0" = { - name = "jmespath"; - packageName = "jmespath"; - version = "0.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz"; - sha1 = "a3f222a9aae9f966f5d27c796510e28091764217"; - }; - }; - "js-base64-2.5.1" = { - name = "js-base64"; - packageName = "js-base64"; - version = "2.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz"; - sha512 = "M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw=="; - }; - }; - "js-beautify-1.10.0" = { - name = "js-beautify"; - packageName = "js-beautify"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-beautify/-/js-beautify-1.10.0.tgz"; - sha512 = "OMwf/tPDpE/BLlYKqZOhqWsd3/z2N3KOlyn1wsCRGFwViE8LOQTcDtathQvHvZc+q+zWmcNAbwKSC+iJoMaH2Q=="; - }; - }; - "js-string-escape-1.0.1" = { - name = "js-string-escape"; - packageName = "js-string-escape"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.1.tgz"; - sha1 = "e2625badbc0d67c7533e9edc1068c587ae4137ef"; - }; - }; - "js-tokens-3.0.2" = { - name = "js-tokens"; - packageName = "js-tokens"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz"; - sha1 = "9866df395102130e38f7f996bceb65443209c25b"; - }; - }; - "js-yaml-3.13.1" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; - }; - }; - "js-yaml-3.5.5" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"; - sha1 = "0377c38017cabc7322b0d1fbcd25a491641f2fbe"; - }; - }; - "js-yaml-3.7.0" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz"; - sha1 = "5c967ddd837a9bfdca5f2de84253abe8a1c03b80"; - }; - }; - "jsbn-0.1.1" = { - name = "jsbn"; - packageName = "jsbn"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; - }; - }; - "jsdom-9.12.0" = { - name = "jsdom"; - packageName = "jsdom"; - version = "9.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsdom/-/jsdom-9.12.0.tgz"; - sha1 = "e8c546fffcb06c00d4833ca84410fed7f8a097d4"; - }; - }; - "jsesc-0.5.0" = { - name = "jsesc"; - packageName = "jsesc"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; - sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; - }; - }; - "jsesc-1.3.0" = { - name = "jsesc"; - packageName = "jsesc"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-1.3.0.tgz"; - sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; - }; - }; - "jshint-2.10.2" = { - name = "jshint"; - packageName = "jshint"; - version = "2.10.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jshint/-/jshint-2.10.2.tgz"; - sha512 = "e7KZgCSXMJxznE/4WULzybCMNXNAd/bf5TSrvVEq78Q/K8ZwFpmBqQeDtNiHc3l49nV4E/+YeHU/JZjSUIrLAA=="; - }; - }; - "json-edm-parser-0.1.2" = { - name = "json-edm-parser"; - packageName = "json-edm-parser"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz"; - sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4"; - }; - }; - "json-parse-better-errors-1.0.2" = { - name = "json-parse-better-errors"; - packageName = "json-parse-better-errors"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; - sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="; - }; - }; - "json-schema-0.2.3" = { - name = "json-schema"; - packageName = "json-schema"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; - }; - }; - "json-schema-traverse-0.4.1" = { - name = "json-schema-traverse"; - packageName = "json-schema-traverse"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; - }; - }; - "json-stable-stringify-1.0.1" = { - name = "json-stable-stringify"; - packageName = "json-stable-stringify"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; - sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; - }; - }; - "json-stream-1.0.0" = { - name = "json-stream"; - packageName = "json-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/json-stream/-/json-stream-1.0.0.tgz"; - sha1 = "1a3854e28d2bbeeab31cc7ddf683d2ddc5652708"; - }; - }; - "json-stringify-safe-5.0.1" = { - name = "json-stringify-safe"; - packageName = "json-stringify-safe"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; - }; - }; - "json5-0.5.1" = { - name = "json5"; - packageName = "json5"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz"; - sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; - }; - }; - "json5-1.0.1" = { - name = "json5"; - packageName = "json5"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; - }; - }; - "jsonfile-2.4.0" = { - name = "jsonfile"; - packageName = "jsonfile"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.4.0.tgz"; - sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"; - }; - }; - "jsonfile-4.0.0" = { - name = "jsonfile"; - packageName = "jsonfile"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; - }; - }; - "jsonify-0.0.0" = { - name = "jsonify"; - packageName = "jsonify"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; - sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; - }; - }; - "jsonparse-1.2.0" = { - name = "jsonparse"; - packageName = "jsonparse"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz"; - sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd"; - }; - }; - "jsonpointer-4.0.1" = { - name = "jsonpointer"; - packageName = "jsonpointer"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; - sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; - }; - }; - "jsprim-1.4.1" = { - name = "jsprim"; - packageName = "jsprim"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; - }; - }; - "jsx-ast-utils-1.4.1" = { - name = "jsx-ast-utils"; - packageName = "jsx-ast-utils"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-1.4.1.tgz"; - sha1 = "3867213e8dd79bf1e8f2300c0cfc1efb182c0df1"; - }; - }; - "kew-0.7.0" = { - name = "kew"; - packageName = "kew"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; - sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; - }; - }; - "kind-of-3.2.2" = { - name = "kind-of"; - packageName = "kind-of"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; - }; - }; - "kind-of-4.0.0" = { - name = "kind-of"; - packageName = "kind-of"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"; - sha1 = "20813df3d712928b207378691a45066fae72dd57"; - }; - }; - "kind-of-5.1.0" = { - name = "kind-of"; - packageName = "kind-of"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"; - sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; - }; - }; - "kind-of-6.0.2" = { - name = "kind-of"; - packageName = "kind-of"; - version = "6.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz"; - sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="; - }; - }; - "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"; - }; - }; - "lazy-cache-1.0.4" = { - name = "lazy-cache"; - packageName = "lazy-cache"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; - sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; - }; - }; - "lazystream-1.0.0" = { - name = "lazystream"; - packageName = "lazystream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz"; - sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; - }; - }; - "lcid-1.0.0" = { - name = "lcid"; - packageName = "lcid"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; - sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; - }; - }; - "ldap-filter-0.2.2" = { - name = "ldap-filter"; - packageName = "ldap-filter"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; - sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; - }; - }; - "ldapauth-fork-4.2.0" = { - name = "ldapauth-fork"; - packageName = "ldapauth-fork"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapauth-fork/-/ldapauth-fork-4.2.0.tgz"; - sha512 = "DFYhOO9UPX/fIUnwAjJ4zCq2osR3pyS9TK24oBRLHj7+iw9OAbckHLcdDkgI//IajUEsF6Ngz0uXod6A88L2HA=="; - }; - }; - "ldapjs-1.0.2" = { - name = "ldapjs"; - packageName = "ldapjs"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapjs/-/ldapjs-1.0.2.tgz"; - sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; - }; - }; - "levn-0.3.0" = { - name = "levn"; - packageName = "levn"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"; - sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; - }; - }; - "liftoff-2.5.0" = { - name = "liftoff"; - packageName = "liftoff"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz"; - sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec"; - }; - }; - "linkify-it-2.1.0" = { - name = "linkify-it"; - packageName = "linkify-it"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/linkify-it/-/linkify-it-2.1.0.tgz"; - sha512 = "4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg=="; - }; - }; - "load-json-file-2.0.0" = { - name = "load-json-file"; - packageName = "load-json-file"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz"; - sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; - }; - }; - "load-json-file-4.0.0" = { - name = "load-json-file"; - packageName = "load-json-file"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"; - sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; - }; - }; - "loader-utils-0.2.17" = { - name = "loader-utils"; - packageName = "loader-utils"; - version = "0.2.17"; - src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz"; - sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348"; - }; - }; - "loader-utils-1.2.3" = { - name = "loader-utils"; - packageName = "loader-utils"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz"; - sha512 = "fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA=="; - }; - }; - "locate-path-2.0.0" = { - name = "locate-path"; - packageName = "locate-path"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"; - sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; - }; - }; - "lodash-1.0.2" = { - name = "lodash"; - packageName = "lodash"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"; - sha1 = "8f57560c83b59fc270bd3d561b690043430e2551"; - }; - }; - "lodash-4.17.11" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.11"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; - }; - }; - "lodash._basecopy-3.0.1" = { - name = "lodash._basecopy"; - packageName = "lodash._basecopy"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; - sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"; - }; - }; - "lodash._basetostring-3.0.1" = { - name = "lodash._basetostring"; - packageName = "lodash._basetostring"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; - sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5"; - }; - }; - "lodash._basevalues-3.0.0" = { - name = "lodash._basevalues"; - packageName = "lodash._basevalues"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; - sha1 = "5b775762802bde3d3297503e26300820fdf661b7"; - }; - }; - "lodash._getnative-3.9.1" = { - name = "lodash._getnative"; - packageName = "lodash._getnative"; - version = "3.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; - sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5"; - }; - }; - "lodash._isiterateecall-3.0.9" = { - name = "lodash._isiterateecall"; - packageName = "lodash._isiterateecall"; - version = "3.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; - sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; - }; - }; - "lodash._reescape-3.0.0" = { - name = "lodash._reescape"; - packageName = "lodash._reescape"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; - sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"; - }; - }; - "lodash._reevaluate-3.0.0" = { - name = "lodash._reevaluate"; - packageName = "lodash._reevaluate"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; - sha1 = "58bc74c40664953ae0b124d806996daca431e2ed"; - }; - }; - "lodash._reinterpolate-3.0.0" = { - name = "lodash._reinterpolate"; - packageName = "lodash._reinterpolate"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; - sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; - }; - }; - "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.assignin-4.2.0" = { - name = "lodash.assignin"; - packageName = "lodash.assignin"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.assignin/-/lodash.assignin-4.2.0.tgz"; - sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"; - }; - }; - "lodash.bind-4.2.1" = { - name = "lodash.bind"; - packageName = "lodash.bind"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.bind/-/lodash.bind-4.2.1.tgz"; - sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35"; - }; - }; - "lodash.camelcase-4.3.0" = { - name = "lodash.camelcase"; - packageName = "lodash.camelcase"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"; - sha1 = "b28aa6288a2b9fc651035c7711f65ab6190331a6"; - }; - }; - "lodash.defaults-4.2.0" = { - name = "lodash.defaults"; - packageName = "lodash.defaults"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; - sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; - }; - }; - "lodash.escape-3.2.0" = { - name = "lodash.escape"; - packageName = "lodash.escape"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz"; - sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; - }; - }; - "lodash.filter-4.6.0" = { - name = "lodash.filter"; - packageName = "lodash.filter"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.filter/-/lodash.filter-4.6.0.tgz"; - sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace"; - }; - }; - "lodash.flatten-4.4.0" = { - name = "lodash.flatten"; - packageName = "lodash.flatten"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; - sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; - }; - }; - "lodash.foreach-4.5.0" = { - name = "lodash.foreach"; - packageName = "lodash.foreach"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; - sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; - }; - }; - "lodash.isarguments-3.1.0" = { - name = "lodash.isarguments"; - packageName = "lodash.isarguments"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz"; - sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a"; - }; - }; - "lodash.isarray-3.0.4" = { - name = "lodash.isarray"; - packageName = "lodash.isarray"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz"; - sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55"; - }; - }; - "lodash.keys-3.1.2" = { - name = "lodash.keys"; - packageName = "lodash.keys"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz"; - sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; - }; - }; - "lodash.map-4.6.0" = { - name = "lodash.map"; - packageName = "lodash.map"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; - sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; - }; - }; - "lodash.memoize-4.1.2" = { - name = "lodash.memoize"; - packageName = "lodash.memoize"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; - sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; - }; - }; - "lodash.merge-4.6.1" = { - name = "lodash.merge"; - packageName = "lodash.merge"; - version = "4.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz"; - sha512 = "AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ=="; - }; - }; - "lodash.pick-4.4.0" = { - name = "lodash.pick"; - packageName = "lodash.pick"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz"; - sha1 = "52f05610fff9ded422611441ed1fc123a03001b3"; - }; - }; - "lodash.reduce-4.6.0" = { - name = "lodash.reduce"; - packageName = "lodash.reduce"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; - sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; - }; - }; - "lodash.reject-4.6.0" = { - name = "lodash.reject"; - packageName = "lodash.reject"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.reject/-/lodash.reject-4.6.0.tgz"; - sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; - }; - }; - "lodash.restparam-3.6.1" = { - name = "lodash.restparam"; - packageName = "lodash.restparam"; - version = "3.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz"; - sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805"; - }; - }; - "lodash.some-4.6.0" = { - name = "lodash.some"; - packageName = "lodash.some"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz"; - sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d"; - }; - }; - "lodash.template-3.6.2" = { - name = "lodash.template"; - packageName = "lodash.template"; - version = "3.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz"; - sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f"; - }; - }; - "lodash.templatesettings-3.1.1" = { - name = "lodash.templatesettings"; - packageName = "lodash.templatesettings"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; - sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5"; - }; - }; - "lodash.uniq-4.5.0" = { - name = "lodash.uniq"; - packageName = "lodash.uniq"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; - sha1 = "d0225373aeb652adc1bc82e4945339a842754773"; - }; - }; - "longest-1.0.1" = { - name = "longest"; - packageName = "longest"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; - }; - }; - "loose-envify-1.4.0" = { - name = "loose-envify"; - packageName = "loose-envify"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; - }; - }; - "lower-case-1.1.4" = { - name = "lower-case"; - packageName = "lower-case"; - version = "1.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz"; - sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"; - }; - }; - "lru-cache-2.7.3" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "2.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; - sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; - }; - }; - "lru-cache-4.1.5" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "4.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; - }; - }; - "lru-cache-5.1.1" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; - sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; - }; - }; - "lru-queue-0.1.0" = { - name = "lru-queue"; - packageName = "lru-queue"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz"; - sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3"; - }; - }; - "magic-string-0.25.2" = { - name = "magic-string"; - packageName = "magic-string"; - version = "0.25.2"; - src = fetchurl { - url = "https://registry.npmjs.org/magic-string/-/magic-string-0.25.2.tgz"; - sha512 = "iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg=="; - }; - }; - "make-dir-1.3.0" = { - name = "make-dir"; - packageName = "make-dir"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"; - sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ=="; - }; - }; - "make-iterator-1.0.1" = { - name = "make-iterator"; - packageName = "make-iterator"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"; - sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; - }; - }; - "make-plural-3.0.6" = { - name = "make-plural"; - packageName = "make-plural"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/make-plural/-/make-plural-3.0.6.tgz"; - sha1 = "2033a03bac290b8f3bb91258f65b9df7e8b01ca7"; - }; - }; - "map-cache-0.2.2" = { - name = "map-cache"; - packageName = "map-cache"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; - }; - }; - "map-visit-1.0.0" = { - name = "map-visit"; - packageName = "map-visit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; - sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; - }; - }; - "markdown-escapes-1.0.3" = { - name = "markdown-escapes"; - packageName = "markdown-escapes"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-escapes/-/markdown-escapes-1.0.3.tgz"; - sha512 = "XUi5HJhhV5R74k8/0H2oCbCiYf/u4cO/rX8tnGkRvrqhsr5BRNU6Mg0yt/8UIx1iIS8220BNJsDb7XnILhLepw=="; - }; - }; - "marked-0.3.19" = { - name = "marked"; - packageName = "marked"; - version = "0.3.19"; - src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz"; - sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; - }; - }; - "math-expression-evaluator-1.2.17" = { - name = "math-expression-evaluator"; - packageName = "math-expression-evaluator"; - version = "1.2.17"; - src = fetchurl { - url = "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz"; - sha1 = "de819fdbcd84dccd8fae59c6aeb79615b9d266ac"; - }; - }; - "math-interval-parser-1.1.0" = { - name = "math-interval-parser"; - packageName = "math-interval-parser"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/math-interval-parser/-/math-interval-parser-1.1.0.tgz"; - sha1 = "dbeda5b06b3249973c6df6170fde2386f0afd893"; - }; - }; - "math-random-1.0.4" = { - name = "math-random"; - packageName = "math-random"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz"; - sha512 = "rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A=="; - }; - }; - "maxmin-2.1.0" = { - name = "maxmin"; - packageName = "maxmin"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/maxmin/-/maxmin-2.1.0.tgz"; - sha1 = "4d3b220903d95eee7eb7ac7fa864e72dc09a3166"; - }; - }; - "md5.js-1.3.4" = { - name = "md5.js"; - packageName = "md5.js"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz"; - sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; - }; - }; - "mdurl-1.0.1" = { - name = "mdurl"; - packageName = "mdurl"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz"; - sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e"; - }; - }; - "media-typer-0.3.0" = { - name = "media-typer"; - packageName = "media-typer"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; - sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; - }; - }; - "mem-1.1.0" = { - name = "mem"; - packageName = "mem"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mem/-/mem-1.1.0.tgz"; - sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; - }; - }; - "memoizee-0.4.14" = { - name = "memoizee"; - packageName = "memoizee"; - version = "0.4.14"; - src = fetchurl { - url = "https://registry.npmjs.org/memoizee/-/memoizee-0.4.14.tgz"; - sha512 = "/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg=="; - }; - }; - "memory-fs-0.2.0" = { - name = "memory-fs"; - packageName = "memory-fs"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz"; - sha1 = "f2bb25368bc121e391c2520de92969caee0a0290"; - }; - }; - "memory-fs-0.3.0" = { - name = "memory-fs"; - packageName = "memory-fs"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz"; - sha1 = "7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20"; - }; - }; - "merge-descriptors-1.0.1" = { - name = "merge-descriptors"; - packageName = "merge-descriptors"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; - sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; - }; - }; - "messageformat-0.3.1" = { - name = "messageformat"; - packageName = "messageformat"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/messageformat/-/messageformat-0.3.1.tgz"; - sha1 = "e58fff8245e9b3971799e5b43db58b3e9417f5a2"; - }; - }; - "methods-1.1.2" = { - name = "methods"; - packageName = "methods"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; - sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; - }; - }; - "micromatch-2.3.11" = { - name = "micromatch"; - packageName = "micromatch"; - version = "2.3.11"; - src = fetchurl { - url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz"; - sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; - }; - }; - "micromatch-3.1.10" = { - name = "micromatch"; - packageName = "micromatch"; - version = "3.1.10"; - src = fetchurl { - url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"; - sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; - }; - }; - "mime-1.3.4" = { - name = "mime"; - packageName = "mime"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; - sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53"; - }; - }; - "mime-1.3.6" = { - name = "mime"; - packageName = "mime"; - version = "1.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz"; - sha1 = "591d84d3653a6b0b4a3b9df8de5aa8108e72e5e0"; - }; - }; - "mime-1.6.0" = { - name = "mime"; - packageName = "mime"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; - sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; - }; - }; - "mime-2.4.3" = { - name = "mime"; - packageName = "mime"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-2.4.3.tgz"; - sha512 = "QgrPRJfE+riq5TPZMcHZOtm8c6K/yYrMbKIoRfapfiGLxS8OTeIfRhUGW5LU7MlRa52KOAGCfUNruqLrIBvWZw=="; - }; - }; - "mime-db-1.40.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.40.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz"; - sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="; - }; - }; - "mime-types-2.1.24" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.24"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz"; - sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; - }; - }; - "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 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="; - }; - }; - "minimatch-0.2.14" = { - name = "minimatch"; - packageName = "minimatch"; - version = "0.2.14"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz"; - sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a"; - }; - }; - "minimatch-2.0.10" = { - name = "minimatch"; - packageName = "minimatch"; - version = "2.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz"; - sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"; - }; - }; - "minimatch-3.0.4" = { - name = "minimatch"; - packageName = "minimatch"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; - }; - }; - "minimist-0.0.10" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; - sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; - }; - }; - "minimist-0.0.8" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; - }; - }; - "minimist-1.2.0" = { - name = "minimist"; - packageName = "minimist"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; - }; - }; - "minipass-2.3.5" = { - name = "minipass"; - packageName = "minipass"; - version = "2.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz"; - sha512 = "Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA=="; - }; - }; - "minizlib-1.2.1" = { - name = "minizlib"; - packageName = "minizlib"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz"; - sha512 = "7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA=="; - }; - }; - "mississippi-2.0.0" = { - name = "mississippi"; - packageName = "mississippi"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mississippi/-/mississippi-2.0.0.tgz"; - sha512 = "zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw=="; - }; - }; - "mixin-deep-1.3.1" = { - name = "mixin-deep"; - packageName = "mixin-deep"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz"; - sha512 = "8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ=="; - }; - }; - "mkdirp-0.5.1" = { - name = "mkdirp"; - packageName = "mkdirp"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; - }; - }; - "moment-2.24.0" = { - name = "moment"; - packageName = "moment"; - version = "2.24.0"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; - sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; - }; - }; - "moment-timezone-0.5.25" = { - name = "moment-timezone"; - packageName = "moment-timezone"; - version = "0.5.25"; - src = fetchurl { - url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.25.tgz"; - sha512 = "DgEaTyN/z0HFaVcVbSyVCUU6HeFdnNC3vE4c9cgu2dgMTvjBUBdBzWfasTBmAW45u5OIMeCJtU8yNjM22DHucw=="; - }; - }; - "move-concurrently-1.0.1" = { - name = "move-concurrently"; - packageName = "move-concurrently"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz"; - sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; - }; - }; - "ms-2.0.0" = { - name = "ms"; - packageName = "ms"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; - }; - }; - "ms-2.1.1" = { - name = "ms"; - packageName = "ms"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; - sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; - }; - }; - "multipipe-0.1.2" = { - name = "multipipe"; - packageName = "multipipe"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; - sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; - }; - }; - "mustache-3.0.1" = { - name = "mustache"; - packageName = "mustache"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mustache/-/mustache-3.0.1.tgz"; - sha512 = "jFI/4UVRsRYdUbuDTKT7KzfOp7FiD5WzYmmwNwXyUVypC0xjoTL78Fqc0jHUPIvvGD+6DQSPHIt1NE7D1ArsqA=="; - }; - }; - "mute-stream-0.0.5" = { - name = "mute-stream"; - packageName = "mute-stream"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz"; - sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0"; - }; - }; - "mv-2.1.1" = { - name = "mv"; - packageName = "mv"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; - sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; - }; - }; - "nan-2.14.0" = { - name = "nan"; - packageName = "nan"; - version = "2.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz"; - sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg=="; - }; - }; - "nanomatch-1.2.13" = { - name = "nanomatch"; - packageName = "nanomatch"; - version = "1.2.13"; - src = fetchurl { - url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"; - sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; - }; - }; - "natives-1.1.6" = { - name = "natives"; - packageName = "natives"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/natives/-/natives-1.1.6.tgz"; - sha512 = "6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA=="; - }; - }; - "natural-compare-1.4.0" = { - name = "natural-compare"; - packageName = "natural-compare"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"; - sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; - }; - }; - "ncp-2.0.0" = { - name = "ncp"; - packageName = "ncp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; - sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; - }; - }; - "needle-2.4.0" = { - name = "needle"; - packageName = "needle"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz"; - sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg=="; - }; - }; - "negotiator-0.6.2" = { - name = "negotiator"; - packageName = "negotiator"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; - }; - }; - "neo-async-2.6.1" = { - name = "neo-async"; - packageName = "neo-async"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz"; - sha512 = "iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw=="; - }; - }; - "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"; - }; - }; - "no-case-2.3.2" = { - name = "no-case"; - packageName = "no-case"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz"; - sha512 = "rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ=="; - }; - }; - "nocache-2.1.0" = { - name = "nocache"; - packageName = "nocache"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz"; - sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q=="; - }; - }; - "node-forge-0.7.6" = { - name = "node-forge"; - packageName = "node-forge"; - version = "0.7.6"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz"; - sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw=="; - }; - }; - "node-libs-browser-0.7.0" = { - name = "node-libs-browser"; - packageName = "node-libs-browser"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.7.0.tgz"; - sha1 = "3e272c0819e308935e26674408d7af0e1491b83b"; - }; - }; - "node-pre-gyp-0.11.0" = { - name = "node-pre-gyp"; - packageName = "node-pre-gyp"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz"; - sha512 = "TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q=="; - }; - }; - "node-static-0.7.11" = { - name = "node-static"; - packageName = "node-static"; - version = "0.7.11"; - src = fetchurl { - url = "https://registry.npmjs.org/node-static/-/node-static-0.7.11.tgz"; - sha512 = "zfWC/gICcqb74D9ndyvxZWaI1jzcoHmf4UTHWQchBNuNMxdBLJMDiUgZ1tjGLEIe/BMhj2DxKD8HOuc2062pDQ=="; - }; - }; - "nomnom-1.8.1" = { - name = "nomnom"; - packageName = "nomnom"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; - sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; - }; - }; - "nopt-3.0.6" = { - name = "nopt"; - packageName = "nopt"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; - sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; - }; - }; - "nopt-4.0.1" = { - name = "nopt"; - packageName = "nopt"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz"; - sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d"; - }; - }; - "normalize-package-data-2.5.0" = { - name = "normalize-package-data"; - packageName = "normalize-package-data"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; - sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; - }; - }; - "normalize-path-2.1.1" = { - name = "normalize-path"; - packageName = "normalize-path"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; - sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; - }; - }; - "normalize-range-0.1.2" = { - name = "normalize-range"; - packageName = "normalize-range"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz"; - sha1 = "2d10c06bdfd312ea9777695a4d28439456b75942"; - }; - }; - "normalize-url-1.9.1" = { - name = "normalize-url"; - packageName = "normalize-url"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz"; - sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c"; - }; - }; - "npm-bundled-1.0.6" = { - name = "npm-bundled"; - packageName = "npm-bundled"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz"; - sha512 = "8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g=="; - }; - }; - "npm-packlist-1.4.1" = { - name = "npm-packlist"; - packageName = "npm-packlist"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.1.tgz"; - sha512 = "+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw=="; - }; - }; - "npm-run-path-2.0.2" = { - name = "npm-run-path"; - packageName = "npm-run-path"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; - }; - }; - "npmlog-4.1.2" = { - name = "npmlog"; - packageName = "npmlog"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; - sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; - }; - }; - "nth-check-1.0.2" = { - name = "nth-check"; - packageName = "nth-check"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz"; - sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; - }; - }; - "num2fraction-1.2.2" = { - name = "num2fraction"; - packageName = "num2fraction"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz"; - sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"; - }; - }; - "number-is-nan-1.0.1" = { - name = "number-is-nan"; - packageName = "number-is-nan"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; - sha1 = "097b602b53422a522c1afb8790318336941a011d"; - }; - }; - "nwmatcher-1.3.9" = { - name = "nwmatcher"; - packageName = "nwmatcher"; - version = "1.3.9"; - src = fetchurl { - url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.9.tgz"; - sha1 = "8bab486ff7fa3dfd086656bbe8b17116d3692d2a"; - }; - }; - "nwmatcher-1.4.4" = { - name = "nwmatcher"; - packageName = "nwmatcher"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz"; - sha512 = "3iuY4N5dhgMpCUrOVnuAdGrgxVqV2cJpM+XNccjR2DKOB1RUP0aA+wGXEiNziG/UKboFyGBIoKOaNlJxx8bciQ=="; - }; - }; - "oauth-0.9.15" = { - name = "oauth"; - packageName = "oauth"; - version = "0.9.15"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz"; - sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1"; - }; - }; - "oauth-sign-0.8.2" = { - name = "oauth-sign"; - packageName = "oauth-sign"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz"; - sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; - }; - }; - "oauth-sign-0.9.0" = { - name = "oauth-sign"; - packageName = "oauth-sign"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; - sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; - }; - }; - "object-assign-3.0.0" = { - name = "object-assign"; - packageName = "object-assign"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"; - sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2"; - }; - }; - "object-assign-4.1.0" = { - name = "object-assign"; - packageName = "object-assign"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz"; - sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"; - }; - }; - "object-assign-4.1.1" = { - name = "object-assign"; - packageName = "object-assign"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; - }; - }; - "object-component-0.0.3" = { - name = "object-component"; - packageName = "object-component"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; - sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; - }; - }; - "object-copy-0.1.0" = { - name = "object-copy"; - packageName = "object-copy"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; - }; - }; - "object-keys-1.1.1" = { - name = "object-keys"; - packageName = "object-keys"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; - }; - }; - "object-visit-1.0.1" = { - name = "object-visit"; - packageName = "object-visit"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"; - sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; - }; - }; - "object.defaults-1.1.0" = { - name = "object.defaults"; - packageName = "object.defaults"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"; - sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf"; - }; - }; - "object.map-1.0.1" = { - name = "object.map"; - packageName = "object.map"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"; - sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"; - }; - }; - "object.omit-2.0.1" = { - name = "object.omit"; - packageName = "object.omit"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz"; - sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; - }; - }; - "object.pick-1.3.0" = { - name = "object.pick"; - packageName = "object.pick"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; - sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; - }; - }; - "on-finished-2.3.0" = { - name = "on-finished"; - packageName = "on-finished"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; - sha1 = "20f1336481b083cd75337992a16971aa2d906947"; - }; - }; - "on-headers-1.0.2" = { - name = "on-headers"; - packageName = "on-headers"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"; - sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; - }; - }; - "once-1.3.3" = { - name = "once"; - packageName = "once"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz"; - sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; - }; - }; - "once-1.4.0" = { - name = "once"; - packageName = "once"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; - }; - }; - "onetime-1.1.0" = { - name = "onetime"; - packageName = "onetime"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; - sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; - }; - }; - "optimist-0.6.1" = { - name = "optimist"; - packageName = "optimist"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz"; - sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; - }; - }; - "optionator-0.8.2" = { - name = "optionator"; - packageName = "optionator"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz"; - sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; - }; - }; - "orchestrator-0.3.8" = { - name = "orchestrator"; - packageName = "orchestrator"; - version = "0.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.8.tgz"; - sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e"; - }; - }; - "ordered-read-streams-0.1.0" = { - name = "ordered-read-streams"; - packageName = "ordered-read-streams"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz"; - sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126"; - }; - }; - "os-browserify-0.2.1" = { - name = "os-browserify"; - packageName = "os-browserify"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz"; - sha1 = "63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"; - }; - }; - "os-homedir-1.0.2" = { - name = "os-homedir"; - packageName = "os-homedir"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; - }; - }; - "os-locale-2.1.0" = { - name = "os-locale"; - packageName = "os-locale"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-2.1.0.tgz"; - sha512 = "3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA=="; - }; - }; - "os-tmpdir-1.0.2" = { - name = "os-tmpdir"; - packageName = "os-tmpdir"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; - }; - }; - "osenv-0.1.5" = { - name = "osenv"; - packageName = "osenv"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz"; - sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; - }; - }; - "output-file-sync-1.1.2" = { - name = "output-file-sync"; - packageName = "output-file-sync"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.2.tgz"; - sha1 = "d0a33eefe61a205facb90092e826598d5245ce76"; - }; - }; - "p-each-series-1.0.0" = { - name = "p-each-series"; - packageName = "p-each-series"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz"; - sha1 = "930f3d12dd1f50e7434457a22cd6f04ac6ad7f71"; - }; - }; - "p-finally-1.0.0" = { - name = "p-finally"; - packageName = "p-finally"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; - sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; - }; - }; - "p-limit-1.3.0" = { - name = "p-limit"; - packageName = "p-limit"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"; - sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="; - }; - }; - "p-locate-2.0.0" = { - name = "p-locate"; - packageName = "p-locate"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"; - sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; - }; - }; - "p-reduce-1.0.0" = { - name = "p-reduce"; - packageName = "p-reduce"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz"; - sha1 = "18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"; - }; - }; - "p-try-1.0.0" = { - name = "p-try"; - packageName = "p-try"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"; - sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; - }; - }; - "packet-reader-0.3.1" = { - name = "packet-reader"; - packageName = "packet-reader"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/packet-reader/-/packet-reader-0.3.1.tgz"; - sha1 = "cd62e60af8d7fea8a705ec4ff990871c46871f27"; - }; - }; - "pako-0.2.9" = { - name = "pako"; - packageName = "pako"; - version = "0.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz"; - sha1 = "f3f7522f4ef782348da8161bad9ecfd51bf83a75"; - }; - }; - "parallel-transform-1.1.0" = { - name = "parallel-transform"; - packageName = "parallel-transform"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz"; - sha1 = "d410f065b05da23081fcd10f28854c29bda33b06"; - }; - }; - "param-case-2.1.1" = { - name = "param-case"; - packageName = "param-case"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz"; - sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247"; - }; - }; - "parse-entities-1.2.2" = { - name = "parse-entities"; - packageName = "parse-entities"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-entities/-/parse-entities-1.2.2.tgz"; - sha512 = "NzfpbxW/NPrzZ/yYSoQxyqUZMZXIdCfE0OIN4ESsnptHJECoUk3FZktxNuzQf4tjt5UEopnxpYJbvYuxIFDdsg=="; - }; - }; - "parse-filepath-1.0.2" = { - name = "parse-filepath"; - packageName = "parse-filepath"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"; - sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891"; - }; - }; - "parse-glob-3.0.4" = { - name = "parse-glob"; - packageName = "parse-glob"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz"; - sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; - }; - }; - "parse-json-2.2.0" = { - name = "parse-json"; - packageName = "parse-json"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; - }; - }; - "parse-json-4.0.0" = { - name = "parse-json"; - packageName = "parse-json"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"; - sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; - }; - }; - "parse-node-version-1.0.1" = { - name = "parse-node-version"; - packageName = "parse-node-version"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz"; - sha512 = "3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA=="; - }; - }; - "parse-passwd-1.0.0" = { - name = "parse-passwd"; - packageName = "parse-passwd"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; - sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; - }; - }; - "parse5-1.5.1" = { - name = "parse5"; - packageName = "parse5"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz"; - sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"; - }; - }; - "parseqs-0.0.5" = { - name = "parseqs"; - packageName = "parseqs"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"; - sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; - }; - }; - "parseuri-0.0.5" = { - name = "parseuri"; - packageName = "parseuri"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"; - sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; - }; - }; - "parseurl-1.3.3" = { - name = "parseurl"; - packageName = "parseurl"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; - }; - }; - "pascalcase-0.1.1" = { - name = "pascalcase"; - packageName = "pascalcase"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; - }; - }; - "passport-oauth-1.0.0" = { - name = "passport-oauth"; - packageName = "passport-oauth"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth/-/passport-oauth-1.0.0.tgz"; - sha1 = "90aff63387540f02089af28cdad39ea7f80d77df"; - }; - }; - "passport-oauth1-1.1.0" = { - name = "passport-oauth1"; - packageName = "passport-oauth1"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth1/-/passport-oauth1-1.1.0.tgz"; - sha1 = "a7de988a211f9cf4687377130ea74df32730c918"; - }; - }; - "passport-oauth2-1.5.0" = { - name = "passport-oauth2"; - packageName = "passport-oauth2"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.5.0.tgz"; - sha512 = "kqBt6vR/5VlCK8iCx1/KpY42kQ+NEHZwsSyt4Y6STiNjU+wWICG1i8ucc1FapXDGO15C5O5VZz7+7vRzrDPXXQ=="; - }; - }; - "passport-strategy-1.0.0" = { - name = "passport-strategy"; - packageName = "passport-strategy"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"; - sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4"; - }; - }; - "path-browserify-0.0.0" = { - name = "path-browserify"; - packageName = "path-browserify"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz"; - sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; - }; - }; - "path-exists-2.1.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; - sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; - }; - }; - "path-exists-3.0.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; - }; - }; - "path-is-absolute-1.0.1" = { - name = "path-is-absolute"; - packageName = "path-is-absolute"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; - }; - }; - "path-is-inside-1.0.2" = { - name = "path-is-inside"; - packageName = "path-is-inside"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; - }; - }; - "path-key-2.0.1" = { - name = "path-key"; - packageName = "path-key"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; - }; - }; - "path-parse-1.0.6" = { - name = "path-parse"; - packageName = "path-parse"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; - }; - }; - "path-root-0.1.1" = { - name = "path-root"; - packageName = "path-root"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"; - sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7"; - }; - }; - "path-root-regex-0.1.2" = { - name = "path-root-regex"; - packageName = "path-root-regex"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"; - sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"; - }; - }; - "path-to-regexp-0.1.7" = { - name = "path-to-regexp"; - packageName = "path-to-regexp"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; - sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; - }; - }; - "path-type-2.0.0" = { - name = "path-type"; - packageName = "path-type"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz"; - sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; - }; - }; - "path-type-3.0.0" = { - name = "path-type"; - packageName = "path-type"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"; - sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg=="; - }; - }; - "pause-0.0.1" = { - name = "pause"; - packageName = "pause"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; - sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; - }; - }; - "pbkdf2-compat-2.0.1" = { - name = "pbkdf2-compat"; - packageName = "pbkdf2-compat"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz"; - sha1 = "b6e0c8fa99494d94e0511575802a59a5c142f288"; - }; - }; - "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-0.2.0" = { - name = "performance-now"; - packageName = "performance-now"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz"; - sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5"; - }; - }; - "performance-now-2.1.0" = { - name = "performance-now"; - packageName = "performance-now"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; - sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; - }; - }; - "pg-connection-string-0.1.3" = { - name = "pg-connection-string"; - packageName = "pg-connection-string"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-0.1.3.tgz"; - sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7"; - }; - }; - "pg-int8-1.0.1" = { - name = "pg-int8"; - packageName = "pg-int8"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-int8/-/pg-int8-1.0.1.tgz"; - sha512 = "WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw=="; - }; - }; - "pg-pool-1.8.0" = { - name = "pg-pool"; - packageName = "pg-pool"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-pool/-/pg-pool-1.8.0.tgz"; - sha1 = "f7ec73824c37a03f076f51bfdf70e340147c4f37"; - }; - }; - "pg-types-1.13.0" = { - name = "pg-types"; - packageName = "pg-types"; - version = "1.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-types/-/pg-types-1.13.0.tgz"; - sha512 = "lfKli0Gkl/+za/+b6lzENajczwZHc7D5kiUCZfgm914jipD2kIOIvEkAhZ8GrW3/TUoP9w8FHjwpPObBye5KQQ=="; - }; - }; - "pgpass-1.0.2" = { - name = "pgpass"; - packageName = "pgpass"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pgpass/-/pgpass-1.0.2.tgz"; - sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; - }; - }; - "phantomjs-prebuilt-2.1.16" = { - name = "phantomjs-prebuilt"; - packageName = "phantomjs-prebuilt"; - version = "2.1.16"; - src = fetchurl { - url = "https://registry.npmjs.org/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz"; - sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef"; - }; - }; - "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"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; - 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"; - }; - }; - "pkg-conf-2.1.0" = { - name = "pkg-conf"; - packageName = "pkg-conf"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz"; - sha1 = "2126514ca6f2abfebd168596df18ba57867f0058"; - }; - }; - "pkg-config-1.1.1" = { - name = "pkg-config"; - packageName = "pkg-config"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-config/-/pkg-config-1.1.1.tgz"; - sha1 = "557ef22d73da3c8837107766c52eadabde298fe4"; - }; - }; - "pkg-dir-1.0.0" = { - name = "pkg-dir"; - packageName = "pkg-dir"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-1.0.0.tgz"; - sha1 = "7a4b508a8d5bb2d629d447056ff4e9c9314cf3d4"; - }; - }; - "pkg-dir-2.0.0" = { - name = "pkg-dir"; - packageName = "pkg-dir"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz"; - sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; - }; - }; - "pkginfo-0.2.3" = { - name = "pkginfo"; - packageName = "pkginfo"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz"; - sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8"; - }; - }; - "platform-1.3.5" = { - name = "platform"; - packageName = "platform"; - version = "1.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/platform/-/platform-1.3.5.tgz"; - sha512 = "TuvHS8AOIZNAlE77WUDiR4rySV/VMptyMfcfeoMgs4P8apaZM3JrnbzBiixKUv+XR6i+BXrQh8WAnjaSPFO65Q=="; - }; - }; - "pluralize-1.2.1" = { - name = "pluralize"; - packageName = "pluralize"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz"; - sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45"; - }; - }; - "pop-iterate-1.0.1" = { - name = "pop-iterate"; - packageName = "pop-iterate"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz"; - sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3"; - }; - }; - "posix-character-classes-0.1.1" = { - name = "posix-character-classes"; - packageName = "posix-character-classes"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; - }; - }; - "postcss-5.2.18" = { - name = "postcss"; - packageName = "postcss"; - version = "5.2.18"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz"; - sha512 = "zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg=="; - }; - }; - "postcss-6.0.23" = { - name = "postcss"; - packageName = "postcss"; - version = "6.0.23"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz"; - sha512 = "soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag=="; - }; - }; - "postcss-calc-5.3.1" = { - name = "postcss-calc"; - packageName = "postcss-calc"; - version = "5.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz"; - sha1 = "77bae7ca928ad85716e2fda42f261bf7c1d65b5e"; - }; - }; - "postcss-colormin-2.2.2" = { - name = "postcss-colormin"; - packageName = "postcss-colormin"; - version = "2.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz"; - sha1 = "6631417d5f0e909a3d7ec26b24c8a8d1e4f96e4b"; - }; - }; - "postcss-convert-values-2.6.1" = { - name = "postcss-convert-values"; - packageName = "postcss-convert-values"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz"; - sha1 = "bbd8593c5c1fd2e3d1c322bb925dcae8dae4d62d"; - }; - }; - "postcss-discard-comments-2.0.4" = { - name = "postcss-discard-comments"; - packageName = "postcss-discard-comments"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz"; - sha1 = "befe89fafd5b3dace5ccce51b76b81514be00e3d"; - }; - }; - "postcss-discard-duplicates-2.1.0" = { - name = "postcss-discard-duplicates"; - packageName = "postcss-discard-duplicates"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz"; - sha1 = "b9abf27b88ac188158a5eb12abcae20263b91932"; - }; - }; - "postcss-discard-empty-2.1.0" = { - name = "postcss-discard-empty"; - packageName = "postcss-discard-empty"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz"; - sha1 = "d2b4bd9d5ced5ebd8dcade7640c7d7cd7f4f92b5"; - }; - }; - "postcss-discard-overridden-0.1.1" = { - name = "postcss-discard-overridden"; - packageName = "postcss-discard-overridden"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz"; - sha1 = "8b1eaf554f686fb288cd874c55667b0aa3668d58"; - }; - }; - "postcss-discard-unused-2.2.3" = { - name = "postcss-discard-unused"; - packageName = "postcss-discard-unused"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz"; - sha1 = "bce30b2cc591ffc634322b5fb3464b6d934f4433"; - }; - }; - "postcss-filter-plugins-2.0.3" = { - name = "postcss-filter-plugins"; - packageName = "postcss-filter-plugins"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz"; - sha512 = "T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ=="; - }; - }; - "postcss-merge-idents-2.1.7" = { - name = "postcss-merge-idents"; - packageName = "postcss-merge-idents"; - version = "2.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz"; - sha1 = "4c5530313c08e1d5b3bbf3d2bbc747e278eea270"; - }; - }; - "postcss-merge-longhand-2.0.2" = { - name = "postcss-merge-longhand"; - packageName = "postcss-merge-longhand"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz"; - sha1 = "23d90cd127b0a77994915332739034a1a4f3d658"; - }; - }; - "postcss-merge-rules-2.1.2" = { - name = "postcss-merge-rules"; - packageName = "postcss-merge-rules"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz"; - sha1 = "d1df5dfaa7b1acc3be553f0e9e10e87c61b5f721"; - }; - }; - "postcss-message-helpers-2.0.0" = { - name = "postcss-message-helpers"; - packageName = "postcss-message-helpers"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz"; - sha1 = "a4f2f4fab6e4fe002f0aed000478cdf52f9ba60e"; - }; - }; - "postcss-minify-font-values-1.0.5" = { - name = "postcss-minify-font-values"; - packageName = "postcss-minify-font-values"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz"; - sha1 = "4b58edb56641eba7c8474ab3526cafd7bbdecb69"; - }; - }; - "postcss-minify-gradients-1.0.5" = { - name = "postcss-minify-gradients"; - packageName = "postcss-minify-gradients"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz"; - sha1 = "5dbda11373703f83cfb4a3ea3881d8d75ff5e6e1"; - }; - }; - "postcss-minify-params-1.2.2" = { - name = "postcss-minify-params"; - packageName = "postcss-minify-params"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz"; - sha1 = "ad2ce071373b943b3d930a3fa59a358c28d6f1f3"; - }; - }; - "postcss-minify-selectors-2.1.1" = { - name = "postcss-minify-selectors"; - packageName = "postcss-minify-selectors"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz"; - sha1 = "b2c6a98c0072cf91b932d1a496508114311735bf"; - }; - }; - "postcss-modules-extract-imports-1.2.1" = { - name = "postcss-modules-extract-imports"; - packageName = "postcss-modules-extract-imports"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz"; - sha512 = "6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw=="; - }; - }; - "postcss-modules-local-by-default-1.2.0" = { - name = "postcss-modules-local-by-default"; - packageName = "postcss-modules-local-by-default"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz"; - sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; - }; - }; - "postcss-modules-scope-1.1.0" = { - name = "postcss-modules-scope"; - packageName = "postcss-modules-scope"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz"; - sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90"; - }; - }; - "postcss-modules-values-1.3.0" = { - name = "postcss-modules-values"; - packageName = "postcss-modules-values"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz"; - sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20"; - }; - }; - "postcss-normalize-charset-1.1.1" = { - name = "postcss-normalize-charset"; - packageName = "postcss-normalize-charset"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz"; - sha1 = "ef9ee71212d7fe759c78ed162f61ed62b5cb93f1"; - }; - }; - "postcss-normalize-url-3.0.8" = { - name = "postcss-normalize-url"; - packageName = "postcss-normalize-url"; - version = "3.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz"; - sha1 = "108f74b3f2fcdaf891a2ffa3ea4592279fc78222"; - }; - }; - "postcss-ordered-values-2.2.3" = { - name = "postcss-ordered-values"; - packageName = "postcss-ordered-values"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz"; - sha1 = "eec6c2a67b6c412a8db2042e77fe8da43f95c11d"; - }; - }; - "postcss-reduce-idents-2.4.0" = { - name = "postcss-reduce-idents"; - packageName = "postcss-reduce-idents"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz"; - sha1 = "c2c6d20cc958284f6abfbe63f7609bf409059ad3"; - }; - }; - "postcss-reduce-initial-1.0.1" = { - name = "postcss-reduce-initial"; - packageName = "postcss-reduce-initial"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz"; - sha1 = "68f80695f045d08263a879ad240df8dd64f644ea"; - }; - }; - "postcss-reduce-transforms-1.0.4" = { - name = "postcss-reduce-transforms"; - packageName = "postcss-reduce-transforms"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz"; - sha1 = "ff76f4d8212437b31c298a42d2e1444025771ae1"; - }; - }; - "postcss-selector-parser-2.2.3" = { - name = "postcss-selector-parser"; - packageName = "postcss-selector-parser"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz"; - sha1 = "f9437788606c3c9acee16ffe8d8b16297f27bb90"; - }; - }; - "postcss-svgo-2.1.6" = { - name = "postcss-svgo"; - packageName = "postcss-svgo"; - version = "2.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz"; - sha1 = "b6df18aa613b666e133f08adb5219c2684ac108d"; - }; - }; - "postcss-unique-selectors-2.0.2" = { - name = "postcss-unique-selectors"; - packageName = "postcss-unique-selectors"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz"; - sha1 = "981d57d29ddcb33e7b1dfe1fd43b8649f933ca1d"; - }; - }; - "postcss-value-parser-3.3.1" = { - name = "postcss-value-parser"; - packageName = "postcss-value-parser"; - version = "3.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz"; - sha512 = "pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ=="; - }; - }; - "postcss-zindex-2.2.0" = { - name = "postcss-zindex"; - packageName = "postcss-zindex"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz"; - sha1 = "d2109ddc055b91af67fc4cb3b025946639d2af22"; - }; - }; - "postgres-array-1.0.3" = { - name = "postgres-array"; - packageName = "postgres-array"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-array/-/postgres-array-1.0.3.tgz"; - sha512 = "5wClXrAP0+78mcsNX3/ithQ5exKvCyK5lr5NEEEeGwwM6NJdQgzIJBVxLvRW+huFpX92F2QnZ5CcokH0VhK2qQ=="; - }; - }; - "postgres-bytea-1.0.0" = { - name = "postgres-bytea"; - packageName = "postgres-bytea"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; - sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; - }; - }; - "postgres-date-1.0.4" = { - name = "postgres-date"; - packageName = "postgres-date"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-date/-/postgres-date-1.0.4.tgz"; - sha512 = "bESRvKVuTrjoBluEcpv2346+6kgB7UlnqWZsnbnCccTNq/pqfj1j6oBaN5+b/NrDXepYUT/HKadqv3iS9lJuVA=="; - }; - }; - "postgres-interval-1.2.0" = { - name = "postgres-interval"; - packageName = "postgres-interval"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/postgres-interval/-/postgres-interval-1.2.0.tgz"; - sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ=="; - }; - }; - "precond-0.2.3" = { - name = "precond"; - packageName = "precond"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; - sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; - }; - }; - "prelude-ls-1.1.2" = { - name = "prelude-ls"; - packageName = "prelude-ls"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"; - sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; - }; - }; - "prepend-http-1.0.4" = { - name = "prepend-http"; - packageName = "prepend-http"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; - sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; - }; - }; - "preserve-0.2.0" = { - name = "preserve"; - packageName = "preserve"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz"; - sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; - }; - }; - "pretty-bytes-3.0.1" = { - name = "pretty-bytes"; - packageName = "pretty-bytes"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-3.0.1.tgz"; - sha1 = "27d0008d778063a0b4811bb35c79f1bd5d5fbccf"; - }; - }; - "pretty-error-2.1.1" = { - name = "pretty-error"; - packageName = "pretty-error"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.1.tgz"; - sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"; - }; - }; - "pretty-hrtime-1.0.3" = { - name = "pretty-hrtime"; - packageName = "pretty-hrtime"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz"; - sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1"; - }; - }; - "private-0.1.8" = { - name = "private"; - packageName = "private"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/private/-/private-0.1.8.tgz"; - sha512 = "VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg=="; - }; - }; - "process-0.11.10" = { - name = "process"; - packageName = "process"; - version = "0.11.10"; - src = fetchurl { - url = "https://registry.npmjs.org/process/-/process-0.11.10.tgz"; - sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; - }; - }; - "process-nextick-args-1.0.7" = { - name = "process-nextick-args"; - packageName = "process-nextick-args"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz"; - sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3"; - }; - }; - "process-nextick-args-2.0.0" = { - name = "process-nextick-args"; - packageName = "process-nextick-args"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; - sha512 = "MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw=="; - }; - }; - "progress-1.1.8" = { - name = "progress"; - packageName = "progress"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; - sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; - }; - }; - "progress-2.0.3" = { - name = "progress"; - packageName = "progress"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; - sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; - }; - }; - "promise-7.3.1" = { - name = "promise"; - packageName = "promise"; - version = "7.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"; - sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="; - }; - }; - "promise-inflight-1.0.1" = { - name = "promise-inflight"; - packageName = "promise-inflight"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz"; - sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; - }; - }; - "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"; - }; - }; - "proxy-addr-2.0.5" = { - name = "proxy-addr"; - packageName = "proxy-addr"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz"; - sha512 = "t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ=="; - }; - }; - "proxy-from-env-1.0.0" = { - name = "proxy-from-env"; - packageName = "proxy-from-env"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.0.0.tgz"; - sha1 = "33c50398f70ea7eb96d21f7b817630a55791c7ee"; - }; - }; - "prr-1.0.1" = { - name = "prr"; - packageName = "prr"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz"; - sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; - }; - }; - "pseudomap-1.0.2" = { - name = "pseudomap"; - packageName = "pseudomap"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; - }; - }; - "psl-1.1.32" = { - name = "psl"; - packageName = "psl"; - version = "1.1.32"; - src = fetchurl { - url = "https://registry.npmjs.org/psl/-/psl-1.1.32.tgz"; - sha512 = "MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g=="; - }; - }; - "pump-2.0.1" = { - name = "pump"; - packageName = "pump"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz"; - sha512 = "ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA=="; - }; - }; - "pumpify-1.5.1" = { - name = "pumpify"; - packageName = "pumpify"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz"; - sha512 = "oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ=="; - }; - }; - "punycode-1.3.2" = { - name = "punycode"; - packageName = "punycode"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; - sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; - }; - }; - "punycode-1.4.1" = { - name = "punycode"; - packageName = "punycode"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; - sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; - }; - }; - "punycode-2.1.1" = { - name = "punycode"; - packageName = "punycode"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; - }; - }; - "puppeteer-1.17.0" = { - name = "puppeteer"; - packageName = "puppeteer"; - version = "1.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/puppeteer/-/puppeteer-1.17.0.tgz"; - sha512 = "3EXZSximCzxuVKpIHtyec8Wm2dWZn1fc5tQi34qWfiUgubEVYHjUvr0GOJojqf3mifI6oyKnCdrGxaOI+lWReA=="; - }; - }; - "q-1.5.1" = { - name = "q"; - packageName = "q"; - version = "1.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz"; - sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7"; - }; - }; - "q-2.0.3" = { - name = "q"; - packageName = "q"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/q/-/q-2.0.3.tgz"; - sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134"; - }; - }; - "qs-2.3.3" = { - name = "qs"; - packageName = "qs"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz"; - sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404"; - }; - }; - "qs-6.4.0" = { - name = "qs"; - packageName = "qs"; - version = "6.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz"; - sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233"; - }; - }; - "qs-6.5.2" = { - name = "qs"; - packageName = "qs"; - version = "6.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; - }; - }; - "qs-6.7.0" = { - name = "qs"; - packageName = "qs"; - version = "6.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; - sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; - }; - }; - "query-string-4.3.4" = { - name = "query-string"; - packageName = "query-string"; - version = "4.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz"; - sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb"; - }; - }; - "querystring-0.2.0" = { - name = "querystring"; - packageName = "querystring"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; - sha1 = "b209849203bb25df820da756e747005878521620"; - }; - }; - "querystring-es3-0.2.1" = { - name = "querystring-es3"; - packageName = "querystring-es3"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"; - sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; - }; - }; - "random-bytes-1.0.0" = { - name = "random-bytes"; - packageName = "random-bytes"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; - sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; - }; - }; - "randomatic-3.1.1" = { - name = "randomatic"; - packageName = "randomatic"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz"; - sha512 = "TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw=="; - }; - }; - "range-parser-1.2.1" = { - name = "range-parser"; - packageName = "range-parser"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; - sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; - }; - }; - "raphael-2.2.7" = { - name = "raphael"; - packageName = "raphael"; - version = "2.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/raphael/-/raphael-2.2.7.tgz"; - sha1 = "231b19141f8d086986d8faceb66f8b562ee2c810"; - }; - }; - "raw-body-2.4.0" = { - name = "raw-body"; - packageName = "raw-body"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; - sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; - }; - }; - "raw-loader-0.5.1" = { - name = "raw-loader"; - packageName = "raw-loader"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz"; - sha1 = "0c3d0beaed8a01c966d9787bf778281252a979aa"; - }; - }; - "rc-1.2.8" = { - name = "rc"; - packageName = "rc"; - version = "1.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; - sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; - }; - }; - "read-pkg-2.0.0" = { - name = "read-pkg"; - packageName = "read-pkg"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz"; - sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; - }; - }; - "read-pkg-up-2.0.0" = { - name = "read-pkg-up"; - packageName = "read-pkg-up"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; - sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; - }; - }; - "readable-stream-1.0.27-1" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.0.27-1"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz"; - sha1 = "6b67983c20357cefd07f0165001a16d710d91078"; - }; - }; - "readable-stream-1.0.34" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.0.34"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; - }; - }; - "readable-stream-1.1.14" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.1.14"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; - sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; - }; - }; - "readable-stream-2.0.6" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; - sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; - }; - }; - "readable-stream-2.3.6" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; - sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; - }; - }; - "readable-stream-3.4.0" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "3.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz"; - sha512 = "jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ=="; - }; - }; - "readdirp-2.2.1" = { - name = "readdirp"; - packageName = "readdirp"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"; - sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; - }; - }; - "readline2-1.0.1" = { - name = "readline2"; - packageName = "readline2"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz"; - sha1 = "41059608ffc154757b715d9989d199ffbf372e35"; - }; - }; - "rechoir-0.6.2" = { - name = "rechoir"; - packageName = "rechoir"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; - sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; - }; - }; - "redefine-0.2.1" = { - name = "redefine"; - packageName = "redefine"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/redefine/-/redefine-0.2.1.tgz"; - sha1 = "e89ee7a6f24d19fff62590569332dc60380a89a3"; - }; - }; - "reduce-component-1.0.1" = { - name = "reduce-component"; - packageName = "reduce-component"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz"; - sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da"; - }; - }; - "reduce-css-calc-1.3.0" = { - name = "reduce-css-calc"; - packageName = "reduce-css-calc"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz"; - sha1 = "747c914e049614a4c9cfbba629871ad1d2927716"; - }; - }; - "reduce-function-call-1.0.2" = { - name = "reduce-function-call"; - packageName = "reduce-function-call"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.2.tgz"; - sha1 = "5a200bf92e0e37751752fe45b0ab330fd4b6be99"; - }; - }; - "referrer-policy-1.2.0" = { - name = "referrer-policy"; - packageName = "referrer-policy"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/referrer-policy/-/referrer-policy-1.2.0.tgz"; - sha512 = "LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA=="; - }; - }; - "regenerate-1.4.0" = { - name = "regenerate"; - packageName = "regenerate"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz"; - sha512 = "1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg=="; - }; - }; - "regenerate-unicode-properties-8.1.0" = { - name = "regenerate-unicode-properties"; - packageName = "regenerate-unicode-properties"; - version = "8.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; - sha512 = "LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA=="; - }; - }; - "regenerator-runtime-0.10.5" = { - name = "regenerator-runtime"; - packageName = "regenerator-runtime"; - version = "0.10.5"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"; - sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658"; - }; - }; - "regenerator-runtime-0.11.1" = { - name = "regenerator-runtime"; - packageName = "regenerator-runtime"; - version = "0.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; - sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; - }; - }; - "regenerator-transform-0.10.1" = { - name = "regenerator-transform"; - packageName = "regenerator-transform"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.10.1.tgz"; - sha512 = "PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q=="; - }; - }; - "regex-cache-0.4.4" = { - name = "regex-cache"; - packageName = "regex-cache"; - version = "0.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz"; - sha512 = "nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ=="; - }; - }; - "regex-not-1.0.2" = { - name = "regex-not"; - packageName = "regex-not"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"; - sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; - }; - }; - "regexpu-core-1.0.0" = { - name = "regexpu-core"; - packageName = "regexpu-core"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz"; - sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b"; - }; - }; - "regexpu-core-2.0.0" = { - name = "regexpu-core"; - packageName = "regexpu-core"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-2.0.0.tgz"; - sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240"; - }; - }; - "regexpu-core-4.5.4" = { - name = "regexpu-core"; - packageName = "regexpu-core"; - version = "4.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz"; - sha512 = "BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ=="; - }; - }; - "regjsgen-0.2.0" = { - name = "regjsgen"; - packageName = "regjsgen"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz"; - sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7"; - }; - }; - "regjsgen-0.5.0" = { - name = "regjsgen"; - packageName = "regjsgen"; - version = "0.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz"; - sha512 = "RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA=="; - }; - }; - "regjsparser-0.1.5" = { - name = "regjsparser"; - packageName = "regjsparser"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz"; - sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"; - }; - }; - "regjsparser-0.6.0" = { - name = "regjsparser"; - packageName = "regjsparser"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz"; - sha512 = "RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ=="; - }; - }; - "relateurl-0.2.7" = { - name = "relateurl"; - packageName = "relateurl"; - version = "0.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz"; - sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9"; - }; - }; - "remark-frontmatter-1.3.1" = { - name = "remark-frontmatter"; - packageName = "remark-frontmatter"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/remark-frontmatter/-/remark-frontmatter-1.3.1.tgz"; - sha512 = "Zj/fDMYnSVgMCeKp8fXIhtMoZq4G6E1dnwfMoO8fVXrm/+oVSiN8YMREtwN2cctgK9EsnYSeS1ExX2hcX/fE1A=="; - }; - }; - "remark-parse-5.0.0" = { - name = "remark-parse"; - packageName = "remark-parse"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/remark-parse/-/remark-parse-5.0.0.tgz"; - sha512 = "b3iXszZLH1TLoyUzrATcTQUZrwNl1rE70rVdSruJFlDaJ9z5aMkhrG43Pp68OgfHndL/ADz6V69Zow8cTQu+JA=="; - }; - }; - "remarkable-1.7.1" = { - name = "remarkable"; - packageName = "remarkable"; - version = "1.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/remarkable/-/remarkable-1.7.1.tgz"; - sha1 = "aaca4972100b66a642a63a1021ca4bac1be3bff6"; - }; - }; - "remove-trailing-separator-1.1.0" = { - name = "remove-trailing-separator"; - packageName = "remove-trailing-separator"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; - sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; - }; - }; - "renderkid-2.0.3" = { - name = "renderkid"; - packageName = "renderkid"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.3.tgz"; - sha512 = "z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA=="; - }; - }; - "repeat-element-1.1.3" = { - name = "repeat-element"; - packageName = "repeat-element"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz"; - sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="; - }; - }; - "repeat-string-1.6.1" = { - name = "repeat-string"; - packageName = "repeat-string"; - version = "1.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; - }; - }; - "repeating-2.0.1" = { - name = "repeating"; - packageName = "repeating"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz"; - sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; - }; - }; - "replace-ext-0.0.1" = { - name = "replace-ext"; - packageName = "replace-ext"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; - sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924"; - }; - }; - "replace-ext-1.0.0" = { - name = "replace-ext"; - packageName = "replace-ext"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz"; - sha1 = "de63128373fcbf7c3ccfa4de5a480c45a67958eb"; - }; - }; - "request-2.81.0" = { - name = "request"; - packageName = "request"; - version = "2.81.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz"; - sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; - }; - }; - "request-2.88.0" = { - name = "request"; - packageName = "request"; - version = "2.88.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; - sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; - }; - }; - "request-progress-2.0.1" = { - name = "request-progress"; - packageName = "request-progress"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; - sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; - }; - }; - "require-directory-2.1.1" = { - name = "require-directory"; - packageName = "require-directory"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; - }; - }; - "require-main-filename-1.0.1" = { - name = "require-main-filename"; - packageName = "require-main-filename"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; - }; - }; - "require-relative-0.8.7" = { - name = "require-relative"; - packageName = "require-relative"; - version = "0.8.7"; - src = fetchurl { - url = "https://registry.npmjs.org/require-relative/-/require-relative-0.8.7.tgz"; - sha1 = "7999539fc9e047a37928fa196f8e1563dabd36de"; - }; - }; - "require-uncached-1.0.3" = { - name = "require-uncached"; - packageName = "require-uncached"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.3.tgz"; - sha1 = "4e0d56d6c9662fd31e43011c4b95aa49955421d3"; - }; - }; - "resolve-1.11.1" = { - name = "resolve"; - packageName = "resolve"; - version = "1.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz"; - sha512 = "vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw=="; - }; - }; - "resolve-dir-0.1.1" = { - name = "resolve-dir"; - packageName = "resolve-dir"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-0.1.1.tgz"; - sha1 = "b219259a5602fac5c5c496ad894a6e8cc430261e"; - }; - }; - "resolve-dir-1.0.1" = { - name = "resolve-dir"; - packageName = "resolve-dir"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"; - sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; - }; - }; - "resolve-from-1.0.1" = { - name = "resolve-from"; - packageName = "resolve-from"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz"; - sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"; - }; - }; - "resolve-url-0.2.1" = { - name = "resolve-url"; - packageName = "resolve-url"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; - }; - }; - "restore-cursor-1.0.1" = { - name = "restore-cursor"; - packageName = "restore-cursor"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz"; - sha1 = "34661f46886327fed2991479152252df92daa541"; - }; - }; - "ret-0.1.15" = { - name = "ret"; - packageName = "ret"; - version = "0.1.15"; - src = fetchurl { - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; - }; - }; - "retry-as-promised-2.3.2" = { - name = "retry-as-promised"; - packageName = "retry-as-promised"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/retry-as-promised/-/retry-as-promised-2.3.2.tgz"; - sha1 = "cd974ee4fd9b5fe03cbf31871ee48221c07737b7"; - }; - }; - "right-align-0.1.3" = { - name = "right-align"; - packageName = "right-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; - sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; - }; - }; - "rimraf-2.4.5" = { - name = "rimraf"; - packageName = "rimraf"; - version = "2.4.5"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; - sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; - }; - }; - "rimraf-2.6.3" = { - name = "rimraf"; - packageName = "rimraf"; - version = "2.6.3"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; - sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; - }; - }; - "ripemd160-0.2.0" = { - name = "ripemd160"; - packageName = "ripemd160"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz"; - sha1 = "2bf198bde167cacfa51c0a928e84b68bbe171fce"; - }; - }; - "rollup-0.66.6" = { - name = "rollup"; - packageName = "rollup"; - version = "0.66.6"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup/-/rollup-0.66.6.tgz"; - sha512 = "J7/SWanrcb83vfIHqa8+aVVGzy457GcjA6GVZEnD0x2u4OnOd0Q1pCrEoNe8yLwM6z6LZP02zBT2uW0yh5TqOw=="; - }; - }; - "rollup-plugin-buble-0.19.6" = { - name = "rollup-plugin-buble"; - packageName = "rollup-plugin-buble"; - version = "0.19.6"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-plugin-buble/-/rollup-plugin-buble-0.19.6.tgz"; - sha512 = "El5Fut4/wEO17ZN/n9BZvqd7DXXB2WbJr/DKvr89LXChC/cHllE0XwiUDeAalrTkgr0WrnyLDTCQvEv+cGywWQ=="; - }; - }; - "rollup-pluginutils-2.8.1" = { - name = "rollup-pluginutils"; - packageName = "rollup-pluginutils"; - version = "2.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz"; - sha512 = "J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg=="; - }; - }; - "rollup-watch-4.3.1" = { - name = "rollup-watch"; - packageName = "rollup-watch"; - version = "4.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/rollup-watch/-/rollup-watch-4.3.1.tgz"; - sha512 = "6yjnIwfjpSrqA8IafyIu7fsEyeImNR4aDjA1bQ7KWeVuiA+Clfsx8+PGQkyABWIQzmauQ//tIJ5wAxLXsXs8qQ=="; - }; - }; - "run-async-0.1.0" = { - name = "run-async"; - packageName = "run-async"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz"; - sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389"; - }; - }; - "run-parallel-1.1.9" = { - name = "run-parallel"; - packageName = "run-parallel"; - version = "1.1.9"; - src = fetchurl { - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz"; - sha512 = "DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q=="; - }; - }; - "run-queue-1.0.3" = { - name = "run-queue"; - packageName = "run-queue"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz"; - sha1 = "e848396f057d223f24386924618e25694161ec47"; - }; - }; - "rx-lite-3.1.2" = { - name = "rx-lite"; - packageName = "rx-lite"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz"; - sha1 = "19ce502ca572665f3b647b10939f97fd1615f102"; - }; - }; - "safe-buffer-5.1.2" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; - }; - }; - "safe-json-stringify-1.2.0" = { - name = "safe-json-stringify"; - packageName = "safe-json-stringify"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; - sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="; - }; - }; - "safe-regex-1.1.0" = { - name = "safe-regex"; - packageName = "safe-regex"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; - }; - }; - "safefs-3.2.2" = { - name = "safefs"; - packageName = "safefs"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safefs/-/safefs-3.2.2.tgz"; - sha1 = "8170c1444d7038e08caea05a374fae2fa349e15c"; - }; - }; - "safer-buffer-2.1.2" = { - name = "safer-buffer"; - packageName = "safer-buffer"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; - }; - }; - "sax-0.5.8" = { - name = "sax"; - packageName = "sax"; - version = "0.5.8"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; - sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; - }; - }; - "sax-1.2.1" = { - name = "sax"; - packageName = "sax"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"; - sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a"; - }; - }; - "sax-1.2.4" = { - name = "sax"; - packageName = "sax"; - version = "1.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; - }; - }; - "scandirectory-2.5.0" = { - name = "scandirectory"; - packageName = "scandirectory"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/scandirectory/-/scandirectory-2.5.0.tgz"; - sha1 = "6ce03f54a090b668e3cbedbf20edf9e310593e72"; - }; - }; - "select-1.1.2" = { - name = "select"; - packageName = "select"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/select/-/select-1.1.2.tgz"; - sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d"; - }; - }; - "semver-4.3.2" = { - name = "semver"; - packageName = "semver"; - version = "4.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-4.3.2.tgz"; - sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; - }; - }; - "semver-4.3.6" = { - name = "semver"; - packageName = "semver"; - version = "4.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; - sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; - }; - }; - "semver-5.7.0" = { - name = "semver"; - packageName = "semver"; - version = "5.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz"; - sha512 = "Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA=="; - }; - }; - "send-0.17.1" = { - name = "send"; - packageName = "send"; - version = "0.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; - sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; - }; - }; - "sequencify-0.0.7" = { - name = "sequencify"; - packageName = "sequencify"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz"; - sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; - }; - }; - "serialize-javascript-1.7.0" = { - name = "serialize-javascript"; - packageName = "serialize-javascript"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz"; - sha512 = "ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA=="; - }; - }; - "series-stream-1.0.1" = { - name = "series-stream"; - packageName = "series-stream"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/series-stream/-/series-stream-1.0.1.tgz"; - sha1 = "311a09c5c1d5a091440832e1a480a47400f1005d"; - }; - }; - "serve-static-1.14.1" = { - name = "serve-static"; - packageName = "serve-static"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; - sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; - }; - }; - "set-blocking-2.0.0" = { - name = "set-blocking"; - packageName = "set-blocking"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; - }; - }; - "set-value-0.4.3" = { - name = "set-value"; - packageName = "set-value"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz"; - sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; - }; - }; - "set-value-2.0.0" = { - name = "set-value"; - packageName = "set-value"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz"; - sha512 = "hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg=="; - }; - }; - "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.1" = { - name = "setprototypeof"; - packageName = "setprototypeof"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"; - sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; - }; - }; - "sha.js-2.2.6" = { - name = "sha.js"; - packageName = "sha.js"; - version = "2.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz"; - sha1 = "17ddeddc5f722fb66501658895461977867315ba"; - }; - }; - "shebang-command-1.2.0" = { - name = "shebang-command"; - packageName = "shebang-command"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; - }; - }; - "shebang-regex-1.0.0" = { - name = "shebang-regex"; - packageName = "shebang-regex"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; - }; - }; - "shelljs-0.3.0" = { - name = "shelljs"; - packageName = "shelljs"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; - sha1 = "3596e6307a781544f591f37da618360f31db57b1"; - }; - }; - "shelljs-0.7.8" = { - name = "shelljs"; - packageName = "shelljs"; - version = "0.7.8"; - src = fetchurl { - url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.8.tgz"; - sha1 = "decbcf874b0d1e5fb72e14b164a9683048e9acb3"; - }; - }; - "shimmer-1.1.0" = { - name = "shimmer"; - packageName = "shimmer"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shimmer/-/shimmer-1.1.0.tgz"; - sha1 = "97d7377137ffbbab425522e429fe0aa89a488b35"; - }; - }; - "sigmund-1.0.1" = { - name = "sigmund"; - packageName = "sigmund"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; - sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; - }; - }; - "signal-exit-3.0.2" = { - name = "signal-exit"; - packageName = "signal-exit"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"; - sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; - }; - }; - "slash-1.0.0" = { - name = "slash"; - packageName = "slash"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; - sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; - }; - }; - "slice-ansi-0.0.4" = { - name = "slice-ansi"; - packageName = "slice-ansi"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"; - sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; - }; - }; - "snapdragon-0.8.2" = { - name = "snapdragon"; - packageName = "snapdragon"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"; - sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; - }; - }; - "snapdragon-node-2.1.1" = { - name = "snapdragon-node"; - packageName = "snapdragon-node"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; - sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; - }; - }; - "snapdragon-util-3.0.1" = { - name = "snapdragon-util"; - packageName = "snapdragon-util"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; - sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; - }; - }; - "sntp-1.0.9" = { - name = "sntp"; - packageName = "sntp"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; - }; - }; - "socket.io-adapter-1.1.1" = { - name = "socket.io-adapter"; - packageName = "socket.io-adapter"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz"; - sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b"; - }; - }; - "socket.io-client-2.0.4" = { - name = "socket.io-client"; - packageName = "socket.io-client"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz"; - sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e"; - }; - }; - "socket.io-parser-3.1.3" = { - name = "socket.io-parser"; - packageName = "socket.io-parser"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.1.3.tgz"; - sha512 = "g0a2HPqLguqAczs3dMECuA1RgoGFPyvDqcbaDEdCWY9g59kdUAz3YRmaJBNKXflrHNwB7Q12Gkf/0CZXfdHR7g=="; - }; - }; - "sort-keys-1.1.2" = { - name = "sort-keys"; - packageName = "sort-keys"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz"; - sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad"; - }; - }; - "source-list-map-0.1.8" = { - name = "source-list-map"; - packageName = "source-list-map"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz"; - sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106"; - }; - }; - "source-map-0.4.4" = { - name = "source-map"; - packageName = "source-map"; - version = "0.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz"; - sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b"; - }; - }; - "source-map-0.5.7" = { - name = "source-map"; - packageName = "source-map"; - version = "0.5.7"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; - }; - }; - "source-map-0.6.1" = { - name = "source-map"; - packageName = "source-map"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; - }; - }; - "source-map-resolve-0.5.2" = { - name = "source-map-resolve"; - packageName = "source-map-resolve"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz"; - sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA=="; - }; - }; - "source-map-support-0.4.18" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.4.18"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz"; - sha512 = "try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA=="; - }; - }; - "source-map-url-0.4.0" = { - name = "source-map-url"; - packageName = "source-map-url"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; - }; - }; - "sourcemap-codec-1.4.4" = { - name = "sourcemap-codec"; - packageName = "sourcemap-codec"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz"; - sha512 = "CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg=="; - }; - }; - "sparkles-1.0.1" = { - name = "sparkles"; - packageName = "sparkles"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.1.tgz"; - sha512 = "dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw=="; - }; - }; - "spdx-correct-3.1.0" = { - name = "spdx-correct"; - packageName = "spdx-correct"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz"; - sha512 = "lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q=="; - }; - }; - "spdx-exceptions-2.2.0" = { - name = "spdx-exceptions"; - packageName = "spdx-exceptions"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"; - sha512 = "2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA=="; - }; - }; - "spdx-expression-parse-3.0.0" = { - name = "spdx-expression-parse"; - packageName = "spdx-expression-parse"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"; - sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; - }; - }; - "spdx-license-ids-3.0.4" = { - name = "spdx-license-ids"; - packageName = "spdx-license-ids"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; - sha512 = "7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA=="; - }; - }; - "split-1.0.1" = { - name = "split"; - packageName = "split"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; - }; - }; - "split-string-3.1.0" = { - name = "split-string"; - packageName = "split-string"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"; - sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; - }; - }; - "sprintf-0.1.5" = { - name = "sprintf"; - packageName = "sprintf"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz"; - sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf"; - }; - }; - "sprintf-js-1.0.3" = { - name = "sprintf-js"; - packageName = "sprintf-js"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; - }; - }; - "sprintf-js-1.1.2" = { - name = "sprintf-js"; - packageName = "sprintf-js"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.2.tgz"; - sha512 = "VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug=="; - }; - }; - "sqlstring-2.3.1" = { - name = "sqlstring"; - packageName = "sqlstring"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sqlstring/-/sqlstring-2.3.1.tgz"; - sha1 = "475393ff9e91479aea62dcaf0ca3d14983a7fb40"; - }; - }; - "sshpk-1.16.1" = { - name = "sshpk"; - packageName = "sshpk"; - version = "1.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; - }; - }; - "ssri-5.3.0" = { - name = "ssri"; - packageName = "ssri"; - version = "5.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ssri/-/ssri-5.3.0.tgz"; - sha512 = "XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ=="; - }; - }; - "stack-trace-0.0.10" = { - name = "stack-trace"; - packageName = "stack-trace"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; - sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; - }; - }; - "standard-engine-5.4.0" = { - name = "standard-engine"; - packageName = "standard-engine"; - version = "5.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/standard-engine/-/standard-engine-5.4.0.tgz"; - sha1 = "e0e86959ea0786425d3383e40c1bf70d2f985579"; - }; - }; - "state-toggle-1.0.2" = { - name = "state-toggle"; - packageName = "state-toggle"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/state-toggle/-/state-toggle-1.0.2.tgz"; - sha512 = "8LpelPGR0qQM4PnfLiplOQNJcIN1/r2Gy0xKB2zKnIW2YzPMt2sR4I/+gtPjhN7Svh9kw+zqEg2SFwpBO9iNiw=="; - }; - }; - "static-extend-0.1.2" = { - name = "static-extend"; - packageName = "static-extend"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; - }; - }; - "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"; - }; - }; - "stream-browserify-2.0.2" = { - name = "stream-browserify"; - packageName = "stream-browserify"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz"; - sha512 = "nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg=="; - }; - }; - "stream-consume-0.1.1" = { - name = "stream-consume"; - packageName = "stream-consume"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.1.tgz"; - sha512 = "tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg=="; - }; - }; - "stream-each-1.2.3" = { - name = "stream-each"; - packageName = "stream-each"; - version = "1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz"; - sha512 = "vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw=="; - }; - }; - "stream-from-to-1.4.3" = { - name = "stream-from-to"; - packageName = "stream-from-to"; - version = "1.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-from-to/-/stream-from-to-1.4.3.tgz"; - sha1 = "b270473ebc514e73615727c5d2f76b229941df94"; - }; - }; - "stream-http-2.8.3" = { - name = "stream-http"; - packageName = "stream-http"; - version = "2.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz"; - sha512 = "+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw=="; - }; - }; - "stream-shift-1.0.0" = { - name = "stream-shift"; - packageName = "stream-shift"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz"; - sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; - }; - }; - "strict-uri-encode-1.1.0" = { - name = "strict-uri-encode"; - packageName = "strict-uri-encode"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; - sha1 = "279b225df1d582b1f54e65addd4352e18faa0713"; - }; - }; - "string-natural-compare-2.0.3" = { - name = "string-natural-compare"; - packageName = "string-natural-compare"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-2.0.3.tgz"; - sha512 = "4Kcl12rNjc+6EKhY8QyDVuQTAlMWwRiNbsxnVwBUKFr7dYPQuXVrtNU4sEkjF9LHY0AY6uVbB3ktbkIH4LC+BQ=="; - }; - }; - "string-width-1.0.2" = { - name = "string-width"; - packageName = "string-width"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; - }; - }; - "string-width-2.1.1" = { - name = "string-width"; - packageName = "string-width"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; - }; - }; - "string_decoder-0.10.31" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "0.10.31"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; - }; - }; - "string_decoder-1.1.1" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; - }; - }; - "string_decoder-1.2.0" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.2.0.tgz"; - sha512 = "6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w=="; - }; - }; - "stringstream-0.0.6" = { - name = "stringstream"; - packageName = "stringstream"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz"; - sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="; - }; - }; - "strip-ansi-0.1.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; - }; - }; - "strip-ansi-3.0.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; - }; - }; - "strip-ansi-4.0.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; - }; - }; - "strip-bom-1.0.0" = { - name = "strip-bom"; - packageName = "strip-bom"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz"; - sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794"; - }; - }; - "strip-bom-3.0.0" = { - name = "strip-bom"; - packageName = "strip-bom"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; - sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; - }; - }; - "strip-eof-1.0.0" = { - name = "strip-eof"; - packageName = "strip-eof"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; - }; - }; - "strip-json-comments-1.0.4" = { - name = "strip-json-comments"; - packageName = "strip-json-comments"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; - sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"; - }; - }; - "strip-json-comments-2.0.1" = { - name = "strip-json-comments"; - packageName = "strip-json-comments"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; - }; - }; - "structured-source-3.0.2" = { - name = "structured-source"; - packageName = "structured-source"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/structured-source/-/structured-source-3.0.2.tgz"; - sha1 = "dd802425e0f53dc4a6e7aca3752901a1ccda7af5"; - }; - }; - "superagent-1.8.3" = { - name = "superagent"; - packageName = "superagent"; - version = "1.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/superagent/-/superagent-1.8.3.tgz"; - sha1 = "2b7d70fcc870eda4f2a61e619dd54009b86547c3"; - }; - }; - "supports-color-2.0.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; - }; - }; - "supports-color-3.2.3" = { - name = "supports-color"; - packageName = "supports-color"; - version = "3.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz"; - sha1 = "65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"; - }; - }; - "supports-color-5.5.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; - }; - }; - "svgo-0.7.2" = { - name = "svgo"; - packageName = "svgo"; - version = "0.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz"; - sha1 = "9f5772413952135c6fefbf40afe6a4faa88b4bb5"; - }; - }; - "symbol-tree-3.2.2" = { - name = "symbol-tree"; - packageName = "symbol-tree"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz"; - sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; - }; - }; - "table-3.8.3" = { - name = "table"; - packageName = "table"; - version = "3.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/table/-/table-3.8.3.tgz"; - sha1 = "2bbc542f0fda9861a755d3947fefd8b3f513855f"; - }; - }; - "tapable-0.1.10" = { - name = "tapable"; - packageName = "tapable"; - version = "0.1.10"; - src = fetchurl { - url = "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz"; - sha1 = "29c35707c2b70e50d07482b5d202e8ed446dafd4"; - }; - }; - "tar-4.4.10" = { - name = "tar"; - packageName = "tar"; - version = "4.4.10"; - src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz"; - sha512 = "g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA=="; - }; - }; - "tar-stream-1.6.2" = { - name = "tar-stream"; - packageName = "tar-stream"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz"; - sha512 = "rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A=="; - }; - }; - "taskgroup-4.3.1" = { - name = "taskgroup"; - packageName = "taskgroup"; - version = "4.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/taskgroup/-/taskgroup-4.3.1.tgz"; - sha1 = "7de193febd768273c457730497024d512c27915a"; - }; - }; - "terraformer-1.0.9" = { - name = "terraformer"; - packageName = "terraformer"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/terraformer/-/terraformer-1.0.9.tgz"; - sha512 = "YlmQ1fsMWTkKGDGibCRWgmLzrpDRUr63Q025LJ/taYQ6j1Yb8q9McKF7NBi6ACAyUXO6F/bl9w6v4MY307y5Ag=="; - }; - }; - "terraformer-wkt-parser-1.2.0" = { - name = "terraformer-wkt-parser"; - packageName = "terraformer-wkt-parser"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/terraformer-wkt-parser/-/terraformer-wkt-parser-1.2.0.tgz"; - sha512 = "QU3iA54St5lF8Za1jg1oj4NYc8sn5tCZ08aNSWDeGzrsaV48eZk1iAVWasxhNspYBoCqdHuoot1pUTUrE1AJ4w=="; - }; - }; - "text-table-0.2.0" = { - name = "text-table"; - packageName = "text-table"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; - sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; - }; - }; - "throttleit-1.0.0" = { - name = "throttleit"; - packageName = "throttleit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; - sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; - }; - }; - "through-2.3.8" = { - name = "through"; - packageName = "through"; - version = "2.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; - }; - }; - "through2-0.6.5" = { - name = "through2"; - packageName = "through2"; - version = "0.6.5"; - src = fetchurl { - url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; - sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; - }; - }; - "through2-2.0.5" = { - name = "through2"; - packageName = "through2"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"; - sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; - }; - }; - "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"; - }; - }; - "time-stamp-1.1.0" = { - name = "time-stamp"; - packageName = "time-stamp"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz"; - sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3"; - }; - }; - "timers-browserify-2.0.10" = { - name = "timers-browserify"; - packageName = "timers-browserify"; - version = "2.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz"; - sha512 = "YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg=="; - }; - }; - "timers-ext-0.1.7" = { - name = "timers-ext"; - packageName = "timers-ext"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/timers-ext/-/timers-ext-0.1.7.tgz"; - sha512 = "b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ=="; - }; - }; - "tiny-emitter-2.1.0" = { - name = "tiny-emitter"; - packageName = "tiny-emitter"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; - sha512 = "NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q=="; - }; - }; - "tmp-0.0.29" = { - name = "tmp"; - packageName = "tmp"; - version = "0.0.29"; - src = fetchurl { - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.29.tgz"; - sha1 = "f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0"; - }; - }; - "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 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; - }; - }; - "to-array-0.1.4" = { - name = "to-array"; - packageName = "to-array"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"; - sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; - }; - }; - "to-arraybuffer-1.0.1" = { - name = "to-arraybuffer"; - packageName = "to-arraybuffer"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"; - sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43"; - }; - }; - "to-buffer-1.1.1" = { - name = "to-buffer"; - packageName = "to-buffer"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz"; - sha512 = "lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg=="; - }; - }; - "to-fast-properties-1.0.3" = { - name = "to-fast-properties"; - packageName = "to-fast-properties"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; - sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; - }; - }; - "to-object-path-0.3.0" = { - name = "to-object-path"; - packageName = "to-object-path"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; - }; - }; - "to-regex-3.0.2" = { - name = "to-regex"; - packageName = "to-regex"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"; - sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; - }; - }; - "to-regex-range-2.1.1" = { - name = "to-regex-range"; - packageName = "to-regex-range"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; - }; - }; - "toidentifier-1.0.0" = { - name = "toidentifier"; - packageName = "toidentifier"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; - sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; - }; - }; - "toposort-1.0.7" = { - name = "toposort"; - packageName = "toposort"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/toposort/-/toposort-1.0.7.tgz"; - sha1 = "2e68442d9f64ec720b8cc89e6443ac6caa950029"; - }; - }; - "toposort-class-1.0.1" = { - name = "toposort-class"; - packageName = "toposort-class"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/toposort-class/-/toposort-class-1.0.1.tgz"; - sha1 = "7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988"; - }; - }; - "tough-cookie-2.3.4" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz"; - sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA=="; - }; - }; - "tough-cookie-2.4.3" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz"; - sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ=="; - }; - }; - "tough-cookie-2.5.0" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz"; - sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; - }; - }; - "tr46-0.0.3" = { - name = "tr46"; - packageName = "tr46"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"; - sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a"; - }; - }; - "traverse-0.6.6" = { - name = "traverse"; - packageName = "traverse"; - version = "0.6.6"; - src = fetchurl { - url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; - sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; - }; - }; - "trim-0.0.1" = { - name = "trim"; - packageName = "trim"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz"; - sha1 = "5858547f6b290757ee95cccc666fb50084c460dd"; - }; - }; - "trim-right-1.0.1" = { - name = "trim-right"; - packageName = "trim-right"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"; - sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; - }; - }; - "trim-trailing-lines-1.1.2" = { - name = "trim-trailing-lines"; - packageName = "trim-trailing-lines"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/trim-trailing-lines/-/trim-trailing-lines-1.1.2.tgz"; - sha512 = "MUjYItdrqqj2zpcHFTkMa9WAv4JHTI6gnRQGPFLrt5L9a6tRMiDnIqYl8JBvu2d2Tc3lWJKQwlGCp0K8AvCM+Q=="; - }; - }; - "trough-1.0.4" = { - name = "trough"; - packageName = "trough"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/trough/-/trough-1.0.4.tgz"; - sha512 = "tdzBRDGWcI1OpPVmChbdSKhvSVurznZ8X36AYURAcl+0o2ldlCY2XPzyXNNxwJwwyIU+rIglTCG4kxtNKBQH7Q=="; - }; - }; - "tty-browserify-0.0.0" = { - name = "tty-browserify"; - packageName = "tty-browserify"; - version = "0.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"; - sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; - }; - }; - "tunnel-agent-0.6.0" = { - name = "tunnel-agent"; - packageName = "tunnel-agent"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; - }; - }; - "tweetnacl-0.14.5" = { - name = "tweetnacl"; - packageName = "tweetnacl"; - version = "0.14.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; - }; - }; - "type-check-0.3.2" = { - name = "type-check"; - packageName = "type-check"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"; - sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; - }; - }; - "type-is-1.6.18" = { - name = "type-is"; - packageName = "type-is"; - version = "1.6.18"; - src = fetchurl { - url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; - sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; - }; - }; - "typechecker-2.0.8" = { - name = "typechecker"; - packageName = "typechecker"; - version = "2.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/typechecker/-/typechecker-2.0.8.tgz"; - sha1 = "e83da84bb64c584ccb345838576c40b0337db82e"; - }; - }; - "typechecker-2.1.0" = { - name = "typechecker"; - packageName = "typechecker"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/typechecker/-/typechecker-2.1.0.tgz"; - sha1 = "d1c2093a54ff8a19f58cff877eeaa54f2242d383"; - }; - }; - "typechecker-4.7.0" = { - name = "typechecker"; - packageName = "typechecker"; - version = "4.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/typechecker/-/typechecker-4.7.0.tgz"; - sha512 = "4LHc1KMNJ6NDGO+dSM/yNfZQRtp8NN7psYrPHUblD62Dvkwsp3VShsbM78kOgpcmMkRTgvwdKOTjctS+uMllgQ=="; - }; - }; - "typedarray-0.0.6" = { - name = "typedarray"; - packageName = "typedarray"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; - }; - }; - "uc.micro-1.0.6" = { - name = "uc.micro"; - packageName = "uc.micro"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz"; - sha512 = "8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="; - }; - }; - "uglify-js-2.7.5" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "2.7.5"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz"; - sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8"; - }; - }; - "uglify-js-2.8.29" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "2.8.29"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz"; - sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; - }; - }; - "uglify-js-3.4.10" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "3.4.10"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz"; - sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw=="; - }; - }; - "uglify-js-3.6.0" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.6.0.tgz"; - sha512 = "W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg=="; - }; - }; - "uglify-to-browserify-1.0.2" = { - name = "uglify-to-browserify"; - packageName = "uglify-to-browserify"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; - }; - }; - "uid-safe-2.1.5" = { - name = "uid-safe"; - packageName = "uid-safe"; - version = "2.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz"; - sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; - }; - }; - "uid2-0.0.3" = { - name = "uid2"; - packageName = "uid2"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; - sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; - }; - }; - "ultron-1.1.1" = { - name = "ultron"; - packageName = "ultron"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz"; - sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="; - }; - }; - "umzug-1.12.0" = { - name = "umzug"; - packageName = "umzug"; - version = "1.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/umzug/-/umzug-1.12.0.tgz"; - sha1 = "a79c91f2862eee3130c6c347f2b90ad68a66e8b8"; - }; - }; - "unc-path-regex-0.1.2" = { - name = "unc-path-regex"; - packageName = "unc-path-regex"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; - sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; - }; - }; - "underscore-1.6.0" = { - name = "underscore"; - packageName = "underscore"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; - }; - }; - "underscore-1.7.0" = { - name = "underscore"; - packageName = "underscore"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz"; - sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209"; - }; - }; - "underscore-1.8.3" = { - name = "underscore"; - packageName = "underscore"; - version = "1.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; - sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; - }; - }; - "underscore-1.9.1" = { - name = "underscore"; - packageName = "underscore"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz"; - sha512 = "5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg=="; - }; - }; - "underscore.string-2.4.0" = { - name = "underscore.string"; - packageName = "underscore.string"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz"; - sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; - }; - }; - "unherit-1.1.2" = { - name = "unherit"; - packageName = "unherit"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unherit/-/unherit-1.1.2.tgz"; - sha512 = "W3tMnpaMG7ZY6xe/moK04U9fBhi6wEiCYHUW5Mop/wQHf12+79EQGwxYejNdhEz2mkqkBlGwm7pxmgBKMVUj0w=="; - }; - }; - "unicode-canonical-property-names-ecmascript-1.0.4" = { - name = "unicode-canonical-property-names-ecmascript"; - packageName = "unicode-canonical-property-names-ecmascript"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; - sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ=="; - }; - }; - "unicode-match-property-ecmascript-1.0.4" = { - name = "unicode-match-property-ecmascript"; - packageName = "unicode-match-property-ecmascript"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; - sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg=="; - }; - }; - "unicode-match-property-value-ecmascript-1.1.0" = { - name = "unicode-match-property-value-ecmascript"; - packageName = "unicode-match-property-value-ecmascript"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; - sha512 = "hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g=="; - }; - }; - "unicode-property-aliases-ecmascript-1.0.5" = { - name = "unicode-property-aliases-ecmascript"; - packageName = "unicode-property-aliases-ecmascript"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; - sha512 = "L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw=="; - }; - }; - "unified-6.2.0" = { - name = "unified"; - packageName = "unified"; - version = "6.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unified/-/unified-6.2.0.tgz"; - sha512 = "1k+KPhlVtqmG99RaTbAv/usu85fcSRu3wY8X+vnsEhIxNP5VbVIDiXnLqyKIG+UMdyTg0ZX9EI6k2AfjJkHPtA=="; - }; - }; - "union-value-1.0.0" = { - name = "union-value"; - packageName = "union-value"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz"; - sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"; - }; - }; - "uniq-1.0.1" = { - name = "uniq"; - packageName = "uniq"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz"; - sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; - }; - }; - "uniqs-2.0.0" = { - name = "uniqs"; - packageName = "uniqs"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz"; - sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02"; - }; - }; - "unique-filename-1.1.1" = { - name = "unique-filename"; - packageName = "unique-filename"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz"; - sha512 = "Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ=="; - }; - }; - "unique-slug-2.0.1" = { - name = "unique-slug"; - packageName = "unique-slug"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.1.tgz"; - sha512 = "n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg=="; - }; - }; - "unique-stream-1.0.0" = { - name = "unique-stream"; - packageName = "unique-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz"; - sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b"; - }; - }; - "unist-util-is-3.0.0" = { - name = "unist-util-is"; - packageName = "unist-util-is"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unist-util-is/-/unist-util-is-3.0.0.tgz"; - sha512 = "sVZZX3+kspVNmLWBPAB6r+7D9ZgAFPNWm66f7YNb420RlQSbn+n8rG8dGZSkrER7ZIXGQYNm5pqC3v3HopH24A=="; - }; - }; - "unist-util-remove-position-1.1.3" = { - name = "unist-util-remove-position"; - packageName = "unist-util-remove-position"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-1.1.3.tgz"; - sha512 = "CtszTlOjP2sBGYc2zcKA/CvNdTdEs3ozbiJ63IPBxh8iZg42SCCb8m04f8z2+V1aSk5a7BxbZKEdoDjadmBkWA=="; - }; - }; - "unist-util-stringify-position-1.1.2" = { - name = "unist-util-stringify-position"; - packageName = "unist-util-stringify-position"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-1.1.2.tgz"; - sha512 = "pNCVrk64LZv1kElr0N1wPiHEUoXNVFERp+mlTg/s9R5Lwg87f9bM/3sQB99w+N9D/qnM9ar3+AKDBwo/gm/iQQ=="; - }; - }; - "unist-util-visit-1.4.1" = { - name = "unist-util-visit"; - packageName = "unist-util-visit"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-1.4.1.tgz"; - sha512 = "AvGNk7Bb//EmJZyhtRUnNMEpId/AZ5Ph/KUpTI09WHQuDZHKovQ1oEv3mfmKpWKtoMzyMC4GLBm1Zy5k12fjIw=="; - }; - }; - "unist-util-visit-parents-2.1.2" = { - name = "unist-util-visit-parents"; - packageName = "unist-util-visit-parents"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-2.1.2.tgz"; - sha512 = "DyN5vD4NE3aSeB+PXYNKxzGsfocxp6asDc2XXE3b0ekO2BaRUpBicbbUygfSvYfUz1IkmjFR1YF7dPklraMZ2g=="; - }; - }; - "universalify-0.1.2" = { - name = "universalify"; - packageName = "universalify"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; - }; - }; - "unpipe-1.0.0" = { - name = "unpipe"; - packageName = "unpipe"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; - sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; - }; - }; - "unset-value-1.0.0" = { - name = "unset-value"; - packageName = "unset-value"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"; - sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; - }; - }; - "update-section-0.3.3" = { - name = "update-section"; - packageName = "update-section"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/update-section/-/update-section-0.3.3.tgz"; - sha1 = "458f17820d37820dc60e20b86d94391b00123158"; - }; - }; - "upper-case-1.1.3" = { - name = "upper-case"; - packageName = "upper-case"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz"; - sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598"; - }; - }; - "uri-js-4.2.2" = { - name = "uri-js"; - packageName = "uri-js"; - version = "4.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; - sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; - }; - }; - "uri-path-1.0.0" = { - name = "uri-path"; - packageName = "uri-path"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz"; - sha1 = "9747f018358933c31de0fccfd82d138e67262e32"; - }; - }; - "urix-0.1.0" = { - name = "urix"; - packageName = "urix"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; - }; - }; - "url-0.10.3" = { - name = "url"; - packageName = "url"; - version = "0.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz"; - sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; - }; - }; - "url-0.11.0" = { - name = "url"; - packageName = "url"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; - sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; - }; - }; - "use-3.1.1" = { - name = "use"; - packageName = "use"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz"; - sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; - }; - }; - "user-home-1.1.1" = { - name = "user-home"; - packageName = "user-home"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz"; - sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190"; - }; - }; - "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"; - }; - }; - "util-0.10.3" = { - name = "util"; - packageName = "util"; - version = "0.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; - sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; - }; - }; - "util-0.10.4" = { - name = "util"; - packageName = "util"; - version = "0.10.4"; - src = fetchurl { - url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz"; - sha512 = "0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A=="; - }; - }; - "util-deprecate-1.0.2" = { - name = "util-deprecate"; - packageName = "util-deprecate"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; - }; - }; - "utila-0.4.0" = { - name = "utila"; - packageName = "utila"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz"; - sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c"; - }; - }; - "utils-merge-1.0.1" = { - name = "utils-merge"; - packageName = "utils-merge"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; - sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; - }; - }; - "uuid-3.3.2" = { - name = "uuid"; - packageName = "uuid"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"; - sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="; - }; - }; - "uws-9.14.0" = { - name = "uws"; - packageName = "uws"; - version = "9.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/uws/-/uws-9.14.0.tgz"; - sha512 = "HNMztPP5A1sKuVFmdZ6BPVpBQd5bUjNC8EFMFiICK+oho/OQsAJy5hnIx4btMHiOk8j04f/DbIlqnEZ9d72dqg=="; - }; - }; - "v8flags-2.1.1" = { - name = "v8flags"; - packageName = "v8flags"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/v8flags/-/v8flags-2.1.1.tgz"; - sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4"; - }; - }; - "validate-npm-package-license-3.0.4" = { - name = "validate-npm-package-license"; - packageName = "validate-npm-package-license"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; - sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; - }; - }; - "validator-5.7.0" = { - name = "validator"; - packageName = "validator"; - version = "5.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-5.7.0.tgz"; - sha1 = "7a87a58146b695ac486071141c0c49d67da05e5c"; - }; - }; - "validator-9.4.1" = { - name = "validator"; - packageName = "validator"; - version = "9.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz"; - sha512 = "YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA=="; - }; - }; - "vary-1.1.2" = { - name = "vary"; - packageName = "vary"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; - sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; - }; - }; - "vasync-1.6.4" = { - name = "vasync"; - packageName = "vasync"; - version = "1.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; - sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; - }; - }; - "vendors-1.0.3" = { - name = "vendors"; - packageName = "vendors"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz"; - sha512 = "fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw=="; - }; - }; - "verror-1.10.0" = { - name = "verror"; - packageName = "verror"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; - }; - }; - "verror-1.6.0" = { - name = "verror"; - packageName = "verror"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; - sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; - }; - }; - "vfile-2.3.0" = { - name = "vfile"; - packageName = "vfile"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/vfile/-/vfile-2.3.0.tgz"; - sha512 = "ASt4mBUHcTpMKD/l5Q+WJXNtshlWxOogYyGYYrg4lt/vuRjC1EFQtlAofL5VmtVNIZJzWYFJjzGWZ0Gw8pzW1w=="; - }; - }; - "vfile-location-2.0.5" = { - name = "vfile-location"; - packageName = "vfile-location"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/vfile-location/-/vfile-location-2.0.5.tgz"; - sha512 = "Pa1ey0OzYBkLPxPZI3d9E+S4BmvfVwNAAXrrqGbwTVXWaX2p9kM1zZ+n35UtVM06shmWKH4RPRN8KI80qE3wNQ=="; - }; - }; - "vfile-message-1.1.1" = { - name = "vfile-message"; - packageName = "vfile-message"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/vfile-message/-/vfile-message-1.1.1.tgz"; - sha512 = "1WmsopSGhWt5laNir+633LszXvZ+Z/lxveBf6yhGsqnQIhlhzooZae7zV6YVM1Sdkw68dtAW3ow0pOdPANugvA=="; - }; - }; - "vinyl-0.4.6" = { - name = "vinyl"; - packageName = "vinyl"; - version = "0.4.6"; - src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz"; - sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; - }; - }; - "vinyl-0.5.3" = { - name = "vinyl"; - packageName = "vinyl"; - version = "0.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; - sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; - }; - }; - "vinyl-fs-0.3.14" = { - name = "vinyl-fs"; - packageName = "vinyl-fs"; - version = "0.3.14"; - src = fetchurl { - url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz"; - sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"; - }; - }; - "vm-browserify-0.0.4" = { - name = "vm-browserify"; - packageName = "vm-browserify"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz"; - sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; - }; - }; - "void-elements-2.0.1" = { - name = "void-elements"; - packageName = "void-elements"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz"; - sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; - }; - }; - "watchpack-0.2.9" = { - name = "watchpack"; - packageName = "watchpack"; - version = "0.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz"; - sha1 = "62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b"; - }; - }; - "watchr-2.4.13" = { - name = "watchr"; - packageName = "watchr"; - version = "2.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/watchr/-/watchr-2.4.13.tgz"; - sha1 = "d74847bb4d6f90f61fe2c74f9f68662aa0e07601"; - }; - }; - "weak-map-1.0.5" = { - name = "weak-map"; - packageName = "weak-map"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz"; - sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; - }; - }; - "webidl-conversions-3.0.1" = { - name = "webidl-conversions"; - packageName = "webidl-conversions"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; - sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871"; - }; - }; - "webidl-conversions-4.0.2" = { - name = "webidl-conversions"; - packageName = "webidl-conversions"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; - sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; - }; - }; - "webpack-core-0.6.9" = { - name = "webpack-core"; - packageName = "webpack-core"; - version = "0.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.9.tgz"; - sha1 = "fc571588c8558da77be9efb6debdc5a3b172bdc2"; - }; - }; - "webpack-sources-0.1.5" = { - name = "webpack-sources"; - packageName = "webpack-sources"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.1.5.tgz"; - sha1 = "aa1f3abf0f0d74db7111c40e500b84f966640750"; - }; - }; - "whatwg-encoding-1.0.5" = { - name = "whatwg-encoding"; - packageName = "whatwg-encoding"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"; - sha512 = "b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw=="; - }; - }; - "whatwg-url-4.8.0" = { - name = "whatwg-url"; - packageName = "whatwg-url"; - version = "4.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-4.8.0.tgz"; - sha1 = "d2981aa9148c1e00a41c5a6131166ab4683bbcc0"; - }; - }; - "whet.extend-0.9.9" = { - name = "whet.extend"; - packageName = "whet.extend"; - version = "0.9.9"; - src = fetchurl { - url = "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz"; - sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1"; - }; - }; - "which-1.3.1" = { - name = "which"; - packageName = "which"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; - }; - }; - "which-module-2.0.0" = { - name = "which-module"; - packageName = "which-module"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; - }; - }; - "wide-align-1.1.3" = { - name = "wide-align"; - packageName = "wide-align"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; - }; - }; - "window-size-0.1.0" = { - name = "window-size"; - packageName = "window-size"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; - }; - }; - "wkx-0.2.0" = { - name = "wkx"; - packageName = "wkx"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/wkx/-/wkx-0.2.0.tgz"; - sha1 = "76c24f16acd0cd8f93cd34aa331e0f7961256e84"; - }; - }; - "wordwrap-0.0.2" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; - }; - }; - "wordwrap-0.0.3" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"; - sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; - }; - }; - "wordwrap-1.0.0" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; - sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; - }; - }; - "wrap-ansi-2.1.0" = { - name = "wrap-ansi"; - packageName = "wrap-ansi"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; - }; - }; - "wrappy-1.0.2" = { - name = "wrappy"; - packageName = "wrappy"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; - }; - }; - "write-0.2.1" = { - name = "write"; - packageName = "write"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz"; - sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; - }; - }; - "ws-3.3.3" = { - name = "ws"; - packageName = "ws"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz"; - sha512 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA=="; - }; - }; - "ws-6.2.1" = { - name = "ws"; - packageName = "ws"; - version = "6.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz"; - sha512 = "GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA=="; - }; - }; - "x-is-string-0.1.0" = { - name = "x-is-string"; - packageName = "x-is-string"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/x-is-string/-/x-is-string-0.1.0.tgz"; - sha1 = "474b50865af3a49a9c4657f05acd145458f77d82"; - }; - }; - "x-xss-protection-1.1.0" = { - name = "x-xss-protection"; - packageName = "x-xss-protection"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/x-xss-protection/-/x-xss-protection-1.1.0.tgz"; - sha512 = "rx3GzJlgEeZ08MIcDsU2vY2B1QEriUKJTSiNHHUIem6eg9pzVOr2TL3Y4Pd6TMAM5D5azGjcxqI62piITBDHVg=="; - }; - }; - "xml-1.0.1" = { - name = "xml"; - packageName = "xml"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz"; - sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; - }; - }; - "xml-crypto-0.10.1" = { - name = "xml-crypto"; - packageName = "xml-crypto"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-crypto/-/xml-crypto-0.10.1.tgz"; - sha1 = "f832f74ccf56f24afcae1163a1fcab44d96774a8"; - }; - }; - "xml-encryption-0.11.2" = { - name = "xml-encryption"; - packageName = "xml-encryption"; - version = "0.11.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-encryption/-/xml-encryption-0.11.2.tgz"; - sha512 = "jVvES7i5ovdO7N+NjgncA326xYKjhqeAnnvIgRnY7ROLCfFqEDLwP0Sxp/30SHG0AXQV1048T5yinOFyvwGFzg=="; - }; - }; - "xml-name-validator-2.0.1" = { - name = "xml-name-validator"; - packageName = "xml-name-validator"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz"; - sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635"; - }; - }; - "xml2js-0.2.8" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz"; - sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2"; - }; - }; - "xml2js-0.4.19" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.4.19"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz"; - sha512 = "esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q=="; - }; - }; - "xmlbuilder-9.0.7" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "9.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; - sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d"; - }; - }; - "xmldom-0.1.19" = { - name = "xmldom"; - packageName = "xmldom"; - version = "0.1.19"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; - }; - }; - "xmldom-0.1.27" = { - name = "xmldom"; - packageName = "xmldom"; - version = "0.1.27"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz"; - sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; - }; - }; - "xmlhttprequest-1.8.0" = { - name = "xmlhttprequest"; - packageName = "xmlhttprequest"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; - sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; - }; - }; - "xmlhttprequest-ssl-1.5.5" = { - name = "xmlhttprequest-ssl"; - packageName = "xmlhttprequest-ssl"; - version = "1.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; - sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; - }; - }; - "xpath-0.0.27" = { - name = "xpath"; - packageName = "xpath"; - version = "0.0.27"; - src = fetchurl { - url = "https://registry.npmjs.org/xpath/-/xpath-0.0.27.tgz"; - sha512 = "fg03WRxtkCV6ohClePNAECYsmpKKTv5L8y/X3Dn1hQrec3POx2jHZ/0P2qQ6HvsrU1BmeqXcof3NGGueG6LxwQ=="; - }; - }; - "xpath.js-1.1.0" = { - name = "xpath.js"; - packageName = "xpath.js"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.1.0.tgz"; - sha512 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ=="; - }; - }; - "xregexp-2.0.0" = { - name = "xregexp"; - packageName = "xregexp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"; - sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; - }; - }; - "xtend-4.0.1" = { - name = "xtend"; - packageName = "xtend"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; - sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; - }; - }; - "xtraverse-0.1.0" = { - name = "xtraverse"; - packageName = "xtraverse"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xtraverse/-/xtraverse-0.1.0.tgz"; - sha1 = "b741bad018ef78d8a9d2e83ade007b3f7959c732"; - }; - }; - "y18n-3.2.1" = { - name = "y18n"; - packageName = "y18n"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; - sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; - }; - }; - "y18n-4.0.0" = { - name = "y18n"; - packageName = "y18n"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; - sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; - }; - }; - "yallist-2.1.2" = { - name = "yallist"; - packageName = "yallist"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; - }; - }; - "yallist-3.0.3" = { - name = "yallist"; - packageName = "yallist"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz"; - sha512 = "S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A=="; - }; - }; - "yargs-3.10.0" = { - name = "yargs"; - packageName = "yargs"; - version = "3.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; - }; - }; - "yargs-8.0.2" = { - name = "yargs"; - packageName = "yargs"; - version = "8.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-8.0.2.tgz"; - sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360"; - }; - }; - "yargs-parser-7.0.0" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-7.0.0.tgz"; - sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; - }; - }; - "yauzl-2.4.1" = { - name = "yauzl"; - packageName = "yauzl"; - version = "2.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; - sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; - }; - }; - "yeast-0.1.2" = { - name = "yeast"; - packageName = "yeast"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; - sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; - }; - }; - "zip-stream-1.2.0" = { - name = "zip-stream"; - packageName = "zip-stream"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/zip-stream/-/zip-stream-1.2.0.tgz"; - sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04"; - }; - }; - }; -in -{ - "eve-^0.5.4" = nodeEnv.buildNodePackage { - name = "eve"; - packageName = "eve"; - version = "0.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/eve/-/eve-0.5.4.tgz"; - sha1 = "67d080b9725291d7e389e34c26860dd97f1debaa"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Simple custom events"; - homepage = "https://github.com/adobe-webplatform/eve#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-cli-^6.18.0" = nodeEnv.buildNodePackage { - name = "babel-cli"; - packageName = "babel-cli"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-cli/-/babel-cli-6.26.0.tgz"; - sha1 = "502ab54874d7db88ad00b887a06383ce03d002f1"; - }; - dependencies = [ - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."anymatch-1.3.2" - sources."arr-diff-2.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-unique-0.2.1" - sources."assign-symbols-1.0.0" - sources."async-each-1.0.3" - sources."atob-2.1.2" - sources."babel-code-frame-6.26.0" - sources."babel-core-6.26.3" - sources."babel-generator-6.26.1" - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-polyfill-6.26.0" - sources."babel-register-6.26.0" - (sources."babel-runtime-6.26.0" // { - dependencies = [ - sources."regenerator-runtime-0.11.1" - ]; - }) - sources."babel-template-6.26.0" - sources."babel-traverse-6.26.0" - sources."babel-types-6.26.0" - sources."babylon-6.18.0" - sources."balanced-match-1.0.0" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."binary-extensions-1.13.1" - sources."brace-expansion-1.1.11" - sources."braces-1.8.5" - (sources."cache-base-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."chalk-1.1.3" - sources."chokidar-1.7.0" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (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."isobject-3.0.1" - sources."kind-of-5.1.0" - ]; - }) - sources."collection-visit-1.0.0" - sources."commander-2.20.0" - sources."component-emitter-1.3.0" - sources."concat-map-0.0.1" - sources."convert-source-map-1.6.0" - sources."copy-descriptor-0.1.1" - sources."core-js-2.6.9" - sources."core-util-is-1.0.2" - sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" - (sources."define-property-2.0.2" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."detect-indent-4.0.0" - sources."escape-string-regexp-1.0.5" - sources."esutils-2.0.2" - sources."expand-brackets-0.1.5" - sources."expand-range-1.8.2" - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."fill-range-2.2.4" - sources."for-in-1.0.2" - sources."for-own-0.1.5" - sources."fragment-cache-0.2.1" - sources."fs-readdir-recursive-1.1.0" - sources."fs.realpath-1.0.0" - sources."fsevents-1.2.9" - sources."get-value-2.0.6" - sources."glob-7.1.4" - sources."glob-base-0.3.0" - sources."glob-parent-2.0.0" - sources."globals-9.18.0" - sources."graceful-fs-4.1.15" - sources."has-ansi-2.0.0" - (sources."has-value-1.0.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."has-values-1.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."kind-of-4.0.0" - ]; - }) - sources."home-or-tmp-2.0.0" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."invariant-2.2.4" - (sources."is-accessor-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-binary-path-1.0.1" - sources."is-buffer-1.1.6" - (sources."is-data-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - (sources."is-descriptor-1.0.2" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-dotfile-1.0.3" - sources."is-equal-shallow-0.1.3" - sources."is-extendable-0.1.1" - sources."is-extglob-1.0.0" - sources."is-finite-1.0.2" - sources."is-glob-2.0.1" - sources."is-number-2.1.0" - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."is-posix-bracket-0.1.1" - sources."is-primitive-2.0.0" - sources."is-windows-1.0.2" - sources."isarray-1.0.0" - sources."isobject-2.1.0" - sources."js-tokens-3.0.2" - sources."jsesc-1.3.0" - sources."json5-0.5.1" - sources."kind-of-3.2.2" - sources."lodash-4.17.11" - sources."loose-envify-1.4.0" - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - sources."math-random-1.0.4" - sources."micromatch-2.3.11" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - (sources."mixin-deep-1.3.1" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."nan-2.14.0" - (sources."nanomatch-1.2.13" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - sources."kind-of-6.0.2" - ]; - }) - sources."normalize-path-2.1.1" - sources."number-is-nan-1.0.1" - sources."object-assign-4.1.1" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - ]; - }) - (sources."object-visit-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."object.omit-2.0.1" - (sources."object.pick-1.3.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."once-1.4.0" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - sources."output-file-sync-1.1.2" - sources."parse-glob-3.0.4" - sources."pascalcase-0.1.1" - sources."path-is-absolute-1.0.1" - sources."posix-character-classes-0.1.1" - sources."preserve-0.2.0" - sources."private-0.1.8" - sources."process-nextick-args-2.0.0" - (sources."randomatic-3.1.1" // { - dependencies = [ - sources."is-number-4.0.0" - sources."kind-of-6.0.2" - ]; - }) - sources."readable-stream-2.3.6" - (sources."readdirp-2.2.1" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (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" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."isobject-3.0.1" - sources."kind-of-6.0.2" - sources."micromatch-3.1.10" - ]; - }) - sources."regenerator-runtime-0.10.5" - sources."regex-cache-0.4.4" - sources."regex-not-1.0.2" - sources."remove-trailing-separator-1.1.0" - sources."repeat-element-1.1.3" - sources."repeat-string-1.6.1" - sources."repeating-2.0.1" - sources."resolve-url-0.2.1" - sources."ret-0.1.15" - sources."safe-buffer-5.1.2" - sources."safe-regex-1.1.0" - (sources."set-value-2.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."slash-1.0.0" - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."snapdragon-util-3.0.1" - sources."source-map-0.5.7" - sources."source-map-resolve-0.5.2" - sources."source-map-support-0.4.18" - sources."source-map-url-0.4.0" - sources."split-string-3.1.0" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - 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" // { - dependencies = [ - sources."is-number-3.0.0" - ]; - }) - sources."trim-right-1.0.1" - (sources."union-value-1.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - sources."set-value-0.4.3" - ]; - }) - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - sources."isobject-3.0.1" - ]; - }) - sources."urix-0.1.0" - sources."use-3.1.1" - sources."user-home-1.1.1" - sources."util-deprecate-1.0.2" - sources."v8flags-2.1.1" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Babel command line."; - homepage = https://babeljs.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-core-^6.21.0" = nodeEnv.buildNodePackage { - name = "babel-core"; - packageName = "babel-core"; - version = "6.26.3"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-core/-/babel-core-6.26.3.tgz"; - sha512 = "6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA=="; - }; - dependencies = [ - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."babel-code-frame-6.26.0" - sources."babel-core-6.26.3" - sources."babel-generator-6.26.1" - sources."babel-helpers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-register-6.26.0" - sources."babel-runtime-6.26.0" - sources."babel-template-6.26.0" - sources."babel-traverse-6.26.0" - sources."babel-types-6.26.0" - sources."babylon-6.18.0" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."chalk-1.1.3" - sources."concat-map-0.0.1" - sources."convert-source-map-1.6.0" - sources."core-js-2.6.9" - sources."debug-2.6.9" - sources."detect-indent-4.0.0" - sources."escape-string-regexp-1.0.5" - sources."esutils-2.0.2" - sources."globals-9.18.0" - sources."has-ansi-2.0.0" - sources."home-or-tmp-2.0.0" - sources."invariant-2.2.4" - sources."is-finite-1.0.2" - sources."js-tokens-3.0.2" - sources."jsesc-1.3.0" - sources."json5-0.5.1" - sources."lodash-4.17.11" - sources."loose-envify-1.4.0" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."number-is-nan-1.0.1" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - sources."path-is-absolute-1.0.1" - sources."private-0.1.8" - sources."regenerator-runtime-0.11.1" - sources."repeating-2.0.1" - sources."safe-buffer-5.1.2" - sources."slash-1.0.0" - sources."source-map-0.5.7" - sources."source-map-support-0.4.18" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."to-fast-properties-1.0.3" - sources."trim-right-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Babel compiler core."; - homepage = https://babeljs.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-loader-^6.2.10" = nodeEnv.buildNodePackage { - name = "babel-loader"; - packageName = "babel-loader"; - version = "6.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-loader/-/babel-loader-6.4.1.tgz"; - sha1 = "0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca"; - }; - dependencies = [ - sources."big.js-3.2.0" - sources."commondir-1.0.1" - sources."emojis-list-2.1.0" - sources."find-cache-dir-0.1.1" - sources."find-up-1.1.2" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."object-assign-4.1.1" - sources."path-exists-2.1.0" - sources."pinkie-2.0.4" - sources."pinkie-promise-2.0.1" - sources."pkg-dir-1.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "babel module loader for webpack"; - homepage = https://github.com/babel/babel-loader; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-plugin-transform-runtime-^6.15.0" = nodeEnv.buildNodePackage { - name = "babel-plugin-transform-runtime"; - packageName = "babel-plugin-transform-runtime"; - version = "6.23.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz"; - sha1 = "88490d446502ea9b8e7efb0fe09ec4d99479b1ee"; - }; - dependencies = [ - sources."babel-runtime-6.26.0" - sources."core-js-2.6.9" - sources."regenerator-runtime-0.11.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Externalise references to helpers and builtins, automatically polyfilling your code without polluting globals"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-polyfill-^6.22.0" = nodeEnv.buildNodePackage { - name = "babel-polyfill"; - packageName = "babel-polyfill"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-polyfill/-/babel-polyfill-6.26.0.tgz"; - sha1 = "379937abc67d7895970adc621f284cd966cf2153"; - }; - dependencies = [ - (sources."babel-runtime-6.26.0" // { - dependencies = [ - sources."regenerator-runtime-0.11.1" - ]; - }) - sources."core-js-2.6.9" - sources."regenerator-runtime-0.10.5" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Provides polyfills necessary for a full ES2015+ environment"; - homepage = https://babeljs.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-preset-es2015-^6.18.0" = nodeEnv.buildNodePackage { - name = "babel-preset-es2015"; - packageName = "babel-preset-es2015"; - version = "6.24.1"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-preset-es2015/-/babel-preset-es2015-6.24.1.tgz"; - sha1 = "d44050d6bc2c9feea702aaf38d727a0210538939"; - }; - dependencies = [ - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."babel-code-frame-6.26.0" - sources."babel-helper-call-delegate-6.24.1" - sources."babel-helper-define-map-6.26.0" - sources."babel-helper-function-name-6.24.1" - sources."babel-helper-get-function-arity-6.24.1" - sources."babel-helper-hoist-variables-6.24.1" - sources."babel-helper-optimise-call-expression-6.24.1" - sources."babel-helper-regex-6.26.0" - sources."babel-helper-replace-supers-6.24.1" - sources."babel-messages-6.23.0" - sources."babel-plugin-check-es2015-constants-6.22.0" - sources."babel-plugin-transform-es2015-arrow-functions-6.22.0" - sources."babel-plugin-transform-es2015-block-scoped-functions-6.22.0" - sources."babel-plugin-transform-es2015-block-scoping-6.26.0" - sources."babel-plugin-transform-es2015-classes-6.24.1" - sources."babel-plugin-transform-es2015-computed-properties-6.24.1" - sources."babel-plugin-transform-es2015-destructuring-6.23.0" - sources."babel-plugin-transform-es2015-duplicate-keys-6.24.1" - sources."babel-plugin-transform-es2015-for-of-6.23.0" - sources."babel-plugin-transform-es2015-function-name-6.24.1" - sources."babel-plugin-transform-es2015-literals-6.22.0" - sources."babel-plugin-transform-es2015-modules-amd-6.24.1" - sources."babel-plugin-transform-es2015-modules-commonjs-6.26.2" - sources."babel-plugin-transform-es2015-modules-systemjs-6.24.1" - sources."babel-plugin-transform-es2015-modules-umd-6.24.1" - sources."babel-plugin-transform-es2015-object-super-6.24.1" - sources."babel-plugin-transform-es2015-parameters-6.24.1" - sources."babel-plugin-transform-es2015-shorthand-properties-6.24.1" - sources."babel-plugin-transform-es2015-spread-6.22.0" - sources."babel-plugin-transform-es2015-sticky-regex-6.24.1" - sources."babel-plugin-transform-es2015-template-literals-6.22.0" - sources."babel-plugin-transform-es2015-typeof-symbol-6.23.0" - sources."babel-plugin-transform-es2015-unicode-regex-6.24.1" - sources."babel-plugin-transform-regenerator-6.26.0" - sources."babel-plugin-transform-strict-mode-6.24.1" - sources."babel-runtime-6.26.0" - sources."babel-template-6.26.0" - sources."babel-traverse-6.26.0" - sources."babel-types-6.26.0" - sources."babylon-6.18.0" - sources."chalk-1.1.3" - sources."core-js-2.6.9" - sources."debug-2.6.9" - sources."escape-string-regexp-1.0.5" - sources."esutils-2.0.2" - sources."globals-9.18.0" - sources."has-ansi-2.0.0" - sources."invariant-2.2.4" - sources."js-tokens-3.0.2" - sources."jsesc-0.5.0" - sources."lodash-4.17.11" - sources."loose-envify-1.4.0" - sources."ms-2.0.0" - sources."private-0.1.8" - sources."regenerate-1.4.0" - sources."regenerator-runtime-0.11.1" - sources."regenerator-transform-0.10.1" - sources."regexpu-core-2.0.0" - sources."regjsgen-0.2.0" - sources."regjsparser-0.1.5" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."to-fast-properties-1.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Babel preset for all es2015 plugins."; - homepage = https://babeljs.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "babel-runtime-^6.20.0" = nodeEnv.buildNodePackage { - name = "babel-runtime"; - packageName = "babel-runtime"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; - }; - dependencies = [ - sources."core-js-2.6.9" - sources."regenerator-runtime-0.11.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "babel selfContained runtime"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "copy-webpack-plugin-^4.0.1" = nodeEnv.buildNodePackage { - name = "copy-webpack-plugin"; - packageName = "copy-webpack-plugin"; - version = "4.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz"; - sha512 = "Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA=="; - }; - dependencies = [ - sources."aproba-1.2.0" - sources."array-union-1.0.2" - sources."array-uniq-1.0.3" - sources."balanced-match-1.0.0" - sources."big.js-5.2.2" - sources."bluebird-3.5.5" - sources."brace-expansion-1.1.11" - sources."buffer-from-1.1.1" - sources."cacache-10.0.4" - sources."chownr-1.1.1" - sources."commondir-1.0.1" - sources."concat-map-0.0.1" - sources."concat-stream-1.6.2" - sources."copy-concurrently-1.0.5" - sources."core-util-is-1.0.2" - sources."cyclist-0.2.2" - sources."dir-glob-2.2.2" - sources."duplexify-3.7.1" - sources."emojis-list-2.1.0" - sources."end-of-stream-1.4.1" - sources."find-cache-dir-1.0.0" - sources."find-up-2.1.0" - sources."flush-write-stream-1.1.1" - sources."from2-2.3.0" - sources."fs-write-stream-atomic-1.0.10" - sources."fs.realpath-1.0.0" - sources."glob-7.1.4" - sources."globby-7.1.1" - sources."graceful-fs-4.1.15" - sources."iferr-0.1.5" - sources."ignore-3.3.10" - sources."imurmurhash-0.1.4" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."is-extglob-2.1.1" - sources."is-glob-4.0.1" - sources."isarray-1.0.0" - (sources."json5-1.0.1" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."loader-utils-1.2.3" - sources."locate-path-2.0.0" - sources."lru-cache-4.1.5" - sources."make-dir-1.3.0" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mississippi-2.0.0" - sources."mkdirp-0.5.1" - sources."move-concurrently-1.0.1" - sources."once-1.4.0" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" - sources."parallel-transform-1.1.0" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-type-3.0.0" - sources."pify-3.0.0" - sources."pkg-dir-2.0.0" - sources."process-nextick-args-2.0.0" - sources."promise-inflight-1.0.1" - sources."pseudomap-1.0.2" - sources."pump-2.0.1" - sources."pumpify-1.5.1" - sources."readable-stream-2.3.6" - sources."rimraf-2.6.3" - sources."run-queue-1.0.3" - sources."safe-buffer-5.1.2" - sources."serialize-javascript-1.7.0" - sources."slash-1.0.0" - sources."ssri-5.3.0" - sources."stream-each-1.2.3" - sources."stream-shift-1.0.0" - sources."string_decoder-1.1.1" - sources."through2-2.0.5" - sources."typedarray-0.0.6" - sources."unique-filename-1.1.1" - sources."unique-slug-2.0.1" - sources."util-deprecate-1.0.2" - sources."wrappy-1.0.2" - sources."xtend-4.0.1" - sources."y18n-4.0.0" - sources."yallist-2.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Copy files && directories with webpack"; - homepage = https://github.com/webpack-contrib/copy-webpack-plugin; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "css-loader-^0.26.1" = nodeEnv.buildNodePackage { - name = "css-loader"; - packageName = "css-loader"; - version = "0.26.4"; - src = fetchurl { - url = "https://registry.npmjs.org/css-loader/-/css-loader-0.26.4.tgz"; - sha1 = "b61e9e30db94303e6ffc892f10ecd09ad025a1fd"; - }; - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."argparse-1.0.10" - sources."autoprefixer-6.7.7" - sources."babel-code-frame-6.26.0" - sources."balanced-match-0.4.2" - sources."big.js-5.2.2" - sources."browserslist-1.7.7" - sources."caniuse-api-1.6.1" - sources."caniuse-db-1.0.30000973" - sources."chalk-1.1.3" - sources."clap-1.2.3" - sources."clone-1.0.4" - sources."coa-1.0.4" - sources."color-0.11.4" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."color-string-0.3.0" - sources."colormin-1.1.2" - sources."colors-1.1.2" - sources."css-color-names-0.0.4" - sources."css-selector-tokenizer-0.7.1" - sources."cssesc-0.1.0" - sources."cssnano-3.10.0" - sources."csso-2.3.2" - sources."decamelize-1.2.0" - sources."defined-1.0.0" - sources."electron-to-chromium-1.3.147" - sources."emojis-list-2.1.0" - sources."escape-string-regexp-1.0.5" - sources."esprima-2.7.3" - sources."esutils-2.0.2" - sources."fastparse-1.1.2" - sources."flatten-1.0.2" - sources."function-bind-1.1.1" - sources."has-1.0.3" - sources."has-ansi-2.0.0" - sources."has-flag-1.0.0" - sources."html-comment-regex-1.1.2" - sources."icss-replace-symbols-1.1.0" - sources."indexes-of-1.0.1" - sources."is-absolute-url-2.1.0" - sources."is-plain-obj-1.1.0" - sources."is-svg-2.1.0" - sources."js-base64-2.5.1" - sources."js-tokens-3.0.2" - sources."js-yaml-3.7.0" - sources."jsesc-0.5.0" - (sources."json5-1.0.1" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."loader-utils-1.2.3" - sources."lodash.camelcase-4.3.0" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - sources."math-expression-evaluator-1.2.17" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."normalize-range-0.1.2" - sources."normalize-url-1.9.1" - sources."num2fraction-1.2.2" - sources."object-assign-4.1.1" - (sources."postcss-5.2.18" // { - dependencies = [ - sources."supports-color-3.2.3" - ]; - }) - sources."postcss-calc-5.3.1" - sources."postcss-colormin-2.2.2" - sources."postcss-convert-values-2.6.1" - sources."postcss-discard-comments-2.0.4" - sources."postcss-discard-duplicates-2.1.0" - sources."postcss-discard-empty-2.1.0" - sources."postcss-discard-overridden-0.1.1" - sources."postcss-discard-unused-2.2.3" - sources."postcss-filter-plugins-2.0.3" - sources."postcss-merge-idents-2.1.7" - sources."postcss-merge-longhand-2.0.2" - sources."postcss-merge-rules-2.1.2" - sources."postcss-message-helpers-2.0.0" - sources."postcss-minify-font-values-1.0.5" - sources."postcss-minify-gradients-1.0.5" - sources."postcss-minify-params-1.2.2" - sources."postcss-minify-selectors-2.1.1" - (sources."postcss-modules-extract-imports-1.2.1" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."has-flag-3.0.0" - sources."postcss-6.0.23" - sources."source-map-0.6.1" - sources."supports-color-5.5.0" - ]; - }) - (sources."postcss-modules-local-by-default-1.2.0" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."has-flag-3.0.0" - sources."postcss-6.0.23" - sources."source-map-0.6.1" - sources."supports-color-5.5.0" - ]; - }) - (sources."postcss-modules-scope-1.1.0" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."has-flag-3.0.0" - sources."postcss-6.0.23" - sources."source-map-0.6.1" - sources."supports-color-5.5.0" - ]; - }) - (sources."postcss-modules-values-1.3.0" // { - dependencies = [ - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."has-flag-3.0.0" - sources."postcss-6.0.23" - sources."source-map-0.6.1" - sources."supports-color-5.5.0" - ]; - }) - sources."postcss-normalize-charset-1.1.1" - sources."postcss-normalize-url-3.0.8" - sources."postcss-ordered-values-2.2.3" - sources."postcss-reduce-idents-2.4.0" - sources."postcss-reduce-initial-1.0.1" - sources."postcss-reduce-transforms-1.0.4" - sources."postcss-selector-parser-2.2.3" - sources."postcss-svgo-2.1.6" - sources."postcss-unique-selectors-2.0.2" - sources."postcss-value-parser-3.3.1" - sources."postcss-zindex-2.2.0" - sources."prepend-http-1.0.4" - sources."q-1.5.1" - sources."query-string-4.3.4" - sources."reduce-css-calc-1.3.0" - sources."reduce-function-call-1.0.2" - sources."regenerate-1.4.0" - sources."regexpu-core-1.0.0" - sources."regjsgen-0.2.0" - sources."regjsparser-0.1.5" - sources."sax-1.2.4" - sources."sort-keys-1.1.2" - sources."source-list-map-0.1.8" - sources."source-map-0.5.7" - sources."sprintf-js-1.0.3" - sources."strict-uri-encode-1.1.0" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."svgo-0.7.2" - sources."uniq-1.0.1" - sources."uniqs-2.0.0" - sources."vendors-1.0.3" - sources."whet.extend-0.9.9" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "css loader module for webpack"; - homepage = "https://github.com/webpack/css-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "doctoc-^1.3.0" = nodeEnv.buildNodePackage { - name = "doctoc"; - packageName = "doctoc"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/doctoc/-/doctoc-1.4.0.tgz"; - sha512 = "8IAq3KdMkxhXCUF+xdZxdJxwuz8N2j25sMgqiu4U4JWluN9tRKMlAalxGASszQjlZaBprdD2YfXpL3VPWUD4eg=="; - }; - dependencies = [ - sources."@textlint/ast-node-types-4.2.2" - sources."@textlint/markdown-to-ast-6.0.9" - sources."anchor-markdown-header-0.5.7" - sources."bail-1.0.4" - sources."boundary-1.0.1" - sources."character-entities-1.2.3" - sources."character-entities-legacy-1.1.3" - sources."character-reference-invalid-1.1.3" - sources."collapse-white-space-1.0.5" - sources."core-util-is-1.0.2" - sources."debug-2.6.9" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.4.2" - sources."domutils-1.7.0" - sources."emoji-regex-6.1.3" - sources."entities-1.1.2" - sources."extend-3.0.2" - sources."fault-1.0.3" - sources."format-0.2.2" - sources."htmlparser2-3.9.2" - sources."inherits-2.0.3" - sources."is-alphabetical-1.0.3" - sources."is-alphanumerical-1.0.3" - sources."is-buffer-1.1.6" - sources."is-decimal-1.0.3" - sources."is-hexadecimal-1.0.3" - sources."is-plain-obj-1.1.0" - sources."is-whitespace-character-1.0.3" - sources."is-word-character-1.0.3" - sources."isarray-1.0.0" - sources."markdown-escapes-1.0.3" - sources."minimist-1.2.0" - sources."ms-2.0.0" - sources."parse-entities-1.2.2" - sources."process-nextick-args-2.0.0" - sources."readable-stream-2.3.6" - sources."remark-frontmatter-1.3.1" - sources."remark-parse-5.0.0" - sources."repeat-string-1.6.1" - sources."replace-ext-1.0.0" - sources."safe-buffer-5.1.2" - sources."state-toggle-1.0.2" - sources."string_decoder-1.1.1" - sources."structured-source-3.0.2" - sources."traverse-0.6.6" - sources."trim-0.0.1" - sources."trim-trailing-lines-1.1.2" - sources."trough-1.0.4" - sources."underscore-1.8.3" - sources."unherit-1.1.2" - sources."unified-6.2.0" - sources."unist-util-is-3.0.0" - sources."unist-util-remove-position-1.1.3" - sources."unist-util-stringify-position-1.1.2" - sources."unist-util-visit-1.4.1" - sources."unist-util-visit-parents-2.1.2" - sources."update-section-0.3.3" - sources."util-deprecate-1.0.2" - sources."vfile-2.3.0" - sources."vfile-location-2.0.5" - sources."vfile-message-1.1.1" - sources."x-is-string-0.1.0" - sources."xtend-4.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Generates TOC for markdown files of local git repo."; - homepage = "https://github.com/thlorenz/doctoc#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "ejs-loader-^0.3.0" = nodeEnv.buildNodePackage { - name = "ejs-loader"; - packageName = "ejs-loader"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ejs-loader/-/ejs-loader-0.3.3.tgz"; - sha512 = "1pQNFYu+4VIeLLNrSZ8QaiyFk9oXv8koUyQ2Pz5k0dw89HHjeiliTPQ46GfqAzCqJ8cEq8QFNj/HsVjyIuzKEA=="; - }; - dependencies = [ - sources."big.js-3.2.0" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."lodash-4.17.11" - sources."object-assign-4.1.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "EJS (Underscore/LoDash Templates) loader for webpack"; - homepage = https://github.com/difelice/ejs-loader; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "exports-loader-^0.6.3" = nodeEnv.buildNodePackage { - name = "exports-loader"; - packageName = "exports-loader"; - version = "0.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/exports-loader/-/exports-loader-0.6.4.tgz"; - sha1 = "d70fc6121975b35fc12830cf52754be2740fc886"; - }; - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-2.1.0" - sources."json5-1.0.1" - sources."loader-utils-1.2.3" - sources."minimist-1.2.0" - sources."source-map-0.5.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "exports loader module for webpack"; - homepage = "https://github.com/webpack/exports-loader#readme"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "expose-^0.1.4" = nodeEnv.buildNodePackage { - name = "expose"; - packageName = "expose"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/expose/-/expose-0.1.4.tgz"; - sha1 = "197aa807200f5114d01520a8ce6a4f42b7f9ba29"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Search modules and expose exports onto a given namespace."; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "expose-loader-^0.7.1" = nodeEnv.buildNodePackage { - name = "expose-loader"; - packageName = "expose-loader"; - version = "0.7.5"; - src = fetchurl { - url = "https://registry.npmjs.org/expose-loader/-/expose-loader-0.7.5.tgz"; - sha512 = "iPowgKUZkTPX5PznYsmifVj9Bob0w2wTHVkt/eYNPSzyebkUgIedmskf/kcfEIWpiWjg3JRjnW+a17XypySMuw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "expose loader module for webpack"; - homepage = https://github.com/webpack-contrib/expose-loader; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "extract-text-webpack-plugin-^1.0.1" = nodeEnv.buildNodePackage { - name = "extract-text-webpack-plugin"; - packageName = "extract-text-webpack-plugin"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-1.0.1.tgz"; - sha1 = "c95bf3cbaac49dc96f1dc6e072549fbb654ccd2c"; - }; - dependencies = [ - sources."async-1.5.2" - sources."big.js-3.2.0" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."object-assign-4.1.1" - sources."source-list-map-0.1.8" - sources."source-map-0.5.7" - sources."webpack-sources-0.1.5" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Extract text from bundle into a file."; - homepage = http://github.com/webpack/extract-text-webpack-plugin; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "file-loader-^0.9.0" = nodeEnv.buildNodePackage { - name = "file-loader"; - packageName = "file-loader"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/file-loader/-/file-loader-0.9.0.tgz"; - sha1 = "1d2daddd424ce6d1b07cfe3f79731bed3617ab42"; - }; - dependencies = [ - sources."big.js-3.2.0" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."object-assign-4.1.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "file loader module for webpack"; - homepage = https://github.com/webpack/file-loader; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "html-webpack-plugin-^2.25.0" = nodeEnv.buildNodePackage { - name = "html-webpack-plugin"; - packageName = "html-webpack-plugin"; - version = "2.30.1"; - src = fetchurl { - url = "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-2.30.1.tgz"; - sha1 = "7f9c421b7ea91ec460f56527d78df484ee7537d5"; - }; - dependencies = [ - sources."ansi-regex-2.1.1" - sources."big.js-3.2.0" - sources."bluebird-3.5.5" - sources."boolbase-1.0.0" - sources."camel-case-3.0.0" - sources."clean-css-4.2.1" - sources."commander-2.17.1" - sources."css-select-1.2.0" - sources."css-what-2.1.3" - sources."dom-converter-0.2.0" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.4.2" - sources."domutils-1.5.1" - sources."emojis-list-2.1.0" - sources."entities-1.1.2" - sources."he-1.2.0" - sources."html-minifier-3.5.21" - sources."htmlparser2-3.10.1" - sources."inherits-2.0.3" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."lodash-4.17.11" - sources."lower-case-1.1.4" - sources."no-case-2.3.2" - sources."nth-check-1.0.2" - sources."object-assign-4.1.1" - sources."param-case-2.1.1" - sources."pretty-error-2.1.1" - sources."readable-stream-3.4.0" - sources."relateurl-0.2.7" - sources."renderkid-2.0.3" - sources."safe-buffer-5.1.2" - sources."source-map-0.6.1" - sources."string_decoder-1.2.0" - sources."strip-ansi-3.0.1" - sources."toposort-1.0.7" - (sources."uglify-js-3.4.10" // { - dependencies = [ - sources."commander-2.19.0" - ]; - }) - sources."upper-case-1.1.3" - sources."util-deprecate-1.0.2" - sources."utila-0.4.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Simplifies creation of HTML files to serve your webpack bundles"; - homepage = https://github.com/jantimon/html-webpack-plugin; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "imports-loader-^0.7.0" = nodeEnv.buildNodePackage { - name = "imports-loader"; - packageName = "imports-loader"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz"; - sha1 = "f204b5f34702a32c1db7d48d89d5e867a0441253"; - }; - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-2.1.0" - sources."json5-1.0.1" - sources."loader-utils-1.2.3" - sources."minimist-1.2.0" - sources."source-map-0.5.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "imports loader module for webpack"; - homepage = "https://github.com/webpack/imports-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "json-loader-^0.5.4" = nodeEnv.buildNodePackage { - 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 = "QLPs8Dj7lnf3e3QYS1zkCo+4ZwqOiF9d/nZnYozTISxXWCfNs9yuky5rJw4/W34s7POaNlbZmQGaB5NiXCbP4w=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "json loader module for webpack"; - homepage = "https://github.com/webpack/json-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "jsonlint-^1.6.2" = nodeEnv.buildNodePackage { - name = "jsonlint"; - packageName = "jsonlint"; - version = "1.6.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.3.tgz"; - sha512 = "jMVTMzP+7gU/IyC6hvKyWpUU8tmTkK5b3BPNuMI9U8Sit+YAWLlZwB6Y6YrdCxfg2kNz05p3XY3Bmm4m26Nv3A=="; - }; - dependencies = [ - sources."JSV-4.0.2" - sources."ansi-styles-1.0.0" - sources."chalk-0.4.0" - sources."has-color-0.1.7" - sources."nomnom-1.8.1" - sources."strip-ansi-0.1.1" - sources."underscore-1.6.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Validate JSON"; - homepage = http://zaach.github.com/jsonlint/; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "less-^2.7.1" = nodeEnv.buildNodePackage { - name = "less"; - packageName = "less"; - version = "2.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/less/-/less-2.7.3.tgz"; - sha512 = "KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ=="; - }; - dependencies = [ - sources."ajv-4.11.8" - sources."asap-2.0.6" - sources."asn1-0.2.4" - sources."assert-plus-0.2.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.6.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."boom-2.10.1" - sources."caseless-0.12.0" - sources."co-4.6.0" - sources."combined-stream-1.0.8" - sources."core-util-is-1.0.2" - sources."cryptiles-2.0.5" - (sources."dashdash-1.14.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."errno-0.1.7" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."forever-agent-0.6.1" - sources."form-data-2.1.4" - (sources."getpass-0.1.7" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."graceful-fs-4.1.15" - sources."har-schema-1.0.5" - sources."har-validator-4.2.1" - sources."hawk-3.1.3" - sources."hoek-2.16.3" - sources."http-signature-1.1.1" - sources."image-size-0.5.5" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-stable-stringify-1.0.1" - sources."json-stringify-safe-5.0.1" - sources."jsonify-0.0.0" - (sources."jsprim-1.4.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."mime-1.6.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."oauth-sign-0.8.2" - sources."performance-now-0.2.0" - sources."promise-7.3.1" - sources."prr-1.0.1" - sources."punycode-1.4.1" - sources."qs-6.4.0" - sources."request-2.81.0" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sntp-1.0.9" - sources."source-map-0.5.7" - (sources."sshpk-1.16.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."stringstream-0.0.6" - sources."tough-cookie-2.3.4" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uuid-3.3.2" - (sources."verror-1.10.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Leaner CSS"; - homepage = http://lesscss.org/; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "less-loader-^2.2.3" = nodeEnv.buildNodePackage { - name = "less-loader"; - packageName = "less-loader"; - version = "2.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/less-loader/-/less-loader-2.2.3.tgz"; - sha1 = "b6d8f8139c8493df09d992a93a00734b08f84528"; - }; - dependencies = [ - sources."big.js-3.2.0" - sources."emojis-list-2.1.0" - sources."json5-0.5.1" - sources."loader-utils-0.2.17" - sources."object-assign-4.1.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "less loader module for webpack"; - homepage = "https://github.com/webpack/less-loader#readme"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "optimize-css-assets-webpack-plugin-^1.3.0" = nodeEnv.buildNodePackage { - name = "optimize-css-assets-webpack-plugin"; - packageName = "optimize-css-assets-webpack-plugin"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-1.3.2.tgz"; - sha1 = "eb27456e21eefbd8080f31e8368c59684e585a2c"; - }; - dependencies = [ - sources."alphanum-sort-1.0.2" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."argparse-1.0.10" - sources."autoprefixer-6.7.7" - sources."balanced-match-0.4.2" - sources."browserslist-1.7.7" - sources."caniuse-api-1.6.1" - sources."caniuse-db-1.0.30000973" - (sources."chalk-1.1.3" // { - dependencies = [ - sources."supports-color-2.0.0" - ]; - }) - sources."clap-1.2.3" - sources."clone-1.0.4" - sources."coa-1.0.4" - sources."color-0.11.4" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."color-string-0.3.0" - sources."colormin-1.1.2" - sources."colors-1.1.2" - sources."css-color-names-0.0.4" - sources."cssnano-3.10.0" - sources."csso-2.3.2" - sources."decamelize-1.2.0" - sources."defined-1.0.0" - sources."electron-to-chromium-1.3.147" - sources."escape-string-regexp-1.0.5" - sources."esprima-2.7.3" - sources."flatten-1.0.2" - sources."function-bind-1.1.1" - sources."has-1.0.3" - sources."has-ansi-2.0.0" - sources."has-flag-1.0.0" - sources."html-comment-regex-1.1.2" - sources."indexes-of-1.0.1" - sources."is-absolute-url-2.1.0" - sources."is-plain-obj-1.1.0" - sources."is-svg-2.1.0" - sources."js-base64-2.5.1" - sources."js-yaml-3.7.0" - sources."lodash.memoize-4.1.2" - sources."lodash.uniq-4.5.0" - sources."math-expression-evaluator-1.2.17" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."normalize-range-0.1.2" - sources."normalize-url-1.9.1" - sources."num2fraction-1.2.2" - sources."object-assign-4.1.1" - sources."postcss-5.2.18" - sources."postcss-calc-5.3.1" - sources."postcss-colormin-2.2.2" - sources."postcss-convert-values-2.6.1" - sources."postcss-discard-comments-2.0.4" - sources."postcss-discard-duplicates-2.1.0" - sources."postcss-discard-empty-2.1.0" - sources."postcss-discard-overridden-0.1.1" - sources."postcss-discard-unused-2.2.3" - sources."postcss-filter-plugins-2.0.3" - sources."postcss-merge-idents-2.1.7" - sources."postcss-merge-longhand-2.0.2" - sources."postcss-merge-rules-2.1.2" - sources."postcss-message-helpers-2.0.0" - sources."postcss-minify-font-values-1.0.5" - sources."postcss-minify-gradients-1.0.5" - sources."postcss-minify-params-1.2.2" - sources."postcss-minify-selectors-2.1.1" - sources."postcss-normalize-charset-1.1.1" - sources."postcss-normalize-url-3.0.8" - sources."postcss-ordered-values-2.2.3" - sources."postcss-reduce-idents-2.4.0" - sources."postcss-reduce-initial-1.0.1" - sources."postcss-reduce-transforms-1.0.4" - sources."postcss-selector-parser-2.2.3" - sources."postcss-svgo-2.1.6" - sources."postcss-unique-selectors-2.0.2" - sources."postcss-value-parser-3.3.1" - sources."postcss-zindex-2.2.0" - sources."prepend-http-1.0.4" - sources."q-1.5.1" - sources."query-string-4.3.4" - sources."reduce-css-calc-1.3.0" - sources."reduce-function-call-1.0.2" - sources."sax-1.2.4" - sources."sort-keys-1.1.2" - sources."source-list-map-0.1.8" - sources."source-map-0.5.7" - sources."sprintf-js-1.0.3" - sources."strict-uri-encode-1.1.0" - sources."strip-ansi-3.0.1" - sources."supports-color-3.2.3" - sources."svgo-0.7.2" - sources."underscore-1.9.1" - sources."uniq-1.0.1" - sources."uniqs-2.0.0" - sources."vendors-1.0.3" - sources."webpack-sources-0.1.5" - sources."whet.extend-0.9.9" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A Webpack plugin to optimize \\ minimize CSS assets."; - homepage = http://github.com/NMFR/optimize-css-assets-webpack-plugin; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "script-loader-^0.7.0" = nodeEnv.buildNodePackage { - name = "script-loader"; - packageName = "script-loader"; - version = "0.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/script-loader/-/script-loader-0.7.2.tgz"; - sha512 = "UMNLEvgOAQuzK8ji8qIscM3GIrRCWN6MmMXGD4SD5l6cSycgGsCo0tX5xRnfQcoghqct0tjHjcykgI1PyBE2aA=="; - }; - dependencies = [ - sources."raw-loader-0.5.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "script loader module for webpack"; - homepage = https://github.com/webpack/script-loader; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "standard-^9.0.1" = nodeEnv.buildNodePackage { - name = "standard"; - packageName = "standard"; - version = "9.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/standard/-/standard-9.0.2.tgz"; - sha1 = "9bd3b9467492e212b1914d78553943ff9b48fd99"; - }; - dependencies = [ - sources."acorn-5.7.3" - (sources."acorn-jsx-3.0.1" // { - dependencies = [ - sources."acorn-3.3.0" - ]; - }) - sources."ajv-4.11.8" - sources."ajv-keywords-1.5.1" - sources."ansi-escapes-1.4.0" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."argparse-1.0.10" - sources."array.prototype.find-2.1.0" - sources."babel-code-frame-6.26.0" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."buffer-from-1.1.1" - sources."caller-path-0.1.0" - sources."callsites-0.2.0" - sources."chalk-1.1.3" - sources."circular-json-0.3.3" - sources."cli-cursor-1.0.2" - sources."cli-width-2.2.0" - sources."co-4.6.0" - sources."code-point-at-1.1.0" - sources."concat-map-0.0.1" - sources."concat-stream-1.6.2" - sources."core-util-is-1.0.2" - sources."d-1.0.0" - sources."debug-2.6.9" - sources."debug-log-1.0.1" - sources."deep-is-0.1.3" - sources."define-properties-1.1.3" - sources."deglob-2.1.1" - sources."doctrine-2.1.0" - sources."error-ex-1.3.2" - sources."es-abstract-1.13.0" - sources."es-to-primitive-1.2.0" - sources."es5-ext-0.10.50" - 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."es6-weak-map-2.0.2" - sources."escape-string-regexp-1.0.5" - sources."escope-3.6.0" - sources."eslint-3.18.0" - sources."eslint-config-standard-7.1.0" - sources."eslint-config-standard-jsx-3.3.0" - sources."eslint-plugin-promise-3.4.2" - (sources."eslint-plugin-react-6.9.0" // { - dependencies = [ - sources."doctrine-1.5.0" - ]; - }) - sources."eslint-plugin-standard-2.0.1" - sources."espree-3.5.4" - sources."esprima-4.0.1" - 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."exit-hook-1.1.1" - sources."fast-levenshtein-2.0.6" - sources."figures-1.7.0" - sources."file-entry-cache-2.0.0" - sources."find-root-1.1.0" - sources."find-up-2.1.0" - sources."flat-cache-1.3.4" - sources."fs.realpath-1.0.0" - sources."function-bind-1.1.1" - sources."generate-function-2.3.1" - sources."generate-object-property-1.2.0" - sources."get-stdin-5.0.1" - sources."glob-7.1.4" - sources."globals-9.18.0" - sources."graceful-fs-4.1.15" - sources."has-1.0.3" - sources."has-ansi-2.0.0" - sources."has-symbols-1.0.0" - sources."home-or-tmp-2.0.0" - sources."ignore-3.3.10" - sources."imurmurhash-0.1.4" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."inquirer-0.12.0" - sources."interpret-1.2.0" - sources."is-arrayish-0.2.1" - sources."is-callable-1.1.4" - sources."is-date-object-1.0.1" - sources."is-fullwidth-code-point-1.0.0" - sources."is-my-ip-valid-1.0.0" - sources."is-my-json-valid-2.20.0" - sources."is-property-1.0.2" - sources."is-regex-1.0.4" - sources."is-resolvable-1.1.0" - sources."is-symbol-1.0.2" - sources."isarray-1.0.0" - sources."js-tokens-3.0.2" - sources."js-yaml-3.13.1" - sources."json-parse-better-errors-1.0.2" - sources."json-stable-stringify-1.0.1" - sources."jsonify-0.0.0" - sources."jsonpointer-4.0.1" - sources."jsx-ast-utils-1.4.1" - sources."levn-0.3.0" - sources."load-json-file-4.0.0" - sources."locate-path-2.0.0" - sources."lodash-4.17.11" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."mute-stream-0.0.5" - sources."natural-compare-1.4.0" - sources."next-tick-1.0.0" - sources."number-is-nan-1.0.1" - sources."object-assign-4.1.1" - sources."object-keys-1.1.1" - sources."once-1.4.0" - sources."onetime-1.1.0" - sources."optionator-0.8.2" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" - sources."parse-json-4.0.0" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-is-inside-1.0.2" - sources."path-parse-1.0.6" - sources."pify-3.0.0" - sources."pkg-conf-2.1.0" - sources."pkg-config-1.1.1" - sources."pluralize-1.2.1" - sources."prelude-ls-1.1.2" - sources."process-nextick-args-2.0.0" - sources."progress-1.1.8" - sources."readable-stream-2.3.6" - sources."readline2-1.0.1" - sources."rechoir-0.6.2" - sources."require-uncached-1.0.3" - sources."resolve-1.11.1" - sources."resolve-from-1.0.1" - sources."restore-cursor-1.0.1" - sources."rimraf-2.6.3" - sources."run-async-0.1.0" - sources."run-parallel-1.1.9" - sources."rx-lite-3.1.2" - sources."safe-buffer-5.1.2" - sources."shelljs-0.7.8" - sources."slice-ansi-0.0.4" - sources."sprintf-js-1.0.3" - (sources."standard-engine-5.4.0" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."string-width-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."strip-bom-3.0.0" - sources."strip-json-comments-2.0.1" - sources."supports-color-2.0.0" - (sources."table-3.8.3" // { - dependencies = [ - sources."ansi-regex-3.0.0" - sources."is-fullwidth-code-point-2.0.0" - sources."string-width-2.1.1" - sources."strip-ansi-4.0.0" - ]; - }) - sources."text-table-0.2.0" - sources."through-2.3.8" - sources."type-check-0.3.2" - sources."typedarray-0.0.6" - sources."uniq-1.0.1" - sources."user-home-2.0.0" - sources."util-deprecate-1.0.2" - sources."wordwrap-1.0.0" - sources."wrappy-1.0.2" - sources."write-0.2.1" - sources."xtend-4.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript Standard Style"; - homepage = http://standardjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "string-loader-^0.0.1" = nodeEnv.buildNodePackage { - name = "string-loader"; - packageName = "string-loader"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-loader/-/string-loader-0.0.1.tgz"; - sha1 = "496f3cccc990213e0dd5411499f9ac6a6a6f2ff8"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "string loader for webpack"; - homepage = "https://github.com/enmoon/string-loader#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "style-loader-^0.13.1" = nodeEnv.buildNodePackage { - name = "style-loader"; - packageName = "style-loader"; - version = "0.13.2"; - src = fetchurl { - url = "https://registry.npmjs.org/style-loader/-/style-loader-0.13.2.tgz"; - sha1 = "74533384cf698c7104c7951150b49717adc2f3bb"; - }; - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-2.1.0" - sources."json5-1.0.1" - sources."loader-utils-1.2.3" - sources."minimist-1.2.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "style loader module for webpack"; - homepage = "https://github.com/webpack/style-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "url-loader-^0.5.7" = nodeEnv.buildNodePackage { - name = "url-loader"; - packageName = "url-loader"; - version = "0.5.9"; - src = fetchurl { - url = "https://registry.npmjs.org/url-loader/-/url-loader-0.5.9.tgz"; - sha512 = "B7QYFyvv+fOBqBVeefsxv6koWWtjmHaMFT6KZWti4KRw8YUD/hOU+3AECvXuzyVawIBx3z7zQRejXCDSO5kk1Q=="; - }; - dependencies = [ - sources."big.js-5.2.2" - sources."emojis-list-2.1.0" - sources."json5-1.0.1" - sources."loader-utils-1.2.3" - sources."mime-1.3.6" - sources."minimist-1.2.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "url loader module for webpack"; - homepage = "https://github.com/webpack/url-loader#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "webpack-^1.14.0" = nodeEnv.buildNodePackage { - name = "webpack"; - packageName = "webpack"; - version = "1.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack/-/webpack-1.15.0.tgz"; - sha1 = "4ff31f53db03339e55164a9d468ee0324968fe98"; - }; - dependencies = [ - sources."acorn-3.3.0" - sources."align-text-0.1.4" - sources."amdefine-1.0.1" - sources."anymatch-1.3.2" - sources."arr-diff-2.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-unique-0.2.1" - (sources."assert-1.5.0" // { - dependencies = [ - sources."inherits-2.0.1" - sources."util-0.10.3" - ]; - }) - sources."assign-symbols-1.0.0" - sources."async-1.5.2" - sources."async-each-1.0.3" - sources."atob-2.1.2" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."base64-js-1.3.0" - sources."big.js-3.2.0" - sources."binary-extensions-1.13.1" - sources."braces-1.8.5" - sources."browserify-aes-0.4.0" - sources."browserify-zlib-0.1.4" - sources."buffer-4.9.1" - sources."builtin-status-codes-3.0.0" - (sources."cache-base-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."camelcase-1.2.1" - sources."center-align-0.1.3" - sources."chokidar-1.7.0" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (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."isobject-3.0.1" - sources."kind-of-5.1.0" - ]; - }) - (sources."cliui-2.1.0" // { - dependencies = [ - sources."wordwrap-0.0.2" - ]; - }) - sources."clone-1.0.4" - sources."collection-visit-1.0.0" - sources."component-emitter-1.3.0" - sources."console-browserify-1.1.0" - sources."constants-browserify-1.0.0" - sources."copy-descriptor-0.1.1" - sources."core-util-is-1.0.2" - sources."crypto-browserify-3.3.0" - sources."date-now-0.1.4" - sources."debug-2.6.9" - sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" - (sources."define-property-2.0.2" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."domain-browser-1.2.0" - sources."emojis-list-2.1.0" - (sources."enhanced-resolve-0.9.1" // { - dependencies = [ - sources."memory-fs-0.2.0" - ]; - }) - sources."errno-0.1.7" - sources."events-1.1.1" - sources."expand-brackets-0.1.5" - sources."expand-range-1.8.2" - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."extglob-0.3.2" - sources."filename-regex-2.0.1" - sources."fill-range-2.2.4" - sources."for-in-1.0.2" - sources."for-own-0.1.5" - sources."fragment-cache-0.2.1" - sources."fsevents-1.2.9" - sources."get-value-2.0.6" - sources."glob-base-0.3.0" - sources."glob-parent-2.0.0" - sources."graceful-fs-4.1.15" - sources."has-flag-1.0.0" - (sources."has-value-1.0.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."has-values-1.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."kind-of-4.0.0" - ]; - }) - sources."https-browserify-0.0.1" - sources."ieee754-1.1.13" - sources."indexof-0.0.1" - sources."inherits-2.0.3" - sources."interpret-0.6.6" - (sources."is-accessor-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-binary-path-1.0.1" - sources."is-buffer-1.1.6" - (sources."is-data-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - (sources."is-descriptor-1.0.2" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-dotfile-1.0.3" - sources."is-equal-shallow-0.1.3" - sources."is-extendable-0.1.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - sources."is-number-2.1.0" - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."is-posix-bracket-0.1.1" - sources."is-primitive-2.0.0" - sources."is-windows-1.0.2" - sources."isarray-1.0.0" - sources."isobject-2.1.0" - sources."json5-0.5.1" - sources."kind-of-3.2.2" - sources."lazy-cache-1.0.4" - sources."loader-utils-0.2.17" - sources."longest-1.0.1" - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - sources."math-random-1.0.4" - sources."memory-fs-0.3.0" - sources."micromatch-2.3.11" - sources."minimist-0.0.8" - (sources."mixin-deep-1.3.1" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."nan-2.14.0" - (sources."nanomatch-1.2.13" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - sources."kind-of-6.0.2" - ]; - }) - (sources."node-libs-browser-0.7.0" // { - dependencies = [ - sources."string_decoder-0.10.31" - ]; - }) - sources."normalize-path-2.1.1" - sources."object-assign-4.1.1" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - ]; - }) - (sources."object-visit-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."object.omit-2.0.1" - (sources."object.pick-1.3.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."optimist-0.6.1" - sources."os-browserify-0.2.1" - sources."pako-0.2.9" - sources."parse-glob-3.0.4" - sources."pascalcase-0.1.1" - sources."path-browserify-0.0.0" - sources."path-is-absolute-1.0.1" - sources."pbkdf2-compat-2.0.1" - sources."posix-character-classes-0.1.1" - sources."preserve-0.2.0" - sources."process-0.11.10" - sources."process-nextick-args-2.0.0" - sources."prr-1.0.1" - sources."punycode-1.4.1" - sources."querystring-0.2.0" - sources."querystring-es3-0.2.1" - (sources."randomatic-3.1.1" // { - dependencies = [ - sources."is-number-4.0.0" - sources."kind-of-6.0.2" - ]; - }) - sources."readable-stream-2.3.6" - (sources."readdirp-2.2.1" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (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" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."isobject-3.0.1" - sources."kind-of-6.0.2" - sources."micromatch-3.1.10" - ]; - }) - sources."regex-cache-0.4.4" - sources."regex-not-1.0.2" - sources."remove-trailing-separator-1.1.0" - sources."repeat-element-1.1.3" - sources."repeat-string-1.6.1" - sources."resolve-url-0.2.1" - sources."ret-0.1.15" - sources."right-align-0.1.3" - sources."ripemd160-0.2.0" - sources."safe-buffer-5.1.2" - sources."safe-regex-1.1.0" - (sources."set-value-2.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."setimmediate-1.0.5" - sources."sha.js-2.2.6" - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."snapdragon-util-3.0.1" - sources."source-list-map-0.1.8" - sources."source-map-0.5.7" - sources."source-map-resolve-0.5.2" - sources."source-map-url-0.4.0" - sources."split-string-3.1.0" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - sources."stream-browserify-2.0.2" - sources."stream-http-2.8.3" - sources."string_decoder-1.1.1" - sources."supports-color-3.2.3" - sources."tapable-0.1.10" - sources."timers-browserify-2.0.10" - sources."to-arraybuffer-1.0.1" - sources."to-object-path-0.3.0" - sources."to-regex-3.0.2" - (sources."to-regex-range-2.1.1" // { - dependencies = [ - sources."is-number-3.0.0" - ]; - }) - sources."tty-browserify-0.0.0" - (sources."uglify-js-2.7.5" // { - dependencies = [ - sources."async-0.2.10" - ]; - }) - sources."uglify-to-browserify-1.0.2" - (sources."union-value-1.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - sources."set-value-0.4.3" - ]; - }) - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - sources."isobject-3.0.1" - ]; - }) - sources."urix-0.1.0" - (sources."url-0.11.0" // { - dependencies = [ - sources."punycode-1.3.2" - ]; - }) - sources."use-3.1.1" - sources."util-0.10.4" - sources."util-deprecate-1.0.2" - sources."vm-browserify-0.0.4" - (sources."watchpack-0.2.9" // { - dependencies = [ - sources."async-0.9.2" - ]; - }) - (sources."webpack-core-0.6.9" // { - dependencies = [ - sources."source-map-0.4.4" - ]; - }) - sources."window-size-0.1.0" - sources."wordwrap-0.0.3" - sources."xtend-4.0.1" - sources."yargs-3.10.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff."; - homepage = https://github.com/webpack/webpack; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "webpack-parallel-uglify-plugin-^0.2.0" = nodeEnv.buildNodePackage { - name = "webpack-parallel-uglify-plugin"; - packageName = "webpack-parallel-uglify-plugin"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/webpack-parallel-uglify-plugin/-/webpack-parallel-uglify-plugin-0.2.0.tgz"; - sha1 = "6daa575cdf7262a1b994ce037b216590b16d2f3d"; - }; - dependencies = [ - sources."align-text-0.1.4" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."camelcase-1.2.1" - sources."center-align-0.1.3" - sources."cliui-2.1.0" - sources."concat-map-0.0.1" - sources."decamelize-1.2.0" - sources."fs.realpath-1.0.0" - sources."glob-7.1.4" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."is-buffer-1.1.6" - sources."kind-of-3.2.2" - sources."lazy-cache-1.0.4" - sources."longest-1.0.1" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."once-1.4.0" - sources."os-tmpdir-1.0.2" - sources."path-is-absolute-1.0.1" - sources."repeat-string-1.6.1" - sources."right-align-0.1.3" - sources."source-list-map-0.1.8" - sources."source-map-0.5.7" - sources."tmp-0.0.29" - sources."uglify-js-2.8.29" - sources."uglify-to-browserify-1.0.2" - sources."webpack-sources-0.1.5" - sources."window-size-0.1.0" - sources."wordwrap-0.0.2" - sources."wrappy-1.0.2" - sources."yargs-3.10.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A webpack plugin to run uglifyjs in parallel."; - homepage = "https://github.com/gdborton/webpack-parallel-uglify-plugin#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "Idle.Js-git+https://github.com/shawnmclean/Idle.js" = nodeEnv.buildNodePackage { - name = "Idle.Js"; - packageName = "Idle.Js"; - version = "0.0.1"; - src = fetchgit { - url = "https://github.com/shawnmclean/Idle.js"; - rev = "db9beb3483a460ad638ec947867720f0ed066a62"; - sha256 = "05f1b2d5b7013b48d80729fe0edf3a6b7c96ee5c55572f70e81b9593176648dd"; - }; - buildInputs = globalBuildInputs; - meta = { - license = "Apache 2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "archiver-^2.1.1" = nodeEnv.buildNodePackage { - name = "archiver"; - packageName = "archiver"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/archiver/-/archiver-2.1.1.tgz"; - sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc"; - }; - dependencies = [ - sources."archiver-utils-1.3.0" - sources."async-2.6.2" - sources."balanced-match-1.0.0" - sources."base64-js-1.3.0" - sources."bl-1.2.2" - sources."brace-expansion-1.1.11" - sources."buffer-5.2.1" - sources."buffer-alloc-1.2.0" - sources."buffer-alloc-unsafe-1.1.0" - sources."buffer-crc32-0.2.13" - sources."buffer-fill-1.0.0" - sources."compress-commons-1.2.2" - sources."concat-map-0.0.1" - sources."core-util-is-1.0.2" - sources."crc-3.8.0" - sources."crc32-stream-2.0.0" - sources."end-of-stream-1.4.1" - sources."fs-constants-1.0.0" - sources."fs.realpath-1.0.0" - sources."glob-7.1.4" - sources."graceful-fs-4.1.15" - sources."ieee754-1.1.13" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."lazystream-1.0.0" - sources."lodash-4.17.11" - sources."minimatch-3.0.4" - sources."normalize-path-2.1.1" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."process-nextick-args-2.0.0" - sources."readable-stream-2.3.6" - sources."remove-trailing-separator-1.1.0" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - sources."tar-stream-1.6.2" - sources."to-buffer-1.1.1" - sources."util-deprecate-1.0.2" - sources."wrappy-1.0.2" - sources."xtend-4.0.1" - sources."zip-stream-1.2.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "a streaming interface for archive generation"; - homepage = https://github.com/archiverjs/node-archiver; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "async-^2.1.4" = nodeEnv.buildNodePackage { - name = "async"; - packageName = "async"; - version = "2.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.2.tgz"; - sha512 = "H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg=="; - }; - dependencies = [ - sources."lodash-4.17.11" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Higher-order functions and common patterns for asynchronous code"; - homepage = https://caolan.github.io/async/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "aws-sdk-^2.7.20" = nodeEnv.buildNodePackage { - name = "aws-sdk"; - packageName = "aws-sdk"; - version = "2.469.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.469.0.tgz"; - sha512 = "VaIrO3aBX83gKkBPk9xM0RHmu7fmq76kaF0SqbsWlPImgxc5foJ4rBlRMMlmeNogFZZ/XTQdI+gkFDVosV14Ig=="; - }; - dependencies = [ - sources."base64-js-1.3.0" - sources."buffer-4.9.1" - sources."events-1.1.1" - sources."ieee754-1.1.8" - sources."isarray-1.0.0" - sources."jmespath-0.15.0" - sources."punycode-1.3.2" - sources."querystring-0.2.0" - sources."sax-1.2.1" - sources."url-0.10.3" - sources."uuid-3.3.2" - sources."xml2js-0.4.19" - sources."xmlbuilder-9.0.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "AWS SDK for JavaScript"; - homepage = https://github.com/aws/aws-sdk-js; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "base64url-^3.0.0" = nodeEnv.buildNodePackage { - name = "base64url"; - packageName = "base64url"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz"; - sha512 = "ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "For encoding to/from base64urls"; - homepage = "https://github.com/brianloveswords/base64url#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "azure-storage-^2.7.0" = nodeEnv.buildNodePackage { - name = "azure-storage"; - packageName = "azure-storage"; - version = "2.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.3.tgz"; - sha512 = "IGLs5Xj6kO8Ii90KerQrrwuJKexLgSwYC4oLWmc11mzKe7Jt2E5IVg+ZQ8K53YWZACtVTMBNO3iGuA+4ipjJxQ=="; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."browserify-mime-1.2.9" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."getpass-0.1.7" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."hash-base-3.0.4" - sources."http-signature-1.2.0" - sources."inherits-2.0.3" - sources."is-typedarray-1.0.0" - sources."isarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-edm-parser-0.1.2" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonparse-1.2.0" - sources."jsprim-1.4.1" - sources."md5.js-1.3.4" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."oauth-sign-0.9.0" - sources."performance-now-2.1.0" - sources."process-nextick-args-1.0.7" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."readable-stream-2.0.6" - sources."request-2.88.0" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sax-0.5.8" - sources."sshpk-1.16.1" - sources."string_decoder-0.10.31" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."underscore-1.8.3" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."validator-9.4.1" - sources."verror-1.10.0" - sources."xml2js-0.2.8" - sources."xmlbuilder-9.0.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Microsoft Azure Storage Client Library for Node.js"; - homepage = http://github.com/Azure/azure-storage-node; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "blueimp-md5-^2.6.0" = nodeEnv.buildNodePackage { - name = "blueimp-md5"; - packageName = "blueimp-md5"; - version = "2.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.10.0.tgz"; - sha512 = "EkNUOi7tpV68TqjpiUz9D9NcT8um2+qtgntmMbi5UKssVX2m/2PLqotcric0RE63pB3HPN/fjf3cKHN2ufGSUQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers."; - homepage = https://github.com/blueimp/JavaScript-MD5; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "body-parser-^1.15.2" = nodeEnv.buildNodePackage { - name = "body-parser"; - packageName = "body-parser"; - version = "1.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; - sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; - }; - dependencies = [ - sources."bytes-3.1.0" - sources."content-type-1.0.4" - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."ee-first-1.1.1" - sources."http-errors-1.7.2" - sources."iconv-lite-0.4.24" - sources."inherits-2.0.3" - sources."media-typer-0.3.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."ms-2.0.0" - sources."on-finished-2.3.0" - sources."qs-6.7.0" - sources."raw-body-2.4.0" - sources."safer-buffer-2.1.2" - sources."setprototypeof-1.1.1" - sources."statuses-1.5.0" - sources."toidentifier-1.0.0" - sources."type-is-1.6.18" - sources."unpipe-1.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Node.js body parsing middleware"; - homepage = "https://github.com/expressjs/body-parser#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "bootstrap-^3.3.7" = nodeEnv.buildNodePackage { - name = "bootstrap"; - packageName = "bootstrap"; - version = "3.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.1.tgz"; - sha512 = "yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "The most popular front-end framework for developing responsive, mobile first projects on the web."; - homepage = https://getbootstrap.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "bootstrap-validator-^0.11.8" = nodeEnv.buildNodePackage { - name = "bootstrap-validator"; - packageName = "bootstrap-validator"; - version = "0.11.9"; - src = fetchurl { - url = "https://registry.npmjs.org/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz"; - sha1 = "fb7058eef53623e78f5aa7967026f98f875a9404"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A user-friendly HTML5 Form validator for Bootstrap 3"; - homepage = "https://github.com/1000hz/bootstrap-validator#readme"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "chance-^1.0.4" = nodeEnv.buildNodePackage { - name = "chance"; - packageName = "chance"; - version = "1.0.18"; - src = fetchurl { - url = "https://registry.npmjs.org/chance/-/chance-1.0.18.tgz"; - sha512 = "g9YLQVHVZS/3F+zIicfB58vjcxopvYQRp7xHzvyDFDhXH1aRZI/JhwSAO0X5qYiQluoGnaNAU6wByD2KTxJN1A=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Chance - Utility library to generate anything random"; - homepage = http://chancejs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "cheerio-^0.22.0" = nodeEnv.buildNodePackage { - name = "cheerio"; - packageName = "cheerio"; - version = "0.22.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cheerio/-/cheerio-0.22.0.tgz"; - sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; - }; - dependencies = [ - sources."boolbase-1.0.0" - sources."css-select-1.2.0" - sources."css-what-2.1.3" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.4.2" - sources."domutils-1.5.1" - sources."entities-1.1.2" - sources."htmlparser2-3.10.1" - sources."inherits-2.0.3" - sources."lodash.assignin-4.2.0" - sources."lodash.bind-4.2.1" - sources."lodash.defaults-4.2.0" - sources."lodash.filter-4.6.0" - sources."lodash.flatten-4.4.0" - sources."lodash.foreach-4.5.0" - sources."lodash.map-4.6.0" - sources."lodash.merge-4.6.1" - sources."lodash.pick-4.4.0" - sources."lodash.reduce-4.6.0" - sources."lodash.reject-4.6.0" - sources."lodash.some-4.6.0" - sources."nth-check-1.0.2" - sources."readable-stream-3.4.0" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.2.0" - sources."util-deprecate-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Tiny, fast, and elegant implementation of core jQuery designed specifically for the server"; - homepage = "https://github.com/cheeriojs/cheerio#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "codemirror-git+https://github.com/hackmdio/CodeMirror.git" = nodeEnv.buildNodePackage { - name = "codemirror"; - packageName = "codemirror"; - version = "5.46.1"; - src = fetchgit { - url = "https://github.com/hackmdio/CodeMirror.git"; - rev = "8ce8e8820da8f51d852bda1e0b9a5394eb8ea8d3"; - sha256 = "44aa5ffa35dfd634c8fd4a8ba0e4df78fb9092dc2d897c84a986e61c6030199b"; - }; - dependencies = [ - sources."@types/estree-0.0.39" - sources."@types/node-12.0.4" - sources."acorn-5.7.3" - sources."acorn-dynamic-import-4.0.0" - sources."acorn-jsx-5.0.1" - sources."ajv-6.10.0" - sources."align-text-0.1.4" - sources."ansi-styles-1.0.0" - sources."anymatch-1.3.2" - sources."arr-diff-2.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-unique-0.2.1" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."assign-symbols-1.0.0" - sources."async-each-1.0.3" - sources."asynckit-0.4.0" - sources."atob-2.1.2" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."bcrypt-pbkdf-1.0.2" - sources."binary-extensions-1.13.1" - sources."blint-1.0.3" - sources."braces-1.8.5" - (sources."buble-0.19.7" // { - dependencies = [ - sources."acorn-6.1.1" - sources."ansi-styles-3.2.1" - sources."chalk-2.4.2" - sources."minimist-1.2.0" - ]; - }) - sources."buffer-from-1.1.1" - (sources."cache-base-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."camelcase-1.2.1" - sources."caseless-0.12.0" - sources."center-align-0.1.3" - sources."chalk-0.4.0" - sources."chokidar-1.7.0" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (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."isobject-3.0.1" - sources."kind-of-5.1.0" - ]; - }) - (sources."cliui-2.1.0" // { - dependencies = [ - sources."wordwrap-0.0.2" - ]; - }) - sources."collection-visit-1.0.0" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."colors-1.3.3" - sources."combined-stream-1.0.8" - sources."component-emitter-1.3.0" - sources."concat-stream-1.6.2" - sources."copy-descriptor-0.1.1" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."debug-2.6.9" - sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" - (sources."define-property-2.0.2" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."es6-promise-4.2.6" - sources."escape-string-regexp-1.0.5" - sources."estree-walker-0.6.1" - sources."expand-brackets-0.1.5" - sources."expand-range-1.8.2" - sources."extend-3.0.2" - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."extglob-0.3.2" - sources."extract-zip-1.6.7" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."fd-slicer-1.0.1" - sources."filename-regex-2.0.1" - sources."fill-range-2.2.4" - sources."for-in-1.0.2" - sources."for-own-0.1.5" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fragment-cache-0.2.1" - sources."fs-extra-1.0.0" - sources."fsevents-1.2.9" - sources."get-value-2.0.6" - sources."getpass-0.1.7" - sources."glob-base-0.3.0" - sources."glob-parent-2.0.0" - sources."graceful-fs-4.1.15" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."has-color-0.1.7" - sources."has-flag-3.0.0" - (sources."has-value-1.0.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."has-values-1.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."kind-of-4.0.0" - ]; - }) - sources."hasha-2.2.0" - sources."http-signature-1.2.0" - sources."inherits-2.0.3" - (sources."is-accessor-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-binary-path-1.0.1" - sources."is-buffer-1.1.6" - (sources."is-data-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - (sources."is-descriptor-1.0.2" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-dotfile-1.0.3" - sources."is-equal-shallow-0.1.3" - sources."is-extendable-0.1.1" - sources."is-extglob-1.0.0" - sources."is-glob-2.0.1" - sources."is-number-2.1.0" - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."is-posix-bracket-0.1.1" - sources."is-primitive-2.0.0" - sources."is-stream-1.1.0" - sources."is-typedarray-1.0.0" - sources."is-windows-1.0.2" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isobject-2.1.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."jsesc-0.5.0" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-2.4.0" - sources."jsprim-1.4.1" - sources."kew-0.7.0" - sources."kind-of-3.2.2" - sources."klaw-1.3.1" - sources."lazy-cache-1.0.4" - sources."longest-1.0.1" - sources."magic-string-0.25.2" - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - sources."math-random-1.0.4" - sources."micromatch-2.3.11" - sources."mime-1.6.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimist-0.0.10" - (sources."mixin-deep-1.3.1" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."ms-2.0.0" - sources."nan-2.14.0" - (sources."nanomatch-1.2.13" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - sources."kind-of-6.0.2" - ]; - }) - sources."node-static-0.7.11" - sources."nomnom-1.8.1" - sources."normalize-path-2.1.1" - sources."oauth-sign-0.9.0" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - ]; - }) - (sources."object-visit-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."object.omit-2.0.1" - (sources."object.pick-1.3.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."optimist-0.6.1" - sources."os-homedir-1.0.2" - sources."parse-glob-3.0.4" - sources."pascalcase-0.1.1" - sources."path-is-absolute-1.0.1" - sources."pend-1.2.0" - sources."performance-now-2.1.0" - sources."phantomjs-prebuilt-2.1.16" - sources."pinkie-2.0.4" - sources."pinkie-promise-2.0.1" - sources."posix-character-classes-0.1.1" - sources."preserve-0.2.0" - sources."process-nextick-args-2.0.0" - sources."progress-1.1.8" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - (sources."randomatic-3.1.1" // { - dependencies = [ - sources."is-number-4.0.0" - sources."kind-of-6.0.2" - ]; - }) - sources."readable-stream-2.3.6" - (sources."readdirp-2.2.1" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (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" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."isobject-3.0.1" - sources."kind-of-6.0.2" - sources."micromatch-3.1.10" - ]; - }) - sources."regenerate-1.4.0" - sources."regenerate-unicode-properties-8.1.0" - sources."regex-cache-0.4.4" - sources."regex-not-1.0.2" - sources."regexpu-core-4.5.4" - sources."regjsgen-0.5.0" - sources."regjsparser-0.6.0" - sources."remove-trailing-separator-1.1.0" - sources."repeat-element-1.1.3" - sources."repeat-string-1.6.1" - sources."request-2.88.0" - sources."request-progress-2.0.1" - sources."require-relative-0.8.7" - sources."resolve-url-0.2.1" - sources."ret-0.1.15" - sources."right-align-0.1.3" - sources."rollup-0.66.6" - sources."rollup-plugin-buble-0.19.6" - sources."rollup-pluginutils-2.8.1" - sources."rollup-watch-4.3.1" - sources."safe-buffer-5.1.2" - sources."safe-regex-1.1.0" - sources."safer-buffer-2.1.2" - (sources."set-value-2.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."snapdragon-util-3.0.1" - sources."source-map-0.5.7" - sources."source-map-resolve-0.5.2" - sources."source-map-url-0.4.0" - sources."sourcemap-codec-1.4.4" - sources."split-string-3.1.0" - sources."sshpk-1.16.1" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - sources."string_decoder-1.1.1" - sources."strip-ansi-0.1.1" - sources."supports-color-5.5.0" - sources."throttleit-1.0.0" - sources."to-object-path-0.3.0" - sources."to-regex-3.0.2" - (sources."to-regex-range-2.1.1" // { - dependencies = [ - sources."is-number-3.0.0" - ]; - }) - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."typedarray-0.0.6" - sources."uglify-js-2.8.29" - sources."uglify-to-browserify-1.0.2" - sources."underscore-1.6.0" - sources."unicode-canonical-property-names-ecmascript-1.0.4" - sources."unicode-match-property-ecmascript-1.0.4" - sources."unicode-match-property-value-ecmascript-1.1.0" - sources."unicode-property-aliases-ecmascript-1.0.5" - (sources."union-value-1.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - sources."set-value-0.4.3" - ]; - }) - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - sources."isobject-3.0.1" - ]; - }) - sources."uri-js-4.2.2" - sources."urix-0.1.0" - sources."use-3.1.1" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."which-1.3.1" - sources."window-size-0.1.0" - sources."wordwrap-0.0.3" - sources."yargs-3.10.0" - sources."yauzl-2.4.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Full-featured in-browser code editor"; - homepage = https://codemirror.net/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "compression-^1.6.2" = nodeEnv.buildNodePackage { - name = "compression"; - packageName = "compression"; - version = "1.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"; - sha512 = "jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="; - }; - dependencies = [ - sources."accepts-1.3.7" - sources."bytes-3.0.0" - sources."compressible-2.0.17" - sources."debug-2.6.9" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."ms-2.0.0" - sources."negotiator-0.6.2" - sources."on-headers-1.0.2" - sources."safe-buffer-5.1.2" - sources."vary-1.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Node.js compression middleware"; - homepage = "https://github.com/expressjs/compression#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "connect-flash-^0.1.1" = nodeEnv.buildNodePackage { - name = "connect-flash"; - packageName = "connect-flash"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz"; - sha1 = "d8630f26d95a7f851f9956b1e8cc6732f3b6aa30"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Flash message middleware for Connect."; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "connect-session-sequelize-^4.1.0" = nodeEnv.buildNodePackage { - name = "connect-session-sequelize"; - packageName = "connect-session-sequelize"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/connect-session-sequelize/-/connect-session-sequelize-4.1.0.tgz"; - sha1 = "d402749c3bebd79209192c164c090742b3fe2011"; - }; - dependencies = [ - sources."debug-2.6.9" - sources."deep-equal-1.0.1" - sources."ms-2.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Session store for connect-session using sequelize"; - homepage = https://github.com/mweibel/connect-session-sequelize; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "cookie-0.3.1" = nodeEnv.buildNodePackage { - name = "cookie"; - packageName = "cookie"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; - sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "HTTP server cookie parsing and serialization"; - homepage = https://github.com/jshttp/cookie; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "cookie-parser-1.4.3" = nodeEnv.buildNodePackage { - name = "cookie-parser"; - packageName = "cookie-parser"; - version = "1.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.3.tgz"; - sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5"; - }; - dependencies = [ - sources."cookie-0.3.1" - sources."cookie-signature-1.0.6" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "cookie parsing with signatures"; - homepage = https://github.com/expressjs/cookie-parser; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "deep-freeze-^0.0.1" = nodeEnv.buildNodePackage { - name = "deep-freeze"; - packageName = "deep-freeze"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz"; - sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "recursively Object.freeze() objects and functions"; - homepage = https://github.com/substack/deep-freeze; - license = "public domain"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "diff-match-patch-git+https://github.com/hackmdio/diff-match-patch.git" = nodeEnv.buildNodePackage { - name = "_at_hackmd_slash_diff-match-patch"; - packageName = "@hackmd/diff-match-patch"; - version = "1.1.1"; - src = fetchgit { - url = "https://github.com/hackmdio/diff-match-patch.git"; - rev = "dd6e43a1df8f46ac17ba33217c00d4018ef5637f"; - sha256 = "98b603f318c562dbfe4000cf4e42467c113a1c91dc4009e9d61dbf378aae9367"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "npm package for https://code.google.com/p/google-diff-match-patch/"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "ejs-^2.5.5" = nodeEnv.buildNodePackage { - name = "ejs"; - packageName = "ejs"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz"; - sha512 = "0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Embedded JavaScript templates"; - homepage = https://github.com/mde/ejs; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "emojify.js-~1.1.0" = nodeEnv.buildNodePackage { - name = "emojify.js"; - packageName = "emojify.js"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/emojify.js/-/emojify.js-1.1.0.tgz"; - sha1 = "079fff223307c9007f570785e8e4935d5c398beb"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A Javascript module to convert emoji keywords to images."; - homepage = "https://github.com/hassankhan/emojify.js#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "express->=4.14" = nodeEnv.buildNodePackage { - name = "express"; - packageName = "express"; - version = "4.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; - sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; - }; - dependencies = [ - sources."accepts-1.3.7" - sources."array-flatten-1.1.1" - sources."body-parser-1.19.0" - sources."bytes-3.1.0" - sources."content-disposition-0.5.3" - sources."content-type-1.0.4" - sources."cookie-0.4.0" - sources."cookie-signature-1.0.6" - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."destroy-1.0.4" - sources."ee-first-1.1.1" - sources."encodeurl-1.0.2" - sources."escape-html-1.0.3" - sources."etag-1.8.1" - sources."finalhandler-1.1.2" - sources."forwarded-0.1.2" - sources."fresh-0.5.2" - sources."http-errors-1.7.2" - sources."iconv-lite-0.4.24" - sources."inherits-2.0.3" - sources."ipaddr.js-1.9.0" - sources."media-typer-0.3.0" - sources."merge-descriptors-1.0.1" - sources."methods-1.1.2" - sources."mime-1.6.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."ms-2.0.0" - sources."negotiator-0.6.2" - sources."on-finished-2.3.0" - sources."parseurl-1.3.3" - sources."path-to-regexp-0.1.7" - sources."proxy-addr-2.0.5" - sources."qs-6.7.0" - sources."range-parser-1.2.1" - sources."raw-body-2.4.0" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - (sources."send-0.17.1" // { - dependencies = [ - sources."ms-2.1.1" - ]; - }) - sources."serve-static-1.14.1" - sources."setprototypeof-1.1.1" - sources."statuses-1.5.0" - sources."toidentifier-1.0.0" - sources."type-is-1.6.18" - sources."unpipe-1.0.0" - sources."utils-merge-1.0.1" - sources."vary-1.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Fast, unopinionated, minimalist web framework"; - homepage = http://expressjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "express-session-^1.14.2" = nodeEnv.buildNodePackage { - name = "express-session"; - packageName = "express-session"; - version = "1.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/express-session/-/express-session-1.16.1.tgz"; - sha512 = "pWvUL8Tl5jUy1MLH7DhgUlpoKeVPUTe+y6WQD9YhcN0C5qAhsh4a8feVjiUXo3TFhIy191YGZ4tewW9edbl2xQ=="; - }; - dependencies = [ - sources."cookie-0.3.1" - sources."cookie-signature-1.0.6" - sources."debug-2.6.9" - sources."depd-2.0.0" - sources."ms-2.0.0" - sources."on-headers-1.0.2" - sources."parseurl-1.3.3" - sources."random-bytes-1.0.0" - sources."safe-buffer-5.1.2" - sources."uid-safe-2.1.5" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Simple session middleware for Express"; - homepage = "https://github.com/expressjs/session#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "file-saver-^1.3.3" = nodeEnv.buildNodePackage { - name = "file-saver"; - packageName = "file-saver"; - version = "1.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/file-saver/-/file-saver-1.3.8.tgz"; - sha512 = "spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "An HTML5 saveAs() FileSaver implementation"; - homepage = "https://github.com/eligrey/FileSaver.js#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "flowchart.js-^1.6.4" = nodeEnv.buildNodePackage { - name = "flowchart.js"; - packageName = "flowchart.js"; - version = "1.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/flowchart.js/-/flowchart.js-1.12.0.tgz"; - sha512 = "82mj9315e3+U87D147dbPu/MKBqAtngQu3JY1GFG0+3HmsT6yN/PbpI/tmjdchWEU3gAAKuVXxSGT9u3dNvYow=="; - }; - dependencies = [ - sources."eve-raphael-0.5.0" - sources."raphael-2.2.7" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "[![JS.ORG](https://img.shields.io/badge/js.org-flowchart-ffb400.svg?style=flat-square)](http://js.org)"; - homepage = http://flowchart.js.org/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "font-awesome-^4.7.0" = nodeEnv.buildNodePackage { - name = "font-awesome"; - packageName = "font-awesome"; - version = "4.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz"; - sha1 = "8fa8cf0411a1a31afd07b06d2902bb9fc815a133"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "The iconic font and CSS framework"; - homepage = http://fontawesome.io/; - license = "(OFL-1.1 AND MIT)"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "formidable-^1.0.17" = nodeEnv.buildNodePackage { - name = "formidable"; - packageName = "formidable"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz"; - sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A node.js module for parsing form data, especially file uploads."; - homepage = https://github.com/felixge/node-formidable; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "gist-embed-~2.6.0" = nodeEnv.buildNodePackage { - name = "gist-embed"; - packageName = "gist-embed"; - version = "2.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/gist-embed/-/gist-embed-2.6.0.tgz"; - sha1 = "1ea95703fa1fc2a1255419f6f06c67e9920649ab"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Ultra powered gist embedding for your website"; - homepage = "https://github.com/blairvanderhoof/gist-embed#readme"; - license = "BSD-2-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "graceful-fs-^4.1.11" = nodeEnv.buildNodePackage { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "4.1.15"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz"; - sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A drop-in replacement for fs, making various improvements."; - homepage = "https://github.com/isaacs/node-graceful-fs#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "handlebars-^4.0.6" = nodeEnv.buildNodePackage { - name = "handlebars"; - packageName = "handlebars"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz"; - sha512 = "nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw=="; - }; - dependencies = [ - sources."commander-2.20.0" - sources."minimist-0.0.10" - sources."neo-async-2.6.1" - sources."optimist-0.6.1" - sources."source-map-0.6.1" - sources."uglify-js-3.6.0" - sources."wordwrap-0.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Handlebars provides the power necessary to let you build semantic templates effectively with no frustration"; - homepage = http://www.handlebarsjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "helmet-^3.3.0" = nodeEnv.buildNodePackage { - name = "helmet"; - packageName = "helmet"; - version = "3.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/helmet/-/helmet-3.18.0.tgz"; - sha512 = "TsKlGE5UVkV0NiQ4PllV9EVfZklPjyzcMEMjWlyI/8S6epqgRT+4s4GHVgc25x0TixsKvp3L7c91HQQt5l0+QA=="; - }; - dependencies = [ - sources."camelize-1.0.0" - sources."content-security-policy-builder-2.0.0" - sources."dasherize-2.0.0" - sources."depd-2.0.0" - sources."dns-prefetch-control-0.1.0" - sources."dont-sniff-mimetype-1.0.0" - sources."expect-ct-0.2.0" - sources."feature-policy-0.3.0" - sources."frameguard-3.1.0" - sources."helmet-crossdomain-0.3.0" - sources."helmet-csp-2.7.1" - sources."hide-powered-by-1.0.0" - sources."hpkp-2.0.0" - sources."hsts-2.2.0" - sources."ienoopen-1.1.0" - sources."nocache-2.1.0" - sources."platform-1.3.5" - sources."referrer-policy-1.2.0" - sources."x-xss-protection-1.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "help secure Express/Connect apps with various HTTP headers"; - homepage = https://helmetjs.github.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "highlight.js-~9.12.0" = nodeEnv.buildNodePackage { - name = "highlight.js"; - packageName = "highlight.js"; - version = "9.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-9.12.0.tgz"; - sha1 = "e6d9dbe57cbefe60751f02af336195870c90c01e"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Syntax highlighting with language autodetection."; - homepage = https://highlightjs.org/; - license = "BSD-3-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "i18n-^0.8.3" = nodeEnv.buildNodePackage { - name = "i18n"; - packageName = "i18n"; - version = "0.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/i18n/-/i18n-0.8.3.tgz"; - sha1 = "2d8cf1c24722602c2041d01ba6ae5eaa51388f0e"; - }; - dependencies = [ - sources."abbrev-1.1.1" - (sources."ambi-2.5.0" // { - dependencies = [ - (sources."typechecker-4.7.0" // { - dependencies = [ - sources."editions-2.1.3" - ]; - }) - ]; - }) - sources."async-1.5.2" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."concat-map-0.0.1" - sources."csextends-1.2.0" - sources."debug-4.1.1" - sources."eachr-2.0.4" - sources."editions-1.3.4" - (sources."errlop-1.1.1" // { - dependencies = [ - sources."editions-2.1.3" - ]; - }) - (sources."extendr-2.1.0" // { - dependencies = [ - sources."typechecker-2.0.8" - ]; - }) - (sources."extract-opts-2.2.0" // { - dependencies = [ - sources."typechecker-2.0.8" - ]; - }) - sources."glob-6.0.4" - sources."graceful-fs-4.1.15" - sources."ignorefs-1.2.0" - sources."ignorepatterns-1.1.0" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."make-plural-3.0.6" - sources."math-interval-parser-1.1.0" - sources."messageformat-0.3.1" - sources."minimatch-3.0.4" - sources."minimist-1.2.0" - sources."ms-2.1.1" - sources."mustache-3.0.1" - sources."nopt-3.0.6" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."safefs-3.2.2" - sources."scandirectory-2.5.0" - sources."semver-5.7.0" - sources."sprintf-js-1.1.2" - sources."taskgroup-4.3.1" - sources."typechecker-2.1.0" - sources."watchr-2.4.13" - sources."wrappy-1.0.2" - sources."xregexp-2.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "lightweight translation module with dynamic json storage"; - homepage = http://github.com/mashpie/i18n-node; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "imgur-git+https://github.com/hackmdio/node-imgur.git" = nodeEnv.buildNodePackage { - name = "imgur"; - packageName = "imgur"; - version = "0.3.1"; - src = fetchgit { - url = "https://github.com/hackmdio/node-imgur.git"; - rev = "4fe9cfa3893505c34c49067483d85d3ad4376cd6"; - sha256 = "60c728bf600ffe40db8c0b902fc1974b50f367a2bff2cea6bb9f1e9d29fb3dae"; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."asap-2.0.6" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-1.1.11" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."commander-2.20.0" - sources."concat-map-0.0.1" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs.realpath-1.0.0" - sources."getpass-0.1.7" - sources."glob-7.1.4" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."http-signature-1.2.0" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."oauth-sign-0.9.0" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."performance-now-2.1.0" - sources."pop-iterate-1.0.1" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."q-2.0.3" - sources."qs-6.5.2" - sources."request-2.88.0" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sshpk-1.16.1" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uri-js-4.2.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."weak-map-1.0.5" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Upload images to imgur.com"; - homepage = https://github.com/kaimallea/node-imgur; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "ionicons-~2.0.1" = nodeEnv.buildNodePackage { - name = "ionicons"; - packageName = "ionicons"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ionicons/-/ionicons-2.0.1.tgz"; - sha1 = "ca398113293ea870244f538f0aabbd4b5b209a3e"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Ionicons - free and beautiful icons from the creators of Ionic Framework"; - homepage = "https://github.com/driftyco/ionicons#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "jquery-^3.1.1" = nodeEnv.buildNodePackage { - name = "jquery"; - packageName = "jquery"; - version = "3.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jquery/-/jquery-3.4.1.tgz"; - sha512 = "36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript library for DOM operations"; - homepage = https://jquery.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "jquery-mousewheel-^3.1.13" = nodeEnv.buildNodePackage { - name = "jquery-mousewheel"; - packageName = "jquery-mousewheel"; - version = "3.1.13"; - src = fetchurl { - url = "https://registry.npmjs.org/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz"; - sha1 = "06f0335f16e353a695e7206bf50503cb523a6ee5"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A jQuery plugin that adds cross-browser mouse wheel support."; - homepage = https://github.com/jquery/jquery-mousewheel; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "jquery-ui-^1.12.1" = nodeEnv.buildNodePackage { - name = "jquery-ui"; - packageName = "jquery-ui"; - version = "1.12.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz"; - sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library."; - homepage = http://jqueryui.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "js-cookie-^2.1.3" = nodeEnv.buildNodePackage { - name = "js-cookie"; - packageName = "js-cookie"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-cookie/-/js-cookie-2.2.0.tgz"; - sha1 = "1b2c279a6eece380a12168b92485265b35b1effb"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A simple, lightweight JavaScript API for handling cookies"; - homepage = "https://github.com/js-cookie/js-cookie#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "js-url-^2.3.0" = nodeEnv.buildNodePackage { - name = "js-url"; - packageName = "js-url"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-url/-/js-url-2.3.0.tgz"; - sha1 = "e0c02b622e89710749399f440d49056e72f70078"; - }; - dependencies = [ - sources."agent-base-4.3.0" - sources."ansi-regex-2.1.1" - sources."ansi-styles-3.2.1" - sources."async-limiter-1.0.0" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."buffer-from-1.1.1" - sources."chalk-2.4.2" - sources."cli-1.0.1" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."commander-2.20.0" - sources."concat-map-0.0.1" - sources."concat-stream-1.6.2" - sources."console-browserify-1.1.0" - sources."core-util-is-1.0.2" - sources."date-now-0.1.4" - sources."debug-4.1.1" - (sources."dom-serializer-0.1.1" // { - dependencies = [ - sources."entities-1.1.2" - ]; - }) - sources."domelementtype-1.3.1" - sources."domhandler-2.3.0" - sources."domutils-1.5.1" - sources."duplexer-0.1.1" - sources."entities-1.0.0" - sources."es6-promise-4.2.6" - sources."es6-promisify-5.0.0" - sources."escape-string-regexp-1.0.5" - sources."eventemitter2-5.0.1" - sources."exit-0.1.2" - (sources."extract-zip-1.6.7" // { - dependencies = [ - sources."debug-2.6.9" - sources."ms-2.0.0" - ]; - }) - sources."fd-slicer-1.0.1" - sources."figures-1.7.0" - sources."fs.realpath-1.0.0" - sources."glob-7.1.4" - sources."grunt-contrib-jshint-2.1.0" - sources."grunt-contrib-qunit-3.1.0" - sources."grunt-contrib-uglify-4.0.1" - sources."gzip-size-3.0.0" - sources."has-ansi-2.0.0" - sources."has-flag-3.0.0" - sources."hooker-0.2.3" - (sources."htmlparser2-3.8.3" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.1.14" - sources."string_decoder-0.10.31" - ]; - }) - (sources."https-proxy-agent-2.2.1" // { - dependencies = [ - sources."debug-3.2.6" - ]; - }) - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."jshint-2.10.2" - sources."lodash-4.17.11" - (sources."maxmin-2.1.0" // { - dependencies = [ - sources."ansi-styles-2.2.1" - sources."chalk-1.1.3" - sources."supports-color-2.0.0" - ]; - }) - sources."mime-2.4.3" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."ms-2.1.1" - sources."number-is-nan-1.0.1" - sources."object-assign-4.1.1" - sources."once-1.4.0" - sources."p-each-series-1.0.0" - sources."p-reduce-1.0.0" - sources."path-is-absolute-1.0.1" - sources."pend-1.2.0" - sources."pretty-bytes-3.0.1" - sources."process-nextick-args-2.0.0" - sources."progress-2.0.3" - sources."proxy-from-env-1.0.0" - sources."puppeteer-1.17.0" - sources."readable-stream-2.3.6" - sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" - sources."shelljs-0.3.0" - sources."source-map-0.6.1" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."strip-json-comments-1.0.4" - sources."supports-color-5.5.0" - sources."typedarray-0.0.6" - sources."uglify-js-3.6.0" - sources."uri-path-1.0.0" - sources."util-deprecate-1.0.2" - sources."wrappy-1.0.2" - sources."ws-6.2.1" - sources."yauzl-2.4.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A simple, lightweight url parser for JavaScript (~1.7 Kb minified, ~0.7Kb gzipped)."; - homepage = https://github.com/WillZWL/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "js-yaml-^3.7.0" = nodeEnv.buildNodePackage { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; - }; - dependencies = [ - sources."argparse-1.0.10" - sources."esprima-4.0.1" - sources."sprintf-js-1.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "YAML 1.2 parser and serializer"; - homepage = https://github.com/nodeca/js-yaml; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "jsdom-nogyp-^0.8.3" = nodeEnv.buildNodePackage { - name = "jsdom-nogyp"; - packageName = "jsdom-nogyp"; - version = "0.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; - sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."core-util-is-1.0.2" - sources."cssom-0.2.5" - (sources."cssstyle-0.2.37" // { - dependencies = [ - sources."cssom-0.3.6" - ]; - }) - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."dom-serializer-0.1.1" - sources."domelementtype-1.3.1" - sources."domhandler-2.4.2" - sources."domutils-1.7.0" - sources."ecc-jsbn-0.1.2" - sources."entities-1.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."getpass-0.1.7" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."htmlparser2-3.10.1" - sources."http-signature-1.2.0" - sources."inherits-2.0.3" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."nwmatcher-1.3.9" - sources."oauth-sign-0.9.0" - sources."performance-now-2.1.0" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."readable-stream-3.4.0" - sources."request-2.88.0" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sshpk-1.16.1" - sources."string_decoder-1.2.0" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."xmlhttprequest-1.8.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A JavaScript implementation of the W3C DOM, forked from jsdom, remove dependencies to contextify and node-gyp"; - license = { - type = "MIT"; - url = "http://github.com/tmpvar/jsdom/blob/master/LICENSE.txt"; - }; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "keymaster-^1.6.2" = nodeEnv.buildNodePackage { - name = "keymaster"; - packageName = "keymaster"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/keymaster/-/keymaster-1.6.2.tgz"; - sha1 = "e1ae54d0ea9488f9f60b66b668f02e9a1946c6eb"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "library for defining and dispatching keyboard shortcuts"; - homepage = https://github.com/madrobby/keymaster; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "list.js-^1.5.0" = nodeEnv.buildNodePackage { - name = "list.js"; - packageName = "list.js"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/list.js/-/list.js-1.5.0.tgz"; - sha1 = "a4cbfc8281ddefc02fdb2d30c8748bfae25fbcda"; - }; - dependencies = [ - sources."string-natural-compare-2.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The perfect library for lists. Supports search, sort, filters and flexibility. Built to be invisible and work on existing HTML"; - homepage = http://listjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "lodash-^4.17.4" = nodeEnv.buildNodePackage { - name = "lodash"; - packageName = "lodash"; - version = "4.17.11"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Lodash modular utilities."; - homepage = https://lodash.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "lz-string-1.4.4" = nodeEnv.buildNodePackage { - name = "lz-string"; - packageName = "lz-string"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz"; - sha1 = "c0d8eaf36059f705796e1e344811cf4c498d3a26"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "LZ-based compression algorithm"; - homepage = http://pieroxy.net/blog/pages/lz-string/index.html; - license = "WTFPL"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-^8.2.2" = nodeEnv.buildNodePackage { - name = "markdown-it"; - packageName = "markdown-it"; - version = "8.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz"; - sha512 = "GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ=="; - }; - dependencies = [ - sources."argparse-1.0.10" - sources."entities-1.1.2" - sources."linkify-it-2.1.0" - sources."mdurl-1.0.1" - sources."sprintf-js-1.0.3" - sources."uc.micro-1.0.6" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Markdown-it - modern pluggable markdown parser."; - homepage = "https://github.com/markdown-it/markdown-it#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-abbr-^1.0.4" = nodeEnv.buildNodePackage { - name = "markdown-it-abbr"; - packageName = "markdown-it-abbr"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz"; - sha1 = "d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8"; - }; - buildInputs = globalBuildInputs; - meta = { - description = " tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-abbr; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-container-^2.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-container"; - packageName = "markdown-it-container"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-container/-/markdown-it-container-2.0.0.tgz"; - sha1 = "0019b43fd02eefece2f1960a2895fba81a404695"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Plugin to create block-level custom containers for markdown-it markdown parser"; - homepage = "https://github.com/markdown-it/markdown-it-container#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-deflist-^2.0.1" = nodeEnv.buildNodePackage { - name = "markdown-it-deflist"; - packageName = "markdown-it-deflist"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-deflist/-/markdown-it-deflist-2.0.3.tgz"; - sha512 = "/BNZ8ksW42bflm1qQLnRI09oqU2847Z7MVavrR0MORyKLtiUYOMpwtlAfMSZAQU9UCvaUZMpgVAqoS3vpToJxw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "
tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-deflist; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-emoji-^1.3.0" = nodeEnv.buildNodePackage { - name = "markdown-it-emoji"; - packageName = "markdown-it-emoji"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz"; - sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Emoji plugin for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-emoji; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-footnote-^3.0.1" = nodeEnv.buildNodePackage { - name = "markdown-it-footnote"; - packageName = "markdown-it-footnote"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-footnote/-/markdown-it-footnote-3.0.1.tgz"; - sha1 = "7f3730747cacc86e2fe0bf8a17a710f34791517a"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Footnotes for markdown-it markdown parser."; - homepage = "https://github.com/markdown-it/markdown-it-footnote#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-imsize-^2.0.1" = nodeEnv.buildNodePackage { - name = "markdown-it-imsize"; - packageName = "markdown-it-imsize"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz"; - sha1 = "cca0427905d05338a247cb9ca9d968c5cddd5170"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Markdown-it plugin to specify image size"; - homepage = https://github.com/tatsy/markdown-it-imsize; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-ins-^2.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-ins"; - packageName = "markdown-it-ins"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz"; - sha1 = "a5aa6a30f1e2f71e9497567cfdff40f1fde67483"; - }; - buildInputs = globalBuildInputs; - meta = { - description = " tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-ins; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-mark-^2.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-mark"; - packageName = "markdown-it-mark"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz"; - sha1 = "46a1aa947105aed8188978e0a016179e404f42c7"; - }; - buildInputs = globalBuildInputs; - meta = { - description = " tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-mark; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-mathjax-^2.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-mathjax"; - packageName = "markdown-it-mathjax"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-mathjax/-/markdown-it-mathjax-2.0.0.tgz"; - sha1 = "ae2b4f4c5c719a03f9e475c664f7b2685231d9e9"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "[![Build Status](https://img.shields.io/travis/classeur/markdown-it-mathjax/master.svg?style=flat)](https://travis-ci.org/classeur/markdown-it-mathjax) [![NPM version](https://img.shields.io/npm/v/markdown-it-mathjax.svg?style=flat)](https://www.npmjs.org"; - homepage = "https://github.com/classeur/markdown-it-mathjax#readme"; - license = "ISC"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-regexp-^0.4.0" = nodeEnv.buildNodePackage { - name = "markdown-it-regexp"; - packageName = "markdown-it-regexp"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-regexp/-/markdown-it-regexp-0.4.0.tgz"; - sha1 = "d64d713eecec55ce4cfdeb321750ecc099e2c2dc"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "plugin that makes regexp replacement simple"; - homepage = https://github.com/rlidwka/markdown-it-regexp; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-sub-^1.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-sub"; - packageName = "markdown-it-sub"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz"; - sha1 = "375fd6026eae7ddcb012497f6411195ea1e3afe8"; - }; - buildInputs = globalBuildInputs; - meta = { - description = " tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-sub; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-it-sup-^1.0.0" = nodeEnv.buildNodePackage { - name = "markdown-it-sup"; - packageName = "markdown-it-sup"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz"; - sha1 = "cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3"; - }; - buildInputs = globalBuildInputs; - meta = { - description = " tag for markdown-it markdown parser."; - homepage = https://github.com/markdown-it/markdown-it-sup; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "markdown-pdf-^8.0.0" = nodeEnv.buildNodePackage { - name = "markdown-pdf"; - packageName = "markdown-pdf"; - version = "8.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-pdf/-/markdown-pdf-8.1.1.tgz"; - sha512 = "lpRyiNptdwArH6bG6Y8X13G5Qr/usTTDXxTp7zjhwxJ+cQO7Z6A1T265ZiN6PVDLzRNxxtcquQCIOpTC0U1NFg=="; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."argparse-0.1.16" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."async-1.5.2" - sources."asynckit-0.4.0" - sources."autolinker-0.15.3" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."buffer-from-1.1.1" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."commander-2.20.0" - sources."concat-stream-1.6.2" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."debug-2.6.9" - sources."delayed-stream-1.0.0" - sources."duplexer-0.1.1" - sources."ecc-jsbn-0.1.2" - sources."es6-promise-4.2.6" - sources."extend-3.0.2" - sources."extract-zip-1.6.7" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."fd-slicer-1.0.1" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-extra-1.0.0" - sources."getpass-0.1.7" - sources."graceful-fs-4.1.15" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."hasha-2.2.0" - sources."highlight.js-9.15.8" - sources."http-signature-1.2.0" - sources."inherits-2.0.3" - sources."is-stream-1.1.0" - sources."is-typedarray-1.0.0" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-2.4.0" - sources."jsprim-1.4.1" - sources."kew-0.7.0" - sources."klaw-1.3.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."ms-2.0.0" - sources."oauth-sign-0.9.0" - sources."os-tmpdir-1.0.2" - sources."pend-1.2.0" - sources."performance-now-2.1.0" - sources."phantomjs-prebuilt-2.1.16" - sources."pinkie-2.0.4" - sources."pinkie-promise-2.0.1" - sources."process-nextick-args-2.0.0" - sources."progress-1.1.8" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."readable-stream-2.3.6" - sources."remarkable-1.7.1" - sources."request-2.88.0" - sources."request-progress-2.0.1" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."series-stream-1.0.1" - sources."sshpk-1.16.1" - sources."stream-from-to-1.4.3" - sources."string_decoder-1.1.1" - sources."throttleit-1.0.0" - sources."through2-2.0.5" - sources."tmp-0.0.33" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."typedarray-0.0.6" - sources."underscore-1.7.0" - sources."underscore.string-2.4.0" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."which-1.3.1" - sources."xtend-4.0.1" - sources."yauzl-2.4.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Markdown to PDF converter"; - homepage = https://github.com/alanshaw/markdown-pdf; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "mathjax-~2.7.0" = nodeEnv.buildNodePackage { - name = "mathjax"; - packageName = "mathjax"; - version = "2.7.5"; - src = fetchurl { - url = "https://registry.npmjs.org/mathjax/-/mathjax-2.7.5.tgz"; - sha512 = "OzsJNitEHAJB3y4IIlPCAvS0yoXwYjlo2Y4kmm9KQzyIBZt2d8yKRalby3uTRNN4fZQiGL2iMXjpdP1u2Rq2DQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Beautiful math in all browsers. MathJax is an open-source JavaScript display engine for LaTeX, MathML, and AsciiMath notation that works in all browsers."; - homepage = "https://github.com/mathjax/MathJax#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "mermaid-~7.1.0" = nodeEnv.buildNodePackage { - name = "mermaid"; - packageName = "mermaid"; - version = "7.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mermaid/-/mermaid-7.1.2.tgz"; - sha512 = "bDLu3fQuf3/R0fNkNzB0GTaF7+6SxnZpfTs9DVQF1ougsuP23MBzvEIGfL0ML8zeyg7+J2D+0AaoLVhskW5ulw=="; - }; - dependencies = [ - sources."d3-3.5.17" - sources."dagre-d3-renderer-0.4.26" - sources."dagre-layout-0.8.8" - sources."graphlib-2.1.7" - sources."graphlibrary-2.2.0" - sources."he-1.2.0" - sources."lodash-4.17.11" - sources."moment-2.24.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs."; - homepage = "https://github.com/knsv/mermaid#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "mattermost-^3.4.0" = nodeEnv.buildNodePackage { - name = "mattermost"; - packageName = "mattermost"; - version = "3.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mattermost/-/mattermost-3.4.0.tgz"; - sha1 = "7e4958e1bc96c7da7bc5f179dd2c6ae5035a8857"; - }; - dependencies = [ - sources."async-1.5.2" - sources."combined-stream-1.0.8" - sources."component-emitter-1.2.1" - sources."cookiejar-2.0.6" - sources."core-util-is-1.0.2" - sources."debug-2.6.9" - sources."delayed-stream-1.0.0" - sources."extend-3.0.0" - sources."form-data-1.0.0-rc3" - sources."formidable-1.0.17" - sources."inherits-2.0.3" - sources."isarray-0.0.1" - sources."methods-1.1.2" - sources."mime-1.3.4" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."ms-2.0.0" - sources."qs-2.3.3" - sources."readable-stream-1.0.27-1" - sources."reduce-component-1.0.1" - sources."string_decoder-0.10.31" - sources."superagent-1.8.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Javascript library for interacting with the Mattermost API"; - homepage = https://www.mattermost.org/; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "meta-marked-^0.4.2" = nodeEnv.buildNodePackage { - name = "meta-marked"; - packageName = "meta-marked"; - version = "0.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/meta-marked/-/meta-marked-0.4.2.tgz"; - sha1 = "4a1fae344f53d7040aacabb723e2f432a37455f8"; - }; - dependencies = [ - sources."argparse-1.0.10" - sources."esprima-2.7.3" - sources."js-yaml-3.5.5" - sources."marked-0.3.19" - sources."sprintf-js-1.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The 'marked' markdown processor with a simple metadata system."; - homepage = "https://github.com/j201/meta-marked#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "method-override-^2.3.7" = nodeEnv.buildNodePackage { - name = "method-override"; - packageName = "method-override"; - version = "2.3.10"; - src = fetchurl { - url = "https://registry.npmjs.org/method-override/-/method-override-2.3.10.tgz"; - sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4"; - }; - dependencies = [ - sources."debug-2.6.9" - sources."methods-1.1.2" - sources."ms-2.0.0" - sources."parseurl-1.3.3" - sources."vary-1.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Override HTTP verbs"; - homepage = "https://github.com/expressjs/method-override#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "minimist-^1.2.0" = nodeEnv.buildNodePackage { - name = "minimist"; - packageName = "minimist"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "parse argument options"; - homepage = https://github.com/substack/minimist; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "minio-^6.0.0" = nodeEnv.buildNodePackage { - name = "minio"; - packageName = "minio"; - version = "6.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minio/-/minio-6.0.0.tgz"; - sha1 = "7e514d38eaacf2264556b232f1c2c063cc6ca7ba"; - }; - dependencies = [ - sources."async-1.5.2" - sources."block-stream2-1.1.0" - sources."buffer-from-1.1.1" - sources."concat-stream-1.6.2" - sources."core-util-is-1.0.2" - sources."defined-1.0.0" - sources."es6-error-2.1.1" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."json-stream-1.0.0" - sources."lodash-4.17.11" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."process-nextick-args-2.0.0" - sources."querystring-0.2.0" - sources."readable-stream-2.3.6" - sources."safe-buffer-5.1.2" - sources."sax-1.2.4" - sources."source-map-0.5.7" - sources."source-map-support-0.4.18" - sources."string_decoder-1.1.1" - (sources."through2-0.6.5" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."string_decoder-0.10.31" - ]; - }) - sources."typedarray-0.0.6" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."xml-1.0.1" - sources."xml2js-0.4.19" - sources."xmlbuilder-9.0.7" - sources."xtend-4.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "S3 Compatible Cloud Storage client"; - homepage = "https://github.com/minio/minio-js#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "moment-^2.17.1" = nodeEnv.buildNodePackage { - name = "moment"; - packageName = "moment"; - version = "2.24.0"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; - sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Parse, validate, manipulate, and display dates"; - homepage = http://momentjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "morgan-^1.7.0" = nodeEnv.buildNodePackage { - name = "morgan"; - packageName = "morgan"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/morgan/-/morgan-1.9.1.tgz"; - sha512 = "HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA=="; - }; - dependencies = [ - sources."basic-auth-2.0.1" - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."ee-first-1.1.1" - sources."ms-2.0.0" - sources."on-finished-2.3.0" - sources."on-headers-1.0.2" - sources."safe-buffer-5.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "HTTP request logger middleware for node.js"; - homepage = "https://github.com/expressjs/morgan#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "mysql-^2.12.0" = nodeEnv.buildNodePackage { - name = "mysql"; - packageName = "mysql"; - version = "2.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mysql/-/mysql-2.17.1.tgz"; - sha512 = "7vMqHQ673SAk5C8fOzTG2LpPcf3bNt0oL3sFpxPEEFp1mdlDcrLK0On7z8ZYKaaHrHwNcQ/MTUz7/oobZ2OyyA=="; - }; - dependencies = [ - sources."bignumber.js-7.2.1" - sources."core-util-is-1.0.2" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-2.0.0" - sources."readable-stream-2.3.6" - sources."safe-buffer-5.1.2" - sources."sqlstring-2.3.1" - sources."string_decoder-1.1.1" - sources."util-deprecate-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed."; - homepage = "https://github.com/mysqljs/mysql#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "node-uuid-^1.4.7" = nodeEnv.buildNodePackage { - name = "node-uuid"; - packageName = "node-uuid"; - version = "1.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; - sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Rigorous implementation of RFC4122 (v1 and v4) UUIDs."; - homepage = https://github.com/broofa/node-uuid; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "octicons-~4.4.0" = nodeEnv.buildNodePackage { - name = "octicons"; - packageName = "octicons"; - version = "4.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/octicons/-/octicons-4.4.0.tgz"; - sha1 = "aca3bd32f5dc1d907a8d0de744f78e0c54e19446"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A scalable set of icons handcrafted with <3 by GitHub."; - homepage = https://octicons.github.com/; - license = "(OFL-1.1 OR MIT)"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-^0.4.0" = nodeEnv.buildNodePackage { - name = "passport"; - packageName = "passport"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport/-/passport-0.4.0.tgz"; - sha1 = "c5095691347bd5ad3b5e180238c3914d16f05811"; - }; - dependencies = [ - sources."passport-strategy-1.0.0" - sources."pause-0.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Simple, unobtrusive authentication for Node.js."; - homepage = http://passportjs.org/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-dropbox-oauth2-^1.1.0" = nodeEnv.buildNodePackage { - name = "passport-dropbox-oauth2"; - packageName = "passport-dropbox-oauth2"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-dropbox-oauth2/-/passport-dropbox-oauth2-1.1.0.tgz"; - sha1 = "77c737636e4841944dfb82dfc42c3d8ab782c10e"; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-oauth-1.0.0" - sources."passport-oauth1-1.1.0" - sources."passport-oauth2-1.5.0" - sources."passport-strategy-1.0.0" - sources."pkginfo-0.2.3" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Dropbox OAuth 2.0 authentication strategy for Passport."; - homepage = "https://github.com/florianheinemann/passport-dropbox-oauth2#readme"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-facebook-^2.1.1" = nodeEnv.buildNodePackage { - name = "passport-facebook"; - packageName = "passport-facebook"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-facebook/-/passport-facebook-2.1.1.tgz"; - sha1 = "c39d0b52ae4d59163245a4e21a7b9b6321303311"; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-oauth2-1.5.0" - sources."passport-strategy-1.0.0" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Facebook authentication strategy for Passport."; - homepage = "https://github.com/jaredhanson/passport-facebook#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-github-^1.1.0" = nodeEnv.buildNodePackage { - name = "passport-github"; - packageName = "passport-github"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-github/-/passport-github-1.1.0.tgz"; - sha1 = "8ce1e3fcd61ad7578eb1df595839e4aea12355d4"; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-oauth2-1.5.0" - sources."passport-strategy-1.0.0" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "GitHub authentication strategy for Passport."; - homepage = "https://github.com/jaredhanson/passport-github#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-gitlab2-^4.0.0" = nodeEnv.buildNodePackage { - name = "passport-gitlab2"; - packageName = "passport-gitlab2"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-gitlab2/-/passport-gitlab2-4.0.0.tgz"; - sha512 = "C/8/L8piHwv57J6fY/MzsEJc8yCkgsyBSzMWxfTfEHRvCaTkD08vJ5b/txydKrWrRPl4MHuZfisFnKlZHmq4yw=="; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-oauth2-1.5.0" - sources."passport-strategy-1.0.0" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "GitLab authentication strategy for Passport."; - homepage = "https://github.com/fh1ch/passport-gitlab2#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-google-oauth20-^1.0.0" = nodeEnv.buildNodePackage { - name = "passport-google-oauth20"; - packageName = "passport-google-oauth20"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz"; - sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0"; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-oauth2-1.5.0" - sources."passport-strategy-1.0.0" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Google (OAuth 2.0) authentication strategy for Passport."; - homepage = "https://github.com/jaredhanson/passport-google-oauth2#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-ldapauth-^2.0.0" = nodeEnv.buildNodePackage { - name = "passport-ldapauth"; - packageName = "passport-ldapauth"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-ldapauth/-/passport-ldapauth-2.1.3.tgz"; - sha512 = "23n425UTasN6XhcXG0qQ0h0YrS/zfo8kNIEhSLfPsNpglhYhhQFfB1pmDc5RrH+Kiz5fKLkki5BpvkKHCwkixg=="; - }; - dependencies = [ - sources."@types/body-parser-1.17.0" - sources."@types/connect-3.4.32" - sources."@types/express-4.17.0" - sources."@types/express-serve-static-core-4.16.6" - sources."@types/ldapjs-1.0.4" - sources."@types/mime-2.0.1" - sources."@types/node-10.14.8" - sources."@types/passport-1.0.0" - sources."@types/range-parser-1.2.3" - sources."@types/serve-static-1.13.2" - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - sources."backoff-2.5.0" - sources."balanced-match-1.0.0" - sources."bcryptjs-2.4.3" - sources."brace-expansion-1.1.11" - sources."bunyan-1.8.12" - sources."concat-map-0.0.1" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."dtrace-provider-0.8.7" - sources."extsprintf-1.2.0" - sources."glob-6.0.4" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - (sources."ldap-filter-0.2.2" // { - dependencies = [ - sources."assert-plus-0.1.5" - ]; - }) - sources."ldapauth-fork-4.2.0" - sources."ldapjs-1.0.2" - sources."lru-cache-5.1.1" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."moment-2.24.0" - sources."mv-2.1.1" - sources."nan-2.14.0" - sources."ncp-2.0.0" - sources."once-1.4.0" - sources."passport-strategy-1.0.0" - sources."path-is-absolute-1.0.1" - sources."precond-0.2.3" - sources."rimraf-2.4.5" - sources."safe-json-stringify-1.2.0" - (sources."vasync-1.6.4" // { - dependencies = [ - sources."verror-1.6.0" - ]; - }) - sources."verror-1.10.0" - sources."wrappy-1.0.2" - sources."yallist-3.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "LDAP authentication strategy for Passport"; - homepage = "https://github.com/vesse/passport-ldapauth#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-local-^1.0.0" = nodeEnv.buildNodePackage { - name = "passport-local"; - packageName = "passport-local"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz"; - sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee"; - }; - dependencies = [ - sources."passport-strategy-1.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Local username and password authentication strategy for Passport."; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-oauth2-^1.4.0" = nodeEnv.buildNodePackage { - name = "passport-oauth2"; - packageName = "passport-oauth2"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.5.0.tgz"; - sha512 = "kqBt6vR/5VlCK8iCx1/KpY42kQ+NEHZwsSyt4Y6STiNjU+wWICG1i8ucc1FapXDGO15C5O5VZz7+7vRzrDPXXQ=="; - }; - dependencies = [ - sources."base64url-3.0.1" - sources."oauth-0.9.15" - sources."passport-strategy-1.0.0" - sources."uid2-0.0.3" - sources."utils-merge-1.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "OAuth 2.0 authentication strategy for Passport."; - homepage = "https://github.com/jaredhanson/passport-oauth2#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-twitter-^1.0.4" = nodeEnv.buildNodePackage { - name = "passport-twitter"; - packageName = "passport-twitter"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-twitter/-/passport-twitter-1.0.4.tgz"; - sha1 = "01a799e1f760bf2de49f2ba5fba32282f18932d7"; - }; - dependencies = [ - sources."oauth-0.9.15" - sources."passport-oauth1-1.1.0" - sources."passport-strategy-1.0.0" - sources."utils-merge-1.0.1" - sources."xmldom-0.1.27" - sources."xtraverse-0.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Twitter authentication strategy for Passport."; - homepage = "https://github.com/jaredhanson/passport-twitter#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport-saml-^0.31.0" = nodeEnv.buildNodePackage { - name = "passport-saml"; - packageName = "passport-saml"; - version = "0.31.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-saml/-/passport-saml-0.31.0.tgz"; - sha1 = "e4d654cab30f018bfd39056efe7bcfa770aab463"; - }; - dependencies = [ - sources."async-2.6.2" - sources."ejs-2.6.1" - sources."lodash-4.17.11" - sources."node-forge-0.7.6" - sources."passport-strategy-1.0.0" - sources."q-1.5.1" - sources."sax-1.2.4" - (sources."xml-crypto-0.10.1" // { - dependencies = [ - sources."xmldom-0.1.19" - ]; - }) - sources."xml-encryption-0.11.2" - sources."xml2js-0.4.19" - sources."xmlbuilder-9.0.7" - sources."xmldom-0.1.27" - sources."xpath-0.0.27" - sources."xpath.js-1.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "SAML 2.0 authentication strategy for Passport"; - homepage = "https://github.com/bergie/passport-saml#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "passport.socketio-^3.7.0" = nodeEnv.buildNodePackage { - name = "passport.socketio"; - packageName = "passport.socketio"; - version = "3.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport.socketio/-/passport.socketio-3.7.0.tgz"; - sha1 = "2ee5fafe9695d4281c8cddd3fe975ecd18e6726e"; - }; - dependencies = [ - sources."xtend-4.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "access passport.js authenticated user information from socket.io"; - homepage = "https://github.com/jfromaniello/passport.socketio#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "pdfobject-^2.0.201604172" = nodeEnv.buildNodePackage { - name = "pdfobject"; - packageName = "pdfobject"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pdfobject/-/pdfobject-2.1.1.tgz"; - sha512 = "QFktTHyjs4q/WhGFfV2RdAbscPdNkyQb/JfFz18cwILvs9ocDiYVFAEh/jgkKGv6my+r4nlbLjwj7BHFKAupHQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "An open-source standards-friendly JavaScript utility for embedding PDF files into HTML documents"; - homepage = "https://github.com/pipwerks/PDFObject#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "pg-^6.1.2" = nodeEnv.buildNodePackage { - name = "pg"; - packageName = "pg"; - version = "6.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pg/-/pg-6.4.2.tgz"; - sha1 = "c364011060eac7a507a2ae063eb857ece910e27f"; - }; - dependencies = [ - sources."buffer-writer-1.0.1" - sources."generic-pool-2.4.3" - sources."js-string-escape-1.0.1" - sources."object-assign-4.1.0" - sources."packet-reader-0.3.1" - sources."pg-connection-string-0.1.3" - sources."pg-int8-1.0.1" - sources."pg-pool-1.8.0" - sources."pg-types-1.13.0" - sources."pgpass-1.0.2" - sources."postgres-array-1.0.3" - sources."postgres-bytea-1.0.0" - sources."postgres-date-1.0.4" - sources."postgres-interval-1.2.0" - sources."semver-4.3.2" - sources."split-1.0.1" - sources."through-2.3.8" - sources."xtend-4.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "PostgreSQL client - pure javascript & libpq with the same API"; - homepage = http://github.com/brianc/node-postgres; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "pg-hstore-^2.3.2" = nodeEnv.buildNodePackage { - name = "pg-hstore"; - packageName = "pg-hstore"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pg-hstore/-/pg-hstore-2.3.3.tgz"; - sha512 = "qpeTpdkguFgfdoidtfeTho1Q1zPVPbtMHgs8eQ+Aan05iLmIs3Z3oo5DOZRclPGoQ4i68I1kCtQSJSa7i0ZVYg=="; - }; - dependencies = [ - sources."underscore-1.9.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "An module for serializing and deserializing JSON data in to hstore format"; - homepage = https://github.com/scarney81/pg-hstore; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "prismjs-^1.6.0" = nodeEnv.buildNodePackage { - name = "prismjs"; - packageName = "prismjs"; - version = "1.16.0"; - src = fetchurl { - url = "https://registry.npmjs.org/prismjs/-/prismjs-1.16.0.tgz"; - sha512 = "OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA=="; - }; - dependencies = [ - sources."clipboard-2.0.4" - sources."delegate-3.2.0" - sources."good-listener-1.2.2" - sources."select-1.1.2" - sources."tiny-emitter-2.1.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Lightweight, robust, elegant syntax highlighting. A spin-off project from Dabblet."; - homepage = "https://github.com/LeaVerou/prism#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "randomcolor-^0.5.3" = nodeEnv.buildNodePackage { - name = "randomcolor"; - packageName = "randomcolor"; - version = "0.5.4"; - src = fetchurl { - url = "https://registry.npmjs.org/randomcolor/-/randomcolor-0.5.4.tgz"; - sha512 = "nYd4nmTuuwMFzHL6W+UWR5fNERGZeVauho8mrJDUSXdNDbao4rbrUwhuLgKC/j8VCS5+34Ria8CsTDuBjrIrQA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A tiny script for generating attractive random colors"; - homepage = https://randomcolor.lllllllllllllllll.com/; - license = "CC0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "raphael-git+https://github.com/dmitrybaranovskiy/raphael" = nodeEnv.buildNodePackage { - name = "raphael"; - packageName = "raphael"; - version = "2.2.8"; - src = fetchgit { - url = "https://github.com/dmitrybaranovskiy/raphael"; - rev = "bf3dcd35317f76f915bcd04ed9db36a1b3775c4d"; - sha256 = "79245aeeab138e9a5137196d290536394bd376bbd0e92883c91d7cee9bea3274"; - }; - dependencies = [ - sources."eve-raphael-0.5.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "JavaScript Vector Library"; - homepage = http://dmitrybaranovskiy.github.io/raphael/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "readline-sync-^1.4.7" = nodeEnv.buildNodePackage { - name = "readline-sync"; - packageName = "readline-sync"; - version = "1.4.9"; - src = fetchurl { - url = "https://registry.npmjs.org/readline-sync/-/readline-sync-1.4.9.tgz"; - sha1 = "3eda8e65f23cd2a17e61301b1f0003396af5ecda"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Synchronous Readline for interactively running to have a conversation with the user via a console(TTY)."; - homepage = https://github.com/anseki/readline-sync; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "request-^2.79.0" = nodeEnv.buildNodePackage { - name = "request"; - packageName = "request"; - version = "2.88.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; - sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; - }; - dependencies = [ - sources."ajv-6.10.0" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."caseless-0.12.0" - sources."combined-stream-1.0.8" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."getpass-0.1.7" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."http-signature-1.2.0" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."oauth-sign-0.9.0" - sources."performance-now-2.1.0" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sshpk-1.16.1" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uri-js-4.2.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Simplified HTTP request client."; - homepage = "https://github.com/request/request#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "reveal.js-~3.6.0" = nodeEnv.buildNodePackage { - name = "reveal.js"; - packageName = "reveal.js"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/reveal.js/-/reveal.js-3.6.0.tgz"; - sha512 = "ZhXBWoDiaNySAJgs3XqmkHTmjR3Dkkhyy89VY8PLzXBDwNhP7ZEGtBT1H3xJRCEGOD4ScLJBbU75PRiPLQgWgw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "The HTML Presentation Framework"; - homepage = http://revealjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "scrypt-^6.0.3" = nodeEnv.buildNodePackage { - name = "scrypt"; - packageName = "scrypt"; - version = "6.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/scrypt/-/scrypt-6.0.3.tgz"; - sha1 = "04e014a5682b53fa50c2d5cce167d719c06d870d"; - }; - dependencies = [ - sources."nan-2.14.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The scrypt crypto library for NodeJS"; - homepage = https://github.com/barrysteyn/node-scrypt; - license = "zlib"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "select2-^3.5.2-browserify" = nodeEnv.buildNodePackage { - name = "select2"; - packageName = "select2"; - version = "3.5.2-browserify"; - src = fetchurl { - url = "https://registry.npmjs.org/select2/-/select2-3.5.2-browserify.tgz"; - sha1 = "dc4dafda38d67a734e8a97a46f0d3529ae05391d"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Browserify-ed version of Select2."; - homepage = http://ivaynberg.github.io/select2; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "sequelize-^3.28.0" = nodeEnv.buildNodePackage { - name = "sequelize"; - packageName = "sequelize"; - version = "3.34.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sequelize/-/sequelize-3.34.0.tgz"; - sha512 = "smJMYZ+JniYZ2Ja4GPaEC0/mkvCNnRl7mM958hZQP9dpXNbSS/wPFUNrn0mnfpWRk8Ob/3zo0H1qxQbXKgcIzw=="; - }; - dependencies = [ - sources."@types/geojson-1.0.6" - sources."bluebird-3.5.5" - sources."debug-2.6.9" - sources."depd-1.1.2" - sources."dottie-1.1.1" - sources."generic-pool-2.4.2" - sources."inflection-1.12.0" - sources."lodash-4.17.11" - sources."moment-2.24.0" - sources."moment-timezone-0.5.25" - sources."ms-2.0.0" - sources."retry-as-promised-2.3.2" - sources."semver-5.7.0" - sources."shimmer-1.1.0" - sources."terraformer-1.0.9" - sources."terraformer-wkt-parser-1.2.0" - sources."toposort-class-1.0.1" - sources."uuid-3.3.2" - sources."validator-5.7.0" - sources."wkx-0.2.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Multi dialect ORM for Node.JS/io.js"; - homepage = "https://github.com/sequelize/sequelize#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "sequelize-cli-^2.5.1" = nodeEnv.buildNodePackage { - name = "sequelize-cli"; - packageName = "sequelize-cli"; - version = "2.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sequelize-cli/-/sequelize-cli-2.8.0.tgz"; - sha1 = "4304cce60e499169603f838dedbab421c9849e74"; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."ansi-gray-0.1.1" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."ansi-wrap-0.1.0" - sources."archy-1.0.0" - sources."arr-diff-2.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-differ-1.0.0" - sources."array-each-1.0.1" - sources."array-slice-1.1.0" - sources."array-uniq-1.0.3" - sources."array-unique-0.2.1" - sources."assign-symbols-1.0.0" - sources."atob-2.1.2" - sources."balanced-match-1.0.0" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."beeper-1.1.1" - sources."bluebird-3.5.5" - sources."brace-expansion-1.1.11" - sources."braces-1.8.5" - (sources."cache-base-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."camelcase-4.1.0" - sources."chalk-1.1.3" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (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."isobject-3.0.1" - sources."kind-of-5.1.0" - ]; - }) - sources."cli-color-1.2.0" - (sources."cliui-3.2.0" // { - dependencies = [ - sources."string-width-1.0.2" - ]; - }) - sources."clone-1.0.4" - sources."clone-stats-0.0.1" - sources."code-point-at-1.1.0" - sources."collection-visit-1.0.0" - sources."color-support-1.1.3" - sources."commander-2.20.0" - sources."component-emitter-1.3.0" - sources."concat-map-0.0.1" - sources."config-chain-1.1.12" - sources."copy-descriptor-0.1.1" - sources."core-util-is-1.0.2" - (sources."cross-spawn-5.1.0" // { - dependencies = [ - sources."lru-cache-4.1.5" - ]; - }) - sources."d-1.0.0" - sources."dateformat-2.2.0" - sources."debug-2.6.9" - sources."decamelize-1.2.0" - sources."decode-uri-component-0.2.0" - sources."defaults-1.0.3" - (sources."define-property-2.0.2" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."deprecated-0.0.1" - sources."detect-file-0.1.0" - sources."duplexer2-0.0.2" - (sources."editorconfig-0.15.3" // { - dependencies = [ - sources."lru-cache-4.1.5" - sources."semver-5.7.0" - ]; - }) - sources."end-of-stream-0.1.5" - sources."error-ex-1.3.2" - sources."es5-ext-0.10.50" - sources."es6-iterator-2.0.3" - sources."es6-symbol-3.1.1" - sources."es6-weak-map-2.0.2" - sources."escape-string-regexp-1.0.5" - sources."event-emitter-0.3.5" - sources."execa-0.7.0" - sources."expand-brackets-0.1.5" - sources."expand-range-1.8.2" - sources."expand-tilde-1.2.2" - sources."extend-3.0.2" - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."extglob-0.3.2" - sources."fancy-log-1.3.3" - sources."filename-regex-2.0.1" - sources."fill-range-2.2.4" - sources."find-index-0.1.1" - sources."find-up-2.1.0" - sources."findup-sync-1.0.0" - (sources."fined-1.2.0" // { - dependencies = [ - sources."expand-tilde-2.0.2" - ]; - }) - sources."first-chunk-stream-1.0.0" - sources."flagged-respawn-1.0.1" - sources."for-in-1.0.2" - sources."for-own-0.1.5" - sources."fragment-cache-0.2.1" - sources."fs-exists-sync-0.1.0" - sources."fs-extra-4.0.3" - sources."fs.realpath-1.0.0" - sources."gaze-0.5.2" - sources."get-caller-file-1.0.3" - sources."get-stream-3.0.0" - sources."get-value-2.0.6" - sources."glob-4.5.3" - sources."glob-base-0.3.0" - sources."glob-parent-2.0.0" - (sources."glob-stream-3.1.18" // { - dependencies = [ - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."through2-0.6.5" - ]; - }) - sources."glob-watcher-0.0.6" - sources."glob2base-0.0.12" - sources."global-modules-0.2.3" - sources."global-prefix-0.1.5" - (sources."globule-0.1.0" // { - dependencies = [ - sources."glob-3.1.21" - sources."graceful-fs-1.2.3" - sources."inherits-1.0.2" - sources."lodash-1.0.2" - sources."minimatch-0.2.14" - ]; - }) - sources."glogg-1.0.2" - sources."graceful-fs-4.1.15" - sources."gulp-3.9.1" - sources."gulp-help-1.6.1" - sources."gulp-util-3.0.8" - sources."gulplog-1.0.0" - sources."has-ansi-2.0.0" - sources."has-gulplog-0.1.0" - (sources."has-value-1.0.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."has-values-1.0.0" // { - dependencies = [ - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."kind-of-4.0.0" - ]; - }) - sources."homedir-polyfill-1.0.3" - sources."hosted-git-info-2.7.1" - sources."inflight-1.0.6" - sources."inherits-2.0.3" - sources."ini-1.3.5" - sources."interpret-1.2.0" - sources."invert-kv-1.0.0" - (sources."is-absolute-1.0.0" // { - dependencies = [ - sources."is-windows-1.0.2" - ]; - }) - (sources."is-accessor-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-arrayish-0.2.1" - sources."is-buffer-1.1.6" - (sources."is-data-descriptor-1.0.0" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - (sources."is-descriptor-1.0.2" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."is-dotfile-1.0.3" - sources."is-equal-shallow-0.1.3" - sources."is-extendable-0.1.1" - sources."is-extglob-1.0.0" - sources."is-fullwidth-code-point-1.0.0" - sources."is-glob-2.0.1" - sources."is-number-2.1.0" - (sources."is-plain-object-2.0.4" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."is-posix-bracket-0.1.1" - sources."is-primitive-2.0.0" - sources."is-promise-2.1.0" - sources."is-relative-1.0.0" - sources."is-stream-1.1.0" - sources."is-unc-path-1.0.0" - sources."is-utf8-0.2.1" - sources."is-windows-0.2.0" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isobject-2.1.0" - (sources."js-beautify-1.10.0" // { - dependencies = [ - sources."glob-7.1.4" - sources."minimatch-3.0.4" - ]; - }) - sources."jsonfile-4.0.0" - sources."kind-of-3.2.2" - sources."lcid-1.0.0" - (sources."liftoff-2.5.0" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."detect-file-1.0.0" - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - ]; - }) - sources."expand-tilde-2.0.2" - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."findup-sync-2.0.0" - sources."global-modules-1.0.0" - sources."global-prefix-1.0.2" - (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" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - sources."is-extglob-2.1.1" - sources."is-glob-3.1.0" - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-windows-1.0.2" - sources."isobject-3.0.1" - sources."kind-of-6.0.2" - sources."micromatch-3.1.10" - sources."resolve-dir-1.0.1" - ]; - }) - (sources."load-json-file-2.0.0" // { - dependencies = [ - sources."strip-bom-3.0.0" - ]; - }) - sources."locate-path-2.0.0" - sources."lodash-4.17.11" - sources."lodash._basecopy-3.0.1" - sources."lodash._basetostring-3.0.1" - sources."lodash._basevalues-3.0.0" - sources."lodash._getnative-3.9.1" - sources."lodash._isiterateecall-3.0.9" - sources."lodash._reescape-3.0.0" - sources."lodash._reevaluate-3.0.0" - sources."lodash._reinterpolate-3.0.0" - sources."lodash._root-3.0.1" - sources."lodash.escape-3.2.0" - sources."lodash.isarguments-3.1.0" - sources."lodash.isarray-3.0.4" - sources."lodash.keys-3.1.2" - sources."lodash.restparam-3.6.1" - sources."lodash.template-3.6.2" - sources."lodash.templatesettings-3.1.1" - sources."lru-cache-2.7.3" - sources."lru-queue-0.1.0" - (sources."make-iterator-1.0.1" // { - dependencies = [ - sources."kind-of-6.0.2" - ]; - }) - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - sources."math-random-1.0.4" - sources."mem-1.1.0" - sources."memoizee-0.4.14" - sources."micromatch-2.3.11" - sources."mimic-fn-1.2.0" - sources."minimatch-2.0.10" - sources."minimist-1.2.0" - (sources."mixin-deep-1.3.1" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - (sources."mkdirp-0.5.1" // { - dependencies = [ - sources."minimist-0.0.8" - ]; - }) - sources."moment-2.24.0" - sources."ms-2.0.0" - sources."multipipe-0.1.2" - (sources."nanomatch-1.2.13" // { - dependencies = [ - sources."arr-diff-4.0.0" - sources."array-unique-0.3.2" - sources."is-windows-1.0.2" - sources."kind-of-6.0.2" - ]; - }) - sources."natives-1.1.6" - sources."next-tick-1.0.0" - sources."nopt-4.0.1" - sources."normalize-package-data-2.5.0" - sources."normalize-path-2.1.1" - sources."npm-run-path-2.0.2" - sources."number-is-nan-1.0.1" - sources."object-assign-3.0.0" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - ]; - }) - (sources."object-visit-1.0.1" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - (sources."object.defaults-1.1.0" // { - dependencies = [ - sources."for-own-1.0.0" - sources."isobject-3.0.1" - ]; - }) - (sources."object.map-1.0.1" // { - dependencies = [ - sources."for-own-1.0.0" - ]; - }) - sources."object.omit-2.0.1" - (sources."object.pick-1.3.0" // { - dependencies = [ - sources."isobject-3.0.1" - ]; - }) - sources."once-1.3.3" - sources."orchestrator-0.3.8" - sources."ordered-read-streams-0.1.0" - sources."os-homedir-1.0.2" - sources."os-locale-2.1.0" - sources."os-tmpdir-1.0.2" - sources."osenv-0.1.5" - sources."p-finally-1.0.0" - sources."p-limit-1.3.0" - sources."p-locate-2.0.0" - sources."p-try-1.0.0" - sources."parse-filepath-1.0.2" - sources."parse-glob-3.0.4" - sources."parse-json-2.2.0" - sources."parse-node-version-1.0.1" - sources."parse-passwd-1.0.0" - sources."pascalcase-0.1.1" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-key-2.0.1" - sources."path-parse-1.0.6" - sources."path-root-0.1.1" - sources."path-root-regex-0.1.2" - sources."path-type-2.0.0" - sources."pify-2.3.0" - sources."posix-character-classes-0.1.1" - sources."preserve-0.2.0" - sources."pretty-hrtime-1.0.3" - sources."process-nextick-args-2.0.0" - sources."proto-list-1.2.4" - sources."pseudomap-1.0.2" - (sources."randomatic-3.1.1" // { - dependencies = [ - sources."is-number-4.0.0" - sources."kind-of-6.0.2" - ]; - }) - sources."read-pkg-2.0.0" - sources."read-pkg-up-2.0.0" - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."isarray-0.0.1" - ]; - }) - sources."rechoir-0.6.2" - sources."redefine-0.2.1" - sources."regex-cache-0.4.4" - sources."regex-not-1.0.2" - sources."remove-trailing-separator-1.1.0" - sources."repeat-element-1.1.3" - sources."repeat-string-1.6.1" - sources."replace-ext-0.0.1" - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."resolve-1.11.1" - sources."resolve-dir-0.1.1" - sources."resolve-url-0.2.1" - sources."ret-0.1.15" - sources."safe-buffer-5.1.2" - sources."safe-regex-1.1.0" - sources."semver-4.3.6" - sources."sequencify-0.0.7" - sources."set-blocking-2.0.0" - (sources."set-value-2.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" - sources."sigmund-1.0.1" - sources."signal-exit-3.0.2" - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - sources."isobject-3.0.1" - ]; - }) - sources."snapdragon-util-3.0.1" - sources."source-map-0.5.7" - sources."source-map-resolve-0.5.2" - sources."source-map-url-0.4.0" - sources."sparkles-1.0.1" - sources."spdx-correct-3.1.0" - sources."spdx-exceptions-2.2.0" - sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.4" - sources."split-string-3.1.0" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - sources."stream-consume-0.1.1" - (sources."string-width-2.1.1" // { - dependencies = [ - sources."ansi-regex-3.0.0" - sources."is-fullwidth-code-point-2.0.0" - sources."strip-ansi-4.0.0" - ]; - }) - sources."string_decoder-0.10.31" - sources."strip-ansi-3.0.1" - sources."strip-bom-1.0.0" - sources."strip-eof-1.0.0" - sources."supports-color-2.0.0" - (sources."through2-2.0.5" // { - dependencies = [ - sources."readable-stream-2.3.6" - sources."string_decoder-1.1.1" - ]; - }) - sources."tildify-1.2.0" - sources."time-stamp-1.1.0" - sources."timers-ext-0.1.7" - sources."to-object-path-0.3.0" - sources."to-regex-3.0.2" - (sources."to-regex-range-2.1.1" // { - dependencies = [ - sources."is-number-3.0.0" - ]; - }) - sources."umzug-1.12.0" - sources."unc-path-regex-0.1.2" - (sources."union-value-1.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - sources."set-value-0.4.3" - ]; - }) - sources."unique-stream-1.0.0" - sources."universalify-0.1.2" - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - sources."isobject-3.0.1" - ]; - }) - sources."urix-0.1.0" - sources."use-3.1.1" - sources."user-home-1.1.1" - sources."util-deprecate-1.0.2" - sources."v8flags-2.1.1" - sources."validate-npm-package-license-3.0.4" - sources."vinyl-0.5.3" - (sources."vinyl-fs-0.3.14" // { - dependencies = [ - sources."clone-0.2.0" - sources."graceful-fs-3.0.11" - sources."isarray-0.0.1" - sources."readable-stream-1.0.34" - sources."through2-0.6.5" - sources."vinyl-0.4.6" - ]; - }) - sources."which-1.3.1" - sources."which-module-2.0.0" - (sources."wrap-ansi-2.1.0" // { - dependencies = [ - sources."string-width-1.0.2" - ]; - }) - sources."wrappy-1.0.2" - sources."xtend-4.0.1" - sources."y18n-3.2.1" - sources."yallist-2.1.2" - sources."yargs-8.0.2" - sources."yargs-parser-7.0.0" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The Sequelize CLI"; - homepage = https://github.com/sequelize/cli; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "shortid-2.2.8" = nodeEnv.buildNodePackage { - name = "shortid"; - packageName = "shortid"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/shortid/-/shortid-2.2.8.tgz"; - sha1 = "033b117d6a2e975804f6f0969dbe7d3d0b355131"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Amazingly short non-sequential url-friendly unique id generator."; - homepage = https://github.com/dylang/shortid; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "socket.io-~2.0.4" = nodeEnv.buildNodePackage { - name = "socket.io"; - packageName = "socket.io"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.0.4.tgz"; - sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014"; - }; - dependencies = [ - sources."accepts-1.3.7" - sources."after-0.8.2" - sources."arraybuffer.slice-0.0.7" - sources."async-limiter-1.0.0" - sources."backo2-1.0.2" - sources."base64-arraybuffer-0.1.5" - sources."base64id-1.0.0" - sources."better-assert-1.0.2" - sources."blob-0.0.5" - sources."callsite-1.0.0" - sources."component-bind-1.0.0" - 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."engine.io-parser-2.1.3" - sources."has-binary2-1.0.3" - sources."has-cors-1.1.0" - sources."indexof-0.0.1" - sources."isarray-2.0.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."ms-2.0.0" - sources."negotiator-0.6.2" - sources."object-component-0.0.3" - sources."parseqs-0.0.5" - sources."parseuri-0.0.5" - sources."safe-buffer-5.1.2" - 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."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" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "node.js realtime framework server"; - homepage = "https://github.com/socketio/socket.io#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "socket.io-client-~2.0.4" = nodeEnv.buildNodePackage { - name = "socket.io-client"; - packageName = "socket.io-client"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.0.4.tgz"; - sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e"; - }; - dependencies = [ - sources."after-0.8.2" - sources."arraybuffer.slice-0.0.7" - sources."async-limiter-1.0.0" - sources."backo2-1.0.2" - sources."base64-arraybuffer-0.1.5" - sources."better-assert-1.0.2" - sources."blob-0.0.5" - sources."callsite-1.0.0" - sources."component-bind-1.0.0" - sources."component-emitter-1.2.1" - sources."component-inherit-0.0.3" - sources."debug-2.6.9" - (sources."engine.io-client-3.1.6" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) - sources."engine.io-parser-2.1.3" - sources."has-binary2-1.0.3" - sources."has-cors-1.1.0" - sources."indexof-0.0.1" - sources."isarray-2.0.1" - sources."ms-2.0.0" - sources."object-component-0.0.3" - sources."parseqs-0.0.5" - sources."parseuri-0.0.5" - sources."safe-buffer-5.1.2" - (sources."socket.io-parser-3.1.3" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) - sources."to-array-0.1.4" - sources."ultron-1.1.1" - sources."ws-3.3.3" - sources."xmlhttprequest-ssl-1.5.5" - sources."yeast-0.1.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "[![Build Status](https://secure.travis-ci.org/socketio/socket.io-client.svg?branch=master)](http://travis-ci.org/socketio/socket.io-client) [![Dependency Status](https://david-dm.org/socketio/socket.io-client.svg)](https://david-dm.org/socketio/socket.io-"; - homepage = "https://github.com/Automattic/socket.io-client#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "spin.js-^2.3.2" = nodeEnv.buildNodePackage { - name = "spin.js"; - packageName = "spin.js"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/spin.js/-/spin.js-2.3.2.tgz"; - sha1 = "6caa56d520673450fd5cfbc6971e6d0772c37a1a"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "An animated CSS3 loading spinner with VML fallback for IE."; - homepage = "https://github.com/fgnass/spin.js#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "sqlite3-^4.0.1" = nodeEnv.buildNodePackage { - name = "sqlite3"; - packageName = "sqlite3"; - version = "4.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/sqlite3/-/sqlite3-4.0.8.tgz"; - sha512 = "kgwHu4j10KhpCHtx//dejd/tVQot7jc3sw+Sn0vMuKOw0X00Ckyg9VceKgzPyGmmz+zEoYue9tOLriWTvYy0ww=="; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."ajv-6.10.0" - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.5" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-1.1.11" - sources."caseless-0.12.0" - sources."chownr-1.1.1" - sources."code-point-at-1.1.0" - sources."combined-stream-1.0.8" - sources."concat-map-0.0.1" - sources."console-control-strings-1.1.0" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."debug-3.2.6" - sources."deep-extend-0.6.0" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."detect-libc-1.0.3" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-minipass-1.2.6" - sources."fs.realpath-1.0.0" - sources."gauge-2.7.4" - sources."getpass-0.1.7" - sources."glob-7.1.4" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."has-unicode-2.0.1" - sources."http-signature-1.2.0" - sources."iconv-lite-0.4.24" - 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.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."minipass-2.3.5" - sources."minizlib-1.2.1" - sources."mkdirp-0.5.1" - sources."ms-2.1.1" - sources."nan-2.14.0" - sources."needle-2.4.0" - sources."node-pre-gyp-0.11.0" - sources."nopt-4.0.1" - sources."npm-bundled-1.0.6" - sources."npm-packlist-1.4.1" - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" - 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."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - (sources."rc-1.2.8" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."readable-stream-2.3.6" - sources."request-2.88.0" - sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sax-1.2.4" - sources."semver-5.7.0" - sources."set-blocking-2.0.0" - sources."signal-exit-3.0.2" - sources."sshpk-1.16.1" - sources."string-width-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."strip-json-comments-2.0.1" - sources."tar-4.4.10" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."wide-align-1.1.3" - sources."wrappy-1.0.2" - sources."yallist-3.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Asynchronous, non-blocking SQLite3 bindings"; - homepage = http://github.com/mapbox/node-sqlite3; - license = "BSD-3-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "store-^2.0.12" = nodeEnv.buildNodePackage { - name = "store"; - packageName = "store"; - version = "2.0.12"; - src = fetchurl { - url = "https://registry.npmjs.org/store/-/store-2.0.12.tgz"; - sha1 = "8c534e2a0b831f72b75fc5f1119857c44ef5d593"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A localStorage wrapper for all browsers without using cookies or flash. Uses localStorage, globalStorage, and userData behavior under the hood"; - homepage = "https://github.com/marcuswestin/store.js#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "string-^3.3.3" = nodeEnv.buildNodePackage { - name = "string"; - packageName = "string"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/string/-/string-3.3.3.tgz"; - sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "string contains methods that aren't included in the vanilla JavaScript string such as escaping html, decoding html entities, stripping tags, etc."; - homepage = http://stringjs.com/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "tedious-^1.14.0" = nodeEnv.buildNodePackage { - name = "tedious"; - packageName = "tedious"; - version = "1.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tedious/-/tedious-1.15.0.tgz"; - sha1 = "9bda9e9798212c8fcd9438a70cb2a806abcae70a"; - }; - dependencies = [ - sources."babel-runtime-6.26.0" - sources."big-number-0.3.1" - sources."bl-1.2.2" - sources."core-js-2.6.9" - sources."core-util-is-1.0.2" - sources."dns-lookup-all-1.0.2" - sources."iconv-lite-0.4.24" - sources."inherits-2.0.3" - sources."isarray-1.0.0" - sources."process-nextick-args-2.0.0" - sources."readable-stream-2.3.6" - sources."regenerator-runtime-0.11.1" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."semver-5.7.0" - sources."sprintf-0.1.5" - sources."string_decoder-1.1.1" - sources."util-deprecate-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A TDS driver, for connecting to MS SQLServer databases."; - homepage = https://github.com/tediousjs/tedious; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "to-markdown-^3.0.3" = nodeEnv.buildNodePackage { - name = "to-markdown"; - packageName = "to-markdown"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-markdown/-/to-markdown-3.1.1.tgz"; - sha1 = "251e241b8c74c7ad177292e6c52cc195c9268c11"; - }; - dependencies = [ - sources."abab-1.0.4" - sources."acorn-4.0.13" - sources."acorn-globals-3.1.0" - sources."ajv-6.10.0" - sources."array-equal-1.0.0" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."bcrypt-pbkdf-1.0.2" - sources."block-elements-1.2.0" - sources."caseless-0.12.0" - sources."collapse-whitespace-1.1.2" - sources."combined-stream-1.0.8" - sources."content-type-parser-1.0.2" - sources."core-util-is-1.0.2" - sources."cssom-0.3.6" - sources."cssstyle-0.2.37" - sources."dashdash-1.14.1" - sources."deep-is-0.1.3" - sources."delayed-stream-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."escodegen-1.11.1" - sources."esprima-3.1.3" - sources."estraverse-4.2.0" - sources."esutils-2.0.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."fast-levenshtein-2.0.6" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."getpass-0.1.7" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."html-encoding-sniffer-1.0.2" - sources."http-signature-1.2.0" - sources."iconv-lite-0.4.24" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."jsdom-9.12.0" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."levn-0.3.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."nwmatcher-1.4.4" - sources."oauth-sign-0.9.0" - sources."optionator-0.8.2" - sources."parse5-1.5.1" - sources."performance-now-2.1.0" - sources."prelude-ls-1.1.2" - sources."psl-1.1.32" - sources."punycode-2.1.1" - sources."qs-6.5.2" - (sources."request-2.88.0" // { - dependencies = [ - sources."punycode-1.4.1" - sources."tough-cookie-2.4.3" - ]; - }) - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sax-1.2.4" - sources."source-map-0.6.1" - sources."sshpk-1.16.1" - sources."symbol-tree-3.2.2" - sources."tough-cookie-2.5.0" - sources."tr46-0.0.3" - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."type-check-0.3.2" - sources."uri-js-4.2.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."void-elements-2.0.1" - sources."webidl-conversions-4.0.2" - sources."whatwg-encoding-1.0.5" - (sources."whatwg-url-4.8.0" // { - dependencies = [ - sources."webidl-conversions-3.0.1" - ]; - }) - sources."wordwrap-1.0.0" - sources."xml-name-validator-2.0.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "HTML-to-Markdown converter"; - homepage = "https://github.com/domchristie/to-markdown#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "toobusy-js-^0.5.1" = nodeEnv.buildNodePackage { - name = "toobusy-js"; - packageName = "toobusy-js"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/toobusy-js/-/toobusy-js-0.5.1.tgz"; - sha1 = "5511f78f6a87a6a512d44fdb0efa13672217f659"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Don't fall over when your Node.JS server is too busy. Now without native dependencies!"; - homepage = https://github.com/STRML/node-toobusy; - license = "WTFPL"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "uuid-^3.1.0" = nodeEnv.buildNodePackage { - name = "uuid"; - packageName = "uuid"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"; - sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "RFC4122 (v1, v4, and v5) UUIDs"; - homepage = "https://github.com/kelektiv/node-uuid#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "uws-~0.14.1" = nodeEnv.buildNodePackage { - name = "uws"; - packageName = "uws"; - version = "0.14.5"; - src = fetchurl { - url = "https://registry.npmjs.org/uws/-/uws-0.14.5.tgz"; - sha1 = "67aaf33c46b2a587a5f6666d00f7691328f149dc"; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Tiny WebSockets"; - homepage = https://github.com/uWebSockets/uWebSockets; - license = "Zlib"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "validator-^10.4.0" = nodeEnv.buildNodePackage { - name = "validator"; - packageName = "validator"; - version = "10.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-10.11.0.tgz"; - sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "String validation and sanitization"; - homepage = https://github.com/chriso/validator.js; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "velocity-animate-^1.4.0" = nodeEnv.buildNodePackage { - name = "velocity-animate"; - packageName = "velocity-animate"; - version = "1.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/velocity-animate/-/velocity-animate-1.5.2.tgz"; - sha512 = "m6EXlCAMetKztO1ppBhGU1/1MR3IiEevO6ESq6rcrSQ3Q77xYSW13jkfXW88o4xMrkXJhy/U7j4wFR/twMB0Eg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Accelerated JavaScript animation."; - homepage = http://velocityjs.org/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "visibilityjs-^1.2.4" = nodeEnv.buildNodePackage { - name = "visibilityjs"; - packageName = "visibilityjs"; - version = "1.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/visibilityjs/-/visibilityjs-1.2.8.tgz"; - sha512 = "Y+aL3OUX88b+/VSmkmC2ApuLbf0grzbNLpCfIDSw3BzTU6PqcPsdgIOaw8b+eZoy+DdQqnVN3y/Evow9vQq9Ig=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Wrapper for the Page Visibility API"; - homepage = "https://github.com/ai/visibilityjs#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "viz.js-^1.7.0" = nodeEnv.buildNodePackage { - name = "viz.js"; - packageName = "viz.js"; - version = "1.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/viz.js/-/viz.js-1.8.2.tgz"; - sha512 = "W+1+N/hdzLpQZEcvz79n2IgUE9pfx6JLdHh3Kh8RGvLL8P1LdJVQmi2OsDcLdY4QVID4OUy+FPelyerX0nJxIQ=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "A hack to put Graphviz on the web."; - homepage = https://github.com/mdaines/viz.js; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "winston-^2.3.0" = nodeEnv.buildNodePackage { - name = "winston"; - packageName = "winston"; - version = "2.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-2.4.4.tgz"; - sha512 = "NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q=="; - }; - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."cycle-1.0.3" - sources."eyes-0.1.8" - sources."isstream-0.1.2" - sources."stack-trace-0.0.10" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "A multi-transport async logging library for Node.js"; - homepage = "https://github.com/winstonjs/winston#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - "xss-^1.0.3" = nodeEnv.buildNodePackage { - name = "xss"; - packageName = "xss"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/xss/-/xss-1.0.6.tgz"; - sha512 = "6Q9TPBeNyoTRxgZFk5Ggaepk/4vUOYdOsIUYvLehcsIZTFjaavbVnsuAkLA5lIFuug5hw8zxcB9tm01gsjph2A=="; - }; - dependencies = [ - sources."commander-2.20.0" - sources."cssfilter-0.0.10" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Sanitize untrusted HTML (to prevent XSS) with a configuration specified by a Whitelist"; - homepage = https://github.com/leizongmin/js-xss; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; -} \ No newline at end of file diff --git a/pkgs/servers/web-apps/codimd/node.nix b/pkgs/servers/web-apps/codimd/node.nix deleted file mode 100644 index 0983d3e127b..00000000000 --- a/pkgs/servers/web-apps/codimd/node.nix +++ /dev/null @@ -1,17 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{pkgs ? import { - inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: - -let - nodeEnv = import ../../../development/node-packages/node-env.nix { - inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; - inherit nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in -import ./node-packages.nix { - inherit (pkgs) fetchurl fetchgit; - inherit nodeEnv; -} \ No newline at end of file diff --git a/pkgs/servers/web-apps/codimd/package.json b/pkgs/servers/web-apps/codimd/package.json new file mode 100644 index 00000000000..c189f0477bf --- /dev/null +++ b/pkgs/servers/web-apps/codimd/package.json @@ -0,0 +1,211 @@ +{ + "name": "CodiMD", + "version": "1.4.0", + "description": "Realtime collaborative markdown notes on all platforms.", + "main": "app.js", + "license": "AGPL-3.0", + "scripts": { + "test": "npm run-script eslint && npm run-script jsonlint && npm run-script mocha-suite", + "eslint": "node_modules/.bin/eslint lib public test app.js", + "jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' -o -type f -name '*.json.example' | while read json; do echo $json ; jq . $json; done", + "mocha-suite": "NODE_ENV=test CMD_DB_URL=\"sqlite::memory:\" mocha --exit", + "standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1", + "dev": "webpack --config webpack.dev.js --progress --colors --watch", + "heroku-prebuild": "bin/heroku", + "build": "webpack --config webpack.prod.js --progress --colors --bail", + "start": "sequelize db:migrate && node app.js" + }, + "dependencies": { + "@passport-next/passport-openid": "^1.0.0", + "Idle.Js": "git+https://github.com/shawnmclean/Idle.js", + "archiver": "^2.1.1", + "async": "^2.1.4", + "aws-sdk": "^2.345.0", + "azure-storage": "^2.7.0", + "base64url": "^3.0.0", + "body-parser": "^1.15.2", + "bootstrap": "^3.4.0", + "bootstrap-validator": "^0.11.8", + "chance": "^1.0.4", + "cheerio": "^0.22.0", + "codemirror": "git+https://github.com/hackmdio/CodeMirror.git", + "compression": "^1.6.2", + "connect-flash": "^0.1.1", + "connect-session-sequelize": "^4.1.0", + "cookie": "0.3.1", + "cookie-parser": "1.4.3", + "deep-freeze": "^0.0.1", + "diff-match-patch": "git+https://github.com/hackmdio/diff-match-patch.git", + "ejs": "^2.5.5", + "emojify.js": "~1.1.0", + "escape-html": "^1.0.3", + "express": ">=4.14", + "express-session": "^1.14.2", + "file-saver": "^1.3.3", + "flowchart.js": "^1.6.4", + "fork-awesome": "^1.1.3", + "formidable": "^1.0.17", + "gist-embed": "~2.6.0", + "graceful-fs": "^4.1.11", + "handlebars": "^4.1.2", + "helmet": "^3.13.0", + "highlight.js": "~9.12.0", + "i18n": "^0.8.3", + "imgur": "git+https://github.com/hackmdio/node-imgur.git", + "ionicons": "~2.0.1", + "jquery": "^3.4.1", + "jquery-mousewheel": "^3.1.13", + "jquery-ui": "^1.12.1", + "js-cookie": "^2.1.3", + "js-sequence-diagrams": "git+https://github.com/codimd/js-sequence-diagrams.git", + "js-yaml": "^3.13.1", + "jsdom-nogyp": "^0.8.3", + "keymaster": "^1.6.2", + "list.js": "^1.5.0", + "lodash": "^4.17.11", + "lutim": "^1.0.2", + "lz-string": "git+https://github.com/hackmdio/lz-string.git", + "markdown-it": "^8.2.2", + "markdown-it-abbr": "^1.0.4", + "markdown-it-container": "^2.0.0", + "markdown-it-deflist": "^2.0.1", + "markdown-it-emoji": "^1.3.0", + "markdown-it-footnote": "^3.0.1", + "markdown-it-imsize": "^2.0.1", + "markdown-it-ins": "^2.0.0", + "markdown-it-mark": "^2.0.0", + "markdown-it-mathjax": "^2.0.0", + "markdown-it-regexp": "^0.4.0", + "markdown-it-sub": "^1.0.0", + "markdown-it-sup": "^1.0.0", + "markdown-pdf": "^9.0.0", + "mathjax": "~2.7.0", + "mattermost": "^3.4.0", + "mermaid": "~7.1.0", + "meta-marked": "git+https://github.com/codimd/meta-marked#semver:^0.4.2", + "method-override": "^2.3.7", + "minimist": "^1.2.0", + "minio": "^6.0.0", + "moment": "^2.17.1", + "morgan": "^1.7.0", + "mysql": "^2.12.0", + "passport": "^0.4.0", + "passport-dropbox-oauth2": "^1.1.0", + "passport-facebook": "^2.1.1", + "passport-github": "^1.1.0", + "passport-gitlab2": "^4.0.0", + "passport-google-oauth20": "^1.0.0", + "passport-ldapauth": "^2.0.0", + "passport-local": "^1.0.0", + "passport-oauth2": "^1.4.0", + "passport-saml": "^1.0.0", + "passport-twitter": "^1.0.4", + "passport.socketio": "^3.7.0", + "pdfobject": "^2.0.201604172", + "pg": "^6.1.2", + "pg-hstore": "^2.3.2", + "prismjs": "^1.6.0", + "randomcolor": "^0.5.3", + "raphael": "git+https://github.com/dmitrybaranovskiy/raphael", + "readline-sync": "^1.4.7", + "request": "^2.88.0", + "reveal.js": "~3.7.0", + "scrypt-async": "^2.0.1", + "scrypt-kdf": "^2.0.1", + "select2": "^3.5.2-browserify", + "sequelize": "^3.28.0", + "sequelize-cli": "^2.5.1", + "shortid": "2.2.8", + "socket.io": "~2.1.1", + "socket.io-client": "~2.1.1", + "spin.js": "^2.3.2", + "sqlite3": "^4.0.7", + "store": "^2.0.12", + "string": "^3.3.3", + "tedious": "^1.14.0", + "toobusy-js": "^0.5.1", + "turndown": "^5.0.1", + "uuid": "^3.1.0", + "validator": "^10.4.0", + "velocity-animate": "^1.4.0", + "visibilityjs": "^1.2.4", + "viz.js": "^1.7.0", + "winston": "^3.1.0", + "ws": "^6.0.0", + "wurl": "^2.5.3", + "xss": "^1.0.3" + }, + "resolutions": { + "**/tough-cookie": "~2.4.0", + "**/minimatch": "^3.0.2", + "**/request": "^2.88.0" + }, + "engines": { + "node": ">=8.x" + }, + "bugs": "https://github.com/codimd/server/issues", + "keywords": [ + "Collaborative", + "Markdown", + "Notes" + ], + "homepage": "https://codimd.org", + "maintainers": [ + { + "name": "Claudius Coenen", + "url": "https://www.claudiuscoenen.de/" + }, + { + "name": "Christoph (Sheogorath) Kern", + "email": "codimd@sheogorath.shivering-isles.com", + "url": "https://shivering-isles.com" + } + ], + "repository": { + "type": "git", + "url": "https://github.com/codimd/server.git" + }, + "devDependencies": { + "babel-cli": "^6.26.0", + "babel-core": "^6.26.3", + "babel-loader": "^7.1.4", + "babel-plugin-transform-runtime": "^6.23.0", + "babel-polyfill": "^6.26.0", + "babel-preset-env": "^1.7.0", + "babel-runtime": "^6.26.0", + "copy-webpack-plugin": "^4.5.2", + "css-loader": "^1.0.0", + "ejs-loader": "^0.3.1", + "eslint": "^5.9.0", + "eslint-config-standard": "^12.0.0", + "eslint-plugin-import": "^2.14.0", + "eslint-plugin-node": "^8.0.0", + "eslint-plugin-promise": "^4.0.1", + "eslint-plugin-standard": "^4.0.0", + "exports-loader": "^0.7.0", + "expose-loader": "^0.7.5", + "file-loader": "^2.0.0", + "html-webpack-plugin": "4.0.0-beta.2", + "imports-loader": "^0.8.0", + "jsonlint": "^1.6.2", + "less": "^2.7.1", + "less-loader": "^4.1.0", + "mini-css-extract-plugin": "^0.4.1", + "mocha": "^5.2.0", + "mock-require": "^3.0.3", + "optimize-css-assets-webpack-plugin": "^5.0.0", + "script-loader": "^0.7.2", + "string-loader": "^0.0.1", + "style-loader": "^0.21.0", + "uglifyjs-webpack-plugin": "^1.2.7", + "url-loader": "^1.0.1", + "webpack": "^4.14.0", + "webpack-cli": "^3.1.0", + "webpack-merge": "^4.1.4", + "webpack-parallel-uglify-plugin": "^1.1.0" + }, + "optionalDependencies": { + "bufferutil": "^4.0.0", + "utf-8-validate": "^5.0.1" + } +} diff --git a/pkgs/servers/web-apps/codimd/yarn.lock b/pkgs/servers/web-apps/codimd/yarn.lock new file mode 100644 index 00000000000..3b7e3f02b1e --- /dev/null +++ b/pkgs/servers/web-apps/codimd/yarn.lock @@ -0,0 +1,10951 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz#06e2ab19bdb535385559aabb5ba59729482800f8" + integrity sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/highlight@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4" + integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@passport-next/passport-openid@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@passport-next/passport-openid/-/passport-openid-1.0.0.tgz#d3b5e067a9aa1388ed172ab7cc02c39b8634283d" + integrity sha512-W9uj4Ui/ZK/iBUNzSNxPWDQ8wCD1tUddGEVSGm0FN0B7ewo3yBQLGMoW3i3UqcwEzxdyGbAj06ohAhNQIXC4VA== + dependencies: + "@passport-next/passport-strategy" "1.x.x" + openid "2.x.x" + +"@passport-next/passport-strategy@1.x.x": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@passport-next/passport-strategy/-/passport-strategy-1.1.0.tgz#4c0df069e2ec9262791b9ef1e23320c1d73bdb74" + integrity sha512-2KhFjtPueJG6xVj2HnqXt9BlANOfYCVLyu+pXYjPGBDT8yk+vQwc/6tsceIj+mayKcoxMau2JimggXRPHgoc8w== + +"@types/body-parser@*": + version "1.17.0" + resolved "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.17.0.tgz#9f5c9d9bd04bb54be32d5eb9fc0d8c974e6cf58c" + integrity sha512-a2+YeUjPkztKJu5aIF2yArYFQQp8d51wZ7DavSHjFuY1mqVgidGyzEQ41JIVNy82fXj8yPgy2vJmfIywgESW6w== + dependencies: + "@types/connect" "*" + "@types/node" "*" + +"@types/connect@*": + version "3.4.32" + resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz#aa0e9616b9435ccad02bc52b5b454ffc2c70ba28" + integrity sha512-4r8qa0quOvh7lGD0pre62CAb1oni1OO6ecJLGCezTmhQ8Fz50Arx9RUszryR8KlgK6avuSXvviL6yWyViQABOg== + dependencies: + "@types/node" "*" + +"@types/estree@0.0.39": + version "0.0.39" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f" + integrity sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw== + +"@types/express-serve-static-core@*": + version "4.16.6" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.6.tgz#66d4b29ece3e2fb6e5aac2232723002426e651bd" + integrity sha512-8wr3CA/EMybyb6/V8qvTRKiNkPmgUA26uA9XWD6hlA0yFDuqi4r2L0C2B0U2HAYltJamoYJszlkaWM31vrKsHg== + dependencies: + "@types/node" "*" + "@types/range-parser" "*" + +"@types/express@*": + version "4.16.1" + resolved "https://registry.yarnpkg.com/@types/express/-/express-4.16.1.tgz#d756bd1a85c34d87eaf44c888bad27ba8a4b7cf0" + integrity sha512-V0clmJow23WeyblmACoxbHBu2JKlE5TiIme6Lem14FnPW9gsttyHtk6wq7njcdIWH1njAaFgR8gW09lgY98gQg== + dependencies: + "@types/body-parser" "*" + "@types/express-serve-static-core" "*" + "@types/serve-static" "*" + +"@types/geojson@^1.0.0": + version "1.0.6" + resolved "https://registry.yarnpkg.com/@types/geojson/-/geojson-1.0.6.tgz#3e02972728c69248c2af08d60a48cbb8680fffdf" + integrity sha512-Xqg/lIZMrUd0VRmSRbCAewtwGZiAk3mEUDvV4op1tGl+LvyPcb/MIOSxTl9z+9+J+R4/vpjiCAT4xeKzH9ji1w== + +"@types/ldapjs@^1.0.0": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.4.tgz#06774665035fbb277133d8cde800d18c7993707f" + integrity sha512-TXOYipuauiZV+nRslqgm02+wP007GNN7ZFHZtXe8GhnRJw2zxCOtVDi3ZnKTBxbZhFz3xPFSwJ5bCIRmXDMqTg== + dependencies: + "@types/node" "*" + +"@types/mime@*": + version "2.0.1" + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz#dc488842312a7f075149312905b5e3c0b054c79d" + integrity sha512-FwI9gX75FgVBJ7ywgnq/P7tw+/o1GUbtP0KzbtusLigAOgIgNISRK0ZPl4qertvXSIE8YbsVJueQ90cDt9YYyw== + +"@types/node@*": + version "12.0.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.0.3.tgz#5d8d24e0033fc6393efadc85cb59c1f638095c9a" + integrity sha512-zkOxCS/fA+3SsdA+9Yun0iANxzhQRiNwTvJSr6N95JhuJ/x27z9G2URx1Jpt3zYFfCGUXZGL5UDxt5eyLE7wgw== + +"@types/node@^10.12.12", "@types/node@^10.12.26": + version "10.14.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-10.14.7.tgz#1854f0a9aa8d2cd6818d607b3d091346c6730362" + integrity sha512-on4MmIDgHXiuJDELPk1NFaKVUxxCFr37tm8E9yN6rAiF5Pzp/9bBfBHkoexqRiY+hk/Z04EJU9kKEb59YqJ82A== + +"@types/passport@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@types/passport/-/passport-1.0.0.tgz#747fa127a747a145ff279f3df3e07c425e5ff297" + integrity sha512-R2FXqM+AgsMIym0PuKj08Ybx+GR6d2rU3b1/8OcHolJ+4ga2pRPX105wboV6hq1AJvMo2frQzYKdqXS5+4cyMw== + dependencies: + "@types/express" "*" + +"@types/q@^1.5.1": + version "1.5.2" + resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8" + integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw== + +"@types/range-parser@*": + version "1.2.3" + resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz#7ee330ba7caafb98090bece86a5ee44115904c2c" + integrity sha512-ewFXqrQHlFsgc09MK5jP5iR7vumV/BYayNC6PgJO2LPe8vrnNFyjQjSppfEngITi0qvfKtzFvgKymGheFM9UOA== + +"@types/serve-static@*": + version "1.13.2" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.2.tgz#f5ac4d7a6420a99a6a45af4719f4dcd8cd907a48" + integrity sha512-/BZ4QRLpH/bNYgZgwhKEh+5AsboDBcUdlBYgzoLX0fpj3Y2gp6EApyOlM3bK53wQS/OE1SrdSYBAbux2D1528Q== + dependencies: + "@types/express-serve-static-core" "*" + "@types/mime" "*" + +"@webassemblyjs/ast@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" + integrity sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ== + dependencies: + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + +"@webassemblyjs/floating-point-hex-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz#1ba926a2923613edce496fd5b02e8ce8a5f49721" + integrity sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ== + +"@webassemblyjs/helper-api-error@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz#c49dad22f645227c5edb610bdb9697f1aab721f7" + integrity sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA== + +"@webassemblyjs/helper-buffer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz#fea93e429863dd5e4338555f42292385a653f204" + integrity sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q== + +"@webassemblyjs/helper-code-frame@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz#9a740ff48e3faa3022b1dff54423df9aa293c25e" + integrity sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ== + dependencies: + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/helper-fsm@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz#ba0b7d3b3f7e4733da6059c9332275d860702452" + integrity sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow== + +"@webassemblyjs/helper-module-context@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz#def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245" + integrity sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g== + dependencies: + "@webassemblyjs/ast" "1.8.5" + mamacro "^0.0.3" + +"@webassemblyjs/helper-wasm-bytecode@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz#537a750eddf5c1e932f3744206551c91c1b93e61" + integrity sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ== + +"@webassemblyjs/helper-wasm-section@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz#74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf" + integrity sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + +"@webassemblyjs/ieee754@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz#712329dbef240f36bf57bd2f7b8fb9bf4154421e" + integrity sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g== + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz#044edeb34ea679f3e04cd4fd9824d5e35767ae10" + integrity sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A== + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz#a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc" + integrity sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw== + +"@webassemblyjs/wasm-edit@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz#962da12aa5acc1c131c81c4232991c82ce56e01a" + integrity sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/helper-wasm-section" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-opt" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + "@webassemblyjs/wast-printer" "1.8.5" + +"@webassemblyjs/wasm-gen@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz#54840766c2c1002eb64ed1abe720aded714f98bc" + integrity sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wasm-opt@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz#b24d9f6ba50394af1349f510afa8ffcb8a63d264" + integrity sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-buffer" "1.8.5" + "@webassemblyjs/wasm-gen" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + +"@webassemblyjs/wasm-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz#21576f0ec88b91427357b8536383668ef7c66b8d" + integrity sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-wasm-bytecode" "1.8.5" + "@webassemblyjs/ieee754" "1.8.5" + "@webassemblyjs/leb128" "1.8.5" + "@webassemblyjs/utf8" "1.8.5" + +"@webassemblyjs/wast-parser@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz#e10eecd542d0e7bd394f6827c49f3df6d4eefb8c" + integrity sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/floating-point-hex-parser" "1.8.5" + "@webassemblyjs/helper-api-error" "1.8.5" + "@webassemblyjs/helper-code-frame" "1.8.5" + "@webassemblyjs/helper-fsm" "1.8.5" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.8.5": + version "1.8.5" + resolved "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz#114bbc481fd10ca0e23b3560fa812748b0bae5bc" + integrity sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/wast-parser" "1.8.5" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" + integrity sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA== + +"@xtuc/long@4.2.2": + version "4.2.2" + resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz#d291c6a4e97989b5c61d9acf396ae4fe133a718d" + integrity sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ== + +"Idle.Js@git+https://github.com/shawnmclean/Idle.js": + version "0.0.1" + resolved "git+https://github.com/shawnmclean/Idle.js#db9beb3483a460ad638ec947867720f0ed066a62" + +JSV@^4.0.x: + version "4.0.2" + resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" + integrity sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c= + +abab@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f" + integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w== + +abbrev@1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" + integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== + +accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: + version "1.3.7" + resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" + integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA== + dependencies: + mime-types "~2.1.24" + negotiator "0.6.2" + +acorn-dynamic-import@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz#482210140582a36b83c3e342e1cfebcaa9240948" + integrity sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw== + +acorn-globals@^4.1.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz#4e2c2313a597fd589720395f6354b41cd5ec8006" + integrity sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ== + dependencies: + acorn "^6.0.1" + acorn-walk "^6.0.1" + +acorn-jsx@^5.0.0, acorn-jsx@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" + integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== + +acorn-walk@^6.0.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz#d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913" + integrity sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw== + +acorn@^5.1.0, acorn@^5.5.3: + version "5.7.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" + integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== + +acorn@^6.0.1, acorn@^6.0.5, acorn@^6.0.7, acorn@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" + integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== + +after@0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f" + integrity sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8= + +ajv-errors@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz#f35986aceb91afadec4102fbd85014950cefa64d" + integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ== + +ajv-keywords@^3.1.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d" + integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw== + +ajv@^6.1.0, ajv@^6.5.5, ajv@^6.9.1: + version "6.10.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" + integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== + dependencies: + fast-deep-equal "^2.0.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +align-text@^0.1.1, align-text@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz#0cd90a561093f35d0a99256c22b7069433fad117" + integrity sha1-DNkKVhCT810KmSVsIrcGlDP60Rc= + dependencies: + kind-of "^3.0.2" + longest "^1.0.1" + repeat-string "^1.5.2" + +alphanum-sort@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" + integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= + +ambi@^2.2.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/ambi/-/ambi-2.5.0.tgz#7c8e372be48891157e7cea01cb6f9143d1f74220" + integrity sha1-fI43K+SIkRV+fOoBy2+RQ9H3QiA= + dependencies: + editions "^1.1.1" + typechecker "^4.3.0" + +ansi-escapes@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" + integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== + +ansi-gray@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" + integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= + dependencies: + ansi-wrap "0.1.0" + +ansi-regex@^2.0.0, ansi-regex@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" + integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= + +ansi-regex@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" + integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.0, ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz#cb102df1c56f5123eab8b67cd7b98027a0279178" + integrity sha1-yxAt8cVvUSPquLZ817mAJ6AnkXg= + +ansi-wrap@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" + integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= + +anymatch@^1.3.0: + version "1.3.2" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz#553dcb8f91e3c889845dfdba34c77721b90b9d7a" + integrity sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA== + dependencies: + micromatch "^2.1.5" + normalize-path "^2.0.0" + +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" + +aproba@^1.0.3, aproba@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" + integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== + +archiver-utils@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz#e50b4c09c70bf3d680e32ff1b7994e9f9d895174" + integrity sha1-5QtMCccL89aA4y/xt5lOn52JUXQ= + dependencies: + glob "^7.0.0" + graceful-fs "^4.1.0" + lazystream "^1.0.0" + lodash "^4.8.0" + normalize-path "^2.0.0" + readable-stream "^2.0.0" + +archiver@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/archiver/-/archiver-2.1.1.tgz#ff662b4a78201494a3ee544d3a33fe7496509ebc" + integrity sha1-/2YrSnggFJSj7lRNOjP+dJZQnrw= + dependencies: + archiver-utils "^1.3.0" + async "^2.0.0" + buffer-crc32 "^0.2.1" + glob "^7.0.0" + lodash "^4.8.0" + readable-stream "^2.0.0" + tar-stream "^1.5.0" + zip-stream "^1.2.0" + +archy@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" + integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= + +are-we-there-yet@~1.1.2: + version "1.1.5" + resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" + integrity sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w== + dependencies: + delegates "^1.0.0" + readable-stream "^2.0.6" + +argparse@^1.0.7: + version "1.0.10" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" + integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== + dependencies: + sprintf-js "~1.0.2" + +argparse@~0.1.15: + version "0.1.16" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz#cfd01e0fbba3d6caed049fbd758d40f65196f57c" + integrity sha1-z9AeD7uj1srtBJ+9dY1A9lGW9Xw= + dependencies: + underscore "~1.7.0" + underscore.string "~2.4.0" + +arr-diff@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz#8f3b827f955a8bd669697e4a4256ac3ceae356cf" + integrity sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8= + dependencies: + arr-flatten "^1.0.1" + +arr-diff@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520" + integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA= + +arr-flatten@^1.0.1, arr-flatten@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1" + integrity sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg== + +arr-union@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" + integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= + +array-differ@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" + integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE= + +array-each@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" + integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= + +array-equal@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" + integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= + +array-flatten@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= + +array-includes@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz#184b48f62d92d7452bb31b323165c7f8bd02266d" + integrity sha1-GEtI9i2S10UrsxsyMWXH+L0CJm0= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.7.0" + +array-slice@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" + integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== + +array-union@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" + integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= + dependencies: + array-uniq "^1.0.1" + +array-uniq@^1.0.1, array-uniq@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" + integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= + +array-unique@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz#a1d97ccafcbc2625cc70fadceb36a50c58b01a53" + integrity sha1-odl8yvy8JiXMcPrc6zalDFiwGlM= + +array-unique@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" + integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= + +arraybuffer.slice@~0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" + integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== + +asap@^2.0.0, asap@~2.0.3: + version "2.0.6" + resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" + integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= + +asn1.js@^4.0.0: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== + dependencies: + bn.js "^4.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +asn1@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" + integrity sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y= + +asn1@~0.2.3: + version "0.2.4" + resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" + integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== + dependencies: + safer-buffer "~2.1.0" + +assert-plus@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" + integrity sha1-7nQAlBMALYTOxyGcasgRgS5yMWA= + +assert-plus@1.0.0, assert-plus@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" + integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= + +assert@^1.1.1: + version "1.5.0" + resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" + integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA== + dependencies: + object-assign "^4.1.1" + util "0.10.3" + +assign-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" + integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= + +astral-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" + integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== + +async-each@^1.0.0, async-each@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" + integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== + +async-limiter@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8" + integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg== + +async@^1.4.0, async@^1.5.2, async@~1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" + integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= + +async@^2.0.0, async@^2.1.4, async@^2.1.5, async@^2.6.1: + version "2.6.2" + resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381" + integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg== + dependencies: + lodash "^4.17.11" + +asynckit@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" + integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= + +atob@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" + integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== + +autolinker@~0.15.0: + version "0.15.3" + resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz#342417d8f2f3461b14cf09088d5edf8791dc9832" + integrity sha1-NCQX2PLzRhsUzwkIjV7fh5HcmDI= + +aws-sdk@^2.345.0: + version "2.465.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.465.0.tgz#60948a0930473f50bac23311bc48426118e79f12" + integrity sha512-eS3g80QUbhOo0Rd/WTudtlc4cuNpLget6Re1KyDod6319QvW2il1q28VyvZK0/Yiu8GyVh5xGbThaLEQem+fLQ== + dependencies: + buffer "4.9.1" + events "1.1.1" + ieee754 "1.1.8" + jmespath "0.15.0" + querystring "0.2.0" + sax "1.2.1" + url "0.10.3" + uuid "3.3.2" + xml2js "0.4.19" + +aws-sign2@~0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8" + integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg= + +aws4@^1.8.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" + integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== + +azure-storage@^2.7.0: + version "2.10.3" + resolved "https://registry.yarnpkg.com/azure-storage/-/azure-storage-2.10.3.tgz#c5966bf929d87587d78f6847040ea9a4b1d4a50a" + integrity sha512-IGLs5Xj6kO8Ii90KerQrrwuJKexLgSwYC4oLWmc11mzKe7Jt2E5IVg+ZQ8K53YWZACtVTMBNO3iGuA+4ipjJxQ== + dependencies: + browserify-mime "~1.2.9" + extend "^3.0.2" + json-edm-parser "0.1.2" + md5.js "1.3.4" + readable-stream "~2.0.0" + request "^2.86.0" + underscore "~1.8.3" + uuid "^3.0.0" + validator "~9.4.1" + xml2js "0.2.8" + xmlbuilder "^9.0.7" + +babel-cli@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz#502ab54874d7db88ad00b887a06383ce03d002f1" + integrity sha1-UCq1SHTX24itALiHoGODzgPQAvE= + dependencies: + babel-core "^6.26.0" + babel-polyfill "^6.26.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + commander "^2.11.0" + convert-source-map "^1.5.0" + fs-readdir-recursive "^1.0.0" + glob "^7.1.2" + lodash "^4.17.4" + output-file-sync "^1.1.2" + path-is-absolute "^1.0.1" + slash "^1.0.0" + source-map "^0.5.6" + v8flags "^2.1.1" + optionalDependencies: + chokidar "^1.6.1" + +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-core@^6.26.0, babel-core@^6.26.3: + version "6.26.3" + resolved "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz#b2e2f09e342d0f0c88e2f02e067794125e75c207" + integrity sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA== + dependencies: + babel-code-frame "^6.26.0" + babel-generator "^6.26.0" + babel-helpers "^6.24.1" + babel-messages "^6.23.0" + babel-register "^6.26.0" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + convert-source-map "^1.5.1" + debug "^2.6.9" + json5 "^0.5.1" + lodash "^4.17.4" + minimatch "^3.0.4" + path-is-absolute "^1.0.1" + private "^0.1.8" + slash "^1.0.0" + source-map "^0.5.7" + +babel-generator@^6.26.0: + version "6.26.1" + resolved "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz#1844408d3b8f0d35a404ea7ac180f087a601bd90" + integrity sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA== + dependencies: + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + detect-indent "^4.0.0" + jsesc "^1.3.0" + lodash "^4.17.4" + source-map "^0.5.7" + trim-right "^1.0.1" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo= + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helpers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz#3471de9caec388e5c850e597e58a26ddf37602b2" + integrity sha1-NHHenK7DiOXIUOWX5Yom3fN2ArI= + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-loader@^7.1.4: + version "7.1.5" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz#e3ee0cd7394aa557e013b02d3e492bfd07aa6d68" + integrity sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw== + dependencies: + find-cache-dir "^1.0.0" + loader-utils "^1.0.2" + mkdirp "^0.5.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= + +babel-plugin-transform-async-to-generator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.23.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" + integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-runtime@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz#88490d446502ea9b8e7efb0fe09ec4d99479b1ee" + integrity sha1-iEkNRGUC6puOfvsP4J7E2ZR5se4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-polyfill@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz#379937abc67d7895970adc621f284cd966cf2153" + integrity sha1-N5k3q8Z9eJWXCtxiHyhM2WbPIVM= + dependencies: + babel-runtime "^6.26.0" + core-js "^2.5.0" + regenerator-runtime "^0.10.5" + +babel-preset-env@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" + integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^3.2.6" + invariant "^2.2.2" + semver "^5.3.0" + +babel-register@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz#6ed021173e2fcb486d7acb45c6009a856f647071" + integrity sha1-btAhFz4vy0htestFxgCahW9kcHE= + dependencies: + babel-core "^6.26.0" + babel-runtime "^6.26.0" + core-js "^2.5.0" + home-or-tmp "^2.0.0" + lodash "^4.17.4" + mkdirp "^0.5.1" + source-map-support "^0.4.15" + +babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0, babel-runtime@^6.9.2: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +backo2@1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz#31ab1ac8b129363463e35b3ebb69f4dfcfba7947" + integrity sha1-MasayLEpNjRj41s+u2n038+6eUc= + +backoff@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz#f616eda9d3e4b66b8ca7fca79f695722c5f8e26f" + integrity sha1-9hbtqdPktmuMp/ynn2lXIsX44m8= + dependencies: + precond "0.2" + +balanced-match@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" + integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= + +base64-arraybuffer@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz#73926771923b5a19747ad666aa5cd4bf9c6e9ce8" + integrity sha1-c5JncZI7Whl0etZmqlzUv5xunOg= + +base64-js@^1.0.2: + version "1.3.0" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" + integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== + +base64id@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz#47688cb99bb6804f0e06d3e763b1c32e57d8e6b6" + integrity sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY= + +base64url@3.x.x, base64url@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/base64url/-/base64url-3.0.1.tgz#6399d572e2bc3f90a9a8b22d5dbb0a32d33f788d" + integrity sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A== + +base@^0.11.1: + version "0.11.2" + resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" + integrity sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg== + dependencies: + cache-base "^1.0.1" + class-utils "^0.3.5" + component-emitter "^1.2.1" + define-property "^1.0.0" + isobject "^3.0.1" + mixin-deep "^1.2.0" + pascalcase "^0.1.1" + +basic-auth@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz#b998279bf47ce38344b4f3cf916d4679bbf51e3a" + integrity sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg== + dependencies: + safe-buffer "5.1.2" + +bcrypt-pbkdf@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e" + integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4= + dependencies: + tweetnacl "^0.14.3" + +bcryptjs@^2.4.0: + version "2.4.3" + resolved "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz#9ab5627b93e60621ff7cdac5da9733027df1d0cb" + integrity sha1-mrVie5PmBiH/fNrF2pczAn3x0Ms= + +beeper@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" + integrity sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak= + +better-assert@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz#40866b9e1b9e0b55b481894311e68faffaebc522" + integrity sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI= + dependencies: + callsite "1.0.0" + +big-number@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/big-number/-/big-number-0.3.1.tgz#ac73020c0a59bb79eb17c2ce2db77f77d974e013" + integrity sha1-rHMCDApZu3nrF8LOLbd/d9l04BM= + +big.js@^3.1.3: + version "3.2.0" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz#a5fc298b81b9e0dca2e458824784b65c52ba588e" + integrity sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q== + +big.js@^5.2.2: + version "5.2.2" + resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328" + integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ== + +bignumber.js@7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-7.2.1.tgz#80c048759d826800807c4bfd521e50edbba57a5f" + integrity sha512-S4XzBk5sMB+Rcb/LNcpzXr57VRTxgAvaAEDAl1AwRx27j00hT84O6OkteE7u8UB3NuaaygCRrEpqox4uDOrbdQ== + +binary-extensions@^1.0.0: + version "1.13.1" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65" + integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== + +bl@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c" + integrity sha512-e8tQYnZodmebYDWGH7KMRvtzKXaJHx3BbilrgZCfvyLUYdKpK1t5PSPmpkny/SgiTSCnjfLW7v5rlONXVFkQEA== + dependencies: + readable-stream "^2.3.5" + safe-buffer "^5.1.1" + +blint@^1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/blint/-/blint-1.0.3.tgz#a58d344ae4bf0ebb917316cfa3a5948e8d92fe10" + integrity sha512-6RwH3oJYMujQNd38WWU+jUSRqWfECrmpfL8o3fn3Q3fE9nn5iAktLZJHGEHqeecownbZZwZneTLbaNbIWwU9/A== + dependencies: + acorn "^5.1.0" + nomnom "^1.8.1" + +blob@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" + integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== + +block-stream2@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/block-stream2/-/block-stream2-1.1.0.tgz#c738e3a91ba977ebb5e1fef431e13ca11d8639e2" + integrity sha1-xzjjqRupd+u14f70MeE8oR2GOeI= + dependencies: + defined "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.4" + +bluebird@^3.3.4, bluebird@^3.4.1, bluebird@^3.4.6, bluebird@^3.5.0, bluebird@^3.5.1, bluebird@^3.5.3: + version "3.5.5" + resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f" + integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w== + +bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0: + version "4.11.8" + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f" + integrity sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA== + +body-parser@1.19.0, body-parser@^1.15.2: + version "1.19.0" + resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a" + integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw== + dependencies: + bytes "3.1.0" + content-type "~1.0.4" + debug "2.6.9" + depd "~1.1.2" + http-errors "1.7.2" + iconv-lite "0.4.24" + on-finished "~2.3.0" + qs "6.7.0" + raw-body "2.4.0" + type-is "~1.6.17" + +boolbase@^1.0.0, boolbase@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= + +bootstrap-validator@^0.11.8: + version "0.11.9" + resolved "https://registry.yarnpkg.com/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz#fb7058eef53623e78f5aa7967026f98f875a9404" + integrity sha1-+3BY7vU2I+ePWqeWcCb5j4dalAQ= + +bootstrap@^3.4.0: + version "3.4.1" + resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72" + integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +braces@^1.8.2: + version "1.8.5" + resolved "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz#ba77962e12dff969d6b76711e914b737857bf6a7" + integrity sha1-uneWLhLf+WnWt2cR6RS3N4V79qc= + dependencies: + expand-range "^1.8.1" + preserve "^0.2.0" + repeat-element "^1.1.2" + +braces@^2.3.1, braces@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" + integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== + dependencies: + arr-flatten "^1.1.0" + array-unique "^0.3.2" + extend-shallow "^2.0.1" + fill-range "^4.0.0" + isobject "^3.0.1" + repeat-element "^1.1.2" + snapdragon "^0.8.1" + snapdragon-node "^2.0.1" + split-string "^3.0.2" + to-regex "^3.0.1" + +brorand@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" + integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= + +browser-process-hrtime@^0.1.2: + version "0.1.3" + resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4" + integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw== + +browser-stdout@1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" + integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== + +browserify-aes@^1.0.0, browserify-aes@^1.0.4: + version "1.2.0" + resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" + integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== + dependencies: + buffer-xor "^1.0.3" + cipher-base "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.3" + inherits "^2.0.1" + safe-buffer "^5.0.1" + +browserify-cipher@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz#8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0" + integrity sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w== + dependencies: + browserify-aes "^1.0.4" + browserify-des "^1.0.0" + evp_bytestokey "^1.0.0" + +browserify-des@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz#3af4f1f59839403572f1c66204375f7a7f703e9c" + integrity sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A== + dependencies: + cipher-base "^1.0.1" + des.js "^1.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +browserify-mime@~1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/browserify-mime/-/browserify-mime-1.2.9.tgz#aeb1af28de6c0d7a6a2ce40adb68ff18422af31f" + integrity sha1-rrGvKN5sDXpqLOQK22j/GEIq8x8= + +browserify-rsa@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz#21e0abfaf6f2029cf2fafb133567a701d4135524" + integrity sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ= + dependencies: + bn.js "^4.1.0" + randombytes "^2.0.1" + +browserify-sign@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz#aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298" + integrity sha1-qk62jl17ZYuqa/alfmMMvXqT0pg= + dependencies: + bn.js "^4.1.1" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.2" + elliptic "^6.0.0" + inherits "^2.0.1" + parse-asn1 "^5.0.0" + +browserify-zlib@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz#2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f" + integrity sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA== + dependencies: + pako "~1.0.5" + +browserslist@^3.2.6: + version "3.2.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" + integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== + dependencies: + caniuse-lite "^1.0.30000844" + electron-to-chromium "^1.3.47" + +browserslist@^4.0.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.1.tgz#ee5059b1aec18cbec9d055d6cb5e24ae50343a9b" + integrity sha512-1MC18ooMPRG2UuVFJTHFIAkk6mpByJfxCrnUyvSlu/hyQSFHMrlhM02SzNuCV+quTP4CKmqtOMAIjrifrpBJXQ== + dependencies: + caniuse-lite "^1.0.30000971" + electron-to-chromium "^1.3.137" + node-releases "^1.1.21" + +buble@^0.19.6: + version "0.19.7" + resolved "https://registry.yarnpkg.com/buble/-/buble-0.19.7.tgz#1dfd080ab688101aad5388d3304bc82601a244fd" + integrity sha512-YLgWxX/l+NnfotydBlxqCMPR4FREE4ubuHphALz0FxQ7u2hp3BzxTKQ4nKpapOaRJfEm1gukC68KnT2OymRK0g== + dependencies: + acorn "^6.1.1" + acorn-dynamic-import "^4.0.0" + acorn-jsx "^5.0.1" + chalk "^2.4.2" + magic-string "^0.25.2" + minimist "^1.2.0" + os-homedir "^1.0.1" + regexpu-core "^4.5.4" + +buffer-alloc-unsafe@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0" + integrity sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg== + +buffer-alloc@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec" + integrity sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow== + dependencies: + buffer-alloc-unsafe "^1.1.0" + buffer-fill "^1.0.0" + +buffer-crc32@^0.2.1: + version "0.2.13" + resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" + integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= + +buffer-fill@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c" + integrity sha1-+PeLdniYiO858gXNY39o5wISKyw= + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +buffer-writer@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-1.0.1.tgz#22a936901e3029afcd7547eb4487ceb697a3bf08" + integrity sha1-Iqk2kB4wKa/NdUfrRIfOtpejvwg= + +buffer-xor@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz#26e61ed1422fb70dd42e6e36729ed51d855fe8d9" + integrity sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk= + +buffer@4.9.1, buffer@^4.3.0: + version "4.9.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz#6d1bb601b07a4efced97094132093027c95bc298" + integrity sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg= + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + isarray "^1.0.0" + +buffer@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz#dd57fa0f109ac59c602479044dca7b8b3d0b71d6" + integrity sha512-c+Ko0loDaFfuPWiL02ls9Xd3GO3cPVmUobQ6t3rXNUk304u6hGq+8N/kFi+QEIKhzK3uwolVhLzszmfLmMLnqg== + dependencies: + base64-js "^1.0.2" + ieee754 "^1.1.4" + +bufferutil@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.1.tgz#3a177e8e5819a1243fe16b63a199951a7ad8d4a7" + integrity sha512-xowrxvpxojqkagPcWRQVXZl0YXhRhAtBEIq3VoER1NH5Mw1n1o0ojdspp+GS2J//2gCVyrzQDApQ4unGF+QOoA== + dependencies: + node-gyp-build "~3.7.0" + +builtin-status-codes@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" + integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= + +bunyan@^1.8.3: + version "1.8.12" + resolved "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.12.tgz#f150f0f6748abdd72aeae84f04403be2ef113797" + integrity sha1-8VDw9nSKvdcq6uhPBEA74u8RN5c= + optionalDependencies: + dtrace-provider "~0.8" + moment "^2.10.6" + mv "~2" + safe-json-stringify "~1" + +bytes@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" + integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg= + +bytes@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" + integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== + +cacache@^10.0.4: + version "10.0.4" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-10.0.4.tgz#6452367999eff9d4188aefd9a14e9d7c6a263460" + integrity sha512-Dph0MzuH+rTQzGPNT9fAnrPmMmjKfST6trxJeK7NQuHRaVw24VzPRWTmg9MpcwOVQZO0E1FBICUlFeNaKPIfHA== + dependencies: + bluebird "^3.5.1" + chownr "^1.0.1" + glob "^7.1.2" + graceful-fs "^4.1.11" + lru-cache "^4.1.1" + mississippi "^2.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^5.2.4" + unique-filename "^1.1.0" + y18n "^4.0.0" + +cacache@^11.3.2: + version "11.3.2" + resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa" + integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg== + dependencies: + bluebird "^3.5.3" + chownr "^1.1.1" + figgy-pudding "^3.5.1" + glob "^7.1.3" + graceful-fs "^4.1.15" + lru-cache "^5.1.1" + mississippi "^3.0.0" + mkdirp "^0.5.1" + move-concurrently "^1.0.1" + promise-inflight "^1.0.1" + rimraf "^2.6.2" + ssri "^6.0.1" + unique-filename "^1.1.1" + y18n "^4.0.0" + +cache-base@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2" + integrity sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ== + dependencies: + collection-visit "^1.0.0" + component-emitter "^1.2.1" + get-value "^2.0.6" + has-value "^1.0.0" + isobject "^3.0.1" + set-value "^2.0.0" + to-object-path "^0.3.0" + union-value "^1.0.0" + unset-value "^1.0.0" + +caller-callsite@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134" + integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ= + dependencies: + callsites "^2.0.0" + +caller-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" + integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ= + dependencies: + caller-callsite "^2.0.0" + +callsite@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz#280398e5d664bd74038b6f0905153e6e8af1bc20" + integrity sha1-KAOY5dZkvXQDi28JBRU+borxvCA= + +callsites@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" + integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camel-case@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz#ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73" + integrity sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M= + dependencies: + no-case "^2.2.0" + upper-case "^1.1.1" + +camelcase@^1.0.2: + version "1.2.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39" + integrity sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk= + +camelcase@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" + integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= + +camelcase@^5.0.0: + version "5.3.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" + integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== + +camelize@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" + integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000971: + version "1.0.30000971" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000971.tgz#d1000e4546486a6977756547352bc96a4cfd2b13" + integrity sha512-TQFYFhRS0O5rdsmSbF1Wn+16latXYsQJat66f7S7lizXW1PVpWJeZw9wqqVLIjuxDRz7s7xRUj13QCfd8hKn6g== + +caseless@~0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" + integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= + +center-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz#aa0d32629b6ee972200411cbd4461c907bc2b7ad" + integrity sha1-qg0yYptu6XIgBBHL1EYckHvCt60= + dependencies: + align-text "^0.1.3" + lazy-cache "^1.0.3" + +chalk@^1.0.0, chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" + integrity sha1-UZmj3c0MHv4jvAjBsCewYXbgxk8= + dependencies: + ansi-styles "~1.0.0" + has-color "~0.1.0" + strip-ansi "~0.1.0" + +chance@^1.0.4: + version "1.0.18" + resolved "https://registry.yarnpkg.com/chance/-/chance-1.0.18.tgz#79788fe6fca4c338bf404321c347eecc80f969ee" + integrity sha512-g9YLQVHVZS/3F+zIicfB58vjcxopvYQRp7xHzvyDFDhXH1aRZI/JhwSAO0X5qYiQluoGnaNAU6wByD2KTxJN1A== + +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== + +cheerio@^0.22.0: + version "0.22.0" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e" + integrity sha1-qbqoYKP5tZWmuBsahocxIe06Jp4= + dependencies: + css-select "~1.2.0" + dom-serializer "~0.1.0" + entities "~1.1.1" + htmlparser2 "^3.9.1" + lodash.assignin "^4.0.9" + lodash.bind "^4.1.4" + lodash.defaults "^4.0.1" + lodash.filter "^4.4.0" + lodash.flatten "^4.2.0" + lodash.foreach "^4.3.0" + lodash.map "^4.4.0" + lodash.merge "^4.4.0" + lodash.pick "^4.2.1" + lodash.reduce "^4.4.0" + lodash.reject "^4.4.0" + lodash.some "^4.4.0" + +chokidar@^1.6.1, chokidar@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" + integrity sha1-eY5ol3gVHIB2tLNg5e3SjNortGg= + dependencies: + anymatch "^1.3.0" + async-each "^1.0.0" + glob-parent "^2.0.0" + inherits "^2.0.1" + is-binary-path "^1.0.0" + is-glob "^2.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.0.0" + optionalDependencies: + fsevents "^1.0.0" + +chokidar@^2.0.2: + version "2.1.6" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5" + integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.1" + optionalDependencies: + fsevents "^1.2.7" + +chownr@^1.0.1, chownr@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== + +chrome-trace-event@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" + integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== + dependencies: + tslib "^1.9.0" + +cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz#8760e4ecc272f4c363532f926d874aae2c1397de" + integrity sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +class-utils@^0.3.5: + version "0.3.6" + resolved "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463" + integrity sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg== + dependencies: + arr-union "^3.1.0" + define-property "^0.2.5" + isobject "^3.0.0" + static-extend "^0.1.1" + +clean-css@4.2.x: + version "4.2.1" + resolved "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz#2d411ef76b8569b6d0c84068dabe85b0aa5e5c17" + integrity sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g== + dependencies: + source-map "~0.6.0" + +cli-color@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-1.2.0.tgz#3a5ae74fd76b6267af666e69e2afbbd01def34d1" + integrity sha1-OlrnT9drYmevZm5p4q+70B3vNNE= + dependencies: + ansi-regex "^2.1.1" + d "1" + es5-ext "^0.10.12" + es6-iterator "2" + memoizee "^0.4.3" + timers-ext "0.1" + +cli-cursor@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" + integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= + dependencies: + restore-cursor "^2.0.0" + +cli-width@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639" + integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk= + +clipboard@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d" + integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ== + dependencies: + good-listener "^1.2.2" + select "^1.1.2" + tiny-emitter "^2.0.0" + +cliui@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1" + integrity sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE= + dependencies: + center-align "^0.1.1" + right-align "^0.1.1" + wordwrap "0.0.2" + +cliui@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz#120601537a916d29940f934da3b48d585a39213d" + integrity sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + wrap-ansi "^2.0.0" + +cliui@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz#348422dbe82d800b3022eef4f6ac10bf2e4d1b49" + integrity sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ== + dependencies: + string-width "^2.1.1" + strip-ansi "^4.0.0" + wrap-ansi "^2.0.0" + +clone-stats@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" + integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= + +clone@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" + integrity sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8= + +clone@^1.0.0, clone@^1.0.2: + version "1.0.4" + resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" + integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= + +clone@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" + integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= + +coa@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3" + integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA== + dependencies: + "@types/q" "^1.5.1" + chalk "^2.4.1" + q "^1.1.2" + +code-point-at@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" + integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c= + +"codemirror@git+https://github.com/hackmdio/CodeMirror.git": + version "5.46.1" + resolved "git+https://github.com/hackmdio/CodeMirror.git#8ce8e8820da8f51d852bda1e0b9a5394eb8ea8d3" + dependencies: + blint "^1" + node-static "0.7.11" + phantomjs-prebuilt "^2.1.12" + rollup "^0.66.2" + rollup-plugin-buble "^0.19.2" + rollup-watch "^4.3.1" + uglify-js "^2.8.15" + +collection-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" + integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA= + dependencies: + map-visit "^1.0.0" + object-visit "^1.0.0" + +color-convert@^1.9.0, color-convert@^1.9.1: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +color-name@^1.0.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +color-string@^1.5.2: + version "1.5.3" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc" + integrity sha512-dC2C5qeWoYkxki5UAXapdjqO672AM4vZuPGRQfO8b5HKuKGBbKWpITyDYN7TOFKvRW7kOgAn3746clDBMDJyQw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color-support@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" + integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== + +color@3.0.x: + version "3.0.0" + resolved "https://registry.yarnpkg.com/color/-/color-3.0.0.tgz#d920b4328d534a3ac8295d68f7bd4ba6c427be9a" + integrity sha512-jCpd5+s0s0t7p3pHQKpnJ0TpQKKdleP71LWcA0aqiljpiuAkOSUFN/dyH8ZwF0hRmFlrIuRhufds1QyEP9EB+w== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + +color@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.1.tgz#7abf5c0d38e89378284e873c207ae2172dcc8a61" + integrity sha512-PvUltIXRjehRKPSy89VnDWFKY58xyhTLyxIg21vwQBI6qLwZNPmC8k3C1uytIgFKEpOIzN4y32iPm8231zFHIg== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.2" + +colornames@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" + integrity sha1-+IiQMGhcfE/54qVZ9Qd+t2qBb5Y= + +colors@>=0.6.0, colors@^1.2.1: + version "1.3.3" + resolved "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz#39e005d546afe01e01f9c4ca8fa50f686a01205d" + integrity sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg== + +colorspace@1.1.x: + version "1.1.2" + resolved "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.2.tgz#e0128950d082b86a2168580796a0aa5d6c68d8c5" + integrity sha512-vt+OoIP2d76xLhjwbBaucYlNSpPsrJWPlBTtwCpQKIu6/CSMutyzX93O/Do0qzpH3YoHEes8YEFXyZ797rEhzQ== + dependencies: + color "3.0.x" + text-hex "1.0.x" + +combined-stream@^1.0.5, combined-stream@^1.0.6, combined-stream@~1.0.6: + version "1.0.8" + resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" + integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== + dependencies: + delayed-stream "~1.0.0" + +commander@2.15.1: + version "2.15.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" + integrity sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag== + +commander@2.17.x: + version "2.17.1" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz#bd77ab7de6de94205ceacc72f1716d29f20a77bf" + integrity sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg== + +commander@^2.11.0, commander@^2.13.0, commander@^2.19.0, commander@^2.2.0, commander@^2.9.0, commander@~2.20.0: + version "2.20.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422" + integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ== + +commander@~2.13.0: + version "2.13.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c" + integrity sha512-MVuS359B+YzaWqjCL/c+22gfryv+mCBPHAv3zyVI2GN8EY6IRP8VwtasXn8jyyhvvq84R4ImN1OKRtcbIasjYA== + +commander@~2.19.0: + version "2.19.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" + integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + +component-bind@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1" + integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E= + +component-emitter@1.2.1, component-emitter@~1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" + integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY= + +component-emitter@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" + integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== + +component-inherit@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" + integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= + +compress-commons@^1.2.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.2.tgz#524a9f10903f3a813389b0225d27c48bb751890f" + integrity sha1-UkqfEJA/OoEzibAiXSfEi7dRiQ8= + dependencies: + buffer-crc32 "^0.2.1" + crc32-stream "^2.0.0" + normalize-path "^2.0.0" + readable-stream "^2.0.0" + +compressible@~2.0.16: + version "2.0.17" + resolved "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz#6e8c108a16ad58384a977f3a482ca20bff2f38c1" + integrity sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw== + dependencies: + mime-db ">= 1.40.0 < 2" + +compression@^1.6.2: + version "1.7.4" + resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f" + integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ== + dependencies: + accepts "~1.3.5" + bytes "3.0.0" + compressible "~2.0.16" + debug "2.6.9" + on-headers "~1.0.2" + safe-buffer "5.1.2" + vary "~1.1.2" + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= + +concat-stream@1.6.2, concat-stream@^1.4.7, concat-stream@^1.4.8, concat-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +config-chain@^1.1.12: + version "1.1.12" + resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" + integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== + dependencies: + ini "^1.3.4" + proto-list "~1.2.1" + +connect-flash@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz#d8630f26d95a7f851f9956b1e8cc6732f3b6aa30" + integrity sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA= + +connect-session-sequelize@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-4.1.0.tgz#d402749c3bebd79209192c164c090742b3fe2011" + integrity sha1-1AJ0nDvr15IJGSwWTAkHQrP+IBE= + dependencies: + debug "^2.1.1" + deep-equal "^1.0.1" + +console-browserify@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10" + integrity sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA= + dependencies: + date-now "^0.1.4" + +console-control-strings@^1.0.0, console-control-strings@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" + integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= + +constants-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz#c20b96d8c617748aaf1c16021760cd27fcb8cb75" + integrity sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U= + +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + +content-disposition@0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd" + integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g== + dependencies: + safe-buffer "5.1.2" + +content-security-policy-builder@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.0.0.tgz#8749a1d542fcbe82237281ea9f716ce68b394dd2" + integrity sha512-j+Nhmj1yfZAikJLImCvPJFE29x/UuBi+/MWqggGGc515JKaZrjuei2RhULJmy0MsstW3E3htl002bwmBNMKr7w== + +content-type@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" + integrity sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA== + +convert-source-map@^1.5.0, convert-source-map@^1.5.1: + version "1.6.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== + dependencies: + safe-buffer "~5.1.1" + +cookie-parser@1.4.3: + version "1.4.3" + resolved "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz#0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5" + integrity sha1-D+MfoZ0AC5X0qt8fU/3CuKIDuqU= + dependencies: + cookie "0.3.1" + cookie-signature "1.0.6" + +cookie-signature@1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw= + +cookie@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb" + integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s= + +cookie@0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" + integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== + +cookiejar@2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz#0abf356ad00d1c5a219d88d44518046dd026acfe" + integrity sha1-Cr81atANHFohnYjURRgEbdAmrP4= + +copy-concurrently@^1.0.0: + version "1.0.5" + resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0" + integrity sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A== + dependencies: + aproba "^1.1.1" + fs-write-stream-atomic "^1.0.8" + iferr "^0.1.5" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.0" + +copy-descriptor@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" + integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= + +copy-webpack-plugin@^4.5.2: + version "4.6.0" + resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz#e7f40dd8a68477d405dd1b7a854aae324b158bae" + integrity sha512-Y+SQCF+0NoWQryez2zXn5J5knmr9z/9qSQt7fbL78u83rxmigOy8X5+BFn8CFSuX+nKT8gpYwJX68ekqtQt6ZA== + dependencies: + cacache "^10.0.4" + find-cache-dir "^1.0.0" + globby "^7.1.1" + is-glob "^4.0.0" + loader-utils "^1.1.0" + minimatch "^3.0.4" + p-limit "^1.0.0" + serialize-javascript "^1.4.0" + +core-js@^2.4.0, core-js@^2.5.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" + integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== + +core-util-is@1.0.2, core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +cosmiconfig@^5.0.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a" + integrity sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA== + dependencies: + import-fresh "^2.0.0" + is-directory "^0.3.1" + js-yaml "^3.13.1" + parse-json "^4.0.0" + +crc32-stream@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz#e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4" + integrity sha1-483TtN8xaN10494/u8t7KX/pCPQ= + dependencies: + crc "^3.4.4" + readable-stream "^2.0.0" + +crc@^3.4.4: + version "3.8.0" + resolved "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz#ad60269c2c856f8c299e2c4cc0de4556914056c6" + integrity sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ== + dependencies: + buffer "^5.1.0" + +create-ecdh@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz#c9111b6f33045c4697f144787f9254cdc77c45ff" + integrity sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw== + dependencies: + bn.js "^4.1.0" + elliptic "^6.0.0" + +create-hash@^1.1.0, create-hash@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz#889078af11a63756bcfb59bd221996be3a9ef196" + integrity sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg== + dependencies: + cipher-base "^1.0.1" + inherits "^2.0.1" + md5.js "^1.3.4" + ripemd160 "^2.0.1" + sha.js "^2.4.0" + +create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: + version "1.1.7" + resolved "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz#69170c78b3ab957147b2b8b04572e47ead2243ff" + integrity sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg== + dependencies: + cipher-base "^1.0.3" + create-hash "^1.1.0" + inherits "^2.0.1" + ripemd160 "^2.0.0" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +cross-spawn@^5.0.1: + version "5.1.0" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" + integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= + dependencies: + lru-cache "^4.0.1" + shebang-command "^1.2.0" + which "^1.2.9" + +cross-spawn@^6.0.0, cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-browserify@^3.11.0: + version "3.12.0" + resolved "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz#396cf9f3137f03e4b8e532c58f698254e00f80ec" + integrity sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg== + dependencies: + browserify-cipher "^1.0.0" + browserify-sign "^4.0.0" + create-ecdh "^4.0.0" + create-hash "^1.1.0" + create-hmac "^1.1.0" + diffie-hellman "^5.0.0" + inherits "^2.0.1" + pbkdf2 "^3.0.3" + public-encrypt "^4.0.0" + randombytes "^2.0.0" + randomfill "^1.0.3" + +csextends@^1.0.3: + version "1.2.0" + resolved "https://registry.yarnpkg.com/csextends/-/csextends-1.2.0.tgz#6374b210984b54d4495f29c99d3dd069b80543e5" + integrity sha512-S/8k1bDTJIwuGgQYmsRoE+8P+ohV32WhQ0l4zqrc0XDdxOhjQQD7/wTZwCzoZX53jSX3V/qwjT+OkPTxWQcmjg== + +css-color-names@0.0.4, css-color-names@^0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0" + integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA= + +css-declaration-sorter@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22" + integrity sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA== + dependencies: + postcss "^7.0.1" + timsort "^0.3.0" + +css-loader@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.1.tgz#6885bb5233b35ec47b006057da01cc640b6b79fe" + integrity sha512-+ZHAZm/yqvJ2kDtPne3uX0C+Vr3Zn5jFn2N4HywtS5ujwvsVkyg0VArEXpl3BgczDA8anieki1FIzhchX4yrDw== + dependencies: + babel-code-frame "^6.26.0" + css-selector-tokenizer "^0.7.0" + icss-utils "^2.1.0" + loader-utils "^1.0.2" + lodash "^4.17.11" + postcss "^6.0.23" + postcss-modules-extract-imports "^1.2.0" + postcss-modules-local-by-default "^1.2.0" + postcss-modules-scope "^1.1.0" + postcss-modules-values "^1.3.0" + postcss-value-parser "^3.3.0" + source-list-map "^2.0.0" + +css-select-base-adapter@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7" + integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w== + +css-select@^1.1.0, css-select@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" + integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg= + dependencies: + boolbase "~1.0.0" + css-what "2.1" + domutils "1.5.1" + nth-check "~1.0.1" + +css-select@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede" + integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ== + dependencies: + boolbase "^1.0.0" + css-what "^2.1.2" + domutils "^1.7.0" + nth-check "^1.0.2" + +css-selector-tokenizer@^0.7.0: + version "0.7.1" + resolved "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz#a177271a8bca5019172f4f891fc6eed9cbf68d5d" + integrity sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA== + dependencies: + cssesc "^0.1.0" + fastparse "^1.1.1" + regexpu-core "^1.0.0" + +css-tree@1.0.0-alpha.28: + version "1.0.0-alpha.28" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f" + integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w== + dependencies: + mdn-data "~1.1.0" + source-map "^0.5.3" + +css-tree@1.0.0-alpha.29: + version "1.0.0-alpha.29" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz#3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39" + integrity sha512-sRNb1XydwkW9IOci6iB2xmy8IGCj6r/fr+JWitvJ2JxQRPzN3T4AGGVWCMlVmVwM1gtgALJRmGIlWv5ppnGGkg== + dependencies: + mdn-data "~1.1.0" + source-map "^0.5.3" + +css-unit-converter@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" + integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= + +css-url-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec" + integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w= + +css-what@2.1, css-what@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" + integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== + +cssesc@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz#c814903e45623371a0477b40109aaafbeeaddbb4" + integrity sha1-yBSQPkViM3GgR3tAEJqq++6t27Q= + +cssesc@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== + +cssfilter@0.0.10: + version "0.0.10" + resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" + integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= + +cssnano-preset-default@^4.0.7: + version "4.0.7" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" + integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== + dependencies: + css-declaration-sorter "^4.0.1" + cssnano-util-raw-cache "^4.0.1" + postcss "^7.0.0" + postcss-calc "^7.0.1" + postcss-colormin "^4.0.3" + postcss-convert-values "^4.0.1" + postcss-discard-comments "^4.0.2" + postcss-discard-duplicates "^4.0.2" + postcss-discard-empty "^4.0.1" + postcss-discard-overridden "^4.0.1" + postcss-merge-longhand "^4.0.11" + postcss-merge-rules "^4.0.3" + postcss-minify-font-values "^4.0.2" + postcss-minify-gradients "^4.0.2" + postcss-minify-params "^4.0.2" + postcss-minify-selectors "^4.0.2" + postcss-normalize-charset "^4.0.1" + postcss-normalize-display-values "^4.0.2" + postcss-normalize-positions "^4.0.2" + postcss-normalize-repeat-style "^4.0.2" + postcss-normalize-string "^4.0.2" + postcss-normalize-timing-functions "^4.0.2" + postcss-normalize-unicode "^4.0.1" + postcss-normalize-url "^4.0.1" + postcss-normalize-whitespace "^4.0.2" + postcss-ordered-values "^4.1.2" + postcss-reduce-initial "^4.0.3" + postcss-reduce-transforms "^4.0.2" + postcss-svgo "^4.0.2" + postcss-unique-selectors "^4.0.1" + +cssnano-util-get-arguments@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f" + integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8= + +cssnano-util-get-match@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d" + integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0= + +cssnano-util-raw-cache@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282" + integrity sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA== + dependencies: + postcss "^7.0.0" + +cssnano-util-same-parent@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3" + integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== + +cssnano@^4.1.0: + version "4.1.10" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" + integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== + dependencies: + cosmiconfig "^5.0.0" + cssnano-preset-default "^4.0.7" + is-resolvable "^1.0.0" + postcss "^7.0.0" + +csso@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b" + integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg== + dependencies: + css-tree "1.0.0-alpha.29" + +cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": + version "0.3.6" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz#f85206cee04efa841f3c5982a74ba96ab20d65ad" + integrity sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A== + +cssom@~0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz#2682709b5902e7212df529116ff788cd5b254894" + integrity sha1-JoJwm1kC5yEt9SkRb/eIzVslSJQ= + +cssstyle@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz#427ea4d585b18624f6fdbf9de7a2a1a3ba713077" + integrity sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow== + dependencies: + cssom "0.3.x" + +cssstyle@~0.2.3: + version "0.2.37" + resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz#541097234cb2513c83ceed3acddc27ff27987d54" + integrity sha1-VBCXI0yyUTyDzu06zdwn/yeYfVQ= + dependencies: + cssom "0.3.x" + +cyclist@~0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640" + integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA= + +d3@3.5.17: + version "3.5.17" + resolved "https://registry.yarnpkg.com/d3/-/d3-3.5.17.tgz#bc46748004378b21a360c9fc7cf5231790762fb8" + integrity sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g= + +d@1: + version "1.0.0" + resolved "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz#754bb5bfe55451da69a58b94d45f4c5b0462d58f" + integrity sha1-dUu1v+VUUdpppYuU1F9MWwRi1Y8= + dependencies: + es5-ext "^0.10.9" + +dagre-d3-renderer@^0.4.25: + version "0.4.26" + resolved "https://registry.yarnpkg.com/dagre-d3-renderer/-/dagre-d3-renderer-0.4.26.tgz#648a491209b853ae96ddf3fea41a1f104479a5a1" + integrity sha512-vOWj1uA4/APTrfDyfHaH/xpfXhPh9rszW+HOaEwPCeA6Afl06Lobfh7OpESuVMQW2QGuY4UQ7pte/p0WhdDs7w== + dependencies: + d3 "3.5.17" + dagre-layout "^0.8.0" + graphlib "^2.1.1" + lodash "^4.17.4" + +dagre-layout@^0.8.0: + version "0.8.8" + resolved "https://registry.yarnpkg.com/dagre-layout/-/dagre-layout-0.8.8.tgz#9b6792f24229f402441c14162c1049e3f261f6d9" + integrity sha512-ZNV15T9za7X+fV8Z07IZquUKugCxm5owoiPPxfEx6OJRD331nkiIaF3vSt0JEY5FkrY0KfRQxcpQ3SpXB7pLPQ== + dependencies: + graphlibrary "^2.2.0" + lodash "^4.17.5" + +dashdash@^1.12.0, dashdash@^1.14.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" + integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= + dependencies: + assert-plus "^1.0.0" + +dasherize@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" + integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= + +data-urls@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" + integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== + dependencies: + abab "^2.0.0" + whatwg-mimetype "^2.2.0" + whatwg-url "^7.0.0" + +date-now@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz#eaf439fd4d4848ad74e5cc7dbef200672b9e345b" + integrity sha1-6vQ5/U1ISK105cx9vvIAZyueNFs= + +dateformat@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" + integrity sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI= + +debug@*, debug@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +debug@2, debug@2.6.9, debug@^2.1.1, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@3.1.0, debug@~3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261" + integrity sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g== + dependencies: + ms "2.0.0" + +debug@^3.1.0, debug@^3.2.6: + version "3.2.6" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b" + integrity sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ== + dependencies: + ms "^2.1.1" + +decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" + integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= + +decode-uri-component@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" + integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= + +deep-equal@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= + +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== + +deep-freeze@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz#3a0b0005de18672819dfd38cd31f91179c893e84" + integrity sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ= + +deep-is@~0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" + integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= + +defaults@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" + integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= + dependencies: + clone "^1.0.2" + +define-properties@^1.1.2, define-properties@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1" + integrity sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ== + dependencies: + object-keys "^1.0.12" + +define-property@^0.2.5: + version "0.2.5" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116" + integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY= + dependencies: + is-descriptor "^0.1.0" + +define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6" + integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY= + dependencies: + is-descriptor "^1.0.0" + +define-property@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d" + integrity sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ== + dependencies: + is-descriptor "^1.0.2" + isobject "^3.0.1" + +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= + +delayed-stream@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" + integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= + +delegate@^3.1.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166" + integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw== + +delegates@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" + integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= + +depd@2.0.0, depd@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== + +depd@^1.1.0, depd@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9" + integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak= + +deprecated@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" + integrity sha1-+cmvVGSvoeepcUWKi97yqpTVuxk= + +des.js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz#c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc" + integrity sha1-wHTS4qpqipoH29YfmhXCzYPsjsw= + dependencies: + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + +destroy@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" + integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= + +detect-file@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz#4935dedfd9488648e006b0129566e9386711ea63" + integrity sha1-STXe39lIhkjgBrASlWbpOGcR6mM= + dependencies: + fs-exists-sync "^0.1.0" + +detect-file@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" + integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= + +detect-indent@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" + integrity sha1-920GQ1LN9Docts5hnE7jqUdd4gg= + dependencies: + repeating "^2.0.0" + +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= + +diagnostics@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/diagnostics/-/diagnostics-1.1.1.tgz#cab6ac33df70c9d9a727490ae43ac995a769b22a" + integrity sha512-8wn1PmdunLJ9Tqbx+Fx/ZEuHfJf4NKSN2ZBj7SJC/OWRWha843+WsTjqMe1B5E3p28jqBlp+mJ2fPVxPyNgYKQ== + dependencies: + colorspace "1.1.x" + enabled "1.0.x" + kuler "1.0.x" + +"diff-match-patch@git+https://github.com/hackmdio/diff-match-patch.git": + version "1.1.1" + resolved "git+https://github.com/hackmdio/diff-match-patch.git#dd6e43a1df8f46ac17ba33217c00d4018ef5637f" + +diff@3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" + integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== + +diffie-hellman@^5.0.0: + version "5.0.3" + resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875" + integrity sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg== + dependencies: + bn.js "^4.1.0" + miller-rabin "^4.0.0" + randombytes "^2.0.0" + +dir-glob@^2.0.0: + version "2.2.2" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz#fa09f0694153c8918b18ba0deafae94769fc50c4" + integrity sha512-f9LBi5QWzIW3I6e//uxZoLBlUt9kcp66qo0sSCxL6YZKc75R1c4MFCoe/LaZiBGmgujvQdxc5Bn3QhfyvK5Hsw== + dependencies: + path-type "^3.0.0" + +dns-lookup-all@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/dns-lookup-all/-/dns-lookup-all-1.0.2.tgz#4d8b2b1af69c83a7b262eb5de92485b7b3a215eb" + integrity sha1-TYsrGvacg6eyYutd6SSFt7OiFes= + dependencies: + semver "^5.3.0" + +dns-prefetch-control@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/dns-prefetch-control/-/dns-prefetch-control-0.1.0.tgz#60ddb457774e178f1f9415f0cabb0e85b0b300b2" + integrity sha1-YN20V3dOF48flBXwyrsOhbCzALI= + +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-converter@^0.2: + version "0.2.0" + resolved "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz#6721a9daee2e293682955b6afe416771627bb768" + integrity sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA== + dependencies: + utila "~0.4" + +dom-serializer@0, dom-serializer@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== + dependencies: + domelementtype "^1.3.0" + entities "^1.1.1" + +domain-browser@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz#3d31f50191a6749dd1375a7f522e823d42e54eda" + integrity sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA== + +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" + integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== + +domexception@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" + integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== + dependencies: + webidl-conversions "^4.0.2" + +domhandler@^2.3.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" + integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== + dependencies: + domelementtype "1" + +domutils@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" + integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8= + dependencies: + dom-serializer "0" + domelementtype "1" + +domutils@^1.5.1, domutils@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a" + integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg== + dependencies: + dom-serializer "0" + domelementtype "1" + +dont-sniff-mimetype@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.0.0.tgz#5932890dc9f4e2f19e5eb02a20026e5e5efc8f58" + integrity sha1-WTKJDcn04vGeXrAqIAJuXl78j1g= + +dot-prop@^4.1.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" + integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== + dependencies: + is-obj "^1.0.0" + +dottie@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/dottie/-/dottie-1.1.1.tgz#45c2a3f48bd6528eeed267a69a848eaaca6faa6a" + integrity sha1-RcKj9IvWUo7u0memmoSOqspvqmo= + +dtrace-provider@~0.8: + version "0.8.7" + resolved "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.7.tgz#dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04" + integrity sha1-3JObTT4GIM/gwc2APQ0tftBP/QQ= + dependencies: + nan "^2.10.0" + +duplexer2@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" + integrity sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds= + dependencies: + readable-stream "~1.1.9" + +duplexer@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1" + integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E= + +duplexify@^3.4.2, duplexify@^3.6.0: + version "3.7.1" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" + integrity sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g== + dependencies: + end-of-stream "^1.0.0" + inherits "^2.0.1" + readable-stream "^2.0.0" + stream-shift "^1.0.0" + +eachr@^2.0.2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/eachr/-/eachr-2.0.4.tgz#466f7caa10708f610509e32c807aafe57fc122bf" + integrity sha1-Rm98qhBwj2EFCeMsgHqv5X/BIr8= + dependencies: + typechecker "^2.0.8" + +ecc-jsbn@~0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9" + integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk= + dependencies: + jsbn "~0.1.0" + safer-buffer "^2.1.0" + +editions@^1.1.1, editions@^1.3.3: + version "1.3.4" + resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b" + integrity sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg== + +editions@^2.1.0, editions@^2.1.2: + version "2.1.3" + resolved "https://registry.yarnpkg.com/editions/-/editions-2.1.3.tgz#727ccf3ec2c7b12dcc652c71000f16c4824d6f7d" + integrity sha512-xDZyVm0A4nLgMNWVVLJvcwMjI80ShiH/27RyLiCnW1L273TcJIA25C4pwJ33AWV01OX6UriP35Xu+lH4S7HWQw== + dependencies: + errlop "^1.1.1" + semver "^5.6.0" + +editorconfig@^0.15.3: + version "0.15.3" + resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" + integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== + dependencies: + commander "^2.19.0" + lru-cache "^4.1.5" + semver "^5.6.0" + sigmund "^1.0.1" + +ee-first@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= + +ejs-loader@^0.3.1: + version "0.3.3" + resolved "https://registry.yarnpkg.com/ejs-loader/-/ejs-loader-0.3.3.tgz#021aa196b8858f05b6f095576c4afe61012ccc2e" + integrity sha512-1pQNFYu+4VIeLLNrSZ8QaiyFk9oXv8koUyQ2Pz5k0dw89HHjeiliTPQ46GfqAzCqJ8cEq8QFNj/HsVjyIuzKEA== + dependencies: + loader-utils "^0.2.7" + lodash "^4.17.11" + +ejs@^2.5.5, ejs@^2.5.6: + version "2.6.1" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz#498ec0d495655abc6f23cd61868d926464071aa0" + integrity sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ== + +electron-to-chromium@^1.3.137, electron-to-chromium@^1.3.47: + version "1.3.138" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.138.tgz#3c27814d48040d3988eaee56ab839d032987aff4" + integrity sha512-V6gvA2zuVp2l8gT8tvaFp3z2IOnx0UeCPuG6Fyw4x/eZEbt9xD9npSgia6emmDFHAz3TU0bElnpKZ3xZ0CUNDw== + +elliptic@^6.0.0: + version "6.4.1" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a" + integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ== + dependencies: + bn.js "^4.4.0" + brorand "^1.0.1" + hash.js "^1.0.0" + hmac-drbg "^1.0.0" + inherits "^2.0.1" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.0" + +emoji-regex@^7.0.1: + version "7.0.3" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" + integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== + +emojify.js@~1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/emojify.js/-/emojify.js-1.1.0.tgz#079fff223307c9007f570785e8e4935d5c398beb" + integrity sha1-B5//IjMHyQB/VweF6OSTXVw5i+s= + +emojis-list@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389" + integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k= + +enabled@1.0.x: + version "1.0.2" + resolved "https://registry.yarnpkg.com/enabled/-/enabled-1.0.2.tgz#965f6513d2c2d1c5f4652b64a2e3396467fc2f93" + integrity sha1-ll9lE9LC0cX0ZStkouM5ZGf8L5M= + dependencies: + env-variable "0.0.x" + +encodeurl@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k= + +end-of-stream@^1.0.0, end-of-stream@^1.1.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz#ed29634d19baba463b6ce6b80a37213eab71ec43" + integrity sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q== + dependencies: + once "^1.4.0" + +end-of-stream@~0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" + integrity sha1-jhdyBsPICDfYVjLouTWd/osvbq8= + dependencies: + once "~1.3.0" + +engine.io-client@~3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz#6f54c0475de487158a1a7c77d10178708b6add36" + integrity sha512-y5AbkytWeM4jQr7m/koQLc5AxpRKC1hEVUb/s1FUAWEJq5AzJJ4NLvzuKPuxtDi5Mq755WuDvZ6Iv2rXj4PTzw== + dependencies: + component-emitter "1.2.1" + component-inherit "0.0.3" + debug "~3.1.0" + engine.io-parser "~2.1.1" + has-cors "1.1.0" + indexof "0.0.1" + parseqs "0.0.5" + parseuri "0.0.5" + ws "~3.3.1" + xmlhttprequest-ssl "~1.5.4" + yeast "0.1.2" + +engine.io-parser@~2.1.0, engine.io-parser@~2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.3.tgz#757ab970fbf2dfb32c7b74b033216d5739ef79a6" + integrity sha512-6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA== + dependencies: + after "0.8.2" + arraybuffer.slice "~0.0.7" + base64-arraybuffer "0.1.5" + blob "0.0.5" + has-binary2 "~1.0.2" + +engine.io@~3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.1.tgz#b60281c35484a70ee0351ea0ebff83ec8c9522a2" + integrity sha512-+VlKzHzMhaU+GsCIg4AoXF1UdDFjHHwMmMKqMJNDNLlUlejz58FCy4LBqB2YVJskHGYl06BatYWKP2TVdVXE5w== + dependencies: + accepts "~1.3.4" + base64id "1.0.0" + cookie "0.3.1" + debug "~3.1.0" + engine.io-parser "~2.1.0" + ws "~3.3.1" + +enhanced-resolve@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz#41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f" + integrity sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng== + dependencies: + graceful-fs "^4.1.2" + memory-fs "^0.4.0" + tapable "^1.0.0" + +entities@^1.1.1, entities@~1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" + integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== + +env-variable@0.0.x: + version "0.0.5" + resolved "https://registry.yarnpkg.com/env-variable/-/env-variable-0.0.5.tgz#913dd830bef11e96a039c038d4130604eba37f88" + integrity sha512-zoB603vQReOFvTg5xMl9I1P2PnHsHQQKTEowsKKD7nseUfJq6UWzK+4YtlWUO1nhiQUxe6XMkk+JleSZD1NZFA== + +errlop@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/errlop/-/errlop-1.1.1.tgz#d9ae4c76c3e64956c5d79e6e035d6343bfd62250" + integrity sha512-WX7QjiPHhsny7/PQvrhS5VMizXXKoKCS3udaBp8gjlARdbn+XmK300eKBAAN0hGyRaTCtRpOaxK+xFVPUJ3zkw== + dependencies: + editions "^2.1.2" + +errno@^0.1.1, errno@^0.1.3, errno@~0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618" + integrity sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg== + dependencies: + prr "~1.0.1" + +error-ex@^1.2.0, error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.7.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9" + integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg== + dependencies: + es-to-primitive "^1.2.0" + function-bind "^1.1.1" + has "^1.0.3" + is-callable "^1.1.4" + is-regex "^1.0.4" + object-keys "^1.0.12" + +es-to-primitive@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz#edf72478033456e8dda8ef09e00ad9650707f377" + integrity sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +es5-ext@^0.10.12, es5-ext@^0.10.14, es5-ext@^0.10.35, es5-ext@^0.10.45, es5-ext@^0.10.9, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: + version "0.10.50" + resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz#6d0e23a0abdb27018e5ac4fd09b412bc5517a778" + integrity sha512-KMzZTPBkeQV/JcSQhI5/z6d9VWJ3EnQ194USTUwIYZ2ZbpN8+SGXQKt1h68EX44+qt+Fzr8DO17vnxrw7c3agw== + dependencies: + es6-iterator "~2.0.3" + es6-symbol "~3.1.1" + next-tick "^1.0.0" + +es6-error@^2.0.2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-2.1.1.tgz#91384301ec5ed1c9a7247d1128247216f03547cd" + integrity sha1-kThDAexe0cmnJH0RKCRyFvA1R80= + +es6-iterator@2, es6-iterator@^2.0.1, es6-iterator@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" + integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= + dependencies: + d "1" + es5-ext "^0.10.35" + es6-symbol "^3.1.1" + +es6-promise@^4.0.3: + version "4.2.6" + resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.6.tgz#b685edd8258886365ea62b57d30de28fadcd974f" + integrity sha512-aRVgGdnmW2OiySVPUC9e6m+plolMAJKjZnQlCwNSuK5yQ0JN61DZSO1X1Ufd1foqWRAlig0rhduTCHe7sVtK5Q== + +es6-symbol@^3.1.1, es6-symbol@~3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz#bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77" + integrity sha1-vwDvT9q2uhtG7Le2KbTH7VcVzHc= + dependencies: + d "1" + es5-ext "~0.10.14" + +es6-weak-map@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz#5e3ab32251ffd1538a1f8e5ffa1357772f92d96f" + integrity sha1-XjqzIlH/0VOKH45f+hNXdy+S2W8= + dependencies: + d "1" + es5-ext "^0.10.14" + es6-iterator "^2.0.1" + es6-symbol "^3.1.1" + +escape-html@^1.0.3, escape-html@~1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= + +escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +escodegen@^1.9.1: + version "1.11.1" + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz#c485ff8d6b4cdb89e27f4a856e91f118401ca510" + integrity sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw== + dependencies: + esprima "^3.1.3" + estraverse "^4.2.0" + esutils "^2.0.2" + optionator "^0.8.1" + optionalDependencies: + source-map "~0.6.1" + +eslint-config-standard@^12.0.0: + version "12.0.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9" + integrity sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ== + +eslint-import-resolver-node@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + dependencies: + debug "^2.6.9" + resolve "^1.5.0" + +eslint-module-utils@^2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz#8b93499e9b00eab80ccb6614e69f03678e84e09a" + integrity sha512-14tltLm38Eu3zS+mt0KvILC3q8jyIAH518MlG+HO0p+yK885Lb1UHTY/UgR91eOyGdmxAPb+OLoW4znqIT6Ndw== + dependencies: + debug "^2.6.8" + pkg-dir "^2.0.0" + +eslint-plugin-es@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz#475f65bb20c993fc10e8c8fe77d1d60068072da6" + integrity sha512-XfFmgFdIUDgvaRAlaXUkxrRg5JSADoRC8IkKLc/cISeR3yHVMefFHQZpcyXXEUUPHfy5DwviBcrfqlyqEwlQVw== + dependencies: + eslint-utils "^1.3.0" + regexpp "^2.0.1" + +eslint-plugin-import@^2.14.0: + version "2.17.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.17.3.tgz#00548b4434c18faebaba04b24ae6198f280de189" + integrity sha512-qeVf/UwXFJbeyLbxuY8RgqDyEKCkqV7YC+E5S5uOjAp4tOc8zj01JP3ucoBM8JcEqd1qRasJSg6LLlisirfy0Q== + dependencies: + array-includes "^3.0.3" + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.4.0" + has "^1.0.3" + lodash "^4.17.11" + minimatch "^3.0.4" + read-pkg-up "^2.0.0" + resolve "^1.11.0" + +eslint-plugin-node@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz#55ae3560022863d141fa7a11799532340a685964" + integrity sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w== + dependencies: + eslint-plugin-es "^1.3.1" + eslint-utils "^1.3.1" + ignore "^5.0.2" + minimatch "^3.0.4" + resolve "^1.8.1" + semver "^5.5.0" + +eslint-plugin-promise@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.1.1.tgz#1e08cb68b5b2cd8839f8d5864c796f56d82746db" + integrity sha512-faAHw7uzlNPy7b45J1guyjazw28M+7gJokKUjC5JSFoYfUEyy6Gw/i7YQvmv2Yk00sUjWcmzXQLpU1Ki/C2IZQ== + +eslint-plugin-standard@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz#f845b45109c99cd90e77796940a344546c8f6b5c" + integrity sha512-OwxJkR6TQiYMmt1EsNRMe5qG3GsbjlcOhbGUBY4LtavF9DsLaTcoR+j2Tdjqi23oUwKNUqX7qcn5fPStafMdlA== + +eslint-scope@^4.0.0, eslint-scope@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848" + integrity sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg== + dependencies: + esrecurse "^4.1.0" + estraverse "^4.1.1" + +eslint-utils@^1.3.0, eslint-utils@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" + integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== + +eslint-visitor-keys@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" + integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== + +eslint@^5.9.0: + version "5.16.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" + integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== + dependencies: + "@babel/code-frame" "^7.0.0" + ajv "^6.9.1" + chalk "^2.1.0" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^4.0.3" + eslint-utils "^1.3.1" + eslint-visitor-keys "^1.0.0" + espree "^5.0.1" + esquery "^1.0.1" + esutils "^2.0.2" + file-entry-cache "^5.0.1" + functional-red-black-tree "^1.0.1" + glob "^7.1.2" + globals "^11.7.0" + ignore "^4.0.6" + import-fresh "^3.0.0" + imurmurhash "^0.1.4" + inquirer "^6.2.2" + js-yaml "^3.13.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.3.0" + lodash "^4.17.11" + minimatch "^3.0.4" + mkdirp "^0.5.1" + natural-compare "^1.4.0" + optionator "^0.8.2" + path-is-inside "^1.0.2" + progress "^2.0.0" + regexpp "^2.0.1" + semver "^5.5.1" + strip-ansi "^4.0.0" + strip-json-comments "^2.0.1" + table "^5.2.3" + text-table "^0.2.0" + +espree@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" + integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== + dependencies: + acorn "^6.0.7" + acorn-jsx "^5.0.0" + eslint-visitor-keys "^1.0.0" + +esprima@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633" + integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM= + +esprima@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" + integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== + +esquery@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" + integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== + dependencies: + estraverse "^4.0.0" + +esrecurse@^4.1.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf" + integrity sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ== + dependencies: + estraverse "^4.1.0" + +estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1, estraverse@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13" + integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM= + +estree-walker@^0.6.0: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + +esutils@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" + integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= + +etag@~1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= + +eve-raphael@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz#17c754b792beef3fa6684d79cf5a47c63c4cda30" + integrity sha1-F8dUt5K+7z+maE15z1pHxjxM2jA= + +eve@~0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/eve/-/eve-0.4.2.tgz#7eea0afc0e4efb7c9365615315a3576833ead2ae" + integrity sha1-fuoK/A5O+3yTZWFTFaNXaDPq0q4= + +event-emitter@^0.3.5: + version "0.3.5" + resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" + integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= + dependencies: + d "1" + es5-ext "~0.10.14" + +events@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" + integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= + +events@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz#9a0a0dfaf62893d92b875b8f2698ca4114973e88" + integrity sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA== + +evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz#7fcbdb198dc71959432efe13842684e0525acb02" + integrity sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA== + dependencies: + md5.js "^1.3.4" + safe-buffer "^5.1.1" + +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +expand-brackets@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz#df07284e342a807cd733ac5af72411e581d1177b" + integrity sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s= + dependencies: + is-posix-bracket "^0.1.0" + +expand-brackets@^2.1.4: + version "2.1.4" + resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" + integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI= + dependencies: + debug "^2.3.3" + define-property "^0.2.5" + extend-shallow "^2.0.1" + posix-character-classes "^0.1.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +expand-range@^1.8.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337" + integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc= + dependencies: + fill-range "^2.1.0" + +expand-tilde@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz#0b81eba897e5a3d31d1c3d102f8f01441e559449" + integrity sha1-C4HrqJflo9MdHD0QL48BRB5VlEk= + dependencies: + os-homedir "^1.0.1" + +expand-tilde@^2.0.0, expand-tilde@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" + integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= + dependencies: + homedir-polyfill "^1.0.1" + +expect-ct@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/expect-ct/-/expect-ct-0.2.0.tgz#3a54741b6ed34cc7a93305c605f63cd268a54a62" + integrity sha512-6SK3MG/Bbhm8MsgyJAylg+ucIOU71/FzyFalcfu5nY19dH8y/z0tBJU0wrNBXD4B27EoQtqPF/9wqH0iYAd04g== + +exports-loader@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/exports-loader/-/exports-loader-0.7.0.tgz#84881c784dea6036b8e1cd1dac3da9b6409e21a5" + integrity sha512-RKwCrO4A6IiKm0pG3c9V46JxIHcDplwwGJn6+JJ1RcVnh/WSGJa0xkmk5cRVtgOPzCAtTMGj2F7nluh9L0vpSA== + dependencies: + loader-utils "^1.1.0" + source-map "0.5.0" + +expose-loader@^0.7.5: + version "0.7.5" + resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz#e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f" + integrity sha512-iPowgKUZkTPX5PznYsmifVj9Bob0w2wTHVkt/eYNPSzyebkUgIedmskf/kcfEIWpiWjg3JRjnW+a17XypySMuw== + +express-session@^1.14.2: + version "1.16.1" + resolved "https://registry.yarnpkg.com/express-session/-/express-session-1.16.1.tgz#251ff9776c59382301de6c8c33411af357ed439c" + integrity sha512-pWvUL8Tl5jUy1MLH7DhgUlpoKeVPUTe+y6WQD9YhcN0C5qAhsh4a8feVjiUXo3TFhIy191YGZ4tewW9edbl2xQ== + dependencies: + cookie "0.3.1" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~2.0.0" + on-headers "~1.0.2" + parseurl "~1.3.2" + safe-buffer "5.1.2" + uid-safe "~2.1.5" + +express@>=4.14: + version "4.17.1" + resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134" + integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g== + dependencies: + accepts "~1.3.7" + array-flatten "1.1.1" + body-parser "1.19.0" + content-disposition "0.5.3" + content-type "~1.0.4" + cookie "0.4.0" + cookie-signature "1.0.6" + debug "2.6.9" + depd "~1.1.2" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + finalhandler "~1.1.2" + fresh "0.5.2" + merge-descriptors "1.0.1" + methods "~1.1.2" + on-finished "~2.3.0" + parseurl "~1.3.3" + path-to-regexp "0.1.7" + proxy-addr "~2.0.5" + qs "6.7.0" + range-parser "~1.2.1" + safe-buffer "5.1.2" + send "0.17.1" + serve-static "1.14.1" + setprototypeof "1.1.1" + statuses "~1.5.0" + type-is "~1.6.18" + utils-merge "1.0.1" + vary "~1.1.2" + +extend-shallow@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" + integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8= + dependencies: + is-extendable "^0.1.0" + +extend-shallow@^3.0.0, extend-shallow@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8" + integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg= + dependencies: + assign-symbols "^1.0.0" + is-extendable "^1.0.1" + +extend@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz#5a474353b9f3353ddd8176dfd37b91c83a46f1d4" + integrity sha1-WkdDU7nzNT3dgXbf03uRyDpG8dQ= + +extend@^3.0.0, extend@^3.0.2, extend@~3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" + integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== + +extendr@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/extendr/-/extendr-2.1.0.tgz#301aa0bbea565f4d2dc8f570f2a22611a8527b56" + integrity sha1-MBqgu+pWX00tyPVw8qImEahSe1Y= + dependencies: + typechecker "~2.0.1" + +external-editor@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" + integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== + dependencies: + chardet "^0.7.0" + iconv-lite "^0.4.24" + tmp "^0.0.33" + +extglob@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" + integrity sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE= + dependencies: + is-extglob "^1.0.0" + +extglob@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543" + integrity sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw== + dependencies: + array-unique "^0.3.2" + define-property "^1.0.0" + expand-brackets "^2.1.4" + extend-shallow "^2.0.1" + fragment-cache "^0.2.1" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +extract-opts@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/extract-opts/-/extract-opts-2.2.0.tgz#1fa28eba7352c6db480f885ceb71a46810be6d7d" + integrity sha1-H6KOunNSxttID4hc63GkaBC+bX0= + dependencies: + typechecker "~2.0.1" + +extract-zip@^1.6.5: + version "1.6.7" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz#a840b4b8af6403264c8db57f4f1a74333ef81fe9" + integrity sha1-qEC0uK9kAyZMjbV/Txp0Mz74H+k= + dependencies: + concat-stream "1.6.2" + debug "2.6.9" + mkdirp "0.5.1" + yauzl "2.4.1" + +extsprintf@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz#5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529" + integrity sha1-WtlGwi9bMrp/jNdCZxHG6KP8JSk= + +extsprintf@1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" + integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU= + +extsprintf@^1.2.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" + integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= + +fancy-log@^1.1.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" + integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== + dependencies: + ansi-gray "^0.1.1" + color-support "^1.1.3" + parse-node-version "^1.0.0" + time-stamp "^1.0.0" + +fast-deep-equal@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" + integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= + +fast-json-stable-stringify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz#d5142c0caee6b1189f87d3a76111064f86c8bbf2" + integrity sha1-1RQsDK7msRifh9OnYREGT4bIu/I= + +fast-levenshtein@~2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= + +fast-safe-stringify@^2.0.4: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz#04b26106cc56681f51a044cfc0d76cf0008ac2c2" + integrity sha512-q8BZ89jjc+mz08rSxROs8VsrBBcn1SIw1kq9NjolL509tkABRk9io01RAjSaEv1Xb2uFLt8VtRiZbGp5H8iDtg== + +fastparse@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz#91728c5a5942eced8531283c79441ee4122c35a9" + integrity sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ== + +fd-slicer@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz#8b5bcbd9ec327c5041bf9ab023fd6750f1177e65" + integrity sha1-i1vL2ewyfFBBv5qwI/1nUPEXfmU= + dependencies: + pend "~1.2.0" + +feature-policy@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz#7430e8e54a40da01156ca30aaec1a381ce536069" + integrity sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ== + +fecha@^2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fecha/-/fecha-2.3.3.tgz#948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd" + integrity sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg== + +figgy-pudding@^3.5.1: + version "3.5.1" + resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" + integrity sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w== + +figures@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" + integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= + dependencies: + escape-string-regexp "^1.0.5" + +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + +file-loader@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-2.0.0.tgz#39749c82f020b9e85901dcff98e8004e6401cfde" + integrity sha512-YCsBfd1ZGCyonOKLxPiKPdu+8ld9HAaMEvJewzz+b2eTF7uL5Zm/HdBF6FjCrpCMRq25Mi0U1gl4pwn2TlH7hQ== + dependencies: + loader-utils "^1.0.2" + schema-utils "^1.0.0" + +file-saver@^1.3.3: + version "1.3.8" + resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8" + integrity sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg== + +filename-regex@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz#c1c4b9bee3e09725ddb106b75c1e301fe2f18b26" + integrity sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY= + +fill-range@^2.1.0: + version "2.2.4" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565" + integrity sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q== + dependencies: + is-number "^2.1.0" + isobject "^2.0.0" + randomatic "^3.0.0" + repeat-element "^1.1.2" + repeat-string "^1.5.2" + +fill-range@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" + integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc= + dependencies: + extend-shallow "^2.0.1" + is-number "^3.0.0" + repeat-string "^1.6.1" + to-regex-range "^2.1.0" + +finalhandler@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d" + integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA== + dependencies: + debug "2.6.9" + encodeurl "~1.0.2" + escape-html "~1.0.3" + on-finished "~2.3.0" + parseurl "~1.3.3" + statuses "~1.5.0" + unpipe "~1.0.0" + +find-cache-dir@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f" + integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8= + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^2.0.0" + +find-cache-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7" + integrity sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ== + dependencies: + commondir "^1.0.1" + make-dir "^2.0.0" + pkg-dir "^3.0.0" + +find-index@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" + integrity sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ= + +find-up@^2.0.0, find-up@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" + integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= + dependencies: + locate-path "^2.0.0" + +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== + dependencies: + locate-path "^3.0.0" + +findup-sync@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-1.0.0.tgz#6f7e4b57b6ee3a4037b4414eaedea3f58f71e0ec" + integrity sha1-b35LV7buOkA3tEFOrt6j9Y9x4Ow= + dependencies: + detect-file "^0.1.0" + is-glob "^2.0.1" + micromatch "^2.3.7" + resolve-dir "^0.1.0" + +findup-sync@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" + integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= + dependencies: + detect-file "^1.0.0" + is-glob "^3.1.0" + micromatch "^3.0.4" + resolve-dir "^1.0.1" + +fined@^1.0.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz#d00beccf1aa2b475d16d423b0238b713a2c4a37b" + integrity sha512-ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng== + dependencies: + expand-tilde "^2.0.2" + is-plain-object "^2.0.3" + object.defaults "^1.1.0" + object.pick "^1.2.0" + parse-filepath "^1.0.1" + +first-chunk-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" + integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= + +flagged-respawn@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" + integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== + +flat-cache@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" + integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== + dependencies: + flatted "^2.0.0" + rimraf "2.6.3" + write "1.0.3" + +flatted@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" + integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== + +flowchart.js@^1.6.4: + version "1.12.0" + resolved "https://registry.yarnpkg.com/flowchart.js/-/flowchart.js-1.12.0.tgz#ff5b4cf350b4e067a4232dc1b4dfdd87524acf5a" + integrity sha512-82mj9315e3+U87D147dbPu/MKBqAtngQu3JY1GFG0+3HmsT6yN/PbpI/tmjdchWEU3gAAKuVXxSGT9u3dNvYow== + dependencies: + raphael "2.2.7" + +flush-write-stream@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz#8dd7d873a1babc207d94ead0c2e0e44276ebf2e8" + integrity sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w== + dependencies: + inherits "^2.0.3" + readable-stream "^2.3.6" + +for-in@^1.0.1, for-in@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" + integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= + +for-own@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz#5265c681a4f294dabbf17c9509b6763aa84510ce" + integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= + dependencies: + for-in "^1.0.1" + +for-own@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" + integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= + dependencies: + for-in "^1.0.1" + +forever-agent@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" + integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE= + +fork-awesome@^1.1.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/fork-awesome/-/fork-awesome-1.1.7.tgz#1427da1cac3d1713046ee88427e5fcecb9501d21" + integrity sha512-IHI7XCSXrKfUIWslse8c/PaaVDT1oBaYge+ju40ihL2ooiQeBpTr4wvIXhgTd2NuhntlvX+M5jYHAPTzNlmv0g== + +form-data@1.0.0-rc3: + version "1.0.0-rc3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc3.tgz#d35bc62e7fbc2937ae78f948aaa0d38d90607577" + integrity sha1-01vGLn+8KTeuePlIqqDTjZBgdXc= + dependencies: + async "^1.4.0" + combined-stream "^1.0.5" + mime-types "^2.1.3" + +form-data@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6" + integrity sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ== + dependencies: + asynckit "^0.4.0" + combined-stream "^1.0.6" + mime-types "^2.1.12" + +formidable@^1.0.17: + version "1.2.1" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz#70fb7ca0290ee6ff961090415f4b3df3d2082659" + integrity sha512-Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg== + +formidable@~1.0.14: + version "1.0.17" + resolved "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz#ef5491490f9433b705faa77249c99029ae348559" + integrity sha1-71SRSQ+UM7cF+qdyScmQKa40hVk= + +forwarded@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84" + integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= + +fragment-cache@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19" + integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk= + dependencies: + map-cache "^0.2.2" + +frameguard@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/frameguard/-/frameguard-3.1.0.tgz#bd1442cca1d67dc346a6751559b6d04502103a22" + integrity sha512-TxgSKM+7LTA6sidjOiSZK9wxY0ffMPY3Wta//MqwmX0nZuEHc8QrkV8Fh3ZhMJeiH+Uyh/tcaarImRy8u77O7g== + +fresh@0.5.2: + version "0.5.2" + resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac= + +from2@^2.1.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af" + integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8= + dependencies: + inherits "^2.0.1" + readable-stream "^2.0.0" + +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + +fs-exists-sync@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz#982d6893af918e72d08dec9e8673ff2b5a8d6add" + integrity sha1-mC1ok6+RjnLQjeyehnP/K1qNat0= + +fs-extra@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz#cd3ce5f7e7cb6145883fcae3191e9877f8587950" + integrity sha1-zTzl9+fLYUWIP8rjGR6Yd/hYeVA= + dependencies: + graceful-fs "^4.1.2" + jsonfile "^2.1.0" + klaw "^1.0.0" + +fs-extra@^4.0.1: + version "4.0.3" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" + integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^1.2.5: + version "1.2.6" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07" + integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ== + dependencies: + minipass "^2.2.1" + +fs-readdir-recursive@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz#e32fc030a2ccee44a6b5371308da54be0b397d27" + integrity sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA== + +fs-write-stream-atomic@^1.0.8: + version "1.0.10" + resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" + integrity sha1-tH31NJPvkR33VzHnCp3tAYnbQMk= + dependencies: + graceful-fs "^4.1.2" + iferr "^0.1.5" + imurmurhash "^0.1.4" + readable-stream "1 || 2" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= + +fsevents@^1.0.0, fsevents@^1.2.7: + version "1.2.9" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f" + integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw== + dependencies: + nan "^2.12.1" + node-pre-gyp "^0.12.0" + +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + +functional-red-black-tree@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" + integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= + +gauge@~2.7.3: + version "2.7.4" + resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" + integrity sha1-LANAXHU4w51+s3sxcCLjJfsBi/c= + dependencies: + aproba "^1.0.3" + console-control-strings "^1.0.0" + has-unicode "^2.0.0" + object-assign "^4.1.0" + signal-exit "^3.0.0" + string-width "^1.0.1" + strip-ansi "^3.0.1" + wide-align "^1.1.0" + +gaze@^0.5.1: + version "0.5.2" + resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" + integrity sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8= + dependencies: + globule "~0.1.0" + +generic-pool@2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.2.tgz#886bc5bf0beb7db96e81bcbba078818de5a62683" + integrity sha1-iGvFvwvrfblugby7oHiBjeWmJoM= + +generic-pool@2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz#780c36f69dfad05a5a045dd37be7adca11a4f6ff" + integrity sha1-eAw29p360FpaBF3Te+etyhGk9v8= + +get-caller-file@^1.0.1, get-caller-file@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" + integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== + +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + +get-stream@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5" + integrity sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w== + dependencies: + pump "^3.0.0" + +get-value@^2.0.3, get-value@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" + integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg= + +getpass@^0.1.1: + version "0.1.7" + resolved "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa" + integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo= + dependencies: + assert-plus "^1.0.0" + +gist-embed@~2.6.0: + version "2.6.0" + resolved "https://registry.yarnpkg.com/gist-embed/-/gist-embed-2.6.0.tgz#1ea95703fa1fc2a1255419f6f06c67e9920649ab" + integrity sha1-HqlXA/ofwqElVBn28Gxn6ZIGSas= + +glob-base@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz#dbb164f6221b1c0b1ccf82aea328b497df0ea3c4" + integrity sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q= + dependencies: + glob-parent "^2.0.0" + is-glob "^2.0.0" + +glob-parent@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz#81383d72db054fcccf5336daa902f182f6edbb28" + integrity sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg= + dependencies: + is-glob "^2.0.0" + +glob-parent@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae" + integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4= + dependencies: + is-glob "^3.1.0" + path-dirname "^1.0.0" + +glob-stream@^3.1.5: + version "3.1.18" + resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" + integrity sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs= + dependencies: + glob "^4.3.1" + glob2base "^0.0.12" + minimatch "^3.0.4" + ordered-read-streams "^0.1.0" + through2 "^0.6.1" + unique-stream "^1.0.0" + +glob-watcher@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" + integrity sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs= + dependencies: + gaze "^0.5.1" + +glob2base@^0.0.12: + version "0.0.12" + resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" + integrity sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY= + dependencies: + find-index "^0.1.1" + +glob@7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" + integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^4.3.1: + version "4.5.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" + integrity sha1-xstz0yJsHv7wTePFbQEvAzd+4V8= + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + +glob@^6.0.1, glob@~6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" + integrity sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI= + dependencies: + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3: + version "7.1.4" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255" + integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^3.0.4" + once "^1.3.0" + path-is-absolute "^1.0.0" + +glob@~3.1.21: + version "3.1.21" + resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" + integrity sha1-0p4KBV3qUTj00H7UDomC6DwgZs0= + dependencies: + graceful-fs "~1.2.0" + inherits "1" + minimatch "^3.0.4" + +global-modules@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz#ea5a3bed42c6d6ce995a4f8a1269b5dae223828d" + integrity sha1-6lo77ULG1s6ZWk+KEmm12uIjgo0= + dependencies: + global-prefix "^0.1.4" + is-windows "^0.2.0" + +global-modules@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" + integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== + dependencies: + global-prefix "^1.0.1" + is-windows "^1.0.1" + resolve-dir "^1.0.0" + +global-prefix@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz#8d3bc6b8da3ca8112a160d8d496ff0462bfef78f" + integrity sha1-jTvGuNo8qBEqFg2NSW/wRiv+948= + dependencies: + homedir-polyfill "^1.0.0" + ini "^1.3.4" + is-windows "^0.2.0" + which "^1.2.12" + +global-prefix@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" + integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= + dependencies: + expand-tilde "^2.0.2" + homedir-polyfill "^1.0.1" + ini "^1.3.4" + is-windows "^1.0.1" + which "^1.2.14" + +globals@^11.7.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + +globby@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz#fb2ccff9401f8600945dfada97440cca972b8680" + integrity sha1-+yzP+UAfhgCUXfral0QMypcrhoA= + dependencies: + array-union "^1.0.1" + dir-glob "^2.0.0" + glob "^7.1.2" + ignore "^3.3.5" + pify "^3.0.0" + slash "^1.0.0" + +globule@~0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" + integrity sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU= + dependencies: + glob "~3.1.21" + lodash "~1.0.1" + minimatch "^3.0.4" + +glogg@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" + integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== + dependencies: + sparkles "^1.0.0" + +good-listener@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50" + integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA= + dependencies: + delegate "^3.1.2" + +graceful-fs@*, graceful-fs@^4.1.0, graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.1.9: + version "4.1.15" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" + integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== + +graceful-fs@^3.0.0: + version "3.0.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" + integrity sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg= + dependencies: + natives "^1.1.0" + +graceful-fs@~1.2.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" + integrity sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q= + +graphlib@^2.1.1: + version "2.1.7" + resolved "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.7.tgz#b6a69f9f44bd9de3963ce6804a2fc9e73d86aecc" + integrity sha512-TyI9jIy2J4j0qgPmOOrHTCtpPqJGN/aurBwc6ZT+bRii+di1I+Wv3obRhVrmBEXet+qkMaEX67dXrwsd3QQM6w== + dependencies: + lodash "^4.17.5" + +graphlibrary@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/graphlibrary/-/graphlibrary-2.2.0.tgz#017a14899775228dec4497a39babfdd6bf56eac6" + integrity sha512-XTcvT55L8u4MBZrM37zXoUxsgxs/7sow7YSygd9CIwfWTVO8RVu7AYXhhCiTuFEf+APKgx6Jk4SuQbYR0vYKmQ== + dependencies: + lodash "^4.17.5" + +growl@1.10.5: + version "1.10.5" + resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" + integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== + +gulp-help@~1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/gulp-help/-/gulp-help-1.6.1.tgz#261db186e18397fef3f6a2c22e9c315bfa88ae0c" + integrity sha1-Jh2xhuGDl/7z9qLCLpwxW/qIrgw= + dependencies: + chalk "^1.0.0" + object-assign "^3.0.0" + +gulp-util@^3.0.0: + version "3.0.8" + resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" + integrity sha1-AFTh50RQLifATBh8PsxQXdVLu08= + dependencies: + array-differ "^1.0.0" + array-uniq "^1.0.2" + beeper "^1.0.0" + chalk "^1.0.0" + dateformat "^2.0.0" + fancy-log "^1.1.0" + gulplog "^1.0.0" + has-gulplog "^0.1.0" + lodash._reescape "^3.0.0" + lodash._reevaluate "^3.0.0" + lodash._reinterpolate "^3.0.0" + lodash.template "^3.0.0" + minimist "^1.1.0" + multipipe "^0.1.2" + object-assign "^3.0.0" + replace-ext "0.0.1" + through2 "^2.0.0" + vinyl "^0.5.0" + +gulp@^3.9.1: + version "3.9.1" + resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" + integrity sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ= + dependencies: + archy "^1.0.0" + chalk "^1.0.0" + deprecated "^0.0.1" + gulp-util "^3.0.0" + interpret "^1.0.0" + liftoff "^2.1.0" + minimist "^1.1.0" + orchestrator "^0.3.0" + pretty-hrtime "^1.0.0" + semver "^4.1.0" + tildify "^1.0.0" + v8flags "^2.0.2" + vinyl-fs "^0.3.0" + +gulplog@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" + integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= + dependencies: + glogg "^1.0.0" + +handlebars@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67" + integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw== + dependencies: + neo-async "^2.6.0" + optimist "^0.6.1" + source-map "^0.6.1" + optionalDependencies: + uglify-js "^3.1.4" + +har-schema@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" + integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI= + +har-validator@~5.1.0: + version "5.1.3" + resolved "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz#1ef89ebd3e4996557675eed9893110dc350fa080" + integrity sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g== + dependencies: + ajv "^6.5.5" + har-schema "^2.0.0" + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-binary2@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" + integrity sha512-G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw== + dependencies: + isarray "2.0.1" + +has-color@~0.1.0: + version "0.1.7" + resolved "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz#67144a5260c34fc3cca677d041daf52fe7b78b2f" + integrity sha1-ZxRKUmDDT8PMpnfQQdr1L+e3iy8= + +has-cors@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz#5e474793f7ea9843d1bb99c23eef49ff126fff39" + integrity sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk= + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +has-gulplog@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" + integrity sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4= + dependencies: + sparkles "^1.0.0" + +has-symbols@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44" + integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q= + +has-unicode@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" + integrity sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk= + +has-value@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f" + integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8= + dependencies: + get-value "^2.0.3" + has-values "^0.1.4" + isobject "^2.0.0" + +has-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177" + integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc= + dependencies: + get-value "^2.0.6" + has-values "^1.0.0" + isobject "^3.0.0" + +has-values@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771" + integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E= + +has-values@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f" + integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8= + dependencies: + is-number "^3.0.0" + kind-of "^4.0.0" + +has@^1.0.0, has@^1.0.1, has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== + dependencies: + function-bind "^1.1.1" + +hash-base@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha1-X8hoaEfs1zSZQDMZprCj8/auSRg= + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +hash.js@^1.0.0, hash.js@^1.0.3: + version "1.1.7" + resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" + integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA== + dependencies: + inherits "^2.0.3" + minimalistic-assert "^1.0.1" + +hasha@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz#78d7cbfc1e6d66303fe79837365984517b2f6ee1" + integrity sha1-eNfL/B5tZjA/55g3NlmEUXsvbuE= + dependencies: + is-stream "^1.0.1" + pinkie-promise "^2.0.0" + +he@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" + integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= + +he@1.2.x, he@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" + integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== + +helmet-crossdomain@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.3.0.tgz#707e2df930f13ad61f76ed08e1bb51ab2b2e85fa" + integrity sha512-YiXhj0E35nC4Na5EPE4mTfoXMf9JTGpN4OtB4aLqShKuH9d2HNaJX5MQoglO6STVka0uMsHyG5lCut5Kzsy7Lg== + +helmet-csp@2.7.1: + version "2.7.1" + resolved "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.7.1.tgz#e8e0b5186ffd4db625cfcce523758adbfadb9dca" + integrity sha512-sCHwywg4daQ2mY0YYwXSZRsgcCeerUwxMwNixGA7aMLkVmPTYBl7gJoZDHOZyXkqPrtuDT3s2B1A+RLI7WxSdQ== + dependencies: + camelize "1.0.0" + content-security-policy-builder "2.0.0" + dasherize "2.0.0" + platform "1.3.5" + +helmet@^3.13.0: + version "3.18.0" + resolved "https://registry.yarnpkg.com/helmet/-/helmet-3.18.0.tgz#37666f7c861bd1ff3015e0cdb903a43501e3da3e" + integrity sha512-TsKlGE5UVkV0NiQ4PllV9EVfZklPjyzcMEMjWlyI/8S6epqgRT+4s4GHVgc25x0TixsKvp3L7c91HQQt5l0+QA== + dependencies: + depd "2.0.0" + dns-prefetch-control "0.1.0" + dont-sniff-mimetype "1.0.0" + expect-ct "0.2.0" + feature-policy "0.3.0" + frameguard "3.1.0" + helmet-crossdomain "0.3.0" + helmet-csp "2.7.1" + hide-powered-by "1.0.0" + hpkp "2.0.0" + hsts "2.2.0" + ienoopen "1.1.0" + nocache "2.1.0" + referrer-policy "1.2.0" + x-xss-protection "1.1.0" + +hex-color-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" + integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== + +hide-powered-by@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.0.0.tgz#4a85ad65881f62857fc70af7174a1184dccce32b" + integrity sha1-SoWtZYgfYoV/xwr3F0oRhNzM4ys= + +highlight.js@^9.1.0: + version "9.15.8" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.15.8.tgz#f344fda123f36f1a65490e932cf90569e4999971" + integrity sha512-RrapkKQWwE+wKdF73VsOa2RQdIoO3mxwJ4P8mhbI6KYJUraUHRKM5w5zQQKXNk0xNL4UVRdulV9SBJcmzJNzVA== + +highlight.js@~9.12.0: + version "9.12.0" + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz#e6d9dbe57cbefe60751f02af336195870c90c01e" + integrity sha1-5tnb5Xy+/mB1HwKvM2GVhwyQwB4= + +hmac-drbg@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" + integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= + dependencies: + hash.js "^1.0.3" + minimalistic-assert "^1.0.0" + minimalistic-crypto-utils "^1.0.1" + +home-or-tmp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz#e36c3f2d2cae7d746a857e38d18d5f32a7882db8" + integrity sha1-42w/LSyufXRqhX440Y1fMqeILbg= + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.1" + +homedir-polyfill@^1.0.0, homedir-polyfill@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" + integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== + dependencies: + parse-passwd "^1.0.0" + +hosted-git-info@^2.1.4: + version "2.7.1" + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047" + integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w== + +hpkp@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz#10e142264e76215a5d30c44ec43de64dee6d1672" + integrity sha1-EOFCJk52IVpdMMROxD3mTe5tFnI= + +hsl-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e" + integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4= + +hsla-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" + integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= + +hsts@2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz#09119d42f7a8587035d027dda4522366fe75d964" + integrity sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ== + dependencies: + depd "2.0.0" + +html-comment-regex@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" + integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== + +html-encoding-sniffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" + integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== + dependencies: + whatwg-encoding "^1.0.1" + +html-minifier@^3.5.20: + version "3.5.21" + resolved "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz#d0040e054730e354db008463593194015212d20c" + integrity sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA== + dependencies: + camel-case "3.0.x" + clean-css "4.2.x" + commander "2.17.x" + he "1.2.x" + param-case "2.1.x" + relateurl "0.2.x" + uglify-js "3.4.x" + +html-webpack-plugin@4.0.0-beta.2: + version "4.0.0-beta.2" + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.2.tgz#c3a212448ee198a17dacd06525678ee12f917420" + integrity sha512-153QgkvYPOc1X5/v1GFPcq7GTinNheGA1lMZUGRMFkwIQ4kegGna+wQ0ByJ8uNgw4u1aEg9FtsSKs4AzsYMi9g== + dependencies: + html-minifier "^3.5.20" + loader-utils "^1.1.0" + lodash "^4.17.11" + pretty-error "^2.1.1" + tapable "^1.1.0" + util.promisify "1.0.0" + +"htmlparser2@>= 3.1.5 <4", htmlparser2@^3.3.0, htmlparser2@^3.9.1: + version "3.10.1" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== + dependencies: + domelementtype "^1.3.1" + domhandler "^2.3.0" + domutils "^1.5.1" + entities "^1.1.1" + inherits "^2.0.1" + readable-stream "^3.1.1" + +http-errors@1.7.2, http-errors@~1.7.2: + version "1.7.2" + resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f" + integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg== + dependencies: + depd "~1.1.2" + inherits "2.0.3" + setprototypeof "1.1.1" + statuses ">= 1.5.0 < 2" + toidentifier "1.0.0" + +http-signature@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1" + integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE= + dependencies: + assert-plus "^1.0.0" + jsprim "^1.2.2" + sshpk "^1.7.0" + +https-browserify@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" + integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= + +i18n@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/i18n/-/i18n-0.8.3.tgz#2d8cf1c24722602c2041d01ba6ae5eaa51388f0e" + integrity sha1-LYzxwkciYCwgQdAbpq5eqlE4jw4= + dependencies: + debug "*" + make-plural "^3.0.3" + math-interval-parser "^1.1.0" + messageformat "^0.3.1" + mustache "*" + sprintf-js ">=1.0.3" + +iconv-lite@0.4.24, iconv-lite@^0.4.11, iconv-lite@^0.4.24, iconv-lite@^0.4.4: + version "0.4.24" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== + dependencies: + safer-buffer ">= 2.1.2 < 3" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + integrity sha1-Bupvg2ead0njhs/h/oEq5dsiPe0= + +icss-utils@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz#83f0a0ec378bf3246178b6c2ad9136f135b1c962" + integrity sha1-g/Cg7DeL8yRheLbCrZE28TWxyWI= + dependencies: + postcss "^6.0.1" + +ieee754@1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz#be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4" + integrity sha1-vjPUCsEO8ZJnAfbwii2G+/0a0+Q= + +ieee754@^1.1.4: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + +ienoopen@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ienoopen/-/ienoopen-1.1.0.tgz#411e5d530c982287dbdc3bb31e7a9c9e32630974" + integrity sha512-MFs36e/ca6ohEKtinTJ5VvAJ6oDRAYFdYXweUnGY9L9vcoqFOU4n2ZhmJ0C4z/cwGZ3YIQRSB3XZ1+ghZkY5NQ== + +iferr@^0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz#c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501" + integrity sha1-xg7taebY/bazEEofy8ocGS3FtQE= + +ignore-walk@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== + dependencies: + minimatch "^3.0.4" + +ignore@^3.3.5: + version "3.3.10" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" + integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== + +ignore@^4.0.6: + version "4.0.6" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" + integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== + +ignore@^5.0.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.2.tgz#e28e584d43ad7e92f96995019cc43b9e1ac49558" + integrity sha512-vdqWBp7MyzdmHkkRWV5nY+PfGRbYbahfuvsBCh277tq+w9zyNi7h5CYJCK0kmzti9kU+O/cB7sE8HvKv6aXAKQ== + +ignorefs@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/ignorefs/-/ignorefs-1.2.0.tgz#da59fb858976e4a5e43702ccd1f282fdbc9e5756" + integrity sha1-2ln7hYl25KXkNwLM0fKC/byeV1Y= + dependencies: + editions "^1.3.3" + ignorepatterns "^1.1.0" + +ignorepatterns@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/ignorepatterns/-/ignorepatterns-1.1.0.tgz#ac8f436f2239b5dfb66d5f0d3a904a87ac67cc5e" + integrity sha1-rI9DbyI5td+2bV8NOpBKh6xnzF4= + +image-size@~0.5.0: + version "0.5.5" + resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" + integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= + +"imgur@git+https://github.com/hackmdio/node-imgur.git": + version "0.3.1" + resolved "git+https://github.com/hackmdio/node-imgur.git#4fe9cfa3893505c34c49067483d85d3ad4376cd6" + dependencies: + commander "^2.13.0" + glob "^7.1.2" + q "^2.0.3" + request "^2.83.0" + +import-fresh@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" + integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY= + dependencies: + caller-path "^2.0.0" + resolve-from "^3.0.0" + +import-fresh@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" + integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-local@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" + integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== + dependencies: + pkg-dir "^3.0.0" + resolve-cwd "^2.0.0" + +imports-loader@^0.8.0: + version "0.8.0" + resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz#030ea51b8ca05977c40a3abfd9b4088fe0be9a69" + integrity sha512-kXWL7Scp8KQ4552ZcdVTeaQCZSLW+e6nJfp3cwUMB673T7Hr98Xjx5JK+ql7ADlJUvj1JS5O01RLbKoutN5QDQ== + dependencies: + loader-utils "^1.0.2" + source-map "^0.6.1" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= + +indexes-of@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" + integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= + +indexof@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d" + integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10= + +inflection@^1.6.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416" + integrity sha1-ogCTVlbW9fa8TcdQLhrstwMihBY= + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" + integrity sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js= + +inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" + integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= + +inherits@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1" + integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE= + +ini@^1.3.4, ini@~1.3.0: + version "1.3.5" + resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" + integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== + +inquirer@^6.2.2: + version "6.3.1" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.3.1.tgz#7a413b5e7950811013a3db491c61d1f3b776e8e7" + integrity sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA== + dependencies: + ansi-escapes "^3.2.0" + chalk "^2.4.2" + cli-cursor "^2.1.0" + cli-width "^2.0.0" + external-editor "^3.0.3" + figures "^2.0.0" + lodash "^4.17.11" + mute-stream "0.0.7" + run-async "^2.2.0" + rxjs "^6.4.0" + string-width "^2.1.0" + strip-ansi "^5.1.0" + through "^2.3.6" + +interpret@^1.0.0, interpret@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" + integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== + +invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +invert-kv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" + integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= + +invert-kv@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz#7393f5afa59ec9ff5f67a27620d11c226e3eec02" + integrity sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA== + +ionicons@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/ionicons/-/ionicons-2.0.1.tgz#ca398113293ea870244f538f0aabbd4b5b209a3e" + integrity sha1-yjmBEyk+qHAkT1OPCqu9S1sgmj4= + +ipaddr.js@1.9.0: + version "1.9.0" + resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65" + integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA== + +is-absolute-url@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6" + integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY= + +is-absolute@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" + integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== + dependencies: + is-relative "^1.0.0" + is-windows "^1.0.1" + +is-accessor-descriptor@^0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" + integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY= + dependencies: + kind-of "^3.0.2" + +is-accessor-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656" + integrity sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ== + dependencies: + kind-of "^6.0.0" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= + +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + +is-buffer@^1.1.5: + version "1.1.6" + resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" + integrity sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w== + +is-callable@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz#1e1adf219e1eeb684d691f9d6a05ff0d30a24d75" + integrity sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA== + +is-color-stop@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345" + integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U= + dependencies: + css-color-names "^0.0.4" + hex-color-regex "^1.1.0" + hsl-regex "^1.0.0" + hsla-regex "^1.0.0" + rgb-regex "^1.0.1" + rgba-regex "^1.0.0" + +is-data-descriptor@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56" + integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y= + dependencies: + kind-of "^3.0.2" + +is-data-descriptor@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7" + integrity sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ== + dependencies: + kind-of "^6.0.0" + +is-date-object@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz#9aa20eb6aeebbff77fbd33e74ca01b33581d3a16" + integrity sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY= + +is-descriptor@^0.1.0: + version "0.1.6" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca" + integrity sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg== + dependencies: + is-accessor-descriptor "^0.1.6" + is-data-descriptor "^0.1.4" + kind-of "^5.0.0" + +is-descriptor@^1.0.0, is-descriptor@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec" + integrity sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg== + dependencies: + is-accessor-descriptor "^1.0.0" + is-data-descriptor "^1.0.0" + kind-of "^6.0.2" + +is-directory@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" + integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= + +is-dotfile@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz#a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1" + integrity sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE= + +is-equal-shallow@^0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz#2238098fc221de0bcfa5d9eac4c45d638aa1c534" + integrity sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ= + dependencies: + is-primitive "^2.0.0" + +is-extendable@^0.1.0, is-extendable@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" + integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik= + +is-extendable@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4" + integrity sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA== + dependencies: + is-plain-object "^2.0.4" + +is-extglob@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz#ac468177c4943405a092fc8f29760c6ffc6206c0" + integrity sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA= + +is-extglob@^2.1.0, is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= + +is-finite@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz#cc6677695602be550ef11e8b4aa6305342b6d0aa" + integrity sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" + integrity sha1-754xOG8DGn8NZDr4L95QxFfvAMs= + dependencies: + number-is-nan "^1.0.0" + +is-fullwidth-code-point@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" + integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= + +is-glob@^2.0.0, is-glob@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz#d096f926a3ded5600f3fdfd91198cb0888c2d863" + integrity sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM= + dependencies: + is-extglob "^1.0.0" + +is-glob@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" + integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo= + dependencies: + is-extglob "^2.1.0" + +is-glob@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" + integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== + dependencies: + is-extglob "^2.1.1" + +is-number@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f" + integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8= + dependencies: + kind-of "^3.0.2" + +is-number@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" + integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU= + dependencies: + kind-of "^3.0.2" + +is-number@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff" + integrity sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ== + +is-obj@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" + integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= + +is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677" + integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og== + dependencies: + isobject "^3.0.1" + +is-posix-bracket@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz#3334dc79774368e92f016e6fbc0a88f5cd6e6bc4" + integrity sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q= + +is-primitive@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" + integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= + +is-promise@^2.1, is-promise@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" + integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= + +is-regex@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491" + integrity sha1-VRdIm1RwkbCTDglWVM7SXul+lJE= + dependencies: + has "^1.0.1" + +is-relative@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" + integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== + dependencies: + is-unc-path "^1.0.0" + +is-resolvable@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" + integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + +is-stream@^1.0.1, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= + +is-svg@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" + integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== + dependencies: + html-comment-regex "^1.1.0" + +is-symbol@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz#a055f6ae57192caee329e7a860118b497a950f38" + integrity sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw== + dependencies: + has-symbols "^1.0.0" + +is-typedarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" + integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= + +is-unc-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" + integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== + dependencies: + unc-path-regex "^0.1.2" + +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI= + +is-windows@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz#de1aa6d63ea29dd248737b69f1ff8b8002d2108c" + integrity sha1-3hqm1j6indJIc3tp8f+LgALSEIw= + +is-windows@^1.0.1, is-windows@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" + integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== + +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= + +isarray@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" + integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= + +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +isarray@2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" + integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= + +isobject@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89" + integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk= + dependencies: + isarray "1.0.0" + +isobject@^3.0.0, isobject@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" + integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= + +isstream@~0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" + integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= + +jmespath@0.15.0: + version "0.15.0" + resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" + integrity sha1-o/Iiqarp+Wb10nx5ZRDigJF2Qhc= + +jquery-mousewheel@^3.1.13: + version "3.1.13" + resolved "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz#06f0335f16e353a695e7206bf50503cb523a6ee5" + integrity sha1-BvAzXxbjU6aV5yBr9QUDy1I6buU= + +jquery-ui@^1.12.1: + version "1.12.1" + resolved "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.12.1.tgz#bcb4045c8dd0539c134bc1488cdd3e768a7a9e51" + integrity sha1-vLQEXI3QU5wTS8FIjN0+dop6nlE= + +jquery@^3.4.1: + version "3.4.1" + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2" + integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw== + +js-beautify@^1.6.11: + version "1.10.0" + resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.0.tgz#9753a13c858d96828658cd18ae3ca0e5783ea672" + integrity sha512-OMwf/tPDpE/BLlYKqZOhqWsd3/z2N3KOlyn1wsCRGFwViE8LOQTcDtathQvHvZc+q+zWmcNAbwKSC+iJoMaH2Q== + dependencies: + config-chain "^1.1.12" + editorconfig "^0.15.3" + glob "^7.1.3" + mkdirp "~0.5.1" + nopt "~4.0.1" + +js-cookie@^2.1.3: + version "2.2.0" + resolved "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.0.tgz#1b2c279a6eece380a12168b92485265b35b1effb" + integrity sha1-Gywnmm7s44ChIWi5JIUmWzWx7/s= + +"js-sequence-diagrams@git+https://github.com/codimd/js-sequence-diagrams.git": + version "2.0.1" + resolved "git+https://github.com/codimd/js-sequence-diagrams.git#b9afa038521e5dadf9b97624a3c7db21890be669" + dependencies: + lodash "4.17.x" + raphael "2.2.x" + snapsvg "0.4.x" + underscore "1.8.x" + webfontloader "~1.6.x" + +js-string-escape@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz#e2625badbc0d67c7533e9edc1068c587ae4137ef" + integrity sha1-4mJbrbwNZ8dTPp7cEGjFh65BN+8= + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + +js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@~3.13.1: + version "3.13.1" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" + integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw== + dependencies: + argparse "^1.0.7" + esprima "^4.0.0" + +jsbn@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" + integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= + +jsdom-nogyp@^0.8.3: + version "0.8.3" + resolved "https://registry.yarnpkg.com/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz#924b3f03cfe487dfcdf6375e6324252ceb80d0cc" + integrity sha1-kks/A8/kh9/N9jdeYyQlLOuA0Mw= + dependencies: + cssom "~0.2.5" + cssstyle "~0.2.3" + htmlparser2 ">= 3.1.5 <4" + nwmatcher "~1.3.1" + request "2.x" + xmlhttprequest ">=1.5.0" + +jsdom@^11.9.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" + integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== + dependencies: + abab "^2.0.0" + acorn "^5.5.3" + acorn-globals "^4.1.0" + array-equal "^1.0.0" + cssom ">= 0.3.2 < 0.4.0" + cssstyle "^1.0.0" + data-urls "^1.0.0" + domexception "^1.0.1" + escodegen "^1.9.1" + html-encoding-sniffer "^1.0.2" + left-pad "^1.3.0" + nwsapi "^2.0.7" + parse5 "4.0.0" + pn "^1.1.0" + request "^2.87.0" + request-promise-native "^1.0.5" + sax "^1.2.4" + symbol-tree "^3.2.2" + tough-cookie "^2.3.4" + w3c-hr-time "^1.0.1" + webidl-conversions "^4.0.2" + whatwg-encoding "^1.0.3" + whatwg-mimetype "^2.1.0" + whatwg-url "^6.4.1" + ws "^5.2.0" + xml-name-validator "^3.0.0" + +jsesc@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" + integrity sha1-RsP+yMGJKxKwgz25vHYiF226s0s= + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + +json-edm-parser@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/json-edm-parser/-/json-edm-parser-0.1.2.tgz#1e60b0fef1bc0af67bc0d146dfdde5486cd615b4" + integrity sha1-HmCw/vG8CvZ7wNFG393lSGzWFbQ= + dependencies: + jsonparse "~1.2.0" + +json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" + integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-schema@0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13" + integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM= + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= + +json-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/json-stream/-/json-stream-1.0.0.tgz#1a3854e28d2bbeeab31cc7ddf683d2ddc5652708" + integrity sha1-GjhU4o0rvuqzHMfd9oPS3cVlJwg= + +json-stringify-safe@~5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb" + integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus= + +json5@^0.5.0, json5@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821" + integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE= + +json5@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe" + integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow== + dependencies: + minimist "^1.2.0" + +jsonfile@^2.1.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz#3736a2b428b87bbda0cc83b53fa3d633a35c2ae8" + integrity sha1-NzaitCi4e72gzIO1P6PWM6NcKug= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + +jsonlint@^1.6.2: + version "1.6.3" + resolved "https://registry.yarnpkg.com/jsonlint/-/jsonlint-1.6.3.tgz#cb5e31efc0b78291d0d862fbef05900adf212988" + integrity sha512-jMVTMzP+7gU/IyC6hvKyWpUU8tmTkK5b3BPNuMI9U8Sit+YAWLlZwB6Y6YrdCxfg2kNz05p3XY3Bmm4m26Nv3A== + dependencies: + JSV "^4.0.x" + nomnom "^1.5.x" + +jsonparse@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz#5c0c5685107160e72fe7489bddea0b44c2bc67bd" + integrity sha1-XAxWhRBxYOcv50ib3eoLRMK8Z70= + +jsprim@^1.2.2: + version "1.4.1" + resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" + integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI= + dependencies: + assert-plus "1.0.0" + extsprintf "1.3.0" + json-schema "0.2.3" + verror "1.10.0" + +kew@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz#79d93d2d33363d6fdd2970b335d9141ad591d79b" + integrity sha1-edk9LTM2PW/dKXCzNdkUGtWR15s= + +keymaster@^1.6.2: + version "1.6.2" + resolved "https://registry.yarnpkg.com/keymaster/-/keymaster-1.6.2.tgz#e1ae54d0ea9488f9f60b66b668f02e9a1946c6eb" + integrity sha1-4a5U0OqUiPn2C2a2aPAumhlGxus= + +kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: + version "3.2.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64" + integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ= + dependencies: + is-buffer "^1.1.5" + +kind-of@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57" + integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc= + dependencies: + is-buffer "^1.1.5" + +kind-of@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d" + integrity sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw== + +kind-of@^6.0.0, kind-of@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" + integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== + +klaw@^1.0.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz#4088433b46b3b1ba259d78785d8e96f73ba02439" + integrity sha1-QIhDO0azsbolnXh4XY6W9zugJDk= + optionalDependencies: + graceful-fs "^4.1.9" + +kuler@1.0.x: + version "1.0.1" + resolved "https://registry.yarnpkg.com/kuler/-/kuler-1.0.1.tgz#ef7c784f36c9fb6e16dd3150d152677b2b0228a6" + integrity sha512-J9nVUucG1p/skKul6DU3PUZrhs0LPulNaeUOox0IyXDi8S4CztTHs1gQphhuZmzXG7VOQSf6NJfKuzteQLv9gQ== + dependencies: + colornames "^1.1.1" + +last-call-webpack-plugin@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz#9742df0e10e3cf46e5c0381c2de90d3a7a2d7555" + integrity sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w== + dependencies: + lodash "^4.17.5" + webpack-sources "^1.1.0" + +lazy-cache@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz#a1d78fc3a50474cb80845d3b3b6e1da49a446e8e" + integrity sha1-odePw6UEdMuAhF07O24dpJpEbo4= + +lazystream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz#f6995fe0f820392f61396be89462407bb77168e4" + integrity sha1-9plf4PggOS9hOWvolGJAe7dxaOQ= + dependencies: + readable-stream "^2.0.5" + +lcid@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" + integrity sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU= + dependencies: + invert-kv "^1.0.0" + +lcid@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz#6ef5d2df60e52f82eb228a4c373e8d1f397253cf" + integrity sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA== + dependencies: + invert-kv "^2.0.0" + +ldap-filter@0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.2.2.tgz#f2b842be0b86da3352798505b31ebcae590d77d0" + integrity sha1-8rhCvguG2jNSeYUFsx68rlkNd9A= + dependencies: + assert-plus "0.1.5" + +ldapauth-fork@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-4.2.0.tgz#3d2f809f973deb127a35eb523135661b7013e9d9" + integrity sha512-DFYhOO9UPX/fIUnwAjJ4zCq2osR3pyS9TK24oBRLHj7+iw9OAbckHLcdDkgI//IajUEsF6Ngz0uXod6A88L2HA== + dependencies: + "@types/ldapjs" "^1.0.0" + "@types/node" "^10.12.12" + bcryptjs "^2.4.0" + ldapjs "^1.0.2" + lru-cache "^5.1.1" + +ldapjs@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/ldapjs/-/ldapjs-1.0.2.tgz#544ff7032b7b83c68f0701328d9297aa694340f9" + integrity sha1-VE/3Ayt7g8aPBwEyjZKXqmlDQPk= + dependencies: + asn1 "0.2.3" + assert-plus "^1.0.0" + backoff "^2.5.0" + bunyan "^1.8.3" + dashdash "^1.14.0" + ldap-filter "0.2.2" + once "^1.4.0" + vasync "^1.6.4" + verror "^1.8.1" + optionalDependencies: + dtrace-provider "~0.8" + +left-pad@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" + integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== + +less-loader@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-4.1.0.tgz#2c1352c5b09a4f84101490274fd51674de41363e" + integrity sha512-KNTsgCE9tMOM70+ddxp9yyt9iHqgmSs0yTZc5XH5Wo+g80RWRIYNqE58QJKm/yMud5wZEvz50ugRDuzVIkyahg== + dependencies: + clone "^2.1.1" + loader-utils "^1.1.0" + pify "^3.0.0" + +less@^2.7.1: + version "2.7.3" + resolved "https://registry.yarnpkg.com/less/-/less-2.7.3.tgz#cc1260f51c900a9ec0d91fb6998139e02507b63b" + integrity sha512-KPdIJKWcEAb02TuJtaLrhue0krtRLoRoo7x6BNJIBelO00t/CCdJQUnHW5V34OnHMWzIktSalJxRO+FvytQlCQ== + optionalDependencies: + errno "^0.1.1" + graceful-fs "^4.1.2" + image-size "~0.5.0" + mime "^1.2.11" + mkdirp "^0.5.0" + promise "^7.1.1" + request "^2.81.0" + source-map "^0.5.3" + +levn@^0.3.0, levn@~0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" + integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= + dependencies: + prelude-ls "~1.1.2" + type-check "~0.3.2" + +liftoff@^2.1.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec" + integrity sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew= + dependencies: + extend "^3.0.0" + findup-sync "^2.0.0" + fined "^1.0.1" + flagged-respawn "^1.0.0" + is-plain-object "^2.0.4" + object.map "^1.0.0" + rechoir "^0.6.2" + resolve "^1.1.7" + +linkify-it@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.1.0.tgz#c4caf38a6cd7ac2212ef3c7d2bde30a91561f9db" + integrity sha512-4REs8/062kV2DSHxNfq5183zrqXMl7WP0WzABH9IeJI+NLm429FgE1PDecltYfnOoFDFlZGh2T8PfZn0r+GTRg== + dependencies: + uc.micro "^1.0.1" + +list.js@^1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/list.js/-/list.js-1.5.0.tgz#a4cbfc8281ddefc02fdb2d30c8748bfae25fbcda" + integrity sha1-pMv8goHd78Av2y0wyHSL+uJfvNo= + dependencies: + string-natural-compare "^2.0.2" + +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + +loader-runner@^2.3.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" + integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== + +loader-utils@^0.2.7: + version "0.2.17" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz#f86e6374d43205a6e6c60e9196f17c0299bfb348" + integrity sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g= + dependencies: + big.js "^3.1.3" + emojis-list "^2.0.0" + json5 "^0.5.0" + object-assign "^4.0.1" + +loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7" + integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA== + dependencies: + big.js "^5.2.2" + emojis-list "^2.0.0" + json5 "^1.0.1" + +locate-path@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" + integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= + dependencies: + p-locate "^2.0.0" + path-exists "^3.0.0" + +locate-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" + +lodash._basecopy@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" + integrity sha1-jaDmqHbPNEwK2KVIghEd08XHyjY= + +lodash._basetostring@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" + integrity sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U= + +lodash._basevalues@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" + integrity sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc= + +lodash._getnative@^3.0.0: + version "3.9.1" + resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" + integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= + +lodash._isiterateecall@^3.0.0: + version "3.0.9" + resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" + integrity sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw= + +lodash._reescape@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" + integrity sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo= + +lodash._reevaluate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" + integrity sha1-WLx0xAZklTrgsSTYBpltrKQx4u0= + +lodash._reinterpolate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" + integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= + +lodash._root@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" + integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI= + +lodash.assignin@^4.0.9: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" + integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI= + +lodash.bind@^4.1.4: + version "4.2.1" + resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" + integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= + +lodash.defaults@^4.0.1: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" + integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw= + +lodash.escape@^3.0.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" + integrity sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg= + dependencies: + lodash._root "^3.0.0" + +lodash.filter@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace" + integrity sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4= + +lodash.flatten@^4.2.0: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f" + integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8= + +lodash.foreach@^4.3.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" + integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= + +lodash.isarguments@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" + integrity sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo= + +lodash.isarray@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" + integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U= + +lodash.keys@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" + integrity sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo= + dependencies: + lodash._getnative "^3.0.0" + lodash.isarguments "^3.0.0" + lodash.isarray "^3.0.0" + +lodash.map@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3" + integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM= + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= + +lodash.merge@^4.4.0: + version "4.6.1" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54" + integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ== + +lodash.pick@^4.2.1: + version "4.4.0" + resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3" + integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM= + +lodash.reduce@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b" + integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs= + +lodash.reject@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415" + integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU= + +lodash.restparam@^3.0.0: + version "3.6.1" + resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" + integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= + +lodash.some@^4.4.0: + version "4.6.0" + resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" + integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= + +lodash.sortby@^4.7.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" + integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= + +lodash.template@^3.0.0: + version "3.6.2" + resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" + integrity sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8= + dependencies: + lodash._basecopy "^3.0.0" + lodash._basetostring "^3.0.0" + lodash._basevalues "^3.0.0" + lodash._isiterateecall "^3.0.0" + lodash._reinterpolate "^3.0.0" + lodash.escape "^3.0.0" + lodash.keys "^3.0.0" + lodash.restparam "^3.0.0" + lodash.templatesettings "^3.0.0" + +lodash.templatesettings@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" + integrity sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU= + dependencies: + lodash._reinterpolate "^3.0.0" + lodash.escape "^3.0.0" + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= + +lodash@4.17.x, lodash@^4.14.2, lodash@^4.17.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.8.0: + version "4.17.11" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" + integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== + +lodash@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" + integrity sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE= + +logform@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/logform/-/logform-2.1.2.tgz#957155ebeb67a13164069825ce67ddb5bb2dd360" + integrity sha512-+lZh4OpERDBLqjiwDLpAWNQu6KMjnlXH2ByZwCuSqVPJletw0kTWJf5CgSNAUKn1KUkv3m2cUz/LK8zyEy7wzQ== + dependencies: + colors "^1.2.1" + fast-safe-stringify "^2.0.4" + fecha "^2.3.3" + ms "^2.1.1" + triple-beam "^1.3.0" + +longest@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097" + integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc= + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^1.1.1: + version "1.1.4" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz#9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac" + integrity sha1-miyr0bno4K6ZOkv31YdcOcQujqw= + +lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" + integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== + dependencies: + pseudomap "^1.0.2" + yallist "^2.1.2" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-queue@0.1: + version "0.1.0" + resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" + integrity sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM= + dependencies: + es5-ext "~0.10.2" + +lutim@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/lutim/-/lutim-1.0.2.tgz#0b1e5a83c0c8d45900beb4eaf551e34f34f8a3e8" + integrity sha512-eIeHBtFIxyef4mW+zgxoUyW59NN/lCRGoK7pDfnmY97asflEwA04met3SqFPEgPgeWgm4iRAMAJWZ3MDQ39ucw== + dependencies: + q "^1.5.1" + request "^2.88.0" + +"lz-string@git+https://github.com/hackmdio/lz-string.git": + version "1.4.4" + resolved "git+https://github.com/hackmdio/lz-string.git#efd1f64676264d6d8871b01f4f375fc6ef4f9022" + +magic-string@^0.25.2: + version "0.25.2" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz#139c3a729515ec55e96e69e82a11fe890a293ad9" + integrity sha512-iLs9mPjh9IuTtRsqqhNGYcZXGei0Nh/A4xirrsqW7c+QhKVFL2vm7U09ru6cHRD22azaP/wMDgI+HCqbETMTtg== + dependencies: + sourcemap-codec "^1.4.4" + +make-dir@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== + dependencies: + pify "^3.0.0" + +make-dir@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5" + integrity sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA== + dependencies: + pify "^4.0.1" + semver "^5.6.0" + +make-iterator@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" + integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== + dependencies: + kind-of "^6.0.2" + +make-plural@^3.0.3, make-plural@~3.0.3: + version "3.0.6" + resolved "https://registry.yarnpkg.com/make-plural/-/make-plural-3.0.6.tgz#2033a03bac290b8f3bb91258f65b9df7e8b01ca7" + integrity sha1-IDOgO6wpC487uRJY9lud9+iwHKc= + optionalDependencies: + minimist "^1.2.0" + +mamacro@^0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz#ad2c9576197c9f1abf308d0787865bd975a3f3e4" + integrity sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA== + +map-age-cleaner@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz#7d583a7306434c055fe474b0f45078e6e1b4b92a" + integrity sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w== + dependencies: + p-defer "^1.0.0" + +map-cache@^0.2.0, map-cache@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" + integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= + +map-visit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f" + integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48= + dependencies: + object-visit "^1.0.0" + +markdown-it-abbr@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz#d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8" + integrity sha1-1mtTZFIcuz3Yqlna37ovtoZcj9g= + +markdown-it-container@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-2.0.0.tgz#0019b43fd02eefece2f1960a2895fba81a404695" + integrity sha1-ABm0P9Au7+zi8ZYKKJX7qBpARpU= + +markdown-it-deflist@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.0.3.tgz#5727db04184d3cb2bc6ee4a9641e3a1091d5fd6f" + integrity sha512-/BNZ8ksW42bflm1qQLnRI09oqU2847Z7MVavrR0MORyKLtiUYOMpwtlAfMSZAQU9UCvaUZMpgVAqoS3vpToJxw== + +markdown-it-emoji@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz#9bee0e9a990a963ba96df6980c4fddb05dfb4dcc" + integrity sha1-m+4OmpkKljupbfaYDE/dsF37Tcw= + +markdown-it-footnote@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/markdown-it-footnote/-/markdown-it-footnote-3.0.1.tgz#7f3730747cacc86e2fe0bf8a17a710f34791517a" + integrity sha1-fzcwdHysyG4v4L+KF6cQ80eRUXo= + +markdown-it-imsize@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz#cca0427905d05338a247cb9ca9d968c5cddd5170" + integrity sha1-zKBCeQXQUziiR8ucqdloxc3dUXA= + +markdown-it-ins@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz#a5aa6a30f1e2f71e9497567cfdff40f1fde67483" + integrity sha1-papqMPHi9x6Ul1Z8/f9A8f3mdIM= + +markdown-it-mark@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz#46a1aa947105aed8188978e0a016179e404f42c7" + integrity sha1-RqGqlHEFrtgYiXjgoBYXnkBPQsc= + +markdown-it-mathjax@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-mathjax/-/markdown-it-mathjax-2.0.0.tgz#ae2b4f4c5c719a03f9e475c664f7b2685231d9e9" + integrity sha1-ritPTFxxmgP55HXGZPeyaFIx2ek= + +markdown-it-regexp@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/markdown-it-regexp/-/markdown-it-regexp-0.4.0.tgz#d64d713eecec55ce4cfdeb321750ecc099e2c2dc" + integrity sha1-1k1xPuzsVc5M/esyF1DswJniwtw= + +markdown-it-sub@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz#375fd6026eae7ddcb012497f6411195ea1e3afe8" + integrity sha1-N1/WAm6ufdywEkl/ZBEZXqHjr+g= + +markdown-it-sup@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz#cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3" + integrity sha1-y5yf+RpSVawI8/09YyhuFd8KH8M= + +markdown-it@^8.2.2: + version "8.4.2" + resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz#386f98998dc15a37722aa7722084f4020bdd9b54" + integrity sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ== + dependencies: + argparse "^1.0.7" + entities "~1.1.1" + linkify-it "^2.0.0" + mdurl "^1.0.1" + uc.micro "^1.0.5" + +markdown-pdf@^9.0.0: + version "9.0.0" + resolved "https://registry.yarnpkg.com/markdown-pdf/-/markdown-pdf-9.0.0.tgz#d699f29c3b6c41da4b9a2ec7d09ea8895daef146" + integrity sha512-5Ck+LJzsxfXR4Bjmg5sLfVW9JhfkG/WEUsFUVdYN7FSHRKLEYw4r/O6esrWA8hEb+mV3RvFNUQTp+DpFKMfyYg== + dependencies: + commander "^2.2.0" + duplexer "^0.1.1" + extend "^3.0.0" + highlight.js "^9.1.0" + phantomjs-prebuilt "^2.1.3" + remarkable "^1.7.1" + stream-from-to "^1.4.2" + through2 "^2.0.0" + tmp "0.0.33" + +marked@~0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/marked/-/marked-0.6.2.tgz#c574be8b545a8b48641456ca1dbe0e37b6dccc1a" + integrity sha512-LqxwVH3P/rqKX4EKGz7+c2G9r98WeM/SW34ybhgNGhUQNKtf1GmmSkJ6cDGJ/t6tiyae49qRkpyTw2B9HOrgUA== + +math-interval-parser@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-1.1.0.tgz#dbeda5b06b3249973c6df6170fde2386f0afd893" + integrity sha1-2+2lsGsySZc8bfYXD94jhvCv2JM= + dependencies: + xregexp "^2.0.0" + +math-random@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c" + integrity sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A== + +mathjax@~2.7.0: + version "2.7.5" + resolved "https://registry.yarnpkg.com/mathjax/-/mathjax-2.7.5.tgz#c9c5947f86f9be31651f5f3667d3c9a8bb01efe4" + integrity sha512-OzsJNitEHAJB3y4IIlPCAvS0yoXwYjlo2Y4kmm9KQzyIBZt2d8yKRalby3uTRNN4fZQiGL2iMXjpdP1u2Rq2DQ== + +mattermost@^3.4.0: + version "3.4.0" + resolved "https://registry.yarnpkg.com/mattermost/-/mattermost-3.4.0.tgz#7e4958e1bc96c7da7bc5f179dd2c6ae5035a8857" + integrity sha1-fklY4byWx9p7xfF53Sxq5QNaiFc= + dependencies: + superagent "1.8.3" + +md5.js@1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz#e9bdbde94a20a5ac18b04340fc5764d5b09d901d" + integrity sha1-6b296UogpawYsENA/Fdk1bCdkB0= + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +md5.js@^1.3.4: + version "1.3.5" + resolved "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz#b5d07b8e3216e3e27cd728d72f70d1e6a342005f" + integrity sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + safe-buffer "^5.1.2" + +mdn-data@~1.1.0: + version "1.1.4" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01" + integrity sha512-FSYbp3lyKjyj3E7fMl6rYvUdX0FBXaluGqlFoYESWQlyUTq8R+wp0rkFxoYFqZlHCvsUXGjyJmLQSnXToYhOSA== + +mdurl@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" + integrity sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4= + +media-typer@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= + +mem@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz#5edd52b485ca1d900fe64895505399a0dfa45f76" + integrity sha1-Xt1StIXKHZAP5kiVUFOZoN+kX3Y= + dependencies: + mimic-fn "^1.0.0" + +mem@^4.0.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz#461af497bc4ae09608cdb2e60eefb69bff744178" + integrity sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w== + dependencies: + map-age-cleaner "^0.1.1" + mimic-fn "^2.0.0" + p-is-promise "^2.0.0" + +memoizee@^0.4.3: + version "0.4.14" + resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.14.tgz#07a00f204699f9a95c2d9e77218271c7cd610d57" + integrity sha512-/SWFvWegAIYAO4NQMpcX+gcra0yEZu4OntmUdrBaWrJncxOqAziGFlHxc7yjKVK2uu3lpPW27P27wkR82wA8mg== + dependencies: + d "1" + es5-ext "^0.10.45" + es6-weak-map "^2.0.2" + event-emitter "^0.3.5" + is-promise "^2.1" + lru-queue "0.1" + next-tick "1" + timers-ext "^0.1.5" + +memory-fs@^0.4.0, memory-fs@~0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" + integrity sha1-OpoguEYlI+RHz7x+i7gO1me/xVI= + dependencies: + errno "^0.1.3" + readable-stream "^2.0.1" + +merge-descriptors@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= + +mermaid@~7.1.0: + version "7.1.2" + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-7.1.2.tgz#6265728156c2e0891e004cba60a44022174487ad" + integrity sha512-bDLu3fQuf3/R0fNkNzB0GTaF7+6SxnZpfTs9DVQF1ougsuP23MBzvEIGfL0ML8zeyg7+J2D+0AaoLVhskW5ulw== + dependencies: + d3 "3.5.17" + dagre-d3-renderer "^0.4.25" + dagre-layout "^0.8.0" + he "^1.1.1" + lodash "^4.17.4" + moment "^2.20.1" + +messageformat@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/messageformat/-/messageformat-0.3.1.tgz#e58fff8245e9b3971799e5b43db58b3e9417f5a2" + integrity sha1-5Y//gkXps5cXmeW0PbWLPpQX9aI= + dependencies: + async "~1.5.2" + glob "~6.0.4" + make-plural "~3.0.3" + nopt "~3.0.6" + watchr "~2.4.13" + +"meta-marked@git+https://github.com/codimd/meta-marked#semver:^0.4.2": + version "0.4.4" + resolved "git+https://github.com/codimd/meta-marked#04fd9775b38566e41b71e3e63bd78717d3eb4445" + dependencies: + js-yaml "~3.13.1" + marked "~0.6.2" + +method-override@^2.3.7: + version "2.3.10" + resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.10.tgz#e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4" + integrity sha1-49r41d7hDdLc59SuiNYrvud0drQ= + dependencies: + debug "2.6.9" + methods "~1.1.2" + parseurl "~1.3.2" + vary "~1.1.2" + +methods@~1.1.1, methods@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= + +micromatch@^2.1.5, micromatch@^2.3.7: + version "2.3.11" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" + integrity sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU= + dependencies: + arr-diff "^2.0.0" + array-unique "^0.2.1" + braces "^1.8.2" + expand-brackets "^0.1.4" + extglob "^0.3.1" + filename-regex "^2.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.1" + kind-of "^3.0.2" + normalize-path "^2.0.1" + object.omit "^2.0.0" + parse-glob "^3.0.4" + regex-cache "^0.4.2" + +micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4, micromatch@^3.1.8: + version "3.1.10" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" + integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + braces "^2.3.1" + define-property "^2.0.2" + extend-shallow "^3.0.2" + extglob "^2.0.4" + fragment-cache "^0.2.1" + kind-of "^6.0.2" + nanomatch "^1.2.9" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.2" + +miller-rabin@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz#f080351c865b0dc562a8462966daa53543c78a4d" + integrity sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA== + dependencies: + bn.js "^4.0.0" + brorand "^1.0.1" + +mime-db@1.40.0, "mime-db@>= 1.40.0 < 2": + version "1.40.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32" + integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA== + +mime-types@^2.1.12, mime-types@^2.1.14, mime-types@^2.1.3, mime-types@~2.1.19, mime-types@~2.1.24: + version "2.1.24" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81" + integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ== + dependencies: + mime-db "1.40.0" + +mime@1.3.4: + version "1.3.4" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz#115f9e3b6b3daf2959983cb38f149a2d40eb5d53" + integrity sha1-EV+eO2s9rylZmDyzjxSaLUDrXVM= + +mime@1.6.0, mime@^1.2.11, mime@^1.2.9: + version "1.6.0" + resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== + +mime@^2.0.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.3.tgz#229687331e86f68924e6cb59e1cdd937f18275fe" + integrity sha512-QgrPRJfE+riq5TPZMcHZOtm8c6K/yYrMbKIoRfapfiGLxS8OTeIfRhUGW5LU7MlRa52KOAGCfUNruqLrIBvWZw== + +mimic-fn@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" + integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== + +mimic-fn@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== + +mini-css-extract-plugin@^0.4.1: + version "0.4.5" + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.5.tgz#c99e9e78d54f3fa775633aee5933aeaa4e80719a" + integrity sha512-dqBanNfktnp2hwL2YguV9Jh91PFX7gu7nRLs4TGsbAfAG6WOtlynFRYzwDwmmeSb5uIwHo9nx1ta0f7vAZVp2w== + dependencies: + loader-utils "^1.1.0" + schema-utils "^1.0.0" + webpack-sources "^1.1.0" + +minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" + integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== + +minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" + integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= + +minimatch@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" + integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== + dependencies: + brace-expansion "^1.1.7" + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@^1.1.0, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +minimist@~0.0.1: + version "0.0.10" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf" + integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8= + +minio@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/minio/-/minio-6.0.0.tgz#7e514d38eaacf2264556b232f1c2c063cc6ca7ba" + integrity sha1-flFNOOqs8iZFVrIy8cLAY8xsp7o= + dependencies: + async "^1.5.2" + block-stream2 "^1.0.0" + concat-stream "^1.4.8" + es6-error "^2.0.2" + json-stream "^1.0.0" + lodash "^4.14.2" + mime-types "^2.1.14" + mkdirp "^0.5.1" + querystring "0.2.0" + source-map-support "^0.4.12" + through2 "^0.6.5" + uuid "^3.1.0" + xml "^1.0.0" + xml2js "^0.4.15" + +minipass@^2.2.1, minipass@^2.3.4: + version "2.3.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" + integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" + integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== + dependencies: + minipass "^2.2.1" + +mississippi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-2.0.0.tgz#3442a508fafc28500486feea99409676e4ee5a6f" + integrity sha512-zHo8v+otD1J10j/tC+VNoGK9keCuByhKovAvdn74dmxJl9+mWHnx6EMsDN4lgRoMI/eYo2nchAxniIbUPb5onw== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^2.0.1" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mississippi@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" + integrity sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA== + dependencies: + concat-stream "^1.5.0" + duplexify "^3.4.2" + end-of-stream "^1.1.0" + flush-write-stream "^1.0.0" + from2 "^2.1.0" + parallel-transform "^1.1.0" + pump "^3.0.0" + pumpify "^1.3.3" + stream-each "^1.1.0" + through2 "^2.0.0" + +mixin-deep@^1.2.0: + version "1.3.1" + resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" + integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ== + dependencies: + for-in "^1.0.2" + is-extendable "^1.0.1" + +mkdirp@0.5.1, mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@~0.5.0, mkdirp@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" + integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= + dependencies: + minimist "0.0.8" + +mocha@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6" + integrity sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ== + dependencies: + browser-stdout "1.3.1" + commander "2.15.1" + debug "3.1.0" + diff "3.5.0" + escape-string-regexp "1.0.5" + glob "7.1.2" + growl "1.10.5" + he "1.1.1" + minimatch "^3.0.4" + mkdirp "0.5.1" + supports-color "5.4.0" + +mock-require@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz#ccd544d9eae81dd576b3f219f69ec867318a1946" + integrity sha512-lLzfLHcyc10MKQnNUCv7dMcoY/2Qxd6wJfbqCcVk3LDb8An4hF6ohk5AztrvgKhJCqj36uyzi/p5se+tvyD+Wg== + dependencies: + get-caller-file "^1.0.2" + normalize-path "^2.1.1" + +moment-timezone@^0.5.4: + version "0.5.25" + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.25.tgz#a11bfa2f74e088327f2cd4c08b3e7bdf55957810" + integrity sha512-DgEaTyN/z0HFaVcVbSyVCUU6HeFdnNC3vE4c9cgu2dgMTvjBUBdBzWfasTBmAW45u5OIMeCJtU8yNjM22DHucw== + dependencies: + moment ">= 2.9.0" + +"moment@>= 2.9.0", moment@^2.10.6, moment@^2.13.0, moment@^2.16.0, moment@^2.17.1, moment@^2.20.1: + version "2.24.0" + resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b" + integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg== + +morgan@^1.7.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59" + integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA== + dependencies: + basic-auth "~2.0.0" + debug "2.6.9" + depd "~1.1.2" + on-finished "~2.3.0" + on-headers "~1.0.1" + +move-concurrently@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" + integrity sha1-viwAX9oy4LKa8fBdfEszIUxwH5I= + dependencies: + aproba "^1.1.1" + copy-concurrently "^1.0.0" + fs-write-stream-atomic "^1.0.8" + mkdirp "^0.5.1" + rimraf "^2.5.4" + run-queue "^1.0.3" + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@2.1.1, ms@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" + integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== + +multipipe@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" + integrity sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s= + dependencies: + duplexer2 "0.0.2" + +mustache@*: + version "3.0.1" + resolved "https://registry.yarnpkg.com/mustache/-/mustache-3.0.1.tgz#873855f23aa8a95b150fb96d9836edbc5a1d248a" + integrity sha512-jFI/4UVRsRYdUbuDTKT7KzfOp7FiD5WzYmmwNwXyUVypC0xjoTL78Fqc0jHUPIvvGD+6DQSPHIt1NE7D1ArsqA== + +mute-stream@0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" + integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= + +mv@~2: + version "2.1.1" + resolved "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz#ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2" + integrity sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI= + dependencies: + mkdirp "~0.5.1" + ncp "~2.0.0" + rimraf "~2.4.0" + +mysql@^2.12.0: + version "2.17.1" + resolved "https://registry.yarnpkg.com/mysql/-/mysql-2.17.1.tgz#62bba4a039a9b2f73638cd1652ce50fc6f682899" + integrity sha512-7vMqHQ673SAk5C8fOzTG2LpPcf3bNt0oL3sFpxPEEFp1mdlDcrLK0On7z8ZYKaaHrHwNcQ/MTUz7/oobZ2OyyA== + dependencies: + bignumber.js "7.2.1" + readable-stream "2.3.6" + safe-buffer "5.1.2" + sqlstring "2.3.1" + +nan@^2.10.0, nan@^2.12.1: + version "2.14.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c" + integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg== + +nanomatch@^1.2.9: + version "1.2.13" + resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" + integrity sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA== + dependencies: + arr-diff "^4.0.0" + array-unique "^0.3.2" + define-property "^2.0.2" + extend-shallow "^3.0.2" + fragment-cache "^0.2.1" + is-windows "^1.0.2" + kind-of "^6.0.2" + object.pick "^1.3.0" + regex-not "^1.0.0" + snapdragon "^0.8.1" + to-regex "^3.0.1" + +natives@^1.1.0: + version "1.1.6" + resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz#a603b4a498ab77173612b9ea1acdec4d980f00bb" + integrity sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= + +ncp@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" + integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M= + +needle@^2.2.1: + version "2.4.0" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c" + integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg== + dependencies: + debug "^3.2.6" + iconv-lite "^0.4.4" + sax "^1.2.4" + +negotiator@0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" + integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== + +neo-async@^2.5.0, neo-async@^2.6.0: + version "2.6.1" + resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" + integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== + +next-tick@1, next-tick@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" + integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + +no-case@^2.2.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" + integrity sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ== + dependencies: + lower-case "^1.1.1" + +nocache@2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" + integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== + +node-forge@^0.7.0: + version "0.7.6" + resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.6.tgz#fdf3b418aee1f94f0ef642cd63486c77ca9724ac" + integrity sha512-sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw== + +node-gyp-build@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-3.7.0.tgz#daa77a4f547b9aed3e2aac779eaf151afd60ec8d" + integrity sha512-L/Eg02Epx6Si2NXmedx+Okg+4UHqmaf3TNcxd50SF9NQGcJaON3AtU++kax69XV7YWz4tUspqZSAsVofhFKG2w== + +node-libs-browser@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.0.tgz#c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77" + integrity sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA== + dependencies: + assert "^1.1.1" + browserify-zlib "^0.2.0" + buffer "^4.3.0" + console-browserify "^1.1.0" + constants-browserify "^1.0.0" + crypto-browserify "^3.11.0" + domain-browser "^1.1.1" + events "^3.0.0" + https-browserify "^1.0.0" + os-browserify "^0.3.0" + path-browserify "0.0.0" + process "^0.11.10" + punycode "^1.2.4" + querystring-es3 "^0.2.0" + readable-stream "^2.3.3" + stream-browserify "^2.0.1" + stream-http "^2.7.2" + string_decoder "^1.0.0" + timers-browserify "^2.0.4" + tty-browserify "0.0.0" + url "^0.11.0" + util "^0.11.0" + vm-browserify "0.0.4" + +node-pre-gyp@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz#db1f33215272f692cd38f03238e3e9b47c5dd054" + integrity sha512-TwWAOZb0j7e9eGaf9esRx3ZcLaE5tQ2lvYy1pb5IAaG1a2e2Kv5Lms1Y4hpj+ciXJRofIxxlt5haeQ/2ANeE0Q== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-pre-gyp@^0.12.0: + version "0.12.0" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149" + integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-releases@^1.1.21: + version "1.1.21" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.21.tgz#46c86f9adaceae4d63c75d3c2f2e6eee618e55f3" + integrity sha512-TwnURTCjc8a+ElJUjmDqU6+12jhli1Q61xOQmdZ7ECZVBZuQpN/1UnembiIHDM1wCcfLvh5wrWXUF5H6ufX64Q== + dependencies: + semver "^5.3.0" + +node-static@0.7.11: + version "0.7.11" + resolved "https://registry.yarnpkg.com/node-static/-/node-static-0.7.11.tgz#60120d349f3cef533e4e820670057eb631882e7f" + integrity sha512-zfWC/gICcqb74D9ndyvxZWaI1jzcoHmf4UTHWQchBNuNMxdBLJMDiUgZ1tjGLEIe/BMhj2DxKD8HOuc2062pDQ== + dependencies: + colors ">=0.6.0" + mime "^1.2.9" + optimist ">=0.3.4" + +nomnom@^1.5.x, nomnom@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz#2151f722472ba79e50a76fc125bb8c8f2e4dc2a7" + integrity sha1-IVH3Ikcrp55Qp2/BJbuMjy5Nwqc= + dependencies: + chalk "~0.4.0" + underscore "~1.6.0" + +nopt@^4.0.1, nopt@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= + dependencies: + abbrev "1" + osenv "^0.1.4" + +nopt@~3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" + integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= + dependencies: + abbrev "1" + +normalize-package-data@^2.3.2: + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== + dependencies: + hosted-git-info "^2.1.4" + resolve "^1.10.0" + semver "2 || 3 || 4 || 5" + validate-npm-package-license "^3.0.1" + +normalize-path@^2.0.0, normalize-path@^2.0.1, normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + +normalize-url@^3.0.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" + integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== + +npm-bundled@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" + integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== + +npm-packlist@^1.1.6: + version "1.4.1" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" + integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +npmlog@^4.0.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" + integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== + dependencies: + are-we-there-yet "~1.1.2" + console-control-strings "~1.1.0" + gauge "~2.7.3" + set-blocking "~2.0.0" + +nth-check@^1.0.2, nth-check@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" + integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg== + dependencies: + boolbase "~1.0.0" + +number-is-nan@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" + integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0= + +nwmatcher@~1.3.1: + version "1.3.9" + resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" + integrity sha1-i6tIb/f6Pf0IZla76LFxFtNpLSo= + +nwsapi@^2.0.7: + version "2.1.4" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f" + integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw== + +oauth-sign@~0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" + integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== + +oauth@0.9.x: + version "0.9.15" + resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" + integrity sha1-vR/vr2hslrdUda7VGWQS/2DPucE= + +object-assign@4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz#7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0" + integrity sha1-ejs9DpgGPUP0wD8uiubNUahog6A= + +object-assign@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" + integrity sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I= + +object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" + integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= + +object-component@0.0.3: + version "0.0.3" + resolved "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz#f0c69aa50efc95b866c186f400a33769cb2f1291" + integrity sha1-8MaapQ78lbhmwYb0AKM3acsvEpE= + +object-copy@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c" + integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw= + dependencies: + copy-descriptor "^0.1.0" + define-property "^0.2.5" + kind-of "^3.0.3" + +object-keys@^1.0.12: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object-visit@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" + integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs= + dependencies: + isobject "^3.0.0" + +object.defaults@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" + integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= + dependencies: + array-each "^1.0.1" + array-slice "^1.0.0" + for-own "^1.0.0" + isobject "^3.0.0" + +object.getownpropertydescriptors@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16" + integrity sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY= + dependencies: + define-properties "^1.1.2" + es-abstract "^1.5.1" + +object.map@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" + integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= + dependencies: + for-own "^1.0.0" + make-iterator "^1.0.0" + +object.omit@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz#1a9c744829f39dbb858c76ca3579ae2a54ebd1fa" + integrity sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo= + dependencies: + for-own "^0.1.4" + is-extendable "^0.1.1" + +object.pick@^1.2.0, object.pick@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" + integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= + dependencies: + isobject "^3.0.1" + +object.values@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9" + integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg== + dependencies: + define-properties "^1.1.3" + es-abstract "^1.12.0" + function-bind "^1.1.1" + has "^1.0.3" + +on-finished@~2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947" + integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc= + dependencies: + ee-first "1.1.1" + +on-headers@~1.0.1, on-headers@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz#772b0ae6aaa525c399e489adfad90c403eb3c28f" + integrity sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA== + +once@^1.3.0, once@^1.3.1, once@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= + dependencies: + wrappy "1" + +once@~1.3.0: + version "1.3.3" + resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" + integrity sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA= + dependencies: + wrappy "1" + +one-time@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e" + integrity sha1-+M33eISCb+Tf+T46nMN7HkSAdC4= + +onetime@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" + integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= + dependencies: + mimic-fn "^1.0.0" + +openid@2.x.x: + version "2.0.6" + resolved "https://registry.yarnpkg.com/openid/-/openid-2.0.6.tgz#707375e59ab9f73025899727679b20328171c9aa" + integrity sha1-cHN15Zq59zAliZcnZ5sgMoFxyao= + dependencies: + request "^2.61.0" + +optimist@>=0.3.4, optimist@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz#da3ea74686fa21a19a111c326e90eb15a0196686" + integrity sha1-2j6nRob6IaGaERwybpDrFaAZZoY= + dependencies: + minimist "~0.0.1" + wordwrap "~0.0.2" + +optimize-css-assets-webpack-plugin@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz#9eb500711d35165b45e7fd60ba2df40cb3eb9159" + integrity sha512-Rqm6sSjWtx9FchdP0uzTQDc7GXDKnwVEGoSxjezPkzMewx7gEWE9IMUYKmigTRC4U3RaNSwYVnUDLuIdtTpm0A== + dependencies: + cssnano "^4.1.0" + last-call-webpack-plugin "^3.0.0" + +optionator@^0.8.1, optionator@^0.8.2: + version "0.8.2" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" + integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q= + dependencies: + deep-is "~0.1.3" + fast-levenshtein "~2.0.4" + levn "~0.3.0" + prelude-ls "~1.1.2" + type-check "~0.3.2" + wordwrap "~1.0.0" + +orchestrator@^0.3.0: + version "0.3.8" + resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" + integrity sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4= + dependencies: + end-of-stream "~0.1.5" + sequencify "~0.0.7" + stream-consume "~0.1.0" + +ordered-read-streams@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" + integrity sha1-/VZamvjrRHO6abbtijQ1LLVS8SY= + +os-browserify@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27" + integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc= + +os-homedir@^1.0.0, os-homedir@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" + integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= + +os-locale@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz#42bc2900a6b5b8bd17376c8e882b65afccf24bf2" + integrity sha512-3sslG3zJbEYcaC4YVAvDorjGxc7tv6KVATnLPZONiljsUncvihe9BQoVCEs0RZ1kmf4Hk9OBqlZfJZWI4GanKA== + dependencies: + execa "^0.7.0" + lcid "^1.0.0" + mem "^1.1.0" + +os-locale@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz#a802a6ee17f24c10483ab9935719cef4ed16bf1a" + integrity sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q== + dependencies: + execa "^1.0.0" + lcid "^2.0.0" + mem "^4.0.0" + +os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" + integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= + +osenv@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" + integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== + dependencies: + os-homedir "^1.0.0" + os-tmpdir "^1.0.0" + +output-file-sync@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz#d0a33eefe61a205facb90092e826598d5245ce76" + integrity sha1-0KM+7+YaIF+suQCS6CZZjVJFznY= + dependencies: + graceful-fs "^4.1.4" + mkdirp "^0.5.1" + object-assign "^4.1.0" + +p-defer@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz#9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c" + integrity sha1-n26xgvbJqozXQwBKfU+WsZaw+ww= + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + +p-is-promise@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz#918cebaea248a62cf7ffab8e3bca8c5f882fc42e" + integrity sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg== + +p-limit@^1.0.0, p-limit@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" + integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== + dependencies: + p-try "^1.0.0" + +p-limit@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" + integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== + dependencies: + p-try "^2.0.0" + +p-locate@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" + integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= + dependencies: + p-limit "^1.1.0" + +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + +p-try@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" + integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= + +p-try@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" + integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== + +packet-reader@0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/packet-reader/-/packet-reader-0.3.1.tgz#cd62e60af8d7fea8a705ec4ff990871c46871f27" + integrity sha1-zWLmCvjX/qinBexP+ZCHHEaHHyc= + +pako@~1.0.5: + version "1.0.10" + resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz#4328badb5086a426aa90f541977d4955da5c9732" + integrity sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw== + +parallel-transform@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz#d410f065b05da23081fcd10f28854c29bda33b06" + integrity sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY= + dependencies: + cyclist "~0.2.2" + inherits "^2.0.3" + readable-stream "^2.1.5" + +param-case@2.1.x: + version "2.1.1" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz#df94fd8cf6531ecf75e6bef9a0858fbc72be2247" + integrity sha1-35T9jPZTHs915r75oIWPvHK+Ikc= + dependencies: + no-case "^2.2.0" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-asn1@^5.0.0: + version "5.1.4" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz#37f6628f823fbdeb2273b4d540434a22f3ef1fcc" + integrity sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw== + dependencies: + asn1.js "^4.0.0" + browserify-aes "^1.0.0" + create-hash "^1.1.0" + evp_bytestokey "^1.0.0" + pbkdf2 "^3.0.3" + safe-buffer "^5.1.1" + +parse-filepath@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" + integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= + dependencies: + is-absolute "^1.0.0" + map-cache "^0.2.0" + path-root "^0.1.1" + +parse-glob@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz#b2c376cfb11f35513badd173ef0bb6e3a388391c" + integrity sha1-ssN2z7EfNVE7rdFz7wu246OIORw= + dependencies: + glob-base "^0.3.0" + is-dotfile "^1.0.0" + is-extglob "^1.0.0" + is-glob "^2.0.0" + +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck= + dependencies: + error-ex "^1.2.0" + +parse-json@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" + integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA= + dependencies: + error-ex "^1.3.1" + json-parse-better-errors "^1.0.1" + +parse-node-version@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== + +parse-passwd@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" + integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= + +parse5@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" + integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== + +parseqs@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d" + integrity sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0= + dependencies: + better-assert "~1.0.0" + +parseuri@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz#80204a50d4dbb779bfdc6ebe2778d90e4bce320a" + integrity sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo= + dependencies: + better-assert "~1.0.0" + +parseurl@~1.3.2, parseurl@~1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== + +pascalcase@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" + integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ= + +passport-dropbox-oauth2@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/passport-dropbox-oauth2/-/passport-dropbox-oauth2-1.1.0.tgz#77c737636e4841944dfb82dfc42c3d8ab782c10e" + integrity sha1-d8c3Y25IQZRN+4LfxCw9ireCwQ4= + dependencies: + passport-oauth "^1.0.0" + pkginfo "^0.2.3" + +passport-facebook@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-2.1.1.tgz#c39d0b52ae4d59163245a4e21a7b9b6321303311" + integrity sha1-w50LUq5NWRYyRaTiGnubYyEwMxE= + dependencies: + passport-oauth2 "1.x.x" + +passport-github@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/passport-github/-/passport-github-1.1.0.tgz#8ce1e3fcd61ad7578eb1df595839e4aea12355d4" + integrity sha1-jOHj/NYa11eOsd9ZWDnkrqEjVdQ= + dependencies: + passport-oauth2 "1.x.x" + +passport-gitlab2@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-4.0.0.tgz#08de8b54d58cbe6f22f577f977f7874df3c26efb" + integrity sha512-C/8/L8piHwv57J6fY/MzsEJc8yCkgsyBSzMWxfTfEHRvCaTkD08vJ5b/txydKrWrRPl4MHuZfisFnKlZHmq4yw== + dependencies: + passport-oauth2 "^1.4.0" + +passport-google-oauth20@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz#3b960e8a1d70d1dbe794615c827c68c40392a5d0" + integrity sha1-O5YOih1w0dvnlGFcgnxoxAOSpdA= + dependencies: + passport-oauth2 "1.x.x" + +passport-ldapauth@^2.0.0: + version "2.1.3" + resolved "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-2.1.3.tgz#833530c31c1e2f8d2ab7a1ff97339291074dc6f6" + integrity sha512-23n425UTasN6XhcXG0qQ0h0YrS/zfo8kNIEhSLfPsNpglhYhhQFfB1pmDc5RrH+Kiz5fKLkki5BpvkKHCwkixg== + dependencies: + "@types/node" "^10.12.26" + "@types/passport" "^1.0.0" + ldapauth-fork "^4.2.0" + passport-strategy "^1.0.0" + +passport-local@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/passport-local/-/passport-local-1.0.0.tgz#1fe63268c92e75606626437e3b906662c15ba6ee" + integrity sha1-H+YyaMkudWBmJkN+O5BmYsFbpu4= + dependencies: + passport-strategy "1.x.x" + +passport-oauth1@1.x.x: + version "1.1.0" + resolved "https://registry.yarnpkg.com/passport-oauth1/-/passport-oauth1-1.1.0.tgz#a7de988a211f9cf4687377130ea74df32730c918" + integrity sha1-p96YiiEfnPRoc3cTDqdN8ycwyRg= + dependencies: + oauth "0.9.x" + passport-strategy "1.x.x" + utils-merge "1.x.x" + +passport-oauth2@1.x.x, passport-oauth2@^1.4.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/passport-oauth2/-/passport-oauth2-1.5.0.tgz#64babbb54ac46a4dcab35e7f266ed5294e3c4108" + integrity sha512-kqBt6vR/5VlCK8iCx1/KpY42kQ+NEHZwsSyt4Y6STiNjU+wWICG1i8ucc1FapXDGO15C5O5VZz7+7vRzrDPXXQ== + dependencies: + base64url "3.x.x" + oauth "0.9.x" + passport-strategy "1.x.x" + uid2 "0.0.x" + utils-merge "1.x.x" + +passport-oauth@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/passport-oauth/-/passport-oauth-1.0.0.tgz#90aff63387540f02089af28cdad39ea7f80d77df" + integrity sha1-kK/2M4dUDwIImvKM2tOep/gNd98= + dependencies: + passport-oauth1 "1.x.x" + passport-oauth2 "1.x.x" + +passport-saml@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/passport-saml/-/passport-saml-1.1.0.tgz#0fdd639b905b8f5db172bc07f2e73819a043c321" + integrity sha512-T2dKp++HQDg9dyJvb+5dyhIVVdIb5FX6DKMex0RALU16D65fiIbZ01vKZ2qtD+nW5nSOkbkfKJUolr9U689EdQ== + dependencies: + debug "^3.1.0" + passport-strategy "*" + q "^1.5.0" + xml-crypto "^1.1.4" + xml-encryption "^0.11.0" + xml2js "0.4.x" + xmlbuilder "^11.0.0" + xmldom "0.1.x" + +passport-strategy@*, passport-strategy@1.x.x, passport-strategy@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz#b5539aa8fc225a3d1ad179476ddf236b440f52e4" + integrity sha1-tVOaqPwiWj0a0XlHbd8ja0QPUuQ= + +passport-twitter@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/passport-twitter/-/passport-twitter-1.0.4.tgz#01a799e1f760bf2de49f2ba5fba32282f18932d7" + integrity sha1-AaeZ4fdgvy3knyul+6MigvGJMtc= + dependencies: + passport-oauth1 "1.x.x" + xtraverse "0.1.x" + +passport.socketio@^3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/passport.socketio/-/passport.socketio-3.7.0.tgz#2ee5fafe9695d4281c8cddd3fe975ecd18e6726e" + integrity sha1-LuX6/paV1CgcjN3T/pdezRjmcm4= + dependencies: + xtend "^4.0.0" + +passport@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/passport/-/passport-0.4.0.tgz#c5095691347bd5ad3b5e180238c3914d16f05811" + integrity sha1-xQlWkTR71a07XhgCOMORTRbwWBE= + dependencies: + passport-strategy "1.x.x" + pause "0.0.1" + +path-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a" + integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo= + +path-dirname@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" + integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA= + +path-exists@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" + integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= + +path-is-absolute@^1.0.0, path-is-absolute@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= + +path-is-inside@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" + integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= + +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +path-root-regex@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" + integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= + +path-root@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" + integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= + dependencies: + path-root-regex "^0.1.0" + +path-to-regexp@0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w= + +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + +path-type@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" + integrity sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg== + dependencies: + pify "^3.0.0" + +pause@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz#1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d" + integrity sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10= + +pbkdf2@^3.0.3: + version "3.0.17" + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz#976c206530617b14ebb32114239f7b09336e93a6" + integrity sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA== + dependencies: + create-hash "^1.1.2" + create-hmac "^1.1.4" + ripemd160 "^2.0.1" + safe-buffer "^5.0.1" + sha.js "^2.4.8" + +pdfobject@^2.0.201604172: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.1.1.tgz#2949d4d218d130d16b6149c7f7226f0a73400d4a" + integrity sha512-QFktTHyjs4q/WhGFfV2RdAbscPdNkyQb/JfFz18cwILvs9ocDiYVFAEh/jgkKGv6my+r4nlbLjwj7BHFKAupHQ== + +pend@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" + integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA= + +performance-now@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" + integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= + +pg-connection-string@0.1.3: + version "0.1.3" + resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-0.1.3.tgz#da1847b20940e42ee1492beaf65d49d91b245df7" + integrity sha1-2hhHsglA5C7hSSvq9l1J2RskXfc= + +pg-hstore@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/pg-hstore/-/pg-hstore-2.3.2.tgz#f7ef053e7b9b892ae986af2f7cbe86432dfcf24f" + integrity sha1-9+8FPnubiSrphq8vfL6GQy388k8= + dependencies: + underscore "^1.7.0" + +pg-int8@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" + integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== + +pg-pool@1.*: + version "1.8.0" + resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-1.8.0.tgz#f7ec73824c37a03f076f51bfdf70e340147c4f37" + integrity sha1-9+xzgkw3oD8Hb1G/33DjQBR8Tzc= + dependencies: + generic-pool "2.4.3" + object-assign "4.1.0" + +pg-types@1.*: + version "1.13.0" + resolved "https://registry.yarnpkg.com/pg-types/-/pg-types-1.13.0.tgz#75f490b8a8abf75f1386ef5ec4455ecf6b345c63" + integrity sha512-lfKli0Gkl/+za/+b6lzENajczwZHc7D5kiUCZfgm914jipD2kIOIvEkAhZ8GrW3/TUoP9w8FHjwpPObBye5KQQ== + dependencies: + pg-int8 "1.0.1" + postgres-array "~1.0.0" + postgres-bytea "~1.0.0" + postgres-date "~1.0.0" + postgres-interval "^1.1.0" + +pg@^6.1.2: + version "6.4.2" + resolved "https://registry.yarnpkg.com/pg/-/pg-6.4.2.tgz#c364011060eac7a507a2ae063eb857ece910e27f" + integrity sha1-w2QBEGDqx6UHoq4GPrhX7OkQ4n8= + dependencies: + buffer-writer "1.0.1" + js-string-escape "1.0.1" + packet-reader "0.3.1" + pg-connection-string "0.1.3" + pg-pool "1.*" + pg-types "1.*" + pgpass "1.*" + semver "4.3.2" + +pgpass@1.*: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.2.tgz#2a7bb41b6065b67907e91da1b07c1847c877b306" + integrity sha1-Knu0G2BltnkH6R2hsHwYR8h3swY= + dependencies: + split "^1.0.0" + +phantomjs-prebuilt@^2.1.12, phantomjs-prebuilt@^2.1.3: + version "2.1.16" + resolved "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz#efd212a4a3966d3647684ea8ba788549be2aefef" + integrity sha1-79ISpKOWbTZHaE6ouniFSb4q7+8= + dependencies: + es6-promise "^4.0.3" + extract-zip "^1.6.5" + fs-extra "^1.0.0" + hasha "^2.2.0" + kew "^0.7.0" + progress "^1.1.8" + request "^2.81.0" + request-progress "^2.0.1" + which "^1.2.10" + +pify@^2.0.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" + integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw= + +pify@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176" + integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY= + +pify@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231" + integrity sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g== + +pinkie-promise@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa" + integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o= + dependencies: + pinkie "^2.0.0" + +pinkie@^2.0.0: + version "2.0.4" + resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" + integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= + +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkginfo@^0.2.3: + version "0.2.3" + resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.2.3.tgz#7239c42a5ef6c30b8f328439d9b9ff71042490f8" + integrity sha1-cjnEKl72wwuPMoQ52bn/cQQkkPg= + +platform@1.3.5: + version "1.3.5" + resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.5.tgz#fb6958c696e07e2918d2eeda0f0bc9448d733444" + integrity sha512-TuvHS8AOIZNAlE77WUDiR4rySV/VMptyMfcfeoMgs4P8apaZM3JrnbzBiixKUv+XR6i+BXrQh8WAnjaSPFO65Q== + +pn@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" + integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== + +pop-iterate@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/pop-iterate/-/pop-iterate-1.0.1.tgz#ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3" + integrity sha1-zqz9q0q/NT16DyqqLB/Hs/lBO6M= + +posix-character-classes@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" + integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= + +postcss-calc@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz#36d77bab023b0ecbb9789d84dcb23c4941145436" + integrity sha512-oXqx0m6tb4N3JGdmeMSc/i91KppbYsFZKdH0xMOqK8V1rJlzrKlTdokz8ozUXLVejydRN6u2IddxpcijRj2FqQ== + dependencies: + css-unit-converter "^1.1.1" + postcss "^7.0.5" + postcss-selector-parser "^5.0.0-rc.4" + postcss-value-parser "^3.3.1" + +postcss-colormin@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381" + integrity sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw== + dependencies: + browserslist "^4.0.0" + color "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-convert-values@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f" + integrity sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-discard-comments@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033" + integrity sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg== + dependencies: + postcss "^7.0.0" + +postcss-discard-duplicates@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb" + integrity sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ== + dependencies: + postcss "^7.0.0" + +postcss-discard-empty@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765" + integrity sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w== + dependencies: + postcss "^7.0.0" + +postcss-discard-overridden@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57" + integrity sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg== + dependencies: + postcss "^7.0.0" + +postcss-merge-longhand@^4.0.11: + version "4.0.11" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24" + integrity sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw== + dependencies: + css-color-names "0.0.4" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + stylehacks "^4.0.0" + +postcss-merge-rules@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650" + integrity sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + cssnano-util-same-parent "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + vendors "^1.0.0" + +postcss-minify-font-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6" + integrity sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-gradients@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471" + integrity sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + is-color-stop "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-minify-params@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874" + integrity sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg== + dependencies: + alphanum-sort "^1.0.0" + browserslist "^4.0.0" + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + uniqs "^2.0.0" + +postcss-minify-selectors@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8" + integrity sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g== + dependencies: + alphanum-sort "^1.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +postcss-modules-extract-imports@^1.2.0: + version "1.2.1" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz#dc87e34148ec7eab5f791f7cd5849833375b741a" + integrity sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw== + dependencies: + postcss "^6.0.1" + +postcss-modules-local-by-default@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz#f7d80c398c5a393fa7964466bd19500a7d61c069" + integrity sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk= + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-scope@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz#d6ea64994c79f97b62a72b426fbe6056a194bb90" + integrity sha1-1upkmUx5+XtipytCb75gVqGUu5A= + dependencies: + css-selector-tokenizer "^0.7.0" + postcss "^6.0.1" + +postcss-modules-values@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz#ecffa9d7e192518389f42ad0e83f72aec456ea20" + integrity sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA= + dependencies: + icss-replace-symbols "^1.1.0" + postcss "^6.0.1" + +postcss-normalize-charset@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4" + integrity sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g== + dependencies: + postcss "^7.0.0" + +postcss-normalize-display-values@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a" + integrity sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-positions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f" + integrity sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA== + dependencies: + cssnano-util-get-arguments "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-repeat-style@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c" + integrity sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q== + dependencies: + cssnano-util-get-arguments "^4.0.0" + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-string@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c" + integrity sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA== + dependencies: + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-timing-functions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9" + integrity sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A== + dependencies: + cssnano-util-get-match "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-unicode@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb" + integrity sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-url@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1" + integrity sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA== + dependencies: + is-absolute-url "^2.0.0" + normalize-url "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-normalize-whitespace@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82" + integrity sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA== + dependencies: + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-ordered-values@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee" + integrity sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw== + dependencies: + cssnano-util-get-arguments "^4.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-reduce-initial@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df" + integrity sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA== + dependencies: + browserslist "^4.0.0" + caniuse-api "^3.0.0" + has "^1.0.0" + postcss "^7.0.0" + +postcss-reduce-transforms@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29" + integrity sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg== + dependencies: + cssnano-util-get-match "^4.0.0" + has "^1.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + +postcss-selector-parser@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz#4f875f4afb0c96573d5cf4d74011aee250a7e865" + integrity sha1-T4dfSvsMllc9XPTXQBGu4lCn6GU= + dependencies: + dot-prop "^4.1.1" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-selector-parser@^5.0.0-rc.4: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + dependencies: + cssesc "^2.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + +postcss-svgo@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" + integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== + dependencies: + is-svg "^3.0.0" + postcss "^7.0.0" + postcss-value-parser "^3.0.0" + svgo "^1.0.0" + +postcss-unique-selectors@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac" + integrity sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg== + dependencies: + alphanum-sort "^1.0.0" + postcss "^7.0.0" + uniqs "^2.0.0" + +postcss-value-parser@^3.0.0, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + +postcss@^6.0.1, postcss@^6.0.23: + version "6.0.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" + integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== + dependencies: + chalk "^2.4.1" + source-map "^0.6.1" + supports-color "^5.4.0" + +postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.5: + version "7.0.16" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.16.tgz#48f64f1b4b558cb8b52c88987724359acb010da2" + integrity sha512-MOo8zNSlIqh22Uaa3drkdIAgUGEL+AD1ESiSdmElLUmE2uVDo1QloiT/IfW9qRw8Gw+Y/w69UVMGwbufMSftxA== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + +postgres-array@~1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-1.0.3.tgz#c561fc3b266b21451fc6555384f4986d78ec80f5" + integrity sha512-5wClXrAP0+78mcsNX3/ithQ5exKvCyK5lr5NEEEeGwwM6NJdQgzIJBVxLvRW+huFpX92F2QnZ5CcokH0VhK2qQ== + +postgres-bytea@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz#027b533c0aa890e26d172d47cf9ccecc521acd35" + integrity sha1-AntTPAqokOJtFy1Hz5zOzFIazTU= + +postgres-date@~1.0.0: + version "1.0.4" + resolved "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.4.tgz#1c2728d62ef1bff49abdd35c1f86d4bdf118a728" + integrity sha512-bESRvKVuTrjoBluEcpv2346+6kgB7UlnqWZsnbnCccTNq/pqfj1j6oBaN5+b/NrDXepYUT/HKadqv3iS9lJuVA== + +postgres-interval@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz#b460c82cb1587507788819a06aa0fffdb3544695" + integrity sha512-9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ== + dependencies: + xtend "^4.0.0" + +precond@0.2: + version "0.2.3" + resolved "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz#aa9591bcaa24923f1e0f4849d240f47efc1075ac" + integrity sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw= + +prelude-ls@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" + integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= + +preserve@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" + integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= + +pretty-error@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3" + integrity sha1-X0+HyPkeWuPzuoerTPXgOxoX8aM= + dependencies: + renderkid "^2.0.1" + utila "~0.4" + +pretty-hrtime@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= + +prismjs@^1.6.0: + version "1.16.0" + resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.16.0.tgz#406eb2c8aacb0f5f0f1167930cb83835d10a4308" + integrity sha512-OA4MKxjFZHSvZcisLGe14THYsug/nF6O1f0pAJc0KN0wTyAcLqmsbE+lTGKSpyh+9pEW57+k6pg2AfYR+coyHA== + optionalDependencies: + clipboard "^2.0.0" + +private@^0.1.6, private@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~1.0.6: + version "1.0.7" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz#150e20b756590ad3f91093f25a4f2ad8bff30ba3" + integrity sha1-FQ4gt1ZZCtP5EJPyWk8q2L/zC6M= + +process-nextick-args@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa" + integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw== + +process@^0.11.10: + version "0.11.10" + resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + integrity sha1-czIwDoQBYb2j5podHZGn1LwW8YI= + +progress@^1.1.8: + version "1.1.8" + resolved "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz#e260c78f6161cdd9b0e56cc3e0a85de17c7a57be" + integrity sha1-4mDHj2Fhzdmw5WzD4Khd4Xx6V74= + +progress@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" + integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== + +promise-inflight@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" + integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= + +promise@^7.1.1: + version "7.3.1" + resolved "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz#064b72602b18f90f29192b8b1bc418ffd1ebd3bf" + integrity sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg== + dependencies: + asap "~2.0.3" + +proto-list@~1.2.1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" + integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= + +proxy-addr@~2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34" + integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ== + dependencies: + forwarded "~0.1.2" + ipaddr.js "1.9.0" + +prr@~1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476" + integrity sha1-0/wRS6BplaRexok/SEzrHXj19HY= + +pseudomap@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3" + integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM= + +psl@^1.1.24: + version "1.1.32" + resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.32.tgz#3f132717cf2f9c169724b2b6caf373cf694198db" + integrity sha512-MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g== + +public-encrypt@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0" + integrity sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q== + dependencies: + bn.js "^4.1.0" + browserify-rsa "^4.0.0" + create-hash "^1.1.0" + parse-asn1 "^5.0.0" + randombytes "^2.0.1" + safe-buffer "^5.1.2" + +pump@^2.0.0, pump@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz#12399add6e4cf7526d973cbc8b5ce2e2908b3909" + integrity sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pump@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" + integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== + dependencies: + end-of-stream "^1.1.0" + once "^1.3.1" + +pumpify@^1.3.3: + version "1.5.1" + resolved "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz#36513be246ab27570b1a374a5ce278bfd74370ce" + integrity sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ== + dependencies: + duplexify "^3.6.0" + inherits "^2.0.3" + pump "^2.0.0" + +punycode@1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz#9653a036fb7c1ee42342f2325cceefea3926c48d" + integrity sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0= + +punycode@^1.2.4, punycode@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" + integrity sha1-wNWmOycYgArY4esPpSachN1BhF4= + +punycode@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" + integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== + +q@^1.1.2, q@^1.5.0, q@^1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" + integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= + +q@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/q/-/q-2.0.3.tgz#75b8db0255a1a5af82f58c3f3aaa1efec7d0d134" + integrity sha1-dbjbAlWhpa+C9Yw/Oqoe/sfQ0TQ= + dependencies: + asap "^2.0.0" + pop-iterate "^1.0.1" + weak-map "^1.0.5" + +qs@2.3.3: + version "2.3.3" + resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" + integrity sha1-6eha2+ddoLvkyOBHaghikPhjtAQ= + +qs@6.7.0: + version "6.7.0" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc" + integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ== + +qs@~6.5.2: + version "6.5.2" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" + integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== + +querystring-es3@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" + integrity sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM= + +querystring@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" + integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= + +random-bytes@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz#4f68a1dc0ae58bd3fb95848c30324db75d64360b" + integrity sha1-T2ih3Arli9P7lYSMMDJNt11kNgs= + +randomatic@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed" + integrity sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw== + dependencies: + is-number "^4.0.0" + kind-of "^6.0.0" + math-random "^1.0.1" + +randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +randomcolor@^0.5.3: + version "0.5.4" + resolved "https://registry.yarnpkg.com/randomcolor/-/randomcolor-0.5.4.tgz#df615b13f25b89ea58c5f8f72647f0a6f07adcc3" + integrity sha512-nYd4nmTuuwMFzHL6W+UWR5fNERGZeVauho8mrJDUSXdNDbao4rbrUwhuLgKC/j8VCS5+34Ria8CsTDuBjrIrQA== + +randomfill@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz#c92196fc86ab42be983f1bf31778224931d61458" + integrity sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw== + dependencies: + randombytes "^2.0.5" + safe-buffer "^5.1.0" + +range-parser@~1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== + +raphael@2.2.7: + version "2.2.7" + resolved "https://registry.yarnpkg.com/raphael/-/raphael-2.2.7.tgz#231b19141f8d086986d8faceb66f8b562ee2c810" + integrity sha1-IxsZFB+NCGmG2PrOtm+LVi7iyBA= + dependencies: + eve-raphael "0.5.0" + +raphael@2.2.x: + version "2.2.8" + resolved "https://registry.yarnpkg.com/raphael/-/raphael-2.2.8.tgz#4b18443c2c6030c3b492d8d11fbbca14ebe4d3f3" + integrity sha512-0kWKcGn4lXTw4eUiOhjspYiG+v0m6zSmTmlO62E0hl2CYKUvCuHER9YKqXYvOn2nj24mYp8jzHOLeBuj/Gn28Q== + dependencies: + eve-raphael "0.5.0" + +"raphael@git+https://github.com/dmitrybaranovskiy/raphael": + version "2.2.8" + resolved "git+https://github.com/dmitrybaranovskiy/raphael#bf3dcd35317f76f915bcd04ed9db36a1b3775c4d" + dependencies: + eve-raphael "0.5.0" + +raw-body@2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332" + integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q== + dependencies: + bytes "3.1.0" + http-errors "1.7.2" + iconv-lite "0.4.24" + unpipe "1.0.0" + +raw-loader@~0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz#0c3d0beaed8a01c966d9787bf778281252a979aa" + integrity sha1-DD0L6u2KAclm2Xh793goElKpeao= + +rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + +"readable-stream@1 || 2", readable-stream@2.3.6, readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +readable-stream@1.0.27-1: + version "1.0.27-1" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.27-1.tgz#6b67983c20357cefd07f0165001a16d710d91078" + integrity sha1-a2eYPCA1fO/QfwFlABoW1xDZEHg= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +"readable-stream@>=1.0.33-1 <1.1.0-0": + version "1.0.34" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" + integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@^3.1.1: + version "3.4.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc" + integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ== + dependencies: + inherits "^2.0.3" + string_decoder "^1.1.1" + util-deprecate "^1.0.1" + +readable-stream@~1.1.9: + version "1.1.14" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" + integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "0.0.1" + string_decoder "~0.10.x" + +readable-stream@~2.0.0: + version "2.0.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz#8f90341e68a53ccc928788dacfcd11b36eb9b78e" + integrity sha1-j5A0HmilPMySh4jaz80Rs265t44= + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.1" + isarray "~1.0.0" + process-nextick-args "~1.0.6" + string_decoder "~0.10.x" + util-deprecate "~1.0.1" + +readdirp@^2.0.0, readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== + dependencies: + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" + +readline-sync@^1.4.7: + version "1.4.9" + resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz#3eda8e65f23cd2a17e61301b1f0003396af5ecda" + integrity sha1-PtqOZfI80qF+YTAbHwADOWr17No= + +rechoir@^0.6.2: + version "0.6.2" + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" + integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= + dependencies: + resolve "^1.1.6" + +redefine@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/redefine/-/redefine-0.2.1.tgz#e89ee7a6f24d19fff62590569332dc60380a89a3" + integrity sha1-6J7npvJNGf/2JZBWkzLcYDgKiaM= + +reduce-component@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz#e0c93542c574521bea13df0f9488ed82ab77c5da" + integrity sha1-4Mk1QsV0UhvqE98PlIjtgqt3xdo= + +referrer-policy@1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz#b99cfb8b57090dc454895ef897a4cc35ef67a98e" + integrity sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA== + +regenerate-unicode-properties@^8.0.2: + version "8.1.0" + resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e" + integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA== + dependencies: + regenerate "^1.4.0" + +regenerate@^1.2.1, regenerate@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + +regenerator-runtime@^0.10.5: + version "0.10.5" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658" + integrity sha1-M2w+/BIgrc7dosn6tntaeVWjNlg= + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regex-cache@^0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz#75bdc58a2a1496cec48a12835bc54c8d562336dd" + integrity sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ== + dependencies: + is-equal-shallow "^0.1.3" + +regex-not@^1.0.0, regex-not@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" + integrity sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A== + dependencies: + extend-shallow "^3.0.2" + safe-regex "^1.1.0" + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +regexpu-core@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz#86a763f58ee4d7c2f6b102e4764050de7ed90c6b" + integrity sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs= + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regexpu-core@^4.5.4: + version "4.5.4" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae" + integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ== + dependencies: + regenerate "^1.4.0" + regenerate-unicode-properties "^8.0.2" + regjsgen "^0.5.0" + regjsparser "^0.6.0" + unicode-match-property-ecmascript "^1.0.4" + unicode-match-property-value-ecmascript "^1.1.0" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= + +regjsgen@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz#a7634dc08f89209c2049adda3525711fb97265dd" + integrity sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA== + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= + dependencies: + jsesc "~0.5.0" + +regjsparser@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz#f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c" + integrity sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ== + dependencies: + jsesc "~0.5.0" + +relateurl@0.2.x: + version "0.2.7" + resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" + integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= + +remarkable@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz#aaca4972100b66a642a63a1021ca4bac1be3bff6" + integrity sha1-qspJchALZqZCpjoQIcpLrBvjv/Y= + dependencies: + argparse "~0.1.15" + autolinker "~0.15.0" + +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + +renderkid@^2.0.1: + version "2.0.3" + resolved "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz#380179c2ff5ae1365c522bf2fcfcff01c5b74149" + integrity sha512-z8CLQp7EZBPCwCnncgf9C4XAi3WR0dv+uWu/PjIyhhAb5d6IJ/QZqlHFprHeKT+59//V6BNUsLbvN8+2LarxGA== + dependencies: + css-select "^1.1.0" + dom-converter "^0.2" + htmlparser2 "^3.3.0" + strip-ansi "^3.0.0" + utila "^0.4.0" + +repeat-element@^1.1.2: + version "1.1.3" + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" + integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== + +repeat-string@^1.5.2, repeat-string@^1.6.1: + version "1.6.1" + resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" + integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= + +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo= + dependencies: + is-finite "^1.0.0" + +replace-ext@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" + integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= + +request-progress@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz#5d36bb57961c673aa5b788dbc8141fdf23b44e08" + integrity sha1-XTa7V5YcZzqlt4jbyBQf3yO0Tgg= + dependencies: + throttleit "^1.0.0" + +request-promise-core@1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346" + integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag== + dependencies: + lodash "^4.17.11" + +request-promise-native@^1.0.5: + version "1.0.7" + resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59" + integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w== + dependencies: + request-promise-core "1.1.2" + stealthy-require "^1.1.1" + tough-cookie "^2.3.3" + +request@2.x, request@^2.61.0, request@^2.81.0, request@^2.83.0, request@^2.86.0, request@^2.87.0, request@^2.88.0: + version "2.88.0" + resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef" + integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg== + dependencies: + aws-sign2 "~0.7.0" + aws4 "^1.8.0" + caseless "~0.12.0" + combined-stream "~1.0.6" + extend "~3.0.2" + forever-agent "~0.6.1" + form-data "~2.3.2" + har-validator "~5.1.0" + http-signature "~1.2.0" + is-typedarray "~1.0.0" + isstream "~0.1.2" + json-stringify-safe "~5.0.1" + mime-types "~2.1.19" + oauth-sign "~0.9.0" + performance-now "^2.1.0" + qs "~6.5.2" + safe-buffer "^5.1.2" + tough-cookie "~2.4.3" + tunnel-agent "^0.6.0" + uuid "^3.3.2" + +require-directory@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" + integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= + +require-main-filename@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" + integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= + +require-relative@0.8.7: + version "0.8.7" + resolved "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz#7999539fc9e047a37928fa196f8e1563dabd36de" + integrity sha1-eZlTn8ngR6N5KPoZb44VY9q9Nt4= + +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= + dependencies: + resolve-from "^3.0.0" + +resolve-dir@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz#b219259a5602fac5c5c496ad894a6e8cc430261e" + integrity sha1-shklmlYC+sXFxJatiUpujMQwJh4= + dependencies: + expand-tilde "^1.2.2" + global-modules "^0.2.3" + +resolve-dir@^1.0.0, resolve-dir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" + integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= + dependencies: + expand-tilde "^2.0.0" + global-modules "^1.0.0" + +resolve-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748" + integrity sha1-six699nWiBvItuZTM17rywoYh0g= + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-url@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" + integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= + +resolve@^1.0.0, resolve@^1.1.6, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.0, resolve@^1.3.3, resolve@^1.5.0, resolve@^1.8.1: + version "1.11.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz#4014870ba296176b86343d50b60f3b50609ce232" + integrity sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw== + dependencies: + path-parse "^1.0.6" + +restore-cursor@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" + integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= + dependencies: + onetime "^2.0.0" + signal-exit "^3.0.2" + +ret@~0.1.10: + version "0.1.15" + resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" + integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== + +retry-as-promised@^2.0.0: + version "2.3.2" + resolved "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-2.3.2.tgz#cd974ee4fd9b5fe03cbf31871ee48221c07737b7" + integrity sha1-zZdO5P2bX+A8vzGHHuSCIcB3N7c= + dependencies: + bluebird "^3.4.6" + debug "^2.6.9" + +reveal.js@~3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/reveal.js/-/reveal.js-3.7.0.tgz#7afaf72fd963000381289d58f3aa54c0c46b150c" + integrity sha512-HTOTNhF5mQAw6fcsptk4oql/DEEUwTG0YHk/LzTNNx0/3IgvOQZqKzvlK/zNpqqKMLlhn1gH9Nvp+FFoc/e5/w== + +rgb-regex@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1" + integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE= + +rgba-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" + integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= + +right-align@^0.1.1: + version "0.1.3" + resolved "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz#61339b722fe6a3515689210d24e14c96148613ef" + integrity sha1-YTObci/mo1FWiSENJOFMlhSGE+8= + dependencies: + align-text "^0.1.1" + +rimraf@2.6.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2: + version "2.6.3" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" + integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== + dependencies: + glob "^7.1.3" + +rimraf@~2.4.0: + version "2.4.5" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da" + integrity sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto= + dependencies: + glob "^6.0.1" + +ripemd160@^2.0.0, ripemd160@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" + integrity sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA== + dependencies: + hash-base "^3.0.0" + inherits "^2.0.1" + +rollup-plugin-buble@^0.19.2: + version "0.19.6" + resolved "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.19.6.tgz#55ee0995d8870d536f01f4277c3eef4276e8747e" + integrity sha512-El5Fut4/wEO17ZN/n9BZvqd7DXXB2WbJr/DKvr89LXChC/cHllE0XwiUDeAalrTkgr0WrnyLDTCQvEv+cGywWQ== + dependencies: + buble "^0.19.6" + rollup-pluginutils "^2.3.3" + +rollup-pluginutils@^2.0.1, rollup-pluginutils@^2.3.3: + version "2.7.1" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.7.1.tgz#a7915ce8b12c177364784bf38a1590cc6c2c8250" + integrity sha512-3nRf3buQGR9qz/IsSzhZAJyoK663kzseps8itkYHr+Z7ESuaffEPfgRinxbCRA0pf0gzLqkNKkSb8aNVTq75NA== + dependencies: + estree-walker "^0.6.0" + micromatch "^3.1.10" + +rollup-watch@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-4.3.1.tgz#5aa1eaeab787addf368905d102b39d6fc5ce4a8b" + integrity sha512-6yjnIwfjpSrqA8IafyIu7fsEyeImNR4aDjA1bQ7KWeVuiA+Clfsx8+PGQkyABWIQzmauQ//tIJ5wAxLXsXs8qQ== + dependencies: + chokidar "^1.7.0" + require-relative "0.8.7" + rollup-pluginutils "^2.0.1" + +rollup@^0.66.2: + version "0.66.6" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-0.66.6.tgz#ce7d6185beb7acea644ce220c25e71ae03275482" + integrity sha512-J7/SWanrcb83vfIHqa8+aVVGzy457GcjA6GVZEnD0x2u4OnOd0Q1pCrEoNe8yLwM6z6LZP02zBT2uW0yh5TqOw== + dependencies: + "@types/estree" "0.0.39" + "@types/node" "*" + +run-async@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz#0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0" + integrity sha1-A3GrSuC91yDUFm19/aZP96RFpsA= + dependencies: + is-promise "^2.1.0" + +run-queue@^1.0.0, run-queue@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz#e848396f057d223f24386924618e25694161ec47" + integrity sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec= + dependencies: + aproba "^1.1.1" + +rxjs@^6.4.0: + version "6.5.2" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz#2e35ce815cd46d84d02a209fb4e5921e051dbec7" + integrity sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg== + dependencies: + tslib "^1.9.0" + +safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +safe-json-stringify@~1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd" + integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg== + +safe-regex@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e" + integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4= + dependencies: + ret "~0.1.10" + +safefs@^3.1.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/safefs/-/safefs-3.2.2.tgz#8170c1444d7038e08caea05a374fae2fa349e15c" + integrity sha1-gXDBRE1wOOCMrqBaN0+uL6NJ4Vw= + dependencies: + graceful-fs "*" + +"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== + +sax@0.5.x: + version "0.5.8" + resolved "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz#d472db228eb331c2506b0e8c15524adb939d12c1" + integrity sha1-1HLbIo6zMcJQaw6MFVJK25OdEsE= + +sax@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz#7b8e656190b228e81a66aea748480d828cd2d37a" + integrity sha1-e45lYZCyKOgaZq6nSEgNgozS03o= + +sax@>=0.6.0, sax@^1.2.4, sax@~1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + +scandirectory@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/scandirectory/-/scandirectory-2.5.0.tgz#6ce03f54a090b668e3cbedbf20edf9e310593e72" + integrity sha1-bOA/VKCQtmjjy+2/IO354xBZPnI= + dependencies: + ignorefs "^1.0.0" + safefs "^3.1.2" + taskgroup "^4.0.5" + +schema-utils@^0.4.5: + version "0.4.7" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187" + integrity sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ== + dependencies: + ajv "^6.1.0" + ajv-keywords "^3.1.0" + +schema-utils@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz#0b79a93204d7b600d4b2850d1f66c2a34951c770" + integrity sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g== + dependencies: + ajv "^6.1.0" + ajv-errors "^1.0.0" + ajv-keywords "^3.1.0" + +script-loader@^0.7.2: + version "0.7.2" + resolved "https://registry.yarnpkg.com/script-loader/-/script-loader-0.7.2.tgz#2016db6f86f25f5cf56da38915d83378bb166ba7" + integrity sha512-UMNLEvgOAQuzK8ji8qIscM3GIrRCWN6MmMXGD4SD5l6cSycgGsCo0tX5xRnfQcoghqct0tjHjcykgI1PyBE2aA== + dependencies: + raw-loader "~0.5.1" + +scrypt-async@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/scrypt-async/-/scrypt-async-2.0.1.tgz#4318dae48a8b7cc3b8fe05f75f4164a7d973d25d" + integrity sha512-wHR032jldwZNy7Tzrfu7RccOgGf8r5hyDMSP2uV6DpLiBUsR8JsDcx/in73o2UGVVrH5ivRFdNsFPcjtl3LErQ== + +scrypt-kdf@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/scrypt-kdf/-/scrypt-kdf-2.0.1.tgz#3355224c52d398331b2cbf2b70a7be26b52c53e6" + integrity sha512-dMhpgBVJPDWZP5erOCwTjI6oAO9hKhFAjZsdSQ0spaWJYHuA/wFNF2weQQfsyCIk8eNKoLfEDxr3zAtM+gZo0Q== + +select2@^3.5.2-browserify: + version "3.5.2-browserify" + resolved "https://registry.yarnpkg.com/select2/-/select2-3.5.2-browserify.tgz#dc4dafda38d67a734e8a97a46f0d3529ae05391d" + integrity sha1-3E2v2jjWenNOipekbw01Ka4FOR0= + +select@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d" + integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0= + +"semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.3.0, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: + version "5.7.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + +semver@4.3.2: + version "4.3.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz#c7a07158a80bedd052355b770d82d6640f803be7" + integrity sha1-x6BxWKgL7dBSNVt3DYLWZA+AO+c= + +semver@^4.1.0: + version "4.3.6" + resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" + integrity sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto= + +send@0.17.1: + version "0.17.1" + resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" + integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg== + dependencies: + debug "2.6.9" + depd "~1.1.2" + destroy "~1.0.4" + encodeurl "~1.0.2" + escape-html "~1.0.3" + etag "~1.8.1" + fresh "0.5.2" + http-errors "~1.7.2" + mime "1.6.0" + ms "2.1.1" + on-finished "~2.3.0" + range-parser "~1.2.1" + statuses "~1.5.0" + +sequelize-cli@^2.5.1: + version "2.8.0" + resolved "https://registry.yarnpkg.com/sequelize-cli/-/sequelize-cli-2.8.0.tgz#4304cce60e499169603f838dedbab421c9849e74" + integrity sha1-QwTM5g5JkWlgP4ON7bq0IcmEnnQ= + dependencies: + bluebird "^3.5.0" + cli-color "~1.2.0" + findup-sync "^1.0.0" + fs-extra "^4.0.1" + gulp "^3.9.1" + gulp-help "~1.6.1" + js-beautify "^1.6.11" + lodash "^4.17.4" + moment "^2.17.1" + resolve "^1.3.3" + umzug "^1.12.0" + yargs "^8.0.1" + +sequelize@^3.28.0: + version "3.34.0" + resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-3.34.0.tgz#edbceb53dd7c9e5a0fd6b35fb89565239e8f09e4" + integrity sha512-smJMYZ+JniYZ2Ja4GPaEC0/mkvCNnRl7mM958hZQP9dpXNbSS/wPFUNrn0mnfpWRk8Ob/3zo0H1qxQbXKgcIzw== + dependencies: + bluebird "^3.3.4" + depd "^1.1.0" + dottie "^1.0.0" + generic-pool "2.4.2" + inflection "^1.6.0" + lodash "^4.17.10" + moment "^2.13.0" + moment-timezone "^0.5.4" + retry-as-promised "^2.0.0" + semver "^5.0.1" + shimmer "1.1.0" + terraformer-wkt-parser "^1.1.0" + toposort-class "^1.0.1" + uuid "^3.0.0" + validator "^5.2.0" + wkx "0.2.0" + +sequencify@~0.0.7: + version "0.0.7" + resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" + integrity sha1-kM/xnQLgcCf9dn9erT57ldHnOAw= + +serialize-javascript@^1.4.0, serialize-javascript@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65" + integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA== + +series-stream@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/series-stream/-/series-stream-1.0.1.tgz#311a09c5c1d5a091440832e1a480a47400f1005d" + integrity sha1-MRoJxcHVoJFECDLhpICkdADxAF0= + +serve-static@1.14.1: + version "1.14.1" + resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9" + integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg== + dependencies: + encodeurl "~1.0.2" + escape-html "~1.0.3" + parseurl "~1.3.3" + send "0.17.1" + +set-blocking@^2.0.0, set-blocking@~2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" + integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= + +set-value@^0.4.3: + version "0.4.3" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1" + integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE= + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.1" + to-object-path "^0.3.0" + +set-value@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274" + integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg== + dependencies: + extend-shallow "^2.0.1" + is-extendable "^0.1.1" + is-plain-object "^2.0.3" + split-string "^3.0.1" + +setimmediate@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz#290cbb232e306942d7d7ea9b83732ab7856f8285" + integrity sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU= + +setprototypeof@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683" + integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw== + +sha.js@^2.4.0, sha.js@^2.4.8: + version "2.4.11" + resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7" + integrity sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + +shebang-command@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" + integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= + dependencies: + shebang-regex "^1.0.0" + +shebang-regex@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" + integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= + +shimmer@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.1.0.tgz#97d7377137ffbbab425522e429fe0aa89a488b35" + integrity sha1-l9c3cTf/u6tCVSLkKf4KqJpIizU= + +shortid@2.2.8: + version "2.2.8" + resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.8.tgz#033b117d6a2e975804f6f0969dbe7d3d0b355131" + integrity sha1-AzsRfWoul1gE9vCWnb59PQs1UTE= + +sigmund@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" + integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA= + +signal-exit@^3.0.0, signal-exit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" + integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0= + +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + +slash@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55" + integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU= + +slice-ansi@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" + integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== + dependencies: + ansi-styles "^3.2.0" + astral-regex "^1.0.0" + is-fullwidth-code-point "^2.0.0" + +snapdragon-node@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b" + integrity sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw== + dependencies: + define-property "^1.0.0" + isobject "^3.0.0" + snapdragon-util "^3.0.1" + +snapdragon-util@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2" + integrity sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ== + dependencies: + kind-of "^3.2.0" + +snapdragon@^0.8.1: + version "0.8.2" + resolved "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d" + integrity sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg== + dependencies: + base "^0.11.1" + debug "^2.2.0" + define-property "^0.2.5" + extend-shallow "^2.0.1" + map-cache "^0.2.2" + source-map "^0.5.6" + source-map-resolve "^0.5.0" + use "^3.1.0" + +snapsvg@0.4.x: + version "0.4.0" + resolved "https://registry.yarnpkg.com/snapsvg/-/snapsvg-0.4.0.tgz#e0767014167825957de7e125c29b0fa89796ea03" + integrity sha1-4HZwFBZ4JZV95+ElwpsPqJeW6gM= + dependencies: + eve "~0.4.2" + +socket.io-adapter@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz#2a805e8a14d6372124dd9159ad4502f8cb07f06b" + integrity sha1-KoBeihTWNyEk3ZFZrUUC+MsH8Gs= + +socket.io-client@2.1.1, socket.io-client@~2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.1.tgz#dcb38103436ab4578ddb026638ae2f21b623671f" + integrity sha512-jxnFyhAuFxYfjqIgduQlhzqTcOEQSn+OHKVfAxWaNWa7ecP7xSNk2Dx/3UEsDcY7NcFafxvNvKPmmO7HTwTxGQ== + dependencies: + backo2 "1.0.2" + base64-arraybuffer "0.1.5" + component-bind "1.0.0" + component-emitter "1.2.1" + debug "~3.1.0" + engine.io-client "~3.2.0" + has-binary2 "~1.0.2" + has-cors "1.1.0" + indexof "0.0.1" + object-component "0.0.3" + parseqs "0.0.5" + parseuri "0.0.5" + socket.io-parser "~3.2.0" + to-array "0.1.4" + +socket.io-parser@~3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz#e7c6228b6aa1f814e6148aea325b51aa9499e077" + integrity sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA== + dependencies: + component-emitter "1.2.1" + debug "~3.1.0" + isarray "2.0.1" + +socket.io@~2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.1.tgz#a069c5feabee3e6b214a75b40ce0652e1cfb9980" + integrity sha512-rORqq9c+7W0DAK3cleWNSyfv/qKXV99hV4tZe+gGLfBECw3XEhBy7x85F3wypA9688LKjtwO9pX9L33/xQI8yA== + dependencies: + debug "~3.1.0" + engine.io "~3.2.0" + has-binary2 "~1.0.2" + socket.io-adapter "~1.1.0" + socket.io-client "2.1.1" + socket.io-parser "~3.2.0" + +source-list-map@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" + integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== + +source-map-resolve@^0.5.0: + version "0.5.2" + resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" + integrity sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA== + dependencies: + atob "^2.1.1" + decode-uri-component "^0.2.0" + resolve-url "^0.2.1" + source-map-url "^0.4.0" + urix "^0.1.0" + +source-map-support@^0.4.12, source-map-support@^0.4.15: + version "0.4.18" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" + integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== + dependencies: + source-map "^0.5.6" + +source-map-support@~0.5.10: + version "0.5.12" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599" + integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map-url@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" + integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= + +source-map@0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.0.tgz#0fe96503ac86a5adb5de63f4e412ae4872cdbe86" + integrity sha1-D+llA6yGpa213mP05BKuSHLNvoY= + +source-map@^0.5.3, source-map@^0.5.6, source-map@^0.5.7, source-map@~0.5.1: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.0, source-map@~0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +sourcemap-codec@^1.4.4: + version "1.4.4" + resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f" + integrity sha512-CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg== + +sparkles@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" + integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== + +spdx-correct@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" + integrity sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q== + dependencies: + spdx-expression-parse "^3.0.0" + spdx-license-ids "^3.0.0" + +spdx-exceptions@^2.1.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz#2ea450aee74f2a89bfb94519c07fcd6f41322977" + integrity sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA== + +spdx-expression-parse@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0" + integrity sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg== + dependencies: + spdx-exceptions "^2.1.0" + spdx-license-ids "^3.0.0" + +spdx-license-ids@^3.0.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz#75ecd1a88de8c184ef015eafb51b5b48bfd11bb1" + integrity sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA== + +spin.js@^2.3.2: + version "2.3.2" + resolved "https://registry.yarnpkg.com/spin.js/-/spin.js-2.3.2.tgz#6caa56d520673450fd5cfbc6971e6d0772c37a1a" + integrity sha1-bKpW1SBnNFD9XPvGlx5tB3LDeho= + +split-string@^3.0.1, split-string@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2" + integrity sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw== + dependencies: + extend-shallow "^3.0.0" + +split@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz#605bd9be303aa59fb35f9229fbea0ddec9ea07d9" + integrity sha512-mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg== + dependencies: + through "2" + +sprintf-js@>=1.0.3: + version "1.1.2" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz#da1765262bf8c0f571749f2ad6c26300207ae673" + integrity sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug== + +sprintf-js@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" + integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= + +sprintf@0.1.5: + version "0.1.5" + resolved "https://registry.yarnpkg.com/sprintf/-/sprintf-0.1.5.tgz#8f83e39a9317c1a502cb7db8050e51c679f6edcf" + integrity sha1-j4PjmpMXwaUCy324BQ5Rxnn27c8= + +sqlite3@^4.0.7: + version "4.0.8" + resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-4.0.8.tgz#81ee60d54befaa52f5421fe6337050bd43d4bb95" + integrity sha512-kgwHu4j10KhpCHtx//dejd/tVQot7jc3sw+Sn0vMuKOw0X00Ckyg9VceKgzPyGmmz+zEoYue9tOLriWTvYy0ww== + dependencies: + nan "^2.12.1" + node-pre-gyp "^0.11.0" + request "^2.87.0" + +sqlstring@2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/sqlstring/-/sqlstring-2.3.1.tgz#475393ff9e91479aea62dcaf0ca3d14983a7fb40" + integrity sha1-R1OT/56RR5rqYtyvDKPRSYOn+0A= + +sshpk@^1.7.0: + version "1.16.1" + resolved "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877" + integrity sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg== + dependencies: + asn1 "~0.2.3" + assert-plus "^1.0.0" + bcrypt-pbkdf "^1.0.0" + dashdash "^1.12.0" + ecc-jsbn "~0.1.1" + getpass "^0.1.1" + jsbn "~0.1.0" + safer-buffer "^2.0.2" + tweetnacl "~0.14.0" + +ssri@^5.2.4: + version "5.3.0" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz#ba3872c9c6d33a0704a7d71ff045e5ec48999d06" + integrity sha512-XRSIPqLij52MtgoQavH/x/dU1qVKtWUAAZeOHsR9c2Ddi4XerFy3mc1alf+dLJKl9EUIm/Ht+EowFkTUOA6GAQ== + dependencies: + safe-buffer "^5.1.1" + +ssri@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" + integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== + dependencies: + figgy-pudding "^3.5.1" + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +stack-trace@0.0.x: + version "0.0.10" + resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" + integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= + +static-extend@^0.1.1: + version "0.1.2" + resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6" + integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY= + dependencies: + define-property "^0.2.5" + object-copy "^0.1.0" + +"statuses@>= 1.5.0 < 2", statuses@~1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" + integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= + +stealthy-require@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" + integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= + +store@^2.0.12: + version "2.0.12" + resolved "https://registry.yarnpkg.com/store/-/store-2.0.12.tgz#8c534e2a0b831f72b75fc5f1119857c44ef5d593" + integrity sha1-jFNOKguDH3K3X8XxEZhXxE711ZM= + +stream-browserify@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b" + integrity sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg== + dependencies: + inherits "~2.0.1" + readable-stream "^2.0.2" + +stream-consume@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz#d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48" + integrity sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg== + +stream-each@^1.1.0: + version "1.2.3" + resolved "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz#ebe27a0c389b04fbcc233642952e10731afa9bae" + integrity sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw== + dependencies: + end-of-stream "^1.1.0" + stream-shift "^1.0.0" + +stream-from-to@^1.4.2: + version "1.4.3" + resolved "https://registry.yarnpkg.com/stream-from-to/-/stream-from-to-1.4.3.tgz#b270473ebc514e73615727c5d2f76b229941df94" + integrity sha1-snBHPrxRTnNhVyfF0vdrIplB35Q= + dependencies: + async "^1.5.2" + concat-stream "^1.4.7" + mkdirp "^0.5.0" + series-stream "^1.0.1" + +stream-http@^2.7.2: + version "2.8.3" + resolved "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz#b2d242469288a5a27ec4fe8933acf623de6514fc" + integrity sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw== + dependencies: + builtin-status-codes "^3.0.0" + inherits "^2.0.1" + readable-stream "^2.3.6" + to-arraybuffer "^1.0.0" + xtend "^4.0.0" + +stream-shift@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz#d5c752825e5367e786f78e18e445ea223a155952" + integrity sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI= + +string-loader@^0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/string-loader/-/string-loader-0.0.1.tgz#496f3cccc990213e0dd5411499f9ac6a6a6f2ff8" + integrity sha1-SW88zMmQIT4N1UEUmfmsampvL/g= + +string-natural-compare@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-2.0.3.tgz#9dbe1dd65490a5fe14f7a5c9bc686fc67cb9c6e4" + integrity sha512-4Kcl12rNjc+6EKhY8QyDVuQTAlMWwRiNbsxnVwBUKFr7dYPQuXVrtNU4sEkjF9LHY0AY6uVbB3ktbkIH4LC+BQ== + +string-width@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" + integrity sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M= + dependencies: + code-point-at "^1.0.0" + is-fullwidth-code-point "^1.0.0" + strip-ansi "^3.0.0" + +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" + integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== + dependencies: + is-fullwidth-code-point "^2.0.0" + strip-ansi "^4.0.0" + +string-width@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" + integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== + dependencies: + emoji-regex "^7.0.1" + is-fullwidth-code-point "^2.0.0" + strip-ansi "^5.1.0" + +string@^3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/string/-/string-3.3.3.tgz#5ea211cd92d228e184294990a6cc97b366a77cb0" + integrity sha1-XqIRzZLSKOGEKUmQpsyXs2anfLA= + +string_decoder@^1.0.0, string_decoder@^1.1.1: + version "1.2.0" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d" + integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w== + dependencies: + safe-buffer "~5.1.0" + +string_decoder@~0.10.x: + version "0.10.31" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" + integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0, strip-ansi@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +strip-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" + integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= + dependencies: + ansi-regex "^3.0.0" + +strip-ansi@^5.1.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" + integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== + dependencies: + ansi-regex "^4.1.0" + +strip-ansi@~0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz#39e8a98d044d150660abe4a6808acf70bb7bc991" + integrity sha1-OeipjQRNFQZgq+SmgIrPcLt7yZE= + +strip-bom@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" + integrity sha1-hbiGLzhEtabV7IRnqTWYFzo295Q= + dependencies: + first-chunk-stream "^1.0.0" + is-utf8 "^0.2.0" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= + +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + +strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" + integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= + +style-loader@^0.21.0: + version "0.21.0" + resolved "https://registry.yarnpkg.com/style-loader/-/style-loader-0.21.0.tgz#68c52e5eb2afc9ca92b6274be277ee59aea3a852" + integrity sha512-T+UNsAcl3Yg+BsPKs1vd22Fr8sVT+CJMtzqc6LEw9bbJZb43lm9GoeIfUcDEefBSWC0BhYbcdupV1GtI4DGzxg== + dependencies: + loader-utils "^1.1.0" + schema-utils "^0.4.5" + +stylehacks@^4.0.0: + version "4.0.3" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5" + integrity sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g== + dependencies: + browserslist "^4.0.0" + postcss "^7.0.0" + postcss-selector-parser "^3.0.0" + +superagent@1.8.3: + version "1.8.3" + resolved "https://registry.yarnpkg.com/superagent/-/superagent-1.8.3.tgz#2b7d70fcc870eda4f2a61e619dd54009b86547c3" + integrity sha1-K31w/Mhw7aTyph5hndVACbhlR8M= + dependencies: + component-emitter "~1.2.0" + cookiejar "2.0.6" + debug "2" + extend "3.0.0" + form-data "1.0.0-rc3" + formidable "~1.0.14" + methods "~1.1.1" + mime "1.3.4" + qs "2.3.3" + readable-stream "1.0.27-1" + reduce-component "1.0.1" + +supports-color@5.4.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" + integrity sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w== + dependencies: + has-flag "^3.0.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0, supports-color@^5.4.0, supports-color@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" + integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== + dependencies: + has-flag "^3.0.0" + +svgo@^1.0.0: + version "1.2.2" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316" + integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA== + dependencies: + chalk "^2.4.1" + coa "^2.0.2" + css-select "^2.0.0" + css-select-base-adapter "^0.1.1" + css-tree "1.0.0-alpha.28" + css-url-regex "^1.1.0" + csso "^3.5.1" + js-yaml "^3.13.1" + mkdirp "~0.5.1" + object.values "^1.1.0" + sax "~1.2.4" + stable "^0.1.8" + unquote "~1.1.1" + util.promisify "~1.0.0" + +symbol-tree@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz#ae27db38f660a7ae2e1c3b7d1bc290819b8519e6" + integrity sha1-rifbOPZgp64uHDt9G8KQgZuFGeY= + +table@^5.2.3: + version "5.4.0" + resolved "https://registry.yarnpkg.com/table/-/table-5.4.0.tgz#d772a3216e68829920a41a32c18eda286c95d780" + integrity sha512-nHFDrxmbrkU7JAFKqKbDJXfzrX2UBsWmrieXFTGxiI5e4ncg3VqsZeI4EzNmX0ncp4XNGVeoxIWJXfCIXwrsvw== + dependencies: + ajv "^6.9.1" + lodash "^4.17.11" + slice-ansi "^2.1.0" + string-width "^3.0.0" + +tapable@^1.0.0, tapable@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" + integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== + +tar-stream@^1.5.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555" + integrity sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A== + dependencies: + bl "^1.0.0" + buffer-alloc "^1.2.0" + end-of-stream "^1.0.0" + fs-constants "^1.0.0" + readable-stream "^2.3.0" + to-buffer "^1.1.1" + xtend "^4.0.0" + +tar@^4: + version "4.4.8" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" + integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.3.4" + minizlib "^1.1.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.2" + +taskgroup@^4.0.5, taskgroup@^4.2.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/taskgroup/-/taskgroup-4.3.1.tgz#7de193febd768273c457730497024d512c27915a" + integrity sha1-feGT/r12gnPEV3MElwJNUSwnkVo= + dependencies: + ambi "^2.2.0" + csextends "^1.0.3" + +tedious@^1.14.0: + version "1.15.0" + resolved "https://registry.yarnpkg.com/tedious/-/tedious-1.15.0.tgz#9bda9e9798212c8fcd9438a70cb2a806abcae70a" + integrity sha1-m9qel5ghLI/NlDinDLKoBqvK5wo= + dependencies: + babel-runtime "^6.9.2" + big-number "0.3.1" + bl "^1.0.0" + dns-lookup-all "^1.0.2" + iconv-lite "^0.4.11" + readable-stream "^2.0.2" + sprintf "0.1.5" + +terraformer-wkt-parser@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/terraformer-wkt-parser/-/terraformer-wkt-parser-1.2.0.tgz#c9d6ac3dff25f4c0bd344e961f42694961834c34" + integrity sha512-QU3iA54St5lF8Za1jg1oj4NYc8sn5tCZ08aNSWDeGzrsaV48eZk1iAVWasxhNspYBoCqdHuoot1pUTUrE1AJ4w== + dependencies: + "@types/geojson" "^1.0.0" + terraformer "~1.0.5" + +terraformer@~1.0.5: + version "1.0.9" + resolved "https://registry.yarnpkg.com/terraformer/-/terraformer-1.0.9.tgz#77851fef4a49c90b345dc53cf26809fdf29dcda6" + integrity sha512-YlmQ1fsMWTkKGDGibCRWgmLzrpDRUr63Q025LJ/taYQ6j1Yb8q9McKF7NBi6ACAyUXO6F/bl9w6v4MY307y5Ag== + optionalDependencies: + "@types/geojson" "^1.0.0" + +terser-webpack-plugin@^1.1.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4" + integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg== + dependencies: + cacache "^11.3.2" + find-cache-dir "^2.0.0" + is-wsl "^1.1.0" + loader-utils "^1.2.3" + schema-utils "^1.0.0" + serialize-javascript "^1.7.0" + source-map "^0.6.1" + terser "^4.0.0" + webpack-sources "^1.3.0" + worker-farm "^1.7.0" + +terser@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz#ef356f6f359a963e2cc675517f21c1c382877374" + integrity sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA== + dependencies: + commander "^2.19.0" + source-map "~0.6.1" + source-map-support "~0.5.10" + +text-hex@1.0.x: + version "1.0.0" + resolved "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz#69dc9c1b17446ee79a92bf5b884bb4b9127506f5" + integrity sha512-uuVGNWzgJ4yhRaNSiubPY7OjISw4sw4E5Uv0wbjp+OzcbmVU/rsT8ujgcXJhn9ypzsgr5vlzpPqP+MBBKcGvbg== + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= + +throttleit@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz#9e785836daf46743145a5984b6268d828528ac6c" + integrity sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw= + +through2@^0.6.1, through2@^0.6.5: + version "0.6.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" + integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= + dependencies: + readable-stream ">=1.0.33-1 <1.1.0-0" + xtend ">=4.0.0 <4.1.0-0" + +through2@^2.0.0: + version "2.0.5" + resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" + integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== + dependencies: + readable-stream "~2.3.6" + xtend "~4.0.1" + +through@2, through@^2.3.6: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +tildify@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" + integrity sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo= + dependencies: + os-homedir "^1.0.0" + +time-stamp@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" + integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= + +timers-browserify@^2.0.4: + version "2.0.10" + resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae" + integrity sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg== + dependencies: + setimmediate "^1.0.4" + +timers-ext@0.1, timers-ext@^0.1.5: + version "0.1.7" + resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" + integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== + dependencies: + es5-ext "~0.10.46" + next-tick "1" + +timsort@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" + integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q= + +tiny-emitter@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" + integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== + +tmp@0.0.29: + version "0.0.29" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0" + integrity sha1-8lEl/w3Z2jzLDC3Tce4SiLuRKMA= + dependencies: + os-tmpdir "~1.0.1" + +tmp@0.0.33, tmp@^0.0.33: + version "0.0.33" + resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" + integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== + dependencies: + os-tmpdir "~1.0.2" + +to-array@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz#17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890" + integrity sha1-F+bBH3PdTz10zaek/zI46a2b+JA= + +to-arraybuffer@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz#7d229b1fcc637e466ca081180836a7aabff83f43" + integrity sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M= + +to-buffer@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80" + integrity sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg== + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= + +to-object-path@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af" + integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68= + dependencies: + kind-of "^3.0.2" + +to-regex-range@^2.1.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38" + integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg= + dependencies: + is-number "^3.0.0" + repeat-string "^1.6.1" + +to-regex@^3.0.1, to-regex@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce" + integrity sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw== + dependencies: + define-property "^2.0.2" + extend-shallow "^3.0.2" + regex-not "^1.0.2" + safe-regex "^1.1.0" + +toidentifier@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553" + integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw== + +toobusy-js@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/toobusy-js/-/toobusy-js-0.5.1.tgz#5511f78f6a87a6a512d44fdb0efa13672217f659" + integrity sha1-VRH3j2qHpqUS1E/bDvoTZyIX9lk= + +toposort-class@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988" + integrity sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg= + +tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@~2.4.0, tough-cookie@~2.4.3: + version "2.4.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" + integrity sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ== + dependencies: + psl "^1.1.24" + punycode "^1.4.1" + +tr46@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" + integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= + dependencies: + punycode "^2.1.0" + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + +triple-beam@^1.2.0, triple-beam@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" + integrity sha512-XrHUvV5HpdLmIj4uVMxHggLbFSZYIn7HEWsqePZcI50pco+MPqJ50wMGY794X7AOOhxOBAjbkqfAbEe/QMp2Lw== + +tslib@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" + integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== + +tty-browserify@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz#a157ba402da24e9bf957f9aa69d524eed42901a6" + integrity sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY= + +tunnel-agent@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" + integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0= + dependencies: + safe-buffer "^5.0.1" + +turndown@^5.0.1: + version "5.0.3" + resolved "https://registry.yarnpkg.com/turndown/-/turndown-5.0.3.tgz#a1350b66155d7891f10e451432170b0f7cd7449a" + integrity sha512-popfGXEiedpq6F5saRIAThKxq/bbEPVFnsDnUdjaDGIre9f3/OL9Yi/yPbPcZ7RYUDpekghr666bBfZPrwNnhQ== + dependencies: + jsdom "^11.9.0" + +tweetnacl@^0.14.3, tweetnacl@~0.14.0: + version "0.14.5" + resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" + integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= + +type-check@~0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" + integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= + dependencies: + prelude-ls "~1.1.2" + +type-is@~1.6.17, type-is@~1.6.18: + version "1.6.18" + resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== + dependencies: + media-typer "0.3.0" + mime-types "~2.1.24" + +typechecker@^2.0.8: + version "2.1.0" + resolved "https://registry.yarnpkg.com/typechecker/-/typechecker-2.1.0.tgz#d1c2093a54ff8a19f58cff877eeaa54f2242d383" + integrity sha1-0cIJOlT/ihn1jP+HfuqlTyJC04M= + +typechecker@^4.3.0: + version "4.7.0" + resolved "https://registry.yarnpkg.com/typechecker/-/typechecker-4.7.0.tgz#5249f427358f45b7250c4924fd4d01ed9ba435e9" + integrity sha512-4LHc1KMNJ6NDGO+dSM/yNfZQRtp8NN7psYrPHUblD62Dvkwsp3VShsbM78kOgpcmMkRTgvwdKOTjctS+uMllgQ== + dependencies: + editions "^2.1.0" + +typechecker@~2.0.1: + version "2.0.8" + resolved "https://registry.yarnpkg.com/typechecker/-/typechecker-2.0.8.tgz#e83da84bb64c584ccb345838576c40b0337db82e" + integrity sha1-6D2oS7ZMWEzLNFg4V2xAsDN9uC4= + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +uc.micro@^1.0.1, uc.micro@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" + integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== + +uglify-es@^3.0.26, uglify-es@^3.3.4: + version "3.3.9" + resolved "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz#0c1c4f0700bed8dbc124cdb304d2592ca203e677" + integrity sha512-r+MU0rfv4L/0eeW3xZrd16t4NZfK8Ld4SWVglYBb7ez5uXFWHuVRs6xCTrf1yirs9a4j4Y27nn7SRfO6v67XsQ== + dependencies: + commander "~2.13.0" + source-map "~0.6.1" + +uglify-js@3.4.x: + version "3.4.10" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz#9ad9563d8eb3acdfb8d38597d2af1d815f6a755f" + integrity sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw== + dependencies: + commander "~2.19.0" + source-map "~0.6.1" + +uglify-js@^2.8.15: + version "2.8.29" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz#29c5733148057bb4e1f75df35b7a9cb72e6a59dd" + integrity sha1-KcVzMUgFe7Th913zW3qcty5qWd0= + dependencies: + source-map "~0.5.1" + yargs "~3.10.0" + optionalDependencies: + uglify-to-browserify "~1.0.0" + +uglify-js@^3.0.21, uglify-js@^3.1.4: + version "3.5.15" + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.15.tgz#fe2b5378fd0b09e116864041437bff889105ce24" + integrity sha512-fe7aYFotptIddkwcm6YuA0HmknBZ52ZzOsUxZEdhhkSsz7RfjHDX2QDxwKTiv4JQ5t5NhfmpgAK+J7LiDhKSqg== + dependencies: + commander "~2.20.0" + source-map "~0.6.1" + +uglify-to-browserify@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz#6e0924d6bda6b5afe349e39a6d632850a0f882b7" + integrity sha1-bgkk1r2mta/jSeOabWMoUKD4grc= + +uglifyjs-webpack-plugin@^1.2.7: + version "1.3.0" + resolved "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz#75f548160858163a08643e086d5fefe18a5d67de" + integrity sha512-ovHIch0AMlxjD/97j9AYovZxG5wnHOPkL7T1GKochBADp/Zwc44pEWNqpKl1Loupp1WhFg7SlYmHZRUfdAacgw== + dependencies: + cacache "^10.0.4" + find-cache-dir "^1.0.0" + schema-utils "^0.4.5" + serialize-javascript "^1.4.0" + source-map "^0.6.1" + uglify-es "^3.3.4" + webpack-sources "^1.1.0" + worker-farm "^1.5.2" + +uid-safe@~2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz#2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a" + integrity sha512-KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA== + dependencies: + random-bytes "~1.0.0" + +uid2@0.0.x: + version "0.0.3" + resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" + integrity sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= + +ultron@~1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz#9fe1536a10a664a65266a1e3ccf85fd36302bc9c" + integrity sha512-UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og== + +umzug@^1.12.0: + version "1.12.0" + resolved "https://registry.yarnpkg.com/umzug/-/umzug-1.12.0.tgz#a79c91f2862eee3130c6c347f2b90ad68a66e8b8" + integrity sha1-p5yR8oYu7jEwxsNH8rkK1opm6Lg= + dependencies: + bluebird "^3.4.1" + lodash "^4.17.0" + moment "^2.16.0" + redefine "^0.2.0" + resolve "^1.0.0" + +unc-path-regex@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" + integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= + +underscore.string@~2.4.0: + version "2.4.0" + resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.4.0.tgz#8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b" + integrity sha1-jN2PusTi0uoefi6Al8QvRCKA+Fs= + +underscore@1.8.x, underscore@~1.8.3: + version "1.8.3" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" + integrity sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI= + +underscore@^1.7.0: + version "1.9.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" + integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== + +underscore@~1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz#8b38b10cacdef63337b8b24e4ff86d45aea529a8" + integrity sha1-izixDKze9jM3uLJOT/htRa6lKag= + +underscore@~1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz#6bbaf0877500d36be34ecaa584e0db9fef035209" + integrity sha1-a7rwh3UA02vjTsqlhODbn+8DUgk= + +unicode-canonical-property-names-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" + integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== + +unicode-match-property-ecmascript@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" + integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== + dependencies: + unicode-canonical-property-names-ecmascript "^1.0.4" + unicode-property-aliases-ecmascript "^1.0.4" + +unicode-match-property-value-ecmascript@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz#5b4b426e08d13a80365e0d657ac7a6c1ec46a277" + integrity sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g== + +unicode-property-aliases-ecmascript@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" + integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== + +union-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4" + integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ= + dependencies: + arr-union "^3.1.0" + get-value "^2.0.6" + is-extendable "^0.1.1" + set-value "^0.4.3" + +uniq@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" + integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= + +uniqs@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02" + integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI= + +unique-filename@^1.1.0, unique-filename@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz#1d69769369ada0583103a1e6ae87681b56573230" + integrity sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ== + dependencies: + unique-slug "^2.0.0" + +unique-slug@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6" + integrity sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg== + dependencies: + imurmurhash "^0.1.4" + +unique-stream@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" + integrity sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs= + +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + +unpipe@1.0.0, unpipe@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= + +unquote@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" + integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ= + +unset-value@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" + integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk= + dependencies: + has-value "^0.3.1" + isobject "^3.0.0" + +upath@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz#3db658600edaeeccbe6db5e684d67ee8c2acd068" + integrity sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q== + +upper-case@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz#f6b4501c2ec4cdd26ba78be7222961de77621598" + integrity sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg= + +uri-js@^4.2.2: + version "4.2.2" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" + integrity sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ== + dependencies: + punycode "^2.1.0" + +urix@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" + integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= + +url-loader@^1.0.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz#b971d191b83af693c5e3fea4064be9e1f2d7f8d8" + integrity sha512-dXHkKmw8FhPqu8asTc1puBfe3TehOCo2+RmOOev5suNCIYBcT626kxiWg1NBVkwc4rO8BGa7gP70W7VXuqHrjg== + dependencies: + loader-utils "^1.1.0" + mime "^2.0.3" + schema-utils "^1.0.0" + +url@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz#021e4d9c7705f21bbf37d03ceb58767402774c64" + integrity sha1-Ah5NnHcF8hu/N9A861h2dAJ3TGQ= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +url@^0.11.0: + version "0.11.0" + resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" + integrity sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE= + dependencies: + punycode "1.3.2" + querystring "0.2.0" + +use@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" + integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== + +user-home@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" + integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA= + +utf-8-validate@^5.0.1: + version "5.0.2" + resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.2.tgz#63cfbccd85dc1f2b66cf7a1d0eebc08ed056bfb3" + integrity sha512-SwV++i2gTD5qh2XqaPzBnNX88N6HdyhQrNNRykvcS0QKvItV9u3vPEJr+X5Hhfb1JC0r0e1alL0iB09rY8+nmw== + dependencies: + node-gyp-build "~3.7.0" + +util-deprecate@^1.0.1, util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +util.promisify@1.0.0, util.promisify@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz#440f7165a459c9a16dc145eb8e72f35687097030" + integrity sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA== + dependencies: + define-properties "^1.1.2" + object.getownpropertydescriptors "^2.0.3" + +util@0.10.3: + version "0.10.3" + resolved "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz#7afb1afe50805246489e3db7fe0ed379336ac0f9" + integrity sha1-evsa/lCAUkZInj23/g7TeTNqwPk= + dependencies: + inherits "2.0.1" + +util@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz#3236733720ec64bb27f6e26f421aaa2e1b588d61" + integrity sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ== + dependencies: + inherits "2.0.3" + +utila@^0.4.0, utila@~0.4: + version "0.4.0" + resolved "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz#8a16a05d445657a3aea5eecc5b12a4fa5379772c" + integrity sha1-ihagXURWV6Oupe7MWxKk+lN5dyw= + +utils-merge@1.0.1, utils-merge@1.x.x: + version "1.0.1" + resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM= + +uuid@3.3.2, uuid@^3.0.0, uuid@^3.1.0, uuid@^3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" + integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== + +v8-compile-cache@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz#00f7494d2ae2b688cfe2899df6ed2c54bef91dbe" + integrity sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w== + +v8flags@^2.0.2, v8flags@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" + integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ= + dependencies: + user-home "^1.1.1" + +validate-npm-package-license@^3.0.1: + version "3.0.4" + resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" + integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== + dependencies: + spdx-correct "^3.0.0" + spdx-expression-parse "^3.0.0" + +validator@^10.4.0: + version "10.11.0" + resolved "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz#003108ea6e9a9874d31ccc9e5006856ccd76b228" + integrity sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw== + +validator@^5.2.0: + version "5.7.0" + resolved "https://registry.yarnpkg.com/validator/-/validator-5.7.0.tgz#7a87a58146b695ac486071141c0c49d67da05e5c" + integrity sha1-eoelgUa2laxIYHEUHAxJ1n2gXlw= + +validator@~9.4.1: + version "9.4.1" + resolved "https://registry.yarnpkg.com/validator/-/validator-9.4.1.tgz#abf466d398b561cd243050112c6ff1de6cc12663" + integrity sha512-YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA== + +vary@~1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= + +vasync@^1.6.4: + version "1.6.4" + resolved "https://registry.yarnpkg.com/vasync/-/vasync-1.6.4.tgz#dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f" + integrity sha1-3+k2Fq0OeugBszKp2Iv8XNyOHR8= + dependencies: + verror "1.6.0" + +velocity-animate@^1.4.0: + version "1.5.2" + resolved "https://registry.yarnpkg.com/velocity-animate/-/velocity-animate-1.5.2.tgz#5a351d75fca2a92756f5c3867548b873f6c32105" + integrity sha512-m6EXlCAMetKztO1ppBhGU1/1MR3IiEevO6ESq6rcrSQ3Q77xYSW13jkfXW88o4xMrkXJhy/U7j4wFR/twMB0Eg== + +vendors@^1.0.0: + version "1.0.3" + resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz#a6467781abd366217c050f8202e7e50cc9eef8c0" + integrity sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw== + +verror@1.10.0, verror@^1.8.1: + version "1.10.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400" + integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA= + dependencies: + assert-plus "^1.0.0" + core-util-is "1.0.2" + extsprintf "^1.2.0" + +verror@1.6.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/verror/-/verror-1.6.0.tgz#7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5" + integrity sha1-fROyex+swuLakEBetepuW90lLqU= + dependencies: + extsprintf "1.2.0" + +vinyl-fs@^0.3.0: + version "0.3.14" + resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" + integrity sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY= + dependencies: + defaults "^1.0.0" + glob-stream "^3.1.5" + glob-watcher "^0.0.6" + graceful-fs "^3.0.0" + mkdirp "^0.5.0" + strip-bom "^1.0.0" + through2 "^0.6.1" + vinyl "^0.4.0" + +vinyl@^0.4.0: + version "0.4.6" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" + integrity sha1-LzVsh6VQolVGHza76ypbqL94SEc= + dependencies: + clone "^0.2.0" + clone-stats "^0.0.1" + +vinyl@^0.5.0: + version "0.5.3" + resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" + integrity sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4= + dependencies: + clone "^1.0.0" + clone-stats "^0.0.1" + replace-ext "0.0.1" + +visibilityjs@^1.2.4: + version "1.2.8" + resolved "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-1.2.8.tgz#4ccdcebdaef0b34fb89219ab8e10e39c3a7cbfd8" + integrity sha512-Y+aL3OUX88b+/VSmkmC2ApuLbf0grzbNLpCfIDSw3BzTU6PqcPsdgIOaw8b+eZoy+DdQqnVN3y/Evow9vQq9Ig== + +viz.js@^1.7.0: + version "1.8.2" + resolved "https://registry.yarnpkg.com/viz.js/-/viz.js-1.8.2.tgz#d9cc04cd99f98ec986bf9054db76a6cbcdc5d97a" + integrity sha512-W+1+N/hdzLpQZEcvz79n2IgUE9pfx6JLdHh3Kh8RGvLL8P1LdJVQmi2OsDcLdY4QVID4OUy+FPelyerX0nJxIQ== + +vm-browserify@0.0.4: + version "0.0.4" + resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73" + integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM= + dependencies: + indexof "0.0.1" + +w3c-hr-time@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045" + integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU= + dependencies: + browser-process-hrtime "^0.1.2" + +watchpack@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00" + integrity sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA== + dependencies: + chokidar "^2.0.2" + graceful-fs "^4.1.2" + neo-async "^2.5.0" + +watchr@~2.4.13: + version "2.4.13" + resolved "https://registry.yarnpkg.com/watchr/-/watchr-2.4.13.tgz#d74847bb4d6f90f61fe2c74f9f68662aa0e07601" + integrity sha1-10hHu01vkPYf4sdPn2hmKqDgdgE= + dependencies: + eachr "^2.0.2" + extendr "^2.1.0" + extract-opts "^2.2.0" + ignorefs "^1.0.0" + safefs "^3.1.2" + scandirectory "^2.5.0" + taskgroup "^4.2.0" + typechecker "^2.0.8" + +weak-map@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.5.tgz#79691584d98607f5070bd3b70a40e6bb22e401eb" + integrity sha1-eWkVhNmGB/UHC9O3CkDmuyLkAes= + +webfontloader@~1.6.x: + version "1.6.28" + resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" + integrity sha1-23hhKSU8tujq5UwvsF+HCvZnW64= + +webidl-conversions@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" + integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== + +webpack-cli@^3.1.0: + version "3.3.2" + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.2.tgz#aed2437b0db0a7faa2ad28484e166a5360014a91" + integrity sha512-FLkobnaJJ+03j5eplxlI0TUxhGCOdfewspIGuvDVtpOlrAuKMFC57K42Ukxqs1tn8947/PM6tP95gQc0DCzRYA== + dependencies: + chalk "^2.4.1" + cross-spawn "^6.0.5" + enhanced-resolve "^4.1.0" + findup-sync "^2.0.0" + global-modules "^1.0.0" + import-local "^2.0.0" + interpret "^1.1.0" + loader-utils "^1.1.0" + supports-color "^5.5.0" + v8-compile-cache "^2.0.2" + yargs "^12.0.5" + +webpack-merge@^4.1.4: + version "4.2.1" + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz#5e923cf802ea2ace4fd5af1d3247368a633489b4" + integrity sha512-4p8WQyS98bUJcCvFMbdGZyZmsKuWjWVnVHnAS3FFg0HDaRVrPbkivx2RYCre8UiemD67RsiFFLfn4JhLAin8Vw== + dependencies: + lodash "^4.17.5" + +webpack-parallel-uglify-plugin@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/webpack-parallel-uglify-plugin/-/webpack-parallel-uglify-plugin-1.1.0.tgz#252a6c796bf79a8047b00de2cf08c23aa9861441" + integrity sha512-HgNqQrXuCvV+S5qCgv9vrJfcldmxQ57KYZNMXVk842XFzunXQm/GbSM/Pwli7taOeiEX8ypFpSTGyMBRKc++rg== + dependencies: + babel-code-frame "^6.26.0" + glob "^7.0.5" + mkdirp "^0.5.1" + pify "^3.0.0" + tmp "0.0.29" + uglify-es "^3.0.26" + uglify-js "^3.0.21" + webpack-sources "^1.0.0" + worker-farm "^1.3.1" + +webpack-sources@^1.0.0, webpack-sources@^1.1.0, webpack-sources@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85" + integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA== + dependencies: + source-list-map "^2.0.0" + source-map "~0.6.1" + +webpack@^4.14.0: + version "4.32.2" + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.32.2.tgz#3639375364a617e84b914ddb2c770aed511e5bc8" + integrity sha512-F+H2Aa1TprTQrpodRAWUMJn7A8MgDx82yQiNvYMaj3d1nv3HetKU0oqEulL9huj8enirKi8KvEXQ3QtuHF89Zg== + dependencies: + "@webassemblyjs/ast" "1.8.5" + "@webassemblyjs/helper-module-context" "1.8.5" + "@webassemblyjs/wasm-edit" "1.8.5" + "@webassemblyjs/wasm-parser" "1.8.5" + acorn "^6.0.5" + acorn-dynamic-import "^4.0.0" + ajv "^6.1.0" + ajv-keywords "^3.1.0" + chrome-trace-event "^1.0.0" + enhanced-resolve "^4.1.0" + eslint-scope "^4.0.0" + json-parse-better-errors "^1.0.2" + loader-runner "^2.3.0" + loader-utils "^1.1.0" + memory-fs "~0.4.1" + micromatch "^3.1.8" + mkdirp "~0.5.0" + neo-async "^2.5.0" + node-libs-browser "^2.0.0" + schema-utils "^1.0.0" + tapable "^1.1.0" + terser-webpack-plugin "^1.1.0" + watchpack "^1.5.0" + webpack-sources "^1.3.0" + +whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: + version "1.0.5" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" + integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== + dependencies: + iconv-lite "0.4.24" + +whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" + integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== + +whatwg-url@^6.4.1: + version "6.5.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" + integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +whatwg-url@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd" + integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ== + dependencies: + lodash.sortby "^4.7.0" + tr46 "^1.0.1" + webidl-conversions "^4.0.2" + +which-module@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" + integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= + +which@^1.2.10, which@^1.2.12, which@^1.2.14, which@^1.2.9: + version "1.3.1" + resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" + integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== + dependencies: + isexe "^2.0.0" + +wide-align@^1.1.0: + version "1.1.3" + resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" + integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== + dependencies: + string-width "^1.0.2 || 2" + +window-size@0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz#5438cd2ea93b202efa3a19fe8887aee7c94f9c9d" + integrity sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0= + +winston-transport@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.3.0.tgz#df68c0c202482c448d9b47313c07304c2d7c2c66" + integrity sha512-B2wPuwUi3vhzn/51Uukcao4dIduEiPOcOt9HJ3QeaXgkJ5Z7UwpBzxS4ZGNHtrxrUvTwemsQiSys0ihOf8Mp1A== + dependencies: + readable-stream "^2.3.6" + triple-beam "^1.2.0" + +winston@^3.1.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/winston/-/winston-3.2.1.tgz#63061377976c73584028be2490a1846055f77f07" + integrity sha512-zU6vgnS9dAWCEKg/QYigd6cgMVVNwyTzKs81XZtTFuRwJOcDdBg7AU0mXVyNbs7O5RH2zdv+BdNZUlx7mXPuOw== + dependencies: + async "^2.6.1" + diagnostics "^1.1.1" + is-stream "^1.1.0" + logform "^2.1.1" + one-time "0.0.4" + readable-stream "^3.1.1" + stack-trace "0.0.x" + triple-beam "^1.3.0" + winston-transport "^4.3.0" + +wkx@0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/wkx/-/wkx-0.2.0.tgz#76c24f16acd0cd8f93cd34aa331e0f7961256e84" + integrity sha1-dsJPFqzQzY+TzTSqMx4PeWElboQ= + +wordwrap@0.0.2: + version "0.0.2" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f" + integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8= + +wordwrap@~0.0.2: + version "0.0.3" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107" + integrity sha1-o9XabNXAvAAI03I0u68b7WMFkQc= + +wordwrap@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" + integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus= + +worker-farm@^1.3.1, worker-farm@^1.5.2, worker-farm@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8" + integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw== + dependencies: + errno "~0.1.7" + +wrap-ansi@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz#d8fc3d284dd05794fe84973caecdd1cf824fdd85" + integrity sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU= + dependencies: + string-width "^1.0.1" + strip-ansi "^3.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= + +write@1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" + integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== + dependencies: + mkdirp "^0.5.1" + +ws@^5.2.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" + integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== + dependencies: + async-limiter "~1.0.0" + +ws@^6.0.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" + integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== + dependencies: + async-limiter "~1.0.0" + +ws@~3.3.1: + version "3.3.3" + resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2" + integrity sha512-nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA== + dependencies: + async-limiter "~1.0.0" + safe-buffer "~5.1.0" + ultron "~1.1.0" + +wurl@^2.5.3: + version "2.5.3" + resolved "https://registry.yarnpkg.com/wurl/-/wurl-2.5.3.tgz#79ff7c4d8c6584cb46d239517ecac334380af7fd" + integrity sha512-LWqZh3ox8gfPwB/xFYFJPnlNOytLtnDtvIDj+iUvD5hxDVWhNa2uhGEQbjyrmolbNFMycqkEnYVXJ7Y72n6h3w== + +x-xss-protection@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.1.0.tgz#4f1898c332deb1e7f2be1280efb3e2c53d69c1a7" + integrity sha512-rx3GzJlgEeZ08MIcDsU2vY2B1QEriUKJTSiNHHUIem6eg9pzVOr2TL3Y4Pd6TMAM5D5azGjcxqI62piITBDHVg== + +xml-crypto@^1.1.4: + version "1.4.0" + resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-1.4.0.tgz#de1cec8cd31cbd689cd90d3d6e8a27d4ae807de7" + integrity sha512-K8FRdRxICVulK4WhiTUcJrRyAIJFPVOqxfurA3x/JlmXBTxy+SkEENF6GeRt7p/rB6WSOUS9g0gXNQw5n+407g== + dependencies: + xmldom "0.1.27" + xpath "0.0.27" + +xml-encryption@^0.11.0: + version "0.11.2" + resolved "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-0.11.2.tgz#c217f5509547e34b500b829f2c0bca85cca73a21" + integrity sha512-jVvES7i5ovdO7N+NjgncA326xYKjhqeAnnvIgRnY7ROLCfFqEDLwP0Sxp/30SHG0AXQV1048T5yinOFyvwGFzg== + dependencies: + async "^2.1.5" + ejs "^2.5.6" + node-forge "^0.7.0" + xmldom "~0.1.15" + xpath "0.0.27" + +xml-name-validator@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" + integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== + +xml2js@0.2.8: + version "0.2.8" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.2.8.tgz#9b81690931631ff09d1957549faf54f4f980b3c2" + integrity sha1-m4FpCTFjH/CdGVdUn69U9PmAs8I= + dependencies: + sax "0.5.x" + +xml2js@0.4.19, xml2js@0.4.x, xml2js@^0.4.15: + version "0.4.19" + resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz#686c20f213209e94abf0d1bcf1efaa291c7827a7" + integrity sha512-esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q== + dependencies: + sax ">=0.6.0" + xmlbuilder "~9.0.1" + +xml@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" + integrity sha1-eLpyAgApxbyHuKgaPPzXS0ovweU= + +xmlbuilder@^11.0.0: + version "11.0.1" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== + +xmlbuilder@^9.0.7, xmlbuilder@~9.0.1: + version "9.0.7" + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" + integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= + +xmldom@0.1.27, xmldom@0.1.x, xmldom@~0.1.15: + version "0.1.27" + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" + integrity sha1-1QH5ezvbQDr4757MIFcxh6rawOk= + +xmlhttprequest-ssl@~1.5.4: + version "1.5.5" + resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e" + integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4= + +xmlhttprequest@>=1.5.0: + version "1.8.0" + resolved "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz#67fe075c5c24fef39f9d65f5f7b7fe75171968fc" + integrity sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw= + +xpath@0.0.27: + version "0.0.27" + resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz#dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92" + integrity sha512-fg03WRxtkCV6ohClePNAECYsmpKKTv5L8y/X3Dn1hQrec3POx2jHZ/0P2qQ6HvsrU1BmeqXcof3NGGueG6LxwQ== + +xregexp@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz#52a63e56ca0b84a7f3a5f3d61872f126ad7a5943" + integrity sha1-UqY+VsoLhKfzpfPWGHLxJq16WUM= + +xss@^1.0.3: + version "1.0.6" + resolved "https://registry.yarnpkg.com/xss/-/xss-1.0.6.tgz#eaf11e9fc476e3ae289944a1009efddd8a124b51" + integrity sha512-6Q9TPBeNyoTRxgZFk5Ggaepk/4vUOYdOsIUYvLehcsIZTFjaavbVnsuAkLA5lIFuug5hw8zxcB9tm01gsjph2A== + dependencies: + commander "^2.9.0" + cssfilter "0.0.10" + +"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" + integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= + +xtraverse@0.1.x: + version "0.1.0" + resolved "https://registry.yarnpkg.com/xtraverse/-/xtraverse-0.1.0.tgz#b741bad018ef78d8a9d2e83ade007b3f7959c732" + integrity sha1-t0G60BjveNip0ug63gB7P3lZxzI= + dependencies: + xmldom "0.1.x" + +y18n@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz#6d15fba884c08679c0d77e88e7759e811e07fa41" + integrity sha1-bRX7qITAhnnA136I53WegR4H+kE= + +"y18n@^3.2.1 || ^4.0.0", y18n@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" + integrity sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w== + +yallist@^2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" + integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= + +yallist@^3.0.0, yallist@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" + integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== + +yargs-parser@^11.1.1: + version "11.1.1" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz#879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4" + integrity sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + +yargs-parser@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz#8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9" + integrity sha1-jQrELxbqVd69MyyvTEA4s+P139k= + dependencies: + camelcase "^4.1.0" + +yargs@^12.0.5: + version "12.0.5" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13" + integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw== + dependencies: + cliui "^4.0.0" + decamelize "^1.2.0" + find-up "^3.0.0" + get-caller-file "^1.0.1" + os-locale "^3.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1 || ^4.0.0" + yargs-parser "^11.1.1" + +yargs@^8.0.1: + version "8.0.2" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz#6299a9055b1cefc969ff7e79c1d918dceb22c360" + integrity sha1-YpmpBVsc78lp/355wdkY3Osiw2A= + dependencies: + camelcase "^4.1.0" + cliui "^3.2.0" + decamelize "^1.1.1" + get-caller-file "^1.0.1" + os-locale "^2.0.0" + read-pkg-up "^2.0.0" + require-directory "^2.1.1" + require-main-filename "^1.0.1" + set-blocking "^2.0.0" + string-width "^2.0.0" + which-module "^2.0.0" + y18n "^3.2.1" + yargs-parser "^7.0.0" + +yargs@~3.10.0: + version "3.10.0" + resolved "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz#f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1" + integrity sha1-9+572FfdfB0tOMDnTvvWgdFDH9E= + dependencies: + camelcase "^1.0.2" + cliui "^2.1.0" + decamelize "^1.0.0" + window-size "0.1.0" + +yauzl@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz#9528f442dab1b2284e58b4379bb194e22e0c4005" + integrity sha1-lSj0QtqxsihOWLQ3m7GU4i4MQAU= + dependencies: + fd-slicer "~1.0.1" + +yeast@0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz#008e06d8094320c372dbc2f8ed76a0ca6c8ac419" + integrity sha1-AI4G2AlDIMNy28L47XagymyKxBk= + +zip-stream@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.2.0.tgz#a8bc45f4c1b49699c6b90198baacaacdbcd4ba04" + integrity sha1-qLxF9MG0lpnGuQGYuqyqzbzUugQ= + dependencies: + archiver-utils "^1.3.0" + compress-commons "^1.2.0" + lodash "^4.8.0" + readable-stream "^2.0.0" diff --git a/pkgs/servers/web-apps/codimd/yarn.nix b/pkgs/servers/web-apps/codimd/yarn.nix new file mode 100644 index 00000000000..f5c34ce04c3 --- /dev/null +++ b/pkgs/servers/web-apps/codimd/yarn.nix @@ -0,0 +1,12109 @@ +{ fetchurl, fetchgit, linkFarm, runCommandNoCC, gnutar }: rec { + offline_cache = linkFarm "offline" packages; + packages = [ + { + name = "_babel_code_frame___code_frame_7.0.0.tgz"; + path = fetchurl { + name = "_babel_code_frame___code_frame_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0.tgz"; + sha1 = "06e2ab19bdb535385559aabb5ba59729482800f8"; + }; + } + { + name = "_babel_highlight___highlight_7.0.0.tgz"; + path = fetchurl { + name = "_babel_highlight___highlight_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz"; + sha1 = "f710c38c8d458e6dd9a201afb637fcb781ce99e4"; + }; + } + { + name = "_passport_next_passport_openid___passport_openid_1.0.0.tgz"; + path = fetchurl { + name = "_passport_next_passport_openid___passport_openid_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@passport-next/passport-openid/-/passport-openid-1.0.0.tgz"; + sha1 = "d3b5e067a9aa1388ed172ab7cc02c39b8634283d"; + }; + } + { + name = "_passport_next_passport_strategy___passport_strategy_1.1.0.tgz"; + path = fetchurl { + name = "_passport_next_passport_strategy___passport_strategy_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/@passport-next/passport-strategy/-/passport-strategy-1.1.0.tgz"; + sha1 = "4c0df069e2ec9262791b9ef1e23320c1d73bdb74"; + }; + } + { + name = "_types_body_parser___body_parser_1.17.0.tgz"; + path = fetchurl { + name = "_types_body_parser___body_parser_1.17.0.tgz"; + url = "https://registry.yarnpkg.com/@types/body-parser/-/body-parser-1.17.0.tgz"; + sha1 = "9f5c9d9bd04bb54be32d5eb9fc0d8c974e6cf58c"; + }; + } + { + name = "_types_connect___connect_3.4.32.tgz"; + path = fetchurl { + name = "_types_connect___connect_3.4.32.tgz"; + url = "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.32.tgz"; + sha1 = "aa0e9616b9435ccad02bc52b5b454ffc2c70ba28"; + }; + } + { + name = "_types_estree___estree_0.0.39.tgz"; + path = fetchurl { + name = "_types_estree___estree_0.0.39.tgz"; + url = "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz"; + sha1 = "e177e699ee1b8c22d23174caaa7422644389509f"; + }; + } + { + name = "_types_express_serve_static_core___express_serve_static_core_4.16.6.tgz"; + path = fetchurl { + name = "_types_express_serve_static_core___express_serve_static_core_4.16.6.tgz"; + url = "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.16.6.tgz"; + sha1 = "66d4b29ece3e2fb6e5aac2232723002426e651bd"; + }; + } + { + name = "_types_express___express_4.16.1.tgz"; + path = fetchurl { + name = "_types_express___express_4.16.1.tgz"; + url = "https://registry.yarnpkg.com/@types/express/-/express-4.16.1.tgz"; + sha1 = "d756bd1a85c34d87eaf44c888bad27ba8a4b7cf0"; + }; + } + { + name = "_types_geojson___geojson_1.0.6.tgz"; + path = fetchurl { + name = "_types_geojson___geojson_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/@types/geojson/-/geojson-1.0.6.tgz"; + sha1 = "3e02972728c69248c2af08d60a48cbb8680fffdf"; + }; + } + { + name = "_types_ldapjs___ldapjs_1.0.4.tgz"; + path = fetchurl { + name = "_types_ldapjs___ldapjs_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.4.tgz"; + sha1 = "06774665035fbb277133d8cde800d18c7993707f"; + }; + } + { + name = "_types_mime___mime_2.0.1.tgz"; + path = fetchurl { + name = "_types_mime___mime_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.1.tgz"; + sha1 = "dc488842312a7f075149312905b5e3c0b054c79d"; + }; + } + { + name = "_types_node___node_12.0.3.tgz"; + path = fetchurl { + name = "_types_node___node_12.0.3.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-12.0.3.tgz"; + sha1 = "5d8d24e0033fc6393efadc85cb59c1f638095c9a"; + }; + } + { + name = "_types_node___node_10.14.7.tgz"; + path = fetchurl { + name = "_types_node___node_10.14.7.tgz"; + url = "https://registry.yarnpkg.com/@types/node/-/node-10.14.7.tgz"; + sha1 = "1854f0a9aa8d2cd6818d607b3d091346c6730362"; + }; + } + { + name = "_types_passport___passport_1.0.0.tgz"; + path = fetchurl { + name = "_types_passport___passport_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/@types/passport/-/passport-1.0.0.tgz"; + sha1 = "747fa127a747a145ff279f3df3e07c425e5ff297"; + }; + } + { + name = "_types_q___q_1.5.2.tgz"; + path = fetchurl { + name = "_types_q___q_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz"; + sha1 = "690a1475b84f2a884fd07cd797c00f5f31356ea8"; + }; + } + { + name = "_types_range_parser___range_parser_1.2.3.tgz"; + path = fetchurl { + name = "_types_range_parser___range_parser_1.2.3.tgz"; + url = "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.3.tgz"; + sha1 = "7ee330ba7caafb98090bece86a5ee44115904c2c"; + }; + } + { + name = "_types_serve_static___serve_static_1.13.2.tgz"; + path = fetchurl { + name = "_types_serve_static___serve_static_1.13.2.tgz"; + url = "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.2.tgz"; + sha1 = "f5ac4d7a6420a99a6a45af4719f4dcd8cd907a48"; + }; + } + { + name = "_webassemblyjs_ast___ast_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_ast___ast_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz"; + sha1 = "51b1c5fe6576a34953bf4b253df9f0d490d9e359"; + }; + } + { + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_floating_point_hex_parser___floating_point_hex_parser_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz"; + sha1 = "1ba926a2923613edce496fd5b02e8ce8a5f49721"; + }; + } + { + name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_api_error___helper_api_error_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz"; + sha1 = "c49dad22f645227c5edb610bdb9697f1aab721f7"; + }; + } + { + name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_buffer___helper_buffer_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz"; + sha1 = "fea93e429863dd5e4338555f42292385a653f204"; + }; + } + { + name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_code_frame___helper_code_frame_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz"; + sha1 = "9a740ff48e3faa3022b1dff54423df9aa293c25e"; + }; + } + { + name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_fsm___helper_fsm_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz"; + sha1 = "ba0b7d3b3f7e4733da6059c9332275d860702452"; + }; + } + { + name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_module_context___helper_module_context_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz"; + sha1 = "def4b9927b0101dc8cbbd8d1edb5b7b9c82eb245"; + }; + } + { + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_wasm_bytecode___helper_wasm_bytecode_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz"; + sha1 = "537a750eddf5c1e932f3744206551c91c1b93e61"; + }; + } + { + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_helper_wasm_section___helper_wasm_section_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz"; + sha1 = "74ca6a6bcbe19e50a3b6b462847e69503e6bfcbf"; + }; + } + { + name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_ieee754___ieee754_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz"; + sha1 = "712329dbef240f36bf57bd2f7b8fb9bf4154421e"; + }; + } + { + name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_leb128___leb128_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/leb128/-/leb128-1.8.5.tgz"; + sha1 = "044edeb34ea679f3e04cd4fd9824d5e35767ae10"; + }; + } + { + name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_utf8___utf8_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/utf8/-/utf8-1.8.5.tgz"; + sha1 = "a8bf3b5d8ffe986c7c1e373ccbdc2a0915f0cedc"; + }; + } + { + name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wasm_edit___wasm_edit_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz"; + sha1 = "962da12aa5acc1c131c81c4232991c82ce56e01a"; + }; + } + { + name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wasm_gen___wasm_gen_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz"; + sha1 = "54840766c2c1002eb64ed1abe720aded714f98bc"; + }; + } + { + name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wasm_opt___wasm_opt_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz"; + sha1 = "b24d9f6ba50394af1349f510afa8ffcb8a63d264"; + }; + } + { + name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wasm_parser___wasm_parser_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz"; + sha1 = "21576f0ec88b91427357b8536383668ef7c66b8d"; + }; + } + { + name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wast_parser___wast_parser_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz"; + sha1 = "e10eecd542d0e7bd394f6827c49f3df6d4eefb8c"; + }; + } + { + name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; + path = fetchurl { + name = "_webassemblyjs_wast_printer___wast_printer_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz"; + sha1 = "114bbc481fd10ca0e23b3560fa812748b0bae5bc"; + }; + } + { + name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; + path = fetchurl { + name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz"; + sha1 = "eef014a3145ae477a1cbc00cd1e552336dceb790"; + }; + } + { + name = "_xtuc_long___long_4.2.2.tgz"; + path = fetchurl { + name = "_xtuc_long___long_4.2.2.tgz"; + url = "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.2.tgz"; + sha1 = "d291c6a4e97989b5c61d9acf396ae4fe133a718d"; + }; + } + { + name = "Idle.js"; + path = + let + repo = fetchgit { + url = "https://github.com/shawnmclean/Idle.js"; + rev = "db9beb3483a460ad638ec947867720f0ed066a62"; + sha256 = "1pa8cqbr758vx1q2ymsmbkp9cz3b7bghxzi90zc4hfq1nzav5w85"; + }; + in + runCommandNoCC "Idle.js" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "JSV___JSV_4.0.2.tgz"; + path = fetchurl { + name = "JSV___JSV_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz"; + sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; + }; + } + { + name = "abab___abab_2.0.0.tgz"; + path = fetchurl { + name = "abab___abab_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz"; + sha1 = "aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"; + }; + } + { + name = "abbrev___abbrev_1.1.1.tgz"; + path = fetchurl { + name = "abbrev___abbrev_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; + }; + } + { + name = "accepts___accepts_1.3.7.tgz"; + path = fetchurl { + name = "accepts___accepts_1.3.7.tgz"; + url = "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz"; + sha1 = "531bc726517a3b2b41f850021c6cc15eaab507cd"; + }; + } + { + name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz"; + path = fetchurl { + name = "acorn_dynamic_import___acorn_dynamic_import_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz"; + sha1 = "482210140582a36b83c3e342e1cfebcaa9240948"; + }; + } + { + name = "acorn_globals___acorn_globals_4.3.2.tgz"; + path = fetchurl { + name = "acorn_globals___acorn_globals_4.3.2.tgz"; + url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.2.tgz"; + sha1 = "4e2c2313a597fd589720395f6354b41cd5ec8006"; + }; + } + { + name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; + path = fetchurl { + name = "acorn_jsx___acorn_jsx_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz"; + sha1 = "32a064fd925429216a09b141102bfdd185fae40e"; + }; + } + { + name = "acorn_walk___acorn_walk_6.1.1.tgz"; + path = fetchurl { + name = "acorn_walk___acorn_walk_6.1.1.tgz"; + url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.1.1.tgz"; + sha1 = "d363b66f5fac5f018ff9c3a1e7b6f8e310cc3913"; + }; + } + { + name = "acorn___acorn_5.7.3.tgz"; + path = fetchurl { + name = "acorn___acorn_5.7.3.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz"; + sha1 = "67aa231bf8812974b85235a96771eb6bd07ea279"; + }; + } + { + name = "acorn___acorn_6.1.1.tgz"; + path = fetchurl { + name = "acorn___acorn_6.1.1.tgz"; + url = "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz"; + sha1 = "7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"; + }; + } + { + name = "after___after_0.8.2.tgz"; + path = fetchurl { + name = "after___after_0.8.2.tgz"; + url = "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz"; + sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; + }; + } + { + name = "ajv_errors___ajv_errors_1.0.1.tgz"; + path = fetchurl { + name = "ajv_errors___ajv_errors_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/ajv-errors/-/ajv-errors-1.0.1.tgz"; + sha1 = "f35986aceb91afadec4102fbd85014950cefa64d"; + }; + } + { + name = "ajv_keywords___ajv_keywords_3.4.0.tgz"; + path = fetchurl { + name = "ajv_keywords___ajv_keywords_3.4.0.tgz"; + url = "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz"; + sha1 = "4b831e7b531415a7cc518cd404e73f6193c6349d"; + }; + } + { + name = "ajv___ajv_6.10.0.tgz"; + path = fetchurl { + name = "ajv___ajv_6.10.0.tgz"; + url = "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz"; + sha1 = "90d0d54439da587cd7e843bfb7045f50bd22bdf1"; + }; + } + { + name = "align_text___align_text_0.1.4.tgz"; + path = fetchurl { + name = "align_text___align_text_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/align-text/-/align-text-0.1.4.tgz"; + sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; + }; + } + { + name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; + path = fetchurl { + name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz"; + sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3"; + }; + } + { + name = "ambi___ambi_2.5.0.tgz"; + path = fetchurl { + name = "ambi___ambi_2.5.0.tgz"; + url = "https://registry.yarnpkg.com/ambi/-/ambi-2.5.0.tgz"; + sha1 = "7c8e372be48891157e7cea01cb6f9143d1f74220"; + }; + } + { + name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; + path = fetchurl { + name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; + sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"; + }; + } + { + name = "ansi_gray___ansi_gray_0.1.1.tgz"; + path = fetchurl { + name = "ansi_gray___ansi_gray_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz"; + sha1 = "2962cf54ec9792c48510a3deb524436861ef7251"; + }; + } + { + name = "ansi_regex___ansi_regex_2.1.1.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz"; + sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; + }; + } + { + name = "ansi_regex___ansi_regex_3.0.0.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; + sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; + }; + } + { + name = "ansi_regex___ansi_regex_4.1.0.tgz"; + path = fetchurl { + name = "ansi_regex___ansi_regex_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz"; + sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997"; + }; + } + { + name = "ansi_styles___ansi_styles_2.2.1.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_2.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz"; + sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; + }; + } + { + name = "ansi_styles___ansi_styles_3.2.1.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz"; + sha1 = "41fbb20243e50b12be0f04b8dedbf07520ce841d"; + }; + } + { + name = "ansi_styles___ansi_styles_1.0.0.tgz"; + path = fetchurl { + name = "ansi_styles___ansi_styles_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-1.0.0.tgz"; + sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; + }; + } + { + name = "ansi_wrap___ansi_wrap_0.1.0.tgz"; + path = fetchurl { + name = "ansi_wrap___ansi_wrap_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz"; + sha1 = "a82250ddb0015e9a27ca82e82ea603bbfa45efaf"; + }; + } + { + name = "anymatch___anymatch_1.3.2.tgz"; + path = fetchurl { + name = "anymatch___anymatch_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-1.3.2.tgz"; + sha1 = "553dcb8f91e3c889845dfdba34c77721b90b9d7a"; + }; + } + { + name = "anymatch___anymatch_2.0.0.tgz"; + path = fetchurl { + name = "anymatch___anymatch_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz"; + sha1 = "bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"; + }; + } + { + name = "aproba___aproba_1.2.0.tgz"; + path = fetchurl { + name = "aproba___aproba_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz"; + sha1 = "6802e6264efd18c790a1b0d517f0f2627bf2c94a"; + }; + } + { + name = "archiver_utils___archiver_utils_1.3.0.tgz"; + path = fetchurl { + name = "archiver_utils___archiver_utils_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/archiver-utils/-/archiver-utils-1.3.0.tgz"; + sha1 = "e50b4c09c70bf3d680e32ff1b7994e9f9d895174"; + }; + } + { + name = "archiver___archiver_2.1.1.tgz"; + path = fetchurl { + name = "archiver___archiver_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/archiver/-/archiver-2.1.1.tgz"; + sha1 = "ff662b4a78201494a3ee544d3a33fe7496509ebc"; + }; + } + { + name = "archy___archy_1.0.0.tgz"; + path = fetchurl { + name = "archy___archy_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz"; + sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; + }; + } + { + name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; + path = fetchurl { + name = "are_we_there_yet___are_we_there_yet_1.1.5.tgz"; + url = "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; + sha1 = "4b35c2944f062a8bfcda66410760350fe9ddfc21"; + }; + } + { + name = "argparse___argparse_1.0.10.tgz"; + path = fetchurl { + name = "argparse___argparse_1.0.10.tgz"; + url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; + sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; + }; + } + { + name = "argparse___argparse_0.1.16.tgz"; + path = fetchurl { + name = "argparse___argparse_0.1.16.tgz"; + url = "https://registry.yarnpkg.com/argparse/-/argparse-0.1.16.tgz"; + sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c"; + }; + } + { + name = "arr_diff___arr_diff_2.0.0.tgz"; + path = fetchurl { + name = "arr_diff___arr_diff_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-2.0.0.tgz"; + sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf"; + }; + } + { + name = "arr_diff___arr_diff_4.0.0.tgz"; + path = fetchurl { + name = "arr_diff___arr_diff_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/arr-diff/-/arr-diff-4.0.0.tgz"; + sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; + }; + } + { + name = "arr_flatten___arr_flatten_1.1.0.tgz"; + path = fetchurl { + name = "arr_flatten___arr_flatten_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/arr-flatten/-/arr-flatten-1.1.0.tgz"; + sha1 = "36048bbff4e7b47e136644316c99669ea5ae91f1"; + }; + } + { + name = "arr_union___arr_union_3.1.0.tgz"; + path = fetchurl { + name = "arr_union___arr_union_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz"; + sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; + }; + } + { + name = "array_differ___array_differ_1.0.0.tgz"; + path = fetchurl { + name = "array_differ___array_differ_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz"; + sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031"; + }; + } + { + name = "array_each___array_each_1.0.1.tgz"; + path = fetchurl { + name = "array_each___array_each_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz"; + sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f"; + }; + } + { + name = "array_equal___array_equal_1.0.0.tgz"; + path = fetchurl { + name = "array_equal___array_equal_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz"; + sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; + }; + } + { + name = "array_flatten___array_flatten_1.1.1.tgz"; + path = fetchurl { + name = "array_flatten___array_flatten_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz"; + sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; + }; + } + { + name = "array_includes___array_includes_3.0.3.tgz"; + path = fetchurl { + name = "array_includes___array_includes_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.0.3.tgz"; + sha1 = "184b48f62d92d7452bb31b323165c7f8bd02266d"; + }; + } + { + name = "array_slice___array_slice_1.1.0.tgz"; + path = fetchurl { + name = "array_slice___array_slice_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz"; + sha1 = "e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4"; + }; + } + { + name = "array_union___array_union_1.0.2.tgz"; + path = fetchurl { + name = "array_union___array_union_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz"; + sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; + }; + } + { + name = "array_uniq___array_uniq_1.0.3.tgz"; + path = fetchurl { + name = "array_uniq___array_uniq_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz"; + sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; + }; + } + { + name = "array_unique___array_unique_0.2.1.tgz"; + path = fetchurl { + name = "array_unique___array_unique_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.2.1.tgz"; + sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; + }; + } + { + name = "array_unique___array_unique_0.3.2.tgz"; + path = fetchurl { + name = "array_unique___array_unique_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz"; + sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; + }; + } + { + name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz"; + path = fetchurl { + name = "arraybuffer.slice___arraybuffer.slice_0.0.7.tgz"; + url = "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; + sha1 = "3bbc4275dd584cc1b10809b89d4e8b63a69e7675"; + }; + } + { + name = "asap___asap_2.0.6.tgz"; + path = fetchurl { + name = "asap___asap_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz"; + sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; + }; + } + { + name = "asn1.js___asn1.js_4.10.1.tgz"; + path = fetchurl { + name = "asn1.js___asn1.js_4.10.1.tgz"; + url = "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz"; + sha1 = "b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0"; + }; + } + { + name = "asn1___asn1_0.2.3.tgz"; + path = fetchurl { + name = "asn1___asn1_0.2.3.tgz"; + url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz"; + sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; + }; + } + { + name = "asn1___asn1_0.2.4.tgz"; + path = fetchurl { + name = "asn1___asn1_0.2.4.tgz"; + url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; + sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; + }; + } + { + name = "assert_plus___assert_plus_0.1.5.tgz"; + path = fetchurl { + name = "assert_plus___assert_plus_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz"; + sha1 = "ee74009413002d84cec7219c6ac811812e723160"; + }; + } + { + name = "assert_plus___assert_plus_1.0.0.tgz"; + path = fetchurl { + name = "assert_plus___assert_plus_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; + }; + } + { + name = "assert___assert_1.5.0.tgz"; + path = fetchurl { + name = "assert___assert_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz"; + sha1 = "55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"; + }; + } + { + name = "assign_symbols___assign_symbols_1.0.0.tgz"; + path = fetchurl { + name = "assign_symbols___assign_symbols_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; + sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; + }; + } + { + name = "astral_regex___astral_regex_1.0.0.tgz"; + path = fetchurl { + name = "astral_regex___astral_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; + sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; + }; + } + { + name = "async_each___async_each_1.0.3.tgz"; + path = fetchurl { + name = "async_each___async_each_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz"; + sha1 = "b727dbf87d7651602f06f4d4ac387f47d91b0cbf"; + }; + } + { + name = "async_limiter___async_limiter_1.0.0.tgz"; + path = fetchurl { + name = "async_limiter___async_limiter_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz"; + sha1 = "78faed8c3d074ab81f22b4e985d79e8738f720f8"; + }; + } + { + name = "async___async_1.5.2.tgz"; + path = fetchurl { + name = "async___async_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz"; + sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; + }; + } + { + name = "async___async_2.6.2.tgz"; + path = fetchurl { + name = "async___async_2.6.2.tgz"; + url = "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz"; + sha1 = "18330ea7e6e313887f5d2f2a904bac6fe4dd5381"; + }; + } + { + name = "asynckit___asynckit_0.4.0.tgz"; + path = fetchurl { + name = "asynckit___asynckit_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz"; + sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; + }; + } + { + name = "atob___atob_2.1.2.tgz"; + path = fetchurl { + name = "atob___atob_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz"; + sha1 = "6d9517eb9e030d2436666651e86bd9f6f13533c9"; + }; + } + { + name = "autolinker___autolinker_0.15.3.tgz"; + path = fetchurl { + name = "autolinker___autolinker_0.15.3.tgz"; + url = "https://registry.yarnpkg.com/autolinker/-/autolinker-0.15.3.tgz"; + sha1 = "342417d8f2f3461b14cf09088d5edf8791dc9832"; + }; + } + { + name = "aws_sdk___aws_sdk_2.465.0.tgz"; + path = fetchurl { + name = "aws_sdk___aws_sdk_2.465.0.tgz"; + url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.465.0.tgz"; + sha1 = "60948a0930473f50bac23311bc48426118e79f12"; + }; + } + { + name = "aws_sign2___aws_sign2_0.7.0.tgz"; + path = fetchurl { + name = "aws_sign2___aws_sign2_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz"; + sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; + }; + } + { + name = "aws4___aws4_1.8.0.tgz"; + path = fetchurl { + name = "aws4___aws4_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz"; + sha1 = "f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"; + }; + } + { + name = "azure_storage___azure_storage_2.10.3.tgz"; + path = fetchurl { + name = "azure_storage___azure_storage_2.10.3.tgz"; + url = "https://registry.yarnpkg.com/azure-storage/-/azure-storage-2.10.3.tgz"; + sha1 = "c5966bf929d87587d78f6847040ea9a4b1d4a50a"; + }; + } + { + name = "babel_cli___babel_cli_6.26.0.tgz"; + path = fetchurl { + name = "babel_cli___babel_cli_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-cli/-/babel-cli-6.26.0.tgz"; + sha1 = "502ab54874d7db88ad00b887a06383ce03d002f1"; + }; + } + { + name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; + path = fetchurl { + name = "babel_code_frame___babel_code_frame_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz"; + sha1 = "63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"; + }; + } + { + name = "babel_core___babel_core_6.26.3.tgz"; + path = fetchurl { + name = "babel_core___babel_core_6.26.3.tgz"; + url = "https://registry.yarnpkg.com/babel-core/-/babel-core-6.26.3.tgz"; + sha1 = "b2e2f09e342d0f0c88e2f02e067794125e75c207"; + }; + } + { + name = "babel_generator___babel_generator_6.26.1.tgz"; + path = fetchurl { + name = "babel_generator___babel_generator_6.26.1.tgz"; + url = "https://registry.yarnpkg.com/babel-generator/-/babel-generator-6.26.1.tgz"; + sha1 = "1844408d3b8f0d35a404ea7ac180f087a601bd90"; + }; + } + { + name = "babel_helper_builder_binary_assignment_operator_visitor___babel_helper_builder_binary_assignment_operator_visitor_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_builder_binary_assignment_operator_visitor___babel_helper_builder_binary_assignment_operator_visitor_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz"; + sha1 = "cce4517ada356f4220bcae8a02c2b346f9a56664"; + }; + } + { + name = "babel_helper_call_delegate___babel_helper_call_delegate_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_call_delegate___babel_helper_call_delegate_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz"; + sha1 = "ece6aacddc76e41c3461f88bfc575bd0daa2df8d"; + }; + } + { + name = "babel_helper_define_map___babel_helper_define_map_6.26.0.tgz"; + path = fetchurl { + name = "babel_helper_define_map___babel_helper_define_map_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz"; + sha1 = "a5f56dab41a25f97ecb498c7ebaca9819f95be5f"; + }; + } + { + name = "babel_helper_explode_assignable_expression___babel_helper_explode_assignable_expression_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_explode_assignable_expression___babel_helper_explode_assignable_expression_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz"; + sha1 = "f25b82cf7dc10433c55f70592d5746400ac22caa"; + }; + } + { + name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_function_name___babel_helper_function_name_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz"; + sha1 = "d3475b8c03ed98242a25b48351ab18399d3580a9"; + }; + } + { + name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_get_function_arity___babel_helper_get_function_arity_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz"; + sha1 = "8f7782aa93407c41d3aa50908f89b031b1b6853d"; + }; + } + { + name = "babel_helper_hoist_variables___babel_helper_hoist_variables_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_hoist_variables___babel_helper_hoist_variables_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz"; + sha1 = "1ecb27689c9d25513eadbc9914a73f5408be7a76"; + }; + } + { + name = "babel_helper_optimise_call_expression___babel_helper_optimise_call_expression_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_optimise_call_expression___babel_helper_optimise_call_expression_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz"; + sha1 = "f7a13427ba9f73f8f4fa993c54a97882d1244257"; + }; + } + { + name = "babel_helper_regex___babel_helper_regex_6.26.0.tgz"; + path = fetchurl { + name = "babel_helper_regex___babel_helper_regex_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz"; + sha1 = "325c59f902f82f24b74faceed0363954f6495e72"; + }; + } + { + name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_remap_async_to_generator___babel_helper_remap_async_to_generator_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz"; + sha1 = "5ec581827ad723fecdd381f1c928390676e4551b"; + }; + } + { + name = "babel_helper_replace_supers___babel_helper_replace_supers_6.24.1.tgz"; + path = fetchurl { + name = "babel_helper_replace_supers___babel_helper_replace_supers_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz"; + sha1 = "bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a"; + }; + } + { + name = "babel_helpers___babel_helpers_6.24.1.tgz"; + path = fetchurl { + name = "babel_helpers___babel_helpers_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-helpers/-/babel-helpers-6.24.1.tgz"; + sha1 = "3471de9caec388e5c850e597e58a26ddf37602b2"; + }; + } + { + name = "babel_loader___babel_loader_7.1.5.tgz"; + path = fetchurl { + name = "babel_loader___babel_loader_7.1.5.tgz"; + url = "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz"; + sha1 = "e3ee0cd7394aa557e013b02d3e492bfd07aa6d68"; + }; + } + { + name = "babel_messages___babel_messages_6.23.0.tgz"; + path = fetchurl { + name = "babel_messages___babel_messages_6.23.0.tgz"; + url = "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz"; + sha1 = "f3cdf4703858035b2a2951c6ec5edf6c62f2630e"; + }; + } + { + name = "babel_plugin_check_es2015_constants___babel_plugin_check_es2015_constants_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_check_es2015_constants___babel_plugin_check_es2015_constants_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz"; + sha1 = "35157b101426fd2ffd3da3f75c7d1e91835bbf8a"; + }; + } + { + name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz"; + path = fetchurl { + name = "babel_plugin_syntax_async_functions___babel_plugin_syntax_async_functions_6.13.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz"; + sha1 = "cad9cad1191b5ad634bf30ae0872391e0647be95"; + }; + } + { + name = "babel_plugin_syntax_exponentiation_operator___babel_plugin_syntax_exponentiation_operator_6.13.0.tgz"; + path = fetchurl { + name = "babel_plugin_syntax_exponentiation_operator___babel_plugin_syntax_exponentiation_operator_6.13.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz"; + sha1 = "9ee7e8337290da95288201a6a57f4170317830de"; + }; + } + { + name = "babel_plugin_syntax_trailing_function_commas___babel_plugin_syntax_trailing_function_commas_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_syntax_trailing_function_commas___babel_plugin_syntax_trailing_function_commas_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz"; + sha1 = "ba0360937f8d06e40180a43fe0d5616fff532cf3"; + }; + } + { + name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_async_to_generator___babel_plugin_transform_async_to_generator_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz"; + sha1 = "6536e378aff6cb1d5517ac0e40eb3e9fc8d08761"; + }; + } + { + name = "babel_plugin_transform_es2015_arrow_functions___babel_plugin_transform_es2015_arrow_functions_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_arrow_functions___babel_plugin_transform_es2015_arrow_functions_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz"; + sha1 = "452692cb711d5f79dc7f85e440ce41b9f244d221"; + }; + } + { + name = "babel_plugin_transform_es2015_block_scoped_functions___babel_plugin_transform_es2015_block_scoped_functions_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_block_scoped_functions___babel_plugin_transform_es2015_block_scoped_functions_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz"; + sha1 = "bbc51b49f964d70cb8d8e0b94e820246ce3a6141"; + }; + } + { + name = "babel_plugin_transform_es2015_block_scoping___babel_plugin_transform_es2015_block_scoping_6.26.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_block_scoping___babel_plugin_transform_es2015_block_scoping_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz"; + sha1 = "d70f5299c1308d05c12f463813b0a09e73b1895f"; + }; + } + { + name = "babel_plugin_transform_es2015_classes___babel_plugin_transform_es2015_classes_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_classes___babel_plugin_transform_es2015_classes_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz"; + sha1 = "5a4c58a50c9c9461e564b4b2a3bfabc97a2584db"; + }; + } + { + name = "babel_plugin_transform_es2015_computed_properties___babel_plugin_transform_es2015_computed_properties_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_computed_properties___babel_plugin_transform_es2015_computed_properties_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz"; + sha1 = "6fe2a8d16895d5634f4cd999b6d3480a308159b3"; + }; + } + { + name = "babel_plugin_transform_es2015_destructuring___babel_plugin_transform_es2015_destructuring_6.23.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_destructuring___babel_plugin_transform_es2015_destructuring_6.23.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz"; + sha1 = "997bb1f1ab967f682d2b0876fe358d60e765c56d"; + }; + } + { + name = "babel_plugin_transform_es2015_duplicate_keys___babel_plugin_transform_es2015_duplicate_keys_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_duplicate_keys___babel_plugin_transform_es2015_duplicate_keys_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz"; + sha1 = "73eb3d310ca969e3ef9ec91c53741a6f1576423e"; + }; + } + { + name = "babel_plugin_transform_es2015_for_of___babel_plugin_transform_es2015_for_of_6.23.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_for_of___babel_plugin_transform_es2015_for_of_6.23.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz"; + sha1 = "f47c95b2b613df1d3ecc2fdb7573623c75248691"; + }; + } + { + name = "babel_plugin_transform_es2015_function_name___babel_plugin_transform_es2015_function_name_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_function_name___babel_plugin_transform_es2015_function_name_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz"; + sha1 = "834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b"; + }; + } + { + name = "babel_plugin_transform_es2015_literals___babel_plugin_transform_es2015_literals_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_literals___babel_plugin_transform_es2015_literals_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz"; + sha1 = "4f54a02d6cd66cf915280019a31d31925377ca2e"; + }; + } + { + name = "babel_plugin_transform_es2015_modules_amd___babel_plugin_transform_es2015_modules_amd_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_modules_amd___babel_plugin_transform_es2015_modules_amd_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz"; + sha1 = "3b3e54017239842d6d19c3011c4bd2f00a00d154"; + }; + } + { + name = "babel_plugin_transform_es2015_modules_commonjs___babel_plugin_transform_es2015_modules_commonjs_6.26.2.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_modules_commonjs___babel_plugin_transform_es2015_modules_commonjs_6.26.2.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz"; + sha1 = "58a793863a9e7ca870bdc5a881117ffac27db6f3"; + }; + } + { + name = "babel_plugin_transform_es2015_modules_systemjs___babel_plugin_transform_es2015_modules_systemjs_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_modules_systemjs___babel_plugin_transform_es2015_modules_systemjs_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz"; + sha1 = "ff89a142b9119a906195f5f106ecf305d9407d23"; + }; + } + { + name = "babel_plugin_transform_es2015_modules_umd___babel_plugin_transform_es2015_modules_umd_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_modules_umd___babel_plugin_transform_es2015_modules_umd_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz"; + sha1 = "ac997e6285cd18ed6176adb607d602344ad38468"; + }; + } + { + name = "babel_plugin_transform_es2015_object_super___babel_plugin_transform_es2015_object_super_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_object_super___babel_plugin_transform_es2015_object_super_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz"; + sha1 = "24cef69ae21cb83a7f8603dad021f572eb278f8d"; + }; + } + { + name = "babel_plugin_transform_es2015_parameters___babel_plugin_transform_es2015_parameters_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_parameters___babel_plugin_transform_es2015_parameters_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz"; + sha1 = "57ac351ab49caf14a97cd13b09f66fdf0a625f2b"; + }; + } + { + name = "babel_plugin_transform_es2015_shorthand_properties___babel_plugin_transform_es2015_shorthand_properties_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_shorthand_properties___babel_plugin_transform_es2015_shorthand_properties_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz"; + sha1 = "24f875d6721c87661bbd99a4622e51f14de38aa0"; + }; + } + { + name = "babel_plugin_transform_es2015_spread___babel_plugin_transform_es2015_spread_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_spread___babel_plugin_transform_es2015_spread_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz"; + sha1 = "d6d68a99f89aedc4536c81a542e8dd9f1746f8d1"; + }; + } + { + name = "babel_plugin_transform_es2015_sticky_regex___babel_plugin_transform_es2015_sticky_regex_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_sticky_regex___babel_plugin_transform_es2015_sticky_regex_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz"; + sha1 = "00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc"; + }; + } + { + name = "babel_plugin_transform_es2015_template_literals___babel_plugin_transform_es2015_template_literals_6.22.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_template_literals___babel_plugin_transform_es2015_template_literals_6.22.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz"; + sha1 = "a84b3450f7e9f8f1f6839d6d687da84bb1236d8d"; + }; + } + { + name = "babel_plugin_transform_es2015_typeof_symbol___babel_plugin_transform_es2015_typeof_symbol_6.23.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_typeof_symbol___babel_plugin_transform_es2015_typeof_symbol_6.23.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz"; + sha1 = "dec09f1cddff94b52ac73d505c84df59dcceb372"; + }; + } + { + name = "babel_plugin_transform_es2015_unicode_regex___babel_plugin_transform_es2015_unicode_regex_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_es2015_unicode_regex___babel_plugin_transform_es2015_unicode_regex_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz"; + sha1 = "d38b12f42ea7323f729387f18a7c5ae1faeb35e9"; + }; + } + { + name = "babel_plugin_transform_exponentiation_operator___babel_plugin_transform_exponentiation_operator_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_exponentiation_operator___babel_plugin_transform_exponentiation_operator_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz"; + sha1 = "2ab0c9c7f3098fa48907772bb813fe41e8de3a0e"; + }; + } + { + name = "babel_plugin_transform_regenerator___babel_plugin_transform_regenerator_6.26.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_regenerator___babel_plugin_transform_regenerator_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz"; + sha1 = "e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f"; + }; + } + { + name = "babel_plugin_transform_runtime___babel_plugin_transform_runtime_6.23.0.tgz"; + path = fetchurl { + name = "babel_plugin_transform_runtime___babel_plugin_transform_runtime_6.23.0.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-runtime/-/babel-plugin-transform-runtime-6.23.0.tgz"; + sha1 = "88490d446502ea9b8e7efb0fe09ec4d99479b1ee"; + }; + } + { + name = "babel_plugin_transform_strict_mode___babel_plugin_transform_strict_mode_6.24.1.tgz"; + path = fetchurl { + name = "babel_plugin_transform_strict_mode___babel_plugin_transform_strict_mode_6.24.1.tgz"; + url = "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz"; + sha1 = "d5faf7aa578a65bbe591cf5edae04a0c67020758"; + }; + } + { + name = "babel_polyfill___babel_polyfill_6.26.0.tgz"; + path = fetchurl { + name = "babel_polyfill___babel_polyfill_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-polyfill/-/babel-polyfill-6.26.0.tgz"; + sha1 = "379937abc67d7895970adc621f284cd966cf2153"; + }; + } + { + name = "babel_preset_env___babel_preset_env_1.7.0.tgz"; + path = fetchurl { + name = "babel_preset_env___babel_preset_env_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz"; + sha1 = "dea79fa4ebeb883cd35dab07e260c1c9c04df77a"; + }; + } + { + name = "babel_register___babel_register_6.26.0.tgz"; + path = fetchurl { + name = "babel_register___babel_register_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-register/-/babel-register-6.26.0.tgz"; + sha1 = "6ed021173e2fcb486d7acb45c6009a856f647071"; + }; + } + { + name = "babel_runtime___babel_runtime_6.26.0.tgz"; + path = fetchurl { + name = "babel_runtime___babel_runtime_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz"; + sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; + }; + } + { + name = "babel_template___babel_template_6.26.0.tgz"; + path = fetchurl { + name = "babel_template___babel_template_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz"; + sha1 = "de03e2d16396b069f46dd9fff8521fb1a0e35e02"; + }; + } + { + name = "babel_traverse___babel_traverse_6.26.0.tgz"; + path = fetchurl { + name = "babel_traverse___babel_traverse_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz"; + sha1 = "46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee"; + }; + } + { + name = "babel_types___babel_types_6.26.0.tgz"; + path = fetchurl { + name = "babel_types___babel_types_6.26.0.tgz"; + url = "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz"; + sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; + }; + } + { + name = "babylon___babylon_6.18.0.tgz"; + path = fetchurl { + name = "babylon___babylon_6.18.0.tgz"; + url = "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz"; + sha1 = "af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"; + }; + } + { + name = "backo2___backo2_1.0.2.tgz"; + path = fetchurl { + name = "backo2___backo2_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/backo2/-/backo2-1.0.2.tgz"; + sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; + }; + } + { + name = "backoff___backoff_2.5.0.tgz"; + path = fetchurl { + name = "backoff___backoff_2.5.0.tgz"; + url = "https://registry.yarnpkg.com/backoff/-/backoff-2.5.0.tgz"; + sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; + }; + } + { + name = "balanced_match___balanced_match_1.0.0.tgz"; + path = fetchurl { + name = "balanced_match___balanced_match_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; + sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; + }; + } + { + name = "base64_arraybuffer___base64_arraybuffer_0.1.5.tgz"; + path = fetchurl { + name = "base64_arraybuffer___base64_arraybuffer_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; + sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; + }; + } + { + name = "base64_js___base64_js_1.3.0.tgz"; + path = fetchurl { + name = "base64_js___base64_js_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz"; + sha1 = "cab1e6118f051095e58b5281aea8c1cd22bfc0e3"; + }; + } + { + name = "base64id___base64id_1.0.0.tgz"; + path = fetchurl { + name = "base64id___base64id_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/base64id/-/base64id-1.0.0.tgz"; + sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"; + }; + } + { + name = "base64url___base64url_3.0.1.tgz"; + path = fetchurl { + name = "base64url___base64url_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/base64url/-/base64url-3.0.1.tgz"; + sha1 = "6399d572e2bc3f90a9a8b22d5dbb0a32d33f788d"; + }; + } + { + name = "base___base_0.11.2.tgz"; + path = fetchurl { + name = "base___base_0.11.2.tgz"; + url = "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz"; + sha1 = "7bde5ced145b6d551a90db87f83c558b4eb48a8f"; + }; + } + { + name = "basic_auth___basic_auth_2.0.1.tgz"; + path = fetchurl { + name = "basic_auth___basic_auth_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/basic-auth/-/basic-auth-2.0.1.tgz"; + sha1 = "b998279bf47ce38344b4f3cf916d4679bbf51e3a"; + }; + } + { + name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; + path = fetchurl { + name = "bcrypt_pbkdf___bcrypt_pbkdf_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; + sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; + }; + } + { + name = "bcryptjs___bcryptjs_2.4.3.tgz"; + path = fetchurl { + name = "bcryptjs___bcryptjs_2.4.3.tgz"; + url = "https://registry.yarnpkg.com/bcryptjs/-/bcryptjs-2.4.3.tgz"; + sha1 = "9ab5627b93e60621ff7cdac5da9733027df1d0cb"; + }; + } + { + name = "beeper___beeper_1.1.1.tgz"; + path = fetchurl { + name = "beeper___beeper_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz"; + sha1 = "e6d5ea8c5dad001304a70b22638447f69cb2f809"; + }; + } + { + name = "better_assert___better_assert_1.0.2.tgz"; + path = fetchurl { + name = "better_assert___better_assert_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/better-assert/-/better-assert-1.0.2.tgz"; + sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; + }; + } + { + name = "big_number___big_number_0.3.1.tgz"; + path = fetchurl { + name = "big_number___big_number_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/big-number/-/big-number-0.3.1.tgz"; + sha1 = "ac73020c0a59bb79eb17c2ce2db77f77d974e013"; + }; + } + { + name = "big.js___big.js_3.2.0.tgz"; + path = fetchurl { + name = "big.js___big.js_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/big.js/-/big.js-3.2.0.tgz"; + sha1 = "a5fc298b81b9e0dca2e458824784b65c52ba588e"; + }; + } + { + name = "big.js___big.js_5.2.2.tgz"; + path = fetchurl { + name = "big.js___big.js_5.2.2.tgz"; + url = "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz"; + sha1 = "65f0af382f578bcdc742bd9c281e9cb2d7768328"; + }; + } + { + name = "bignumber.js___bignumber.js_7.2.1.tgz"; + path = fetchurl { + name = "bignumber.js___bignumber.js_7.2.1.tgz"; + url = "https://registry.yarnpkg.com/bignumber.js/-/bignumber.js-7.2.1.tgz"; + sha1 = "80c048759d826800807c4bfd521e50edbba57a5f"; + }; + } + { + name = "binary_extensions___binary_extensions_1.13.1.tgz"; + path = fetchurl { + name = "binary_extensions___binary_extensions_1.13.1.tgz"; + url = "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.1.tgz"; + sha1 = "598afe54755b2868a5330d2aff9d4ebb53209b65"; + }; + } + { + name = "bl___bl_1.2.2.tgz"; + path = fetchurl { + name = "bl___bl_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/bl/-/bl-1.2.2.tgz"; + sha1 = "a160911717103c07410cef63ef51b397c025af9c"; + }; + } + { + name = "blint___blint_1.0.3.tgz"; + path = fetchurl { + name = "blint___blint_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/blint/-/blint-1.0.3.tgz"; + sha1 = "a58d344ae4bf0ebb917316cfa3a5948e8d92fe10"; + }; + } + { + name = "blob___blob_0.0.5.tgz"; + path = fetchurl { + name = "blob___blob_0.0.5.tgz"; + url = "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz"; + sha1 = "d680eeef25f8cd91ad533f5b01eed48e64caf683"; + }; + } + { + name = "block_stream2___block_stream2_1.1.0.tgz"; + path = fetchurl { + name = "block_stream2___block_stream2_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/block-stream2/-/block-stream2-1.1.0.tgz"; + sha1 = "c738e3a91ba977ebb5e1fef431e13ca11d8639e2"; + }; + } + { + name = "bluebird___bluebird_3.5.5.tgz"; + path = fetchurl { + name = "bluebird___bluebird_3.5.5.tgz"; + url = "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz"; + sha1 = "a8d0afd73251effbbd5fe384a77d73003c17a71f"; + }; + } + { + name = "bn.js___bn.js_4.11.8.tgz"; + path = fetchurl { + name = "bn.js___bn.js_4.11.8.tgz"; + url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz"; + sha1 = "2cde09eb5ee341f484746bb0309b3253b1b1442f"; + }; + } + { + name = "body_parser___body_parser_1.19.0.tgz"; + path = fetchurl { + name = "body_parser___body_parser_1.19.0.tgz"; + url = "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz"; + sha1 = "96b2709e57c9c4e09a6fd66a8fd979844f69f08a"; + }; + } + { + name = "boolbase___boolbase_1.0.0.tgz"; + path = fetchurl { + name = "boolbase___boolbase_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz"; + sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; + }; + } + { + name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz"; + path = fetchurl { + name = "bootstrap_validator___bootstrap_validator_0.11.9.tgz"; + url = "https://registry.yarnpkg.com/bootstrap-validator/-/bootstrap-validator-0.11.9.tgz"; + sha1 = "fb7058eef53623e78f5aa7967026f98f875a9404"; + }; + } + { + name = "bootstrap___bootstrap_3.4.1.tgz"; + path = fetchurl { + name = "bootstrap___bootstrap_3.4.1.tgz"; + url = "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz"; + sha1 = "c3a347d419e289ad11f4033e3c4132b87c081d72"; + }; + } + { + name = "brace_expansion___brace_expansion_1.1.11.tgz"; + path = fetchurl { + name = "brace_expansion___brace_expansion_1.1.11.tgz"; + url = "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz"; + sha1 = "3c7fcbf529d87226f3d2f52b966ff5271eb441dd"; + }; + } + { + name = "braces___braces_1.8.5.tgz"; + path = fetchurl { + name = "braces___braces_1.8.5.tgz"; + url = "https://registry.yarnpkg.com/braces/-/braces-1.8.5.tgz"; + sha1 = "ba77962e12dff969d6b76711e914b737857bf6a7"; + }; + } + { + name = "braces___braces_2.3.2.tgz"; + path = fetchurl { + name = "braces___braces_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz"; + sha1 = "5979fd3f14cd531565e5fa2df1abfff1dfaee729"; + }; + } + { + name = "brorand___brorand_1.1.0.tgz"; + path = fetchurl { + name = "brorand___brorand_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz"; + sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f"; + }; + } + { + name = "browser_process_hrtime___browser_process_hrtime_0.1.3.tgz"; + path = fetchurl { + name = "browser_process_hrtime___browser_process_hrtime_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz"; + sha1 = "616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"; + }; + } + { + name = "browser_stdout___browser_stdout_1.3.1.tgz"; + path = fetchurl { + name = "browser_stdout___browser_stdout_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz"; + sha1 = "baa559ee14ced73452229bad7326467c61fabd60"; + }; + } + { + name = "browserify_aes___browserify_aes_1.2.0.tgz"; + path = fetchurl { + name = "browserify_aes___browserify_aes_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz"; + sha1 = "326734642f403dabc3003209853bb70ad428ef48"; + }; + } + { + name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; + path = fetchurl { + name = "browserify_cipher___browserify_cipher_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/browserify-cipher/-/browserify-cipher-1.0.1.tgz"; + sha1 = "8d6474c1b870bfdabcd3bcfcc1934a10e94f15f0"; + }; + } + { + name = "browserify_des___browserify_des_1.0.2.tgz"; + path = fetchurl { + name = "browserify_des___browserify_des_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/browserify-des/-/browserify-des-1.0.2.tgz"; + sha1 = "3af4f1f59839403572f1c66204375f7a7f703e9c"; + }; + } + { + name = "browserify_mime___browserify_mime_1.2.9.tgz"; + path = fetchurl { + name = "browserify_mime___browserify_mime_1.2.9.tgz"; + url = "https://registry.yarnpkg.com/browserify-mime/-/browserify-mime-1.2.9.tgz"; + sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f"; + }; + } + { + name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; + path = fetchurl { + name = "browserify_rsa___browserify_rsa_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; + sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; + }; + } + { + name = "browserify_sign___browserify_sign_4.0.4.tgz"; + path = fetchurl { + name = "browserify_sign___browserify_sign_4.0.4.tgz"; + url = "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.0.4.tgz"; + sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298"; + }; + } + { + name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; + path = fetchurl { + name = "browserify_zlib___browserify_zlib_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/browserify-zlib/-/browserify-zlib-0.2.0.tgz"; + sha1 = "2869459d9aa3be245fe8fe2ca1f46e2e7f54d73f"; + }; + } + { + name = "browserslist___browserslist_3.2.8.tgz"; + path = fetchurl { + name = "browserslist___browserslist_3.2.8.tgz"; + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz"; + sha1 = "b0005361d6471f0f5952797a76fc985f1f978fc6"; + }; + } + { + name = "browserslist___browserslist_4.6.1.tgz"; + path = fetchurl { + name = "browserslist___browserslist_4.6.1.tgz"; + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.1.tgz"; + sha1 = "ee5059b1aec18cbec9d055d6cb5e24ae50343a9b"; + }; + } + { + name = "buble___buble_0.19.7.tgz"; + path = fetchurl { + name = "buble___buble_0.19.7.tgz"; + url = "https://registry.yarnpkg.com/buble/-/buble-0.19.7.tgz"; + sha1 = "1dfd080ab688101aad5388d3304bc82601a244fd"; + }; + } + { + name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; + path = fetchurl { + name = "buffer_alloc_unsafe___buffer_alloc_unsafe_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; + sha1 = "bd7dc26ae2972d0eda253be061dba992349c19f0"; + }; + } + { + name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; + path = fetchurl { + name = "buffer_alloc___buffer_alloc_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; + sha1 = "890dd90d923a873e08e10e5fd51a57e5b7cce0ec"; + }; + } + { + name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; + path = fetchurl { + name = "buffer_crc32___buffer_crc32_0.2.13.tgz"; + url = "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz"; + sha1 = "0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"; + }; + } + { + name = "buffer_fill___buffer_fill_1.0.0.tgz"; + path = fetchurl { + name = "buffer_fill___buffer_fill_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/buffer-fill/-/buffer-fill-1.0.0.tgz"; + sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; + }; + } + { + name = "buffer_from___buffer_from_1.1.1.tgz"; + path = fetchurl { + name = "buffer_from___buffer_from_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz"; + sha1 = "32713bc028f75c02fdb710d7c7bcec1f2c6070ef"; + }; + } + { + name = "buffer_writer___buffer_writer_1.0.1.tgz"; + path = fetchurl { + name = "buffer_writer___buffer_writer_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/buffer-writer/-/buffer-writer-1.0.1.tgz"; + sha1 = "22a936901e3029afcd7547eb4487ceb697a3bf08"; + }; + } + { + name = "buffer_xor___buffer_xor_1.0.3.tgz"; + path = fetchurl { + name = "buffer_xor___buffer_xor_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/buffer-xor/-/buffer-xor-1.0.3.tgz"; + sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; + }; + } + { + name = "buffer___buffer_4.9.1.tgz"; + path = fetchurl { + name = "buffer___buffer_4.9.1.tgz"; + url = "https://registry.yarnpkg.com/buffer/-/buffer-4.9.1.tgz"; + sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; + }; + } + { + name = "buffer___buffer_5.2.1.tgz"; + path = fetchurl { + name = "buffer___buffer_5.2.1.tgz"; + url = "https://registry.yarnpkg.com/buffer/-/buffer-5.2.1.tgz"; + sha1 = "dd57fa0f109ac59c602479044dca7b8b3d0b71d6"; + }; + } + { + name = "bufferutil___bufferutil_4.0.1.tgz"; + path = fetchurl { + name = "bufferutil___bufferutil_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/bufferutil/-/bufferutil-4.0.1.tgz"; + sha1 = "3a177e8e5819a1243fe16b63a199951a7ad8d4a7"; + }; + } + { + name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; + path = fetchurl { + name = "builtin_status_codes___builtin_status_codes_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; + sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; + }; + } + { + name = "bunyan___bunyan_1.8.12.tgz"; + path = fetchurl { + name = "bunyan___bunyan_1.8.12.tgz"; + url = "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.12.tgz"; + sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; + }; + } + { + name = "bytes___bytes_3.0.0.tgz"; + path = fetchurl { + name = "bytes___bytes_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz"; + sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; + }; + } + { + name = "bytes___bytes_3.1.0.tgz"; + path = fetchurl { + name = "bytes___bytes_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz"; + sha1 = "f6cf7933a360e0588fa9fde85651cdc7f805d1f6"; + }; + } + { + name = "cacache___cacache_10.0.4.tgz"; + path = fetchurl { + name = "cacache___cacache_10.0.4.tgz"; + url = "https://registry.yarnpkg.com/cacache/-/cacache-10.0.4.tgz"; + sha1 = "6452367999eff9d4188aefd9a14e9d7c6a263460"; + }; + } + { + name = "cacache___cacache_11.3.2.tgz"; + path = fetchurl { + name = "cacache___cacache_11.3.2.tgz"; + url = "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz"; + sha1 = "2d81e308e3d258ca38125b676b98b2ac9ce69bfa"; + }; + } + { + name = "cache_base___cache_base_1.0.1.tgz"; + path = fetchurl { + name = "cache_base___cache_base_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/cache-base/-/cache-base-1.0.1.tgz"; + sha1 = "0a7f46416831c8b662ee36fe4e7c59d76f666ab2"; + }; + } + { + name = "caller_callsite___caller_callsite_2.0.0.tgz"; + path = fetchurl { + name = "caller_callsite___caller_callsite_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/caller-callsite/-/caller-callsite-2.0.0.tgz"; + sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; + }; + } + { + name = "caller_path___caller_path_2.0.0.tgz"; + path = fetchurl { + name = "caller_path___caller_path_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz"; + sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; + }; + } + { + name = "callsite___callsite_1.0.0.tgz"; + path = fetchurl { + name = "callsite___callsite_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/callsite/-/callsite-1.0.0.tgz"; + sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; + }; + } + { + name = "callsites___callsites_2.0.0.tgz"; + path = fetchurl { + name = "callsites___callsites_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz"; + sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; + }; + } + { + name = "callsites___callsites_3.1.0.tgz"; + path = fetchurl { + name = "callsites___callsites_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz"; + sha1 = "b3630abd8943432f54b3f0519238e33cd7df2f73"; + }; + } + { + name = "camel_case___camel_case_3.0.0.tgz"; + path = fetchurl { + name = "camel_case___camel_case_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/camel-case/-/camel-case-3.0.0.tgz"; + sha1 = "ca3c3688a4e9cf3a4cda777dc4dcbc713249cf73"; + }; + } + { + name = "camelcase___camelcase_1.2.1.tgz"; + path = fetchurl { + name = "camelcase___camelcase_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz"; + sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; + }; + } + { + name = "camelcase___camelcase_4.1.0.tgz"; + path = fetchurl { + name = "camelcase___camelcase_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz"; + sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; + }; + } + { + name = "camelcase___camelcase_5.3.1.tgz"; + path = fetchurl { + name = "camelcase___camelcase_5.3.1.tgz"; + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz"; + sha1 = "e3c9b31569e106811df242f715725a1f4c494320"; + }; + } + { + name = "camelize___camelize_1.0.0.tgz"; + path = fetchurl { + name = "camelize___camelize_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz"; + sha1 = "164a5483e630fa4321e5af07020e531831b2609b"; + }; + } + { + name = "caniuse_api___caniuse_api_3.0.0.tgz"; + path = fetchurl { + name = "caniuse_api___caniuse_api_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz"; + sha1 = "5e4d90e2274961d46291997df599e3ed008ee4c0"; + }; + } + { + name = "caniuse_lite___caniuse_lite_1.0.30000971.tgz"; + path = fetchurl { + name = "caniuse_lite___caniuse_lite_1.0.30000971.tgz"; + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000971.tgz"; + sha1 = "d1000e4546486a6977756547352bc96a4cfd2b13"; + }; + } + { + name = "caseless___caseless_0.12.0.tgz"; + path = fetchurl { + name = "caseless___caseless_0.12.0.tgz"; + url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; + sha1 = "1b681c21ff84033c826543090689420d187151dc"; + }; + } + { + name = "center_align___center_align_0.1.3.tgz"; + path = fetchurl { + name = "center_align___center_align_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/center-align/-/center-align-0.1.3.tgz"; + sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; + }; + } + { + name = "chalk___chalk_1.1.3.tgz"; + path = fetchurl { + name = "chalk___chalk_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz"; + sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; + }; + } + { + name = "chalk___chalk_2.4.2.tgz"; + path = fetchurl { + name = "chalk___chalk_2.4.2.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz"; + sha1 = "cd42541677a54333cf541a49108c1432b44c9424"; + }; + } + { + name = "chalk___chalk_0.4.0.tgz"; + path = fetchurl { + name = "chalk___chalk_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz"; + sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; + }; + } + { + name = "chance___chance_1.0.18.tgz"; + path = fetchurl { + name = "chance___chance_1.0.18.tgz"; + url = "https://registry.yarnpkg.com/chance/-/chance-1.0.18.tgz"; + sha1 = "79788fe6fca4c338bf404321c347eecc80f969ee"; + }; + } + { + name = "chardet___chardet_0.7.0.tgz"; + path = fetchurl { + name = "chardet___chardet_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; + sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; + }; + } + { + name = "cheerio___cheerio_0.22.0.tgz"; + path = fetchurl { + name = "cheerio___cheerio_0.22.0.tgz"; + url = "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz"; + sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; + }; + } + { + name = "chokidar___chokidar_1.7.0.tgz"; + path = fetchurl { + name = "chokidar___chokidar_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz"; + sha1 = "798e689778151c8076b4b360e5edd28cda2bb468"; + }; + } + { + name = "chokidar___chokidar_2.1.6.tgz"; + path = fetchurl { + name = "chokidar___chokidar_2.1.6.tgz"; + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz"; + sha1 = "b6cad653a929e244ce8a834244164d241fa954c5"; + }; + } + { + name = "chownr___chownr_1.1.1.tgz"; + path = fetchurl { + name = "chownr___chownr_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz"; + sha1 = "54726b8b8fff4df053c42187e801fb4412df1494"; + }; + } + { + name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; + path = fetchurl { + name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz"; + sha1 = "234090ee97c7d4ad1a2c4beae27505deffc608a4"; + }; + } + { + name = "cipher_base___cipher_base_1.0.4.tgz"; + path = fetchurl { + name = "cipher_base___cipher_base_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/cipher-base/-/cipher-base-1.0.4.tgz"; + sha1 = "8760e4ecc272f4c363532f926d874aae2c1397de"; + }; + } + { + name = "class_utils___class_utils_0.3.6.tgz"; + path = fetchurl { + name = "class_utils___class_utils_0.3.6.tgz"; + url = "https://registry.yarnpkg.com/class-utils/-/class-utils-0.3.6.tgz"; + sha1 = "f93369ae8b9a7ce02fd41faad0ca83033190c463"; + }; + } + { + name = "clean_css___clean_css_4.2.1.tgz"; + path = fetchurl { + name = "clean_css___clean_css_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/clean-css/-/clean-css-4.2.1.tgz"; + sha1 = "2d411ef76b8569b6d0c84068dabe85b0aa5e5c17"; + }; + } + { + name = "cli_color___cli_color_1.2.0.tgz"; + path = fetchurl { + name = "cli_color___cli_color_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/cli-color/-/cli-color-1.2.0.tgz"; + sha1 = "3a5ae74fd76b6267af666e69e2afbbd01def34d1"; + }; + } + { + name = "cli_cursor___cli_cursor_2.1.0.tgz"; + path = fetchurl { + name = "cli_cursor___cli_cursor_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; + sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; + }; + } + { + name = "cli_width___cli_width_2.2.0.tgz"; + path = fetchurl { + name = "cli_width___cli_width_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz"; + sha1 = "ff19ede8a9a5e579324147b0c11f0fbcbabed639"; + }; + } + { + name = "clipboard___clipboard_2.0.4.tgz"; + path = fetchurl { + name = "clipboard___clipboard_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz"; + sha1 = "836dafd66cf0fea5d71ce5d5b0bf6e958009112d"; + }; + } + { + name = "cliui___cliui_2.1.0.tgz"; + path = fetchurl { + name = "cliui___cliui_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz"; + sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; + }; + } + { + name = "cliui___cliui_3.2.0.tgz"; + path = fetchurl { + name = "cliui___cliui_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/cliui/-/cliui-3.2.0.tgz"; + sha1 = "120601537a916d29940f934da3b48d585a39213d"; + }; + } + { + name = "cliui___cliui_4.1.0.tgz"; + path = fetchurl { + name = "cliui___cliui_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/cliui/-/cliui-4.1.0.tgz"; + sha1 = "348422dbe82d800b3022eef4f6ac10bf2e4d1b49"; + }; + } + { + name = "clone_stats___clone_stats_0.0.1.tgz"; + path = fetchurl { + name = "clone_stats___clone_stats_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz"; + sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1"; + }; + } + { + name = "clone___clone_0.2.0.tgz"; + path = fetchurl { + name = "clone___clone_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz"; + sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; + }; + } + { + name = "clone___clone_1.0.4.tgz"; + path = fetchurl { + name = "clone___clone_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz"; + sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e"; + }; + } + { + name = "clone___clone_2.1.2.tgz"; + path = fetchurl { + name = "clone___clone_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz"; + sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f"; + }; + } + { + name = "coa___coa_2.0.2.tgz"; + path = fetchurl { + name = "coa___coa_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz"; + sha1 = "43f6c21151b4ef2bf57187db0d73de229e3e7ec3"; + }; + } + { + name = "code_point_at___code_point_at_1.1.0.tgz"; + path = fetchurl { + name = "code_point_at___code_point_at_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz"; + sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; + }; + } + { + name = "CodeMirror.git"; + path = + let + repo = fetchgit { + url = "https://github.com/hackmdio/CodeMirror.git"; + rev = "8ce8e8820da8f51d852bda1e0b9a5394eb8ea8d3"; + sha256 = "16qr61h1rrl6m627r29dvj991yvqvzja12sazp439mnz6px5zaj4"; + }; + in + runCommandNoCC "CodeMirror.git" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "collection_visit___collection_visit_1.0.0.tgz"; + path = fetchurl { + name = "collection_visit___collection_visit_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz"; + sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; + }; + } + { + name = "color_convert___color_convert_1.9.3.tgz"; + path = fetchurl { + name = "color_convert___color_convert_1.9.3.tgz"; + url = "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz"; + sha1 = "bb71850690e1f136567de629d2d5471deda4c1e8"; + }; + } + { + name = "color_name___color_name_1.1.3.tgz"; + path = fetchurl { + name = "color_name___color_name_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz"; + sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; + }; + } + { + name = "color_name___color_name_1.1.4.tgz"; + path = fetchurl { + name = "color_name___color_name_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz"; + sha1 = "c2a09a87acbde69543de6f63fa3995c826c536a2"; + }; + } + { + name = "color_string___color_string_1.5.3.tgz"; + path = fetchurl { + name = "color_string___color_string_1.5.3.tgz"; + url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.3.tgz"; + sha1 = "c9bbc5f01b58b5492f3d6857459cb6590ce204cc"; + }; + } + { + name = "color_support___color_support_1.1.3.tgz"; + path = fetchurl { + name = "color_support___color_support_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz"; + sha1 = "93834379a1cc9a0c61f82f52f0d04322251bd5a2"; + }; + } + { + name = "color___color_3.0.0.tgz"; + path = fetchurl { + name = "color___color_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/color/-/color-3.0.0.tgz"; + sha1 = "d920b4328d534a3ac8295d68f7bd4ba6c427be9a"; + }; + } + { + name = "color___color_3.1.1.tgz"; + path = fetchurl { + name = "color___color_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/color/-/color-3.1.1.tgz"; + sha1 = "7abf5c0d38e89378284e873c207ae2172dcc8a61"; + }; + } + { + name = "colornames___colornames_1.1.1.tgz"; + path = fetchurl { + name = "colornames___colornames_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz"; + sha1 = "f8889030685c7c4ff9e2a559f5077eb76a816f96"; + }; + } + { + name = "colors___colors_1.3.3.tgz"; + path = fetchurl { + name = "colors___colors_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/colors/-/colors-1.3.3.tgz"; + sha1 = "39e005d546afe01e01f9c4ca8fa50f686a01205d"; + }; + } + { + name = "colorspace___colorspace_1.1.2.tgz"; + path = fetchurl { + name = "colorspace___colorspace_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/colorspace/-/colorspace-1.1.2.tgz"; + sha1 = "e0128950d082b86a2168580796a0aa5d6c68d8c5"; + }; + } + { + name = "combined_stream___combined_stream_1.0.8.tgz"; + path = fetchurl { + name = "combined_stream___combined_stream_1.0.8.tgz"; + url = "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz"; + sha1 = "c3d45a8b34fd730631a110a8a2520682b31d5a7f"; + }; + } + { + name = "commander___commander_2.15.1.tgz"; + path = fetchurl { + name = "commander___commander_2.15.1.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz"; + sha1 = "df46e867d0fc2aec66a34662b406a9ccafff5b0f"; + }; + } + { + name = "commander___commander_2.17.1.tgz"; + path = fetchurl { + name = "commander___commander_2.17.1.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.17.1.tgz"; + sha1 = "bd77ab7de6de94205ceacc72f1716d29f20a77bf"; + }; + } + { + name = "commander___commander_2.20.0.tgz"; + path = fetchurl { + name = "commander___commander_2.20.0.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz"; + sha1 = "d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"; + }; + } + { + name = "commander___commander_2.13.0.tgz"; + path = fetchurl { + name = "commander___commander_2.13.0.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz"; + sha1 = "6964bca67685df7c1f1430c584f07d7597885b9c"; + }; + } + { + name = "commander___commander_2.19.0.tgz"; + path = fetchurl { + name = "commander___commander_2.19.0.tgz"; + url = "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz"; + sha1 = "f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"; + }; + } + { + name = "commondir___commondir_1.0.1.tgz"; + path = fetchurl { + name = "commondir___commondir_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz"; + sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; + }; + } + { + name = "component_bind___component_bind_1.0.0.tgz"; + path = fetchurl { + name = "component_bind___component_bind_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz"; + sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; + }; + } + { + name = "component_emitter___component_emitter_1.2.1.tgz"; + path = fetchurl { + name = "component_emitter___component_emitter_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz"; + sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; + }; + } + { + name = "component_emitter___component_emitter_1.3.0.tgz"; + path = fetchurl { + name = "component_emitter___component_emitter_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz"; + sha1 = "16e4070fba8ae29b679f2215853ee181ab2eabc0"; + }; + } + { + name = "component_inherit___component_inherit_0.0.3.tgz"; + path = fetchurl { + name = "component_inherit___component_inherit_0.0.3.tgz"; + url = "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz"; + sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; + }; + } + { + name = "compress_commons___compress_commons_1.2.2.tgz"; + path = fetchurl { + name = "compress_commons___compress_commons_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-1.2.2.tgz"; + sha1 = "524a9f10903f3a813389b0225d27c48bb751890f"; + }; + } + { + name = "compressible___compressible_2.0.17.tgz"; + path = fetchurl { + name = "compressible___compressible_2.0.17.tgz"; + url = "https://registry.yarnpkg.com/compressible/-/compressible-2.0.17.tgz"; + sha1 = "6e8c108a16ad58384a977f3a482ca20bff2f38c1"; + }; + } + { + name = "compression___compression_1.7.4.tgz"; + path = fetchurl { + name = "compression___compression_1.7.4.tgz"; + url = "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz"; + sha1 = "95523eff170ca57c29a0ca41e6fe131f41e5bb8f"; + }; + } + { + name = "concat_map___concat_map_0.0.1.tgz"; + path = fetchurl { + name = "concat_map___concat_map_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz"; + sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; + }; + } + { + name = "concat_stream___concat_stream_1.6.2.tgz"; + path = fetchurl { + name = "concat_stream___concat_stream_1.6.2.tgz"; + url = "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz"; + sha1 = "904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"; + }; + } + { + name = "config_chain___config_chain_1.1.12.tgz"; + path = fetchurl { + name = "config_chain___config_chain_1.1.12.tgz"; + url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz"; + sha1 = "0fde8d091200eb5e808caf25fe618c02f48e4efa"; + }; + } + { + name = "connect_flash___connect_flash_0.1.1.tgz"; + path = fetchurl { + name = "connect_flash___connect_flash_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz"; + sha1 = "d8630f26d95a7f851f9956b1e8cc6732f3b6aa30"; + }; + } + { + name = "connect_session_sequelize___connect_session_sequelize_4.1.0.tgz"; + path = fetchurl { + name = "connect_session_sequelize___connect_session_sequelize_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-4.1.0.tgz"; + sha1 = "d402749c3bebd79209192c164c090742b3fe2011"; + }; + } + { + name = "console_browserify___console_browserify_1.1.0.tgz"; + path = fetchurl { + name = "console_browserify___console_browserify_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz"; + sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; + }; + } + { + name = "console_control_strings___console_control_strings_1.1.0.tgz"; + path = fetchurl { + name = "console_control_strings___console_control_strings_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz"; + sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; + }; + } + { + name = "constants_browserify___constants_browserify_1.0.0.tgz"; + path = fetchurl { + name = "constants_browserify___constants_browserify_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/constants-browserify/-/constants-browserify-1.0.0.tgz"; + sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; + }; + } + { + name = "contains_path___contains_path_0.1.0.tgz"; + path = fetchurl { + name = "contains_path___contains_path_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz"; + sha1 = "fe8cf184ff6670b6baef01a9d4861a5cbec4120a"; + }; + } + { + name = "content_disposition___content_disposition_0.5.3.tgz"; + path = fetchurl { + name = "content_disposition___content_disposition_0.5.3.tgz"; + url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; + sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; + }; + } + { + name = "content_security_policy_builder___content_security_policy_builder_2.0.0.tgz"; + path = fetchurl { + name = "content_security_policy_builder___content_security_policy_builder_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.0.0.tgz"; + sha1 = "8749a1d542fcbe82237281ea9f716ce68b394dd2"; + }; + } + { + name = "content_type___content_type_1.0.4.tgz"; + path = fetchurl { + name = "content_type___content_type_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz"; + sha1 = "e138cc75e040c727b1966fe5e5f8c9aee256fe3b"; + }; + } + { + name = "convert_source_map___convert_source_map_1.6.0.tgz"; + path = fetchurl { + name = "convert_source_map___convert_source_map_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz"; + sha1 = "51b537a8c43e0f04dec1993bffcdd504e758ac20"; + }; + } + { + name = "cookie_parser___cookie_parser_1.4.3.tgz"; + path = fetchurl { + name = "cookie_parser___cookie_parser_1.4.3.tgz"; + url = "https://registry.yarnpkg.com/cookie-parser/-/cookie-parser-1.4.3.tgz"; + sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5"; + }; + } + { + name = "cookie_signature___cookie_signature_1.0.6.tgz"; + path = fetchurl { + name = "cookie_signature___cookie_signature_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz"; + sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; + }; + } + { + name = "cookie___cookie_0.3.1.tgz"; + path = fetchurl { + name = "cookie___cookie_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz"; + sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; + }; + } + { + name = "cookie___cookie_0.4.0.tgz"; + path = fetchurl { + name = "cookie___cookie_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz"; + sha1 = "beb437e7022b3b6d49019d088665303ebe9c14ba"; + }; + } + { + name = "cookiejar___cookiejar_2.0.6.tgz"; + path = fetchurl { + name = "cookiejar___cookiejar_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/cookiejar/-/cookiejar-2.0.6.tgz"; + sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe"; + }; + } + { + name = "copy_concurrently___copy_concurrently_1.0.5.tgz"; + path = fetchurl { + name = "copy_concurrently___copy_concurrently_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz"; + sha1 = "92297398cae34937fcafd6ec8139c18051f0b5e0"; + }; + } + { + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; + path = fetchurl { + name = "copy_descriptor___copy_descriptor_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; + sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; + }; + } + { + name = "copy_webpack_plugin___copy_webpack_plugin_4.6.0.tgz"; + path = fetchurl { + name = "copy_webpack_plugin___copy_webpack_plugin_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-4.6.0.tgz"; + sha1 = "e7f40dd8a68477d405dd1b7a854aae324b158bae"; + }; + } + { + name = "core_js___core_js_2.6.9.tgz"; + path = fetchurl { + name = "core_js___core_js_2.6.9.tgz"; + url = "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz"; + sha1 = "6b4b214620c834152e179323727fc19741b084f2"; + }; + } + { + name = "core_util_is___core_util_is_1.0.2.tgz"; + path = fetchurl { + name = "core_util_is___core_util_is_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz"; + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; + }; + } + { + name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; + path = fetchurl { + name = "cosmiconfig___cosmiconfig_5.2.1.tgz"; + url = "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz"; + sha1 = "040f726809c591e77a17c0a3626ca45b4f168b1a"; + }; + } + { + name = "crc32_stream___crc32_stream_2.0.0.tgz"; + path = fetchurl { + name = "crc32_stream___crc32_stream_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-2.0.0.tgz"; + sha1 = "e3cdd3b4df3168dd74e3de3fbbcb7b297fe908f4"; + }; + } + { + name = "crc___crc_3.8.0.tgz"; + path = fetchurl { + name = "crc___crc_3.8.0.tgz"; + url = "https://registry.yarnpkg.com/crc/-/crc-3.8.0.tgz"; + sha1 = "ad60269c2c856f8c299e2c4cc0de4556914056c6"; + }; + } + { + name = "create_ecdh___create_ecdh_4.0.3.tgz"; + path = fetchurl { + name = "create_ecdh___create_ecdh_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/create-ecdh/-/create-ecdh-4.0.3.tgz"; + sha1 = "c9111b6f33045c4697f144787f9254cdc77c45ff"; + }; + } + { + name = "create_hash___create_hash_1.2.0.tgz"; + path = fetchurl { + name = "create_hash___create_hash_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/create-hash/-/create-hash-1.2.0.tgz"; + sha1 = "889078af11a63756bcfb59bd221996be3a9ef196"; + }; + } + { + name = "create_hmac___create_hmac_1.1.7.tgz"; + path = fetchurl { + name = "create_hmac___create_hmac_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/create-hmac/-/create-hmac-1.1.7.tgz"; + sha1 = "69170c78b3ab957147b2b8b04572e47ead2243ff"; + }; + } + { + name = "cross_spawn___cross_spawn_5.1.0.tgz"; + path = fetchurl { + name = "cross_spawn___cross_spawn_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz"; + sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; + }; + } + { + name = "cross_spawn___cross_spawn_6.0.5.tgz"; + path = fetchurl { + name = "cross_spawn___cross_spawn_6.0.5.tgz"; + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; + sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; + }; + } + { + name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; + path = fetchurl { + name = "crypto_browserify___crypto_browserify_3.12.0.tgz"; + url = "https://registry.yarnpkg.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz"; + sha1 = "396cf9f3137f03e4b8e532c58f698254e00f80ec"; + }; + } + { + name = "csextends___csextends_1.2.0.tgz"; + path = fetchurl { + name = "csextends___csextends_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/csextends/-/csextends-1.2.0.tgz"; + sha1 = "6374b210984b54d4495f29c99d3dd069b80543e5"; + }; + } + { + name = "css_color_names___css_color_names_0.0.4.tgz"; + path = fetchurl { + name = "css_color_names___css_color_names_0.0.4.tgz"; + url = "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz"; + sha1 = "808adc2e79cf84738069b646cb20ec27beb629e0"; + }; + } + { + name = "css_declaration_sorter___css_declaration_sorter_4.0.1.tgz"; + path = fetchurl { + name = "css_declaration_sorter___css_declaration_sorter_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz"; + sha1 = "c198940f63a76d7e36c1e71018b001721054cb22"; + }; + } + { + name = "css_loader___css_loader_1.0.1.tgz"; + path = fetchurl { + name = "css_loader___css_loader_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/css-loader/-/css-loader-1.0.1.tgz"; + sha1 = "6885bb5233b35ec47b006057da01cc640b6b79fe"; + }; + } + { + name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; + path = fetchurl { + name = "css_select_base_adapter___css_select_base_adapter_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz"; + sha1 = "3b2ff4972cc362ab88561507a95408a1432135d7"; + }; + } + { + name = "css_select___css_select_1.2.0.tgz"; + path = fetchurl { + name = "css_select___css_select_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz"; + sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858"; + }; + } + { + name = "css_select___css_select_2.0.2.tgz"; + path = fetchurl { + name = "css_select___css_select_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz"; + sha1 = "ab4386cec9e1f668855564b17c3733b43b2a5ede"; + }; + } + { + name = "css_selector_tokenizer___css_selector_tokenizer_0.7.1.tgz"; + path = fetchurl { + name = "css_selector_tokenizer___css_selector_tokenizer_0.7.1.tgz"; + url = "https://registry.yarnpkg.com/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz"; + sha1 = "a177271a8bca5019172f4f891fc6eed9cbf68d5d"; + }; + } + { + name = "css_tree___css_tree_1.0.0_alpha.28.tgz"; + path = fetchurl { + name = "css_tree___css_tree_1.0.0_alpha.28.tgz"; + url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz"; + sha1 = "8e8968190d886c9477bc8d61e96f61af3f7ffa7f"; + }; + } + { + name = "css_tree___css_tree_1.0.0_alpha.29.tgz"; + path = fetchurl { + name = "css_tree___css_tree_1.0.0_alpha.29.tgz"; + url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.29.tgz"; + sha1 = "3fa9d4ef3142cbd1c301e7664c1f352bd82f5a39"; + }; + } + { + name = "css_unit_converter___css_unit_converter_1.1.1.tgz"; + path = fetchurl { + name = "css_unit_converter___css_unit_converter_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz"; + sha1 = "d9b9281adcfd8ced935bdbaba83786897f64e996"; + }; + } + { + name = "css_url_regex___css_url_regex_1.1.0.tgz"; + path = fetchurl { + name = "css_url_regex___css_url_regex_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz"; + sha1 = "83834230cc9f74c457de59eebd1543feeb83b7ec"; + }; + } + { + name = "css_what___css_what_2.1.3.tgz"; + path = fetchurl { + name = "css_what___css_what_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz"; + sha1 = "a6d7604573365fe74686c3f311c56513d88285f2"; + }; + } + { + name = "cssesc___cssesc_0.1.0.tgz"; + path = fetchurl { + name = "cssesc___cssesc_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/cssesc/-/cssesc-0.1.0.tgz"; + sha1 = "c814903e45623371a0477b40109aaafbeeaddbb4"; + }; + } + { + name = "cssesc___cssesc_2.0.0.tgz"; + path = fetchurl { + name = "cssesc___cssesc_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz"; + sha1 = "3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"; + }; + } + { + name = "cssfilter___cssfilter_0.0.10.tgz"; + path = fetchurl { + name = "cssfilter___cssfilter_0.0.10.tgz"; + url = "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz"; + sha1 = "c6d2672632a2e5c83e013e6864a42ce8defd20ae"; + }; + } + { + name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; + path = fetchurl { + name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; + url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz"; + sha1 = "51ec662ccfca0f88b396dcd9679cdb931be17f76"; + }; + } + { + name = "cssnano_util_get_arguments___cssnano_util_get_arguments_4.0.0.tgz"; + path = fetchurl { + name = "cssnano_util_get_arguments___cssnano_util_get_arguments_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz"; + sha1 = "ed3a08299f21d75741b20f3b81f194ed49cc150f"; + }; + } + { + name = "cssnano_util_get_match___cssnano_util_get_match_4.0.0.tgz"; + path = fetchurl { + name = "cssnano_util_get_match___cssnano_util_get_match_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz"; + sha1 = "c0e4ca07f5386bb17ec5e52250b4f5961365156d"; + }; + } + { + name = "cssnano_util_raw_cache___cssnano_util_raw_cache_4.0.1.tgz"; + path = fetchurl { + name = "cssnano_util_raw_cache___cssnano_util_raw_cache_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz"; + sha1 = "b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"; + }; + } + { + name = "cssnano_util_same_parent___cssnano_util_same_parent_4.0.1.tgz"; + path = fetchurl { + name = "cssnano_util_same_parent___cssnano_util_same_parent_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz"; + sha1 = "574082fb2859d2db433855835d9a8456ea18bbf3"; + }; + } + { + name = "cssnano___cssnano_4.1.10.tgz"; + path = fetchurl { + name = "cssnano___cssnano_4.1.10.tgz"; + url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz"; + sha1 = "0ac41f0b13d13d465487e111b778d42da631b8b2"; + }; + } + { + name = "csso___csso_3.5.1.tgz"; + path = fetchurl { + name = "csso___csso_3.5.1.tgz"; + url = "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz"; + sha1 = "7b9eb8be61628973c1b261e169d2f024008e758b"; + }; + } + { + name = "cssom___cssom_0.3.6.tgz"; + path = fetchurl { + name = "cssom___cssom_0.3.6.tgz"; + url = "https://registry.yarnpkg.com/cssom/-/cssom-0.3.6.tgz"; + sha1 = "f85206cee04efa841f3c5982a74ba96ab20d65ad"; + }; + } + { + name = "cssom___cssom_0.2.5.tgz"; + path = fetchurl { + name = "cssom___cssom_0.2.5.tgz"; + url = "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz"; + sha1 = "2682709b5902e7212df529116ff788cd5b254894"; + }; + } + { + name = "cssstyle___cssstyle_1.2.2.tgz"; + path = fetchurl { + name = "cssstyle___cssstyle_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.2.2.tgz"; + sha1 = "427ea4d585b18624f6fdbf9de7a2a1a3ba713077"; + }; + } + { + name = "cssstyle___cssstyle_0.2.37.tgz"; + path = fetchurl { + name = "cssstyle___cssstyle_0.2.37.tgz"; + url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-0.2.37.tgz"; + sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; + }; + } + { + name = "cyclist___cyclist_0.2.2.tgz"; + path = fetchurl { + name = "cyclist___cyclist_0.2.2.tgz"; + url = "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz"; + sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640"; + }; + } + { + name = "d3___d3_3.5.17.tgz"; + path = fetchurl { + name = "d3___d3_3.5.17.tgz"; + url = "https://registry.yarnpkg.com/d3/-/d3-3.5.17.tgz"; + sha1 = "bc46748004378b21a360c9fc7cf5231790762fb8"; + }; + } + { + name = "d___d_1.0.0.tgz"; + path = fetchurl { + name = "d___d_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/d/-/d-1.0.0.tgz"; + sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f"; + }; + } + { + name = "dagre_d3_renderer___dagre_d3_renderer_0.4.26.tgz"; + path = fetchurl { + name = "dagre_d3_renderer___dagre_d3_renderer_0.4.26.tgz"; + url = "https://registry.yarnpkg.com/dagre-d3-renderer/-/dagre-d3-renderer-0.4.26.tgz"; + sha1 = "648a491209b853ae96ddf3fea41a1f104479a5a1"; + }; + } + { + name = "dagre_layout___dagre_layout_0.8.8.tgz"; + path = fetchurl { + name = "dagre_layout___dagre_layout_0.8.8.tgz"; + url = "https://registry.yarnpkg.com/dagre-layout/-/dagre-layout-0.8.8.tgz"; + sha1 = "9b6792f24229f402441c14162c1049e3f261f6d9"; + }; + } + { + name = "dashdash___dashdash_1.14.1.tgz"; + path = fetchurl { + name = "dashdash___dashdash_1.14.1.tgz"; + url = "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz"; + sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; + }; + } + { + name = "dasherize___dasherize_2.0.0.tgz"; + path = fetchurl { + name = "dasherize___dasherize_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz"; + sha1 = "6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308"; + }; + } + { + name = "data_urls___data_urls_1.1.0.tgz"; + path = fetchurl { + name = "data_urls___data_urls_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz"; + sha1 = "15ee0582baa5e22bb59c77140da8f9c76963bbfe"; + }; + } + { + name = "date_now___date_now_0.1.4.tgz"; + path = fetchurl { + name = "date_now___date_now_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/date-now/-/date-now-0.1.4.tgz"; + sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; + }; + } + { + name = "dateformat___dateformat_2.2.0.tgz"; + path = fetchurl { + name = "dateformat___dateformat_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz"; + sha1 = "4065e2013cf9fb916ddfd82efb506ad4c6769062"; + }; + } + { + name = "debug___debug_4.1.1.tgz"; + path = fetchurl { + name = "debug___debug_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz"; + sha1 = "3b72260255109c6b589cee050f1d516139664791"; + }; + } + { + name = "debug___debug_2.6.9.tgz"; + path = fetchurl { + name = "debug___debug_2.6.9.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz"; + sha1 = "5d128515df134ff327e90a4c93f4e077a536341f"; + }; + } + { + name = "debug___debug_3.1.0.tgz"; + path = fetchurl { + name = "debug___debug_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz"; + sha1 = "5bb5a0672628b64149566ba16819e61518c67261"; + }; + } + { + name = "debug___debug_3.2.6.tgz"; + path = fetchurl { + name = "debug___debug_3.2.6.tgz"; + url = "https://registry.yarnpkg.com/debug/-/debug-3.2.6.tgz"; + sha1 = "e83d17de16d8a7efb7717edbe5fb10135eee629b"; + }; + } + { + name = "decamelize___decamelize_1.2.0.tgz"; + path = fetchurl { + name = "decamelize___decamelize_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; + }; + } + { + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; + path = fetchurl { + name = "decode_uri_component___decode_uri_component_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; + sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; + }; + } + { + name = "deep_equal___deep_equal_1.0.1.tgz"; + path = fetchurl { + name = "deep_equal___deep_equal_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz"; + sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; + }; + } + { + name = "deep_extend___deep_extend_0.6.0.tgz"; + path = fetchurl { + name = "deep_extend___deep_extend_0.6.0.tgz"; + url = "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz"; + sha1 = "c4fa7c95404a17a9c3e8ca7e1537312b736330ac"; + }; + } + { + name = "deep_freeze___deep_freeze_0.0.1.tgz"; + path = fetchurl { + name = "deep_freeze___deep_freeze_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz"; + sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84"; + }; + } + { + name = "deep_is___deep_is_0.1.3.tgz"; + path = fetchurl { + name = "deep_is___deep_is_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz"; + sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; + }; + } + { + name = "defaults___defaults_1.0.3.tgz"; + path = fetchurl { + name = "defaults___defaults_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz"; + sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; + }; + } + { + name = "define_properties___define_properties_1.1.3.tgz"; + path = fetchurl { + name = "define_properties___define_properties_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.3.tgz"; + sha1 = "cf88da6cbee26fe6db7094f61d870cbd84cee9f1"; + }; + } + { + name = "define_property___define_property_0.2.5.tgz"; + path = fetchurl { + name = "define_property___define_property_0.2.5.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz"; + sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; + }; + } + { + name = "define_property___define_property_1.0.0.tgz"; + path = fetchurl { + name = "define_property___define_property_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-1.0.0.tgz"; + sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; + }; + } + { + name = "define_property___define_property_2.0.2.tgz"; + path = fetchurl { + name = "define_property___define_property_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/define-property/-/define-property-2.0.2.tgz"; + sha1 = "d459689e8d654ba77e02a817f8710d702cb16e9d"; + }; + } + { + name = "defined___defined_1.0.0.tgz"; + path = fetchurl { + name = "defined___defined_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz"; + sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; + }; + } + { + name = "delayed_stream___delayed_stream_1.0.0.tgz"; + path = fetchurl { + name = "delayed_stream___delayed_stream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz"; + sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; + }; + } + { + name = "delegate___delegate_3.2.0.tgz"; + path = fetchurl { + name = "delegate___delegate_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz"; + sha1 = "b66b71c3158522e8ab5744f720d8ca0c2af59166"; + }; + } + { + name = "delegates___delegates_1.0.0.tgz"; + path = fetchurl { + name = "delegates___delegates_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz"; + sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; + }; + } + { + name = "depd___depd_2.0.0.tgz"; + path = fetchurl { + name = "depd___depd_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz"; + sha1 = "b696163cc757560d09cf22cc8fad1571b79e76df"; + }; + } + { + name = "depd___depd_1.1.2.tgz"; + path = fetchurl { + name = "depd___depd_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/depd/-/depd-1.1.2.tgz"; + sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; + }; + } + { + name = "deprecated___deprecated_0.0.1.tgz"; + path = fetchurl { + name = "deprecated___deprecated_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz"; + sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19"; + }; + } + { + name = "des.js___des.js_1.0.0.tgz"; + path = fetchurl { + name = "des.js___des.js_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/des.js/-/des.js-1.0.0.tgz"; + sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"; + }; + } + { + name = "destroy___destroy_1.0.4.tgz"; + path = fetchurl { + name = "destroy___destroy_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz"; + sha1 = "978857442c44749e4206613e37946205826abd80"; + }; + } + { + name = "detect_file___detect_file_0.1.0.tgz"; + path = fetchurl { + name = "detect_file___detect_file_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/detect-file/-/detect-file-0.1.0.tgz"; + sha1 = "4935dedfd9488648e006b0129566e9386711ea63"; + }; + } + { + name = "detect_file___detect_file_1.0.0.tgz"; + path = fetchurl { + name = "detect_file___detect_file_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz"; + sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; + }; + } + { + name = "detect_indent___detect_indent_4.0.0.tgz"; + path = fetchurl { + name = "detect_indent___detect_indent_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz"; + sha1 = "f76d064352cdf43a1cb6ce619c4ee3a9475de208"; + }; + } + { + name = "detect_libc___detect_libc_1.0.3.tgz"; + path = fetchurl { + name = "detect_libc___detect_libc_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz"; + sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; + }; + } + { + name = "diagnostics___diagnostics_1.1.1.tgz"; + path = fetchurl { + name = "diagnostics___diagnostics_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/diagnostics/-/diagnostics-1.1.1.tgz"; + sha1 = "cab6ac33df70c9d9a727490ae43ac995a769b22a"; + }; + } + { + name = "diff-match-patch.git"; + path = + let + repo = fetchgit { + url = "https://github.com/hackmdio/diff-match-patch.git"; + rev = "dd6e43a1df8f46ac17ba33217c00d4018ef5637f"; + sha256 = "0rwkms53ggqxsvlhjh6wj4f3l4bw8r14xkq083zdnqn533rh7dlq"; + }; + in + runCommandNoCC "diff-match-patch.git" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "diff___diff_3.5.0.tgz"; + path = fetchurl { + name = "diff___diff_3.5.0.tgz"; + url = "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz"; + sha1 = "800c0dd1e0a8bfbc95835c202ad220fe317e5a12"; + }; + } + { + name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; + path = fetchurl { + name = "diffie_hellman___diffie_hellman_5.0.3.tgz"; + url = "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz"; + sha1 = "40e8ee98f55a2149607146921c63e1ae5f3d2875"; + }; + } + { + name = "dir_glob___dir_glob_2.2.2.tgz"; + path = fetchurl { + name = "dir_glob___dir_glob_2.2.2.tgz"; + url = "https://registry.yarnpkg.com/dir-glob/-/dir-glob-2.2.2.tgz"; + sha1 = "fa09f0694153c8918b18ba0deafae94769fc50c4"; + }; + } + { + name = "dns_lookup_all___dns_lookup_all_1.0.2.tgz"; + path = fetchurl { + name = "dns_lookup_all___dns_lookup_all_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/dns-lookup-all/-/dns-lookup-all-1.0.2.tgz"; + sha1 = "4d8b2b1af69c83a7b262eb5de92485b7b3a215eb"; + }; + } + { + name = "dns_prefetch_control___dns_prefetch_control_0.1.0.tgz"; + path = fetchurl { + name = "dns_prefetch_control___dns_prefetch_control_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/dns-prefetch-control/-/dns-prefetch-control-0.1.0.tgz"; + sha1 = "60ddb457774e178f1f9415f0cabb0e85b0b300b2"; + }; + } + { + name = "doctrine___doctrine_1.5.0.tgz"; + path = fetchurl { + name = "doctrine___doctrine_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz"; + sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa"; + }; + } + { + name = "doctrine___doctrine_3.0.0.tgz"; + path = fetchurl { + name = "doctrine___doctrine_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz"; + sha1 = "addebead72a6574db783639dc87a121773973961"; + }; + } + { + name = "dom_converter___dom_converter_0.2.0.tgz"; + path = fetchurl { + name = "dom_converter___dom_converter_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/dom-converter/-/dom-converter-0.2.0.tgz"; + sha1 = "6721a9daee2e293682955b6afe416771627bb768"; + }; + } + { + name = "dom_serializer___dom_serializer_0.1.1.tgz"; + path = fetchurl { + name = "dom_serializer___dom_serializer_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz"; + sha1 = "1ec4059e284babed36eec2941d4a970a189ce7c0"; + }; + } + { + name = "domain_browser___domain_browser_1.2.0.tgz"; + path = fetchurl { + name = "domain_browser___domain_browser_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/domain-browser/-/domain-browser-1.2.0.tgz"; + sha1 = "3d31f50191a6749dd1375a7f522e823d42e54eda"; + }; + } + { + name = "domelementtype___domelementtype_1.3.1.tgz"; + path = fetchurl { + name = "domelementtype___domelementtype_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz"; + sha1 = "d048c44b37b0d10a7f2a3d5fee3f4333d790481f"; + }; + } + { + name = "domexception___domexception_1.0.1.tgz"; + path = fetchurl { + name = "domexception___domexception_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz"; + sha1 = "937442644ca6a31261ef36e3ec677fe805582c90"; + }; + } + { + name = "domhandler___domhandler_2.4.2.tgz"; + path = fetchurl { + name = "domhandler___domhandler_2.4.2.tgz"; + url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz"; + sha1 = "8805097e933d65e85546f726d60f5eb88b44f803"; + }; + } + { + name = "domutils___domutils_1.5.1.tgz"; + path = fetchurl { + name = "domutils___domutils_1.5.1.tgz"; + url = "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz"; + sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; + }; + } + { + name = "domutils___domutils_1.7.0.tgz"; + path = fetchurl { + name = "domutils___domutils_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz"; + sha1 = "56ea341e834e06e6748af7a1cb25da67ea9f8c2a"; + }; + } + { + name = "dont_sniff_mimetype___dont_sniff_mimetype_1.0.0.tgz"; + path = fetchurl { + name = "dont_sniff_mimetype___dont_sniff_mimetype_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.0.0.tgz"; + sha1 = "5932890dc9f4e2f19e5eb02a20026e5e5efc8f58"; + }; + } + { + name = "dot_prop___dot_prop_4.2.0.tgz"; + path = fetchurl { + name = "dot_prop___dot_prop_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz"; + sha1 = "1f19e0c2e1aa0e32797c49799f2837ac6af69c57"; + }; + } + { + name = "dottie___dottie_1.1.1.tgz"; + path = fetchurl { + name = "dottie___dottie_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/dottie/-/dottie-1.1.1.tgz"; + sha1 = "45c2a3f48bd6528eeed267a69a848eaaca6faa6a"; + }; + } + { + name = "dtrace_provider___dtrace_provider_0.8.7.tgz"; + path = fetchurl { + name = "dtrace_provider___dtrace_provider_0.8.7.tgz"; + url = "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.7.tgz"; + sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04"; + }; + } + { + name = "duplexer2___duplexer2_0.0.2.tgz"; + path = fetchurl { + name = "duplexer2___duplexer2_0.0.2.tgz"; + url = "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz"; + sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db"; + }; + } + { + name = "duplexer___duplexer_0.1.1.tgz"; + path = fetchurl { + name = "duplexer___duplexer_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/duplexer/-/duplexer-0.1.1.tgz"; + sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; + }; + } + { + name = "duplexify___duplexify_3.7.1.tgz"; + path = fetchurl { + name = "duplexify___duplexify_3.7.1.tgz"; + url = "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz"; + sha1 = "2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"; + }; + } + { + name = "eachr___eachr_2.0.4.tgz"; + path = fetchurl { + name = "eachr___eachr_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/eachr/-/eachr-2.0.4.tgz"; + sha1 = "466f7caa10708f610509e32c807aafe57fc122bf"; + }; + } + { + name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; + path = fetchurl { + name = "ecc_jsbn___ecc_jsbn_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; + sha1 = "3a83a904e54353287874c564b7549386849a98c9"; + }; + } + { + name = "editions___editions_1.3.4.tgz"; + path = fetchurl { + name = "editions___editions_1.3.4.tgz"; + url = "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz"; + sha1 = "3662cb592347c3168eb8e498a0ff73271d67f50b"; + }; + } + { + name = "editions___editions_2.1.3.tgz"; + path = fetchurl { + name = "editions___editions_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/editions/-/editions-2.1.3.tgz"; + sha1 = "727ccf3ec2c7b12dcc652c71000f16c4824d6f7d"; + }; + } + { + name = "editorconfig___editorconfig_0.15.3.tgz"; + path = fetchurl { + name = "editorconfig___editorconfig_0.15.3.tgz"; + url = "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz"; + sha1 = "bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"; + }; + } + { + name = "ee_first___ee_first_1.1.1.tgz"; + path = fetchurl { + name = "ee_first___ee_first_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz"; + sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; + }; + } + { + name = "ejs_loader___ejs_loader_0.3.3.tgz"; + path = fetchurl { + name = "ejs_loader___ejs_loader_0.3.3.tgz"; + url = "https://registry.yarnpkg.com/ejs-loader/-/ejs-loader-0.3.3.tgz"; + sha1 = "021aa196b8858f05b6f095576c4afe61012ccc2e"; + }; + } + { + name = "ejs___ejs_2.6.1.tgz"; + path = fetchurl { + name = "ejs___ejs_2.6.1.tgz"; + url = "https://registry.yarnpkg.com/ejs/-/ejs-2.6.1.tgz"; + sha1 = "498ec0d495655abc6f23cd61868d926464071aa0"; + }; + } + { + name = "electron_to_chromium___electron_to_chromium_1.3.138.tgz"; + path = fetchurl { + name = "electron_to_chromium___electron_to_chromium_1.3.138.tgz"; + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.138.tgz"; + sha1 = "3c27814d48040d3988eaee56ab839d032987aff4"; + }; + } + { + name = "elliptic___elliptic_6.4.1.tgz"; + path = fetchurl { + name = "elliptic___elliptic_6.4.1.tgz"; + url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz"; + sha1 = "c2d0b7776911b86722c632c3c06c60f2f819939a"; + }; + } + { + name = "emoji_regex___emoji_regex_7.0.3.tgz"; + path = fetchurl { + name = "emoji_regex___emoji_regex_7.0.3.tgz"; + url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; + sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; + }; + } + { + name = "emojify.js___emojify.js_1.1.0.tgz"; + path = fetchurl { + name = "emojify.js___emojify.js_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/emojify.js/-/emojify.js-1.1.0.tgz"; + sha1 = "079fff223307c9007f570785e8e4935d5c398beb"; + }; + } + { + name = "emojis_list___emojis_list_2.1.0.tgz"; + path = fetchurl { + name = "emojis_list___emojis_list_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/emojis-list/-/emojis-list-2.1.0.tgz"; + sha1 = "4daa4d9db00f9819880c79fa457ae5b09a1fd389"; + }; + } + { + name = "enabled___enabled_1.0.2.tgz"; + path = fetchurl { + name = "enabled___enabled_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/enabled/-/enabled-1.0.2.tgz"; + sha1 = "965f6513d2c2d1c5f4652b64a2e3396467fc2f93"; + }; + } + { + name = "encodeurl___encodeurl_1.0.2.tgz"; + path = fetchurl { + name = "encodeurl___encodeurl_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz"; + sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; + }; + } + { + name = "end_of_stream___end_of_stream_1.4.1.tgz"; + path = fetchurl { + name = "end_of_stream___end_of_stream_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.1.tgz"; + sha1 = "ed29634d19baba463b6ce6b80a37213eab71ec43"; + }; + } + { + name = "end_of_stream___end_of_stream_0.1.5.tgz"; + path = fetchurl { + name = "end_of_stream___end_of_stream_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz"; + sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf"; + }; + } + { + name = "engine.io_client___engine.io_client_3.2.1.tgz"; + path = fetchurl { + name = "engine.io_client___engine.io_client_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.2.1.tgz"; + sha1 = "6f54c0475de487158a1a7c77d10178708b6add36"; + }; + } + { + name = "engine.io_parser___engine.io_parser_2.1.3.tgz"; + path = fetchurl { + name = "engine.io_parser___engine.io_parser_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-2.1.3.tgz"; + sha1 = "757ab970fbf2dfb32c7b74b033216d5739ef79a6"; + }; + } + { + name = "engine.io___engine.io_3.2.1.tgz"; + path = fetchurl { + name = "engine.io___engine.io_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/engine.io/-/engine.io-3.2.1.tgz"; + sha1 = "b60281c35484a70ee0351ea0ebff83ec8c9522a2"; + }; + } + { + name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; + path = fetchurl { + name = "enhanced_resolve___enhanced_resolve_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz"; + sha1 = "41c7e0bfdfe74ac1ffe1e57ad6a5c6c9f3742a7f"; + }; + } + { + name = "entities___entities_1.1.2.tgz"; + path = fetchurl { + name = "entities___entities_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz"; + sha1 = "bdfa735299664dfafd34529ed4f8522a275fea56"; + }; + } + { + name = "env_variable___env_variable_0.0.5.tgz"; + path = fetchurl { + name = "env_variable___env_variable_0.0.5.tgz"; + url = "https://registry.yarnpkg.com/env-variable/-/env-variable-0.0.5.tgz"; + sha1 = "913dd830bef11e96a039c038d4130604eba37f88"; + }; + } + { + name = "errlop___errlop_1.1.1.tgz"; + path = fetchurl { + name = "errlop___errlop_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/errlop/-/errlop-1.1.1.tgz"; + sha1 = "d9ae4c76c3e64956c5d79e6e035d6343bfd62250"; + }; + } + { + name = "errno___errno_0.1.7.tgz"; + path = fetchurl { + name = "errno___errno_0.1.7.tgz"; + url = "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz"; + sha1 = "4684d71779ad39af177e3f007996f7c67c852618"; + }; + } + { + name = "error_ex___error_ex_1.3.2.tgz"; + path = fetchurl { + name = "error_ex___error_ex_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz"; + sha1 = "b4ac40648107fdcdcfae242f428bea8a14d4f1bf"; + }; + } + { + name = "es_abstract___es_abstract_1.13.0.tgz"; + path = fetchurl { + name = "es_abstract___es_abstract_1.13.0.tgz"; + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz"; + sha1 = "ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"; + }; + } + { + name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; + path = fetchurl { + name = "es_to_primitive___es_to_primitive_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.0.tgz"; + sha1 = "edf72478033456e8dda8ef09e00ad9650707f377"; + }; + } + { + name = "es5_ext___es5_ext_0.10.50.tgz"; + path = fetchurl { + name = "es5_ext___es5_ext_0.10.50.tgz"; + url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.50.tgz"; + sha1 = "6d0e23a0abdb27018e5ac4fd09b412bc5517a778"; + }; + } + { + name = "es6_error___es6_error_2.1.1.tgz"; + path = fetchurl { + name = "es6_error___es6_error_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/es6-error/-/es6-error-2.1.1.tgz"; + sha1 = "91384301ec5ed1c9a7247d1128247216f03547cd"; + }; + } + { + name = "es6_iterator___es6_iterator_2.0.3.tgz"; + path = fetchurl { + name = "es6_iterator___es6_iterator_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz"; + sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7"; + }; + } + { + name = "es6_promise___es6_promise_4.2.6.tgz"; + path = fetchurl { + name = "es6_promise___es6_promise_4.2.6.tgz"; + url = "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.6.tgz"; + sha1 = "b685edd8258886365ea62b57d30de28fadcd974f"; + }; + } + { + name = "es6_symbol___es6_symbol_3.1.1.tgz"; + path = fetchurl { + name = "es6_symbol___es6_symbol_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.1.tgz"; + sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77"; + }; + } + { + name = "es6_weak_map___es6_weak_map_2.0.2.tgz"; + path = fetchurl { + name = "es6_weak_map___es6_weak_map_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.2.tgz"; + sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f"; + }; + } + { + name = "escape_html___escape_html_1.0.3.tgz"; + path = fetchurl { + name = "escape_html___escape_html_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz"; + sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; + }; + } + { + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; + path = fetchurl { + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; + }; + } + { + name = "escodegen___escodegen_1.11.1.tgz"; + path = fetchurl { + name = "escodegen___escodegen_1.11.1.tgz"; + url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.11.1.tgz"; + sha1 = "c485ff8d6b4cdb89e27f4a856e91f118401ca510"; + }; + } + { + name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; + path = fetchurl { + name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz"; + sha1 = "638b4c65db0bd5a41319f96bba1f15ddad2107d9"; + }; + } + { + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; + path = fetchurl { + name = "eslint_import_resolver_node___eslint_import_resolver_node_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz"; + sha1 = "58f15fb839b8d0576ca980413476aab2472db66a"; + }; + } + { + name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz"; + path = fetchurl { + name = "eslint_module_utils___eslint_module_utils_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.4.0.tgz"; + sha1 = "8b93499e9b00eab80ccb6614e69f03678e84e09a"; + }; + } + { + name = "eslint_plugin_es___eslint_plugin_es_1.4.0.tgz"; + path = fetchurl { + name = "eslint_plugin_es___eslint_plugin_es_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz"; + sha1 = "475f65bb20c993fc10e8c8fe77d1d60068072da6"; + }; + } + { + name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz"; + path = fetchurl { + name = "eslint_plugin_import___eslint_plugin_import_2.17.3.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.17.3.tgz"; + sha1 = "00548b4434c18faebaba04b24ae6198f280de189"; + }; + } + { + name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; + path = fetchurl { + name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz"; + sha1 = "55ae3560022863d141fa7a11799532340a685964"; + }; + } + { + name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz"; + path = fetchurl { + name = "eslint_plugin_promise___eslint_plugin_promise_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.1.1.tgz"; + sha1 = "1e08cb68b5b2cd8839f8d5864c796f56d82746db"; + }; + } + { + name = "eslint_plugin_standard___eslint_plugin_standard_4.0.0.tgz"; + path = fetchurl { + name = "eslint_plugin_standard___eslint_plugin_standard_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz"; + sha1 = "f845b45109c99cd90e77796940a344546c8f6b5c"; + }; + } + { + name = "eslint_scope___eslint_scope_4.0.3.tgz"; + path = fetchurl { + name = "eslint_scope___eslint_scope_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz"; + sha1 = "ca03833310f6889a3264781aa82e63eb9cfe7848"; + }; + } + { + name = "eslint_utils___eslint_utils_1.3.1.tgz"; + path = fetchurl { + name = "eslint_utils___eslint_utils_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz"; + sha1 = "9a851ba89ee7c460346f97cf8939c7298827e512"; + }; + } + { + name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; + path = fetchurl { + name = "eslint_visitor_keys___eslint_visitor_keys_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz"; + sha1 = "3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"; + }; + } + { + name = "eslint___eslint_5.16.0.tgz"; + path = fetchurl { + name = "eslint___eslint_5.16.0.tgz"; + url = "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz"; + sha1 = "a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea"; + }; + } + { + name = "espree___espree_5.0.1.tgz"; + path = fetchurl { + name = "espree___espree_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz"; + sha1 = "5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"; + }; + } + { + name = "esprima___esprima_3.1.3.tgz"; + path = fetchurl { + name = "esprima___esprima_3.1.3.tgz"; + url = "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz"; + sha1 = "fdca51cee6133895e3c88d535ce49dbff62a4633"; + }; + } + { + name = "esprima___esprima_4.0.1.tgz"; + path = fetchurl { + name = "esprima___esprima_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz"; + sha1 = "13b04cdb3e6c5d19df91ab6987a8695619b0aa71"; + }; + } + { + name = "esquery___esquery_1.0.1.tgz"; + path = fetchurl { + name = "esquery___esquery_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz"; + sha1 = "406c51658b1f5991a5f9b62b1dc25b00e3e5c708"; + }; + } + { + name = "esrecurse___esrecurse_4.2.1.tgz"; + path = fetchurl { + name = "esrecurse___esrecurse_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz"; + sha1 = "007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"; + }; + } + { + name = "estraverse___estraverse_4.2.0.tgz"; + path = fetchurl { + name = "estraverse___estraverse_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz"; + sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; + }; + } + { + name = "estree_walker___estree_walker_0.6.1.tgz"; + path = fetchurl { + name = "estree_walker___estree_walker_0.6.1.tgz"; + url = "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz"; + sha1 = "53049143f40c6eb918b23671d1fe3219f3a1b362"; + }; + } + { + name = "esutils___esutils_2.0.2.tgz"; + path = fetchurl { + name = "esutils___esutils_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz"; + sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; + }; + } + { + name = "etag___etag_1.8.1.tgz"; + path = fetchurl { + name = "etag___etag_1.8.1.tgz"; + url = "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz"; + sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; + }; + } + { + name = "eve_raphael___eve_raphael_0.5.0.tgz"; + path = fetchurl { + name = "eve_raphael___eve_raphael_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/eve-raphael/-/eve-raphael-0.5.0.tgz"; + sha1 = "17c754b792beef3fa6684d79cf5a47c63c4cda30"; + }; + } + { + name = "eve___eve_0.4.2.tgz"; + path = fetchurl { + name = "eve___eve_0.4.2.tgz"; + url = "https://registry.yarnpkg.com/eve/-/eve-0.4.2.tgz"; + sha1 = "7eea0afc0e4efb7c9365615315a3576833ead2ae"; + }; + } + { + name = "event_emitter___event_emitter_0.3.5.tgz"; + path = fetchurl { + name = "event_emitter___event_emitter_0.3.5.tgz"; + url = "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz"; + sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; + }; + } + { + name = "events___events_1.1.1.tgz"; + path = fetchurl { + name = "events___events_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz"; + sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; + }; + } + { + name = "events___events_3.0.0.tgz"; + path = fetchurl { + name = "events___events_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/events/-/events-3.0.0.tgz"; + sha1 = "9a0a0dfaf62893d92b875b8f2698ca4114973e88"; + }; + } + { + name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; + path = fetchurl { + name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; + sha1 = "7fcbdb198dc71959432efe13842684e0525acb02"; + }; + } + { + name = "execa___execa_0.7.0.tgz"; + path = fetchurl { + name = "execa___execa_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz"; + sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; + }; + } + { + name = "execa___execa_1.0.0.tgz"; + path = fetchurl { + name = "execa___execa_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz"; + sha1 = "c6236a5bb4df6d6f15e88e7f017798216749ddd8"; + }; + } + { + name = "expand_brackets___expand_brackets_0.1.5.tgz"; + path = fetchurl { + name = "expand_brackets___expand_brackets_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-0.1.5.tgz"; + sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; + }; + } + { + name = "expand_brackets___expand_brackets_2.1.4.tgz"; + path = fetchurl { + name = "expand_brackets___expand_brackets_2.1.4.tgz"; + url = "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz"; + sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; + }; + } + { + name = "expand_range___expand_range_1.8.2.tgz"; + path = fetchurl { + name = "expand_range___expand_range_1.8.2.tgz"; + url = "https://registry.yarnpkg.com/expand-range/-/expand-range-1.8.2.tgz"; + sha1 = "a299effd335fe2721ebae8e257ec79644fc85337"; + }; + } + { + name = "expand_tilde___expand_tilde_1.2.2.tgz"; + path = fetchurl { + name = "expand_tilde___expand_tilde_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-1.2.2.tgz"; + sha1 = "0b81eba897e5a3d31d1c3d102f8f01441e559449"; + }; + } + { + name = "expand_tilde___expand_tilde_2.0.2.tgz"; + path = fetchurl { + name = "expand_tilde___expand_tilde_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz"; + sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; + }; + } + { + name = "expect_ct___expect_ct_0.2.0.tgz"; + path = fetchurl { + name = "expect_ct___expect_ct_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/expect-ct/-/expect-ct-0.2.0.tgz"; + sha1 = "3a54741b6ed34cc7a93305c605f63cd268a54a62"; + }; + } + { + name = "exports_loader___exports_loader_0.7.0.tgz"; + path = fetchurl { + name = "exports_loader___exports_loader_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/exports-loader/-/exports-loader-0.7.0.tgz"; + sha1 = "84881c784dea6036b8e1cd1dac3da9b6409e21a5"; + }; + } + { + name = "expose_loader___expose_loader_0.7.5.tgz"; + path = fetchurl { + name = "expose_loader___expose_loader_0.7.5.tgz"; + url = "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz"; + sha1 = "e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f"; + }; + } + { + name = "express_session___express_session_1.16.1.tgz"; + path = fetchurl { + name = "express_session___express_session_1.16.1.tgz"; + url = "https://registry.yarnpkg.com/express-session/-/express-session-1.16.1.tgz"; + sha1 = "251ff9776c59382301de6c8c33411af357ed439c"; + }; + } + { + name = "express___express_4.17.1.tgz"; + path = fetchurl { + name = "express___express_4.17.1.tgz"; + url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; + sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; + }; + } + { + name = "extend_shallow___extend_shallow_2.0.1.tgz"; + path = fetchurl { + name = "extend_shallow___extend_shallow_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz"; + sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; + }; + } + { + name = "extend_shallow___extend_shallow_3.0.2.tgz"; + path = fetchurl { + name = "extend_shallow___extend_shallow_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-3.0.2.tgz"; + sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; + }; + } + { + name = "extend___extend_3.0.0.tgz"; + path = fetchurl { + name = "extend___extend_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/extend/-/extend-3.0.0.tgz"; + sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; + }; + } + { + name = "extend___extend_3.0.2.tgz"; + path = fetchurl { + name = "extend___extend_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz"; + sha1 = "f8b1136b4071fbd8eb140aff858b1019ec2915fa"; + }; + } + { + name = "extendr___extendr_2.1.0.tgz"; + path = fetchurl { + name = "extendr___extendr_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/extendr/-/extendr-2.1.0.tgz"; + sha1 = "301aa0bbea565f4d2dc8f570f2a22611a8527b56"; + }; + } + { + name = "external_editor___external_editor_3.0.3.tgz"; + path = fetchurl { + name = "external_editor___external_editor_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz"; + sha1 = "5866db29a97826dbe4bf3afd24070ead9ea43a27"; + }; + } + { + name = "extglob___extglob_0.3.2.tgz"; + path = fetchurl { + name = "extglob___extglob_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz"; + sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1"; + }; + } + { + name = "extglob___extglob_2.0.4.tgz"; + path = fetchurl { + name = "extglob___extglob_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; + sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; + }; + } + { + name = "extract_opts___extract_opts_2.2.0.tgz"; + path = fetchurl { + name = "extract_opts___extract_opts_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/extract-opts/-/extract-opts-2.2.0.tgz"; + sha1 = "1fa28eba7352c6db480f885ceb71a46810be6d7d"; + }; + } + { + name = "extract_zip___extract_zip_1.6.7.tgz"; + path = fetchurl { + name = "extract_zip___extract_zip_1.6.7.tgz"; + url = "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.6.7.tgz"; + sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9"; + }; + } + { + name = "extsprintf___extsprintf_1.2.0.tgz"; + path = fetchurl { + name = "extsprintf___extsprintf_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz"; + sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; + }; + } + { + name = "extsprintf___extsprintf_1.3.0.tgz"; + path = fetchurl { + name = "extsprintf___extsprintf_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz"; + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; + }; + } + { + name = "extsprintf___extsprintf_1.4.0.tgz"; + path = fetchurl { + name = "extsprintf___extsprintf_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz"; + sha1 = "e2689f8f356fad62cca65a3a91c5df5f9551692f"; + }; + } + { + name = "fancy_log___fancy_log_1.3.3.tgz"; + path = fetchurl { + name = "fancy_log___fancy_log_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz"; + sha1 = "dbc19154f558690150a23953a0adbd035be45fc7"; + }; + } + { + name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; + path = fetchurl { + name = "fast_deep_equal___fast_deep_equal_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; + sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; + }; + } + { + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; + path = fetchurl { + name = "fast_json_stable_stringify___fast_json_stable_stringify_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; + sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; + }; + } + { + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; + path = fetchurl { + name = "fast_levenshtein___fast_levenshtein_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"; + sha1 = "3d8a5c66883a16a30ca8643e851f19baa7797917"; + }; + } + { + name = "fast_safe_stringify___fast_safe_stringify_2.0.6.tgz"; + path = fetchurl { + name = "fast_safe_stringify___fast_safe_stringify_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.6.tgz"; + sha1 = "04b26106cc56681f51a044cfc0d76cf0008ac2c2"; + }; + } + { + name = "fastparse___fastparse_1.1.2.tgz"; + path = fetchurl { + name = "fastparse___fastparse_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/fastparse/-/fastparse-1.1.2.tgz"; + sha1 = "91728c5a5942eced8531283c79441ee4122c35a9"; + }; + } + { + name = "fd_slicer___fd_slicer_1.0.1.tgz"; + path = fetchurl { + name = "fd_slicer___fd_slicer_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.0.1.tgz"; + sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; + }; + } + { + name = "feature_policy___feature_policy_0.3.0.tgz"; + path = fetchurl { + name = "feature_policy___feature_policy_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz"; + sha1 = "7430e8e54a40da01156ca30aaec1a381ce536069"; + }; + } + { + name = "fecha___fecha_2.3.3.tgz"; + path = fetchurl { + name = "fecha___fecha_2.3.3.tgz"; + url = "https://registry.yarnpkg.com/fecha/-/fecha-2.3.3.tgz"; + sha1 = "948e74157df1a32fd1b12c3a3c3cdcb6ec9d96cd"; + }; + } + { + name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; + path = fetchurl { + name = "figgy_pudding___figgy_pudding_3.5.1.tgz"; + url = "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz"; + sha1 = "862470112901c727a0e495a80744bd5baa1d6790"; + }; + } + { + name = "figures___figures_2.0.0.tgz"; + path = fetchurl { + name = "figures___figures_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; + sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; + }; + } + { + name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; + path = fetchurl { + name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; + sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; + }; + } + { + name = "file_loader___file_loader_2.0.0.tgz"; + path = fetchurl { + name = "file_loader___file_loader_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/file-loader/-/file-loader-2.0.0.tgz"; + sha1 = "39749c82f020b9e85901dcff98e8004e6401cfde"; + }; + } + { + name = "file_saver___file_saver_1.3.8.tgz"; + path = fetchurl { + name = "file_saver___file_saver_1.3.8.tgz"; + url = "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz"; + sha1 = "e68a30c7cb044e2fb362b428469feb291c2e09d8"; + }; + } + { + name = "filename_regex___filename_regex_2.0.1.tgz"; + path = fetchurl { + name = "filename_regex___filename_regex_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/filename-regex/-/filename-regex-2.0.1.tgz"; + sha1 = "c1c4b9bee3e09725ddb106b75c1e301fe2f18b26"; + }; + } + { + name = "fill_range___fill_range_2.2.4.tgz"; + path = fetchurl { + name = "fill_range___fill_range_2.2.4.tgz"; + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-2.2.4.tgz"; + sha1 = "eb1e773abb056dcd8df2bfdf6af59b8b3a936565"; + }; + } + { + name = "fill_range___fill_range_4.0.0.tgz"; + path = fetchurl { + name = "fill_range___fill_range_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz"; + sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; + }; + } + { + name = "finalhandler___finalhandler_1.1.2.tgz"; + path = fetchurl { + name = "finalhandler___finalhandler_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz"; + sha1 = "b7e7d000ffd11938d0fdb053506f6ebabe9f587d"; + }; + } + { + name = "find_cache_dir___find_cache_dir_1.0.0.tgz"; + path = fetchurl { + name = "find_cache_dir___find_cache_dir_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz"; + sha1 = "9288e3e9e3cc3748717d39eade17cf71fc30ee6f"; + }; + } + { + name = "find_cache_dir___find_cache_dir_2.1.0.tgz"; + path = fetchurl { + name = "find_cache_dir___find_cache_dir_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.1.0.tgz"; + sha1 = "8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"; + }; + } + { + name = "find_index___find_index_0.1.1.tgz"; + path = fetchurl { + name = "find_index___find_index_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz"; + sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4"; + }; + } + { + name = "find_up___find_up_2.1.0.tgz"; + path = fetchurl { + name = "find_up___find_up_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz"; + sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; + }; + } + { + name = "find_up___find_up_3.0.0.tgz"; + path = fetchurl { + name = "find_up___find_up_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz"; + sha1 = "49169f1d7993430646da61ecc5ae355c21c97b73"; + }; + } + { + name = "findup_sync___findup_sync_1.0.0.tgz"; + path = fetchurl { + name = "findup_sync___findup_sync_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-1.0.0.tgz"; + sha1 = "6f7e4b57b6ee3a4037b4414eaedea3f58f71e0ec"; + }; + } + { + name = "findup_sync___findup_sync_2.0.0.tgz"; + path = fetchurl { + name = "findup_sync___findup_sync_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz"; + sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; + }; + } + { + name = "fined___fined_1.2.0.tgz"; + path = fetchurl { + name = "fined___fined_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/fined/-/fined-1.2.0.tgz"; + sha1 = "d00beccf1aa2b475d16d423b0238b713a2c4a37b"; + }; + } + { + name = "first_chunk_stream___first_chunk_stream_1.0.0.tgz"; + path = fetchurl { + name = "first_chunk_stream___first_chunk_stream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; + sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"; + }; + } + { + name = "flagged_respawn___flagged_respawn_1.0.1.tgz"; + path = fetchurl { + name = "flagged_respawn___flagged_respawn_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz"; + sha1 = "e7de6f1279ddd9ca9aac8a5971d618606b3aab41"; + }; + } + { + name = "flat_cache___flat_cache_2.0.1.tgz"; + path = fetchurl { + name = "flat_cache___flat_cache_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; + sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; + }; + } + { + name = "flatted___flatted_2.0.0.tgz"; + path = fetchurl { + name = "flatted___flatted_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz"; + sha1 = "55122b6536ea496b4b44893ee2608141d10d9916"; + }; + } + { + name = "flowchart.js___flowchart.js_1.12.0.tgz"; + path = fetchurl { + name = "flowchart.js___flowchart.js_1.12.0.tgz"; + url = "https://registry.yarnpkg.com/flowchart.js/-/flowchart.js-1.12.0.tgz"; + sha1 = "ff5b4cf350b4e067a4232dc1b4dfdd87524acf5a"; + }; + } + { + name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; + path = fetchurl { + name = "flush_write_stream___flush_write_stream_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/flush-write-stream/-/flush-write-stream-1.1.1.tgz"; + sha1 = "8dd7d873a1babc207d94ead0c2e0e44276ebf2e8"; + }; + } + { + name = "for_in___for_in_1.0.2.tgz"; + path = fetchurl { + name = "for_in___for_in_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz"; + sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; + }; + } + { + name = "for_own___for_own_0.1.5.tgz"; + path = fetchurl { + name = "for_own___for_own_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/for-own/-/for-own-0.1.5.tgz"; + sha1 = "5265c681a4f294dabbf17c9509b6763aa84510ce"; + }; + } + { + name = "for_own___for_own_1.0.0.tgz"; + path = fetchurl { + name = "for_own___for_own_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz"; + sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; + }; + } + { + name = "forever_agent___forever_agent_0.6.1.tgz"; + path = fetchurl { + name = "forever_agent___forever_agent_0.6.1.tgz"; + url = "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz"; + sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; + }; + } + { + name = "fork_awesome___fork_awesome_1.1.7.tgz"; + path = fetchurl { + name = "fork_awesome___fork_awesome_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/fork-awesome/-/fork-awesome-1.1.7.tgz"; + sha1 = "1427da1cac3d1713046ee88427e5fcecb9501d21"; + }; + } + { + name = "form_data___form_data_1.0.0_rc3.tgz"; + path = fetchurl { + name = "form_data___form_data_1.0.0_rc3.tgz"; + url = "https://registry.yarnpkg.com/form-data/-/form-data-1.0.0-rc3.tgz"; + sha1 = "d35bc62e7fbc2937ae78f948aaa0d38d90607577"; + }; + } + { + name = "form_data___form_data_2.3.3.tgz"; + path = fetchurl { + name = "form_data___form_data_2.3.3.tgz"; + url = "https://registry.yarnpkg.com/form-data/-/form-data-2.3.3.tgz"; + sha1 = "dcce52c05f644f298c6a7ab936bd724ceffbf3a6"; + }; + } + { + name = "formidable___formidable_1.2.1.tgz"; + path = fetchurl { + name = "formidable___formidable_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/formidable/-/formidable-1.2.1.tgz"; + sha1 = "70fb7ca0290ee6ff961090415f4b3df3d2082659"; + }; + } + { + name = "formidable___formidable_1.0.17.tgz"; + path = fetchurl { + name = "formidable___formidable_1.0.17.tgz"; + url = "https://registry.yarnpkg.com/formidable/-/formidable-1.0.17.tgz"; + sha1 = "ef5491490f9433b705faa77249c99029ae348559"; + }; + } + { + name = "forwarded___forwarded_0.1.2.tgz"; + path = fetchurl { + name = "forwarded___forwarded_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/forwarded/-/forwarded-0.1.2.tgz"; + sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; + }; + } + { + name = "fragment_cache___fragment_cache_0.2.1.tgz"; + path = fetchurl { + name = "fragment_cache___fragment_cache_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/fragment-cache/-/fragment-cache-0.2.1.tgz"; + sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; + }; + } + { + name = "frameguard___frameguard_3.1.0.tgz"; + path = fetchurl { + name = "frameguard___frameguard_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/frameguard/-/frameguard-3.1.0.tgz"; + sha1 = "bd1442cca1d67dc346a6751559b6d04502103a22"; + }; + } + { + name = "fresh___fresh_0.5.2.tgz"; + path = fetchurl { + name = "fresh___fresh_0.5.2.tgz"; + url = "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz"; + sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; + }; + } + { + name = "from2___from2_2.3.0.tgz"; + path = fetchurl { + name = "from2___from2_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz"; + sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; + }; + } + { + name = "fs_constants___fs_constants_1.0.0.tgz"; + path = fetchurl { + name = "fs_constants___fs_constants_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz"; + sha1 = "6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"; + }; + } + { + name = "fs_exists_sync___fs_exists_sync_0.1.0.tgz"; + path = fetchurl { + name = "fs_exists_sync___fs_exists_sync_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/fs-exists-sync/-/fs-exists-sync-0.1.0.tgz"; + sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add"; + }; + } + { + name = "fs_extra___fs_extra_1.0.0.tgz"; + path = fetchurl { + name = "fs_extra___fs_extra_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-1.0.0.tgz"; + sha1 = "cd3ce5f7e7cb6145883fcae3191e9877f8587950"; + }; + } + { + name = "fs_extra___fs_extra_4.0.3.tgz"; + path = fetchurl { + name = "fs_extra___fs_extra_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz"; + sha1 = "0d852122e5bc5beb453fb028e9c0c9bf36340c94"; + }; + } + { + name = "fs_minipass___fs_minipass_1.2.6.tgz"; + path = fetchurl { + name = "fs_minipass___fs_minipass_1.2.6.tgz"; + url = "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz"; + sha1 = "2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07"; + }; + } + { + name = "fs_readdir_recursive___fs_readdir_recursive_1.1.0.tgz"; + path = fetchurl { + name = "fs_readdir_recursive___fs_readdir_recursive_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; + sha1 = "e32fc030a2ccee44a6b5371308da54be0b397d27"; + }; + } + { + name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz"; + path = fetchurl { + name = "fs_write_stream_atomic___fs_write_stream_atomic_1.0.10.tgz"; + url = "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz"; + sha1 = "b47df53493ef911df75731e70a9ded0189db40c9"; + }; + } + { + name = "fs.realpath___fs.realpath_1.0.0.tgz"; + path = fetchurl { + name = "fs.realpath___fs.realpath_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz"; + sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; + }; + } + { + name = "fsevents___fsevents_1.2.9.tgz"; + path = fetchurl { + name = "fsevents___fsevents_1.2.9.tgz"; + url = "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz"; + sha1 = "3f5ed66583ccd6f400b5a00db6f7e861363e388f"; + }; + } + { + name = "function_bind___function_bind_1.1.1.tgz"; + path = fetchurl { + name = "function_bind___function_bind_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz"; + sha1 = "a56899d3ea3c9bab874bb9773b7c5ede92f4895d"; + }; + } + { + name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; + path = fetchurl { + name = "functional_red_black_tree___functional_red_black_tree_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz"; + sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; + }; + } + { + name = "gauge___gauge_2.7.4.tgz"; + path = fetchurl { + name = "gauge___gauge_2.7.4.tgz"; + url = "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz"; + sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; + }; + } + { + name = "gaze___gaze_0.5.2.tgz"; + path = fetchurl { + name = "gaze___gaze_0.5.2.tgz"; + url = "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz"; + sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f"; + }; + } + { + name = "generic_pool___generic_pool_2.4.2.tgz"; + path = fetchurl { + name = "generic_pool___generic_pool_2.4.2.tgz"; + url = "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.2.tgz"; + sha1 = "886bc5bf0beb7db96e81bcbba078818de5a62683"; + }; + } + { + name = "generic_pool___generic_pool_2.4.3.tgz"; + path = fetchurl { + name = "generic_pool___generic_pool_2.4.3.tgz"; + url = "https://registry.yarnpkg.com/generic-pool/-/generic-pool-2.4.3.tgz"; + sha1 = "780c36f69dfad05a5a045dd37be7adca11a4f6ff"; + }; + } + { + name = "get_caller_file___get_caller_file_1.0.3.tgz"; + path = fetchurl { + name = "get_caller_file___get_caller_file_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz"; + sha1 = "f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"; + }; + } + { + name = "get_stream___get_stream_3.0.0.tgz"; + path = fetchurl { + name = "get_stream___get_stream_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz"; + sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; + }; + } + { + name = "get_stream___get_stream_4.1.0.tgz"; + path = fetchurl { + name = "get_stream___get_stream_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-4.1.0.tgz"; + sha1 = "c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"; + }; + } + { + name = "get_value___get_value_2.0.6.tgz"; + path = fetchurl { + name = "get_value___get_value_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz"; + sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; + }; + } + { + name = "getpass___getpass_0.1.7.tgz"; + path = fetchurl { + name = "getpass___getpass_0.1.7.tgz"; + url = "https://registry.yarnpkg.com/getpass/-/getpass-0.1.7.tgz"; + sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; + }; + } + { + name = "gist_embed___gist_embed_2.6.0.tgz"; + path = fetchurl { + name = "gist_embed___gist_embed_2.6.0.tgz"; + url = "https://registry.yarnpkg.com/gist-embed/-/gist-embed-2.6.0.tgz"; + sha1 = "1ea95703fa1fc2a1255419f6f06c67e9920649ab"; + }; + } + { + name = "glob_base___glob_base_0.3.0.tgz"; + path = fetchurl { + name = "glob_base___glob_base_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/glob-base/-/glob-base-0.3.0.tgz"; + sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; + }; + } + { + name = "glob_parent___glob_parent_2.0.0.tgz"; + path = fetchurl { + name = "glob_parent___glob_parent_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-2.0.0.tgz"; + sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; + }; + } + { + name = "glob_parent___glob_parent_3.1.0.tgz"; + path = fetchurl { + name = "glob_parent___glob_parent_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-3.1.0.tgz"; + sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; + }; + } + { + name = "glob_stream___glob_stream_3.1.18.tgz"; + path = fetchurl { + name = "glob_stream___glob_stream_3.1.18.tgz"; + url = "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz"; + sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b"; + }; + } + { + name = "glob_watcher___glob_watcher_0.0.6.tgz"; + path = fetchurl { + name = "glob_watcher___glob_watcher_0.0.6.tgz"; + url = "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz"; + sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b"; + }; + } + { + name = "glob2base___glob2base_0.0.12.tgz"; + path = fetchurl { + name = "glob2base___glob2base_0.0.12.tgz"; + url = "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz"; + sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56"; + }; + } + { + name = "glob___glob_7.1.2.tgz"; + path = fetchurl { + name = "glob___glob_7.1.2.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz"; + sha1 = "c19c9df9a028702d678612384a6552404c636d15"; + }; + } + { + name = "glob___glob_4.5.3.tgz"; + path = fetchurl { + name = "glob___glob_4.5.3.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz"; + sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f"; + }; + } + { + name = "glob___glob_6.0.4.tgz"; + path = fetchurl { + name = "glob___glob_6.0.4.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz"; + sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; + }; + } + { + name = "glob___glob_7.1.4.tgz"; + path = fetchurl { + name = "glob___glob_7.1.4.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz"; + sha1 = "aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"; + }; + } + { + name = "glob___glob_3.1.21.tgz"; + path = fetchurl { + name = "glob___glob_3.1.21.tgz"; + url = "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz"; + sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd"; + }; + } + { + name = "global_modules___global_modules_0.2.3.tgz"; + path = fetchurl { + name = "global_modules___global_modules_0.2.3.tgz"; + url = "https://registry.yarnpkg.com/global-modules/-/global-modules-0.2.3.tgz"; + sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"; + }; + } + { + name = "global_modules___global_modules_1.0.0.tgz"; + path = fetchurl { + name = "global_modules___global_modules_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; + sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; + }; + } + { + name = "global_prefix___global_prefix_0.1.5.tgz"; + path = fetchurl { + name = "global_prefix___global_prefix_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-0.1.5.tgz"; + sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"; + }; + } + { + name = "global_prefix___global_prefix_1.0.2.tgz"; + path = fetchurl { + name = "global_prefix___global_prefix_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz"; + sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; + }; + } + { + name = "globals___globals_11.12.0.tgz"; + path = fetchurl { + name = "globals___globals_11.12.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; + sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e"; + }; + } + { + name = "globals___globals_9.18.0.tgz"; + path = fetchurl { + name = "globals___globals_9.18.0.tgz"; + url = "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz"; + sha1 = "aa3896b3e69b487f17e31ed2143d69a8e30c2d8a"; + }; + } + { + name = "globby___globby_7.1.1.tgz"; + path = fetchurl { + name = "globby___globby_7.1.1.tgz"; + url = "https://registry.yarnpkg.com/globby/-/globby-7.1.1.tgz"; + sha1 = "fb2ccff9401f8600945dfada97440cca972b8680"; + }; + } + { + name = "globule___globule_0.1.0.tgz"; + path = fetchurl { + name = "globule___globule_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz"; + sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; + }; + } + { + name = "glogg___glogg_1.0.2.tgz"; + path = fetchurl { + name = "glogg___glogg_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz"; + sha1 = "2d7dd702beda22eb3bffadf880696da6d846313f"; + }; + } + { + name = "good_listener___good_listener_1.2.2.tgz"; + path = fetchurl { + name = "good_listener___good_listener_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz"; + sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; + }; + } + { + name = "graceful_fs___graceful_fs_4.1.15.tgz"; + path = fetchurl { + name = "graceful_fs___graceful_fs_4.1.15.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz"; + sha1 = "ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"; + }; + } + { + name = "graceful_fs___graceful_fs_3.0.11.tgz"; + path = fetchurl { + name = "graceful_fs___graceful_fs_3.0.11.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz"; + sha1 = "7613c778a1afea62f25c630a086d7f3acbbdd818"; + }; + } + { + name = "graceful_fs___graceful_fs_1.2.3.tgz"; + path = fetchurl { + name = "graceful_fs___graceful_fs_1.2.3.tgz"; + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz"; + sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364"; + }; + } + { + name = "graphlib___graphlib_2.1.7.tgz"; + path = fetchurl { + name = "graphlib___graphlib_2.1.7.tgz"; + url = "https://registry.yarnpkg.com/graphlib/-/graphlib-2.1.7.tgz"; + sha1 = "b6a69f9f44bd9de3963ce6804a2fc9e73d86aecc"; + }; + } + { + name = "graphlibrary___graphlibrary_2.2.0.tgz"; + path = fetchurl { + name = "graphlibrary___graphlibrary_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/graphlibrary/-/graphlibrary-2.2.0.tgz"; + sha1 = "017a14899775228dec4497a39babfdd6bf56eac6"; + }; + } + { + name = "growl___growl_1.10.5.tgz"; + path = fetchurl { + name = "growl___growl_1.10.5.tgz"; + url = "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz"; + sha1 = "f2735dc2283674fa67478b10181059355c369e5e"; + }; + } + { + name = "gulp_help___gulp_help_1.6.1.tgz"; + path = fetchurl { + name = "gulp_help___gulp_help_1.6.1.tgz"; + url = "https://registry.yarnpkg.com/gulp-help/-/gulp-help-1.6.1.tgz"; + sha1 = "261db186e18397fef3f6a2c22e9c315bfa88ae0c"; + }; + } + { + name = "gulp_util___gulp_util_3.0.8.tgz"; + path = fetchurl { + name = "gulp_util___gulp_util_3.0.8.tgz"; + url = "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz"; + sha1 = "0054e1e744502e27c04c187c3ecc505dd54bbb4f"; + }; + } + { + name = "gulp___gulp_3.9.1.tgz"; + path = fetchurl { + name = "gulp___gulp_3.9.1.tgz"; + url = "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz"; + sha1 = "571ce45928dd40af6514fc4011866016c13845b4"; + }; + } + { + name = "gulplog___gulplog_1.0.0.tgz"; + path = fetchurl { + name = "gulplog___gulplog_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz"; + sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5"; + }; + } + { + name = "handlebars___handlebars_4.1.2.tgz"; + path = fetchurl { + name = "handlebars___handlebars_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz"; + sha1 = "b6b37c1ced0306b221e094fc7aca3ec23b131b67"; + }; + } + { + name = "har_schema___har_schema_2.0.0.tgz"; + path = fetchurl { + name = "har_schema___har_schema_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz"; + sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; + }; + } + { + name = "har_validator___har_validator_5.1.3.tgz"; + path = fetchurl { + name = "har_validator___har_validator_5.1.3.tgz"; + url = "https://registry.yarnpkg.com/har-validator/-/har-validator-5.1.3.tgz"; + sha1 = "1ef89ebd3e4996557675eed9893110dc350fa080"; + }; + } + { + name = "has_ansi___has_ansi_2.0.0.tgz"; + path = fetchurl { + name = "has_ansi___has_ansi_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz"; + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; + }; + } + { + name = "has_binary2___has_binary2_1.0.3.tgz"; + path = fetchurl { + name = "has_binary2___has_binary2_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz"; + sha1 = "7776ac627f3ea77250cfc332dab7ddf5e4f5d11d"; + }; + } + { + name = "has_color___has_color_0.1.7.tgz"; + path = fetchurl { + name = "has_color___has_color_0.1.7.tgz"; + url = "https://registry.yarnpkg.com/has-color/-/has-color-0.1.7.tgz"; + sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; + }; + } + { + name = "has_cors___has_cors_1.1.0.tgz"; + path = fetchurl { + name = "has_cors___has_cors_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/has-cors/-/has-cors-1.1.0.tgz"; + sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; + }; + } + { + name = "has_flag___has_flag_3.0.0.tgz"; + path = fetchurl { + name = "has_flag___has_flag_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz"; + sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; + }; + } + { + name = "has_gulplog___has_gulplog_0.1.0.tgz"; + path = fetchurl { + name = "has_gulplog___has_gulplog_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz"; + sha1 = "6414c82913697da51590397dafb12f22967811ce"; + }; + } + { + name = "has_symbols___has_symbols_1.0.0.tgz"; + path = fetchurl { + name = "has_symbols___has_symbols_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz"; + sha1 = "ba1a8f1af2a0fc39650f5c850367704122063b44"; + }; + } + { + name = "has_unicode___has_unicode_2.0.1.tgz"; + path = fetchurl { + name = "has_unicode___has_unicode_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz"; + sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; + }; + } + { + name = "has_value___has_value_0.3.1.tgz"; + path = fetchurl { + name = "has_value___has_value_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/has-value/-/has-value-0.3.1.tgz"; + sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; + }; + } + { + name = "has_value___has_value_1.0.0.tgz"; + path = fetchurl { + name = "has_value___has_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-value/-/has-value-1.0.0.tgz"; + sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; + }; + } + { + name = "has_values___has_values_0.1.4.tgz"; + path = fetchurl { + name = "has_values___has_values_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/has-values/-/has-values-0.1.4.tgz"; + sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; + }; + } + { + name = "has_values___has_values_1.0.0.tgz"; + path = fetchurl { + name = "has_values___has_values_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/has-values/-/has-values-1.0.0.tgz"; + sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; + }; + } + { + name = "has___has_1.0.3.tgz"; + path = fetchurl { + name = "has___has_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz"; + sha1 = "722d7cbfc1f6aa8241f16dd814e011e1f41e8796"; + }; + } + { + name = "hash_base___hash_base_3.0.4.tgz"; + path = fetchurl { + name = "hash_base___hash_base_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz"; + sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918"; + }; + } + { + name = "hash.js___hash.js_1.1.7.tgz"; + path = fetchurl { + name = "hash.js___hash.js_1.1.7.tgz"; + url = "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz"; + sha1 = "0babca538e8d4ee4a0f8988d68866537a003cf42"; + }; + } + { + name = "hasha___hasha_2.2.0.tgz"; + path = fetchurl { + name = "hasha___hasha_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/hasha/-/hasha-2.2.0.tgz"; + sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1"; + }; + } + { + name = "he___he_1.1.1.tgz"; + path = fetchurl { + name = "he___he_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz"; + sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; + }; + } + { + name = "he___he_1.2.0.tgz"; + path = fetchurl { + name = "he___he_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz"; + sha1 = "84ae65fa7eafb165fddb61566ae14baf05664f0f"; + }; + } + { + name = "helmet_crossdomain___helmet_crossdomain_0.3.0.tgz"; + path = fetchurl { + name = "helmet_crossdomain___helmet_crossdomain_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.3.0.tgz"; + sha1 = "707e2df930f13ad61f76ed08e1bb51ab2b2e85fa"; + }; + } + { + name = "helmet_csp___helmet_csp_2.7.1.tgz"; + path = fetchurl { + name = "helmet_csp___helmet_csp_2.7.1.tgz"; + url = "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.7.1.tgz"; + sha1 = "e8e0b5186ffd4db625cfcce523758adbfadb9dca"; + }; + } + { + name = "helmet___helmet_3.18.0.tgz"; + path = fetchurl { + name = "helmet___helmet_3.18.0.tgz"; + url = "https://registry.yarnpkg.com/helmet/-/helmet-3.18.0.tgz"; + sha1 = "37666f7c861bd1ff3015e0cdb903a43501e3da3e"; + }; + } + { + name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; + path = fetchurl { + name = "hex_color_regex___hex_color_regex_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz"; + sha1 = "4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"; + }; + } + { + name = "hide_powered_by___hide_powered_by_1.0.0.tgz"; + path = fetchurl { + name = "hide_powered_by___hide_powered_by_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.0.0.tgz"; + sha1 = "4a85ad65881f62857fc70af7174a1184dccce32b"; + }; + } + { + name = "highlight.js___highlight.js_9.15.8.tgz"; + path = fetchurl { + name = "highlight.js___highlight.js_9.15.8.tgz"; + url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.15.8.tgz"; + sha1 = "f344fda123f36f1a65490e932cf90569e4999971"; + }; + } + { + name = "highlight.js___highlight.js_9.12.0.tgz"; + path = fetchurl { + name = "highlight.js___highlight.js_9.12.0.tgz"; + url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.12.0.tgz"; + sha1 = "e6d9dbe57cbefe60751f02af336195870c90c01e"; + }; + } + { + name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; + path = fetchurl { + name = "hmac_drbg___hmac_drbg_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz"; + sha1 = "d2745701025a6c775a6c545793ed502fc0c649a1"; + }; + } + { + name = "home_or_tmp___home_or_tmp_2.0.0.tgz"; + path = fetchurl { + name = "home_or_tmp___home_or_tmp_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/home-or-tmp/-/home-or-tmp-2.0.0.tgz"; + sha1 = "e36c3f2d2cae7d746a857e38d18d5f32a7882db8"; + }; + } + { + name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; + path = fetchurl { + name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; + sha1 = "743298cef4e5af3e194161fbadcc2151d3a058e8"; + }; + } + { + name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; + path = fetchurl { + name = "hosted_git_info___hosted_git_info_2.7.1.tgz"; + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz"; + sha1 = "97f236977bd6e125408930ff6de3eec6281ec047"; + }; + } + { + name = "hpkp___hpkp_2.0.0.tgz"; + path = fetchurl { + name = "hpkp___hpkp_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz"; + sha1 = "10e142264e76215a5d30c44ec43de64dee6d1672"; + }; + } + { + name = "hsl_regex___hsl_regex_1.0.0.tgz"; + path = fetchurl { + name = "hsl_regex___hsl_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/hsl-regex/-/hsl-regex-1.0.0.tgz"; + sha1 = "d49330c789ed819e276a4c0d272dffa30b18fe6e"; + }; + } + { + name = "hsla_regex___hsla_regex_1.0.0.tgz"; + path = fetchurl { + name = "hsla_regex___hsla_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz"; + sha1 = "c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"; + }; + } + { + name = "hsts___hsts_2.2.0.tgz"; + path = fetchurl { + name = "hsts___hsts_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz"; + sha1 = "09119d42f7a8587035d027dda4522366fe75d964"; + }; + } + { + name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; + path = fetchurl { + name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; + sha1 = "97d4688aeb5c81886a364faa0cad1dda14d433a7"; + }; + } + { + name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; + path = fetchurl { + name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; + sha1 = "e70d84b94da53aa375e11fe3a351be6642ca46f8"; + }; + } + { + name = "html_minifier___html_minifier_3.5.21.tgz"; + path = fetchurl { + name = "html_minifier___html_minifier_3.5.21.tgz"; + url = "https://registry.yarnpkg.com/html-minifier/-/html-minifier-3.5.21.tgz"; + sha1 = "d0040e054730e354db008463593194015212d20c"; + }; + } + { + name = "html_webpack_plugin___html_webpack_plugin_4.0.0_beta.2.tgz"; + path = fetchurl { + name = "html_webpack_plugin___html_webpack_plugin_4.0.0_beta.2.tgz"; + url = "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.0.0-beta.2.tgz"; + sha1 = "c3a212448ee198a17dacd06525678ee12f917420"; + }; + } + { + name = "htmlparser2___htmlparser2_3.10.1.tgz"; + path = fetchurl { + name = "htmlparser2___htmlparser2_3.10.1.tgz"; + url = "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz"; + sha1 = "bd679dc3f59897b6a34bb10749c855bb53a9392f"; + }; + } + { + name = "http_errors___http_errors_1.7.2.tgz"; + path = fetchurl { + name = "http_errors___http_errors_1.7.2.tgz"; + url = "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz"; + sha1 = "4f5029cf13239f31036e5b2e55292bcfbcc85c8f"; + }; + } + { + name = "http_signature___http_signature_1.2.0.tgz"; + path = fetchurl { + name = "http_signature___http_signature_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/http-signature/-/http-signature-1.2.0.tgz"; + sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; + }; + } + { + name = "https_browserify___https_browserify_1.0.0.tgz"; + path = fetchurl { + name = "https_browserify___https_browserify_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz"; + sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"; + }; + } + { + name = "i18n___i18n_0.8.3.tgz"; + path = fetchurl { + name = "i18n___i18n_0.8.3.tgz"; + url = "https://registry.yarnpkg.com/i18n/-/i18n-0.8.3.tgz"; + sha1 = "2d8cf1c24722602c2041d01ba6ae5eaa51388f0e"; + }; + } + { + name = "iconv_lite___iconv_lite_0.4.24.tgz"; + path = fetchurl { + name = "iconv_lite___iconv_lite_0.4.24.tgz"; + url = "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz"; + sha1 = "2022b4b25fbddc21d2f524974a474aafe733908b"; + }; + } + { + name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz"; + path = fetchurl { + name = "icss_replace_symbols___icss_replace_symbols_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz"; + sha1 = "06ea6f83679a7749e386cfe1fe812ae5db223ded"; + }; + } + { + name = "icss_utils___icss_utils_2.1.0.tgz"; + path = fetchurl { + name = "icss_utils___icss_utils_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-2.1.0.tgz"; + sha1 = "83f0a0ec378bf3246178b6c2ad9136f135b1c962"; + }; + } + { + name = "ieee754___ieee754_1.1.8.tgz"; + path = fetchurl { + name = "ieee754___ieee754_1.1.8.tgz"; + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.8.tgz"; + sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"; + }; + } + { + name = "ieee754___ieee754_1.1.13.tgz"; + path = fetchurl { + name = "ieee754___ieee754_1.1.13.tgz"; + url = "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz"; + sha1 = "ec168558e95aa181fd87d37f55c32bbcb6708b84"; + }; + } + { + name = "ienoopen___ienoopen_1.1.0.tgz"; + path = fetchurl { + name = "ienoopen___ienoopen_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/ienoopen/-/ienoopen-1.1.0.tgz"; + sha1 = "411e5d530c982287dbdc3bb31e7a9c9e32630974"; + }; + } + { + name = "iferr___iferr_0.1.5.tgz"; + path = fetchurl { + name = "iferr___iferr_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/iferr/-/iferr-0.1.5.tgz"; + sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"; + }; + } + { + name = "ignore_walk___ignore_walk_3.0.1.tgz"; + path = fetchurl { + name = "ignore_walk___ignore_walk_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz"; + sha1 = "a83e62e7d272ac0e3b551aaa82831a19b69f82f8"; + }; + } + { + name = "ignore___ignore_3.3.10.tgz"; + path = fetchurl { + name = "ignore___ignore_3.3.10.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz"; + sha1 = "0a97fb876986e8081c631160f8f9f389157f0043"; + }; + } + { + name = "ignore___ignore_4.0.6.tgz"; + path = fetchurl { + name = "ignore___ignore_4.0.6.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz"; + sha1 = "750e3db5862087b4737ebac8207ffd1ef27b25fc"; + }; + } + { + name = "ignore___ignore_5.1.2.tgz"; + path = fetchurl { + name = "ignore___ignore_5.1.2.tgz"; + url = "https://registry.yarnpkg.com/ignore/-/ignore-5.1.2.tgz"; + sha1 = "e28e584d43ad7e92f96995019cc43b9e1ac49558"; + }; + } + { + name = "ignorefs___ignorefs_1.2.0.tgz"; + path = fetchurl { + name = "ignorefs___ignorefs_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/ignorefs/-/ignorefs-1.2.0.tgz"; + sha1 = "da59fb858976e4a5e43702ccd1f282fdbc9e5756"; + }; + } + { + name = "ignorepatterns___ignorepatterns_1.1.0.tgz"; + path = fetchurl { + name = "ignorepatterns___ignorepatterns_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/ignorepatterns/-/ignorepatterns-1.1.0.tgz"; + sha1 = "ac8f436f2239b5dfb66d5f0d3a904a87ac67cc5e"; + }; + } + { + name = "image_size___image_size_0.5.5.tgz"; + path = fetchurl { + name = "image_size___image_size_0.5.5.tgz"; + url = "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz"; + sha1 = "09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c"; + }; + } + { + name = "node-imgur.git"; + path = + let + repo = fetchgit { + url = "https://github.com/hackmdio/node-imgur.git"; + rev = "4fe9cfa3893505c34c49067483d85d3ad4376cd6"; + sha256 = "1bixzclrs7lzpfkcxwmzl9kz6l2bjz0jz40bikdl1zhgc2zjiiv0"; + }; + in + runCommandNoCC "node-imgur.git" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "import_fresh___import_fresh_2.0.0.tgz"; + path = fetchurl { + name = "import_fresh___import_fresh_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz"; + sha1 = "d81355c15612d386c61f9ddd3922d4304822a546"; + }; + } + { + name = "import_fresh___import_fresh_3.0.0.tgz"; + path = fetchurl { + name = "import_fresh___import_fresh_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz"; + sha1 = "a3d897f420cab0e671236897f75bc14b4885c390"; + }; + } + { + name = "import_local___import_local_2.0.0.tgz"; + path = fetchurl { + name = "import_local___import_local_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz"; + sha1 = "55070be38a5993cf18ef6db7e961f5bee5c5a09d"; + }; + } + { + name = "imports_loader___imports_loader_0.8.0.tgz"; + path = fetchurl { + name = "imports_loader___imports_loader_0.8.0.tgz"; + url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz"; + sha1 = "030ea51b8ca05977c40a3abfd9b4088fe0be9a69"; + }; + } + { + name = "imurmurhash___imurmurhash_0.1.4.tgz"; + path = fetchurl { + name = "imurmurhash___imurmurhash_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz"; + sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; + }; + } + { + name = "indexes_of___indexes_of_1.0.1.tgz"; + path = fetchurl { + name = "indexes_of___indexes_of_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz"; + sha1 = "f30f716c8e2bd346c7b67d3df3915566a7c05607"; + }; + } + { + name = "indexof___indexof_0.0.1.tgz"; + path = fetchurl { + name = "indexof___indexof_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz"; + sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; + }; + } + { + name = "inflection___inflection_1.12.0.tgz"; + path = fetchurl { + name = "inflection___inflection_1.12.0.tgz"; + url = "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz"; + sha1 = "a200935656d6f5f6bc4dc7502e1aecb703228416"; + }; + } + { + name = "inflight___inflight_1.0.6.tgz"; + path = fetchurl { + name = "inflight___inflight_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz"; + sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; + }; + } + { + name = "inherits___inherits_1.0.2.tgz"; + path = fetchurl { + name = "inherits___inherits_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz"; + sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; + }; + } + { + name = "inherits___inherits_2.0.3.tgz"; + path = fetchurl { + name = "inherits___inherits_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz"; + sha1 = "633c2c83e3da42a502f52466022480f4208261de"; + }; + } + { + name = "inherits___inherits_2.0.1.tgz"; + path = fetchurl { + name = "inherits___inherits_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz"; + sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; + }; + } + { + name = "ini___ini_1.3.5.tgz"; + path = fetchurl { + name = "ini___ini_1.3.5.tgz"; + url = "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz"; + sha1 = "eee25f56db1c9ec6085e0c22778083f596abf927"; + }; + } + { + name = "inquirer___inquirer_6.3.1.tgz"; + path = fetchurl { + name = "inquirer___inquirer_6.3.1.tgz"; + url = "https://registry.yarnpkg.com/inquirer/-/inquirer-6.3.1.tgz"; + sha1 = "7a413b5e7950811013a3db491c61d1f3b776e8e7"; + }; + } + { + name = "interpret___interpret_1.2.0.tgz"; + path = fetchurl { + name = "interpret___interpret_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz"; + sha1 = "d5061a6224be58e8083985f5014d844359576296"; + }; + } + { + name = "invariant___invariant_2.2.4.tgz"; + path = fetchurl { + name = "invariant___invariant_2.2.4.tgz"; + url = "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz"; + sha1 = "610f3c92c9359ce1db616e538008d23ff35158e6"; + }; + } + { + name = "invert_kv___invert_kv_1.0.0.tgz"; + path = fetchurl { + name = "invert_kv___invert_kv_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz"; + sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; + }; + } + { + name = "invert_kv___invert_kv_2.0.0.tgz"; + path = fetchurl { + name = "invert_kv___invert_kv_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/invert-kv/-/invert-kv-2.0.0.tgz"; + sha1 = "7393f5afa59ec9ff5f67a27620d11c226e3eec02"; + }; + } + { + name = "ionicons___ionicons_2.0.1.tgz"; + path = fetchurl { + name = "ionicons___ionicons_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/ionicons/-/ionicons-2.0.1.tgz"; + sha1 = "ca398113293ea870244f538f0aabbd4b5b209a3e"; + }; + } + { + name = "ipaddr.js___ipaddr.js_1.9.0.tgz"; + path = fetchurl { + name = "ipaddr.js___ipaddr.js_1.9.0.tgz"; + url = "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz"; + sha1 = "37df74e430a0e47550fe54a2defe30d8acd95f65"; + }; + } + { + name = "is_absolute_url___is_absolute_url_2.1.0.tgz"; + path = fetchurl { + name = "is_absolute_url___is_absolute_url_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-absolute-url/-/is-absolute-url-2.1.0.tgz"; + sha1 = "50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"; + }; + } + { + name = "is_absolute___is_absolute_1.0.0.tgz"; + path = fetchurl { + name = "is_absolute___is_absolute_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz"; + sha1 = "395e1ae84b11f26ad1795e73c17378e48a301576"; + }; + } + { + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; + path = fetchurl { + name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; + sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; + }; + } + { + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; + path = fetchurl { + name = "is_accessor_descriptor___is_accessor_descriptor_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; + sha1 = "169c2f6d3df1f992618072365c9b0ea1f6878656"; + }; + } + { + name = "is_arrayish___is_arrayish_0.2.1.tgz"; + path = fetchurl { + name = "is_arrayish___is_arrayish_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz"; + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; + }; + } + { + name = "is_arrayish___is_arrayish_0.3.2.tgz"; + path = fetchurl { + name = "is_arrayish___is_arrayish_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz"; + sha1 = "4574a2ae56f7ab206896fb431eaeed066fdf8f03"; + }; + } + { + name = "is_binary_path___is_binary_path_1.0.1.tgz"; + path = fetchurl { + name = "is_binary_path___is_binary_path_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz"; + sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; + }; + } + { + name = "is_buffer___is_buffer_1.1.6.tgz"; + path = fetchurl { + name = "is_buffer___is_buffer_1.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz"; + sha1 = "efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"; + }; + } + { + name = "is_callable___is_callable_1.1.4.tgz"; + path = fetchurl { + name = "is_callable___is_callable_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.1.4.tgz"; + sha1 = "1e1adf219e1eeb684d691f9d6a05ff0d30a24d75"; + }; + } + { + name = "is_color_stop___is_color_stop_1.1.0.tgz"; + path = fetchurl { + name = "is_color_stop___is_color_stop_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-color-stop/-/is-color-stop-1.1.0.tgz"; + sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; + }; + } + { + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; + path = fetchurl { + name = "is_data_descriptor___is_data_descriptor_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; + sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; + }; + } + { + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; + path = fetchurl { + name = "is_data_descriptor___is_data_descriptor_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; + sha1 = "d84876321d0e7add03990406abbbbd36ba9268c7"; + }; + } + { + name = "is_date_object___is_date_object_1.0.1.tgz"; + path = fetchurl { + name = "is_date_object___is_date_object_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.1.tgz"; + sha1 = "9aa20eb6aeebbff77fbd33e74ca01b33581d3a16"; + }; + } + { + name = "is_descriptor___is_descriptor_0.1.6.tgz"; + path = fetchurl { + name = "is_descriptor___is_descriptor_0.1.6.tgz"; + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-0.1.6.tgz"; + sha1 = "366d8240dde487ca51823b1ab9f07a10a78251ca"; + }; + } + { + name = "is_descriptor___is_descriptor_1.0.2.tgz"; + path = fetchurl { + name = "is_descriptor___is_descriptor_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-descriptor/-/is-descriptor-1.0.2.tgz"; + sha1 = "3b159746a66604b04f8c81524ba365c5f14d86ec"; + }; + } + { + name = "is_directory___is_directory_0.3.1.tgz"; + path = fetchurl { + name = "is_directory___is_directory_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz"; + sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1"; + }; + } + { + name = "is_dotfile___is_dotfile_1.0.3.tgz"; + path = fetchurl { + name = "is_dotfile___is_dotfile_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/is-dotfile/-/is-dotfile-1.0.3.tgz"; + sha1 = "a6a2f32ffd2dfb04f5ca25ecd0f6b83cf798a1e1"; + }; + } + { + name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; + path = fetchurl { + name = "is_equal_shallow___is_equal_shallow_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; + sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534"; + }; + } + { + name = "is_extendable___is_extendable_0.1.1.tgz"; + path = fetchurl { + name = "is_extendable___is_extendable_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz"; + sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; + }; + } + { + name = "is_extendable___is_extendable_1.0.1.tgz"; + path = fetchurl { + name = "is_extendable___is_extendable_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-extendable/-/is-extendable-1.0.1.tgz"; + sha1 = "a7470f9e426733d81bd81e1155264e3a3507cab4"; + }; + } + { + name = "is_extglob___is_extglob_1.0.0.tgz"; + path = fetchurl { + name = "is_extglob___is_extglob_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-1.0.0.tgz"; + sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; + }; + } + { + name = "is_extglob___is_extglob_2.1.1.tgz"; + path = fetchurl { + name = "is_extglob___is_extglob_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz"; + sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; + }; + } + { + name = "is_finite___is_finite_1.0.2.tgz"; + path = fetchurl { + name = "is_finite___is_finite_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-finite/-/is-finite-1.0.2.tgz"; + sha1 = "cc6677695602be550ef11e8b4aa6305342b6d0aa"; + }; + } + { + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; + path = fetchurl { + name = "is_fullwidth_code_point___is_fullwidth_code_point_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; + sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; + }; + } + { + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; + path = fetchurl { + name = "is_fullwidth_code_point___is_fullwidth_code_point_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; + }; + } + { + name = "is_glob___is_glob_2.0.1.tgz"; + path = fetchurl { + name = "is_glob___is_glob_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-2.0.1.tgz"; + sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; + }; + } + { + name = "is_glob___is_glob_3.1.0.tgz"; + path = fetchurl { + name = "is_glob___is_glob_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz"; + sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; + }; + } + { + name = "is_glob___is_glob_4.0.1.tgz"; + path = fetchurl { + name = "is_glob___is_glob_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz"; + sha1 = "7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"; + }; + } + { + name = "is_number___is_number_2.1.0.tgz"; + path = fetchurl { + name = "is_number___is_number_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-number/-/is-number-2.1.0.tgz"; + sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; + }; + } + { + name = "is_number___is_number_3.0.0.tgz"; + path = fetchurl { + name = "is_number___is_number_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz"; + sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; + }; + } + { + name = "is_number___is_number_4.0.0.tgz"; + path = fetchurl { + name = "is_number___is_number_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-number/-/is-number-4.0.0.tgz"; + sha1 = "0026e37f5454d73e356dfe6564699867c6a7f0ff"; + }; + } + { + name = "is_obj___is_obj_1.0.1.tgz"; + path = fetchurl { + name = "is_obj___is_obj_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz"; + sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; + }; + } + { + name = "is_plain_object___is_plain_object_2.0.4.tgz"; + path = fetchurl { + name = "is_plain_object___is_plain_object_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz"; + sha1 = "2c163b3fafb1b606d9d17928f05c2a1c38e07677"; + }; + } + { + name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; + path = fetchurl { + name = "is_posix_bracket___is_posix_bracket_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; + sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; + }; + } + { + name = "is_primitive___is_primitive_2.0.0.tgz"; + path = fetchurl { + name = "is_primitive___is_primitive_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz"; + sha1 = "207bab91638499c07b2adf240a41a87210034575"; + }; + } + { + name = "is_promise___is_promise_2.1.0.tgz"; + path = fetchurl { + name = "is_promise___is_promise_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz"; + sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; + }; + } + { + name = "is_regex___is_regex_1.0.4.tgz"; + path = fetchurl { + name = "is_regex___is_regex_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz"; + sha1 = "5517489b547091b0930e095654ced25ee97e9491"; + }; + } + { + name = "is_relative___is_relative_1.0.0.tgz"; + path = fetchurl { + name = "is_relative___is_relative_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz"; + sha1 = "a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d"; + }; + } + { + name = "is_resolvable___is_resolvable_1.1.0.tgz"; + path = fetchurl { + name = "is_resolvable___is_resolvable_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz"; + sha1 = "fb18f87ce1feb925169c9a407c19318a3206ed88"; + }; + } + { + name = "is_stream___is_stream_1.1.0.tgz"; + path = fetchurl { + name = "is_stream___is_stream_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz"; + sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; + }; + } + { + name = "is_svg___is_svg_3.0.0.tgz"; + path = fetchurl { + name = "is_svg___is_svg_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz"; + sha1 = "9321dbd29c212e5ca99c4fa9794c714bcafa2f75"; + }; + } + { + name = "is_symbol___is_symbol_1.0.2.tgz"; + path = fetchurl { + name = "is_symbol___is_symbol_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.2.tgz"; + sha1 = "a055f6ae57192caee329e7a860118b497a950f38"; + }; + } + { + name = "is_typedarray___is_typedarray_1.0.0.tgz"; + path = fetchurl { + name = "is_typedarray___is_typedarray_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz"; + sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; + }; + } + { + name = "is_unc_path___is_unc_path_1.0.0.tgz"; + path = fetchurl { + name = "is_unc_path___is_unc_path_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz"; + sha1 = "d731e8898ed090a12c352ad2eaed5095ad322c9d"; + }; + } + { + name = "is_utf8___is_utf8_0.2.1.tgz"; + path = fetchurl { + name = "is_utf8___is_utf8_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz"; + sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; + }; + } + { + name = "is_windows___is_windows_0.2.0.tgz"; + path = fetchurl { + name = "is_windows___is_windows_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/is-windows/-/is-windows-0.2.0.tgz"; + sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c"; + }; + } + { + name = "is_windows___is_windows_1.0.2.tgz"; + path = fetchurl { + name = "is_windows___is_windows_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; + sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; + }; + } + { + name = "is_wsl___is_wsl_1.1.0.tgz"; + path = fetchurl { + name = "is_wsl___is_wsl_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz"; + sha1 = "1f16e4aa22b04d1336b66188a66af3c600c3a66d"; + }; + } + { + name = "isarray___isarray_0.0.1.tgz"; + path = fetchurl { + name = "isarray___isarray_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz"; + sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; + }; + } + { + name = "isarray___isarray_1.0.0.tgz"; + path = fetchurl { + name = "isarray___isarray_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; + }; + } + { + name = "isarray___isarray_2.0.1.tgz"; + path = fetchurl { + name = "isarray___isarray_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz"; + sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; + }; + } + { + name = "isexe___isexe_2.0.0.tgz"; + path = fetchurl { + name = "isexe___isexe_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz"; + sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; + }; + } + { + name = "isobject___isobject_2.1.0.tgz"; + path = fetchurl { + name = "isobject___isobject_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/isobject/-/isobject-2.1.0.tgz"; + sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; + }; + } + { + name = "isobject___isobject_3.0.1.tgz"; + path = fetchurl { + name = "isobject___isobject_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz"; + sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; + }; + } + { + name = "isstream___isstream_0.1.2.tgz"; + path = fetchurl { + name = "isstream___isstream_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; + sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; + }; + } + { + name = "jmespath___jmespath_0.15.0.tgz"; + path = fetchurl { + name = "jmespath___jmespath_0.15.0.tgz"; + url = "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz"; + sha1 = "a3f222a9aae9f966f5d27c796510e28091764217"; + }; + } + { + name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz"; + path = fetchurl { + name = "jquery_mousewheel___jquery_mousewheel_3.1.13.tgz"; + url = "https://registry.yarnpkg.com/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz"; + sha1 = "06f0335f16e353a695e7206bf50503cb523a6ee5"; + }; + } + { + name = "jquery_ui___jquery_ui_1.12.1.tgz"; + path = fetchurl { + name = "jquery_ui___jquery_ui_1.12.1.tgz"; + url = "https://registry.yarnpkg.com/jquery-ui/-/jquery-ui-1.12.1.tgz"; + sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; + }; + } + { + name = "jquery___jquery_3.4.1.tgz"; + path = fetchurl { + name = "jquery___jquery_3.4.1.tgz"; + url = "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz"; + sha1 = "714f1f8d9dde4bdfa55764ba37ef214630d80ef2"; + }; + } + { + name = "js_beautify___js_beautify_1.10.0.tgz"; + path = fetchurl { + name = "js_beautify___js_beautify_1.10.0.tgz"; + url = "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.0.tgz"; + sha1 = "9753a13c858d96828658cd18ae3ca0e5783ea672"; + }; + } + { + name = "js_cookie___js_cookie_2.2.0.tgz"; + path = fetchurl { + name = "js_cookie___js_cookie_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/js-cookie/-/js-cookie-2.2.0.tgz"; + sha1 = "1b2c279a6eece380a12168b92485265b35b1effb"; + }; + } + { + name = "js-sequence-diagrams.git"; + path = + let + repo = fetchgit { + url = "https://github.com/codimd/js-sequence-diagrams.git"; + rev = "b9afa038521e5dadf9b97624a3c7db21890be669"; + sha256 = "12v57bdld5a2550xvqh1rcinpld48awgd1s0gbny7z0b0z827ggw"; + }; + in + runCommandNoCC "js-sequence-diagrams.git" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "js_string_escape___js_string_escape_1.0.1.tgz"; + path = fetchurl { + name = "js_string_escape___js_string_escape_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/js-string-escape/-/js-string-escape-1.0.1.tgz"; + sha1 = "e2625badbc0d67c7533e9edc1068c587ae4137ef"; + }; + } + { + name = "js_tokens___js_tokens_4.0.0.tgz"; + path = fetchurl { + name = "js_tokens___js_tokens_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz"; + sha1 = "19203fb59991df98e3a287050d4647cdeaf32499"; + }; + } + { + name = "js_tokens___js_tokens_3.0.2.tgz"; + path = fetchurl { + name = "js_tokens___js_tokens_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz"; + sha1 = "9866df395102130e38f7f996bceb65443209c25b"; + }; + } + { + name = "js_yaml___js_yaml_3.13.1.tgz"; + path = fetchurl { + name = "js_yaml___js_yaml_3.13.1.tgz"; + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz"; + sha1 = "aff151b30bfdfa8e49e05da22e7415e9dfa37847"; + }; + } + { + name = "jsbn___jsbn_0.1.1.tgz"; + path = fetchurl { + name = "jsbn___jsbn_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz"; + sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; + }; + } + { + name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz"; + path = fetchurl { + name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz"; + url = "https://registry.yarnpkg.com/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; + sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; + }; + } + { + name = "jsdom___jsdom_11.12.0.tgz"; + path = fetchurl { + name = "jsdom___jsdom_11.12.0.tgz"; + url = "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz"; + sha1 = "1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"; + }; + } + { + name = "jsesc___jsesc_1.3.0.tgz"; + path = fetchurl { + name = "jsesc___jsesc_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz"; + sha1 = "46c3fec8c1892b12b0833db9bc7622176dbab34b"; + }; + } + { + name = "jsesc___jsesc_0.5.0.tgz"; + path = fetchurl { + name = "jsesc___jsesc_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz"; + sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; + }; + } + { + name = "json_edm_parser___json_edm_parser_0.1.2.tgz"; + path = fetchurl { + name = "json_edm_parser___json_edm_parser_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/json-edm-parser/-/json-edm-parser-0.1.2.tgz"; + sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4"; + }; + } + { + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; + path = fetchurl { + name = "json_parse_better_errors___json_parse_better_errors_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; + sha1 = "bb867cfb3450e69107c131d1c514bab3dc8bcaa9"; + }; + } + { + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; + path = fetchurl { + name = "json_schema_traverse___json_schema_traverse_0.4.1.tgz"; + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; + sha1 = "69f6a87d9513ab8bb8fe63bdb0979c448e684660"; + }; + } + { + name = "json_schema___json_schema_0.2.3.tgz"; + path = fetchurl { + name = "json_schema___json_schema_0.2.3.tgz"; + url = "https://registry.yarnpkg.com/json-schema/-/json-schema-0.2.3.tgz"; + sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; + }; + } + { + name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; + path = fetchurl { + name = "json_stable_stringify_without_jsonify___json_stable_stringify_without_jsonify_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"; + sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; + }; + } + { + name = "json_stream___json_stream_1.0.0.tgz"; + path = fetchurl { + name = "json_stream___json_stream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/json-stream/-/json-stream-1.0.0.tgz"; + sha1 = "1a3854e28d2bbeeab31cc7ddf683d2ddc5652708"; + }; + } + { + name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; + path = fetchurl { + name = "json_stringify_safe___json_stringify_safe_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; + sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; + }; + } + { + name = "json5___json5_0.5.1.tgz"; + path = fetchurl { + name = "json5___json5_0.5.1.tgz"; + url = "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz"; + sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; + }; + } + { + name = "json5___json5_1.0.1.tgz"; + path = fetchurl { + name = "json5___json5_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz"; + sha1 = "779fb0018604fa854eacbf6252180d83543e3dbe"; + }; + } + { + name = "jsonfile___jsonfile_2.4.0.tgz"; + path = fetchurl { + name = "jsonfile___jsonfile_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-2.4.0.tgz"; + sha1 = "3736a2b428b87bbda0cc83b53fa3d633a35c2ae8"; + }; + } + { + name = "jsonfile___jsonfile_4.0.0.tgz"; + path = fetchurl { + name = "jsonfile___jsonfile_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; + sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; + }; + } + { + name = "jsonlint___jsonlint_1.6.3.tgz"; + path = fetchurl { + name = "jsonlint___jsonlint_1.6.3.tgz"; + url = "https://registry.yarnpkg.com/jsonlint/-/jsonlint-1.6.3.tgz"; + sha1 = "cb5e31efc0b78291d0d862fbef05900adf212988"; + }; + } + { + name = "jsonparse___jsonparse_1.2.0.tgz"; + path = fetchurl { + name = "jsonparse___jsonparse_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/jsonparse/-/jsonparse-1.2.0.tgz"; + sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd"; + }; + } + { + name = "jsprim___jsprim_1.4.1.tgz"; + path = fetchurl { + name = "jsprim___jsprim_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz"; + sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; + }; + } + { + name = "kew___kew_0.7.0.tgz"; + path = fetchurl { + name = "kew___kew_0.7.0.tgz"; + url = "https://registry.yarnpkg.com/kew/-/kew-0.7.0.tgz"; + sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; + }; + } + { + name = "keymaster___keymaster_1.6.2.tgz"; + path = fetchurl { + name = "keymaster___keymaster_1.6.2.tgz"; + url = "https://registry.yarnpkg.com/keymaster/-/keymaster-1.6.2.tgz"; + sha1 = "e1ae54d0ea9488f9f60b66b668f02e9a1946c6eb"; + }; + } + { + name = "kind_of___kind_of_3.2.2.tgz"; + path = fetchurl { + name = "kind_of___kind_of_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz"; + sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; + }; + } + { + name = "kind_of___kind_of_4.0.0.tgz"; + path = fetchurl { + name = "kind_of___kind_of_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-4.0.0.tgz"; + sha1 = "20813df3d712928b207378691a45066fae72dd57"; + }; + } + { + name = "kind_of___kind_of_5.1.0.tgz"; + path = fetchurl { + name = "kind_of___kind_of_5.1.0.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-5.1.0.tgz"; + sha1 = "729c91e2d857b7a419a1f9aa65685c4c33f5845d"; + }; + } + { + name = "kind_of___kind_of_6.0.2.tgz"; + path = fetchurl { + name = "kind_of___kind_of_6.0.2.tgz"; + url = "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz"; + sha1 = "01146b36a6218e64e58f3a8d66de5d7fc6f6d051"; + }; + } + { + name = "klaw___klaw_1.3.1.tgz"; + path = fetchurl { + name = "klaw___klaw_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/klaw/-/klaw-1.3.1.tgz"; + sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439"; + }; + } + { + name = "kuler___kuler_1.0.1.tgz"; + path = fetchurl { + name = "kuler___kuler_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/kuler/-/kuler-1.0.1.tgz"; + sha1 = "ef7c784f36c9fb6e16dd3150d152677b2b0228a6"; + }; + } + { + name = "last_call_webpack_plugin___last_call_webpack_plugin_3.0.0.tgz"; + path = fetchurl { + name = "last_call_webpack_plugin___last_call_webpack_plugin_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz"; + sha1 = "9742df0e10e3cf46e5c0381c2de90d3a7a2d7555"; + }; + } + { + name = "lazy_cache___lazy_cache_1.0.4.tgz"; + path = fetchurl { + name = "lazy_cache___lazy_cache_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/lazy-cache/-/lazy-cache-1.0.4.tgz"; + sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; + }; + } + { + name = "lazystream___lazystream_1.0.0.tgz"; + path = fetchurl { + name = "lazystream___lazystream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.0.tgz"; + sha1 = "f6995fe0f820392f61396be89462407bb77168e4"; + }; + } + { + name = "lcid___lcid_1.0.0.tgz"; + path = fetchurl { + name = "lcid___lcid_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz"; + sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; + }; + } + { + name = "lcid___lcid_2.0.0.tgz"; + path = fetchurl { + name = "lcid___lcid_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/lcid/-/lcid-2.0.0.tgz"; + sha1 = "6ef5d2df60e52f82eb228a4c373e8d1f397253cf"; + }; + } + { + name = "ldap_filter___ldap_filter_0.2.2.tgz"; + path = fetchurl { + name = "ldap_filter___ldap_filter_0.2.2.tgz"; + url = "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.2.2.tgz"; + sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; + }; + } + { + name = "ldapauth_fork___ldapauth_fork_4.2.0.tgz"; + path = fetchurl { + name = "ldapauth_fork___ldapauth_fork_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-4.2.0.tgz"; + sha1 = "3d2f809f973deb127a35eb523135661b7013e9d9"; + }; + } + { + name = "ldapjs___ldapjs_1.0.2.tgz"; + path = fetchurl { + name = "ldapjs___ldapjs_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/ldapjs/-/ldapjs-1.0.2.tgz"; + sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; + }; + } + { + name = "left_pad___left_pad_1.3.0.tgz"; + path = fetchurl { + name = "left_pad___left_pad_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz"; + sha1 = "5b8a3a7765dfe001261dde915589e782f8c94d1e"; + }; + } + { + name = "less_loader___less_loader_4.1.0.tgz"; + path = fetchurl { + name = "less_loader___less_loader_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/less-loader/-/less-loader-4.1.0.tgz"; + sha1 = "2c1352c5b09a4f84101490274fd51674de41363e"; + }; + } + { + name = "less___less_2.7.3.tgz"; + path = fetchurl { + name = "less___less_2.7.3.tgz"; + url = "https://registry.yarnpkg.com/less/-/less-2.7.3.tgz"; + sha1 = "cc1260f51c900a9ec0d91fb6998139e02507b63b"; + }; + } + { + name = "levn___levn_0.3.0.tgz"; + path = fetchurl { + name = "levn___levn_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; + sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; + }; + } + { + name = "liftoff___liftoff_2.5.0.tgz"; + path = fetchurl { + name = "liftoff___liftoff_2.5.0.tgz"; + url = "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz"; + sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec"; + }; + } + { + name = "linkify_it___linkify_it_2.1.0.tgz"; + path = fetchurl { + name = "linkify_it___linkify_it_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.1.0.tgz"; + sha1 = "c4caf38a6cd7ac2212ef3c7d2bde30a91561f9db"; + }; + } + { + name = "list.js___list.js_1.5.0.tgz"; + path = fetchurl { + name = "list.js___list.js_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/list.js/-/list.js-1.5.0.tgz"; + sha1 = "a4cbfc8281ddefc02fdb2d30c8748bfae25fbcda"; + }; + } + { + name = "load_json_file___load_json_file_2.0.0.tgz"; + path = fetchurl { + name = "load_json_file___load_json_file_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz"; + sha1 = "7947e42149af80d696cbf797bcaabcfe1fe29ca8"; + }; + } + { + name = "loader_runner___loader_runner_2.4.0.tgz"; + path = fetchurl { + name = "loader_runner___loader_runner_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz"; + sha1 = "ed47066bfe534d7e84c4c7b9998c2a75607d9357"; + }; + } + { + name = "loader_utils___loader_utils_0.2.17.tgz"; + path = fetchurl { + name = "loader_utils___loader_utils_0.2.17.tgz"; + url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-0.2.17.tgz"; + sha1 = "f86e6374d43205a6e6c60e9196f17c0299bfb348"; + }; + } + { + name = "loader_utils___loader_utils_1.2.3.tgz"; + path = fetchurl { + name = "loader_utils___loader_utils_1.2.3.tgz"; + url = "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz"; + sha1 = "1ff5dc6911c9f0a062531a4c04b609406108c2c7"; + }; + } + { + name = "locate_path___locate_path_2.0.0.tgz"; + path = fetchurl { + name = "locate_path___locate_path_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz"; + sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; + }; + } + { + name = "locate_path___locate_path_3.0.0.tgz"; + path = fetchurl { + name = "locate_path___locate_path_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz"; + sha1 = "dbec3b3ab759758071b58fe59fc41871af21400e"; + }; + } + { + name = "lodash._basecopy___lodash._basecopy_3.0.1.tgz"; + path = fetchurl { + name = "lodash._basecopy___lodash._basecopy_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; + sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"; + }; + } + { + name = "lodash._basetostring___lodash._basetostring_3.0.1.tgz"; + path = fetchurl { + name = "lodash._basetostring___lodash._basetostring_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; + sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5"; + }; + } + { + name = "lodash._basevalues___lodash._basevalues_3.0.0.tgz"; + path = fetchurl { + name = "lodash._basevalues___lodash._basevalues_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; + sha1 = "5b775762802bde3d3297503e26300820fdf661b7"; + }; + } + { + name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; + path = fetchurl { + name = "lodash._getnative___lodash._getnative_3.9.1.tgz"; + url = "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; + sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5"; + }; + } + { + name = "lodash._isiterateecall___lodash._isiterateecall_3.0.9.tgz"; + path = fetchurl { + name = "lodash._isiterateecall___lodash._isiterateecall_3.0.9.tgz"; + url = "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; + sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; + }; + } + { + name = "lodash._reescape___lodash._reescape_3.0.0.tgz"; + path = fetchurl { + name = "lodash._reescape___lodash._reescape_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; + sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"; + }; + } + { + name = "lodash._reevaluate___lodash._reevaluate_3.0.0.tgz"; + path = fetchurl { + name = "lodash._reevaluate___lodash._reevaluate_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; + sha1 = "58bc74c40664953ae0b124d806996daca431e2ed"; + }; + } + { + name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz"; + path = fetchurl { + name = "lodash._reinterpolate___lodash._reinterpolate_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; + sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; + }; + } + { + name = "lodash._root___lodash._root_3.0.1.tgz"; + path = fetchurl { + name = "lodash._root___lodash._root_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz"; + sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692"; + }; + } + { + name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; + path = fetchurl { + name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz"; + sha1 = "ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"; + }; + } + { + name = "lodash.bind___lodash.bind_4.2.1.tgz"; + path = fetchurl { + name = "lodash.bind___lodash.bind_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz"; + sha1 = "7ae3017e939622ac31b7d7d7dcb1b34db1690d35"; + }; + } + { + name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; + path = fetchurl { + name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz"; + sha1 = "d09178716ffea4dde9e5fb7b37f6f0802274580c"; + }; + } + { + name = "lodash.escape___lodash.escape_3.2.0.tgz"; + path = fetchurl { + name = "lodash.escape___lodash.escape_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz"; + sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; + }; + } + { + name = "lodash.filter___lodash.filter_4.6.0.tgz"; + path = fetchurl { + name = "lodash.filter___lodash.filter_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.filter/-/lodash.filter-4.6.0.tgz"; + sha1 = "668b1d4981603ae1cc5a6fa760143e480b4c4ace"; + }; + } + { + name = "lodash.flatten___lodash.flatten_4.4.0.tgz"; + path = fetchurl { + name = "lodash.flatten___lodash.flatten_4.4.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz"; + sha1 = "f31c22225a9632d2bbf8e4addbef240aa765a61f"; + }; + } + { + name = "lodash.foreach___lodash.foreach_4.5.0.tgz"; + path = fetchurl { + name = "lodash.foreach___lodash.foreach_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; + sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; + }; + } + { + name = "lodash.isarguments___lodash.isarguments_3.1.0.tgz"; + path = fetchurl { + name = "lodash.isarguments___lodash.isarguments_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz"; + sha1 = "2f573d85c6a24289ff00663b491c1d338ff3458a"; + }; + } + { + name = "lodash.isarray___lodash.isarray_3.0.4.tgz"; + path = fetchurl { + name = "lodash.isarray___lodash.isarray_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz"; + sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55"; + }; + } + { + name = "lodash.keys___lodash.keys_3.1.2.tgz"; + path = fetchurl { + name = "lodash.keys___lodash.keys_3.1.2.tgz"; + url = "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz"; + sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; + }; + } + { + name = "lodash.map___lodash.map_4.6.0.tgz"; + path = fetchurl { + name = "lodash.map___lodash.map_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz"; + sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; + }; + } + { + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; + path = fetchurl { + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; + sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; + }; + } + { + name = "lodash.merge___lodash.merge_4.6.1.tgz"; + path = fetchurl { + name = "lodash.merge___lodash.merge_4.6.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz"; + sha1 = "adc25d9cb99b9391c59624f379fbba60d7111d54"; + }; + } + { + name = "lodash.pick___lodash.pick_4.4.0.tgz"; + path = fetchurl { + name = "lodash.pick___lodash.pick_4.4.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz"; + sha1 = "52f05610fff9ded422611441ed1fc123a03001b3"; + }; + } + { + name = "lodash.reduce___lodash.reduce_4.6.0.tgz"; + path = fetchurl { + name = "lodash.reduce___lodash.reduce_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.reduce/-/lodash.reduce-4.6.0.tgz"; + sha1 = "f1ab6b839299ad48f784abbf476596f03b914d3b"; + }; + } + { + name = "lodash.reject___lodash.reject_4.6.0.tgz"; + path = fetchurl { + name = "lodash.reject___lodash.reject_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.reject/-/lodash.reject-4.6.0.tgz"; + sha1 = "80d6492dc1470864bbf583533b651f42a9f52415"; + }; + } + { + name = "lodash.restparam___lodash.restparam_3.6.1.tgz"; + path = fetchurl { + name = "lodash.restparam___lodash.restparam_3.6.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz"; + sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805"; + }; + } + { + name = "lodash.some___lodash.some_4.6.0.tgz"; + path = fetchurl { + name = "lodash.some___lodash.some_4.6.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz"; + sha1 = "1bb9f314ef6b8baded13b549169b2a945eb68e4d"; + }; + } + { + name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; + path = fetchurl { + name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; + sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; + }; + } + { + name = "lodash.template___lodash.template_3.6.2.tgz"; + path = fetchurl { + name = "lodash.template___lodash.template_3.6.2.tgz"; + url = "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz"; + sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f"; + }; + } + { + name = "lodash.templatesettings___lodash.templatesettings_3.1.1.tgz"; + path = fetchurl { + name = "lodash.templatesettings___lodash.templatesettings_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; + sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5"; + }; + } + { + name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; + path = fetchurl { + name = "lodash.uniq___lodash.uniq_4.5.0.tgz"; + url = "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; + sha1 = "d0225373aeb652adc1bc82e4945339a842754773"; + }; + } + { + name = "lodash___lodash_4.17.11.tgz"; + path = fetchurl { + name = "lodash___lodash_4.17.11.tgz"; + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz"; + sha1 = "b39ea6229ef607ecd89e2c8df12536891cac9b8d"; + }; + } + { + name = "lodash___lodash_1.0.2.tgz"; + path = fetchurl { + name = "lodash___lodash_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz"; + sha1 = "8f57560c83b59fc270bd3d561b690043430e2551"; + }; + } + { + name = "logform___logform_2.1.2.tgz"; + path = fetchurl { + name = "logform___logform_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/logform/-/logform-2.1.2.tgz"; + sha1 = "957155ebeb67a13164069825ce67ddb5bb2dd360"; + }; + } + { + name = "longest___longest_1.0.1.tgz"; + path = fetchurl { + name = "longest___longest_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/longest/-/longest-1.0.1.tgz"; + sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; + }; + } + { + name = "loose_envify___loose_envify_1.4.0.tgz"; + path = fetchurl { + name = "loose_envify___loose_envify_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz"; + sha1 = "71ee51fa7be4caec1a63839f7e682d8132d30caf"; + }; + } + { + name = "lower_case___lower_case_1.1.4.tgz"; + path = fetchurl { + name = "lower_case___lower_case_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/lower-case/-/lower-case-1.1.4.tgz"; + sha1 = "9a2cabd1b9e8e0ae993a4bf7d5875c39c42e8eac"; + }; + } + { + name = "lru_cache___lru_cache_4.1.5.tgz"; + path = fetchurl { + name = "lru_cache___lru_cache_4.1.5.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz"; + sha1 = "8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"; + }; + } + { + name = "lru_cache___lru_cache_5.1.1.tgz"; + path = fetchurl { + name = "lru_cache___lru_cache_5.1.1.tgz"; + url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz"; + sha1 = "1da27e6710271947695daf6848e847f01d84b920"; + }; + } + { + name = "lru_queue___lru_queue_0.1.0.tgz"; + path = fetchurl { + name = "lru_queue___lru_queue_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz"; + sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3"; + }; + } + { + name = "lutim___lutim_1.0.2.tgz"; + path = fetchurl { + name = "lutim___lutim_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/lutim/-/lutim-1.0.2.tgz"; + sha1 = "0b1e5a83c0c8d45900beb4eaf551e34f34f8a3e8"; + }; + } + { + name = "lz-string.git"; + path = + let + repo = fetchgit { + url = "https://github.com/hackmdio/lz-string.git"; + rev = "efd1f64676264d6d8871b01f4f375fc6ef4f9022"; + sha256 = "036v1a9z79mc961xxx0rw8p6n2w1z8bnqpapgfg2kbw8f87jfxyi"; + }; + in + runCommandNoCC "lz-string.git" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "magic_string___magic_string_0.25.2.tgz"; + path = fetchurl { + name = "magic_string___magic_string_0.25.2.tgz"; + url = "https://registry.yarnpkg.com/magic-string/-/magic-string-0.25.2.tgz"; + sha1 = "139c3a729515ec55e96e69e82a11fe890a293ad9"; + }; + } + { + name = "make_dir___make_dir_1.3.0.tgz"; + path = fetchurl { + name = "make_dir___make_dir_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz"; + sha1 = "79c1033b80515bd6d24ec9933e860ca75ee27f0c"; + }; + } + { + name = "make_dir___make_dir_2.1.0.tgz"; + path = fetchurl { + name = "make_dir___make_dir_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/make-dir/-/make-dir-2.1.0.tgz"; + sha1 = "5f0310e18b8be898cc07009295a30ae41e91e6f5"; + }; + } + { + name = "make_iterator___make_iterator_1.0.1.tgz"; + path = fetchurl { + name = "make_iterator___make_iterator_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz"; + sha1 = "29b33f312aa8f547c4a5e490f56afcec99133ad6"; + }; + } + { + name = "make_plural___make_plural_3.0.6.tgz"; + path = fetchurl { + name = "make_plural___make_plural_3.0.6.tgz"; + url = "https://registry.yarnpkg.com/make-plural/-/make-plural-3.0.6.tgz"; + sha1 = "2033a03bac290b8f3bb91258f65b9df7e8b01ca7"; + }; + } + { + name = "mamacro___mamacro_0.0.3.tgz"; + path = fetchurl { + name = "mamacro___mamacro_0.0.3.tgz"; + url = "https://registry.yarnpkg.com/mamacro/-/mamacro-0.0.3.tgz"; + sha1 = "ad2c9576197c9f1abf308d0787865bd975a3f3e4"; + }; + } + { + name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; + path = fetchurl { + name = "map_age_cleaner___map_age_cleaner_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; + sha1 = "7d583a7306434c055fe474b0f45078e6e1b4b92a"; + }; + } + { + name = "map_cache___map_cache_0.2.2.tgz"; + path = fetchurl { + name = "map_cache___map_cache_0.2.2.tgz"; + url = "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz"; + sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; + }; + } + { + name = "map_visit___map_visit_1.0.0.tgz"; + path = fetchurl { + name = "map_visit___map_visit_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/map-visit/-/map-visit-1.0.0.tgz"; + sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; + }; + } + { + name = "markdown_it_abbr___markdown_it_abbr_1.0.4.tgz"; + path = fetchurl { + name = "markdown_it_abbr___markdown_it_abbr_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz"; + sha1 = "d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8"; + }; + } + { + name = "markdown_it_container___markdown_it_container_2.0.0.tgz"; + path = fetchurl { + name = "markdown_it_container___markdown_it_container_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-2.0.0.tgz"; + sha1 = "0019b43fd02eefece2f1960a2895fba81a404695"; + }; + } + { + name = "markdown_it_deflist___markdown_it_deflist_2.0.3.tgz"; + path = fetchurl { + name = "markdown_it_deflist___markdown_it_deflist_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.0.3.tgz"; + sha1 = "5727db04184d3cb2bc6ee4a9641e3a1091d5fd6f"; + }; + } + { + name = "markdown_it_emoji___markdown_it_emoji_1.4.0.tgz"; + path = fetchurl { + name = "markdown_it_emoji___markdown_it_emoji_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz"; + sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc"; + }; + } + { + name = "markdown_it_footnote___markdown_it_footnote_3.0.1.tgz"; + path = fetchurl { + name = "markdown_it_footnote___markdown_it_footnote_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-footnote/-/markdown-it-footnote-3.0.1.tgz"; + sha1 = "7f3730747cacc86e2fe0bf8a17a710f34791517a"; + }; + } + { + name = "markdown_it_imsize___markdown_it_imsize_2.0.1.tgz"; + path = fetchurl { + name = "markdown_it_imsize___markdown_it_imsize_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz"; + sha1 = "cca0427905d05338a247cb9ca9d968c5cddd5170"; + }; + } + { + name = "markdown_it_ins___markdown_it_ins_2.0.0.tgz"; + path = fetchurl { + name = "markdown_it_ins___markdown_it_ins_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz"; + sha1 = "a5aa6a30f1e2f71e9497567cfdff40f1fde67483"; + }; + } + { + name = "markdown_it_mark___markdown_it_mark_2.0.0.tgz"; + path = fetchurl { + name = "markdown_it_mark___markdown_it_mark_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz"; + sha1 = "46a1aa947105aed8188978e0a016179e404f42c7"; + }; + } + { + name = "markdown_it_mathjax___markdown_it_mathjax_2.0.0.tgz"; + path = fetchurl { + name = "markdown_it_mathjax___markdown_it_mathjax_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-mathjax/-/markdown-it-mathjax-2.0.0.tgz"; + sha1 = "ae2b4f4c5c719a03f9e475c664f7b2685231d9e9"; + }; + } + { + name = "markdown_it_regexp___markdown_it_regexp_0.4.0.tgz"; + path = fetchurl { + name = "markdown_it_regexp___markdown_it_regexp_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-regexp/-/markdown-it-regexp-0.4.0.tgz"; + sha1 = "d64d713eecec55ce4cfdeb321750ecc099e2c2dc"; + }; + } + { + name = "markdown_it_sub___markdown_it_sub_1.0.0.tgz"; + path = fetchurl { + name = "markdown_it_sub___markdown_it_sub_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-sub/-/markdown-it-sub-1.0.0.tgz"; + sha1 = "375fd6026eae7ddcb012497f6411195ea1e3afe8"; + }; + } + { + name = "markdown_it_sup___markdown_it_sup_1.0.0.tgz"; + path = fetchurl { + name = "markdown_it_sup___markdown_it_sup_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz"; + sha1 = "cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3"; + }; + } + { + name = "markdown_it___markdown_it_8.4.2.tgz"; + path = fetchurl { + name = "markdown_it___markdown_it_8.4.2.tgz"; + url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-8.4.2.tgz"; + sha1 = "386f98998dc15a37722aa7722084f4020bdd9b54"; + }; + } + { + name = "markdown_pdf___markdown_pdf_9.0.0.tgz"; + path = fetchurl { + name = "markdown_pdf___markdown_pdf_9.0.0.tgz"; + url = "https://registry.yarnpkg.com/markdown-pdf/-/markdown-pdf-9.0.0.tgz"; + sha1 = "d699f29c3b6c41da4b9a2ec7d09ea8895daef146"; + }; + } + { + name = "marked___marked_0.6.2.tgz"; + path = fetchurl { + name = "marked___marked_0.6.2.tgz"; + url = "https://registry.yarnpkg.com/marked/-/marked-0.6.2.tgz"; + sha1 = "c574be8b545a8b48641456ca1dbe0e37b6dccc1a"; + }; + } + { + name = "math_interval_parser___math_interval_parser_1.1.0.tgz"; + path = fetchurl { + name = "math_interval_parser___math_interval_parser_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/math-interval-parser/-/math-interval-parser-1.1.0.tgz"; + sha1 = "dbeda5b06b3249973c6df6170fde2386f0afd893"; + }; + } + { + name = "math_random___math_random_1.0.4.tgz"; + path = fetchurl { + name = "math_random___math_random_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/math-random/-/math-random-1.0.4.tgz"; + sha1 = "5dd6943c938548267016d4e34f057583080c514c"; + }; + } + { + name = "mathjax___mathjax_2.7.5.tgz"; + path = fetchurl { + name = "mathjax___mathjax_2.7.5.tgz"; + url = "https://registry.yarnpkg.com/mathjax/-/mathjax-2.7.5.tgz"; + sha1 = "c9c5947f86f9be31651f5f3667d3c9a8bb01efe4"; + }; + } + { + name = "mattermost___mattermost_3.4.0.tgz"; + path = fetchurl { + name = "mattermost___mattermost_3.4.0.tgz"; + url = "https://registry.yarnpkg.com/mattermost/-/mattermost-3.4.0.tgz"; + sha1 = "7e4958e1bc96c7da7bc5f179dd2c6ae5035a8857"; + }; + } + { + name = "md5.js___md5.js_1.3.4.tgz"; + path = fetchurl { + name = "md5.js___md5.js_1.3.4.tgz"; + url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.4.tgz"; + sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; + }; + } + { + name = "md5.js___md5.js_1.3.5.tgz"; + path = fetchurl { + name = "md5.js___md5.js_1.3.5.tgz"; + url = "https://registry.yarnpkg.com/md5.js/-/md5.js-1.3.5.tgz"; + sha1 = "b5d07b8e3216e3e27cd728d72f70d1e6a342005f"; + }; + } + { + name = "mdn_data___mdn_data_1.1.4.tgz"; + path = fetchurl { + name = "mdn_data___mdn_data_1.1.4.tgz"; + url = "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz"; + sha1 = "50b5d4ffc4575276573c4eedb8780812a8419f01"; + }; + } + { + name = "mdurl___mdurl_1.0.1.tgz"; + path = fetchurl { + name = "mdurl___mdurl_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz"; + sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e"; + }; + } + { + name = "media_typer___media_typer_0.3.0.tgz"; + path = fetchurl { + name = "media_typer___media_typer_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz"; + sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; + }; + } + { + name = "mem___mem_1.1.0.tgz"; + path = fetchurl { + name = "mem___mem_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/mem/-/mem-1.1.0.tgz"; + sha1 = "5edd52b485ca1d900fe64895505399a0dfa45f76"; + }; + } + { + name = "mem___mem_4.3.0.tgz"; + path = fetchurl { + name = "mem___mem_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/mem/-/mem-4.3.0.tgz"; + sha1 = "461af497bc4ae09608cdb2e60eefb69bff744178"; + }; + } + { + name = "memoizee___memoizee_0.4.14.tgz"; + path = fetchurl { + name = "memoizee___memoizee_0.4.14.tgz"; + url = "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.14.tgz"; + sha1 = "07a00f204699f9a95c2d9e77218271c7cd610d57"; + }; + } + { + name = "memory_fs___memory_fs_0.4.1.tgz"; + path = fetchurl { + name = "memory_fs___memory_fs_0.4.1.tgz"; + url = "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz"; + sha1 = "3a9a20b8462523e447cfbc7e8bb80ed667bfc552"; + }; + } + { + name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; + path = fetchurl { + name = "merge_descriptors___merge_descriptors_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; + sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; + }; + } + { + name = "mermaid___mermaid_7.1.2.tgz"; + path = fetchurl { + name = "mermaid___mermaid_7.1.2.tgz"; + url = "https://registry.yarnpkg.com/mermaid/-/mermaid-7.1.2.tgz"; + sha1 = "6265728156c2e0891e004cba60a44022174487ad"; + }; + } + { + name = "messageformat___messageformat_0.3.1.tgz"; + path = fetchurl { + name = "messageformat___messageformat_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/messageformat/-/messageformat-0.3.1.tgz"; + sha1 = "e58fff8245e9b3971799e5b43db58b3e9417f5a2"; + }; + } + { + name = "meta-marked"; + path = + let + repo = fetchgit { + url = "https://github.com/codimd/meta-marked"; + rev = "04fd9775b38566e41b71e3e63bd78717d3eb4445"; + sha256 = "196dx12l1zlshhr2vy4qfbgz13xdj24fm6z1ddrbfj3f86gsd8vk"; + }; + in + runCommandNoCC "meta-marked" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "method_override___method_override_2.3.10.tgz"; + path = fetchurl { + name = "method_override___method_override_2.3.10.tgz"; + url = "https://registry.yarnpkg.com/method-override/-/method-override-2.3.10.tgz"; + sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4"; + }; + } + { + name = "methods___methods_1.1.2.tgz"; + path = fetchurl { + name = "methods___methods_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; + sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; + }; + } + { + name = "micromatch___micromatch_2.3.11.tgz"; + path = fetchurl { + name = "micromatch___micromatch_2.3.11.tgz"; + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz"; + sha1 = "86677c97d1720b363431d04d0d15293bd38c1565"; + }; + } + { + name = "micromatch___micromatch_3.1.10.tgz"; + path = fetchurl { + name = "micromatch___micromatch_3.1.10.tgz"; + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz"; + sha1 = "70859bc95c9840952f359a068a3fc49f9ecfac23"; + }; + } + { + name = "miller_rabin___miller_rabin_4.0.1.tgz"; + path = fetchurl { + name = "miller_rabin___miller_rabin_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/miller-rabin/-/miller-rabin-4.0.1.tgz"; + sha1 = "f080351c865b0dc562a8462966daa53543c78a4d"; + }; + } + { + name = "mime_db___mime_db_1.40.0.tgz"; + path = fetchurl { + name = "mime_db___mime_db_1.40.0.tgz"; + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz"; + sha1 = "a65057e998db090f732a68f6c276d387d4126c32"; + }; + } + { + name = "mime_types___mime_types_2.1.24.tgz"; + path = fetchurl { + name = "mime_types___mime_types_2.1.24.tgz"; + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz"; + sha1 = "b6f8d0b3e951efb77dedeca194cff6d16f676f81"; + }; + } + { + name = "mime___mime_1.3.4.tgz"; + path = fetchurl { + name = "mime___mime_1.3.4.tgz"; + url = "https://registry.yarnpkg.com/mime/-/mime-1.3.4.tgz"; + sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53"; + }; + } + { + name = "mime___mime_1.6.0.tgz"; + path = fetchurl { + name = "mime___mime_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz"; + sha1 = "32cd9e5c64553bd58d19a568af452acff04981b1"; + }; + } + { + name = "mime___mime_2.4.3.tgz"; + path = fetchurl { + name = "mime___mime_2.4.3.tgz"; + url = "https://registry.yarnpkg.com/mime/-/mime-2.4.3.tgz"; + sha1 = "229687331e86f68924e6cb59e1cdd937f18275fe"; + }; + } + { + name = "mimic_fn___mimic_fn_1.2.0.tgz"; + path = fetchurl { + name = "mimic_fn___mimic_fn_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; + sha1 = "820c86a39334640e99516928bd03fca88057d022"; + }; + } + { + name = "mimic_fn___mimic_fn_2.1.0.tgz"; + path = fetchurl { + name = "mimic_fn___mimic_fn_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; + sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"; + }; + } + { + name = "mini_css_extract_plugin___mini_css_extract_plugin_0.4.5.tgz"; + path = fetchurl { + name = "mini_css_extract_plugin___mini_css_extract_plugin_0.4.5.tgz"; + url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.4.5.tgz"; + sha1 = "c99e9e78d54f3fa775633aee5933aeaa4e80719a"; + }; + } + { + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; + path = fetchurl { + name = "minimalistic_assert___minimalistic_assert_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz"; + sha1 = "2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"; + }; + } + { + name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; + path = fetchurl { + name = "minimalistic_crypto_utils___minimalistic_crypto_utils_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz"; + sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"; + }; + } + { + name = "minimatch___minimatch_3.0.4.tgz"; + path = fetchurl { + name = "minimatch___minimatch_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz"; + sha1 = "5166e286457f03306064be5497e8dbb0c3d32083"; + }; + } + { + name = "minimist___minimist_0.0.8.tgz"; + path = fetchurl { + name = "minimist___minimist_0.0.8.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; + sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; + }; + } + { + name = "minimist___minimist_1.2.0.tgz"; + path = fetchurl { + name = "minimist___minimist_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz"; + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; + }; + } + { + name = "minimist___minimist_0.0.10.tgz"; + path = fetchurl { + name = "minimist___minimist_0.0.10.tgz"; + url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz"; + sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; + }; + } + { + name = "minio___minio_6.0.0.tgz"; + path = fetchurl { + name = "minio___minio_6.0.0.tgz"; + url = "https://registry.yarnpkg.com/minio/-/minio-6.0.0.tgz"; + sha1 = "7e514d38eaacf2264556b232f1c2c063cc6ca7ba"; + }; + } + { + name = "minipass___minipass_2.3.5.tgz"; + path = fetchurl { + name = "minipass___minipass_2.3.5.tgz"; + url = "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz"; + sha1 = "cacebe492022497f656b0f0f51e2682a9ed2d848"; + }; + } + { + name = "minizlib___minizlib_1.2.1.tgz"; + path = fetchurl { + name = "minizlib___minizlib_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz"; + sha1 = "dd27ea6136243c7c880684e8672bb3a45fd9b614"; + }; + } + { + name = "mississippi___mississippi_2.0.0.tgz"; + path = fetchurl { + name = "mississippi___mississippi_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/mississippi/-/mississippi-2.0.0.tgz"; + sha1 = "3442a508fafc28500486feea99409676e4ee5a6f"; + }; + } + { + name = "mississippi___mississippi_3.0.0.tgz"; + path = fetchurl { + name = "mississippi___mississippi_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz"; + sha1 = "ea0a3291f97e0b5e8776b363d5f0a12d94c67022"; + }; + } + { + name = "mixin_deep___mixin_deep_1.3.1.tgz"; + path = fetchurl { + name = "mixin_deep___mixin_deep_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz"; + sha1 = "a49e7268dce1a0d9698e45326c5626df3543d0fe"; + }; + } + { + name = "mkdirp___mkdirp_0.5.1.tgz"; + path = fetchurl { + name = "mkdirp___mkdirp_0.5.1.tgz"; + url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; + }; + } + { + name = "mocha___mocha_5.2.0.tgz"; + path = fetchurl { + name = "mocha___mocha_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz"; + sha1 = "6d8ae508f59167f940f2b5b3c4a612ae50c90ae6"; + }; + } + { + name = "mock_require___mock_require_3.0.3.tgz"; + path = fetchurl { + name = "mock_require___mock_require_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/mock-require/-/mock-require-3.0.3.tgz"; + sha1 = "ccd544d9eae81dd576b3f219f69ec867318a1946"; + }; + } + { + name = "moment_timezone___moment_timezone_0.5.25.tgz"; + path = fetchurl { + name = "moment_timezone___moment_timezone_0.5.25.tgz"; + url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.25.tgz"; + sha1 = "a11bfa2f74e088327f2cd4c08b3e7bdf55957810"; + }; + } + { + name = "moment___moment_2.24.0.tgz"; + path = fetchurl { + name = "moment___moment_2.24.0.tgz"; + url = "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz"; + sha1 = "0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"; + }; + } + { + name = "morgan___morgan_1.9.1.tgz"; + path = fetchurl { + name = "morgan___morgan_1.9.1.tgz"; + url = "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz"; + sha1 = "0a8d16734a1d9afbc824b99df87e738e58e2da59"; + }; + } + { + name = "move_concurrently___move_concurrently_1.0.1.tgz"; + path = fetchurl { + name = "move_concurrently___move_concurrently_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz"; + sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92"; + }; + } + { + name = "ms___ms_2.0.0.tgz"; + path = fetchurl { + name = "ms___ms_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz"; + sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; + }; + } + { + name = "ms___ms_2.1.1.tgz"; + path = fetchurl { + name = "ms___ms_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz"; + sha1 = "30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"; + }; + } + { + name = "multipipe___multipipe_0.1.2.tgz"; + path = fetchurl { + name = "multipipe___multipipe_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz"; + sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; + }; + } + { + name = "mustache___mustache_3.0.1.tgz"; + path = fetchurl { + name = "mustache___mustache_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/mustache/-/mustache-3.0.1.tgz"; + sha1 = "873855f23aa8a95b150fb96d9836edbc5a1d248a"; + }; + } + { + name = "mute_stream___mute_stream_0.0.7.tgz"; + path = fetchurl { + name = "mute_stream___mute_stream_0.0.7.tgz"; + url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; + sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; + }; + } + { + name = "mv___mv_2.1.1.tgz"; + path = fetchurl { + name = "mv___mv_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz"; + sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; + }; + } + { + name = "mysql___mysql_2.17.1.tgz"; + path = fetchurl { + name = "mysql___mysql_2.17.1.tgz"; + url = "https://registry.yarnpkg.com/mysql/-/mysql-2.17.1.tgz"; + sha1 = "62bba4a039a9b2f73638cd1652ce50fc6f682899"; + }; + } + { + name = "nan___nan_2.14.0.tgz"; + path = fetchurl { + name = "nan___nan_2.14.0.tgz"; + url = "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz"; + sha1 = "7818f722027b2459a86f0295d434d1fc2336c52c"; + }; + } + { + name = "nanomatch___nanomatch_1.2.13.tgz"; + path = fetchurl { + name = "nanomatch___nanomatch_1.2.13.tgz"; + url = "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz"; + sha1 = "b87a8aa4fc0de8fe6be88895b38983ff265bd119"; + }; + } + { + name = "natives___natives_1.1.6.tgz"; + path = fetchurl { + name = "natives___natives_1.1.6.tgz"; + url = "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz"; + sha1 = "a603b4a498ab77173612b9ea1acdec4d980f00bb"; + }; + } + { + name = "natural_compare___natural_compare_1.4.0.tgz"; + path = fetchurl { + name = "natural_compare___natural_compare_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; + sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; + }; + } + { + name = "ncp___ncp_2.0.0.tgz"; + path = fetchurl { + name = "ncp___ncp_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz"; + sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; + }; + } + { + name = "needle___needle_2.4.0.tgz"; + path = fetchurl { + name = "needle___needle_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz"; + sha1 = "6833e74975c444642590e15a750288c5f939b57c"; + }; + } + { + name = "negotiator___negotiator_0.6.2.tgz"; + path = fetchurl { + name = "negotiator___negotiator_0.6.2.tgz"; + url = "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz"; + sha1 = "feacf7ccf525a77ae9634436a64883ffeca346fb"; + }; + } + { + name = "neo_async___neo_async_2.6.1.tgz"; + path = fetchurl { + name = "neo_async___neo_async_2.6.1.tgz"; + url = "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz"; + sha1 = "ac27ada66167fa8849a6addd837f6b189ad2081c"; + }; + } + { + name = "next_tick___next_tick_1.0.0.tgz"; + path = fetchurl { + name = "next_tick___next_tick_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz"; + sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c"; + }; + } + { + name = "nice_try___nice_try_1.0.5.tgz"; + path = fetchurl { + name = "nice_try___nice_try_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; + sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; + }; + } + { + name = "no_case___no_case_2.3.2.tgz"; + path = fetchurl { + name = "no_case___no_case_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz"; + sha1 = "60b813396be39b3f1288a4c1ed5d1e7d28b464ac"; + }; + } + { + name = "nocache___nocache_2.1.0.tgz"; + path = fetchurl { + name = "nocache___nocache_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz"; + sha1 = "120c9ffec43b5729b1d5de88cd71aa75a0ba491f"; + }; + } + { + name = "node_forge___node_forge_0.7.6.tgz"; + path = fetchurl { + name = "node_forge___node_forge_0.7.6.tgz"; + url = "https://registry.yarnpkg.com/node-forge/-/node-forge-0.7.6.tgz"; + sha1 = "fdf3b418aee1f94f0ef642cd63486c77ca9724ac"; + }; + } + { + name = "node_gyp_build___node_gyp_build_3.7.0.tgz"; + path = fetchurl { + name = "node_gyp_build___node_gyp_build_3.7.0.tgz"; + url = "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-3.7.0.tgz"; + sha1 = "daa77a4f547b9aed3e2aac779eaf151afd60ec8d"; + }; + } + { + name = "node_libs_browser___node_libs_browser_2.2.0.tgz"; + path = fetchurl { + name = "node_libs_browser___node_libs_browser_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.0.tgz"; + sha1 = "c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77"; + }; + } + { + name = "node_pre_gyp___node_pre_gyp_0.11.0.tgz"; + path = fetchurl { + name = "node_pre_gyp___node_pre_gyp_0.11.0.tgz"; + url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.11.0.tgz"; + sha1 = "db1f33215272f692cd38f03238e3e9b47c5dd054"; + }; + } + { + name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz"; + path = fetchurl { + name = "node_pre_gyp___node_pre_gyp_0.12.0.tgz"; + url = "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz"; + sha1 = "39ba4bb1439da030295f899e3b520b7785766149"; + }; + } + { + name = "node_releases___node_releases_1.1.21.tgz"; + path = fetchurl { + name = "node_releases___node_releases_1.1.21.tgz"; + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.21.tgz"; + sha1 = "46c86f9adaceae4d63c75d3c2f2e6eee618e55f3"; + }; + } + { + name = "node_static___node_static_0.7.11.tgz"; + path = fetchurl { + name = "node_static___node_static_0.7.11.tgz"; + url = "https://registry.yarnpkg.com/node-static/-/node-static-0.7.11.tgz"; + sha1 = "60120d349f3cef533e4e820670057eb631882e7f"; + }; + } + { + name = "nomnom___nomnom_1.8.1.tgz"; + path = fetchurl { + name = "nomnom___nomnom_1.8.1.tgz"; + url = "https://registry.yarnpkg.com/nomnom/-/nomnom-1.8.1.tgz"; + sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; + }; + } + { + name = "nopt___nopt_4.0.1.tgz"; + path = fetchurl { + name = "nopt___nopt_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz"; + sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d"; + }; + } + { + name = "nopt___nopt_3.0.6.tgz"; + path = fetchurl { + name = "nopt___nopt_3.0.6.tgz"; + url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz"; + sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; + }; + } + { + name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; + path = fetchurl { + name = "normalize_package_data___normalize_package_data_2.5.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; + sha1 = "e66db1838b200c1dfc233225d12cb36520e234a8"; + }; + } + { + name = "normalize_path___normalize_path_2.1.1.tgz"; + path = fetchurl { + name = "normalize_path___normalize_path_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz"; + sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; + }; + } + { + name = "normalize_path___normalize_path_3.0.0.tgz"; + path = fetchurl { + name = "normalize_path___normalize_path_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz"; + sha1 = "0dcd69ff23a1c9b11fd0978316644a0388216a65"; + }; + } + { + name = "normalize_url___normalize_url_3.3.0.tgz"; + path = fetchurl { + name = "normalize_url___normalize_url_3.3.0.tgz"; + url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz"; + sha1 = "b2e1c4dc4f7c6d57743df733a4f5978d18650559"; + }; + } + { + name = "npm_bundled___npm_bundled_1.0.6.tgz"; + path = fetchurl { + name = "npm_bundled___npm_bundled_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz"; + sha1 = "e7ba9aadcef962bb61248f91721cd932b3fe6bdd"; + }; + } + { + name = "npm_packlist___npm_packlist_1.4.1.tgz"; + path = fetchurl { + name = "npm_packlist___npm_packlist_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz"; + sha1 = "19064cdf988da80ea3cee45533879d90192bbfbc"; + }; + } + { + name = "npm_run_path___npm_run_path_2.0.2.tgz"; + path = fetchurl { + name = "npm_run_path___npm_run_path_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz"; + sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; + }; + } + { + name = "npmlog___npmlog_4.1.2.tgz"; + path = fetchurl { + name = "npmlog___npmlog_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz"; + sha1 = "08a7f2a8bf734604779a9efa4ad5cc717abb954b"; + }; + } + { + name = "nth_check___nth_check_1.0.2.tgz"; + path = fetchurl { + name = "nth_check___nth_check_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz"; + sha1 = "b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"; + }; + } + { + name = "number_is_nan___number_is_nan_1.0.1.tgz"; + path = fetchurl { + name = "number_is_nan___number_is_nan_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz"; + sha1 = "097b602b53422a522c1afb8790318336941a011d"; + }; + } + { + name = "nwmatcher___nwmatcher_1.3.9.tgz"; + path = fetchurl { + name = "nwmatcher___nwmatcher_1.3.9.tgz"; + url = "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz"; + sha1 = "8bab486ff7fa3dfd086656bbe8b17116d3692d2a"; + }; + } + { + name = "nwsapi___nwsapi_2.1.4.tgz"; + path = fetchurl { + name = "nwsapi___nwsapi_2.1.4.tgz"; + url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz"; + sha1 = "e006a878db23636f8e8a67d33ca0e4edf61a842f"; + }; + } + { + name = "oauth_sign___oauth_sign_0.9.0.tgz"; + path = fetchurl { + name = "oauth_sign___oauth_sign_0.9.0.tgz"; + url = "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz"; + sha1 = "47a7b016baa68b5fa0ecf3dee08a85c679ac6455"; + }; + } + { + name = "oauth___oauth_0.9.15.tgz"; + path = fetchurl { + name = "oauth___oauth_0.9.15.tgz"; + url = "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz"; + sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1"; + }; + } + { + name = "object_assign___object_assign_4.1.0.tgz"; + path = fetchurl { + name = "object_assign___object_assign_4.1.0.tgz"; + url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.0.tgz"; + sha1 = "7a3b3d0e98063d43f4c03f2e8ae6cd51a86883a0"; + }; + } + { + name = "object_assign___object_assign_3.0.0.tgz"; + path = fetchurl { + name = "object_assign___object_assign_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz"; + sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2"; + }; + } + { + name = "object_assign___object_assign_4.1.1.tgz"; + path = fetchurl { + name = "object_assign___object_assign_4.1.1.tgz"; + url = "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz"; + sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; + }; + } + { + name = "object_component___object_component_0.0.3.tgz"; + path = fetchurl { + name = "object_component___object_component_0.0.3.tgz"; + url = "https://registry.yarnpkg.com/object-component/-/object-component-0.0.3.tgz"; + sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; + }; + } + { + name = "object_copy___object_copy_0.1.0.tgz"; + path = fetchurl { + name = "object_copy___object_copy_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/object-copy/-/object-copy-0.1.0.tgz"; + sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; + }; + } + { + name = "object_keys___object_keys_1.1.1.tgz"; + path = fetchurl { + name = "object_keys___object_keys_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz"; + sha1 = "1c47f272df277f3b1daf061677d9c82e2322c60e"; + }; + } + { + name = "object_visit___object_visit_1.0.1.tgz"; + path = fetchurl { + name = "object_visit___object_visit_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz"; + sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; + }; + } + { + name = "object.defaults___object.defaults_1.1.0.tgz"; + path = fetchurl { + name = "object.defaults___object.defaults_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz"; + sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf"; + }; + } + { + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; + path = fetchurl { + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz"; + sha1 = "8758c846f5b407adab0f236e0986f14b051caa16"; + }; + } + { + name = "object.map___object.map_1.0.1.tgz"; + path = fetchurl { + name = "object.map___object.map_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz"; + sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"; + }; + } + { + name = "object.omit___object.omit_2.0.1.tgz"; + path = fetchurl { + name = "object.omit___object.omit_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/object.omit/-/object.omit-2.0.1.tgz"; + sha1 = "1a9c744829f39dbb858c76ca3579ae2a54ebd1fa"; + }; + } + { + name = "object.pick___object.pick_1.3.0.tgz"; + path = fetchurl { + name = "object.pick___object.pick_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz"; + sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; + }; + } + { + name = "object.values___object.values_1.1.0.tgz"; + path = fetchurl { + name = "object.values___object.values_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz"; + sha1 = "bf6810ef5da3e5325790eaaa2be213ea84624da9"; + }; + } + { + name = "on_finished___on_finished_2.3.0.tgz"; + path = fetchurl { + name = "on_finished___on_finished_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/on-finished/-/on-finished-2.3.0.tgz"; + sha1 = "20f1336481b083cd75337992a16971aa2d906947"; + }; + } + { + name = "on_headers___on_headers_1.0.2.tgz"; + path = fetchurl { + name = "on_headers___on_headers_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/on-headers/-/on-headers-1.0.2.tgz"; + sha1 = "772b0ae6aaa525c399e489adfad90c403eb3c28f"; + }; + } + { + name = "once___once_1.4.0.tgz"; + path = fetchurl { + name = "once___once_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz"; + sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; + }; + } + { + name = "once___once_1.3.3.tgz"; + path = fetchurl { + name = "once___once_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz"; + sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; + }; + } + { + name = "one_time___one_time_0.0.4.tgz"; + path = fetchurl { + name = "one_time___one_time_0.0.4.tgz"; + url = "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz"; + sha1 = "f8cdf77884826fe4dff93e3a9cc37b1e4480742e"; + }; + } + { + name = "onetime___onetime_2.0.1.tgz"; + path = fetchurl { + name = "onetime___onetime_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; + sha1 = "067428230fd67443b2794b22bba528b6867962d4"; + }; + } + { + name = "openid___openid_2.0.6.tgz"; + path = fetchurl { + name = "openid___openid_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/openid/-/openid-2.0.6.tgz"; + sha1 = "707375e59ab9f73025899727679b20328171c9aa"; + }; + } + { + name = "optimist___optimist_0.6.1.tgz"; + path = fetchurl { + name = "optimist___optimist_0.6.1.tgz"; + url = "https://registry.yarnpkg.com/optimist/-/optimist-0.6.1.tgz"; + sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; + }; + } + { + name = "optimize_css_assets_webpack_plugin___optimize_css_assets_webpack_plugin_5.0.1.tgz"; + path = fetchurl { + name = "optimize_css_assets_webpack_plugin___optimize_css_assets_webpack_plugin_5.0.1.tgz"; + url = "https://registry.yarnpkg.com/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.1.tgz"; + sha1 = "9eb500711d35165b45e7fd60ba2df40cb3eb9159"; + }; + } + { + name = "optionator___optionator_0.8.2.tgz"; + path = fetchurl { + name = "optionator___optionator_0.8.2.tgz"; + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz"; + sha1 = "364c5e409d3f4d6301d6c0b4c05bba50180aeb64"; + }; + } + { + name = "orchestrator___orchestrator_0.3.8.tgz"; + path = fetchurl { + name = "orchestrator___orchestrator_0.3.8.tgz"; + url = "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz"; + sha1 = "14e7e9e2764f7315fbac184e506c7aa6df94ad7e"; + }; + } + { + name = "ordered_read_streams___ordered_read_streams_0.1.0.tgz"; + path = fetchurl { + name = "ordered_read_streams___ordered_read_streams_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz"; + sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126"; + }; + } + { + name = "os_browserify___os_browserify_0.3.0.tgz"; + path = fetchurl { + name = "os_browserify___os_browserify_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz"; + sha1 = "854373c7f5c2315914fc9bfc6bd8238fdda1ec27"; + }; + } + { + name = "os_homedir___os_homedir_1.0.2.tgz"; + path = fetchurl { + name = "os_homedir___os_homedir_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz"; + sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; + }; + } + { + name = "os_locale___os_locale_2.1.0.tgz"; + path = fetchurl { + name = "os_locale___os_locale_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/os-locale/-/os-locale-2.1.0.tgz"; + sha1 = "42bc2900a6b5b8bd17376c8e882b65afccf24bf2"; + }; + } + { + name = "os_locale___os_locale_3.1.0.tgz"; + path = fetchurl { + name = "os_locale___os_locale_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/os-locale/-/os-locale-3.1.0.tgz"; + sha1 = "a802a6ee17f24c10483ab9935719cef4ed16bf1a"; + }; + } + { + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; + path = fetchurl { + name = "os_tmpdir___os_tmpdir_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; + sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; + }; + } + { + name = "osenv___osenv_0.1.5.tgz"; + path = fetchurl { + name = "osenv___osenv_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz"; + sha1 = "85cdfafaeb28e8677f416e287592b5f3f49ea410"; + }; + } + { + name = "output_file_sync___output_file_sync_1.1.2.tgz"; + path = fetchurl { + name = "output_file_sync___output_file_sync_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/output-file-sync/-/output-file-sync-1.1.2.tgz"; + sha1 = "d0a33eefe61a205facb90092e826598d5245ce76"; + }; + } + { + name = "p_defer___p_defer_1.0.0.tgz"; + path = fetchurl { + name = "p_defer___p_defer_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-defer/-/p-defer-1.0.0.tgz"; + sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; + }; + } + { + name = "p_finally___p_finally_1.0.0.tgz"; + path = fetchurl { + name = "p_finally___p_finally_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz"; + sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; + }; + } + { + name = "p_is_promise___p_is_promise_2.1.0.tgz"; + path = fetchurl { + name = "p_is_promise___p_is_promise_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-2.1.0.tgz"; + sha1 = "918cebaea248a62cf7ffab8e3bca8c5f882fc42e"; + }; + } + { + name = "p_limit___p_limit_1.3.0.tgz"; + path = fetchurl { + name = "p_limit___p_limit_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz"; + sha1 = "b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"; + }; + } + { + name = "p_limit___p_limit_2.2.0.tgz"; + path = fetchurl { + name = "p_limit___p_limit_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz"; + sha1 = "417c9941e6027a9abcba5092dd2904e255b5fbc2"; + }; + } + { + name = "p_locate___p_locate_2.0.0.tgz"; + path = fetchurl { + name = "p_locate___p_locate_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz"; + sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; + }; + } + { + name = "p_locate___p_locate_3.0.0.tgz"; + path = fetchurl { + name = "p_locate___p_locate_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz"; + sha1 = "322d69a05c0264b25997d9f40cd8a891ab0064a4"; + }; + } + { + name = "p_try___p_try_1.0.0.tgz"; + path = fetchurl { + name = "p_try___p_try_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz"; + sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; + }; + } + { + name = "p_try___p_try_2.2.0.tgz"; + path = fetchurl { + name = "p_try___p_try_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz"; + sha1 = "cb2868540e313d61de58fafbe35ce9004d5540e6"; + }; + } + { + name = "packet_reader___packet_reader_0.3.1.tgz"; + path = fetchurl { + name = "packet_reader___packet_reader_0.3.1.tgz"; + url = "https://registry.yarnpkg.com/packet-reader/-/packet-reader-0.3.1.tgz"; + sha1 = "cd62e60af8d7fea8a705ec4ff990871c46871f27"; + }; + } + { + name = "pako___pako_1.0.10.tgz"; + path = fetchurl { + name = "pako___pako_1.0.10.tgz"; + url = "https://registry.yarnpkg.com/pako/-/pako-1.0.10.tgz"; + sha1 = "4328badb5086a426aa90f541977d4955da5c9732"; + }; + } + { + name = "parallel_transform___parallel_transform_1.1.0.tgz"; + path = fetchurl { + name = "parallel_transform___parallel_transform_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/parallel-transform/-/parallel-transform-1.1.0.tgz"; + sha1 = "d410f065b05da23081fcd10f28854c29bda33b06"; + }; + } + { + name = "param_case___param_case_2.1.1.tgz"; + path = fetchurl { + name = "param_case___param_case_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/param-case/-/param-case-2.1.1.tgz"; + sha1 = "df94fd8cf6531ecf75e6bef9a0858fbc72be2247"; + }; + } + { + name = "parent_module___parent_module_1.0.1.tgz"; + path = fetchurl { + name = "parent_module___parent_module_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz"; + sha1 = "691d2709e78c79fae3a156622452d00762caaaa2"; + }; + } + { + name = "parse_asn1___parse_asn1_5.1.4.tgz"; + path = fetchurl { + name = "parse_asn1___parse_asn1_5.1.4.tgz"; + url = "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.4.tgz"; + sha1 = "37f6628f823fbdeb2273b4d540434a22f3ef1fcc"; + }; + } + { + name = "parse_filepath___parse_filepath_1.0.2.tgz"; + path = fetchurl { + name = "parse_filepath___parse_filepath_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz"; + sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891"; + }; + } + { + name = "parse_glob___parse_glob_3.0.4.tgz"; + path = fetchurl { + name = "parse_glob___parse_glob_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/parse-glob/-/parse-glob-3.0.4.tgz"; + sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; + }; + } + { + name = "parse_json___parse_json_2.2.0.tgz"; + path = fetchurl { + name = "parse_json___parse_json_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz"; + sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; + }; + } + { + name = "parse_json___parse_json_4.0.0.tgz"; + path = fetchurl { + name = "parse_json___parse_json_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz"; + sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; + }; + } + { + name = "parse_node_version___parse_node_version_1.0.1.tgz"; + path = fetchurl { + name = "parse_node_version___parse_node_version_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz"; + sha1 = "e2b5dbede00e7fa9bc363607f53327e8b073189b"; + }; + } + { + name = "parse_passwd___parse_passwd_1.0.0.tgz"; + path = fetchurl { + name = "parse_passwd___parse_passwd_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz"; + sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; + }; + } + { + name = "parse5___parse5_4.0.0.tgz"; + path = fetchurl { + name = "parse5___parse5_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz"; + sha1 = "6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"; + }; + } + { + name = "parseqs___parseqs_0.0.5.tgz"; + path = fetchurl { + name = "parseqs___parseqs_0.0.5.tgz"; + url = "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz"; + sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; + }; + } + { + name = "parseuri___parseuri_0.0.5.tgz"; + path = fetchurl { + name = "parseuri___parseuri_0.0.5.tgz"; + url = "https://registry.yarnpkg.com/parseuri/-/parseuri-0.0.5.tgz"; + sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; + }; + } + { + name = "parseurl___parseurl_1.3.3.tgz"; + path = fetchurl { + name = "parseurl___parseurl_1.3.3.tgz"; + url = "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz"; + sha1 = "9da19e7bee8d12dff0513ed5b76957793bc2e8d4"; + }; + } + { + name = "pascalcase___pascalcase_0.1.1.tgz"; + path = fetchurl { + name = "pascalcase___pascalcase_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz"; + sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; + }; + } + { + name = "passport_dropbox_oauth2___passport_dropbox_oauth2_1.1.0.tgz"; + path = fetchurl { + name = "passport_dropbox_oauth2___passport_dropbox_oauth2_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/passport-dropbox-oauth2/-/passport-dropbox-oauth2-1.1.0.tgz"; + sha1 = "77c737636e4841944dfb82dfc42c3d8ab782c10e"; + }; + } + { + name = "passport_facebook___passport_facebook_2.1.1.tgz"; + path = fetchurl { + name = "passport_facebook___passport_facebook_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-2.1.1.tgz"; + sha1 = "c39d0b52ae4d59163245a4e21a7b9b6321303311"; + }; + } + { + name = "passport_github___passport_github_1.1.0.tgz"; + path = fetchurl { + name = "passport_github___passport_github_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/passport-github/-/passport-github-1.1.0.tgz"; + sha1 = "8ce1e3fcd61ad7578eb1df595839e4aea12355d4"; + }; + } + { + name = "passport_gitlab2___passport_gitlab2_4.0.0.tgz"; + path = fetchurl { + name = "passport_gitlab2___passport_gitlab2_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-4.0.0.tgz"; + sha1 = "08de8b54d58cbe6f22f577f977f7874df3c26efb"; + }; + } + { + name = "passport_google_oauth20___passport_google_oauth20_1.0.0.tgz"; + path = fetchurl { + name = "passport_google_oauth20___passport_google_oauth20_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz"; + sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0"; + }; + } + { + name = "passport_ldapauth___passport_ldapauth_2.1.3.tgz"; + path = fetchurl { + name = "passport_ldapauth___passport_ldapauth_2.1.3.tgz"; + url = "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-2.1.3.tgz"; + sha1 = "833530c31c1e2f8d2ab7a1ff97339291074dc6f6"; + }; + } + { + name = "passport_local___passport_local_1.0.0.tgz"; + path = fetchurl { + name = "passport_local___passport_local_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/passport-local/-/passport-local-1.0.0.tgz"; + sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee"; + }; + } + { + name = "passport_oauth1___passport_oauth1_1.1.0.tgz"; + path = fetchurl { + name = "passport_oauth1___passport_oauth1_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/passport-oauth1/-/passport-oauth1-1.1.0.tgz"; + sha1 = "a7de988a211f9cf4687377130ea74df32730c918"; + }; + } + { + name = "passport_oauth2___passport_oauth2_1.5.0.tgz"; + path = fetchurl { + name = "passport_oauth2___passport_oauth2_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/passport-oauth2/-/passport-oauth2-1.5.0.tgz"; + sha1 = "64babbb54ac46a4dcab35e7f266ed5294e3c4108"; + }; + } + { + name = "passport_oauth___passport_oauth_1.0.0.tgz"; + path = fetchurl { + name = "passport_oauth___passport_oauth_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/passport-oauth/-/passport-oauth-1.0.0.tgz"; + sha1 = "90aff63387540f02089af28cdad39ea7f80d77df"; + }; + } + { + name = "passport_saml___passport_saml_1.1.0.tgz"; + path = fetchurl { + name = "passport_saml___passport_saml_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/passport-saml/-/passport-saml-1.1.0.tgz"; + sha1 = "0fdd639b905b8f5db172bc07f2e73819a043c321"; + }; + } + { + name = "passport_strategy___passport_strategy_1.0.0.tgz"; + path = fetchurl { + name = "passport_strategy___passport_strategy_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/passport-strategy/-/passport-strategy-1.0.0.tgz"; + sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4"; + }; + } + { + name = "passport_twitter___passport_twitter_1.0.4.tgz"; + path = fetchurl { + name = "passport_twitter___passport_twitter_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/passport-twitter/-/passport-twitter-1.0.4.tgz"; + sha1 = "01a799e1f760bf2de49f2ba5fba32282f18932d7"; + }; + } + { + name = "passport.socketio___passport.socketio_3.7.0.tgz"; + path = fetchurl { + name = "passport.socketio___passport.socketio_3.7.0.tgz"; + url = "https://registry.yarnpkg.com/passport.socketio/-/passport.socketio-3.7.0.tgz"; + sha1 = "2ee5fafe9695d4281c8cddd3fe975ecd18e6726e"; + }; + } + { + name = "passport___passport_0.4.0.tgz"; + path = fetchurl { + name = "passport___passport_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/passport/-/passport-0.4.0.tgz"; + sha1 = "c5095691347bd5ad3b5e180238c3914d16f05811"; + }; + } + { + name = "path_browserify___path_browserify_0.0.0.tgz"; + path = fetchurl { + name = "path_browserify___path_browserify_0.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz"; + sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; + }; + } + { + name = "path_dirname___path_dirname_1.0.2.tgz"; + path = fetchurl { + name = "path_dirname___path_dirname_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz"; + sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; + }; + } + { + name = "path_exists___path_exists_3.0.0.tgz"; + path = fetchurl { + name = "path_exists___path_exists_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz"; + sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; + }; + } + { + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; + path = fetchurl { + name = "path_is_absolute___path_is_absolute_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; + sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; + }; + } + { + name = "path_is_inside___path_is_inside_1.0.2.tgz"; + path = fetchurl { + name = "path_is_inside___path_is_inside_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz"; + sha1 = "365417dede44430d1c11af61027facf074bdfc53"; + }; + } + { + name = "path_key___path_key_2.0.1.tgz"; + path = fetchurl { + name = "path_key___path_key_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; + sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; + }; + } + { + name = "path_parse___path_parse_1.0.6.tgz"; + path = fetchurl { + name = "path_parse___path_parse_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz"; + sha1 = "d62dbb5679405d72c4737ec58600e9ddcf06d24c"; + }; + } + { + name = "path_root_regex___path_root_regex_0.1.2.tgz"; + path = fetchurl { + name = "path_root_regex___path_root_regex_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz"; + sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"; + }; + } + { + name = "path_root___path_root_0.1.1.tgz"; + path = fetchurl { + name = "path_root___path_root_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz"; + sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7"; + }; + } + { + name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; + path = fetchurl { + name = "path_to_regexp___path_to_regexp_0.1.7.tgz"; + url = "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; + sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; + }; + } + { + name = "path_type___path_type_2.0.0.tgz"; + path = fetchurl { + name = "path_type___path_type_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz"; + sha1 = "f012ccb8415b7096fc2daa1054c3d72389594c73"; + }; + } + { + name = "path_type___path_type_3.0.0.tgz"; + path = fetchurl { + name = "path_type___path_type_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz"; + sha1 = "cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"; + }; + } + { + name = "pause___pause_0.0.1.tgz"; + path = fetchurl { + name = "pause___pause_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/pause/-/pause-0.0.1.tgz"; + sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; + }; + } + { + name = "pbkdf2___pbkdf2_3.0.17.tgz"; + path = fetchurl { + name = "pbkdf2___pbkdf2_3.0.17.tgz"; + url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.0.17.tgz"; + sha1 = "976c206530617b14ebb32114239f7b09336e93a6"; + }; + } + { + name = "pdfobject___pdfobject_2.1.1.tgz"; + path = fetchurl { + name = "pdfobject___pdfobject_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.1.1.tgz"; + sha1 = "2949d4d218d130d16b6149c7f7226f0a73400d4a"; + }; + } + { + name = "pend___pend_1.2.0.tgz"; + path = fetchurl { + name = "pend___pend_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz"; + sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; + }; + } + { + name = "performance_now___performance_now_2.1.0.tgz"; + path = fetchurl { + name = "performance_now___performance_now_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz"; + sha1 = "6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"; + }; + } + { + name = "pg_connection_string___pg_connection_string_0.1.3.tgz"; + path = fetchurl { + name = "pg_connection_string___pg_connection_string_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-0.1.3.tgz"; + sha1 = "da1847b20940e42ee1492beaf65d49d91b245df7"; + }; + } + { + name = "pg_hstore___pg_hstore_2.3.2.tgz"; + path = fetchurl { + name = "pg_hstore___pg_hstore_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/pg-hstore/-/pg-hstore-2.3.2.tgz"; + sha1 = "f7ef053e7b9b892ae986af2f7cbe86432dfcf24f"; + }; + } + { + name = "pg_int8___pg_int8_1.0.1.tgz"; + path = fetchurl { + name = "pg_int8___pg_int8_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz"; + sha1 = "943bd463bf5b71b4170115f80f8efc9a0c0eb78c"; + }; + } + { + name = "pg_pool___pg_pool_1.8.0.tgz"; + path = fetchurl { + name = "pg_pool___pg_pool_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-1.8.0.tgz"; + sha1 = "f7ec73824c37a03f076f51bfdf70e340147c4f37"; + }; + } + { + name = "pg_types___pg_types_1.13.0.tgz"; + path = fetchurl { + name = "pg_types___pg_types_1.13.0.tgz"; + url = "https://registry.yarnpkg.com/pg-types/-/pg-types-1.13.0.tgz"; + sha1 = "75f490b8a8abf75f1386ef5ec4455ecf6b345c63"; + }; + } + { + name = "pg___pg_6.4.2.tgz"; + path = fetchurl { + name = "pg___pg_6.4.2.tgz"; + url = "https://registry.yarnpkg.com/pg/-/pg-6.4.2.tgz"; + sha1 = "c364011060eac7a507a2ae063eb857ece910e27f"; + }; + } + { + name = "pgpass___pgpass_1.0.2.tgz"; + path = fetchurl { + name = "pgpass___pgpass_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/pgpass/-/pgpass-1.0.2.tgz"; + sha1 = "2a7bb41b6065b67907e91da1b07c1847c877b306"; + }; + } + { + name = "phantomjs_prebuilt___phantomjs_prebuilt_2.1.16.tgz"; + path = fetchurl { + name = "phantomjs_prebuilt___phantomjs_prebuilt_2.1.16.tgz"; + url = "https://registry.yarnpkg.com/phantomjs-prebuilt/-/phantomjs-prebuilt-2.1.16.tgz"; + sha1 = "efd212a4a3966d3647684ea8ba788549be2aefef"; + }; + } + { + name = "pify___pify_2.3.0.tgz"; + path = fetchurl { + name = "pify___pify_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz"; + sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; + }; + } + { + name = "pify___pify_3.0.0.tgz"; + path = fetchurl { + name = "pify___pify_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pify/-/pify-3.0.0.tgz"; + sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; + }; + } + { + name = "pify___pify_4.0.1.tgz"; + path = fetchurl { + name = "pify___pify_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/pify/-/pify-4.0.1.tgz"; + sha1 = "4b2cd25c50d598735c50292224fd8c6df41e3231"; + }; + } + { + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; + path = fetchurl { + name = "pinkie_promise___pinkie_promise_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/pinkie-promise/-/pinkie-promise-2.0.1.tgz"; + sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; + }; + } + { + name = "pinkie___pinkie_2.0.4.tgz"; + path = fetchurl { + name = "pinkie___pinkie_2.0.4.tgz"; + url = "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz"; + sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; + }; + } + { + name = "pkg_dir___pkg_dir_2.0.0.tgz"; + path = fetchurl { + name = "pkg_dir___pkg_dir_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz"; + sha1 = "f6d5d1109e19d63edf428e0bd57e12777615334b"; + }; + } + { + name = "pkg_dir___pkg_dir_3.0.0.tgz"; + path = fetchurl { + name = "pkg_dir___pkg_dir_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz"; + sha1 = "2749020f239ed990881b1f71210d51eb6523bea3"; + }; + } + { + name = "pkginfo___pkginfo_0.2.3.tgz"; + path = fetchurl { + name = "pkginfo___pkginfo_0.2.3.tgz"; + url = "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.2.3.tgz"; + sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8"; + }; + } + { + name = "platform___platform_1.3.5.tgz"; + path = fetchurl { + name = "platform___platform_1.3.5.tgz"; + url = "https://registry.yarnpkg.com/platform/-/platform-1.3.5.tgz"; + sha1 = "fb6958c696e07e2918d2eeda0f0bc9448d733444"; + }; + } + { + name = "pn___pn_1.1.0.tgz"; + path = fetchurl { + name = "pn___pn_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz"; + sha1 = "e2f4cef0e219f463c179ab37463e4e1ecdccbafb"; + }; + } + { + name = "pop_iterate___pop_iterate_1.0.1.tgz"; + path = fetchurl { + name = "pop_iterate___pop_iterate_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/pop-iterate/-/pop-iterate-1.0.1.tgz"; + sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3"; + }; + } + { + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; + path = fetchurl { + name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; + sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; + }; + } + { + name = "postcss_calc___postcss_calc_7.0.1.tgz"; + path = fetchurl { + name = "postcss_calc___postcss_calc_7.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-7.0.1.tgz"; + sha1 = "36d77bab023b0ecbb9789d84dcb23c4941145436"; + }; + } + { + name = "postcss_colormin___postcss_colormin_4.0.3.tgz"; + path = fetchurl { + name = "postcss_colormin___postcss_colormin_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-4.0.3.tgz"; + sha1 = "ae060bce93ed794ac71264f08132d550956bd381"; + }; + } + { + name = "postcss_convert_values___postcss_convert_values_4.0.1.tgz"; + path = fetchurl { + name = "postcss_convert_values___postcss_convert_values_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz"; + sha1 = "ca3813ed4da0f812f9d43703584e449ebe189a7f"; + }; + } + { + name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz"; + path = fetchurl { + name = "postcss_discard_comments___postcss_discard_comments_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz"; + sha1 = "1fbabd2c246bff6aaad7997b2b0918f4d7af4033"; + }; + } + { + name = "postcss_discard_duplicates___postcss_discard_duplicates_4.0.2.tgz"; + path = fetchurl { + name = "postcss_discard_duplicates___postcss_discard_duplicates_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz"; + sha1 = "3fe133cd3c82282e550fc9b239176a9207b784eb"; + }; + } + { + name = "postcss_discard_empty___postcss_discard_empty_4.0.1.tgz"; + path = fetchurl { + name = "postcss_discard_empty___postcss_discard_empty_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz"; + sha1 = "c8c951e9f73ed9428019458444a02ad90bb9f765"; + }; + } + { + name = "postcss_discard_overridden___postcss_discard_overridden_4.0.1.tgz"; + path = fetchurl { + name = "postcss_discard_overridden___postcss_discard_overridden_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz"; + sha1 = "652aef8a96726f029f5e3e00146ee7a4e755ff57"; + }; + } + { + name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz"; + path = fetchurl { + name = "postcss_merge_longhand___postcss_merge_longhand_4.0.11.tgz"; + url = "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz"; + sha1 = "62f49a13e4a0ee04e7b98f42bb16062ca2549e24"; + }; + } + { + name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz"; + path = fetchurl { + name = "postcss_merge_rules___postcss_merge_rules_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz"; + sha1 = "362bea4ff5a1f98e4075a713c6cb25aefef9a650"; + }; + } + { + name = "postcss_minify_font_values___postcss_minify_font_values_4.0.2.tgz"; + path = fetchurl { + name = "postcss_minify_font_values___postcss_minify_font_values_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz"; + sha1 = "cd4c344cce474343fac5d82206ab2cbcb8afd5a6"; + }; + } + { + name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz"; + path = fetchurl { + name = "postcss_minify_gradients___postcss_minify_gradients_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz"; + sha1 = "93b29c2ff5099c535eecda56c4aa6e665a663471"; + }; + } + { + name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz"; + path = fetchurl { + name = "postcss_minify_params___postcss_minify_params_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz"; + sha1 = "6b9cef030c11e35261f95f618c90036d680db874"; + }; + } + { + name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz"; + path = fetchurl { + name = "postcss_minify_selectors___postcss_minify_selectors_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz"; + sha1 = "e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"; + }; + } + { + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_1.2.1.tgz"; + path = fetchurl { + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz"; + sha1 = "dc87e34148ec7eab5f791f7cd5849833375b741a"; + }; + } + { + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_1.2.0.tgz"; + path = fetchurl { + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz"; + sha1 = "f7d80c398c5a393fa7964466bd19500a7d61c069"; + }; + } + { + name = "postcss_modules_scope___postcss_modules_scope_1.1.0.tgz"; + path = fetchurl { + name = "postcss_modules_scope___postcss_modules_scope_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz"; + sha1 = "d6ea64994c79f97b62a72b426fbe6056a194bb90"; + }; + } + { + name = "postcss_modules_values___postcss_modules_values_1.3.0.tgz"; + path = fetchurl { + name = "postcss_modules_values___postcss_modules_values_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz"; + sha1 = "ecffa9d7e192518389f42ad0e83f72aec456ea20"; + }; + } + { + name = "postcss_normalize_charset___postcss_normalize_charset_4.0.1.tgz"; + path = fetchurl { + name = "postcss_normalize_charset___postcss_normalize_charset_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz"; + sha1 = "8b35add3aee83a136b0471e0d59be58a50285dd4"; + }; + } + { + name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_display_values___postcss_normalize_display_values_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz"; + sha1 = "0dbe04a4ce9063d4667ed2be476bb830c825935a"; + }; + } + { + name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_positions___postcss_normalize_positions_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz"; + sha1 = "05f757f84f260437378368a91f8932d4b102917f"; + }; + } + { + name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_repeat_style___postcss_normalize_repeat_style_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz"; + sha1 = "c4ebbc289f3991a028d44751cbdd11918b17910c"; + }; + } + { + name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_string___postcss_normalize_string_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz"; + sha1 = "cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"; + }; + } + { + name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_timing_functions___postcss_normalize_timing_functions_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz"; + sha1 = "8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"; + }; + } + { + name = "postcss_normalize_unicode___postcss_normalize_unicode_4.0.1.tgz"; + path = fetchurl { + name = "postcss_normalize_unicode___postcss_normalize_unicode_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz"; + sha1 = "841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"; + }; + } + { + name = "postcss_normalize_url___postcss_normalize_url_4.0.1.tgz"; + path = fetchurl { + name = "postcss_normalize_url___postcss_normalize_url_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz"; + sha1 = "10e437f86bc7c7e58f7b9652ed878daaa95faae1"; + }; + } + { + name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz"; + path = fetchurl { + name = "postcss_normalize_whitespace___postcss_normalize_whitespace_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz"; + sha1 = "bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"; + }; + } + { + name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz"; + path = fetchurl { + name = "postcss_ordered_values___postcss_ordered_values_4.1.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz"; + sha1 = "0cf75c820ec7d5c4d280189559e0b571ebac0eee"; + }; + } + { + name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz"; + path = fetchurl { + name = "postcss_reduce_initial___postcss_reduce_initial_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz"; + sha1 = "7fd42ebea5e9c814609639e2c2e84ae270ba48df"; + }; + } + { + name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz"; + path = fetchurl { + name = "postcss_reduce_transforms___postcss_reduce_transforms_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz"; + sha1 = "17efa405eacc6e07be3414a5ca2d1074681d4e29"; + }; + } + { + name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; + path = fetchurl { + name = "postcss_selector_parser___postcss_selector_parser_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-3.1.1.tgz"; + sha1 = "4f875f4afb0c96573d5cf4d74011aee250a7e865"; + }; + } + { + name = "postcss_selector_parser___postcss_selector_parser_5.0.0.tgz"; + path = fetchurl { + name = "postcss_selector_parser___postcss_selector_parser_5.0.0.tgz"; + url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz"; + sha1 = "249044356697b33b64f1a8f7c80922dddee7195c"; + }; + } + { + name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; + path = fetchurl { + name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz"; + sha1 = "17b997bc711b333bab143aaed3b8d3d6e3d38258"; + }; + } + { + name = "postcss_unique_selectors___postcss_unique_selectors_4.0.1.tgz"; + path = fetchurl { + name = "postcss_unique_selectors___postcss_unique_selectors_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz"; + sha1 = "9446911f3289bfd64c6d680f073c03b1f9ee4bac"; + }; + } + { + name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz"; + path = fetchurl { + name = "postcss_value_parser___postcss_value_parser_3.3.1.tgz"; + url = "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz"; + sha1 = "9ff822547e2893213cf1c30efa51ac5fd1ba8281"; + }; + } + { + name = "postcss___postcss_6.0.23.tgz"; + path = fetchurl { + name = "postcss___postcss_6.0.23.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz"; + sha1 = "61c82cc328ac60e677645f979054eb98bc0e3324"; + }; + } + { + name = "postcss___postcss_7.0.16.tgz"; + path = fetchurl { + name = "postcss___postcss_7.0.16.tgz"; + url = "https://registry.yarnpkg.com/postcss/-/postcss-7.0.16.tgz"; + sha1 = "48f64f1b4b558cb8b52c88987724359acb010da2"; + }; + } + { + name = "postgres_array___postgres_array_1.0.3.tgz"; + path = fetchurl { + name = "postgres_array___postgres_array_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/postgres-array/-/postgres-array-1.0.3.tgz"; + sha1 = "c561fc3b266b21451fc6555384f4986d78ec80f5"; + }; + } + { + name = "postgres_bytea___postgres_bytea_1.0.0.tgz"; + path = fetchurl { + name = "postgres_bytea___postgres_bytea_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/postgres-bytea/-/postgres-bytea-1.0.0.tgz"; + sha1 = "027b533c0aa890e26d172d47cf9ccecc521acd35"; + }; + } + { + name = "postgres_date___postgres_date_1.0.4.tgz"; + path = fetchurl { + name = "postgres_date___postgres_date_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/postgres-date/-/postgres-date-1.0.4.tgz"; + sha1 = "1c2728d62ef1bff49abdd35c1f86d4bdf118a728"; + }; + } + { + name = "postgres_interval___postgres_interval_1.2.0.tgz"; + path = fetchurl { + name = "postgres_interval___postgres_interval_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/postgres-interval/-/postgres-interval-1.2.0.tgz"; + sha1 = "b460c82cb1587507788819a06aa0fffdb3544695"; + }; + } + { + name = "precond___precond_0.2.3.tgz"; + path = fetchurl { + name = "precond___precond_0.2.3.tgz"; + url = "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz"; + sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; + }; + } + { + name = "prelude_ls___prelude_ls_1.1.2.tgz"; + path = fetchurl { + name = "prelude_ls___prelude_ls_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; + sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; + }; + } + { + name = "preserve___preserve_0.2.0.tgz"; + path = fetchurl { + name = "preserve___preserve_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz"; + sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; + }; + } + { + name = "pretty_error___pretty_error_2.1.1.tgz"; + path = fetchurl { + name = "pretty_error___pretty_error_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz"; + sha1 = "5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"; + }; + } + { + name = "pretty_hrtime___pretty_hrtime_1.0.3.tgz"; + path = fetchurl { + name = "pretty_hrtime___pretty_hrtime_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz"; + sha1 = "b7e3ea42435a4c9b2759d99e0f201eb195802ee1"; + }; + } + { + name = "prismjs___prismjs_1.16.0.tgz"; + path = fetchurl { + name = "prismjs___prismjs_1.16.0.tgz"; + url = "https://registry.yarnpkg.com/prismjs/-/prismjs-1.16.0.tgz"; + sha1 = "406eb2c8aacb0f5f0f1167930cb83835d10a4308"; + }; + } + { + name = "private___private_0.1.8.tgz"; + path = fetchurl { + name = "private___private_0.1.8.tgz"; + url = "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz"; + sha1 = "2381edb3689f7a53d653190060fcf822d2f368ff"; + }; + } + { + name = "process_nextick_args___process_nextick_args_1.0.7.tgz"; + path = fetchurl { + name = "process_nextick_args___process_nextick_args_1.0.7.tgz"; + url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-1.0.7.tgz"; + sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3"; + }; + } + { + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; + path = fetchurl { + name = "process_nextick_args___process_nextick_args_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz"; + sha1 = "a37d732f4271b4ab1ad070d35508e8290788ffaa"; + }; + } + { + name = "process___process_0.11.10.tgz"; + path = fetchurl { + name = "process___process_0.11.10.tgz"; + url = "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz"; + sha1 = "7332300e840161bda3e69a1d1d91a7d4bc16f182"; + }; + } + { + name = "progress___progress_1.1.8.tgz"; + path = fetchurl { + name = "progress___progress_1.1.8.tgz"; + url = "https://registry.yarnpkg.com/progress/-/progress-1.1.8.tgz"; + sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; + }; + } + { + name = "progress___progress_2.0.3.tgz"; + path = fetchurl { + name = "progress___progress_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz"; + sha1 = "7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8"; + }; + } + { + name = "promise_inflight___promise_inflight_1.0.1.tgz"; + path = fetchurl { + name = "promise_inflight___promise_inflight_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz"; + sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; + }; + } + { + name = "promise___promise_7.3.1.tgz"; + path = fetchurl { + name = "promise___promise_7.3.1.tgz"; + url = "https://registry.yarnpkg.com/promise/-/promise-7.3.1.tgz"; + sha1 = "064b72602b18f90f29192b8b1bc418ffd1ebd3bf"; + }; + } + { + name = "proto_list___proto_list_1.2.4.tgz"; + path = fetchurl { + name = "proto_list___proto_list_1.2.4.tgz"; + url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz"; + sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; + }; + } + { + name = "proxy_addr___proxy_addr_2.0.5.tgz"; + path = fetchurl { + name = "proxy_addr___proxy_addr_2.0.5.tgz"; + url = "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz"; + sha1 = "34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34"; + }; + } + { + name = "prr___prr_1.0.1.tgz"; + path = fetchurl { + name = "prr___prr_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz"; + sha1 = "d3fc114ba06995a45ec6893f484ceb1d78f5f476"; + }; + } + { + name = "pseudomap___pseudomap_1.0.2.tgz"; + path = fetchurl { + name = "pseudomap___pseudomap_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/pseudomap/-/pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + } + { + name = "psl___psl_1.1.32.tgz"; + path = fetchurl { + name = "psl___psl_1.1.32.tgz"; + url = "https://registry.yarnpkg.com/psl/-/psl-1.1.32.tgz"; + sha1 = "3f132717cf2f9c169724b2b6caf373cf694198db"; + }; + } + { + name = "public_encrypt___public_encrypt_4.0.3.tgz"; + path = fetchurl { + name = "public_encrypt___public_encrypt_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz"; + sha1 = "4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"; + }; + } + { + name = "pump___pump_2.0.1.tgz"; + path = fetchurl { + name = "pump___pump_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/pump/-/pump-2.0.1.tgz"; + sha1 = "12399add6e4cf7526d973cbc8b5ce2e2908b3909"; + }; + } + { + name = "pump___pump_3.0.0.tgz"; + path = fetchurl { + name = "pump___pump_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz"; + sha1 = "b4a2116815bde2f4e1ea602354e8c75565107a64"; + }; + } + { + name = "pumpify___pumpify_1.5.1.tgz"; + path = fetchurl { + name = "pumpify___pumpify_1.5.1.tgz"; + url = "https://registry.yarnpkg.com/pumpify/-/pumpify-1.5.1.tgz"; + sha1 = "36513be246ab27570b1a374a5ce278bfd74370ce"; + }; + } + { + name = "punycode___punycode_1.3.2.tgz"; + path = fetchurl { + name = "punycode___punycode_1.3.2.tgz"; + url = "https://registry.yarnpkg.com/punycode/-/punycode-1.3.2.tgz"; + sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; + }; + } + { + name = "punycode___punycode_1.4.1.tgz"; + path = fetchurl { + name = "punycode___punycode_1.4.1.tgz"; + url = "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz"; + sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; + }; + } + { + name = "punycode___punycode_2.1.1.tgz"; + path = fetchurl { + name = "punycode___punycode_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz"; + sha1 = "b58b010ac40c22c5657616c8d2c2c02c7bf479ec"; + }; + } + { + name = "q___q_1.5.1.tgz"; + path = fetchurl { + name = "q___q_1.5.1.tgz"; + url = "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz"; + sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7"; + }; + } + { + name = "q___q_2.0.3.tgz"; + path = fetchurl { + name = "q___q_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/q/-/q-2.0.3.tgz"; + sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134"; + }; + } + { + name = "qs___qs_2.3.3.tgz"; + path = fetchurl { + name = "qs___qs_2.3.3.tgz"; + url = "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz"; + sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404"; + }; + } + { + name = "qs___qs_6.7.0.tgz"; + path = fetchurl { + name = "qs___qs_6.7.0.tgz"; + url = "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz"; + sha1 = "41dc1a015e3d581f1621776be31afb2876a9b1bc"; + }; + } + { + name = "qs___qs_6.5.2.tgz"; + path = fetchurl { + name = "qs___qs_6.5.2.tgz"; + url = "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz"; + sha1 = "cb3ae806e8740444584ef154ce8ee98d403f3e36"; + }; + } + { + name = "querystring_es3___querystring_es3_0.2.1.tgz"; + path = fetchurl { + name = "querystring_es3___querystring_es3_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz"; + sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; + }; + } + { + name = "querystring___querystring_0.2.0.tgz"; + path = fetchurl { + name = "querystring___querystring_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz"; + sha1 = "b209849203bb25df820da756e747005878521620"; + }; + } + { + name = "random_bytes___random_bytes_1.0.0.tgz"; + path = fetchurl { + name = "random_bytes___random_bytes_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/random-bytes/-/random-bytes-1.0.0.tgz"; + sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; + }; + } + { + name = "randomatic___randomatic_3.1.1.tgz"; + path = fetchurl { + name = "randomatic___randomatic_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/randomatic/-/randomatic-3.1.1.tgz"; + sha1 = "b776efc59375984e36c537b2f51a1f0aff0da1ed"; + }; + } + { + name = "randombytes___randombytes_2.1.0.tgz"; + path = fetchurl { + name = "randombytes___randombytes_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz"; + sha1 = "df6f84372f0270dc65cdf6291349ab7a473d4f2a"; + }; + } + { + name = "randomcolor___randomcolor_0.5.4.tgz"; + path = fetchurl { + name = "randomcolor___randomcolor_0.5.4.tgz"; + url = "https://registry.yarnpkg.com/randomcolor/-/randomcolor-0.5.4.tgz"; + sha1 = "df615b13f25b89ea58c5f8f72647f0a6f07adcc3"; + }; + } + { + name = "randomfill___randomfill_1.0.4.tgz"; + path = fetchurl { + name = "randomfill___randomfill_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/randomfill/-/randomfill-1.0.4.tgz"; + sha1 = "c92196fc86ab42be983f1bf31778224931d61458"; + }; + } + { + name = "range_parser___range_parser_1.2.1.tgz"; + path = fetchurl { + name = "range_parser___range_parser_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz"; + sha1 = "3cf37023d199e1c24d1a55b84800c2f3e6468031"; + }; + } + { + name = "raphael___raphael_2.2.7.tgz"; + path = fetchurl { + name = "raphael___raphael_2.2.7.tgz"; + url = "https://registry.yarnpkg.com/raphael/-/raphael-2.2.7.tgz"; + sha1 = "231b19141f8d086986d8faceb66f8b562ee2c810"; + }; + } + { + name = "raphael___raphael_2.2.8.tgz"; + path = fetchurl { + name = "raphael___raphael_2.2.8.tgz"; + url = "https://registry.yarnpkg.com/raphael/-/raphael-2.2.8.tgz"; + sha1 = "4b18443c2c6030c3b492d8d11fbbca14ebe4d3f3"; + }; + } + { + name = "raphael"; + path = + let + repo = fetchgit { + url = "https://github.com/dmitrybaranovskiy/raphael"; + rev = "bf3dcd35317f76f915bcd04ed9db36a1b3775c4d"; + sha256 = "0x1jxadywz0xr61jisfhpdvd6jrr6q2jjv8r6x8rm3hkmgp5l93r"; + }; + in + runCommandNoCC "raphael" { buildInputs = [gnutar]; } '' + # Set u+w because tar-fs can't unpack archives with read-only dirs + # https://github.com/mafintosh/tar-fs/issues/79 + tar cf $out --mode u+w -C ${repo} . + ''; + } + { + name = "raw_body___raw_body_2.4.0.tgz"; + path = fetchurl { + name = "raw_body___raw_body_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz"; + sha1 = "a1ce6fb9c9bc356ca52e89256ab59059e13d0332"; + }; + } + { + name = "raw_loader___raw_loader_0.5.1.tgz"; + path = fetchurl { + name = "raw_loader___raw_loader_0.5.1.tgz"; + url = "https://registry.yarnpkg.com/raw-loader/-/raw-loader-0.5.1.tgz"; + sha1 = "0c3d0beaed8a01c966d9787bf778281252a979aa"; + }; + } + { + name = "rc___rc_1.2.8.tgz"; + path = fetchurl { + name = "rc___rc_1.2.8.tgz"; + url = "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz"; + sha1 = "cd924bf5200a075b83c188cd6b9e211b7fc0d3ed"; + }; + } + { + name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; + path = fetchurl { + name = "read_pkg_up___read_pkg_up_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz"; + sha1 = "6b72a8048984e0c41e79510fd5e9fa99b3b549be"; + }; + } + { + name = "read_pkg___read_pkg_2.0.0.tgz"; + path = fetchurl { + name = "read_pkg___read_pkg_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz"; + sha1 = "8ef1c0623c6a6db0dc6713c4bfac46332b2368f8"; + }; + } + { + name = "readable_stream___readable_stream_2.3.6.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_2.3.6.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz"; + sha1 = "b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"; + }; + } + { + name = "readable_stream___readable_stream_1.0.27_1.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_1.0.27_1.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.27-1.tgz"; + sha1 = "6b67983c20357cefd07f0165001a16d710d91078"; + }; + } + { + name = "readable_stream___readable_stream_1.0.34.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_1.0.34.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz"; + sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; + }; + } + { + name = "readable_stream___readable_stream_3.4.0.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_3.4.0.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz"; + sha1 = "a51c26754658e0a3c21dbf59163bd45ba6f447fc"; + }; + } + { + name = "readable_stream___readable_stream_1.1.14.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_1.1.14.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz"; + sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; + }; + } + { + name = "readable_stream___readable_stream_2.0.6.tgz"; + path = fetchurl { + name = "readable_stream___readable_stream_2.0.6.tgz"; + url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.0.6.tgz"; + sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; + }; + } + { + name = "readdirp___readdirp_2.2.1.tgz"; + path = fetchurl { + name = "readdirp___readdirp_2.2.1.tgz"; + url = "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz"; + sha1 = "0e87622a3325aa33e892285caf8b4e846529a525"; + }; + } + { + name = "readline_sync___readline_sync_1.4.9.tgz"; + path = fetchurl { + name = "readline_sync___readline_sync_1.4.9.tgz"; + url = "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.9.tgz"; + sha1 = "3eda8e65f23cd2a17e61301b1f0003396af5ecda"; + }; + } + { + name = "rechoir___rechoir_0.6.2.tgz"; + path = fetchurl { + name = "rechoir___rechoir_0.6.2.tgz"; + url = "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz"; + sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; + }; + } + { + name = "redefine___redefine_0.2.1.tgz"; + path = fetchurl { + name = "redefine___redefine_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/redefine/-/redefine-0.2.1.tgz"; + sha1 = "e89ee7a6f24d19fff62590569332dc60380a89a3"; + }; + } + { + name = "reduce_component___reduce_component_1.0.1.tgz"; + path = fetchurl { + name = "reduce_component___reduce_component_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz"; + sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da"; + }; + } + { + name = "referrer_policy___referrer_policy_1.2.0.tgz"; + path = fetchurl { + name = "referrer_policy___referrer_policy_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz"; + sha1 = "b99cfb8b57090dc454895ef897a4cc35ef67a98e"; + }; + } + { + name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; + path = fetchurl { + name = "regenerate_unicode_properties___regenerate_unicode_properties_8.1.0.tgz"; + url = "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz"; + sha1 = "ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"; + }; + } + { + name = "regenerate___regenerate_1.4.0.tgz"; + path = fetchurl { + name = "regenerate___regenerate_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz"; + sha1 = "4a856ec4b56e4077c557589cae85e7a4c8869a11"; + }; + } + { + name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz"; + path = fetchurl { + name = "regenerator_runtime___regenerator_runtime_0.10.5.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz"; + sha1 = "336c3efc1220adcedda2c9fab67b5a7955a33658"; + }; + } + { + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; + path = fetchurl { + name = "regenerator_runtime___regenerator_runtime_0.11.1.tgz"; + url = "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; + sha1 = "be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"; + }; + } + { + name = "regenerator_transform___regenerator_transform_0.10.1.tgz"; + path = fetchurl { + name = "regenerator_transform___regenerator_transform_0.10.1.tgz"; + url = "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz"; + sha1 = "1e4996837231da8b7f3cf4114d71b5691a0680dd"; + }; + } + { + name = "regex_cache___regex_cache_0.4.4.tgz"; + path = fetchurl { + name = "regex_cache___regex_cache_0.4.4.tgz"; + url = "https://registry.yarnpkg.com/regex-cache/-/regex-cache-0.4.4.tgz"; + sha1 = "75bdc58a2a1496cec48a12835bc54c8d562336dd"; + }; + } + { + name = "regex_not___regex_not_1.0.2.tgz"; + path = fetchurl { + name = "regex_not___regex_not_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz"; + sha1 = "1f4ece27e00b0b65e0247a6810e6a85d83a5752c"; + }; + } + { + name = "regexpp___regexpp_2.0.1.tgz"; + path = fetchurl { + name = "regexpp___regexpp_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; + sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; + }; + } + { + name = "regexpu_core___regexpu_core_1.0.0.tgz"; + path = fetchurl { + name = "regexpu_core___regexpu_core_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-1.0.0.tgz"; + sha1 = "86a763f58ee4d7c2f6b102e4764050de7ed90c6b"; + }; + } + { + name = "regexpu_core___regexpu_core_2.0.0.tgz"; + path = fetchurl { + name = "regexpu_core___regexpu_core_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz"; + sha1 = "49d038837b8dcf8bfa5b9a42139938e6ea2ae240"; + }; + } + { + name = "regexpu_core___regexpu_core_4.5.4.tgz"; + path = fetchurl { + name = "regexpu_core___regexpu_core_4.5.4.tgz"; + url = "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz"; + sha1 = "080d9d02289aa87fe1667a4f5136bc98a6aebaae"; + }; + } + { + name = "regjsgen___regjsgen_0.2.0.tgz"; + path = fetchurl { + name = "regjsgen___regjsgen_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz"; + sha1 = "6c016adeac554f75823fe37ac05b92d5a4edb1f7"; + }; + } + { + name = "regjsgen___regjsgen_0.5.0.tgz"; + path = fetchurl { + name = "regjsgen___regjsgen_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.0.tgz"; + sha1 = "a7634dc08f89209c2049adda3525711fb97265dd"; + }; + } + { + name = "regjsparser___regjsparser_0.1.5.tgz"; + path = fetchurl { + name = "regjsparser___regjsparser_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz"; + sha1 = "7ee8f84dc6fa792d3fd0ae228d24bd949ead205c"; + }; + } + { + name = "regjsparser___regjsparser_0.6.0.tgz"; + path = fetchurl { + name = "regjsparser___regjsparser_0.6.0.tgz"; + url = "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.0.tgz"; + sha1 = "f1e6ae8b7da2bae96c99399b868cd6c933a2ba9c"; + }; + } + { + name = "relateurl___relateurl_0.2.7.tgz"; + path = fetchurl { + name = "relateurl___relateurl_0.2.7.tgz"; + url = "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz"; + sha1 = "54dbf377e51440aca90a4cd274600d3ff2d888a9"; + }; + } + { + name = "remarkable___remarkable_1.7.1.tgz"; + path = fetchurl { + name = "remarkable___remarkable_1.7.1.tgz"; + url = "https://registry.yarnpkg.com/remarkable/-/remarkable-1.7.1.tgz"; + sha1 = "aaca4972100b66a642a63a1021ca4bac1be3bff6"; + }; + } + { + name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; + path = fetchurl { + name = "remove_trailing_separator___remove_trailing_separator_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; + sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; + }; + } + { + name = "renderkid___renderkid_2.0.3.tgz"; + path = fetchurl { + name = "renderkid___renderkid_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/renderkid/-/renderkid-2.0.3.tgz"; + sha1 = "380179c2ff5ae1365c522bf2fcfcff01c5b74149"; + }; + } + { + name = "repeat_element___repeat_element_1.1.3.tgz"; + path = fetchurl { + name = "repeat_element___repeat_element_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; + sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; + }; + } + { + name = "repeat_string___repeat_string_1.6.1.tgz"; + path = fetchurl { + name = "repeat_string___repeat_string_1.6.1.tgz"; + url = "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz"; + sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; + }; + } + { + name = "repeating___repeating_2.0.1.tgz"; + path = fetchurl { + name = "repeating___repeating_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz"; + sha1 = "5214c53a926d3552707527fbab415dbc08d06dda"; + }; + } + { + name = "replace_ext___replace_ext_0.0.1.tgz"; + path = fetchurl { + name = "replace_ext___replace_ext_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz"; + sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924"; + }; + } + { + name = "request_progress___request_progress_2.0.1.tgz"; + path = fetchurl { + name = "request_progress___request_progress_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/request-progress/-/request-progress-2.0.1.tgz"; + sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; + }; + } + { + name = "request_promise_core___request_promise_core_1.1.2.tgz"; + path = fetchurl { + name = "request_promise_core___request_promise_core_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz"; + sha1 = "339f6aababcafdb31c799ff158700336301d3346"; + }; + } + { + name = "request_promise_native___request_promise_native_1.0.7.tgz"; + path = fetchurl { + name = "request_promise_native___request_promise_native_1.0.7.tgz"; + url = "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz"; + sha1 = "a49868a624bdea5069f1251d0a836e0d89aa2c59"; + }; + } + { + name = "request___request_2.88.0.tgz"; + path = fetchurl { + name = "request___request_2.88.0.tgz"; + url = "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz"; + sha1 = "9c2fca4f7d35b592efe57c7f0a55e81052124fef"; + }; + } + { + name = "require_directory___require_directory_2.1.1.tgz"; + path = fetchurl { + name = "require_directory___require_directory_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz"; + sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; + }; + } + { + name = "require_main_filename___require_main_filename_1.0.1.tgz"; + path = fetchurl { + name = "require_main_filename___require_main_filename_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz"; + sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; + }; + } + { + name = "require_relative___require_relative_0.8.7.tgz"; + path = fetchurl { + name = "require_relative___require_relative_0.8.7.tgz"; + url = "https://registry.yarnpkg.com/require-relative/-/require-relative-0.8.7.tgz"; + sha1 = "7999539fc9e047a37928fa196f8e1563dabd36de"; + }; + } + { + name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; + path = fetchurl { + name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz"; + sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; + }; + } + { + name = "resolve_dir___resolve_dir_0.1.1.tgz"; + path = fetchurl { + name = "resolve_dir___resolve_dir_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-0.1.1.tgz"; + sha1 = "b219259a5602fac5c5c496ad894a6e8cc430261e"; + }; + } + { + name = "resolve_dir___resolve_dir_1.0.1.tgz"; + path = fetchurl { + name = "resolve_dir___resolve_dir_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz"; + sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; + }; + } + { + name = "resolve_from___resolve_from_3.0.0.tgz"; + path = fetchurl { + name = "resolve_from___resolve_from_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-3.0.0.tgz"; + sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748"; + }; + } + { + name = "resolve_from___resolve_from_4.0.0.tgz"; + path = fetchurl { + name = "resolve_from___resolve_from_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz"; + sha1 = "4abcd852ad32dd7baabfe9b40e00a36db5f392e6"; + }; + } + { + name = "resolve_url___resolve_url_0.2.1.tgz"; + path = fetchurl { + name = "resolve_url___resolve_url_0.2.1.tgz"; + url = "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz"; + sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; + }; + } + { + name = "resolve___resolve_1.11.0.tgz"; + path = fetchurl { + name = "resolve___resolve_1.11.0.tgz"; + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.11.0.tgz"; + sha1 = "4014870ba296176b86343d50b60f3b50609ce232"; + }; + } + { + name = "restore_cursor___restore_cursor_2.0.0.tgz"; + path = fetchurl { + name = "restore_cursor___restore_cursor_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; + sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; + }; + } + { + name = "ret___ret_0.1.15.tgz"; + path = fetchurl { + name = "ret___ret_0.1.15.tgz"; + url = "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz"; + sha1 = "b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"; + }; + } + { + name = "retry_as_promised___retry_as_promised_2.3.2.tgz"; + path = fetchurl { + name = "retry_as_promised___retry_as_promised_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/retry-as-promised/-/retry-as-promised-2.3.2.tgz"; + sha1 = "cd974ee4fd9b5fe03cbf31871ee48221c07737b7"; + }; + } + { + name = "reveal.js___reveal.js_3.7.0.tgz"; + path = fetchurl { + name = "reveal.js___reveal.js_3.7.0.tgz"; + url = "https://registry.yarnpkg.com/reveal.js/-/reveal.js-3.7.0.tgz"; + sha1 = "7afaf72fd963000381289d58f3aa54c0c46b150c"; + }; + } + { + name = "rgb_regex___rgb_regex_1.0.1.tgz"; + path = fetchurl { + name = "rgb_regex___rgb_regex_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/rgb-regex/-/rgb-regex-1.0.1.tgz"; + sha1 = "c0e0d6882df0e23be254a475e8edd41915feaeb1"; + }; + } + { + name = "rgba_regex___rgba_regex_1.0.0.tgz"; + path = fetchurl { + name = "rgba_regex___rgba_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz"; + sha1 = "43374e2e2ca0968b0ef1523460b7d730ff22eeb3"; + }; + } + { + name = "right_align___right_align_0.1.3.tgz"; + path = fetchurl { + name = "right_align___right_align_0.1.3.tgz"; + url = "https://registry.yarnpkg.com/right-align/-/right-align-0.1.3.tgz"; + sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; + }; + } + { + name = "rimraf___rimraf_2.6.3.tgz"; + path = fetchurl { + name = "rimraf___rimraf_2.6.3.tgz"; + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; + sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; + }; + } + { + name = "rimraf___rimraf_2.4.5.tgz"; + path = fetchurl { + name = "rimraf___rimraf_2.4.5.tgz"; + url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz"; + sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; + }; + } + { + name = "ripemd160___ripemd160_2.0.2.tgz"; + path = fetchurl { + name = "ripemd160___ripemd160_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz"; + sha1 = "a1c1a6f624751577ba5d07914cbc92850585890c"; + }; + } + { + name = "rollup_plugin_buble___rollup_plugin_buble_0.19.6.tgz"; + path = fetchurl { + name = "rollup_plugin_buble___rollup_plugin_buble_0.19.6.tgz"; + url = "https://registry.yarnpkg.com/rollup-plugin-buble/-/rollup-plugin-buble-0.19.6.tgz"; + sha1 = "55ee0995d8870d536f01f4277c3eef4276e8747e"; + }; + } + { + name = "rollup_pluginutils___rollup_pluginutils_2.7.1.tgz"; + path = fetchurl { + name = "rollup_pluginutils___rollup_pluginutils_2.7.1.tgz"; + url = "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.7.1.tgz"; + sha1 = "a7915ce8b12c177364784bf38a1590cc6c2c8250"; + }; + } + { + name = "rollup_watch___rollup_watch_4.3.1.tgz"; + path = fetchurl { + name = "rollup_watch___rollup_watch_4.3.1.tgz"; + url = "https://registry.yarnpkg.com/rollup-watch/-/rollup-watch-4.3.1.tgz"; + sha1 = "5aa1eaeab787addf368905d102b39d6fc5ce4a8b"; + }; + } + { + name = "rollup___rollup_0.66.6.tgz"; + path = fetchurl { + name = "rollup___rollup_0.66.6.tgz"; + url = "https://registry.yarnpkg.com/rollup/-/rollup-0.66.6.tgz"; + sha1 = "ce7d6185beb7acea644ce220c25e71ae03275482"; + }; + } + { + name = "run_async___run_async_2.3.0.tgz"; + path = fetchurl { + name = "run_async___run_async_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/run-async/-/run-async-2.3.0.tgz"; + sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; + }; + } + { + name = "run_queue___run_queue_1.0.3.tgz"; + path = fetchurl { + name = "run_queue___run_queue_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/run-queue/-/run-queue-1.0.3.tgz"; + sha1 = "e848396f057d223f24386924618e25694161ec47"; + }; + } + { + name = "rxjs___rxjs_6.5.2.tgz"; + path = fetchurl { + name = "rxjs___rxjs_6.5.2.tgz"; + url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.5.2.tgz"; + sha1 = "2e35ce815cd46d84d02a209fb4e5921e051dbec7"; + }; + } + { + name = "safe_buffer___safe_buffer_5.1.2.tgz"; + path = fetchurl { + name = "safe_buffer___safe_buffer_5.1.2.tgz"; + url = "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz"; + sha1 = "991ec69d296e0313747d59bdfd2b745c35f8828d"; + }; + } + { + name = "safe_json_stringify___safe_json_stringify_1.2.0.tgz"; + path = fetchurl { + name = "safe_json_stringify___safe_json_stringify_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; + sha1 = "356e44bc98f1f93ce45df14bcd7c01cda86e0afd"; + }; + } + { + name = "safe_regex___safe_regex_1.1.0.tgz"; + path = fetchurl { + name = "safe_regex___safe_regex_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/safe-regex/-/safe-regex-1.1.0.tgz"; + sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; + }; + } + { + name = "safefs___safefs_3.2.2.tgz"; + path = fetchurl { + name = "safefs___safefs_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/safefs/-/safefs-3.2.2.tgz"; + sha1 = "8170c1444d7038e08caea05a374fae2fa349e15c"; + }; + } + { + name = "safer_buffer___safer_buffer_2.1.2.tgz"; + path = fetchurl { + name = "safer_buffer___safer_buffer_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz"; + sha1 = "44fa161b0187b9549dd84bb91802f9bd8385cd6a"; + }; + } + { + name = "sax___sax_0.5.8.tgz"; + path = fetchurl { + name = "sax___sax_0.5.8.tgz"; + url = "https://registry.yarnpkg.com/sax/-/sax-0.5.8.tgz"; + sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; + }; + } + { + name = "sax___sax_1.2.1.tgz"; + path = fetchurl { + name = "sax___sax_1.2.1.tgz"; + url = "https://registry.yarnpkg.com/sax/-/sax-1.2.1.tgz"; + sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a"; + }; + } + { + name = "sax___sax_1.2.4.tgz"; + path = fetchurl { + name = "sax___sax_1.2.4.tgz"; + url = "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz"; + sha1 = "2816234e2378bddc4e5354fab5caa895df7100d9"; + }; + } + { + name = "scandirectory___scandirectory_2.5.0.tgz"; + path = fetchurl { + name = "scandirectory___scandirectory_2.5.0.tgz"; + url = "https://registry.yarnpkg.com/scandirectory/-/scandirectory-2.5.0.tgz"; + sha1 = "6ce03f54a090b668e3cbedbf20edf9e310593e72"; + }; + } + { + name = "schema_utils___schema_utils_0.4.7.tgz"; + path = fetchurl { + name = "schema_utils___schema_utils_0.4.7.tgz"; + url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz"; + sha1 = "ba74f597d2be2ea880131746ee17d0a093c68187"; + }; + } + { + name = "schema_utils___schema_utils_1.0.0.tgz"; + path = fetchurl { + name = "schema_utils___schema_utils_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-1.0.0.tgz"; + sha1 = "0b79a93204d7b600d4b2850d1f66c2a34951c770"; + }; + } + { + name = "script_loader___script_loader_0.7.2.tgz"; + path = fetchurl { + name = "script_loader___script_loader_0.7.2.tgz"; + url = "https://registry.yarnpkg.com/script-loader/-/script-loader-0.7.2.tgz"; + sha1 = "2016db6f86f25f5cf56da38915d83378bb166ba7"; + }; + } + { + name = "scrypt_async___scrypt_async_2.0.1.tgz"; + path = fetchurl { + name = "scrypt_async___scrypt_async_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/scrypt-async/-/scrypt-async-2.0.1.tgz"; + sha1 = "4318dae48a8b7cc3b8fe05f75f4164a7d973d25d"; + }; + } + { + name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; + path = fetchurl { + name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/scrypt-kdf/-/scrypt-kdf-2.0.1.tgz"; + sha1 = "3355224c52d398331b2cbf2b70a7be26b52c53e6"; + }; + } + { + name = "select2___select2_3.5.2_browserify.tgz"; + path = fetchurl { + name = "select2___select2_3.5.2_browserify.tgz"; + url = "https://registry.yarnpkg.com/select2/-/select2-3.5.2-browserify.tgz"; + sha1 = "dc4dafda38d67a734e8a97a46f0d3529ae05391d"; + }; + } + { + name = "select___select_1.1.2.tgz"; + path = fetchurl { + name = "select___select_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz"; + sha1 = "0e7350acdec80b1108528786ec1d4418d11b396d"; + }; + } + { + name = "semver___semver_5.7.0.tgz"; + path = fetchurl { + name = "semver___semver_5.7.0.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz"; + sha1 = "790a7cf6fea5459bac96110b29b60412dc8ff96b"; + }; + } + { + name = "semver___semver_4.3.2.tgz"; + path = fetchurl { + name = "semver___semver_4.3.2.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-4.3.2.tgz"; + sha1 = "c7a07158a80bedd052355b770d82d6640f803be7"; + }; + } + { + name = "semver___semver_4.3.6.tgz"; + path = fetchurl { + name = "semver___semver_4.3.6.tgz"; + url = "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz"; + sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; + }; + } + { + name = "send___send_0.17.1.tgz"; + path = fetchurl { + name = "send___send_0.17.1.tgz"; + url = "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz"; + sha1 = "c1d8b059f7900f7466dd4938bdc44e11ddb376c8"; + }; + } + { + name = "sequelize_cli___sequelize_cli_2.8.0.tgz"; + path = fetchurl { + name = "sequelize_cli___sequelize_cli_2.8.0.tgz"; + url = "https://registry.yarnpkg.com/sequelize-cli/-/sequelize-cli-2.8.0.tgz"; + sha1 = "4304cce60e499169603f838dedbab421c9849e74"; + }; + } + { + name = "sequelize___sequelize_3.34.0.tgz"; + path = fetchurl { + name = "sequelize___sequelize_3.34.0.tgz"; + url = "https://registry.yarnpkg.com/sequelize/-/sequelize-3.34.0.tgz"; + sha1 = "edbceb53dd7c9e5a0fd6b35fb89565239e8f09e4"; + }; + } + { + name = "sequencify___sequencify_0.0.7.tgz"; + path = fetchurl { + name = "sequencify___sequencify_0.0.7.tgz"; + url = "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz"; + sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; + }; + } + { + name = "serialize_javascript___serialize_javascript_1.7.0.tgz"; + path = fetchurl { + name = "serialize_javascript___serialize_javascript_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz"; + sha1 = "d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"; + }; + } + { + name = "series_stream___series_stream_1.0.1.tgz"; + path = fetchurl { + name = "series_stream___series_stream_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/series-stream/-/series-stream-1.0.1.tgz"; + sha1 = "311a09c5c1d5a091440832e1a480a47400f1005d"; + }; + } + { + name = "serve_static___serve_static_1.14.1.tgz"; + path = fetchurl { + name = "serve_static___serve_static_1.14.1.tgz"; + url = "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz"; + sha1 = "666e636dc4f010f7ef29970a88a674320898b2f9"; + }; + } + { + name = "set_blocking___set_blocking_2.0.0.tgz"; + path = fetchurl { + name = "set_blocking___set_blocking_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz"; + sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; + }; + } + { + name = "set_value___set_value_0.4.3.tgz"; + path = fetchurl { + name = "set_value___set_value_0.4.3.tgz"; + url = "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz"; + sha1 = "7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"; + }; + } + { + name = "set_value___set_value_2.0.0.tgz"; + path = fetchurl { + name = "set_value___set_value_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz"; + sha1 = "71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"; + }; + } + { + name = "setimmediate___setimmediate_1.0.5.tgz"; + path = fetchurl { + name = "setimmediate___setimmediate_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/setimmediate/-/setimmediate-1.0.5.tgz"; + sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285"; + }; + } + { + name = "setprototypeof___setprototypeof_1.1.1.tgz"; + path = fetchurl { + name = "setprototypeof___setprototypeof_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz"; + sha1 = "7e95acb24aa92f5885e0abef5ba131330d4ae683"; + }; + } + { + name = "sha.js___sha.js_2.4.11.tgz"; + path = fetchurl { + name = "sha.js___sha.js_2.4.11.tgz"; + url = "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz"; + sha1 = "37a5cf0b81ecbc6943de109ba2960d1b26584ae7"; + }; + } + { + name = "shebang_command___shebang_command_1.2.0.tgz"; + path = fetchurl { + name = "shebang_command___shebang_command_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; + sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; + }; + } + { + name = "shebang_regex___shebang_regex_1.0.0.tgz"; + path = fetchurl { + name = "shebang_regex___shebang_regex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; + sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; + }; + } + { + name = "shimmer___shimmer_1.1.0.tgz"; + path = fetchurl { + name = "shimmer___shimmer_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/shimmer/-/shimmer-1.1.0.tgz"; + sha1 = "97d7377137ffbbab425522e429fe0aa89a488b35"; + }; + } + { + name = "shortid___shortid_2.2.8.tgz"; + path = fetchurl { + name = "shortid___shortid_2.2.8.tgz"; + url = "https://registry.yarnpkg.com/shortid/-/shortid-2.2.8.tgz"; + sha1 = "033b117d6a2e975804f6f0969dbe7d3d0b355131"; + }; + } + { + name = "sigmund___sigmund_1.0.1.tgz"; + path = fetchurl { + name = "sigmund___sigmund_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz"; + sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; + }; + } + { + name = "signal_exit___signal_exit_3.0.2.tgz"; + path = fetchurl { + name = "signal_exit___signal_exit_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz"; + sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; + }; + } + { + name = "simple_swizzle___simple_swizzle_0.2.2.tgz"; + path = fetchurl { + name = "simple_swizzle___simple_swizzle_0.2.2.tgz"; + url = "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz"; + sha1 = "a4da6b635ffcccca33f70d17cb92592de95e557a"; + }; + } + { + name = "slash___slash_1.0.0.tgz"; + path = fetchurl { + name = "slash___slash_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/slash/-/slash-1.0.0.tgz"; + sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; + }; + } + { + name = "slice_ansi___slice_ansi_2.1.0.tgz"; + path = fetchurl { + name = "slice_ansi___slice_ansi_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; + sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; + }; + } + { + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; + path = fetchurl { + name = "snapdragon_node___snapdragon_node_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; + sha1 = "6c175f86ff14bdb0724563e8f3c1b021a286853b"; + }; + } + { + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; + path = fetchurl { + name = "snapdragon_util___snapdragon_util_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; + sha1 = "f956479486f2acd79700693f6f7b805e45ab56e2"; + }; + } + { + name = "snapdragon___snapdragon_0.8.2.tgz"; + path = fetchurl { + name = "snapdragon___snapdragon_0.8.2.tgz"; + url = "https://registry.yarnpkg.com/snapdragon/-/snapdragon-0.8.2.tgz"; + sha1 = "64922e7c565b0e14204ba1aa7d6964278d25182d"; + }; + } + { + name = "snapsvg___snapsvg_0.4.0.tgz"; + path = fetchurl { + name = "snapsvg___snapsvg_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/snapsvg/-/snapsvg-0.4.0.tgz"; + sha1 = "e0767014167825957de7e125c29b0fa89796ea03"; + }; + } + { + name = "socket.io_adapter___socket.io_adapter_1.1.1.tgz"; + path = fetchurl { + name = "socket.io_adapter___socket.io_adapter_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz"; + sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b"; + }; + } + { + name = "socket.io_client___socket.io_client_2.1.1.tgz"; + path = fetchurl { + name = "socket.io_client___socket.io_client_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/socket.io-client/-/socket.io-client-2.1.1.tgz"; + sha1 = "dcb38103436ab4578ddb026638ae2f21b623671f"; + }; + } + { + name = "socket.io_parser___socket.io_parser_3.2.0.tgz"; + path = fetchurl { + name = "socket.io_parser___socket.io_parser_3.2.0.tgz"; + url = "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz"; + sha1 = "e7c6228b6aa1f814e6148aea325b51aa9499e077"; + }; + } + { + name = "socket.io___socket.io_2.1.1.tgz"; + path = fetchurl { + name = "socket.io___socket.io_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/socket.io/-/socket.io-2.1.1.tgz"; + sha1 = "a069c5feabee3e6b214a75b40ce0652e1cfb9980"; + }; + } + { + name = "source_list_map___source_list_map_2.0.1.tgz"; + path = fetchurl { + name = "source_list_map___source_list_map_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz"; + sha1 = "3993bd873bfc48479cca9ea3a547835c7c154b34"; + }; + } + { + name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; + path = fetchurl { + name = "source_map_resolve___source_map_resolve_0.5.2.tgz"; + url = "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz"; + sha1 = "72e2cc34095543e43b2c62b2c4c10d4a9054f259"; + }; + } + { + name = "source_map_support___source_map_support_0.4.18.tgz"; + path = fetchurl { + name = "source_map_support___source_map_support_0.4.18.tgz"; + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz"; + sha1 = "0286a6de8be42641338594e97ccea75f0a2c585f"; + }; + } + { + name = "source_map_support___source_map_support_0.5.12.tgz"; + path = fetchurl { + name = "source_map_support___source_map_support_0.5.12.tgz"; + url = "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz"; + sha1 = "b4f3b10d51857a5af0138d3ce8003b201613d599"; + }; + } + { + name = "source_map_url___source_map_url_0.4.0.tgz"; + path = fetchurl { + name = "source_map_url___source_map_url_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; + sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; + }; + } + { + name = "source_map___source_map_0.5.0.tgz"; + path = fetchurl { + name = "source_map___source_map_0.5.0.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.0.tgz"; + sha1 = "0fe96503ac86a5adb5de63f4e412ae4872cdbe86"; + }; + } + { + name = "source_map___source_map_0.5.7.tgz"; + path = fetchurl { + name = "source_map___source_map_0.5.7.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz"; + sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; + }; + } + { + name = "source_map___source_map_0.6.1.tgz"; + path = fetchurl { + name = "source_map___source_map_0.6.1.tgz"; + url = "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz"; + sha1 = "74722af32e9614e9c287a8d0bbde48b5e2f1a263"; + }; + } + { + name = "sourcemap_codec___sourcemap_codec_1.4.4.tgz"; + path = fetchurl { + name = "sourcemap_codec___sourcemap_codec_1.4.4.tgz"; + url = "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz"; + sha1 = "c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f"; + }; + } + { + name = "sparkles___sparkles_1.0.1.tgz"; + path = fetchurl { + name = "sparkles___sparkles_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz"; + sha1 = "008db65edce6c50eec0c5e228e1945061dd0437c"; + }; + } + { + name = "spdx_correct___spdx_correct_3.1.0.tgz"; + path = fetchurl { + name = "spdx_correct___spdx_correct_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz"; + sha1 = "fb83e504445268f154b074e218c87c003cd31df4"; + }; + } + { + name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; + path = fetchurl { + name = "spdx_exceptions___spdx_exceptions_2.2.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"; + sha1 = "2ea450aee74f2a89bfb94519c07fcd6f41322977"; + }; + } + { + name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; + path = fetchurl { + name = "spdx_expression_parse___spdx_expression_parse_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"; + sha1 = "99e119b7a5da00e05491c9fa338b7904823b41d0"; + }; + } + { + name = "spdx_license_ids___spdx_license_ids_3.0.4.tgz"; + path = fetchurl { + name = "spdx_license_ids___spdx_license_ids_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz"; + sha1 = "75ecd1a88de8c184ef015eafb51b5b48bfd11bb1"; + }; + } + { + name = "spin.js___spin.js_2.3.2.tgz"; + path = fetchurl { + name = "spin.js___spin.js_2.3.2.tgz"; + url = "https://registry.yarnpkg.com/spin.js/-/spin.js-2.3.2.tgz"; + sha1 = "6caa56d520673450fd5cfbc6971e6d0772c37a1a"; + }; + } + { + name = "split_string___split_string_3.1.0.tgz"; + path = fetchurl { + name = "split_string___split_string_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/split-string/-/split-string-3.1.0.tgz"; + sha1 = "7cb09dda3a86585705c64b39a6466038682e8fe2"; + }; + } + { + name = "split___split_1.0.1.tgz"; + path = fetchurl { + name = "split___split_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/split/-/split-1.0.1.tgz"; + sha1 = "605bd9be303aa59fb35f9229fbea0ddec9ea07d9"; + }; + } + { + name = "sprintf_js___sprintf_js_1.1.2.tgz"; + path = fetchurl { + name = "sprintf_js___sprintf_js_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.1.2.tgz"; + sha1 = "da1765262bf8c0f571749f2ad6c26300207ae673"; + }; + } + { + name = "sprintf_js___sprintf_js_1.0.3.tgz"; + path = fetchurl { + name = "sprintf_js___sprintf_js_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz"; + sha1 = "04e6926f662895354f3dd015203633b857297e2c"; + }; + } + { + name = "sprintf___sprintf_0.1.5.tgz"; + path = fetchurl { + name = "sprintf___sprintf_0.1.5.tgz"; + url = "https://registry.yarnpkg.com/sprintf/-/sprintf-0.1.5.tgz"; + sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf"; + }; + } + { + name = "sqlite3___sqlite3_4.0.8.tgz"; + path = fetchurl { + name = "sqlite3___sqlite3_4.0.8.tgz"; + url = "https://registry.yarnpkg.com/sqlite3/-/sqlite3-4.0.8.tgz"; + sha1 = "81ee60d54befaa52f5421fe6337050bd43d4bb95"; + }; + } + { + name = "sqlstring___sqlstring_2.3.1.tgz"; + path = fetchurl { + name = "sqlstring___sqlstring_2.3.1.tgz"; + url = "https://registry.yarnpkg.com/sqlstring/-/sqlstring-2.3.1.tgz"; + sha1 = "475393ff9e91479aea62dcaf0ca3d14983a7fb40"; + }; + } + { + name = "sshpk___sshpk_1.16.1.tgz"; + path = fetchurl { + name = "sshpk___sshpk_1.16.1.tgz"; + url = "https://registry.yarnpkg.com/sshpk/-/sshpk-1.16.1.tgz"; + sha1 = "fb661c0bef29b39db40769ee39fa70093d6f6877"; + }; + } + { + name = "ssri___ssri_5.3.0.tgz"; + path = fetchurl { + name = "ssri___ssri_5.3.0.tgz"; + url = "https://registry.yarnpkg.com/ssri/-/ssri-5.3.0.tgz"; + sha1 = "ba3872c9c6d33a0704a7d71ff045e5ec48999d06"; + }; + } + { + name = "ssri___ssri_6.0.1.tgz"; + path = fetchurl { + name = "ssri___ssri_6.0.1.tgz"; + url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz"; + sha1 = "2a3c41b28dd45b62b63676ecb74001265ae9edd8"; + }; + } + { + name = "stable___stable_0.1.8.tgz"; + path = fetchurl { + name = "stable___stable_0.1.8.tgz"; + url = "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz"; + sha1 = "836eb3c8382fe2936feaf544631017ce7d47a3cf"; + }; + } + { + name = "stack_trace___stack_trace_0.0.10.tgz"; + path = fetchurl { + name = "stack_trace___stack_trace_0.0.10.tgz"; + url = "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz"; + sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; + }; + } + { + name = "static_extend___static_extend_0.1.2.tgz"; + path = fetchurl { + name = "static_extend___static_extend_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz"; + sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; + }; + } + { + name = "statuses___statuses_1.5.0.tgz"; + path = fetchurl { + name = "statuses___statuses_1.5.0.tgz"; + url = "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz"; + sha1 = "161c7dac177659fd9811f43771fa99381478628c"; + }; + } + { + name = "stealthy_require___stealthy_require_1.1.1.tgz"; + path = fetchurl { + name = "stealthy_require___stealthy_require_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; + sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; + }; + } + { + name = "store___store_2.0.12.tgz"; + path = fetchurl { + name = "store___store_2.0.12.tgz"; + url = "https://registry.yarnpkg.com/store/-/store-2.0.12.tgz"; + sha1 = "8c534e2a0b831f72b75fc5f1119857c44ef5d593"; + }; + } + { + name = "stream_browserify___stream_browserify_2.0.2.tgz"; + path = fetchurl { + name = "stream_browserify___stream_browserify_2.0.2.tgz"; + url = "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz"; + sha1 = "87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"; + }; + } + { + name = "stream_consume___stream_consume_0.1.1.tgz"; + path = fetchurl { + name = "stream_consume___stream_consume_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz"; + sha1 = "d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48"; + }; + } + { + name = "stream_each___stream_each_1.2.3.tgz"; + path = fetchurl { + name = "stream_each___stream_each_1.2.3.tgz"; + url = "https://registry.yarnpkg.com/stream-each/-/stream-each-1.2.3.tgz"; + sha1 = "ebe27a0c389b04fbcc233642952e10731afa9bae"; + }; + } + { + name = "stream_from_to___stream_from_to_1.4.3.tgz"; + path = fetchurl { + name = "stream_from_to___stream_from_to_1.4.3.tgz"; + url = "https://registry.yarnpkg.com/stream-from-to/-/stream-from-to-1.4.3.tgz"; + sha1 = "b270473ebc514e73615727c5d2f76b229941df94"; + }; + } + { + name = "stream_http___stream_http_2.8.3.tgz"; + path = fetchurl { + name = "stream_http___stream_http_2.8.3.tgz"; + url = "https://registry.yarnpkg.com/stream-http/-/stream-http-2.8.3.tgz"; + sha1 = "b2d242469288a5a27ec4fe8933acf623de6514fc"; + }; + } + { + name = "stream_shift___stream_shift_1.0.0.tgz"; + path = fetchurl { + name = "stream_shift___stream_shift_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.0.tgz"; + sha1 = "d5c752825e5367e786f78e18e445ea223a155952"; + }; + } + { + name = "string_loader___string_loader_0.0.1.tgz"; + path = fetchurl { + name = "string_loader___string_loader_0.0.1.tgz"; + url = "https://registry.yarnpkg.com/string-loader/-/string-loader-0.0.1.tgz"; + sha1 = "496f3cccc990213e0dd5411499f9ac6a6a6f2ff8"; + }; + } + { + name = "string_natural_compare___string_natural_compare_2.0.3.tgz"; + path = fetchurl { + name = "string_natural_compare___string_natural_compare_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/string-natural-compare/-/string-natural-compare-2.0.3.tgz"; + sha1 = "9dbe1dd65490a5fe14f7a5c9bc686fc67cb9c6e4"; + }; + } + { + name = "string_width___string_width_1.0.2.tgz"; + path = fetchurl { + name = "string_width___string_width_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz"; + sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; + }; + } + { + name = "string_width___string_width_2.1.1.tgz"; + path = fetchurl { + name = "string_width___string_width_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz"; + sha1 = "ab93f27a8dc13d28cac815c462143a6d9012ae9e"; + }; + } + { + name = "string_width___string_width_3.1.0.tgz"; + path = fetchurl { + name = "string_width___string_width_3.1.0.tgz"; + url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz"; + sha1 = "22767be21b62af1081574306f69ac51b62203961"; + }; + } + { + name = "string___string_3.3.3.tgz"; + path = fetchurl { + name = "string___string_3.3.3.tgz"; + url = "https://registry.yarnpkg.com/string/-/string-3.3.3.tgz"; + sha1 = "5ea211cd92d228e184294990a6cc97b366a77cb0"; + }; + } + { + name = "string_decoder___string_decoder_1.2.0.tgz"; + path = fetchurl { + name = "string_decoder___string_decoder_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz"; + sha1 = "fe86e738b19544afe70469243b2a1ee9240eae8d"; + }; + } + { + name = "string_decoder___string_decoder_0.10.31.tgz"; + path = fetchurl { + name = "string_decoder___string_decoder_0.10.31.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz"; + sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; + }; + } + { + name = "string_decoder___string_decoder_1.1.1.tgz"; + path = fetchurl { + name = "string_decoder___string_decoder_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz"; + sha1 = "9cf1611ba62685d7030ae9e4ba34149c3af03fc8"; + }; + } + { + name = "strip_ansi___strip_ansi_3.0.1.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_3.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz"; + sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; + }; + } + { + name = "strip_ansi___strip_ansi_4.0.0.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz"; + sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; + }; + } + { + name = "strip_ansi___strip_ansi_5.2.0.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_5.2.0.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz"; + sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"; + }; + } + { + name = "strip_ansi___strip_ansi_0.1.1.tgz"; + path = fetchurl { + name = "strip_ansi___strip_ansi_0.1.1.tgz"; + url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-0.1.1.tgz"; + sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; + }; + } + { + name = "strip_bom___strip_bom_1.0.0.tgz"; + path = fetchurl { + name = "strip_bom___strip_bom_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz"; + sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794"; + }; + } + { + name = "strip_bom___strip_bom_3.0.0.tgz"; + path = fetchurl { + name = "strip_bom___strip_bom_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz"; + sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; + }; + } + { + name = "strip_eof___strip_eof_1.0.0.tgz"; + path = fetchurl { + name = "strip_eof___strip_eof_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz"; + sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; + }; + } + { + name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; + path = fetchurl { + name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; + sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; + }; + } + { + name = "style_loader___style_loader_0.21.0.tgz"; + path = fetchurl { + name = "style_loader___style_loader_0.21.0.tgz"; + url = "https://registry.yarnpkg.com/style-loader/-/style-loader-0.21.0.tgz"; + sha1 = "68c52e5eb2afc9ca92b6274be277ee59aea3a852"; + }; + } + { + name = "stylehacks___stylehacks_4.0.3.tgz"; + path = fetchurl { + name = "stylehacks___stylehacks_4.0.3.tgz"; + url = "https://registry.yarnpkg.com/stylehacks/-/stylehacks-4.0.3.tgz"; + sha1 = "6718fcaf4d1e07d8a1318690881e8d96726a71d5"; + }; + } + { + name = "superagent___superagent_1.8.3.tgz"; + path = fetchurl { + name = "superagent___superagent_1.8.3.tgz"; + url = "https://registry.yarnpkg.com/superagent/-/superagent-1.8.3.tgz"; + sha1 = "2b7d70fcc870eda4f2a61e619dd54009b86547c3"; + }; + } + { + name = "supports_color___supports_color_5.4.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_5.4.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz"; + sha1 = "1c6b337402c2137605efe19f10fec390f6faab54"; + }; + } + { + name = "supports_color___supports_color_2.0.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz"; + sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; + }; + } + { + name = "supports_color___supports_color_5.5.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_5.5.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz"; + sha1 = "e2e69a44ac8772f78a1ec0b35b689df6530efc8f"; + }; + } + { + name = "supports_color___supports_color_6.1.0.tgz"; + path = fetchurl { + name = "supports_color___supports_color_6.1.0.tgz"; + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz"; + sha1 = "0764abc69c63d5ac842dd4867e8d025e880df8f3"; + }; + } + { + name = "svgo___svgo_1.2.2.tgz"; + path = fetchurl { + name = "svgo___svgo_1.2.2.tgz"; + url = "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz"; + sha1 = "0253d34eccf2aed4ad4f283e11ee75198f9d7316"; + }; + } + { + name = "symbol_tree___symbol_tree_3.2.2.tgz"; + path = fetchurl { + name = "symbol_tree___symbol_tree_3.2.2.tgz"; + url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.2.tgz"; + sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; + }; + } + { + name = "table___table_5.4.0.tgz"; + path = fetchurl { + name = "table___table_5.4.0.tgz"; + url = "https://registry.yarnpkg.com/table/-/table-5.4.0.tgz"; + sha1 = "d772a3216e68829920a41a32c18eda286c95d780"; + }; + } + { + name = "tapable___tapable_1.1.3.tgz"; + path = fetchurl { + name = "tapable___tapable_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz"; + sha1 = "a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"; + }; + } + { + name = "tar_stream___tar_stream_1.6.2.tgz"; + path = fetchurl { + name = "tar_stream___tar_stream_1.6.2.tgz"; + url = "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.6.2.tgz"; + sha1 = "8ea55dab37972253d9a9af90fdcd559ae435c555"; + }; + } + { + name = "tar___tar_4.4.8.tgz"; + path = fetchurl { + name = "tar___tar_4.4.8.tgz"; + url = "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz"; + sha1 = "b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"; + }; + } + { + name = "taskgroup___taskgroup_4.3.1.tgz"; + path = fetchurl { + name = "taskgroup___taskgroup_4.3.1.tgz"; + url = "https://registry.yarnpkg.com/taskgroup/-/taskgroup-4.3.1.tgz"; + sha1 = "7de193febd768273c457730497024d512c27915a"; + }; + } + { + name = "tedious___tedious_1.15.0.tgz"; + path = fetchurl { + name = "tedious___tedious_1.15.0.tgz"; + url = "https://registry.yarnpkg.com/tedious/-/tedious-1.15.0.tgz"; + sha1 = "9bda9e9798212c8fcd9438a70cb2a806abcae70a"; + }; + } + { + name = "terraformer_wkt_parser___terraformer_wkt_parser_1.2.0.tgz"; + path = fetchurl { + name = "terraformer_wkt_parser___terraformer_wkt_parser_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/terraformer-wkt-parser/-/terraformer-wkt-parser-1.2.0.tgz"; + sha1 = "c9d6ac3dff25f4c0bd344e961f42694961834c34"; + }; + } + { + name = "terraformer___terraformer_1.0.9.tgz"; + path = fetchurl { + name = "terraformer___terraformer_1.0.9.tgz"; + url = "https://registry.yarnpkg.com/terraformer/-/terraformer-1.0.9.tgz"; + sha1 = "77851fef4a49c90b345dc53cf26809fdf29dcda6"; + }; + } + { + name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz"; + path = fetchurl { + name = "terser_webpack_plugin___terser_webpack_plugin_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz"; + sha1 = "69aa22426299f4b5b3775cbed8cb2c5d419aa1d4"; + }; + } + { + name = "terser___terser_4.0.0.tgz"; + path = fetchurl { + name = "terser___terser_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/terser/-/terser-4.0.0.tgz"; + sha1 = "ef356f6f359a963e2cc675517f21c1c382877374"; + }; + } + { + name = "text_hex___text_hex_1.0.0.tgz"; + path = fetchurl { + name = "text_hex___text_hex_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/text-hex/-/text-hex-1.0.0.tgz"; + sha1 = "69dc9c1b17446ee79a92bf5b884bb4b9127506f5"; + }; + } + { + name = "text_table___text_table_0.2.0.tgz"; + path = fetchurl { + name = "text_table___text_table_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz"; + sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; + }; + } + { + name = "throttleit___throttleit_1.0.0.tgz"; + path = fetchurl { + name = "throttleit___throttleit_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/throttleit/-/throttleit-1.0.0.tgz"; + sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; + }; + } + { + name = "through2___through2_0.6.5.tgz"; + path = fetchurl { + name = "through2___through2_0.6.5.tgz"; + url = "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz"; + sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; + }; + } + { + name = "through2___through2_2.0.5.tgz"; + path = fetchurl { + name = "through2___through2_2.0.5.tgz"; + url = "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz"; + sha1 = "01c1e39eb31d07cb7d03a96a70823260b23132cd"; + }; + } + { + name = "through___through_2.3.8.tgz"; + path = fetchurl { + name = "through___through_2.3.8.tgz"; + url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; + sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; + }; + } + { + name = "tildify___tildify_1.2.0.tgz"; + path = fetchurl { + name = "tildify___tildify_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz"; + sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a"; + }; + } + { + name = "time_stamp___time_stamp_1.1.0.tgz"; + path = fetchurl { + name = "time_stamp___time_stamp_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz"; + sha1 = "764a5a11af50561921b133f3b44e618687e0f5c3"; + }; + } + { + name = "timers_browserify___timers_browserify_2.0.10.tgz"; + path = fetchurl { + name = "timers_browserify___timers_browserify_2.0.10.tgz"; + url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz"; + sha1 = "1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"; + }; + } + { + name = "timers_ext___timers_ext_0.1.7.tgz"; + path = fetchurl { + name = "timers_ext___timers_ext_0.1.7.tgz"; + url = "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz"; + sha1 = "6f57ad8578e07a3fb9f91d9387d65647555e25c6"; + }; + } + { + name = "timsort___timsort_0.3.0.tgz"; + path = fetchurl { + name = "timsort___timsort_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz"; + sha1 = "405411a8e7e6339fe64db9a234de11dc31e02bd4"; + }; + } + { + name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; + path = fetchurl { + name = "tiny_emitter___tiny_emitter_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz"; + sha1 = "1d1a56edfc51c43e863cbb5382a72330e3555423"; + }; + } + { + name = "tmp___tmp_0.0.29.tgz"; + path = fetchurl { + name = "tmp___tmp_0.0.29.tgz"; + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz"; + sha1 = "f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0"; + }; + } + { + name = "tmp___tmp_0.0.33.tgz"; + path = fetchurl { + name = "tmp___tmp_0.0.33.tgz"; + url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; + sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; + }; + } + { + name = "to_array___to_array_0.1.4.tgz"; + path = fetchurl { + name = "to_array___to_array_0.1.4.tgz"; + url = "https://registry.yarnpkg.com/to-array/-/to-array-0.1.4.tgz"; + sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; + }; + } + { + name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; + path = fetchurl { + name = "to_arraybuffer___to_arraybuffer_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"; + sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43"; + }; + } + { + name = "to_buffer___to_buffer_1.1.1.tgz"; + path = fetchurl { + name = "to_buffer___to_buffer_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/to-buffer/-/to-buffer-1.1.1.tgz"; + sha1 = "493bd48f62d7c43fcded313a03dcadb2e1213a80"; + }; + } + { + name = "to_fast_properties___to_fast_properties_1.0.3.tgz"; + path = fetchurl { + name = "to_fast_properties___to_fast_properties_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; + sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; + }; + } + { + name = "to_object_path___to_object_path_0.3.0.tgz"; + path = fetchurl { + name = "to_object_path___to_object_path_0.3.0.tgz"; + url = "https://registry.yarnpkg.com/to-object-path/-/to-object-path-0.3.0.tgz"; + sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; + }; + } + { + name = "to_regex_range___to_regex_range_2.1.1.tgz"; + path = fetchurl { + name = "to_regex_range___to_regex_range_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-2.1.1.tgz"; + sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; + }; + } + { + name = "to_regex___to_regex_3.0.2.tgz"; + path = fetchurl { + name = "to_regex___to_regex_3.0.2.tgz"; + url = "https://registry.yarnpkg.com/to-regex/-/to-regex-3.0.2.tgz"; + sha1 = "13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"; + }; + } + { + name = "toidentifier___toidentifier_1.0.0.tgz"; + path = fetchurl { + name = "toidentifier___toidentifier_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz"; + sha1 = "7e1be3470f1e77948bc43d94a3c8f4d7752ba553"; + }; + } + { + name = "toobusy_js___toobusy_js_0.5.1.tgz"; + path = fetchurl { + name = "toobusy_js___toobusy_js_0.5.1.tgz"; + url = "https://registry.yarnpkg.com/toobusy-js/-/toobusy-js-0.5.1.tgz"; + sha1 = "5511f78f6a87a6a512d44fdb0efa13672217f659"; + }; + } + { + name = "toposort_class___toposort_class_1.0.1.tgz"; + path = fetchurl { + name = "toposort_class___toposort_class_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz"; + sha1 = "7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988"; + }; + } + { + name = "tough_cookie___tough_cookie_2.4.3.tgz"; + path = fetchurl { + name = "tough_cookie___tough_cookie_2.4.3.tgz"; + url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz"; + sha1 = "53f36da3f47783b0925afa06ff9f3b165280f781"; + }; + } + { + name = "tr46___tr46_1.0.1.tgz"; + path = fetchurl { + name = "tr46___tr46_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; + sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; + }; + } + { + name = "trim_right___trim_right_1.0.1.tgz"; + path = fetchurl { + name = "trim_right___trim_right_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz"; + sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; + }; + } + { + name = "triple_beam___triple_beam_1.3.0.tgz"; + path = fetchurl { + name = "triple_beam___triple_beam_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz"; + sha1 = "a595214c7298db8339eeeee083e4d10bd8cb8dd9"; + }; + } + { + name = "tslib___tslib_1.9.3.tgz"; + path = fetchurl { + name = "tslib___tslib_1.9.3.tgz"; + url = "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz"; + sha1 = "d7e4dd79245d85428c4d7e4822a79917954ca286"; + }; + } + { + name = "tty_browserify___tty_browserify_0.0.0.tgz"; + path = fetchurl { + name = "tty_browserify___tty_browserify_0.0.0.tgz"; + url = "https://registry.yarnpkg.com/tty-browserify/-/tty-browserify-0.0.0.tgz"; + sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; + }; + } + { + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; + path = fetchurl { + name = "tunnel_agent___tunnel_agent_0.6.0.tgz"; + url = "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; + sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; + }; + } + { + name = "turndown___turndown_5.0.3.tgz"; + path = fetchurl { + name = "turndown___turndown_5.0.3.tgz"; + url = "https://registry.yarnpkg.com/turndown/-/turndown-5.0.3.tgz"; + sha1 = "a1350b66155d7891f10e451432170b0f7cd7449a"; + }; + } + { + name = "tweetnacl___tweetnacl_0.14.5.tgz"; + path = fetchurl { + name = "tweetnacl___tweetnacl_0.14.5.tgz"; + url = "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz"; + sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; + }; + } + { + name = "type_check___type_check_0.3.2.tgz"; + path = fetchurl { + name = "type_check___type_check_0.3.2.tgz"; + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; + sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; + }; + } + { + name = "type_is___type_is_1.6.18.tgz"; + path = fetchurl { + name = "type_is___type_is_1.6.18.tgz"; + url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; + sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; + }; + } + { + name = "typechecker___typechecker_2.1.0.tgz"; + path = fetchurl { + name = "typechecker___typechecker_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/typechecker/-/typechecker-2.1.0.tgz"; + sha1 = "d1c2093a54ff8a19f58cff877eeaa54f2242d383"; + }; + } + { + name = "typechecker___typechecker_4.7.0.tgz"; + path = fetchurl { + name = "typechecker___typechecker_4.7.0.tgz"; + url = "https://registry.yarnpkg.com/typechecker/-/typechecker-4.7.0.tgz"; + sha1 = "5249f427358f45b7250c4924fd4d01ed9ba435e9"; + }; + } + { + name = "typechecker___typechecker_2.0.8.tgz"; + path = fetchurl { + name = "typechecker___typechecker_2.0.8.tgz"; + url = "https://registry.yarnpkg.com/typechecker/-/typechecker-2.0.8.tgz"; + sha1 = "e83da84bb64c584ccb345838576c40b0337db82e"; + }; + } + { + name = "typedarray___typedarray_0.0.6.tgz"; + path = fetchurl { + name = "typedarray___typedarray_0.0.6.tgz"; + url = "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz"; + sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; + }; + } + { + name = "uc.micro___uc.micro_1.0.6.tgz"; + path = fetchurl { + name = "uc.micro___uc.micro_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz"; + sha1 = "9c411a802a409a91fc6cf74081baba34b24499ac"; + }; + } + { + name = "uglify_es___uglify_es_3.3.9.tgz"; + path = fetchurl { + name = "uglify_es___uglify_es_3.3.9.tgz"; + url = "https://registry.yarnpkg.com/uglify-es/-/uglify-es-3.3.9.tgz"; + sha1 = "0c1c4f0700bed8dbc124cdb304d2592ca203e677"; + }; + } + { + name = "uglify_js___uglify_js_3.4.10.tgz"; + path = fetchurl { + name = "uglify_js___uglify_js_3.4.10.tgz"; + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.4.10.tgz"; + sha1 = "9ad9563d8eb3acdfb8d38597d2af1d815f6a755f"; + }; + } + { + name = "uglify_js___uglify_js_2.8.29.tgz"; + path = fetchurl { + name = "uglify_js___uglify_js_2.8.29.tgz"; + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-2.8.29.tgz"; + sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; + }; + } + { + name = "uglify_js___uglify_js_3.5.15.tgz"; + path = fetchurl { + name = "uglify_js___uglify_js_3.5.15.tgz"; + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.15.tgz"; + sha1 = "fe2b5378fd0b09e116864041437bff889105ce24"; + }; + } + { + name = "uglify_to_browserify___uglify_to_browserify_1.0.2.tgz"; + path = fetchurl { + name = "uglify_to_browserify___uglify_to_browserify_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; + sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; + }; + } + { + name = "uglifyjs_webpack_plugin___uglifyjs_webpack_plugin_1.3.0.tgz"; + path = fetchurl { + name = "uglifyjs_webpack_plugin___uglifyjs_webpack_plugin_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/uglifyjs-webpack-plugin/-/uglifyjs-webpack-plugin-1.3.0.tgz"; + sha1 = "75f548160858163a08643e086d5fefe18a5d67de"; + }; + } + { + name = "uid_safe___uid_safe_2.1.5.tgz"; + path = fetchurl { + name = "uid_safe___uid_safe_2.1.5.tgz"; + url = "https://registry.yarnpkg.com/uid-safe/-/uid-safe-2.1.5.tgz"; + sha1 = "2b3d5c7240e8fc2e58f8aa269e5ee49c0857bd3a"; + }; + } + { + name = "uid2___uid2_0.0.3.tgz"; + path = fetchurl { + name = "uid2___uid2_0.0.3.tgz"; + url = "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz"; + sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; + }; + } + { + name = "ultron___ultron_1.1.1.tgz"; + path = fetchurl { + name = "ultron___ultron_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/ultron/-/ultron-1.1.1.tgz"; + sha1 = "9fe1536a10a664a65266a1e3ccf85fd36302bc9c"; + }; + } + { + name = "umzug___umzug_1.12.0.tgz"; + path = fetchurl { + name = "umzug___umzug_1.12.0.tgz"; + url = "https://registry.yarnpkg.com/umzug/-/umzug-1.12.0.tgz"; + sha1 = "a79c91f2862eee3130c6c347f2b90ad68a66e8b8"; + }; + } + { + name = "unc_path_regex___unc_path_regex_0.1.2.tgz"; + path = fetchurl { + name = "unc_path_regex___unc_path_regex_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; + sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; + }; + } + { + name = "underscore.string___underscore.string_2.4.0.tgz"; + path = fetchurl { + name = "underscore.string___underscore.string_2.4.0.tgz"; + url = "https://registry.yarnpkg.com/underscore.string/-/underscore.string-2.4.0.tgz"; + sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; + }; + } + { + name = "underscore___underscore_1.8.3.tgz"; + path = fetchurl { + name = "underscore___underscore_1.8.3.tgz"; + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz"; + sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; + }; + } + { + name = "underscore___underscore_1.9.1.tgz"; + path = fetchurl { + name = "underscore___underscore_1.9.1.tgz"; + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz"; + sha1 = "06dce34a0e68a7babc29b365b8e74b8925203961"; + }; + } + { + name = "underscore___underscore_1.6.0.tgz"; + path = fetchurl { + name = "underscore___underscore_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.6.0.tgz"; + sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; + }; + } + { + name = "underscore___underscore_1.7.0.tgz"; + path = fetchurl { + name = "underscore___underscore_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.7.0.tgz"; + sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209"; + }; + } + { + name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; + path = fetchurl { + name = "unicode_canonical_property_names_ecmascript___unicode_canonical_property_names_ecmascript_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz"; + sha1 = "2619800c4c825800efdd8343af7dd9933cbe2818"; + }; + } + { + name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; + path = fetchurl { + name = "unicode_match_property_ecmascript___unicode_match_property_ecmascript_1.0.4.tgz"; + url = "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz"; + sha1 = "8ed2a32569961bce9227d09cd3ffbb8fed5f020c"; + }; + } + { + name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; + path = fetchurl { + name = "unicode_match_property_value_ecmascript___unicode_match_property_value_ecmascript_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz"; + sha1 = "5b4b426e08d13a80365e0d657ac7a6c1ec46a277"; + }; + } + { + name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; + path = fetchurl { + name = "unicode_property_aliases_ecmascript___unicode_property_aliases_ecmascript_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz"; + sha1 = "a9cc6cc7ce63a0a3023fc99e341b94431d405a57"; + }; + } + { + name = "union_value___union_value_1.0.0.tgz"; + path = fetchurl { + name = "union_value___union_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz"; + sha1 = "5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"; + }; + } + { + name = "uniq___uniq_1.0.1.tgz"; + path = fetchurl { + name = "uniq___uniq_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz"; + sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; + }; + } + { + name = "uniqs___uniqs_2.0.0.tgz"; + path = fetchurl { + name = "uniqs___uniqs_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/uniqs/-/uniqs-2.0.0.tgz"; + sha1 = "ffede4b36b25290696e6e165d4a59edb998e6b02"; + }; + } + { + name = "unique_filename___unique_filename_1.1.1.tgz"; + path = fetchurl { + name = "unique_filename___unique_filename_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/unique-filename/-/unique-filename-1.1.1.tgz"; + sha1 = "1d69769369ada0583103a1e6ae87681b56573230"; + }; + } + { + name = "unique_slug___unique_slug_2.0.1.tgz"; + path = fetchurl { + name = "unique_slug___unique_slug_2.0.1.tgz"; + url = "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz"; + sha1 = "5e9edc6d1ce8fb264db18a507ef9bd8544451ca6"; + }; + } + { + name = "unique_stream___unique_stream_1.0.0.tgz"; + path = fetchurl { + name = "unique_stream___unique_stream_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz"; + sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b"; + }; + } + { + name = "universalify___universalify_0.1.2.tgz"; + path = fetchurl { + name = "universalify___universalify_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; + sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66"; + }; + } + { + name = "unpipe___unpipe_1.0.0.tgz"; + path = fetchurl { + name = "unpipe___unpipe_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz"; + sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; + }; + } + { + name = "unquote___unquote_1.1.1.tgz"; + path = fetchurl { + name = "unquote___unquote_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz"; + sha1 = "8fded7324ec6e88a0ff8b905e7c098cdc086d544"; + }; + } + { + name = "unset_value___unset_value_1.0.0.tgz"; + path = fetchurl { + name = "unset_value___unset_value_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz"; + sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; + }; + } + { + name = "upath___upath_1.1.2.tgz"; + path = fetchurl { + name = "upath___upath_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/upath/-/upath-1.1.2.tgz"; + sha1 = "3db658600edaeeccbe6db5e684d67ee8c2acd068"; + }; + } + { + name = "upper_case___upper_case_1.1.3.tgz"; + path = fetchurl { + name = "upper_case___upper_case_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/upper-case/-/upper-case-1.1.3.tgz"; + sha1 = "f6b4501c2ec4cdd26ba78be7222961de77621598"; + }; + } + { + name = "uri_js___uri_js_4.2.2.tgz"; + path = fetchurl { + name = "uri_js___uri_js_4.2.2.tgz"; + url = "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz"; + sha1 = "94c540e1ff772956e2299507c010aea6c8838eb0"; + }; + } + { + name = "urix___urix_0.1.0.tgz"; + path = fetchurl { + name = "urix___urix_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz"; + sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; + }; + } + { + name = "url_loader___url_loader_1.1.2.tgz"; + path = fetchurl { + name = "url_loader___url_loader_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/url-loader/-/url-loader-1.1.2.tgz"; + sha1 = "b971d191b83af693c5e3fea4064be9e1f2d7f8d8"; + }; + } + { + name = "url___url_0.10.3.tgz"; + path = fetchurl { + name = "url___url_0.10.3.tgz"; + url = "https://registry.yarnpkg.com/url/-/url-0.10.3.tgz"; + sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; + }; + } + { + name = "url___url_0.11.0.tgz"; + path = fetchurl { + name = "url___url_0.11.0.tgz"; + url = "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz"; + sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; + }; + } + { + name = "use___use_3.1.1.tgz"; + path = fetchurl { + name = "use___use_3.1.1.tgz"; + url = "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz"; + sha1 = "d50c8cac79a19fbc20f2911f56eb973f4e10070f"; + }; + } + { + name = "user_home___user_home_1.1.1.tgz"; + path = fetchurl { + name = "user_home___user_home_1.1.1.tgz"; + url = "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz"; + sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190"; + }; + } + { + name = "utf_8_validate___utf_8_validate_5.0.2.tgz"; + path = fetchurl { + name = "utf_8_validate___utf_8_validate_5.0.2.tgz"; + url = "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.2.tgz"; + sha1 = "63cfbccd85dc1f2b66cf7a1d0eebc08ed056bfb3"; + }; + } + { + name = "util_deprecate___util_deprecate_1.0.2.tgz"; + path = fetchurl { + name = "util_deprecate___util_deprecate_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz"; + sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; + }; + } + { + name = "util.promisify___util.promisify_1.0.0.tgz"; + path = fetchurl { + name = "util.promisify___util.promisify_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/util.promisify/-/util.promisify-1.0.0.tgz"; + sha1 = "440f7165a459c9a16dc145eb8e72f35687097030"; + }; + } + { + name = "util___util_0.10.3.tgz"; + path = fetchurl { + name = "util___util_0.10.3.tgz"; + url = "https://registry.yarnpkg.com/util/-/util-0.10.3.tgz"; + sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; + }; + } + { + name = "util___util_0.11.1.tgz"; + path = fetchurl { + name = "util___util_0.11.1.tgz"; + url = "https://registry.yarnpkg.com/util/-/util-0.11.1.tgz"; + sha1 = "3236733720ec64bb27f6e26f421aaa2e1b588d61"; + }; + } + { + name = "utila___utila_0.4.0.tgz"; + path = fetchurl { + name = "utila___utila_0.4.0.tgz"; + url = "https://registry.yarnpkg.com/utila/-/utila-0.4.0.tgz"; + sha1 = "8a16a05d445657a3aea5eecc5b12a4fa5379772c"; + }; + } + { + name = "utils_merge___utils_merge_1.0.1.tgz"; + path = fetchurl { + name = "utils_merge___utils_merge_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz"; + sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; + }; + } + { + name = "uuid___uuid_3.3.2.tgz"; + path = fetchurl { + name = "uuid___uuid_3.3.2.tgz"; + url = "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz"; + sha1 = "1b4af4955eb3077c501c23872fc6513811587131"; + }; + } + { + name = "v8_compile_cache___v8_compile_cache_2.0.3.tgz"; + path = fetchurl { + name = "v8_compile_cache___v8_compile_cache_2.0.3.tgz"; + url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz"; + sha1 = "00f7494d2ae2b688cfe2899df6ed2c54bef91dbe"; + }; + } + { + name = "v8flags___v8flags_2.1.1.tgz"; + path = fetchurl { + name = "v8flags___v8flags_2.1.1.tgz"; + url = "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz"; + sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4"; + }; + } + { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + path = fetchurl { + name = "validate_npm_package_license___validate_npm_package_license_3.0.4.tgz"; + url = "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; + sha1 = "fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"; + }; + } + { + name = "validator___validator_10.11.0.tgz"; + path = fetchurl { + name = "validator___validator_10.11.0.tgz"; + url = "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz"; + sha1 = "003108ea6e9a9874d31ccc9e5006856ccd76b228"; + }; + } + { + name = "validator___validator_5.7.0.tgz"; + path = fetchurl { + name = "validator___validator_5.7.0.tgz"; + url = "https://registry.yarnpkg.com/validator/-/validator-5.7.0.tgz"; + sha1 = "7a87a58146b695ac486071141c0c49d67da05e5c"; + }; + } + { + name = "validator___validator_9.4.1.tgz"; + path = fetchurl { + name = "validator___validator_9.4.1.tgz"; + url = "https://registry.yarnpkg.com/validator/-/validator-9.4.1.tgz"; + sha1 = "abf466d398b561cd243050112c6ff1de6cc12663"; + }; + } + { + name = "vary___vary_1.1.2.tgz"; + path = fetchurl { + name = "vary___vary_1.1.2.tgz"; + url = "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz"; + sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; + }; + } + { + name = "vasync___vasync_1.6.4.tgz"; + path = fetchurl { + name = "vasync___vasync_1.6.4.tgz"; + url = "https://registry.yarnpkg.com/vasync/-/vasync-1.6.4.tgz"; + sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; + }; + } + { + name = "velocity_animate___velocity_animate_1.5.2.tgz"; + path = fetchurl { + name = "velocity_animate___velocity_animate_1.5.2.tgz"; + url = "https://registry.yarnpkg.com/velocity-animate/-/velocity-animate-1.5.2.tgz"; + sha1 = "5a351d75fca2a92756f5c3867548b873f6c32105"; + }; + } + { + name = "vendors___vendors_1.0.3.tgz"; + path = fetchurl { + name = "vendors___vendors_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/vendors/-/vendors-1.0.3.tgz"; + sha1 = "a6467781abd366217c050f8202e7e50cc9eef8c0"; + }; + } + { + name = "verror___verror_1.10.0.tgz"; + path = fetchurl { + name = "verror___verror_1.10.0.tgz"; + url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; + sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; + }; + } + { + name = "verror___verror_1.6.0.tgz"; + path = fetchurl { + name = "verror___verror_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/verror/-/verror-1.6.0.tgz"; + sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; + }; + } + { + name = "vinyl_fs___vinyl_fs_0.3.14.tgz"; + path = fetchurl { + name = "vinyl_fs___vinyl_fs_0.3.14.tgz"; + url = "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz"; + sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"; + }; + } + { + name = "vinyl___vinyl_0.4.6.tgz"; + path = fetchurl { + name = "vinyl___vinyl_0.4.6.tgz"; + url = "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz"; + sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; + }; + } + { + name = "vinyl___vinyl_0.5.3.tgz"; + path = fetchurl { + name = "vinyl___vinyl_0.5.3.tgz"; + url = "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz"; + sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; + }; + } + { + name = "visibilityjs___visibilityjs_1.2.8.tgz"; + path = fetchurl { + name = "visibilityjs___visibilityjs_1.2.8.tgz"; + url = "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-1.2.8.tgz"; + sha1 = "4ccdcebdaef0b34fb89219ab8e10e39c3a7cbfd8"; + }; + } + { + name = "viz.js___viz.js_1.8.2.tgz"; + path = fetchurl { + name = "viz.js___viz.js_1.8.2.tgz"; + url = "https://registry.yarnpkg.com/viz.js/-/viz.js-1.8.2.tgz"; + sha1 = "d9cc04cd99f98ec986bf9054db76a6cbcdc5d97a"; + }; + } + { + name = "vm_browserify___vm_browserify_0.0.4.tgz"; + path = fetchurl { + name = "vm_browserify___vm_browserify_0.0.4.tgz"; + url = "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz"; + sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; + }; + } + { + name = "w3c_hr_time___w3c_hr_time_1.0.1.tgz"; + path = fetchurl { + name = "w3c_hr_time___w3c_hr_time_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz"; + sha1 = "82ac2bff63d950ea9e3189a58a65625fedf19045"; + }; + } + { + name = "watchpack___watchpack_1.6.0.tgz"; + path = fetchurl { + name = "watchpack___watchpack_1.6.0.tgz"; + url = "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz"; + sha1 = "4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"; + }; + } + { + name = "watchr___watchr_2.4.13.tgz"; + path = fetchurl { + name = "watchr___watchr_2.4.13.tgz"; + url = "https://registry.yarnpkg.com/watchr/-/watchr-2.4.13.tgz"; + sha1 = "d74847bb4d6f90f61fe2c74f9f68662aa0e07601"; + }; + } + { + name = "weak_map___weak_map_1.0.5.tgz"; + path = fetchurl { + name = "weak_map___weak_map_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.5.tgz"; + sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; + }; + } + { + name = "webfontloader___webfontloader_1.6.28.tgz"; + path = fetchurl { + name = "webfontloader___webfontloader_1.6.28.tgz"; + url = "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz"; + sha1 = "db786129253cb6e8eae54c2fb05f870af6675bae"; + }; + } + { + name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; + path = fetchurl { + name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; + url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; + sha1 = "a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"; + }; + } + { + name = "webpack_cli___webpack_cli_3.3.2.tgz"; + path = fetchurl { + name = "webpack_cli___webpack_cli_3.3.2.tgz"; + url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.2.tgz"; + sha1 = "aed2437b0db0a7faa2ad28484e166a5360014a91"; + }; + } + { + name = "webpack_merge___webpack_merge_4.2.1.tgz"; + path = fetchurl { + name = "webpack_merge___webpack_merge_4.2.1.tgz"; + url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.1.tgz"; + sha1 = "5e923cf802ea2ace4fd5af1d3247368a633489b4"; + }; + } + { + name = "webpack_parallel_uglify_plugin___webpack_parallel_uglify_plugin_1.1.0.tgz"; + path = fetchurl { + name = "webpack_parallel_uglify_plugin___webpack_parallel_uglify_plugin_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/webpack-parallel-uglify-plugin/-/webpack-parallel-uglify-plugin-1.1.0.tgz"; + sha1 = "252a6c796bf79a8047b00de2cf08c23aa9861441"; + }; + } + { + name = "webpack_sources___webpack_sources_1.3.0.tgz"; + path = fetchurl { + name = "webpack_sources___webpack_sources_1.3.0.tgz"; + url = "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz"; + sha1 = "2a28dcb9f1f45fe960d8f1493252b5ee6530fa85"; + }; + } + { + name = "webpack___webpack_4.32.2.tgz"; + path = fetchurl { + name = "webpack___webpack_4.32.2.tgz"; + url = "https://registry.yarnpkg.com/webpack/-/webpack-4.32.2.tgz"; + sha1 = "3639375364a617e84b914ddb2c770aed511e5bc8"; + }; + } + { + name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; + path = fetchurl { + name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; + url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"; + sha1 = "5abacf777c32166a51d085d6b4f3e7d27113ddb0"; + }; + } + { + name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; + path = fetchurl { + name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; + sha1 = "3d4b1e0312d2079879f826aff18dbeeca5960fbf"; + }; + } + { + name = "whatwg_url___whatwg_url_6.5.0.tgz"; + path = fetchurl { + name = "whatwg_url___whatwg_url_6.5.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz"; + sha1 = "f2df02bff176fd65070df74ad5ccbb5a199965a8"; + }; + } + { + name = "whatwg_url___whatwg_url_7.0.0.tgz"; + path = fetchurl { + name = "whatwg_url___whatwg_url_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz"; + sha1 = "fde926fa54a599f3adf82dff25a9f7be02dc6edd"; + }; + } + { + name = "which_module___which_module_2.0.0.tgz"; + path = fetchurl { + name = "which_module___which_module_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz"; + sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; + }; + } + { + name = "which___which_1.3.1.tgz"; + path = fetchurl { + name = "which___which_1.3.1.tgz"; + url = "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz"; + sha1 = "a45043d54f5805316da8d62f9f50918d3da70b0a"; + }; + } + { + name = "wide_align___wide_align_1.1.3.tgz"; + path = fetchurl { + name = "wide_align___wide_align_1.1.3.tgz"; + url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz"; + sha1 = "ae074e6bdc0c14a431e804e624549c633b000457"; + }; + } + { + name = "window_size___window_size_0.1.0.tgz"; + path = fetchurl { + name = "window_size___window_size_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/window-size/-/window-size-0.1.0.tgz"; + sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; + }; + } + { + name = "winston_transport___winston_transport_4.3.0.tgz"; + path = fetchurl { + name = "winston_transport___winston_transport_4.3.0.tgz"; + url = "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.3.0.tgz"; + sha1 = "df68c0c202482c448d9b47313c07304c2d7c2c66"; + }; + } + { + name = "winston___winston_3.2.1.tgz"; + path = fetchurl { + name = "winston___winston_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/winston/-/winston-3.2.1.tgz"; + sha1 = "63061377976c73584028be2490a1846055f77f07"; + }; + } + { + name = "wkx___wkx_0.2.0.tgz"; + path = fetchurl { + name = "wkx___wkx_0.2.0.tgz"; + url = "https://registry.yarnpkg.com/wkx/-/wkx-0.2.0.tgz"; + sha1 = "76c24f16acd0cd8f93cd34aa331e0f7961256e84"; + }; + } + { + name = "wordwrap___wordwrap_0.0.2.tgz"; + path = fetchurl { + name = "wordwrap___wordwrap_0.0.2.tgz"; + url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.2.tgz"; + sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; + }; + } + { + name = "wordwrap___wordwrap_0.0.3.tgz"; + path = fetchurl { + name = "wordwrap___wordwrap_0.0.3.tgz"; + url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz"; + sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; + }; + } + { + name = "wordwrap___wordwrap_1.0.0.tgz"; + path = fetchurl { + name = "wordwrap___wordwrap_1.0.0.tgz"; + url = "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz"; + sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; + }; + } + { + name = "worker_farm___worker_farm_1.7.0.tgz"; + path = fetchurl { + name = "worker_farm___worker_farm_1.7.0.tgz"; + url = "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz"; + sha1 = "26a94c5391bbca926152002f69b84a4bf772e5a8"; + }; + } + { + name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; + path = fetchurl { + name = "wrap_ansi___wrap_ansi_2.1.0.tgz"; + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; + sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; + }; + } + { + name = "wrappy___wrappy_1.0.2.tgz"; + path = fetchurl { + name = "wrappy___wrappy_1.0.2.tgz"; + url = "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz"; + sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; + }; + } + { + name = "write___write_1.0.3.tgz"; + path = fetchurl { + name = "write___write_1.0.3.tgz"; + url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; + sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; + }; + } + { + name = "ws___ws_5.2.2.tgz"; + path = fetchurl { + name = "ws___ws_5.2.2.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz"; + sha1 = "dffef14866b8e8dc9133582514d1befaf96e980f"; + }; + } + { + name = "ws___ws_6.2.1.tgz"; + path = fetchurl { + name = "ws___ws_6.2.1.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz"; + sha1 = "442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"; + }; + } + { + name = "ws___ws_3.3.3.tgz"; + path = fetchurl { + name = "ws___ws_3.3.3.tgz"; + url = "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz"; + sha1 = "f1cf84fe2d5e901ebce94efaece785f187a228f2"; + }; + } + { + name = "wurl___wurl_2.5.3.tgz"; + path = fetchurl { + name = "wurl___wurl_2.5.3.tgz"; + url = "https://registry.yarnpkg.com/wurl/-/wurl-2.5.3.tgz"; + sha1 = "79ff7c4d8c6584cb46d239517ecac334380af7fd"; + }; + } + { + name = "x_xss_protection___x_xss_protection_1.1.0.tgz"; + path = fetchurl { + name = "x_xss_protection___x_xss_protection_1.1.0.tgz"; + url = "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.1.0.tgz"; + sha1 = "4f1898c332deb1e7f2be1280efb3e2c53d69c1a7"; + }; + } + { + name = "xml_crypto___xml_crypto_1.4.0.tgz"; + path = fetchurl { + name = "xml_crypto___xml_crypto_1.4.0.tgz"; + url = "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-1.4.0.tgz"; + sha1 = "de1cec8cd31cbd689cd90d3d6e8a27d4ae807de7"; + }; + } + { + name = "xml_encryption___xml_encryption_0.11.2.tgz"; + path = fetchurl { + name = "xml_encryption___xml_encryption_0.11.2.tgz"; + url = "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-0.11.2.tgz"; + sha1 = "c217f5509547e34b500b829f2c0bca85cca73a21"; + }; + } + { + name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; + path = fetchurl { + name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; + url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz"; + sha1 = "6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"; + }; + } + { + name = "xml2js___xml2js_0.2.8.tgz"; + path = fetchurl { + name = "xml2js___xml2js_0.2.8.tgz"; + url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.2.8.tgz"; + sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2"; + }; + } + { + name = "xml2js___xml2js_0.4.19.tgz"; + path = fetchurl { + name = "xml2js___xml2js_0.4.19.tgz"; + url = "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.19.tgz"; + sha1 = "686c20f213209e94abf0d1bcf1efaa291c7827a7"; + }; + } + { + name = "xml___xml_1.0.1.tgz"; + path = fetchurl { + name = "xml___xml_1.0.1.tgz"; + url = "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz"; + sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; + }; + } + { + name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; + path = fetchurl { + name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; + url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; + sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3"; + }; + } + { + name = "xmlbuilder___xmlbuilder_9.0.7.tgz"; + path = fetchurl { + name = "xmlbuilder___xmlbuilder_9.0.7.tgz"; + url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; + sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d"; + }; + } + { + name = "xmldom___xmldom_0.1.27.tgz"; + path = fetchurl { + name = "xmldom___xmldom_0.1.27.tgz"; + url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz"; + sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; + }; + } + { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.5.5.tgz"; + path = fetchurl { + name = "xmlhttprequest_ssl___xmlhttprequest_ssl_1.5.5.tgz"; + url = "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; + sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; + }; + } + { + name = "xmlhttprequest___xmlhttprequest_1.8.0.tgz"; + path = fetchurl { + name = "xmlhttprequest___xmlhttprequest_1.8.0.tgz"; + url = "https://registry.yarnpkg.com/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; + sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; + }; + } + { + name = "xpath___xpath_0.0.27.tgz"; + path = fetchurl { + name = "xpath___xpath_0.0.27.tgz"; + url = "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz"; + sha1 = "dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92"; + }; + } + { + name = "xregexp___xregexp_2.0.0.tgz"; + path = fetchurl { + name = "xregexp___xregexp_2.0.0.tgz"; + url = "https://registry.yarnpkg.com/xregexp/-/xregexp-2.0.0.tgz"; + sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; + }; + } + { + name = "xss___xss_1.0.6.tgz"; + path = fetchurl { + name = "xss___xss_1.0.6.tgz"; + url = "https://registry.yarnpkg.com/xss/-/xss-1.0.6.tgz"; + sha1 = "eaf11e9fc476e3ae289944a1009efddd8a124b51"; + }; + } + { + name = "xtend___xtend_4.0.1.tgz"; + path = fetchurl { + name = "xtend___xtend_4.0.1.tgz"; + url = "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz"; + sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; + }; + } + { + name = "xtraverse___xtraverse_0.1.0.tgz"; + path = fetchurl { + name = "xtraverse___xtraverse_0.1.0.tgz"; + url = "https://registry.yarnpkg.com/xtraverse/-/xtraverse-0.1.0.tgz"; + sha1 = "b741bad018ef78d8a9d2e83ade007b3f7959c732"; + }; + } + { + name = "y18n___y18n_3.2.1.tgz"; + path = fetchurl { + name = "y18n___y18n_3.2.1.tgz"; + url = "https://registry.yarnpkg.com/y18n/-/y18n-3.2.1.tgz"; + sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; + }; + } + { + name = "y18n___y18n_4.0.0.tgz"; + path = fetchurl { + name = "y18n___y18n_4.0.0.tgz"; + url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz"; + sha1 = "95ef94f85ecc81d007c264e190a120f0a3c8566b"; + }; + } + { + name = "yallist___yallist_2.1.2.tgz"; + path = fetchurl { + name = "yallist___yallist_2.1.2.tgz"; + url = "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz"; + sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; + }; + } + { + name = "yallist___yallist_3.0.3.tgz"; + path = fetchurl { + name = "yallist___yallist_3.0.3.tgz"; + url = "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz"; + sha1 = "b4b049e314be545e3ce802236d6cd22cd91c3de9"; + }; + } + { + name = "yargs_parser___yargs_parser_11.1.1.tgz"; + path = fetchurl { + name = "yargs_parser___yargs_parser_11.1.1.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-11.1.1.tgz"; + sha1 = "879a0865973bca9f6bab5cbdf3b1c67ec7d3bcf4"; + }; + } + { + name = "yargs_parser___yargs_parser_7.0.0.tgz"; + path = fetchurl { + name = "yargs_parser___yargs_parser_7.0.0.tgz"; + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-7.0.0.tgz"; + sha1 = "8d0ac42f16ea55debd332caf4c4038b3e3f5dfd9"; + }; + } + { + name = "yargs___yargs_12.0.5.tgz"; + path = fetchurl { + name = "yargs___yargs_12.0.5.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz"; + sha1 = "05f5997b609647b64f66b81e3b4b10a368e7ad13"; + }; + } + { + name = "yargs___yargs_8.0.2.tgz"; + path = fetchurl { + name = "yargs___yargs_8.0.2.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-8.0.2.tgz"; + sha1 = "6299a9055b1cefc969ff7e79c1d918dceb22c360"; + }; + } + { + name = "yargs___yargs_3.10.0.tgz"; + path = fetchurl { + name = "yargs___yargs_3.10.0.tgz"; + url = "https://registry.yarnpkg.com/yargs/-/yargs-3.10.0.tgz"; + sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; + }; + } + { + name = "yauzl___yauzl_2.4.1.tgz"; + path = fetchurl { + name = "yauzl___yauzl_2.4.1.tgz"; + url = "https://registry.yarnpkg.com/yauzl/-/yauzl-2.4.1.tgz"; + sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; + }; + } + { + name = "yeast___yeast_0.1.2.tgz"; + path = fetchurl { + name = "yeast___yeast_0.1.2.tgz"; + url = "https://registry.yarnpkg.com/yeast/-/yeast-0.1.2.tgz"; + sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; + }; + } + { + name = "zip_stream___zip_stream_1.2.0.tgz"; + path = fetchurl { + name = "zip_stream___zip_stream_1.2.0.tgz"; + url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-1.2.0.tgz"; + sha1 = "a8bc45f4c1b49699c6b90198baacaacdbcd4ba04"; + }; + } + ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d3b74daa84..a8c0a3e62c2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2168,7 +2168,13 @@ in cmst = libsForQt5.callPackage ../tools/networking/cmst { }; - codimd = callPackage ../servers/web-apps/codimd { }; + codimd = callPackage ../servers/web-apps/codimd { + nodejs = nodejs-10_x; + yarn2nix = yarn2nix-moretea.override { + nodejs = nodejs-10_x; + yarn = yarn.override { nodejs = nodejs-10_x; }; + }; + }; colord = callPackage ../tools/misc/colord { }; From 72db434e6a3acd98b726e80aa82c486f094049b8 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Thu, 25 Jul 2019 18:45:44 +0200 Subject: [PATCH 1047/1611] plex: 1.16.2.1321 -> 1.16.3.1402 --- pkgs/servers/plex/raw.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/plex/raw.nix b/pkgs/servers/plex/raw.nix index d5aea241484..84d4d04cac7 100644 --- a/pkgs/servers/plex/raw.nix +++ b/pkgs/servers/plex/raw.nix @@ -8,14 +8,14 @@ # server, and the FHS userenv and corresponding NixOS module should # automatically pick up the changes. stdenv.mkDerivation rec { - version = "1.16.2.1321-ad17d5f9e"; + version = "1.16.3.1402-22929c8a2"; pname = "plexmediaserver"; name = "${pname}-${version}"; # Fetch the source src = fetchurl { url = "https://downloads.plex.tv/plex-media-server-new/${version}/redhat/plexmediaserver-${version}.x86_64.rpm"; - sha256 = "0h3qw563fa296crbcnarykk3lq7qp1v4znzzylbmy87li1rd77a9"; + sha256 = "0mb5y777mcyn8lv1afyi0xx0afyzjm67ccbbkyhk2j817k9diyg5"; }; outputs = [ "out" "basedb" ]; From 963b18a0cc1ae7188f1aabdfc4b6e8b64219f6f1 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Thu, 25 Jul 2019 19:51:45 +0200 Subject: [PATCH 1048/1611] prometheus-varnish-exporter: 1.4 -> 1.5 --- .../prometheus/varnish-exporter.nix | 7 +- .../prometheus/varnish-exporter_deps.nix | 261 +++++++++++++++++- 2 files changed, 251 insertions(+), 17 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/varnish-exporter.nix b/pkgs/servers/monitoring/prometheus/varnish-exporter.nix index b23270cd8c1..1a623a3171d 100644 --- a/pkgs/servers/monitoring/prometheus/varnish-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/varnish-exporter.nix @@ -1,9 +1,8 @@ -# This file was generated by go2nix. { lib, buildGoPackage, fetchFromGitHub, makeWrapper, varnish }: buildGoPackage rec { name = "prometheus_varnish_exporter-${version}"; - version = "1.4"; + version = "1.5"; goPackagePath = "github.com/jonnenauha/prometheus_varnish_exporter"; @@ -11,7 +10,7 @@ buildGoPackage rec { owner = "jonnenauha"; repo = "prometheus_varnish_exporter"; rev = version; - sha256 = "12gd09858zlhn8gkkchfwxv0ca2r72s18wrsz0agfr8pd1gxqh6j"; + sha256 = "1040x7fk3s056yrn95siilhi8c9cci2mdncc1xfjf5xj87421qx8"; }; goDeps = ./varnish-exporter_deps.nix; @@ -26,7 +25,7 @@ buildGoPackage rec { doCheck = true; meta = { - homepage = https://github.com/jonnenauha/prometheus_varnish_exporter; + homepage = "https://github.com/jonnenauha/prometheus_varnish_exporter"; description = "Varnish exporter for Prometheus"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ MostAwesomeDude willibutz ]; diff --git a/pkgs/servers/monitoring/prometheus/varnish-exporter_deps.nix b/pkgs/servers/monitoring/prometheus/varnish-exporter_deps.nix index 19ff1e9aa56..aeacbb5cee8 100644 --- a/pkgs/servers/monitoring/prometheus/varnish-exporter_deps.nix +++ b/pkgs/servers/monitoring/prometheus/varnish-exporter_deps.nix @@ -1,11 +1,75 @@ +# file generated from go.mod using vgo2nix (https://github.com/adisbladis/vgo2nix) [ + { + goPackagePath = "github.com/alecthomas/template"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/template"; + rev = "a0175ee3bccc"; + sha256 = "0qjgvvh26vk1cyfq9fadyhfgdj36f1iapbmr5xp6zqipldz8ffxj"; + }; + } + { + goPackagePath = "github.com/alecthomas/units"; + fetch = { + type = "git"; + url = "https://github.com/alecthomas/units"; + rev = "2efee857e7cf"; + sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; + }; + } { goPackagePath = "github.com/beorn7/perks"; fetch = { type = "git"; url = "https://github.com/beorn7/perks"; - rev = "3a771d992973f24aa725d07868b467d1ddfceafb"; - sha256 = "1l2lns4f5jabp61201sh88zf3b0q793w4zdgp9nll7mmfcxxjif3"; + rev = "v1.0.0"; + sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x"; + }; + } + { + goPackagePath = "github.com/davecgh/go-spew"; + fetch = { + type = "git"; + url = "https://github.com/davecgh/go-spew"; + rev = "v1.1.1"; + sha256 = "0hka6hmyvp701adzag2g26cxdj47g21x6jz4sc6jjz1mn59d474y"; + }; + } + { + goPackagePath = "github.com/go-kit/kit"; + fetch = { + type = "git"; + url = "https://github.com/go-kit/kit"; + rev = "v0.8.0"; + sha256 = "1rcywbc2pvab06qyf8pc2rdfjv7r6kxdv2v4wnpqnjhz225wqvc0"; + }; + } + { + goPackagePath = "github.com/go-logfmt/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/go-logfmt/logfmt"; + rev = "v0.3.0"; + sha256 = "1gkgh3k5w1xwb2qbjq52p6azq3h1c1rr6pfwjlwj1zrijpzn2xb9"; + }; + } + { + goPackagePath = "github.com/go-stack/stack"; + fetch = { + type = "git"; + url = "https://github.com/go-stack/stack"; + rev = "v1.8.0"; + sha256 = "0wk25751ryyvxclyp8jdk5c3ar0cmfr8lrjb66qbg4808x66b96v"; + }; + } + { + goPackagePath = "github.com/gogo/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/gogo/protobuf"; + rev = "v1.1.1"; + sha256 = "1525pq7r6h3s8dncvq8gxi893p2nq8dxpzvq0nfl5b4p6mq0v1c2"; }; } { @@ -13,8 +77,44 @@ fetch = { type = "git"; url = "https://github.com/golang/protobuf"; - rev = "b4deda0973fb4c70b50d226b1af49f3da59f5265"; - sha256 = "0ya4ha7m20bw048m1159ppqzlvda4x0vdprlbk5sdgmy74h3xcdq"; + rev = "v1.3.1"; + sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"; + }; + } + { + goPackagePath = "github.com/json-iterator/go"; + fetch = { + type = "git"; + url = "https://github.com/json-iterator/go"; + rev = "v1.1.6"; + sha256 = "08caswxvdn7nvaqyj5kyny6ghpygandlbw9vxdj7l5vkp7q0s43r"; + }; + } + { + goPackagePath = "github.com/julienschmidt/httprouter"; + fetch = { + type = "git"; + url = "https://github.com/julienschmidt/httprouter"; + rev = "v1.2.0"; + sha256 = "1k8bylc9s4vpvf5xhqh9h246dl1snxrzzz0614zz88cdh8yzs666"; + }; + } + { + goPackagePath = "github.com/konsorten/go-windows-terminal-sequences"; + fetch = { + type = "git"; + url = "https://github.com/konsorten/go-windows-terminal-sequences"; + rev = "v1.0.1"; + sha256 = "1lchgf27n276vma6iyxa0v1xds68n2g8lih5lavqnx5x6q5pw2ip"; + }; + } + { + goPackagePath = "github.com/kr/logfmt"; + fetch = { + type = "git"; + url = "https://github.com/kr/logfmt"; + rev = "b84e30acd515"; + sha256 = "02ldzxgznrfdzvghfraslhgp19la1fczcbzh7wm2zdc6lmpd1qq9"; }; } { @@ -22,17 +122,62 @@ fetch = { type = "git"; url = "https://github.com/matttproud/golang_protobuf_extensions"; - rev = "c12348ce28de40eed0136aa2b644d0ee0650e56c"; + rev = "v1.0.1"; sha256 = "1d0c1isd2lk9pnfq2nk0aih356j30k3h1gi2w0ixsivi5csl7jya"; }; } + { + goPackagePath = "github.com/modern-go/concurrent"; + fetch = { + type = "git"; + url = "https://github.com/modern-go/concurrent"; + rev = "bacd9c7ef1dd"; + sha256 = "0s0fxccsyb8icjmiym5k7prcqx36hvgdwl588y0491gi18k5i4zs"; + }; + } + { + goPackagePath = "github.com/modern-go/reflect2"; + fetch = { + type = "git"; + url = "https://github.com/modern-go/reflect2"; + rev = "v1.0.1"; + sha256 = "06a3sablw53n1dqqbr2f53jyksbxdmmk8axaas4yvnhyfi55k4lf"; + }; + } + { + goPackagePath = "github.com/mwitkow/go-conntrack"; + fetch = { + type = "git"; + url = "https://github.com/mwitkow/go-conntrack"; + rev = "cc309e4a2223"; + sha256 = "0nbrnpk7bkmqg9mzwsxlm0y8m7s9qd9phr1q30qlx2qmdmz7c1mf"; + }; + } + { + goPackagePath = "github.com/pkg/errors"; + fetch = { + type = "git"; + url = "https://github.com/pkg/errors"; + rev = "v0.8.0"; + sha256 = "001i6n71ghp2l6kdl3qq1v2vmghcz3kicv9a5wgcihrzigm75pp5"; + }; + } + { + goPackagePath = "github.com/pmezard/go-difflib"; + fetch = { + type = "git"; + url = "https://github.com/pmezard/go-difflib"; + rev = "v1.0.0"; + sha256 = "0c1cn55m4rypmscgf0rrb88pn58j3ysvc2d0432dp3c6fqg6cnzw"; + }; + } { goPackagePath = "github.com/prometheus/client_golang"; fetch = { type = "git"; url = "https://github.com/prometheus/client_golang"; - rev = "82f5ff156b29e276022b1a958f7d385870fb9814"; - sha256 = "111j329yrlgvh73dm80gawwxsh9dgjkw74254kyj5c2rfmra7znz"; + rev = "v1.0.0"; + sha256 = "1f03ndyi3jq7zdxinnvzimz3s4z2374r6dikkc8i42xzb6d1bli6"; }; } { @@ -40,8 +185,8 @@ fetch = { type = "git"; url = "https://github.com/prometheus/client_model"; - rev = "99fa1f4be8e564e8a6b613da7fa6f46c9edafc6c"; - sha256 = "19y4ywsivhpxj7ikf2j0gm9k3cmyw37qcbfi78n526jxcc7kw998"; + rev = "fd36f4220a90"; + sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5"; }; } { @@ -49,8 +194,8 @@ fetch = { type = "git"; url = "https://github.com/prometheus/common"; - rev = "d811d2e9bf898806ecfb6ef6296774b13ffc314c"; - sha256 = "0r4067r4ysmljksqw3awcxx5qplqhykahc5igdzgkky7i4bvaik1"; + rev = "v0.4.1"; + sha256 = "0sf4sjdckblz1hqdfvripk3zyp8xq89w7q75kbsyg4c078af896s"; }; } { @@ -58,8 +203,98 @@ fetch = { type = "git"; url = "https://github.com/prometheus/procfs"; - rev = "8b1c2da0d56deffdbb9e48d4414b4e674bd8083e"; - sha256 = "0x128p15h35mgwqxkigfkk1lfrcz9g697ahl8v6xp9kwvcqvjrrf"; + rev = "v0.0.2"; + sha256 = "0s7pvs7fgnfpmym3cd0k219av321h9sf3yvdlnn3qy0ps280lg7k"; + }; + } + { + goPackagePath = "github.com/sirupsen/logrus"; + fetch = { + type = "git"; + url = "https://github.com/sirupsen/logrus"; + rev = "v1.2.0"; + sha256 = "0r6334x2bls8ddznvzaldx4g88msjjns4mlks95rqrrg7h0ijigg"; + }; + } + { + goPackagePath = "github.com/stretchr/objx"; + fetch = { + type = "git"; + url = "https://github.com/stretchr/objx"; + rev = "v0.1.1"; + sha256 = "0iph0qmpyqg4kwv8jsx6a56a7hhqq8swrazv40ycxk9rzr0s8yls"; + }; + } + { + goPackagePath = "github.com/stretchr/testify"; + fetch = { + type = "git"; + url = "https://github.com/stretchr/testify"; + rev = "v1.3.0"; + sha256 = "0wjchp2c8xbgcbbq32w3kvblk6q6yn533g78nxl6iskq6y95lxsy"; + }; + } + { + goPackagePath = "golang.org/x/crypto"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/crypto"; + rev = "0709b304e793"; + sha256 = "0i05s09y5pavmfh71fgih7syxg58x7a4krgd8am6d3mnahnmab5c"; + }; + } + { + goPackagePath = "golang.org/x/net"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/net"; + rev = "adae6a3d119a"; + sha256 = "1fx860zsgzqk28j7lmp96qsfrgb0kzbfjvr294hywswcbwdwkb01"; + }; + } + { + goPackagePath = "golang.org/x/sync"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sync"; + rev = "37e7f081c4d4"; + sha256 = "1bb0mw6ckb1k7z8v3iil2qlqwfj408fvvp8m1cik2b46p7snyjhm"; + }; + } + { + goPackagePath = "golang.org/x/sys"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sys"; + rev = "5ac8a444bdc5"; + sha256 = "00zdrighflwc4iyizsag184nvl1cbkk02v73kpl5miprdrvzqlr4"; + }; + } + { + goPackagePath = "gopkg.in/alecthomas/kingpin.v2"; + fetch = { + type = "git"; + url = "https://gopkg.in/alecthomas/kingpin.v2"; + rev = "v2.2.6"; + sha256 = "0mndnv3hdngr3bxp7yxfd47cas4prv98sqw534mx7vp38gd88n5r"; + }; + } + { + goPackagePath = "gopkg.in/check.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/check.v1"; + rev = "20d25e280405"; + sha256 = "0k1m83ji9l1a7ng8a7v40psbymxasmssbrrhpdv2wl4rhs0nc3np"; + }; + } + { + goPackagePath = "gopkg.in/yaml.v2"; + fetch = { + type = "git"; + url = "https://gopkg.in/yaml.v2"; + rev = "v2.2.1"; + sha256 = "0dwjrs2lp2gdlscs7bsrmyc5yf6mm4fvgw71bzr9mv2qrd2q73s1"; }; } ] From 1d9d31a0eb8e8358830528538a391df52f6a075a Mon Sep 17 00:00:00 2001 From: Nick Hu Date: Wed, 24 Jul 2019 11:55:12 +0100 Subject: [PATCH 1049/1611] tmuxPlugins.tmux-colors-solarized: init tmux plugin --- pkgs/misc/tmux-plugins/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 6c85f9a6329..57e96d559d3 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -1,4 +1,5 @@ { fetchgit +, fetchFromGitHub , lib , pkgs , reattach-to-user-namespace @@ -215,6 +216,16 @@ in rec { }; }; + tmux-colors-solarized = mkDerivation { + pluginName = "tmuxcolors"; + src = fetchFromGitHub { + owner = "seebi"; + repo = "tmux-colors-solarized"; + rev = "e5e7b4f1af37f8f3fc81ca17eadee5ae5d82cd09"; + sha256 = "1l3i82abzi4b395cgdsjg7lcfaq15kyyhijwvrgchzxi95z3hl4x"; + }; + }; + urlview = mkDerivation { pluginName = "urlview"; src = fetchgit { From 967b8422d7ae9b29a54ccb07490490d4df017322 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 25 Jul 2019 21:09:27 +0200 Subject: [PATCH 1050/1611] python37Packages.google_api_python_client: 1.7.9 -> 1.7.10 --- .../python-modules/google-api-python-client/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/google-api-python-client/default.nix b/pkgs/development/python-modules/google-api-python-client/default.nix index 1acc9603db3..60a6caace5e 100644 --- a/pkgs/development/python-modules/google-api-python-client/default.nix +++ b/pkgs/development/python-modules/google-api-python-client/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "google-api-python-client"; - version = "1.7.9"; + version = "1.7.10"; src = fetchPypi { inherit pname version; - sha256 = "1v551xaavqff085gplinnnrz2sk6sikmm7j47gi0wf34hpba1384"; + sha256 = "1mlx5dvkh6rjkvkd91flyhrmji2kw9rlr05n8n4wccv2np3sam9f"; }; # No tests included in archive From a9b4881f9439c2115aa74c59533faf37e8f0c289 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sat, 27 Apr 2019 13:34:05 +0200 Subject: [PATCH 1051/1611] trace-cmd: 2.6 -> 2.8-c8d9e1a --- pkgs/os-specific/linux/trace-cmd/default.nix | 44 ++++++++++------ .../linux/trace-cmd/fix-Makefiles.patch | 51 +++++++++++++++++++ pkgs/os-specific/linux/trace-cmd/src.nix | 5 ++ 3 files changed, 85 insertions(+), 15 deletions(-) create mode 100644 pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch create mode 100644 pkgs/os-specific/linux/trace-cmd/src.nix diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index 33dbfe5bf0a..67f6f9af93e 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -1,25 +1,39 @@ { stdenv, fetchgit, asciidoc, docbook_xsl, libxslt }: - -stdenv.mkDerivation rec { +let + srcSpec = import ./src.nix; + shortRev = builtins.substring 0 7 srcSpec.rev; +in stdenv.mkDerivation rec { name = "trace-cmd-${version}"; - version = "2.6"; + version = "2.8-${shortRev}"; - src = fetchgit { - url = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git"; - rev = "refs/tags/trace-cmd-v${version}"; - sha256 = "15d6b7l766h2mamqgphx6l6a33b1zn0yar2h7i6b24ph6kz3idxn"; - }; + src = fetchgit srcSpec; - buildInputs = [ asciidoc libxslt ]; + patches = [ ./fix-Makefiles.patch ]; + + nativeBuildInputs = [ asciidoc libxslt ]; + + outputs = [ "out" "lib" "dev" "man" ]; + + MANPAGE_DOCBOOK_XSL="${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl"; dontConfigure = true; - buildPhase = "make prefix=$out MANPAGE_DOCBOOK_XSL=${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl all doc"; - installPhase = "make prefix=$out install install_doc"; - meta = { + buildPhase = "make trace-cmd libs doc"; + + installTargets = [ "install_cmd" "install_libs" "install_man" ]; + installFlags = [ + "bindir=${placeholder "out"}/bin" + "man_dir=${placeholder "man"}/share/man" + "libdir=${placeholder "lib"}/lib" + "includedir=${placeholder "dev"}/include/trace-cmd" + "BASH_COMPLETE_DIR=${placeholder "out"}/etc/bash_completion.d" + ]; + + meta = with stdenv.lib; { description = "User-space tools for the Linux kernel ftrace subsystem"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; + homepage = http://kernelshark.org/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ thoughtpolice basvandijk ]; }; } diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch new file mode 100644 index 00000000000..9d0be8b4200 --- /dev/null +++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch @@ -0,0 +1,51 @@ +diff --git a/Documentation/Makefile b/Documentation/Makefile +index 21e42fd..b74c912 100644 +--- a/Documentation/Makefile ++++ b/Documentation/Makefile +@@ -108,7 +108,9 @@ $(IMGS_INSTALL): %.png.install : %.png force + + GUI_INSTALL = $(HTML_INSTALL) $(IMGS_INSTALL) + +-install: $(MAN1_INSTALL) $(MAN5_INSTALL) $(GUI_INSTALL) ++install_man: $(MAN1_INSTALL) $(MAN5_INSTALL) ++ ++install: install_man $(GUI_INSTALL) + + clean: + (cd $(obj); \ +diff --git a/Makefile b/Makefile +index cde45f8..d218ecc 100644 +--- a/Makefile ++++ b/Makefile +@@ -281,7 +281,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) + libtracecmd.a: $(LIBTRACECMD_STATIC) + libtracecmd.so: $(LIBTRACECMD_SHARED) + +-libs: $(LIBTRACECMD_SHARED) $(LIBTRACEEVENT_SHARED) ++libs: $(LIBTRACECMD_SHARED) $(LIBTRACEEVENT_SHARED) $(LIBTRACECMD_STATIC) $(LIBTRACEEVENT_STATIC) + + plugins: force $(obj)/plugins/trace_plugin_dir $(obj)/plugins/trace_python_dir + $(Q)$(MAKE) -C $(src)/plugins +@@ -337,8 +337,12 @@ install_gui: install_cmd gui + install_libs: libs + $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) + $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)) ++ $(Q)$(call do_install,$(LIBTRACECMD_STATIC),$(libdir_SQ)) ++ $(Q)$(call do_install,$(LIBTRACEEVENT_STATIC),$(libdir_SQ)) + $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)) ++ $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)) + $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) ++ $(Q)$(call do_install,$(src)/include/trace-cmd/trace-filter-hash.h,$(includedir_SQ)) + + doc: + $(MAKE) -C $(src)/Documentation all +@@ -346,6 +350,9 @@ doc: + doc_clean: + $(MAKE) -C $(src)/Documentation clean + ++install_man: ++ $(MAKE) -C $(src)/Documentation install_man ++ + install_doc: + $(MAKE) -C $(src)/Documentation install + diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix new file mode 100644 index 00000000000..d75063b9765 --- /dev/null +++ b/pkgs/os-specific/linux/trace-cmd/src.nix @@ -0,0 +1,5 @@ +{ + url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/"; + rev = "c8d9e1a82e75ae0d35d8ca2800ef6c65be3ac4e5"; + sha256 = "0ask7sdmlpffcfbzg3g68bqx8gy7qbk2h0faw8ksbw7p8cf5mnhd"; +} From fa5a34624404b30eedf8dd195f2e87c3cf727d2c Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 28 Apr 2019 12:56:20 +0200 Subject: [PATCH 1052/1611] kernelshark: init at 0.9.8-c8d9e1a --- .../fix-kernel-shark-CMakeLists.txt.patch | 32 +++++++++++++++++ .../linux/trace-cmd/kernelshark.nix | 36 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 70 insertions(+) create mode 100644 pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch create mode 100644 pkgs/os-specific/linux/trace-cmd/kernelshark.nix diff --git a/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch b/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch new file mode 100644 index 00000000000..249df035204 --- /dev/null +++ b/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch @@ -0,0 +1,32 @@ +diff --git a/kernel-shark/build/ks.desktop.cmake b/kernel-shark/build/ks.desktop.cmake +index 10e3610..ba29ced 100644 +--- a/kernel-shark/build/ks.desktop.cmake ++++ b/kernel-shark/build/ks.desktop.cmake +@@ -5,6 +5,6 @@ Name=Kernel Shark + GenericName=Kernel Shark + Comment= + Exec=@_INSTALL_PREFIX@/bin/kernelshark +-Icon=@KS_DIR@/icons/ksharkicon.png ++Icon=@_INSTALL_PREFIX@/share/icons/kernelshark/ksharkicon.png + Categories=System; + Terminal=false +diff --git a/kernel-shark/src/CMakeLists.txt b/kernel-shark/src/CMakeLists.txt +index b7dbd7e..be633ce 100644 +--- a/kernel-shark/src/CMakeLists.txt ++++ b/kernel-shark/src/CMakeLists.txt +@@ -82,10 +82,13 @@ if (Qt5Widgets_FOUND AND Qt5Network_FOUND) + LIBRARY DESTINATION ${_INSTALL_PREFIX}/lib/kshark/) + + install(FILES "${KS_DIR}/kernelshark.desktop" +- DESTINATION /usr/share/applications/) ++ DESTINATION ${_INSTALL_PREFIX}/share/applications/) ++ ++ install(FILES "${KS_DIR}/icons/ksharkicon.png" ++ DESTINATION ${_INSTALL_PREFIX}/share/icons/kernelshark) + + install(FILES "${KS_DIR}/org.freedesktop.kshark-record.policy" +- DESTINATION /usr/share/polkit-1/actions/) ++ DESTINATION ${_INSTALL_PREFIX}/share/polkit-1/actions/) + + install(PROGRAMS "${KS_DIR}/bin/kshark-su-record" + DESTINATION ${_INSTALL_PREFIX}/bin/) diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix new file mode 100644 index 00000000000..e583f636387 --- /dev/null +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -0,0 +1,36 @@ +{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd }: +let + srcSpec = import ./src.nix; + shortRev = builtins.substring 0 7 srcSpec.rev; +in mkDerivation rec { + pname = "kernelshark"; + version = "0.9.8-${shortRev}"; + + src = fetchgit srcSpec; + + sourceRoot = "trace-cmd-${shortRev}/kernel-shark"; + + patches = [ ./fix-kernel-shark-CMakeLists.txt.patch ]; + patchFlags = [ "-p2" ]; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ qtbase json_c mesa_glu freeglut ]; + + cmakeFlags = [ + "-D_INSTALL_PREFIX=${placeholder "out"}" + "-DTRACECMD_BIN_DIR=${trace-cmd}/bin" + "-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include/trace-cmd" + "-DTRACECMD_LIBRARY_DIR=${trace-cmd.lib}/lib" + "-DTRACEEVENT_INCLUDE_DIR=${trace-cmd.dev}/include/trace-cmd" + "-DTRACEEVENT_LIBRARY_DIR=${trace-cmd.lib}/lib" + ]; + + meta = with stdenv.lib; { + description = "GUI for trace-cmd which is an interface for the Linux kernel ftrace subsystem"; + homepage = http://kernelshark.org/; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ basvandijk ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e40497eee0b..9190b2862cd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6389,6 +6389,8 @@ in trace-cmd = callPackage ../os-specific/linux/trace-cmd { }; + kernelshark = libsForQt5.callPackage ../os-specific/linux/trace-cmd/kernelshark.nix { }; + traceroute = callPackage ../tools/networking/traceroute { }; tracebox = callPackage ../tools/networking/tracebox { }; From d1466e7006fa5eedbdbf04040714c8663c8dafd9 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Mon, 3 Jun 2019 23:59:34 +0200 Subject: [PATCH 1053/1611] trace-cmd: 2.8-c8d9e1a -> 2.8-0c957d2 --- .../fix-kernel-shark-CMakeLists.txt.patch | 32 ------------------- .../linux/trace-cmd/kernelshark.nix | 3 -- pkgs/os-specific/linux/trace-cmd/src.nix | 4 +-- 3 files changed, 2 insertions(+), 37 deletions(-) delete mode 100644 pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch diff --git a/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch b/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch deleted file mode 100644 index 249df035204..00000000000 --- a/pkgs/os-specific/linux/trace-cmd/fix-kernel-shark-CMakeLists.txt.patch +++ /dev/null @@ -1,32 +0,0 @@ -diff --git a/kernel-shark/build/ks.desktop.cmake b/kernel-shark/build/ks.desktop.cmake -index 10e3610..ba29ced 100644 ---- a/kernel-shark/build/ks.desktop.cmake -+++ b/kernel-shark/build/ks.desktop.cmake -@@ -5,6 +5,6 @@ Name=Kernel Shark - GenericName=Kernel Shark - Comment= - Exec=@_INSTALL_PREFIX@/bin/kernelshark --Icon=@KS_DIR@/icons/ksharkicon.png -+Icon=@_INSTALL_PREFIX@/share/icons/kernelshark/ksharkicon.png - Categories=System; - Terminal=false -diff --git a/kernel-shark/src/CMakeLists.txt b/kernel-shark/src/CMakeLists.txt -index b7dbd7e..be633ce 100644 ---- a/kernel-shark/src/CMakeLists.txt -+++ b/kernel-shark/src/CMakeLists.txt -@@ -82,10 +82,13 @@ if (Qt5Widgets_FOUND AND Qt5Network_FOUND) - LIBRARY DESTINATION ${_INSTALL_PREFIX}/lib/kshark/) - - install(FILES "${KS_DIR}/kernelshark.desktop" -- DESTINATION /usr/share/applications/) -+ DESTINATION ${_INSTALL_PREFIX}/share/applications/) -+ -+ install(FILES "${KS_DIR}/icons/ksharkicon.png" -+ DESTINATION ${_INSTALL_PREFIX}/share/icons/kernelshark) - - install(FILES "${KS_DIR}/org.freedesktop.kshark-record.policy" -- DESTINATION /usr/share/polkit-1/actions/) -+ DESTINATION ${_INSTALL_PREFIX}/share/polkit-1/actions/) - - install(PROGRAMS "${KS_DIR}/bin/kshark-su-record" - DESTINATION ${_INSTALL_PREFIX}/bin/) diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index e583f636387..f634746662d 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -10,9 +10,6 @@ in mkDerivation rec { sourceRoot = "trace-cmd-${shortRev}/kernel-shark"; - patches = [ ./fix-kernel-shark-CMakeLists.txt.patch ]; - patchFlags = [ "-p2" ]; - nativeBuildInputs = [ cmake ]; buildInputs = [ qtbase json_c mesa_glu freeglut ]; diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix index d75063b9765..ea239219360 100644 --- a/pkgs/os-specific/linux/trace-cmd/src.nix +++ b/pkgs/os-specific/linux/trace-cmd/src.nix @@ -1,5 +1,5 @@ { url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/"; - rev = "c8d9e1a82e75ae0d35d8ca2800ef6c65be3ac4e5"; - sha256 = "0ask7sdmlpffcfbzg3g68bqx8gy7qbk2h0faw8ksbw7p8cf5mnhd"; + rev = "0c957d2d85787350083ac990b35428e665f392a5"; + sha256 = "1b1d8k5qazm7x6vcprvl9hwsw3kk44pv8wcbgny53rniv7vv22ia"; } From 4542cca0b21d019ff428093c308a10426ed91228 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 25 Jul 2019 21:30:46 +0200 Subject: [PATCH 1054/1611] trace-cmd: 2.8-0c957d2 -> 2.9-dev-1517dc3 --- pkgs/os-specific/linux/trace-cmd/default.nix | 6 +++++- .../linux/trace-cmd/fix-Makefiles.patch | 16 ++++++---------- pkgs/os-specific/linux/trace-cmd/kernelshark.nix | 15 +++++++-------- pkgs/os-specific/linux/trace-cmd/src.nix | 4 ++-- 4 files changed, 20 insertions(+), 21 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index 67f6f9af93e..0759839a9c0 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -4,7 +4,7 @@ let shortRev = builtins.substring 0 7 srcSpec.rev; in stdenv.mkDerivation rec { name = "trace-cmd-${version}"; - version = "2.8-${shortRev}"; + version = "2.9-dev-${shortRev}"; src = fetchgit srcSpec; @@ -29,6 +29,10 @@ in stdenv.mkDerivation rec { "BASH_COMPLETE_DIR=${placeholder "out"}/etc/bash_completion.d" ]; + postInstall = '' + mv $dev/include/trace-cmd/traceevent $dev/include/traceevent + ''; + meta = with stdenv.lib; { description = "User-space tools for the Linux kernel ftrace subsystem"; homepage = http://kernelshark.org/; diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch index 9d0be8b4200..218460eddb3 100644 --- a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch +++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch @@ -14,10 +14,10 @@ index 21e42fd..b74c912 100644 clean: (cd $(obj); \ diff --git a/Makefile b/Makefile -index cde45f8..d218ecc 100644 +index 3e63e9e..65743c6 100644 --- a/Makefile +++ b/Makefile -@@ -281,7 +281,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) +@@ -292,7 +292,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) libtracecmd.a: $(LIBTRACECMD_STATIC) libtracecmd.so: $(LIBTRACECMD_SHARED) @@ -26,20 +26,16 @@ index cde45f8..d218ecc 100644 plugins: force $(obj)/plugins/trace_plugin_dir $(obj)/plugins/trace_python_dir $(Q)$(MAKE) -C $(src)/plugins -@@ -337,8 +337,12 @@ install_gui: install_cmd gui +@@ -348,6 +348,8 @@ install_gui: install_cmd gui install_libs: libs $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)) + $(Q)$(call do_install,$(LIBTRACECMD_STATIC),$(libdir_SQ)) + $(Q)$(call do_install,$(LIBTRACEEVENT_STATIC),$(libdir_SQ)) - $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)) -+ $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)) + $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent) + $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) -+ $(Q)$(call do_install,$(src)/include/trace-cmd/trace-filter-hash.h,$(includedir_SQ)) - - doc: - $(MAKE) -C $(src)/Documentation all -@@ -346,6 +350,9 @@ doc: +@@ -359,6 +361,9 @@ doc: doc_clean: $(MAKE) -C $(src)/Documentation clean diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index f634746662d..96e237fc459 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -1,4 +1,4 @@ -{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd }: +{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config, doxygen, graphviz }: let srcSpec = import ./src.nix; shortRev = builtins.substring 0 7 srcSpec.rev; @@ -10,17 +10,16 @@ in mkDerivation rec { sourceRoot = "trace-cmd-${shortRev}/kernel-shark"; - nativeBuildInputs = [ cmake ]; + nativeBuildInputs = [ cmake doxygen graphviz ]; - buildInputs = [ qtbase json_c mesa_glu freeglut ]; + buildInputs = [ qtbase json_c mesa_glu freeglut pkg-config ]; cmakeFlags = [ "-D_INSTALL_PREFIX=${placeholder "out"}" - "-DTRACECMD_BIN_DIR=${trace-cmd}/bin" - "-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include/trace-cmd" - "-DTRACECMD_LIBRARY_DIR=${trace-cmd.lib}/lib" - "-DTRACEEVENT_INCLUDE_DIR=${trace-cmd.dev}/include/trace-cmd" - "-DTRACEEVENT_LIBRARY_DIR=${trace-cmd.lib}/lib" + "-DTRACECMD_EXECUTABLE=${trace-cmd}/bin/trace-cmd" + "-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include" + "-DTRACECMD_LIBRARY=${trace-cmd.lib}/lib/libtracecmd.a" + "-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/libtraceevent.a" ]; meta = with stdenv.lib; { diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix index ea239219360..5d5ae0a8c91 100644 --- a/pkgs/os-specific/linux/trace-cmd/src.nix +++ b/pkgs/os-specific/linux/trace-cmd/src.nix @@ -1,5 +1,5 @@ { url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/"; - rev = "0c957d2d85787350083ac990b35428e665f392a5"; - sha256 = "1b1d8k5qazm7x6vcprvl9hwsw3kk44pv8wcbgny53rniv7vv22ia"; + rev = "1517dc3a15606850b1b52b789cbdeb554e2c68c6"; + sha256 = "112ccsnza3r3ha8ql733sn256bz0xjhzyw3avbr214r36aag4zrj"; } From f178bee18ed2790aae9db3b9256da3eea18491a7 Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Wed, 17 Jul 2019 15:04:31 +0200 Subject: [PATCH 1055/1611] rocksdb: Remove gflags dependency GFlags are only used for the tools, which are not installed in any case. --- pkgs/development/libraries/rocksdb/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/rocksdb/default.nix b/pkgs/development/libraries/rocksdb/default.nix index bd6441eeb0e..05ecf0f8f25 100644 --- a/pkgs/development/libraries/rocksdb/default.nix +++ b/pkgs/development/libraries/rocksdb/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, lib, bzip2, cmake, gflags, lz4, snappy, zlib, zstd, enableLite ? false }: +{ stdenv, fetchFromGitHub, lib, bzip2, cmake, lz4, snappy, zlib, zstd, enableLite ? false }: stdenv.mkDerivation rec { pname = "rocksdb"; @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake ]; - buildInputs = [ bzip2 gflags lz4 snappy zlib zstd ]; + buildInputs = [ bzip2 lz4 snappy zlib zstd ]; patches = [ ./0001-findzlib.patch ]; @@ -27,6 +27,7 @@ stdenv.mkDerivation rec { "-DWITH_SNAPPY=1" "-DWITH_ZLIB=1" "-DWITH_ZSTD=1" + "-DWITH_GFLAGS=0" (lib.optional (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux") From 585de35cd6db1123b547c792a1c7d509d6657edb Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 25 Jul 2019 22:13:17 +0200 Subject: [PATCH 1056/1611] kernelshark: install documentation --- .../linux/trace-cmd/fix-Makefiles.patch | 15 ++++++++++----- pkgs/os-specific/linux/trace-cmd/kernelshark.nix | 12 +++++++++++- 2 files changed, 21 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch index 218460eddb3..0bf9f501ca3 100644 --- a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch +++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch @@ -1,20 +1,22 @@ diff --git a/Documentation/Makefile b/Documentation/Makefile -index 21e42fd..b74c912 100644 +index 21e42fd..826361d 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile -@@ -108,7 +108,9 @@ $(IMGS_INSTALL): %.png.install : %.png force +@@ -108,7 +108,11 @@ $(IMGS_INSTALL): %.png.install : %.png force GUI_INSTALL = $(HTML_INSTALL) $(IMGS_INSTALL) -install: $(MAN1_INSTALL) $(MAN5_INSTALL) $(GUI_INSTALL) +install_man: $(MAN1_INSTALL) $(MAN5_INSTALL) + -+install: install_man $(GUI_INSTALL) ++install_gui: $(GUI_INSTALL) ++ ++install: install_man install_gui clean: (cd $(obj); \ diff --git a/Makefile b/Makefile -index 3e63e9e..65743c6 100644 +index 3e63e9e..146fe88 100644 --- a/Makefile +++ b/Makefile @@ -292,7 +292,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) @@ -35,12 +37,15 @@ index 3e63e9e..65743c6 100644 $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) -@@ -359,6 +361,9 @@ doc: +@@ -359,6 +361,12 @@ doc: doc_clean: $(MAKE) -C $(src)/Documentation clean +install_man: + $(MAKE) -C $(src)/Documentation install_man ++ ++install_gui_docs: ++ $(MAKE) -C $(src)/Documentation install_gui + install_doc: $(MAKE) -C $(src)/Documentation install diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index 96e237fc459..2ca6eff2608 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -8,7 +8,11 @@ in mkDerivation rec { src = fetchgit srcSpec; - sourceRoot = "trace-cmd-${shortRev}/kernel-shark"; + patches = [ ./fix-Makefiles.patch ]; + + outputs = [ "out" "doc" ]; + + preConfigure = "pushd kernel-shark"; nativeBuildInputs = [ cmake doxygen graphviz ]; @@ -22,6 +26,12 @@ in mkDerivation rec { "-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/libtraceevent.a" ]; + preInstall = '' + popd + make install_gui_docs prefix=$doc + pushd kernel-shark/build + ''; + meta = with stdenv.lib; { description = "GUI for trace-cmd which is an interface for the Linux kernel ftrace subsystem"; homepage = http://kernelshark.org/; From d9e3118ab00c2d60159902acbd3514e35fdbd8bf Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Thu, 25 Jul 2019 22:17:43 +0200 Subject: [PATCH 1057/1611] kernelshark: remove doxygen and graphviz because they aren't used --- pkgs/os-specific/linux/trace-cmd/kernelshark.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index 2ca6eff2608..7cf8c98335f 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -1,4 +1,4 @@ -{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config, doxygen, graphviz }: +{ stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }: let srcSpec = import ./src.nix; shortRev = builtins.substring 0 7 srcSpec.rev; @@ -14,7 +14,7 @@ in mkDerivation rec { preConfigure = "pushd kernel-shark"; - nativeBuildInputs = [ cmake doxygen graphviz ]; + nativeBuildInputs = [ cmake ]; buildInputs = [ qtbase json_c mesa_glu freeglut pkg-config ]; From fd2b2b5cd56a5be788fa88dcd9605a3a5bb5ecc7 Mon Sep 17 00:00:00 2001 From: Jason Felice Date: Thu, 25 Jul 2019 15:13:07 -0400 Subject: [PATCH 1058/1611] tmux-ctrlw: init at 0.1.0 --- pkgs/misc/tmux-plugins/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 57e96d559d3..8d885cbf516 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -91,6 +91,15 @@ in rec { }; }; + ctrlw = mkDerivation { + pluginName = "ctrlw"; + src = fetchgit { + url = "https://github.com/eraserhd/tmux-ctrlw"; + rev = "2354b5d56828813d0f7a4b228ca74b6134c2695f"; + sha256 = "00hy1axmki8h2285mivsj923z327xkq89wfl2x4dxc71xjhdl216"; + }; + }; + fpp = mkDerivation { pluginName = "fpp"; src = fetchgit { From eaafd840bf45c239143701a0e6bff0e294d84350 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 25 Jul 2019 22:05:13 +0100 Subject: [PATCH 1059/1611] Revert "unzip: CVE-2019-13232" This reverts commit 0238946872c1c63709790f6285bf9cc5585a6704. This patch broke a number of legitimate zips in the wild, including but not limited to most luarocks and a number of gradle-produced JARs. --- pkgs/tools/archivers/unzip/default.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkgs/tools/archivers/unzip/default.nix b/pkgs/tools/archivers/unzip/default.nix index 749f481d890..cdf189e82df 100644 --- a/pkgs/tools/archivers/unzip/default.nix +++ b/pkgs/tools/archivers/unzip/default.nix @@ -26,11 +26,6 @@ stdenv.mkDerivation { ./CVE-2016-9844.patch ./CVE-2018-18384.patch ./dont-hardcode-cc.patch - (fetchurl { - url = "https://github.com/madler/unzip/commit/47b3ceae397d21bf822bc2ac73052a4b1daf8e1c.patch"; - name = "CVE-2019-13232.patch"; - sha256 = "0iy2wcjyvzwrjk02iszwcpg85fkjxs1bvb9isvdiywszav4yjs32"; - }) ] ++ stdenv.lib.optional enableNLS (fetchurl { url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/app-arch/unzip/files/unzip-6.0-natspec.patch?revision=1.1"; From 8b401ea18a4cc880d8c6712a7be2c37e099f09c7 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Wed, 24 Jul 2019 22:42:28 +0200 Subject: [PATCH 1060/1611] plex-media-player: fix startup using wrapQtAppsHook --- pkgs/applications/video/plex-media-player/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/plex-media-player/default.nix b/pkgs/applications/video/plex-media-player/default.nix index 9f5401fc69c..4bd4d5fdaad 100644 --- a/pkgs/applications/video/plex-media-player/default.nix +++ b/pkgs/applications/video/plex-media-player/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, fetchurl, pkgconfig, cmake, python3 +{ stdenv, fetchFromGitHub, fetchurl, pkgconfig, cmake, python3, mkDerivation , libX11, libXrandr, qtbase, qtwebchannel, qtwebengine, qtx11extras , libvdpau, SDL2, mpv, libGL }: let @@ -34,7 +34,7 @@ let sha256 = "0yssii01nx6ixg3mikqjn8hz34dalma0rfr8spj115xwr7aq8ixk"; }; }; -in stdenv.mkDerivation rec { +in mkDerivation rec { name = "plex-media-player-${version}"; version = "2.36.0.988"; vsnHash = "0150ae52"; From e65244ee568e197d3e8f9287f6792e802c7c5f62 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Wed, 24 Jul 2019 15:19:01 -0700 Subject: [PATCH 1061/1611] linuxkit: 2017-07-08 -> 0.7 --- .../tools/misc/linuxkit/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/tools/misc/linuxkit/default.nix b/pkgs/development/tools/misc/linuxkit/default.nix index 27f49ebcf38..5dd6f422713 100644 --- a/pkgs/development/tools/misc/linuxkit/default.nix +++ b/pkgs/development/tools/misc/linuxkit/default.nix @@ -1,29 +1,29 @@ { lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { - name = "linuxkit-${version}"; - version = "2017-07-08"; - rev = "8ca19a84d5281b1b15c7a48c21e5786943b47f1c"; + pname = "linuxkit"; + version = "0.7"; goPackagePath = "github.com/linuxkit/linuxkit"; src = fetchFromGitHub { owner = "linuxkit"; repo = "linuxkit"; - inherit rev; - sha256 = "150y7hnjhi81iik7np27y5466ldaackq72mpi7vmybbl7vr1wgw4"; + rev = "v${version}"; + sha256 = "1mnaqzd4r0fdgjhjvbi4p0wwvz69i82b33iizz81wvkr1mkakgl2"; }; subPackages = [ "src/cmd/linuxkit" ]; preBuild = '' - buildFlagsArray+=("-ldflags" "-X main.GitCommit=${builtins.substring 0 7 rev} -X main.Version=0.0.0") + buildFlagsArray+=("-ldflags" "-X github.com/linuxkit/linuxkit/src/cmd/linuxkit/version.Version=${src.rev}") ''; - meta = { + meta = with lib; { description = "A toolkit for building secure, portable and lean operating systems for containers"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = https://github.com/linuxkit/linuxkit; - platforms = lib.platforms.unix; + maintainers = [ maintainers.nicknovitski ]; + platforms = platforms.unix; }; } From e931a525f974c5b038889b5cae3c1b07e9bc6663 Mon Sep 17 00:00:00 2001 From: Jay Kruer Date: Thu, 25 Jul 2019 16:31:35 -0700 Subject: [PATCH 1062/1611] Add RISC-V embedded crossSystems --- lib/systems/doubles.nix | 2 +- lib/systems/examples.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/lib/systems/doubles.nix b/lib/systems/doubles.nix index f096a0b17fc..823f6a915d6 100644 --- a/lib/systems/doubles.nix +++ b/lib/systems/doubles.nix @@ -26,7 +26,7 @@ let "riscv32-linux" "riscv64-linux" - "aarch64-none" "avr-none" "arm-none" "i686-none" "x86_64-none" "powerpc-none" "msp430-none" + "aarch64-none" "avr-none" "arm-none" "i686-none" "x86_64-none" "powerpc-none" "msp430-none" "riscv64-none" "riscv32-none" ]; allParsed = map parse.mkSystemFromString all; diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix index d17af9fcc14..aa55438de08 100644 --- a/lib/systems/examples.nix +++ b/lib/systems/examples.nix @@ -97,6 +97,18 @@ rec { riscv64 = riscv "64"; riscv32 = riscv "32"; + riscv64-embedded = { + config = "riscv64-none-elf"; + libc = "newlib"; + platform = platforms.riscv-multiplatform "64"; + }; + + riscv32-embedded = { + config = "riscv32-none-elf"; + libc = "newlib"; + platform = platforms.riscv-multiplatform "32"; + }; + msp430 = { config = "msp430-elf"; libc = "newlib"; From 82ee9c5324bd56aaf9e6f9151fdbb5d470bae469 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 25 Jul 2019 19:39:39 -0500 Subject: [PATCH 1063/1611] termdown: 1.15.0 -> 1.16.0 --- pkgs/applications/misc/termdown/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/termdown/default.nix b/pkgs/applications/misc/termdown/default.nix index dc23443489f..7edb8dd5d1e 100644 --- a/pkgs/applications/misc/termdown/default.nix +++ b/pkgs/applications/misc/termdown/default.nix @@ -6,11 +6,11 @@ with stdenv.lib; buildPythonApplication rec { name = "termdown-${version}"; - version = "1.15.0"; + version = "1.16.0"; src = fetchFromGitHub { rev = version; - sha256 = "08l03yk5jc1g0gps789q1s2knnaqzlidy4s5q5nhwg9g25la19nr"; + sha256 = "0k429ss1xifm9vbgyzpp71r79byn9jclvr0rm77bai2r8nz3s2vf"; repo = "termdown"; owner = "trehn"; }; From f0950fa3f6d3f7355d8db2eefa77b53f66562526 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Tue, 23 Jul 2019 00:39:39 +0200 Subject: [PATCH 1064/1611] gopass: v1.8.5 -> v1.8.6; support wayland --- pkgs/tools/security/gopass/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix index b8be17e4996..a0b1f28854b 100644 --- a/pkgs/tools/security/gopass/default.nix +++ b/pkgs/tools/security/gopass/default.nix @@ -1,8 +1,8 @@ -{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }: +{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, wl-clipboard, makeWrapper }: buildGoPackage rec { pname = "gopass"; - version = "1.8.5"; + version = "1.8.6"; goPackagePath = "github.com/gopasspw/gopass"; @@ -12,13 +12,14 @@ buildGoPackage rec { owner = "gopasspw"; repo = pname; rev = "v${version}"; - sha256 = "1mgc77j5b9pjf2ayd5c09ym6d8n1yia8yg87zw0b8fsh5wac41sl"; + sha256 = "0v3sx9hb03bdn4rvsv2r0jzif6p1rx47hrkpsbnwva31k396mck2"; }; wrapperPath = with stdenv.lib; makeBinPath ([ git gnupg xclip + wl-clipboard ]); postInstall = '' From f1b81ff2cd2b27f6e5cf3afd80df861c665b1368 Mon Sep 17 00:00:00 2001 From: Urban Skudnik Date: Thu, 25 Jul 2019 13:58:42 +0200 Subject: [PATCH 1065/1611] Update ansible package Needs to be moved out of automatic update-all since it requires goDeps. --- .../terraform-providers/ansible/default.nix | 26 +++++++++++++++++++ .../terraform-providers/ansible/deps.nix | 11 ++++++++ .../cluster/terraform-providers/data.nix | 7 ----- .../cluster/terraform-providers/default.nix | 1 + .../cluster/terraform-providers/providers.txt | 3 --- 5 files changed, 38 insertions(+), 10 deletions(-) create mode 100644 pkgs/applications/networking/cluster/terraform-providers/ansible/default.nix create mode 100644 pkgs/applications/networking/cluster/terraform-providers/ansible/deps.nix diff --git a/pkgs/applications/networking/cluster/terraform-providers/ansible/default.nix b/pkgs/applications/networking/cluster/terraform-providers/ansible/default.nix new file mode 100644 index 00000000000..2b2c3caba86 --- /dev/null +++ b/pkgs/applications/networking/cluster/terraform-providers/ansible/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchFromGitHub, buildGoPackage }: +buildGoPackage rec { + name = "terraform-provider-ansible-${version}"; + version = "1.0.3"; + + goPackagePath = "github.com/nbering/terraform-provider-ansible"; + goDeps = ./deps.nix; + + src = fetchFromGitHub { + owner = "nbering"; + repo = "terraform-provider-ansible"; + rev = "v${version}"; + sha256 = "0dqi9ym0xvnz3h73cmd1vf6k2qwfhxvj1mcakkpmsd4cpxq4l6pr"; + }; + + # Terraform allow checking the provider versions, but this breaks + # if the versions are not provided via file paths. + postBuild = "mv go/bin/terraform-provider-ansible{,_v${version}}"; + + meta = with stdenv.lib; { + description = "A Terraform provider serving as an interop layer for an Ansible dynamic inventory script."; + homepage = "https://github.com/nbering/terraform-provider-ansible"; + license = licenses.mpl20; + maintainers = with maintainers; [ uskudnik ]; + }; +} diff --git a/pkgs/applications/networking/cluster/terraform-providers/ansible/deps.nix b/pkgs/applications/networking/cluster/terraform-providers/ansible/deps.nix new file mode 100644 index 00000000000..dc49f24afa5 --- /dev/null +++ b/pkgs/applications/networking/cluster/terraform-providers/ansible/deps.nix @@ -0,0 +1,11 @@ +[ + { + goPackagePath = "github.com/hashicorp/terraform"; + fetch = { + type = "git"; + url = "https://github.com/hashicorp/terraform"; + rev = "v0.12.5"; + sha256 = "0p064rhaanwx4szs8hv6mdqad8d2bgfd94h2la11j58xbsxc7hap"; + }; + } +] diff --git a/pkgs/applications/networking/cluster/terraform-providers/data.nix b/pkgs/applications/networking/cluster/terraform-providers/data.nix index b0a1d91ce6e..8094566dd7e 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/data.nix +++ b/pkgs/applications/networking/cluster/terraform-providers/data.nix @@ -714,11 +714,4 @@ version = "0.2.0"; sha256 = "0ic5b9djhnb1bs2bz3zdprgy3r55dng09xgc4d9l9fyp85g2amaz"; }; - ansible = - { - owner = "nbering"; - repo = "terraform-provider-ansible"; - version = "0.0.4"; - sha256 = "125a8vbpnahaxxrxj3mp0kj6ajssxnfb6l0spgnf118wg3bvlmw5"; - }; } diff --git a/pkgs/applications/networking/cluster/terraform-providers/default.nix b/pkgs/applications/networking/cluster/terraform-providers/default.nix index c542de912f3..fc6b7131385 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/default.nix +++ b/pkgs/applications/networking/cluster/terraform-providers/default.nix @@ -28,4 +28,5 @@ in gandi = callPackage ./gandi {}; ibm = callPackage ./ibm {}; libvirt = callPackage ./libvirt {}; + ansible = callPackage ./ansible {}; } // lib.mapAttrs (n: v: toDrv v) list diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.txt b/pkgs/applications/networking/cluster/terraform-providers/providers.txt index c5d6fda1651..3352fb79f1e 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.txt +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.txt @@ -20,6 +20,3 @@ tweag/terraform-provider-secret # include terraform-provider-segment ajbosco/terraform-provider-segment - -# include terraform-provider-ansible -nbering/terraform-provider-ansible From a98e4248b9488725ec1e59e79b08152c1e8a0d1a Mon Sep 17 00:00:00 2001 From: Urban Skudnik Date: Thu, 25 Jul 2019 13:59:46 +0200 Subject: [PATCH 1066/1611] Update provider Matchbox changed owners on github --- .../networking/cluster/terraform-providers/providers.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/providers.txt b/pkgs/applications/networking/cluster/terraform-providers/providers.txt index 3352fb79f1e..286e3d6efe0 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/providers.txt +++ b/pkgs/applications/networking/cluster/terraform-providers/providers.txt @@ -10,7 +10,7 @@ terraform-providers terraform-provider- terraform-provider-\\(azure-classic\\|scaffolding\\) # include terraform-provider-matchbox -coreos/terraform-provider-matchbox +poseidon/terraform-provider-matchbox # include terraform-provider-nixos tweag/terraform-provider-nixos From f432ae3ba42285c6ba0b98a8ef2ebbb8624afcaf Mon Sep 17 00:00:00 2001 From: Urban Skudnik Date: Wed, 3 Jul 2019 20:38:28 +0200 Subject: [PATCH 1067/1611] terraform-providers: bump versions --- .../cluster/terraform-providers/data.nix | 198 +++++++++--------- 1 file changed, 99 insertions(+), 99 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform-providers/data.nix b/pkgs/applications/networking/cluster/terraform-providers/data.nix index 8094566dd7e..a6749083c24 100644 --- a/pkgs/applications/networking/cluster/terraform-providers/data.nix +++ b/pkgs/applications/networking/cluster/terraform-providers/data.nix @@ -11,8 +11,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-alicloud"; - version = "1.47.0"; - sha256 = "0w2shy850lp63y036xzhznr94dpyf5b369cddz7laycapknyzd39"; + version = "1.52.2"; + sha256 = "1s127p6rm3kmrxjk9kr02rgjk58rs864c0b46i8lmaj7x5yznaz5"; }; archive = { @@ -39,29 +39,29 @@ { owner = "terraform-providers"; repo = "terraform-provider-aws"; - version = "2.15.0"; - sha256 = "0ms4x6ri4zi25jnp47f5vg6xj9xmz7jya0y0gbc4kdmy0nwdw8f9"; + version = "2.21.0"; + sha256 = "18aw0fz3pzd7wci3z19nain499rfr9npb3sm0k34nkajjjryqngc"; }; azuread = { owner = "terraform-providers"; repo = "terraform-provider-azuread"; - version = "0.4.0"; - sha256 = "01s2qrabmydgnilkwis76ccx1sv8bkna3nbxn6ra75jvgh3q7d5d"; + version = "0.5.1"; + sha256 = "0bjy6wdfzsxchqclgp7c06b49b5h60nips69hcpwd45564iql5fh"; }; azurerm = { owner = "terraform-providers"; repo = "terraform-provider-azurerm"; - version = "1.30.1"; - sha256 = "0zxvj6k1xs151dik8yhjl31r563dsc7iykv32g10w5szyigvxqfd"; + version = "1.32.0"; + sha256 = "01287yknd2bp2yqzyn2221mkv2hz4xd5dghps5pzrkdv0m1w4p35"; }; azurestack = { owner = "terraform-providers"; repo = "terraform-provider-azurestack"; - version = "0.7.0"; - sha256 = "0vlppfnwl0r4xf2fl405d93s0kxanh52h1chz04a95x2dcclvx69"; + version = "0.8.1"; + sha256 = "1sbmjrqzzn8rf9xhaax2ykyg199sggx80apx0xvd4ab82c3ldyfw"; }; bigip = { @@ -74,22 +74,22 @@ { owner = "terraform-providers"; repo = "terraform-provider-bitbucket"; - version = "1.0.0"; - sha256 = "0gi8p1q0y8x5y8lqihijkpqs3v152h0q7icv7ixk33xsdcvb418y"; + version = "1.1.0"; + sha256 = "06bjagbgpgfphwym015wl00wx6qf7lsdig0fhpxqaykvlkn3sg49"; }; brightbox = { owner = "terraform-providers"; repo = "terraform-provider-brightbox"; - version = "1.1.2"; - sha256 = "0k9qs7kpjznascads5llajzx2xkm4hdil2n4wl0fqy43s6dkvbbf"; + version = "1.2.0"; + sha256 = "0s1b2k58r2kmjrdqrkw2dlfpby79i81gml9rpa10y372bwq314zd"; }; chef = { owner = "terraform-providers"; repo = "terraform-provider-chef"; - version = "0.1.0"; - sha256 = "17fppyhxi0rd5v8khw2psdn2hdv5j79hxhinwkzrq5s4iccqk5dw"; + version = "0.2.0"; + sha256 = "0ihn4706fflmf0585w22l7arzxsa9biq4cgh8nlhlp5y0zy934ns"; }; circonus = { @@ -109,15 +109,15 @@ { owner = "terraform-providers"; repo = "terraform-provider-cloudflare"; - version = "1.15.0"; - sha256 = "0mb771dw5fw2s6jd63sybwza49axyj9967fl454m3sznhpl96y8z"; + version = "1.16.1"; + sha256 = "0lxx7wkvmi6zpql7g33bg12gx67i4xm2v885j70b9vf8brj40h2j"; }; cloudscale = { owner = "terraform-providers"; repo = "terraform-provider-cloudscale"; - version = "1.1.0"; - sha256 = "09b1cq0vyyag8aaiwmhnwrgigmxvxk3qsk31h4hshm7ddk7db9qn"; + version = "2.0.0"; + sha256 = "145hj4pbi5zrkgamicy3m1n3380fpd2ndd6ym7mwd65d95g39vwb"; }; cloudstack = { @@ -144,15 +144,15 @@ { owner = "terraform-providers"; repo = "terraform-provider-datadog"; - version = "1.9.0"; - sha256 = "0c5s9ywd6p4qjd964y33rcqcgfqz225x5rp0jlsqxbv9i2r91fb0"; + version = "2.1.0"; + sha256 = "0k7apad2r07gw9kf0zzqc8wa2wcmxihi3x8sdssl32qjib20qwv1"; }; digitalocean = { owner = "terraform-providers"; repo = "terraform-provider-digitalocean"; - version = "1.4.0"; - sha256 = "0a01768ncgmk1vrh2ir86s9iab1s5x8ciaz3fysgcgp9snh8yz4w"; + version = "1.5.0"; + sha256 = "14kqyp4j4ld8gla8rn3an6wpjh942h5bn39d68nnf4y7nx3vvbfs"; }; dme = { @@ -165,43 +165,43 @@ { owner = "terraform-providers"; repo = "terraform-provider-dns"; - version = "2.1.1"; - sha256 = "1iyfsx1fbpvp3zjrkq8c46nr6d80z40mzkfc4axfpqyrp9xqiy8j"; + version = "2.2.0"; + sha256 = "11xdxj6hfclaq9glbh14nihmrsk220crm9ld8bdv77w0bppmrrch"; }; dnsimple = { owner = "terraform-providers"; repo = "terraform-provider-dnsimple"; - version = "0.1.0"; - sha256 = "0gkd5i69ldm5zn34p3k68aqk798g6g0d60gw7yp316l7mskvrx7h"; + version = "0.2.0"; + sha256 = "0jj82fffqaz7gramj5d4avx7vka6w190yz4r9q7628qh8ih2pfhz"; }; docker = { owner = "terraform-providers"; repo = "terraform-provider-docker"; - version = "1.2.0"; - sha256 = "1w69kjlrgy4397c9nz3llqsqcjzchwqw1ksw4wg34xnnq20pd4ql"; + version = "2.1.0"; + sha256 = "183pkjf6x8xk84sij2w2v3sms8pjv7hzwricamd2sf3n0fkqvjiq"; }; dyn = { owner = "terraform-providers"; repo = "terraform-provider-dyn"; - version = "1.1.0"; - sha256 = "0sx4h3drb230m69lsmafyfd2cfvwnb9gld8s6ky54115kd3nckml"; + version = "1.2.0"; + sha256 = "1a3kxmbib2y0nl7gnxknbhsflj5kfknxnm3gjxxrb2h5d2kvqy48"; }; external = { owner = "terraform-providers"; repo = "terraform-provider-external"; - version = "1.1.2"; - sha256 = "12wdzm3y0fd840bdf0dczvvmdmfwpfwfwnf0j4g6n9asdcvjaqlh"; + version = "1.2.0"; + sha256 = "1kx28bffhd1pg3m0cbldclc8l9zic16mqrk7gybcls9vyds5gbvc"; }; fastly = { owner = "terraform-providers"; repo = "terraform-provider-fastly"; - version = "0.6.1"; - sha256 = "1p4j1n2x2y0n1kslfx62fx60v8b1acqv78gns1a5i0vgnnmmqcaj"; + version = "0.8.1"; + sha256 = "1ghvf7nwj02r31zgnrnmhagqbbq696ll39b2wjzlimb6c3fw7ik0"; }; flexibleengine = { @@ -214,8 +214,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-github"; - version = "2.1.0"; - sha256 = "05ca0vw6s7q40zcs50mr6k2swwx3a3njd4dxdz00qki58hgb87y6"; + version = "2.2.0"; + sha256 = "1h44v7428z3v3hv6ywi3n0yhnvgx9cr6vgqb1n2w1qf7k2f0jkzx"; }; gitlab = { @@ -228,29 +228,29 @@ { owner = "terraform-providers"; repo = "terraform-provider-google"; - version = "2.8.0"; - sha256 = "1r4x7l20w8wb6a356vx71lra466p7hfww1jyv0bg7z1f015qs91l"; + version = "2.11.0"; + sha256 = "16577pkp3m5pqqqhvxq1rvx99p1230pmqksm6wplh25ry5yp5v7w"; }; google-beta = { owner = "terraform-providers"; repo = "terraform-provider-google-beta"; - version = "2.8.0"; - sha256 = "16ml6sd3g4wzcgm5qaphfyq3lcy33p8nmcahxrhrcvwnwl0kw5bs"; + version = "2.11.0"; + sha256 = "0hj2c17kb6k4zy1630fvmyniln5m1ncpyys4wl8v1j0arb8vg2wz"; }; grafana = { owner = "terraform-providers"; repo = "terraform-provider-grafana"; - version = "1.4.0"; - sha256 = "1y41yhp82phgw83frkgrjzpymsys2abvdwa1n905rz7i15ybasqc"; + version = "1.5.0"; + sha256 = "0zy3bqgpxymp2zygaxzllk1ysdankwxa1sy1djfgr4fs2nlggkwi"; }; hcloud = { owner = "terraform-providers"; repo = "terraform-provider-hcloud"; - version = "1.10.0"; - sha256 = "18m2smpwcjp49wnylplrnlhfjrmim1qpvn1z70lwvb49liv8ldwf"; + version = "1.11.0"; + sha256 = "037hbwp10h57cj74ja6c4wjgfrfggbpd4glbc81xpp22rxij40j9"; }; hedvig = { @@ -270,8 +270,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-heroku"; - version = "2.0.0"; - sha256 = "161pc6s4ifzi58cx32sdk9nan4kz6gn3mch1pnmp03f6390s2pcm"; + version = "2.1.0"; + sha256 = "17gb8lpcp7fwgv6mv3sw5was571pa0pp00izrrkyhbcddw5p84mc"; }; http = { @@ -312,8 +312,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-kubernetes"; - version = "1.7.0"; - sha256 = "0chr6v47398a3cvff9lwx4ffahcwv7fmzs6kjjqaidb1cv60d039"; + version = "1.8.1"; + sha256 = "1c69p7rqijinzr0lqh4iwa0g89w2hjm2csadbxkfha0a8iqq73r1"; }; librato = { @@ -326,15 +326,15 @@ { owner = "terraform-providers"; repo = "terraform-provider-linode"; - version = "1.6.0"; - sha256 = "0i2x0jd26qanziihlc38s7rxiab66ld2s5gz18rrmrbwhcl95fwj"; + version = "1.8.0"; + sha256 = "1jgh2ij58a5mr6ns604cfpvfvr19qr0q51j57gvchz53iv683m9q"; }; local = { owner = "terraform-providers"; repo = "terraform-provider-local"; - version = "1.2.2"; - sha256 = "0azrw62clki002nlv7ws3kzfsbqkadm713534i4xgvix2m08d1cx"; + version = "1.3.0"; + sha256 = "1z6b52vdq7wzzipldys28z45glwgj9k15ighjix1dy78mzi0p99n"; }; logentries = { @@ -347,8 +347,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-logicmonitor"; - version = "1.2.0"; - sha256 = "1zir35i8j5w7ra4i7f9k0ghac9b3bar0dy16sqy1kqwbh4ikmhb8"; + version = "1.2.1"; + sha256 = "1fcv5g92l6xr4x69h9rg48zazjr99wrz9mkmr122fyq9s7kdd98y"; }; mailgun = { @@ -361,8 +361,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-mysql"; - version = "1.6.0"; - sha256 = "1kgldnrdz0mr99arxf85n8xbbxm96b5mg732c6zs38dgcq63mypx"; + version = "1.7.0"; + sha256 = "19l1ihp5jlaahm8zncjlrnfw8d8gcpnq3z6pn421j1x0d5v5vw9b"; }; netlify = { @@ -375,8 +375,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-newrelic"; - version = "1.5.0"; - sha256 = "1if8i435v4nf18hdvwwz3nvlkaf8yjzcxi300blri2xfx95chsxw"; + version = "1.5.1"; + sha256 = "1xrwh9m1sig4hd2vvb7apy2gh8rz15wdrajggzmmpc1z1rlhf90p"; }; nomad = { @@ -389,8 +389,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-ns1"; - version = "1.4.0"; - sha256 = "1zkmc6flmy48qawaf0l5r72xfwp46c842gd7kg35r06cihc9gavy"; + version = "1.4.1"; + sha256 = "1zcl7yda0rqj76d9slm92kvj5ry3v5va48l8i5vlxa1znnf8d89d"; }; nsxt = { @@ -417,8 +417,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-oci"; - version = "3.29.0-rc1"; - sha256 = "1rz61qndrrgknkd7bjbgvy28znllipr1v92cn1im43rzsmnz64y3"; + version = "3.35.0-rc1"; + sha256 = "1728zap32iabsa2a6762caf9h7fgspi1z8gnq03269qhy7jsknv8"; }; oneandone = { @@ -438,15 +438,15 @@ { owner = "terraform-providers"; repo = "terraform-provider-openstack"; - version = "1.19.0"; - sha256 = "1y9b9h523zflq4z9cwjgfa0l92j4ac5pc1r6vja1aw3gg2ln80x9"; + version = "1.20.0"; + sha256 = "0hfcypz95aj1wwhybpkc74k8g2iqax724qdm11s2iyjmq5c7iz2z"; }; opentelekomcloud = { owner = "terraform-providers"; repo = "terraform-provider-opentelekomcloud"; - version = "1.9.0"; - sha256 = "1nq6h6ds2fvxrmyf2v7w8prprl7pp6va8568jf0f775sag51wpl8"; + version = "1.10.0"; + sha256 = "12c7qjlmvsxd4nv0k2vsvlnl1iq2k0b8xx29q5a6h98dnhrnpfic"; }; opsgenie = { @@ -494,8 +494,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-postgresql"; - version = "0.4.0"; - sha256 = "0fywq1vzm8fcd0jcvzx1n3jilrk0r6ylqz9r4dwsyc64iqvmrpps"; + version = "1.1.0"; + sha256 = "1dxspqajfy8dmplasazi4s34f47n1qz7qg2dr9ypdvd3jp63072w"; }; powerdns = { @@ -515,8 +515,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-rabbitmq"; - version = "1.0.0"; - sha256 = "1md928243r4c46ihjnavz2375nxnfyhknyc86r9853hwhhyhsx5d"; + version = "1.1.0"; + sha256 = "0xihc44923kx8c3v6wrvczzbhmbjkhy7dhgx3sy5sqhmm22y0gys"; }; rancher = { @@ -536,8 +536,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-rightscale"; - version = "1.3.0"; - sha256 = "1brzxyd5hg99x75qh0p707lr9cvqpzx2az1swr624w3rzhjl2ygm"; + version = "1.3.1"; + sha256 = "0abwxaghrxpahpsk6kd02fjh0rhck4xsdrzcpv629yh8ip9rzcaj"; }; rundeck = { @@ -550,8 +550,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-runscope"; - version = "0.5.0"; - sha256 = "0n0m39gaiwhqigjny51a7g36ldik33alimkqqbv6hqyzrhk0qs8h"; + version = "0.6.0"; + sha256 = "1fsph2cnyvzdwa5hwdjabfk4azmc3x8a7afpwpawxfdvqhgpr595"; }; scaleway = { @@ -564,15 +564,15 @@ { owner = "terraform-providers"; repo = "terraform-provider-selectel"; - version = "2.2.0"; - sha256 = "1vw49ckcavzq8igc3091mzsqv9garzh1npwdwsyqb9367z5ib39m"; + version = "2.3.0"; + sha256 = "0n0nqlajcx44zxbc2k58lv3jy2y6p9zqkby2vy5a2856kcksm7pf"; }; skytap = { owner = "terraform-providers"; repo = "terraform-provider-skytap"; - version = "0.10.0"; - sha256 = "1rfyaf8zhcr74mhcjdsm659rzlncyaxvqqqrc1630a3bk4h8p3i1"; + version = "0.11.1"; + sha256 = "1mlv6jp6lp47chcnsmx8dzy01bxpb9jx1wl122lxd88app9nxq1k"; }; softlayer = { @@ -592,8 +592,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-statuscake"; - version = "0.2.0"; - sha256 = "065izach0hq04664hz7rc3gd0r3l06lzwcbj5800zjfv1inp6pxs"; + version = "1.0.0"; + sha256 = "1x295va6c72465cxps0kx3rrb7s9aip2cniy6icsg1b2yrsb9b26"; }; telefonicaopencloud = { @@ -613,8 +613,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-tencentcloud"; - version = "1.9.0"; - sha256 = "0zgn3ndbcs6dgmz2y8qcns08rbwbfq633rbk6zgfck8pzqw2d2lr"; + version = "1.13.0"; + sha256 = "0mdgpkzv1gfyvpndvv195f6nxmvpv4wvssxlqvmccf8vvmb32nyn"; }; terraform = { @@ -627,8 +627,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-tfe"; - version = "0.9.1"; - sha256 = "0ww3fm8mgpqmv0ra0zbv560avcla76dkj2qxz9bdwzg7iz8vsj4s"; + version = "0.10.1"; + sha256 = "09hrdschgydnziq1sv6ql7gc4qwx8j4dnmx4fdw8452qpszk17n2"; }; tls = { @@ -648,8 +648,8 @@ { owner = "terraform-providers"; repo = "terraform-provider-ucloud"; - version = "1.10.1"; - sha256 = "1c5w2816rf55khs534z780j0r8i6n8gqhkda21i32n9rj8y5clv1"; + version = "1.11.1"; + sha256 = "1la5kapdwpd2f6x00yc9j25rl8qkrndgqpzp2jp6mcbj5zif82ns"; }; ultradns = { @@ -662,36 +662,36 @@ { owner = "terraform-providers"; repo = "terraform-provider-vault"; - version = "1.8.0"; - sha256 = "1g9cw14mzslb445yhj04dzs0s4cbhi4cxycd50vc3f9yyg6sz1rr"; + version = "2.1.0"; + sha256 = "1nbiz2mnknaimfvh1zmmsp1crrhcpy4q6maaakqybqzabkn9wibr"; }; vcd = { owner = "terraform-providers"; repo = "terraform-provider-vcd"; - version = "2.1.0"; - sha256 = "0azmjddysl38n58vk94zhm2g7s5aw71gvn83h4n7amf2j7p7ks9j"; + version = "2.3.0"; + sha256 = "1x9ydp6kscgj0m7vkf4ly0y80016qcfbshgmlydrvq7dbw44qlr9"; }; vsphere = { owner = "terraform-providers"; repo = "terraform-provider-vsphere"; - version = "1.10.0"; - sha256 = "039s95afqrcpf6jiprqsqnvlsnxbs5vcqrsgg6pbs52rlwp1ixgw"; + version = "1.12.0"; + sha256 = "0g3pnk2b4dmz5bkr7xjpp45dwy767k6a02rjva38xls185qs7i7c"; }; yandex = { owner = "terraform-providers"; repo = "terraform-provider-yandex"; - version = "0.5.2"; - sha256 = "1fa1jicirww0zxg5kw4343ndzq86x0m7gkfj8yx7l6lb6gcrkbic"; + version = "0.8.2"; + sha256 = "07p88asjcjndpv36dhvfazb440k2f2v4j7rpvqqmfccwyyqkwwjr"; }; matchbox = { - owner = "coreos"; + owner = "poseidon"; repo = "terraform-provider-matchbox"; - version = "0.2.3"; - sha256 = "12vf8krzx79yrsk3lk2k6vwwk1f18617ky7g2yf60bf2x836lg09"; + version = "0.3.0"; + sha256 = "1nq7k8qa7rv8xyryjigwpwcwvj1sw85c4j46rkfdv70b6js25jz3"; }; nixos = { From 3188402aab1095ef22e2acd67ad9e38be7837dba Mon Sep 17 00:00:00 2001 From: Vladyslav Burzakovskyy Date: Mon, 24 Jun 2019 18:21:06 +0200 Subject: [PATCH 1068/1611] pythonPackages.rq: init at 1.1.0 --- .../development/python-modules/rq/default.nix | 24 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/python-modules/rq/default.nix diff --git a/pkgs/development/python-modules/rq/default.nix b/pkgs/development/python-modules/rq/default.nix new file mode 100644 index 00000000000..8c91579d241 --- /dev/null +++ b/pkgs/development/python-modules/rq/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchPypi, buildPythonPackage, click, redis }: + +buildPythonPackage rec { + pname = "rq"; + version = "1.1.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "1fs03g1n1l8k03zwhkhckhsrnnsm3645sqby2nwh5gfij2kcc9sg"; + }; + + # test require a running redis rerver, which is something we can't do yet + doCheck = false; + + propagatedBuildInputs = [ click redis ]; + + meta = with stdenv.lib; { + description = "A simple, lightweight library for creating background jobs, and processing them"; + homepage = "https://github.com/nvie/rq/"; + maintainers = with maintainers; [ mrmebelman ]; + license = licenses.bsd2; + }; +} + diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index eaee38ceaeb..ae6e55755e8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -935,6 +935,8 @@ in { rlp = callPackage ../development/python-modules/rlp { }; + rq = callPackage ../development/python-modules/rq { }; + rx = callPackage ../development/python-modules/rx { }; sabyenc = callPackage ../development/python-modules/sabyenc { }; From 583a82cb2f58f0dbf1b4ea0cd34265af96ff288d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Fri, 26 Jul 2019 14:27:01 +0200 Subject: [PATCH 1069/1611] nim: 0.20.0 -> 0.20.2 --- pkgs/development/compilers/nim/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix index 77d8710cdf9..4228c368e56 100644 --- a/pkgs/development/compilers/nim/default.nix +++ b/pkgs/development/compilers/nim/default.nix @@ -4,12 +4,12 @@ boehmgc, sfml, tzdata, coreutils, sqlite }: stdenv.mkDerivation rec { - name = "nim-${version}"; - version = "0.20.0"; + pname = "nim"; + version = "0.20.2"; src = fetchurl { - url = "https://nim-lang.org/download/${name}.tar.xz"; - sha256 = "144sd7icg2p6qsrr29jdnl11hr34daxq4h16ywwrayz866w7kx2i"; + url = "https://nim-lang.org/download/${pname}-${version}.tar.xz"; + sha256 = "0pibil10x0c181kw705phlwk8bn8dy5ghqd9h9fm6i9afrz5ryp1"; }; doCheck = !stdenv.isDarwin; @@ -105,7 +105,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Statically typed, imperative programming language"; - homepage = https://nim-lang.org/; + homepage = "https://nim-lang.org/"; license = licenses.mit; maintainers = with maintainers; [ ehmry peterhoeg ]; platforms = with platforms; linux ++ darwin; # arbitrary From 5aa00520af5a5b51068ce57e7eb4a66557504f70 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 09:06:58 -0400 Subject: [PATCH 1070/1611] linux: 4.19.60 -> 4.19.61 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 6891b6ce2c2..9ab4de7bf85 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.60"; + version = "4.19.61"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0ibayrvrnw2lw7si78vdqnr20mm1d3z0g6a0ykndvgn5vdax5x9a"; + sha256 = "1scwb6ynr93k4a1vzpw2x1hzafhfs06ckf9v6fk1zvkh8jw1rc5c"; }; } // (args.argsOverride or {})) From f2449fd18421863200ebf5553f71abfb45471863 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 09:07:08 -0400 Subject: [PATCH 1071/1611] linux: 5.1.19 -> 5.1.20 --- pkgs/os-specific/linux/kernel/linux-5.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix index 1f4663452dd..6ff9f5163d3 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.1.19"; + version = "5.1.20"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "1hk8dhp402vr74wq22j66yqr7iik0mcrahpmmq3dcl657vw1n8qf"; + sha256 = "039i5b41dv930kmq8jwskcwjc6r26h9xy7jgbi6aggn0ycyig21d"; }; } // (args.argsOverride or {})) From 2295a3c46d196943553c0692e48be5e5da1d2b23 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 09:10:28 -0400 Subject: [PATCH 1072/1611] linux: 5.2.2 -> 5.2.3 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 0b44c6adfe9..3585a523119 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2.2"; + version = "5.2.3"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "173da67d51qcjwrczqsfd6g9phzazqzr11xfxwlf54ckd6117ng5"; + sha256 = "018fiz8bycglh5b031b710zllv2s5w017ylq0j30923p744n0g3m"; }; } // (args.argsOverride or {})) From 2b014be886c142a99d132258269748cc2fb50709 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 09:25:38 -0400 Subject: [PATCH 1073/1611] slack-dark: 2019-06-04 -> 2019-07-25 --- .../networking/instant-messengers/slack/dark-theme.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix index 4e602862197..d815f0aff2d 100644 --- a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix +++ b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl }: let - rev = "5cdbb97898d727d2b35c25a3117e9a79e474d97b"; - sha256 = "14qikp91l2aj8j9i0nh0nf9ibz65b8bpd3lbyarqshhrpvb5jp79"; - version = "2019-06-04"; + rev = "e2a6a9cd9da70175881ab991220c86aa87179509"; + sha256 = "1gw0kpszgflk3vqjlm5igd2rznh36mb2j1iqrcqi6pzxlpccv1lg"; + version = "2019-07-25"; in stdenv.mkDerivation { inherit version; From 2a227c6cd801c2b07034c0aac0f71b0d99b521e9 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Fri, 26 Jul 2019 15:33:25 +0200 Subject: [PATCH 1074/1611] .github/ISSUE_TEMPLATE/security.md: remove since the .github/SECURITY.md was added in the org-level repo, there are now two entries in the list. So remove this-one. --- .github/ISSUE_TEMPLATE/security.md | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/security.md diff --git a/.github/ISSUE_TEMPLATE/security.md b/.github/ISSUE_TEMPLATE/security.md deleted file mode 100644 index 59e7b64cc66..00000000000 --- a/.github/ISSUE_TEMPLATE/security.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Security report -about: Report security issues -title: '' -labels: '1.severity: security' -assignees: '' - ---- - -To privately report a security issue with NixOS, Nix, and its ecosystem, -please email a member of the NixOS Security Team and we will ensure the issue -is handled. Our responses will be signed with our GPG keys: -https://nixos.org/nixos/security.html - -**Report** - -CVE: - -**Metadata** - -Maintainer information: -```yaml -# a list of nixpkgs attributes affected by the problem -attribute: -# a list of nixos modules affected by the problem -module: -``` From 6e762653def5b5794c6ab75c5e55af95158ef0f0 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Fri, 26 Jul 2019 15:49:28 +0200 Subject: [PATCH 1075/1611] module zabbixProxy: server is a mandatory parameter --- nixos/modules/services/monitoring/zabbix-proxy.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/nixos/modules/services/monitoring/zabbix-proxy.nix b/nixos/modules/services/monitoring/zabbix-proxy.nix index c1a45fba4af..9cfcd1697c1 100644 --- a/nixos/modules/services/monitoring/zabbix-proxy.nix +++ b/nixos/modules/services/monitoring/zabbix-proxy.nix @@ -23,6 +23,7 @@ let LogType = console ListenIP = ${cfg.listen.ip} ListenPort = ${toString cfg.listen.port} + Server = ${cfg.server} # TODO: set to cfg.database.socket if database type is pgsql? DBHost = ${optionalString (cfg.database.createLocally != true) cfg.database.host} ${optionalString (cfg.database.createLocally != true) "DBPort = ${cfg.database.port}"} @@ -50,6 +51,13 @@ in services.zabbixProxy = { enable = mkEnableOption "the Zabbix Proxy"; + server = mkOption { + type = types.str; + description = '' + The IP address or hostname of the Zabbix server to connect to. + ''; + }; + package = mkOption { type = types.package; default = From c658b9db97da977e79676abfd49a235284bbab38 Mon Sep 17 00:00:00 2001 From: Casey Ransom Date: Fri, 26 Jul 2019 10:34:27 -0400 Subject: [PATCH 1076/1611] gh-ost: update platforms --- pkgs/tools/misc/gh-ost/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/misc/gh-ost/default.nix b/pkgs/tools/misc/gh-ost/default.nix index 709d3005091..b79388c6f29 100644 --- a/pkgs/tools/misc/gh-ost/default.nix +++ b/pkgs/tools/misc/gh-ost/default.nix @@ -21,7 +21,6 @@ buildGoPackage ({ description = "Triggerless online schema migration solution for MySQL"; homepage = https://github.com/github/gh-ost; license = licenses.mit; - platforms = platforms.linux; }; }) From 11efe2a75959ecb74b4f4edebb475774390425ac Mon Sep 17 00:00:00 2001 From: Serhii Khoma Date: Fri, 26 Jul 2019 18:48:07 +0300 Subject: [PATCH 1077/1611] hubstaff: 1.4.6 -> 1.4.9 --- pkgs/applications/misc/hubstaff/revision.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/hubstaff/revision.json b/pkgs/applications/misc/hubstaff/revision.json index f39860fac58..513e5bef442 100644 --- a/pkgs/applications/misc/hubstaff/revision.json +++ b/pkgs/applications/misc/hubstaff/revision.json @@ -1,5 +1,5 @@ { - "url": "https://hubstaff-production.s3.amazonaws.com/downloads/HubstaffClient/Builds/Release/1.4.6-4aba8ab5/Hubstaff-1.4.6-4aba8ab5.sh", - "version": "1.4.6-4aba8ab5", - "sha256": "14js4d7wazn5r5p9n3iic9kwqrinm079jj1k7r00v684jrgq62fc" + "url": "https://hubstaff-production.s3.amazonaws.com/downloads/HubstaffClient/Builds/Release/1.4.9-86828309/Hubstaff-1.4.9-86828309.sh", + "version": "1.4.9-86828309", + "sha256": "0p9b7s2damzxmbrm8m97bj06g0faslbjw51dmxq8icz6ldbqsspx" } From 171d5c92004c8a8fe65ff7dbf01d904b421edf1e Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Wed, 3 Oct 2018 16:08:34 +0200 Subject: [PATCH 1078/1611] nixos/xserver: add option to install custom xkb layouts --- nixos/modules/module-list.nix | 1 + nixos/modules/services/x11/extra-layouts.nix | 165 +++++++++++++++++++ pkgs/servers/x11/xorg/overrides.nix | 81 ++++++++- 3 files changed, 246 insertions(+), 1 deletion(-) create mode 100644 nixos/modules/services/x11/extra-layouts.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index e07fabb348c..3ec081ad052 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -811,6 +811,7 @@ ./services/web-servers/uwsgi.nix ./services/web-servers/varnish/default.nix ./services/web-servers/zope2.nix + ./services/x11/extra-layouts.nix ./services/x11/colord.nix ./services/x11/compton.nix ./services/x11/unclutter.nix diff --git a/nixos/modules/services/x11/extra-layouts.nix b/nixos/modules/services/x11/extra-layouts.nix new file mode 100644 index 00000000000..5523dd2bf02 --- /dev/null +++ b/nixos/modules/services/x11/extra-layouts.nix @@ -0,0 +1,165 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + layouts = config.services.xserver.extraLayouts; + + layoutOpts = { + options = { + description = mkOption { + type = types.str; + description = "A short description of the layout."; + }; + + languages = mkOption { + type = types.listOf types.str; + description = + '' + A list of languages provided by the layout. + (Use ISO 639-2 codes, for example: "eng" for english) + ''; + }; + + compatFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + The path to the xkb compat file. + This file sets the compatibility state, used to preserve + compatibility with xkb-unaware programs. + It must contain a xkb_compat "name" { ... } block. + ''; + }; + + geometryFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + The path to the xkb geometry file. + This (completely optional) file describes the physical layout of + keyboard, which maybe be used by programs to depict it. + It must contain a xkb_geometry "name" { ... } block. + ''; + }; + + keycodesFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + The path to the xkb keycodes file. + This file specifies the range and the interpretation of the raw + keycodes sent by the keyboard. + It must contain a xkb_keycodes "name" { ... } block. + ''; + }; + + symbolsFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + The path to the xkb symbols file. + This is the most important file: it defines which symbol or action + maps to each key and must contain a + xkb_symbols "name" { ... } block. + ''; + }; + + typesFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + The path to the xkb types file. + This file specifies the key types that can be associated with + the various keyboard keys. + It must contain a xkb_types "name" { ... } block. + ''; + }; + + }; + }; + +in + +{ + + ###### interface + + options.services.xserver = { + extraLayouts = mkOption { + type = types.attrsOf (types.submodule layoutOpts); + default = {}; + example = literalExample + '' + { + mine = { + description = "My custom xkb layout."; + languages = [ "eng" ]; + symbolsFile = /path/to/my/layout; + }; + } + ''; + description = '' + Extra custom layouts that will be included in the xkb configuration. + Information on how to create a new layout can be found here: + . + For more examples see + + ''; + }; + + }; + + ###### implementation + + config = mkIf (layouts != { }) { + + # We don't override xkeyboard_config directly to + # reduce the amount of packages to be recompiled. + # Only the following packages are necessary to set + # a custom layout anyway: + nixpkgs.overlays = lib.singleton (self: super: { + + xkb_patched = self.xorg.xkeyboardconfig_custom { + layouts = config.services.xserver.extraLayouts; + }; + + xorg = super.xorg // { + xorgserver = super.xorg.xorgserver.overrideAttrs (old: { + configureFlags = old.configureFlags ++ [ + "--with-xkb-bin-directory=${self.xorg.xkbcomp}/bin" + "--with-xkb-path=${self.xkb_patched}/share/X11/xkb" + ]; + }); + + setxkbmap = super.xorg.setxkbmap.overrideAttrs (old: { + postInstall = + '' + mkdir -p $out/share + ln -sfn ${self.xkb_patched}/etc/X11 $out/share/X11 + ''; + }); + + xkbcomp = super.xorg.xkbcomp.overrideAttrs (old: { + configureFlags = "--with-xkb-config-root=${self.xkb_patched}/share/X11/xkb"; + }); + + }; + + ckbcomp = super.ckbcomp.override { + xkeyboard_config = self.xkb_patched; + }; + + xkbvalidate = super.xkbvalidate.override { + libxkbcommon = self.libxkbcommon.override { + xkeyboard_config = self.xkb_patched; + }; + }; + + }); + + services.xserver.xkbDir = "${pkgs.xkb_patched}/etc/X11/xkb"; + + }; + +} diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 1da5c31c25f..80b0addd6ec 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -1,7 +1,7 @@ { abiCompat ? null, stdenv, makeWrapper, fetchurl, fetchpatch, buildPackages, automake, autoconf, gettext, libiconv, libtool, intltool, - freetype, tradcpp, fontconfig, meson, ninja, + freetype, tradcpp, fontconfig, meson, ninja, ed, libGL, spice-protocol, zlib, libGLU, dbus, libunwind, libdrm, mesa, udev, bootstrap_cmds, bison, flex, clangStdenv, autoreconfHook, mcpp, epoxy, openssl, pkgconfig, llvm_6, @@ -423,6 +423,85 @@ self: super: ''; }); + # xkeyboardconfig variant extensible with custom layouts. + # See nixos/modules/services/x11/extra-layouts.nix + xkeyboardconfig_custom = { layouts ? { } }: + let + patchIn = name: layout: + with layout; + with lib; + '' + # install layout files + ${optionalString (compatFile != null) "cp '${compatFile}' 'compat/${name}'"} + ${optionalString (geometryFile != null) "cp '${geometryFile}' 'geometry/${name}'"} + ${optionalString (keycodesFile != null) "cp '${keycodesFile}' 'keycodes/${name}'"} + ${optionalString (symbolsFile != null) "cp '${symbolsFile}' 'symbols/${name}'"} + ${optionalString (typesFile != null) "cp '${typesFile}' 'types/${name}'"} + + # patch makefiles + for type in compat geometry keycodes symbols types; do + if ! test -f "$type/${name}"; then + continue + fi + test "$type" = geometry && type_name=geom || type_name=$type + ${ed}/bin/ed -v $type/Makefile.am < + - + a + + + ${name} + <_description>${layout.description} + ${layout.description} + + + . + w + EOF + + # add layout description + ${ed}/bin/ed -v rules/base.xml < + - + a + + + ${name} + <_shortDescription>${name} + <_description>${layout.description} + + ${concatMapStrings (lang: "${lang}\n") layout.languages} + + + + + . + w + EOF + ''; + in + self.xkeyboardconfig.overrideAttrs (old: { + buildInputs = old.buildInputs ++ [ automake ]; + postPatch = with lib; concatStrings (mapAttrsToList patchIn layouts); + }); + xload = super.xload.overrideAttrs (attrs: { nativeBuildInputs = attrs.nativeBuildInputs ++ [ gettext ]; }); From 3effc55b5b360f15c1691bdfda42072d52ce5fb9 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 22 Jul 2019 10:06:20 +0200 Subject: [PATCH 1079/1611] docs/xserver: document xserver.extraLayouts --- nixos/doc/manual/configuration/x-windows.xml | 130 +++++++++++++++++++ 1 file changed, 130 insertions(+) diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index 798d1fbdfd8..6928a977a9e 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -157,4 +157,134 @@ versions. + + Custom XKB layouts + + It is possible to install custom + + XKB + + keyboard layouts using the option + . + As a first example, we are going to create a layout based on the basic US + layout, with an additional layer to type some greek symbols by pressing the + right-alt key. + + + To do this we are going to create a us-greek file + with a xkb_symbols section. + + +xkb_symbols "us-greek" +{ + include "us(basic)" // includes the base US keys + include "level3(ralt_switch)" // configures right alt as a third level switch + + key <LatA> { [ a, A, Greek_alpha ] }; + key <LatB> { [ b, B, Greek_beta ] }; + key <LatG> { [ g, G, Greek_gamma ] }; + key <LatD> { [ d, D, Greek_delta ] }; + key <LatZ> { [ z, Z, Greek_zeta ] }; +}; + + + To install the layout, the filepath, a description and the list of + languages must be given: + + +.us-greek = { + description = "US layout with alt-gr greek"; + languages = [ "eng" ]; + symbolsFile = /path/to/us-greek; +} + + + + The name should match the one given to the + xkb_symbols block. + + + + The layout should now be installed and ready to use: try it by + running setxkbmap us-greek and type + <alt>+a. To change the default the usual + + option can still be used. + + + A layout can have several other components besides + xkb_symbols, for example we will define new + keycodes for some multimedia key and bind these to some symbol. + + + Use the xev utility from + pkgs.xorg.xev to find the codes of the keys of + interest, then create a media-key file to hold + the keycodes definitions + + +xkb_keycodes "media" +{ + <volUp> = 123; + <volDown> = 456; +} + + + Now use the newly define keycodes in media-sym: + + +xkb_symbols "media" +{ + key.type = "ONE_LEVEL"; + key <volUp> { [ XF86AudioLowerVolume ] }; + key <volDown> { [ XF86AudioRaiseVolume ] }; +} + + + As before, to install the layout do + + +.media = { + description = "Multimedia keys remapping"; + languages = [ "eng" ]; + symbolsFile = /path/to/media-key; + keycodesFile = /path/to/media-sym; +}; + + + + The function pkgs.writeText <filename> <content> + can be useful if you prefer to keep the layout definitions + inside the NixOS configuration. + + + + Unfortunately, the Xorg server does not (currently) support setting a + keymap directly but relies instead on XKB rules to select the matching + components (keycodes, types, ...) of a layout. This means that components + other than symbols won't be loaded by default. As a workaround, you + can set the keymap using setxkbmap at the start of the + session with: + + + = "setxkbmap -keycodes media"; + + + To learn how to write layouts take a look at the XKB + + documentation + . More example layouts can also be found + + here + . + + From e91f0c38c098c38e960d5826406575dda7744e08 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Mon, 22 Jul 2019 10:05:56 +0200 Subject: [PATCH 1080/1611] docs/xserver: use tag for notes --- nixos/doc/manual/configuration/x-windows.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index 6928a977a9e..7cdc5196e0d 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -125,10 +125,12 @@ You will need to reboot after enabling this driver to prevent a clash with other kernel modules. + - Note: for recent AMD GPUs you most likely want to keep either the defaults + For recent AMD GPUs you most likely want to keep either the defaults or "amdgpu" (both free). + Touchpads From 86f424585fbdeb21dce358ed2e57dc3970a600fe Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 12:36:17 -0400 Subject: [PATCH 1081/1611] docker: 18.09.7 -> 18.09.8 --- pkgs/applications/virtualization/docker/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 384ab8f3047..04b2be4e6d2 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -201,9 +201,9 @@ rec { # https://github.com/docker/docker-ce/tree/v${version}/components/engine/hack/dockerfile/install/* docker_18_09 = makeOverridable dockerGen { - version = "18.09.7"; - rev = "2d0083d657f82c47044c8d3948ba434b622fe2fd"; - sha256 = "1f7q99pay7mmy925ap95p935y9xslxpmgha397db7x2w008rfl9k"; + version = "18.09.8"; + rev = "0dd43dd87fd530113bf44c9bba9ad8b20ce4637f"; + sha256 = "07ljxdqylbfbq1939hqyaav966ga7ds5b38dn7af1h0aks86y2s3"; runcRev = "425e105d5a03fabd737a126ad93d62a9eeede87f"; runcSha256 = "05s4p12mgmdcy7gjralh41wlgds6m69zdgwbpdn1xjj2487dmhxf"; containerdRev = "894b81a4b802e4eb2a91d1ce216b8817763c29fb"; From 6dfd13ab34ded1d723c8482accdff15fdd1fb19a Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 26 Jul 2019 12:42:55 -0400 Subject: [PATCH 1082/1611] docker: 18.09.8 -> 19.03.1 Keep docker_18_09 around as it is still supported. --- pkgs/applications/virtualization/docker/default.nix | 12 ++++++++++++ pkgs/top-level/all-packages.nix | 7 ++++--- 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 04b2be4e6d2..a1125f25e81 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -211,4 +211,16 @@ rec { tiniRev = "fec3683b971d9c3ef73f284f176672c44b448662"; tiniSha256 = "1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn"; }; + + docker_19_03 = makeOverridable dockerGen { + version = "19.03.1"; + rev = "74b1e89e8ac68948be88fe0aa1e2767ae28659fe"; + sha256 = "1m7bq7la29d8piwiq5whzcyrm7g3lv497wnri0lh6gxi10nwv06h"; + runcRev = "425e105d5a03fabd737a126ad93d62a9eeede87f"; + runcSha256 = "05s4p12mgmdcy7gjralh41wlgds6m69zdgwbpdn1xjj2487dmhxf"; + containerdRev = "894b81a4b802e4eb2a91d1ce216b8817763c29fb"; + containerdSha256 = "0sp5mn5wd3xma4svm6hf67hyhiixzkzz6ijhyjkwdrc4alk81357"; + tiniRev = "fec3683b971d9c3ef73f284f176672c44b448662"; + tiniSha256 = "1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn"; + }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0304b15ac78..12ce8b087b9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17517,10 +17517,11 @@ in }; inherit (callPackage ../applications/virtualization/docker {}) - docker_18_09; + docker_18_09 + docker_19_03; - docker = docker_18_09; - docker-edge = docker_18_09; + docker = docker_19_03; + docker-edge = docker_19_03; docker-proxy = callPackage ../applications/virtualization/docker/proxy.nix { }; From 4ad627eca846b55d10171f105f1f194a43a5f079 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Thu, 25 Jul 2019 20:01:41 -0500 Subject: [PATCH 1083/1611] ethtool: 5.1 -> 5.2 --- pkgs/tools/misc/ethtool/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/ethtool/default.nix b/pkgs/tools/misc/ethtool/default.nix index 963086b717a..a6afa03a3f1 100644 --- a/pkgs/tools/misc/ethtool/default.nix +++ b/pkgs/tools/misc/ethtool/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "ethtool-${version}"; - version = "5.1"; + version = "5.2"; src = fetchurl { url = "mirror://kernel/software/network/ethtool/${name}.tar.xz"; - sha256 = "11rkvb1nga9hdiycw0hjn6lh1sfy4p4yzcl4fw5jjrb5xhgsrzk5"; + sha256 = "01bq2g7amycfp4syzcswz52pgphdgswklziqfjwnq3c6844dfpv6"; }; meta = with stdenv.lib; { From 3034859422cbec613b7271472bd0d5f8fd933c91 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Wed, 24 Jul 2019 08:16:18 +0200 Subject: [PATCH 1084/1611] x2goclient: unstable-2018-11-30 -> unstable-2019-07-24 --- pkgs/applications/networking/remote/x2goclient/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix index 87fe60c7740..17dba71f8dd 100644 --- a/pkgs/applications/networking/remote/x2goclient/default.nix +++ b/pkgs/applications/networking/remote/x2goclient/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { pname = "x2goclient"; - version = "unstable-2018-11-30"; + version = "unstable-2019-07-24"; src = fetchgit { url = "git://code.x2go.org/x2goclient.git"; - rev = "659655675f11ffd361ab9fb48fa77a01a1536fe8"; - sha256 = "05gfs11m259bchy3k0ihqpwg9wf8lp94rbca5dzla9fjzrb7pyy4"; + rev = "704c4ab92d20070dd160824c9b66a6d1c56dcc49"; + sha256 = "1pndp3lfzwifyxqq0gps3p1bwakw06clbk6n8viv020l4bsfmq5f"; }; buildInputs = [ cups libssh libXpm nx-libs openldap openssh From 289c607cf5d6f5e1eac8bf9c13abc2b74197e149 Mon Sep 17 00:00:00 2001 From: Averell Dalton Date: Wed, 24 Jul 2019 13:33:19 +0200 Subject: [PATCH 1085/1611] x2goclient: fix startup Fixes the following error: ``` qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. ``` See also #54484 and others. --- .../networking/remote/x2goclient/default.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/remote/x2goclient/default.nix b/pkgs/applications/networking/remote/x2goclient/default.nix index 17dba71f8dd..2cfbfb1b201 100644 --- a/pkgs/applications/networking/remote/x2goclient/default.nix +++ b/pkgs/applications/networking/remote/x2goclient/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchgit, cups, libssh, libXpm, nx-libs, openldap, openssh -, makeWrapper, qtbase, qtsvg, qtx11extras, qttools, phonon, pkgconfig }: +, mkDerivation, qtbase, qtsvg, qtx11extras, qttools, phonon, pkgconfig }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "x2goclient"; version = "unstable-2019-07-24"; @@ -13,7 +13,6 @@ stdenv.mkDerivation rec { buildInputs = [ cups libssh libXpm nx-libs openldap openssh qtbase qtsvg qtx11extras qttools phonon pkgconfig ]; - nativeBuildInputs = [ makeWrapper ]; postPatch = '' substituteInPlace Makefile \ @@ -28,9 +27,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; installTargets = [ "install_client" "install_man" ]; - postInstall = '' - wrapProgram "$out/bin/x2goclient" --suffix PATH : "${nx-libs}/bin:${openssh}/libexec"; - ''; + + qtWrapperArgs = [ ''--suffix PATH : ${nx-libs}/bin:${openssh}/libexec'' ]; meta = with stdenv.lib; { description = "Graphical NoMachine NX3 remote desktop client"; From ad63a90de13330383cde1e15db36b9d69d8e7f6e Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Fri, 26 Jul 2019 16:27:13 -0500 Subject: [PATCH 1086/1611] liburing: 1.0.0pre150_93f3e8d -> 1.0.0pre156_c31c7ec Signed-off-by: Austin Seipp --- pkgs/development/libraries/liburing/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/liburing/default.nix b/pkgs/development/libraries/liburing/default.nix index 95644e2682e..ff88bdcaafd 100644 --- a/pkgs/development/libraries/liburing/default.nix +++ b/pkgs/development/libraries/liburing/default.nix @@ -3,12 +3,12 @@ stdenv.mkDerivation rec { name = "liburing-${version}"; - version = "1.0.0pre150_${builtins.substring 0 7 src.rev}"; + version = "1.0.0pre156_${builtins.substring 0 7 src.rev}"; src = fetchgit { url = "http://git.kernel.dk/liburing"; - rev = "93f3e8d511e53133a4367afe04b5f256073082a0"; - sha256 = "14ndx3z0q6gynkmlwiah6775ss0p1xmjgn428gqgbsganiyhkwgp"; + rev = "c31c7ec4bcd7bb0d7b28897d730431c02b9d4ea1"; + sha256 = "17d6s03fyajcrijca9d2d6llbf8cl8dyalpxnl39az3452p04s11"; }; separateDebugInfo = true; From 2c666131033129dfd6503eb162d3345e10d948fc Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 25 Jul 2019 23:19:52 +0200 Subject: [PATCH 1087/1611] libva: 2.4.1 -> 2.5.0 --- pkgs/development/libraries/libva/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix index 1c008130f65..7aba75a1d23 100644 --- a/pkgs/development/libraries/libva/default.nix +++ b/pkgs/development/libraries/libva/default.nix @@ -6,14 +6,14 @@ stdenv.mkDerivation rec { name = "libva-${lib.optionalString minimal "minimal-"}${version}"; - version = "2.4.1"; + version = "2.5.0"; # update libva-utils and vaapiIntel as well src = fetchFromGitHub { owner = "01org"; repo = "libva"; rev = version; - sha256 = "06kqff05jhd87yi53gyc2qivgg4sbf19qyznm9s4dyz92k04cl5c"; + sha256 = "0pys6blkh8ayxmxgfh7qrjzzcrzzn14z5d8q4a34ffqk90b6r93z"; }; outputs = [ "dev" "out" ]; From fdf08ce5fbffef35971b002e4548fee38da4be43 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Fri, 26 Jul 2019 22:54:28 +0000 Subject: [PATCH 1088/1611] openjpeg_1: fix build after #64391 That PR has enabled tests for both openjpeg_1 and openjpeg_2, but it did not support the tests in openjpeg_1. --- pkgs/development/libraries/openjpeg/1.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/openjpeg/1.x.nix b/pkgs/development/libraries/openjpeg/1.x.nix index dfa5605dec8..2a625f32e7f 100644 --- a/pkgs/development/libraries/openjpeg/1.x.nix +++ b/pkgs/development/libraries/openjpeg/1.x.nix @@ -5,4 +5,5 @@ callPackage ./generic.nix (args // rec { branch = "1.5"; revision = "version.1.5.2"; sha256 = "1dvvpvb597i5z8srz2v4c5dsbxb966h125jx3m2z0r2gd2wvpfkp"; + testsSupport = false; }) From d4ffb8d4ec688488656ddfd917e2969c5116d119 Mon Sep 17 00:00:00 2001 From: Cole Mickens Date: Thu, 25 Jul 2019 23:25:42 +0200 Subject: [PATCH 1089/1611] mesa: 19.1.1 -> 19.1.3 --- pkgs/development/libraries/mesa/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 2c5e4a8e034..7b1b5a3cfa9 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -27,7 +27,7 @@ with stdenv.lib; let - version = "19.1.1"; + version = "19.1.3"; branch = head (splitString "." version); in @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { "ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz" "https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz" ]; - sha256 = "10amy5sdmpjbskr3xazgk0jyli8xpgi0y1nsmjr76hx8nhb4n4bj"; + sha256 = "1q5p4mw7zrklwx1is09knnb762zzk33xwhwp99fw25ax4ar60m44"; }; prePatch = "patchShebangs ."; From 5e0c5caebdac5b0cd2029b007f0c5ea34369a5f2 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 27 Jul 2019 07:37:45 +0800 Subject: [PATCH 1090/1611] youtube-dl: 2019.07.16 -> 2019.07.27 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index f9b16e5870d..7e11a68c85e 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.07.16"; + version = "2019.07.27"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "06qd6z9swx8aw9v7vi85q44hmzxgy8wx18a9ljfhx7l7wjpm99ky"; + sha256 = "1k4b8s1g816m8k48mlsk5pfjaqz8p6qsvfrdnpfkminwm4f6kz6d"; }; nativeBuildInputs = [ makeWrapper ]; From b07cba5a0ad9d0a104027f075f236c66c7d9ab85 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Fri, 26 Jul 2019 18:44:09 -0500 Subject: [PATCH 1091/1611] desktop-file-utils: 0.23 -> 0.24 https://hpjansson.org/blag/2019/07/26/desktop-file-utils-0-24-released/ --- pkgs/tools/misc/desktop-file-utils/default.nix | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/pkgs/tools/misc/desktop-file-utils/default.nix b/pkgs/tools/misc/desktop-file-utils/default.nix index 3e47ebd51d7..6b47027a5b9 100644 --- a/pkgs/tools/misc/desktop-file-utils/default.nix +++ b/pkgs/tools/misc/desktop-file-utils/default.nix @@ -1,23 +1,16 @@ -{ stdenv, fetchurl, fetchpatch, pkgconfig, glib, libintl }: +{ stdenv, fetchurl, pkgconfig, glib, libintl }: with stdenv.lib; stdenv.mkDerivation rec { - name = "desktop-file-utils-0.23"; + pname = "desktop-file-utils"; + version = "0.24"; src = fetchurl { - url = "https://www.freedesktop.org/software/desktop-file-utils/releases/${name}.tar.xz"; - sha256 = "119kj2w0rrxkhg4f9cf5waa55jz1hj8933vh47vcjipcplql02bc"; + url = "https://www.freedesktop.org/software/${pname}/releases/${pname}-${version}.tar.xz"; + sha256 = "1nc3bwjdrpcrkbdmzvhckq0yngbcxspwj2n1r7jr3gmx1jk5vpm1"; }; - patches = [ - # Makes font a recognized media type. Committed upstream, but no release has been made. - (fetchpatch { - url = "https://gitlab.freedesktop.org/xdg/desktop-file-utils/commit/92af4108750ceaf4191fd54e255885c7d8a78b70.patch"; - sha256 = "14sqy10p5skp6hv4hgiwnj9hpr460250x42k5z0390l6nr6gahsq"; - }) - ]; - nativeBuildInputs = [ pkgconfig ]; buildInputs = [ glib libintl ]; From c5592fabba85bc011763258ab804e0f063e0da8f Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Fri, 26 Jul 2019 23:46:38 +0000 Subject: [PATCH 1092/1611] opencv3: 3.4.6 -> 3.4.7 --- pkgs/development/libraries/opencv/3.x.nix | 27 ++++++++++------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index 7055645fe89..d5dc716c4a8 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -35,20 +35,20 @@ }: let - version = "3.4.6"; + version = "3.4.7"; src = fetchFromGitHub { owner = "opencv"; repo = "opencv"; rev = version; - sha256 = "1gf0rbgd5s13q46bdna0bqn4yz9rxfhvlhbp5ds9hs326q8zprg8"; + sha256 = "0r5rrcnqx2lsnr1ja5ij2chb7yk9kkamr4p0ik52sqxydwkv3z50"; }; contribSrc = fetchFromGitHub { owner = "opencv"; repo = "opencv_contrib"; rev = version; - sha256 = "115qcq0k2wmvhxw5lyv14yrd8m6xq3qy0pdby90ml2yl1caymbfy"; + sha256 = "1ik6acsmgrx66awf19r2y3ijqvv9xg43gaphwszbiyi0jq3r43yw"; }; # Contrib must be built in order to enable Tesseract support: @@ -61,16 +61,16 @@ let src = fetchFromGitHub { owner = "opencv"; repo = "opencv_3rdparty"; - rev = "bdb7bb85f34a8cb0d35e40a81f58da431aa1557a"; - sha256 = "1ys9mshfpm8iy8h4ml792gnqrq959dsrcv26axx14niivxyjbji8"; + rev = "32e315a5b106a7b89dbed51c28f8120a48b368b4"; + sha256 = "19w9f0r16072s59diqxsr5q6nmwyz9gnxjs49nglzhd66p3ddbkp"; } + "/ippicv"; - files = let name = platform : "ippicv_2017u3_${platform}_general_20180518.tgz"; in + files = let name = platform : "ippicv_2019_${platform}_general_20180723.tgz"; in if stdenv.hostPlatform.system == "x86_64-linux" then - { ${name "lnx_intel64"} = "b7cc351267db2d34b9efa1cd22ff0572"; } + { ${name "lnx_intel64"} = "c0bd78adb4156bbf552c1dfe90599607"; } else if stdenv.hostPlatform.system == "i686-linux" then - { ${name "lnx_ia32"} = "ea72de74dae3c604eb6348395366e78e"; } + { ${name "lnx_ia32"} = "4f38432c30bfd6423164b7a24bbc98a0"; } else if stdenv.hostPlatform.system == "x86_64-darwin" then - { ${name "mac_intel64"} = "3ae52b9be0fe73dd45bc5e9429cd3732"; } + { ${name "mac_intel64"} = "fe6b2bb75ae0e3f19ad3ae1a31dfa4a2"; } else throw "ICV is not available for this platform (or not yet supported by this package)"; dst = ".cache/ippicv"; @@ -147,12 +147,6 @@ stdenv.mkDerivation rec { cp --no-preserve=mode -r "${contribSrc}/modules" "$NIX_BUILD_TOP/opencv_contrib" ''; - patches = lib.optional stdenv.isDarwin - (fetchpatch { - url = "https://github.com/opencv/opencv/commit/7621b91769098359e893e68ad474040ca7940fa1.patch"; - sha256 = "12qb14yd5934ig61lzs4pg29gak9wjyhnj7nmfx5r213jj1a4m21"; - }); - # This prevents cmake from using libraries in impure paths (which # causes build failure on non NixOS) # Also, work around https://github.com/NixOS/nixpkgs/issues/26304 with @@ -246,6 +240,9 @@ stdenv.mkDerivation rec { "-DBUILD_opencv_videoio=OFF" ] ++ lib.optionals enablePython [ "-DOPENCV_SKIP_PYTHON_LOADER=ON" + ] ++ lib.optional enableEigen [ + # Autodetection broken by https://github.com/opencv/opencv/pull/13337 + "-DEIGEN_INCLUDE_PATH=${eigen}/include/eigen3" ]; enableParallelBuilding = true; From a7c2dd267dfbdcdba03fe8723851f003ac5cfbd8 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 27 Jul 2019 07:48:47 +0800 Subject: [PATCH 1093/1611] rust-bindgen: 0.50.0 -> 0.51.0 --- pkgs/development/tools/rust/bindgen/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/rust/bindgen/default.nix b/pkgs/development/tools/rust/bindgen/default.nix index 2f23cbba695..df782d93515 100644 --- a/pkgs/development/tools/rust/bindgen/default.nix +++ b/pkgs/development/tools/rust/bindgen/default.nix @@ -3,13 +3,13 @@ rustPlatform.buildRustPackage rec { pname = "rust-bindgen"; - version = "0.50.0"; + version = "0.51.0"; src = fetchFromGitHub { owner = "rust-lang"; repo = pname; rev = "v${version}"; - sha256 = "1vm7g7z15kmk7jkhhkb3477snwcww5dgdy349b52fgjjzp75h7z7"; + sha256 = "1hlak8b57pndmdfkpfl17xxc91a6b239698bcm4yzlvliyscjgz1"; }; cargoSha256 = "1311d0wjjj99m59zd2n6r4aq6lwbbpyj54ha2z9g4yd1hn344r91"; From 299e9345a854011ba17246b586645cead4d93bac Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Fri, 26 Jul 2019 18:53:12 -0500 Subject: [PATCH 1094/1611] Revert "qtbase: Fix paths returned by qmake -query" --- pkgs/development/libraries/qt-5/modules/qtbase.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index a1c3bea866e..8506a80ddf3 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -171,7 +171,7 @@ stdenv.mkDerivation { NIX_OUTPUT_BIN = $bin NIX_OUTPUT_DEV = $dev NIX_OUTPUT_OUT = $out - NIX_OUTPUT_DOC = $out/$qtDocPrefix + NIX_OUTPUT_DOC = $dev/$qtDocPrefix NIX_OUTPUT_QML = $bin/$qtQmlPrefix NIX_OUTPUT_PLUGIN = $bin/$qtPluginPrefix EOF @@ -387,18 +387,6 @@ stdenv.mkDerivation { moveToOutput bin "$dev" '' - # Fix paths returned by qmake -query - + '' - cat > $dev/bin/qt.conf < Date: Thu, 25 Jul 2019 23:20:17 +0000 Subject: [PATCH 1095/1611] vaapiVdpau: fixup for libva-2.5.0 --- .../libraries/vaapi-vdpau/default.nix | 31 ++++++++++--------- .../libraries/vaapi-vdpau/glext85.patch | 20 ------------ 2 files changed, 17 insertions(+), 34 deletions(-) delete mode 100644 pkgs/development/libraries/vaapi-vdpau/glext85.patch diff --git a/pkgs/development/libraries/vaapi-vdpau/default.nix b/pkgs/development/libraries/vaapi-vdpau/default.nix index 07ca9d2e62e..f31f7e430e0 100644 --- a/pkgs/development/libraries/vaapi-vdpau/default.nix +++ b/pkgs/development/libraries/vaapi-vdpau/default.nix @@ -1,10 +1,5 @@ -{ stdenv, fetchurl, libvdpau, libGLU_combined, libva, pkgconfig }: -let - libvdpau08patch = (fetchurl { url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/files/libva-vdpau-driver-0.7.4-libvdpau-0.8.patch?revision=1.1"; - name = "libva-vdpau-driver-0.7.4-libvdpau-0.8.patch"; - sha256 = "1n2cys59wyv8ylx9i5m3s6856mgx24hzcp45w1ahdfbzdv9wrfbl"; - }); -in +{ stdenv, fetchurl, fetchpatch, libvdpau, libGLU_combined, libva, pkgconfig }: + stdenv.mkDerivation rec { name = "libva-vdpau-driver-0.7.4"; @@ -13,23 +8,31 @@ stdenv.mkDerivation rec { sha256 = "1fcvgshzyc50yb8qqm6v6wn23ghimay23ci0p8sm8gxcy211jp0m"; }; - patches = [ ./glext85.patch - (fetchurl { url = "http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/x11-libs/libva-vdpau-driver/files/libva-vdpau-driver-0.7.4-VAEncH264VUIBufferType.patch?revision=1.1"; - name = "libva-vdpau-driver-0.7.4-VAEncH264VUIBufferType.patch"; - sha256 = "166svcav6axkrlb3i4rbf6dkwjnqdf69xw339az1f5yabj72pqqs"; - }) ]; + patches = [ + (fetchpatch { url = "https://src.fedoraproject.org/rpms/libva-vdpau-driver/raw/0ad71107e28a60ea453ac70e895cf64342bd58d0/f/libva-vdpau-driver-0.7.4-glext-85.patch"; + sha256 = "0f0v7cl7kna3jcfnxw48b9mfl0hpacw72df9vym96sa2206vqlb0"; }) + (fetchpatch { url = "https://src.fedoraproject.org/rpms/libva-vdpau-driver/raw/0ad71107e28a60ea453ac70e895cf64342bd58d0/f/libva-vdpau-driver-0.7.4-drop-h264-api.patch"; + sha256 = "0q5w83jbf4qqmhwf54h906pzxgvhqv7g2vrkw7jzgnrxhhj9sj60"; }) + (fetchpatch { url = "https://src.fedoraproject.org/rpms/libva-vdpau-driver/raw/0ad71107e28a60ea453ac70e895cf64342bd58d0/f/libva-vdpau-driver-0.7.4-fix_type.patch"; + sha256 = "0s5dk6aa4sm0iyicnf2fwfsrqbvr58nbp77mhjg5bvwlar7znqv7"; }) + (fetchpatch { url = "https://src.fedoraproject.org/rpms/libva-vdpau-driver/raw/0ad71107e28a60ea453ac70e895cf64342bd58d0/f/sigfpe-crash.patch"; + sha256 = "15snqf60ib0xb3cnav5b2r55qv8lv2fa4p6jwxajh8wbvqpw0ibz"; }) + (fetchpatch { url = "https://src.fedoraproject.org/rpms/libva-vdpau-driver/raw/0ad71107e28a60ea453ac70e895cf64342bd58d0/f/implement-vaquerysurfaceattributes.patch"; + sha256 = "1dapx3bqqblw6l2iqqw1yff6qifam8q4m2rq343kwb3dqhy2ymy5"; }) + (fetchpatch { url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/x11-libs/libva-vdpau-driver/files/libva-vdpau-driver-0.7.4-include-linux-videodev2.h.patch"; + sha256 = "1m4is6lk580mppsx2mvdv1xifj6gvx724si4qynsm9qrdfdc9fby"; }) + ]; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libvdpau libGLU_combined libva ]; preConfigure = '' - patch -p0 < ${libvdpau08patch} # use -p0 instead of -p1 sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure ''; meta = { - homepage = https://cgit.freedesktop.org/vaapi/vdpau-driver/; + homepage = "https://cgit.freedesktop.org/vaapi/vdpau-driver"; license = stdenv.lib.licenses.gpl2Plus; description = "VDPAU driver for the VAAPI library"; platforms = stdenv.lib.platforms.linux; diff --git a/pkgs/development/libraries/vaapi-vdpau/glext85.patch b/pkgs/development/libraries/vaapi-vdpau/glext85.patch deleted file mode 100644 index 073b8cf1190..00000000000 --- a/pkgs/development/libraries/vaapi-vdpau/glext85.patch +++ /dev/null @@ -1,20 +0,0 @@ -http://www.mail-archive.com/libva@lists.freedesktop.org/msg01457.html - -diff --git a/src/utils_glx.h b/src/utils_glx.h -index 19d03e4..f270fba 100644 ---- a/src/utils_glx.h -+++ b/src/utils_glx.h -@@ -42,6 +42,13 @@ typedef void (*PFNGLVDPAUMAPSURFACESNVPROC)(GLsizei numSurfaces, const GLvdpauSu - typedef void (*PFNGLVDPAUUNMAPSURFACESNVPROC)(GLsizei numSurface, const GLvdpauSurfaceNV *surfaces); - #endif - -+#if GL_GLEXT_VERSION >= 85 -+/* XXX: PFNGLMULTITEXCOORD2FPROC got out of the GL_VERSION_1_3_DEPRECATED -+ block and is not defined if GL_VERSION_1_3 is defined in -+ Redefine the type here as an interim solution */ -+typedef void (*PFNGLMULTITEXCOORD2FPROC) (GLenum target, GLfloat s, GLfloat t); -+#endif -+ - /* GLX_EXT_texture_from_pixmap */ - #if GLX_GLXEXT_VERSION < 18 - typedef void (*PFNGLXBINDTEXIMAGEEXTPROC)(Display *, GLXDrawable, int, const int *); From e484667ec2993859d74b635f6859944e6debba83 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 20:32:52 -0400 Subject: [PATCH 1096/1611] vaapiVdpau: cleanup expression --- .../libraries/vaapi-vdpau/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/vaapi-vdpau/default.nix b/pkgs/development/libraries/vaapi-vdpau/default.nix index f31f7e430e0..e3fd7ad57e0 100644 --- a/pkgs/development/libraries/vaapi-vdpau/default.nix +++ b/pkgs/development/libraries/vaapi-vdpau/default.nix @@ -1,10 +1,11 @@ { stdenv, fetchurl, fetchpatch, libvdpau, libGLU_combined, libva, pkgconfig }: stdenv.mkDerivation rec { - name = "libva-vdpau-driver-0.7.4"; - + pname = "libva-vdpau-driver"; + version = "0.7.4"; + src = fetchurl { - url = "https://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/${name}.tar.bz2"; + url = "https://www.freedesktop.org/software/vaapi/releases/${pname}/${pname}-${version}.tar.bz2"; sha256 = "1fcvgshzyc50yb8qqm6v6wn23ghimay23ci0p8sm8gxcy211jp0m"; }; @@ -26,15 +27,14 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libvdpau libGLU_combined libva ]; - preConfigure = '' + postPatch = '' sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure ''; - - meta = { + meta = with stdenv.lib; { homepage = "https://cgit.freedesktop.org/vaapi/vdpau-driver"; - license = stdenv.lib.licenses.gpl2Plus; + license = licenses.gpl2Plus; description = "VDPAU driver for the VAAPI library"; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; }; } From c4d06eff3fd41bc71aa9d48f0122b20a28bb2c52 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 22:33:49 -0400 Subject: [PATCH 1097/1611] nixos/xdg: disable portal (again) --- nixos/modules/config/xdg/portal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix index 4e85bf794da..6a72fab3a4a 100644 --- a/nixos/modules/config/xdg/portal.nix +++ b/nixos/modules/config/xdg/portal.nix @@ -4,7 +4,7 @@ with lib; options.xdg.portal = { enable = mkEnableOption "xdg desktop integration"//{ - default = config.services.xserver.enable; + default = false; }; extraPortals = mkOption { From 785158fd648a3b4996a3aa68a0ba6575336cc43a Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 22:35:50 -0400 Subject: [PATCH 1098/1611] nixos/flatpak: require xdg.portal to be enabled --- nixos/modules/services/desktops/flatpak.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nixos/modules/services/desktops/flatpak.nix b/nixos/modules/services/desktops/flatpak.nix index 82463406118..1492d855aa0 100644 --- a/nixos/modules/services/desktops/flatpak.nix +++ b/nixos/modules/services/desktops/flatpak.nix @@ -22,6 +22,12 @@ in { ###### implementation config = mkIf cfg.enable { + assertions = [ + { assertion = (config.xdg.portal.enable == true); + message = "To use Flatpak you must enable XDG Desktop Portals with xdg.portal.enable."; + } + ]; + environment.systemPackages = [ pkgs.flatpak ]; services.dbus.packages = [ pkgs.flatpak ]; From 16c6f169a286502fe6fc7ef5e3f01fadb696974e Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 22:36:14 -0400 Subject: [PATCH 1099/1611] nixos/gnome3: enable xdg.portal --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 4a7a4804e1a..6ab9ab28a77 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -154,6 +154,7 @@ in { services.hardware.bolt.enable = mkDefault true; services.xserver.libinput.enable = mkDefault true; # for controlling touchpad settings via gnome control center systemd.packages = [ pkgs.gnome3.vino ]; + xdg.portal.enable = true; xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ]; # If gnome3 is installed, build vim for gtk3 too. From 1e4d9e08cdafdf51620985cbad906212737505e5 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 22:36:32 -0400 Subject: [PATCH 1100/1611] nixos/plasma5: enable xdg.portal --- nixos/modules/services/x11/desktop-managers/plasma5.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 98c9ae86cee..6d148fba895 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -170,7 +170,7 @@ in xdg-user-dirs # Update user dirs as described in https://freedesktop.org/wiki/Software/xdg-user-dirs/ ] - + # Phonon audio backend ++ lib.optional (cfg.phononBackend == "gstreamer") libsForQt5.phonon-backend-gstreamer ++ lib.optional (cfg.phononBackend == "gstreamer" && cfg.enableQt4Support) pkgs.phonon-backend-gstreamer @@ -233,6 +233,7 @@ in security.pam.services.sddm.enableKwallet = true; security.pam.services.slim.enableKwallet = true; + xdg.portal.enable = true; xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-kde ]; # Update the start menu for each user that is currently logged in From 70eae830431368d04abc387069a30450220e9247 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Sat, 27 Jul 2019 00:19:44 -0400 Subject: [PATCH 1101/1611] cool-retro-term: Use qt5's own mkDerivation --- pkgs/applications/misc/cool-retro-term/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/cool-retro-term/default.nix b/pkgs/applications/misc/cool-retro-term/default.nix index f2372aa51e6..bd49323b03f 100644 --- a/pkgs/applications/misc/cool-retro-term/default.nix +++ b/pkgs/applications/misc/cool-retro-term/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchFromGitHub, qtbase, qtquick1, qmltermwidget +{ stdenv, fetchFromGitHub, mkDerivation, qtbase, qtquick1, qmltermwidget , qtquickcontrols, qtgraphicaleffects, qmake }: -stdenv.mkDerivation rec { +mkDerivation rec { version = "1.1.1"; name = "cool-retro-term-${version}"; From d3c2b992d4350d5ed36139eab8ac4c5349de5a64 Mon Sep 17 00:00:00 2001 From: Ashish SHUKLA Date: Sat, 27 Jul 2019 10:59:50 +0530 Subject: [PATCH 1102/1611] sshguard: do not create ipset in post-start Upstream switched to a different type of ipset table, whereas we create ipset in post-start which overrides upstream, and renders sshguard ineffective. Remove ipset creation from post-start, and let it get automatically by upstream script (sshg-fw-ipset) as part of startup --- nixos/modules/services/security/sshguard.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/nixos/modules/services/security/sshguard.nix b/nixos/modules/services/security/sshguard.nix index 3892cd5c72b..25cec5b5b10 100644 --- a/nixos/modules/services/security/sshguard.nix +++ b/nixos/modules/services/security/sshguard.nix @@ -107,8 +107,6 @@ in { path = with pkgs; [ iptables ipset iproute systemd ]; postStart = '' - ${pkgs.ipset}/bin/ipset -quiet create -exist sshguard4 hash:ip family inet - ${pkgs.ipset}/bin/ipset -quiet create -exist sshguard6 hash:ip family inet6 ${pkgs.iptables}/bin/iptables -I INPUT -m set --match-set sshguard4 src -j DROP ${pkgs.iptables}/bin/ip6tables -I INPUT -m set --match-set sshguard6 src -j DROP ''; From 30c81c8530f14a4ae57422b2f841fa16cd08e46d Mon Sep 17 00:00:00 2001 From: Chris Rendle-Short Date: Sat, 27 Jul 2019 09:28:36 +1000 Subject: [PATCH 1103/1611] libgdata: propagate gnome-online-accounts to reverse dependencies Required since `libgdata` now uses Meson. See also: #64295 --- pkgs/development/libraries/libgdata/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libgdata/default.nix b/pkgs/development/libraries/libgdata/default.nix index 91994a5cfba..77d4ed19b4e 100644 --- a/pkgs/development/libraries/libgdata/default.nix +++ b/pkgs/development/libraries/libgdata/default.nix @@ -45,7 +45,6 @@ stdenv.mkDerivation rec { buildInputs = [ gcr glib - gnome3.gnome-online-accounts liboauth libsoup libxml2 @@ -55,6 +54,7 @@ stdenv.mkDerivation rec { ]; propagatedBuildInputs = [ + gnome3.gnome-online-accounts json-glib ]; From 236802c33d043599da60df12dacac56c6ed1d844 Mon Sep 17 00:00:00 2001 From: Johannes Schleifenbaum Date: Sat, 27 Jul 2019 09:31:15 +0200 Subject: [PATCH 1104/1611] dbeaver: 6.1.0 -> 6.1.3 --- pkgs/applications/misc/dbeaver/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/dbeaver/default.nix b/pkgs/applications/misc/dbeaver/default.nix index 77a25f2755f..3e1a87a641b 100644 --- a/pkgs/applications/misc/dbeaver/default.nix +++ b/pkgs/applications/misc/dbeaver/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { name = "dbeaver-ce-${version}"; - version = "6.1.0"; + version = "6.1.3"; desktopItem = makeDesktopItem { name = "dbeaver"; @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://dbeaver.io/files/${version}/dbeaver-ce-${version}-linux.gtk.x86_64.tar.gz"; - sha256 = "0ngfv5pcj8hs7zcddwk0jw0l7hnm768wp76yrfyk38wkijk9f412"; + sha256 = "1ngfypx0wbq98rv791zls07h46rnj69qixpslw0xn9bb3ky4snbf"; }; installPhase = '' From cd903247b871649e95d157e78b4cb21327c8d76a Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Sat, 27 Jul 2019 09:54:31 +0200 Subject: [PATCH 1105/1611] dragon-drop: git-2014-08-14 -> 1.1.0 --- pkgs/tools/X11/dragon-drop/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/X11/dragon-drop/default.nix b/pkgs/tools/X11/dragon-drop/default.nix index 232c4a636fb..28f7edcfd04 100644 --- a/pkgs/tools/X11/dragon-drop/default.nix +++ b/pkgs/tools/X11/dragon-drop/default.nix @@ -1,15 +1,14 @@ - { stdenv, gtk, pkgconfig, fetchFromGitHub }: stdenv.mkDerivation rec { name = "dragon-drop-${version}"; - version = "git-2014-08-14"; + version = "1.1.0"; src = fetchFromGitHub { owner = "mwh"; repo = "dragon"; - rev = "a49d775dd9d43bd22cee4c1fd3e32ede0dc2e9c2"; - sha256 = "03vdbmqlbmk3j2ay1wy6snrm2y27faxz7qv81vyzjzngj345095a"; + rev = "v${version}"; + sha256 = "0iwlrcqvbjshpwvg0gsqdqcjv48q1ary59pm74zzjnr8v9470smr"; }; nativeBuildInputs = [ pkgconfig ]; @@ -23,7 +22,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Simple drag-and-drop source/sink for X"; homepage = https://github.com/mwh/dragon; - maintainers = with maintainers; [ jb55 ]; + maintainers = with maintainers; [ jb55 markus1189 ]; license = licenses.gpl3; platforms = with platforms; unix; }; From 330fff02a675f389f429d872a590ed65fc93aedb Mon Sep 17 00:00:00 2001 From: Luke Worth Date: Sat, 27 Jul 2019 17:06:18 +1000 Subject: [PATCH 1106/1611] postgis: allow on Darwin To get PostGIS going on Darwin: 1. Add libiconv, as is often required. 2. Expand platforms to `platforms.all`. 3. Deal with PostGIS' quirky build system. PostGIS' configure.ac has the following gem: AC_MSG_RESULT([------------------------------------------------------------------------]) AC_MSG_RESULT([ WARNING: You have set the --prefix to '$prefix'. But we mostly ]) AC_MSG_RESULT([ ignore the --prefix. For your info, using the values determined from ]) AC_MSG_RESULT([ $PG_CONFIG we will be installing: ]) AC_MSG_RESULT([ * postgis shared library in $PGSQL_LIBDIR ]) AC_MSG_RESULT([ * postgis SQL files in $PGSQL_SHAREDIR/contrib/postgis-$POSTGIS_MAJOR_VERSION.$POSTGIS_MINOR_VERSION ]) AC_MSG_RESULT([ * postgis executables in $PGSQL_BINDIR ]) AC_MSG_RESULT([------------------------------------------------------------------------]) This is suggestive of some assumptions in the build system, which are revealed when building in Nix on Darwin: the build fails because the postgres binary cannot be found in the install prefix specified for postgis; vis. cc x -bundle_loader $POSTGIS_PREFIX/bin/postgres This bundle_loader parameter is only available on Darwin, and this problem doesn't appear to affect Linux systems. The solution presented here is to symlink the postgres binary where PostGIS expects it to be, and then remove it after the build completes. --- pkgs/servers/sql/postgresql/ext/postgis.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix index de9d7eb1305..81fbd41b46a 100644 --- a/pkgs/servers/sql/postgresql/ext/postgis.nix +++ b/pkgs/servers/sql/postgresql/ext/postgis.nix @@ -10,6 +10,7 @@ , pkgconfig , file , protobufc +, libiconv }: stdenv.mkDerivation rec { name = "postgis-${version}"; @@ -22,7 +23,7 @@ stdenv.mkDerivation rec { sha256 = "0pnva72f2w4jcgnl1y7nw5rdly4ipx3hji4c9yc9s0hna1n2ijxn"; }; - buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]; + buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc libiconv ]; nativeBuildInputs = [ perl pkgconfig ]; dontDisableStatic = true; @@ -43,14 +44,13 @@ stdenv.mkDerivation rec { sed -i "s|\$(DESTDIR)\$(PGSQL_BINDIR)|$prefix/bin|g " \ "raster/scripts/python/Makefile"; - ''; - - preInstall = '' mkdir -p $out/bin + ln -s ${postgresql}/bin/postgres $out/bin/postgres ''; # create aliases for all commands adding version information postInstall = '' + rm $out/bin/postgres for prog in $out/bin/*; do # */ ln -s $prog $prog-${version} done @@ -64,6 +64,6 @@ stdenv.mkDerivation rec { homepage = https://postgis.net/; license = licenses.gpl2; maintainers = [ maintainers.marcweber ]; - platforms = platforms.linux; + platforms = platforms.all; }; } From 7f54b9a2c6f7ac61bcd9f7f8788cd4475b729bd6 Mon Sep 17 00:00:00 2001 From: Luke Worth Date: Sat, 27 Jul 2019 19:43:31 +1000 Subject: [PATCH 1107/1611] postgis: make libiconv dependent on darwin --- pkgs/servers/sql/postgresql/ext/postgis.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix index 81fbd41b46a..5e38cb42d19 100644 --- a/pkgs/servers/sql/postgresql/ext/postgis.nix +++ b/pkgs/servers/sql/postgresql/ext/postgis.nix @@ -23,7 +23,8 @@ stdenv.mkDerivation rec { sha256 = "0pnva72f2w4jcgnl1y7nw5rdly4ipx3hji4c9yc9s0hna1n2ijxn"; }; - buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc libiconv ]; + buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ] + ++ stdenv.lib.optional stdenv.isDarwin libiconv; nativeBuildInputs = [ perl pkgconfig ]; dontDisableStatic = true; From 4c85595ada3f4c6df9754c381e702f38c7cbaaf8 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Wed, 24 Jul 2019 14:46:12 -0400 Subject: [PATCH 1108/1611] pythonPackages.simple-salesforce: init at 0.74.3 --- .../simple-salesforce/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/python-modules/simple-salesforce/default.nix diff --git a/pkgs/development/python-modules/simple-salesforce/default.nix b/pkgs/development/python-modules/simple-salesforce/default.nix new file mode 100644 index 00000000000..1eacd25bede --- /dev/null +++ b/pkgs/development/python-modules/simple-salesforce/default.nix @@ -0,0 +1,51 @@ +{ lib +, fetchFromGitHub +, buildPythonPackage +, requests +, pyopenssl +, cryptography +, idna +, mock +, isPy27 +, nose +, pytz +, responses +}: + +buildPythonPackage rec { + pname = "simple-salesforce"; + version = "0.74.3"; + + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = "v${version}"; + sha256 = "1n960xgrnmv20l31nm0im7pb4nfa83bmx4x4clqrh2jkpzq3ric0"; + }; + + propagatedBuildInputs = [ + requests + pyopenssl + cryptography + idna + ]; + + checkInputs = [ + nose + pytz + responses + ] ++ lib.optionals isPy27 [ mock ]; + + postPatch = '' + substituteInPlace setup.py \ + --replace "mock==1.0.1" "mock" + ''; + + meta = with lib; { + description = "A very simple Salesforce.com REST API client for Python"; + homepage = https://github.com/simple-salesforce/simple-salesforce; + license = licenses.asl20; + maintainers = with maintainers; [ costrouc ]; + }; + +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 3d55a8bdc0c..ebea2514a49 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1101,6 +1101,8 @@ in { simpleeval = callPackage ../development/python-modules/simpleeval { }; + simple-salesforce = callPackage ../development/python-modules/simple-salesforce { }; + singledispatch = callPackage ../development/python-modules/singledispatch { }; sip = callPackage ../development/python-modules/sip { }; From 3b7b86f67d2deabd216a6d9f890d876b7800a4b4 Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Fri, 26 Jul 2019 15:44:36 -0400 Subject: [PATCH 1109/1611] Add wd15 to maintainers.nix --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5e9c4c5c116..8e884286daa 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5926,4 +5926,9 @@ github = "mattmelling"; name = "Matt Melling"; }; + wd15 = { + email = "daniel.wheeler2@gmail.com"; + github = "wd15"; + name = "Daniel Wheeler"; + }; } From 266d0bbf2ca7c0f84cfa37efd06e1f78cc516f81 Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Thu, 25 Jul 2019 16:33:06 -0400 Subject: [PATCH 1110/1611] pythonPackages.uvicorn: init at 0.8.4 --- .../python-modules/uvicorn/default.nix | 44 +++++++++++++++++++ .../python-modules/uvicorn/setup.patch | 13 ++++++ pkgs/top-level/python-packages.nix | 2 + 3 files changed, 59 insertions(+) create mode 100644 pkgs/development/python-modules/uvicorn/default.nix create mode 100644 pkgs/development/python-modules/uvicorn/setup.patch diff --git a/pkgs/development/python-modules/uvicorn/default.nix b/pkgs/development/python-modules/uvicorn/default.nix new file mode 100644 index 00000000000..1bf0d1c54f0 --- /dev/null +++ b/pkgs/development/python-modules/uvicorn/default.nix @@ -0,0 +1,44 @@ +{ lib +, buildPythonPackage +, fetchPypi +, click +, h11 +, httptools +, uvloop +, websockets +, wsproto +, isPy27 +}: + +buildPythonPackage rec { + pname = "uvicorn"; + version = "0.8.4"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "1l8rfm30inx9pma893i7sby9h7y910k58841zqaajksn563b882k"; + }; + + propagatedBuildInputs = [ + click + h11 + httptools + uvloop + websockets + wsproto + ]; + + checkPhase = '' + $out/bin/uvicorn --help + ''; + + patches = [ ./setup.patch ]; + + meta = with lib; { + homepage = https://www.uvicorn.org/; + description = "The lightning-fast ASGI server"; + license = licenses.bsd3; + maintainers = with maintainers; [ wd15 ]; + }; +} diff --git a/pkgs/development/python-modules/uvicorn/setup.patch b/pkgs/development/python-modules/uvicorn/setup.patch new file mode 100644 index 00000000000..f1d974b42d9 --- /dev/null +++ b/pkgs/development/python-modules/uvicorn/setup.patch @@ -0,0 +1,13 @@ +diff --git a/setup.py b/setup.py +index 802cda4..561abf4 100755 +--- a/setup.py ++++ b/setup.py +@@ -42,7 +42,7 @@ env_marker = ( + + requirements = [ + "click==7.*", +- "h11==0.8.*", ++ "h11", + "websockets==7.*", + "httptools==0.0.13 ;" + env_marker, + "uvloop==0.12.* ;" + env_marker, diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ebea2514a49..dfbe35a403e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6038,6 +6038,8 @@ in { aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { }; mwparserfromhell = callPackage ../development/python-modules/mwparserfromhell { }; + uvicorn = callPackage ../development/python-modules/uvicorn { }; + }); in fix' (extends overrides packages) From 1c3c07394aa241dd982e7f0c5fffdb3c953f654c Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Thu, 25 Jul 2019 17:02:18 -0400 Subject: [PATCH 1111/1611] pythonPackages.starlette: init at 0.12.4 --- .../python-modules/starlette/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 3 ++ 2 files changed, 54 insertions(+) create mode 100644 pkgs/development/python-modules/starlette/default.nix diff --git a/pkgs/development/python-modules/starlette/default.nix b/pkgs/development/python-modules/starlette/default.nix new file mode 100644 index 00000000000..6e2bd8250b6 --- /dev/null +++ b/pkgs/development/python-modules/starlette/default.nix @@ -0,0 +1,51 @@ +{ lib +, buildPythonPackage +, fetchPypi +, aiofiles +, graphene +, itsdangerous +, jinja2 +, pyyaml +, requests +, ujson +, pytest +, python +, uvicorn +, isPy27 +}: + +buildPythonPackage rec { + pname = "starlette"; + version = "0.12.4"; + disabled = isPy27; + + src = fetchPypi { + inherit pname version; + sha256 = "1m7qf4g5dn7n36406zbqsag71nmwp2dz91yxpplm7h7wiw2xxw93"; + }; + + propagatedBuildInputs = [ + aiofiles + graphene + itsdangerous + jinja2 + pyyaml + requests + ujson + uvicorn + ]; + + checkPhase = '' + ${python.interpreter} -c """ +from starlette.applications import Starlette +app = Starlette(debug=True) +""" + ''; + + meta = with lib; { + homepage = https://www.starlette.io/; + description = "The little ASGI framework that shines"; + license = licenses.bsd3; + maintainers = with maintainers; [ wd15 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index dfbe35a403e..941b203b59d 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6038,6 +6038,9 @@ in { aioesphomeapi = callPackage ../development/python-modules/aioesphomeapi { }; mwparserfromhell = callPackage ../development/python-modules/mwparserfromhell { }; + + starlette = callPackage ../development/python-modules/starlette { }; + uvicorn = callPackage ../development/python-modules/uvicorn { }; }); From f878d34e5fe57a4fa6e26e0015c4589b25c0b25a Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Thu, 25 Jul 2019 17:26:49 -0400 Subject: [PATCH 1112/1611] pythonPackages.pydantic: init at 0.31 --- .../python-modules/pydantic/default.nix | 51 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/python-modules/pydantic/default.nix diff --git a/pkgs/development/python-modules/pydantic/default.nix b/pkgs/development/python-modules/pydantic/default.nix new file mode 100644 index 00000000000..9b713827199 --- /dev/null +++ b/pkgs/development/python-modules/pydantic/default.nix @@ -0,0 +1,51 @@ +{ lib +, buildPythonPackage +, fetchPypi +, ujson +, email_validator +, typing-extensions +, python +, isPy3k +}: + +buildPythonPackage rec { + pname = "pydantic"; + version = "0.31"; + disabled = !isPy3k; + + src = fetchPypi { + inherit pname version; + sha256 = "0x9xc5hpyrlf05dc4bx9f7v51fahxcahkvh0ij8ibay15nwli53d"; + }; + + propagatedBuildInputs = [ + ujson + email_validator + typing-extensions + ]; + + checkPhase = '' + ${python.interpreter} -c """ +from datetime import datetime +from typing import List +from pydantic import BaseModel + +class User(BaseModel): + id: int + name = 'John Doe' + signup_ts: datetime = None + friends: List[int] = [] + +external_data = {'id': '123', 'signup_ts': '2017-06-01 12:22', 'friends': [1, '2', b'3']} +user = User(**external_data) +assert user.id is "123" +""" + ''; + + meta = with lib; { + homepage = "https://github.com/samuelcolvin/pydantic"; + description = "Data validation and settings management using Python type hinting"; + license = licenses.mit; + maintainers = with maintainers; [ wd15 ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 941b203b59d..749d2882ff7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6043,6 +6043,8 @@ in { uvicorn = callPackage ../development/python-modules/uvicorn { }; + pydantic = callPackage ../development/python-modules/pydantic { }; + }); in fix' (extends overrides packages) From 124fb417fcc89f2787510c30d07fb0fff4407ccf Mon Sep 17 00:00:00 2001 From: Daniel Wheeler Date: Fri, 26 Jul 2019 12:15:36 -0400 Subject: [PATCH 1113/1611] pythonPackages.fastapi: init at 0.33.0 --- .../python-modules/fastapi/default.nix | 40 +++++++++++++++++++ .../python-modules/fastapi/setup.py.patch | 13 ++++++ pkgs/top-level/python-packages.nix | 1 + 3 files changed, 54 insertions(+) create mode 100644 pkgs/development/python-modules/fastapi/default.nix create mode 100644 pkgs/development/python-modules/fastapi/setup.py.patch diff --git a/pkgs/development/python-modules/fastapi/default.nix b/pkgs/development/python-modules/fastapi/default.nix new file mode 100644 index 00000000000..89431d8b52f --- /dev/null +++ b/pkgs/development/python-modules/fastapi/default.nix @@ -0,0 +1,40 @@ +{ lib +, buildPythonPackage +, fetchPypi +, uvicorn +, starlette +, pydantic +, python +, isPy3k +, which +}: + +buildPythonPackage rec { + pname = "fastapi"; + version = "0.33.0"; + disabled = !isPy3k; + + src = fetchPypi { + inherit pname version; + sha256 = "1mc8ljfk6xyn2cq725s8hgapp62z5mylzw9akvkhwwz3bh8m5a7f"; + }; + + propagatedBuildInputs = [ + uvicorn + starlette + pydantic + ]; + + patches = [ ./setup.py.patch ]; + + checkPhase = '' + ${python.interpreter} -c "from fastapi import FastAPI; app = FastAPI()" + ''; + + meta = with lib; { + homepage = "https://github.com/tiangolo/fastapi"; + description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"; + license = licenses.mit; + maintainers = with maintainers; [ wd15 ]; + }; +} diff --git a/pkgs/development/python-modules/fastapi/setup.py.patch b/pkgs/development/python-modules/fastapi/setup.py.patch new file mode 100644 index 00000000000..43661343d74 --- /dev/null +++ b/pkgs/development/python-modules/fastapi/setup.py.patch @@ -0,0 +1,13 @@ +diff --git a/setup.py b/setup.py +index ccc3d2b..77ce446 100644 +--- a/setup.py ++++ b/setup.py +@@ -10,7 +10,7 @@ package_data = \ + {'': ['*']} + + install_requires = \ +-['starlette >=0.11.1,<=0.12.0', 'pydantic >=0.30,<=0.30.0'] ++['starlette >=0.11.1', 'pydantic >=0.30'] + + extras_require = \ + {'all': ['requests', diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 749d2882ff7..39d91233d39 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6045,6 +6045,7 @@ in { pydantic = callPackage ../development/python-modules/pydantic { }; + fastapi = callPackage ../development/python-modules/fastapi { }; }); in fix' (extends overrides packages) From bd47c5721f8a297588620b89cd2ace7a30d3e91d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 27 Jul 2019 09:30:34 +0200 Subject: [PATCH 1114/1611] Python: introduce NIX_PYTHONEXECUTABLE in order to set sys.executable This is needed in case of `python.buildEnv` to make sure sys.executable does not point to the unwrapped executable. --- pkgs/development/interpreters/python/sitecustomize.py | 8 ++++++++ pkgs/development/interpreters/python/wrapper.nix | 3 ++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/python/sitecustomize.py b/pkgs/development/interpreters/python/sitecustomize.py index 7e43be56147..e03b244dbc0 100644 --- a/pkgs/development/interpreters/python/sitecustomize.py +++ b/pkgs/development/interpreters/python/sitecustomize.py @@ -8,11 +8,19 @@ The paths listed in `PYTHONPATH` are added to `sys.path` afterwards, but they will be added before the entries we add here and thus take precedence. Note the `NIX_PYTHONPATH` environment variable is unset in order to prevent leakage. + +Similarly, this module listens to the environment variable `NIX_PYTHONEXECUTABLE` +and sets `sys.executable` to its value. """ import site +import sys import os import functools paths = os.environ.pop('NIX_PYTHONPATH', None) if paths: functools.reduce(lambda k, p: site.addsitedir(p, k), paths.split(':'), site._init_pathinfo()) + +executable = os.environ.pop('NIX_PYTHONEXECUTABLE', None) +if 'PYTHONEXECUTABLE' not in os.environ and executable: + sys.executable = executable diff --git a/pkgs/development/interpreters/python/wrapper.nix b/pkgs/development/interpreters/python/wrapper.nix index d97bef222a1..b437584024f 100644 --- a/pkgs/development/interpreters/python/wrapper.nix +++ b/pkgs/development/interpreters/python/wrapper.nix @@ -14,6 +14,7 @@ let env = let paths = requiredPythonModules (extraLibs ++ [ python ] ) ; pythonPath = "${placeholder "out"}/${python.sitePackages}"; + pythonExecutable = "${placeholder "out"}/bin/${python.executable}"; in buildEnv { name = "${python.name}-env"; @@ -36,7 +37,7 @@ let if [ -f "$prg" ]; then rm -f "$out/bin/$prg" if [ -x "$prg" ]; then - makeWrapper "$path/bin/$prg" "$out/bin/$prg" --set NIX_PYTHONPATH ${pythonPath} ${if permitUserSite then "" else ''--set PYTHONNOUSERSITE "true"''} ${stdenv.lib.concatStringsSep " " makeWrapperArgs} + makeWrapper "$path/bin/$prg" "$out/bin/$prg" --set NIX_PYTHONEXECUTABLE ${pythonExecutable} --set NIX_PYTHONPATH ${pythonPath} ${if permitUserSite then "" else ''--set PYTHONNOUSERSITE "true"''} ${stdenv.lib.concatStringsSep " " makeWrapperArgs} fi fi done From 2dabd051a7a910d94bc2a9819dcf0719802056dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Wed, 17 Jul 2019 12:21:29 +0200 Subject: [PATCH 1115/1611] pythonPackages.pytest-arraydiff: fix infinite recursion --- .../python-modules/pytest-arraydiff/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/pytest-arraydiff/default.nix b/pkgs/development/python-modules/pytest-arraydiff/default.nix index 4a59e22d136..e01d26b530e 100644 --- a/pkgs/development/python-modules/pytest-arraydiff/default.nix +++ b/pkgs/development/python-modules/pytest-arraydiff/default.nix @@ -22,14 +22,10 @@ buildPythonPackage rec { pytest ]; - checkInputs = [ - pytest - astropy - ]; - - checkPhase = '' - pytest - ''; + # The tests requires astropy, which itself requires + # pytest-arraydiff. This causes an infinite recursion if the tests + # are enabled. + doCheck = false; meta = with lib; { description = "Pytest plugin to help with comparing array output from tests"; From ee6c007fccc0e8ed1768dcf317bdd33aa4deea5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 11:50:25 +0200 Subject: [PATCH 1116/1611] pythonPackages.astropy: add checkPhase --- .../python-modules/astropy/default.nix | 27 ++++++++++++++++--- 1 file changed, 23 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/astropy/default.nix b/pkgs/development/python-modules/astropy/default.nix index 06716929575..f46ca274f2e 100644 --- a/pkgs/development/python-modules/astropy/default.nix +++ b/pkgs/development/python-modules/astropy/default.nix @@ -3,7 +3,10 @@ , buildPythonPackage , isPy3k , numpy -, pytest }: +, pytest +, pytest-astropy +, astropy-helpers +}: buildPythonPackage rec { pname = "astropy"; @@ -11,14 +14,30 @@ buildPythonPackage rec { disabled = !isPy3k; # according to setup.py - doCheck = false; #Some tests are failing. More importantly setup.py hangs on completion. Needs fixing with a proper shellhook. - src = fetchPypi { inherit pname version; sha256 = "706c0457789c78285e5464a5a336f5f0b058d646d60f4e5f5ba1f7d5bf424b28"; }; - propagatedBuildInputs = [ pytest numpy ]; # yes it really has pytest in install_requires + nativeBuildInputs = [ astropy-helpers ]; + + propagatedBuildInputs = [ numpy pytest ]; # yes it really has pytest in install_requires + + checkInputs = [ pytest pytest-astropy ]; + + # Disable automatic update of the astropy-helper module + postPatch = '' + substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" + ''; + + # Tests must be run from the build directory. astropy/samp tests + # require a network connection, so we ignore them. For some reason + # pytest --ignore does not work, so we delete the tests instead. + checkPhase = '' + cd build/lib.* + rm -f astropy/samp/tests/* + pytest + ''; meta = { description = "Astronomy/Astrophysics library for Python"; From 5e7213b61598f8b86ab806c297cf1a5bd0ad89f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 12:15:59 +0200 Subject: [PATCH 1117/1611] pythonPackages.spectral-cube: add checkPhase --- .../python-modules/spectral-cube/default.nix | 24 +++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/spectral-cube/default.nix b/pkgs/development/python-modules/spectral-cube/default.nix index 661bc6363f4..c28b249d192 100644 --- a/pkgs/development/python-modules/spectral-cube/default.nix +++ b/pkgs/development/python-modules/spectral-cube/default.nix @@ -3,20 +3,36 @@ , buildPythonPackage , astropy , radio_beam -, pytest }: +, pytest +, pytest-astropy +, astropy-helpers +}: buildPythonPackage rec { pname = "spectral-cube"; version = "0.4.4"; - doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs - src = fetchPypi { inherit pname version; sha256 = "9051ede204b1e25b6358b5e0e573b624ec0e208c24eb03a7ed4925b745c93b5e"; }; - propagatedBuildInputs = [ astropy radio_beam pytest ]; + propagatedBuildInputs = [ astropy radio_beam ]; + + nativeBuildInputs = [ astropy-helpers ]; + + checkInputs = [ pytest pytest-astropy ]; + + # Disable automatic update of the astropy-helper module + postPatch = '' + substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" + ''; + + # Tests must be run in the build directory + checkPhase = '' + cd build/lib + pytest + ''; meta = { description = "Library for reading and analyzing astrophysical spectral data cubes"; From 723382b0bfa366ffc90aca31348a28d74228a3b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 12:27:29 +0200 Subject: [PATCH 1118/1611] pythonPackages.radio_beam: add checkPhase --- .../python-modules/radio_beam/default.nix | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/radio_beam/default.nix b/pkgs/development/python-modules/radio_beam/default.nix index 8b2fdc90f04..09d815134ef 100644 --- a/pkgs/development/python-modules/radio_beam/default.nix +++ b/pkgs/development/python-modules/radio_beam/default.nix @@ -1,14 +1,17 @@ { lib , fetchPypi , buildPythonPackage -, astropy }: +, astropy +, pytest +, pytest-astropy +, astropy-helpers +, scipy +}: buildPythonPackage rec { pname = "radio_beam"; version = "0.3.1"; - doCheck = false; # the tests requires several pytest plugins that are not in nixpkgs - src = fetchPypi { inherit pname version; sha256 = "1wgd9dyz3pcc9ighkclb6qfyshwbg35s57lz6k62jhcxpvp8r5zb"; @@ -16,6 +19,21 @@ buildPythonPackage rec { propagatedBuildInputs = [ astropy ]; + nativeBuildInputs = [ astropy-helpers ]; + + # Disable automatic update of the astropy-helper module + postPatch = '' + substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" + ''; + + checkInputs = [ pytest pytest-astropy scipy ]; + + # Tests must be run in the build directory + checkPhase = '' + cd build/lib + pytest + ''; + meta = { description = "Tools for Beam IO and Manipulation"; homepage = http://radio-astro-tools.github.io; From ffd71594f61d48e08fb3976ac7b8dffbc07bdc60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 12:50:21 +0200 Subject: [PATCH 1119/1611] pythonPackages.aplpy: add checkPhase --- pkgs/development/python-modules/aplpy/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/aplpy/default.nix b/pkgs/development/python-modules/aplpy/default.nix index a173a58032d..9710dc9f9a6 100644 --- a/pkgs/development/python-modules/aplpy/default.nix +++ b/pkgs/development/python-modules/aplpy/default.nix @@ -11,14 +11,14 @@ , pillow , scikitimage , shapely +, pytest +, pytest-astropy }: buildPythonPackage rec { pname = "aplpy"; version = "2.0.3"; - doCheck = false; # tests require pytest-astropy - src = fetchPypi { pname = "APLpy"; inherit version; @@ -28,7 +28,6 @@ buildPythonPackage rec { propagatedBuildInputs = [ numpy astropy - astropy-helpers matplotlib reproject pyavm @@ -38,11 +37,21 @@ buildPythonPackage rec { shapely ]; + nativeBuildInputs = [ astropy-helpers ]; + + checkInputs = [ pytest pytest-astropy ]; + # Disable automatic update of the astropy-helper module postPatch = '' substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" ''; + # Tests must be run in the build directory + checkPhase = '' + cd build/lib + pytest + ''; + meta = with lib; { description = "The Astronomical Plotting Library in Python"; homepage = http://aplpy.github.io; From 93a6bba94e4ed2780ad6e2571d9af2d74bba580e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 13:50:29 +0200 Subject: [PATCH 1120/1611] pythonPackages.pyregion: add checkPhase --- .../python-modules/pyregion/default.nix | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyregion/default.nix b/pkgs/development/python-modules/pyregion/default.nix index dda3a3cd161..a2b0423e558 100644 --- a/pkgs/development/python-modules/pyregion/default.nix +++ b/pkgs/development/python-modules/pyregion/default.nix @@ -1,18 +1,20 @@ { lib , buildPythonPackage , fetchPypi +, fetchpatch , pyparsing , numpy , cython , astropy +, astropy-helpers +, pytest +, pytest-astropy }: buildPythonPackage rec { pname = "pyregion"; version = "2.0"; - doCheck = false; # tests require pytest-astropy - src = fetchPypi { inherit pname version; sha256 = "a8ac5f764b53ec332f6bc43f6f2193ca13e8b7d5a3fb2e20ced6b2ea42a9d094"; @@ -25,6 +27,30 @@ buildPythonPackage rec { astropy ]; + # Upstream patch needed for the test to pass + patches = [ + (fetchpatch { + name = "conftest-astropy-3-fix.patch"; + url = "https://github.com/astropy/pyregion/pull/136.patch"; + sha256 = "13yxjxiqnhjy9gh24hvv6pnwx7qic2mcx3ccr1igjrc3f881d59m"; + }) + ]; + + nativeBuildInputs = [ astropy-helpers ]; + + checkInputs = [ pytest pytest-astropy ]; + + # Disable automatic update of the astropy-helper module + postPatch = '' + substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" + ''; + + # Tests must be run in the build directory + checkPhase = '' + cd build/lib.* + pytest + ''; + meta = with lib; { description = "Python parser for ds9 region files"; homepage = https://github.com/astropy/pyregion; From 1354a2e642d597c5263084594ff36ce7abcf006c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Maret?= Date: Tue, 23 Jul 2019 18:44:54 +0200 Subject: [PATCH 1121/1611] pythonPackages.astroquery: add checkPhase --- .../astroquery/conftest-astropy-3-fix.patch | 54 +++++++++++++++++++ .../python-modules/astroquery/default.nix | 25 ++++++++- 2 files changed, 77 insertions(+), 2 deletions(-) create mode 100644 pkgs/development/python-modules/astroquery/conftest-astropy-3-fix.patch diff --git a/pkgs/development/python-modules/astroquery/conftest-astropy-3-fix.patch b/pkgs/development/python-modules/astroquery/conftest-astropy-3-fix.patch new file mode 100644 index 00000000000..0b1c7973b59 --- /dev/null +++ b/pkgs/development/python-modules/astroquery/conftest-astropy-3-fix.patch @@ -0,0 +1,54 @@ +diff -ruN astroquery-0.3.9.orig/astroquery/conftest.py astroquery-0.3.9/astroquery/conftest.py +--- astroquery-0.3.9.orig/astroquery/conftest.py 2018-11-27 14:51:16.000000000 +0100 ++++ astroquery-0.3.9/astroquery/conftest.py 2019-07-23 18:19:17.000000000 +0200 +@@ -5,15 +5,20 @@ + # by importing them here in conftest.py they are discoverable by py.test + # no matter how it is invoked within the source tree. + +-from astropy.tests.pytest_plugins import (PYTEST_HEADER_MODULES, +- enable_deprecations_as_exceptions, +- TESTED_VERSIONS) ++from astropy.version import version as astropy_version + +-try: +- packagename = os.path.basename(os.path.dirname(__file__)) +- TESTED_VERSIONS[packagename] = version.version +-except NameError: +- pass ++if astropy_version < '3.0': ++ # With older versions of Astropy, we actually need to import the pytest ++ # plugins themselves in order to make them discoverable by pytest. ++ from astropy.tests.pytest_plugins import * ++else: ++ # As of Astropy 3.0, the pytest plugins provided by Astropy are ++ # automatically made available when Astropy is installed. This means it's ++ # not necessary to import them here, but we still need to import global ++ # variables that are used for configuration. ++ from astropy.tests.plugins.display import PYTEST_HEADER_MODULES, TESTED_VERSIONS ++ ++from astropy.tests.helper import enable_deprecations_as_exceptions + + # Add astropy to test header information and remove unused packages. + # Pytest header customisation was introduced in astropy 1.0. +@@ -36,12 +41,17 @@ + # The warnings_to_ignore_by_pyver parameter was added in astropy 2.0 + enable_deprecations_as_exceptions(modules_to_ignore_on_import=['requests']) + ++# add '_testrun' to the version name so that the user-agent indicates that ++# it's being run in a test ++from . import version ++version.version += '_testrun' ++ ++ + # This is to figure out the affiliated package version, rather than + # using Astropy's +-try: +- from .version import version +-except ImportError: +- version = 'dev' ++from .version import version, astropy_helpers_version ++ + + packagename = os.path.basename(os.path.dirname(__file__)) + TESTED_VERSIONS[packagename] = version ++TESTED_VERSIONS['astropy_helpers'] = astropy_helpers_version diff --git a/pkgs/development/python-modules/astroquery/default.nix b/pkgs/development/python-modules/astroquery/default.nix index b2771505a66..7245b566208 100644 --- a/pkgs/development/python-modules/astroquery/default.nix +++ b/pkgs/development/python-modules/astroquery/default.nix @@ -6,21 +6,42 @@ , keyring , beautifulsoup4 , html5lib +, pytest +, pytest-astropy +, astropy-helpers }: buildPythonPackage rec { pname = "astroquery"; version = "0.3.9"; - doCheck = false; # Tests require the pytest-astropy package - src = fetchPypi { inherit pname version; sha256 = "0zw3xp2rfc6h2v569iqsyvzhfnzp7bfjb7jrj61is1hrqw1cqjrb"; }; + # Fix tests using conftest.py from HEAD in the upstream GitHub + # repository. + patches = [ ./conftest-astropy-3-fix.patch ]; + propagatedBuildInputs = [ astropy requests keyring beautifulsoup4 html5lib ]; + nativeBuildInputs = [ astropy-helpers ]; + + checkInputs = [ pytest pytest-astropy ]; + + # Disable automatic update of the astropy-helper module + postPatch = '' + substituteInPlace setup.cfg --replace "auto_use = True" "auto_use = False" + ''; + + # Tests must be run in the build directory. The tests create files + # in $HOME/.astropy so we need to set HOME to $TMPDIR. + checkPhase = '' + cd build/lib + HOME=$TMPDIR pytest + ''; + meta = with pkgs.lib; { description = "Functions and classes to access online data resources"; homepage = "https://astroquery.readthedocs.io/"; From fae343857244a7985c567e001d67b5dc5caf9533 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Tue, 2 Jul 2019 23:36:09 +0200 Subject: [PATCH 1122/1611] python.pkgs.numpy: don't exclude f2py test anymore It is on PATH, and the tests pass. --- pkgs/development/python-modules/numpy/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix index a02e7ee4c5f..a66694dc477 100644 --- a/pkgs/development/python-modules/numpy/default.nix +++ b/pkgs/development/python-modules/numpy/default.nix @@ -60,10 +60,9 @@ in buildPythonPackage rec { inherit blasImplementation cfg; }; - # Disable two tests - # - test_f2py: f2py isn't yet on path. + # Disable test # - test_large_file_support: takes a long time and can cause the machine to run out of disk space - NOSE_EXCLUDE="test_f2py,test_large_file_support"; + NOSE_EXCLUDE="test_large_file_support"; meta = { description = "Scientific tools for Python"; From 55d82d54307e9c30ef34342e68ef615e4350b0a0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 27 Jul 2019 11:34:47 +0200 Subject: [PATCH 1123/1611] python: numpy: 1.16.4 -> 1.17.0 --- pkgs/development/python-modules/numpy/default.nix | 4 ++-- pkgs/top-level/python-packages.nix | 15 ++++++++++++--- 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/numpy/default.nix b/pkgs/development/python-modules/numpy/default.nix index a66694dc477..10a1df8876c 100644 --- a/pkgs/development/python-modules/numpy/default.nix +++ b/pkgs/development/python-modules/numpy/default.nix @@ -16,12 +16,12 @@ let }; in buildPythonPackage rec { pname = "numpy"; - version = "1.16.4"; + version = "1.17.0"; src = fetchPypi { inherit pname version; extension = "zip"; - sha256 = "7242be12a58fec245ee9734e625964b97cf7e3f2f7d016603f9e56660ce479c7"; + sha256 = "951fefe2fb73f84c620bec4e001e80a80ddaa1b84dce244ded7f1e0cbe0ed34a"; }; nativeBuildInputs = [ gfortran pytest ]; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 8796bde83b8..d34aae04529 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3840,9 +3840,18 @@ in { Nuitka = callPackage ../development/python-modules/nuitka { }; - numpy = callPackage ../development/python-modules/numpy { - blas = pkgs.openblasCompat; - }; + numpy = let + numpy_ = callPackage ../development/python-modules/numpy { + blas = pkgs.openblasCompat; + }; + numpy_2 = numpy_.overridePythonAttrs(oldAttrs: rec { + version = "1.16.4"; + src = oldAttrs.src.override { + inherit version; + sha256 = "1ivrwh66cmly7xh1dl7pybizfz5rcicn4kkkx5g29v4gll9bwhkj"; + }; + }); + in if pythonOlder "3.5" then numpy_2 else numpy_; numpydoc = callPackage ../development/python-modules/numpydoc { }; From d09a85de5e936aae541fb30da665218d051865be Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 27 Jul 2019 12:03:02 +0200 Subject: [PATCH 1124/1611] python: statsmodels: 0.10.0 -> 0.10.1 --- pkgs/development/python-modules/statsmodels/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/statsmodels/default.nix b/pkgs/development/python-modules/statsmodels/default.nix index 25019155905..46daaa21a99 100644 --- a/pkgs/development/python-modules/statsmodels/default.nix +++ b/pkgs/development/python-modules/statsmodels/default.nix @@ -13,11 +13,11 @@ buildPythonPackage rec { pname = "statsmodels"; - version = "0.10.0"; + version = "0.10.1"; src = fetchPypi { inherit pname version; - sha256 = "1fhsq3bz5ya54ipa0cb8qgfj7gfgxprv4briig0ly4r11rj23wv5"; + sha256 = "320659a80f916c2edf9dfbe83512d9004bb562b72eedb7d9374562038697fa10"; }; checkInputs = with self; [ nose ]; From 66ce9ba14b074fc33161e67217569ca1cf2aae2c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 27 Jul 2019 12:19:54 +0200 Subject: [PATCH 1125/1611] python: Cython: 0.29.12 -> 0.29.13 --- pkgs/development/python-modules/Cython/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/Cython/default.nix b/pkgs/development/python-modules/Cython/default.nix index 13eb58baa0a..b88c3c69b5d 100644 --- a/pkgs/development/python-modules/Cython/default.nix +++ b/pkgs/development/python-modules/Cython/default.nix @@ -25,11 +25,11 @@ let in buildPythonPackage rec { pname = "Cython"; - version = "0.29.12"; + version = "0.29.13"; src = fetchPypi { inherit pname version; - sha256 = "20da832a5e9a8e93d1e1eb64650258956723940968eb585506531719b55b804f"; + sha256 = "c29d069a4a30f472482343c866f7486731ad638ef9af92bfe5fca9c7323d638e"; }; nativeBuildInputs = [ From 50d0a5b2994970fd12a56e0ea5ced7bcba81b048 Mon Sep 17 00:00:00 2001 From: pacien Date: Sat, 27 Jul 2019 12:48:39 +0200 Subject: [PATCH 1126/1611] matrix-synapse: 1.1.0 -> 1.2.1 --- pkgs/servers/matrix-synapse/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix index 41357f66550..07c7f520717 100644 --- a/pkgs/servers/matrix-synapse/default.nix +++ b/pkgs/servers/matrix-synapse/default.nix @@ -23,11 +23,11 @@ let in buildPythonApplication rec { pname = "matrix-synapse"; - version = "1.1.0"; + version = "1.2.1"; src = fetchPypi { inherit pname version; - sha256 = "0bmcpk3b6hlix2dzkwzlqy97ypljipr4bw8rnxm8rlihpd6scrjq"; + sha256 = "0pr17n52vdq490q6c282nqnn51j5k0lf7mzaazpxjy4q86pxdfy5"; }; patches = [ From 41881902e8ea9dbd2976461048ad3d7907ba38a2 Mon Sep 17 00:00:00 2001 From: Meghea Iulian Date: Sat, 27 Jul 2019 14:58:00 +0300 Subject: [PATCH 1127/1611] vagrant: add bash completions --- pkgs/development/tools/vagrant/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 7b47cf0aa08..324e22d491e 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -68,6 +68,9 @@ in buildRubyGem rec { mkdir -p "$out/vagrant-plugins/plugins.d" echo '{}' > "$out/vagrant-plugins/plugins.json" + + mkdir -p $out/share/bash-completion/completions/ + cp -av contrib/bash/completion.sh $out/share/bash-completion/completions/vagrant '' + lib.optionalString withLibvirt '' substitute ${./vagrant-libvirt.json.in} $out/vagrant-plugins/plugins.d/vagrant-libvirt.json \ From ed9b84da3384bb6e6d3b82d1638cb2fb08735581 Mon Sep 17 00:00:00 2001 From: Meghea Iulian Date: Sat, 27 Jul 2019 15:11:55 +0300 Subject: [PATCH 1128/1611] avocode: 3.8.1 -> 3.9.0 --- pkgs/applications/graphics/avocode/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/avocode/default.nix b/pkgs/applications/graphics/avocode/default.nix index 57631037cd0..88e8436be3f 100644 --- a/pkgs/applications/graphics/avocode/default.nix +++ b/pkgs/applications/graphics/avocode/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "avocode-${version}"; - version = "3.8.1"; + version = "3.9.0"; src = fetchurl { url = "https://media.avocode.com/download/avocode-app/${version}/avocode-${version}-linux.zip"; - sha256 = "1akrrnv0ajzvbhflbpmh4ckcqfqrgdjqfp6d4jqvspqi56zmsr83"; + sha256 = "0fk62farnsxz59q82kxagibxmn9p9ckp6ix0wqg297gvasgad31q"; }; libPath = stdenv.lib.makeLibraryPath (with xorg; [ From a7c0071717cc2092ad8be5227f429115dacea81a Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 27 Jul 2019 08:15:58 -0400 Subject: [PATCH 1129/1611] openscenegraph: 3.6.3 -> 3.6.4 --- .../development/libraries/openscenegraph/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/openscenegraph/default.nix b/pkgs/development/libraries/openscenegraph/default.nix index 9f5ef3ff68c..1398e829dd5 100644 --- a/pkgs/development/libraries/openscenegraph/default.nix +++ b/pkgs/development/libraries/openscenegraph/default.nix @@ -26,14 +26,14 @@ }: stdenv.mkDerivation rec { - name = "openscenegraph-${version}"; - version = "3.6.3"; + pname = "openscenegraph"; + version = "3.6.4"; src = fetchFromGitHub { owner = "openscenegraph"; repo = "OpenSceneGraph"; - rev = "d011ca4e8d83549a3688bf6bb8cd468dd9684822"; - sha256 = "0h32z15sa8sbq276j0iib0n707m8bs4p5ji9z2ah411446paad9q"; + rev = "OpenSceneGraph-${version}"; + sha256 = "0x8hdbzw0b71j91fzp9cwmy9a7ava8v8wwyj8nxijq942vdx1785"; }; nativeBuildInputs = [ pkgconfig cmake doxygen ]; @@ -64,14 +64,12 @@ stdenv.mkDerivation rec { ++ lib.optionals withExamples [ fltk wxGTK ] ; - enableParallelBuilding = true; - cmakeFlags = lib.optional (!withApps) "-DBUILD_OSG_APPLICATIONS=OFF" ++ lib.optional withExamples "-DBUILD_OSG_EXAMPLES=ON"; meta = with stdenv.lib; { description = "A 3D graphics toolkit"; homepage = http://www.openscenegraph.org/; - maintainers = [ maintainers.raskin ]; + maintainers = with maintainers; [ aanderse raskin ]; platforms = platforms.linux; license = "OpenSceneGraph Public License - free LGPL-based license"; }; From 89aae903dac679ebf02a45df4c1d348796f2dfca Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 27 Jul 2019 14:28:03 +0200 Subject: [PATCH 1130/1611] gitaly: fix hashes It seems the sha256 hashes of 3 gitaly dependencies were wrong or changed. --- pkgs/applications/version-management/gitlab/gitaly/deps.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/gitlab/gitaly/deps.nix b/pkgs/applications/version-management/gitlab/gitaly/deps.nix index 9bff45f6dc8..2d38c340d27 100644 --- a/pkgs/applications/version-management/gitlab/gitaly/deps.nix +++ b/pkgs/applications/version-management/gitlab/gitaly/deps.nix @@ -285,7 +285,7 @@ type = "git"; url = "https://github.com/libgit2/git2go"; rev = "ecaeb7a21d47"; - sha256 = "1sh30jnzjag7ddhr4if65j8vpcpj4rw93sf1g033jf91flrzyx23"; + sha256 = "14r7ryff93r49g94f6kg66xc0y6rwb31lj22s3qmzmlgywk0pgvr"; }; } { @@ -294,7 +294,7 @@ type = "git"; url = "https://github.com/lightstep/lightstep-tracer-go"; rev = "v0.15.6"; - sha256 = "0g5bh3xdrsz30npk79h5ia340xyw97424xfrfzv3acqw3qg2sqn8"; + sha256 = "10n5r66g44s6rnz5kf86s4a3p1g55kc1kxqhnk7bx7mlayndgpmb"; }; } { @@ -483,7 +483,7 @@ type = "git"; url = "https://github.com/uber/jaeger-client-go"; rev = "v2.15.0"; - sha256 = "1qvqkf20dp5fyfg7qd3jc29q1yv0qjz2mkxa02j1v3n8ka134rff"; + sha256 = "0ki23m9zrf3vxp839fnp9ckr4m28y6mpad8g5s5lr5k8jkl0sfwj"; }; } { From f4e30f87d716d6f0c7208b2bd972082b9faabe1e Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Tue, 16 Jul 2019 13:37:57 +0300 Subject: [PATCH 1131/1611] wmc-mpris: init at 2019-04-12 --- .../misc/web-media-controller/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/applications/misc/web-media-controller/default.nix diff --git a/pkgs/applications/misc/web-media-controller/default.nix b/pkgs/applications/misc/web-media-controller/default.nix new file mode 100644 index 00000000000..6ed2ff10aaa --- /dev/null +++ b/pkgs/applications/misc/web-media-controller/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, cmake, pkgconfig, glib, pcre, json-glib }: + +stdenv.mkDerivation rec { + pname = "wmc-mpris"; + version = "unstable-2019-07-24"; + + src = fetchFromGitHub { + owner = "f1u77y"; + repo = pname; + rev = "3b92847c576662732984ad791d6c7899a39f7787"; + sha256 = "0q19z0zx53pd237x529rif21kliklwzjrdddx8jfr9hgghjv9giq"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ glib pcre json-glib ]; + cmakeFlags = [ + "-DCHROMIUM_MANIFEST_DESTINATION=${placeholder ''out''}/etc/chromium/native-messaging-hosts" + "-DCHROME_MANIFEST_DESTINATION=${placeholder ''out''}/etc/opt/chrome/native-messaging-hosts" + "-DFIREFOX_MANIFEST_DESTINATION=${placeholder ''out''}/lib/mozilla/native-messaging-hosts" + ]; + + meta = with stdenv.lib; { + homepage = "https://github.com/f1u77y/wmc-mpris"; + description = "MPRIS proxy for usage with 'Web Media Controller' web extension"; + license = licenses.unlicense; + maintainers = with maintainers; [ doronbehar ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b56dbe6c15..9dc9ccf94d6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6832,6 +6832,8 @@ in wml = callPackage ../development/web/wml { }; + wmc-mpris = callPackage ../applications/misc/web-media-controller { }; + wol = callPackage ../tools/networking/wol { }; wolf-shaper = callPackage ../applications/audio/wolf-shaper { }; From b5590fff46b85fec36ceac6a84b29b4c4eb8c3f7 Mon Sep 17 00:00:00 2001 From: Max Gonzih Date: Sat, 27 Jul 2019 12:46:08 -0400 Subject: [PATCH 1132/1611] k9s: init at 0.7.13 (#65432) --- .../networking/cluster/k9s/default.nix | 23 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/applications/networking/cluster/k9s/default.nix diff --git a/pkgs/applications/networking/cluster/k9s/default.nix b/pkgs/applications/networking/cluster/k9s/default.nix new file mode 100644 index 00000000000..5c0adbdc548 --- /dev/null +++ b/pkgs/applications/networking/cluster/k9s/default.nix @@ -0,0 +1,23 @@ +{ stdenv, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "k9s"; + version = "0.7.13"; + + src = fetchFromGitHub { + owner = "derailed"; + repo = "k9s"; + rev = version; + sha256 = "0wsj6wc2qi5708cg47l2qblq1cg8fcwxdygpkayib9hapx6lc6f8"; + }; + + modSha256 = "1ia9wx6yd9mdr981lcw58xv39iqzz25r03bmn1c6byxmq2xpcjq8"; + + + meta = with stdenv.lib; { + description = "Kubernetes CLI To Manage Your Clusters In Style."; + homepage = https://github.com/derailed/k9s; + license = licenses.asl20; + maintainers = with maintainers; [ Gonzih ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae9da14ac4c..0eff51bc736 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18919,6 +18919,8 @@ in kubectl = callPackage ../applications/networking/cluster/kubectl { }; + k9s = callPackage ../applications/networking/cluster/k9s { }; + kubernetes-helm = callPackage ../applications/networking/cluster/helm { }; kubetail = callPackage ../applications/networking/cluster/kubetail { } ; From 33b6a1720d21da785c1b53430c169fbc19714a4a Mon Sep 17 00:00:00 2001 From: toonn Date: Wed, 17 Jul 2019 00:09:19 +0200 Subject: [PATCH 1133/1611] wire-desktop: expand meta Added a `longDescription` and `downloadPage`. Also added myself to `maintainers`. I fixed up the `license` because it's actually GPLv3 *or later*. Note that terms and conditions apply though I don't feel like they violate the GPL-ness of the code. --- .../wire-desktop/default.nix | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index f2ae27e2c7d..358dc19e60c 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -94,10 +94,22 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "A modern, secure messenger"; + description = "A modern, secure messenger for everyone"; + longDescription = '' + Wire Personal is a secure, privacy-friendly messenger. It combines useful + and fun features, audited security, and a beautiful, distinct user + interface. It does not require a phone number to register and chat. + + * End-to-end encrypted chats, calls, and files + * Crystal clear voice and video calling + * File and screen sharing + * Timed messages and chats + * Synced across your phone, desktop and tablet + ''; homepage = https://wire.com/; - license = licenses.gpl3; - maintainers = with maintainers; [ worldofpeace ]; platforms = [ "x86_64-linux" ]; + downloadPage = https://wire.com/download/; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ toonn worldofpeace ]; }; } From 4665e883b26bee9ca4d351a4a1f6abf0e36cfb25 Mon Sep 17 00:00:00 2001 From: toonn Date: Wed, 17 Jul 2019 00:09:29 +0200 Subject: [PATCH 1134/1611] wire-desktop: Add darwin support Wire Desktop is available for linux, mac os and windows. I figured adding darwin support would be cromulent. Note that the versions don't align 100%, this is how it's released upstream. I refactored the derivation to seperate all the linux-specific parts. I also sorted the dependencies and grouped them. The changes were based on the derivation for electron. I changed the construction from calling `mkDerivation` on a conditional merger of two sets by moving the `mkDerivation` calls into the conditional and up to the local bindings for `linux` and `darwin`. This required moving `pname` and `meta` up to local bindings. --- .../wire-desktop/default.nix | 193 ++++++++++-------- 1 file changed, 105 insertions(+), 88 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index 358dc19e60c..3792c91ea91 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -1,97 +1,29 @@ -{ stdenv, fetchurl, dpkg, makeDesktopItem, libuuid, gtk3, atk, cairo, pango -, gdk_pixbuf, glib, freetype, fontconfig, dbus, libnotify, libX11, xorg, libXi -, libXcursor, libXdamage, libXrandr, libXcomposite, libXext, libXfixes -, libXrender, libXtst, libXScrnSaver, nss, nspr, alsaLib, cups, expat, udev -, xdg_utils, hunspell, pulseaudio, pciutils, at-spi2-atk +{ stdenv, fetchurl, makeDesktopItem + +, alsaLib, at-spi2-atk, atk, cairo, cups, dbus, dpkg, expat, fontconfig +, freetype, gdk_pixbuf, glib, gtk3, hunspell, libX11, libXScrnSaver +, libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr +, libXrender, libXtst, libnotify, libuuid, nspr, nss, pango, pciutils +, pulseaudio, udev, xdg_utils, xorg + +, cpio, xar }: let - rpath = stdenv.lib.makeLibraryPath [ - alsaLib - atk - cairo - cups - dbus - expat - fontconfig - freetype - gdk_pixbuf - glib - gtk3 - at-spi2-atk - hunspell - libuuid - libnotify - libX11 - libXcomposite - libXcursor - libXdamage - libXext - libXfixes - libXi - libXrandr - libXrender - libXScrnSaver - libXtst - nspr - nss - pango - pciutils - pulseaudio - stdenv.cc.cc - udev - xdg_utils - xorg.libxcb - ]; + inherit (stdenv.hostPlatform) system; -in - -stdenv.mkDerivation rec { pname = "wire-desktop"; - version = "3.9.2895"; - src = fetchurl { - url = "https://wire-app.wire.com/linux/debian/pool/main/Wire-${version}_amd64.deb"; - sha256 = "0wrn95m64j4b7ym44h9zawq13kg4m12aixlyyzp56bfyczmjq4a5"; - }; + version = { + "x86_64-linux" = "3.9.2895"; + "x86_64-darwin" = "3.9.2943"; + }.${system}; - desktopItem = makeDesktopItem { - name = "wire-desktop"; - exec = "wire-desktop %U"; - icon = "wire-desktop"; - comment = "Secure messenger for everyone"; - desktopName = "Wire Desktop"; - genericName = "Secure messenger"; - categories = "Network;InstantMessaging;Chat;VideoConference"; - }; - - dontBuild = true; - dontPatchELF = true; - dontConfigure = true; - - nativeBuildInputs = [ dpkg ]; - unpackPhase = "dpkg-deb -x $src ."; - installPhase = '' - mkdir -p "$out" - cp -R "opt" "$out" - cp -R "usr/share" "$out/share" - - chmod -R g-w "$out" - - # Patch wire-desktop - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${rpath}:$out/opt/Wire" \ - "$out/opt/Wire/wire-desktop" - - # Symlink to bin - mkdir -p "$out/bin" - ln -s "$out/opt/Wire/wire-desktop" "$out/bin/wire-desktop" - - # Desktop file - mkdir -p "$out/share/applications" - cp "${desktopItem}/share/applications/"* "$out/share/applications" - ''; + sha256 = { + "x86_64-linux" = "0wrn95m64j4b7ym44h9zawq13kg4m12aixlyyzp56bfyczmjq4a5"; + "x86_64-darwin" = "1y1bzsjmjrj518q29xfx6gg1nhdbaz7y5hzaqrp241az6plp090k"; + }.${system}; meta = with stdenv.lib; { description = "A modern, secure messenger for everyone"; @@ -107,9 +39,94 @@ stdenv.mkDerivation rec { * Synced across your phone, desktop and tablet ''; homepage = https://wire.com/; - platforms = [ "x86_64-linux" ]; downloadPage = https://wire.com/download/; license = licenses.gpl3Plus; maintainers = with maintainers; [ toonn worldofpeace ]; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; }; -} + + linux = stdenv.mkDerivation rec { + inherit pname version meta; + + src = fetchurl { + url = "https://wire-app.wire.com/linux/debian/pool/main/" + + "Wire-${version}_amd64.deb"; + inherit sha256; + }; + + desktopItem = makeDesktopItem { + name = "wire-desktop"; + exec = "wire-desktop %U"; + icon = "wire-desktop"; + comment = "Secure messenger for everyone"; + desktopName = "Wire Desktop"; + genericName = "Secure messenger"; + categories = "Network;InstantMessaging;Chat;VideoConference"; + }; + + dontBuild = true; + dontPatchELF = true; + dontConfigure = true; + + nativeBuildInputs = [ dpkg ]; + rpath = stdenv.lib.makeLibraryPath [ + alsaLib at-spi2-atk atk cairo cups dbus expat fontconfig freetype + gdk_pixbuf glib gtk3 hunspell libX11 libXScrnSaver libXcomposite + libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender + libXtst libnotify libuuid nspr nss pango pciutils pulseaudio + stdenv.cc.cc udev xdg_utils xorg.libxcb + ]; + + unpackPhase = "dpkg-deb -x $src ."; + + installPhase = '' + mkdir -p "$out" + cp -R "opt" "$out" + cp -R "usr/share" "$out/share" + chmod -R g-w "$out" + + # Patch wire-desktop + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "${rpath}:$out/opt/Wire" \ + "$out/opt/Wire/wire-desktop" + + # Symlink to bin + mkdir -p "$out/bin" + ln -s "$out/opt/Wire/wire-desktop" "$out/bin/wire-desktop" + + # Desktop file + mkdir -p "$out/share/applications" + cp "${desktopItem}/share/applications/"* "$out/share/applications" + ''; + }; + + darwin = stdenv.mkDerivation rec { + inherit pname version meta; + + src = fetchurl { + url = "https://github.com/wireapp/wire-desktop/releases/download/" + + "macos%2F${version}/Wire.pkg"; + inherit sha256; + }; + + buildInputs = [ cpio xar ]; + + unpackPhase = '' + xar -xf $src + cd com.wearezeta.zclient.mac.pkg + ''; + + + buildPhase = '' + cat Payload | gunzip -dc | cpio -i + ''; + + installPhase = '' + mkdir -p $out/Applications + cp -r Wire.app $out/Applications + ''; + }; + +in if stdenv.isDarwin + then darwin + else linux From 7803c04c7c5b1dd9d387501727ed12573218e54d Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sat, 27 Jul 2019 20:02:58 +0200 Subject: [PATCH 1135/1611] kernelshark: 0.9.8-f97e28a -> 1.0.0 --- .../linux/trace-cmd/fix-Makefiles.patch | 21 +++++++++++++++---- .../linux/trace-cmd/kernelshark.nix | 9 +++----- pkgs/os-specific/linux/trace-cmd/src.nix | 4 ++-- 3 files changed, 22 insertions(+), 12 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch index 0bf9f501ca3..547e6385bb6 100644 --- a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch +++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch @@ -16,10 +16,10 @@ index 21e42fd..826361d 100644 clean: (cd $(obj); \ diff --git a/Makefile b/Makefile -index 3e63e9e..146fe88 100644 +index 3afd982..8dd55ba 100644 --- a/Makefile +++ b/Makefile -@@ -292,7 +292,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) +@@ -293,7 +293,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) libtracecmd.a: $(LIBTRACECMD_STATIC) libtracecmd.so: $(LIBTRACECMD_SHARED) @@ -28,7 +28,7 @@ index 3e63e9e..146fe88 100644 plugins: force $(obj)/plugins/trace_plugin_dir $(obj)/plugins/trace_python_dir $(Q)$(MAKE) -C $(src)/plugins -@@ -348,6 +348,8 @@ install_gui: install_cmd gui +@@ -349,6 +349,8 @@ install_gui: install_cmd gui install_libs: libs $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)) @@ -37,7 +37,7 @@ index 3e63e9e..146fe88 100644 $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) -@@ -359,6 +361,12 @@ doc: +@@ -360,6 +362,12 @@ doc: doc_clean: $(MAKE) -C $(src)/Documentation clean @@ -50,3 +50,16 @@ index 3e63e9e..146fe88 100644 install_doc: $(MAKE) -C $(src)/Documentation install +diff --git a/kernel-shark/src/CMakeLists.txt b/kernel-shark/src/CMakeLists.txt +index 21494cc..d91c365 100644 +--- a/kernel-shark/src/CMakeLists.txt ++++ b/kernel-shark/src/CMakeLists.txt +@@ -93,7 +93,7 @@ if (Qt5Widgets_FOUND AND Qt5Network_FOUND) + DESTINATION ${_INSTALL_PREFIX}/share/icons/${KS_APP_NAME}) + + install(FILES "${KS_DIR}/org.freedesktop.kshark-record.policy" +- DESTINATION /usr/share/polkit-1/actions/) ++ DESTINATION ${_INSTALL_PREFIX}/share/polkit-1/actions/) + + install(PROGRAMS "${KS_DIR}/bin/kshark-su-record" + DESTINATION ${_INSTALL_PREFIX}/bin/) diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index 7cf8c98335f..d220fe55672 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -1,12 +1,9 @@ { stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }: -let - srcSpec = import ./src.nix; - shortRev = builtins.substring 0 7 srcSpec.rev; -in mkDerivation rec { +mkDerivation rec { pname = "kernelshark"; - version = "0.9.8-${shortRev}"; + version = "1.0.0"; - src = fetchgit srcSpec; + src = fetchgit (import ./src.nix); patches = [ ./fix-Makefiles.patch ]; diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix index 5d5ae0a8c91..8c3ef7220a8 100644 --- a/pkgs/os-specific/linux/trace-cmd/src.nix +++ b/pkgs/os-specific/linux/trace-cmd/src.nix @@ -1,5 +1,5 @@ { url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/"; - rev = "1517dc3a15606850b1b52b789cbdeb554e2c68c6"; - sha256 = "112ccsnza3r3ha8ql733sn256bz0xjhzyw3avbr214r36aag4zrj"; + rev = "f97e28a331aba716cd431ce4b7f7fc1583875ae7"; + sha256 = "002axw1v53jk343l101hvk0ip6agl9idrc8k7d7r18mmybw637iv"; } From c9c895062fc3fa81ec1625f0b011603398f174e4 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sat, 27 Jul 2019 20:19:08 +0200 Subject: [PATCH 1136/1611] trace-cmd/kernelshark: downgrade to the trace-cmd-stable-v2.8 branch --- pkgs/os-specific/linux/trace-cmd/default.nix | 9 +++----- .../linux/trace-cmd/fix-Makefiles.patch | 21 ++++--------------- .../linux/trace-cmd/kernelshark.nix | 4 ++-- pkgs/os-specific/linux/trace-cmd/src.nix | 4 ++-- 4 files changed, 11 insertions(+), 27 deletions(-) diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index 0759839a9c0..3133602b44e 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -1,12 +1,9 @@ { stdenv, fetchgit, asciidoc, docbook_xsl, libxslt }: -let - srcSpec = import ./src.nix; - shortRev = builtins.substring 0 7 srcSpec.rev; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "trace-cmd-${version}"; - version = "2.9-dev-${shortRev}"; + version = "2.8.3"; - src = fetchgit srcSpec; + src = fetchgit (import ./src.nix); patches = [ ./fix-Makefiles.patch ]; diff --git a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch index 547e6385bb6..0d6f5c5d8bf 100644 --- a/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch +++ b/pkgs/os-specific/linux/trace-cmd/fix-Makefiles.patch @@ -16,10 +16,10 @@ index 21e42fd..826361d 100644 clean: (cd $(obj); \ diff --git a/Makefile b/Makefile -index 3afd982..8dd55ba 100644 +index 2bcc383..107ead0 100644 --- a/Makefile +++ b/Makefile -@@ -293,7 +293,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) +@@ -289,7 +289,7 @@ libtraceevent.a: $(LIBTRACEEVENT_STATIC) libtracecmd.a: $(LIBTRACECMD_STATIC) libtracecmd.so: $(LIBTRACECMD_SHARED) @@ -28,7 +28,7 @@ index 3afd982..8dd55ba 100644 plugins: force $(obj)/plugins/trace_plugin_dir $(obj)/plugins/trace_python_dir $(Q)$(MAKE) -C $(src)/plugins -@@ -349,6 +349,8 @@ install_gui: install_cmd gui +@@ -345,6 +345,8 @@ install_gui: install_cmd gui install_libs: libs $(Q)$(call do_install,$(LIBTRACECMD_SHARED),$(libdir_SQ)) $(Q)$(call do_install,$(LIBTRACEEVENT_SHARED),$(libdir_SQ)) @@ -37,7 +37,7 @@ index 3afd982..8dd55ba 100644 $(Q)$(call do_install,$(src)/include/traceevent/event-parse.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/traceevent/trace-seq.h,$(includedir_SQ)/traceevent) $(Q)$(call do_install,$(src)/include/trace-cmd/trace-cmd.h,$(includedir_SQ)) -@@ -360,6 +362,12 @@ doc: +@@ -356,6 +358,12 @@ doc: doc_clean: $(MAKE) -C $(src)/Documentation clean @@ -50,16 +50,3 @@ index 3afd982..8dd55ba 100644 install_doc: $(MAKE) -C $(src)/Documentation install -diff --git a/kernel-shark/src/CMakeLists.txt b/kernel-shark/src/CMakeLists.txt -index 21494cc..d91c365 100644 ---- a/kernel-shark/src/CMakeLists.txt -+++ b/kernel-shark/src/CMakeLists.txt -@@ -93,7 +93,7 @@ if (Qt5Widgets_FOUND AND Qt5Network_FOUND) - DESTINATION ${_INSTALL_PREFIX}/share/icons/${KS_APP_NAME}) - - install(FILES "${KS_DIR}/org.freedesktop.kshark-record.policy" -- DESTINATION /usr/share/polkit-1/actions/) -+ DESTINATION ${_INSTALL_PREFIX}/share/polkit-1/actions/) - - install(PROGRAMS "${KS_DIR}/bin/kshark-su-record" - DESTINATION ${_INSTALL_PREFIX}/bin/) diff --git a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix index d220fe55672..8e49af77139 100644 --- a/pkgs/os-specific/linux/trace-cmd/kernelshark.nix +++ b/pkgs/os-specific/linux/trace-cmd/kernelshark.nix @@ -1,7 +1,7 @@ { stdenv, mkDerivation, fetchgit, qtbase, cmake, json_c, mesa_glu, freeglut, trace-cmd, pkg-config }: mkDerivation rec { pname = "kernelshark"; - version = "1.0.0"; + version = "0.9.8"; src = fetchgit (import ./src.nix); @@ -17,7 +17,7 @@ mkDerivation rec { cmakeFlags = [ "-D_INSTALL_PREFIX=${placeholder "out"}" - "-DTRACECMD_EXECUTABLE=${trace-cmd}/bin/trace-cmd" + "-DTRACECMD_BIN_DIR=${trace-cmd}/bin" "-DTRACECMD_INCLUDE_DIR=${trace-cmd.dev}/include" "-DTRACECMD_LIBRARY=${trace-cmd.lib}/lib/libtracecmd.a" "-DTRACEEVENT_LIBRARY=${trace-cmd.lib}/lib/libtraceevent.a" diff --git a/pkgs/os-specific/linux/trace-cmd/src.nix b/pkgs/os-specific/linux/trace-cmd/src.nix index 8c3ef7220a8..836e71b1851 100644 --- a/pkgs/os-specific/linux/trace-cmd/src.nix +++ b/pkgs/os-specific/linux/trace-cmd/src.nix @@ -1,5 +1,5 @@ { url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/"; - rev = "f97e28a331aba716cd431ce4b7f7fc1583875ae7"; - sha256 = "002axw1v53jk343l101hvk0ip6agl9idrc8k7d7r18mmybw637iv"; + rev = "138c70106835ee0f05879e7f2f46bca8dae7ca99"; # branch: trace-cmd-stable-v2.8 + sha256 = "1grpip7lywf98nsm7ql1d6bgc0ky0672savr8jz3a8hf9ny265nx"; } From ab80cf9f9ff50360d9a53225440ad86246e55377 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Sat, 27 Jul 2019 20:50:06 +0200 Subject: [PATCH 1137/1611] bspwm: 0.9.7 -> 0.9.8 --- pkgs/applications/window-managers/bspwm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/bspwm/default.nix b/pkgs/applications/window-managers/bspwm/default.nix index 7cb423123dc..8fd85aaeb86 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.7"; + version = "0.9.8"; src = fetchFromGitHub { owner = "baskerville"; repo = "bspwm"; rev = version; - sha256 = "17cfvbrvzwwr9r72xgpn144k45xavzi0hnl2qqp9lhxflvirac0c"; + sha256 = "1vc4pdm4fwb5gz7hyzwvjqkx5087f0vrw11898nq1s7kxzl2lhbx"; }; buildInputs = [ libxcb libXinerama xcbutil xcbutilkeysyms xcbutilwm ]; From a0c413f71d0d8bee11529e22e2d06ec47d1e2a75 Mon Sep 17 00:00:00 2001 From: Max Gonzih Date: Sat, 27 Jul 2019 15:22:23 -0400 Subject: [PATCH 1138/1611] fluxctl: init at 1.13.1 (#65433) --- .../networking/cluster/fluxctl/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/networking/cluster/fluxctl/default.nix diff --git a/pkgs/applications/networking/cluster/fluxctl/default.nix b/pkgs/applications/networking/cluster/fluxctl/default.nix new file mode 100644 index 00000000000..29ec50ce362 --- /dev/null +++ b/pkgs/applications/networking/cluster/fluxctl/default.nix @@ -0,0 +1,24 @@ +{ stdenv, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "fluxctl"; + version = "1.13.1"; + + src = fetchFromGitHub { + owner = "weaveworks"; + repo = "flux"; + rev = version; + sha256 = "0g8yfvwh6hjh70a0i4ssbb6hq3i9f75wj8yqy1aaafycq598zbdx"; + }; + + modSha256 = "1q5g9hd0ansdc2acpysf6wi74q50w0psrpyhk4y6mm6kjvhlcn87"; + + subPackages = [ "cmd/fluxctl" ]; + + meta = with stdenv.lib; { + description = "CLI client for Flux, the GitOps Kubernetes operator"; + homepage = https://github.com/weaveworks/flux; + license = licenses.asl20; + maintainers = with maintainers; [ Gonzih ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0eff51bc736..a45ba8b0bd2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18921,6 +18921,8 @@ in k9s = callPackage ../applications/networking/cluster/k9s { }; + fluxctl = callPackage ../applications/networking/cluster/fluxctl { }; + kubernetes-helm = callPackage ../applications/networking/cluster/helm { }; kubetail = callPackage ../applications/networking/cluster/kubetail { } ; From b515a14c8fc07c86808a523e8edf80fc6d091fdd Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sat, 27 Jul 2019 22:05:17 +0200 Subject: [PATCH 1139/1611] gitRepo: 1.13.3 -> 1.13.4 --- pkgs/applications/version-management/git-repo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/git-repo/default.nix b/pkgs/applications/version-management/git-repo/default.nix index 04ae45f75b3..2c427bb1824 100644 --- a/pkgs/applications/version-management/git-repo/default.nix +++ b/pkgs/applications/version-management/git-repo/default.nix @@ -4,13 +4,13 @@ stdenv.mkDerivation rec { name = "git-repo-${version}"; - version = "1.13.3"; + version = "1.13.4"; src = fetchFromGitHub { owner = "android"; repo = "tools_repo"; rev = "v${version}"; - sha256 = "0wyr6fyc9kzzw6y2cxvri35ib1sh156n6lnv119j5r1rzvc2lg6r"; + sha256 = "0p55mx1ry0r3bb8nja09cfpiv1jjxf98r41vrqba1b5hm8hbzfhj"; }; nativeBuildInputs = [ makeWrapper ]; From 7bdacb3e39aba0ba1baffcc2fb7964fa74010dce Mon Sep 17 00:00:00 2001 From: Steven Shaw Date: Sun, 28 Jul 2019 07:33:00 +1000 Subject: [PATCH 1140/1611] maintainers: Add Steven Shaw --- maintainers/maintainer-list.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5e9c4c5c116..e1605466199 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5001,6 +5001,15 @@ github = "sternenseemann"; name = "Lukas Epple"; }; + steshaw = { + name = "Steven Shaw"; + email = "steven@steshaw.org"; + github = "steshaw"; + keys = [{ + longkeyid = "rsa4096/0x1D9A17DFD23DCB91"; + fingerprint = "0AFE 77F7 474D 1596 EE55 7A29 1D9A 17DF D23D CB91"; + }]; + }; stesie = { email = "stesie@brokenpipe.de"; github = "stesie"; From 5bb88bbce2797e7ea40e345ff33c2e8e80e427a6 Mon Sep 17 00:00:00 2001 From: Steven Shaw Date: Sun, 28 Jul 2019 07:37:52 +1000 Subject: [PATCH 1141/1611] idrisPackages.sdl2: 2018-01-19 -> 0.1.1 Update to latest release which unbreaks the package. --- pkgs/development/idris-modules/sdl2.nix | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/pkgs/development/idris-modules/sdl2.nix b/pkgs/development/idris-modules/sdl2.nix index b0306040d73..e4a1fbae562 100644 --- a/pkgs/development/idris-modules/sdl2.nix +++ b/pkgs/development/idris-modules/sdl2.nix @@ -6,26 +6,33 @@ , SDL2 , SDL2_gfx }: -build-idris-package { +build-idris-package rec { name = "sdl2"; - version = "2018-01-19"; + version = "0.1.1"; idrisDeps = [ effects ]; - extraBuildInputs = [ pkgconfig SDL2 SDL2_gfx ]; + extraBuildInputs = [ + pkgconfig + SDL2 + SDL2_gfx + ]; + + prePatch = "patchShebangs ."; src = fetchFromGitHub { owner = "steshaw"; repo = "idris-sdl2"; - rev = "ebc36a0efb3e8086f2999120e7a8a8ac4952c6f6"; - sha256 = "060k0i1pjilrc4pcz7v70hbipaw2crz14yxjlyjlhn6qm03131q0"; + rev = version; + sha256 = sha256:1jslnlzyw04dcvcd7xsdjqa7waxzkm5znddv76sv291jc94xhl4a; }; meta = { description = "SDL2 binding for Idris"; homepage = https://github.com/steshaw/idris-sdl2; - maintainers = [ lib.maintainers.brainrape ]; - # Can't find file sdl2.o - broken = true; + maintainers = with lib.maintainers; [ + brainrape + steshaw + ]; }; } From f3b16937590c10e4f932e8d779368219e5c0c26d Mon Sep 17 00:00:00 2001 From: TheSandwichMakr Date: Sat, 27 Jul 2019 22:17:02 +0000 Subject: [PATCH 1142/1611] multimc: wrapQtAppsHook, add xrandr for lwjgl 2.9.2 --- pkgs/games/multimc/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/games/multimc/default.nix b/pkgs/games/multimc/default.nix index 7e6e034a2b5..d95532b438b 100644 --- a/pkgs/games/multimc/default.nix +++ b/pkgs/games/multimc/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchFromGitHub, cmake, jdk, zlib, file, makeWrapper, xorg, libpulseaudio, qtbase }: +{ stdenv, mkDerivation, fetchFromGitHub, cmake, jdk, zlib, file, makeWrapper, xorg, libpulseaudio, qtbase }: let libpath = with xorg; stdenv.lib.makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm libpulseaudio ]; -in stdenv.mkDerivation rec { +in mkDerivation rec { name = "multimc-${version}"; version = "0.6.4"; src = fetchFromGitHub { @@ -21,7 +21,11 @@ in stdenv.mkDerivation rec { mkdir -p $out/share/{applications,pixmaps} cp ../application/resources/multimc/scalable/multimc.svg $out/share/pixmaps cp ../application/package/linux/multimc.desktop $out/share/applications - wrapProgram $out/bin/MultiMC --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/ + # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 + wrapProgram $out/bin/MultiMC --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/ + + # MultiMC's CMakeLists.txt puts libraries in bin directory, causing them to be set executable, causing nixpkgs' wrapQtAppsHook to wrap them + chmod -x $out/bin/*.so # As of https://github.com/MultiMC/MultiMC5/blob/7ea1d68244fdae1e7672fb84199ee71e168b31ca/application/package/linux/multimc.desktop, # the desktop icon refers to `multimc`, but the executable actually gets From c604b38791459bbf64aa680dba87978a01b44d01 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sat, 27 Jul 2019 11:53:24 -0700 Subject: [PATCH 1143/1611] nixos/taskserver: crl file is optional --- nixos/modules/services/misc/taskserver/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/taskserver/default.nix b/nixos/modules/services/misc/taskserver/default.nix index 07dbee69db0..8a57277fafe 100644 --- a/nixos/modules/services/misc/taskserver/default.nix +++ b/nixos/modules/services/misc/taskserver/default.nix @@ -411,7 +411,7 @@ in { } else { cert = "${cfg.pki.manual.server.cert}"; key = "${cfg.pki.manual.server.key}"; - crl = "${cfg.pki.manual.server.crl}"; + ${mapNullable (_: "crl") cfg.pki.manual.server.crl} = "${cfg.pki.manual.server.crl}"; }); ca.cert = if needToCreateCA then "${cfg.dataDir}/keys/ca.cert" From 360e687df95edb120ca4090acfe83a9518102953 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 27 Jul 2019 19:57:20 -0400 Subject: [PATCH 1144/1611] hackage-packages.nix: gdk_pixbuf -> gdk-pixbuf Temporary manual edit to fix eval on staging. --- .../haskell-modules/hackage-packages.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index c7443a42e5b..1bfeac57840 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -92339,7 +92339,7 @@ self: { }) {inherit (pkgs) gtk3;}; "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -92352,13 +92352,13 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; + libraryPkgconfigDepends = [ gdk-pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; + }) {inherit (pkgs) gdk-pixbuf;}; "gi-gdkpixbuf_2_0_22" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -92373,11 +92373,11 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; + libraryPkgconfigDepends = [ gdk-pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) gdk_pixbuf;}; + }) {inherit (pkgs) gdk-pixbuf;}; "gi-gdkx11" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo @@ -182921,7 +182921,7 @@ self: { "poppler" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gdk_pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango + , gdk-pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango , poppler }: mkDerivation { @@ -182933,13 +182933,13 @@ self: { libraryHaskellDepends = [ array base bytestring cairo containers glib gtk mtl ]; - libraryPkgconfigDepends = [ gdk_pixbuf gtk2 pango poppler ]; + libraryPkgconfigDepends = [ gdk-pixbuf gtk2 pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) gdk_pixbuf; inherit (pkgs) gtk2; + }) {inherit (pkgs) gdk-pixbuf; inherit (pkgs) gtk2; inherit (pkgs) pango; inherit (pkgs) poppler;}; "populate-setup-exe-cache" = callPackage From 9a2bddfc127a551d3d3a3ce7f8b7077899c8a69c Mon Sep 17 00:00:00 2001 From: Chris Rendle-Short Date: Sun, 28 Jul 2019 09:27:29 +1000 Subject: [PATCH 1145/1611] libgdata: meson fixes --- pkgs/development/libraries/libgdata/default.nix | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/pkgs/development/libraries/libgdata/default.nix b/pkgs/development/libraries/libgdata/default.nix index 77d4ed19b4e..48cfa098c9f 100644 --- a/pkgs/development/libraries/libgdata/default.nix +++ b/pkgs/development/libraries/libgdata/default.nix @@ -1,5 +1,6 @@ { stdenv , fetchurl +, fetchpatch , pkgconfig , meson , ninja @@ -31,6 +32,21 @@ stdenv.mkDerivation rec { patches = [ ./installed-tests-path.patch + (fetchpatch { + # Meson fixes + url = "https://gitlab.gnome.org/GNOME/libgdata/commit/f6d0e3f3b6fa8e8ee9569372c5709c1fb84af2c1.diff"; + sha256 = "00yrppn0s21i41r9mwzvrrv7j5dida09kh7i44kv8hrbrlfag7bm"; + }) + (fetchpatch { + # Meson minor fixes + url = "https://gitlab.gnome.org/GNOME/libgdata/commit/b653f602b3c2b518101c5d909e1651534c22757a.diff"; + sha256 = "1bn0rffsvkzjl59aw8dmq1wil58x1fshz0m6xabpn79ffvbjld8j"; + }) + (fetchpatch { + # Meson: Fix G_LOG_DOMAIN + url = "https://gitlab.gnome.org/GNOME/libgdata/commit/5d318e0bf905d0f1a8b3fe1e47ee7847739082e3.diff"; + sha256 = "11i2blq811d53433kdq4hhsscgkrq5f50d9ih4ixgs3j47hg7b1w"; + }) ]; nativeBuildInputs = [ From 467b92cf324135570f81cbdffad7ec91150cea04 Mon Sep 17 00:00:00 2001 From: Jonathan Rudenberg Date: Fri, 26 Jul 2019 23:45:16 -0400 Subject: [PATCH 1146/1611] ccextractor: init at 0.88 --- .../video/ccextractor/default.nix | 34 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/applications/video/ccextractor/default.nix diff --git a/pkgs/applications/video/ccextractor/default.nix b/pkgs/applications/video/ccextractor/default.nix new file mode 100644 index 00000000000..91c47516521 --- /dev/null +++ b/pkgs/applications/video/ccextractor/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchFromGitHub, pkgconfig, cmake +, glew, glfw3, leptonica, libiconv, tesseract3, zlib }: + +with stdenv.lib; +stdenv.mkDerivation rec { + pname = "ccextractor"; + version = "0.88"; + + src = fetchFromGitHub { + owner = "CCExtractor"; + repo = pname; + rev = "v${version}"; + sha256 = "1sya45hvv4d46bk7541yimmafgvgyhkpsvwfz9kv6pm4yi1lz6nb"; + }; + + sourceRoot = "source/src"; + + nativeBuildInputs = [ pkgconfig cmake ]; + + buildInputs = [ glew glfw3 leptonica tesseract3 zlib ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv; + + meta = { + homepage = "https://www.ccextractor.org"; + description = "Tool that produces subtitles from closed caption data in videos"; + longDescription = '' + A tool that analyzes video files and produces independent subtitle files from + closed captions data. CCExtractor is portable, small, and very fast. + It works on Linux, Windows, and OSX. + ''; + platforms = platforms.unix; + license = licenses.gpl2; + maintainers = with maintainers; [ titanous ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c8cae44ca89..b10aaa3058f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -736,6 +736,8 @@ in container-linux-config-transpiler = callPackage ../development/tools/container-linux-config-transpiler { }; + ccextractor = callPackage ../applications/video/ccextractor { }; + cconv = callPackage ../tools/text/cconv { }; go-check = callPackage ../development/tools/check { }; From 184beb523653d5058b584b320bdd3d5b8352189f Mon Sep 17 00:00:00 2001 From: Max Gonzih Date: Sun, 28 Jul 2019 01:51:18 -0400 Subject: [PATCH 1147/1611] linkerd: init at 2019-07-26 (#65436) --- .../networking/cluster/linkerd/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/networking/cluster/linkerd/default.nix diff --git a/pkgs/applications/networking/cluster/linkerd/default.nix b/pkgs/applications/networking/cluster/linkerd/default.nix new file mode 100644 index 00000000000..256bce9b6ec --- /dev/null +++ b/pkgs/applications/networking/cluster/linkerd/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchFromGitHub, buildGoModule }: + +buildGoModule rec { + pname = "linkerd-unstablle"; + version = "2019-07-26"; + + src = fetchFromGitHub { + owner = "linkerd"; + repo = "linkerd2"; + rev = "065dd3ec9d4b84c90383b31be16ccadd34a8ab0d"; + sha256 = "01m8g627sd126as0a74fy9svmymwd41sifd897nhn6kz78a21gq8"; + }; + + modSha256 = "0gahhywpcj16ww4l8s3wjwvavq24fpy258snhyf94ipy6lb797sl"; + + subPackages = [ "cli/cmd" ]; + + meta = with stdenv.lib; { + description = "A service mesh for Kubernetes and beyond."; + homepage = https://linkerd.io/; + license = licenses.asl20; + maintainers = with maintainers; [ Gonzih ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a6d68199ca9..a87b48ffd5f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18925,6 +18925,8 @@ in fluxctl = callPackage ../applications/networking/cluster/fluxctl { }; + linkerd = callPackage ../applications/networking/cluster/linkerd { }; + kubernetes-helm = callPackage ../applications/networking/cluster/helm { }; kubetail = callPackage ../applications/networking/cluster/kubetail { } ; From a12efe947f90ec816d5a9b5a03922a8eefd476bd Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Fri, 26 Jul 2019 12:04:19 +0200 Subject: [PATCH 1148/1611] minikube: 1.0.1 -> 1.2.0 Also switch to go modules. Signed-off-by: Vincent Demeester --- .../networking/cluster/minikube/default.nix | 33 ++++++++----------- 1 file changed, 13 insertions(+), 20 deletions(-) diff --git a/pkgs/applications/networking/cluster/minikube/default.nix b/pkgs/applications/networking/cluster/minikube/default.nix index 5b5d6a98e88..8c85370728f 100644 --- a/pkgs/applications/networking/cluster/minikube/default.nix +++ b/pkgs/applications/networking/cluster/minikube/default.nix @@ -1,4 +1,4 @@ -{ stdenv, buildGoPackage, fetchFromGitHub, go-bindata, libvirt, qemu +{ stdenv, buildGoModule, fetchFromGitHub, go-bindata, libvirt, qemu , gpgme, makeWrapper, vmnet , docker-machine-kvm, docker-machine-kvm2 , extraDrivers ? [] @@ -11,12 +11,11 @@ let binPath = drivers ++ stdenv.lib.optionals stdenv.isLinux ([ libvirt qemu ]); -in buildGoPackage rec { +in buildGoModule rec { pname = "minikube"; - name = "${pname}-${version}"; - version = "1.0.1"; + version = "1.2.0"; - kubernetesVersion = "1.14.1"; + kubernetesVersion = "1.15.0"; goPackagePath = "k8s.io/minikube"; @@ -24,15 +23,15 @@ in buildGoPackage rec { owner = "kubernetes"; repo = "minikube"; rev = "v${version}"; - sha256 = "1fgyaq8789wc3h6xmn4iw6if2jxdv5my35yn6ipx3q6i4hagxl4b"; + sha256 = "0l9znrp49877cp1bkwx84c8lv282ga5a946rjbxi8gznkf3kwaw7"; }; + modSha256 = "1cp63n0x2lgbqvvymx9byx48r42qw6w224x5x4iiarc2nryfdhn0"; + buildInputs = [ go-bindata makeWrapper gpgme ] ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin vmnet; subPackages = [ "cmd/minikube" ] ++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "cmd/drivers/hyperkit"; preBuild = '' - pushd go/src/${goPackagePath} >/dev/null - go-bindata -nomemcopy -o pkg/minikube/assets/assets.go -pkg assets deploy/addons/... VERSION_MAJOR=$(grep "^VERSION_MAJOR" Makefile | sed "s/^.*\s//") @@ -47,21 +46,15 @@ in buildGoPackage rec { -X k8s.io/minikube/pkg/version.isoPath=$ISO_BUCKET \ -X k8s.io/minikube/vendor/k8s.io/client-go/pkg/version.gitVersion=$KUBERNETES_VERSION \ -X k8s.io/minikube/vendor/k8s.io/kubernetes/pkg/version.gitVersion=$KUBERNETES_VERSION" - - popd >/dev/null ''; postInstall = '' - mkdir -p $bin/share/bash-completion/completions/ - MINIKUBE_WANTUPDATENOTIFICATION=false MINIKUBE_WANTKUBECTLDOWNLOADMSG=false HOME=$PWD $bin/bin/minikube completion bash > $bin/share/bash-completion/completions/minikube - mkdir -p $bin/share/zsh/site-functions/ - MINIKUBE_WANTUPDATENOTIFICATION=false MINIKUBE_WANTKUBECTLDOWNLOADMSG=false HOME=$PWD $bin/bin/minikube completion zsh > $bin/share/zsh/site-functions/_minikube - ''; - - postFixup = '' - wrapProgram $bin/bin/${pname} --prefix PATH : $bin/bin:${stdenv.lib.makeBinPath binPath} - '' + stdenv.lib.optionalString stdenv.hostPlatform.isDarwin '' - mv $bin/bin/hyperkit $bin/bin/docker-machine-driver-hyperkit + mkdir -p $out/share/bash-completion/completions/ + MINIKUBE_WANTUPDATENOTIFICATION=false MINIKUBE_WANTKUBECTLDOWNLOADMSG=false HOME=$PWD $out/bin/minikube completion bash > $out/share/bash-completion/completions/minikube + mkdir -p $out/share/zsh/site-functions/ + MINIKUBE_WANTUPDATENOTIFICATION=false MINIKUBE_WANTKUBECTLDOWNLOADMSG=false HOME=$PWD $out/bin/minikube completion zsh > $out/share/zsh/site-functions/_minikube + ''+ stdenv.lib.optionalString stdenv.hostPlatform.isDarwin '' + mv $out/bin/hyperkit $out/bin/docker-machine-driver-hyperkit ''; meta = with stdenv.lib; { From b3b418478651633d54004cb59e95c2d44d69e5d2 Mon Sep 17 00:00:00 2001 From: Dave Nicponski Date: Sun, 28 Jul 2019 02:25:17 -0400 Subject: [PATCH 1149/1611] games/crawl: add support for MacOS/Darwin builds games/crawl: Add support for darwin builds. Also, compression/advancecomp: Add support for darwin builds in meta (which already worked). --- pkgs/games/crawl/crawl_purify.patch | 13 +++++++++++++ pkgs/games/crawl/default.nix | 15 ++++++++++++--- pkgs/tools/compression/advancecomp/default.nix | 2 +- 3 files changed, 26 insertions(+), 4 deletions(-) diff --git a/pkgs/games/crawl/crawl_purify.patch b/pkgs/games/crawl/crawl_purify.patch index 67a883c16b0..f792dc013f0 100644 --- a/pkgs/games/crawl/crawl_purify.patch +++ b/pkgs/games/crawl/crawl_purify.patch @@ -1,6 +1,19 @@ diff -ru3 crawl-ref-0.23.2-src-old/crawl-ref/source/Makefile crawl-ref-0.23.2-src-new/crawl-ref/source/Makefile --- crawl-ref-0.23.2-src-old/crawl-ref/source/Makefile 1970-01-01 03:00:01.000000000 +0300 +++ crawl-ref-0.23.2-src-new/crawl-ref/source/Makefile 2017-07-27 14:45:34.611221571 +0300 +@@ -224,9 +224,9 @@ + STRIP := strip -x + NEED_APPKIT = YesPlease + LIBNCURSES_IS_UNICODE = Yes +- NO_PKGCONFIG = Yes +- BUILD_SQLITE = YesPlease +- BUILD_ZLIB = YesPlease ++ #NO_PKGCONFIG = Yes ++ #BUILD_SQLITE = YesPlease ++ #BUILD_ZLIB = YesPlease + ifdef TILES + EXTRA_LIBS += -framework AppKit -framework AudioUnit -framework CoreAudio -framework ForceFeedback -framework Carbon -framework IOKit -framework OpenGL -framework AudioToolbox -framework CoreVideo contrib/install/$(ARCH)/lib/libSDL2main.a + BUILD_FREETYPE = YesPlease @@ -286,13 +286,7 @@ LIBZ := contrib/install/$(ARCH)/lib/libz.a diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index ac58a43aecb..203afa93b45 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -1,6 +1,9 @@ { stdenv, lib, fetchFromGitHub, fetchpatch, which, sqlite, lua5_1, perl, python3, zlib, pkgconfig, ncurses , dejavu_fonts, libpng, SDL2, SDL2_image, SDL2_mixer, libGLU_combined, freetype, pngcrush, advancecomp , tileMode ? false, enableSound ? tileMode + +# MacOS / Darwin builds +, darwin ? null }: stdenv.mkDerivation rec { @@ -15,7 +18,7 @@ stdenv.mkDerivation rec { }; patches = [ - ./crawl_purify.patch # Patch hard-coded paths + ./crawl_purify.patch # Patch hard-coded paths and remove force library builds (fetchpatch { # Use a nice high-res app icon url = "https://github.com/crawl/crawl/commit/2aa1166087e44e6585b26cedf1fe81b3f3ba547f.patch"; sha256 = "1jqrdv4wy18shg1fdabdb421232hg5micphkixcyzxd1lrmvadg0"; @@ -28,7 +31,13 @@ stdenv.mkDerivation rec { buildInputs = [ lua5_1 zlib sqlite ncurses ] ++ (with python3.pkgs; [ pyyaml ]) ++ lib.optionals tileMode [ libpng SDL2 SDL2_image freetype libGLU_combined ] - ++ lib.optional enableSound SDL2_mixer; + ++ lib.optional enableSound SDL2_mixer + ++ (lib.optionals stdenv.isDarwin ( + assert (lib.assertMsg (darwin != null) "Must have darwin frameworks available for darwin builds"); + with darwin.apple_sdk.frameworks; [ + AppKit AudioUnit CoreAudio ForceFeedback Carbon IOKit OpenGL + ] + )); preBuild = '' cd crawl-ref/source @@ -64,7 +73,7 @@ stdenv.mkDerivation rec { with dangerous and unfriendly monsters in a quest to rescue the mystifyingly fabulous Orb of Zot. ''; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; license = with licenses; [ gpl2Plus bsd2 bsd3 mit licenses.zlib cc0 ]; maintainers = [ maintainers.abbradar ]; }; diff --git a/pkgs/tools/compression/advancecomp/default.nix b/pkgs/tools/compression/advancecomp/default.nix index db1e1dbfd85..4f288b9e56f 100644 --- a/pkgs/tools/compression/advancecomp/default.nix +++ b/pkgs/tools/compression/advancecomp/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { description = ''A set of tools to optimize deflate-compressed files''; license = licenses.gpl3 ; maintainers = [ maintainers.raskin ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; homepage = https://github.com/amadvance/advancecomp; }; From a3ae2dbd19b6689f2ee9421b66496ed712d95e22 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 28 Jul 2019 09:30:50 +0300 Subject: [PATCH 1150/1611] mpd-mpris: init at 0.2.3 (#65340) --- pkgs/tools/audio/mpd-mpris/default.nix | 33 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/tools/audio/mpd-mpris/default.nix diff --git a/pkgs/tools/audio/mpd-mpris/default.nix b/pkgs/tools/audio/mpd-mpris/default.nix new file mode 100644 index 00000000000..a4cea2b07ed --- /dev/null +++ b/pkgs/tools/audio/mpd-mpris/default.nix @@ -0,0 +1,33 @@ +{ stdenv, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "mpd-mpris"; + version = "0.2.3"; + + src = fetchFromGitHub { + owner = "natsukagami"; + repo = pname; + rev = "v${version}"; + sha256 = "19sz1ykdzradhpdwdvvxh9scp5sv2i072qircs0q4374cdgccfbb"; + }; + + modSha256 = "1a95kfy8w952269x4llbl0afyxr5fjkg30mxsn81zdh5wr8gabwh"; + + subPackages = [ "cmd/${pname}" ]; + + postInstall = '' + substituteInPlace mpd-mpris.service \ + --replace /usr/bin $out/bin + mkdir -p $out/lib/systemd/user + cp mpd-mpris.service $out/lib/systemd/user + ''; + + meta = with stdenv.lib; { + description = "An implementation of the MPRIS protocol for MPD"; + homepage = "https://github.com/natsukagami/mpd-mpris"; + license = licenses.mit; + maintainers = with maintainers; [ doronbehar ]; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a87b48ffd5f..40a55212d62 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1762,6 +1762,8 @@ in mpdris2 = callPackage ../tools/audio/mpdris2 { }; + mpd-mpris = callPackage ../tools/audio/mpd-mpris { }; + mq-cli = callPackage ../tools/system/mq-cli { }; nfdump = callPackage ../tools/networking/nfdump { }; From 6f46503f13d2b9c14d161ee606fb466d280054e8 Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Sat, 27 Jul 2019 23:33:01 -0700 Subject: [PATCH 1151/1611] amass: 2.9.11 -> 3.0.25 (#65491) --- pkgs/tools/networking/amass/default.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/networking/amass/default.nix b/pkgs/tools/networking/amass/default.nix index bd9cae16224..73f54f7dbff 100644 --- a/pkgs/tools/networking/amass/default.nix +++ b/pkgs/tools/networking/amass/default.nix @@ -5,16 +5,16 @@ buildGoModule rec { pname = "amass"; - version = "2.9.11"; + version = "3.0.25"; src = fetchFromGitHub { owner = "OWASP"; repo = "Amass"; - rev = version; - sha256 = "1mbxxj7cjypxdn80svgmq9yvzaj2x0y1lcbglzzmlqj3r0j265mr"; + rev = "v${version}"; + sha256 = "04vsahqmbs9rysdwyjq0zgwcn6dgdvkyz8lsp1g1p9d3amrgbqjy"; }; - modSha256 = "028ln760xaxlsk074x1i5fqi1334rw2bpz7fg520q6m13d9w86hw"; + modSha256 = "0kwi4pys08kszrh5kz64gs68k20y00v2zqh5hyrgpy9nivqrlj62"; outputs = [ "out" "wordlists" ]; @@ -37,9 +37,8 @@ buildGoModule rec { Amass ships with a set of wordlist (to be used with the amass -w flag) that are found under the wordlists output. ''; - homepage = https://www.owasp.org/index.php/OWASP_Amass_Project; + homepage = "https://www.owasp.org/index.php/OWASP_Amass_Project"; license = licenses.asl20; maintainers = with maintainers; [ kalbasit ]; - platforms = platforms.linux ++ platforms.darwin; }; } From e84e223c9b44dfc7b86bbee5ae2e73c02ab06fa4 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sat, 27 Jul 2019 22:35:44 -0700 Subject: [PATCH 1152/1611] rls: 1.35.0 -> 1.36.0 --- pkgs/development/tools/rust/rls/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/rls/default.nix b/pkgs/development/tools/rust/rls/default.nix index 0427eadea19..22374d2bbe7 100644 --- a/pkgs/development/tools/rust/rls/default.nix +++ b/pkgs/development/tools/rust/rls/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "rls"; # with rust 1.x you can only build rls version 1.x.y - version = "1.35.0"; + version = "1.36.0"; src = fetchFromGitHub { owner = "rust-lang"; repo = pname; rev = version; - sha256 = "1l3fvlgfzri8954nbwqxqghjy5wa8p1aiml12r1lqs92dh0g192f"; + sha256 = "1mclv0admxv48pndyqghxc4nf1amhbd700cgrzjshf9jrnffxmrn"; }; - cargoSha256 = "0v96ndys6bv5dfjg01chrqrqjc57qqfjw40n6vppi9bpw0f6wkf5"; + cargoSha256 = "1yli9540510xmzqnzfi3p6rh23bjqsviflqw95a0fawf2rnj8sin"; # a nightly compiler is required unless we use this cheat code. RUSTC_BOOTSTRAP=1; From 14070d1fdc55ffae1f1265b8e3c2d348924da9cf Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Sat, 27 Jul 2019 21:00:53 +0200 Subject: [PATCH 1153/1611] libuv: 1.30.0 -> 1.30.1 --- pkgs/development/libraries/libuv/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libuv/default.nix b/pkgs/development/libraries/libuv/default.nix index ade3f5796d5..07f99a058d8 100644 --- a/pkgs/development/libraries/libuv/default.nix +++ b/pkgs/development/libraries/libuv/default.nix @@ -1,14 +1,14 @@ { stdenv, lib, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, ApplicationServices, CoreServices }: stdenv.mkDerivation rec { - version = "1.30.0"; + version = "1.30.1"; pname = "libuv"; src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "0j26nh799962l1gn3v3sw1x6fnia2dx5irhl33nc77gy2gzayv07"; + sha256 = "16l207g9qwckxn0vnbnwiybhw6083imdwyfd6ipfsl44b1m8jmf7"; }; postPatch = let From 15564fbb4d9e349f75edc1d4791bd7b5f4865973 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 28 Jul 2019 09:31:48 +0200 Subject: [PATCH 1154/1611] wire-desktop: fix evaluating on other platforms to unblock tarball job --- .../networking/instant-messengers/wire-desktop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index 3792c91ea91..5903a509c8d 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -18,12 +18,12 @@ let version = { "x86_64-linux" = "3.9.2895"; "x86_64-darwin" = "3.9.2943"; - }.${system}; + }.${system} or ""; sha256 = { "x86_64-linux" = "0wrn95m64j4b7ym44h9zawq13kg4m12aixlyyzp56bfyczmjq4a5"; "x86_64-darwin" = "1y1bzsjmjrj518q29xfx6gg1nhdbaz7y5hzaqrp241az6plp090k"; - }.${system}; + }.${system} or ""; meta = with stdenv.lib; { description = "A modern, secure messenger for everyone"; From 9a9dbb6af2a76c6b91dde49d566f8a8163c19c96 Mon Sep 17 00:00:00 2001 From: Johannes Schleifenbaum Date: Sun, 28 Jul 2019 10:02:36 +0200 Subject: [PATCH 1155/1611] teamspeak_client: 3.1.10 -> 3.3.0 --- .../instant-messengers/teamspeak/client.nix | 12 +++++------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix index 7a50536cc0f..21b9510a605 100644 --- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix +++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix @@ -31,16 +31,13 @@ in stdenv.mkDerivation rec { name = "teamspeak-client-${version}"; - version = "3.1.10"; + version = "3.3.0"; src = fetchurl { - urls = [ - "http://dl.4players.de/ts/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" - "http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" - ]; + url = "https://files.teamspeak-services.com/releases/client/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run"; sha256 = if stdenv.is64bit - then "17gylj5pxba14c1c98b5rdyyb87c58z8l8yrd1iw5k293wf7iwv3" - else "1bkn3ykrc73wr02qaqwpr4garlqm3424y3dm2fjx6lqcfzm3ms2k"; + then "13286dbjp4qiyfv8my1hfpwzns4szdsnqa11j8ygsh5ikgjk338a" + else "04lwclq7nvw73v5fmn9795j5wi54syglc77ldl41caiqqhdqf1i5"; }; # grab the plugin sdk for the desktop icon @@ -61,6 +58,7 @@ stdenv.mkDerivation rec { '' mv ts3client_linux_${arch} ts3client echo "patching ts3client..." + patchelf --replace-needed libquazip.so ${quazip}/lib/libquazip5.so ts3client patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath ${stdenv.lib.makeLibraryPath deps}:$(cat $NIX_CC/nix-support/orig-cc)/${libDir} \ diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 40a55212d62..de5a529383b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20554,7 +20554,7 @@ in tambura = callPackage ../applications/audio/tambura { }; - teamspeak_client = libsForQt511.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; + teamspeak_client = libsForQt512.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { }; taskell = callPackage ../applications/misc/taskell { }; From 93877c52f6c68b79dc61e6d56d3e390194c674c4 Mon Sep 17 00:00:00 2001 From: Akira Komamura Date: Sun, 28 Jul 2019 17:25:21 +0900 Subject: [PATCH 1156/1611] emacs-libvterm: 2019-04-28 -> 2019-07-22 --- .../editors/emacs-modes/emacs-libvterm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/emacs-libvterm/default.nix b/pkgs/applications/editors/emacs-modes/emacs-libvterm/default.nix index 8b3a0476e48..ba54b9404a0 100644 --- a/pkgs/applications/editors/emacs-modes/emacs-libvterm/default.nix +++ b/pkgs/applications/editors/emacs-modes/emacs-libvterm/default.nix @@ -32,13 +32,13 @@ let in stdenv.mkDerivation rec { name = "emacs-libvterm-${version}"; - version = "unstable-2019-04-28"; + version = "unstable-2019-07-22"; src = fetchFromGitHub { owner = "akermu"; repo = "emacs-libvterm"; - rev = "6adcedf3e4aaadeeaff97437044fba17aeb466d4"; - sha256 = "1j6qr5bmajig3idhwsaa3zm72w13q9zn77z2dlrhhx3p4bbds3f8"; + rev = "301fe9fdfd5fb2496c8428a11e0812fd8a4c0820"; + sha256 = "0i1hn5gcxayqcbjrnpgczvbicq2vsyn59646ary3crs0mz9wlbpr"; }; nativeBuildInputs = [ cmake ]; From 3a14d2750b0a72be5dc2d233943b4c8d1ba33764 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 28 Jul 2019 10:55:04 +0200 Subject: [PATCH 1157/1611] way-cooler: fix eval --- pkgs/applications/window-managers/way-cooler/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/window-managers/way-cooler/default.nix b/pkgs/applications/window-managers/way-cooler/default.nix index 160b872fd48..9ebb0b5ffcf 100644 --- a/pkgs/applications/window-managers/way-cooler/default.nix +++ b/pkgs/applications/window-managers/way-cooler/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, makeWrapper, symlinkJoin, writeShellScriptBin, callPackage, defaultCrateOverrides -, wayland, wlc, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk-pixbuf +, wayland, cairo, libxkbcommon, pam, python3Packages, lemonbar, gdk-pixbuf }: let From 09278b70fc47286f8f8e08a5b201654124572684 Mon Sep 17 00:00:00 2001 From: Bernard Fortz Date: Sun, 28 Jul 2019 10:56:42 +0200 Subject: [PATCH 1158/1611] bitwig-studio: 3.0 -> 3.01 --- pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix index 45054764a10..3e9a2d380e2 100644 --- a/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix +++ b/pkgs/applications/audio/bitwig-studio/bitwig-studio3.nix @@ -3,11 +3,11 @@ bitwig-studio1.overrideAttrs (oldAttrs: rec { name = "bitwig-studio-${version}"; - version = "3.0"; + version = "3.0.1"; src = fetchurl { url = "https://downloads.bitwig.com/stable/${version}/bitwig-studio-${version}.deb"; - sha256 = "0p7wi1srfzalb0rl94vqppfbnxdfwqzgg5blkdwkf4sx977aihpv"; + sha256 = "0k25p1j4kgnhm7p90qp1cz79xddgi6nh1nx1y5wz42x8qrpxya0s"; }; runtimeDependencies = [ From 10710c6956ddba29cb9b729f9c985328400206b7 Mon Sep 17 00:00:00 2001 From: Florian Friesdorf Date: Tue, 16 Jul 2019 16:43:14 +0200 Subject: [PATCH 1159/1611] npm2nix: remove `npm2nix` is unmaintained for about two years[1], node2nix[2] or probably even yarn2nix[3] should be used nowadays. [1] https://github.com/nixos/npm2nix#disclaimer-this-project-is-no-longer-maintained-instead-use-node2nix [2] https://github.com/svanderburg/node2nix [3] https://github.com/moretea/yarn2nix Signed-off-by: Maximilian Bosch --- .../development/node-packages/default-v10.nix | 4 - .../node-packages/node-packages-v10.json | 1 - .../node-packages/node-packages-v10.nix | 179 +----------------- pkgs/top-level/all-packages.nix | 2 - 4 files changed, 1 insertion(+), 185 deletions(-) diff --git a/pkgs/development/node-packages/default-v10.nix b/pkgs/development/node-packages/default-v10.nix index df3a07b26e8..50b33f7effd 100644 --- a/pkgs/development/node-packages/default-v10.nix +++ b/pkgs/development/node-packages/default-v10.nix @@ -73,10 +73,6 @@ nodePackages // { ''; }; - npm2nix = nodePackages."npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0".override { - postInstall = "npm run-script prepublish"; - }; - pnpm = nodePackages.pnpm.override { nativeBuildInputs = [ pkgs.makeWrapper ]; diff --git a/pkgs/development/node-packages/node-packages-v10.json b/pkgs/development/node-packages/node-packages-v10.json index 14012438bc1..4689546832a 100644 --- a/pkgs/development/node-packages/node-packages-v10.json +++ b/pkgs/development/node-packages/node-packages-v10.json @@ -86,7 +86,6 @@ , "nodemon" , "node-red" , "npm" -, { "npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0" } , "npm-check-updates" , "ocaml-language-server" , "peerflix" diff --git a/pkgs/development/node-packages/node-packages-v10.nix b/pkgs/development/node-packages/node-packages-v10.nix index b587d1391fa..b0017eec327 100644 --- a/pkgs/development/node-packages/node-packages-v10.nix +++ b/pkgs/development/node-packages/node-packages-v10.nix @@ -58097,183 +58097,6 @@ in bypassCache = true; reconstructLock = true; }; - "npm2nix-git://github.com/NixOS/npm2nix.git#5.12.0" = nodeEnv.buildNodePackage { - name = "npm2nix"; - packageName = "npm2nix"; - version = "5.12.0"; - src = fetchgit { - url = "git://github.com/NixOS/npm2nix.git"; - rev = "0c06be7d278a7f64fc853a5fd42d2031d14496d5"; - sha256 = "e1b252cd883fd8c5c4618b157d03b3fb869fa6aad4170ef51e34681069d50bf5"; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."ajv-6.10.2" - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.5" - sources."argparse-0.1.15" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."block-stream-0.0.9" - sources."brace-expansion-1.1.11" - sources."caseless-0.12.0" - sources."chownr-0.0.2" - sources."code-point-at-1.1.0" - sources."coffee-script-1.12.7" - sources."combined-stream-1.0.8" - sources."concat-map-0.0.1" - (sources."config-chain-1.1.12" // { - dependencies = [ - sources."ini-1.3.5" - ]; - }) - sources."console-control-strings-1.1.0" - sources."core-util-is-1.0.2" - sources."couch-login-0.1.20" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."findit-1.2.0" - sources."foreachasync-3.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - (sources."fs-extra-0.6.4" // { - dependencies = [ - sources."rimraf-2.2.8" - ]; - }) - sources."fs.extra-1.3.2" - sources."fs.realpath-1.0.0" - (sources."fstream-0.1.31" // { - dependencies = [ - sources."graceful-fs-3.0.11" - sources."mkdirp-0.5.1" - ]; - }) - sources."gauge-2.7.4" - sources."getpass-0.1.7" - sources."glob-7.1.4" - sources."graceful-fs-2.0.3" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."has-unicode-2.0.1" - sources."http-signature-1.2.0" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.1.0" - 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.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-1.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.3.5" - sources."natives-1.1.6" - sources."ncp-0.4.2" - sources."nopt-2.2.1" - (sources."npm-registry-client-0.2.27" // { - dependencies = [ - sources."semver-2.0.11" - ]; - }) - (sources."npmconf-0.1.1" // { - dependencies = [ - sources."inherits-1.0.2" - sources."once-1.1.1" - sources."semver-2.3.2" - ]; - }) - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" - sources."object-assign-4.1.1" - sources."once-1.4.0" - sources."osenv-0.0.3" - sources."path-is-absolute-1.0.1" - sources."performance-now-2.1.0" - sources."process-nextick-args-2.0.1" - sources."proto-list-1.2.4" - sources."psl-1.2.0" - sources."punycode-2.1.1" - sources."qs-6.5.2" - (sources."readable-stream-2.3.6" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) - sources."request-2.88.0" - sources."retry-0.6.0" - sources."rimraf-2.6.3" - sources."safe-buffer-5.2.0" - sources."safer-buffer-2.1.2" - sources."semver-4.3.6" - sources."set-blocking-2.0.0" - sources."signal-exit-3.0.2" - sources."slide-1.1.6" - sources."sshpk-1.16.1" - sources."string-width-1.0.2" - (sources."string_decoder-1.1.1" // { - dependencies = [ - sources."safe-buffer-5.1.2" - ]; - }) - sources."strip-ansi-3.0.1" - (sources."tar-0.1.17" // { - dependencies = [ - sources."inherits-1.0.2" - ]; - }) - (sources."temp-0.6.0" // { - dependencies = [ - sources."graceful-fs-1.2.3" - sources."rimraf-2.1.4" - ]; - }) - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."underscore-1.4.4" - sources."underscore.string-2.3.3" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."walk-2.3.14" - sources."wide-align-1.1.3" - sources."wrappy-1.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Generate nix expressions to build npm packages"; - homepage = https://github.com/NixOS/npm2nix; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; npm-check-updates = nodeEnv.buildNodePackage { name = "npm-check-updates"; packageName = "npm-check-updates"; @@ -72008,4 +71831,4 @@ in bypassCache = true; reconstructLock = true; }; -} \ No newline at end of file +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 40a55212d62..93e059ff75a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4340,8 +4340,6 @@ in nodePackages = nodePackages_10_x; - npm2nix = nodePackages.npm2nix; - now-cli = callPackage ../development/web/now-cli {}; file-rename = callPackage ../tools/filesystems/file-rename { }; From babeb7361e3934b9656ae3260aae04a79ac6faba Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Thu, 11 Jul 2019 17:43:34 -0400 Subject: [PATCH 1160/1611] pythonPackages.scikit-fmm: init at 2019.1.30 --- .../python-modules/scikit-fmm/default.nix | 32 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/python-modules/scikit-fmm/default.nix diff --git a/pkgs/development/python-modules/scikit-fmm/default.nix b/pkgs/development/python-modules/scikit-fmm/default.nix new file mode 100644 index 00000000000..122af8cfda2 --- /dev/null +++ b/pkgs/development/python-modules/scikit-fmm/default.nix @@ -0,0 +1,32 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, python +}: + +buildPythonPackage rec { + pname = "scikit-fmm"; + version = "2019.1.30"; + + src = fetchPypi { + inherit pname version; + sha256 = "eb64b6d8e30b8df8f8636d5fc4fd7ca6a9b05938ccd62518c80c1d9e823069dd"; + }; + + propagatedBuildInputs = [ + numpy + ]; + + checkPhase = '' + mkdir testdir; cd testdir + ${python.interpreter} -c "import skfmm, sys; sys.exit(skfmm.test())" + ''; + + meta = with lib; { + description = "A Python extension module which implements the fast marching method"; + homepage = https://github.com/scikit-fmm/scikit-fmm; + license = licenses.bsd3; + maintainers = with maintainers; [ costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 39d91233d39..335a4fa827b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4680,6 +4680,8 @@ in { scikit-tda = callPackage ../development/python-modules/scikit-tda { }; + scikit-fmm = callPackage ../development/python-modules/scikit-fmm { }; + scp = callPackage ../development/python-modules/scp {}; seaborn = callPackage ../development/python-modules/seaborn { }; From 2c396d9f0785b062c952db4c93ee521108bcdccf Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 11:23:56 -0400 Subject: [PATCH 1161/1611] pythonPackages.pysparse: init at 1.1.1-dev --- .../python-modules/pysparse/default.nix | 49 +++++++++++ .../pysparse/dropPackageLoader.patch | 88 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 3 files changed, 139 insertions(+) create mode 100644 pkgs/development/python-modules/pysparse/default.nix create mode 100644 pkgs/development/python-modules/pysparse/dropPackageLoader.patch diff --git a/pkgs/development/python-modules/pysparse/default.nix b/pkgs/development/python-modules/pysparse/default.nix new file mode 100644 index 00000000000..45ff5a9b5b4 --- /dev/null +++ b/pkgs/development/python-modules/pysparse/default.nix @@ -0,0 +1,49 @@ +{ lib +, buildPythonPackage +, fetchFromGitHub +, numpy +, setuptools +, liblapack +, isPy27 +, python +}: + +buildPythonPackage rec { + pname = "pysparse"; + version = "1.3-dev"; + disabled = !isPy27; + + src = fetchFromGitHub { + owner = "PythonOptimizers"; + repo = "pysparse"; + rev = "f8430bd99ac2a6209c462657c5792d10033888cc"; + sha256 = "19xcq8214yndra1xjhna3qjm32wprsqck97dlnw3xcww7rfy6hqh"; + }; + + hardeningDisable = [ "all" ]; + + propagatedBuildInputs = [ + numpy + numpy.blas + liblapack + ]; + + # Include patches from working version of PySparse 1.3-dev in + # Conda-Forge, + # https://github.com/conda-forge/pysparse-feedstock/tree/b69266911a2/recipe + # Thanks to https://github.com/guyer + patches = [ ./dropPackageLoader.patch ]; + + checkPhase = '' + cd test + ${python.interpreter} -c "import pysparse" + ${python.interpreter} test_sparray.py + ''; + + meta = with lib; { + homepage = https://github.com/PythonOptimizers/pysparse; + description = "A Sparse Matrix Library for Python"; + license = licenses.bsd3; + maintainers = with maintainers; [ costrouc ]; + }; +} diff --git a/pkgs/development/python-modules/pysparse/dropPackageLoader.patch b/pkgs/development/python-modules/pysparse/dropPackageLoader.patch new file mode 100644 index 00000000000..b2526645f89 --- /dev/null +++ b/pkgs/development/python-modules/pysparse/dropPackageLoader.patch @@ -0,0 +1,88 @@ +diff --git a/pysparse/__init__.py b/pysparse/__init__.py +index 6d09b00..ff39084 100644 +--- a/pysparse/__init__.py ++++ b/pysparse/__init__.py +@@ -1,9 +1,42 @@ +-"PySparse: A Fast Sparse Matrix Library for Python" ++""" ++PySparse: A Fast Sparse Matrix Library for Python ++================================================= ++ ++Documentation is available in the docstrings and ++online at http://pysparse.sourceforge.net/. ++ ++Contents ++-------- ++Pysparse imports ++:: ++ spmatrix --- sparse matrix types ++ ++and, in addition, provides: ++ ++Subpackages ++----------- ++Using any of these subpackages requires an explicit import. For example, ++``import pysparse.itsolvers``. ++ ++:: ++ ++ itsolvers --- Iterative linear algebra solvers ++ precon --- Preconditioners ++ direct --- Direct solvers ++ direct.superlu --- Wrappers to SuperLU library ++ direct.umfpack --- Wrappers to UMFPACK library ++ eigen.jdsym --- Jacobi davidson eigenvalue solver for symmetric matrices ++ ++Utility tools ++------------- ++:: ++ ++ __version__ --- pysparse version string ++""" ++ + + __docformat__ = 'restructuredtext' + +-# Imports +-from numpy._import_tools import PackageLoader + try: + from version import version as __version__ + except ImportError: +@@ -11,31 +44,6 @@ except ImportError: + __version__ = 'undefined' + + from sparse import spmatrix +-#from sparse import * +-from misc import get_include +- +-pkgload = PackageLoader() +-pkgload(verbose=False,postpone=True) +- +-if __doc__: +- __doc__ += """ +- +-Available subpackages +---------------------- +-""" +-if __doc__: +- __doc__ += pkgload.get_pkgdocs() +- +-__all__ = filter(lambda s: not s.startswith('_'), dir()) +-__all__ += '__version__' +- +-__doc__ += """ +- +-Miscellaneous +-------------- +- +- __version__ : pysparse version string +-""" + + from pysparse.misc import Deprecated + +@@ -47,3 +55,5 @@ class _superlu: + return self.factorizeFnc(*args, **kwargs) + + superlu = _superlu() ++ ++__all__ = ['spmatrix', 'superlu', '__version__'] diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 335a4fa827b..4ffde3923f4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4274,6 +4274,8 @@ in { pyspread = callPackage ../development/python-modules/pyspread { }; + pysparse = callPackage ../development/python-modules/pysparse { }; + pyupdate = callPackage ../development/python-modules/pyupdate {}; pyx = callPackage ../development/python-modules/pyx { }; From ad5c48a094e9c10f6a29b55d0b8433a85a2054fc Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 17:11:52 -0400 Subject: [PATCH 1162/1611] pythonPackages.pyamg: init at 4.0.0 --- .../python-modules/pyamg/default.nix | 36 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/development/python-modules/pyamg/default.nix diff --git a/pkgs/development/python-modules/pyamg/default.nix b/pkgs/development/python-modules/pyamg/default.nix new file mode 100644 index 00000000000..b299e44f3e3 --- /dev/null +++ b/pkgs/development/python-modules/pyamg/default.nix @@ -0,0 +1,36 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, scipy +, pytest +, pybind11 +}: + +buildPythonPackage rec { + pname = "pyamg"; + version = "4.0.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "3ceb38ffd86e29774e759486f2961599c8ed847459c68727493cadeaf115a38a"; + }; + + propagatedBuildInputs = [ + numpy + scipy + pytest + pybind11 + ]; + + preBuild = '' + export HOME=$(mktemp -d) + ''; + + meta = with lib; { + description = "Algebraic Multigrid Solvers in Python"; + homepage = https://github.com/pyamg/pyamg; + license = licenses.mit; + maintainers = [ maintainers.costrouc ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 4ffde3923f4..70d9b18f9ba 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4452,6 +4452,8 @@ in { pyxattr = callPackage ../development/python-modules/pyxattr { }; + pyamg = callPackage ../development/python-modules/pyamg { }; + pyaml = callPackage ../development/python-modules/pyaml { }; pyyaml = callPackage ../development/python-modules/pyyaml { }; From 92e1376cc3e37ee72f1417df05032556d39853c1 Mon Sep 17 00:00:00 2001 From: Chris Ostrouchov Date: Fri, 12 Jul 2019 11:25:12 -0400 Subject: [PATCH 1163/1611] pythonPackages.fipy: init at 3.3 --- .../python-modules/fipy/default.nix | 55 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 57 insertions(+) create mode 100644 pkgs/development/python-modules/fipy/default.nix diff --git a/pkgs/development/python-modules/fipy/default.nix b/pkgs/development/python-modules/fipy/default.nix new file mode 100644 index 00000000000..7fbf14cf7de --- /dev/null +++ b/pkgs/development/python-modules/fipy/default.nix @@ -0,0 +1,55 @@ +{ lib +, buildPythonPackage +, fetchPypi +, numpy +, scipy +, pyamg +, pysparse +, future +, matplotlib +, tkinter +, mpi4py +, scikit-fmm +, isPy27 +, gmsh +, python +, stdenv +}: + +let + not_darwin_inputs = lib.optionals (! stdenv.isDarwin) [ gmsh ]; +in + buildPythonPackage rec { + pname = "fipy"; + version = "3.3"; + + src = fetchPypi { + pname = "FiPy"; + inherit version; + sha256 = "11agpg3d6yrns8igkpml1mxy3mkqkjq2yrw1mw12y07dkk12ii19"; + }; + + propagatedBuildInputs = [ + numpy + scipy + pyamg + matplotlib + tkinter + mpi4py + future + scikit-fmm + ] ++ lib.optionals isPy27 [ pysparse ] ++ not_darwin_inputs; + + checkInputs = not_darwin_inputs; + + checkPhase = '' + ${python.interpreter} setup.py test --modules + ''; + + meta = with lib; { + homepage = https://www.ctcms.nist.gov/fipy/; + description = "A Finite Volume PDE Solver Using Python"; + license = licenses.free; + maintainers = with maintainers; [ costrouc wd15 ]; + }; + } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 70d9b18f9ba..dadf8571cbc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4009,6 +4009,8 @@ in { fixtures = callPackage ../development/python-modules/fixtures { }; + fipy = callPackage ../development/python-modules/fipy { }; + pelican = callPackage ../development/python-modules/pelican { inherit (pkgs) glibcLocales git; }; From 09a6b262c46f63cd45e635a364aed54c30ff03b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6gler?= Date: Sat, 27 Jul 2019 10:35:43 +0200 Subject: [PATCH 1164/1611] vdr: fix shebang of svdrpsend --- pkgs/applications/video/vdr/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/vdr/default.nix b/pkgs/applications/video/vdr/default.nix index e8100219358..bcffb8585b3 100644 --- a/pkgs/applications/video/vdr/default.nix +++ b/pkgs/applications/video/vdr/default.nix @@ -16,7 +16,7 @@ postPatch = "substituteInPlace Makefile --replace libsystemd-daemon libsystemd"; - buildInputs = [ fontconfig libjpeg libcap freetype ] + buildInputs = [ fontconfig libjpeg libcap freetype perl ] ++ lib.optional enableSystemd systemd ++ lib.optional enableBidi fribidi; From a96b70b3365295b910098b5c60f0855a4b190f4d Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Sun, 28 Jul 2019 11:09:31 +0200 Subject: [PATCH 1165/1611] pythonPackages.configshell: Add urwid to deps It's required in https://github.com/open-iscsi/configshell-fb/blob/master/configshell/node.py#L1062 and crashes when reaching the function with that import. --- pkgs/development/python-modules/configshell/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/configshell/default.nix b/pkgs/development/python-modules/configshell/default.nix index b0a563126e2..9b54f439847 100644 --- a/pkgs/development/python-modules/configshell/default.nix +++ b/pkgs/development/python-modules/configshell/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six }: +{ stdenv, fetchFromGitHub, buildPythonPackage, pyparsing, six, urwid }: buildPythonPackage rec { pname = "configshell"; @@ -11,7 +11,7 @@ buildPythonPackage rec { sha256 = "0zpr2n4105qqsklyfyr9lzl1rhxjcv0mnsl57hgk0m763w6na90h"; }; - propagatedBuildInputs = [ pyparsing six ]; + propagatedBuildInputs = [ pyparsing six urwid ]; meta = with stdenv.lib; { description = "A Python library for building configuration shells"; From 9a506c2afb609de71ff9c5a43e1b62588e64ac9d Mon Sep 17 00:00:00 2001 From: tv Date: Sun, 28 Jul 2019 11:20:38 +0200 Subject: [PATCH 1166/1611] exim: 4.92 -> 4.92.1 --- pkgs/servers/mail/exim/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix index 60ff9cab2d3..88c973de0d1 100644 --- a/pkgs/servers/mail/exim/default.nix +++ b/pkgs/servers/mail/exim/default.nix @@ -6,11 +6,11 @@ }: stdenv.mkDerivation rec { - name = "exim-4.92"; + name = "exim-4.92.1"; src = fetchurl { url = "https://ftp.exim.org/pub/exim/exim4/${name}.tar.xz"; - sha256 = "0qhxxwl0nhzgp0w3pjkhx9z9lqfpk8id25q5ghf9ay2f90mydjba"; + sha256 = "1d14vs6jdw2bm9m33w2szxpv8rppbk7hvszq9p0n9i3svmqshr1c"; }; nativeBuildInputs = [ pkgconfig ]; From c40307b8c9e11004c21dba167be8349c86d1491d Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 28 Jul 2019 12:05:26 +0200 Subject: [PATCH 1167/1611] doc: fix phases to include installCheckPhase --- doc/stdenv.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/stdenv.xml b/doc/stdenv.xml index fbb84b03a8d..42095c13e0a 100644 --- a/doc/stdenv.xml +++ b/doc/stdenv.xml @@ -786,7 +786,7 @@ passthru.updateScript = [ ../../update.sh pname "--requested-release=unstable" ] set, the default value is used, which is $prePhases unpackPhase patchPhase $preConfigurePhases configurePhase $preBuildPhases buildPhase checkPhase $preInstallPhases installPhase - fixupPhase $preDistPhases distPhase $postPhases. + fixupPhase installCheckPhase $preDistPhases distPhase $postPhases. Usually, if you just want to add a few phases, it’s more convenient From c220e00d7a4524f59e19d7337aa3d47e9a678e64 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 28 Jul 2019 11:19:20 +0200 Subject: [PATCH 1168/1611] Revert "qt512: Update qtbase.patch" Segmentation faults. See https://github.com/NixOS/nixpkgs/issues/65448 This reverts commit 02afb228e2ada0a251a82c9437e2227890baacf4. --- .../libraries/qt-5/5.12/qtbase.patch | 485 ++++++++++-------- 1 file changed, 263 insertions(+), 222 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.12/qtbase.patch b/pkgs/development/libraries/qt-5/5.12/qtbase.patch index 118ffaa511e..a3b4e438fe8 100644 --- a/pkgs/development/libraries/qt-5/5.12/qtbase.patch +++ b/pkgs/development/libraries/qt-5/5.12/qtbase.patch @@ -1,7 +1,8 @@ -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/common/mac.conf qtbase-everywhere-src-5.12.3-b/mkspecs/common/mac.conf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/common/mac.conf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/common/mac.conf 2019-07-10 09:35:08.917628566 -0500 -@@ -24,7 +24,7 @@ +diff --git a/mkspecs/common/mac.conf b/mkspecs/common/mac.conf +index 61bea952b2..9909dae726 100644 +--- a/mkspecs/common/mac.conf ++++ b/mkspecs/common/mac.conf +@@ -24,7 +24,7 @@ QMAKE_INCDIR_OPENGL = \ QMAKE_FIX_RPATH = install_name_tool -id @@ -10,10 +11,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/common/mac.conf qtbase-everywhe QMAKE_LFLAGS_GCSECTIONS = -Wl,-dead_strip QMAKE_LFLAGS_REL_RPATH = -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/create_cmake.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/create_cmake.prf 2019-07-10 09:35:08.917628566 -0500 -@@ -21,7 +21,7 @@ +diff --git a/mkspecs/features/create_cmake.prf b/mkspecs/features/create_cmake.prf +index 2ed708e085..05e60ff45f 100644 +--- a/mkspecs/features/create_cmake.prf ++++ b/mkspecs/features/create_cmake.prf +@@ -21,7 +21,7 @@ load(cmake_functions) # at cmake time whether package has been found via a symlink, and correct # that to an absolute path. This is only done for installations to # the /usr or / prefix. @@ -22,7 +24,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbas contains(CMAKE_INSTALL_LIBS_DIR, ^(/usr)?/lib(64)?.*): CMAKE_USR_MOVE_WORKAROUND = $$CMAKE_INSTALL_LIBS_DIR CMAKE_OUT_DIR = $$MODULE_BASE_OUTDIR/lib/cmake -@@ -51,45 +51,20 @@ +@@ -51,45 +51,20 @@ split_incpath { $$cmake_extra_source_includes.output } @@ -79,7 +81,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbas static|staticlib:CMAKE_STATIC_TYPE = true -@@ -169,7 +144,7 @@ +@@ -169,7 +144,7 @@ contains(CONFIG, plugin) { cmake_target_file cmake_qt5_plugin_file.files = $$cmake_target_file.output @@ -88,7 +90,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbas INSTALLS += cmake_qt5_plugin_file return() -@@ -318,7 +293,7 @@ +@@ -318,7 +293,7 @@ exists($$cmake_macros_file.input) { cmake_qt5_module_files.files += $$cmake_macros_file.output } @@ -97,10 +99,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/create_cmake.prf qtbas # We are generating cmake files. Most developers of Qt are not aware of cmake, # so we require automatic tests to be available. The only module which should -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in qtbase-everywhere-src-5.12.3-b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in 2019-07-10 09:35:08.917628566 -0500 -@@ -3,30 +3,6 @@ +diff --git a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in +index 3ed6dd5889..4c7c8da21a 100644 +--- a/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in ++++ b/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in +@@ -3,30 +3,6 @@ if (CMAKE_VERSION VERSION_LESS 3.1.0) message(FATAL_ERROR \"Qt 5 $${CMAKE_MODULE_NAME} module requires at least CMake version 3.1.0\") endif() @@ -131,7 +134,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon !!IF !equals(TEMPLATE, aux) # For backwards compatibility only. Use Qt5$${CMAKE_MODULE_NAME}_VERSION instead. set(Qt5$${CMAKE_MODULE_NAME}_VERSION_STRING "$$eval(QT.$${MODULE}.VERSION)") -@@ -52,11 +28,7 @@ +@@ -52,11 +28,7 @@ endmacro() macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATION IMPLIB_LOCATION) set_property(TARGET Qt5::$${CMAKE_MODULE_NAME} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) @@ -143,7 +146,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location}) set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES \"INTERFACE_LINK_LIBRARIES\" \"${_Qt5$${CMAKE_MODULE_NAME}_LIB_DEPENDENCIES}\" -@@ -69,11 +41,7 @@ +@@ -69,11 +41,7 @@ macro(_populate_$${CMAKE_MODULE_NAME}_target_properties Configuration LIB_LOCATI ) !!IF !isEmpty(CMAKE_WINDOWS_BUILD) @@ -155,7 +158,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_implib}) if(NOT \"${IMPLIB_LOCATION}\" STREQUAL \"\") set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES -@@ -89,24 +57,13 @@ +@@ -89,24 +57,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) !!IF !no_module_headers !!IF !isEmpty(CMAKE_BUILD_IS_FRAMEWORK) set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS @@ -184,7 +187,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon ) !!ELSE set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") -@@ -122,7 +79,6 @@ +@@ -122,7 +79,6 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") !!ENDIF !!ENDIF @@ -192,7 +195,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon !!IF !isEmpty(CMAKE_ADD_SOURCE_INCLUDE_DIRS) include(\"${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake\" OPTIONAL) !!ENDIF -@@ -272,25 +228,13 @@ +@@ -272,25 +228,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) !!IF isEmpty(CMAKE_DEBUG_TYPE) !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) @@ -218,7 +221,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD endif() -@@ -309,25 +253,13 @@ +@@ -309,25 +253,13 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) !!IF isEmpty(CMAKE_RELEASE_TYPE) !!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) @@ -244,7 +247,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) !!ENDIF // CMAKE_STATIC_WINDOWS_BUILD endif() -@@ -346,11 +278,7 @@ +@@ -346,11 +278,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) macro(_populate_$${CMAKE_MODULE_NAME}_plugin_properties Plugin Configuration PLUGIN_LOCATION) set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) @@ -256,9 +259,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/data/cmake/Qt5BasicCon _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_location}) set_target_properties(Qt5::${Plugin} PROPERTIES \"IMPORTED_LOCATION_${Configuration}\" ${imported_location} -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_post.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_post.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_post.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_post.prf 2019-07-10 09:35:08.917628566 -0500 +diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/default_post.prf +index 99f68b78f5..dde69cb7c2 100644 +--- a/mkspecs/features/mac/default_post.prf ++++ b/mkspecs/features/mac/default_post.prf @@ -64,202 +64,6 @@ } } @@ -462,9 +466,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_post.prf q !macx-xcode { generate_xcode_project.commands = @$(QMAKE) -spec macx-xcode $(EXPORT__PRO_FILE_) generate_xcode_project.target = xcodeproj -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_pre.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_pre.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_pre.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/default_pre.prf 2019-07-10 09:35:08.917628566 -0500 +diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf +index e3534561a5..3b01424e67 100644 +--- a/mkspecs/features/mac/default_pre.prf ++++ b/mkspecs/features/mac/default_pre.prf @@ -1,60 +1,2 @@ CONFIG = asset_catalogs rez $$CONFIG load(default_pre) @@ -526,9 +531,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/default_pre.prf qt -xcode_copy_phase_strip_setting.name = COPY_PHASE_STRIP -xcode_copy_phase_strip_setting.value = NO -QMAKE_MAC_XCODE_SETTINGS += xcode_copy_phase_strip_setting -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/sdk.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/sdk.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/sdk.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/mac/sdk.prf 2019-07-10 09:35:08.917628566 -0500 +diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf +index 8360dd8b38..8b13789179 100644 +--- a/mkspecs/features/mac/sdk.prf ++++ b/mkspecs/features/mac/sdk.prf @@ -1,54 +1 @@ -isEmpty(QMAKE_MAC_SDK): \ @@ -584,9 +590,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/mac/sdk.prf qtbase-eve - $$tool = $$sysrooted $$member(value, 1, -1) - cache($$tool_variable, set stash, $$tool) -} -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_module.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_module.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_module.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_module.prf 2019-07-10 09:35:08.917628566 -0500 +diff --git a/mkspecs/features/qml_module.prf b/mkspecs/features/qml_module.prf +index 65212b2abf..accd4c07f0 100644 +--- a/mkspecs/features/qml_module.prf ++++ b/mkspecs/features/qml_module.prf @@ -54,7 +54,7 @@ qmldir.files = $$qmldir_file @@ -596,9 +603,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_module.prf qtbase- INSTALLS += qmldir qmlfiles.base = $$_PRO_FILE_PWD_ -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_plugin.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_plugin.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_plugin.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qml_plugin.prf 2019-07-10 09:35:08.918628595 -0500 +diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf +index cd6377dcc6..e98bf98151 100644 +--- a/mkspecs/features/qml_plugin.prf ++++ b/mkspecs/features/qml_plugin.prf @@ -50,7 +50,7 @@ DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH @@ -608,10 +616,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qml_plugin.prf qtbase- INSTALLS += target # Some final setup -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_app.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_app.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_app.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_app.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -30,7 +30,7 @@ +diff --git a/mkspecs/features/qt_app.prf b/mkspecs/features/qt_app.prf +index 8354f30eea..62028fef8e 100644 +--- a/mkspecs/features/qt_app.prf ++++ b/mkspecs/features/qt_app.prf +@@ -30,7 +30,7 @@ host_build:force_bootstrap { target.path = $$[QT_HOST_BINS] } else { !build_pass:qtConfig(debug_and_release): CONFIG += release @@ -620,10 +629,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_app.prf qtbase-ever CONFIG += relative_qt_rpath # Qt's tools and apps should be relocatable } INSTALLS += target -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_build_paths.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_build_paths.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_build_paths.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_build_paths.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -24,6 +24,6 @@ +diff --git a/mkspecs/features/qt_build_paths.prf b/mkspecs/features/qt_build_paths.prf +index 3bb3823a8e..655b7b7db8 100644 +--- a/mkspecs/features/qt_build_paths.prf ++++ b/mkspecs/features/qt_build_paths.prf +@@ -24,6 +24,6 @@ exists($$MODULE_BASE_INDIR/.git): \ !force_independent { # If the module is not built independently, everything ends up in qtbase. # This is the case in non-prefix builds, except for selected modules. @@ -632,10 +642,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_build_paths.prf qtb + MODULE_BASE_OUTDIR = $$NIX_OUTPUT_OUT + MODULE_QMAKE_OUTDIR = $$NIX_OUTPUT_OUT } -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_common.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_common.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_common.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_common.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -34,8 +34,8 @@ +diff --git a/mkspecs/features/qt_common.prf b/mkspecs/features/qt_common.prf +index 4ad9946ae0..6d66f29c26 100644 +--- a/mkspecs/features/qt_common.prf ++++ b/mkspecs/features/qt_common.prf +@@ -34,8 +34,8 @@ contains(TEMPLATE, .*lib) { qqt_libdir = \$\$\$\$[QT_HOST_LIBS] qt_libdir = $$[QT_HOST_LIBS] } else { @@ -646,10 +657,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_common.prf qtbase-e } contains(QMAKE_DEFAULT_LIBDIRS, $$qt_libdir) { lib_replace.match = "[^ ']*$$rplbase/lib" -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_docs.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_docs.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -45,7 +45,7 @@ +diff --git a/mkspecs/features/qt_docs.prf b/mkspecs/features/qt_docs.prf +index 3139c443c6..1b4f2fddd8 100644 +--- a/mkspecs/features/qt_docs.prf ++++ b/mkspecs/features/qt_docs.prf +@@ -45,7 +45,7 @@ QMAKE_DOCS_OUTPUTDIR = $$QMAKE_DOCS_BASE_OUTDIR/$$QMAKE_DOCS_TARGETDIR QDOC += -outputdir $$shell_quote($$QMAKE_DOCS_OUTPUTDIR) !build_online_docs: \ @@ -658,7 +670,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf qtbase-eve PREP_DOC_INDEXES = DOC_INDEXES = !isEmpty(QTREPOS) { -@@ -64,8 +64,8 @@ +@@ -64,8 +64,8 @@ DOC_INDEXES = DOC_INDEXES += -indexdir $$shell_quote($$qrep/doc) } else { prepare_docs: \ @@ -669,7 +681,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf qtbase-eve } qtattributionsscanner.target = qtattributionsscanner -@@ -88,12 +88,12 @@ +@@ -88,12 +88,12 @@ prepare_docs { qch_docs.commands = $$QHELPGENERATOR $$shell_quote($$QMAKE_DOCS_OUTPUTDIR/$${QMAKE_DOCS_TARGET}.qhp) -o $$shell_quote($$QMAKE_DOCS_BASE_OUTDIR/$${QMAKE_DOCS_TARGET}.qch) inst_html_docs.files = $$QMAKE_DOCS_OUTPUTDIR @@ -684,10 +696,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_docs.prf qtbase-eve inst_qch_docs.CONFIG += no_check_exist no_default_install no_build INSTALLS += inst_qch_docs -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_example_installs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_example_installs.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_example_installs.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_example_installs.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -88,7 +88,7 @@ +diff --git a/mkspecs/features/qt_example_installs.prf b/mkspecs/features/qt_example_installs.prf +index 43b58817fe..e635b8f67a 100644 +--- a/mkspecs/features/qt_example_installs.prf ++++ b/mkspecs/features/qt_example_installs.prf +@@ -88,7 +88,7 @@ sourcefiles += \ $$SOURCES $$HEADERS $$FORMS $$RESOURCES $$TRANSLATIONS \ $$DBUS_ADAPTORS $$DBUS_INTERFACES addInstallFiles(sources.files, $$sourcefiles) @@ -696,10 +709,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_example_installs.pr INSTALLS += sources check_examples { -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_functions.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_functions.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_functions.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_functions.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -69,7 +69,7 @@ +diff --git a/mkspecs/features/qt_functions.prf b/mkspecs/features/qt_functions.prf +index 1903e509c8..ae7b585989 100644 +--- a/mkspecs/features/qt_functions.prf ++++ b/mkspecs/features/qt_functions.prf +@@ -69,7 +69,7 @@ defineTest(qtHaveModule) { defineTest(qtPrepareTool) { cmd = $$eval(QT_TOOL.$${2}.binary) isEmpty(cmd) { @@ -708,9 +722,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_functions.prf qtbas exists($${cmd}.pl) { $${1}_EXE = $${cmd}.pl cmd = perl -w $$system_path($${cmd}.pl) -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_installs.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_installs.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_installs.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_installs.prf 2019-07-10 09:35:08.918628595 -0500 +diff --git a/mkspecs/features/qt_installs.prf b/mkspecs/features/qt_installs.prf +index 8f98987b99..21b3bb8b32 100644 +--- a/mkspecs/features/qt_installs.prf ++++ b/mkspecs/features/qt_installs.prf @@ -12,16 +12,10 @@ #library !qt_no_install_library { @@ -772,10 +787,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_installs.prf qtbase privpritarget.files = $$MODULE_PRIVATE_PRI INSTALLS += privpritarget } -diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_plugin.prf qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_plugin.prf ---- qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_plugin.prf 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/mkspecs/features/qt_plugin.prf 2019-07-10 09:35:08.918628595 -0500 -@@ -88,7 +88,7 @@ +diff --git a/mkspecs/features/qt_plugin.prf b/mkspecs/features/qt_plugin.prf +index 40528a65e2..903f795284 100644 +--- a/mkspecs/features/qt_plugin.prf ++++ b/mkspecs/features/qt_plugin.prf +@@ -88,7 +88,7 @@ CONFIG(static, static|shared)|prefix_build { } } @@ -784,9 +800,83 @@ diff -aur qtbase-everywhere-src-5.12.3-a/mkspecs/features/qt_plugin.prf qtbase-e INSTALLS += target TARGET = $$qt5LibraryTarget($$TARGET) -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcoreapplication.cpp qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcoreapplication.cpp ---- qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcoreapplication.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcoreapplication.cpp 2019-07-10 09:35:08.919628625 -0500 +diff --git a/src/corelib/Qt5CoreConfigExtras.cmake.in b/src/corelib/Qt5CoreConfigExtras.cmake.in +index e0652fdcf9..450b2a2d28 100644 +--- a/src/corelib/Qt5CoreConfigExtras.cmake.in ++++ b/src/corelib/Qt5CoreConfigExtras.cmake.in +@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qmake) + add_executable(Qt5::qmake IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -18,7 +18,7 @@ if (NOT TARGET Qt5::moc) + add_executable(Qt5::moc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -35,7 +35,7 @@ if (NOT TARGET Qt5::rcc) + add_executable(Qt5::rcc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -116,7 +116,7 @@ if (NOT TARGET Qt5::WinMain) + !!IF !isEmpty(CMAKE_RELEASE_TYPE) + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ENDIF +@@ -130,7 +130,7 @@ if (NOT TARGET Qt5::WinMain) + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") ++ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ENDIF +diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in +index c357237d0e..6f0c75de3c 100644 +--- a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in ++++ b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +diff --git a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in +index 706304cf34..546420f6ad 100644 +--- a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in ++++ b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp +index 463e30e1c3..0e1ab669e4 100644 +--- a/src/corelib/kernel/qcoreapplication.cpp ++++ b/src/corelib/kernel/qcoreapplication.cpp @@ -2668,6 +2668,15 @@ QStringList *app_libpaths = new QStringList; coreappdata()->app_libpaths.reset(app_libpaths); @@ -803,114 +893,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcoreapplication.cpp QString libPathEnv = qEnvironmentVariable("QT_PLUGIN_PATH"); if (!libPathEnv.isEmpty()) { QStringList paths = libPathEnv.split(QDir::listSeparator(), QString::SkipEmptyParts); -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcore_mac_p.h qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcore_mac_p.h ---- qtbase-everywhere-src-5.12.3-a/src/corelib/kernel/qcore_mac_p.h 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/kernel/qcore_mac_p.h 2019-07-10 09:35:08.920628655 -0500 -@@ -212,7 +212,7 @@ - - // -------------------------------------------------------------------------- - --#if !defined(QT_BOOTSTRAPPED) -+#if 0 - - QT_END_NAMESPACE - #include -@@ -290,7 +290,19 @@ - - #define QT_APPLE_SCOPED_LOG_ACTIVITY(...) QAppleLogActivity scopedLogActivity = QT_APPLE_LOG_ACTIVITY(__VA_ARGS__).enter(); - --#endif // !defined(QT_BOOTSTRAPPED) -+#else // !defined(QT_BOOTSTRAPPED) -+ -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT3(...) -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT2(...) -+#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT(...) -+ -+#define QT_APPLE_LOG_ACTIVITY2(...) -+#define QT_APPLE_LOG_ACTIVITY1(...) -+#define QT_APPLE_LOG_ACTIVITY(...) -+ -+#define QT_APPLE_SCOPED_LOG_ACTIVITY(...) -+ -+#endif - - // ------------------------------------------------------------------------- - -Only in qtbase-everywhere-src-5.12.3-b/src/corelib/kernel: qcore_mac_p.h.orig -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtras.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtras.cmake.in 2019-07-10 09:35:08.918628595 -0500 -@@ -3,7 +3,7 @@ - add_executable(Qt5::qmake IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -18,7 +18,7 @@ - add_executable(Qt5::moc IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -35,7 +35,7 @@ - add_executable(Qt5::rcc IMPORTED) - - !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") - !!ELSE - set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") - !!ENDIF -@@ -116,7 +116,7 @@ - !!IF !isEmpty(CMAKE_RELEASE_TYPE) - set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) - !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") - !!ELSE - set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") - !!ENDIF -@@ -130,7 +130,7 @@ - set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) - - !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) -- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") -+ set(imported_location \"$$NIX_OUTPUT_DEV/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") - !!ELSE - set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") - !!ENDIF -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in 2019-07-10 09:35:08.918628595 -0500 -@@ -1,6 +1,6 @@ - - !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE) --set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") -+set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") - !!ELSE - set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") - !!ENDIF -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in 2019-07-10 09:35:08.918628595 -0500 -@@ -1,6 +1,6 @@ - - !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE) --set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") -+set(_qt5_corelib_extra_includes \"$$NIX_OUTPUT_DEV/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") - !!ELSE - set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") - !!ENDIF -diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.cpp qtbase-everywhere-src-5.12.3-b/src/corelib/tools/qtimezoneprivate_tz.cpp ---- qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/corelib/tools/qtimezoneprivate_tz.cpp 2019-07-10 09:35:08.919628625 -0500 -@@ -70,7 +70,11 @@ +diff --git a/src/corelib/tools/qtimezoneprivate_tz.cpp b/src/corelib/tools/qtimezoneprivate_tz.cpp +index bed62a02bd..73158993f7 100644 +--- a/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ b/src/corelib/tools/qtimezoneprivate_tz.cpp +@@ -70,7 +70,11 @@ typedef QHash QTzTimeZoneHash; // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() { @@ -923,7 +910,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.c if (!QFile::exists(path)) path = QStringLiteral("/usr/lib/zoneinfo/zone.tab"); -@@ -644,12 +648,16 @@ +@@ -644,12 +648,16 @@ void QTzTimeZonePrivate::init(const QByteArray &ianaId) if (!tzif.open(QIODevice::ReadOnly)) return; } else { @@ -945,9 +932,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/corelib/tools/qtimezoneprivate_tz.c } } -diff -aur qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/dbus/Qt5DBusConfigExtras.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/dbus/Qt5DBusConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 +diff --git a/src/dbus/Qt5DBusConfigExtras.cmake.in b/src/dbus/Qt5DBusConfigExtras.cmake.in +index 1d947159e2..b36865fc48 100644 +--- a/src/dbus/Qt5DBusConfigExtras.cmake.in ++++ b/src/dbus/Qt5DBusConfigExtras.cmake.in @@ -2,11 +2,7 @@ if (NOT TARGET Qt5::qdbuscpp2xml) add_executable(Qt5::qdbuscpp2xml IMPORTED) @@ -961,7 +949,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in q _qt5_DBus_check_file_exists(${imported_location}) set_target_properties(Qt5::qdbuscpp2xml PROPERTIES -@@ -17,11 +13,7 @@ +@@ -17,11 +13,7 @@ endif() if (NOT TARGET Qt5::qdbusxml2cpp) add_executable(Qt5::qdbusxml2cpp IMPORTED) @@ -974,9 +962,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/dbus/Qt5DBusConfigExtras.cmake.in q _qt5_DBus_check_file_exists(${imported_location}) set_target_properties(Qt5::qdbusxml2cpp PROPERTIES -diff -aur qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/gui/Qt5GuiConfigExtras.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/gui/Qt5GuiConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 +diff --git a/src/gui/Qt5GuiConfigExtras.cmake.in b/src/gui/Qt5GuiConfigExtras.cmake.in +index 07869efd7d..fb4183bada 100644 +--- a/src/gui/Qt5GuiConfigExtras.cmake.in ++++ b/src/gui/Qt5GuiConfigExtras.cmake.in @@ -2,7 +2,7 @@ !!IF !isEmpty(CMAKE_ANGLE_EGL_DLL_RELEASE) @@ -986,7 +975,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in qtb !!ELSE set(Qt5Gui_EGL_INCLUDE_DIRS \"$$CMAKE_INCLUDE_DIR/QtANGLE\") !!ENDIF -@@ -17,13 +17,13 @@ +@@ -17,13 +17,13 @@ macro(_populate_qt5gui_gl_target_properties TargetName Configuration LIB_LOCATIO set_property(TARGET Qt5::${TargetName} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) @@ -1002,10 +991,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/gui/Qt5GuiConfigExtras.cmake.in qtb !!ELSE set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") !!ENDIF -diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ---- qtbase-everywhere-src-5.12.3-a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp 2019-07-10 09:35:08.919628625 -0500 -@@ -265,12 +265,9 @@ +diff --git a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +index b5a0a5bbeb..6c20305f4d 100644 +--- a/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp ++++ b/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp +@@ -265,12 +265,9 @@ void TableGenerator::initPossibleLocations() m_possibleLocations.reserve(7); if (qEnvironmentVariableIsSet("QTCOMPOSE")) m_possibleLocations.append(QString::fromLocal8Bit(qgetenv("QTCOMPOSE"))); @@ -1019,10 +1009,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforminputcontexts/compo } QString TableGenerator::findComposeFile() -diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforms/xcb/qxcbcursor.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb/qxcbcursor.cpp ---- qtbase-everywhere-src-5.12.3-a/src/plugins/platforms/xcb/qxcbcursor.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb/qxcbcursor.cpp 2019-07-10 09:35:08.919628625 -0500 -@@ -317,10 +317,10 @@ +diff --git a/src/plugins/platforms/xcb/qxcbcursor.cpp b/src/plugins/platforms/xcb/qxcbcursor.cpp +index 57629ac03a..8a7f219a98 100644 +--- a/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ b/src/plugins/platforms/xcb/qxcbcursor.cpp +@@ -316,10 +316,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *conn, QXcbScreen *screen) #if QT_CONFIG(xcb_xlib) && QT_CONFIG(library) static bool function_ptrs_not_initialized = true; if (function_ptrs_not_initialized) { @@ -1035,10 +1026,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platforms/xcb/qxcbcursor.cp xcursorFound = xcursorLib.load(); } if (xcursorFound) { -Only in qtbase-everywhere-src-5.12.3-b/src/plugins/platforms/xcb: qxcbcursor.cpp.orig -diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cpp qtbase-everywhere-src-5.12.3-b/src/plugins/platformthemes/gtk3/main.cpp ---- qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/plugins/platformthemes/gtk3/main.cpp 2019-07-10 09:35:08.919628625 -0500 +diff --git a/src/plugins/platformthemes/gtk3/main.cpp b/src/plugins/platformthemes/gtk3/main.cpp +index fb1c425d8e..bb8bab9795 100644 +--- a/src/plugins/platformthemes/gtk3/main.cpp ++++ b/src/plugins/platformthemes/gtk3/main.cpp @@ -39,6 +39,7 @@ #include @@ -1047,7 +1038,7 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cp QT_BEGIN_NAMESPACE -@@ -54,8 +55,22 @@ +@@ -54,8 +55,22 @@ public: QPlatformTheme *QGtk3ThemePlugin::create(const QString &key, const QStringList ¶ms) { Q_UNUSED(params); @@ -1071,21 +1062,10 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/plugins/platformthemes/gtk3/main.cp return 0; } -diff -aur qtbase-everywhere-src-5.12.3-a/src/testlib/qappletestlogger.cpp qtbase-everywhere-src-5.12.3-b/src/testlib/qappletestlogger.cpp ---- qtbase-everywhere-src-5.12.3-a/src/testlib/qappletestlogger.cpp 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/testlib/qappletestlogger.cpp 2019-07-10 09:35:08.920628655 -0500 -@@ -43,7 +43,7 @@ - - QT_BEGIN_NAMESPACE - --#if defined(QT_USE_APPLE_UNIFIED_LOGGING) -+#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 - - using namespace QTestPrivate; - -diff -aur qtbase-everywhere-src-5.12.3-a/src/testlib/qtestassert.h qtbase-everywhere-src-5.12.3-b/src/testlib/qtestassert.h ---- qtbase-everywhere-src-5.12.3-a/src/testlib/qtestassert.h 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/testlib/qtestassert.h 2019-07-10 09:35:08.919628625 -0500 +diff --git a/src/testlib/qtestassert.h b/src/testlib/qtestassert.h +index 6498ea84ef..d821ced7fc 100644 +--- a/src/testlib/qtestassert.h ++++ b/src/testlib/qtestassert.h @@ -44,10 +44,13 @@ QT_BEGIN_NAMESPACE @@ -1102,10 +1082,11 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/testlib/qtestassert.h qtbase-everyw QT_END_NAMESPACE -diff -aur qtbase-everywhere-src-5.12.3-a/src/widgets/Qt5WidgetsConfigExtras.cmake.in qtbase-everywhere-src-5.12.3-b/src/widgets/Qt5WidgetsConfigExtras.cmake.in ---- qtbase-everywhere-src-5.12.3-a/src/widgets/Qt5WidgetsConfigExtras.cmake.in 2019-04-09 04:51:26.000000000 -0500 -+++ qtbase-everywhere-src-5.12.3-b/src/widgets/Qt5WidgetsConfigExtras.cmake.in 2019-07-10 09:35:08.919628625 -0500 -@@ -3,7 +3,7 @@ +diff --git a/src/widgets/Qt5WidgetsConfigExtras.cmake.in b/src/widgets/Qt5WidgetsConfigExtras.cmake.in +index 99d87e2e46..a4eab2aa72 100644 +--- a/src/widgets/Qt5WidgetsConfigExtras.cmake.in ++++ b/src/widgets/Qt5WidgetsConfigExtras.cmake.in +@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::uic) add_executable(Qt5::uic IMPORTED) !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) @@ -1114,3 +1095,63 @@ diff -aur qtbase-everywhere-src-5.12.3-a/src/widgets/Qt5WidgetsConfigExtras.cmak !!ELSE set(imported_location \"$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\") !!ENDIF +diff --git a/src/corelib/kernel/qcore_mac_p.h b/src/corelib/kernel/qcore_mac_p.h +index b14a494296..779c4eda95 100644 +--- a/src/corelib/kernel/qcore_mac_p.h ++++ b/src/corelib/kernel/qcore_mac_p.h +@@ -211,7 +211,7 @@ private: + + // -------------------------------------------------------------------------- + +-#if !defined(QT_BOOTSTRAPPED) ++#if 0 + + QT_END_NAMESPACE + #include +@@ -289,7 +289,19 @@ QT_MAC_WEAK_IMPORT(_os_activity_current); + + #define QT_APPLE_SCOPED_LOG_ACTIVITY(...) QAppleLogActivity scopedLogActivity = QT_APPLE_LOG_ACTIVITY(__VA_ARGS__).enter(); + +-#endif // !defined(QT_BOOTSTRAPPED) ++#else // !defined(QT_BOOTSTRAPPED) ++ ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT3(...) ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT2(...) ++#define QT_APPLE_LOG_ACTIVITY_WITH_PARENT(...) ++ ++#define QT_APPLE_LOG_ACTIVITY2(...) ++#define QT_APPLE_LOG_ACTIVITY1(...) ++#define QT_APPLE_LOG_ACTIVITY(...) ++ ++#define QT_APPLE_SCOPED_LOG_ACTIVITY(...) ++ ++#endif + + // ------------------------------------------------------------------------- + +diff --git a/src/testlib/qappletestlogger.cpp b/src/testlib/qappletestlogger.cpp +index 2c1005ad80..244147ea7d 100644 +--- a/src/testlib/qappletestlogger.cpp ++++ b/src/testlib/qappletestlogger.cpp +@@ -43,7 +43,7 @@ + + QT_BEGIN_NAMESPACE + +-#if defined(QT_USE_APPLE_UNIFIED_LOGGING) ++#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 + + using namespace QTestPrivate; + +diff --git a/src/testlib/qtestlog.cpp b/src/testlib/qtestlog.cpp +index 1268730cc6..a50e9b0764 100644 +--- a/src/testlib/qtestlog.cpp ++++ b/src/testlib/qtestlog.cpp +@@ -524,7 +524,7 @@ void QTestLog::addLogger(LogMode mode, const char *filename) + #endif + } + +-#if defined(QT_USE_APPLE_UNIFIED_LOGGING) ++#if defined(QT_USE_APPLE_UNIFIED_LOGGING) && 0 + // Logger that also feeds messages to AUL. It needs to wrap the existing + // logger, as it needs to be able to short circuit the existing logger + // in case AUL prints to stderr. From bf39fc17d46b48e3883dd646bc0ecc0ccfb67df4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sun, 28 Jul 2019 11:19:44 +0200 Subject: [PATCH 1169/1611] Revert "qt 5.12.0 -> 5.12.3" Segmentation faults. See https://github.com/NixOS/nixpkgs/issues/65448 This reverts commit 552803f6f56b503536e77c3bc6bb28ac0375a5f1. --- .../libraries/qt-5/5.12/default.nix | 1 + pkgs/development/libraries/qt-5/5.12/fetch.sh | 2 +- .../libraries/qt-5/5.12/qtbase.patch | 49 ++- .../qt-5/5.12/qtwebengine-CVE-2019-5786.patch | 26 ++ pkgs/development/libraries/qt-5/5.12/srcs.nix | 320 +++++++++--------- .../libraries/qt-5/modules/qtbase.nix | 31 +- pkgs/top-level/all-packages.nix | 2 +- 7 files changed, 215 insertions(+), 216 deletions(-) create mode 100644 pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch diff --git a/pkgs/development/libraries/qt-5/5.12/default.nix b/pkgs/development/libraries/qt-5/5.12/default.nix index 186e154597f..1fbf7b57289 100644 --- a/pkgs/development/libraries/qt-5/5.12/default.nix +++ b/pkgs/development/libraries/qt-5/5.12/default.nix @@ -60,6 +60,7 @@ let qtserialport = [ ./qtserialport.patch ]; qtwebengine = [ ./qtwebengine-no-build-skip.patch + ./qtwebengine-CVE-2019-5786.patch ] ++ optional stdenv.isDarwin ./qtwebengine-darwin-no-platform-check.patch; qtwebkit = [ ./qtwebkit.patch ] diff --git a/pkgs/development/libraries/qt-5/5.12/fetch.sh b/pkgs/development/libraries/qt-5/5.12/fetch.sh index a4d2fc82ff2..aa3a0fe9489 100644 --- a/pkgs/development/libraries/qt-5/5.12/fetch.sh +++ b/pkgs/development/libraries/qt-5/5.12/fetch.sh @@ -1 +1 @@ -WGET_ARGS=( http://download.qt.io/official_releases/qt/5.12/5.12.3/submodules/ ) +WGET_ARGS=( http://download.qt.io/official_releases/qt/5.12/5.12.0/submodules/ ) diff --git a/pkgs/development/libraries/qt-5/5.12/qtbase.patch b/pkgs/development/libraries/qt-5/5.12/qtbase.patch index a3b4e438fe8..aa987acbe92 100644 --- a/pkgs/development/libraries/qt-5/5.12/qtbase.patch +++ b/pkgs/development/libraries/qt-5/5.12/qtbase.patch @@ -2,7 +2,7 @@ diff --git a/mkspecs/common/mac.conf b/mkspecs/common/mac.conf index 61bea952b2..9909dae726 100644 --- a/mkspecs/common/mac.conf +++ b/mkspecs/common/mac.conf -@@ -24,7 +24,7 @@ QMAKE_INCDIR_OPENGL = \ +@@ -23,7 +23,7 @@ QMAKE_INCDIR_OPENGL = \ QMAKE_FIX_RPATH = install_name_tool -id @@ -90,7 +90,7 @@ index 2ed708e085..05e60ff45f 100644 INSTALLS += cmake_qt5_plugin_file return() -@@ -318,7 +293,7 @@ exists($$cmake_macros_file.input) { +@@ -316,7 +291,7 @@ exists($$cmake_macros_file.input) { cmake_qt5_module_files.files += $$cmake_macros_file.output } @@ -263,14 +263,15 @@ diff --git a/mkspecs/features/mac/default_post.prf b/mkspecs/features/mac/defaul index 99f68b78f5..dde69cb7c2 100644 --- a/mkspecs/features/mac/default_post.prf +++ b/mkspecs/features/mac/default_post.prf -@@ -64,202 +64,6 @@ +@@ -63,199 +63,3 @@ qt { + } } } - +- -# Add the same default rpaths as Xcode does for new projects. -# This is especially important for iOS/tvOS/watchOS where no other option is possible. -!no_default_rpath { -- QMAKE_RPATHDIR += @executable_path/../Frameworks +- QMAKE_RPATHDIR += @executable_path/Frameworks - equals(TEMPLATE, lib):!plugin:lib_bundle: QMAKE_RPATHDIR += @loader_path/Frameworks -} - @@ -462,10 +463,6 @@ index 99f68b78f5..dde69cb7c2 100644 - xcode_product_bundle_target = ${PRODUCT_NAME:rfc1034identifier} -xcode_product_bundle_identifier_setting.value = "$${xcode_product_bundle_identifier_setting.value}.$${xcode_product_bundle_target}" -QMAKE_MAC_XCODE_SETTINGS += xcode_product_bundle_identifier_setting -- - !macx-xcode { - generate_xcode_project.commands = @$(QMAKE) -spec macx-xcode $(EXPORT__PRO_FILE_) - generate_xcode_project.target = xcodeproj diff --git a/mkspecs/features/mac/default_pre.prf b/mkspecs/features/mac/default_pre.prf index e3534561a5..3b01424e67 100644 --- a/mkspecs/features/mac/default_pre.prf @@ -535,7 +532,7 @@ diff --git a/mkspecs/features/mac/sdk.prf b/mkspecs/features/mac/sdk.prf index 8360dd8b38..8b13789179 100644 --- a/mkspecs/features/mac/sdk.prf +++ b/mkspecs/features/mac/sdk.prf -@@ -1,54 +1 @@ +@@ -1,58 +1 @@ -isEmpty(QMAKE_MAC_SDK): \ - error("QMAKE_MAC_SDK must be set when using CONFIG += sdk.") @@ -571,6 +568,10 @@ index 8360dd8b38..8b13789179 100644 -QMAKE_MAC_SDK_PLATFORM_PATH = $$xcodeSDKInfo(PlatformPath) -QMAKE_MAC_SDK_VERSION = $$xcodeSDKInfo(SDKVersion) - +-sysrootified = +-for(val, QMAKE_INCDIR_OPENGL): sysrootified += $${QMAKE_MAC_SDK_PATH}$$val +-QMAKE_INCDIR_OPENGL = $$sysrootified +- -QMAKESPEC_NAME = $$basename(QMAKESPEC) - -# Resolve SDK version of various tools @@ -594,24 +595,24 @@ diff --git a/mkspecs/features/qml_module.prf b/mkspecs/features/qml_module.prf index 65212b2abf..accd4c07f0 100644 --- a/mkspecs/features/qml_module.prf +++ b/mkspecs/features/qml_module.prf -@@ -54,7 +54,7 @@ - - qmldir.files = $$qmldir_file +@@ -52,7 +52,7 @@ qmldir.base = $$_PRO_FILE_PWD_ + # Tools need qmldir and plugins.qmltypes always installed on the file system + qmldir.files = $$qmldir_file $$fq_aux_qml_files install_qml_files: qmldir.files += $$fq_qml_files --qmldir.path = $$[QT_INSTALL_QML]/$$TARGETPATH +-qmldir.path = $$instbase/$$TARGETPATH +qmldir.path = $$NIX_OUTPUT_QML/$$TARGETPATH INSTALLS += qmldir - qmlfiles.base = $$_PRO_FILE_PWD_ + !debug_and_release|!build_all|CONFIG(release, debug|release) { diff --git a/mkspecs/features/qml_plugin.prf b/mkspecs/features/qml_plugin.prf index cd6377dcc6..e98bf98151 100644 --- a/mkspecs/features/qml_plugin.prf +++ b/mkspecs/features/qml_plugin.prf -@@ -50,7 +50,7 @@ +@@ -56,7 +56,7 @@ qml1_target { + instbase = $$[QT_INSTALL_QML] + } - DESTDIR = $$MODULE_BASE_OUTDIR/qml/$$TARGETPATH - --target.path = $$[QT_INSTALL_QML]/$$TARGETPATH +-target.path = $$instbase/$$TARGETPATH +target.path = $$NIX_OUTPUT_QML/$$TARGETPATH INSTALLS += target @@ -745,7 +746,7 @@ index 8f98987b99..21b3bb8b32 100644 !static: target.CONFIG = no_dll INSTALLS += target } -@@ -29,35 +23,35 @@ +@@ -29,33 +23,33 @@ #headers qt_install_headers { gen_headers.files = $$SYNCQT.GENERATED_HEADER_FILES @@ -761,8 +762,6 @@ index 8f98987b99..21b3bb8b32 100644 private_headers.files = $$SYNCQT.PRIVATE_HEADER_FILES $$SYNCQT.INJECTED_PRIVATE_HEADER_FILES - private_headers.path = $$[QT_INSTALL_HEADERS]/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private + private_headers.path = $$NIX_OUTPUT_DEV/include/$$MODULE_INCNAME/$$VERSION/$$MODULE_INCNAME/private - generated_privates: \ - private_headers.CONFIG += no_check_exist INSTALLS += private_headers qpa_headers.files = $$SYNCQT.QPA_HEADER_FILES @@ -877,7 +876,7 @@ diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcorea index 463e30e1c3..0e1ab669e4 100644 --- a/src/corelib/kernel/qcoreapplication.cpp +++ b/src/corelib/kernel/qcoreapplication.cpp -@@ -2668,6 +2668,15 @@ +@@ -2665,6 +2665,15 @@ QStringList QCoreApplication::libraryPaths() QStringList *app_libpaths = new QStringList; coreappdata()->app_libpaths.reset(app_libpaths); @@ -890,9 +889,9 @@ index 463e30e1c3..0e1ab669e4 100644 + } + } + - QString libPathEnv = qEnvironmentVariable("QT_PLUGIN_PATH"); + const QByteArray libPathEnv = qgetenv("QT_PLUGIN_PATH"); if (!libPathEnv.isEmpty()) { - QStringList paths = libPathEnv.split(QDir::listSeparator(), QString::SkipEmptyParts); + QStringList paths = QFile::decodeName(libPathEnv).split(QDir::listSeparator(), QString::SkipEmptyParts); diff --git a/src/corelib/tools/qtimezoneprivate_tz.cpp b/src/corelib/tools/qtimezoneprivate_tz.cpp index bed62a02bd..73158993f7 100644 --- a/src/corelib/tools/qtimezoneprivate_tz.cpp diff --git a/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch b/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch new file mode 100644 index 00000000000..ec9a432ea70 --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.12/qtwebengine-CVE-2019-5786.patch @@ -0,0 +1,26 @@ +--- a/src/3rdparty/chromium/third_party/blink/renderer/core/fileapi/file_reader_loader.cc ++++ b/src/3rdparty/chromium/third_party/blink/renderer/core/fileapi/file_reader_loader.cc +@@ -135,14 +135,16 @@ + if (!raw_data_ || error_code_) + return nullptr; + +- DOMArrayBuffer* result = DOMArrayBuffer::Create(raw_data_->ToArrayBuffer()); +- if (finished_loading_) { +- array_buffer_result_ = result; +- AdjustReportedMemoryUsageToV8( +- -1 * static_cast(raw_data_->ByteLength())); +- raw_data_.reset(); ++ if (!finished_loading_) { ++ return DOMArrayBuffer::Create( ++ ArrayBuffer::Create(raw_data_->Data(), raw_data_->ByteLength())); + } +- return result; ++ array_buffer_result_ = DOMArrayBuffer::Create(raw_data_->ToArrayBuffer()); ++ AdjustReportedMemoryUsageToV8(-1 * ++ static_cast(raw_data_->ByteLength())); ++ ++ raw_data_.reset(); ++ return array_buffer_result_; + } + + String FileReaderLoader::StringResult() { diff --git a/pkgs/development/libraries/qt-5/5.12/srcs.nix b/pkgs/development/libraries/qt-5/5.12/srcs.nix index ce567c3a2bc..d83edc97e94 100644 --- a/pkgs/development/libraries/qt-5/5.12/srcs.nix +++ b/pkgs/development/libraries/qt-5/5.12/srcs.nix @@ -3,323 +3,323 @@ { qt3d = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qt3d-everywhere-src-5.12.3.tar.xz"; - sha256 = "8997f07c816bbc6dd43fc2171801178bc65e704d35039998530cfa49837eaa7d"; - name = "qt3d-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qt3d-everywhere-src-5.12.0.tar.xz"; + sha256 = "1nii8qz8791ripmqd158qah40j2dj50zn7lmqksqz8gz2jfdqam1"; + name = "qt3d-everywhere-src-5.12.0.tar.xz"; }; }; qtactiveqt = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtactiveqt-everywhere-src-5.12.3.tar.xz"; - sha256 = "15a5fde0a069f402bea9f422d8d2c46af440d202122c6307c2a6be642d20dc0f"; - name = "qtactiveqt-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtactiveqt-everywhere-src-5.12.0.tar.xz"; + sha256 = "0gkdx3mc6ysqlf0ci77kf9c961dc9sbi4j3z5q237d1w4js7ca52"; + name = "qtactiveqt-everywhere-src-5.12.0.tar.xz"; }; }; qtandroidextras = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtandroidextras-everywhere-src-5.12.3.tar.xz"; - sha256 = "866b3fbcfc2cbebdb83b5adec4e5d0bd29b0e0b0762d66fb3fef0b400e37254f"; - name = "qtandroidextras-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtandroidextras-everywhere-src-5.12.0.tar.xz"; + sha256 = "0s083ngvya8bknp0bvgb3hyk6zr8shg8rmkzn98956dqz0xs3agm"; + name = "qtandroidextras-everywhere-src-5.12.0.tar.xz"; }; }; qtbase = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtbase-everywhere-src-5.12.3.tar.xz"; - sha256 = "fddfd8852ef7503febeed67b876d1425160869ae2b1ae8e10b3fb0fedc5fe701"; - name = "qtbase-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtbase-everywhere-src-5.12.0.tar.xz"; + sha256 = "1jzfx8c0hzch0kmz2m4vkn65s7ikiymnm29lsymil4hfg0fj40sy"; + name = "qtbase-everywhere-src-5.12.0.tar.xz"; }; }; qtcanvas3d = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtcanvas3d-everywhere-src-5.12.3.tar.xz"; - sha256 = "c0821f1232c6bcd00648af9a5d1eade8e0397c6bfff60621e0fcdfc75561baea"; - name = "qtcanvas3d-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtcanvas3d-everywhere-src-5.12.0.tar.xz"; + sha256 = "0a61z5amp409aq9v7j0fyk003fbz2i247idl7lgfbl4qqh0ry6xj"; + name = "qtcanvas3d-everywhere-src-5.12.0.tar.xz"; }; }; qtcharts = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtcharts-everywhere-src-5.12.3.tar.xz"; - sha256 = "820c94b2bf5d73e921fe99be1e3a03a6f012d96574a08e504d68db237522b3a9"; - name = "qtcharts-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtcharts-everywhere-src-5.12.0.tar.xz"; + sha256 = "0l6lrrwqbqaf6agsghaw4ysm2vb6b4n9j5lgrs1i0q8h9i51rmww"; + name = "qtcharts-everywhere-src-5.12.0.tar.xz"; }; }; qtconnectivity = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtconnectivity-everywhere-src-5.12.3.tar.xz"; - sha256 = "01518cee71a8d53b9c2387f8c7facbcc2c4d63ab3b79462edfa06ba3bfeae661"; - name = "qtconnectivity-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtconnectivity-everywhere-src-5.12.0.tar.xz"; + sha256 = "1912a4my72wcqmmdyj24wkwq9p9ih4gzzzvgiq75pfwyhnxa3g4f"; + name = "qtconnectivity-everywhere-src-5.12.0.tar.xz"; }; }; qtdatavis3d = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdatavis3d-everywhere-src-5.12.3.tar.xz"; - sha256 = "f6d073c4575542f8ff6de3ac3b6e8dde6ae2d87e98119de7a13bc984aa967313"; - name = "qtdatavis3d-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdatavis3d-everywhere-src-5.12.0.tar.xz"; + sha256 = "0czlj088gf2r6w5ahh0p8n36lbwmds86mxqijshmhzax5cspxnjf"; + name = "qtdatavis3d-everywhere-src-5.12.0.tar.xz"; }; }; qtdeclarative = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdeclarative-everywhere-src-5.12.3.tar.xz"; - sha256 = "839881cd6996e35c351bc7d560372ebb91e61f3688957c33248c4f31ea007fa7"; - name = "qtdeclarative-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdeclarative-everywhere-src-5.12.0.tar.xz"; + sha256 = "0yr29hm3bqlwxcmna0bzyxw8k4hw3x8k3k4iiw2sw52p5c85izag"; + name = "qtdeclarative-everywhere-src-5.12.0.tar.xz"; }; }; qtdoc = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtdoc-everywhere-src-5.12.3.tar.xz"; - sha256 = "ce5e9d0f48d108c48d742ab2127ead735270d7b525103c6cf409683d7fc8334f"; - name = "qtdoc-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtdoc-everywhere-src-5.12.0.tar.xz"; + sha256 = "1k8caa1nmc9nrhb29vq1qzaz608klnjxy509w6ppxlzz2zbpcr9h"; + name = "qtdoc-everywhere-src-5.12.0.tar.xz"; }; }; qtgamepad = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtgamepad-everywhere-src-5.12.3.tar.xz"; - sha256 = "5d046869e9646912936e3622efa755d85ccc8eddba91f5b12880cfb5e6489642"; - name = "qtgamepad-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtgamepad-everywhere-src-5.12.0.tar.xz"; + sha256 = "14b0np15gm5lzvip33pg6w9dfs065wwdfz18na28bhbxj6wh06ac"; + name = "qtgamepad-everywhere-src-5.12.0.tar.xz"; }; }; qtgraphicaleffects = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtgraphicaleffects-everywhere-src-5.12.3.tar.xz"; - sha256 = "772c98a009cc82ac290f868906c5aa719e4608ef3c5905d69ef7402b15924a73"; - name = "qtgraphicaleffects-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtgraphicaleffects-everywhere-src-5.12.0.tar.xz"; + sha256 = "0m9l031zhw8il66ld8bj1lwqlc2xx89nl6dvssz1kl2d5nqqy1c1"; + name = "qtgraphicaleffects-everywhere-src-5.12.0.tar.xz"; }; }; qtimageformats = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtimageformats-everywhere-src-5.12.3.tar.xz"; - sha256 = "db5a9e784f9c327c1e6830b1550311024cc91202d3b8dde82cd0944164298be2"; - name = "qtimageformats-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtimageformats-everywhere-src-5.12.0.tar.xz"; + sha256 = "0bkkk5skpplwfbqv7g41rhgynyxs3khvf8gk2rl2gdixdplpv42z"; + name = "qtimageformats-everywhere-src-5.12.0.tar.xz"; }; }; qtlocation = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtlocation-everywhere-src-5.12.3.tar.xz"; - sha256 = "52d589be2852ada0c000b06cc411b61e521cd0797470be567fd1625bcc9d75c6"; - name = "qtlocation-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtlocation-everywhere-src-5.12.0.tar.xz"; + sha256 = "0ja4cwj59y1xhwwf4f5gzr0fdrrsxbh14g2x812n03x0yd6i78xh"; + name = "qtlocation-everywhere-src-5.12.0.tar.xz"; }; }; qtmacextras = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtmacextras-everywhere-src-5.12.3.tar.xz"; - sha256 = "38dedd29d07ea9e4e92a7ef28f9e03c06cf9a1525aee4f8084310c519f5b47ed"; - name = "qtmacextras-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtmacextras-everywhere-src-5.12.0.tar.xz"; + sha256 = "00xhkj66i3srwmzzin1mcx9m94l5ns08f93c1za3wl23ani7n2nr"; + name = "qtmacextras-everywhere-src-5.12.0.tar.xz"; }; }; qtmultimedia = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtmultimedia-everywhere-src-5.12.3.tar.xz"; - sha256 = "a30beeb37fb284d93522e29c01fb8d12726f40e9248e80b70b1f8ab60197a301"; - name = "qtmultimedia-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtmultimedia-everywhere-src-5.12.0.tar.xz"; + sha256 = "1a96x6c2w9rs6vfsdcnzmmad4w32dxy2dvismldcwmwcq2whqjsw"; + name = "qtmultimedia-everywhere-src-5.12.0.tar.xz"; }; }; qtnetworkauth = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtnetworkauth-everywhere-src-5.12.3.tar.xz"; - sha256 = "dd6bf334be29fb82adaeecb184779328b4ad33a069528b9954d9c07f2d889332"; - name = "qtnetworkauth-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtnetworkauth-everywhere-src-5.12.0.tar.xz"; + sha256 = "0x877ra8375pf8d8p6hgdkyw8yzjqfca6rgki6vi1q8fyi31j4a1"; + name = "qtnetworkauth-everywhere-src-5.12.0.tar.xz"; }; }; qtpurchasing = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtpurchasing-everywhere-src-5.12.3.tar.xz"; - sha256 = "a848f1e1022af38571f5ab0c4ec4b904c12fa6ef19154d44abbcaeb35156753e"; - name = "qtpurchasing-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtpurchasing-everywhere-src-5.12.0.tar.xz"; + sha256 = "1nk0dp247v1rfbnj84g99zsj6iv86pq32f478r92adz9qcgfs2yr"; + name = "qtpurchasing-everywhere-src-5.12.0.tar.xz"; }; }; qtquickcontrols = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols-everywhere-src-5.12.3.tar.xz"; - sha256 = "68ae03b35eaa44a24c3f663b842252053c9f2b00b18841fd39ff7d2150986f46"; - name = "qtquickcontrols-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtquickcontrols-everywhere-src-5.12.0.tar.xz"; + sha256 = "0wyd24aphpixi3k9vbxw73z3dy1xnf8hwc99wimr5mpf1cj67yrb"; + name = "qtquickcontrols-everywhere-src-5.12.0.tar.xz"; }; }; qtquickcontrols2 = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtquickcontrols2-everywhere-src-5.12.3.tar.xz"; - sha256 = "e855e8369c3cb5a2ebcd2028a2a195ba73945fd9d5bc26134706c2fa14e99b3a"; - name = "qtquickcontrols2-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtquickcontrols2-everywhere-src-5.12.0.tar.xz"; + sha256 = "1ikxj32rd9pipnrz81l5ln700lnw8w6bx573w01x424sx0p7wxw9"; + name = "qtquickcontrols2-everywhere-src-5.12.0.tar.xz"; }; }; qtremoteobjects = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtremoteobjects-everywhere-src-5.12.3.tar.xz"; - sha256 = "3475a409127739930e0bf833cea5f7f605adc66ab25fac39b72ce4bf3039cc42"; - name = "qtremoteobjects-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtremoteobjects-everywhere-src-5.12.0.tar.xz"; + sha256 = "0pwx2m17yw1qqv8qigfndgj1yd5kq8w5cbiaqlw4zdk1m6jd0h09"; + name = "qtremoteobjects-everywhere-src-5.12.0.tar.xz"; }; }; qtscript = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtscript-everywhere-src-5.12.3.tar.xz"; - sha256 = "0f37bf032a2370bd08667aad053f5a57717ea49596c16bf6cfb32b0d6e5c1f9e"; - name = "qtscript-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtscript-everywhere-src-5.12.0.tar.xz"; + sha256 = "1a7ziipvy8cfmrpw2b868167sw21zrqhfv2la0w9vs6hwli1mzlp"; + name = "qtscript-everywhere-src-5.12.0.tar.xz"; }; }; qtscxml = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtscxml-everywhere-src-5.12.3.tar.xz"; - sha256 = "70c4b1f8e23560cf54e69aeb3ded4078434e6f78e1b9573fbad1ddace5fc4b19"; - name = "qtscxml-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtscxml-everywhere-src-5.12.0.tar.xz"; + sha256 = "0syx3bx9pxxrsxanfv245ifppjhbj7sbrndh8il86xlrcr9cwvnw"; + name = "qtscxml-everywhere-src-5.12.0.tar.xz"; }; }; qtsensors = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtsensors-everywhere-src-5.12.3.tar.xz"; - sha256 = "7f63fedf60fdf110a3fc529568c7226d7acd59cc5eaee908f4d5a969e34005fc"; - name = "qtsensors-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtsensors-everywhere-src-5.12.0.tar.xz"; + sha256 = "19n5vlx0j5a0h86mpgs86qzsxbyq8fcrls7yqnjdaw0zga234cf5"; + name = "qtsensors-everywhere-src-5.12.0.tar.xz"; }; }; qtserialbus = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtserialbus-everywhere-src-5.12.3.tar.xz"; - sha256 = "792cd2d411d2ebd737f5d09580f8db479cd35f2f7e7cedb4412075ef20fcfe4d"; - name = "qtserialbus-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtserialbus-everywhere-src-5.12.0.tar.xz"; + sha256 = "16imi82v17n18a5m0i2fcfj6hqdpnzn2z9kdcf6a8h93fv4qd4kb"; + name = "qtserialbus-everywhere-src-5.12.0.tar.xz"; }; }; qtserialport = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtserialport-everywhere-src-5.12.3.tar.xz"; - sha256 = "1faf7df4a1f9028bef1ce79330badb4e5cbbba9f717c53cafc5aea41eed1de51"; - name = "qtserialport-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtserialport-everywhere-src-5.12.0.tar.xz"; + sha256 = "1fx9fm0418jq05j2hlb52lblq8nr4m0hj8sizi86p708jmb01m2r"; + name = "qtserialport-everywhere-src-5.12.0.tar.xz"; }; }; qtspeech = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtspeech-everywhere-src-5.12.3.tar.xz"; - sha256 = "ed211822765744553fb5abeb97058420668b18a50d985061d949a0e068ee64f5"; - name = "qtspeech-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtspeech-everywhere-src-5.12.0.tar.xz"; + sha256 = "1yx4wahl7iaj6lgpvnw8pdi2q4wc2fkpzfidd3j1bc98wpna4f8r"; + name = "qtspeech-everywhere-src-5.12.0.tar.xz"; }; }; qtsvg = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtsvg-everywhere-src-5.12.3.tar.xz"; - sha256 = "f666438dbf6816b7534e539b95e3fa4405f11d7e2e2bbcde34f2db5ae0f27dc2"; - name = "qtsvg-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtsvg-everywhere-src-5.12.0.tar.xz"; + sha256 = "1kpvqd0p7dblgh26p3a99npqr0wmyg5yv0dcmf78ssrvsy58vrpb"; + name = "qtsvg-everywhere-src-5.12.0.tar.xz"; }; }; qttools = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qttools-everywhere-src-5.12.3.tar.xz"; - sha256 = "c9e92d2f0d369e44bb1a60e9fa6d970f8d9893d653212305e04be5e6daec2cd8"; - name = "qttools-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qttools-everywhere-src-5.12.0.tar.xz"; + sha256 = "1hyschrj568h65m3kl35xqz25hpk61vr98r08375vkavdr5y6k2p"; + name = "qttools-everywhere-src-5.12.0.tar.xz"; }; }; qttranslations = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qttranslations-everywhere-src-5.12.3.tar.xz"; - sha256 = "eefcec0a91c302548f9d948a138b8ec77d78570ce818931bd8475b1bff1205ca"; - name = "qttranslations-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qttranslations-everywhere-src-5.12.0.tar.xz"; + sha256 = "023m68vdjj75xnbpc1jflyg85amnjc9i6nwv650k0w4n1dp1hksv"; + name = "qttranslations-everywhere-src-5.12.0.tar.xz"; }; }; qtvirtualkeyboard = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz"; - sha256 = "7b83af4527310de4ab81146622f3a46677daabf05556d0e33a2e25ca2aa13b22"; - name = "qtvirtualkeyboard-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz"; + sha256 = "1nnns0i577zda6qxxd7pxcy06dq0y7lnni8ghn4adh9yl6dvi4yv"; + name = "qtvirtualkeyboard-everywhere-src-5.12.0.tar.xz"; }; }; qtwayland = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwayland-everywhere-src-5.12.3.tar.xz"; - sha256 = "f0b45ad84180730e2d5a1249eb20c6357869b4b78f45eb266c2f2b17f77d86ff"; - name = "qtwayland-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwayland-everywhere-src-5.12.0.tar.xz"; + sha256 = "1mvyv4wkcxj4h3q0mqw53zb1d0pahf8mz3r29kckadvk64djsp2m"; + name = "qtwayland-everywhere-src-5.12.0.tar.xz"; }; }; qtwebchannel = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebchannel-everywhere-src-5.12.3.tar.xz"; - sha256 = "72d1620bcc94e14caa91ddf344c84cd1288aa9479e00b1bb3b5e51f92efe088a"; - name = "qtwebchannel-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebchannel-everywhere-src-5.12.0.tar.xz"; + sha256 = "1w2b31d7xjzdcgwkb4mz3qrl9ci7c9l4c3v4h8y59isip45g66l5"; + name = "qtwebchannel-everywhere-src-5.12.0.tar.xz"; }; }; qtwebengine = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebengine-everywhere-src-5.12.3.tar.xz"; - sha256 = "3ff3bac12d75aa0f3fd993bb7077fe411f7b0e6a3993af6f8b039d48e3dc4317"; - name = "qtwebengine-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebengine-everywhere-src-5.12.0.tar.xz"; + sha256 = "0z38ad25n7ckylxnmqrxy95ds4pn7i5k7qxh856zgq1h18wiwn5x"; + name = "qtwebengine-everywhere-src-5.12.0.tar.xz"; }; }; qtwebglplugin = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebglplugin-everywhere-src-5.12.3.tar.xz"; - sha256 = "23da63013101e97c4e663bb4f6dbb1c7b4386679c634680d3b8d79bcc59d26b3"; - name = "qtwebglplugin-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebglplugin-everywhere-src-5.12.0.tar.xz"; + sha256 = "0bk5dg33kn2l5lmgd6slsrs9xg15x9h9li91lr1q7qs67b8kl8k5"; + name = "qtwebglplugin-everywhere-src-5.12.0.tar.xz"; }; }; qtwebsockets = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebsockets-everywhere-src-5.12.3.tar.xz"; - sha256 = "258883225c5e089015c4036f31019aa8f5bb013ecd8eecd193342e606319a577"; - name = "qtwebsockets-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebsockets-everywhere-src-5.12.0.tar.xz"; + sha256 = "0gzwfjnlgcijym5bn9gi93qlvzizrhf1q9dq06576419sg0s2ka4"; + name = "qtwebsockets-everywhere-src-5.12.0.tar.xz"; }; }; qtwebview = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwebview-everywhere-src-5.12.3.tar.xz"; - sha256 = "f904e7fd7e755527e5bc4633c6f7c144065a3ffea473bf01fffb730385a983c5"; - name = "qtwebview-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwebview-everywhere-src-5.12.0.tar.xz"; + sha256 = "11b16b31bxcazqzg1ag9rzh4gj9pif2cf3jz2mj1sdprxp22ra5p"; + name = "qtwebview-everywhere-src-5.12.0.tar.xz"; }; }; qtwinextras = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtwinextras-everywhere-src-5.12.3.tar.xz"; - sha256 = "2b6319f7dd19fc19b028685c163a69f0a10e610d7554411d4660c1b5e42ada3b"; - name = "qtwinextras-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtwinextras-everywhere-src-5.12.0.tar.xz"; + sha256 = "1l6s140vrfxb9ar4p1dq9w2gfk3zvgrpqdxbbzs4ngfpwk6mlky6"; + name = "qtwinextras-everywhere-src-5.12.0.tar.xz"; }; }; qtx11extras = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtx11extras-everywhere-src-5.12.3.tar.xz"; - sha256 = "85e3ae5177970c2d8656226d7535d0dff5764c100e55a79a59161d80754ba613"; - name = "qtx11extras-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtx11extras-everywhere-src-5.12.0.tar.xz"; + sha256 = "114b4akzpcgx57c6gkl558bl0mbasi34r22fmq3ny84dhvlv9m06"; + name = "qtx11extras-everywhere-src-5.12.0.tar.xz"; }; }; qtxmlpatterns = { - version = "5.12.3"; + version = "5.12.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.12/5.12.3/submodules/qtxmlpatterns-everywhere-src-5.12.3.tar.xz"; - sha256 = "e0b98e7c92cd791a9b354d090788347db78f14c47579384fe22d0b650c1d8a61"; - name = "qtxmlpatterns-everywhere-src-5.12.3.tar.xz"; + url = "${mirror}/official_releases/qt/5.12/5.12.0/submodules/qtxmlpatterns-everywhere-src-5.12.0.tar.xz"; + sha256 = "0xckcw1j6f5l92c269pb8cx77d21sghp7m7dc05jl1dqmyy7jqpk"; + name = "qtxmlpatterns-everywhere-src-5.12.0.tar.xz"; }; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index a1c3bea866e..294c923973b 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -229,8 +229,6 @@ stdenv.mkDerivation { "-widgets" "-opengl desktop" "-icu" - "-L" "${icu.out}/lib" - "-I" "${icu.dev}/include" "-pch" ] ++ lib.optionals (compareVersion "5.11.0" < 0) @@ -267,18 +265,10 @@ stdenv.mkDerivation { ++ [ "-system-zlib" - "-L" "${zlib.out}/lib" - "-I" "${zlib.dev}/include" "-system-libjpeg" - "-L" "${libjpeg.out}/lib" - "-I" "${libjpeg.dev}/include" "-system-harfbuzz" - "-L" "${harfbuzz.out}/lib" - "-I" "${harfbuzz.dev}/include" "-system-pcre" "-openssl-linked" - "-L" "${openssl.out}/lib" - "-I" "${openssl.dev}/include" "-system-sqlite" ''-${if mysql != null then "plugin" else "no"}-sql-mysql'' ''-${if postgresql != null then "plugin" else "no"}-sql-psql'' @@ -307,14 +297,10 @@ stdenv.mkDerivation { "-system-xcb" "-xcb" "-qpa xcb" - "-L" "${libX11.out}/lib" - "-I" "${libX11.out}/include" - "-L" "${libXext.out}/lib" - "-I" "${libXext.out}/include" - "-L" "${libXrender.out}/lib" - "-I" "${libXrender.out}/include" + "-system-xkbcommon" "-libinput" + "-xkbcommon-evdev" "-no-eglfs" "-no-gbm" @@ -335,19 +321,6 @@ stdenv.mkDerivation { "-no-feature-renameat2" "-no-feature-getentropy" ] - ++ lib.optionals (compareVersion "5.12.1" < 0) [ - # use -xkbcommon and -xkbcommon-evdev for versions before 5.12.1 - "-system-xkbcommon" - "-xkbcommon-evdev" - ] - ++ lib.optionals (cups != null) [ - "-L" "${cups.lib}/lib" - "-I" "${cups.dev}/include" - ] - ++ lib.optionals (mysql != null) [ - "-L" "${mysql.out}/lib" - "-I" "${mysql.out}/include" - ] ); enableParallelBuilding = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bba947163f4..b6e7251c7cb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12931,7 +12931,7 @@ in inherit stdenv fetchurl fetchFromGitHub makeSetupHook makeWrapper; bison = bison2; # error: too few arguments to function 'int yylex(... inherit cups; - inherit harfbuzz; + harfbuzz = harfbuzzFull; inherit libGL; inherit perl; inherit gtk3; From 8d6fbef92a3684d5de4c09535b98d6e93be2f669 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Tue, 23 Apr 2019 16:15:45 +0200 Subject: [PATCH 1170/1611] buildGoModule: support overriding the go-modules derivation --- pkgs/development/go-modules/generic/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index cd98aa1fa9a..55fda78b03e 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -7,6 +7,9 @@ , passthru ? {} , patches ? [] +# A function to override the go-modules derivation +, overrideModAttrs ? (_oldAttrs : {}) + # modSha256 is the sha256 of the vendored dependencies , modSha256 @@ -27,13 +30,13 @@ with builtins; let - args = removeAttrs args' [ "modSha256" "disabled" ]; + args = removeAttrs args' [ "overrideModAttrs" "modSha256" "disabled" ]; removeReferences = [ ] ++ lib.optional (!allowGoReference) go; removeExpr = refs: ''remove-references-to ${lib.concatMapStrings (ref: " -t ${ref}") refs}''; - go-modules = go.stdenv.mkDerivation { + go-modules = go.stdenv.mkDerivation (let modArgs = { name = "${name}-go-modules"; nativeBuildInputs = [ go git cacert ]; @@ -79,7 +82,7 @@ let outputHashMode = "recursive"; outputHashAlgo = "sha256"; outputHash = modSha256; - }; + }; in modArgs // overrideModAttrs modArgs); package = go.stdenv.mkDerivation (args // { nativeBuildInputs = [ removeReferencesTo go ] ++ nativeBuildInputs; From 4a6e47126c4144056bc94bc8867e3ec095958c90 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Tue, 23 Apr 2019 16:19:10 +0200 Subject: [PATCH 1171/1611] thanos: init at 0.4.0 --- pkgs/servers/monitoring/thanos/default.nix | 46 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 48 insertions(+) create mode 100644 pkgs/servers/monitoring/thanos/default.nix diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix new file mode 100644 index 00000000000..d9fb1e7cd44 --- /dev/null +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -0,0 +1,46 @@ +{ stdenv, runCommandNoCC, makeWrapper, buildGoModule, fetchFromGitHub, bazaar }: +let + bazaarNoCertValidation = + runCommandNoCC "bzr-no-cert-validation" { + inherit bazaar; + buildInputs = [ makeWrapper ]; + } "makeWrapper $bazaar/bin/bzr $out/bin/bzr --add-flags -Ossl.cert_reqs=none"; +in +buildGoModule rec { + pname = "thanos"; + version = "0.4.0"; + + src = fetchFromGitHub { + rev = "v${version}"; + owner = "improbable-eng"; + repo = "thanos"; + sha256 = "0md9m7swmxh0sg6vf169iw3p6jc1hxzgylirh6vs1q0frz21y47j"; + }; + + overrideModAttrs = oldAttrs : { + nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ + bazaarNoCertValidation + ]; + }; + + modSha256 = "0sr9g95qab7x46m3mpahpb2xgzdbpy6p0kn6gq1s5phg2xxj2w00"; + + subPackages = "cmd/thanos"; + + buildFlagsArray = let t = "github.com/prometheus/common/version"; in '' + -ldflags= + -X ${t}.Version=${version} + -X ${t}.Revision=unknown + -X ${t}.Branch=unknown + -X ${t}.BuildUser=nix@nixpkgs + -X ${t}.BuildDate=unknown + ''; + + meta = with stdenv.lib; { + description = "Highly available Prometheus setup with long term storage capabilities"; + homepage = https://github.com/improbable-eng/thanos; + license = licenses.asl20; + maintainers = with maintainers; [ basvandijk ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6e7251c7cb..3cee9ced81b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14952,6 +14952,8 @@ in syncserver = callPackage ../servers/syncserver { }; + thanos = callPackage ../servers/monitoring/thanos { }; + inherit (callPackages ../servers/http/tomcat { }) tomcat7 tomcat8 From ebc65a5f2111203fad0d68c52d907a789a55fb31 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Mon, 29 Apr 2019 10:30:25 +0200 Subject: [PATCH 1172/1611] nixos/thanos: add module for the thanos service --- nixos/modules/module-list.nix | 1 + nixos/modules/services/monitoring/thanos.nix | 756 +++++++++++++++++++ nixos/tests/prometheus-2.nix | 207 ++++- 3 files changed, 946 insertions(+), 18 deletions(-) create mode 100644 nixos/modules/services/monitoring/thanos.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 8c6bc47df25..3f23151a4e3 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -519,6 +519,7 @@ ./services/monitoring/systemhealth.nix ./services/monitoring/teamviewer.nix ./services/monitoring/telegraf.nix + ./services/monitoring/thanos.nix ./services/monitoring/ups.nix ./services/monitoring/uptime.nix ./services/monitoring/vnstat.nix diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix new file mode 100644 index 00000000000..a34a1ecbfea --- /dev/null +++ b/nixos/modules/services/monitoring/thanos.nix @@ -0,0 +1,756 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.thanos; + + nullOpt = type : description : mkOption { + type = types.nullOr type; + default = null; + inherit description; + }; + + optionToArgs = opt : v : optional (v != null) ''--${opt}="${toString v}"''; + flagToArgs = opt : v : optional v ''--${opt}''; + listToArgs = opt : vs : map (v: ''--${opt}="${v}"'') vs; + attrsToArgs = opt : kvs : mapAttrsToList (k: v: ''--${opt}=${k}=\"${v}\"'') kvs; + + mkParamDef = type : default : description : mkParam type (description + '' + + Defaults to ${toString default} in Thanos + when set to null. + ''); + + mkParam = type : description : { + toArgs = optionToArgs; + option = nullOpt type description; + }; + + mkFlagParam = description : { + toArgs = flagToArgs; + option = mkOption { + type = types.bool; + default = false; + inherit description; + }; + }; + + mkListParam = opt : description : { + toArgs = _opt : listToArgs opt; + option = mkOption { + type = types.listOf types.str; + default = []; + inherit description; + }; + }; + + mkAttrsParam = opt : description : { + toArgs = _opt : attrsToArgs opt; + option = mkOption { + type = types.attrsOf types.str; + default = {}; + inherit description; + }; + }; + + mkStateDirParam = opt : default : description : { + toArgs = _opt : stateDir : optionToArgs opt "/var/lib/${stateDir}"; + option = mkOption { + type = types.str; + inherit default; + inherit description; + }; + }; + + toYAML = name : attrs : pkgs.runCommandNoCC name { + preferLocalBuild = true; + json = builtins.toFile "${name}.json" (builtins.toJSON attrs); + nativeBuildInputs = [ pkgs.remarshal ]; + } ''json2yaml -i $json -o $out''; + + thanos = cmd : "${cfg.package}/bin/thanos ${cmd}" + + (let args = concatLists (collect isList + (flip mapParamsRecursive params."${cmd}" (path : param : + let opt = concatStringsSep "." path; + v = getAttrFromPath path cfg."${cmd}"; + in param.toArgs opt v))); + in optionalString (length args != 0) (" \\\n " + + concatStringsSep " \\\n " args)); + + mapParamsRecursive = + let noParam = attr : !(attr ? "toArgs" && attr ? "option"); + in mapAttrsRecursiveCond noParam; + + paramsToOptions = mapParamsRecursive (_path : param : param.option); + + params = { + + log = { + + log.level = mkParamDef (types.enum ["debug" "info" "warn" "error" "fatal"]) "info" '' + Log filtering level. + ''; + + log.format = mkParam types.str '' + Log format to use. + ''; + }; + + gcloudtrace = { + + gcloudtrace.project = mkParam types.str '' + GCP project to send Google Cloud Trace tracings to. + + If null, tracing will be disabled. + ''; + + gcloudtrace.sample-factor = mkParamDef types.int 1 '' + How often we send traces 1/<sample-factor>. + + If 0 no trace will be sent periodically, unless + forced by baggage item. + ''; + }; + + common = params.log // params.gcloudtrace // { + + http-address = mkParamDef types.str "0.0.0.0:10902" '' + Listen host:port for HTTP endpoints. + ''; + + grpc-address = mkParamDef types.str "0.0.0.0:10901" '' + Listen ip:port address for gRPC endpoints (StoreAPI). + + Make sure this address is routable from other components if you use gossip, + is empty and you require cross-node connection. + ''; + + grpc-server-tls-cert = mkParam types.str '' + TLS Certificate for gRPC server, leave blank to disable TLS + ''; + + grpc-server-tls-key = mkParam types.str '' + TLS Key for the gRPC server, leave blank to disable TLS + ''; + + grpc-server-tls-client-ca = mkParam types.str '' + TLS CA to verify clients against. + + If no client CA is specified, there is no client verification on server side. + (tls.NoClientCert) + ''; + }; + + objstore = cfg : { + + objstore.config-file = { + toArgs = _opt : path : optionToArgs "objstore.config-file" path; + option = mkOption { + type = with types; nullOr str; + default = if cfg.objstore.config == null then null + else toString (toYAML "objstore.yaml" cfg.objstore.config); + defaultText = '' + if config.services.thanos..objstore.config == null then null + else toString (toYAML "objstore.yaml" config.services.thanos..objstore.config); + ''; + description = '' + Path to YAML file that contains object store configuration. + ''; + }; + }; + + objstore.config = + { + toArgs = _opt : _attrs : []; + option = nullOpt types.attrs '' + Object store configuration. + + When not null the attribute set gets converted to + a YAML file and stored in the Nix store. The option + will default to its path. + + If is set this option has no effect. + ''; + }; + }; + + sidecar = params.common // params.objstore cfg.sidecar // { + + prometheus.url = mkParamDef types.str "http://localhost:9090" '' + URL at which to reach Prometheus's API. + + For better performance use local network. + ''; + + tsdb.path = { + toArgs = optionToArgs; + option = mkOption { + type = types.str; + default = "/var/lib/${config.services.prometheus2.stateDir}/data"; + defaultText = "/var/lib/\${config.services.prometheus2.stateDir}/data"; + description = '' + Data directory of TSDB. + ''; + }; + }; + + reloader.config-file = mkParam types.str '' + Config file watched by the reloader. + ''; + + reloader.config-envsubst-file = mkParam types.str '' + Output file for environment variable substituted config file. + ''; + + reloader.rule-dirs = mkListParam "reloader.rule-dir" '' + Rule directories for the reloader to refresh. + ''; + + }; + + store = params.common // params.objstore cfg.store // { + + stateDir = mkStateDirParam "data-dir" "thanos-store" '' + Data directory relative to /var/lib + in which to cache remote blocks. + ''; + + index-cache-size = mkParamDef types.str "250MB" '' + Maximum size of items held in the index cache. + ''; + + chunk-pool-size = mkParamDef types.str "2GB" '' + Maximum size of concurrently allocatable bytes for chunks. + ''; + + store.grpc.series-sample-limit = mkParamDef types.int 0 '' + Maximum amount of samples returned via a single Series call. + + 0 means no limit. + + NOTE: for efficiency we take 120 as the number of samples in chunk (it + cannot be bigger than that), so the actual number of samples might be + lower, even though the maximum could be hit. + ''; + + store.grpc.series-max-concurrency = mkParamDef types.int 20 '' + Maximum number of concurrent Series calls. + ''; + + sync-block-duration = mkParamDef types.str "3m" '' + Repeat interval for syncing the blocks between local and remote view. + ''; + + block-sync-concurrency = mkParamDef types.int 20 '' + Number of goroutines to use when syncing blocks from object storage. + ''; + }; + + query = params.common // { + + http-advertise-address = mkParam types.str '' + Explicit (external) host:port address to advertise + for HTTP QueryAPI in gossip cluster. + + If null, the option + will be used. + ''; + + grpc-client-tls-secure = mkFlagParam '' + Use TLS when talking to the gRPC server + ''; + + grpc-client-tls-cert = mkParam types.str '' + TLS Certificates to use to identify this client to the server + ''; + + grpc-client-tls-key = mkParam types.str '' + TLS Key for the client's certificate + ''; + + grpc-client-tls-ca = mkParam types.str '' + TLS CA Certificates to use to verify gRPC servers + ''; + + grpc-client-server-name = mkParam types.str '' + Server name to verify the hostname on the returned gRPC certificates. + See + ''; + + web.route-prefix = mkParam types.str '' + Prefix for API and UI endpoints. + + This allows thanos UI to be served on a sub-path. This option is + analogous to of Promethus. + ''; + + web.external-prefix = mkParam types.str '' + Static prefix for all HTML links and redirect URLs in the UI query web + interface. + + Actual endpoints are still served on / or the + . This allows thanos UI to be served + behind a reverse proxy that strips a URL sub-path. + ''; + + web.prefix-header = mkParam types.str '' + Name of HTTP request header used for dynamic prefixing of UI links and + redirects. + + This option is ignored if the option + web.external-prefix is set. + + Security risk: enable this option only if a reverse proxy in front of + thanos is resetting the header. + + The setting web.prefix-header="X-Forwarded-Prefix" + can be useful, for example, if Thanos UI is served via Traefik reverse + proxy with PathPrefixStrip option enabled, which + sends the stripped prefix value in X-Forwarded-Prefix + header. This allows thanos UI to be served on a sub-path. + ''; + + query.timeout = mkParamDef types.str "2m" '' + Maximum time to process query by query node. + ''; + + query.max-concurrent = mkParamDef types.int 20 '' + Maximum number of queries processed concurrently by query node. + ''; + + query.replica-label = mkParam types.str '' + Label to treat as a replica indicator along which data is + deduplicated. + + Still you will be able to query without deduplication using + dedup=false parameter. + ''; + + selector-labels = mkAttrsParam "selector-label" '' + Query selector labels that will be exposed in info endpoint. + ''; + + store.addresses = mkListParam "store" '' + Addresses of statically configured store API servers. + + The scheme may be prefixed with dns+ or + dnssrv+ to detect store API servers through + respective DNS lookups. + ''; + + store.sd-files = mkListParam "store.sd-files" '' + Path to files that contain addresses of store API servers. The path + can be a glob pattern. + ''; + + store.sd-interval = mkParamDef types.str "5m" '' + Refresh interval to re-read file SD files. It is used as a resync fallback. + ''; + + store.sd-dns-interval = mkParamDef types.str "30s" '' + Interval between DNS resolutions. + ''; + + store.unhealthy-timeout = mkParamDef types.str "5m" '' + Timeout before an unhealthy store is cleaned from the store UI page. + ''; + + query.auto-downsampling = mkFlagParam '' + Enable automatic adjustment (step / 5) to what source of data should + be used in store gateways if no + max_source_resolution param is specified. + ''; + + query.partial-response = mkFlagParam '' + Enable partial response for queries if no + partial_response param is specified. + ''; + + query.default-evaluation-interval = mkParamDef types.str "1m" '' + Set default evaluation interval for sub queries. + ''; + + store.response-timeout = mkParamDef types.str "0ms" '' + If a Store doesn't send any data in this specified duration then a + Store will be ignored and partial data will be returned if it's + enabled. 0 disables timeout. + ''; + }; + + rule = params.common // params.objstore cfg.rule // { + + labels = mkAttrsParam "label" '' + Labels to be applied to all generated metrics. + + Similar to external labels for Prometheus, + used to identify ruler and its blocks as unique source. + ''; + + stateDir = mkStateDirParam "data-dir" "thanos-rule" '' + Data directory relative to /var/lib. + ''; + + rule-files = mkListParam "rule-file" '' + Rule files that should be used by rule manager. Can be in glob format. + ''; + + eval-interval = mkParamDef types.str "30s" '' + The default evaluation interval to use. + ''; + + tsdb.block-duration = mkParamDef types.str "2h" '' + Block duration for TSDB block. + ''; + + tsdb.retention = mkParamDef types.str "48h" '' + Block retention time on local disk. + ''; + + alertmanagers.urls = mkListParam "alertmanagers.url" '' + Alertmanager replica URLs to push firing alerts. + + Ruler claims success if push to at least one alertmanager from + discovered succeeds. The scheme may be prefixed with + dns+ or dnssrv+ to detect + Alertmanager IPs through respective DNS lookups. The port defaults to + 9093 or the SRV record's value. The URL path is + used as a prefix for the regular Alertmanager API path. + ''; + + alertmanagers.send-timeout = mkParamDef types.str "10s" '' + Timeout for sending alerts to alertmanager. + ''; + + alert.query-url = mkParam types.str '' + The external Thanos Query URL that would be set in all alerts 'Source' field. + ''; + + alert.label-drop = mkListParam "alert.label-drop" '' + Labels by name to drop before sending to alertmanager. + + This allows alert to be deduplicated on replica label. + + Similar Prometheus alert relabelling + ''; + + web.route-prefix = mkParam types.str '' + Prefix for API and UI endpoints. + + This allows thanos UI to be served on a sub-path. + + This option is analogous to --web.route-prefix of Promethus. + ''; + + web.external-prefix = mkParam types.str '' + Static prefix for all HTML links and redirect URLs in the UI query web + interface. + + Actual endpoints are still served on / or the + . This allows thanos UI to be served + behind a reverse proxy that strips a URL sub-path. + ''; + + web.prefix-header = mkParam types.str '' + Name of HTTP request header used for dynamic prefixing of UI links and + redirects. + + This option is ignored if the option + is set. + + Security risk: enable this option only if a reverse proxy in front of + thanos is resetting the header. + + The header X-Forwarded-Prefix can be useful, for + example, if Thanos UI is served via Traefik reverse proxy with + PathPrefixStrip option enabled, which sends the + stripped prefix value in X-Forwarded-Prefix + header. This allows thanos UI to be served on a sub-path. + ''; + + query.addresses = mkListParam "query" '' + Addresses of statically configured query API servers. + + The scheme may be prefixed with dns+ or + dnssrv+ to detect query API servers through + respective DNS lookups. + ''; + + query.sd-files = mkListParam "query.sd-files" '' + Path to file that contain addresses of query peers. + The path can be a glob pattern. + ''; + + query.sd-interval = mkParamDef types.str "5m" '' + Refresh interval to re-read file SD files. (used as a fallback) + ''; + + query.sd-dns-interval = mkParamDef types.str "30s" '' + Interval between DNS resolutions. + ''; + }; + + compact = params.log // params.gcloudtrace // params.objstore cfg.compact // { + + http-address = mkParamDef types.str "0.0.0.0:10902" '' + Listen host:port for HTTP endpoints. + ''; + + stateDir = mkStateDirParam "data-dir" "thanos-compact" '' + Data directory relative to /var/lib + in which to cache blocks and process compactions. + ''; + + consistency-delay = mkParamDef types.str "30m" '' + Minimum age of fresh (non-compacted) blocks before they are being + processed. Malformed blocks older than the maximum of consistency-delay + and 30m0s will be removed. + ''; + + retention.resolution-raw = mkParamDef types.str "0d" '' + How long to retain raw samples in bucket. + + 0d - disables this retention + ''; + + retention.resolution-5m = mkParamDef types.str "0d" '' + How long to retain samples of resolution 1 (5 minutes) in bucket. + + 0d - disables this retention + ''; + + retention.resolution-1h = mkParamDef types.str "0d" '' + How long to retain samples of resolution 2 (1 hour) in bucket. + + 0d - disables this retention + ''; + + startAt = { + toArgs = _opt : startAt : flagToArgs "wait" (startAt == null); + option = nullOpt types.str '' + When this option is set to a systemd.time + specification the Thanos compactor will run at the specified period. + + When this option is null the Thanos compactor service + will run continuously. So it will not exit after all compactions have + been processed but wait for new work. + ''; + }; + + block-sync-concurrency = mkParamDef types.int 20 '' + Number of goroutines to use when syncing block metadata from object storage. + ''; + + compact.concurrency = mkParamDef types.int 1 '' + Number of goroutines to use when compacting groups. + ''; + }; + + downsample = params.log // params.gcloudtrace // params.objstore cfg.downsample // { + + stateDir = mkStateDirParam "data-dir" "thanos-downsample" '' + Data directory relative to /var/lib + in which to cache blocks and process downsamplings. + ''; + + }; + + receive = params.common // params.objstore cfg.receive // { + + remote-write.address = mkParamDef types.str "0.0.0.0:19291" '' + Address to listen on for remote write requests. + ''; + + stateDir = mkStateDirParam "tsdb.path" "thanos-receive" '' + Data directory relative to /var/lib of TSDB. + ''; + + labels = mkAttrsParam "labels" '' + External labels to announce. + + This flag will be removed in the future when handling multiple tsdb + instances is added. + ''; + + tsdb.retention = mkParamDef types.str "15d" '' + How long to retain raw samples on local storage. + + 0d - disables this retention + ''; + }; + + }; + + assertRelativeStateDir = cmd : { + assertions = [ + { + assertion = !hasPrefix "/" cfg."${cmd}".stateDir; + message = + "The option services.thanos.${cmd}.stateDir should not be an absolute directory." + + " It should be a directory relative to /var/lib."; + } + ]; + }; + +in { + + options.services.thanos = { + + package = mkOption { + type = types.package; + default = pkgs.thanos; + defaultText = "pkgs.thanos"; + description = '' + The thanos package that should be used. + ''; + }; + + sidecar = paramsToOptions params.sidecar // { + enable = mkEnableOption + "the Thanos sidecar for Prometheus server"; + }; + + store = paramsToOptions params.store // { + enable = mkEnableOption + "the Thanos store node giving access to blocks in a bucket provider."; + }; + + query = paramsToOptions params.query // { + enable = mkEnableOption + ("the Thanos query node exposing PromQL enabled Query API " + + "with data retrieved from multiple store nodes"); + }; + + rule = paramsToOptions params.rule // { + enable = mkEnableOption + ("the Thanos ruler service which evaluates Prometheus rules against" + + " given Query nodes, exposing Store API and storing old blocks in bucket"); + }; + + compact = paramsToOptions params.compact // { + enable = mkEnableOption + "the Thanos compactor which continuously compacts blocks in an object store bucket"; + }; + + downsample = paramsToOptions params.downsample // { + enable = mkEnableOption + "the Thanos downsampler which continuously downsamples blocks in an object store bucket"; + }; + + receive = paramsToOptions params.receive // { + enable = mkEnableOption + ("the Thanos receiver which accept Prometheus remote write API requests " + + "and write to local tsdb (EXPERIMENTAL, this may change drastically without notice)"); + }; + }; + + config = mkMerge [ + + (mkIf cfg.sidecar.enable { + systemd.services.thanos-sidecar = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" "prometheus2.service" ]; + serviceConfig = { + User = "prometheus"; + Restart = "always"; + ExecStart = thanos "sidecar"; + }; + }; + }) + + (mkIf cfg.store.enable (mkMerge [ + (assertRelativeStateDir "store") + { + systemd.services.thanos-store = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + DynamicUser = true; + StateDirectory = cfg.store.stateDir; + Restart = "always"; + ExecStart = thanos "store"; + }; + }; + } + ])) + + (mkIf cfg.query.enable { + systemd.services.thanos-query = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + DynamicUser = true; + Restart = "always"; + ExecStart = thanos "query"; + }; + }; + }) + + (mkIf cfg.rule.enable (mkMerge [ + (assertRelativeStateDir "rule") + { + systemd.services.thanos-rule = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + DynamicUser = true; + StateDirectory = cfg.rule.stateDir; + Restart = "always"; + ExecStart = thanos "rule"; + }; + }; + } + ])) + + (mkIf cfg.compact.enable (mkMerge [ + (assertRelativeStateDir "compact") + { + systemd.services.thanos-compact = + let wait = cfg.compact.startAt == null; in { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + Type = if wait then "simple" else "oneshot"; + Restart = if wait then "always" else "no"; + DynamicUser = true; + StateDirectory = cfg.compact.stateDir; + ExecStart = thanos "compact"; + }; + } // optionalAttrs (!wait) { inherit (cfg.compact) startAt; }; + } + ])) + + (mkIf cfg.downsample.enable (mkMerge [ + (assertRelativeStateDir "downsample") + { + systemd.services.thanos-downsample = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + DynamicUser = true; + StateDirectory = cfg.downsample.stateDir; + Restart = "always"; + ExecStart = thanos "downsample"; + }; + }; + } + ])) + + (mkIf cfg.receive.enable (mkMerge [ + (assertRelativeStateDir "receive") + { + systemd.services.thanos-receive = { + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + serviceConfig = { + DynamicUser = true; + StateDirectory = cfg.receive.stateDir; + Restart = "always"; + ExecStart = thanos "receive"; + }; + }; + } + ])) + + ]; +} diff --git a/nixos/tests/prometheus-2.nix b/nixos/tests/prometheus-2.nix index d7035d49ad4..3e2c675b7c6 100644 --- a/nixos/tests/prometheus-2.nix +++ b/nixos/tests/prometheus-2.nix @@ -1,9 +1,44 @@ -import ./make-test.nix { +let + grpcPort = 19090; + queryPort = 9090; + minioPort = 9000; + pushgwPort = 9091; + + s3 = { + accessKey = "BKIKJAA5BMMU2RHO6IBB"; + secretKey = "V7f1CwQqAcwo80UEIJEjc5gVQUSSx5ohQ9GSrr12"; + }; + + objstore.config = { + type = "S3"; + config = { + bucket = "thanos-bucket"; + endpoint = "s3:${toString minioPort}"; + region = "us-east-1"; + access_key = s3.accessKey; + secret_key = s3.secretKey; + insecure = true; + signature_version2 = false; + encrypt_sse = false; + put_user_metadata = {}; + http_config = { + idle_conn_timeout = "0s"; + insecure_skip_verify = false; + }; + trace = { + enable = false; + }; + }; + }; + +in import ./make-test.nix { name = "prometheus-2"; nodes = { - one = { pkgs, ... }: { + prometheus = { pkgs, ... }: { + virtualisation.diskSize = 2 * 1024; environment.systemPackages = [ pkgs.jq ]; + networking.firewall.allowedTCPPorts = [ grpcPort ]; services.prometheus2 = { enable = true; scrapeConfigs = [ @@ -11,7 +46,7 @@ import ./make-test.nix { job_name = "prometheus"; static_configs = [ { - targets = [ "127.0.0.1:9090" ]; + targets = [ "127.0.0.1:${toString queryPort}" ]; labels = { instance = "localhost"; }; } ]; @@ -21,7 +56,7 @@ import ./make-test.nix { scrape_interval = "1s"; static_configs = [ { - targets = [ "127.0.0.1:9091" ]; + targets = [ "127.0.0.1:${toString pushgwPort}" ]; } ]; } @@ -35,33 +70,169 @@ import ./make-test.nix { expr: count(up{job="prometheus"}) '' ]; + globalConfig = { + external_labels = { + some_label = "required by thanos"; + }; + }; + extraFlags = [ + # Required by thanos + "--storage.tsdb.min-block-duration=5s" + "--storage.tsdb.max-block-duration=5s" + ]; }; services.prometheus.pushgateway = { enable = true; + web.listen-address = ":${toString pushgwPort}"; persistMetrics = true; persistence.interval = "1s"; stateDir = "prometheus-pushgateway"; }; + services.thanos = { + sidecar = { + enable = true; + grpc-address = "0.0.0.0:${toString grpcPort}"; + inherit objstore; + }; + + # TODO: Add some tests for these services: + #rule = { + # enable = true; + # http-address = "0.0.0.0:19194"; + # grpc-address = "0.0.0.0:19193"; + # query.addresses = [ + # "localhost:19191" + # ]; + # labels = { + # just = "some"; + # nice = "labels"; + # }; + #}; + # + #receive = { + # http-address = "0.0.0.0:19195"; + # enable = true; + # labels = { + # just = "some"; + # nice = "labels"; + # }; + #}; + }; + }; + + query = { pkgs, ... }: { + environment.systemPackages = [ pkgs.jq ]; + services.thanos.query = { + enable = true; + http-address = "0.0.0.0:${toString queryPort}"; + store.addresses = [ + "prometheus:${toString grpcPort}" + ]; + }; + }; + + store = { pkgs, ... }: { + environment.systemPackages = with pkgs; [ jq thanos ]; + services.thanos.store = { + enable = true; + http-address = "0.0.0.0:10902"; + grpc-address = "0.0.0.0:${toString grpcPort}"; + inherit objstore; + sync-block-duration = "1s"; + }; + services.thanos.compact = { + enable = true; + http-address = "0.0.0.0:10903"; + inherit objstore; + consistency-delay = "5s"; + }; + services.thanos.query = { + enable = true; + http-address = "0.0.0.0:${toString queryPort}"; + store.addresses = [ + "localhost:${toString grpcPort}" + ]; + }; + }; + + s3 = { pkgs, ... } : { + # Minio requires at least 1GiB of free disk space to run. + virtualisation.diskSize = 2 * 1024; + networking.firewall.allowedTCPPorts = [ minioPort ]; + + services.minio = { + enable = true; + inherit (s3) accessKey secretKey; + }; + + environment.systemPackages = [ pkgs.minio-client ]; }; }; - testScript = '' - startAll; - $one->waitForUnit("prometheus2.service"); - $one->waitForOpenPort(9090); - $one->succeed("curl -s http://127.0.0.1:9090/metrics"); + testScript = { nodes, ... } : '' + # Before starting the other machines we first make sure that our S3 service is online + # and has a bucket added for thanos: + $s3->start; + $s3->waitForUnit("minio.service"); + $s3->waitForOpenPort(${toString minioPort}); + $s3->succeed( + "mc config host add minio " . + "http://localhost:${toString minioPort} ${s3.accessKey} ${s3.secretKey} S3v4"); + $s3->succeed("mc mb minio/thanos-bucket"); - # Let's test if pushing a metric to the pushgateway succeeds - # and whether that metric gets ingested by prometheus. - $one->waitForUnit("pushgateway.service"); - $one->succeed( + # Now that s3 has started we can start the other machines: + $prometheus->start; + $query->start; + $store->start; + + # Check if prometheus responds to requests: + $prometheus->waitForUnit("prometheus2.service"); + $prometheus->waitForOpenPort(${toString queryPort}); + $prometheus->succeed("curl -s http://127.0.0.1:${toString queryPort}/metrics"); + + # Let's test if pushing a metric to the pushgateway succeeds: + $prometheus->waitForUnit("pushgateway.service"); + $prometheus->succeed( "echo 'some_metric 3.14' | " . - "curl --data-binary \@- http://127.0.0.1:9091/metrics/job/some_job"); - $one->waitUntilSucceeds( - "curl -sf 'http://127.0.0.1:9090/api/v1/query?query=some_metric' " . - "| jq '.data.result[0].value[1]' | grep '\"3.14\"'"); + "curl --data-binary \@- http://127.0.0.1:${toString pushgwPort}/metrics/job/some_job"); + + # Now check whether that metric gets ingested by prometheus. + # Since we'll check for the metric several times on different machines + # we abstract the test using the following function: + + # Function to check if the metric "some_metric" has been received and returns the correct value. + local *Machine::waitForMetric = sub { + my ($self) = @_; + $self->waitUntilSucceeds( + "curl -sf 'http://127.0.0.1:${toString queryPort}/api/v1/query?query=some_metric' " . + "| jq '.data.result[0].value[1]' | grep '\"3.14\"'"); + }; + + $prometheus->waitForMetric; # Let's test if the pushgateway persists metrics to the configured location. - $one->waitUntilSucceeds("test -e /var/lib/prometheus-pushgateway/metrics"); + $prometheus->waitUntilSucceeds("test -e /var/lib/prometheus-pushgateway/metrics"); + + # Test thanos + $prometheus->waitForUnit("thanos-sidecar.service"); + + # Test if the Thanos query service can correctly retrieve the metric that was send above. + $query->waitForUnit("thanos-query.service"); + $query->waitForMetric; + + # Test if the Thanos sidecar has correctly uploaded its TSDB to S3, if the + # Thanos storage service has correctly downloaded it from S3 and if the Thanos + # query service running on $store can correctly retrieve the metric: + $store->waitForUnit("thanos-store.service"); + $store->waitForMetric; + + $store->waitForUnit("thanos-compact.service"); + + # Test if the Thanos bucket command is able to retrieve blocks from the S3 bucket + # and check if the blocks have the correct labels: + $store->succeed( + "thanos bucket ls" . + " --objstore.config-file=${nodes.store.config.services.thanos.store.objstore.config-file}" . + " --output=json | jq .thanos.labels.some_label | grep 'required by thanos'"); ''; } From 2d0243c187eafd51d2273f6e899faac3d54e21f1 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sat, 1 Jun 2019 17:08:09 +0200 Subject: [PATCH 1173/1611] thanos: 0.4.0 -> 0.5.0-rc.0 --- nixos/modules/services/monitoring/thanos.nix | 11 +---------- pkgs/servers/monitoring/thanos/default.nix | 6 +++--- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index a34a1ecbfea..887214057d2 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -122,8 +122,7 @@ let grpc-address = mkParamDef types.str "0.0.0.0:10901" '' Listen ip:port address for gRPC endpoints (StoreAPI). - Make sure this address is routable from other components if you use gossip, - is empty and you require cross-node connection. + Make sure this address is routable from other components. ''; grpc-server-tls-cert = mkParam types.str '' @@ -249,14 +248,6 @@ let query = params.common // { - http-advertise-address = mkParam types.str '' - Explicit (external) host:port address to advertise - for HTTP QueryAPI in gossip cluster. - - If null, the option - will be used. - ''; - grpc-client-tls-secure = mkFlagParam '' Use TLS when talking to the gRPC server ''; diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix index d9fb1e7cd44..50dcb7b341f 100644 --- a/pkgs/servers/monitoring/thanos/default.nix +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -8,13 +8,13 @@ let in buildGoModule rec { pname = "thanos"; - version = "0.4.0"; + version = "0.5.0-rc.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "improbable-eng"; repo = "thanos"; - sha256 = "0md9m7swmxh0sg6vf169iw3p6jc1hxzgylirh6vs1q0frz21y47j"; + sha256 = "1m7jj5g7s4c7nhbyc6vwn08ripp4d3ciim48siillwhm90gbphrw"; }; overrideModAttrs = oldAttrs : { @@ -23,7 +23,7 @@ buildGoModule rec { ]; }; - modSha256 = "0sr9g95qab7x46m3mpahpb2xgzdbpy6p0kn6gq1s5phg2xxj2w00"; + modSha256 = "1236cg00h8077fmvyddwjsnw85r69ac18b2chcpgzd85xdcaxavk"; subPackages = "cmd/thanos"; From 13da8118539b9f25acaf57dc6ee8b997d61cf79d Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Mon, 3 Jun 2019 09:16:22 +0200 Subject: [PATCH 1174/1611] nixos/thanos: allow overriding arguments to the thanos subcommands --- nixos/modules/services/monitoring/thanos.nix | 33 +++++++++++++++++--- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index 887214057d2..e920de1bd34 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -70,14 +70,30 @@ let } ''json2yaml -i $json -o $out''; thanos = cmd : "${cfg.package}/bin/thanos ${cmd}" + - (let args = concatLists (collect isList - (flip mapParamsRecursive params."${cmd}" (path : param : - let opt = concatStringsSep "." path; - v = getAttrFromPath path cfg."${cmd}"; - in param.toArgs opt v))); + (let args = cfg."${cmd}".arguments; in optionalString (length args != 0) (" \\\n " + concatStringsSep " \\\n " args)); + argumentsOf = cmd : concatLists (collect isList + (flip mapParamsRecursive params."${cmd}" (path : param : + let opt = concatStringsSep "." path; + v = getAttrFromPath path cfg."${cmd}"; + in param.toArgs opt v))); + + mkArgumentsOption = cmd : mkOption { + type = types.listOf types.str; + default = argumentsOf cmd; + description = '' + Arguments to the thanos ${cmd} command. + + Defaults to a list of arguments formed by converting the structured + options of to a list of arguments. + + Overriding this option will cause none of the structured options to have + any effect. So only set this if you know what you're doing! + ''; + }; + mapParamsRecursive = let noParam = attr : !(attr ? "toArgs" && attr ? "option"); in mapAttrsRecursiveCond noParam; @@ -599,39 +615,46 @@ in { sidecar = paramsToOptions params.sidecar // { enable = mkEnableOption "the Thanos sidecar for Prometheus server"; + arguments = mkArgumentsOption "sidecar"; }; store = paramsToOptions params.store // { enable = mkEnableOption "the Thanos store node giving access to blocks in a bucket provider."; + arguments = mkArgumentsOption "store"; }; query = paramsToOptions params.query // { enable = mkEnableOption ("the Thanos query node exposing PromQL enabled Query API " + "with data retrieved from multiple store nodes"); + arguments = mkArgumentsOption "query"; }; rule = paramsToOptions params.rule // { enable = mkEnableOption ("the Thanos ruler service which evaluates Prometheus rules against" + " given Query nodes, exposing Store API and storing old blocks in bucket"); + arguments = mkArgumentsOption "rule"; }; compact = paramsToOptions params.compact // { enable = mkEnableOption "the Thanos compactor which continuously compacts blocks in an object store bucket"; + arguments = mkArgumentsOption "compact"; }; downsample = paramsToOptions params.downsample // { enable = mkEnableOption "the Thanos downsampler which continuously downsamples blocks in an object store bucket"; + arguments = mkArgumentsOption "downsample"; }; receive = paramsToOptions params.receive // { enable = mkEnableOption ("the Thanos receiver which accept Prometheus remote write API requests " + "and write to local tsdb (EXPERIMENTAL, this may change drastically without notice)"); + arguments = mkArgumentsOption "receive"; }; }; From 7f093a2e8ec6469fc7a53b6f670486b5f12aec12 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 5 Jun 2019 12:49:29 +0200 Subject: [PATCH 1175/1611] thanos: don't use URL literals (RFC-0045) --- pkgs/servers/monitoring/thanos/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix index 50dcb7b341f..21bee7168c7 100644 --- a/pkgs/servers/monitoring/thanos/default.nix +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -38,7 +38,7 @@ buildGoModule rec { meta = with stdenv.lib; { description = "Highly available Prometheus setup with long term storage capabilities"; - homepage = https://github.com/improbable-eng/thanos; + homepage = "https://github.com/improbable-eng/thanos"; license = licenses.asl20; maintainers = with maintainers; [ basvandijk ]; platforms = platforms.unix; From e32e0e6e02de16098172c7fa66625cf6923ae8bc Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 5 Jun 2019 13:02:26 +0200 Subject: [PATCH 1176/1611] nixos/thanos: assert that prometheus2 is running and has labels set --- nixos/modules/services/monitoring/thanos.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index e920de1bd34..0bc0d67329c 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -661,6 +661,21 @@ in { config = mkMerge [ (mkIf cfg.sidecar.enable { + assertions = [ + { + assertion = config.services.prometheus2.enable; + message = + "Please enable services.prometheus2 when enabling services.thanos.sidecar."; + } + { + assertion = !(config.services.prometheus2.globalConfig.external_labels == null || + config.services.prometheus2.globalConfig.external_labels == {}); + message = + "services.thanos.sidecar requires uniquely identifying external labels " + + "to be configured in the Prometheus server. " + + "Please set services.prometheus2.globalConfig.external_labels."; + } + ]; systemd.services.thanos-sidecar = { wantedBy = [ "multi-user.target" ]; after = [ "network.target" "prometheus2.service" ]; From dc69b3e6adf3372a581807f43ae62878a0ebd87f Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 5 Jun 2019 13:05:49 +0200 Subject: [PATCH 1177/1611] nixos/thanos: code style: don't use a space before a colon --- nixos/modules/services/monitoring/thanos.nix | 52 ++++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index 0bc0d67329c..93e858c6607 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -5,29 +5,29 @@ with lib; let cfg = config.services.thanos; - nullOpt = type : description : mkOption { + nullOpt = type: description: mkOption { type = types.nullOr type; default = null; inherit description; }; - optionToArgs = opt : v : optional (v != null) ''--${opt}="${toString v}"''; - flagToArgs = opt : v : optional v ''--${opt}''; - listToArgs = opt : vs : map (v: ''--${opt}="${v}"'') vs; - attrsToArgs = opt : kvs : mapAttrsToList (k: v: ''--${opt}=${k}=\"${v}\"'') kvs; + optionToArgs = opt: v : optional (v != null) ''--${opt}="${toString v}"''; + flagToArgs = opt: v : optional v ''--${opt}''; + listToArgs = opt: vs : map (v: ''--${opt}="${v}"'') vs; + attrsToArgs = opt: kvs: mapAttrsToList (k: v: ''--${opt}=${k}=\"${v}\"'') kvs; - mkParamDef = type : default : description : mkParam type (description + '' + mkParamDef = type: default: description: mkParam type (description + '' Defaults to ${toString default} in Thanos when set to null. ''); - mkParam = type : description : { + mkParam = type: description: { toArgs = optionToArgs; option = nullOpt type description; }; - mkFlagParam = description : { + mkFlagParam = description: { toArgs = flagToArgs; option = mkOption { type = types.bool; @@ -36,8 +36,8 @@ let }; }; - mkListParam = opt : description : { - toArgs = _opt : listToArgs opt; + mkListParam = opt: description: { + toArgs = _opt: listToArgs opt; option = mkOption { type = types.listOf types.str; default = []; @@ -45,8 +45,8 @@ let }; }; - mkAttrsParam = opt : description : { - toArgs = _opt : attrsToArgs opt; + mkAttrsParam = opt: description: { + toArgs = _opt: attrsToArgs opt; option = mkOption { type = types.attrsOf types.str; default = {}; @@ -54,8 +54,8 @@ let }; }; - mkStateDirParam = opt : default : description : { - toArgs = _opt : stateDir : optionToArgs opt "/var/lib/${stateDir}"; + mkStateDirParam = opt: default: description: { + toArgs = _opt: stateDir: optionToArgs opt "/var/lib/${stateDir}"; option = mkOption { type = types.str; inherit default; @@ -63,24 +63,24 @@ let }; }; - toYAML = name : attrs : pkgs.runCommandNoCC name { + toYAML = name: attrs: pkgs.runCommandNoCC name { preferLocalBuild = true; json = builtins.toFile "${name}.json" (builtins.toJSON attrs); nativeBuildInputs = [ pkgs.remarshal ]; } ''json2yaml -i $json -o $out''; - thanos = cmd : "${cfg.package}/bin/thanos ${cmd}" + + thanos = cmd: "${cfg.package}/bin/thanos ${cmd}" + (let args = cfg."${cmd}".arguments; in optionalString (length args != 0) (" \\\n " + concatStringsSep " \\\n " args)); - argumentsOf = cmd : concatLists (collect isList - (flip mapParamsRecursive params."${cmd}" (path : param : + argumentsOf = cmd: concatLists (collect isList + (flip mapParamsRecursive params."${cmd}" (path: param: let opt = concatStringsSep "." path; v = getAttrFromPath path cfg."${cmd}"; in param.toArgs opt v))); - mkArgumentsOption = cmd : mkOption { + mkArgumentsOption = cmd: mkOption { type = types.listOf types.str; default = argumentsOf cmd; description = '' @@ -95,10 +95,10 @@ let }; mapParamsRecursive = - let noParam = attr : !(attr ? "toArgs" && attr ? "option"); + let noParam = attr: !(attr ? "toArgs" && attr ? "option"); in mapAttrsRecursiveCond noParam; - paramsToOptions = mapParamsRecursive (_path : param : param.option); + paramsToOptions = mapParamsRecursive (_path: param: param.option); params = { @@ -157,10 +157,10 @@ let ''; }; - objstore = cfg : { + objstore = cfg: { objstore.config-file = { - toArgs = _opt : path : optionToArgs "objstore.config-file" path; + toArgs = _opt: path: optionToArgs "objstore.config-file" path; option = mkOption { type = with types; nullOr str; default = if cfg.objstore.config == null then null @@ -177,7 +177,7 @@ let objstore.config = { - toArgs = _opt : _attrs : []; + toArgs = _opt: _attrs: []; option = nullOpt types.attrs '' Object store configuration. @@ -533,7 +533,7 @@ let ''; startAt = { - toArgs = _opt : startAt : flagToArgs "wait" (startAt == null); + toArgs = _opt: startAt: flagToArgs "wait" (startAt == null); option = nullOpt types.str '' When this option is set to a systemd.time specification the Thanos compactor will run at the specified period. @@ -588,7 +588,7 @@ let }; - assertRelativeStateDir = cmd : { + assertRelativeStateDir = cmd: { assertions = [ { assertion = !hasPrefix "/" cfg."${cmd}".stateDir; From aefb0aa912b0c7eb0fe686d03a5b0d61e55cb661 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 16 Jun 2019 15:13:18 +0200 Subject: [PATCH 1178/1611] thanos: 0.5.0-rc.0 -> 0.5.0 --- pkgs/servers/monitoring/thanos/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix index 21bee7168c7..b7df978fd7a 100644 --- a/pkgs/servers/monitoring/thanos/default.nix +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -8,13 +8,13 @@ let in buildGoModule rec { pname = "thanos"; - version = "0.5.0-rc.0"; + version = "0.5.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "improbable-eng"; repo = "thanos"; - sha256 = "1m7jj5g7s4c7nhbyc6vwn08ripp4d3ciim48siillwhm90gbphrw"; + sha256 = "0my0653mkb14m93s4x3nyf8khyljkvi5sq049lir8yqzqn7p1654"; }; overrideModAttrs = oldAttrs : { From e753322c481707fa3d972260e46ab04fdc967807 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 16 Jun 2019 15:38:57 +0200 Subject: [PATCH 1179/1611] thanos: remove bzr because 0.5.0 apparently doesn't need it anymore I'll leave in the support for overrideModAttrs because that can be useful for other go packages. --- pkgs/servers/monitoring/thanos/default.nix | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix index b7df978fd7a..4bb7e8e037c 100644 --- a/pkgs/servers/monitoring/thanos/default.nix +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -1,11 +1,4 @@ -{ stdenv, runCommandNoCC, makeWrapper, buildGoModule, fetchFromGitHub, bazaar }: -let - bazaarNoCertValidation = - runCommandNoCC "bzr-no-cert-validation" { - inherit bazaar; - buildInputs = [ makeWrapper ]; - } "makeWrapper $bazaar/bin/bzr $out/bin/bzr --add-flags -Ossl.cert_reqs=none"; -in +{ stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "thanos"; version = "0.5.0"; @@ -17,12 +10,6 @@ buildGoModule rec { sha256 = "0my0653mkb14m93s4x3nyf8khyljkvi5sq049lir8yqzqn7p1654"; }; - overrideModAttrs = oldAttrs : { - nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [ - bazaarNoCertValidation - ]; - }; - modSha256 = "1236cg00h8077fmvyddwjsnw85r69ac18b2chcpgzd85xdcaxavk"; subPackages = "cmd/thanos"; From 6a59dc35f6a4f54ec84dd5c7447e855fde3d4688 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 16 Jun 2019 16:22:01 +0200 Subject: [PATCH 1180/1611] nixos/tests/prometheus-2.nix: increase diskSize of the store machine This is to fix the following error in the test on aarch64-linux: store# [ 126.911144] thanos[739]: level=error ts=2019-06-16T14:00:26.59870538Z caller=main.go:182 msg="running command failed" err="error executing compaction: first pass of downsampling failed: create dir: mkdir /var/lib/thanos-compact/downsample: no space left on device" store# [ 126.942655] systemd[1]: thanos-compact.service: Main process exited, code=exited, status=1/FAILURE --- nixos/tests/prometheus-2.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/prometheus-2.nix b/nixos/tests/prometheus-2.nix index 3e2c675b7c6..219c47c73d9 100644 --- a/nixos/tests/prometheus-2.nix +++ b/nixos/tests/prometheus-2.nix @@ -132,6 +132,7 @@ in import ./make-test.nix { }; store = { pkgs, ... }: { + virtualisation.diskSize = 2 * 1024; environment.systemPackages = with pkgs; [ jq thanos ]; services.thanos.store = { enable = true; From 0a59be7136db02098b4c085350461fec8810b979 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Sun, 28 Jul 2019 12:07:52 +0200 Subject: [PATCH 1181/1611] thanos: 0.5.0 -> 0.6.0 --- nixos/modules/services/monitoring/thanos.nix | 54 +++++++++++++------- pkgs/servers/monitoring/thanos/default.nix | 6 +-- 2 files changed, 38 insertions(+), 22 deletions(-) diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index 93e858c6607..b41e99b7647 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -113,23 +113,39 @@ let ''; }; - gcloudtrace = { + tracing = cfg: { + tracing.config-file = { + toArgs = _opt: path: optionToArgs "tracing.config-file" path; + option = mkOption { + type = with types; nullOr str; + default = if cfg.tracing.config == null then null + else toString (toYAML "tracing.yaml" cfg.tracing.config); + defaultText = '' + if config.services.thanos..tracing.config == null then null + else toString (toYAML "tracing.yaml" config.services.thanos..tracing.config); + ''; + description = '' + Path to YAML file that contains tracing configuration. + ''; + }; + }; - gcloudtrace.project = mkParam types.str '' - GCP project to send Google Cloud Trace tracings to. + tracing.config = + { + toArgs = _opt: _attrs: []; + option = nullOpt types.attrs '' + Tracing configuration. - If null, tracing will be disabled. - ''; + When not null the attribute set gets converted to + a YAML file and stored in the Nix store. The option + will default to its path. - gcloudtrace.sample-factor = mkParamDef types.int 1 '' - How often we send traces 1/<sample-factor>. - - If 0 no trace will be sent periodically, unless - forced by baggage item. - ''; + If is set this option has no effect. + ''; + }; }; - common = params.log // params.gcloudtrace // { + common = cfg: params.log // params.tracing cfg // { http-address = mkParamDef types.str "0.0.0.0:10902" '' Listen host:port for HTTP endpoints. @@ -190,7 +206,7 @@ let }; }; - sidecar = params.common // params.objstore cfg.sidecar // { + sidecar = params.common cfg.sidecar // params.objstore cfg.sidecar // { prometheus.url = mkParamDef types.str "http://localhost:9090" '' URL at which to reach Prometheus's API. @@ -224,7 +240,7 @@ let }; - store = params.common // params.objstore cfg.store // { + store = params.common cfg.store // params.objstore cfg.store // { stateDir = mkStateDirParam "data-dir" "thanos-store" '' Data directory relative to /var/lib @@ -262,7 +278,7 @@ let ''; }; - query = params.common // { + query = params.common cfg.query // { grpc-client-tls-secure = mkFlagParam '' Use TLS when talking to the gRPC server @@ -385,7 +401,7 @@ let ''; }; - rule = params.common // params.objstore cfg.rule // { + rule = params.common cfg.rule // params.objstore cfg.rule // { labels = mkAttrsParam "label" '' Labels to be applied to all generated metrics. @@ -497,7 +513,7 @@ let ''; }; - compact = params.log // params.gcloudtrace // params.objstore cfg.compact // { + compact = params.log // params.tracing cfg.compact // params.objstore cfg.compact // { http-address = mkParamDef types.str "0.0.0.0:10902" '' Listen host:port for HTTP endpoints. @@ -553,7 +569,7 @@ let ''; }; - downsample = params.log // params.gcloudtrace // params.objstore cfg.downsample // { + downsample = params.log // params.tracing cfg.downsample // params.objstore cfg.downsample // { stateDir = mkStateDirParam "data-dir" "thanos-downsample" '' Data directory relative to /var/lib @@ -562,7 +578,7 @@ let }; - receive = params.common // params.objstore cfg.receive // { + receive = params.common cfg.receive // params.objstore cfg.receive // { remote-write.address = mkParamDef types.str "0.0.0.0:19291" '' Address to listen on for remote write requests. diff --git a/pkgs/servers/monitoring/thanos/default.nix b/pkgs/servers/monitoring/thanos/default.nix index 4bb7e8e037c..28218b8f66d 100644 --- a/pkgs/servers/monitoring/thanos/default.nix +++ b/pkgs/servers/monitoring/thanos/default.nix @@ -1,16 +1,16 @@ { stdenv, buildGoModule, fetchFromGitHub }: buildGoModule rec { pname = "thanos"; - version = "0.5.0"; + version = "0.6.0"; src = fetchFromGitHub { rev = "v${version}"; owner = "improbable-eng"; repo = "thanos"; - sha256 = "0my0653mkb14m93s4x3nyf8khyljkvi5sq049lir8yqzqn7p1654"; + sha256 = "0vcp7m8fsk4jyk49jh9wmbvkx5k03xw10f4lbsxfmwib1y5pz2x0"; }; - modSha256 = "1236cg00h8077fmvyddwjsnw85r69ac18b2chcpgzd85xdcaxavk"; + modSha256 = "139b66jdryqv4s1hjbn9fzkyzn1160wr4z6a6wmmvm3f6p6wgjxp"; subPackages = "cmd/thanos"; From f84d3d565af8173f0d225d067e503503d110f66e Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 28 Jul 2019 13:54:50 +0200 Subject: [PATCH 1182/1611] mongodb: fix build on aarch64 --- pkgs/servers/nosql/mongodb/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/servers/nosql/mongodb/default.nix b/pkgs/servers/nosql/mongodb/default.nix index b1d9154a747..842c988d9b3 100644 --- a/pkgs/servers/nosql/mongodb/default.nix +++ b/pkgs/servers/nosql/mongodb/default.nix @@ -81,6 +81,8 @@ in stdenv.mkDerivation rec { preBuild = '' sconsFlags+=" CC=$CC" sconsFlags+=" CXX=$CXX" + '' + optionalString stdenv.isAarch64 '' + sconsFlags+=" CCFLAGS='-march=armv8-a+crc'" ''; preInstall = '' From 620adb5638324fa7b881dad6459a629e50c9b608 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 28 Jul 2019 11:51:59 -0400 Subject: [PATCH 1183/1611] linux: 4.19.61 -> 4.19.62 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 9ab4de7bf85..8a07b99900c 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.61"; + version = "4.19.62"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1scwb6ynr93k4a1vzpw2x1hzafhfs06ckf9v6fk1zvkh8jw1rc5c"; + sha256 = "1p6s1ksrsq3za7644j0qf9brf6brwq39jxpfln5ypmyfi5qn9gh7"; }; } // (args.argsOverride or {})) From 709c2386aa21779ce26138a350add799104dfa9f Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 28 Jul 2019 11:52:44 -0400 Subject: [PATCH 1184/1611] linux: 5.1.20 -> 5.1.21 --- pkgs/os-specific/linux/kernel/linux-5.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.1.nix b/pkgs/os-specific/linux/kernel/linux-5.1.nix index 6ff9f5163d3..ad3b292656e 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.1.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.1.20"; + version = "5.1.21"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "039i5b41dv930kmq8jwskcwjc6r26h9xy7jgbi6aggn0ycyig21d"; + sha256 = "1xj1wfhjz2s5a8j6zx3fsd7rrrkvw5waszzylf2gn3ag6615yjan"; }; } // (args.argsOverride or {})) From d3433f71a982eaa2fa9925272545b08c57eb3ef5 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 28 Jul 2019 11:53:14 -0400 Subject: [PATCH 1185/1611] linux: 5.2.3 -> 5.2.4 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 3585a523119..324c5237444 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2.3"; + version = "5.2.4"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "018fiz8bycglh5b031b710zllv2s5w017ylq0j30923p744n0g3m"; + sha256 = "0hzfayq79bksng09ngw3k3h3zkd6ndfn059rvwpznypy1fg8pkdi"; }; } // (args.argsOverride or {})) From 5bda6a3132e5787e151b54710309c9688d2abf6f Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sun, 28 Jul 2019 18:49:51 +0200 Subject: [PATCH 1186/1611] jormungandr: init at 0.3.1 --- .../altcoins/jormungandr/default.nix | 38 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 40 insertions(+) create mode 100644 pkgs/applications/altcoins/jormungandr/default.nix diff --git a/pkgs/applications/altcoins/jormungandr/default.nix b/pkgs/applications/altcoins/jormungandr/default.nix new file mode 100644 index 00000000000..d58e05184b6 --- /dev/null +++ b/pkgs/applications/altcoins/jormungandr/default.nix @@ -0,0 +1,38 @@ +{ stdenv +, fetchgit +, rustPlatform +, openssl +, pkgconfig +, protobuf +, rustup +}: + +rustPlatform.buildRustPackage rec { + pname = "jormungandr"; + version = "0.3.1"; + + src = fetchgit { + url = "https://github.com/input-output-hk/${pname}"; + rev = "v${version}"; + sha256 = "0ys8sw73c7binxnl79dqi7sxva62bgifbhgyzvvjvmjjdxgq4kfp"; + fetchSubmodules = true; + }; + + cargoSha256 = "0fphjzz78ym15qbka01idnq6vkyf4asrnhrhvxngwc3bifmnj937"; + + nativeBuildInputs = [ pkgconfig protobuf rustup ]; + buildInputs = [ openssl ]; + + PROTOC = "${protobuf}/bin/protoc"; + + # Disabling integration tests + doCheck = false; + + meta = with stdenv.lib; { + description = "An aspiring blockchain node"; + homepage = "https://input-output-hk.github.io/jormungandr/"; + license = licenses.mit; + maintainers = [ maintainers.mmahut ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b6e7251c7cb..aa4bee1cd8b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -18799,6 +18799,8 @@ in josm = callPackage ../applications/misc/josm { }; + jormungandr = callPackage ../applications/altcoins/jormungandr { }; + jbrout = callPackage ../applications/graphics/jbrout { }; jwm = callPackage ../applications/window-managers/jwm { }; From 49c4c4a5b97bbe92011e39b4ca76f9258170b6fb Mon Sep 17 00:00:00 2001 From: Andreas Rammhold Date: Sun, 28 Jul 2019 09:55:06 +0200 Subject: [PATCH 1187/1611] gnupatch: apply patches for CVE-2019-1363 and CVE-2019-13638 --- pkgs/tools/text/gnupatch/CVE-2019-13636.patch | 108 ++++++++++++++++++ pkgs/tools/text/gnupatch/CVE-2019-13638.patch | 38 ++++++ pkgs/tools/text/gnupatch/default.nix | 6 + 3 files changed, 152 insertions(+) create mode 100644 pkgs/tools/text/gnupatch/CVE-2019-13636.patch create mode 100644 pkgs/tools/text/gnupatch/CVE-2019-13638.patch diff --git a/pkgs/tools/text/gnupatch/CVE-2019-13636.patch b/pkgs/tools/text/gnupatch/CVE-2019-13636.patch new file mode 100644 index 00000000000..e62c3d41753 --- /dev/null +++ b/pkgs/tools/text/gnupatch/CVE-2019-13636.patch @@ -0,0 +1,108 @@ +From dce4683cbbe107a95f1f0d45fabc304acfb5d71a Mon Sep 17 00:00:00 2001 +From: Andreas Gruenbacher +Date: Mon, 15 Jul 2019 16:21:48 +0200 +Subject: Don't follow symlinks unless --follow-symlinks is given + +* src/inp.c (plan_a, plan_b), src/util.c (copy_to_fd, copy_file, +append_to_file): Unless the --follow-symlinks option is given, open files with +the O_NOFOLLOW flag to avoid following symlinks. So far, we were only doing +that consistently for input files. +* src/util.c (create_backup): When creating empty backup files, (re)create them +with O_CREAT | O_EXCL to avoid following symlinks in that case as well. +--- + src/inp.c | 12 ++++++++++-- + src/util.c | 14 +++++++++++--- + 2 files changed, 21 insertions(+), 5 deletions(-) + +diff --git a/src/inp.c b/src/inp.c +index 32d0919..22d7473 100644 +--- a/src/inp.c ++++ b/src/inp.c +@@ -238,8 +238,13 @@ plan_a (char const *filename) + { + if (S_ISREG (instat.st_mode)) + { +- int ifd = safe_open (filename, O_RDONLY|binary_transput, 0); ++ int flags = O_RDONLY | binary_transput; + size_t buffered = 0, n; ++ int ifd; ++ ++ if (! follow_symlinks) ++ flags |= O_NOFOLLOW; ++ ifd = safe_open (filename, flags, 0); + if (ifd < 0) + pfatal ("can't open file %s", quotearg (filename)); + +@@ -340,6 +345,7 @@ plan_a (char const *filename) + static void + plan_b (char const *filename) + { ++ int flags = O_RDONLY | binary_transput; + int ifd; + FILE *ifp; + int c; +@@ -353,7 +359,9 @@ plan_b (char const *filename) + + if (instat.st_size == 0) + filename = NULL_DEVICE; +- if ((ifd = safe_open (filename, O_RDONLY | binary_transput, 0)) < 0 ++ if (! follow_symlinks) ++ flags |= O_NOFOLLOW; ++ if ((ifd = safe_open (filename, flags, 0)) < 0 + || ! (ifp = fdopen (ifd, binary_transput ? "rb" : "r"))) + pfatal ("Can't open file %s", quotearg (filename)); + if (TMPINNAME_needs_removal) +diff --git a/src/util.c b/src/util.c +index 1cc08ba..fb38307 100644 +--- a/src/util.c ++++ b/src/util.c +@@ -388,7 +388,7 @@ create_backup (char const *to, const struct stat *to_st, bool leave_original) + + try_makedirs_errno = ENOENT; + safe_unlink (bakname); +- while ((fd = safe_open (bakname, O_CREAT | O_WRONLY | O_TRUNC, 0666)) < 0) ++ while ((fd = safe_open (bakname, O_CREAT | O_EXCL | O_WRONLY | O_TRUNC, 0666)) < 0) + { + if (errno != try_makedirs_errno) + pfatal ("Can't create file %s", quotearg (bakname)); +@@ -579,10 +579,13 @@ create_file (char const *file, int open_flags, mode_t mode, + static void + copy_to_fd (const char *from, int tofd) + { ++ int from_flags = O_RDONLY | O_BINARY; + int fromfd; + ssize_t i; + +- if ((fromfd = safe_open (from, O_RDONLY | O_BINARY, 0)) < 0) ++ if (! follow_symlinks) ++ from_flags |= O_NOFOLLOW; ++ if ((fromfd = safe_open (from, from_flags, 0)) < 0) + pfatal ("Can't reopen file %s", quotearg (from)); + while ((i = read (fromfd, buf, bufsize)) != 0) + { +@@ -625,6 +628,8 @@ copy_file (char const *from, char const *to, struct stat *tost, + else + { + assert (S_ISREG (mode)); ++ if (! follow_symlinks) ++ to_flags |= O_NOFOLLOW; + tofd = create_file (to, O_WRONLY | O_BINARY | to_flags, mode, + to_dir_known_to_exist); + copy_to_fd (from, tofd); +@@ -640,9 +645,12 @@ copy_file (char const *from, char const *to, struct stat *tost, + void + append_to_file (char const *from, char const *to) + { ++ int to_flags = O_WRONLY | O_APPEND | O_BINARY; + int tofd; + +- if ((tofd = safe_open (to, O_WRONLY | O_BINARY | O_APPEND, 0)) < 0) ++ if (! follow_symlinks) ++ to_flags |= O_NOFOLLOW; ++ if ((tofd = safe_open (to, to_flags, 0)) < 0) + pfatal ("Can't reopen file %s", quotearg (to)); + copy_to_fd (from, tofd); + if (close (tofd) != 0) +-- +cgit v1.0-41-gc330 + diff --git a/pkgs/tools/text/gnupatch/CVE-2019-13638.patch b/pkgs/tools/text/gnupatch/CVE-2019-13638.patch new file mode 100644 index 00000000000..38caff628aa --- /dev/null +++ b/pkgs/tools/text/gnupatch/CVE-2019-13638.patch @@ -0,0 +1,38 @@ +From 3fcd042d26d70856e826a42b5f93dc4854d80bf0 Mon Sep 17 00:00:00 2001 +From: Andreas Gruenbacher +Date: Fri, 6 Apr 2018 19:36:15 +0200 +Subject: Invoke ed directly instead of using the shell + +* src/pch.c (do_ed_script): Invoke ed directly instead of using a shell +command to avoid quoting vulnerabilities. +--- + src/pch.c | 6 ++---- + 1 file changed, 2 insertions(+), 4 deletions(-) + +diff --git a/src/pch.c b/src/pch.c +index 4fd5a05..16e001a 100644 +--- a/src/pch.c ++++ b/src/pch.c +@@ -2459,9 +2459,6 @@ do_ed_script (char const *inname, char const *outname, + *outname_needs_removal = true; + copy_file (inname, outname, 0, exclusive, instat.st_mode, true); + } +- sprintf (buf, "%s %s%s", editor_program, +- verbosity == VERBOSE ? "" : "- ", +- outname); + fflush (stdout); + + pid = fork(); +@@ -2470,7 +2467,8 @@ do_ed_script (char const *inname, char const *outname, + else if (pid == 0) + { + dup2 (tmpfd, 0); +- execl ("/bin/sh", "sh", "-c", buf, (char *) 0); ++ assert (outname[0] != '!' && outname[0] != '-'); ++ execlp (editor_program, editor_program, "-", outname, (char *) NULL); + _exit (2); + } + else +-- +cgit v1.0-41-gc330 + diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix index 1a5cda5799d..5b61220d50a 100644 --- a/pkgs/tools/text/gnupatch/default.nix +++ b/pkgs/tools/text/gnupatch/default.nix @@ -23,6 +23,12 @@ stdenv.mkDerivation rec { }) # https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300 ./CVE-2018-6952.patch + + # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=dce4683cbbe107a95f1f0d45fabc304acfb5d71a + ./CVE-2019-13636.patch + + # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=3fcd042d26d70856e826a42b5f93dc4854d80bf0 + ./CVE-2019-13638.patch ]; nativeBuildInputs = [ autoreconfHook ]; From 40020f46b6b64cd0de9e18dc01051a09438eb00d Mon Sep 17 00:00:00 2001 From: arcnmx Date: Mon, 24 Jun 2019 15:44:15 -0700 Subject: [PATCH 1188/1611] rls: fix darwin build rls links to internal rustc crates, which introduces an atypical dependency on rustc. A superficial installCheck ensures that the binary is linked properly and able to run on its own. --- pkgs/development/tools/rust/rls/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/tools/rust/rls/default.nix b/pkgs/development/tools/rust/rls/default.nix index 22374d2bbe7..454c5da7143 100644 --- a/pkgs/development/tools/rust/rls/default.nix +++ b/pkgs/development/tools/rust/rls/default.nix @@ -19,6 +19,9 @@ rustPlatform.buildRustPackage rec { # a nightly compiler is required unless we use this cheat code. RUSTC_BOOTSTRAP=1; + # rls-rustc links to rustc_private crates + CARGO_BUILD_RUSTFLAGS = if stdenv.isDarwin then "-C rpath" else null; + nativeBuildInputs = [ pkgconfig cmake ]; buildInputs = [ openssh openssl curl zlib libiconv ] ++ (stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation Security ]); @@ -29,6 +32,11 @@ rustPlatform.buildRustPackage rec { rm tests/client.rs ''; + doInstallCheck = true; + installCheckPhase = '' + $out/bin/rls --version + ''; + meta = with stdenv.lib; { description = "Rust Language Server - provides information about Rust programs to IDEs and other tools"; homepage = https://github.com/rust-lang/rls/; From 6e9bd9385da811a79d0b711e14ee2e1ae02ca433 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sun, 28 Jul 2019 10:08:18 -0700 Subject: [PATCH 1189/1611] duc: optional x11/cairo Also enable darwin hydra builds. --- pkgs/tools/misc/duc/default.nix | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/duc/default.nix b/pkgs/tools/misc/duc/default.nix index f5091ac9720..82b29bb67f6 100644 --- a/pkgs/tools/misc/duc/default.nix +++ b/pkgs/tools/misc/duc/default.nix @@ -1,4 +1,10 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, tokyocabinet, cairo, pango, ncurses }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig +, tokyocabinet, ncurses +, cairo ? null, pango ? null +, enableCairo ? stdenv.isLinux +}: + +assert enableCairo -> cairo != null && pango != null; stdenv.mkDerivation rec { name = "duc-${version}"; @@ -12,14 +18,18 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; - buildInputs = [ tokyocabinet cairo pango ncurses ]; + buildInputs = [ tokyocabinet ncurses ] ++ + stdenv.lib.optionals enableCairo [ cairo pango ]; + + configureFlags = + stdenv.lib.optionals (!enableCairo) [ "--disable-x11" "--disable-cairo" ]; meta = with stdenv.lib; { homepage = http://duc.zevv.nl/; description = "Collection of tools for inspecting and visualizing disk usage"; license = licenses.gpl2; - platforms = platforms.linux; + platforms = platforms.all; maintainers = [ maintainers.lethalman ]; }; } From 20b09bee14cd3768ec8036f5533b3bf23b224da4 Mon Sep 17 00:00:00 2001 From: Ioannis Koutras Date: Sun, 28 Jul 2019 20:19:11 +0200 Subject: [PATCH 1190/1611] vlc: use wrapQtAppsHook --- pkgs/applications/video/vlc/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix index e9fc0b4feda..8979e9790b4 100644 --- a/pkgs/applications/video/vlc/default.nix +++ b/pkgs/applications/video/vlc/default.nix @@ -9,7 +9,7 @@ , libass, libva, libdvbpsi, libdc1394, libraw1394, libopus , libvdpau, libsamplerate, live555, fluidsynth, wayland, wayland-protocols , onlyLibVLC ? false -, withQt5 ? true, qtbase ? null, qtsvg ? null, qtx11extras ? null +, withQt5 ? true, qtbase ? null, qtsvg ? null, qtx11extras ? null, wrapQtAppsHook ? null , jackSupport ? false , removeReferencesTo , chromecastSupport ? true, protobuf, libmicrodns @@ -21,7 +21,7 @@ with stdenv.lib; -assert (withQt5 -> qtbase != null && qtsvg != null && qtx11extras != null); +assert (withQt5 -> qtbase != null && qtsvg != null && qtx11extras != null && wrapQtAppsHook != null); stdenv.mkDerivation rec { name = "vlc-${version}"; @@ -49,7 +49,8 @@ stdenv.mkDerivation rec { ++ optional jackSupport libjack2 ++ optionals chromecastSupport [ protobuf libmicrodns ]; - nativeBuildInputs = [ autoreconfHook perl pkgconfig removeReferencesTo ]; + nativeBuildInputs = [ autoreconfHook perl pkgconfig removeReferencesTo ] + ++ optionals withQt5 [ wrapQtAppsHook ]; enableParallelBuilding = true; From c3dacc9095bdd5feacc74bc15075544eb30c0d52 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Sun, 28 Jul 2019 20:37:18 +0200 Subject: [PATCH 1191/1611] vimPlugins.vim-tmux: init at 2019-03-22 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 311a3aac8a7..89903a86eaf 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -4457,6 +4457,17 @@ let }; }; + vim-tmux = buildVimPluginFrom2Nix { + pname = "vim-tmux"; + version = "2019-03-22"; + src = fetchFromGitHub { + owner = "tmux-plugins"; + repo = "vim-tmux"; + rev = "4e77341a2f8b9b7e41e81e9debbcecaea5987c85"; + sha256 = "16fgc0lx1jr8zbayanf5w677ssiw5xb8vwfaca295c8xlk760c3m"; + }; + }; + vim-tmux-navigator = buildVimPluginFrom2Nix { pname = "vim-tmux-navigator"; version = "2019-01-29"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 83857d09634..88f679e4652 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -357,6 +357,7 @@ thinca/vim-themis thinca/vim-visualstar thosakwe/vim-flutter tikhomirov/vim-glsl +tmux-plugins/vim-tmux tomasr/molokai tomlion/vim-solidity tommcdo/vim-lion From 5ae73cf14e1b98a9a76772d1639087b4549f311b Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Sun, 28 Jul 2019 20:35:34 +0200 Subject: [PATCH 1192/1611] vimPlugins.vim-hybrid-material: init at 2018-11-12 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 311a3aac8a7..88bc5f671cc 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -3444,6 +3444,17 @@ let }; }; + vim-hybrid-material = buildVimPluginFrom2Nix { + pname = "vim-hybrid-material"; + version = "2018-11-12"; + src = fetchFromGitHub { + owner = "kristijanhusak"; + repo = "vim-hybrid-material"; + rev = "f2e92ac7e5c4bb75d72f0abaea939e4364e00e2e"; + sha256 = "01b9n598106qh68ky3fykczq13pldi221r7lrxvg0vnv2zp1z5qd"; + }; + }; + vim-iced-coffee-script = buildVimPluginFrom2Nix { pname = "vim-iced-coffee-script"; version = "2013-12-26"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 83857d09634..943f7db7903 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -155,6 +155,7 @@ KeitaNakamura/neodark.vim keith/swift.vim kien/rainbow_parentheses.vim konfekt/fastfold +kristijanhusak/vim-hybrid-material kshenoy/vim-signature lambdalisue/vim-gista lambdalisue/vim-pager From c6e7bc2977f728efcecfb954bbb38d436e98b798 Mon Sep 17 00:00:00 2001 From: Mathis Date: Mon, 29 Jul 2019 03:58:36 +0800 Subject: [PATCH 1193/1611] google-cloud-sdk: 241.0.0 -> 255.0.0 (#65417) --- pkgs/tools/admin/google-cloud-sdk/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix index 0b3b5d28727..91f233df81d 100644 --- a/pkgs/tools/admin/google-cloud-sdk/default.nix +++ b/pkgs/tools/admin/google-cloud-sdk/default.nix @@ -19,18 +19,18 @@ let sources = name: system: { x86_64-darwin = { url = "${baseUrl}/${name}-darwin-x86_64.tar.gz"; - sha256 = "1w94c1p8vnp3kf802zpr3i0932f5b5irnfqmxj2p44gfyfmkym1j"; + sha256 = "17gqrfnqbhp9hhlb57nxii18pb5cnxn3k8p2djiw699qkx3aqs13"; }; x86_64-linux = { url = "${baseUrl}/${name}-linux-x86_64.tar.gz"; - sha256 = "0pps7csf8d3rxqgd0bv06ga6cgkqhlbsys0k0sy1ipl3i6h5hmpf"; + sha256 = "1bgvwgyshh0icb07dacrip0q5xs5l2315m1gz5ggz5dhnf0vrz0q"; }; }.${system}; in stdenv.mkDerivation rec { name = "google-cloud-sdk-${version}"; - version = "241.0.0"; + version = "255.0.0"; src = fetchurl (sources name stdenv.hostPlatform.system); From 2547d6cb18fa0d15424f2194631684d096453907 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Sun, 28 Jul 2019 15:47:26 -0400 Subject: [PATCH 1194/1611] gn: 20181031 -> 20190726 --- .../tools/build-managers/gn/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/build-managers/gn/default.nix b/pkgs/development/tools/build-managers/gn/default.nix index d89c5fdbabd..d2f347901eb 100644 --- a/pkgs/development/tools/build-managers/gn/default.nix +++ b/pkgs/development/tools/build-managers/gn/default.nix @@ -2,8 +2,8 @@ , git, ninja, python2 }: let - rev = "96ff462cddf35f98e25fd5d098fc27bc81eab94a"; - sha256 = "1ny23sprl7ygb2lpdnqxv60m8kaf4h2dmpqjp61l5vc2s7f32g97"; + rev = "0bc16a82ea001ad9c94b870f097034be5c8e40b4"; + sha256 = "01as6q5xr0smiihm9m1x74pykd2jcqi4rhv8irmv43v2f0pxwzi5"; shortRev = builtins.substring 0 7 rev; lastCommitPosition = writeText "last_commit_position.h" '' @@ -18,19 +18,13 @@ let in stdenv.mkDerivation rec { name = "gn-${version}"; - version = "20181031"; + version = "20190726"; src = fetchgit { url = "https://gn.googlesource.com/gn"; inherit rev sha256; }; - postPatch = '' - # FIXME Needed with old Apple SDKs - substituteInPlace base/mac/foundation_util.mm \ - --replace "NSArray*" "NSArray*" - ''; - nativeBuildInputs = [ ninja python2 git ]; buildInputs = lib.optionals stdenv.isDarwin (with darwin; with apple_sdk.frameworks; [ libobjc @@ -43,7 +37,7 @@ stdenv.mkDerivation rec { ]); buildPhase = '' - python build/gen.py --no-sysroot --no-last-commit-position + python build/gen.py --no-last-commit-position ln -s ${lastCommitPosition} out/last_commit_position.h ninja -j $NIX_BUILD_CORES -C out gn ''; From 4ed879d97c1e7e7730bb17d32d605710d5704457 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sun, 28 Jul 2019 21:18:55 +0200 Subject: [PATCH 1195/1611] openscad: Use qt5's own mkDerivation Fixes #65514, related to #65399. --- pkgs/applications/graphics/openscad/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/graphics/openscad/default.nix b/pkgs/applications/graphics/openscad/default.nix index ca3dac34dca..e074721b365 100644 --- a/pkgs/applications/graphics/openscad/default.nix +++ b/pkgs/applications/graphics/openscad/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchFromGitHub, qt5, libsForQt5 , bison, flex, eigen, boost, libGLU_combined, glew, opencsg, cgal , mpfr, gmp, glib, pkgconfig, harfbuzz, gettext, freetype, fontconfig -, double-conversion, lib3mf, libzip +, double-conversion, lib3mf, libzip, mkDerivation }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "openscad"; version = "2019.05"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3cee9ced81b..7b76b9f107e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19672,7 +19672,7 @@ in openorienteering-mapper = libsForQt5.callPackage ../applications/gis/openorienteering-mapper { }; - openscad = callPackage ../applications/graphics/openscad {}; + openscad = qt5.callPackage ../applications/graphics/openscad {}; opentimestamps-client = python3Packages.callPackage ../tools/misc/opentimestamps-client {}; From ac50d8e7096fccad543940c4871f44af2729109e Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 28 Jul 2019 22:08:43 +0100 Subject: [PATCH 1196/1611] nixos/wpa_supplicant: Include CRDA regulatory database --- nixos/modules/services/networking/wpa_supplicant.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/networking/wpa_supplicant.nix b/nixos/modules/services/networking/wpa_supplicant.nix index 0bd9edf4a41..63e59e7c8fa 100644 --- a/nixos/modules/services/networking/wpa_supplicant.nix +++ b/nixos/modules/services/networking/wpa_supplicant.nix @@ -204,6 +204,7 @@ in { environment.systemPackages = [ pkgs.wpa_supplicant ]; services.dbus.packages = [ pkgs.wpa_supplicant ]; + services.udev.packages = [ pkgs.crda ]; # FIXME: start a separate wpa_supplicant instance per interface. systemd.services.wpa_supplicant = let From 7ee6226bdd25442cf56265d33d31a715742b45bc Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 28 Jul 2019 22:08:30 +0100 Subject: [PATCH 1197/1611] nixos/networkmanager: Include CRDA regulatory database --- nixos/modules/services/networking/networkmanager.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/networking/networkmanager.nix b/nixos/modules/services/networking/networkmanager.nix index ab6065b2008..551636a33d2 100644 --- a/nixos/modules/services/networking/networkmanager.nix +++ b/nixos/modules/services/networking/networkmanager.nix @@ -177,7 +177,7 @@ in { basePackages = mkOption { type = types.attrsOf types.package; default = { inherit (pkgs) - networkmanager modemmanager wpa_supplicant + networkmanager modemmanager wpa_supplicant crda networkmanager-openvpn networkmanager-vpnc networkmanager-openconnect networkmanager-fortisslvpn networkmanager-l2tp networkmanager-iodine; }; From 186dd1ce58387dd753dd9f7924cccf1034013297 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 28 Jul 2019 22:17:10 +0100 Subject: [PATCH 1198/1611] nixos/gnome3: Include CRDA regulatory database --- nixos/modules/services/x11/desktop-managers/gnome3.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index 4a7a4804e1a..c4c742ed9d7 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -229,7 +229,7 @@ in { # Use the correct gnome3 packageSet networking.networkmanager.basePackages = - { inherit (pkgs) networkmanager modemmanager wpa_supplicant; + { inherit (pkgs) networkmanager modemmanager wpa_supplicant crda; inherit (pkgs.gnome3) networkmanager-openvpn networkmanager-vpnc networkmanager-openconnect networkmanager-fortisslvpn networkmanager-iodine networkmanager-l2tp; }; From d28a8cc4af639b5fe86904b0ba1832c3cb8eb803 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 28 Jul 2019 22:17:19 +0100 Subject: [PATCH 1199/1611] nixos/pantheon: Include CRDA regulatory database --- nixos/modules/services/x11/desktop-managers/pantheon.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/pantheon.nix b/nixos/modules/services/x11/desktop-managers/pantheon.nix index 41903b33fae..e27a479adad 100644 --- a/nixos/modules/services/x11/desktop-managers/pantheon.nix +++ b/nixos/modules/services/x11/desktop-managers/pantheon.nix @@ -147,7 +147,7 @@ in networking.networkmanager.enable = mkDefault true; networking.networkmanager.basePackages = - { inherit (pkgs) networkmanager modemmanager wpa_supplicant; + { inherit (pkgs) networkmanager modemmanager wpa_supplicant crda; inherit (pkgs.gnome3) networkmanager-openvpn networkmanager-vpnc networkmanager-openconnect networkmanager-fortisslvpn networkmanager-iodine networkmanager-l2tp; }; From 6f9fa0644a58a0f9d3de7c61926a89b73255ea6f Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sun, 28 Jul 2019 23:22:51 +0200 Subject: [PATCH 1200/1611] nethack: wrapQtApp only in qtMode Regression introduced in #54525, tracked in #65399. --- pkgs/games/nethack/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/nethack/default.nix b/pkgs/games/nethack/default.nix index 24cc64ac9af..07f84e498db 100644 --- a/pkgs/games/nethack/default.nix +++ b/pkgs/games/nethack/default.nix @@ -97,7 +97,7 @@ in stdenv.mkDerivation rec { enableParallelBuilding = true; - preFixup = '' + preFixup = stdenv.lib.optionalString qtMode '' wrapQtApp "$out/games/nethack" ''; From f498a8b7af41401c167baa6879a8b0271e8ffbf5 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 28 Jul 2019 17:29:11 -0400 Subject: [PATCH 1201/1611] wire-desktop: gdk_pixbuf -> gdk-pixbuf --- .../networking/instant-messengers/wire-desktop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index 3792c91ea91..67d4e480110 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, makeDesktopItem , alsaLib, at-spi2-atk, atk, cairo, cups, dbus, dpkg, expat, fontconfig -, freetype, gdk_pixbuf, glib, gtk3, hunspell, libX11, libXScrnSaver +, freetype, gdk-pixbuf, glib, gtk3, hunspell, libX11, libXScrnSaver , libXcomposite, libXcursor, libXdamage, libXext, libXfixes, libXi, libXrandr , libXrender, libXtst, libnotify, libuuid, nspr, nss, pango, pciutils , pulseaudio, udev, xdg_utils, xorg @@ -71,7 +71,7 @@ let nativeBuildInputs = [ dpkg ]; rpath = stdenv.lib.makeLibraryPath [ alsaLib at-spi2-atk atk cairo cups dbus expat fontconfig freetype - gdk_pixbuf glib gtk3 hunspell libX11 libXScrnSaver libXcomposite + gdk-pixbuf glib gtk3 hunspell libX11 libXScrnSaver libXcomposite libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender libXtst libnotify libuuid nspr nss pango pciutils pulseaudio stdenv.cc.cc udev xdg_utils xorg.libxcb From 584a2129829326e08214c8bfd34a410c813218d1 Mon Sep 17 00:00:00 2001 From: Yegor Timoshenko Date: Mon, 29 Jul 2019 02:26:29 +0300 Subject: [PATCH 1202/1611] aggregateModules: fix x-compilation for out-of-tree kernel modules --- pkgs/top-level/all-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6903fc15ef1..88d00ba7133 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15843,6 +15843,7 @@ in aggregateModules = modules: callPackage ../os-specific/linux/kmod/aggregator.nix { + inherit (buildPackages) kmod; inherit modules; }; From a585e0d8fae0198b05a7b8b488b8026a036b2355 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 28 Jul 2019 21:45:41 -0400 Subject: [PATCH 1203/1611] vscode-extensions.ms-vscode.cpptools: 0.24.0 -> 0.24.1 --- pkgs/misc/vscode-extensions/cpptools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/vscode-extensions/cpptools/default.nix b/pkgs/misc/vscode-extensions/cpptools/default.nix index a60dad9b7b7..a5dad88b924 100644 --- a/pkgs/misc/vscode-extensions/cpptools/default.nix +++ b/pkgs/misc/vscode-extensions/cpptools/default.nix @@ -83,8 +83,8 @@ vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "cpptools"; publisher = "ms-vscode"; - version = "0.24.0"; - sha256 = "0b0rwj3aadd4kf561zpzv95r96dqvhkn7db8d7rz3naaqydz0z8i"; + version = "0.24.1"; + sha256 = "0gqplcppfg2lr6k198q9pw08n0cpc0wvc9w350m9ivv35hw0x5ra"; }; buildInputs = [ From 3b645dc67f7b78d4782ad34988edfd4d4b2a4e13 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 28 Jul 2019 21:46:19 -0400 Subject: [PATCH 1204/1611] vscode-extensions.WakaTime.vscode-wakatime: 2.1.2 -> 2.2.0 --- pkgs/misc/vscode-extensions/wakatime/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/vscode-extensions/wakatime/default.nix b/pkgs/misc/vscode-extensions/wakatime/default.nix index 7a8a097b8d4..371b224d11a 100644 --- a/pkgs/misc/vscode-extensions/wakatime/default.nix +++ b/pkgs/misc/vscode-extensions/wakatime/default.nix @@ -8,8 +8,8 @@ in mktplcRef = { name = "vscode-wakatime"; publisher = "WakaTime"; - version = "2.1.2"; - sha256 = "1cdxmqdz8h9snx25cm3phipxdhjbcn38yfab09in661nr768vrkv"; + version = "2.2.0"; + sha256 = "0mwn72cp8rd9zc527k9l08iyap1wyqzpvzbj8142fa7nsy64jd04"; }; postPatch = '' From 9c52f30d2cdc31d00fe635accee57d2f0a45657e Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Sat, 6 Jul 2019 23:47:58 +0200 Subject: [PATCH 1205/1611] luaPackages.luv: 1.29.1-2 -> 1.30.0-0 --- pkgs/development/lua-modules/generated-packages.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/lua-modules/generated-packages.nix b/pkgs/development/lua-modules/generated-packages.nix index 03651222a04..6309d84fe2e 100644 --- a/pkgs/development/lua-modules/generated-packages.nix +++ b/pkgs/development/lua-modules/generated-packages.nix @@ -1106,11 +1106,11 @@ luuid = buildLuarocksPackage { }; luv = buildLuarocksPackage { pname = "luv"; - version = "1.29.1-2"; + version = "1.30.0-0"; src = fetchurl { - url = https://luarocks.org/luv-1.29.1-2.src.rock; - sha256 = "180g06lkhapb76nhlgsa8ik8z6mrlkvq9mpb8rx74lr101h1yqxg"; + url = https://luarocks.org/luv-1.30.0-0.src.rock; + sha256 = "1z5sdq9ld4sm5pws9qxpk9cadv9i7ycwad1zwsa57pj67gly11vi"; }; disabled = (luaOlder "5.1"); propagatedBuildInputs = [ lua ]; From 4400f4a515a9e6156f805c50e1e5c0b71116ebec Mon Sep 17 00:00:00 2001 From: peterzky <378096232@qq.com> Date: Mon, 29 Jul 2019 13:04:36 +0800 Subject: [PATCH 1206/1611] qt5ct: use Qt mkDerivation --- pkgs/tools/misc/qt5ct/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/qt5ct/default.nix b/pkgs/tools/misc/qt5ct/default.nix index ddd4ae5ce05..9069821fe35 100644 --- a/pkgs/tools/misc/qt5ct/default.nix +++ b/pkgs/tools/misc/qt5ct/default.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, qtbase, qttools, qmake }: +{ mkDerivation, lib, fetchurl, qtbase, qttools, qmake }: -let inherit (stdenv.lib) getDev; in +let inherit (lib) getDev; in -stdenv.mkDerivation rec { +mkDerivation rec { pname = "qt5ct"; version = "0.39"; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with stdenv.lib; { + meta = with lib; { description = "Qt5 Configuration Tool"; homepage = https://www.opendesktop.org/content/show.php?content=168066; platforms = platforms.linux; From 6016ec50c3fe5da7d629daba1e05e438cce1af34 Mon Sep 17 00:00:00 2001 From: Tobias Happ Date: Sun, 28 Jul 2019 20:38:24 +0200 Subject: [PATCH 1207/1611] vimPlugins.gitignore-vim: init at 2014-03-16 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index f4fbd8b3738..14e48b4a621 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -1144,6 +1144,17 @@ let }; }; + gitignore-vim = buildVimPluginFrom2Nix { + pname = "gitignore-vim"; + version = "2014-03-16"; + src = fetchFromGitHub { + owner = "vim-scripts"; + repo = "gitignore.vim"; + rev = "3ad6a15768945fd4fc1b013cec5d8c8e62c7bb87"; + sha256 = "0fg36hrkwqb3accqm7ihw1cjs64fxf73zk06gickdkzq0zn4yl8x"; + }; + }; + gitv = buildVimPluginFrom2Nix { pname = "gitv"; version = "2019-03-02"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 7abfa8d4f94..8fc89a6a69b 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -412,6 +412,7 @@ vim-scripts/changeColorScheme.vim vim-scripts/Colour-Sampler-Pack vim-scripts/DoxygenToolkit.vim vim-scripts/emodeline +vim-scripts/gitignore.vim vim-scripts/Improved-AnsiEsc vim-scripts/jdaddy.vim vim-scripts/matchit.zip From fd5a76bf85fafb1b9734f139d7ca94b4d508ab14 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Wed, 19 Jun 2019 11:47:20 -0700 Subject: [PATCH 1208/1611] fastlane: 2.107.0 -> 2.128.1 --- pkgs/tools/admin/fastlane/Gemfile.lock | 71 +++++----- pkgs/tools/admin/fastlane/gemset.nix | 177 ++++++++++++++++++------- 2 files changed, 173 insertions(+), 75 deletions(-) diff --git a/pkgs/tools/admin/fastlane/Gemfile.lock b/pkgs/tools/admin/fastlane/Gemfile.lock index 88162a3432d..e3cfc580fab 100644 --- a/pkgs/tools/admin/fastlane/Gemfile.lock +++ b/pkgs/tools/admin/fastlane/Gemfile.lock @@ -2,7 +2,7 @@ GEM remote: https://rubygems.org/ specs: CFPropertyList (3.0.0) - addressable (2.5.2) + addressable (2.6.0) public_suffix (>= 2.0.2, < 4.0) atomos (0.1.3) babosa (1.0.2) @@ -13,28 +13,29 @@ GEM highline (~> 1.7.2) declarative (0.0.10) declarative-option (0.1.0) - domain_name (0.5.20180417) + digest-crc (0.4.1) + domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) - dotenv (2.5.0) - emoji_regex (0.1.1) - excon (0.62.0) - faraday (0.15.3) + dotenv (2.7.4) + emoji_regex (1.0.1) + excon (0.65.0) + faraday (0.15.4) multipart-post (>= 1.2, < 3) faraday-cookie_jar (0.0.6) faraday (>= 0.7.4) http-cookie (~> 1.0.0) - faraday_middleware (0.12.2) + faraday_middleware (0.13.1) faraday (>= 0.7.4, < 1.0) - fastimage (2.1.4) - fastlane (2.107.0) + fastimage (2.1.5) + fastlane (2.128.1) CFPropertyList (>= 2.3, < 4.0.0) addressable (>= 2.3, < 3.0.0) babosa (>= 1.0.2, < 2.0.0) - bundler (>= 1.12.0, < 2.0.0) + bundler (>= 1.12.0, < 3.0.0) colored commander-fastlane (>= 4.4.6, < 5.0.0) dotenv (>= 2.1.1, < 3.0.0) - emoji_regex (~> 0.1) + emoji_regex (>= 0.1, < 2.0) excon (>= 0.45.0, < 1.0.0) faraday (~> 0.9) faraday-cookie_jar (~> 0.0.6) @@ -42,10 +43,11 @@ GEM fastimage (>= 2.1.0, < 3.0.0) gh_inspector (>= 1.1.2, < 2.0.0) google-api-client (>= 0.21.2, < 0.24.0) + google-cloud-storage (>= 1.15.0, < 2.0.0) highline (>= 1.7.2, < 2.0.0) json (< 3.0.0) - mini_magick (~> 4.5.1) - multi_json + jwt (~> 2.1.0) + mini_magick (>= 4.9.4, < 5.0.0) multi_xml (~> 0.5) multipart-post (~> 2.0.0) plist (>= 3.1.0, < 4.0.0) @@ -54,12 +56,12 @@ GEM security (= 0.1.3) simctl (~> 1.6.3) slack-notifier (>= 2.0.0, < 3.0.0) - terminal-notifier (>= 1.6.2, < 2.0.0) + terminal-notifier (>= 2.0.0, < 3.0.0) terminal-table (>= 1.4.5, < 2.0.0) tty-screen (>= 0.6.3, < 1.0.0) tty-spinner (>= 0.8.0, < 1.0.0) word_wrap (~> 1.0.0) - xcodeproj (>= 1.6.0, < 2.0.0) + xcodeproj (>= 1.8.1, < 2.0.0) xcpretty (~> 0.3.0) xcpretty-travis-formatter (>= 0.0.3) gh_inspector (1.1.3) @@ -71,6 +73,15 @@ GEM representable (~> 3.0) retriable (>= 2.0, < 4.0) signet (~> 0.9) + google-cloud-core (1.3.0) + google-cloud-env (~> 1.0) + google-cloud-env (1.2.0) + faraday (~> 0.11) + google-cloud-storage (1.16.0) + digest-crc (~> 0.4) + google-api-client (~> 0.23) + google-cloud-core (~> 1.2) + googleauth (>= 0.6.2, < 0.10.0) googleauth (0.6.7) faraday (~> 0.12) jwt (>= 1.4, < 3.0) @@ -82,20 +93,20 @@ GEM http-cookie (1.0.3) domain_name (~> 0.5) httpclient (2.8.3) - json (2.1.0) + json (2.2.0) jwt (2.1.0) memoist (0.16.0) mime-types (3.2.2) mime-types-data (~> 3.2015) - mime-types-data (3.2018.0812) - mini_magick (4.5.1) + mime-types-data (3.2019.0331) + mini_magick (4.9.5) multi_json (1.13.1) multi_xml (0.6.0) multipart-post (2.0.0) nanaimo (0.2.6) naturally (2.2.0) - os (1.0.0) - plist (3.4.0) + os (1.0.1) + plist (3.5.0) public_suffix (2.0.5) representable (3.0.4) declarative (< 0.1.0) @@ -103,7 +114,7 @@ GEM uber (< 0.2.0) retriable (3.1.2) rouge (2.0.7) - rubyzip (1.2.2) + rubyzip (1.2.3) security (0.1.3) signet (0.11.0) addressable (~> 2.3) @@ -114,20 +125,20 @@ GEM CFPropertyList naturally slack-notifier (2.3.2) - terminal-notifier (1.8.0) + terminal-notifier (2.0.0) terminal-table (1.8.0) unicode-display_width (~> 1.1, >= 1.1.1) - tty-cursor (0.6.0) - tty-screen (0.6.5) - tty-spinner (0.8.0) - tty-cursor (>= 0.5.0) + tty-cursor (0.7.0) + tty-screen (0.7.0) + tty-spinner (0.9.1) + tty-cursor (~> 0.7) uber (0.1.0) unf (0.1.4) unf_ext - unf_ext (0.0.7.5) - unicode-display_width (1.4.0) + unf_ext (0.0.7.6) + unicode-display_width (1.6.0) word_wrap (1.0.0) - xcodeproj (1.7.0) + xcodeproj (1.11.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) @@ -145,4 +156,4 @@ DEPENDENCIES fastlane BUNDLED WITH - 1.16.3 + 1.17.2 diff --git a/pkgs/tools/admin/fastlane/gemset.nix b/pkgs/tools/admin/fastlane/gemset.nix index 5afad1683c9..2511822a9fc 100644 --- a/pkgs/tools/admin/fastlane/gemset.nix +++ b/pkgs/tools/admin/fastlane/gemset.nix @@ -1,12 +1,14 @@ { addressable = { dependencies = ["public_suffix"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0viqszpkggqi8hq87pqp0xykhvz60g99nwmkwsb0v45kc2liwxvk"; + sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; type = "gem"; }; - version = "2.5.2"; + version = "2.6.0"; }; atomos = { source = { @@ -81,47 +83,67 @@ }; version = "0.1.0"; }; + digest-crc = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "08q8p0fk51aa6dwhy2xmjaj76arcq9nn22gyia162jmqpccfx50l"; + type = "gem"; + }; + version = "0.4.1"; + }; domain_name = { dependencies = ["unf"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0abdlwb64ns7ssmiqhdwgl27ly40x2l27l8hs8hn0z4kb3zd2x3v"; + sha256 = "0lcqjsmixjp52bnlgzh4lg9ppsk52x9hpwdjd53k8jnbah2602h0"; type = "gem"; }; - version = "0.5.20180417"; + version = "0.5.20190701"; }; dotenv = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1va5y19f7l5jh53vz5vibz618lg8z93k5m2k70l25s9k46v2gfm3"; + sha256 = "1375dyawvcp81d94jkjwjjkj3j23gsp06cfwh15g695l4g3ssswc"; type = "gem"; }; - version = "2.5.0"; + version = "2.7.4"; }; emoji_regex = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0pcw3axgcmsgihp0xlsdqrqmavz0lw8g396b048fg21033kssxjn"; + sha256 = "1jfsv8ik2h1msqf3if1f121pnx3lccp8fqnka9na309mnw3bq532"; type = "gem"; }; - version = "0.1.1"; + version = "1.0.1"; }; excon = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "15l9w0938c19nxmrp09n75qpmm64k12xj69h47yvxzcxcpbgnkb2"; + sha256 = "1mc6y6n7i0hhk7i8wwi4qjnpkm013p7z3xr994s696hk74f91a7j"; type = "gem"; }; - version = "0.62.0"; + version = "0.65.0"; }; faraday = { dependencies = ["multipart-post"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "16hwxc8v0z6gkanckjhx0ffgqmzpc4ywz4dfhxpjlz2mbz8d5m52"; + sha256 = "0s72m05jvzc1pd6cw1i289chas399q0a14xrwg4rvkdwy7bgzrh0"; type = "gem"; }; - version = "0.15.3"; + version = "0.15.4"; }; faraday-cookie_jar = { dependencies = ["faraday" "http-cookie"]; @@ -134,29 +156,35 @@ }; faraday_middleware = { dependencies = ["faraday"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1p7icfl28nvl8qqdsngryz1snqic9l8x6bk0dxd7ygn230y0k41d"; + sha256 = "1a93rs58bakqck7bcihasz66a1riy22h2zpwrpmb13gp8mw3wkmr"; type = "gem"; }; - version = "0.12.2"; + version = "0.13.1"; }; fastimage = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0i7p9jgb9x1lxkhkwq8xlq7an5qbgdq6gsyrbs2xnf5ffa8yx1i2"; + sha256 = "1iy9jm13r2r4yz41xaivhxs8mvqn57fjwihxvazbip002mq6rxfz"; type = "gem"; }; - version = "2.1.4"; + version = "2.1.5"; }; fastlane = { - dependencies = ["CFPropertyList" "addressable" "babosa" "colored" "commander-fastlane" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-api-client" "highline" "json" "mini_magick" "multi_json" "multi_xml" "multipart-post" "plist" "public_suffix" "rubyzip" "security" "simctl" "slack-notifier" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"]; + dependencies = ["CFPropertyList" "addressable" "babosa" "colored" "commander-fastlane" "dotenv" "emoji_regex" "excon" "faraday" "faraday-cookie_jar" "faraday_middleware" "fastimage" "gh_inspector" "google-api-client" "google-cloud-storage" "highline" "json" "jwt" "mini_magick" "multi_xml" "multipart-post" "plist" "public_suffix" "rubyzip" "security" "simctl" "slack-notifier" "terminal-notifier" "terminal-table" "tty-screen" "tty-spinner" "word_wrap" "xcodeproj" "xcpretty" "xcpretty-travis-formatter"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1d3jv7ik3rivmhxzcapia2lzf9xjmjgi4yxkl60ly6pcbbvhl48w"; + sha256 = "0h3k6rzy9p9s7ajk96jarg7sqs9npdnj7acr4v2gs8bpf31hqgpc"; type = "gem"; }; - version = "2.107.0"; + version = "2.128.1"; }; gh_inspector = { source = { @@ -175,6 +203,39 @@ }; version = "0.23.9"; }; + google-cloud-core = { + dependencies = ["google-cloud-env"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0gqn523gqj6dwbj9ddcb8rjw0sai4x138pk3l3qzmq8jxz67qqj5"; + type = "gem"; + }; + version = "1.3.0"; + }; + google-cloud-env = { + dependencies = ["faraday"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0j25sy2qhybqfwsyh8j4m10z2x7dn2jmf1gwr1w2b90cmya4yrbd"; + type = "gem"; + }; + version = "1.2.0"; + }; + google-cloud-storage = { + dependencies = ["digest-crc" "google-api-client" "google-cloud-core" "googleauth"]; + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0lslrlrrhjj8imbpzvbbwflrvq06r0x5h74mlq726yvkr7akyqlq"; + type = "gem"; + }; + version = "1.16.0"; + }; googleauth = { dependencies = ["faraday" "jwt" "memoist" "multi_json" "os" "signet"]; source = { @@ -210,12 +271,14 @@ version = "2.8.3"; }; json = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01v6jjpvh3gnq6sgllpfqahlgxzj50ailwhj9b3cd20hi2dx0vxp"; + sha256 = "0sx97bm9by389rbzv8r1f43h06xcz8vwi3h5jv074gvparql7lcx"; type = "gem"; }; - version = "2.1.0"; + version = "2.2.0"; }; jwt = { source = { @@ -243,20 +306,24 @@ version = "3.2.2"; }; mime-types-data = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; + sha256 = "1m00pg19cm47n1qlcxgl91ajh2yq0fszvn1vy8fy0s1jkrp9fw4a"; type = "gem"; }; - version = "3.2018.0812"; + version = "3.2019.0331"; }; mini_magick = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1a59k5l29vj060yscaqk370rg5vyr132kbw6x3zar7khzjqjqd8p"; + sha256 = "0qy09qrd5bwh8mkbj514n5vcw9ni73218h9s3zmvbpmdwrnzi8j4"; type = "gem"; }; - version = "4.5.1"; + version = "4.9.5"; }; multi_json = { source = { @@ -299,20 +366,24 @@ version = "2.2.0"; }; os = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1s401gvhqgs2r8hh43ia205mxsy1wc0ib4k76wzkdpspfcnfr1rk"; + sha256 = "06r55k01g32lvz4wf2s6hpjlxbbag113jsvff3w64jllfr315a73"; type = "gem"; }; - version = "1.0.0"; + version = "1.0.1"; }; plist = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1f27kj49v76psqxgcwvwc63cf7va2bszmmw2qrrd281qzi2if79l"; + sha256 = "0ra0910xxbhfsmdi0ig36pr3q0khdqzwb5da3wg7y3n8d1sh9ffp"; type = "gem"; }; - version = "3.4.0"; + version = "3.5.0"; }; public_suffix = { source = { @@ -348,12 +419,14 @@ version = "2.0.7"; }; rubyzip = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1n1lb2sdwh9h27y244hxzg1lrxxg2m53pk1vq7p33bna003qkyrj"; + sha256 = "1w9gw28ly3zyqydnm8phxchf4ymyjl2r7zf7c12z8kla10cpmhlc"; type = "gem"; }; - version = "1.2.2"; + version = "1.2.3"; }; security = { source = { @@ -390,12 +463,14 @@ version = "2.3.2"; }; terminal-notifier = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0vy75sbq236v1p83jj6r3a9d52za5lqj2vj24np9lrszdczm9zcb"; + sha256 = "1slc0y8pjpw30hy21v8ypafi8r7z9jlj4bjbgz03b65b28i2n3bs"; type = "gem"; }; - version = "1.8.0"; + version = "2.0.0"; }; terminal-table = { dependencies = ["unicode-display_width"]; @@ -407,29 +482,35 @@ version = "1.8.0"; }; tty-cursor = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1f4rsapf4apaxn11xnqrq7axgrlvn6pdlqxqb2g34jnpfh5yrk1i"; + sha256 = "0prcxdy6qhqba4cv7hsy503b3bjciqk3j3hhzvcbij1kj2gh31c9"; type = "gem"; }; - version = "0.6.0"; + version = "0.7.0"; }; tty-screen = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0azpjgyhdm8ycblnx9crq3dgb2x8yg454a13n60zfpsc0n138sw1"; + sha256 = "1143g05fs28ssgimaph6sdnsndd1wrpax9kjypvd2ripa1adm4kx"; type = "gem"; }; - version = "0.6.5"; + version = "0.7.0"; }; tty-spinner = { dependencies = ["tty-cursor"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1xv5bycgmiyx00bq0kx2bdixi3h1ffi86mwj858gqbxlpjbzsi94"; + sha256 = "089qiqzjs1m727kalz8vn2wzgwzdn8mg5gyag901pmimxl64lnvc"; type = "gem"; }; - version = "0.8.0"; + version = "0.9.1"; }; uber = { source = { @@ -449,20 +530,24 @@ version = "0.1.4"; }; unf_ext = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1"; + sha256 = "1ll6w64ibh81qwvjx19h8nj7mngxgffg7aigjx11klvf5k2g4nxf"; type = "gem"; }; - version = "0.0.7.5"; + version = "0.0.7.6"; }; unicode-display_width = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0040bsdpcmvp8w31lqi2s9s4p4h031zv52401qidmh25cgyh4a57"; + sha256 = "08kfiniak1pvg3gn5k6snpigzvhvhyg7slmm0s2qx5zkj62c1z2w"; type = "gem"; }; - version = "1.4.0"; + version = "1.6.0"; }; word_wrap = { source = { @@ -474,12 +559,14 @@ }; xcodeproj = { dependencies = ["CFPropertyList" "atomos" "claide" "colored2" "nanaimo"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1hy2ihcqfjlsrnf8qkm51m1kk154yp0l0007f269ky8j9z5lyw3p"; + sha256 = "1h73ilwyjwyyhj761an3pmicllw50514gxb6b1r4z4klc9rzxw4j"; type = "gem"; }; - version = "1.7.0"; + version = "1.11.0"; }; xcpretty = { dependencies = ["rouge"]; From 71a76ff6a2a59f2e95cf3c9f005e8fa3e55c35d6 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Mon, 29 Jul 2019 00:10:17 +0200 Subject: [PATCH 1209/1611] openscad: not using qt5 and libsForQt5 directly Additional fix to #65522. --- .../graphics/openscad/default.nix | 37 +++++++++++++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 31 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/graphics/openscad/default.nix b/pkgs/applications/graphics/openscad/default.nix index e074721b365..9f7fbc8421b 100644 --- a/pkgs/applications/graphics/openscad/default.nix +++ b/pkgs/applications/graphics/openscad/default.nix @@ -1,7 +1,30 @@ -{ stdenv, fetchFromGitHub, qt5, libsForQt5 -, bison, flex, eigen, boost, libGLU_combined, glew, opencsg, cgal -, mpfr, gmp, glib, pkgconfig, harfbuzz, gettext, freetype, fontconfig -, double-conversion, lib3mf, libzip, mkDerivation +{ stdenv +, fetchFromGitHub +, qtbase +, qtmultimedia +, qscintilla +, bison +, flex +, eigen +, boost +, libGLU_combined +, glew +, opencsg +, cgal +, mpfr +, gmp +, glib +, pkgconfig +, harfbuzz +, gettext +, freetype +, fontconfig +, double-conversion +, lib3mf +, libzip +, mkDerivation +, qtmacextras +, qmake }: mkDerivation rec { @@ -15,14 +38,14 @@ mkDerivation rec { sha256 = "1qz384jqgk75zxk7sqd22ma9pyd94kh4h6a207ldx7p9rny6vc5l"; }; - nativeBuildInputs = [ bison flex pkgconfig gettext qt5.qmake ]; + nativeBuildInputs = [ bison flex pkgconfig gettext qmake ]; buildInputs = [ eigen boost glew opencsg cgal mpfr gmp glib harfbuzz lib3mf libzip double-conversion freetype fontconfig + qtbase qtmultimedia qscintilla ] ++ stdenv.lib.optional stdenv.isLinux libGLU_combined - ++ (with qt5; [qtbase qtmultimedia] ++ stdenv.lib.optional stdenv.isDarwin qtmacextras) - ++ (with libsForQt5; [qscintilla]) + ++ stdenv.lib.optional stdenv.isDarwin qtmacextras ; qmakeFlags = [ "VERSION=${version}" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b76b9f107e..5451a805c11 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19672,7 +19672,7 @@ in openorienteering-mapper = libsForQt5.callPackage ../applications/gis/openorienteering-mapper { }; - openscad = qt5.callPackage ../applications/graphics/openscad {}; + openscad = libsForQt5.callPackage ../applications/graphics/openscad {}; opentimestamps-client = python3Packages.callPackage ../tools/misc/opentimestamps-client {}; From 2e53959303b6a21c246fbdab847efddca3c358e0 Mon Sep 17 00:00:00 2001 From: Rodney Lorrimar Date: Fri, 19 Jul 2019 17:23:41 +1000 Subject: [PATCH 1210/1611] pythonPackages.openapi-spec-validator: init at 0.2.7 --- .../openapi-spec-validator/default.nix | 25 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 27 insertions(+) create mode 100644 pkgs/development/python-modules/openapi-spec-validator/default.nix diff --git a/pkgs/development/python-modules/openapi-spec-validator/default.nix b/pkgs/development/python-modules/openapi-spec-validator/default.nix new file mode 100644 index 00000000000..d0ce48774c3 --- /dev/null +++ b/pkgs/development/python-modules/openapi-spec-validator/default.nix @@ -0,0 +1,25 @@ +{ lib, buildPythonPackage, isPy27, fetchPypi +, jsonschema, pyyaml, six, pathlib +, mock, pytest, pytestcov, pytest-flake8, tox }: + +buildPythonPackage rec { + pname = "openapi-spec-validator"; + version = "0.2.7"; + + src = fetchPypi { + inherit pname version; + sha256 = "1sz9ls6a7h056nc5q76w4xl43sr1h9in2f23qwkxazcazr3zpi3p"; + }; + + propagatedBuildInputs = [ jsonschema pyyaml six ] + ++ (lib.optionals (isPy27) [ pathlib ]); + + checkInputs = [ mock pytest pytestcov pytest-flake8 tox ]; + + meta = with lib; { + homepage = https://github.com/p1c2u/openapi-spec-validator; + description = "Validates OpenAPI Specs against the OpenAPI 2.0 (aka Swagger) and OpenAPI 3.0.0 specification"; + license = licenses.asl20; + maintainers = with maintainers; [ rvl ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f82f7c04b5b..906742e657a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4888,6 +4888,8 @@ in { swagger-spec-validator = callPackage ../development/python-modules/swagger-spec-validator { }; + openapi-spec-validator = callPackage ../development/python-modules/openapi-spec-validator { }; + freezegun = callPackage ../development/python-modules/freezegun { }; taskw = callPackage ../development/python-modules/taskw { }; From c32c6d8ec9be632400ae2c415bbad35b09470530 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B0=D1=80=D0=B8=D0=BA?= Date: Sun, 21 Jul 2019 21:15:06 +0300 Subject: [PATCH 1211/1611] pythonPackages.diofant: init at 0.10.0 --- .../python-modules/diofant/default.nix | 44 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 46 insertions(+) create mode 100644 pkgs/development/python-modules/diofant/default.nix diff --git a/pkgs/development/python-modules/diofant/default.nix b/pkgs/development/python-modules/diofant/default.nix new file mode 100644 index 00000000000..c473f2fb420 --- /dev/null +++ b/pkgs/development/python-modules/diofant/default.nix @@ -0,0 +1,44 @@ +{ lib +, isPy3k +, buildPythonPackage +, fetchPypi +, pytestrunner +, setuptools_scm +, isort +, mpmath +, strategies +}: + +buildPythonPackage rec { + pname = "diofant"; + version = "0.10.0"; + + src = fetchPypi { + inherit version; + pname = "Diofant"; + sha256 = "0qjg0mmz2cqxryr610mppx3virf1gslzrsk24304502588z53v8w"; + }; + + nativeBuildInputs = [ + isort + pytestrunner + setuptools_scm + ]; + + propagatedBuildInputs = [ + mpmath + strategies + ]; + + # tests take ~1h + doCheck = false; + + disabled = !isPy3k; + + meta = with lib; { + description = "A Python CAS library"; + homepage = "https://diofant.readthedocs.io/"; + license = licenses.bsd3; + maintainers = with maintainers; [ suhr ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2cc3e62d2da..0548d5a82de 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -502,6 +502,8 @@ in { diff_cover = callPackage ../development/python-modules/diff_cover { }; + diofant = callPackage ../development/python-modules/diofant { }; + docrep = callPackage ../development/python-modules/docrep { }; dominate = callPackage ../development/python-modules/dominate { }; From f4ce7887ce5b550d6bbd1445c615bf9e2ae5ad5d Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Sun, 28 Jul 2019 23:53:21 +0200 Subject: [PATCH 1212/1611] poezio: 0.12 -> 0.12.1 Moving the source to GitHub from dev.louiz.org. --- .../instant-messengers/poezio/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/poezio/default.nix b/pkgs/applications/networking/instant-messengers/poezio/default.nix index b5fa1ccc2f4..31c9fb4e7c3 100644 --- a/pkgs/applications/networking/instant-messengers/poezio/default.nix +++ b/pkgs/applications/networking/instant-messengers/poezio/default.nix @@ -1,22 +1,24 @@ -{ lib, buildPythonApplication, fetchurl, pythonOlder +{ lib, buildPythonApplication, fetchFromGitHub, pythonOlder , pytest, aiodns, slixmpp, pyinotify, potr, mpd2, cffi, pkgconfig }: buildPythonApplication rec { - name = "poezio-${version}"; - version = "0.12"; + pname = "poezio"; + version = "0.12.1"; disabled = pythonOlder "3.4"; - buildInputs = [ pytest ]; + checkInputs = [ pytest ]; propagatedBuildInputs = [ aiodns slixmpp pyinotify potr mpd2 cffi ]; nativeBuildInputs = [ pkgconfig ]; - src = fetchurl { - url = "http://dev.louiz.org/attachments/download/129/${name}.tar.gz"; - sha256 = "11n9x82xyjwbqk28lsfnvqwn8qc9flv6w2c64camh6j3148ykpvz"; + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = "v${version}"; + sha256 = "04qnsr0l12i55k6xl4q4akx317gai9wv5f1wpkfkq01wp181i5ll"; }; checkPhase = '' - py.test + pytest ''; meta = with lib; { From 31feec6b5f37e47bda83af974d4d40538c7ff69a Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Sat, 22 Jun 2019 16:58:24 +0200 Subject: [PATCH 1213/1611] podman: 1.3.2 -> 1.4.4 Signed-off-by: Sascha Grunert --- pkgs/applications/virtualization/podman/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/virtualization/podman/default.nix b/pkgs/applications/virtualization/podman/default.nix index b07365a5ca1..8d264f3062c 100644 --- a/pkgs/applications/virtualization/podman/default.nix +++ b/pkgs/applications/virtualization/podman/default.nix @@ -5,13 +5,13 @@ buildGoPackage rec { name = "podman-${version}"; - version = "1.3.2"; + version = "1.4.4"; src = fetchFromGitHub { owner = "containers"; repo = "libpod"; rev = "v${version}"; - sha256 = "1j5n08273igj6wm9rrwks9nnklv91060bn1yv3ak78csxc05whs3"; + sha256 = "13qgrvqawrrz4apdcds4amkljyjzx056545962wk8p0d291hqv5a"; }; goPackagePath = "github.com/containers/libpod"; @@ -39,7 +39,7 @@ buildGoPackage rec { homepage = https://podman.io/; description = "A program for managing pods, containers and container images"; license = licenses.asl20; - maintainers = with maintainers; [ vdemeester ]; + maintainers = with maintainers; [ vdemeester saschagrunert ]; platforms = platforms.linux; }; } From 046390bf97cd52b28b96b476688ff97e1cf9e5c4 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Mon, 29 Jul 2019 10:44:34 +0200 Subject: [PATCH 1214/1611] kitty: 0.14.2 -> 0.14.3 --- pkgs/applications/misc/kitty/default.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/kitty/default.nix b/pkgs/applications/misc/kitty/default.nix index 0be9bc82187..a3841989123 100644 --- a/pkgs/applications/misc/kitty/default.nix +++ b/pkgs/applications/misc/kitty/default.nix @@ -9,6 +9,7 @@ IOKit, Kernel, OpenGL, + libcanberra, libicns, libpng, librsvg, @@ -20,18 +21,20 @@ with python3Packages; buildPythonApplication rec { pname = "kitty"; - version = "0.14.2"; + version = "0.14.3"; format = "other"; src = fetchFromGitHub { owner = "kovidgoyal"; repo = "kitty"; rev = "v${version}"; - sha256 = "15iv3k7iryf10n8n67d37x24pzcarq97a3dr42lbld00k1lx19az"; + sha256 = "0wi6b6b1nyp16rcpcghk6by62wy6qsamv1xdymyn0zbqgd8h9n6b"; }; buildInputs = [ - ncurses harfbuzz + harfbuzz + libcanberra + ncurses ] ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa CoreGraphics From c79aa36292b4cdf0ef5810c9701b65ff693027ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Mon, 29 Jul 2019 12:20:55 +0200 Subject: [PATCH 1215/1611] multimc: 0.6.4 -> 0.6.6 Use -DMultiMC_LAYOUT=lin-system to install shared object files to $out/lib and the jars required at runtime to $out/share/multimc. --- pkgs/games/multimc/default.nix | 29 +++++++++++------------------ 1 file changed, 11 insertions(+), 18 deletions(-) diff --git a/pkgs/games/multimc/default.nix b/pkgs/games/multimc/default.nix index d95532b438b..a95f88e59b2 100644 --- a/pkgs/games/multimc/default.nix +++ b/pkgs/games/multimc/default.nix @@ -3,13 +3,13 @@ let libpath = with xorg; stdenv.lib.makeLibraryPath [ libX11 libXext libXcursor libXrandr libXxf86vm libpulseaudio ]; in mkDerivation rec { - name = "multimc-${version}"; - version = "0.6.4"; + pname = "multimc"; + version = "0.6.6"; src = fetchFromGitHub { owner = "MultiMC"; repo = "MultiMC5"; - rev = "0.6.4"; - sha256 = "0z9mhvfsq9m2cmi0dbrjjc51642r6ppdbb8932236gar5j7w3bc2"; + rev = version; + sha256 = "0a9ciqi73ihw17qmp8l5134py5gjjrdnrk50syl2mllsc1iqj4kf"; fetchSubmodules = true; }; nativeBuildInputs = [ cmake file makeWrapper ]; @@ -17,25 +17,18 @@ in mkDerivation rec { enableParallelBuilding = true; + cmakeFlags = [ "-DMultiMC_LAYOUT=lin-system" ]; + postInstall = '' - mkdir -p $out/share/{applications,pixmaps} - cp ../application/resources/multimc/scalable/multimc.svg $out/share/pixmaps - cp ../application/package/linux/multimc.desktop $out/share/applications + install -Dm644 ../application/resources/multimc/scalable/multimc.svg $out/share/pixmaps/multimc.svg + install -Dm755 ../application/package/linux/multimc.desktop $out/share/applications/multimc.desktop + # xorg.xrandr needed for LWJGL [2.9.2, 3) https://github.com/LWJGL/lwjgl/issues/128 - wrapProgram $out/bin/MultiMC --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/ - - # MultiMC's CMakeLists.txt puts libraries in bin directory, causing them to be set executable, causing nixpkgs' wrapQtAppsHook to wrap them - chmod -x $out/bin/*.so - - # As of https://github.com/MultiMC/MultiMC5/blob/7ea1d68244fdae1e7672fb84199ee71e168b31ca/application/package/linux/multimc.desktop, - # the desktop icon refers to `multimc`, but the executable actually gets - # installed as `MultiMC`. Create compatibility symlink to fix the desktop - # icon. - ln -sf $out/bin/MultiMC $out/bin/multimc + wrapProgram $out/bin/multimc --add-flags "-d \$HOME/.multimc/" --set GAME_LIBRARY_PATH /run/opengl-driver/lib:${libpath} --prefix PATH : ${jdk}/bin/:${xorg.xrandr}/bin/ ''; meta = with stdenv.lib; { - homepage = https://multimc.org/; + homepage = "https://multimc.org/"; description = "A free, open source launcher for Minecraft"; longDescription = '' Allows you to have multiple, separate instances of Minecraft (each with their own mods, texture packs, saves, etc) and helps you manage them and their associated options with a simple interface. From 33b2529c7db0fd4940856974bd9f42bf1ef65d24 Mon Sep 17 00:00:00 2001 From: Matthias Totschnig Date: Sun, 28 Jul 2019 18:28:41 +0200 Subject: [PATCH 1216/1611] vimPlugins.lean-vim: init at 2017-05-03 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 14e48b4a621..e7a03903bb9 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -1420,6 +1420,17 @@ let }; }; + lean-vim = buildVimPluginFrom2Nix { + pname = "lean-vim"; + version = "2017-05-03"; + src = fetchFromGitHub { + owner = "leanprover"; + repo = "lean.vim"; + rev = "2ebb71d95c072f8604385dab58398b2107337e63"; + sha256 = "0rvvicw8ldaskwar5219aag93xa3qp3nqld5ddb70c6hq3bmwrnz"; + }; + }; + lh-brackets = buildVimPluginFrom2Nix { pname = "lh-brackets"; version = "2019-05-23"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index 8fc89a6a69b..fde9f33691b 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -161,6 +161,7 @@ lambdalisue/vim-gista lambdalisue/vim-pager latex-box-team/latex-box leafgarland/typescript-vim +leanprover/lean.vim ledger/vim-ledger lepture/vim-jinja lervag/vimtex From da5c9d54cdb093082fbea7a245d2654e63f7924a Mon Sep 17 00:00:00 2001 From: Matthias Totschnig Date: Sun, 28 Jul 2019 18:31:56 +0200 Subject: [PATCH 1217/1611] vimPlugins.vim-lean: init at 2017-07-29 --- pkgs/misc/vim-plugins/generated.nix | 11 +++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 1 + 2 files changed, 12 insertions(+) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index e7a03903bb9..78da783962a 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -3676,6 +3676,17 @@ let }; }; + vim-lean = buildVimPluginFrom2Nix { + pname = "vim-lean"; + version = "2017-07-29"; + src = fetchFromGitHub { + owner = "mk12"; + repo = "vim-lean"; + rev = "02d678e4346dce35d6b2eed9a03b2b2d3cc84127"; + sha256 = "1yw13wf7j92gk8fwkhls6bdbz2h7xbyq4qba8zsfm76rbqn7vzfg"; + }; + }; + vim-ledger = buildVimPluginFrom2Nix { pname = "vim-ledger"; version = "2019-07-03"; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index fde9f33691b..e260c6fe588 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -215,6 +215,7 @@ mhinz/vim-startify michaeljsmith/vim-indent-object mileszs/ack.vim mindriot101/vim-yapf +mk12/vim-lean mkasa/lushtags mopp/sky-color-clock.vim morhetz/gruvbox From 49a6521dff8bf2f3d8588b704f314adf7033f001 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 28 Jul 2019 21:46:00 -0400 Subject: [PATCH 1218/1611] vscode-extensions.ms-python.python: 2019.6.22090 -> 2019.6.24221 --- pkgs/misc/vscode-extensions/python/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/vscode-extensions/python/default.nix b/pkgs/misc/vscode-extensions/python/default.nix index f05afcc1928..423f39f9bbc 100644 --- a/pkgs/misc/vscode-extensions/python/default.nix +++ b/pkgs/misc/vscode-extensions/python/default.nix @@ -23,14 +23,14 @@ let else throw "Only x86_64 Linux and Darwin are supported."; languageServerSha256 = { - "linux-x64" = "0mqjl3l1zk1zd7n0rrb2vdsrx6czhl4irdm4j5jishg9zp03gkkd"; - "osx-x64" = "1csq8q8fszv9xk9qiabg12zybxnzn8y2jsnvjrlg4b8kvm63sz40"; + "linux-x64" = "0j9251f8dfccmg0x9gzg1cai4k5zd0alcfpb0443gs4jqakl0lr2"; + "osx-x64" = "070qwwl08fa24rsnln4i5x9mfriqaw920l6v2j8d1r0zylxnyjsa"; }."${arch}"; # version is languageServerVersion in the package.json languageServer = extractNuGet rec { name = "Python-Language-Server"; - version = "0.2.82"; + version = "0.3.40"; src = fetchurl { url = "https://pvsc.azureedge.net/python-language-server-stable/${name}-${arch}.${version}.nupkg"; @@ -41,8 +41,8 @@ in vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = { name = "python"; publisher = "ms-python"; - version = "2019.6.22090"; - sha256 = "11q4ac7acp946h43myjmp2f2vh10m1c4hn1n0s5pqgjvn0i6bi3i"; + version = "2019.6.24221"; + sha256 = "1l82y3mbplzipcij5a0wqlykypik0sbba4hwr2r4vwiwb6kxscmx"; }; buildInputs = [ From 892a04db3e72de88a374ec966dba289ad83c9088 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sun, 28 Jul 2019 21:45:24 -0400 Subject: [PATCH 1219/1611] polybar: 3.3.1 -> 3.4.0 --- pkgs/applications/misc/polybar/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/polybar/default.nix b/pkgs/applications/misc/polybar/default.nix index e6507845d4c..9ca8c696184 100644 --- a/pkgs/applications/misc/polybar/default.nix +++ b/pkgs/applications/misc/polybar/default.nix @@ -26,17 +26,18 @@ assert i3GapsSupport -> ! i3Support && jsoncpp != null && i3-gaps != null; stdenv.mkDerivation rec { pname = "polybar"; - version = "3.3.1"; + version = "3.4.0"; src = fetchFromGitHub { owner = "jaagr"; repo = pname; rev = version; - sha256 = "0qwi6q3qkrz2ip1jd4pxlnsrs2a9ywxyf8rgvbzyilr334rsiywh"; + sha256 = "1g3zj0788cdlm8inpl19279bw8zjcy7dzj7q4f1l2d8c8g1jhv0m"; fetchSubmodules = true; }; meta = with stdenv.lib; { + homepage = "https://polybar.github.io/"; description = "A fast and easy-to-use tool for creating status bars"; longDescription = '' Polybar aims to help users build beautiful and highly customizable @@ -68,8 +69,8 @@ stdenv.mkDerivation rec { ]; postConfigure = '' - substituteInPlace ../include/settings.hpp --replace \ - "${stdenv.cc}" "${stdenv.cc.name}" + substituteInPlace generated-sources/settings.hpp \ + --replace "${stdenv.cc}" "${stdenv.cc.name}" ''; postInstall = if (i3Support || i3GapsSupport) then '' From 66b551b088756b5f3f97526e5d033fb338edaedc Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Tue, 30 Jul 2019 00:00:21 +0900 Subject: [PATCH 1220/1611] fluentd: 1.4.2 -> 1.6.2 --- pkgs/tools/misc/fluentd/Gemfile.lock | 76 +++++++++---------- pkgs/tools/misc/fluentd/gemset.nix | 108 +++++++++++++-------------- 2 files changed, 92 insertions(+), 92 deletions(-) diff --git a/pkgs/tools/misc/fluentd/Gemfile.lock b/pkgs/tools/misc/fluentd/Gemfile.lock index 3d852e36759..e86371aed3b 100644 --- a/pkgs/tools/misc/fluentd/Gemfile.lock +++ b/pkgs/tools/misc/fluentd/Gemfile.lock @@ -3,62 +3,62 @@ GEM specs: addressable (2.6.0) public_suffix (>= 2.0.2, < 4.0) - aws-eventstream (1.0.2) - aws-partitions (1.149.0) - aws-sdk-core (3.48.3) + aws-eventstream (1.0.3) + aws-partitions (1.193.0) + aws-sdk-core (3.61.1) aws-eventstream (~> 1.0, >= 1.0.2) aws-partitions (~> 1.0) aws-sigv4 (~> 1.1) jmespath (~> 1.0) - aws-sdk-firehose (1.14.0) - aws-sdk-core (~> 3, >= 3.48.2) + aws-sdk-firehose (1.20.0) + aws-sdk-core (~> 3, >= 3.61.1) aws-sigv4 (~> 1.1) - aws-sdk-kinesis (1.13.1) - aws-sdk-core (~> 3, >= 3.48.2) + aws-sdk-kinesis (1.19.0) + aws-sdk-core (~> 3, >= 3.61.1) aws-sigv4 (~> 1.1) - aws-sdk-kms (1.16.0) - aws-sdk-core (~> 3, >= 3.48.2) + aws-sdk-kms (1.24.0) + aws-sdk-core (~> 3, >= 3.61.1) aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.36.0) - aws-sdk-core (~> 3, >= 3.48.2) + aws-sdk-s3 (1.46.0) + aws-sdk-core (~> 3, >= 3.61.1) aws-sdk-kms (~> 1) - aws-sigv4 (~> 1.0) - aws-sdk-sqs (1.13.0) - aws-sdk-core (~> 3, >= 3.48.2) + aws-sigv4 (~> 1.1) + aws-sdk-sqs (1.20.0) + aws-sdk-core (~> 3, >= 3.61.1) aws-sigv4 (~> 1.1) aws-sigv4 (1.1.0) aws-eventstream (~> 1.0, >= 1.0.2) - bson (4.4.2) + bson (4.5.0) cool.io (1.5.4) dig_rb (1.0.1) digest-crc (0.4.1) - elasticsearch (6.3.0) - elasticsearch-api (= 6.3.0) - elasticsearch-transport (= 6.3.0) - elasticsearch-api (6.3.0) + elasticsearch (7.2.1) + elasticsearch-api (= 7.2.1) + elasticsearch-transport (= 7.2.1) + elasticsearch-api (7.2.1) multi_json - elasticsearch-transport (6.3.0) + elasticsearch-transport (7.2.1) faraday multi_json - excon (0.62.0) + excon (0.65.0) faraday (0.15.4) multipart-post (>= 1.2, < 3) fluent-config-regexp-type (1.0.0) fluentd (> 1.0.0, < 2) - fluent-plugin-elasticsearch (3.4.1) + fluent-plugin-elasticsearch (3.5.3) elasticsearch excon fluentd (>= 0.14.22) - fluent-plugin-kafka (0.9.2) + fluent-plugin-kafka (0.11.0) fluentd (>= 0.10.58, < 2) ltsv - ruby-kafka (>= 0.7.1, < 0.8.0) - fluent-plugin-kinesis (3.0.0) + ruby-kafka (>= 0.7.8, < 0.8.0) + fluent-plugin-kinesis (3.1.0) aws-sdk-firehose (~> 1, != 1.9, != 1.5) aws-sdk-kinesis (~> 1, != 1.5, != 1.4) fluentd (>= 0.14.10, < 2) google-protobuf (~> 3) - fluent-plugin-mongo (1.2.2) + fluent-plugin-mongo (1.3.0) fluentd (>= 0.14.22, < 2) mongo (~> 2.6.0) fluent-plugin-record-reformer (0.9.1) @@ -66,17 +66,17 @@ GEM fluent-plugin-rewrite-tag-filter (2.2.0) fluent-config-regexp-type fluentd (>= 0.14.2, < 2) - fluent-plugin-s3 (1.1.9) + fluent-plugin-s3 (1.1.11) aws-sdk-s3 (~> 1.0) aws-sdk-sqs (~> 1.0) fluentd (>= 0.14.22, < 2) fluent-plugin-scribe (1.0.0) fluentd thrift (~> 0.8.0) - fluent-plugin-webhdfs (1.2.3) - fluentd (>= 0.14.4) + fluent-plugin-webhdfs (1.2.4) + fluentd (>= 0.14.22) webhdfs (>= 0.6.0) - fluentd (1.4.2) + fluentd (1.6.2) cool.io (>= 1.4.5, < 2.0.0) dig_rb (~> 1.0.0) http_parser.rb (>= 0.5.1, < 0.7.0) @@ -87,19 +87,19 @@ GEM tzinfo (~> 1.0) tzinfo-data (~> 1.0) yajl-ruby (~> 1.0) - google-protobuf (3.7.1) + google-protobuf (3.9.0) http_parser.rb (0.6.0) jmespath (1.4.0) ltsv (0.1.2) mongo (2.6.4) bson (>= 4.3.0, < 5.0.0) - msgpack (1.2.9) + msgpack (1.3.0) multi_json (1.13.1) - multipart-post (2.0.0) - public_suffix (3.0.3) - ruby-kafka (0.7.6) + multipart-post (2.1.1) + public_suffix (3.1.1) + ruby-kafka (0.7.9) digest-crc - serverengine (2.1.0) + serverengine (2.1.1) sigdump (~> 0.2.2) sigdump (0.2.4) strptime (0.2.3) @@ -107,7 +107,7 @@ GEM thrift (0.8.0) tzinfo (1.2.5) thread_safe (~> 0.1) - tzinfo-data (1.2019.1) + tzinfo-data (1.2019.2) tzinfo (>= 1.0.0) webhdfs (0.8.0) addressable @@ -129,4 +129,4 @@ DEPENDENCIES fluentd BUNDLED WITH - 1.16.3 + 1.17.2 diff --git a/pkgs/tools/misc/fluentd/gemset.nix b/pkgs/tools/misc/fluentd/gemset.nix index 022127238ec..9c8343eb44a 100644 --- a/pkgs/tools/misc/fluentd/gemset.nix +++ b/pkgs/tools/misc/fluentd/gemset.nix @@ -15,20 +15,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1i4djzrynzr4l8mqx946ad6zn7blz2r5jif58y9c0lws6bdc5h1l"; + sha256 = "100g77a5ixg4p5zwq77f28n2pdkk0y481f7v83qrlmnj22318qq6"; type = "gem"; }; - version = "1.0.2"; + version = "1.0.3"; }; aws-partitions = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "08i5a52b42x1q26j4rzaxp4hhwl0wzw12jbbjxjifnwi2dm57biy"; + sha256 = "12fbibkq9gp8b9az3s87zi6dcalx92aam98jmbzacw9cvafzm7af"; type = "gem"; }; - version = "1.149.0"; + version = "1.193.0"; }; aws-sdk-core = { dependencies = ["aws-eventstream" "aws-partitions" "aws-sigv4" "jmespath"]; @@ -36,10 +36,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1sng9iagk96r8986gsacljnw357famz5x4xa1wk9xm4cx0bmpm5i"; + sha256 = "1wir5q6qpj3lxxmzynmybsfabzgbfkk1cjyy7dkfsy5fmxcgm6qq"; type = "gem"; }; - version = "3.48.3"; + version = "3.61.1"; }; aws-sdk-firehose = { dependencies = ["aws-sdk-core" "aws-sigv4"]; @@ -47,10 +47,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0f7s1vqs1qga6jzvjgg4x4hcz1rdycwry5dcizidzffwn9sp9iy0"; + sha256 = "1s2rksdk3iv9jvcnyvnpvmh35vbs0ppan9iw4zq6fg87y44j9i74"; type = "gem"; }; - version = "1.14.0"; + version = "1.20.0"; }; aws-sdk-kinesis = { dependencies = ["aws-sdk-core" "aws-sigv4"]; @@ -58,10 +58,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "005dj7m3zi8gkda5g40a0wxlx48g0w5cz4k7783g2p6c0h5wwdsb"; + sha256 = "1w2azv19xi1jmp4dsqjh8af1xdyw4ajd1l5abmx3wpwd8zngxvlp"; type = "gem"; }; - version = "1.13.1"; + version = "1.19.0"; }; aws-sdk-kms = { dependencies = ["aws-sdk-core" "aws-sigv4"]; @@ -69,10 +69,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1m64sb5nnpryjmjbgvr5lmlrd06wvafd0ss9i9zf3fsi39hqaicg"; + sha256 = "14blvvfz67rhffi4ahby50jiip5f0hm85mcxlx6y93g0cfrnxh3m"; type = "gem"; }; - version = "1.16.0"; + version = "1.24.0"; }; aws-sdk-s3 = { dependencies = ["aws-sdk-core" "aws-sdk-kms" "aws-sigv4"]; @@ -80,10 +80,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1bnihahz0va36jcw5wifw6ad0fdarl0lsils6h50wpvzcxzmlm2i"; + sha256 = "1871mqf6b92rcmcgc6061xx9h35dlfvj7r27q2khidb5dzp7yd33"; type = "gem"; }; - version = "1.36.0"; + version = "1.46.0"; }; aws-sdk-sqs = { dependencies = ["aws-sdk-core" "aws-sigv4"]; @@ -91,10 +91,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1cpmimcnjfwrqv1nmaxp4yyxmh50wg83ccihj8hiafkazg75kfx0"; + sha256 = "0946yrabarr5hvzxkfh6f8mvm19ivpybhd64xnsk3hlk71xc9bip"; type = "gem"; }; - version = "1.13.0"; + version = "1.20.0"; }; aws-sigv4 = { dependencies = ["aws-eventstream"]; @@ -112,10 +112,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kgim98b41cj0njlqv1bwvx2m6gw9n7ilwklfn9hivfg096bzl8l"; + sha256 = "0gxdavhccppnfbmh2cx0qxv6b6rzr5s00dsigazw808dhb34yyg7"; type = "gem"; }; - version = "4.4.2"; + version = "4.5.0"; }; "cool.io" = { groups = ["default"]; @@ -153,10 +153,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1kx13w90dnmrfgwgm86h8wsmjmpv19qxvd1f6xxrdjmw0ij0vyqn"; + sha256 = "1800algjigydip0855xcfdlyl1cfbl630sl68a0y39xvpvd2fq68"; type = "gem"; }; - version = "6.3.0"; + version = "7.2.1"; }; elasticsearch-api = { dependencies = ["multi_json"]; @@ -164,10 +164,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "06dji10nahhqd04igfwcqb1d521lv7gy40g7nv0mx3nnb1c6ksbm"; + sha256 = "18rd6xxvdjr8h7n6ziwjkrdzxwsx0rf9vd1krz7kgi61q5897jmz"; type = "gem"; }; - version = "6.3.0"; + version = "7.2.1"; }; elasticsearch-transport = { dependencies = ["faraday" "multi_json"]; @@ -175,20 +175,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "025c0plj3ydrykmwpwhn6vdxfgf4b7xr4gg5dzdd5ck9frvqb6mz"; + sha256 = "1k0324sbwz292l0nj50k318k2qlznzpimj5mpg7557rkk0b7plrz"; type = "gem"; }; - version = "6.3.0"; + version = "7.2.1"; }; excon = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "15l9w0938c19nxmrp09n75qpmm64k12xj69h47yvxzcxcpbgnkb2"; + sha256 = "1mc6y6n7i0hhk7i8wwi4qjnpkm013p7z3xr994s696hk74f91a7j"; type = "gem"; }; - version = "0.62.0"; + version = "0.65.0"; }; faraday = { dependencies = ["multipart-post"]; @@ -218,10 +218,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "115y11r7rd4hd9gc2lngm6cas1119fas87s75x6iaykqg8hlr99l"; + sha256 = "18j0q9x006gps03sh93v8nc83b9w45a6ynic8kd9x6zr2g58ynh7"; type = "gem"; }; - version = "3.4.1"; + version = "3.5.3"; }; fluent-plugin-kafka = { dependencies = ["fluentd" "ltsv" "ruby-kafka"]; @@ -229,10 +229,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "079isjc1788fbhagrn2qfrp6mcfw0b6kl6dpnrwpwv9865h75hmm"; + sha256 = "1p7xsm6v84z61hkhvg9fmrxahaid7fqdarnpvpp5qj8qnzximkyd"; type = "gem"; }; - version = "0.9.2"; + version = "0.11.0"; }; fluent-plugin-kinesis = { dependencies = ["aws-sdk-firehose" "aws-sdk-kinesis" "fluentd" "google-protobuf"]; @@ -240,10 +240,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "14jqr13k50vs29akjpi0prcs1fdjy335prlqylvri7bc1cmfkhz3"; + sha256 = "1j0qs09g53xsvbxpdlylwm3h2v8rvr3xpn0kwy63cjnpdf012m8f"; type = "gem"; }; - version = "3.0.0"; + version = "3.1.0"; }; fluent-plugin-mongo = { dependencies = ["fluentd" "mongo"]; @@ -251,10 +251,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1p5c7j3yx4cjrn4ljxwghrp8yh0rcdra1iafc67i92s1sl8b70dq"; + sha256 = "108gxrgbn0ib70n7gvdlx8xr1i0jdh1cb2n4m4m24ihyfb8i6vli"; type = "gem"; }; - version = "1.2.2"; + version = "1.3.0"; }; fluent-plugin-record-reformer = { dependencies = ["fluentd"]; @@ -284,10 +284,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "16zaxvf3rs5lmd933sgyrxkrws0qcd0z2ypbky45gyq8si1dpwcl"; + sha256 = "093fs43bixd0lmjfpkk1fl24asa1w8kacqrm82lbfx4cq4dg4fif"; type = "gem"; }; - version = "1.1.9"; + version = "1.1.11"; }; fluent-plugin-scribe = { dependencies = ["fluentd" "thrift"]; @@ -306,10 +306,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1yyv3f0g30x9dzhq74b5cq8z0wbyppw9bb6152v6yrwz25b16231"; + sha256 = "1mhy321gxb59yk0rsawnqf3kfx33ncdlnpmn4rdfzgi0v8ya0fp4"; type = "gem"; }; - version = "1.2.3"; + version = "1.2.4"; }; fluentd = { dependencies = ["cool.io" "dig_rb" "http_parser.rb" "msgpack" "serverengine" "sigdump" "strptime" "tzinfo" "tzinfo-data" "yajl-ruby"]; @@ -317,20 +317,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ppdfa03gzv97px7xhdx5nnzc15g8l7yp10jw87qyl5cp62kpx3c"; + sha256 = "1h6zvb4qhhyl8hm19015ha5rbdvg9wpv3ipbyr1ab491igqln1j6"; type = "gem"; }; - version = "1.4.2"; + version = "1.6.2"; }; google-protobuf = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "04988m3hmllg4sl4syjb35x0wzsg7rj1nmvhx3d9ihml22w76gb2"; + sha256 = "0b7r1y30cgm03cj0l8pr6npz4w9i1lh70ycd2w15zf2qcbi9gpng"; type = "gem"; }; - version = "3.7.1"; + version = "3.9.0"; }; "http_parser.rb" = { groups = ["default"]; @@ -378,10 +378,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0zs8v59d77wlx4yylyh0lglsj8sp9jrq11yqngdgn95avfhxjw0s"; + sha256 = "1186lhwnxiw5ryv6dbxrsfy0fajfll2l95kf9pmca50iyiqi86zn"; type = "gem"; }; - version = "1.2.9"; + version = "1.3.0"; }; multi_json = { groups = ["default"]; @@ -398,20 +398,20 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; + sha256 = "1zgw9zlwh2a6i1yvhhc4a84ry1hv824d6g2iw2chs3k5aylpmpfj"; type = "gem"; }; - version = "2.0.0"; + version = "2.1.1"; }; public_suffix = { groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; + sha256 = "0g9ds2ffzljl6jjmkjffwxc1z6lh5nkqqmhhkxjk71q5ggv0rkpm"; type = "gem"; }; - version = "3.0.3"; + version = "3.1.1"; }; ruby-kafka = { dependencies = ["digest-crc"]; @@ -419,10 +419,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0b5i6vazw9s26nwifwsbd95sl35l5krh3yp4z2zpp6lpp6al36db"; + sha256 = "10q92n67s4x80q87ibirvsaryvq4lqyna6xabl5vgnr59xrap6ym"; type = "gem"; }; - version = "0.7.6"; + version = "0.7.9"; }; serverengine = { dependencies = ["sigdump"]; @@ -430,10 +430,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "01978684zvab2pbg7r8vm53n8m2h99pc9iqm1wy9gy67y1nxvz13"; + sha256 = "10y535621y0kyn40bkcnl01zrsf3z4abf4mdl8m3fdcmj30mazlw"; type = "gem"; }; - version = "2.1.0"; + version = "2.1.1"; }; sigdump = { groups = ["default"]; @@ -492,10 +492,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1105fp27d527k7rrq1yx1ikbzf1sra046ndayxikkjvay9ql61jz"; + sha256 = "1m507in0d7vlfgasxpkz3y1a44zp532k9qlqcaz90ay939sz9h5q"; type = "gem"; }; - version = "1.2019.1"; + version = "1.2019.2"; }; webhdfs = { dependencies = ["addressable"]; From 4536e3fbf4caba9d13403bda37bc022eff09e34d Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Mon, 29 Jul 2019 11:15:13 -0400 Subject: [PATCH 1221/1611] kitty: fix patch for darwin --- pkgs/applications/misc/kitty/png2icns.patch | 40 +++++++++++---------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/misc/kitty/png2icns.patch b/pkgs/applications/misc/kitty/png2icns.patch index d2d0806c862..68566e2a899 100644 --- a/pkgs/applications/misc/kitty/png2icns.patch +++ b/pkgs/applications/misc/kitty/png2icns.patch @@ -1,19 +1,21 @@ ---- a/setup.py -+++ b/setup.py -@@ -744,9 +744,15 @@ Categories=System;TerminalEmulator; - if not os.path.exists(logo_dir): - raise SystemExit('The kitty logo has not been generated, you need to run logo/make.py') - subprocess.check_call([ -- 'iconutil', '-c', 'icns', logo_dir, '-o', -+ 'png2icns', - os.path.join('Resources', os.path.basename(logo_dir).partition('.')[0] + '.icns') -- ]) -+ ] + [os.path.join(logo_dir, logo) for logo in ( -+ 'icon_128x128.png', -+ 'icon_16x16.png', -+ 'icon_256x256.png', -+ 'icon_32x32.png', -+ 'icon_512x512.png', -+ )]) - # }}} - # }}} +diff -aru a/setup.py b/setup.py +--- a/setup.py 2019-07-29 11:09:32.000000000 -0400 ++++ b/setup.py 2019-07-29 11:11:37.000000000 -0400 +@@ -784,9 +784,15 @@ + def create_macos_app_icon(where='Resources'): + logo_dir = os.path.abspath(os.path.join('logo', appname + '.iconset')) + subprocess.check_call([ +- 'iconutil', '-c', 'icns', logo_dir, '-o', ++ 'png2icns', + os.path.join(where, os.path.basename(logo_dir).partition('.')[0] + '.icns') +- ]) ++ ] + [os.path.join(logo_dir, logo) for logo in [ ++ 'icon_128x128.png', ++ 'icon_16x16.png', ++ 'icon_256x256.png', ++ 'icon_32x32.png', ++ 'icon_512x512.png', ++ ]]) + + + def create_minimal_macos_bundle(args, where): From 0283abb4e84261ad9e4f6ce16933246b6d7f246d Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Mon, 29 Jul 2019 11:26:16 -0400 Subject: [PATCH 1222/1611] kitty: libcanberra is not needed on darwin --- pkgs/applications/misc/kitty/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/applications/misc/kitty/default.nix b/pkgs/applications/misc/kitty/default.nix index a3841989123..01f33cd5b12 100644 --- a/pkgs/applications/misc/kitty/default.nix +++ b/pkgs/applications/misc/kitty/default.nix @@ -33,7 +33,6 @@ buildPythonApplication rec { buildInputs = [ harfbuzz - libcanberra ncurses ] ++ stdenv.lib.optionals stdenv.isDarwin [ Cocoa @@ -46,7 +45,7 @@ buildPythonApplication rec { python3 zlib ] ++ stdenv.lib.optionals stdenv.isLinux [ - fontconfig glfw libunistring libX11 + fontconfig glfw libunistring libcanberra libX11 libXrandr libXinerama libXcursor libxkbcommon libXi libXext wayland-protocols wayland dbus ]; From a5328e13862f717c8d048c3322e705005dfbd0e7 Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Tue, 30 Jul 2019 00:35:27 +0900 Subject: [PATCH 1223/1611] fluentd: add simple test --- nixos/tests/all-tests.nix | 1 + nixos/tests/fluentd.nix | 46 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) create mode 100644 nixos/tests/fluentd.nix diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix index bc5f18d22bc..f1c25377acd 100644 --- a/nixos/tests/all-tests.nix +++ b/nixos/tests/all-tests.nix @@ -85,6 +85,7 @@ in flannel = handleTestOn ["x86_64-linux"] ./flannel.nix {}; flatpak = handleTest ./flatpak.nix {}; flatpak-builder = handleTest ./flatpak-builder.nix {}; + fluentd = handleTest ./fluentd.nix {}; fsck = handleTest ./fsck.nix {}; fwupd = handleTestOn ["x86_64-linux"] ./fwupd.nix {}; # libsmbios is unsupported on aarch64 gdk-pixbuf = handleTest ./gdk-pixbuf.nix {}; diff --git a/nixos/tests/fluentd.nix b/nixos/tests/fluentd.nix new file mode 100644 index 00000000000..e5c4c3d2163 --- /dev/null +++ b/nixos/tests/fluentd.nix @@ -0,0 +1,46 @@ +import ./make-test.nix ({ pkgs, lib, ... }: { + name = "fluentd"; + + machine = { pkgs, ... }: { + services.fluentd = { + enable = true; + config = '' + + @type http + port 9880 + + + + type copy + + @type file + format json + path /tmp/fluentd + symlink_path /tmp/current-log + + + @type stdout + + + ''; + }; + }; + + testScript = let + testMessage = "an example log message"; + + payload = pkgs.writeText "test-message.json" (builtins.toJSON { + inherit testMessage; + }); + in '' + $machine->start; + $machine->waitForUnit('fluentd.service'); + $machine->waitForOpenPort(9880); + + $machine->succeed("curl -fsSL -X POST -H 'Content-type: application/json' -d @${payload} http://localhost:9880/test.tag"); + + $machine->succeed("systemctl stop fluentd"); # blocking flush + + $machine->succeed("grep '${testMessage}' /tmp/current-log"); + ''; +}) From cf979f246e73f74fdc100bcbefffeb07ba21241a Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Mon, 29 Jul 2019 16:01:50 +0000 Subject: [PATCH 1224/1611] google-compute-engine-oslogin: 1.4.3 -> 1.5.3 --- .../google-compute-engine-oslogin/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix index 012090ba079..f96d316fb52 100644 --- a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix +++ b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix @@ -7,15 +7,16 @@ stdenv.mkDerivation rec { name = "google-compute-engine-oslogin-${version}"; - version = "1.4.3"; + version = "1.5.3"; + # from packages/google-compute-engine-oslogin/packaging/debian/changelog src = fetchFromGitHub { - repo = "compute-image-packages"; owner = "GoogleCloudPlatform"; - rev = "2ccfe80f162a01b5b7c3316ca37981fc8b3fc32a"; - sha256 = "036g7609ni164rmm68pzi47vrywfz2rcv0ad67gqf331pvlr92x1"; + repo = "compute-image-packages"; + rev = "20190522"; + sha256 = "16jbbrnz49g843h813r408dbvfa2hicf8canxwbfxr2kzhv7ycmm"; }; - sourceRoot = "source/google_compute_engine_oslogin"; + sourceRoot = "source/packages/google-compute-engine-oslogin"; postPatch = '' # change sudoers dir from /var/google-sudoers.d to /run/google-sudoers.d (managed through systemd-tmpfiles) @@ -39,6 +40,8 @@ stdenv.mkDerivation rec { install -Dm755 google_{oslogin_nss_cache,authorized_keys} $out/bin ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = https://github.com/GoogleCloudPlatform/compute-image-packages; description = "OS Login Guest Environment for Google Compute Engine"; From 72e547e2ad7ac630a9ff22191ecfa1a1ba80b6e7 Mon Sep 17 00:00:00 2001 From: Andrew Childs Date: Tue, 30 Jul 2019 02:04:12 +0900 Subject: [PATCH 1225/1611] lib3mf: add missing uuid dependency on Darwin (#65555) --- pkgs/development/libraries/lib3mf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/lib3mf/default.nix b/pkgs/development/libraries/lib3mf/default.nix index 7e41743e1e0..5d1894da579 100644 --- a/pkgs/development/libraries/lib3mf/default.nix +++ b/pkgs/development/libraries/lib3mf/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, gtest }: +{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, libossp_uuid, gtest }: stdenv.mkDerivation rec { pname = "lib3mf"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ninja ]; - buildInputs = [ libuuid ]; + buildInputs = if stdenv.isDarwin then [ libossp_uuid ] else [ libuuid ]; postPatch = '' rmdir UnitTests/googletest From aaf2ecd801c3fed8a0e69bf1416710fde164ec1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=83=81=E3=83=AB=E3=83=8E?= Date: Mon, 29 Jul 2019 13:36:27 -0500 Subject: [PATCH 1226/1611] vlang: init at 0.1.16 (#63738) --- pkgs/development/compilers/vlang/default.nix | 51 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 53 insertions(+) create mode 100644 pkgs/development/compilers/vlang/default.nix diff --git a/pkgs/development/compilers/vlang/default.nix b/pkgs/development/compilers/vlang/default.nix new file mode 100644 index 00000000000..cbccca34b41 --- /dev/null +++ b/pkgs/development/compilers/vlang/default.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchFromGitHub, glfw, freetype, curl }: + +stdenv.mkDerivation rec { + pname = "vlang"; + version = "0.1.16"; + + src = fetchFromGitHub { + owner = "vlang"; + repo = "v"; + rev = "${version}"; + sha256 = "08zgwy9ac3wa5ixy8rdw6izpn1n1c3ydb9rl8z8graw0bgv719ma"; + }; + + # V compiler source translated to C for bootstrap. + vc = fetchFromGitHub { + owner = "vlang"; + repo = "vc"; + rev = "${version}"; + sha256 = "0k6c7v3r3cirypsqbaq10qlgg41v19rsnc1ygam4il2p8rsmfwz3"; + }; + + enableParallelBuilding = true; + buildInputs = [ glfw freetype curl ]; + + buildPhase = '' + runHook preBuild + cc -std=gnu11 -w -o v $vc/v.c -lm + ./v -prod -o v compiler + # -fPIC -pie required for examples/hot_code_reloading + make CFLAGS+="-fPIC -pie" thirdparty + runHook postBuild + ''; + + installPhase = '' + runHook preInstall + mkdir -p $out/{bin,lib/vlang,share/vlang} + cp -r examples $out/share/vlang + cp -r {vlib,thirdparty} $out/lib/vlang + cp v $out/lib/vlang + ln -s $out/lib/vlang/v $out/bin/v + runHook postInstall + ''; + + meta = with stdenv.lib; { + homepage = "https://vlang.io/"; + description = "Simple, fast, safe, compiled language for developing maintainable software"; + license = licenses.mit; + maintainers = with maintainers; [ chiiruno ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ec327f8cedd..110cc27e846 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8264,6 +8264,8 @@ in urweb = callPackage ../development/compilers/urweb { }; + vlang = callPackage ../development/compilers/vlang { }; + inherit (callPackage ../development/compilers/vala { }) vala_0_36 vala_0_38 From e50539f7b5a50e57c5807617abe089d467d60f7a Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Mon, 29 Jul 2019 21:56:12 +0300 Subject: [PATCH 1227/1611] syncthing: create default group if not overridden The following configuration generates a systemd unit that doesn't start. ```nix { services.syncthing = { enable = true; user = "my-user"; }; } ``` It fails with ``` systemd[1]: Started Syncthing service. systemd[6745]: syncthing.service: Failed to determine group credentials: No such process systemd[6745]: syncthing.service: Failed at step GROUP spawning /nix/store/n1ydz3i08nqp1ajc50ycy1zribmphqc9-syncthing-1.1.4-bin/bin/syncthing: No such process systemd[1]: syncthing.service: Main process exited, code=exited, status=216/GROUP systemd[1]: syncthing.service: Failed with result 'exit-code'. ``` This is due to the fact that `syncthing` group (default) is not created if the user is overridden. Add a separate check for setting up the default group, so that user/group are created independently. --- nixos/modules/services/networking/syncthing.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix index 8148139c3a8..126f5b7b527 100644 --- a/nixos/modules/services/networking/syncthing.nix +++ b/nixos/modules/services/networking/syncthing.nix @@ -372,16 +372,18 @@ in { systemd.packages = [ pkgs.syncthing ]; - users = mkIf (cfg.systemService && cfg.user == defaultUser) { - users."${defaultUser}" = + users.users = mkIf (cfg.systemService && cfg.user == defaultUser) { + "${defaultUser}" = { group = cfg.group; home = cfg.dataDir; createHome = true; uid = config.ids.uids.syncthing; description = "Syncthing daemon user"; }; + }; - groups."${defaultUser}".gid = + users.groups = mkIf (cfg.systemService && cfg.group == defaultUser) { + "${defaultUser}".gid = config.ids.gids.syncthing; }; From 67912138ea79c9690418e3c6fc524c4b06a396ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alu=C3=ADsio=20Augusto=20Silva=20Gon=C3=A7alves?= Date: Mon, 29 Jul 2019 18:00:29 -0300 Subject: [PATCH 1228/1611] aerc: add dependency on ncurses for unknown terminals The TUI library aerc uses, tcell, comes with a built-in database of terminal definitions. For terminals not in this database (e.g. Alacritty), an entry is generated dynamically using infocmp, part of ncurses' dev output. --- pkgs/applications/networking/mailreaders/aerc/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/aerc/default.nix b/pkgs/applications/networking/mailreaders/aerc/default.nix index 0f681c47aa7..0ab81bc39db 100644 --- a/pkgs/applications/networking/mailreaders/aerc/default.nix +++ b/pkgs/applications/networking/mailreaders/aerc/default.nix @@ -1,5 +1,5 @@ { stdenv, buildGoModule, fetchurl -, go, scdoc +, go, ncurses, scdoc , python3, perl, w3m, dante }: @@ -38,7 +38,8 @@ buildGoModule rec { ''; postFixup = '' - wrapProgram $out/bin/aerc --prefix PATH ":" "$out/share/aerc/filters" + wrapProgram $out/bin/aerc --prefix PATH ":" \ + "$out/share/aerc/filters:${stdenv.lib.makeBinPath [ ncurses.dev ]}" wrapProgram $out/share/aerc/filters/html --prefix PATH ":" \ ${stdenv.lib.makeBinPath [ w3m dante ]} ''; From 14ce9b2fbd2b7a22f5057e7ec95671332cf71f03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alu=C3=ADsio=20Augusto=20Silva=20Gon=C3=A7alves?= Date: Mon, 29 Jul 2019 18:03:54 -0300 Subject: [PATCH 1229/1611] aerc: 0.1.4 -> 0.2.1 --- pkgs/applications/networking/mailreaders/aerc/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/aerc/default.nix b/pkgs/applications/networking/mailreaders/aerc/default.nix index 0ab81bc39db..b94ce269566 100644 --- a/pkgs/applications/networking/mailreaders/aerc/default.nix +++ b/pkgs/applications/networking/mailreaders/aerc/default.nix @@ -5,11 +5,11 @@ buildGoModule rec { pname = "aerc"; - version = "0.1.4"; + version = "0.2.1"; src = fetchurl { url = "https://git.sr.ht/~sircmpwn/aerc/archive/${version}.tar.gz"; - sha256 = "0vlqgcjbq6yp7ffrfs3zwa9hrm4vyx9245v9pkqdn328xlff3h55"; + sha256 = "1ky1nl5b54lf5jnac2kb5404fplwnwypjplas8imdlsf517fw32n"; }; nativeBuildInputs = [ @@ -44,7 +44,7 @@ buildGoModule rec { ${stdenv.lib.makeBinPath [ w3m dante ]} ''; - modSha256 = "0v1b76nax5295bjrq19wdzm2ixiszlk7j1v1k9sjz4la07h5bvfj"; + modSha256 = "0fc9m1qb8innypc8cxzbqyrfkawawyaqq3gqy7lqwmyh32f300jh"; meta = with stdenv.lib; { description = "aerc is an email client for your terminal"; From 73352188ba788e8cdba81c977e08360f257ccd6a Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 14:12:38 -0700 Subject: [PATCH 1230/1611] pythonPackages.docker: 4.0.1 -> 4.0.2 --- pkgs/development/python-modules/docker/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/docker/default.nix b/pkgs/development/python-modules/docker/default.nix index 74274bea988..d82cc0d3f6b 100644 --- a/pkgs/development/python-modules/docker/default.nix +++ b/pkgs/development/python-modules/docker/default.nix @@ -1,15 +1,20 @@ { stdenv, buildPythonPackage, fetchPypi, isPy27 -, six, requests, websocket_client, mock, pytest -, paramiko, backports_ssl_match_hostname +, backports_ssl_match_hostname +, mock +, paramiko +, pytest +, requests +, six +, websocket_client }: buildPythonPackage rec { - version = "4.0.1"; + version = "4.0.2"; pname = "docker"; src = fetchPypi { inherit pname version; - sha256 = "1284sqy3r6nxyz43vrpzqf25hsidpr0v4cgnbvavg2dl47bkf77n"; + sha256 = "0r1i46h8x1vfvadayyvmh5hc6mpzgv3vvp6pv4g1wavamya2wnyc"; }; propagatedBuildInputs = [ From aefe854bd36081daf7c3d7161d68daf05878ef8a Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Mon, 29 Jul 2019 13:34:40 -0700 Subject: [PATCH 1231/1611] zoom-us: use wrapQtAppsHook --- .../instant-messengers/zoom-us/default.nix | 43 ++++++++----------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 5e9d078f8c4..82af30811a6 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, makeWrapper, makeDesktopItem, autoPatchelfHook, env +{ stdenv, fetchurl, mkDerivation, makeWrapper, makeDesktopItem, autoPatchelfHook +, wrapQtAppsHook # Dynamic libraries , dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative , qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg @@ -21,23 +22,18 @@ let }; }; - qtDeps = [ - qtbase qtdeclarative qtlocation qtquickcontrols qtquickcontrols2 qtscript - qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland - ]; - - qtEnv = env "zoom-us-qt-${qtbase.version}" qtDeps; - -in stdenv.mkDerivation { +in mkDerivation { name = "zoom-us-${version}"; src = srcs.${stdenv.hostPlatform.system}; - nativeBuildInputs = [ autoPatchelfHook makeWrapper ]; + nativeBuildInputs = [ autoPatchelfHook makeWrapper wrapQtAppsHook ]; buildInputs = [ - dbus glib libGL libX11 libXfixes libuuid libxcb qtEnv libjpeg_turbo - ] ++ qtDeps; + dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo + qtbase qtdeclarative qtlocation qtquickcontrols qtquickcontrols2 qtscript + qtwebchannel qtwebengine qtimageformats qtsvg qttools qtwayland + ]; runtimeDependencies = optional pulseaudioSupport libpulseaudio; @@ -60,20 +56,12 @@ in stdenv.mkDerivation { in '' runHook preInstall - packagePath=$out/share/zoom-us - mkdir -p $packagePath $out/bin + mkdir -p $out/{bin,share/zoom-us} - cp -ar ${files} $packagePath + cp -ar ${files} $out/share/zoom-us # TODO Patch this somehow; tries to dlopen './libturbojpeg.so' from cwd - ln -s $(readlink -e "${libjpeg_turbo.out}/lib/libturbojpeg.so") $packagePath/libturbojpeg.so - - ln -s ${qtEnv}/bin/qt.conf $packagePath - - makeWrapper $packagePath/zoom $out/bin/zoom-us \ - --prefix PATH : "${makeBinPath [ coreutils glib.dev pciutils procps qttools.dev utillinux ]}" \ - --prefix LD_PRELOAD : "${libv4l}/lib/libv4l/v4l2convert.so" \ - --run "cd $packagePath" + ln -s $(readlink -e "${libjpeg_turbo.out}/lib/libturbojpeg.so") $out/share/zoom-us/libturbojpeg.so runHook postInstall ''; @@ -86,7 +74,14 @@ in stdenv.mkDerivation { genericName = "Video Conference"; categories = "Network;Application;"; mimeType = "x-scheme-handler/zoommtg;"; - }).buildCommand; + }).buildCommand + '' + ln -s $out/share/zoom-us/zoom $out/bin/zoom-us + ''; + + qtWrapperArgs = [ + ''--prefix PATH : ${makeBinPath [ coreutils glib.dev pciutils procps qttools.dev utillinux ]}'' + ''--prefix LD_PRELOAD : ${libv4l}/lib/libv4l/v4l2convert.so'' + ]; passthru.updateScript = ./update.sh; From 363fb1e2af50d2e21038b223b56ea80faaf21e96 Mon Sep 17 00:00:00 2001 From: Tad Fisher Date: Mon, 29 Jul 2019 14:44:52 -0700 Subject: [PATCH 1232/1611] plata-theme: 0.8.7 -> 0.8.8 --- pkgs/data/themes/plata/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/themes/plata/default.nix b/pkgs/data/themes/plata/default.nix index 0d87cd848f8..6ec29a02174 100644 --- a/pkgs/data/themes/plata/default.nix +++ b/pkgs/data/themes/plata/default.nix @@ -19,13 +19,13 @@ stdenv.mkDerivation rec { pname = "plata-theme"; - version = "0.8.7"; + version = "0.8.8"; src = fetchFromGitLab { owner = "tista500"; repo = "plata-theme"; rev = version; - sha256 = "1rn51yj7f7bclvrwwqwid4z9cpap4yd0zw0xs08c36zcjmr28426"; + sha256 = "1xb28s67lnsphj97r15jxlfgydyrxdby1d2z5y3g9wniw6z19i9n"; }; preferLocalBuild = true; From da40bc4449ad61363fc6cfcffe71b41094414e34 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Sun, 21 Jul 2019 22:00:58 +0200 Subject: [PATCH 1233/1611] font-awesome_4: Was removed, add again Version 5 is incompatible for some icons, so projects that depend on it need to actively convert the symbols, see: https://github.com/greshake/i3status-rust/issues/130 Reintroducing the old version lets us use those programs that haven't been updated. Was removed in 0a393f53a9702cea04a6afea506c3a91a1a2bf60 --- pkgs/data/fonts/font-awesome-5/default.nix | 59 ++++++++++++++-------- pkgs/top-level/all-packages.nix | 3 +- 2 files changed, 39 insertions(+), 23 deletions(-) diff --git a/pkgs/data/fonts/font-awesome-5/default.nix b/pkgs/data/fonts/font-awesome-5/default.nix index ee1365d2611..3579afc6da1 100644 --- a/pkgs/data/fonts/font-awesome-5/default.nix +++ b/pkgs/data/fonts/font-awesome-5/default.nix @@ -1,30 +1,45 @@ { lib, fetchFromGitHub }: - let - version = "5.9.0"; -in fetchFromGitHub rec { - name = "font-awesome-${version}"; + font-awesome = { version, sha256, rev ? version}: fetchFromGitHub rec { + name = "font-awesome-${version}"; - owner = "FortAwesome"; - repo = "Font-Awesome"; - rev = version; - postFetch = '' - tar xf $downloadedFile --strip=1 - install -m444 -Dt $out/share/fonts/opentype otfs/*.otf - ''; + owner = "FortAwesome"; + repo = "Font-Awesome"; + inherit rev; - sha256 = "0sz7mn7g968vp5hszs05grpphd7zr3073az8lyy1lj0096zvjjii"; - - meta = with lib; { - description = "Font Awesome - OTF font"; - longDescription = '' - Font Awesome gives you scalable vector icons that can instantly be customized. - This package includes only the OTF font. For full CSS etc. see the project website. + postFetch = '' + tar xf $downloadedFile --strip=1 + install -m444 -Dt $out/share/fonts/opentype {fonts,otfs}/*.otf ''; - homepage = http://fortawesome.github.io/Font-Awesome/; - license = licenses.ofl; - platforms = platforms.all; - maintainers = with maintainers; [ abaldeau ]; + + inherit sha256; + + meta = with lib; { + description = "Font Awesome - OTF font"; + longDescription = '' + Font Awesome gives you scalable vector icons that can instantly be customized. + This package includes only the OTF font. For full CSS etc. see the project website. + ''; + homepage = "http://fortawesome.github.io/Font-Awesome/"; + license = licenses.ofl; + platforms = platforms.all; + maintainers = with maintainers; [ abaldeau johnazoidberg ]; + }; + }; +in { + # Keeping version 4 because version 5 is incompatible for some icons. That + # means that projects which depend on it need to actively convert the + # symbols. See: + # https://github.com/greshake/i3status-rust/issues/130 + # https://fontawesome.com/how-to-use/on-the-web/setup/upgrading-from-version-4 + v4 = font-awesome { + version = "4.7.0"; + rev = "v4.7.0"; + sha256 = "1j8i32dq6rrlv3kf2hnq81iqks06kczaxjks7nw3zyq1231winm9"; + }; + v5 = font-awesome { + version = "5.9.0"; + sha256 = "0sz7mn7g968vp5hszs05grpphd7zr3073az8lyy1lj0096zvjjii"; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cf609b073b3..729f27f6c91 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16393,7 +16393,8 @@ in fira-mono = callPackage ../data/fonts/fira-mono { }; - font-awesome_5 = callPackage ../data/fonts/font-awesome-5 { }; + font-awesome_4 = (callPackage ../data/fonts/font-awesome-5 { }).v4; + font-awesome_5 = (callPackage ../data/fonts/font-awesome-5 { }).v5; font-awesome = font-awesome_5; freefont_ttf = callPackage ../data/fonts/freefont-ttf { }; From 537403769c3cc40ec3c7fd436d32a16951cd666f Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Tue, 30 Jul 2019 00:08:23 +0200 Subject: [PATCH 1234/1611] font-awesome: 5.9.0 -> 5.10.0 https://github.com/FortAwesome/Font-Awesome/releases/tag/5.10.0 --- pkgs/data/fonts/font-awesome-5/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/font-awesome-5/default.nix b/pkgs/data/fonts/font-awesome-5/default.nix index 3579afc6da1..39472122317 100644 --- a/pkgs/data/fonts/font-awesome-5/default.nix +++ b/pkgs/data/fonts/font-awesome-5/default.nix @@ -39,7 +39,7 @@ in { sha256 = "1j8i32dq6rrlv3kf2hnq81iqks06kczaxjks7nw3zyq1231winm9"; }; v5 = font-awesome { - version = "5.9.0"; - sha256 = "0sz7mn7g968vp5hszs05grpphd7zr3073az8lyy1lj0096zvjjii"; + version = "5.10.0"; + sha256 = "11nga1drlpkrmw307ga6plbj5z1b70cnckr465z8z6vkbcd6jkv3"; }; } From 2f5beaec0802085a01cd7e96265f935e3de74afe Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Tue, 30 Jul 2019 01:21:00 +0200 Subject: [PATCH 1235/1611] tgt: Install systemd tgtd.service (#65565) * tgt: Add homepage * tgt: tgt-admin needs lsof, sg3_utils and tgtadm Otherwise it fails with return code 72057594037927935. * tgt: libxslt and docbook_xsl not needed at runtime They're only there to build the documentation. * tgt: Install systemd tgtd.service Resolves #38012 * tgt: Add JohnAZoidberg as maintainer --- pkgs/tools/networking/tgt/default.nix | 31 ++++++++++++++++++++------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/networking/tgt/default.nix b/pkgs/tools/networking/tgt/default.nix index 61aaa263b35..478c1ed35f2 100644 --- a/pkgs/tools/networking/tgt/default.nix +++ b/pkgs/tools/networking/tgt/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages -, docbook_xsl }: +{ stdenv, lib, fetchFromGitHub, libxslt, libaio, systemd, perl, perlPackages +, docbook_xsl, coreutils, lsof, rdma-core, makeWrapper, sg3_utils, utillinux +}: stdenv.mkDerivation rec { pname = "tgt"; @@ -12,7 +13,9 @@ stdenv.mkDerivation rec { sha256 = "18bp7fcpv7879q3ppdxlqj7ayqmlh5zwrkz8gch6rq9lkmmrklrf"; }; - buildInputs = [ libxslt systemd libaio docbook_xsl ]; + nativeBuildInputs = [ libxslt docbook_xsl makeWrapper ]; + + buildInputs = [ systemd libaio ]; makeFlags = [ "PREFIX=${placeholder "out"}" @@ -31,14 +34,26 @@ stdenv.mkDerivation rec { ''; postInstall = '' - sed -i 's|#!/usr/bin/perl|#! ${perl}/bin/perl -I${perlPackages.ConfigGeneral}/${perl.libPrefix}|' $out/sbin/tgt-admin + substituteInPlace $out/sbin/tgt-admin \ + --replace "#!/usr/bin/perl" "#! ${perl}/bin/perl -I${perlPackages.ConfigGeneral}/${perl.libPrefix}" + wrapProgram $out/sbin/tgt-admin --prefix PATH : \ + ${lib.makeBinPath [ lsof sg3_utils (placeholder "out") ]} + + install -D scripts/tgtd.service $out/etc/systemd/system/tgtd.service + substituteInPlace $out/etc/systemd/system/tgtd.service \ + --replace "/usr/sbin/tgt" "$out/bin/tgt" + + # See https://bugzilla.redhat.com/show_bug.cgi?id=848942 + sed -i '/ExecStart=/a ExecStartPost=${coreutils}/bin/sleep 5' $out/etc/systemd/system/tgtd.service ''; enableParallelBuilding = true; - meta = { - description = "iSCSI Target daemon with rdma support"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + meta = with stdenv.lib; { + description = "iSCSI Target daemon with RDMA support"; + homepage = "http://stgt.sourceforge.net/"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ johnazoidberg ]; }; } From a1d9aca6026cab587617b8ab454689a266b83da2 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Mon, 29 Jul 2019 23:28:12 +0000 Subject: [PATCH 1236/1611] google-compute-engine-oslogin: update /bin/bash substitution --- .../virtualization/google-compute-engine-oslogin/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix index f96d316fb52..7251b418d4e 100644 --- a/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix +++ b/pkgs/tools/virtualization/google-compute-engine-oslogin/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { # change sudoers dir from /var/google-sudoers.d to /run/google-sudoers.d (managed through systemd-tmpfiles) substituteInPlace pam_module/pam_oslogin_admin.cc --replace /var/google-sudoers.d /run/google-sudoers.d # fix "User foo not allowed because shell /bin/bash does not exist" - substituteInPlace utils/oslogin_utils.cc --replace /bin/bash ${stdenv.shell} + substituteInPlace compat.h --replace /bin/bash ${stdenv.shell} ''; buildInputs = [ curl.dev pam ]; From 24f4c62cef93d185dceacf4878cfc47cec8a34ee Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 13:51:51 -0700 Subject: [PATCH 1237/1611] libsForQt5.fcitx-qt5: fix build --- pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix index b371edb1ace..ad5b4669498 100644 --- a/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix +++ b/pkgs/tools/inputmethods/fcitx/fcitx-qt5.nix @@ -1,6 +1,12 @@ -{ stdenv, fetchFromGitLab, cmake, fcitx, pkgconfig, qtbase, extra-cmake-modules }: +{ lib, mkDerivation, fetchFromGitLab +, cmake +, extra-cmake-modules +, fcitx +, pkgconfig +, qtbase +}: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "fcitx-qt5"; version = "1.2.3"; @@ -17,12 +23,12 @@ stdenv.mkDerivation rec { preInstall = '' substituteInPlace platforminputcontext/cmake_install.cmake \ - --replace ${qtbase.out} $out + --replace ${qtbase.bin} $out substituteInPlace quickphrase-editor/cmake_install.cmake \ --replace ${fcitx} $out ''; - meta = with stdenv.lib; { + meta = with lib; { homepage = https://gitlab.com/fcitx/fcitx-qt5; description = "Qt5 IM Module for Fcitx"; license = licenses.gpl2; From 781ec03841997330b277c96444f938a58c31c6ec Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 13:53:14 -0700 Subject: [PATCH 1238/1611] fcitx-engines.libpinyin: remove unnecessary replacement --- .../inputmethods/fcitx-engines/fcitx-libpinyin/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/tools/inputmethods/fcitx-engines/fcitx-libpinyin/default.nix b/pkgs/tools/inputmethods/fcitx-engines/fcitx-libpinyin/default.nix index 4468f1fa263..5b55e0f0478 100644 --- a/pkgs/tools/inputmethods/fcitx-engines/fcitx-libpinyin/default.nix +++ b/pkgs/tools/inputmethods/fcitx-engines/fcitx-libpinyin/default.nix @@ -25,8 +25,6 @@ stdenv.mkDerivation rec { preInstall = '' substituteInPlace src/cmake_install.cmake \ --replace ${fcitx} $out - substituteInPlace po/cmake_install.cmake \ - --replace ${fcitx} $out substituteInPlace data/cmake_install.cmake \ --replace ${fcitx} $out substituteInPlace dictmanager/cmake_install.cmake \ From 67b7e70865896433f01ca173eda8f5217eae4d49 Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Tue, 30 Jul 2019 02:24:56 +0200 Subject: [PATCH 1239/1611] nixos/hardened: make pti=on overridable Introduces a new security.forcePageTableIsolation option (default false on !hardened, true on hardened) that forces pti=on. --- nixos/modules/profiles/hardened.nix | 5 ++--- nixos/modules/security/misc.nix | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/nixos/modules/profiles/hardened.nix b/nixos/modules/profiles/hardened.nix index 29c3f2f8bbf..9e9ddd4f378 100644 --- a/nixos/modules/profiles/hardened.nix +++ b/nixos/modules/profiles/hardened.nix @@ -26,6 +26,8 @@ with lib; security.allowSimultaneousMultithreading = mkDefault false; + security.forcePageTableIsolation = mkDefault true; + security.virtualisation.flushL1DataCache = mkDefault "always"; security.apparmor.enable = mkDefault true; @@ -42,9 +44,6 @@ with lib; # Disable legacy virtual syscalls "vsyscall=none" - - # Enable PTI even if CPU claims to be safe from meltdown - "pti=on" ]; boot.blacklistedKernelModules = [ diff --git a/nixos/modules/security/misc.nix b/nixos/modules/security/misc.nix index 2a7f07ef6db..16e3bfb1419 100644 --- a/nixos/modules/security/misc.nix +++ b/nixos/modules/security/misc.nix @@ -54,6 +54,18 @@ with lib; ''; }; + security.forcePageTableIsolation = mkOption { + type = types.bool; + default = false; + description = '' + Whether to force-enable the Page Table Isolation (PTI) Linux kernel + feature even on CPU models that claim to be safe from Meltdown. + + This hardening feature is most beneficial to systems that run untrusted + workloads that rely on address space isolation for security. + ''; + }; + security.virtualisation.flushL1DataCache = mkOption { type = types.nullOr (types.enum [ "never" "cond" "always" ]); default = null; @@ -114,6 +126,10 @@ with lib; boot.kernelParams = [ "nosmt" ]; }) + (mkIf config.security.forcePageTableIsolation { + boot.kernelParams = [ "pti=on" ]; + }) + (mkIf (config.security.virtualisation.flushL1DataCache != null) { boot.kernelParams = [ "kvm-intel.vmentry_l1d_flush=${config.security.virtualisation.flushL1DataCache}" ]; }) From 179ab1985629ff13b4445e1d75897f657aa2ceac Mon Sep 17 00:00:00 2001 From: Vitalii Zinchenko Date: Mon, 29 Jul 2019 20:41:28 -0400 Subject: [PATCH 1240/1611] libelf: fix download url (#65576) --- pkgs/development/libraries/libelf/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libelf/default.nix b/pkgs/development/libraries/libelf/default.nix index 5105bf7e73f..b168dd9bb56 100644 --- a/pkgs/development/libraries/libelf/default.nix +++ b/pkgs/development/libraries/libelf/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { name = "libelf-0.8.13"; src = fetchurl { - url = "http://www.mr511.de/software/${name}.tar.gz"; + url = "https://fossies.org/linux/misc/old/${name}.tar.gz"; sha256 = "0vf7s9dwk2xkmhb79aigqm0x0yfbw1j0b9ksm51207qwr179n6jr"; }; From 1b21c9db91e41c1773ea55c328d03013ac4e3327 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 26 Jul 2019 22:54:19 -0400 Subject: [PATCH 1241/1611] nixos/xdg: add gtkUsePortal option to portals Prior to this change GTK_USE_PORTAL was unconditionally set to "1". For this to not break things you have to have some sort of portal implementation in extraPortals. Setting GTK_USE_PORTAL in this manner is actually only useful when using portals for applications outside flatpak. For example people using non-flatpak Firefox who want native filechoosers. It's also WIP for electron applications to support this. --- nixos/modules/config/xdg/portal.nix | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix index 6a72fab3a4a..89ddf80b575 100644 --- a/nixos/modules/config/xdg/portal.nix +++ b/nixos/modules/config/xdg/portal.nix @@ -1,5 +1,7 @@ { config, pkgs ,lib ,... }: + with lib; + { options.xdg.portal = { enable = @@ -19,6 +21,17 @@ with lib; environments you probably want to add them yourself. ''; }; + + gtkUsePortal = mkOption { + type = types.bool; + default = false; + description = '' + Sets environment variable GTK_USE_PORTAL to 1. + This is needed for packages ran outside Flatpak to respect and use XDG Desktop Portals. + For example, you'd need to set this for non-flatpak Firefox to use native filechoosers. + Defaults to false to respect its opt-in nature. + ''; + }; }; config = @@ -28,10 +41,17 @@ with lib; in mkIf cfg.enable { + assertions = [ + { assertion = (cfg.gtkUsePortal -> cfg.extraPortals != []); + message = "Setting xdg.portal.gtkUsePortal to true requires a portal implementation in xdg.portal.extraPortals such as xdg-desktop-portal-gtk or xdg-desktop-portal-kde."; + } + ]; + services.dbus.packages = packages; systemd.packages = packages; + environment.variables = { - GTK_USE_PORTAL = "1"; + GTK_USE_PORTAL = optional cfg.gtkUsePortal "1"; XDG_DESKTOP_PORTAL_PATH = map (p: "${p}/share/xdg-desktop-portal/portals") cfg.extraPortals; }; }; From 8c73d4b14f35bd6741e6693ba9869799a15150e7 Mon Sep 17 00:00:00 2001 From: Ben Wolsieffer Date: Mon, 29 Jul 2019 22:30:53 -0400 Subject: [PATCH 1242/1611] gn: 20190726 -> 20190403 Downgrade to fix Chromium. --- pkgs/development/tools/build-managers/gn/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/gn/default.nix b/pkgs/development/tools/build-managers/gn/default.nix index d2f347901eb..34d19b61694 100644 --- a/pkgs/development/tools/build-managers/gn/default.nix +++ b/pkgs/development/tools/build-managers/gn/default.nix @@ -2,8 +2,8 @@ , git, ninja, python2 }: let - rev = "0bc16a82ea001ad9c94b870f097034be5c8e40b4"; - sha256 = "01as6q5xr0smiihm9m1x74pykd2jcqi4rhv8irmv43v2f0pxwzi5"; + rev = "64b846c96daeb3eaf08e26d8a84d8451c6cb712b"; + sha256 = "1v2kzsshhxn0ck6gd5w16gi2m3higwd9vkyylmsczxfxnw8skgpy"; shortRev = builtins.substring 0 7 rev; lastCommitPosition = writeText "last_commit_position.h" '' @@ -18,7 +18,7 @@ let in stdenv.mkDerivation rec { name = "gn-${version}"; - version = "20190726"; + version = "20190403"; src = fetchgit { url = "https://gn.googlesource.com/gn"; From 94ae71a66afd8c990eab928408ef1cf9f08294b9 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 29 Jul 2019 23:14:59 -0500 Subject: [PATCH 1243/1611] brakeman: 4.5.1 -> 4.6.1 --- pkgs/development/tools/analysis/brakeman/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/brakeman/default.nix b/pkgs/development/tools/analysis/brakeman/default.nix index 78a4396698b..9c3efd02de0 100644 --- a/pkgs/development/tools/analysis/brakeman/default.nix +++ b/pkgs/development/tools/analysis/brakeman/default.nix @@ -4,8 +4,8 @@ buildRubyGem rec { inherit ruby; name = "${gemName}-${version}"; gemName = "brakeman"; - version = "4.5.1"; - source.sha256 = "0vqnhlswvrg5fpxszfkjmla85gdlvgspz0whlli730ydx648mi68"; + version = "4.6.1"; + source.sha256 = "04chxflc5n6q0kz93c9dc6jwqrz0mrrlpm4iqncb39yyvg4ghcbf"; meta = with lib; { description = "Static analysis security scanner for Ruby on Rails"; From a0d847f1cef2402b77437cd8e840b114a0660319 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 29 Jul 2019 23:21:49 -0500 Subject: [PATCH 1244/1611] go-tools: 2019.2.1 -> 2019.2.3 --- pkgs/development/tools/go-tools/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/go-tools/default.nix b/pkgs/development/tools/go-tools/default.nix index b55a38d2748..4c80c2aff18 100644 --- a/pkgs/development/tools/go-tools/default.nix +++ b/pkgs/development/tools/go-tools/default.nix @@ -5,7 +5,7 @@ buildGoModule rec { pname = "go-tools"; - version = "2019.2.1"; + version = "2019.2.2"; goPackagePath = "honnef.co/go/tools"; excludedPackages = ''\(simple\|ssa\|ssa/ssautil\|lint\|staticcheck\|stylecheck\|unused\)/testdata''; @@ -14,7 +14,7 @@ buildGoModule rec { owner = "dominikh"; repo = "go-tools"; rev = version; - sha256 = "1frpy4pl9yp6j00mjj2yss3k8hip0cc7b5i5mz61n3dlw0kga9z1"; + sha256 = "1vndpwg797z2gw9h9378iq99aqy7nalqx82lgvcsaqnkypdmppnd"; }; modSha256 = "0ysaq94m7pkziliz4z4dl8ad84mbn17m2hqxvs9wbw4iwhkpi7gz"; From 137ce9ec09205ada0c7ca2552737318ecbffa8bf Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 29 Jul 2019 23:52:39 -0500 Subject: [PATCH 1245/1611] universal-ctags: 2018-07-23 -> 2019-07-30 --- .../tools/misc/universal-ctags/default.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/misc/universal-ctags/default.nix b/pkgs/development/tools/misc/universal-ctags/default.nix index 57de59605f3..ebc85c19b39 100644 --- a/pkgs/development/tools/misc/universal-ctags/default.nix +++ b/pkgs/development/tools/misc/universal-ctags/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "universal-ctags-${version}"; - version = "2018-07-23"; + version = "unstable-2019-07-30"; src = fetchFromGitHub { owner = "universal-ctags"; repo = "ctags"; - rev = "3522685695ad3312cf4b19399e0c44f3395dd089"; - sha256 = "1f67hy8c2yr9z4ydsqd7wg8iagzn01qjw2ccx6g8mngv3i3jz9mv"; + rev = "920e7910146915e5cae367bc9f135ffd8b042042"; + sha256 = "14n3ix77rkhq6vq6kspmgjrmm0kg0f8cxikyqdq281sbnfq8bajn"; }; nativeBuildInputs = [ autoreconfHook pkgconfig pythonPackages.docutils ]; @@ -21,6 +21,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-tmpdir=/tmp" ]; + postPatch = '' + # Remove source of non-determinism + substituteInPlace main/options.c \ + --replace "printf (\" Compiled: %s, %s\n\", __DATE__, __TIME__);" "" + ''; + postConfigure = '' sed -i 's|/usr/bin/env perl|${perl}/bin/perl|' misc/optlib2c ''; From 48fefb7c491d5fcd2008f5689d95770c1041abd5 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 29 Jul 2019 23:26:18 -0500 Subject: [PATCH 1246/1611] translate-shell: 0.9.6.10 -> 0.9.6.11 --- pkgs/applications/misc/translate-shell/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/translate-shell/default.nix b/pkgs/applications/misc/translate-shell/default.nix index 9fb8469cf27..a2f6980abd9 100644 --- a/pkgs/applications/misc/translate-shell/default.nix +++ b/pkgs/applications/misc/translate-shell/default.nix @@ -1,15 +1,14 @@ { stdenv, fetchFromGitHub, makeWrapper, curl, fribidi, rlwrap, gawk, groff, ncurses }: stdenv.mkDerivation rec { - name = "${pname}-${version}"; pname = "translate-shell"; - version = "0.9.6.10"; + version = "0.9.6.11"; src = fetchFromGitHub { owner = "soimort"; repo = "translate-shell"; rev = "v${version}"; - sha256 = "1dmh3flldfhnqfay3a6c5hanqcjwrmbly1bq8mlk022qfi1fv33y"; + sha256 = "137fz3ahzf65hfqcs4k7hhrmfjlhlw7wr3gfsvk88bnyqkyw44sm"; }; buildInputs = [ makeWrapper ]; From 7ed270b37243fe6c65789b65858107c06844c2e1 Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Tue, 30 Jul 2019 13:02:30 +0800 Subject: [PATCH 1247/1611] youtube-dl: 2019.07.27 -> 2019.07.30 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 7e11a68c85e..5c13b4c8350 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.07.27"; + version = "2019.07.30"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "1k4b8s1g816m8k48mlsk5pfjaqz8p6qsvfrdnpfkminwm4f6kz6d"; + sha256 = "0nb5xvq4aq0az8y5wb54zp5q4qzfhs7rcb39yp6j5q8jyjp9kzwy"; }; nativeBuildInputs = [ makeWrapper ]; From 530e6004ef7abf969e5db7365ecbb45f94e3e5e7 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Mon, 29 Jul 2019 21:59:24 -0700 Subject: [PATCH 1248/1611] rustracer: 2.0.14 -> 2.1.22 --- pkgs/development/tools/rust/racer/default.nix | 39 ++++++++++++------- .../tools/rust/racer/ignore-tests.patch | 22 ----------- .../tools/rust/racer/rust-src.patch | 10 ----- 3 files changed, 25 insertions(+), 46 deletions(-) delete mode 100644 pkgs/development/tools/rust/racer/ignore-tests.patch delete mode 100644 pkgs/development/tools/rust/racer/rust-src.patch diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix index fabd61018af..c63caaf4850 100644 --- a/pkgs/development/tools/rust/racer/default.nix +++ b/pkgs/development/tools/rust/racer/default.nix @@ -2,30 +2,41 @@ rustPlatform.buildRustPackage rec { name = "racer-${version}"; - version = "2.0.14"; + version = "2.1.22"; src = fetchFromGitHub { owner = "racer-rust"; repo = "racer"; - rev = version; - sha256 = "0kgax74qa09axq7b175ph3psprgidwgsml83wm1qwdq16gpxiaif"; + rev = "v${version}"; + sha256 = "1n808h4jqxkvpjwmj8jgi4y5is5zvr8vn42mwb3yi13mix32cysa"; }; - cargoSha256 = "119xfkglpfq26bz411rjj31i088vr0847p571cxph5v3dfxbgz4y"; + cargoSha256 = "0njaa9vk2i9g1c6sq20b7ls97nl532rfv3is7d8dwz51nrwk6jxs"; buildInputs = [ makeWrapper ]; - preCheck = '' - export RUST_SRC_PATH="${rustPlatform.rustcSrc}" + # a nightly compiler is required unless we use this cheat code. + RUSTC_BOOTSTRAP=1; + + RUST_SRC_PATH = rustPlatform.rustcSrc; + postInstall = '' + wrapProgram $out/bin/racer --set-default RUST_SRC_PATH $rustcSrc + ''; + + checkPhase = '' + cargo test -- \ + --skip nameres::test_do_file_search_std \ + --skip util::test_get_rust_src_path_rustup_ok \ + --skip util::test_get_rust_src_path_not_rust_source_tree \ + --skip extern --skip completes_pub_fn --skip find_crate_doc \ + --skip follows_use_local_package --skip follows_use_for_reexport \ + --skip follows_rand_crate --skip get_completion_in_example_dir + ''; + + doInstallCheck = true; + installCheckPhase = '' + $out/bin/racer --version ''; - patches = [ - (substituteAll { - src = ./rust-src.patch; - inherit (rustPlatform) rustcSrc; - }) - ./ignore-tests.patch - ]; - doCheck = true; meta = with stdenv.lib; { description = "A utility intended to provide Rust code completion for editors and IDEs"; diff --git a/pkgs/development/tools/rust/racer/ignore-tests.patch b/pkgs/development/tools/rust/racer/ignore-tests.patch deleted file mode 100644 index 021217b4094..00000000000 --- a/pkgs/development/tools/rust/racer/ignore-tests.patch +++ /dev/null @@ -1,22 +0,0 @@ -diff -Naur --strip-trailing-cr source.org/src/racer/nameres.rs source/src/racer/nameres.rs ---- source.org/src/racer/nameres.rs 2017-11-15 20:37:38.571644733 +0000 -+++ source/src/racer/nameres.rs 2017-11-15 20:23:20.521324031 +0000 -@@ -577,6 +577,7 @@ - out.into_iter() - } - -+#[ignore] - #[test] - fn test_do_file_search() { - let cache = core::FileCache::default(); -diff -Naur --strip-trailing-cr source.org/src/racer/util.rs source/src/racer/util.rs ---- source.org/src/racer/util.rs 2017-11-15 19:37:55.095344120 +0000 -+++ source/src/racer/util.rs 2017-11-15 20:22:53.746624158 +0000 -@@ -475,6 +475,7 @@ - - } - -+#[ignore] - #[test] - fn test_get_rust_src_path_missing() { - use std::env; diff --git a/pkgs/development/tools/rust/racer/rust-src.patch b/pkgs/development/tools/rust/racer/rust-src.patch deleted file mode 100644 index 2e794ac8887..00000000000 --- a/pkgs/development/tools/rust/racer/rust-src.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- source.org/src/racer/util.rs 1970-01-01 01:00:01.000000000 +0100 -+++ source/src/racer/util.rs 2017-11-15 16:50:12.904216242 +0000 -@@ -384,6 +384,7 @@ - debug!("Nope. Trying default paths: /usr/local/src/rust/src and /usr/src/rust/src"); - - let default_paths = [ -+ "@rustcSrc@", - "/usr/local/src/rust/src", - "/usr/src/rust/src", - ]; From c3bf4cec234708af5081839d2fe0f2f0e095c9d3 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Mon, 29 Jul 2019 22:10:02 -0700 Subject: [PATCH 1249/1611] rustracerd: 2017-09-15 -> 2019-03-20 --- pkgs/development/tools/rust/racerd/default.nix | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/rust/racerd/default.nix b/pkgs/development/tools/rust/racerd/default.nix index ae282584aaf..aa33f04123f 100644 --- a/pkgs/development/tools/rust/racerd/default.nix +++ b/pkgs/development/tools/rust/racerd/default.nix @@ -4,17 +4,20 @@ with rustPlatform; buildRustPackage rec { name = "racerd-${version}"; - version = "2017-09-15"; + version = "2019-03-20"; src = fetchFromGitHub { owner = "jwilm"; repo = "racerd"; - rev = "29cd4c6fd2a9301e49931c2e065b2e10c4b587e4"; - sha256 = "0knz881mjhd8q2i8ydggaa7lfpiqy11wjmnv5p80n1d8zca6yb7z"; + rev = "6f74488e58e42314a36ff000bae796fe54c1bdd1"; + sha256 = "1lg7j2plxpn5l65jxhsm99vmy08ljdb666hm0y1nnmmzalrakrg1"; }; + # a nightly compiler is required unless we use this cheat code. + RUSTC_BOOTSTRAP=1; + doCheck = false; - cargoSha256 = "0rxr8l5fhryxqf141sb2j4bjxdikj2hd7bnhbicgm35c9f6cir4m"; + cargoSha256 = "15894qr0kpp5kivx0p71zmmfhfh8in0ydkvfirxh2r12x0r2jhdd"; buildInputs = [ makeWrapper ]; @@ -23,7 +26,7 @@ buildRustPackage rec { installPhase = '' mkdir -p $out/bin cp -p target/release/racerd $out/bin/ - wrapProgram $out/bin/racerd --set RUST_SRC_PATH "$RUST_SRC_PATH" + wrapProgram $out/bin/racerd --set-default RUST_SRC_PATH "$RUST_SRC_PATH" ''; meta = with stdenv.lib; { From 070fea146c7a5af8463f975a529fcf140ecc917e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 30 Jul 2019 00:39:13 -0500 Subject: [PATCH 1250/1611] mtm: init at 1.0.1 --- pkgs/tools/misc/mtm/default.nix | 32 ++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/tools/misc/mtm/default.nix diff --git a/pkgs/tools/misc/mtm/default.nix b/pkgs/tools/misc/mtm/default.nix new file mode 100644 index 00000000000..d0bf3521c7c --- /dev/null +++ b/pkgs/tools/misc/mtm/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchFromGitHub, ncurses }: + +stdenv.mkDerivation rec { + pname = "mtm"; + version = "1.0.1"; + + src = fetchFromGitHub { + owner = "deadpixi"; + repo = pname; + rev = version; + sha256 = "0q23z1dfjz3qkmxqm0d8sg81gn6w1j2n2j6c9hk1kk7iv21v1zb0"; + }; + + buildInputs = [ ncurses ]; + + installPhase = '' + runHook preInstall + + install -Dm755 -t $out/bin mtm + install -Dm644 -t $out/share/man/man1 mtm.1 + + runHook postInstall + ''; + + meta = with stdenv.lib; { + description = "Perhaps the smallest useful terminal multiplexer in the world"; + homepage = "https://github.com/deadpixi/mtm"; + license = licenses.gpl3Plus; + platforms = platforms.unix; + maintainers = [ maintainers.marsam ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4a03f722c97..7d16f699540 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4927,6 +4927,8 @@ in mpack = callPackage ../tools/networking/mpack { }; + mtm = callPackage ../tools/misc/mtm { }; + pa_applet = callPackage ../tools/audio/pa-applet { }; pandoc-imagine = python3Packages.callPackage ../tools/misc/pandoc-imagine { }; From e2a28e8dd2743ea2f20281796765390cfa6c8d5b Mon Sep 17 00:00:00 2001 From: Steven Shaw Date: Tue, 30 Jul 2019 08:34:49 +1000 Subject: [PATCH 1251/1611] PULL_REQUEST_TEMPLATE: Add "Notify maintainers" section --- .github/PULL_REQUEST_TEMPLATE.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 5e8b84f3ce8..a4f1c61e8f5 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -18,4 +18,6 @@ - [ ] Ensured that relevant documentation is up to date - [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md). ---- +###### Notify maintainers + +cc @ From 8166fc21b873b8455475a0f5a789e9973b611bf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 30 Jul 2019 08:22:58 +0100 Subject: [PATCH 1252/1611] racer: add Security framework on darwin --- pkgs/development/tools/rust/racer/default.nix | 5 +++-- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rust/racer/default.nix b/pkgs/development/tools/rust/racer/default.nix index c63caaf4850..b1ab9253fd8 100644 --- a/pkgs/development/tools/rust/racer/default.nix +++ b/pkgs/development/tools/rust/racer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll }: +{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, substituteAll, Security }: rustPlatform.buildRustPackage rec { name = "racer-${version}"; @@ -13,7 +13,8 @@ rustPlatform.buildRustPackage rec { cargoSha256 = "0njaa9vk2i9g1c6sq20b7ls97nl532rfv3is7d8dwz51nrwk6jxs"; - buildInputs = [ makeWrapper ]; + buildInputs = [ makeWrapper ] + ++ stdenv.lib.optional stdenv.isDarwin Security; # a nightly compiler is required unless we use this cheat code. RUSTC_BOOTSTRAP=1; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4a03f722c97..8dae8d6c89a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -8177,7 +8177,9 @@ in inherit (darwin.apple_sdk.frameworks) CoreFoundation Security; }; rustfmt = callPackage ../development/tools/rust/rustfmt { }; - rustracer = callPackage ../development/tools/rust/racer { }; + rustracer = callPackage ../development/tools/rust/racer { + inherit (darwin.apple_sdk.frameworks) Security; + }; rustracerd = callPackage ../development/tools/rust/racerd { }; rust-bindgen = callPackage ../development/tools/rust/bindgen { }; rust-cbindgen = callPackage ../development/tools/rust/cbindgen { From ae608faa859b910d85f6d00cce9f1133c1fe4a1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Tue, 30 Jul 2019 09:28:34 +0200 Subject: [PATCH 1253/1611] nixos/xfs: Add xfs_repair to the initrd Closes #8820 --- nixos/modules/tasks/filesystems/xfs.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/tasks/filesystems/xfs.nix b/nixos/modules/tasks/filesystems/xfs.nix index c6a90bcf1a5..98038701ca5 100644 --- a/nixos/modules/tasks/filesystems/xfs.nix +++ b/nixos/modules/tasks/filesystems/xfs.nix @@ -18,6 +18,7 @@ in boot.initrd.extraUtilsCommands = mkIf inInitrd '' copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/fsck.xfs + copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/xfs_repair ''; # Trick just to set 'sh' after the extraUtils nuke-refs. From 70503758fb4b37107953dfb03ad7c0cf36ad0435 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Mon, 29 Jul 2019 23:28:44 -0500 Subject: [PATCH 1254/1611] flow: 0.103.0 -> 0.104.0 --- pkgs/development/tools/analysis/flow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/flow/default.nix b/pkgs/development/tools/analysis/flow/default.nix index e7ec4cb66fb..0db88835e6c 100644 --- a/pkgs/development/tools/analysis/flow/default.nix +++ b/pkgs/development/tools/analysis/flow/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "flow"; - version = "0.103.0"; + version = "0.104.0"; src = fetchFromGitHub { owner = "facebook"; repo = "flow"; rev = "refs/tags/v${version}"; - sha256 = "09hv483ika2h2jrix4wxb82i4lby6kkqk20yk70vb6xarqb267i7"; + sha256 = "189pibz5b9md6dhiadr7616xlmmrx5zwh7brbyrvgbapq80k9lak"; }; installPhase = '' From d7eeb8354e725aa4647420c503832267a465a2c8 Mon Sep 17 00:00:00 2001 From: Elmar Athmer Date: Tue, 30 Jul 2019 11:20:46 +0200 Subject: [PATCH 1255/1611] hcloud: 1.11.0 -> 1.13.0 --- pkgs/development/tools/hcloud/default.nix | 6 ++-- pkgs/development/tools/hcloud/deps.nix | 39 ++++++++++++++--------- 2 files changed, 27 insertions(+), 18 deletions(-) diff --git a/pkgs/development/tools/hcloud/default.nix b/pkgs/development/tools/hcloud/default.nix index fd05e12b4d5..4f3cae5fa1f 100644 --- a/pkgs/development/tools/hcloud/default.nix +++ b/pkgs/development/tools/hcloud/default.nix @@ -2,15 +2,15 @@ buildGoPackage rec { name = "hcloud-${version}"; - version = "1.11.0"; - + version = "1.13.0"; + goPackagePath = "github.com/hetznercloud/cli"; src = fetchFromGitHub { owner = "hetznercloud"; repo = "cli"; rev = "v${version}"; - sha256 = "0iknw14728l2mynrvb3fiqm7y893ppp22gbb3mppi6iy3as94f1f"; + sha256 = "1bin9gcmmj3i6a11rv7czvnryl8bv7cjz3pi2cqx8baycg3hia5j"; }; goDeps = ./deps.nix; diff --git a/pkgs/development/tools/hcloud/deps.nix b/pkgs/development/tools/hcloud/deps.nix index b0b54470128..01bde6f302a 100644 --- a/pkgs/development/tools/hcloud/deps.nix +++ b/pkgs/development/tools/hcloud/deps.nix @@ -1,4 +1,4 @@ -# This file was generated by https://github.com/kamilchm/go2nix v1.2.1 +# This file was generated by https://github.com/kamilchm/go2nix v1.3.0 [ { goPackagePath = "github.com/dustin/go-humanize"; @@ -23,8 +23,8 @@ fetch = { type = "git"; url = "https://github.com/gosuri/uilive"; - rev = "ac356e6e42cd31fcef8e6aec13ae9ed6fe87713e"; - sha256 = "1k28zbc14p1yqzhamp9rcagjdw6wsdb55m08nx758jwlr31az6jy"; + rev = "4512d98b127f3f3a1b7c3cf1104969fdd17b31d9"; + sha256 = "12n3kjgdzrb50jhkcb2ac3437mdhxh33zrcz7mi4gpji20jz4ai7"; }; } { @@ -32,8 +32,17 @@ fetch = { type = "git"; url = "https://github.com/gosuri/uiprogress"; - rev = "d0567a9d84a1c40dd7568115ea66f4887bf57b33"; - sha256 = "1m7rxf71mn8w2yysc8wmf2703avhci6f4nkiijjl1f2cx4kzykck"; + rev = "4442fea128d2bc91caf276b08518bdf4582561c8"; + sha256 = "1g6xjknm0981h3b1drbvm6vd66hiah1cylpdck9cqd18kyxd6bpd"; + }; + } + { + goPackagePath = "github.com/hetznercloud/cli"; + fetch = { + type = "git"; + url = "https://github.com/hetznercloud/cli"; + rev = "d6ec656f964aac4382d9c724edd27a8608e7b354"; + sha256 = "0ng7hihzplwyz4sdipms4m9qq2bcj92qczzd5adhm6da851jxpbc"; }; } { @@ -41,8 +50,8 @@ fetch = { type = "git"; url = "https://github.com/hetznercloud/hcloud-go"; - rev = "ecee721a51a772254d0104bf4d796358e40d6bbd"; - sha256 = "0bwym7f8am14yfh584p28d8lnj4f9mhqi05l1mlrl315xn0c78v3"; + rev = "70b166c92266125ee6a621dcc6089023a5f8d055"; + sha256 = "02hh214qk8qrhl9rpaywv2z5jpkzx3y2j8gv5xmdprdamrjwwlbc"; }; } { @@ -50,8 +59,8 @@ fetch = { type = "git"; url = "https://github.com/pelletier/go-toml"; - rev = "27c6b39a135b7dc87a14afb068809132fb7a9a8f"; - sha256 = "13ldxh43xf4prmcrjzriz3gxpnijpqlzrgyhh7bnkj7lkhryfpk9"; + rev = "84da2c4a25c585816f2c4211b699228d111d18ab"; + sha256 = "1zh5kswqckz7aaz4kpd1kxbxnlhlmprba1ghkl742x6mbv3w08bm"; }; } { @@ -59,8 +68,8 @@ fetch = { type = "git"; url = "https://github.com/spf13/cobra"; - rev = "d2d81d9a96e23f0255397222bb0b4e3165e492dc"; - sha256 = "14nhpiyhz2lm468y5sm1vyxks5aky12kmbhmqq319s92lkm494cy"; + rev = "1c9c46d5c1cc2aaebdd1898c0680e85e8a44b36d"; + sha256 = "0mxliq4gfvdazga8mapc2sazi915rz1h6prnark9hwbbsz0xn0r3"; }; } { @@ -86,8 +95,8 @@ fetch = { type = "git"; url = "https://go.googlesource.com/crypto"; - rev = "ff983b9c42bc9fbf91556e191cc8efb585c16908"; - sha256 = "1hpr06kzn8jnn3gvzp0p9zn4fz4l9h69f7x66idx142w4xdlaanz"; + rev = "4def268fd1a49955bfb3dda92fe3db4f924f2285"; + sha256 = "1bfsnari529gw34cz0zqk3d9mrkcj1ay35kangri8kbgll0ss5a6"; }; } { @@ -95,8 +104,8 @@ fetch = { type = "git"; url = "https://go.googlesource.com/sys"; - rev = "7fbe1cd0fcc20051e1fcb87fbabec4a1bacaaeba"; - sha256 = "0y49s4kazign9nsw2x3h39cgs14lqi57m4hrka26w49z8a1xdyc6"; + rev = "fc99dfbffb4e5ed5758a37e31dd861afe285406b"; + sha256 = "186x8bg926qb9sprs5zpd97xzvvhc2si7q1nhvyg12r5cd6v7zjd"; }; } ] From d2dc2593db06c347afc79ce3267f4ba1abb52f34 Mon Sep 17 00:00:00 2001 From: vasile luta Date: Tue, 30 Jul 2019 12:55:53 +0300 Subject: [PATCH 1256/1611] vimPlugins: update; add merge-tool, quickfix-reflector.vim, twig-vim, jsx-vim, vim-javascript-syntax, vim-html-template-literals, starsearch-vim --- pkgs/misc/vim-plugins/generated.nix | 350 ++++++++++++++++--------- pkgs/misc/vim-plugins/vim-plugin-names | 8 + 2 files changed, 227 insertions(+), 131 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 78da783962a..41c73577df7 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -61,12 +61,12 @@ let ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2019-07-14"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "w0rp"; repo = "ale"; - rev = "aae6d30b1ec135e37ec3bea1885d161c6174572b"; - sha256 = "1irh5l3y5sm00d5n13zl0a2v45r299bfxqsci3f98zw2m7kxhp5a"; + rev = "8f5ecf01200f82d12d452992a92c23fcf9e0f0e8"; + sha256 = "0yb9d1wh5b1g53bg5rjwf84m140rpsdb6i5rnp28a1w24330vxhg"; }; }; @@ -103,6 +103,17 @@ let }; }; + auto-git-diff = buildVimPluginFrom2Nix { + pname = "auto-git-diff"; + version = "2019-01-21"; + src = fetchFromGitHub { + owner = "hotwatermorning"; + repo = "auto-git-diff"; + rev = "1be2fec036f747fe44ec7f0a3868af0b0980954f"; + sha256 = "1yvbz4pn73j8jyarjbwidr88zg7vw3gq3hvh4334148iq2fj8529"; + }; + }; + auto-pairs = buildVimPluginFrom2Nix { pname = "auto-pairs"; version = "2019-02-27"; @@ -127,12 +138,12 @@ let awesome-vim-colorschemes = buildVimPluginFrom2Nix { pname = "awesome-vim-colorschemes"; - version = "2019-03-29"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "rafi"; repo = "awesome-vim-colorschemes"; - rev = "dec452fcf71c8d09c4029fe28d9ac12af935f6ac"; - sha256 = "1gsh0dibbwz7vypvc23h230x56n7i8a5y6c872lqflf2as62x0xr"; + rev = "6b89c217ffa50f92a7afdcb01d2af071ff9b80a0"; + sha256 = "03d12fi90kbhf74p1yh721nfa26r2ns7ad5k6a7n6fwl3anrq4g4"; }; }; @@ -292,12 +303,12 @@ let coc-git = buildVimPluginFrom2Nix { pname = "coc-git"; - version = "2019-07-19"; + version = "2019-07-24"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-git"; - rev = "9d61bbb9c5b25a61d57f72f94941cf1c1a531fa6"; - sha256 = "04igxs6g48vhj5rz3vy57amig18xfxdi4s06ap2fimds5d9904s0"; + rev = "e7f37ceaf250b152de5712454f42172337cb8a0f"; + sha256 = "0p2m3gwhjifbf53g68r8prg7rz7gm5nzv9hw4ar6msy61rmjpy56"; }; }; @@ -336,12 +347,12 @@ let coc-imselect = buildVimPluginFrom2Nix { pname = "coc-imselect"; - version = "2019-07-09"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-imselect"; - rev = "e5df00d935757adb2c8f86dbc7b3bc0380adbecd"; - sha256 = "0k2dxvgr5kq1kq4w5y986yv2xz1zcbd55cwcncy64zjkfcffmjl7"; + rev = "ae248e744ac3c092c6d957d3923595676666b0e2"; + sha256 = "11cnab1s9jkywbm3nv6wbaaafq2nxqp9g3yav6lc74bazkzflm8i"; }; }; @@ -380,12 +391,12 @@ let coc-lists = buildVimPluginFrom2Nix { pname = "coc-lists"; - version = "2019-07-20"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-lists"; - rev = "987409e8d350378a5b3ed40c21bceb8f6252c3df"; - sha256 = "11xampj0pk6393qx340ldgpk0131r756156gm1yhk4mlcc4qfbh1"; + rev = "24e00e54ca8f4e38303f02927694d09d0ddc0287"; + sha256 = "0wjhdp4nym3f56h5bi923q46vp7c5d611fywamzva5sv5raainxq"; }; }; @@ -402,45 +413,45 @@ let coc-pairs = buildVimPluginFrom2Nix { pname = "coc-pairs"; - version = "2019-07-19"; + version = "2019-07-25"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-pairs"; - rev = "101d61e571389c427bb8f1bc3a81f446144be82f"; - sha256 = "1d7f1p2cy2kf0l2diyzz9z4zblis1iad9nnjy9cpjdcv1qfcvalg"; + rev = "3070d22f15c8e41ff01aed9b6b9a377ae5f0358a"; + sha256 = "00ixzdn3wpwm3pp0b87l4bvln9nrmqcd0k5c851x6bif06gsnydz"; }; }; coc-prettier = buildVimPluginFrom2Nix { pname = "coc-prettier"; - version = "2019-07-15"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-prettier"; - rev = "9a2c2ebb03134a2dfc059a662a59b6d799609373"; - sha256 = "0mivdca8gicli6c87qy12nw18m4qcf29hb5y49falnpp2104prji"; + rev = "79ebb637c533dbddd774be8d87ff80b27650dcc9"; + sha256 = "16ggli5ixxaa03f60j66my3zw64ciyi7pgqnf5i2k94yk35bi0d6"; }; }; coc-python = buildVimPluginFrom2Nix { pname = "coc-python"; - version = "2019-07-21"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-python"; - rev = "afe3a0854206675f961e96e8514d758224e0a7df"; - sha256 = "06nqmiypg55isa1iaz9k6jnwrb2whj06pmxq4r3jx9r6jgg2zf0g"; + rev = "a1ed2aff825b9c48d4be98207470db0a19b2e2c6"; + sha256 = "0n8famcsy05vzaf48fczbfz68868wjkaq8bl4k6206glppmxybw3"; }; }; coc-r-lsp = buildVimPluginFrom2Nix { pname = "coc-r-lsp"; - version = "2019-06-19"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-r-lsp"; - rev = "2a7a544fba67233ed6d400ccf8d9fcea8f163d85"; - sha256 = "0cjlfd31cpny4cwd3nwsv7n7rykfksqazxqap5q4iq1hpz8zsdh0"; + rev = "261e14c4d80c3302dda0d7b51c45637e3390fe76"; + sha256 = "1r4z8aiw8s66crrg9n26s93wpync7p6p3jwm32m8anvp1swkqp6b"; }; }; @@ -457,23 +468,23 @@ let coc-smartf = buildVimPluginFrom2Nix { pname = "coc-smartf"; - version = "2019-07-22"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-smartf"; - rev = "ccc4431b17d1e02a33d005ecc30af8638f32e5a5"; - sha256 = "1gawpziv5qilhw5v7x7ihkmypfkjq22qgar6cfq6332c5rjqk6xi"; + rev = "d40714eab8e5fe26fac492ffd30e98cd1bfbdec5"; + sha256 = "0kfrq5hk8zn24cl7fiy48nyvd30a2dva93c61079axkdg9912yd7"; }; }; coc-snippets = buildVimPluginFrom2Nix { pname = "coc-snippets"; - version = "2019-07-18"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-snippets"; - rev = "6c89beeb6d654a8777385f59cd579ef34e132daf"; - sha256 = "0jr87y66miarkxsmgh16si2nshi2flla96m2w8kjlyb0ksz96kv2"; + rev = "bcfc9ecbf5e31e89a321a2f6e6bf6c3042aef166"; + sha256 = "1nkkl7j3328gjmmdrbpqvypsd52vqggaa9cxw98r2qn754nx2gwi"; }; }; @@ -589,12 +600,12 @@ let coc-yank = buildVimPluginFrom2Nix { pname = "coc-yank"; - version = "2019-06-28"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-yank"; - rev = "6b05809b9826db8ce4e124d0662522599a250ba0"; - sha256 = "1h0479ds0j5bfc2amq3v3r1ilafgaksjxn7mmk4zpxrc0kbcjjdh"; + rev = "3e89571841997d4f6a2814b3693e21d8848ee084"; + sha256 = "1pw1p3h2aqlldwl9qbiin7a1yzjl04i3dm6s86bpjhl1ixwkj3by"; }; }; @@ -777,12 +788,12 @@ let denite-nvim = buildVimPluginFrom2Nix { pname = "denite-nvim"; - version = "2019-07-22"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "Shougo"; repo = "denite.nvim"; - rev = "1b5b057fc5fdae0745b84d15954245ac23618dc2"; - sha256 = "1f96br849xh0xhjny4q29wxzrf1ypgw10sx2s0rfdmbfip32djh4"; + rev = "00ce66260291d059386f1aac6ef707e6dbd0c13f"; + sha256 = "174d78f5xxx2i040xqm8qmm8px3w06wnwcgmcvb0jjpy3blj2v3a"; }; }; @@ -890,12 +901,12 @@ let deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete-nvim"; - version = "2019-07-22"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "53ad762d357f74c02c04403325f8f9122ba3bade"; - sha256 = "0j2fx981r5bzcw408x1jy82inkly1kc3ciwdyqlhi94lg8sl20jv"; + rev = "3267781440f62dc5070d9a8a2d25d926b0266403"; + sha256 = "1w22b251l6wg9s90npvj04b45fyjh1rl60g7s9l5c44iqxc8aamw"; }; }; @@ -968,12 +979,12 @@ let emmet-vim = buildVimPluginFrom2Nix { pname = "emmet-vim"; - version = "2019-06-24"; + version = "2019-07-24"; src = fetchFromGitHub { owner = "mattn"; repo = "emmet-vim"; - rev = "15ef997d4d683afb4b1ee641d47980972445b61f"; - sha256 = "09cm7wzl4gkb6whlfsprap1jd22f1yfp9wykw1aygj0zc5k6a106"; + rev = "461700696ea317722c4a8d92a31a7267cdcc0bfb"; + sha256 = "1jfz9n875lqnhxi09rddw1wpacjda1l36xyc3a4yyaxbfb62sqxf"; fetchSubmodules = true; }; }; @@ -1002,12 +1013,12 @@ let falcon = buildVimPluginFrom2Nix { pname = "falcon"; - version = "2019-07-15"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "fenetikm"; repo = "falcon"; - rev = "d82e93a171e61129ba04a8d9dfed75f2b892b3a5"; - sha256 = "16gys01i808111s4bd2k8la1fmj8p7l7y9vbig0x0qvd3klbhmm8"; + rev = "9db4ff975d5745aaa33ed52b6025dd24112b1007"; + sha256 = "04lkw240kcsrc15qydxkbg57wqr41k530zc8pzxicr6axby6xjgc"; }; }; @@ -1466,12 +1477,12 @@ let lightline-vim = buildVimPluginFrom2Nix { pname = "lightline-vim"; - version = "2019-07-20"; + version = "2019-07-25"; src = fetchFromGitHub { owner = "itchyny"; repo = "lightline.vim"; - rev = "bc82a1c7b6d8517d4e9224a254968e0f0b334fdf"; - sha256 = "06irpk314qkpym8v0g3w6jdz9md5jawwck718zmlmh40f9gyjcz3"; + rev = "f2a1f47c85a1341895c20e6dbc3a9440804eec1b"; + sha256 = "0048c83fpf5snpwj913rsx7h8giymbb9k5ssjfaxcl8jfz3j6qdc"; }; }; @@ -1664,12 +1675,12 @@ let neoformat = buildVimPluginFrom2Nix { pname = "neoformat"; - version = "2019-07-12"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "sbdchd"; repo = "neoformat"; - rev = "ccad9c528ad6fdbb4a249f4898f67b51e41b04c3"; - sha256 = "1gjglx90nbx9mjl4ggda1db9alq3zsxwi3ydfwfs23hyifihlsws"; + rev = "673f9d571134299951250535402ac32ad713f8d5"; + sha256 = "1jvyb6rdfd60c36vyxpkfh4cbwk8v6bhqpk5i384a6gxc7577f0v"; }; }; @@ -1686,12 +1697,12 @@ let neomake = buildVimPluginFrom2Nix { pname = "neomake"; - version = "2019-07-22"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "neomake"; repo = "neomake"; - rev = "999b6710ab915de2a3a23ce2a2456e2a295a2cf8"; - sha256 = "18j0d6mvkr5a29d7v14j87lz63svv6f2xm7xi5drl0r4s8lvjmhw"; + rev = "d49607c3dd8d041f3f61bc2ae58569b3f8259830"; + sha256 = "05akv0j09jr4k7hjyn717lpsw4xkjyfk572yabzfryii40mi3iga"; }; }; @@ -1873,12 +1884,12 @@ let nvimdev-nvim = buildVimPluginFrom2Nix { pname = "nvimdev-nvim"; - version = "2019-03-07"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "neovim"; repo = "nvimdev.nvim"; - rev = "15f41301341a5802996aa770ce28237d83165844"; - sha256 = "153ld7nvdrjq59825pixwdxhhfi8vbg4k8yi4lgvzd0vsmlwqyrh"; + rev = "a874e3ae9ecd58c6b95b20813e47c4b45bd66a37"; + sha256 = "0kcki6g20i8p7fmh07cspz3vb38rz3w04mvima9b2kd6hqv23px7"; }; }; @@ -1992,6 +2003,17 @@ let }; }; + quickfix-reflector-vim = buildVimPluginFrom2Nix { + pname = "quickfix-reflector-vim"; + version = "2018-08-12"; + src = fetchFromGitHub { + owner = "stefandtw"; + repo = "quickfix-reflector.vim"; + rev = "c76b7a1f496864315eea3ff2a9d02a53128bad50"; + sha256 = "02vb7qkdprx3ksj4gwnj3j180kkdal8jky69dcjn8ivr0x8g26s8"; + }; + }; + quickfixstatus = buildVimPluginFrom2Nix { pname = "quickfixstatus"; version = "2011-09-03"; @@ -2115,12 +2137,12 @@ let rust-vim = buildVimPluginFrom2Nix { pname = "rust-vim"; - version = "2019-06-29"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust.vim"; - rev = "de998a2014c997d6f8f749a9be195f1cd51aa9c0"; - sha256 = "0fx9j0l8fjb54c7b1pzwypkmvr3sx39x5wpjbxkwa8a916nlylq2"; + rev = "18fef3b61ce18ad262ca014d11496457d8574df7"; + sha256 = "0iwc4fjvrif2sdgmzp392lyr7q2n8c2kdwvdpam7q16cql0va1ry"; }; }; @@ -2234,6 +2256,17 @@ let }; }; + starsearch-vim = buildVimPluginFrom2Nix { + pname = "starsearch-vim"; + version = "2014-09-21"; + src = fetchFromGitHub { + owner = "darfink"; + repo = "starsearch.vim"; + rev = "9b8cda1e628160c83846db5a30899a1a1ba5c1c9"; + sha256 = "1i1ygdqwhz4jqmz9lzjnx1a7s5chdqjsvgkmnd9x0s8ixqa41bpr"; + }; + }; + supertab = buildVimPluginFrom2Nix { pname = "supertab"; version = "2017-11-14"; @@ -2346,12 +2379,12 @@ let tcomment_vim = buildVimPluginFrom2Nix { pname = "tcomment_vim"; - version = "2019-04-28"; + version = "2019-07-23"; src = fetchFromGitHub { owner = "tomtom"; repo = "tcomment_vim"; - rev = "622cc0551bef87a3dfb2846cb339412eeb8ef133"; - sha256 = "0zd23520hn5lflcz2jpi22x13kvmy6ry7qqzbi438xyw4j4gwpfs"; + rev = "9de9f7611297a1198b782d81eca84ec49e86008b"; + sha256 = "0lbnd4l0jslfhizg5v7d0db1kwvvqpf5d9s2d51mmy6a0787qb0h"; }; }; @@ -2511,12 +2544,12 @@ let verilog_systemverilog-vim = buildVimPluginFrom2Nix { pname = "verilog_systemverilog-vim"; - version = "2019-06-20"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "vhda"; repo = "verilog_systemverilog.vim"; - rev = "50294c3a1be2887a87289f136d51a82bf97d2b1b"; - sha256 = "1c1s7a99xqmy86mbgqvyfp9msvnk11shnkmjyzcv95432xf7jhqm"; + rev = "b397068789f1844ef28e207a4efc03f157874f80"; + sha256 = "15dmlzyhmg0rw8wkkln7xr2qmlz4gilqpi22wkzziwvsjc4hs2az"; }; }; @@ -2753,23 +2786,23 @@ let vim-airline = buildVimPluginFrom2Nix { pname = "vim-airline"; - version = "2019-06-14"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "vim-airline"; repo = "vim-airline"; - rev = "2db9b27e39bfd84cb432e001b4a3f41f633b3b7e"; - sha256 = "07spj2jagg3vy8h5p2qyywk9lxb7hg8vq0n8cy88qfphi6hf27b7"; + rev = "c213f2ac44292a6c5548872e63acb0648cc07a9a"; + sha256 = "0imhjaqhr145vw52517jbg8ckw4y9qr831v3rq8qpxgxawanr02w"; }; }; vim-airline-themes = buildVimPluginFrom2Nix { pname = "vim-airline-themes"; - version = "2019-05-06"; + version = "2019-07-23"; src = fetchFromGitHub { owner = "vim-airline"; repo = "vim-airline-themes"; - rev = "e6f233231b232b6027cde6aebeeb18d9138e5324"; - sha256 = "1sb7nb7j7bz0pv1c9bgdy0smhr0jk2b1vbdv9yzghg5lrknpsbr6"; + rev = "b85165844240fe0b9121df487679a320e053abc7"; + sha256 = "0yi381n7k3flcld66n8hhb3fzbqflif5d07qwn8f6zsg9n52dciw"; }; }; @@ -3061,12 +3094,12 @@ let vim-dispatch = buildVimPluginFrom2Nix { pname = "vim-dispatch"; - version = "2019-07-19"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-dispatch"; - rev = "0722f74ec551b0526c9f136f3aeae8db9726db6a"; - sha256 = "0b699g537v2sja6qj12sndhas5fxiwhyn443w9ylrfn0b8vs9a93"; + rev = "8e046e365fb74309f2504e9a3bcb2234e17a371b"; + sha256 = "074k4rf568489g2rw0vaf7al20qgwpsvm3pd5jh102ibqc5m3xp8"; }; }; @@ -3182,12 +3215,12 @@ let vim-fireplace = buildVimPluginFrom2Nix { pname = "vim-fireplace"; - version = "2019-07-21"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fireplace"; - rev = "923dfbdbdb395d6192483e12ec6069910162619a"; - sha256 = "1q1x5qxi081nnx7zqisr8ryb0ffskmjb0pylfzaswv7cwx4v4kpc"; + rev = "76b4a30d6dfdb7f7e81a934a91c6810c6acf7787"; + sha256 = "1pdf3r8an21fbh7pixmijw9m7fgkqfbwwgzbplaz3j6d123wqq4n"; }; }; @@ -3248,12 +3281,12 @@ let vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2019-07-21"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "80996c2e2c5a0185cc6ce77c2cd18665d26d4041"; - sha256 = "0wjwj06nqvx2q084l309mz9vma951xyjhi2h4psb7k1iwybiqkwf"; + rev = "a3ab24f68148c838597567e9cb88b81427f5ea60"; + sha256 = "0kxagcy8sk98f89jgisnii03w4phpsggp9ypydcc66djpkygd8bv"; }; }; @@ -3292,12 +3325,12 @@ let vim-gitgutter = buildVimPluginFrom2Nix { pname = "vim-gitgutter"; - version = "2019-07-01"; + version = "2019-07-26"; src = fetchFromGitHub { owner = "airblade"; repo = "vim-gitgutter"; - rev = "91471746fe687ee867877508dfd809460dab5698"; - sha256 = "0pbjvflhynzanb0hp5yyfiwpsnvv6ndnnrbmxdxk7iqjrc8765km"; + rev = "c75c83df531881008f8cf903eab7cd68bc19ff7a"; + sha256 = "1j0jy4bld43lwsjwkmym369scxpk8zbj0v3sskam8sq71blkzqca"; }; }; @@ -3325,12 +3358,12 @@ let vim-go = buildVimPluginFrom2Nix { pname = "vim-go"; - version = "2019-07-17"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "043984a5117262c74f8b9c85f1e15dc1a7e51872"; - sha256 = "18clcqa0dz49kkp678k0x5sx7w8salk7j25gmcws66alr2lrb4fs"; + rev = "8e9293f729cf13f21b6e5b48b5982492d5e5f655"; + sha256 = "016zyh8j6i2d0qwcb7mw1cmcbp0i23sjf63crgmm00g645bn2cx8"; }; }; @@ -3455,6 +3488,17 @@ let }; }; + vim-html-template-literals = buildVimPluginFrom2Nix { + pname = "vim-html-template-literals"; + version = "2019-06-16"; + src = fetchFromGitHub { + owner = "jonsmithers"; + repo = "vim-html-template-literals"; + rev = "9ac412554a818dc151b51507a13c73fa3de7d51e"; + sha256 = "0ii12kk4j7jpnv5gb4kkcmb5gca0lrv0n4mw4968jh6rxxh1xwyy"; + }; + }; + vim-husk = buildVimPluginFrom2Nix { pname = "vim-husk"; version = "2015-11-29"; @@ -3576,6 +3620,17 @@ let }; }; + vim-javascript-syntax = buildVimPluginFrom2Nix { + pname = "vim-javascript-syntax"; + version = "2019-07-22"; + src = fetchFromGitHub { + owner = "jelera"; + repo = "vim-javascript-syntax"; + rev = "77f90362a05eeb7733648d522ce9bf54ca3b9299"; + sha256 = "00mv80fsvngdihrjfhfgz91lq5anfizkirgcaz0ld1d9i8arqsmc"; + }; + }; + vim-jinja = buildVimPluginFrom2Nix { pname = "vim-jinja"; version = "2016-11-16"; @@ -3623,12 +3678,23 @@ let vim-jsonnet = buildVimPluginFrom2Nix { pname = "vim-jsonnet"; - version = "2019-06-18"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "google"; repo = "vim-jsonnet"; - rev = "b4d56c9024763d9fe1c0e9ce12e9f960bac944be"; - sha256 = "1dd0ckyvq7ckn28k16jvgfip2g2m0zqyhl76zxj34nkgxy5qdyid"; + rev = "b7459b36e5465515f7cf81d0bb0e66e42a7c2eb5"; + sha256 = "0fc6xpiyxly3ibs4lzn6dk9yd2cc353qb8lavag7zmims1bncvqf"; + }; + }; + + vim-jsx-pretty = buildVimPluginFrom2Nix { + pname = "vim-jsx-pretty"; + version = "2019-07-27"; + src = fetchFromGitHub { + owner = "MaxMEllon"; + repo = "vim-jsx-pretty"; + rev = "994503b30c929353c107eb9166accd68d35b83b5"; + sha256 = "134cmj0ajxjps649prmra9jgqp9gxqcfk0llxj92x0srjcg1xjhf"; }; }; @@ -3744,12 +3810,12 @@ let vim-lsc = buildVimPluginFrom2Nix { pname = "vim-lsc"; - version = "2019-06-25"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "natebosch"; repo = "vim-lsc"; - rev = "c491351fcfdb58d36da739912701d7132a33110e"; - sha256 = "1wvz493dk011kk113ml82vysr76zfarqrlk0v03hh9la33h23mh6"; + rev = "2cdd275bcc85962d3e8bbc2864210c7ed78019a9"; + sha256 = "0y01kk0wbf419srp3g27078lc69czfdb2mnxmjff7kam1f9krzfv"; }; }; @@ -3775,6 +3841,17 @@ let }; }; + vim-mergetool = buildVimPluginFrom2Nix { + pname = "vim-mergetool"; + version = "2019-06-22"; + src = fetchFromGitHub { + owner = "samoshkin"; + repo = "vim-mergetool"; + rev = "0275a85256ad173e3cde586d54f66566c01b607f"; + sha256 = "1i3zil06zyndm400i2pfn64ykbs29fw8l720229a8ypp9mxcibcp"; + }; + }; + vim-misc = buildVimPluginFrom2Nix { pname = "vim-misc"; version = "2015-05-21"; @@ -3920,12 +3997,12 @@ let vim-pandoc = buildVimPluginFrom2Nix { pname = "vim-pandoc"; - version = "2019-06-12"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "vim-pandoc"; repo = "vim-pandoc"; - rev = "f8fa0274c2727d81afaedd970059e4132fba96fd"; - sha256 = "1y84cllyb7mkq0x6a07dffa3zlgw3pbawgsgpcgkhz3nwazivxaf"; + rev = "b41a18b75dd8dee5217bca9f68d91f8fd2ea6084"; + sha256 = "0hw3znmb8zsacnkavgqcqbv4yb1b8vj9fm5h4z5lslxnnlg09pg9"; }; }; @@ -4085,12 +4162,12 @@ let vim-quickrun = buildVimPluginFrom2Nix { pname = "vim-quickrun"; - version = "2019-05-29"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "thinca"; repo = "vim-quickrun"; - rev = "09953abf07a4428dbec36c0747a4043ca9644da4"; - sha256 = "1dl74jgklspdh4magnbiczbd5gxs1a87sd8yzl1rwk1hr27bzg5m"; + rev = "008dd08aad2a544938acbbcf7cee6d3735ebd2fb"; + sha256 = "0azcw8p4z6kn6yprl0lbj186cg6kwkwfhfc2hgf6bia2ym33m25f"; }; }; @@ -4107,12 +4184,12 @@ let vim-repeat = buildVimPluginFrom2Nix { pname = "vim-repeat"; - version = "2019-04-26"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-repeat"; - rev = "0b9b5e742f67bc81ae4a1f79318549d3afc90b13"; - sha256 = "0wmcamz41pinpgpksi7nac2v1s9ysl4jlpb01pa7amb8nz92i7jy"; + rev = "ae361bea990e27d5beade3a8d9fa22e25cec3100"; + sha256 = "0myqas20r81gfvfrph4ww38db1nz32qlph7syr6ym8zl7c1fcjd4"; }; }; @@ -4195,12 +4272,12 @@ let vim-sensible = buildVimPluginFrom2Nix { pname = "vim-sensible"; - version = "2019-02-14"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-sensible"; - rev = "8db5a732eff08c796de188a52e7af66b99a8b9f2"; - sha256 = "1ns3qc9h1allivpsk50f9p65n3mqi4cxk96dqf1111pm89cc0xzv"; + rev = "67fe033b2b56b6f631a4c7a1179865178665f2a4"; + sha256 = "1jhj88n0xj6s6xjx5zs5906y6wwzr855wczk3f5myzs8z8y5cih5"; }; }; @@ -4239,11 +4316,11 @@ let vim-slime = buildVimPluginFrom2Nix { pname = "vim-slime"; - version = "2019-05-08"; + version = "2019-07-28"; src = fetchFromGitHub { owner = "jpalardy"; repo = "vim-slime"; - rev = "92421f0da36193a2b4dda37b8e9efbf278e93bf5"; + rev = "dc8ca22cef3f87999d926e18e2e230145e013838"; sha256 = "0pafvfhf3xbdqyy7v5y8h2j47k4y1zmscp7rans6vd5rq68k8fwf"; }; }; @@ -4338,12 +4415,12 @@ let vim-startify = buildVimPluginFrom2Nix { pname = "vim-startify"; - version = "2019-05-28"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "mhinz"; repo = "vim-startify"; - rev = "a27df8325c9ae7e4b0aa677936137dbf94e73b42"; - sha256 = "1haflgsfpbmrgg0l8g68i7x05n64ab5wx9s6aq714izypc2dmy2p"; + rev = "9abd2c76845de00eab207576b69332cf0e16d35c"; + sha256 = "0ljial7ymyzqbzzrmfh87v4207hhkfq0f5lq8v6jbv92nafrq17s"; }; }; @@ -4371,12 +4448,12 @@ let vim-surround = buildVimPluginFrom2Nix { pname = "vim-surround"; - version = "2019-03-26"; + version = "2019-07-22"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-surround"; - rev = "ca58a2d886cc18734c90c9665da4775d444b0c04"; - sha256 = "0d4jxp1ahwrwsk277yvkbk76jrhmv3bml83fivlxpj01224kdr2n"; + rev = "fab8621670f71637e9960003af28365129b1dfd0"; + sha256 = "0lkc0isv1cqv34qfia9mjvnp1nzz0qqy3k47z8r3xzb7dxgymkw8"; }; }; @@ -4556,6 +4633,17 @@ let }; }; + vim-twig = buildVimPluginFrom2Nix { + pname = "vim-twig"; + version = "2018-05-23"; + src = fetchFromGitHub { + owner = "lumiliet"; + repo = "vim-twig"; + rev = "ad115512725bcc156f7f89b72ff563b9fa44933b"; + sha256 = "1p7sfhk0mwx4xk88b29ijb9nfbjwsf6hf3nab2ybcw291qaa75nj"; + }; + }; + vim-unimpaired = buildVimPluginFrom2Nix { pname = "vim-unimpaired"; version = "2019-06-29"; @@ -4602,23 +4690,23 @@ let vim-vue = buildVimPluginFrom2Nix { pname = "vim-vue"; - version = "2019-03-22"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "posva"; repo = "vim-vue"; - rev = "c7b133a66ec9dcf2200d1d2a4a7ad38909c5f539"; - sha256 = "1bmpwh0lhdbh6z39w2i27rirc6iy3jd89gp47xmfmgvw7fk1szn4"; + rev = "da6395c56b20514add2d9c8b0283aaabb96e54b1"; + sha256 = "01r96pwamdnma9vbqvrrqy91sa18d3g8w85izaacfcfibh7q87bk"; }; }; vim-wakatime = buildVimPluginFrom2Nix { pname = "vim-wakatime"; - version = "2019-06-24"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "wakatime"; repo = "vim-wakatime"; - rev = "7a544c979ed52042c67a4189687ac53c853f109c"; - sha256 = "04n2hgyyiq4q9abcj867q30m4vhfz50gxwdvjj3844ppn104smsa"; + rev = "29d14cca6593a4809a31cfc3565a366d87426daf"; + sha256 = "1b47fv3jm37yhbg2mwc7kmlsl54dapb4sw9isf1h3mbmgxnvi5p9"; }; }; @@ -4734,12 +4822,12 @@ let vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2019-07-14"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "363a8c5dc3be3decd1e8060040f268b238a39689"; - sha256 = "1plflcw41nvkwd3lvqkb9z666h78kgd16mb020pi16v4v6zniw9n"; + rev = "35292b2f4b29300102db97db2c5d4c82add1711f"; + sha256 = "0y4z9zpl2fg9dwzzz697nq1iw2jxxdc1gzbak77fdkbywx7lpymy"; }; }; @@ -4889,12 +4977,12 @@ let youcompleteme = buildVimPluginFrom2Nix { pname = "youcompleteme"; - version = "2019-07-15"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "valloric"; repo = "youcompleteme"; - rev = "fa92f40d0209469a037196fdc3d949ae29d0c30a"; - sha256 = "01zmslcd0mmws0s67555i3xay4xyv0km7lfwlydi3zmalvjfn8dd"; + rev = "afa2ea03d03e6793d34704e4c75f2846ecbffd52"; + sha256 = "0n3c5hzg3bxhcc0ixv7a8rkfwsqprkgd3nxaj5wc36kc2832rg6s"; fetchSubmodules = true; }; }; @@ -4934,12 +5022,12 @@ let zig-vim = buildVimPluginFrom2Nix { pname = "zig-vim"; - version = "2019-07-08"; + version = "2019-07-27"; src = fetchFromGitHub { owner = "zig-lang"; repo = "zig.vim"; - rev = "78c6336a9c28a1ae7e9699a65e7b46475e530978"; - sha256 = "009vjz75may02ahhh5v72nxaxpk4arghvisszsxk8dnqrc251avi"; + rev = "b0c2afdd248b08a4525cba3fc428205f37cf0aad"; + sha256 = "05864kcrrkdvdydp967lg1ab3q4w9i1i75s0hpycnk3cvs51z88q"; }; }; diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index e260c6fe588..65c0d02bdfc 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -47,6 +47,7 @@ ctrlpvim/ctrlp.vim dag/vim2hs dag/vim-fish dannyob/quickfixstatus +darfink/starsearch.vim dart-lang/dart-vim-plugin davidhalter/jedi-vim deoplete-plugins/deoplete-jedi @@ -98,6 +99,7 @@ heavenshell/vim-jsdoc hecal3/vim-leader-guide HerringtonDarkholme/yats.vim honza/vim-snippets +hotwatermorning/auto-git-diff hsanson/vim-android ianks/vim-tsx icymind/NeoSolarized @@ -118,6 +120,7 @@ jceb/vim-hier jceb/vim-orgmode jeetsukumaran/vim-buffergator jeffkreeftmeijer/neovim-sensible +jelera/vim-javascript-syntax jgdavey/tslime.vim jhradilek/vim-docbk jiangmiao/auto-pairs @@ -125,6 +128,7 @@ jistr/vim-nerdtree-tabs jlanzarotta/bufexplorer jnurmine/zenburn jonbri/vim-colorstepper +jonsmithers/vim-html-template-literals joonty/vim-xdebug josa42/coc-go jpalardy/vim-slime @@ -172,6 +176,7 @@ LucHermitte/lh-vim-lib ludovicchabant/vim-gutentags ludovicchabant/vim-lawrencium lukaszkorecki/workflowish +lumiliet/vim-twig luochen1990/rainbow lyokha/vim-xkbswitch machakann/vim-highlightedyank @@ -196,6 +201,7 @@ MarcWeber/vim-addon-sql MarcWeber/vim-addon-syntax-checker MarcWeber/vim-addon-toggle-buffer MarcWeber/vim-addon-xdebug +MaxMEllon/vim-jsx-pretty markonm/traces.vim martinda/Jenkinsfile-vim-syntax mattn/emmet-vim @@ -314,6 +320,7 @@ roxma/nvim-yarp rust-lang/rust.vim ryanoasis/vim-devicons Rykka/riv.vim +samoshkin/vim-mergetool sbdchd/neoformat scrooloose/nerdcommenter scrooloose/nerdtree @@ -345,6 +352,7 @@ sjl/splice.vim sk1418/last256 slashmili/alchemist.vim sonph/onehalf +stefandtw/quickfix-reflector.vim t9md/vim-choosewin t9md/vim-smalls takac/vim-hardtime From 1b4de41d64a016080195a5ce208e0d2f8bbb1372 Mon Sep 17 00:00:00 2001 From: Elmar Athmer Date: Tue, 30 Jul 2019 12:12:24 +0200 Subject: [PATCH 1257/1611] hcloud: utilize pname and quote URL This implements rfc 0035 and rfc 0045. --- pkgs/development/tools/hcloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/hcloud/default.nix b/pkgs/development/tools/hcloud/default.nix index 4f3cae5fa1f..9b64dc8a3b1 100644 --- a/pkgs/development/tools/hcloud/default.nix +++ b/pkgs/development/tools/hcloud/default.nix @@ -1,7 +1,7 @@ { stdenv, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { - name = "hcloud-${version}"; + pname = "hcloud"; version = "1.13.0"; goPackagePath = "github.com/hetznercloud/cli"; @@ -32,7 +32,7 @@ buildGoPackage rec { meta = { description = "A command-line interface for Hetzner Cloud, a provider for cloud virtual private servers"; - homepage = https://github.com/hetznercloud/cli; + homepage = "https://github.com/hetznercloud/cli"; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.all; maintainers = [ stdenv.lib.maintainers.zauberpony ]; From 02ecb596a350858888339145829b1411574e593a Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 16:49:15 -0700 Subject: [PATCH 1258/1611] python2Packages.imbalanced-learn: fix build --- .../development/python-modules/imbalanced-learn/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/imbalanced-learn/default.nix b/pkgs/development/python-modules/imbalanced-learn/default.nix index 9020d2cc12c..9d1064b6c75 100644 --- a/pkgs/development/python-modules/imbalanced-learn/default.nix +++ b/pkgs/development/python-modules/imbalanced-learn/default.nix @@ -14,7 +14,11 @@ buildPythonPackage rec { checkPhase = '' export HOME=$PWD # skip some tests that fail because of minimal rounding errors - py.test imblearn --ignore=imblearn/metrics/classification.py + # or large dependencies + py.test imblearn -k 'not classification \ + and not _generator \ + and not _forest \ + and not wrong_memory' py.test doc/*.rst ''; From 35b622f0da6b3ce5224510250ad31035f7ec0400 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 16:59:52 -0700 Subject: [PATCH 1259/1611] python2Packages.imbalanced-learn: freeze at 0.4.3 --- .../python-modules/imbalanced-learn/0.4.nix | 29 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 6 +++- 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/python-modules/imbalanced-learn/0.4.nix diff --git a/pkgs/development/python-modules/imbalanced-learn/0.4.nix b/pkgs/development/python-modules/imbalanced-learn/0.4.nix new file mode 100644 index 00000000000..e7d2c2f3714 --- /dev/null +++ b/pkgs/development/python-modules/imbalanced-learn/0.4.nix @@ -0,0 +1,29 @@ +{ stdenv, buildPythonPackage, fetchPypi, scikitlearn, pandas, nose, pytest }: + +buildPythonPackage rec { + pname = "imbalanced-learn"; + version = "0.4.3"; + + src = fetchPypi { + inherit pname version; + sha256 = "5bd9e86e40ce4001a57426541d7c79b18143cbd181e3330c1a3e5c5c43287083"; + }; + + propagatedBuildInputs = [ scikitlearn ]; + checkInputs = [ nose pytest pandas ]; + checkPhase = '' + export HOME=$PWD + # skip some tests that fail because of minimal rounding errors + # or large dependencies + py.test imblearn -k 'not classification \ + and not _generator \ + and not _forest \ + and not wrong_memory' + ''; + + 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/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index f3e774b91e3..be6a291b7c7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2353,7 +2353,11 @@ in { image-match = callPackage ../development/python-modules/image-match { }; - imbalanced-learn = callPackage ../development/python-modules/imbalanced-learn { }; + imbalanced-learn = + if isPy27 then + callPackage ../development/python-modules/imbalanced-learn/0.4.nix { } + else + callPackage ../development/python-modules/imbalanced-learn { }; immutables = callPackage ../development/python-modules/immutables {}; From f744758a74161b2a5ade4f27af6d839e91609d21 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 29 Jul 2019 17:04:49 -0700 Subject: [PATCH 1260/1611] python3Packages.imbalanced-learn: 0.4.3 -> 0.5.0 --- .../imbalanced-learn/default.nix | 25 +++++++++++-------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/imbalanced-learn/default.nix b/pkgs/development/python-modules/imbalanced-learn/default.nix index 9d1064b6c75..6de97aff7d3 100644 --- a/pkgs/development/python-modules/imbalanced-learn/default.nix +++ b/pkgs/development/python-modules/imbalanced-learn/default.nix @@ -1,25 +1,30 @@ -{ stdenv, buildPythonPackage, fetchPypi, scikitlearn, pandas, nose, pytest }: +{ stdenv, buildPythonPackage, fetchPypi, isPy27 +, nose +, pandas +, pytest +, scikitlearn +, tensorflow +}: buildPythonPackage rec { pname = "imbalanced-learn"; - version = "0.4.3"; + version = "0.5.0"; + disabled = isPy27; # scikit-learn>=0.21 doesn't work on python2 src = fetchPypi { inherit pname version; - sha256 = "5bd9e86e40ce4001a57426541d7c79b18143cbd181e3330c1a3e5c5c43287083"; + sha256 = "1m8r055mvkws0s449s1dyrkgricls6basnszwbwqwrw6g19n1xsx"; }; propagatedBuildInputs = [ scikitlearn ]; checkInputs = [ nose pytest pandas ]; checkPhase = '' - export HOME=$PWD + export HOME=$TMPDIR # skip some tests that fail because of minimal rounding errors - # or large dependencies - py.test imblearn -k 'not classification \ - and not _generator \ - and not _forest \ - and not wrong_memory' - py.test doc/*.rst + # or very large dependencies (keras + tensorflow) + py.test imblearn -k 'not estimator \ + and not classification \ + and not _generator' ''; meta = with stdenv.lib; { From 1e07296a7e456a5f5a6a4cd27fcad061a6aa2f0c Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Mon, 29 Jul 2019 23:00:09 +0200 Subject: [PATCH 1261/1611] libblockdev: 2.20 -> 2.22 https://github.com/storaged-project/libblockdev/releases/tag/2.22-1 https://github.com/storaged-project/libblockdev/releases/tag/2.21-1 --- .../libraries/libblockdev/default.nix | 33 +++++++++++-------- 1 file changed, 20 insertions(+), 13 deletions(-) diff --git a/pkgs/development/libraries/libblockdev/default.nix b/pkgs/development/libraries/libblockdev/default.nix index a807e399827..6deb89a80ea 100644 --- a/pkgs/development/libraries/libblockdev/default.nix +++ b/pkgs/development/libraries/libblockdev/default.nix @@ -1,18 +1,18 @@ -{ stdenv, fetchFromGitHub, substituteAll, autoreconfHook, pkgconfig, gtk-doc, libxslt, docbook_xsl -, docbook_xml_dtd_43, python3, gobject-introspection, glib, udev, kmod, parted, gptfdisk, libyaml +{ stdenv, fetchFromGitHub, substituteAll, autoreconfHook, pkgconfig, gtk-doc +, docbook_xml_dtd_43, python3, gobject-introspection, glib, udev, kmod, parted , cryptsetup, lvm2, dmraid, utillinux, libbytesize, libndctl, nss, volume_key +, libxslt, docbook_xsl, gptfdisk, libyaml, autoconf-archive +, thin-provisioning-tools, makeWrapper }: - -let - version = "2.20"; -in stdenv.mkDerivation rec { - name = "libblockdev-${version}"; +stdenv.mkDerivation rec { + pname = "libblockdev"; + version = "2.22"; src = fetchFromGitHub { owner = "storaged-project"; repo = "libblockdev"; rev = "${version}-1"; - sha256 = "13xy8vx2dnnxczpnwapchc5ncigcxb2fhpmrmglbpkjqmhn2zbdj"; + sha256 = "03y4ps37wbi9p1136q0xzgshfnrjg4lgy8pgm1a3ihfcjnbwrbnq"; }; outputs = [ "out" "dev" "devdoc" ]; @@ -29,18 +29,25 @@ in stdenv.mkDerivation rec { ''; nativeBuildInputs = [ - autoreconfHook pkgconfig gtk-doc libxslt docbook_xsl docbook_xml_dtd_43 python3 gobject-introspection + autoreconfHook pkgconfig gtk-doc libxslt docbook_xsl docbook_xml_dtd_43 + python3 gobject-introspection autoconf-archive makeWrapper ]; buildInputs = [ - glib udev kmod parted gptfdisk cryptsetup lvm2 dmraid utillinux libbytesize libndctl nss volume_key libyaml + glib udev kmod parted gptfdisk cryptsetup lvm2 dmraid utillinux libbytesize + libndctl nss volume_key libyaml ]; + postInstall = '' + wrapProgram $out/bin/lvm-cache-stats --prefix PATH : \ + ${stdenv.lib.makeBinPath [ thin-provisioning-tools ]} + ''; + meta = with stdenv.lib; { description = "A library for manipulating block devices"; - homepage = http://storaged.org/libblockdev/; - license = licenses.lgpl2Plus; # lgpl2Plus for the library, gpl2Plus for the utils - maintainers = with maintainers; []; + homepage = "http://storaged.org/libblockdev/"; + license = with licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the utils + maintainers = with maintainers; [ johnazoidberg ]; platforms = platforms.linux; }; } From 05f8fe7ed21c2d618ea5c86e7be08cd33954699c Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Mon, 29 Jul 2019 23:38:10 +0200 Subject: [PATCH 1262/1611] udisks: 2.8.2 -> 2.8.4 https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.3 https://github.com/storaged-project/udisks/releases/tag/udisks-2.8.4 --- pkgs/os-specific/linux/udisks/2-default.nix | 27 ++++++++++++--------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/pkgs/os-specific/linux/udisks/2-default.nix b/pkgs/os-specific/linux/udisks/2-default.nix index 484697d42ea..e99e9e37d82 100644 --- a/pkgs/os-specific/linux/udisks/2-default.nix +++ b/pkgs/os-specific/linux/udisks/2-default.nix @@ -5,16 +5,15 @@ , xfsprogs, f2fs-tools, dosfstools, e2fsprogs, btrfs-progs, exfat, nilfs-utils, ntfs3g }: -let - version = "2.8.2"; -in stdenv.mkDerivation rec { - name = "udisks-${version}"; +stdenv.mkDerivation rec { + pname = "udisks"; + version = "2.8.4"; src = fetchFromGitHub { owner = "storaged-project"; repo = "udisks"; - rev = name; - sha256 = "000xf99id1f6w8l20jxm3f2g32v9wx68rzv6q2bwrfz6vmy76xwy"; + rev = "${pname}-${version}"; + sha256 = "01wx2x8xyal595dhdih7rva2bz7gqzgwdp56gi0ikjdzayx17wcf"; }; outputs = [ "out" "man" "dev" "devdoc" ]; @@ -33,7 +32,10 @@ in stdenv.mkDerivation rec { }) (substituteAll { src = ./force-path.patch; - path = stdenv.lib.makeBinPath [ btrfs-progs coreutils dosfstools e2fsprogs exfat f2fs-tools nilfs-utils xfsprogs ntfs3g parted utillinux ]; + path = stdenv.lib.makeBinPath [ + btrfs-progs coreutils dosfstools e2fsprogs exfat f2fs-tools nilfs-utils + xfsprogs ntfs3g parted utillinux + ]; }) ]; @@ -59,6 +61,7 @@ in stdenv.mkDerivation rec { "--localstatedir=/var" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" "--with-udevdir=$(out)/lib/udev" + "--with-tmpfilesdir=no" ]; makeFlags = [ @@ -66,13 +69,15 @@ in stdenv.mkDerivation rec { "INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0" ]; - doCheck = false; # fails + enableParallelBuilding = true; + + doCheck = true; meta = with stdenv.lib; { description = "A daemon, tools and libraries to access and manipulate disks, storage devices and technologies"; - homepage = https://www.freedesktop.org/wiki/Software/udisks/; - license = licenses.gpl2Plus; # lgpl2Plus for the library, gpl2Plus for the tools & daemon - maintainers = with maintainers; []; + homepage = "https://www.freedesktop.org/wiki/Software/udisks/"; + license = with licenses; [ lgpl2Plus gpl2Plus ]; # lgpl2Plus for the library, gpl2Plus for the tools & daemon + maintainers = with maintainers; [ johnazoidberg ]; platforms = platforms.linux; }; } From 706518f761088aa16666727a90bd00b8a3d1060d Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Mon, 29 Jul 2019 17:18:32 -0400 Subject: [PATCH 1263/1611] epubcheck: 4.2.1 -> 4.2.2 --- pkgs/tools/text/epubcheck/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/epubcheck/default.nix b/pkgs/tools/text/epubcheck/default.nix index 3ad6f0d3ecc..4e117ab7a48 100644 --- a/pkgs/tools/text/epubcheck/default.nix +++ b/pkgs/tools/text/epubcheck/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { pname = "epubcheck"; - version = "4.2.1"; + version = "4.2.2"; src = fetchzip { url = "https://github.com/w3c/epubcheck/releases/download/v${version}/epubcheck-${version}.zip"; - sha256 = "10d68iz7g4wjiw14blcrbhvdckbi0754bc55ladsszg7gs79wip0"; + sha256 = "0vz7k6i6y60ml20pbw2p9iqy6kxw4ziqszg6hbgz102x1jk8788d"; }; nativeBuildInputs = [ makeWrapper ]; From 92cb811455e9fecf9900eb9612592b4951d6a270 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Jul 2019 14:55:57 +0200 Subject: [PATCH 1264/1611] git-cola: use qt5.wrapQtAppsHook --- .../git-and-tools/git-cola/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix index 060de50f9b7..316b664c070 100644 --- a/pkgs/applications/version-management/git-and-tools/git-cola/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-cola/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, pythonPackages, gettext, git }: +{ stdenv, fetchFromGitHub, pythonPackages, gettext, git, qt5 }: let inherit (pythonPackages) buildPythonApplication pyqt5 sip pyinotify; @@ -16,9 +16,16 @@ in buildPythonApplication rec { buildInputs = [ git gettext ]; propagatedBuildInputs = [ pyqt5 sip pyinotify ]; + nativeBuildInputs = [ qt5.wrapQtAppsHook ]; doCheck = false; + postFixup = '' + wrapQtApp bin/git-cola + wrapQtApp bin/git-dag + + ''; + meta = with stdenv.lib; { homepage = https://github.com/git-cola/git-cola; description = "A sleek and powerful Git GUI"; From 1190f69d3490b9b6b420d4109fcfb8cd59b9e770 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 25 Jul 2019 14:56:26 +0200 Subject: [PATCH 1265/1611] calibre: use qt5.wrapQtAppsHook, partially fixes #65313 Still fails due to Qt issue. --- pkgs/applications/misc/calibre/default.nix | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index b022f523007..6b4ca4e0355 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, poppler_utils, pkgconfig, libpng , imagemagick, libjpeg, fontconfig, podofo, qtbase, qmake, icu, sqlite , makeWrapper, unrarSupport ? false, chmlib, python2Packages, libusb1, libmtp -, xdg_utils, makeDesktopItem, wrapGAppsHook, removeReferencesTo +, xdg_utils, makeDesktopItem, wrapGAppsHook, removeReferencesTo, qt5 }: stdenv.mkDerivation rec { @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - nativeBuildInputs = [ makeWrapper pkgconfig qmake removeReferencesTo ]; + nativeBuildInputs = [ makeWrapper pkgconfig qmake removeReferencesTo qt5.wrapQtAppsHook ]; buildInputs = [ poppler_utils libpng imagemagick libjpeg @@ -48,6 +48,11 @@ stdenv.mkDerivation rec { odfpy ]); + qtWrapperArgs = [ + "--prefix PYTHONPATH: $PYTHONPATH" + "--prefix PATH: ${poppler_utils.out}/bin}" + ]; + installPhase = '' runHook preInstall @@ -70,9 +75,8 @@ stdenv.mkDerivation rec { sed -i "s/env python[0-9.]*/python/" $PYFILES sed -i "2i import sys; sys.argv[0] = 'calibre'" $out/bin/calibre - for a in $out/bin/*; do - wrapProgram $a --prefix PYTHONPATH : $PYTHONPATH \ - --prefix PATH : ${poppler_utils.out}/bin + for program in $out/bin/*; do + wrapQtApp $program done # Replace @out@ by the output path. @@ -95,6 +99,10 @@ stdenv.mkDerivation rec { remove-references-to -t ${podofo.dev} $out/lib/calibre/calibre/plugins/podofo.so ''; + postFixup = '' + + ''; + disallowedReferences = [ podofo.dev ]; calibreDesktopItem = makeDesktopItem { From c547924878655df061db7faaff90e238a81a15aa Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 30 Jul 2019 08:24:46 -0400 Subject: [PATCH 1266/1611] obs-studio: use qt's mkDerivation to fix xcb plugin abort --- pkgs/applications/video/obs-studio/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix index 0990062bf02..983bdff106e 100644 --- a/pkgs/applications/video/obs-studio/default.nix +++ b/pkgs/applications/video/obs-studio/default.nix @@ -1,4 +1,5 @@ { config, stdenv +, mkDerivation , fetchFromGitHub , cmake , fdk_aac @@ -34,7 +35,7 @@ let optional = stdenv.lib.optional; -in stdenv.mkDerivation rec { +in mkDerivation rec { name = "obs-studio-${version}"; version = "23.2.1"; From 3e17fe45223a3734971c8da5a68e4dbe3ebc2c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Tue, 30 Jul 2019 15:30:19 +0200 Subject: [PATCH 1267/1611] ffmpeg{_4,-full}: 4.1.3 -> 4.1.4 (security) Fixes #64656 CVE-2019-13312 CVE-2019-13390. --- pkgs/development/libraries/ffmpeg-full/default.nix | 11 ++++++++--- pkgs/development/libraries/ffmpeg/4.nix | 9 +++++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg-full/default.nix b/pkgs/development/libraries/ffmpeg-full/default.nix index db6793df646..65a48890e49 100644 --- a/pkgs/development/libraries/ffmpeg-full/default.nix +++ b/pkgs/development/libraries/ffmpeg-full/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, perl, texinfo, yasm +{ stdenv, fetchurl, fetchpatch, pkgconfig, perl, texinfo, yasm /* * Licensing options (yes some are listed twice, filters and such are not listed) */ @@ -234,12 +234,17 @@ assert opensslExtlib -> gnutls == null && openssl != null && nonfreeLicensing; stdenv.mkDerivation rec { name = "ffmpeg-full-${version}"; - version = "4.1.3"; + version = "4.1.4"; src = fetchurl { url = "https://www.ffmpeg.org/releases/ffmpeg-${version}.tar.xz"; - sha256 = "0gdnprc7gk4b7ckq8wbxbrj7i00r76r9a5g9mj7iln40512j0c0c"; + sha256 = "1qd7a10gs12ifcp31gramcgqjl77swskjfp7cijibgyg5yl4kw7i"; }; + patches = [(fetchpatch { # remove on update + name = "fix-hardcoded-tables.diff"; + url = "http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/c8232e50074f"; + sha256 = "0jlksks4fjajby8fjk7rfp414gxfdgd6q9khq26i52xvf4kg2dw6"; + })]; prePatch = '' patchShebangs . diff --git a/pkgs/development/libraries/ffmpeg/4.nix b/pkgs/development/libraries/ffmpeg/4.nix index 3066e0b12e5..3431943155e 100644 --- a/pkgs/development/libraries/ffmpeg/4.nix +++ b/pkgs/development/libraries/ffmpeg/4.nix @@ -6,7 +6,12 @@ callPackage ./generic.nix (args // rec { version = "${branch}"; - branch = "4.1.3"; - sha256 = "0aka5pibjhpks1wrsvqpy98v8cbvyvnngwqhh4ajkg6pbdl7k9i9"; + branch = "4.1.4"; + sha256 = "01w44ygm5bvc243hlhfnvb2lxfb0blz2cxnphxqgw30vj3c1prx7"; + patches = [(fetchpatch { # remove on update + name = "fix-hardcoded-tables.diff"; + url = "http://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff_plain/c8232e50074f"; + sha256 = "0jlksks4fjajby8fjk7rfp414gxfdgd6q9khq26i52xvf4kg2dw6"; + })]; darwinFrameworks = [ Cocoa CoreMedia VideoToolbox ]; }) From 615b4a94444673f5c2b1f2df9fe9a9b9c3eeec9d Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Mon, 29 Jul 2019 17:20:14 -0400 Subject: [PATCH 1268/1611] nvidia_x11_legacy390: 390.116 -> 390.129 --- pkgs/os-specific/linux/nvidia-x11/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index 3a80f4aa1de..bff2214e4bd 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -30,21 +30,23 @@ rec { # Last one supporting x86 legacy_390 = generic { - version = "390.116"; - sha256_32bit = "0aavzi99ps7r6nrchf4h9gw3fkvm2z6wppkqkz5fwcy7x03ky4qk"; - sha256_64bit = "106qc62a7m9imchqfq8rfn8fwyrjxg383354q7z2wr8112fyhyg1"; - settingsSha256 = "0n4pj8dzkr7ccwrn5p46mn59cnijdhg8zmn3idjzrk56pq0hbgjr"; - persistencedSha256 = "0bnjr0smhlwlqpyg9m6lca3b7brl2mw8aypc6p7525dn9d9kv6kb"; + version = "390.129"; + sha256_32bit = "0dkgkp0zx40hf1fsq5xnvbschp7r3c1x1pnpdxna24pi4s62cm2q"; + sha256_64bit = "0h0jcckqpd63vaj95lvdgj2sbbn9y1ri1xx7r2snxfx0plhwz46n"; + settingsSha256 = "1w5nkxs7a40mq0qf97nhfazdqhfn1bvr54v50s8p0ggixb6vdm3l"; + persistencedSha256 = "02v76202qcnh8hvg4y9wmk9swdlv7z39ppfd1c850nlv158vn5nf"; patches = [ (fetchurl { url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-4.16.patch?h=2ad07241ea525a6b6b555b6cb96a97634a4b2cb0"; sha256 = "11b3dp0na496rn13v5q4k66bf61174800g36rcwj42r0xj9cfak2"; }) + (fetchurl { url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-5.1.patch?h=42d50ef8d6048608d18bdf2c296dd335260c5a1a"; sha256 = "03v46ym2bcckg9q2xrilkg21hfiwypr6gl4jmly2q3m4yza9ja6r"; - })]; + }) + ]; }; legacy_340 = generic { From e4473e94d45628e7a825616ad366a950411254c8 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Mon, 29 Jul 2019 17:20:29 -0400 Subject: [PATCH 1269/1611] nvidia_x11: 430.34 -> 430.40 --- pkgs/os-specific/linux/nvidia-x11/default.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index bff2214e4bd..82ac359158b 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -22,10 +22,10 @@ rec { beta = stable; stable_430 = generic { - version = "430.34"; - sha256_64bit = "0c3x25gilibbgazvp20d5sfmmgcf0gfqf024nzzqryxg4m05h39b"; - settingsSha256 = "1xpf9gbpq5xynxm6f401ab09aa243h1sk2vcxvzjwqgcil36zzad"; - persistencedSha256 = "00dd0m87nwqfv9i23bvbqgcz10x9mvfxg9249nvhp4y3ha65rms6"; + version = "430.40"; + sha256_64bit = "1myzhy1mf27dcx0admm3pbbkfdd9p66lw0cq2mz1nwds92gqj07p"; + settingsSha256 = "0rg9dxg02pnpi0a1yi3a41wn6kmlk0dm6dvfbazyqi4gbzr12qrl"; + persistencedSha256 = "0findlrs5v1m7gl0vxkpd04lh54pib80w5vp4j77qb5snhgvckhq"; }; # Last one supporting x86 @@ -37,14 +37,14 @@ rec { persistencedSha256 = "02v76202qcnh8hvg4y9wmk9swdlv7z39ppfd1c850nlv158vn5nf"; patches = [ - (fetchurl { - url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-4.16.patch?h=2ad07241ea525a6b6b555b6cb96a97634a4b2cb0"; - sha256 = "11b3dp0na496rn13v5q4k66bf61174800g36rcwj42r0xj9cfak2"; - }) + (fetchurl { + url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-4.16.patch?h=2ad07241ea525a6b6b555b6cb96a97634a4b2cb0"; + sha256 = "11b3dp0na496rn13v5q4k66bf61174800g36rcwj42r0xj9cfak2"; + }) - (fetchurl { - url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-5.1.patch?h=42d50ef8d6048608d18bdf2c296dd335260c5a1a"; - sha256 = "03v46ym2bcckg9q2xrilkg21hfiwypr6gl4jmly2q3m4yza9ja6r"; + (fetchurl { + url = "https://git.archlinux.org/svntogit/packages.git/plain/trunk/kernel-5.1.patch?h=42d50ef8d6048608d18bdf2c296dd335260c5a1a"; + sha256 = "03v46ym2bcckg9q2xrilkg21hfiwypr6gl4jmly2q3m4yza9ja6r"; }) ]; }; From 1d102b90e6516c496a5d2285d6af71c64413d345 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 30 Jul 2019 16:57:46 +0200 Subject: [PATCH 1270/1611] tdesktopPackages.*: Remove the attributes in favour of tdesktop This is a refactoring of "tdesktop", i.e. the resulting derivation isn't affected by this commit (only the tdesktopPackages.* attributes are removed). I decided to remove the attributes "tdesktopPackages.*" as I don't maintain the preview version anymore. There are regular stable releases and we depend on the patches from Arch Linux which only track the stable version as well, i.e. I would have to maintain our own patches, which would either require an additional repository or "bloat" Nixpkgs (apart from the fact that it would be unnecessarily time-consuming). --- .../telegram/tdesktop/default.nix | 169 ++++++++++++++++-- .../telegram/tdesktop/generic.nix | 161 ----------------- pkgs/top-level/all-packages.nix | 10 +- 3 files changed, 163 insertions(+), 177 deletions(-) delete mode 100644 pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index 3e529481508..13c03b41909 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -1,18 +1,159 @@ -{ qt5 }: +{ mkDerivation, lib, fetchFromGitHub, fetchsvn +, pkgconfig, pythonPackages, cmake, wrapGAppsHook, wrapQtAppsHook, gcc8 +, qtbase, qtimageformats, gtk3, libappindicator-gtk3, libnotify, xdg_utils +, dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3 +}: -let - mkTelegram = args: qt5.callPackage (import ./generic.nix args) { }; - stableVersion = { - stable = true; - version = "1.7.14"; - sha256Hash = "1bw804a9kffmn23wv0570wihbvfm7jy9cqmxlv196f4j7bw7zkv3"; +with lib; + +mkDerivation rec { + name = "telegram-desktop-${version}"; + version = "1.7.14"; + + # Telegram-Desktop with submodules + src = fetchFromGitHub { + owner = "telegramdesktop"; + repo = "tdesktop"; + rev = "v${version}"; + sha256 = "1bw804a9kffmn23wv0570wihbvfm7jy9cqmxlv196f4j7bw7zkv3"; + fetchSubmodules = true; + }; + + # Arch patches (svn export telegram-desktop/trunk) + archPatches = fetchsvn { + url = "svn://svn.archlinux.org/community/telegram-desktop/trunk"; # svn log svn://svn.archlinux.org/community/telegram-desktop/trunk - archPatchesRevision = "487779"; - archPatchesHash = "0f09hvimb66xqksb2v0zc4ryshx7y7z0rafzjd99x37rpib9f3kq"; + rev = "487779"; + sha256 = "0f09hvimb66xqksb2v0zc4ryshx7y7z0rafzjd99x37rpib9f3kq"; + }; + + patches = [ + "${archPatches}/tdesktop.patch" + "${archPatches}/no-gtk2.patch" + # "${archPatches}/Use-system-wide-font.patch" + "${archPatches}/tdesktop_lottie_animation_qtdebug.patch" + "${archPatches}/issue6219.patch" + ]; + + postPatch = '' + substituteInPlace Telegram/SourceFiles/platform/linux/linux_libs.cpp \ + --replace '"appindicator3"' '"${libappindicator-gtk3}/lib/libappindicator3.so"' + substituteInPlace Telegram/SourceFiles/platform/linux/linux_libnotify.cpp \ + --replace '"notify"' '"${libnotify}/lib/libnotify.so"' + ''; + + nativeBuildInputs = [ pkgconfig pythonPackages.gyp cmake wrapGAppsHook wrapQtAppsHook gcc8 ]; + + # We want to run wrapProgram manually (with additional parameters) + dontWrapGApps = true; + dontWrapQtApps = true; + + buildInputs = [ + qtbase qtimageformats gtk3 libappindicator-gtk3 + dee ffmpeg openalSoft minizip libopus alsaLib libpulseaudio range-v3 + ]; + + enableParallelBuilding = true; + + GYP_DEFINES = concatStringsSep "," [ + "TDESKTOP_DISABLE_CRASH_REPORTS" + "TDESKTOP_DISABLE_AUTOUPDATE" + "TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME" + ]; + + NIX_CFLAGS_COMPILE = [ + "-DTDESKTOP_DISABLE_CRASH_REPORTS" + "-DTDESKTOP_DISABLE_AUTOUPDATE" + "-DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME" + "-I${minizip}/include/minizip" + # See Telegram/gyp/qt.gypi + "-I${getDev qtbase}/mkspecs/linux-g++" + ] ++ concatMap (x: [ + "-I${getDev qtbase}/include/${x}" + "-I${getDev qtbase}/include/${x}/${qtbase.version}" + "-I${getDev qtbase}/include/${x}/${qtbase.version}/${x}" + "-I${getDev libopus}/include/opus" + "-I${getDev alsaLib}/include/alsa" + "-I${getDev libpulseaudio}/include/pulse" + ]) [ "QtCore" "QtGui" "QtDBus" ]; + CPPFLAGS = NIX_CFLAGS_COMPILE; + + preConfigure = '' + patch -R -Np1 -i "${archPatches}/demibold.patch" + + pushd "Telegram/ThirdParty/libtgvoip" + patch -Np1 -i "${archPatches}/libtgvoip.patch" + popd + + # disable static-qt for rlottie + sed "/RLOTTIE_WITH_STATIC_QT/d" -i "Telegram/gyp/lib_rlottie.gyp" + + sed -i Telegram/gyp/telegram_linux.gypi \ + -e 's,/usr,/does-not-exist,g' \ + -e 's,appindicator-0.1,appindicator3-0.1,g' \ + -e 's,-flto,,g' + + sed -i Telegram/gyp/qt.gypi \ + -e "s,/usr/include/qt/QtCore/,${qtbase.dev}/include/QtCore/,g" \ + -e 's,\d+",\d+" | head -n1,g' + sed -i Telegram/gyp/qt_moc.gypi \ + -e "s,/usr/bin/moc,moc,g" + sed -i Telegram/gyp/qt_rcc.gypi \ + -e "s,/usr/bin/rcc,rcc,g" + + # Build system assumes x86, but it works fine on non-x86 if we patch this one flag out + sed -i Telegram/ThirdParty/libtgvoip/libtgvoip.gyp \ + -e "/-msse2/d" + + gyp \ + -Dapi_id=17349 \ + -Dapi_hash=344583e45741c457fe1862106095a5eb \ + -Dbuild_defines=${GYP_DEFINES} \ + -Gconfig=Release \ + --depth=Telegram/gyp \ + --generator-output=../.. \ + -Goutput_dir=out \ + --format=cmake \ + Telegram/gyp/Telegram.gyp + + cd out/Release + + NUM=$((`wc -l < CMakeLists.txt` - 2)) + sed -i "$NUM r $archPatches/CMakeLists.inj" CMakeLists.txt + + export ASM=$(type -p gcc) + ''; + + cmakeFlags = [ "-UTDESKTOP_OFFICIAL_TARGET" ]; + + installPhase = '' + install -Dm755 Telegram $out/bin/telegram-desktop + + mkdir -p $out/share/applications $out/share/kde4/services + install -m444 "$src/lib/xdg/telegramdesktop.desktop" "$out/share/applications/telegram-desktop.desktop" + sed "s,/usr/bin,$out/bin,g" $archPatches/tg.protocol > $out/share/kde4/services/tg.protocol + for icon_size in 16 32 48 64 128 256 512; do + install -Dm644 "../../../Telegram/Resources/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram.png" + done + ''; + + postFixup = '' + # This is necessary to run Telegram in a pure environment. + # We also use gappsWrapperArgs from wrapGAppsHook. + wrapProgram $out/bin/telegram-desktop \ + "''${gappsWrapperArgs[@]}" \ + "''${qtWrapperArgs[@]}" \ + --prefix PATH : ${xdg_utils}/bin \ + --set XDG_RUNTIME_DIR "XDG-RUNTIME-DIR" + sed -i $out/bin/telegram-desktop \ + -e "s,'XDG-RUNTIME-DIR',\"\''${XDG_RUNTIME_DIR:-/run/user/\$(id --user)}\"," + ''; + + meta = { + description = "Telegram Desktop messaging app"; + license = licenses.gpl3; + platforms = platforms.linux; + homepage = https://desktop.telegram.org/; + maintainers = with maintainers; [ primeos abbradar ]; }; -in { - stable = mkTelegram stableVersion; - preview = mkTelegram (stableVersion // { - stable = false; - }); } diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix deleted file mode 100644 index ab5f6c154df..00000000000 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/generic.nix +++ /dev/null @@ -1,161 +0,0 @@ -{ stable, version, sha256Hash, archPatchesRevision, archPatchesHash }: - -{ mkDerivation, lib, fetchFromGitHub, fetchsvn -, pkgconfig, pythonPackages, cmake, wrapGAppsHook, wrapQtAppsHook, gcc8 -, qtbase, qtimageformats, gtk3, libappindicator-gtk3, libnotify, xdg_utils -, dee, ffmpeg, openalSoft, minizip, libopus, alsaLib, libpulseaudio, range-v3 -}: - -with lib; - -mkDerivation rec { - name = "telegram-desktop-${version}"; - inherit version; - - # Telegram-Desktop with submodules - src = fetchFromGitHub { - owner = "telegramdesktop"; - repo = "tdesktop"; - rev = "v${version}"; - sha256 = sha256Hash; - fetchSubmodules = true; - }; - - # Arch patches (svn export telegram-desktop/trunk) - archPatches = fetchsvn { - url = "svn://svn.archlinux.org/community/telegram-desktop/trunk"; - rev = archPatchesRevision; - sha256 = archPatchesHash; - }; - - patches = [ - "${archPatches}/tdesktop.patch" - "${archPatches}/no-gtk2.patch" - # "${archPatches}/Use-system-wide-font.patch" - "${archPatches}/tdesktop_lottie_animation_qtdebug.patch" - "${archPatches}/issue6219.patch" - ]; - - postPatch = '' - substituteInPlace Telegram/SourceFiles/platform/linux/linux_libs.cpp \ - --replace '"appindicator3"' '"${libappindicator-gtk3}/lib/libappindicator3.so"' - substituteInPlace Telegram/SourceFiles/platform/linux/linux_libnotify.cpp \ - --replace '"notify"' '"${libnotify}/lib/libnotify.so"' - ''; - - nativeBuildInputs = [ pkgconfig pythonPackages.gyp cmake wrapGAppsHook wrapQtAppsHook gcc8 ]; - - # We want to run wrapProgram manually (with additional parameters) - dontWrapGApps = true; - - buildInputs = [ - qtbase qtimageformats gtk3 libappindicator-gtk3 - dee ffmpeg openalSoft minizip libopus alsaLib libpulseaudio range-v3 - ]; - - enableParallelBuilding = true; - - GYP_DEFINES = concatStringsSep "," [ - "TDESKTOP_DISABLE_CRASH_REPORTS" - "TDESKTOP_DISABLE_AUTOUPDATE" - "TDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME" - ]; - - NIX_CFLAGS_COMPILE = [ - "-DTDESKTOP_DISABLE_CRASH_REPORTS" - "-DTDESKTOP_DISABLE_AUTOUPDATE" - "-DTDESKTOP_DISABLE_REGISTER_CUSTOM_SCHEME" - "-I${minizip}/include/minizip" - # See Telegram/gyp/qt.gypi - "-I${getDev qtbase}/mkspecs/linux-g++" - ] ++ concatMap (x: [ - "-I${getDev qtbase}/include/${x}" - "-I${getDev qtbase}/include/${x}/${qtbase.version}" - "-I${getDev qtbase}/include/${x}/${qtbase.version}/${x}" - "-I${getDev libopus}/include/opus" - "-I${getDev alsaLib}/include/alsa" - "-I${getDev libpulseaudio}/include/pulse" - ]) [ "QtCore" "QtGui" "QtDBus" ]; - CPPFLAGS = NIX_CFLAGS_COMPILE; - - preConfigure = '' - patch -R -Np1 -i "${archPatches}/demibold.patch" - - pushd "Telegram/ThirdParty/libtgvoip" - patch -Np1 -i "${archPatches}/libtgvoip.patch" - popd - - # disable static-qt for rlottie - sed "/RLOTTIE_WITH_STATIC_QT/d" -i "Telegram/gyp/lib_rlottie.gyp" - - sed -i Telegram/gyp/telegram_linux.gypi \ - -e 's,/usr,/does-not-exist,g' \ - -e 's,appindicator-0.1,appindicator3-0.1,g' \ - -e 's,-flto,,g' - - sed -i Telegram/gyp/qt.gypi \ - -e "s,/usr/include/qt/QtCore/,${qtbase.dev}/include/QtCore/,g" \ - -e 's,\d+",\d+" | head -n1,g' - sed -i Telegram/gyp/qt_moc.gypi \ - -e "s,/usr/bin/moc,moc,g" - sed -i Telegram/gyp/qt_rcc.gypi \ - -e "s,/usr/bin/rcc,rcc,g" - - # Build system assumes x86, but it works fine on non-x86 if we patch this one flag out - sed -i Telegram/ThirdParty/libtgvoip/libtgvoip.gyp \ - -e "/-msse2/d" - - gyp \ - -Dapi_id=17349 \ - -Dapi_hash=344583e45741c457fe1862106095a5eb \ - -Dbuild_defines=${GYP_DEFINES} \ - -Gconfig=Release \ - --depth=Telegram/gyp \ - --generator-output=../.. \ - -Goutput_dir=out \ - --format=cmake \ - Telegram/gyp/Telegram.gyp - - cd out/Release - - NUM=$((`wc -l < CMakeLists.txt` - 2)) - sed -i "$NUM r $archPatches/CMakeLists.inj" CMakeLists.txt - - export ASM=$(type -p gcc) - ''; - - cmakeFlags = [ "-UTDESKTOP_OFFICIAL_TARGET" ]; - - installPhase = '' - install -Dm755 Telegram $out/bin/telegram-desktop - - mkdir -p $out/share/applications $out/share/kde4/services - install -m444 "$src/lib/xdg/telegramdesktop.desktop" "$out/share/applications/telegram-desktop.desktop" - sed "s,/usr/bin,$out/bin,g" $archPatches/tg.protocol > $out/share/kde4/services/tg.protocol - for icon_size in 16 32 48 64 128 256 512; do - install -Dm644 "../../../Telegram/Resources/art/icon''${icon_size}.png" "$out/share/icons/hicolor/''${icon_size}x''${icon_size}/apps/telegram.png" - done - ''; - - dontWrapQtApps = true; - postFixup = '' - # This is necessary to run Telegram in a pure environment. - # We also use gappsWrapperArgs from wrapGAppsHook. - wrapProgram $out/bin/telegram-desktop \ - "''${gappsWrapperArgs[@]}" \ - "''${qtWrapperArgs[@]}" \ - --prefix PATH : ${xdg_utils}/bin \ - --set XDG_RUNTIME_DIR "XDG-RUNTIME-DIR" - sed -i $out/bin/telegram-desktop \ - -e "s,'XDG-RUNTIME-DIR',\"\''${XDG_RUNTIME_DIR:-/run/user/\$(id --user)}\"," - ''; - - meta = { - description = "Telegram Desktop messaging app " - + (if stable then "(stable version)" else "(pre-release)"); - license = licenses.gpl3; - platforms = platforms.linux; - homepage = https://desktop.telegram.org/; - maintainers = with maintainers; [ primeos abbradar ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b322520c28e..f91d7e8fbb8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -20597,8 +20597,14 @@ in taskopen = callPackage ../applications/misc/taskopen { }; - tdesktopPackages = dontRecurseIntoAttrs (callPackage ../applications/networking/instant-messengers/telegram/tdesktop { }); - tdesktop = tdesktopPackages.stable; + # TODO (@primeos): Remove after the 19.09 branch-off: + tdesktopPackages = throw '' + The attributes "tdesktopPackages.*" where removed as the preview version + will not be maintained anymore (there are regular stable releases and we + depend on the patches from Arch Linux which only track the stable version + as well). Please switch to "tdesktop" (stable version). + ''; + tdesktop = qt5.callPackage ../applications/networking/instant-messengers/telegram/tdesktop { }; telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli { }; From c75b84a7c468f91e2aaeb949eea0cfb6d3d35eef Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 23 Jul 2019 19:26:00 +0000 Subject: [PATCH 1271/1611] dune: disable for OCaml < 4.02 --- pkgs/development/tools/ocaml/dune/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/tools/ocaml/dune/default.nix b/pkgs/development/tools/ocaml/dune/default.nix index 50d2349a0ac..61637027386 100644 --- a/pkgs/development/tools/ocaml/dune/default.nix +++ b/pkgs/development/tools/ocaml/dune/default.nix @@ -1,5 +1,9 @@ { stdenv, fetchurl, ocaml, findlib, opaline }: +if !stdenv.lib.versionAtLeast ocaml.version "4.02" +then throw "dune is not available for OCaml ${ocaml.version}" +else + stdenv.mkDerivation rec { pname = "dune"; version = "1.11.0"; From ca3f1c20d7fb0847fbcc8e9eb9c6436efbf9f62a Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 23 Jul 2019 19:26:54 +0000 Subject: [PATCH 1272/1611] ocamlPackages.toml: init at 5.0.0 --- .../ocaml-modules/toml/default.nix | 24 +++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/ocaml-modules/toml/default.nix diff --git a/pkgs/development/ocaml-modules/toml/default.nix b/pkgs/development/ocaml-modules/toml/default.nix new file mode 100644 index 00000000000..0e25d9bc6b6 --- /dev/null +++ b/pkgs/development/ocaml-modules/toml/default.nix @@ -0,0 +1,24 @@ +{ lib, fetchFromGitHub, buildDunePackage +, iso8601, menhir +}: + +buildDunePackage rec { + pname = "toml"; + version = "5.0.0"; + src = fetchFromGitHub { + owner = "ocaml-toml"; + repo = "to.ml"; + rev = "v${version}"; + sha256 = "1505kwcwklcfaxw8wckajm8kc6yrlikmxyhi8f8cpvhlw9ys90nj"; + }; + + buildInputs = [ menhir ]; + propagatedBuildInputs = [ iso8601 ]; + + meta = { + description = "Implementation in OCaml of the Toml minimal langage"; + homepage = "http://ocaml-toml.github.io/To.ml"; + license = lib.licenses.lgpl3; + maintainers = [ lib.maintainers.vbgl ]; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 3b807c932f0..949c5b6a308 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -719,6 +719,8 @@ let stringext = callPackage ../development/ocaml-modules/stringext { }; + toml = callPackage ../development/ocaml-modules/toml { }; + topkg = callPackage ../development/ocaml-modules/topkg { }; tsdl = callPackage ../development/ocaml-modules/tsdl { }; From 8c975f2f38c0767e82b00a1874ce822b237dd142 Mon Sep 17 00:00:00 2001 From: Daniel Fullmer Date: Tue, 30 Jul 2019 13:19:15 -0400 Subject: [PATCH 1273/1611] zerotierone: 1.2.12 -> 1.4.0 --- pkgs/tools/networking/zerotierone/default.nix | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix index 2853c595e43..76a2dbd8850 100644 --- a/pkgs/tools/networking/zerotierone/default.nix +++ b/pkgs/tools/networking/zerotierone/default.nix @@ -1,12 +1,14 @@ -{ stdenv, fetchurl, openssl, lzo, zlib, iproute, which, ronn }: +{ stdenv, fetchFromGitHub, openssl, lzo, zlib, iproute, which, ronn }: stdenv.mkDerivation rec { - version = "1.2.12"; - name = "zerotierone-${version}"; + pname = "zerotierone"; + version = "1.4.0"; - src = fetchurl { - url = "https://github.com/zerotier/ZeroTierOne/archive/${version}.tar.gz"; - sha256 = "1m7ynrgzpg2sp37hcmjkx6w173icfhakzn1c1zrdzrxmmszrj9r1"; + src = fetchFromGitHub { + owner = "zerotier"; + repo = "ZeroTierOne"; + rev = version; + sha256 = "14iwhlxmxsnvnm9rrp6rysiz461w0v5nsmnz5p91rfi351103a63"; }; preConfigure = '' @@ -16,9 +18,6 @@ stdenv.mkDerivation rec { substituteInPlace ./osdep/ManagedRoute.cpp \ --replace '/sbin/ip' '${iproute}/bin/ip' - substituteInPlace ./osdep/LinuxEthernetTap.cpp \ - --replace 'execlp("ip",' 'execlp("${iproute}/bin/ip",' - patchShebangs ./doc/build.sh substituteInPlace ./doc/build.sh \ --replace '/usr/bin/ronn' '${ronn}/bin/ronn' \ From b22a75bf006a7c00f33d891ab4fb9049b0c591b8 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Mon, 29 Jul 2019 20:06:41 +0200 Subject: [PATCH 1274/1611] prometheus-mail-exporter: init at 2019-07-14 --- .../monitoring/prometheus/mail-exporter.nix | 30 ++++++ .../prometheus/mail-exporter_deps.nix | 92 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 3 files changed, 123 insertions(+) create mode 100644 pkgs/servers/monitoring/prometheus/mail-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/mail-exporter_deps.nix diff --git a/pkgs/servers/monitoring/prometheus/mail-exporter.nix b/pkgs/servers/monitoring/prometheus/mail-exporter.nix new file mode 100644 index 00000000000..129c2b33372 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mail-exporter.nix @@ -0,0 +1,30 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "mailexporter-${version}"; + version = "2019-07-14"; + + goPackagePath = "github.com/cherti/mailexporter"; + + src = fetchFromGitHub { + rev = "c60d1970abbedb15e70d6fc858f7fd76fa061ffe"; + owner = "cherti"; + repo = "mailexporter"; + sha256 = "0wlw7jvmhgvg1r2bsifxm2d0vj0iqhplnx6n446625sslvddx3vn"; + }; + + goDeps = ./mail-exporter_deps.nix; + + postInstall = '' + install -D -m 0444 -t $bin/share/man/man1 $src/man/mailexporter.1 + install -D -m 0444 -t $bin/share/man/man5 $src/man/mailexporter.conf.5 + ''; + + meta = with stdenv.lib; { + description = "Export Prometheus-style metrics about mail server functionality"; + homepage = "https://github.com/cherti/mailexporter"; + license = licenses.gpl3; + maintainers = with maintainers; [ willibutz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/mail-exporter_deps.nix b/pkgs/servers/monitoring/prometheus/mail-exporter_deps.nix new file mode 100644 index 00000000000..221f179940b --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mail-exporter_deps.nix @@ -0,0 +1,92 @@ +[ + { + goPackagePath = "github.com/beorn7/perks"; + fetch = { + type = "git"; + url = "https://github.com/beorn7/perks"; + rev = "4b2b341e8d7715fae06375aa633dbb6e91b3fb46"; + sha256 = "1i1nz1f6g55xi2y3aiaz5kqfgvknarbfl4f0sx4nyyb4s7xb1z9x"; + }; + } + { + goPackagePath = "github.com/golang/protobuf"; + fetch = { + type = "git"; + url = "https://github.com/golang/protobuf"; + rev = "6c65a5562fc06764971b7c5d05c76c75e84bdbf7"; + sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym"; + }; + } + { + goPackagePath = "github.com/matttproud/golang_protobuf_extensions"; + fetch = { + type = "git"; + url = "https://github.com/matttproud/golang_protobuf_extensions"; + rev = "c182affec369e30f25d3eb8cd8a478dee585ae7d"; + sha256 = "1xqsf9vpcrd4hp95rl6kgmjvkv1df4aicfw4l5vfcxcwxknfx2xs"; + }; + } + { + goPackagePath = "github.com/prometheus/client_golang"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_golang"; + rev = "a6c69798cccecfd43070693e4416838767f73e18"; + sha256 = "0s6xprvkdyfvmx4540454972fn3gvrzy7fyv0yq42h32nw3l7p75"; + }; + } + { + goPackagePath = "github.com/prometheus/client_model"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/client_model"; + rev = "fd36f4220a901265f90734c3183c5f0c91daa0b8"; + sha256 = "1bs5d72k361llflgl94c22n0w53j30rsfh84smgk8mbjbcmjsaa5"; + }; + } + { + goPackagePath = "github.com/prometheus/common"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/common"; + rev = "31bed53e4047fd6c510e43a941f90cb31be0972a"; + sha256 = "1q16br348117ffycxdwsldb0i39p34miclfa8z93k6vjwnrqbh2l"; + }; + } + { + goPackagePath = "github.com/prometheus/procfs"; + fetch = { + type = "git"; + url = "https://github.com/prometheus/procfs"; + rev = "8f55e607908ea781ad9d08521730d73e047d9ac4"; + sha256 = "023581b68mz89yhgnk4w08ch05ix60v0hv9jlqz65w43s4j7g4vb"; + }; + } + { + goPackagePath = "golang.org/x/sys"; + fetch = { + type = "git"; + url = "https://go.googlesource.com/sys"; + rev = "04f50cda93cbb67f2afa353c52f342100e80e625"; + sha256 = "0hmfsz9y1ingwsn482hlzzmzs7kr3cklm0ana0mbdk70isw2bxnw"; + }; + } + { + goPackagePath = "gopkg.in/fsnotify.v1"; + fetch = { + type = "git"; + url = "https://gopkg.in/fsnotify.v1"; + rev = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9"; + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; + }; + } + { + goPackagePath = "gopkg.in/yaml.v2"; + fetch = { + type = "git"; + url = "https://gopkg.in/yaml.v2"; + rev = "51d6538a90f86fe93ac480b35f37b2be17fef232"; + sha256 = "01wj12jzsdqlnidpyjssmj0r4yavlqy7dwrg7adqd8dicjc4ncsa"; + }; + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f91d7e8fbb8..3bd0d214432 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14787,6 +14787,7 @@ in prometheus-fritzbox-exporter = callPackage ../servers/monitoring/prometheus/fritzbox-exporter.nix { }; prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; prometheus-json-exporter = callPackage ../servers/monitoring/prometheus/json-exporter.nix { }; + prometheus-mail-exporter = callPackage ../servers/monitoring/prometheus/mail-exporter.nix { }; prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; prometheus-minio-exporter = callPackage ../servers/monitoring/prometheus/minio-exporter { }; prometheus-mysqld-exporter = callPackage ../servers/monitoring/prometheus/mysqld-exporter.nix { }; From 5818c73d95f6406dc027a31ff10dae5b88d09e32 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Tue, 30 Jul 2019 00:34:45 +0200 Subject: [PATCH 1275/1611] nixos/prometheus-exporters: add mail exporter module --- .../monitoring/prometheus/exporters.nix | 11 +- .../monitoring/prometheus/exporters/mail.nix | 156 ++++++++++++++++++ 2 files changed, 165 insertions(+), 2 deletions(-) create mode 100644 nixos/modules/services/monitoring/prometheus/exporters/mail.nix diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 802281e7164..03f3da75b14 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -28,6 +28,7 @@ let "dovecot" "fritzbox" "json" + "mail" "minio" "nginx" "node" @@ -162,13 +163,19 @@ in }; config = mkMerge ([{ - assertions = [{ + assertions = [ { assertion = (cfg.snmp.configurationPath == null) != (cfg.snmp.configuration == null); message = '' Please ensure you have either `services.prometheus.exporters.snmp.configuration' or `services.prometheus.exporters.snmp.configurationPath' set! ''; - }]; + } { + assertion = (cfg.mail.configFile == null) != (cfg.mail.configuration == {}); + message = '' + Please specify either 'services.prometheus.exporters.mail.configuration' + or 'services.prometheus.exporters.mail.configFile'. + ''; + } ]; }] ++ [(mkIf config.services.minio.enable { services.prometheus.exporters.minio.minioAddress = mkDefault "http://localhost:9000"; services.prometheus.exporters.minio.minioAccessKey = mkDefault config.services.minio.accessKey; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/mail.nix b/nixos/modules/services/monitoring/prometheus/exporters/mail.nix new file mode 100644 index 00000000000..a1b46140d3e --- /dev/null +++ b/nixos/modules/services/monitoring/prometheus/exporters/mail.nix @@ -0,0 +1,156 @@ +{ config, lib, pkgs, options }: + +with lib; + +let + cfg = config.services.prometheus.exporters.mail; + + configurationFile = pkgs.writeText "prometheus-mail-exporter.conf" (builtins.toJSON ( + # removes the _module attribute, null values and converts attrNames to lowercase + mapAttrs' (name: value: + if name == "servers" + then nameValuePair (toLower name) + ((map (srv: (mapAttrs' (n: v: nameValuePair (toLower n) v) + (filterAttrs (n: v: !(n == "_module" || v == null)) srv) + ))) value) + else nameValuePair (toLower name) value + ) (filterAttrs (n: _: !(n == "_module")) cfg.configuration) + )); + + serverOptions.options = { + name = mkOption { + type = types.str; + description = '' + Value for label 'configname' which will be added to all metrics. + ''; + }; + server = mkOption { + type = types.str; + description = '' + Hostname of the server that should be probed. + ''; + }; + port = mkOption { + type = types.int; + example = 587; + description = '' + Port to use for SMTP. + ''; + }; + from = mkOption { + type = types.str; + example = "exporteruser@domain.tld"; + description = '' + Content of 'From' Header for probing mails. + ''; + }; + to = mkOption { + type = types.str; + example = "exporteruser@domain.tld"; + description = '' + Content of 'To' Header for probing mails. + ''; + }; + detectionDir = mkOption { + type = types.path; + example = "/var/spool/mail/exporteruser/new"; + description = '' + Directory in which new mails for the exporter user are placed. + Note that this needs to exist when the exporter starts. + ''; + }; + login = mkOption { + type = types.nullOr types.str; + default = null; + example = "exporteruser@domain.tld"; + description = '' + Username to use for SMTP authentication. + ''; + }; + passphrase = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Password to use for SMTP authentication. + ''; + }; + }; + + exporterOptions.options = { + monitoringInterval = mkOption { + type = types.str; + example = "10s"; + description = '' + Time interval between two probe attempts. + ''; + }; + mailCheckTimeout = mkOption { + type = types.str; + description = '' + Timeout until mails are considered "didn't make it". + ''; + }; + disableFileDelition = mkOption { + type = types.bool; + default = false; + description = '' + Disables the exporter's function to delete probing mails. + ''; + }; + servers = mkOption { + type = types.listOf (types.submodule serverOptions); + default = []; + example = literalExample '' + [ { + name = "testserver"; + server = "smtp.domain.tld"; + port = 587; + from = "exporteruser@domain.tld"; + to = "exporteruser@domain.tld"; + detectionDir = "/path/to/Maildir/new"; + } ] + ''; + description = '' + List of servers that should be probed. + ''; + }; + }; +in +{ + port = 9225; + extraOpts = { + configFile = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + Specify the mailexporter configuration file to use. + ''; + }; + configuration = mkOption { + type = types.submodule exporterOptions; + default = {}; + description = '' + Specify the mailexporter configuration file to use. + ''; + }; + telemetryPath = mkOption { + type = types.str; + default = "/metrics"; + description = '' + Path under which to expose metrics. + ''; + }; + }; + serviceOpts = { + serviceConfig = { + ExecStart = '' + ${pkgs.prometheus-mail-exporter}/bin/mailexporter \ + --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ + --config.file ${ + if cfg.configuration != {} then configurationFile else cfg.configFile + } \ + ${concatStringsSep " \\\n " cfg.extraFlags} + ''; + }; + }; +} From 8760c695d4e1e98d53cdf410f0f509fa62f4fd41 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 30 Jul 2019 19:08:05 +0200 Subject: [PATCH 1276/1611] swiften, pypy: Mark as broken swiften is broken since 2018-10-18: x86_64-linux: https://hydra.nixos.org/build/97180305 aarch64-linux: https://hydra.nixos.org/build/97193043 pypy is broken since 2019-05-29: x86_64-linux (pypy): https://hydra.nixos.org/build/97214777 x86_64-linux (pypy3): https://hydra.nixos.org/build/97221287 The builds for swiften and reposurgeon (depends on pypy) regularly fail during rebuilds for SCons updates (e.g. [0]). [0]: https://github.com/NixOS/nixpkgs/pull/65392 --- pkgs/development/interpreters/python/pypy/default.nix | 1 + pkgs/development/libraries/swiften/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/pkgs/development/interpreters/python/pypy/default.nix b/pkgs/development/interpreters/python/pypy/default.nix index 705ddb2a6f5..db7e51a51f3 100644 --- a/pkgs/development/interpreters/python/pypy/default.nix +++ b/pkgs/development/interpreters/python/pypy/default.nix @@ -151,5 +151,6 @@ in with passthru; stdenv.mkDerivation rec { license = licenses.mit; platforms = [ "i686-linux" "x86_64-linux" ]; maintainers = with maintainers; [ andersk ]; + broken = true; # TODO: Tests are failing! }; } diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix index c83f5b0f5ac..5221ef9418f 100644 --- a/pkgs/development/libraries/swiften/default.nix +++ b/pkgs/development/libraries/swiften/default.nix @@ -29,5 +29,6 @@ stdenv.mkDerivation rec { license = licenses.gpl2Plus; platforms = platforms.linux; maintainers = [ maintainers.twey ]; + broken = true; # TODO: Build is failing! }; } From deedad80c7a32ee837a23929396501dcee15fa29 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Tue, 30 Jul 2019 00:43:34 +0200 Subject: [PATCH 1277/1611] nixos/tests/prometheus-exporters: add mail exporter --- nixos/tests/prometheus-exporters.nix | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index 2286d70be28..533054a4686 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -188,6 +188,48 @@ let ''; }; + mail = { + exporterConfig = { + enable = true; + user = "mailexporter"; + configuration = { + monitoringInterval = "2s"; + mailCheckTimeout = "10s"; + servers = [ { + name = "testserver"; + server = "localhost"; + port = 25; + from = "mailexporter@localhost"; + to = "mailexporter@localhost"; + detectionDir = "/var/spool/mail/mailexporter/new"; + } ]; + }; + }; + metricProvider = { + services.postfix.enable = true; + systemd.services.prometheus-mail-exporter = { + after = [ "postfix.service" ]; + requires = [ "postfix.service" ]; + preStart = '' + mkdir -p 0600 mailexporter/new + ''; + serviceConfig = { + ProtectHome = true; + ReadOnlyPaths = "/"; + ReadWritePaths = "/var/spool/mail"; + WorkingDirectory = "/var/spool/mail"; + }; + }; + users.users.mailexporter.isSystemUser = true; + }; + exporterTest = '' + waitForUnit("postfix.service") + waitForUnit("prometheus-mail-exporter.service") + waitForOpenPort(9225) + waitUntilSucceeds("curl -sSf http://localhost:9225/metrics | grep -q 'mail_deliver_success{configname=\"testserver\"} 1'") + ''; + }; + nginx = { exporterConfig = { enable = true; From 14ce4947b2109b22ff01d9a740cccc2573ee43d5 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 30 Jul 2019 19:40:18 +0200 Subject: [PATCH 1278/1611] k9copy, kpmcore: Mark as broken See: https://github.com/NixOS/nixpkgs/pull/63260#pullrequestreview-251601561 The build for kpmcore is only broken when the Qt version is older than 5.12. --- pkgs/applications/video/k9copy/default.nix | 3 +++ pkgs/development/libraries/kpmcore/default.nix | 4 +++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/video/k9copy/default.nix b/pkgs/applications/video/k9copy/default.nix index 1e8883eae7f..02a0f275f57 100644 --- a/pkgs/applications/video/k9copy/default.nix +++ b/pkgs/applications/video/k9copy/default.nix @@ -56,5 +56,8 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2; maintainers = with stdenv.lib.maintainers; [ flosse ]; platforms = stdenv.lib.platforms.unix; + # TODO: The software is deprecated and the build is broken, see: + # https://github.com/NixOS/nixpkgs/pull/63260#issuecomment-503506487 + broken = true; }; } diff --git a/pkgs/development/libraries/kpmcore/default.nix b/pkgs/development/libraries/kpmcore/default.nix index 5c53f5e6ad5..52e6264843b 100644 --- a/pkgs/development/libraries/kpmcore/default.nix +++ b/pkgs/development/libraries/kpmcore/default.nix @@ -28,6 +28,8 @@ in stdenv.mkDerivation rec { enableParallelBuilding = true; meta = with stdenv.lib; { - maintainers = with lib.maintainers; [ peterhoeg ]; + maintainers = with lib.maintainers; [ peterhoeg ]; + # The build requires at least Qt 5.12: + broken = lib.versionOlder qtbase.version "5.12.0"; }; } From 37158a3410ecd1cfce12d7b6e165ce7b036614a0 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 30 Jul 2019 14:01:47 -0400 Subject: [PATCH 1279/1611] fractal: stylize, add me to maintainers --- .../instant-messengers/fractal/default.nix | 57 ++++++++++++++++--- 1 file changed, 48 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/fractal/default.nix b/pkgs/applications/networking/instant-messengers/fractal/default.nix index bb8b721a8ac..218bdd80ff0 100644 --- a/pkgs/applications/networking/instant-messengers/fractal/default.nix +++ b/pkgs/applications/networking/instant-messengers/fractal/default.nix @@ -1,9 +1,30 @@ -{ stdenv, fetchFromGitLab, meson, ninja, gettext, cargo, rustc, python3, rustPlatform, pkgconfig, gtksourceview -, hicolor-icon-theme, glib, libhandy, gtk3, libsecret, dbus, openssl, sqlite, gst_all_1, wrapGAppsHook, fetchpatch }: +{ stdenv +, fetchFromGitLab +, meson +, ninja +, gettext +, cargo +, rustc +, python3 +, rustPlatform +, pkgconfig +, gtksourceview +, hicolor-icon-theme +, glib +, libhandy +, gtk3 +, libsecret +, dbus +, openssl +, sqlite +, gst_all_1 +, wrapGAppsHook +, fetchpatch +}: rustPlatform.buildRustPackage rec { + pname = "fractal"; version = "4.0.0"; - name = "fractal-${version}"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; @@ -13,12 +34,32 @@ rustPlatform.buildRustPackage rec { sha256 = "05q47jdgbi5jz01280msb8gxnbsrgf2jvglfm6k40f1xw4wxkrzy"; }; + cargoSha256 = "1ax5dv200v8mfx0418bx8sbwpbp6zj469xg75hp78kqfiv83pn1g"; + nativeBuildInputs = [ - meson ninja pkgconfig gettext cargo rustc python3 wrapGAppsHook + cargo + gettext + meson + ninja + pkgconfig + python3 + rustc + wrapGAppsHook ]; + buildInputs = [ - glib gtk3 libhandy dbus openssl sqlite gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-bad - gtksourceview hicolor-icon-theme libsecret + dbus + glib + gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-base + gst_all_1.gstreamer + gtk3 + gtksourceview + hicolor-icon-theme + libhandy + libsecret + openssl + sqlite ]; patches = [ @@ -39,13 +80,11 @@ rustPlatform.buildRustPackage rec { checkPhase = null; installPhase = null; - cargoSha256 = "1ax5dv200v8mfx0418bx8sbwpbp6zj469xg75hp78kqfiv83pn1g"; - meta = with stdenv.lib; { description = "Matrix group messaging app"; homepage = https://gitlab.gnome.org/GNOME/fractal; license = licenses.gpl3; - maintainers = with maintainers; [ dtzWill ]; + maintainers = with maintainers; [ dtzWill worldofpeace ]; }; } From 576c04a9a5f5e10e9c059b14b767f376b0aaae97 Mon Sep 17 00:00:00 2001 From: magenbluten Date: Sun, 7 Jul 2019 20:15:33 +0200 Subject: [PATCH 1280/1611] suricata: init at 4.1.4 --- .../networking/ids/suricata/default.nix | 125 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 127 insertions(+) create mode 100644 pkgs/applications/networking/ids/suricata/default.nix diff --git a/pkgs/applications/networking/ids/suricata/default.nix b/pkgs/applications/networking/ids/suricata/default.nix new file mode 100644 index 00000000000..3cd5fe4b8ea --- /dev/null +++ b/pkgs/applications/networking/ids/suricata/default.nix @@ -0,0 +1,125 @@ +{ stdenv +, lib +, fetchurl +, pkgconfig +, makeWrapper +, file +, geoip +, hyperscan +, jansson +, libcap_ng +, libevent +, libnet +, libnetfilter_log +, libnetfilter_queue +, libnfnetlink +, libpcap +, libyaml +, luajit +, nspr +, nss +, pcre +, python +, zlib +, redisSupport ? true, redis, hiredis +, rustSupport ? true, rustc, cargo +}: let + libmagic = file; + hyperscanSupport = stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; +in +stdenv.mkDerivation rec { + pname = "suricata"; + version = "4.1.4"; + + src = fetchurl { + url = "https://www.openinfosecfoundation.org/download/${pname}-${version}.tar.gz"; + sha256 = "02901wjf90171rhkymcgp0h48hkn3wv8iwrhz4d8ppraz68hv99d"; + }; + + nativeBuildInputs = [ + makeWrapper + pkgconfig + ]; + + buildInputs = [ + geoip + jansson + libcap_ng + libevent + libmagic + libnet + libnetfilter_log + libnetfilter_queue + libnfnetlink + libpcap + libyaml + luajit + nspr + nss + pcre + python + zlib + ] + ++ lib.optional hyperscanSupport [ hyperscan ] + ++ lib.optional redisSupport [ redis hiredis ] + ++ lib.optional rustSupport [ rustc cargo ] + ; + + enableParallelBuilding = true; + + configureFlags = [ + "--disable-gccmarch-native" + "--enable-afl" + "--enable-af-packet" + "--enable-gccprotect" + "--enable-geoip" + "--enable-luajit" + "--enable-nflog" + "--enable-nfqueue" + "--enable-pie" + "--disable-prelude" + "--enable-python" + "--enable-unix-socket" + "--localstatedir=/var" + "--sysconfdir=/etc" + "--with-libnet-includes=${libnet}/include" + "--with-libnet-libraries=${libnet}/lib" + ] + ++ lib.optional hyperscanSupport [ + "--with-libhs-includes=${hyperscan}/include" + "--with-libhs-libraries=${hyperscan}/lib" + ] + ++ lib.optional redisSupport [ "--enable-hiredis" ] + ++ lib.optional rustSupport [ + "--enable-rust" + "--enable-rust-experimental" + ]; + + installFlags = [ + "e_localstatedir=\${TMPDIR}" + "e_logdir=\${TMPDIR}" + "e_logcertsdir=\${TMPDIR}" + "e_logfilesdir=\${TMPDIR}" + "e_rundir=\${TMPDIR}" + "e_sysconfdir=\${out}/etc/suricata" + "e_sysconfrulesdir=\${out}/etc/suricata/rules" + "localstatedir=\${TMPDIR}" + "runstatedir=\${TMPDIR}" + "sysconfdir=\${out}/etc" + ]; + + installTargets = "install install-conf"; + + postInstall = '' + wrapProgram "$out/bin/suricatasc" \ + --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath "$out") + ''; + + meta = with stdenv.lib; { + description = "A free and open source, mature, fast and robust network threat detection engine"; + homepage = "https://suricata-ids.org"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ magenbluten ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f91d7e8fbb8..89fc4364ffb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6043,6 +6043,8 @@ in sshguard = callPackage ../tools/security/sshguard {}; + suricata = callPackage ../applications/networking/ids/suricata { }; + softhsm = callPackage ../tools/security/softhsm { inherit (darwin) libobjc; inherit (darwin.apple_sdk.frameworks) Security; From 242350554c1d45a7d50662a1d083d74ca301b720 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Tue, 30 Jul 2019 14:37:37 -0700 Subject: [PATCH 1281/1611] bitwarden_rs-vault: 2.10.1 -> 2.11.0 --- pkgs/tools/security/bitwarden_rs/vault.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/bitwarden_rs/vault.nix b/pkgs/tools/security/bitwarden_rs/vault.nix index 44c8047684f..76b9f24224c 100644 --- a/pkgs/tools/security/bitwarden_rs/vault.nix +++ b/pkgs/tools/security/bitwarden_rs/vault.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "bitwarden_rs-vault"; - version = "2.10.1"; + version = "2.11.0"; src = fetchurl { url = "https://github.com/dani-garcia/bw_web_builds/releases/download/v${version}/bw_web_v${version}.tar.gz"; - sha256 = "1avgxlsxi7mb8zpqai3j1qb43qq09ya5ngb7l4q7mj0d89lxrzhb"; + sha256 = "06f0rcpqhz5qjm01jbxx2czhnj9ng29rgsrilm5r5xx31s9dnhg7"; }; buildCommand = '' From fef48df3a15a3af7896cdc8569e2035061e4b886 Mon Sep 17 00:00:00 2001 From: arcnmx Date: Tue, 30 Jul 2019 14:37:55 -0700 Subject: [PATCH 1282/1611] bitwarden_rs: 1.9.0 -> 1.9.1 --- .../bitwarden_rs/cargo-lock-lettre.patch | 58 +++++++++++++++++++ pkgs/tools/security/bitwarden_rs/default.nix | 11 +++- 2 files changed, 66 insertions(+), 3 deletions(-) create mode 100644 pkgs/tools/security/bitwarden_rs/cargo-lock-lettre.patch diff --git a/pkgs/tools/security/bitwarden_rs/cargo-lock-lettre.patch b/pkgs/tools/security/bitwarden_rs/cargo-lock-lettre.patch new file mode 100644 index 00000000000..d9f491ca290 --- /dev/null +++ b/pkgs/tools/security/bitwarden_rs/cargo-lock-lettre.patch @@ -0,0 +1,58 @@ +diff --git a/Cargo.lock b/Cargo.lock +index 2e0b695..6d23410 100644 +--- a/Cargo.lock ++++ b/Cargo.lock +@@ -114,8 +114,8 @@ dependencies = [ + "handlebars 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "jsonwebtoken 6.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +- "lettre 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", +- "lettre_email 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lettre 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lettre_email 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "multipart 0.16.1 (registry+https://github.com/rust-lang/crates.io-index)", +@@ -1007,13 +1007,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index" + + [[package]] + name = "lettre" +-version = "0.9.1" ++version = "0.9.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bufstream 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fast_chemail 0.9.6 (registry+https://github.com/rust-lang/crates.io-index)", + "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +@@ -1026,14 +1024,12 @@ dependencies = [ + + [[package]] + name = "lettre_email" +-version = "0.9.1" ++version = "0.9.2" + source = "registry+https://github.com/rust-lang/crates.io-index" + dependencies = [ + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "email 0.0.20 (registry+https://github.com/rust-lang/crates.io-index)", +- "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +- "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +- "lettre 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", ++ "lettre 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "mime 0.3.13 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.4 (registry+https://github.com/rust-lang/crates.io-index)", +@@ -2858,8 +2854,8 @@ dependencies = [ + "checksum language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a91d884b6667cd606bb5a69aa0c99ba811a115fc68915e7056ec08a46e93199a" + "checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" + "checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +-"checksum lettre 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "646aee0a55545eaffdf0df1ac19b500b51adb3095ec4dfdc704134e56ea23531" +-"checksum lettre_email 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ae1b3d43e4bb7beb9974a359cbb3ea4f93dfba6c1c0c6e9c9f82e538e0f9ab9f" ++"checksum lettre 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c66afaa5dfadbb81d4e00fd1d1ab057c7cd4c799c5a44e0009386d553587e728" ++"checksum lettre_email 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bbb68ca999042d965476e47bbdbacd52db0927348b6f8062c44dd04a3b1fd43b" + "checksum libc 0.2.55 (registry+https://github.com/rust-lang/crates.io-index)" = "42914d39aad277d9e176efbdad68acb1d5443ab65afe0e0e4f0d49352a950880" + "checksum libsqlite3-sys 0.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fd6457c70bbff456d9fe49deaba35ec47c3e598bf8d7950ff0575ceb7a8a6ad1" + "checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" diff --git a/pkgs/tools/security/bitwarden_rs/default.nix b/pkgs/tools/security/bitwarden_rs/default.nix index d22a2773fd9..f04996f1b43 100644 --- a/pkgs/tools/security/bitwarden_rs/default.nix +++ b/pkgs/tools/security/bitwarden_rs/default.nix @@ -2,21 +2,26 @@ rustPlatform.buildRustPackage rec { pname = "bitwarden_rs"; - version = "1.9.0"; + version = "1.9.1"; src = fetchFromGitHub { owner = "dani-garcia"; repo = pname; rev = version; - sha256 = "14c2blzkmdd9s0gpf6b7y141yx9s2v2gmwy5l1lgqjhi3h6jpcqr"; + sha256 = "0jfb4b2lp2v01aw615lx0qj1qh73hyrbjn9kva7zqp74wcfw12gp"; }; + cargoPatches = [ + # type annotations required: cannot resolve `std::string::String: std::convert::AsRef<_>` + ./cargo-lock-lettre.patch + ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ Security CoreServices ]; RUSTC_BOOTSTRAP = 1; - cargoSha256 = "038l6alcdc0g4avpbzxgd2k09nr3wrsbry763bq2c77qqgwldj8r"; + cargoSha256 = "0p39gqrqdmgqhngp1qyh6jl0sp0ifj5n3bxfqafjbspb4zph3ls4"; meta = with stdenv.lib; { description = "An unofficial lightweight implementation of the Bitwarden server API using Rust and SQLite"; From 63f93407b9fba499dc0cfcfb56b665ba063b67bb Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Wed, 31 Jul 2019 00:20:00 +0200 Subject: [PATCH 1283/1611] lsb-release: Fix/replace with a custom Bash script (#64258) See #64258 for more details and some discussion. Fix #22729. tl;dr: This fixes the behaviour at run-time but uses "n/a" defaults inside the Nix build sandbox (build-time). There might still be a few minor regressions, we might have to tweak the behaviour over time (e.g. the implementation from Debian also differs from the original version), and we could refactor the script, but it should work well enough for now. --- .../os-specific/linux/lsb-release/default.nix | 39 ++-- .../linux/lsb-release/lsb_release.sh | 190 ++++++++++++++++++ 2 files changed, 203 insertions(+), 26 deletions(-) create mode 100644 pkgs/os-specific/linux/lsb-release/lsb_release.sh diff --git a/pkgs/os-specific/linux/lsb-release/default.nix b/pkgs/os-specific/linux/lsb-release/default.nix index 34dae105a8d..7ab10bfac12 100644 --- a/pkgs/os-specific/linux/lsb-release/default.nix +++ b/pkgs/os-specific/linux/lsb-release/default.nix @@ -1,34 +1,21 @@ -{ stdenv, fetchurl, perl, coreutils, getopt, makeWrapper }: +{ substituteAll, lib +, coreutils, getopt +}: -stdenv.mkDerivation rec { - version = "1.4"; - name = "lsb-release-${version}"; +substituteAll { + name = "lsb_release"; - src = fetchurl { - url = "mirror://sourceforge/lsb/${name}.tar.gz"; - sha256 = "0wkiy7ymfi3fh2an2g30raw6yxh6rzf6nz2v90fplbnnz2414clr"; - }; + src = ./lsb_release.sh; - preConfigure = '' - substituteInPlace help2man \ - --replace /usr/bin/perl ${perl}/bin/perl - ''; + dir = "bin"; + isExecutable = true; - installFlags = [ "prefix=$(out)" ]; + inherit coreutils getopt; - nativeBuildInputs = [ makeWrapper perl ]; - - buildInputs = [ coreutils getopt ]; - - # Ensure utilities used are available - preFixup = '' - wrapProgram $out/bin/lsb_release --prefix PATH : ${stdenv.lib.makeBinPath [ coreutils getopt ]} - ''; - - meta = { + meta = with lib; { description = "Prints certain LSB (Linux Standard Base) and Distribution information"; - homepage = http://www.linuxfoundation.org/collaborate/workgroups/lsb; - license = [ stdenv.lib.licenses.gpl2Plus stdenv.lib.licenses.gpl3Plus ]; - platforms = stdenv.lib.platforms.linux; + license = [ licenses.mit ]; + maintainers = with maintainers; [ primeos ]; + platforms = platforms.linux; }; } diff --git a/pkgs/os-specific/linux/lsb-release/lsb_release.sh b/pkgs/os-specific/linux/lsb-release/lsb_release.sh new file mode 100644 index 00000000000..47b449c3161 --- /dev/null +++ b/pkgs/os-specific/linux/lsb-release/lsb_release.sh @@ -0,0 +1,190 @@ +#! @shell@ + +set -o errexit +set -o nounset + +show_help() { + @coreutils@/bin/cat << EOF +Usage: lsb_release [options] + +Options: + -h, --help show this help message and exit + -v, --version show LSB modules this system supports + -i, --id show distributor ID + -d, --description show description of this distribution + -r, --release show release number of this distribution + -c, --codename show code name of this distribution + -a, --all show all of the above information + -s, --short show requested information in short format +EOF + exit 0 +} + +# Potential command-line options. +version=0 +id=0 +description=0 +release=0 +codename=0 +all=0 +short=0 + +@getopt@/bin/getopt --test > /dev/null && rc=$? || rc=$? +if [[ $rc -ne 4 ]]; then + # This shouldn't happen. + echo "Warning: Enhanced getopt not supported, please open an issue." >&2 +else + # Define all short and long options. + SHORT=hvidrcas + LONG=help,version,id,description,release,codename,all,short + + # Parse all options. + PARSED=`@getopt@/bin/getopt --options $SHORT --longoptions $LONG --name "$0" -- "$@"` + + eval set -- "$PARSED" +fi + + +# Process each argument, and set the appropriate flag if we recognize it. +while [[ $# -ge 1 ]]; do + case "$1" in + -v|--version) + version=1 + ;; + -i|--id) + id=1 + ;; + -d|--description) + description=1 + ;; + -r|--release) + release=1 + ;; + -c|--codename) + codename=1 + ;; + -a|--all) + all=1 + ;; + -s|--short) + short=1 + ;; + -h|--help) + show_help + ;; + --) + shift + break + ;; + *) + echo "lsb_release: unrecognized option '$1'" + echo "Type 'lsb_release -h' for a list of available options." + exit 1 + ;; + esac + shift +done + +# Read our variables. +if [[ -e /etc/os-release ]]; then + . /etc/os-release + OS_RELEASE_FOUND=1 +else + # This is e.g. relevant for the Nix build sandbox and compatible with the + # original lsb_release binary: + OS_RELEASE_FOUND=0 + NAME="n/a" + PRETTY_NAME="(none)" + VERSION_ID="n/a" + VERSION_CODENAME="n/a" +fi + +# Default output +if [[ "$version" = "0" ]] && [[ "$id" = "0" ]] && \ + [[ "$description" = "0" ]] && [[ "$release" = "0" ]] && \ + [[ "$codename" = "0" ]] && [[ "$all" = "0" ]]; then + if [[ "$OS_RELEASE_FOUND" = "1" ]]; then + echo "No LSB modules are available." >&2 + else + if [[ "$short" = "0" ]]; then + printf "LSB Version:\tn/a\n" + else + printf "n/a\n" + fi + fi + exit 0 +fi + +# Now output the data - The order of these was chosen to match +# what the original lsb_release used. + +SHORT_OUTPUT="" +append_short_output() { + if [[ "$1" = "n/a" ]]; then + SHORT_OUTPUT+=" $1" + else + SHORT_OUTPUT+=" \"$1\"" + fi +} + +if [[ "$all" = "1" ]] || [[ "$version" = "1" ]]; then + if [[ "$OS_RELEASE_FOUND" = "1" ]]; then + if [[ "$short" = "0" ]]; then + echo "No LSB modules are available." >&2 + else + append_short_output "n/a" + fi + else + if [[ "$short" = "0" ]]; then + printf "LSB Version:\tn/a\n" + else + append_short_output "n/a" + fi + fi +fi + +if [[ "$all" = "1" ]] || [[ "$id" = "1" ]]; then + if [[ "$short" = "0" ]]; then + printf "Distributor ID:\t$NAME\n" + else + append_short_output "$NAME" + fi +fi + +if [[ "$all" = "1" ]] || [[ "$description" = "1" ]]; then + if [[ "$short" = "0" ]]; then + printf "Description:\t$PRETTY_NAME\n" + else + append_short_output "$PRETTY_NAME" + fi +fi + +if [[ "$all" = "1" ]] || [[ "$release" = "1" ]]; then + if [[ "$short" = "0" ]]; then + printf "Release:\t$VERSION_ID\n" + else + append_short_output "$VERSION_ID" + fi +fi + +if [[ "$all" = "1" ]] || [[ "$codename" = "1" ]]; then + if [[ "$short" = "0" ]]; then + printf "Codename:\t$VERSION_CODENAME\n" + else + append_short_output "$VERSION_CODENAME" + fi +fi + +if [[ "$short" = "1" ]]; then + # Output in one line without the first space: + echo "${SHORT_OUTPUT:1}" +fi + +# For compatibility with the original lsb_release: +if [[ "$OS_RELEASE_FOUND" = "0" ]]; then + if [[ "$all" = "1" ]] || [[ "$id" = "1" ]] || \ + [[ "$description" = "1" ]] || [[ "$release" = "1" ]] || \ + [[ "$codename" = "1" ]]; then + exit 3 + fi +fi From 8fbf9559dfa3e705fa12488c115b6dc4ee1b1598 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Wed, 31 Jul 2019 00:37:27 +0200 Subject: [PATCH 1284/1611] nixos/tests/cassandra: Test jmxPort The test sets it to a non-standard port so it won't work accidentally now and we'll be sure that our NixOS option works. --- nixos/tests/cassandra.nix | 66 +++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 31 deletions(-) diff --git a/nixos/tests/cassandra.nix b/nixos/tests/cassandra.nix index aea4fa4d1c9..c55733c9be7 100644 --- a/nixos/tests/cassandra.nix +++ b/nixos/tests/cassandra.nix @@ -8,11 +8,12 @@ let jmxRoles = [{ username = "me"; password = "password"; }]; jmxRolesFile = ./cassandra-jmx-roles; jmxAuthArgs = "-u ${(builtins.elemAt jmxRoles 0).username} -pw ${(builtins.elemAt jmxRoles 0).password}"; + jmxPort = 7200; # Non-standard port so it doesn't accidentally work # Would usually be assigned to 512M numMaxHeapSize = "400"; getHeapLimitCommand = '' - nodetool info | grep "^Heap Memory" | awk \'{print $NF}\' + nodetool info -p ${toString jmxPort} | grep "^Heap Memory" | awk \'{print $NF}\' ''; checkHeapLimitCommand = '' [ 1 -eq "$(echo "$(${getHeapLimitCommand}) < ${numMaxHeapSize}" | ${pkgs.bc}/bin/bc)" ] @@ -27,19 +28,20 @@ let package = testPackage; maxHeapSize = "${numMaxHeapSize}M"; heapNewSize = "100M"; + inherit jmxPort; }; - nodeCfg = ipAddress: extra: {pkgs, config, ...}: - { environment.systemPackages = [ testPackage ]; - networking = { - firewall.allowedTCPPorts = [ 7000 7199 9042 ]; - useDHCP = false; - interfaces.eth1.ipv4.addresses = pkgs.lib.mkOverride 0 [ - { address = ipAddress; prefixLength = 24; } - ]; - }; - services.cassandra = cassandraCfg ipAddress // extra; - virtualisation.memorySize = 1024; + nodeCfg = ipAddress: extra: {pkgs, config, ...}: rec { + environment.systemPackages = [ testPackage ]; + networking = { + firewall.allowedTCPPorts = [ 7000 9042 services.cassandra.jmxPort ]; + useDHCP = false; + interfaces.eth1.ipv4.addresses = pkgs.lib.mkOverride 0 [ + { address = ipAddress; prefixLength = 24; } + ]; }; + services.cassandra = cassandraCfg ipAddress // extra; + virtualisation.memorySize = 1024; + }; in { name = "cassandra-ci"; @@ -50,7 +52,9 @@ in cass2 = nodeCfg "192.168.1.3" { jvmOpts = [ "-Dcassandra.replace_address=cass1" ]; }; }; - testScript = '' + testScript = let + jmxPortS = toString jmxPort; + in '' # Check configuration subtest "Timers exist", sub { $cass0->succeed("systemctl list-timers | grep cassandra-full-repair.timer"); @@ -63,51 +67,51 @@ in }; subtest "Nodetool is operational", sub { $cass0->waitForUnit("cassandra.service"); - $cass0->waitUntilSucceeds("nc -z localhost 7199"); - $cass0->succeed("nodetool status --resolve-ip | egrep '^UN[[:space:]]+cass0'"); + $cass0->waitUntilSucceeds("nc -z localhost ${jmxPortS}"); + $cass0->succeed("nodetool status -p ${jmxPortS} --resolve-ip | egrep '^UN[[:space:]]+cass0'"); }; subtest "Cluster name was set", sub { $cass0->waitForUnit("cassandra.service"); - $cass0->waitUntilSucceeds("nc -z localhost 7199"); - $cass0->waitUntilSucceeds("nodetool describecluster | grep 'Name: ${clusterName}'"); + $cass0->waitUntilSucceeds("nc -z localhost ${jmxPortS}"); + $cass0->waitUntilSucceeds("nodetool describecluster -p ${jmxPortS} | grep 'Name: ${clusterName}'"); }; subtest "Heap limit set correctly", sub { # Nodetool takes a while until it can display info - $cass0->waitUntilSucceeds('nodetool info'); + $cass0->waitUntilSucceeds('nodetool info -p ${jmxPortS}'); $cass0->succeed('${checkHeapLimitCommand}'); }; # Check cluster interaction subtest "Bring up cluster", sub { $cass1->waitForUnit("cassandra.service"); - $cass1->waitUntilSucceeds("nodetool ${jmxAuthArgs} status | egrep -c '^UN' | grep 2"); - $cass0->succeed("nodetool status --resolve-ip | egrep '^UN[[:space:]]+cass1'"); + $cass1->waitUntilSucceeds("nodetool -p ${jmxPortS} ${jmxAuthArgs} status | egrep -c '^UN' | grep 2"); + $cass0->succeed("nodetool status -p ${jmxPortS} --resolve-ip | egrep '^UN[[:space:]]+cass1'"); }; '' + lib.optionalString testRemoteAuth '' subtest "Remote authenticated jmx", sub { # Doesn't work if not enabled - $cass0->waitUntilSucceeds("nc -z localhost 7199"); - $cass1->fail("nc -z 192.168.1.1 7199"); - $cass1->fail("nodetool -h 192.168.1.1 status"); + $cass0->waitUntilSucceeds("nc -z localhost ${jmxPortS}"); + $cass1->fail("nc -z 192.168.1.1 ${toString jmxPort}"); + $cass1->fail("nodetool -p ${jmxPortS} -h 192.168.1.1 status"); # Works if enabled - $cass1->waitUntilSucceeds("nc -z localhost 7199"); - $cass0->succeed("nodetool -h 192.168.1.2 ${jmxAuthArgs} status"); + $cass1->waitUntilSucceeds("nc -z localhost ${toString jmxPort}"); + $cass0->succeed("nodetool -p ${jmxPortS} -h 192.168.1.2 ${jmxAuthArgs} status"); }; '' + '' subtest "Break and fix node", sub { $cass1->block; - $cass0->waitUntilSucceeds("nodetool status --resolve-ip | egrep -c '^DN[[:space:]]+cass1'"); - $cass0->succeed("nodetool status | egrep -c '^UN' | grep 1"); + $cass0->waitUntilSucceeds("nodetool status -p ${jmxPortS} --resolve-ip | egrep -c '^DN[[:space:]]+cass1'"); + $cass0->succeed("nodetool status -p ${jmxPortS} | egrep -c '^UN' | grep 1"); $cass1->unblock; - $cass1->waitUntilSucceeds("nodetool ${jmxAuthArgs} status | egrep -c '^UN' | grep 2"); - $cass0->succeed("nodetool status | egrep -c '^UN' | grep 2"); + $cass1->waitUntilSucceeds("nodetool -p ${jmxPortS} ${jmxAuthArgs} status | egrep -c '^UN' | grep 2"); + $cass0->succeed("nodetool status -p ${jmxPortS} | egrep -c '^UN' | grep 2"); }; subtest "Replace crashed node", sub { $cass1->crash; $cass2->waitForUnit("cassandra.service"); - $cass0->waitUntilFails("nodetool status --resolve-ip | egrep '^UN[[:space:]]+cass1'"); - $cass0->waitUntilSucceeds("nodetool status --resolve-ip | egrep '^UN[[:space:]]+cass2'"); + $cass0->waitUntilFails("nodetool status -p ${jmxPortS} --resolve-ip | egrep '^UN[[:space:]]+cass1'"); + $cass0->waitUntilSucceeds("nodetool status -p ${jmxPortS} --resolve-ip | egrep '^UN[[:space:]]+cass2'"); }; ''; }) From 4133064047a8b59e1dc7553d9629821b84405f1e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Tue, 30 Jul 2019 22:38:15 -0500 Subject: [PATCH 1285/1611] nfpm: init at 0.12.0 --- .../tools/package-management/nfpm/default.nix | 22 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/tools/package-management/nfpm/default.nix diff --git a/pkgs/tools/package-management/nfpm/default.nix b/pkgs/tools/package-management/nfpm/default.nix new file mode 100644 index 00000000000..5cbb207ec4f --- /dev/null +++ b/pkgs/tools/package-management/nfpm/default.nix @@ -0,0 +1,22 @@ +{ lib, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "nfpm"; + version = "0.12.0"; + + src = fetchFromGitHub { + owner = "goreleaser"; + repo = pname; + rev = "v${version}"; + sha256 = "090mxkmbfzi3mby18zhrr34fr6vzc7j0r2ss3rjr5lyfgilw1qwr"; + }; + + modSha256 = "02nkqmljb528ppsr2dw2r3rc83j3qmys3a8v0a1z2b4sq2sv1v7w"; + + meta = with lib; { + description = "A simple deb and rpm packager written in Go"; + homepage = "https://github.com/goreleaser/nfpm"; + maintainers = [ maintainers.marsam ]; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89fc4364ffb..874c8dc181a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4295,6 +4295,8 @@ in netsniff-ng = callPackage ../tools/networking/netsniff-ng { }; + nfpm = callPackage ../tools/package-management/nfpm { }; + nginx-config-formatter = callPackage ../tools/misc/nginx-config-formatter { }; ninka = callPackage ../development/tools/misc/ninka { }; From 6a79f6fb711143da795e0416c3dc04ad4d3acf74 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 30 Jul 2019 23:52:25 -0400 Subject: [PATCH 1286/1611] nixosTests.flatpak-builder: enable portals Forgot about this test. Shouldn't fail with an assertion error anymore. --- nixos/tests/flatpak-builder.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/tests/flatpak-builder.nix b/nixos/tests/flatpak-builder.nix index 2100631ec7f..49b97e8ca99 100644 --- a/nixos/tests/flatpak-builder.nix +++ b/nixos/tests/flatpak-builder.nix @@ -9,6 +9,7 @@ import ./make-test.nix ({ pkgs, ... }: machine = { pkgs, ... }: { services.flatpak.enable = true; + xdg.portal.enable = true; environment.systemPackages = with pkgs; [ gnome-desktop-testing flatpak-builder ] ++ flatpak-builder.installedTestsDependencies; virtualisation.diskSize = 2048; }; From 2240ddcf8c49418ffc4a670ca3fe86df12529cc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Tue, 30 Jul 2019 21:02:24 +0200 Subject: [PATCH 1287/1611] makemkv: modernize derivation - Use libsForQt5.callPackage - Replace separate builder.sh script - Replace patchelf call by autoPatchElfHook - Use ffmpeg in place of libav --- pkgs/applications/video/makemkv/builder.sh | 40 ------------------- pkgs/applications/video/makemkv/default.nix | 43 +++++++++++++-------- pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 28 insertions(+), 57 deletions(-) delete mode 100644 pkgs/applications/video/makemkv/builder.sh diff --git a/pkgs/applications/video/makemkv/builder.sh b/pkgs/applications/video/makemkv/builder.sh deleted file mode 100644 index 416d5c0f0b0..00000000000 --- a/pkgs/applications/video/makemkv/builder.sh +++ /dev/null @@ -1,40 +0,0 @@ -source $stdenv/setup -set -x - -lib=" \ - makemkv-oss-${ver}/out/libdriveio.so.0 \ - makemkv-oss-${ver}/out/libmakemkv.so.1 \ - makemkv-oss-${ver}/out/libmmbd.so.0 \ - " - -bin=" \ - makemkv-oss-${ver}/out/makemkv \ - makemkv-bin-${ver}/bin/amd64/makemkvcon \ - " - -tar xzf ${src_bin} -tar xzf ${src_oss} - -( - cd makemkv-oss-${ver} - ./configure --prefix=$out - make -) - -chmod +x ${bin} - -libPath="${libPath}:${out}/lib" # XXX: der. This should be in the nix file? - -for i in ${bin} ; do - patchelf \ - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath $libPath \ - ${i} -done - -mkdir -p $out/bin -mkdir -p $out/lib -mkdir -p $out/share/MakeMKV -cp ${lib} ${out}/lib -cp ${bin} ${out}/bin -cp makemkv-bin-${ver}/src/share/* $out/share/MakeMKV diff --git a/pkgs/applications/video/makemkv/default.nix b/pkgs/applications/video/makemkv/default.nix index f9b5c4c0196..f3d8b4ae569 100644 --- a/pkgs/applications/video/makemkv/default.nix +++ b/pkgs/applications/video/makemkv/default.nix @@ -1,34 +1,45 @@ -{ stdenv, fetchurl -, openssl, qt5, libGLU_combined, zlib, pkgconfig, libav +{ stdenv, mkDerivation, fetchurl, autoPatchelfHook +, ffmpeg, openssl, qtbase, zlib, pkgconfig }: -stdenv.mkDerivation rec { - name = "makemkv-${ver}"; - ver = "1.14.4"; - builder = ./builder.sh; - +let + version = "1.14.4"; # Using two URLs as the first one will break as soon as a new version is released src_bin = fetchurl { urls = [ - "http://www.makemkv.com/download/makemkv-bin-${ver}.tar.gz" - "http://www.makemkv.com/download/old/makemkv-bin-${ver}.tar.gz" + "http://www.makemkv.com/download/makemkv-bin-${version}.tar.gz" + "http://www.makemkv.com/download/old/makemkv-bin-${version}.tar.gz" ]; sha256 = "0vmmvldmwmq9g202abblj6l15kb8z3b0c6mcc03f30s2yci6ij33"; }; - src_oss = fetchurl { urls = [ - "http://www.makemkv.com/download/makemkv-oss-${ver}.tar.gz" - "http://www.makemkv.com/download/old/makemkv-oss-${ver}.tar.gz" + "http://www.makemkv.com/download/makemkv-oss-${version}.tar.gz" + "http://www.makemkv.com/download/old/makemkv-oss-${version}.tar.gz" ]; sha256 = "0n1nlq17dxcbgk9xqf7nv6zykvh91yhsjqdhq55947wc11fxjqa0"; }; +in mkDerivation { + pname = "makemkv"; + inherit version; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [openssl qt5.qtbase libGLU_combined zlib libav]; + srcs = [ src_bin src_oss ]; - libPath = stdenv.lib.makeLibraryPath [stdenv.cc.cc openssl libGLU_combined qt5.qtbase zlib ] - + ":" + stdenv.cc.cc + "/lib64"; + sourceRoot = "makemkv-oss-${version}"; + + nativeBuildInputs = [ autoPatchelfHook pkgconfig ]; + + buildInputs = [ ffmpeg openssl qtbase zlib ]; + + installPhase = '' + runHook preInstall + + install -Dm555 -t $out/bin out/makemkv ../makemkv-bin-${version}/bin/amd64/makemkvcon + install -D -t $out/lib out/lib{driveio,makemkv,mmbd}.so.* + install -D -t $out/share/MakeMKV ../makemkv-bin-${version}/src/share/* + + runHook postInstall + ''; meta = with stdenv.lib; { description = "Convert blu-ray and dvd to mkv"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4a03f722c97..9aa65d71655 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4568,7 +4568,7 @@ in mairix = callPackage ../tools/text/mairix { }; - makemkv = callPackage ../applications/video/makemkv { }; + makemkv = libsForQt5.callPackage ../applications/video/makemkv { }; makerpm = callPackage ../development/tools/makerpm { }; From db5aa011b89e9f20d6c9c4eec75f5bcb2af46241 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Sun, 21 Apr 2019 22:31:39 +0800 Subject: [PATCH 1288/1611] pwgen-secure: init at 0.9.1 --- pkgs/tools/security/pwgen-secure/default.nix | 36 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 38 insertions(+) create mode 100644 pkgs/tools/security/pwgen-secure/default.nix diff --git a/pkgs/tools/security/pwgen-secure/default.nix b/pkgs/tools/security/pwgen-secure/default.nix new file mode 100644 index 00000000000..c3141676b37 --- /dev/null +++ b/pkgs/tools/security/pwgen-secure/default.nix @@ -0,0 +1,36 @@ +{ lib, python3Packages, fetchFromGitHub }: + +with python3Packages; + +buildPythonApplication rec { + pname = "pwgen-secure"; + version = "0.9.1"; + + # it needs `secrets` which was introduced in 3.6 + disabled = pythonOlder "3.6"; + + # GH is newer than Pypi and contains both library *and* the actual program + # whereas Pypi only has the library + src = fetchFromGitHub { + owner = "mjmunger"; + repo = "pwgen_secure"; + rev = "v${version}"; + sha256 = "15md5606hzy1xfhj2lxmc0nvynyrcs4vxa5jdi34kfm31rdklj28"; + }; + + propagatedBuildInputs = [ docopt ]; + + postInstall = '' + install -Dm755 spwgen.py $out/bin/spwgen + ''; + + # there are no checks + doCheck = false; + + meta = with lib; { + description = "Secure password generation library to replace pwgen"; + homepage = "https://github.com/mjmunger/pwgen_secure/"; + license = licenses.mit; + maintainers = with maintainers; [ peterhoeg ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 34db5cf8982..1e79796e973 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5164,6 +5164,8 @@ in pwgen = callPackage ../tools/security/pwgen { }; + pwgen-secure = callPackage ../tools/security/pwgen-secure { }; + pwnat = callPackage ../tools/networking/pwnat { }; pwndbg = python3Packages.callPackage ../development/tools/misc/pwndbg { }; From a956694abac2dc81d6b148592ef6c993199f5cd3 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Jul 2019 14:18:50 +0300 Subject: [PATCH 1289/1611] buildBazelPackage: clear markers Turns out markers are non-deterministic after all and even our patching still doesn't solve this problem completely. For example (tensorflow deps, this is a complete diff so actual dependencies don't differ): 30509c30509 < bc527ff00916b15caee38793bca8f294c748df4a256de55c5199281be0489e73 result/@bazel_skylib.marker --- > 4e0303e815c78df1e43d4b88dfe65e73046e0c6157fb10aa9a4e8b910113cd9c result/@bazel_skylib.marker 31045c31045 < fa13d04b2316214c3b4008b52546c2d5b633e006f6f019d597bb3f9745bacf7b result/@bazel_toolchains.marker --- > b36174bf5535e5157801b6de30c35ee03a03fe57766306393c3d65dd65cbebf4 result/@bazel_toolchains.marker 31144c31144 < b0ce4a3ac29ac22528336dd3a54b5b7af9ecc43bef2a2630713c1981a5cbbb51 result/@build_bazel_rules_swift.marker --- > 7492528068ec4f8e7ace2ecf8f933ec4e1b2235bd7426ce6f70177919f1cd05e result/@build_bazel_rules_swift.marker 36245c36245 < be2993536a8233d63251b664caf35b1e7cd57d194ab2a39a293876c232d6bbd0 result/@io_bazel_rules_closure.marker --- > b6655cc3f2c78525e5a724d8a4e93b1e7f09f1e09fc817d231109e7f39103e88 result/@io_bazel_rules_closure.marker 36329c36329 < 087bc674c9509dfe157400d111db4a13eeb45fc76aeccd490cee9aad6771ecad result/@io_bazel_rules_docker.marker --- > f920ec07315ec71e800b05cd22b2a341c0a80807c6e335ee81739b13c532b422 result/@io_bazel_rules_docker.marker 79544d79543 < 85893a05a817036c61f6cd9f8247757baa1654f473c494ce4fc5253c2bbd2790 result/@platforms.marker And here's an example of differences: $ cat result-a/@bazel_skylib.marker 7dc7472d37424ba5ec6a5532765bc911 $MANAGED cat result-b/@bazel_skylib.marker a8f3f577798201157128e8e9934c4705 $MANAGED Instead of trying to patch these markers further we now completely clear them. Nix hacks for ignoring markers are restored and expanded so that we don't even attempt to parse the marker. --- .../build-bazel-package/default.nix | 9 ++--- .../tools/build-managers/bazel/default.nix | 4 +- .../build-managers/bazel/nix-hacks.patch | 40 +++++++++++++++++-- 3 files changed, 41 insertions(+), 12 deletions(-) diff --git a/pkgs/build-support/build-bazel-package/default.nix b/pkgs/build-support/build-bazel-package/default.nix index 72725f9818c..a308eb8aaa4 100644 --- a/pkgs/build-support/build-bazel-package/default.nix +++ b/pkgs/build-support/build-bazel-package/default.nix @@ -60,13 +60,10 @@ in stdenv.mkDerivation (fBuildAttrs // { # Remove all built in external workspaces, Bazel will recreate them when building rm -rf $bazelOut/external/{bazel_tools,\@bazel_tools.marker} rm -rf $bazelOut/external/{embedded_jdk,\@embedded_jdk.marker} - rm -rf $bazelOut/external/{local_*,\@local_*} + rm -rf $bazelOut/external/{local_*,\@local_*.marker} - # Patching markers to make them deterministic - find $bazelOut/external -name '@*\.marker' -exec sed -i \ - -e 's, -\?[0-9][0-9]*$, 1,' \ - -e '/^ENV:TMP.*/d' \ - '{}' \; + # Clear markers + find $bazelOut/external -name '@*\.marker' -exec sh -c 'echo > {}' \; # Remove all vcs files rm -rf $(find $bazelOut/external -type d -name .git) diff --git a/pkgs/development/tools/build-managers/bazel/default.nix b/pkgs/development/tools/build-managers/bazel/default.nix index 8c19c0021d1..701b0c48388 100644 --- a/pkgs/development/tools/build-managers/bazel/default.nix +++ b/pkgs/development/tools/build-managers/bazel/default.nix @@ -14,8 +14,8 @@ , runtimeShell # Downstream packages for tests , bazel-watcher -# Always assume all markers valid (don't redownload dependencies). -# Also, don't clean up environment variables. +# Always assume all markers valid (this is needed because we remove markers; they are non-deterministic). +# Also, don't clean up environment variables (so that NIX_ environment variables are passed to compilers). , enableNixHacks ? false , gcc-unwrapped , autoPatchelfHook diff --git a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch index 75b0e3743f9..95f07646802 100644 --- a/pkgs/development/tools/build-managers/bazel/nix-hacks.patch +++ b/pkgs/development/tools/build-managers/bazel/nix-hacks.patch @@ -1,7 +1,39 @@ -diff -Naur a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java ---- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 2019-06-12 20:39:37.538708196 -0700 -+++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java 2019-06-12 20:44:18.863429602 -0700 -@@ -146,7 +146,6 @@ +diff --git a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java +index 8e772005cd..6ffa1c919c 100644 +--- a/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java ++++ b/src/main/java/com/google/devtools/build/lib/rules/repository/RepositoryDelegatorFunction.java +@@ -432,25 +432,7 @@ public final class RepositoryDelegatorFunction implements SkyFunction { + String content; + try { + content = FileSystemUtils.readContent(markerPath, StandardCharsets.UTF_8); +- String markerRuleKey = readMarkerFile(content, markerData); +- boolean verified = false; +- if (Preconditions.checkNotNull(ruleKey).equals(markerRuleKey) +- && Objects.equals( +- markerData.get(MANAGED_DIRECTORIES_MARKER), +- this.markerData.get(MANAGED_DIRECTORIES_MARKER))) { +- verified = handler.verifyMarkerData(rule, markerData, env); +- if (env.valuesMissing()) { +- return null; +- } +- } +- +- if (verified) { +- return new Fingerprint().addString(content).digestAndReset(); +- } else { +- // So that we are in a consistent state if something happens while fetching the repository +- markerPath.delete(); +- return null; +- } ++ return new Fingerprint().addString(content).digestAndReset(); + } catch (IOException e) { + throw new RepositoryFunctionException(e, Transience.TRANSIENT); + } +diff --git a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java +index c282d57ab6..f9b0c08627 100644 +--- a/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java ++++ b/src/main/java/com/google/devtools/build/lib/shell/JavaSubprocessFactory.java +@@ -146,7 +146,6 @@ public class JavaSubprocessFactory implements SubprocessFactory { ProcessBuilder builder = new ProcessBuilder(); builder.command(params.getArgv()); if (params.getEnv() != null) { From 68c1171185547a0a18db37ad851575c4d481d61c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Jul 2019 16:00:15 +0300 Subject: [PATCH 1290/1611] python.pkgs.dm-sonnet: update dependencies hash --- pkgs/development/python-modules/dm-sonnet/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/dm-sonnet/default.nix b/pkgs/development/python-modules/dm-sonnet/default.nix index ed6bff96d73..8a51227da0e 100644 --- a/pkgs/development/python-modules/dm-sonnet/default.nix +++ b/pkgs/development/python-modules/dm-sonnet/default.nix @@ -36,7 +36,7 @@ let bazelTarget = ":install"; fetchAttrs = { - sha256 = "141k2caj5hlk31gnqryp6w2mzyz4i5s1rf8f3qr18isxy235k3w6"; + sha256 = "0mxma7jajm42v1hv6agl909xra0azihj588032ivhlmmh403x6wg"; }; bazelFlags = [ From 4655b4957a8e2c76ed1df6906c0d59e6e59ee4f0 Mon Sep 17 00:00:00 2001 From: Danielle Lancashire Date: Wed, 31 Jul 2019 10:50:24 +0200 Subject: [PATCH 1291/1611] nomad: 0.9.3 -> 0.9.4 --- pkgs/applications/networking/cluster/nomad/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix index 63a127def7f..fec737ddb2a 100644 --- a/pkgs/applications/networking/cluster/nomad/default.nix +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -2,7 +2,7 @@ buildGoPackage rec { name = "nomad-${version}"; - version = "0.9.3"; + version = "0.9.4"; rev = "v${version}"; goPackagePath = "github.com/hashicorp/nomad"; @@ -12,7 +12,7 @@ buildGoPackage rec { owner = "hashicorp"; repo = "nomad"; inherit rev; - sha256 = "0hn9rr5v2y2pw0pmn27gz8dx5n964dsaf48sh0jhwc95b5q1rjwr"; + sha256 = "1jgvnmmrz7ffpm6aamdrvklj94n7b43swk9cycqhlfbnzijianpn"; }; # We disable Nvidia GPU scheduling on Linux, as it doesn't work there: From 9f739df21867da6250e598ef7e0868fe941250e7 Mon Sep 17 00:00:00 2001 From: Hugo Reeves Date: Wed, 31 Jul 2019 21:23:17 +1200 Subject: [PATCH 1292/1611] maintainers: add hugoreeves --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index ee279d0429a..5bf922d86d9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -2156,6 +2156,11 @@ github = "hlolli"; name = "Hlodver Sigurdsson"; }; + hugoreeves = { + email = "hugolreeves@gmail.com"; + github = "hugoreeves"; + name = "Hugo Reeves"; + }; hodapp = { email = "hodapp87@gmail.com"; github = "Hodapp87"; From 87b76194266aaf186d0ea506387184c7578b619d Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Mon, 29 Jul 2019 22:39:25 +0300 Subject: [PATCH 1293/1611] gpxsee: 7.9 -> 7.11 --- pkgs/applications/misc/gpxsee/default.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/misc/gpxsee/default.nix b/pkgs/applications/misc/gpxsee/default.nix index 8c9833ae40d..e326e9c1008 100644 --- a/pkgs/applications/misc/gpxsee/default.nix +++ b/pkgs/applications/misc/gpxsee/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchFromGitHub, qmake, qttools, makeWrapper }: +{ mkDerivation, lib, fetchFromGitHub, qmake, qttools }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "gpxsee"; - version = "7.9"; + version = "7.11"; src = fetchFromGitHub { owner = "tumic0"; repo = "GPXSee"; rev = version; - sha256 = "029l5dhc9nnxiw7p0s4gyfkcqw709z7lz96aq8krs75mfk4fv07k"; + sha256 = "1b4ky7m990h3rmam9lb1w6vns1mxd8ri6is3a8qgdl8kd6xcl5d7"; }; - nativeBuildInputs = [ qmake makeWrapper ]; + nativeBuildInputs = [ qmake ]; buildInputs = [ qttools ]; preConfigure = '' @@ -20,12 +20,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - postInstall = '' - wrapProgram $out/bin/gpxsee \ - --prefix XDG_DATA_DIRS ":" $out/share - ''; - - meta = with stdenv.lib; { + meta = with lib; { homepage = https://www.gpxsee.org/; description = "GPS log file viewer and analyzer"; longDescription = '' From f634a929d4d75ca431cf15008a1667e7554b7d00 Mon Sep 17 00:00:00 2001 From: Colin <486199+c00w@users.noreply.github.com> Date: Wed, 31 Jul 2019 06:00:12 -0400 Subject: [PATCH 1294/1611] pythonPackages.tensorflow: Hardcode a second search class. (#65584) It appears without this, libcuda.so.1 is not picked up and nvidia graphics are broken --- pkgs/development/python-modules/tensorflow/bin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix index d02a4e1b9f2..817ba09dc9d 100644 --- a/pkgs/development/python-modules/tensorflow/bin.nix +++ b/pkgs/development/python-modules/tensorflow/bin.nix @@ -91,7 +91,7 @@ in buildPythonPackage rec { lib.optionalString (stdenv.isLinux) '' rrPath="$out/${python.sitePackages}/tensorflow/:$out/${python.sitePackages}/tensorflow/contrib/tensor_forest/:${rpath}" internalLibPath="$out/${python.sitePackages}/tensorflow/python/_pywrap_tensorflow_internal.so" - find $out -name '*${stdenv.hostPlatform.extensions.sharedLibrary}' -exec patchelf --set-rpath "$rrPath" {} \; + find $out \( -name '*.so' -or -name '*.so.*' \) -exec patchelf --set-rpath "$rrPath" {} \; ''; From 3df4e2df9566226fc9c1cedf3cd19f95f2a2679b Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Thu, 20 Jun 2019 20:17:13 +0200 Subject: [PATCH 1295/1611] tensorflow: re-enable build from source [WIP] --- .../python-modules/tensorflow/default.nix | 290 +++++++++++++++--- .../tensorflow/no-saved-proto.patch | 14 + pkgs/top-level/python-packages.nix | 8 +- 3 files changed, 267 insertions(+), 45 deletions(-) create mode 100644 pkgs/development/python-modules/tensorflow/no-saved-proto.patch diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix index a8f902fdb38..98e651a5d95 100644 --- a/pkgs/development/python-modules/tensorflow/default.nix +++ b/pkgs/development/python-modules/tensorflow/default.nix @@ -1,9 +1,42 @@ { stdenv, buildBazelPackage, lib, fetchFromGitHub, fetchpatch, symlinkJoin +, git , buildPythonPackage, isPy3k, pythonOlder, pythonAtLeast -, which, swig, binutils, glibcLocales +, which, binutils, glibcLocales , python, jemalloc, openmpi -, numpy, six, protobuf, tensorflow-tensorboard, backports_weakref, mock, enum34, absl-py -, cudaSupport ? false, nvidia_x11 ? null, cudatoolkit ? null, cudnn ? null +, numpy, tensorflow-tensorboard, backports_weakref, mock, enum34, absl-py +, future +, keras-preprocessing +, keras-applications +, astor +, gast +, google-pasta +, termcolor +, cython +, flatbuffers +, giflib +, libjpeg +, grpc +, grpcio +, hwloc +, icu +, jsoncpp +, lmdb +, nasm +, sqlite +, pcre +, libpng +, six +, snappy +, swig +, wrapt +, zlib +, protobuf +, protobuf_cc +, curl +, tensorflow-estimator +, setuptools +, wheel +, cudaSupport ? false, nvidia_x11 ? null, cudatoolkit ? null, cudnn ? null, nccl ? null # XLA without CUDA is broken , xlaSupport ? cudaSupport # Default from ./configure script @@ -21,7 +54,6 @@ assert cudaSupport -> nvidia_x11 != null assert ! (stdenv.isDarwin && cudaSupport); let - withTensorboard = pythonOlder "3.6"; cudatoolkit_joined = symlinkJoin { @@ -29,40 +61,147 @@ let paths = [ cudatoolkit.out cudatoolkit.lib ]; }; + bazel_cuda_toolkit = symlinkJoin { + name = "bazel-gcc-toolkit"; + paths = [ + cudatoolkit.cc + cudatoolkit.out + cudatoolkit.lib + binutils.bintools # for ar, dwp, nm, objcopy, objdump, strip + ]; + }; + tfFeature = x: if x then "1" else "0"; - version = "1.5.0"; + version = "1.14"; + variant = if cudaSupport then "_gpu" else ""; + pname = "tensorflow${variant}"; - pkg = buildBazelPackage rec { - name = "tensorflow-build-${version}"; + bazel-wheel = buildBazelPackage rec { + # indicate which configuration of the wheel is being built + name = let + python_tag = with lib.versions; "cp${major python.version}${minor python.version}"; # cp37 + arch_platform = lib.splitString "-" stdenv.hostPlatform.system; + platform = lib.last arch_platform; # "linux" + arch = lib.head arch_platform; # "x86_64" + in + # https://www.python.org/dev/peps/pep-0427/#file-name-convention + # tensorflow_gpu-1.14.0-cp27-none-linux_x86_64.whl + "${pname}-${version}-${python_tag}-none-${platform}_${arch}.whl"; src = fetchFromGitHub { owner = "tensorflow"; repo = "tensorflow"; - rev = "v${version}"; - sha256 = "1c4djsaip901nasm7a6dsimr02bsv70a7b1g0kysb4n39qpdh22q"; + rev = "r${version}"; + sha256 = "071rndqh3xy4y5idlykqv656lggp25vy4qx1divz4id3im1zlr13"; }; patches = [ - # Fix build with Bazel >= 0.10 + # Work around https://github.com/tensorflow/tensorflow/issues/24752 + ./no-saved-proto.patch + + # https://github.com/tensorflow/tensorflow/pull/29673 (fetchpatch { - url = "https://github.com/tensorflow/tensorflow/commit/6fcfab770c2672e2250e0f5686b9545d99eb7b2b.patch"; - sha256 = "0p61za1mx3a7gj1s5lsps16fcw18iwnvq2b46v1kyqfgq77a12vb"; + name = "fix-compile-with-cuda-and-mpi.patch"; + url = "https://github.com/tensorflow/tensorflow/pull/29673/commits/498e35a3bfe38dd75cf1416a1a23c07c3b59e6af.patch"; + sha256 = "1m2qmwv1ysqa61z6255xggwbq6mnxbig749bdvrhnch4zydxb4di"; }) + + # https://github.com/tensorflow/tensorflow/issues/29220 (fetchpatch { - url = "https://github.com/tensorflow/tensorflow/commit/3f57956725b553d196974c9ad31badeb3eabf8bb.patch"; - sha256 = "11dja5gqy0qw27sc9b6yw9r0lfk8dznb32vrqqfcnypk2qmv26va"; + name = "bazel-0.27.patch"; + url = "https://github.com/tensorflow/tensorflow/commit/cfccbdb8c4a92dd26382419dceb4d934c2380391.patch"; + sha256 = "1l56wjia2c4685flsfkkgy471wx3c66wyv8khspv06zchj0k0liw"; }) ]; + # On update, it can be useful to steal the changes from gentoo + # https://gitweb.gentoo.org/repo/gentoo.git/tree/sci-libs/tensorflow + nativeBuildInputs = [ swig which ]; - buildInputs = [ python jemalloc openmpi glibcLocales numpy ] - ++ lib.optionals cudaSupport [ cudatoolkit cudnn nvidia_x11 ]; + buildInputs = [ + python + jemalloc + openmpi + glibcLocales + git + + # python deps needed during wheel build time + numpy + keras-preprocessing + + # libs taken from system through the TF_SYS_LIBS mechanism + absl-py + + # for building the wheel + setuptools + wheel + ] ++ lib.optionals (!isPy3k) [ + future + mock + ] ++ lib.optionals cudaSupport [ + cudatoolkit + cudnn + nvidia_x11 + ]; + + # Take as many libraries from the system as possible. Keep in sync with + # list of valid syslibs in + # https://github.com/perfinion/tensorflow/blob/master/third_party/systemlibs/syslibs_configure.bzl + SYSLIBS= [ + "absl_py" + "astor_archive" + "boringssl" + "com_github_googleapis_googleapis" + "com_github_googlecloudplatform_google_cloud_cpp" + "com_google_protobuf" + "com_google_protobuf_cc" + "com_googlesource_code_re2" + "curl" + "cython" + "double_conversion" + "enum34_archive" + "flatbuffers" + "gast_archive" + "gif_archive" + "grpc" + "hwloc" + "icu" + "jpeg" + "jsoncpp_git" + "keras_applications_archive" + "lmdb" + "nasm" + # "nsync" # not packaged in nixpkgs + "sqlite" + "pasta" + "pcre" + "png_archive" + "protobuf_archive" + "six_archive" + "snappy" + "swig" + "termcolor_archive" + "wrapt" + "zlib_archive" + ]; preConfigure = '' patchShebangs configure + # dummy ldconfig + mkdir dummy-ldconfig + echo "#!${stdenv.shell}" > dummy-ldconfig/ldconfig + chmod +x dummy-ldconfig/ldconfig + export PATH="$PWD/dummy-ldconfig:$PATH" + + # arbitrarily set to the current latest bazel version, overly careful + export TF_IGNORE_MAX_BAZEL_VERSION=1 + + # don't rebuild the world + export TF_SYSTEM_LIBS=${lib.concatStringsSep " " SYSLIBS} + export PYTHON_BIN_PATH="${python.interpreter}" export PYTHON_LIB_PATH="$NIX_BUILD_TOP/site-packages" export TF_NEED_GCP=1 @@ -73,26 +212,43 @@ let export TF_NEED_MPI=${tfFeature cudaSupport} export TF_NEED_CUDA=${tfFeature cudaSupport} ${lib.optionalString cudaSupport '' - export CUDA_TOOLKIT_PATH=${cudatoolkit_joined} + export TF_CUDA_PATHS="${cudatoolkit_joined},${cudnn},${nccl}" export TF_CUDA_VERSION=${cudatoolkit.majorVersion} - export CUDNN_INSTALL_PATH=${cudnn} export TF_CUDNN_VERSION=${cudnn.majorVersion} - export GCC_HOST_COMPILER_PATH=${cudatoolkit.cc}/bin/gcc + export GCC_HOST_COMPILER_PATH=${bazel_cuda_toolkit}/bin/gcc + export GCC_HOST_COMPILER_PREFIX="${bazel_cuda_toolkit}/bin" export TF_CUDA_COMPUTE_CAPABILITIES=${lib.concatStringsSep "," cudaCapabilities} ''} + # https://github.com/tensorflow/tensorflow/issues/20919 + sed -i '/androidndk/d' tensorflow/lite/kernels/internal/BUILD + mkdir -p "$PYTHON_LIB_PATH" ''; + # ar, cpp, gcov, strip, gcc, compat-ld, ld, objdump, dwp, nm, objcopy + configurePhase = '' + runHook preConfigure + # no flags (options provided by previously set environment variables) + export AR="${binutils.bintools}/bin/ar" + export BAZEL_TOOLS_OVERRIDE="ar=${binutils.bintools}/bin/ar" + # crosstool used with cuda + ./configure + + runHook postConfigure + ''; + + # FIXME NIX_LDFLAGS = lib.optionals cudaSupport [ "-lcublas" "-lcudnn" "-lcuda" "-lcudart" ]; hardeningDisable = [ "all" ]; - bazelFlags = [ "--config=opt" ] - ++ lib.optional sse42Support "--copt=-msse4.2" - ++ lib.optional avx2Support "--copt=-mavx2" - ++ lib.optional fmaSupport "--copt=-mfma" - ++ lib.optional cudaSupport "--config=cuda"; + bazelFlags = [ + # temporary fixes to make the build work with bazel 0.27 + "--incompatible_no_support_tools_in_action_inputs=false" + ] ++ lib.optional sse42Support "--copt=-msse4.2" + ++ lib.optional avx2Support "--copt=-mavx2" + ++ lib.optional fmaSupport "--copt=-mfma"; bazelTarget = "//tensorflow/tools/pip_package:build_pip_package"; @@ -101,44 +257,94 @@ let rm -rf $bazelOut/external/{bazel_tools,\@bazel_tools.marker,local_*,\@local_*} ''; - sha256 = "1nc98aqrp14q7llypcwaa0kdn9xi7r0p1mnd3vmmn1m299py33ca"; + # cudaSupport causes fetch of ncclArchive, resulting in different hashes + sha256 = if cudaSupport then + "0q1pmw7fzn6l554ap576r48m0zgwb7n1ljhyy1p36708z94scdh4" + else + "14n26h2r4w7wd5sddy4w0s51s2qcwf276n3hvv2505iysa8wqlc3"; }; buildAttrs = { preBuild = '' patchShebangs . - find -type f -name CROSSTOOL\* -exec sed -i \ - -e 's,/usr/bin/ar,${binutils.bintools}/bin/ar,g' \ - {} \; + + # beautiful bash to iterate over files containing a string + # https://github.com/bazelbuild/bazel/issues/5915#issuecomment-505100422 + # .. to make sure the output directory is covered + grep -lrZ '/usr/bin/ar\b' .. | while IFS="" read -r -d "" file; do + # patch /usr/bin/ar to the proper location + echo "File is $file" + sed -i \ + -e 's,/usr/bin/ar\b,${binutils.bintools}/bin/ar,g' \ + "$file" + done + + + # Tensorboard pulls in a bunch of dependencies, some of which may + # include security vulnerabilities. So we make it optional. + # https://github.com/tensorflow/tensorflow/issues/20280#issuecomment-400230560 + sed -i '/tensorboard >=/d' tensorflow/tools/pip_package/setup.py ''; + # Could alternatively use --src instead of --dst to output the sources + # instead of a whee. Generating a wheel makes it easier to unify handling + # of source and binary build though. installPhase = '' - sed -i 's,.*bdist_wheel.*,cp -rL . "$out"; exit 0,' bazel-bin/tensorflow/tools/pip_package/build_pip_package - bazel-bin/tensorflow/tools/pip_package/build_pip_package $PWD/dist + # work around timestamp issues + # https://github.com/NixOS/nixpkgs/issues/270#issuecomment-467583872 + export SOURCE_DATE_EPOCH=315532800 + + # bulid the wheel, then move it to $out (building directly to $out + # would actually put it into a *directory* called $out, but we want the + # file itself in $out) + bazel-bin/tensorflow/tools/pip_package/build_pip_package --dst $PWD/dist + mv dist/*.whl "$out" ''; }; - - dontFixup = true; }; in buildPythonPackage rec { - pname = "tensorflow"; - inherit version; + inherit version pname; - src = pkg; + src = bazel-wheel; - installFlags = lib.optional (!withTensorboard) "--no-dependencies"; + format = "wheel"; - postPatch = lib.optionalString (pythonAtLeast "3.4") '' - sed -i '/enum34/d' setup.py + # Upstream has a pip hack that results in bin/tensorboard being in both tensorflow + # and the propagated input tensorflow-tensorboard, which causes environment collisions. + # Another possibility would be to have tensorboard only in the buildInputs + # https://github.com/tensorflow/tensorflow/blob/v1.7.1/tensorflow/tools/pip_package/setup.py#L79 + postInstall = '' + rm $out/bin/tensorboard ''; - propagatedBuildInputs = [ numpy six protobuf absl-py ] - ++ lib.optional (!isPy3k) mock - ++ lib.optionals (pythonOlder "3.4") [ backports_weakref enum34 ] - ++ lib.optional withTensorboard tensorflow-tensorboard; + # tensorflow/tools/pip_package/setup.py + propagatedBuildInputs = [ + absl-py + astor + gast + google-pasta + keras-applications + keras-preprocessing + numpy + six + protobuf + tensorflow-estimator + termcolor + wrapt + grpcio + ] ++ lib.optionals (!isPy3k) [ + mock + future # FIXME + ] ++ lib.optionals (pythonOlder "3.4") [ + backports_weakref enum34 + ] ++ lib.optionals withTensorboard [ + tensorflow-tensorboard + ]; # Actual tests are slow and impure. + # TODO try to run them anyway + # TODO better test (files in tensorflow/tools/ci_build/builds/*test) checkPhase = '' ${python.interpreter} -c "import tensorflow" ''; diff --git a/pkgs/development/python-modules/tensorflow/no-saved-proto.patch b/pkgs/development/python-modules/tensorflow/no-saved-proto.patch new file mode 100644 index 00000000000..ead112f8ddd --- /dev/null +++ b/pkgs/development/python-modules/tensorflow/no-saved-proto.patch @@ -0,0 +1,14 @@ +diff --git a/tensorflow/cc/saved_model/BUILD b/tensorflow/cc/saved_model/BUILD +index 8626ed0087..27deb34387 100644 +--- a/tensorflow/cc/saved_model/BUILD ++++ b/tensorflow/cc/saved_model/BUILD +@@ -49,9 +49,6 @@ cc_library( + # tf_lib depending on the build platform. + "//tensorflow/core:lib", + "//tensorflow/core:protos_all_cc", +- ]) + if_mobile([ +- # Mobile-friendly SavedModel proto. See go/portable-proto for more info. +- "//tensorflow/core:saved_model_portable_proto", + ]) + if_android([ + "//tensorflow/core:android_tensorflow_lib", + ]) + if_ios([ diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index be6a291b7c7..c28779bf443 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5703,11 +5703,13 @@ in { tensorflow = if stdenv.isDarwin then callPackage ../development/python-modules/tensorflow/bin.nix { } - else callPackage ../development/python-modules/tensorflow/bin.nix rec { + else callPackage ../development/python-modules/tensorflow rec { cudaSupport = pkgs.config.cudaSupport or false; inherit (pkgs.linuxPackages) nvidia_x11; - cudatoolkit = pkgs.cudatoolkit_10_0; - cudnn = pkgs.cudnn_cudatoolkit_10_0; + cudatoolkit = pkgs.cudatoolkit_10; + cudnn = pkgs.cudnn_cudatoolkit_10; + nccl = pkgs.nccl_cudatoolkit_10; + protobuf_cc = pkgs.protobuf; # not the python version }; tensorflowWithoutCuda = self.tensorflow.override { From 2e46ae0daa741031dd96d5bb089e390676878209 Mon Sep 17 00:00:00 2001 From: Yorick van Pelt Date: Sun, 16 Jun 2019 14:58:23 +0200 Subject: [PATCH 1296/1611] libtensorflow: 1.9 -> 1.14.0 This also changes it to a from-source build. --- .../libraries/libtensorflow/default.nix | 140 +++++++++--------- pkgs/top-level/all-packages.nix | 5 +- 2 files changed, 77 insertions(+), 68 deletions(-) diff --git a/pkgs/development/libraries/libtensorflow/default.nix b/pkgs/development/libraries/libtensorflow/default.nix index 98096371e40..e4f6a868e9f 100644 --- a/pkgs/development/libraries/libtensorflow/default.nix +++ b/pkgs/development/libraries/libtensorflow/default.nix @@ -1,80 +1,88 @@ -{ config, stdenv -, fetchurl -, patchelf -, cudaSupport ? config.cudaSupport or false, symlinkJoin, cudatoolkit, cudnn, nvidia_x11 +{ stdenv +, fetchurl, python3, which +, patchelf, fetchFromGitHub, buildBazelPackage +, cudatoolkit, cudnn, nccl, nvidia_x11, symlinkJoin +, binutils, gcc, binutils-unwrapped, gcc-unwrapped +, glibcLocales +, features ? ["sse4.2" "avx" "avx2" "fma"] +, arch ? "x86-64" +, cudaSupport ? false +, computeCapabilities ? [] # example: [ "7.5" ], see https://developer.nvidia.com/cuda-gpus }: -with stdenv.lib; let - tfType = if cudaSupport then "gpu" else "cpu"; - system = - if stdenv.isx86_64 - then if stdenv.isLinux then "linux-x86_64" - else if stdenv.isDarwin then "darwin-x86_64" else unavailable - else unavailable; - unavailable = throw "libtensorflow is not available for this platform!"; + inherit (stdenv) lib; cudatoolkit_joined = symlinkJoin { name = "unsplit_cudatoolkit"; paths = [ cudatoolkit.out cudatoolkit.lib ];}; - rpath = makeLibraryPath ([stdenv.cc.libc stdenv.cc.cc.lib] ++ - optionals cudaSupport [ cudatoolkit_joined cudnn nvidia_x11 ]); - patchLibs = - if stdenv.isDarwin - then '' - install_name_tool -id $out/lib/libtensorflow.so $out/lib/libtensorflow.so - install_name_tool -id $out/lib/libtensorflow_framework.so $out/lib/libtensorflow_framework.so - '' - else '' - ${patchelf}/bin/patchelf --set-rpath "${rpath}:$out/lib" $out/lib/libtensorflow.so - ${patchelf}/bin/patchelf --set-rpath "${rpath}" $out/lib/libtensorflow_framework.so - ''; - -in stdenv.mkDerivation rec { - pname = "libtensorflow"; - version = "1.9.0"; - name = "${pname}-${version}"; - src = fetchurl { - url = "https://storage.googleapis.com/tensorflow/${pname}/${pname}-${tfType}-${system}-${version}.tar.gz"; - sha256 = - if system == "linux-x86_64" then - if cudaSupport - then "1q3mh06x344im25z7r3vgrfksfdsi8fh8ldn6y2mf86h4d11yxc3" - else "0l9ps115ng5ffzdwphlqmj3jhidps2v5afppdzrbpzmy41xz0z21" - else if system == "darwin-x86_64" then - if cudaSupport - then unavailable - else "1qj0v1706w6mczycdsh38h2glyv5d25v62kdn98wxd5rw8f9v657" - else unavailable; + gcc_joined = symlinkJoin { + name = "gcc-joined"; + paths = [ binutils gcc binutils-unwrapped gcc-unwrapped ]; }; - - # Patch library to use our libc, libstdc++ and others - buildCommand = '' - . $stdenv/setup - mkdir -pv $out - tar -C $out -xzf $src - chmod +w $out/lib/libtensorflow.so - chmod +w $out/lib/libtensorflow_framework.so - ${patchLibs} - chmod -w $out/lib/libtensorflow.so - chmod -w $out/lib/libtensorflow_framework.so - - # Write pkgconfig file. - mkdir $out/lib/pkgconfig - cat > $out/lib/pkgconfig/tensorflow.pc << EOF - Name: TensorFlow - Version: ${version} - Description: Library for computation using data flow graphs for scalable machine learning - Requires: - Libs: -L$out/lib -ltensorflow - Cflags: -I$out/include/tensorflow - EOF +in +buildBazelPackage rec { + pname = "tensorflow"; + version = "1.14.0"; + name = "${pname}-${version}"; + bazelFlags = [ "--incompatible_no_support_tools_in_action_inputs=false" ]; + bazelTarget = "//tensorflow/tools/lib_package:libtensorflow"; + fetchAttrs = { + sha256 = if cudaSupport then + "127xxwy3a2h1qsv2sqfhrh65g69hlb1q003vyyg7yjfqgfah9p2z" + else "1di1pnknr1hxdpn75lxf9c6dvb5kgllmgb9r9rgh5c2g9iil17zy"; + }; + CC_OPT_FLAGS = "-march=${arch} " + stdenv.lib.concatMapStringsSep " " (f: "-m"+f) features; + NIX_CFLAGS_COMPILE = CC_OPT_FLAGS; + TF_NEED_CUDA = if cudaSupport then "1" else "0"; + TF_IGNORE_MAX_BAZEL_VERSION = "1"; + TF_CUDA_COMPUTE_CAPABILITIES = stdenv.lib.concatStringsSep "," computeCapabilities; + nativeBuildInputs = [ glibcLocales python3 which ] + ++ (lib.optionals cudaSupport [ + cudatoolkit_joined cudnn nvidia_x11 + ]); + TF_CUDA_PATHS = lib.optionalString cudaSupport "${cudatoolkit_joined},${cudnn}"; + src = fetchFromGitHub { + repo = "tensorflow"; + owner = "tensorflow"; + rev = "v${version}"; + sha256 = "06jvwlsm14b8rqwd8q8796r0vmn0wk64s4ps2zg0sapkmp9vvcmi"; + }; + prePatch = '' + # doesn't work: + sed -i '/saved_model_portable_proto/d' tensorflow/cc/saved_model/BUILD + # calls ldconfig -p: + sed -i 's/+ _get_ld_config_paths()//' third_party/gpus/find_cuda_config.py + patchShebangs ./configure + patchShebangs tensorflow/tools/lib_package/concat_licenses.sh + patchShebangs third_party/gpus/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl ''; - - meta = { + GCC_HOST_COMPILER_PREFIX = lib.optionalString cudaSupport "${gcc_joined}/bin"; + configurePhase = '' + runHook preConfigure + ./configure + runHook postConfigure + ''; + buildAttrs = { + installPhase = '' + mkdir -p $out + tar -xf bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz -C $out + # Write pkgconfig file. + mkdir $out/lib/pkgconfig + cat > $out/lib/pkgconfig/tensorflow.pc << EOF + Name: TensorFlow + Version: ${version} + Description: Library for computation using data flow graphs for scalable machine learning + Requires: + Libs: -L$out/lib -ltensorflow + Cflags: -I$out/include/tensorflow + EOF + ''; + }; + meta = with lib; { description = "C API for TensorFlow"; homepage = https://www.tensorflow.org/versions/master/install/install_c; license = licenses.asl20; platforms = with platforms; linux ++ darwin; - maintainers = [maintainers.basvandijk]; + maintainers = with maintainers; [ basvandijk yorickvp ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0d35b7c9f39..a9342085d34 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1095,8 +1095,9 @@ in libtensorflow = callPackage ../development/libraries/libtensorflow { inherit (linuxPackages) nvidia_x11; - cudatoolkit = cudatoolkit_9_0; - cudnn = cudnn_cudatoolkit_9_0; + cudatoolkit = cudatoolkit_10_0; + cudnn = cudnn_cudatoolkit_10_0; + nccl = nccl_cudatoolkit_10; }; behdad-fonts = callPackage ../data/fonts/behdad-fonts { }; From 170dd558dffd2bb134e3001a93631fc71fe13f3c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 13 Jul 2019 22:37:01 +0300 Subject: [PATCH 1297/1611] python.pkgs.tensorflow: cleanup binary build --- .../python-modules/tensorflow/bin.nix | 25 +++++++++++-------- ...{tf1.14.0-hashes.nix => binary-hashes.nix} | 1 + .../python-modules/tensorflow/prefetcher.sh | 5 +++- 3 files changed, 19 insertions(+), 12 deletions(-) rename pkgs/development/python-modules/tensorflow/{tf1.14.0-hashes.nix => binary-hashes.nix} (98%) mode change 100644 => 100755 pkgs/development/python-modules/tensorflow/prefetcher.sh diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix index 817ba09dc9d..a562ba8f2fa 100644 --- a/pkgs/development/python-modules/tensorflow/bin.nix +++ b/pkgs/development/python-modules/tensorflow/bin.nix @@ -35,15 +35,19 @@ assert cudaSupport -> cudatoolkit != null && cudnn != null && nvidia_x11 != null; + +# unsupported combination +assert ! (stdenv.isDarwin && cudaSupport); + let - cudatoolkit_joined = symlinkJoin { - name = "unsplit_cudatoolkit"; - paths = [ cudatoolkit.out - cudatoolkit.lib ];}; + packages = import ./binary-hashes.nix; + + variant = if cudaSupport then "-gpu" else ""; + pname = "tensorflow${variant}"; in buildPythonPackage rec { - pname = "tensorflow"; - version = "1.14.0"; + inherit pname; + inherit (packages) version; format = "wheel"; src = let @@ -52,8 +56,7 @@ in buildPythonPackage rec { platform = if stdenv.isDarwin then "mac" else "linux"; unit = if cudaSupport then "gpu" else "cpu"; key = "${platform}_py_${pyver}_${unit}"; - dls = import (./. + "/tf${version}-hashes.nix"); - in fetchurl dls.${key}; + in fetchurl packages.${key}; propagatedBuildInputs = [ protobuf @@ -86,9 +89,9 @@ in buildPythonPackage rec { # patchelf --shrink-rpath will remove the cuda libraries. postFixup = let rpath = stdenv.lib.makeLibraryPath - ([ stdenv.cc.cc.lib zlib ] ++ lib.optionals cudaSupport [ cudatoolkit_joined cudnn nvidia_x11 ]); + ([ stdenv.cc.cc.lib zlib ] ++ lib.optionals cudaSupport [ cudatoolkit.out cudatoolkit.lib cudnn nvidia_x11 ]); in - lib.optionalString (stdenv.isLinux) '' + lib.optionalString stdenv.isLinux '' rrPath="$out/${python.sitePackages}/tensorflow/:$out/${python.sitePackages}/tensorflow/contrib/tensor_forest/:${rpath}" internalLibPath="$out/${python.sitePackages}/tensorflow/python/_pywrap_tensorflow_internal.so" find $out \( -name '*.so' -or -name '*.so.*' \) -exec patchelf --set-rpath "$rrPath" {} \; @@ -100,7 +103,7 @@ in buildPythonPackage rec { homepage = http://tensorflow.org; license = licenses.asl20; maintainers = with maintainers; [ jyp abbradar ]; - platforms = with platforms; linux ++ lib.optionals (!cudaSupport) darwin; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; # Python 2.7 build uses different string encoding. # See https://github.com/NixOS/nixpkgs/pull/37044#issuecomment-373452253 broken = stdenv.isDarwin && !isPy3k; diff --git a/pkgs/development/python-modules/tensorflow/tf1.14.0-hashes.nix b/pkgs/development/python-modules/tensorflow/binary-hashes.nix similarity index 98% rename from pkgs/development/python-modules/tensorflow/tf1.14.0-hashes.nix rename to pkgs/development/python-modules/tensorflow/binary-hashes.nix index f6b367aea38..fa4809dc3f1 100644 --- a/pkgs/development/python-modules/tensorflow/tf1.14.0-hashes.nix +++ b/pkgs/development/python-modules/tensorflow/binary-hashes.nix @@ -1,4 +1,5 @@ { +version = "1.14.0"; linux_py_27_cpu = { url = "https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.14.0-cp27-none-linux_x86_64.whl"; sha256 = "0yywdrfk97dh1bxhibspg0raz70fx9lcczj6xlimqy4xb60clx7k"; diff --git a/pkgs/development/python-modules/tensorflow/prefetcher.sh b/pkgs/development/python-modules/tensorflow/prefetcher.sh old mode 100644 new mode 100755 index 3059340d127..d590fb0f173 --- a/pkgs/development/python-modules/tensorflow/prefetcher.sh +++ b/pkgs/development/python-modules/tensorflow/prefetcher.sh @@ -1,7 +1,10 @@ +#!/usr/bin/env bash + version=1.14.0 -hashfile=tf${version}-hashes.nix +hashfile=binary-hashes.nix rm -f $hashfile echo "{" >> $hashfile +echo "version = \"$version\";" >> $hashfile for sys in "linux" "mac"; do for tfpref in "cpu/tensorflow" "gpu/tensorflow_gpu"; do for pykind in "py2-none-any" "py3-none-any" "cp27-none-linux_x86_64" "cp35-cp35m-linux_x86_64" "cp36-cp36m-linux_x86_64" "cp37-cp37m-linux_x86_64"; do From 0a1bf4734fb93ebc7d2240a9d98babdacfcf6100 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 13 Jul 2019 22:38:41 +0300 Subject: [PATCH 1298/1611] libtensorflow: add binary build and add automatic generation --- .../libraries/libtensorflow/default.nix | 88 ------------------- .../libraries/science/math/tensorflow/bin.nix | 72 +++++++++++++++ .../science/math/tensorflow/binary-hashes.nix | 15 ++++ .../science/math/tensorflow/prefetcher.sh | 24 +++++ pkgs/top-level/all-packages.nix | 4 +- 5 files changed, 113 insertions(+), 90 deletions(-) delete mode 100644 pkgs/development/libraries/libtensorflow/default.nix create mode 100644 pkgs/development/libraries/science/math/tensorflow/bin.nix create mode 100644 pkgs/development/libraries/science/math/tensorflow/binary-hashes.nix create mode 100755 pkgs/development/libraries/science/math/tensorflow/prefetcher.sh diff --git a/pkgs/development/libraries/libtensorflow/default.nix b/pkgs/development/libraries/libtensorflow/default.nix deleted file mode 100644 index e4f6a868e9f..00000000000 --- a/pkgs/development/libraries/libtensorflow/default.nix +++ /dev/null @@ -1,88 +0,0 @@ -{ stdenv -, fetchurl, python3, which -, patchelf, fetchFromGitHub, buildBazelPackage -, cudatoolkit, cudnn, nccl, nvidia_x11, symlinkJoin -, binutils, gcc, binutils-unwrapped, gcc-unwrapped -, glibcLocales -, features ? ["sse4.2" "avx" "avx2" "fma"] -, arch ? "x86-64" -, cudaSupport ? false -, computeCapabilities ? [] # example: [ "7.5" ], see https://developer.nvidia.com/cuda-gpus -}: -let - inherit (stdenv) lib; - cudatoolkit_joined = symlinkJoin { - name = "unsplit_cudatoolkit"; - paths = [ cudatoolkit.out - cudatoolkit.lib ];}; - gcc_joined = symlinkJoin { - name = "gcc-joined"; - paths = [ binutils gcc binutils-unwrapped gcc-unwrapped ]; - }; -in -buildBazelPackage rec { - pname = "tensorflow"; - version = "1.14.0"; - name = "${pname}-${version}"; - bazelFlags = [ "--incompatible_no_support_tools_in_action_inputs=false" ]; - bazelTarget = "//tensorflow/tools/lib_package:libtensorflow"; - fetchAttrs = { - sha256 = if cudaSupport then - "127xxwy3a2h1qsv2sqfhrh65g69hlb1q003vyyg7yjfqgfah9p2z" - else "1di1pnknr1hxdpn75lxf9c6dvb5kgllmgb9r9rgh5c2g9iil17zy"; - }; - CC_OPT_FLAGS = "-march=${arch} " + stdenv.lib.concatMapStringsSep " " (f: "-m"+f) features; - NIX_CFLAGS_COMPILE = CC_OPT_FLAGS; - TF_NEED_CUDA = if cudaSupport then "1" else "0"; - TF_IGNORE_MAX_BAZEL_VERSION = "1"; - TF_CUDA_COMPUTE_CAPABILITIES = stdenv.lib.concatStringsSep "," computeCapabilities; - nativeBuildInputs = [ glibcLocales python3 which ] - ++ (lib.optionals cudaSupport [ - cudatoolkit_joined cudnn nvidia_x11 - ]); - TF_CUDA_PATHS = lib.optionalString cudaSupport "${cudatoolkit_joined},${cudnn}"; - src = fetchFromGitHub { - repo = "tensorflow"; - owner = "tensorflow"; - rev = "v${version}"; - sha256 = "06jvwlsm14b8rqwd8q8796r0vmn0wk64s4ps2zg0sapkmp9vvcmi"; - }; - prePatch = '' - # doesn't work: - sed -i '/saved_model_portable_proto/d' tensorflow/cc/saved_model/BUILD - # calls ldconfig -p: - sed -i 's/+ _get_ld_config_paths()//' third_party/gpus/find_cuda_config.py - patchShebangs ./configure - patchShebangs tensorflow/tools/lib_package/concat_licenses.sh - patchShebangs third_party/gpus/crosstool/clang/bin/crosstool_wrapper_driver_is_not_gcc.tpl - ''; - GCC_HOST_COMPILER_PREFIX = lib.optionalString cudaSupport "${gcc_joined}/bin"; - configurePhase = '' - runHook preConfigure - ./configure - runHook postConfigure - ''; - buildAttrs = { - installPhase = '' - mkdir -p $out - tar -xf bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz -C $out - # Write pkgconfig file. - mkdir $out/lib/pkgconfig - cat > $out/lib/pkgconfig/tensorflow.pc << EOF - Name: TensorFlow - Version: ${version} - Description: Library for computation using data flow graphs for scalable machine learning - Requires: - Libs: -L$out/lib -ltensorflow - Cflags: -I$out/include/tensorflow - EOF - ''; - }; - meta = with lib; { - description = "C API for TensorFlow"; - homepage = https://www.tensorflow.org/versions/master/install/install_c; - license = licenses.asl20; - platforms = with platforms; linux ++ darwin; - maintainers = with maintainers; [ basvandijk yorickvp ]; - }; -} diff --git a/pkgs/development/libraries/science/math/tensorflow/bin.nix b/pkgs/development/libraries/science/math/tensorflow/bin.nix new file mode 100644 index 00000000000..3db7a6f1d1e --- /dev/null +++ b/pkgs/development/libraries/science/math/tensorflow/bin.nix @@ -0,0 +1,72 @@ +{ stdenv +, fetchurl +, patchelf +, cudaSupport ? false, symlinkJoin, cudatoolkit, cudnn, nvidia_x11 +}: + +with stdenv.lib; +let + unavailable = throw "libtensorflow is not available for this platform!"; + + tfType = if cudaSupport then "gpu" else "cpu"; + + system = + if stdenv.isLinux then "linux" + else if stdenv.isDarwin then "darwin" + else unavailable; + + platform = + if stdenv.isx86_64 then "x86_64" + else unavailable; + + rpath = makeLibraryPath ([stdenv.cc.libc stdenv.cc.cc.lib] ++ + optionals cudaSupport [ cudatoolkit.out cudatoolkit.lib cudnn nvidia_x11 ]); + + packages = import ./binary-hashes.nix; + packageName = "${tfType}-${system}-${platform}"; + url = packages.${packageName} or unavailable; + + patchLibs = + if stdenv.isDarwin + then '' + install_name_tool -id $out/lib/libtensorflow.dylib $out/lib/libtensorflow.dylib + install_name_tool -id $out/lib/libtensorflow_framework.dylib $out/lib/libtensorflow_framework.dylib + '' + else '' + patchelf --set-rpath "${rpath}:$out/lib" $out/lib/libtensorflow.so + patchelf --set-rpath "${rpath}" $out/lib/libtensorflow_framework.so + ''; + +in stdenv.mkDerivation rec { + pname = "libtensorflow"; + inherit (packages) version; + + src = fetchurl url; + + # Patch library to use our libc, libstdc++ and others + buildCommand = '' + mkdir -pv $out + tar -C $out -xzf $src + chmod -R +w $out + ${patchLibs} + + # Write pkgconfig file. + mkdir $out/lib/pkgconfig + cat > $out/lib/pkgconfig/tensorflow.pc << EOF + Name: TensorFlow + Version: ${version} + Description: Library for computation using data flow graphs for scalable machine learning + Requires: + Libs: -L$out/lib -ltensorflow + Cflags: -I$out/include/tensorflow + EOF + ''; + + meta = { + description = "C API for TensorFlow"; + homepage = https://www.tensorflow.org/install/lang_c; + license = licenses.asl20; + platforms = [ "x86_64-linux" "x86_64-darwin" ]; + maintainers = with maintainers; [ basvandijk ]; + }; +} diff --git a/pkgs/development/libraries/science/math/tensorflow/binary-hashes.nix b/pkgs/development/libraries/science/math/tensorflow/binary-hashes.nix new file mode 100644 index 00000000000..892dfa2a609 --- /dev/null +++ b/pkgs/development/libraries/science/math/tensorflow/binary-hashes.nix @@ -0,0 +1,15 @@ +{ +version = "1.14.0"; +"cpu-linux-x86_64" = { + url = "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-linux-x86_64-1.14.0.tar.gz"; + sha256 = "04bi3ijq4sbb8c5vk964zlv0j9mrjnzzxd9q9knq3h273nc1a36k"; +}; +"gpu-linux-x86_64" = { + url = "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-gpu-linux-x86_64-1.14.0.tar.gz"; + sha256 = "1ffnpyj9jjgwxpjfiyjvq4dm3n6nwiksim5jld9zw7fdswh215x6"; +}; +"cpu-darwin-x86_64" = { + url = "https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-cpu-darwin-x86_64-1.14.0.tar.gz"; + sha256 = "0zsd5ils1a17j6jzh0c7q1z56fw46gkzybbnms7h2rgg8al0rh92"; +}; +} diff --git a/pkgs/development/libraries/science/math/tensorflow/prefetcher.sh b/pkgs/development/libraries/science/math/tensorflow/prefetcher.sh new file mode 100755 index 00000000000..515f25df4c1 --- /dev/null +++ b/pkgs/development/libraries/science/math/tensorflow/prefetcher.sh @@ -0,0 +1,24 @@ +#!/usr/bin/env bash + +version=1.14.0 +hashfile=binary-hashes.nix +rm -f $hashfile +echo "{" >> $hashfile +echo "version = \"$version\";" >> $hashfile +for sys in "linux" "darwin"; do + for tfpref in "cpu" "gpu"; do + for platform in "x86_64"; do + if [ $sys = "darwin" ] && [ $tfpref = "gpu" ]; then + continue + fi + url=https://storage.googleapis.com/tensorflow/libtensorflow/libtensorflow-$tfpref-$sys-$platform-$version.tar.gz + hash=$(nix-prefetch-url $url) + echo "\"${tfpref}-${sys}-${platform}\" = {" >> $hashfile + echo " url = \"$url\";" >> $hashfile + echo " sha256 = \"$hash\";" >> $hashfile + echo "};" >> $hashfile + done + done +done +echo "}" >> $hashfile + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a9342085d34..a16369a1e07 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1093,11 +1093,11 @@ in tensor = libsForQt5.callPackage ../applications/networking/instant-messengers/tensor { }; - libtensorflow = callPackage ../development/libraries/libtensorflow { + libtensorflow = callPackage ../development/libraries/science/math/tensorflow/bin.nix { + cudaSupport = pkgs.config.cudaSupport or false; inherit (linuxPackages) nvidia_x11; cudatoolkit = cudatoolkit_10_0; cudnn = cudnn_cudatoolkit_10_0; - nccl = nccl_cudatoolkit_10; }; behdad-fonts = callPackage ../data/fonts/behdad-fonts { }; From 019c13616b512d0f8b3bd3e5e17356401a8e4457 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 13 Jul 2019 22:42:50 +0300 Subject: [PATCH 1299/1611] tensorflow: cleanup and merge with libtensorflow This merges work done by yorickvP and timokau in #63208 and #63616 respectively. Now the derivation builds both libtensorflow and the Python package and puts them into different outputs. Quite a bit of improvements were done on the top, including: * Use official tag revision as source, not a branch; * Use all system libraries possible (before only one was actually used); * Move various environment variables to the derivation itself from hooks; * Use source Python build instead of wheel build to ensure fixup hooks do their important jobs on libraries; * And more that I forgot! --- .../python-modules/tensorflow/default.nix | 267 +++++++++--------- .../tensorflow/system-jsoncpp.patch | 21 ++ pkgs/top-level/all-packages.nix | 15 +- pkgs/top-level/python-packages.nix | 8 +- 4 files changed, 169 insertions(+), 142 deletions(-) create mode 100644 pkgs/development/python-modules/tensorflow/system-jsoncpp.patch diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix index 98e651a5d95..d2d8d50fda4 100644 --- a/pkgs/development/python-modules/tensorflow/default.nix +++ b/pkgs/development/python-modules/tensorflow/default.nix @@ -1,41 +1,15 @@ -{ stdenv, buildBazelPackage, lib, fetchFromGitHub, fetchpatch, symlinkJoin -, git -, buildPythonPackage, isPy3k, pythonOlder, pythonAtLeast -, which, binutils, glibcLocales -, python, jemalloc, openmpi +{ stdenv, pkgs, buildBazelPackage, lib, fetchFromGitHub, fetchpatch, symlinkJoin +# Python deps +, buildPythonPackage, isPy3k, pythonOlder, pythonAtLeast, python +# Python libraries , numpy, tensorflow-tensorboard, backports_weakref, mock, enum34, absl-py -, future -, keras-preprocessing -, keras-applications -, astor -, gast -, google-pasta -, termcolor -, cython -, flatbuffers -, giflib -, libjpeg -, grpc -, grpcio -, hwloc -, icu -, jsoncpp -, lmdb -, nasm -, sqlite -, pcre -, libpng -, six -, snappy -, swig -, wrapt -, zlib -, protobuf -, protobuf_cc -, curl -, tensorflow-estimator -, setuptools -, wheel +, future, setuptools, wheel, keras-preprocessing, keras-applications, google-pasta +, termcolor, grpcio, six, wrapt, protobuf, tensorflow-estimator +# Common deps +, git, swig, which, binutils, glibcLocales, cython +# Common libraries +, jemalloc, openmpi, astor, gast, grpc, sqlite, openssl, jsoncpp, re2 +, curl, snappy, flatbuffers, icu, double-conversion, libpng, libjpeg, giflib , cudaSupport ? false, nvidia_x11 ? null, cudatoolkit ? null, cudnn ? null, nccl ? null # XLA without CUDA is broken , xlaSupport ? cudaSupport @@ -57,48 +31,51 @@ let withTensorboard = pythonOlder "3.6"; cudatoolkit_joined = symlinkJoin { - name = "${cudatoolkit.name}-unsplit"; + name = "${cudatoolkit.name}-merged"; paths = [ cudatoolkit.out cudatoolkit.lib ]; }; - bazel_cuda_toolkit = symlinkJoin { - name = "bazel-gcc-toolkit"; + cudatoolkit_cc_joined = symlinkJoin { + name = "${cudatoolkit.cc.name}-merged"; paths = [ cudatoolkit.cc - cudatoolkit.out - cudatoolkit.lib binutils.bintools # for ar, dwp, nm, objcopy, objdump, strip ]; }; + # Needed for _some_ system libraries, grep INCLUDEDIR. + includes_joined = symlinkJoin { + name = "tensorflow-deps-merged"; + paths = [ + pkgs.protobuf + jsoncpp + ]; + }; + tfFeature = x: if x then "1" else "0"; - version = "1.14"; - variant = if cudaSupport then "_gpu" else ""; + version = "1.14.0"; + variant = if cudaSupport then "-gpu" else ""; pname = "tensorflow${variant}"; - bazel-wheel = buildBazelPackage rec { - # indicate which configuration of the wheel is being built - name = let - python_tag = with lib.versions; "cp${major python.version}${minor python.version}"; # cp37 - arch_platform = lib.splitString "-" stdenv.hostPlatform.system; - platform = lib.last arch_platform; # "linux" - arch = lib.head arch_platform; # "x86_64" - in - # https://www.python.org/dev/peps/pep-0427/#file-name-convention - # tensorflow_gpu-1.14.0-cp27-none-linux_x86_64.whl - "${pname}-${version}-${python_tag}-none-${platform}_${arch}.whl"; + # TODO: remove after there's support for setupPyDistFlags + setuppy = ../../../development/interpreters/python/run_setup.py; + + bazel-build = buildBazelPackage rec { + name = "${pname}-${version}"; src = fetchFromGitHub { owner = "tensorflow"; repo = "tensorflow"; - rev = "r${version}"; - sha256 = "071rndqh3xy4y5idlykqv656lggp25vy4qx1divz4id3im1zlr13"; + rev = "v${version}"; + sha256 = "06jvwlsm14b8rqwd8q8796r0vmn0wk64s4ps2zg0sapkmp9vvcmi"; }; patches = [ # Work around https://github.com/tensorflow/tensorflow/issues/24752 ./no-saved-proto.patch + # Fixes for NixOS jsoncpp + ./system-jsoncpp.patch # https://github.com/tensorflow/tensorflow/pull/29673 (fetchpatch { @@ -118,7 +95,9 @@ let # On update, it can be useful to steal the changes from gentoo # https://gitweb.gentoo.org/repo/gentoo.git/tree/sci-libs/tensorflow - nativeBuildInputs = [ swig which ]; + nativeBuildInputs = [ + swig which cython + ]; buildInputs = [ python @@ -130,9 +109,30 @@ let # python deps needed during wheel build time numpy keras-preprocessing + protobuf + wrapt + gast + astor + absl-py + termcolor + keras-applications # libs taken from system through the TF_SYS_LIBS mechanism - absl-py + grpc + sqlite + openssl + jsoncpp + pkgs.protobuf + curl + snappy + flatbuffers + icu + double-conversion + libpng + libjpeg + giflib + re2 + pkgs.lmdb # for building the wheel setuptools @@ -146,22 +146,26 @@ let nvidia_x11 ]; + + # arbitrarily set to the current latest bazel version, overly careful + TF_IGNORE_MAX_BAZEL_VERSION = true; + # Take as many libraries from the system as possible. Keep in sync with # list of valid syslibs in - # https://github.com/perfinion/tensorflow/blob/master/third_party/systemlibs/syslibs_configure.bzl - SYSLIBS= [ + # https://github.com/tensorflow/tensorflow/blob/master/third_party/systemlibs/syslibs_configure.bzl + TF_SYSTEM_LIBS = lib.concatStringsSep "," [ "absl_py" "astor_archive" "boringssl" - "com_github_googleapis_googleapis" - "com_github_googlecloudplatform_google_cloud_cpp" + # Not packaged in nixpkgs + # "com_github_googleapis_googleapis" + # "com_github_googlecloudplatform_google_cloud_cpp" "com_google_protobuf" "com_google_protobuf_cc" "com_googlesource_code_re2" "curl" "cython" "double_conversion" - "enum34_archive" "flatbuffers" "gast_archive" "gif_archive" @@ -174,7 +178,7 @@ let "lmdb" "nasm" # "nsync" # not packaged in nixpkgs - "sqlite" + "org_sqlite" "pasta" "pcre" "png_archive" @@ -187,6 +191,34 @@ let "zlib_archive" ]; + INCLUDEDIR = "${includes_joined}/include"; + + PYTHON_BIN_PATH = python.interpreter; + + TF_NEED_GCP = true; + TF_NEED_HDFS = true; + TF_ENABLE_XLA = tfFeature xlaSupport; + + CC_OPT_FLAGS = " "; + + # https://github.com/tensorflow/tensorflow/issues/14454 + TF_NEED_MPI = tfFeature cudaSupport; + + TF_NEED_CUDA = tfFeature cudaSupport; + TF_CUDA_PATHS = lib.optionalString cudaSupport "${cudatoolkit_joined},${cudnn},${nccl}"; + GCC_HOST_COMPILER_PREFIX = lib.optionalString cudaSupport "${cudatoolkit_cc_joined}/bin"; + TF_CUDA_COMPUTE_CAPABILITIES = lib.concatStringsSep "," cudaCapabilities; + + postPatch = '' + # https://github.com/tensorflow/tensorflow/issues/20919 + sed -i '/androidndk/d' tensorflow/lite/kernels/internal/BUILD + + # Tensorboard pulls in a bunch of dependencies, some of which may + # include security vulnerabilities. So we make it optional. + # https://github.com/tensorflow/tensorflow/issues/20280#issuecomment-400230560 + sed -i '/tensorboard >=/d' tensorflow/tools/pip_package/setup.py + ''; + preConfigure = '' patchShebangs configure @@ -196,52 +228,21 @@ let chmod +x dummy-ldconfig/ldconfig export PATH="$PWD/dummy-ldconfig:$PATH" - # arbitrarily set to the current latest bazel version, overly careful - export TF_IGNORE_MAX_BAZEL_VERSION=1 - - # don't rebuild the world - export TF_SYSTEM_LIBS=${lib.concatStringsSep " " SYSLIBS} - - export PYTHON_BIN_PATH="${python.interpreter}" export PYTHON_LIB_PATH="$NIX_BUILD_TOP/site-packages" - export TF_NEED_GCP=1 - export TF_NEED_HDFS=1 - export TF_ENABLE_XLA=${tfFeature xlaSupport} - export CC_OPT_FLAGS=" " - # https://github.com/tensorflow/tensorflow/issues/14454 - export TF_NEED_MPI=${tfFeature cudaSupport} - export TF_NEED_CUDA=${tfFeature cudaSupport} - ${lib.optionalString cudaSupport '' - export TF_CUDA_PATHS="${cudatoolkit_joined},${cudnn},${nccl}" - export TF_CUDA_VERSION=${cudatoolkit.majorVersion} - export TF_CUDNN_VERSION=${cudnn.majorVersion} - export GCC_HOST_COMPILER_PATH=${bazel_cuda_toolkit}/bin/gcc - export GCC_HOST_COMPILER_PREFIX="${bazel_cuda_toolkit}/bin" - export TF_CUDA_COMPUTE_CAPABILITIES=${lib.concatStringsSep "," cudaCapabilities} - ''} - - # https://github.com/tensorflow/tensorflow/issues/20919 - sed -i '/androidndk/d' tensorflow/lite/kernels/internal/BUILD - mkdir -p "$PYTHON_LIB_PATH" ''; - # ar, cpp, gcov, strip, gcc, compat-ld, ld, objdump, dwp, nm, objcopy configurePhase = '' runHook preConfigure - # no flags (options provided by previously set environment variables) - export AR="${binutils.bintools}/bin/ar" - export BAZEL_TOOLS_OVERRIDE="ar=${binutils.bintools}/bin/ar" - # crosstool used with cuda ./configure - runHook postConfigure ''; - # FIXME - NIX_LDFLAGS = lib.optionals cudaSupport [ "-lcublas" "-lcudnn" "-lcuda" "-lcudart" ]; + # FIXME: Tensorflow uses dlopen() for CUDA libraries. + # No idea why gpr isn't linked properly; perhaps Tensorflow expects a static library? + NIX_LDFLAGS = [ "-lgpr" ] ++ lib.optionals cudaSupport [ "-lcudart" "-lcublas" "-lcufft" "-lcurand" "-lcusolver" "-lcusparse" "-lcudnn" ]; - hardeningDisable = [ "all" ]; + hardeningDisable = [ "format" ]; bazelFlags = [ # temporary fixes to make the build work with bazel 0.27 @@ -250,7 +251,7 @@ let ++ lib.optional avx2Support "--copt=-mavx2" ++ lib.optional fmaSupport "--copt=-mfma"; - bazelTarget = "//tensorflow/tools/pip_package:build_pip_package"; + bazelTarget = "//tensorflow/tools/pip_package:build_pip_package //tensorflow/tools/lib_package:libtensorflow"; fetchAttrs = { preInstall = '' @@ -259,46 +260,36 @@ let # cudaSupport causes fetch of ncclArchive, resulting in different hashes sha256 = if cudaSupport then - "0q1pmw7fzn6l554ap576r48m0zgwb7n1ljhyy1p36708z94scdh4" + "0gmwwcld8hm1nfxmx2w2gqxjxq5b5ln7vbxn0x63x9yy7avs3dkp" else - "14n26h2r4w7wd5sddy4w0s51s2qcwf276n3hvv2505iysa8wqlc3"; + "1d67h0n461cyfimzlsj6bv9p95iv9jhglr0izdc6y0n6w09z8pw0"; }; buildAttrs = { + outputs = [ "out" "python" ]; + preBuild = '' patchShebangs . - - # beautiful bash to iterate over files containing a string - # https://github.com/bazelbuild/bazel/issues/5915#issuecomment-505100422 - # .. to make sure the output directory is covered - grep -lrZ '/usr/bin/ar\b' .. | while IFS="" read -r -d "" file; do - # patch /usr/bin/ar to the proper location - echo "File is $file" - sed -i \ - -e 's,/usr/bin/ar\b,${binutils.bintools}/bin/ar,g' \ - "$file" - done - - - # Tensorboard pulls in a bunch of dependencies, some of which may - # include security vulnerabilities. So we make it optional. - # https://github.com/tensorflow/tensorflow/issues/20280#issuecomment-400230560 - sed -i '/tensorboard >=/d' tensorflow/tools/pip_package/setup.py ''; - # Could alternatively use --src instead of --dst to output the sources - # instead of a whee. Generating a wheel makes it easier to unify handling - # of source and binary build though. installPhase = '' - # work around timestamp issues - # https://github.com/NixOS/nixpkgs/issues/270#issuecomment-467583872 - export SOURCE_DATE_EPOCH=315532800 + mkdir -p "$out" + tar -xf bazel-bin/tensorflow/tools/lib_package/libtensorflow.tar.gz -C "$out" + # Write pkgconfig file. + mkdir "$out/lib/pkgconfig" + cat > "$out/lib/pkgconfig/tensorflow.pc" << EOF + Name: TensorFlow + Version: ${version} + Description: Library for computation using data flow graphs for scalable machine learning + Requires: + Libs: -L$out/lib -ltensorflow + Cflags: -I$out/include/tensorflow + EOF - # bulid the wheel, then move it to $out (building directly to $out - # would actually put it into a *directory* called $out, but we want the - # file itself in $out) - bazel-bin/tensorflow/tools/pip_package/build_pip_package --dst $PWD/dist - mv dist/*.whl "$out" + # build the source code, then copy it to $python (build_pip_package + # actually builds a symlink farm so we must dereference them). + bazel-bin/tensorflow/tools/pip_package/build_pip_package --src "$PWD/dist" + cp -Lr "$PWD/dist" "$python" ''; }; }; @@ -306,9 +297,7 @@ let in buildPythonPackage rec { inherit version pname; - src = bazel-wheel; - - format = "wheel"; + src = bazel-build.python; # Upstream has a pip hack that results in bin/tensorboard being in both tensorflow # and the propagated input tensorflow-tensorboard, which causes environment collisions. @@ -318,6 +307,14 @@ in buildPythonPackage rec { rm $out/bin/tensorboard ''; + # TODO: remove after there's support for setupPyDistFlags + buildPhase = '' + runHook preBuild + cp ${setuppy} nix_run_setup + ${python.interpreter} nix_run_setup --project_name ${pname} bdist_wheel + runHook postBuild + ''; + # tensorflow/tools/pip_package/setup.py propagatedBuildInputs = [ absl-py @@ -349,6 +346,8 @@ in buildPythonPackage rec { ${python.interpreter} -c "import tensorflow" ''; + passthru.libtensorflow = bazel-build.out; + meta = with stdenv.lib; { description = "Computation using data flow graphs for scalable machine learning"; homepage = http://tensorflow.org; diff --git a/pkgs/development/python-modules/tensorflow/system-jsoncpp.patch b/pkgs/development/python-modules/tensorflow/system-jsoncpp.patch new file mode 100644 index 00000000000..ecb2d04d7ee --- /dev/null +++ b/pkgs/development/python-modules/tensorflow/system-jsoncpp.patch @@ -0,0 +1,21 @@ +diff --git a/third_party/systemlibs/jsoncpp.BUILD b/third_party/systemlibs/jsoncpp.BUILD +index 526fd0c418..646f3fdcea 100644 +--- a/third_party/systemlibs/jsoncpp.BUILD ++++ b/third_party/systemlibs/jsoncpp.BUILD +@@ -7,6 +7,7 @@ filegroup( + + HEADERS = [ + "include/json/autolink.h", ++ "include/json/allocator.h", + "include/json/config.h", + "include/json/features.h", + "include/json/forwards.h", +@@ -23,7 +24,7 @@ genrule( + cmd = """ + for i in $(OUTS); do + i=$${i##*/} +- ln -sf $(INCLUDEDIR)/jsoncpp/json/$$i $(@D)/include/json/$$i ++ ln -sf $(INCLUDEDIR)/json/$$i $(@D)/include/json/$$i + done + """, + ) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a16369a1e07..55aa3e59f0a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1093,12 +1093,15 @@ in tensor = libsForQt5.callPackage ../applications/networking/instant-messengers/tensor { }; - libtensorflow = callPackage ../development/libraries/science/math/tensorflow/bin.nix { - cudaSupport = pkgs.config.cudaSupport or false; - inherit (linuxPackages) nvidia_x11; - cudatoolkit = cudatoolkit_10_0; - cudnn = cudnn_cudatoolkit_10_0; - }; + libtensorflow = + if python.pkgs.tensorflow ? libtensorflow + then python.pkgs.tensorflow.libtensorflow + else callPackage ../development/libraries/science/math/tensorflow/bin.nix { + cudaSupport = pkgs.config.cudaSupport or false; + inherit (linuxPackages) nvidia_x11; + cudatoolkit = cudatoolkit_10_0; + cudnn = cudnn_cudatoolkit_10_0; + }; behdad-fonts = callPackage ../data/fonts/behdad-fonts { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c28779bf443..429d26db0f1 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5702,14 +5702,18 @@ in { tensorflow = if stdenv.isDarwin - then callPackage ../development/python-modules/tensorflow/bin.nix { } + then callPackage ../development/python-modules/tensorflow/bin.nix { + cudaSupport = pkgs.config.cudaSupport or false; + inherit (pkgs.linuxPackages) nvidia_x11; + cudatoolkit = pkgs.cudatoolkit_10; + cudnn = pkgs.cudnn_cudatoolkit_10; + } else callPackage ../development/python-modules/tensorflow rec { cudaSupport = pkgs.config.cudaSupport or false; inherit (pkgs.linuxPackages) nvidia_x11; cudatoolkit = pkgs.cudatoolkit_10; cudnn = pkgs.cudnn_cudatoolkit_10; nccl = pkgs.nccl_cudatoolkit_10; - protobuf_cc = pkgs.protobuf; # not the python version }; tensorflowWithoutCuda = self.tensorflow.override { From e458a340128834024d3445af5e40fecfbbfea086 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Thu, 18 Jul 2019 13:49:00 +0200 Subject: [PATCH 1300/1611] buildBazelPackage: add flags for build and fetch They sometimes take separate flags. --- pkgs/build-support/build-bazel-package/default.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/build-support/build-bazel-package/default.nix b/pkgs/build-support/build-bazel-package/default.nix index a308eb8aaa4..32cec42160f 100644 --- a/pkgs/build-support/build-bazel-package/default.nix +++ b/pkgs/build-support/build-bazel-package/default.nix @@ -4,7 +4,7 @@ , lib }: -args@{ name, bazelFlags ? [], bazelTarget, buildAttrs, fetchAttrs, ... }: +args@{ name, bazelFlags ? [], bazelBuildFlags ? [], bazelFetchFlags ? [], bazelTarget, buildAttrs, fetchAttrs, ... }: let fArgs = removeAttrs args [ "buildAttrs" "fetchAttrs" ]; @@ -12,11 +12,11 @@ let fFetchAttrs = fArgs // removeAttrs fetchAttrs [ "sha256" ]; in stdenv.mkDerivation (fBuildAttrs // { - inherit name bazelFlags bazelTarget; + inherit name bazelFlags bazelBuildFlags bazelFetchFlags bazelTarget; deps = stdenv.mkDerivation (fFetchAttrs // { name = "${name}-deps"; - inherit bazelFlags bazelTarget; + inherit bazelFlags bazelBuildFlags bazelFetchFlags bazelTarget; nativeBuildInputs = fFetchAttrs.nativeBuildInputs or [] ++ [ bazel ]; @@ -49,6 +49,7 @@ in stdenv.mkDerivation (fBuildAttrs // { fetch \ --loading_phase_threads=1 \ $bazelFlags \ + $bazelFetchFlags \ $bazelTarget runHook postBuild @@ -149,6 +150,7 @@ in stdenv.mkDerivation (fBuildAttrs // { "''${host_linkopts[@]}" \ '' + '' $bazelFlags \ + $bazelBuildFlags \ $bazelTarget runHook postBuild From d30ec1a0efce74768979ce253bfe3922d85e3503 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Thu, 18 Jul 2019 13:49:30 +0200 Subject: [PATCH 1301/1611] python.pkgs.tensorflow: fix optimization flags Now need to be passed in the configure phase. abbradar: Don't change CUDA build hash. --- .../python-modules/tensorflow/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix index d2d8d50fda4..a645e6d7909 100644 --- a/pkgs/development/python-modules/tensorflow/default.nix +++ b/pkgs/development/python-modules/tensorflow/default.nix @@ -219,7 +219,12 @@ let sed -i '/tensorboard >=/d' tensorflow/tools/pip_package/setup.py ''; - preConfigure = '' + preConfigure = let + opt_flags = [] + ++ lib.optionals sse42Support ["-msse4.2"] + ++ lib.optionals avx2Support ["-mavx2"] + ++ lib.optionals fmaSupport ["-mfma"]; + in '' patchShebangs configure # dummy ldconfig @@ -229,6 +234,7 @@ let export PATH="$PWD/dummy-ldconfig:$PATH" export PYTHON_LIB_PATH="$NIX_BUILD_TOP/site-packages" + export CC_OPT_FLAGS="${lib.concatStringsSep " " opt_flags}" mkdir -p "$PYTHON_LIB_PATH" ''; @@ -247,9 +253,10 @@ let bazelFlags = [ # temporary fixes to make the build work with bazel 0.27 "--incompatible_no_support_tools_in_action_inputs=false" - ] ++ lib.optional sse42Support "--copt=-msse4.2" - ++ lib.optional avx2Support "--copt=-mavx2" - ++ lib.optional fmaSupport "--copt=-mfma"; + ]; + bazelBuildFlags = [ + "--config=opt" # optimize using the flags set in the configure phase + ]; bazelTarget = "//tensorflow/tools/pip_package:build_pip_package //tensorflow/tools/lib_package:libtensorflow"; @@ -260,7 +267,7 @@ let # cudaSupport causes fetch of ncclArchive, resulting in different hashes sha256 = if cudaSupport then - "0gmwwcld8hm1nfxmx2w2gqxjxq5b5ln7vbxn0x63x9yy7avs3dkp" + "07p6f3rbdw7y2ky5wrldjcvzdzhcynlmmydwb7cz12iphazhmipy" else "1d67h0n461cyfimzlsj6bv9p95iv9jhglr0izdc6y0n6w09z8pw0"; }; From 19cdfe87f912a3491755dc65493542011325d311 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 25 Jul 2019 16:00:22 +0300 Subject: [PATCH 1302/1611] python.pkgs.tensorflow: update dependencies hash --- pkgs/development/python-modules/tensorflow/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix index a645e6d7909..43134fb746d 100644 --- a/pkgs/development/python-modules/tensorflow/default.nix +++ b/pkgs/development/python-modules/tensorflow/default.nix @@ -267,9 +267,9 @@ let # cudaSupport causes fetch of ncclArchive, resulting in different hashes sha256 = if cudaSupport then - "07p6f3rbdw7y2ky5wrldjcvzdzhcynlmmydwb7cz12iphazhmipy" + "1rbzvir569ch33bpvm47byx954vr80rjnzrbgs4rg3bqww73hr3k" else - "1d67h0n461cyfimzlsj6bv9p95iv9jhglr0izdc6y0n6w09z8pw0"; + "1wnhma450zh72raiq7ddd9lyq3a056cjqiy6i7y4sidiy09ncvcg"; }; buildAttrs = { From 6a91d13092cb259f3ad2605d0420ae7d3eb52c05 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Wed, 31 Jul 2019 12:31:37 +0200 Subject: [PATCH 1303/1611] jellyfin: 10.3.6 -> 10.3.7 --- pkgs/servers/jellyfin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/jellyfin/default.nix b/pkgs/servers/jellyfin/default.nix index 9345fbe03d6..a0cb4dc2eaf 100644 --- a/pkgs/servers/jellyfin/default.nix +++ b/pkgs/servers/jellyfin/default.nix @@ -18,12 +18,12 @@ let in stdenv.mkDerivation rec { pname = "jellyfin"; - version = "10.3.6"; + version = "10.3.7"; # Impossible to build anything offline with dotnet src = fetchurl { url = "https://github.com/jellyfin/jellyfin/releases/download/v${version}/jellyfin_${version}_portable.tar.gz"; - sha256 = "1vkb952y4n2gxgm2grxmpx93mljzfqm1m9f13lbw7qdhxb80zy41"; + sha256 = "1lpd0dvf7x0wgl8bllqzk54nnbn9fj73jcsz292g7nip1ippgibl"; }; buildInputs = [ From cd0e461f93972c754ed7cd0cd0129bc56a9fdbdd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 31 Jul 2019 13:33:26 +0300 Subject: [PATCH 1304/1611] tensorflow: expose binary builds --- pkgs/top-level/all-packages.nix | 14 ++++++++------ pkgs/top-level/python-packages.nix | 31 +++++++++++++++--------------- 2 files changed, 24 insertions(+), 21 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 55aa3e59f0a..8d3f900b5a6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1093,15 +1093,17 @@ in tensor = libsForQt5.callPackage ../applications/networking/instant-messengers/tensor { }; + libtensorflow-bin = callPackage ../development/libraries/science/math/tensorflow/bin.nix { + cudaSupport = pkgs.config.cudaSupport or false; + inherit (linuxPackages) nvidia_x11; + cudatoolkit = cudatoolkit_10_0; + cudnn = cudnn_cudatoolkit_10_0; + }; + libtensorflow = if python.pkgs.tensorflow ? libtensorflow then python.pkgs.tensorflow.libtensorflow - else callPackage ../development/libraries/science/math/tensorflow/bin.nix { - cudaSupport = pkgs.config.cudaSupport or false; - inherit (linuxPackages) nvidia_x11; - cudatoolkit = cudatoolkit_10_0; - cudnn = cudnn_cudatoolkit_10_0; - }; + else libtensorflow-bin; behdad-fonts = callPackage ../data/fonts/behdad-fonts { }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 429d26db0f1..68718fe9f6b 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -5700,21 +5700,22 @@ in { tensorflow-tensorboard = callPackage ../development/python-modules/tensorflow-tensorboard { }; - tensorflow = - if stdenv.isDarwin - then callPackage ../development/python-modules/tensorflow/bin.nix { - cudaSupport = pkgs.config.cudaSupport or false; - inherit (pkgs.linuxPackages) nvidia_x11; - cudatoolkit = pkgs.cudatoolkit_10; - cudnn = pkgs.cudnn_cudatoolkit_10; - } - else callPackage ../development/python-modules/tensorflow rec { - cudaSupport = pkgs.config.cudaSupport or false; - inherit (pkgs.linuxPackages) nvidia_x11; - cudatoolkit = pkgs.cudatoolkit_10; - cudnn = pkgs.cudnn_cudatoolkit_10; - nccl = pkgs.nccl_cudatoolkit_10; - }; + tensorflow-bin = callPackage ../development/python-modules/tensorflow/bin.nix { + cudaSupport = pkgs.config.cudaSupport or false; + inherit (pkgs.linuxPackages) nvidia_x11; + cudatoolkit = pkgs.cudatoolkit_10; + cudnn = pkgs.cudnn_cudatoolkit_10; + }; + + tensorflow-build = callPackage ../development/python-modules/tensorflow { + cudaSupport = pkgs.config.cudaSupport or false; + inherit (pkgs.linuxPackages) nvidia_x11; + cudatoolkit = pkgs.cudatoolkit_10; + cudnn = pkgs.cudnn_cudatoolkit_10; + nccl = pkgs.nccl_cudatoolkit_10; + }; + + tensorflow = if stdenv.isDarwin then self.tensorflow-bin else self.tensorflow-build; tensorflowWithoutCuda = self.tensorflow.override { cudaSupport = false; From d18f4acdf1ee46102e7426b825f972b4454791d8 Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Fri, 14 Jun 2019 01:05:39 +0000 Subject: [PATCH 1305/1611] chromium: 75.0.3770.90 -> 76.0.3809.87 Fixed in 75.0.3770.142: CVE-2019-5847 CVE-2019-5848 Fixed in 76.0.3809.87: CVE-2019-5850 CVE-2019-5860 CVE-2019-5853 CVE-2019-5851 CVE-2019-5859 CVE-2019-5856 CVE-2019-5863 CVE-2019-5855 CVE-2019-5865 CVE-2019-5858 CVE-2019-5864 CVE-2019-5862 CVE-2019-5861 CVE-2019-5857 CVE-2019-5854 CVE-2019-5852 --- .../browsers/chromium/upstream-info.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/networking/browsers/chromium/upstream-info.nix b/pkgs/applications/networking/browsers/chromium/upstream-info.nix index 89d969587a1..d8d2aff0d09 100644 --- a/pkgs/applications/networking/browsers/chromium/upstream-info.nix +++ b/pkgs/applications/networking/browsers/chromium/upstream-info.nix @@ -1,18 +1,18 @@ # This file is autogenerated from update.sh in the same directory. { beta = { - sha256 = "0pq7q7plbmfg2f6m74wl2l19k15ik2mvw56bfzk4c9cdns8w6b8a"; - sha256bin64 = "09zf3kldvi8zh7arvl94vjmbvgsghwa51b5j0ic8ncdn880dlq0j"; - version = "76.0.3809.25"; + sha256 = "1521vh38mfgy7aj1lw1vpbdm8m6wyh52d5p7bz4x6kvvxsnacp11"; + sha256bin64 = "0rbc0ld655szg42mqjdby8749d2jg34nlpp4cpq66qb4zi6vvb04"; + version = "76.0.3809.87"; }; dev = { - sha256 = "19v1i4ks5rpwdcwmfj8qqni4afyhnddb5hbbisabnjif3b8xrvjw"; - sha256bin64 = "0vsbxvqidrvw797h0and67pdb4maijsiv6jkpj3kqaxakiwnadxj"; - version = "76.0.3809.21"; + sha256 = "15v25nwcdxqgw6n0ym7fz5qaq0a74p0wiwcq155xy6zvr3q8q1nw"; + sha256bin64 = "1qawl0hsl6qpc10avli8raw4nzwcpmp6dyada5pga7i4k5jpsr95"; + version = "77.0.3860.5"; }; stable = { - sha256 = "0f9qjhxvk8sajj7qa061crfmln65q7sniylrgp0qijwyw6xrmddi"; - sha256bin64 = "1xvqfrq119iwgvd2d4z2v2ladi2kl52kji55yxdmyi377dpk5rfa"; - version = "75.0.3770.90"; + sha256 = "1521vh38mfgy7aj1lw1vpbdm8m6wyh52d5p7bz4x6kvvxsnacp11"; + sha256bin64 = "0hnfn2zxdrp96a4p98r08w4krzwkpb1kp4rjk03754akjyg1b3xx"; + version = "76.0.3809.87"; }; } From a897743a135751150df3b96b1de8e3e079a616cf Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Wed, 31 Jul 2019 08:58:08 +0000 Subject: [PATCH 1306/1611] chromiumDev: fix build Fixes: ERROR Unresolved dependencies. //third_party/perfetto/gn:zlib(//build/toolchain/linux:clang_x64) needs //third_party/zlib:zlib_config(//build/toolchain/linux:clang_x64) builder for '/nix/store/iqr4vn2by1yxa7f92jiymvgfsn9mdvwq-chromium-unwrapped-77.0.3860.5.drv' failed with exit code 1 --- pkgs/applications/networking/browsers/chromium/common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index ea0e0184340..3e63389be02 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -67,7 +67,8 @@ let in attrs: concatStringsSep " " (attrValues (mapAttrs toFlag attrs)); gnSystemLibraries = [ - "flac" "libwebp" "libxslt" "yasm" "opus" "snappy" "libpng" "zlib" + "flac" "libwebp" "libxslt" "yasm" "opus" "snappy" "libpng" + # "zlib" # version 77 reports unresolved dependency on //third_party/zlib:zlib_config # "libjpeg" # fails with multiple undefined references to chromium_jpeg_* # "re2" # fails with linker errors # "ffmpeg" # https://crbug.com/731766 From 695749c59dcf62502fdc7c9ef3438086331e712c Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Wed, 31 Jul 2019 14:05:55 +0200 Subject: [PATCH 1307/1611] chuck: 1.3.5.2 -> 1.4.0.0 --- pkgs/applications/audio/chuck/clang.patch | 58 ------------------- .../audio/chuck/darwin-limits.patch | 4 +- pkgs/applications/audio/chuck/default.nix | 13 ++--- 3 files changed, 8 insertions(+), 67 deletions(-) delete mode 100644 pkgs/applications/audio/chuck/clang.patch diff --git a/pkgs/applications/audio/chuck/clang.patch b/pkgs/applications/audio/chuck/clang.patch deleted file mode 100644 index 77227ef0fd4..00000000000 --- a/pkgs/applications/audio/chuck/clang.patch +++ /dev/null @@ -1,58 +0,0 @@ -diff --git a/src/ugen_osc.cpp b/src/ugen_osc.cpp -index 6b93c6b..dbefe4f 100644 ---- a/src/ugen_osc.cpp -+++ b/src/ugen_osc.cpp -@@ -1232,7 +1232,7 @@ CK_DLL_CTRL( gen5_coeffs ) - Chuck_Array8 * in_args = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen10coeffs, %d\n", weights); -- if(in_args<0) return; -+ if(in_args!=0) return; - size = in_args->size(); - if(size >= genX_MAX_COEFFS) size = genX_MAX_COEFFS - 1; - -@@ -1287,7 +1287,7 @@ CK_DLL_CTRL( gen7_coeffs ) - Chuck_Array8 * in_args = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen10coeffs, %d\n", weights); -- if(in_args<0) return; -+ if(in_args!=0) return; - size = in_args->size(); - if(size >= genX_MAX_COEFFS) size = genX_MAX_COEFFS - 1; - -@@ -1340,7 +1340,7 @@ CK_DLL_CTRL( gen9_coeffs ) - Chuck_Array8 * weights = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen10coeffs, %d\n", weights); -- if(weights<0) return; -+ if(weights!=0) return; - size = weights->size(); - if(size >= genX_MAX_COEFFS) size = genX_MAX_COEFFS - 1; - -@@ -1390,7 +1390,7 @@ CK_DLL_CTRL( gen10_coeffs ) - Chuck_Array8 * weights = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen10coeffs, %d\n", weights); -- if(weights<0) return; -+ if(weights!=0) return; - size = weights->size(); - if(size >= genX_MAX_COEFFS) size = genX_MAX_COEFFS - 1; - -@@ -1441,7 +1441,7 @@ CK_DLL_CTRL( gen17_coeffs ) - Chuck_Array8 * weights = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen17coeffs, %d\n", weights); -- if(weights<0) return; -+ if(weights!=0) return; - size = weights->size(); - if(size >= genX_MAX_COEFFS) size = genX_MAX_COEFFS - 1; - -@@ -1502,7 +1502,7 @@ CK_DLL_CTRL( curve_coeffs ) - Chuck_Array8 * weights = (Chuck_Array8 *)GET_CK_OBJECT(ARGS); - - // fprintf(stdout, "calling gen17coeffs, %d\n", weights); -- if(weights<0) goto done; -+ if(weights!=0) goto done; - - nargs = weights->size(); - if (nargs < 5 || (nargs % 3) != 2) { // check number of args diff --git a/pkgs/applications/audio/chuck/darwin-limits.patch b/pkgs/applications/audio/chuck/darwin-limits.patch index 3387f725544..dc98a172691 100644 --- a/pkgs/applications/audio/chuck/darwin-limits.patch +++ b/pkgs/applications/audio/chuck/darwin-limits.patch @@ -1,5 +1,5 @@ ---- a/src/util_string.cpp 2014-10-27 22:52:11.875981552 +0100 -+++ b/src/util_string.cpp 2014-10-27 22:54:18.613001994 +0100 +--- a/src/core/util_string.cpp 2014-10-27 22:52:11.875981552 +0100 ++++ b/src/core/util_string.cpp 2014-10-27 22:54:18.613001994 +0100 @@ -40,6 +40,10 @@ #include #endif // __PLATFORM_LINUX__ diff --git a/pkgs/applications/audio/chuck/default.nix b/pkgs/applications/audio/chuck/default.nix index 6113a776a67..da26a718835 100644 --- a/pkgs/applications/audio/chuck/default.nix +++ b/pkgs/applications/audio/chuck/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "1.3.5.2"; + version = "1.4.0.0"; name = "chuck-${version}"; src = fetchurl { url = "http://chuck.cs.princeton.edu/release/files/chuck-${version}.tgz"; - sha256 = "02z7sglax3j09grj5s1skmw8z6wz7b21hjrm95nrrdpwbxabh079"; + sha256 = "1b17rsf7bv45gfhyhfmpz9d4rkxn24c0m2hgmpfjz3nlp0rf7bic"; }; nativeBuildInputs = [ flex bison which ]; @@ -17,16 +17,15 @@ stdenv.mkDerivation rec { ++ lib.optional (!stdenv.isDarwin) alsaLib ++ lib.optional stdenv.isDarwin [ AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel ]; - patches = [ ./clang.patch ./darwin-limits.patch ]; + patches = [ ./darwin-limits.patch ]; NIX_CFLAGS_COMPILE = lib.optional stdenv.isDarwin "-Wno-missing-sysroot"; NIX_LDFLAGS = lib.optional stdenv.isDarwin "-framework MultitouchSupport"; postPatch = '' - substituteInPlace src/makefile --replace "/usr/bin" "$out/bin" - substituteInPlace src/makefile.osx \ + substituteInPlace src/core/makefile.x/makefile.osx \ --replace "weak_framework" "framework" \ - --replace "MACOSX_DEPLOYMENT_TARGET=10.5" "MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET" + --replace "MACOSX_DEPLOYMENT_TARGET=10.9" "MACOSX_DEPLOYMENT_TARGET=$MACOSX_DEPLOYMENT_TARGET" ''; makeFlags = [ "-C src" "DESTDIR=$(out)/bin" ]; @@ -36,7 +35,7 @@ stdenv.mkDerivation rec { description = "Programming language for real-time sound synthesis and music creation"; homepage = http://chuck.cs.princeton.edu; license = licenses.gpl2; - platforms = with platforms; linux ++ darwin; + platforms = platforms.unix; maintainers = with maintainers; [ ftrvxmtrx ]; }; } From 4403d44763a1f8fb2bae6fd844406a47b99abf3b Mon Sep 17 00:00:00 2001 From: Adelbert Chang Date: Wed, 31 Jul 2019 05:19:01 -0700 Subject: [PATCH 1308/1611] buildRustPackage: fix cargo flag for release/debug build (#61521) Previous behavior did not actually allow for "debug" build as it would try to pass --debug to cargo, which is not a valid flag. --- pkgs/build-support/rust/default.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix index 306b70419ed..6afe93c7e4c 100644 --- a/pkgs/build-support/rust/default.nix +++ b/pkgs/build-support/rust/default.nix @@ -46,7 +46,6 @@ let ccForHost="${stdenv.cc}/bin/${stdenv.cc.targetPrefix}cc"; cxxForHost="${stdenv.cc}/bin/${stdenv.cc.targetPrefix}c++"; releaseDir = "target/${stdenv.hostPlatform.config}/${buildType}"; - in stdenv.mkDerivation (args // { inherit cargoDeps; @@ -104,7 +103,7 @@ in stdenv.mkDerivation (args // { "CC_${stdenv.hostPlatform.config}"="${ccForHost}" \ "CXX_${stdenv.hostPlatform.config}"="${cxxForHost}" \ cargo build \ - --${buildType} \ + ${stdenv.lib.optionalString (buildType == "release") "--release"} \ --target ${stdenv.hostPlatform.config} \ --frozen ${concatStringsSep " " cargoBuildFlags} ) From 2f3be07d402adea719d0e92773a9766f69b9fad2 Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Wed, 31 Jul 2019 15:14:44 +0200 Subject: [PATCH 1309/1611] gpx-viewer: avoid generating a mime database --- pkgs/applications/misc/gpx-viewer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/gpx-viewer/default.nix b/pkgs/applications/misc/gpx-viewer/default.nix index a5ee6c8e4ae..735818171e8 100644 --- a/pkgs/applications/misc/gpx-viewer/default.nix +++ b/pkgs/applications/misc/gpx-viewer/default.nix @@ -15,10 +15,10 @@ stdenv.mkDerivation rec { }; patchFlags = [ "-p0" ]; + configureFlags = [ "--disable-database-updates" ]; + nativeBuildInputs = [ intltool pkgconfig - shared-mime-info # For update-mime-database - desktop-file-utils # For update-desktop-database wrapGAppsHook # Fix error: GLib-GIO-ERROR **: No GSettings schemas are installed on the system ]; buildInputs = [ gdl libchamplain gnome3.adwaita-icon-theme libxml2 ]; From b50dd122141eff25b63f63843fc0a9f49b6da6d0 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 31 Jul 2019 08:11:56 -0400 Subject: [PATCH 1310/1611] linux: 4.14.134 -> 4.14.135 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index 448c36a481c..57d9ad8fc16 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.14.134"; + version = "4.14.135"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0b9xj1rwr5fpw2giirfghzxxc0wp1hwf4nqvalx314pxxysyf88b"; + sha256 = "0x2v0pj4hjb71qkxbqn4ymg6zmyabp91kylyzd270nbig7i234a2"; }; } // (args.argsOverride or {})) From 6f62842a9229b419b39702c250f70e6aaadae31a Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 31 Jul 2019 08:12:07 -0400 Subject: [PATCH 1311/1611] linux: 4.19.62 -> 4.19.63 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index 8a07b99900c..a1192b68b3f 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.62"; + version = "4.19.63"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1p6s1ksrsq3za7644j0qf9brf6brwq39jxpfln5ypmyfi5qn9gh7"; + sha256 = "0pfjwpa6szvdr941y13806hlsgsbslfsvkrd5534p1iip5h8g63m"; }; } // (args.argsOverride or {})) From 9d8e811db9695064598e2166b0ade8232dfb5c4b Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 31 Jul 2019 08:12:10 -0400 Subject: [PATCH 1312/1611] linux: 5.2.4 -> 5.2.5 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 324c5237444..9a0551c4d06 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2.4"; + version = "5.2.5"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "0hzfayq79bksng09ngw3k3h3zkd6ndfn059rvwpznypy1fg8pkdi"; + sha256 = "15ndscsp3yqgas901g6inpmyvinz4cwr5y3md516j2pr8cl40if6"; }; } // (args.argsOverride or {})) From 15feb3893d0bf4f69d7ac5e35394537b4e460c20 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Wed, 31 Jul 2019 08:16:11 -0400 Subject: [PATCH 1313/1611] oh-my-zsh: 2019-07-22 -> 2019-07-31 --- pkgs/shells/zsh/oh-my-zsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/zsh/oh-my-zsh/default.nix b/pkgs/shells/zsh/oh-my-zsh/default.nix index d0f3fc88fc0..fa92411cea6 100644 --- a/pkgs/shells/zsh/oh-my-zsh/default.nix +++ b/pkgs/shells/zsh/oh-my-zsh/default.nix @@ -4,13 +4,13 @@ { stdenv, fetchgit }: stdenv.mkDerivation rec { - version = "2019-07-22"; + version = "2019-07-31"; name = "oh-my-zsh-${version}"; - rev = "508cba2fc2ec545504abcf38ecdd958f3a89e5e8"; + rev = "6d2221e697ea4a2445202b1c32283610f84585ef"; src = fetchgit { inherit rev; url = "https://github.com/robbyrussell/oh-my-zsh"; - sha256 = "0pql5p8dwz576s0hgqrzk4543qawlghy7rv3k3jyhrwi4xx4z84d"; + sha256 = "0yj2cymh2a74014ng7vyfh1b8qhbk14s0sbcj0426mykvilfd31b"; }; pathsToLink = [ "/share/oh-my-zsh" ]; From 5521aae4b926604b43d5bb39cd6423d849a191b0 Mon Sep 17 00:00:00 2001 From: angristan Date: Thu, 4 Jul 2019 15:52:45 +0200 Subject: [PATCH 1314/1611] vagrant: 2.2.3 -> 2.2.5 --- pkgs/development/tools/vagrant/default.nix | 4 +- pkgs/development/tools/vagrant/gemset.nix | 135 ++++++--------------- 2 files changed, 39 insertions(+), 100 deletions(-) diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index 7b47cf0aa08..7bc36a8a114 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -4,9 +4,9 @@ let # NOTE: bumping the version and updating the hash is insufficient; # you must use bundix to generate a new gemset.nix in the Vagrant source. - version = "2.2.3"; + version = "2.2.5"; url = "https://github.com/hashicorp/vagrant/archive/v${version}.tar.gz"; - sha256 = "1j00glqn8b1zsgqg2nyk5as405a6s6vclswg2ri0a229hnsiabvs"; + sha256 = "0a228f5185b24b72efcc5a3924f86fa9fabab6f7562c3c63c1d9d239aa72a7b1"; deps = bundlerEnv rec { name = "${pname}-${version}"; diff --git a/pkgs/development/tools/vagrant/gemset.nix b/pkgs/development/tools/vagrant/gemset.nix index 9d98b3a48bd..ad3422d8b59 100644 --- a/pkgs/development/tools/vagrant/gemset.nix +++ b/pkgs/development/tools/vagrant/gemset.nix @@ -1,20 +1,13 @@ { - addressable = { - dependencies = ["public_suffix"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0bcm2hchn897xjhqj9zzsxf3n9xhddymj4lsclz508f4vw3av46l"; - type = "gem"; - }; - version = "2.6.0"; - }; bcrypt_pbkdf = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0cj4k13c7qvvck7y25i3xarvyqq8d27vl61jddifkc7llnnap1hv"; + sha256 = "02vssr285m7kpsr47jdmzbar1h1d0mnkmyrpr1zg828isfmwii35"; type = "gem"; }; - version = "1.0.0"; + version = "1.0.1"; }; builder = { source = { @@ -34,21 +27,14 @@ version = "0.6.3"; }; concurrent-ruby = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1ixcx9pfissxrga53jbdpza85qd5f6b5nq1sfqa9rnfq82qnlbp1"; + sha256 = "1x07r23s7836cpp5z9yrlbpljcxpax14yw4fy4bnp6crhr6x24an"; type = "gem"; }; - version = "1.1.4"; - }; - crack = { - dependencies = ["safe_yaml"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0abb0fvgw00akyik1zxnq7yv391va148151qxdghnzngv66bl62k"; - type = "gem"; - }; - version = "0.4.3"; + version = "1.1.5"; }; diff-lcs = { source = { @@ -60,12 +46,14 @@ }; domain_name = { dependencies = ["unf"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0abdlwb64ns7ssmiqhdwgl27ly40x2l27l8hs8hn0z4kb3zd2x3v"; + sha256 = "0lcqjsmixjp52bnlgzh4lg9ppsk52x9hpwdjd53k8jnbah2602h0"; type = "gem"; }; - version = "0.5.20180417"; + version = "0.5.20190701"; }; ed25519 = { source = { @@ -83,30 +71,26 @@ }; version = "2.7.0"; }; - fake_ftp = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0rn7lxdk3sqc2i4v2c5k25b9ca1qnkdf32nv04y760aml9mszwf7"; - type = "gem"; - }; - version = "0.1.1"; - }; ffi = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p"; + sha256 = "06mvxpjply8qh4j3fj9wh08kdzwkbnvsiysh0vrhlk5cwxzjmblh"; type = "gem"; }; - version = "1.10.0"; + version = "1.11.1"; }; gssapi = { dependencies = ["ffi"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0j93nsf9j57p7x4aafalvjg8hia2mmqv3aky7fmw2ck5yci343ix"; + sha256 = "13l6pqbfrx3vv7cw26nq9p8rnyp9br31gaz85q32wx6hnzfcriwh"; type = "gem"; }; - version = "1.2.0"; + version = "1.3.0"; }; gyoku = { dependencies = ["builder"]; @@ -117,14 +101,6 @@ }; version = "1.3.1"; }; - hashdiff = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "19ykg5pax8798nh1yv71adkx0zzs7gn2rxjj86v7nsw0jba5lask"; - type = "gem"; - }; - version = "0.3.8"; - }; hashicorp-checkpoint = { source = { remotes = ["https://rubygems.org"]; @@ -203,12 +179,14 @@ version = "3.2.2"; }; mime-types-data = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "07wvp0aw2gjm4njibb70as6rh5hi1zzri5vky1q6jx95h8l56idc"; + sha256 = "1m00pg19cm47n1qlcxgl91ajh2yq0fszvn1vy8fy0s1jkrp9fw4a"; type = "gem"; }; - version = "3.2018.0812"; + version = "3.2019.0331"; }; multi_json = { source = { @@ -260,22 +238,6 @@ }; version = "2.6.0"; }; - public_suffix = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "08q64b5br692dd3v0a9wq9q5dvycc6kmiqmjbdxkxbfizggsvx6l"; - type = "gem"; - }; - version = "3.0.3"; - }; - rake = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "01j8fc9bqjnrsxbppncai05h43315vmz9fwg28qdsgcjw9ck1d7n"; - type = "gem"; - }; - version = "12.0.0"; - }; rb-fsevent = { source = { remotes = ["https://rubygems.org"]; @@ -338,15 +300,6 @@ }; version = "3.5.0"; }; - rspec-its = { - dependencies = ["rspec-core" "rspec-expectations"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1pwphny5jawcm1hda3vs9pjv1cybaxy17dc1s75qd7drrvx697p3"; - type = "gem"; - }; - version = "1.2.0"; - }; rspec-mocks = { dependencies = ["diff-lcs" "rspec-support"]; source = { @@ -381,20 +334,14 @@ version = "0.6.2"; }; rubyzip = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1n1lb2sdwh9h27y244hxzg1lrxxg2m53pk1vq7p33bna003qkyrj"; + sha256 = "1w9gw28ly3zyqydnm8phxchf4ymyjl2r7zf7c12z8kla10cpmhlc"; type = "gem"; }; - version = "1.2.2"; - }; - safe_yaml = { - source = { - remotes = ["https://rubygems.org"]; - sha256 = "1hly915584hyi9q9vgd968x2nsi5yag9jyf5kq60lwzi5scr7094"; - type = "gem"; - }; - version = "1.0.4"; + version = "1.2.3"; }; thor = { source = { @@ -414,15 +361,14 @@ version = "0.1.4"; }; unf_ext = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "06p1i6qhy34bpb8q8ms88y6f2kz86azwm098yvcc0nyqk9y729j1"; + sha256 = "1ll6w64ibh81qwvjx19h8nj7mngxgffg7aigjx11klvf5k2g4nxf"; type = "gem"; }; - version = "0.0.7.5"; - }; - vagrant = { - dependencies = ["bcrypt_pbkdf" "childprocess" "ed25519" "erubis" "hashicorp-checkpoint" "i18n" "listen" "log4r" "net-scp" "net-sftp" "net-ssh" "rb-kqueue" "rest-client" "ruby_dep" "rubyzip" "vagrant_cloud" "wdm" "winrm" "winrm-elevated" "winrm-fs"]; + version = "0.0.7.6"; }; vagrant-spec = { dependencies = ["childprocess" "log4r" "rspec" "thor"]; @@ -452,24 +398,17 @@ }; version = "0.1.1"; }; - webmock = { - dependencies = ["addressable" "crack" "hashdiff"]; + winrm = { + dependencies = ["builder" "erubis" "gssapi" "gyoku" "httpclient" "logging" "nori" "rubyntlm"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "04hkcqsmbfnp8g237pisnc834vpgildklicbjbyikqg0bg1rwcy5"; + sha256 = "19vxrclxc5l8n2agwvv291740s6gna2phg3lkybjb0ldkmpi3sj2"; type = "gem"; }; version = "2.3.2"; }; - winrm = { - dependencies = ["builder" "erubis" "gssapi" "gyoku" "httpclient" "logging" "nori" "rubyntlm"]; - source = { - remotes = ["https://rubygems.org"]; - sha256 = "0l299w172hl023b3v2vnbx4cqfjq9k2pp8blc1dz8n6g9dc6pk9f"; - type = "gem"; - }; - version = "2.3.1"; - }; winrm-elevated = { dependencies = ["winrm" "winrm-fs"]; source = { From c73ff37cd5601c144138e1de57be3575bac8bb8e Mon Sep 17 00:00:00 2001 From: arcnmx Date: Sat, 27 Jul 2019 11:50:08 -0700 Subject: [PATCH 1315/1611] passff-host: fix native messaging manifest path Match other native messaging applications and the firefox wrapper's expectations. --- pkgs/tools/security/passff-host/default.nix | 24 ++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/passff-host/default.nix b/pkgs/tools/security/passff-host/default.nix index a97bc57ad45..59f03db0200 100644 --- a/pkgs/tools/security/passff-host/default.nix +++ b/pkgs/tools/security/passff-host/default.nix @@ -1,27 +1,41 @@ { stdenv, fetchFromGitHub, python3, pass }: stdenv.mkDerivation rec { - name = "passff-host-${version}"; + pname = "passff-host"; version = "1.2.1"; src = fetchFromGitHub { owner = "passff"; - repo = "passff-host"; + repo = pname; rev = version; sha256 = "0ydfwvhgnw5c3ydx2gn5d7ys9g7cxlck57vfddpv6ix890v21451"; }; buildInputs = [ python3 ]; + makeFlags = [ "VERSION=${version}" ]; patchPhase = '' sed -i 's#COMMAND = "pass"#COMMAND = "${pass}/bin/pass"#' src/passff.py ''; installPhase = '' - install -D bin/testing/passff.py $out/share/passff-host/passff.py - cp bin/testing/passff.json $out/share/passff-host/passff.json - substituteInPlace $out/share/passff-host/passff.json \ + substituteInPlace bin/${version}/passff.json \ --replace PLACEHOLDER $out/share/passff-host/passff.py + + install -Dt $out/share/passff-host \ + bin/${version}/passff.{py,json} + + nativeMessagingPaths=( + /lib/mozilla/native-messaging-hosts + /etc/opt/chrome/native-messaging-hosts + /etc/chromium/native-messaging-hosts + /etc/vivaldi/native-messaging-hosts + ) + + for manifestDir in "''${nativeMessagingPaths[@]}"; do + install -d $out$manifestDir + ln -s $out/share/passff-host/passff.json $out$manifestDir/ + done ''; meta = with stdenv.lib; { From 8ea42e7489170e6fdb9562305cb4776efe0479ee Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Wed, 31 Jul 2019 14:47:15 +0000 Subject: [PATCH 1316/1611] swiften: fix build It was failing with: LINK Documentation/SwiftenDevelopersGuide/Examples/EchoBot/EchoBot0x /nix/store/mgdjnsrkqgmxqjaqaxgqyqm7fwyi96fk-binutils-2.31.1/bin/ld: cannot find -lssl /nix/store/mgdjnsrkqgmxqjaqaxgqyqm7fwyi96fk-binutils-2.31.1/bin/ld: cannot find -lcrypto collect2: error: ld returned 1 exit status --- pkgs/development/libraries/swiften/default.nix | 5 ++++- pkgs/development/libraries/swiften/scons.patch | 9 +++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/swiften/scons.patch diff --git a/pkgs/development/libraries/swiften/default.nix b/pkgs/development/libraries/swiften/default.nix index 5221ef9418f..e30da732a46 100644 --- a/pkgs/development/libraries/swiften/default.nix +++ b/pkgs/development/libraries/swiften/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "0w0aiszjd58ynxpacwcgf052zpmbpcym4dhci64vbfgch6wryz0w"; }; + patches = [ ./scons.patch ]; + sconsFlags = [ "openssl=${openssl.dev}" "boost_includedir=${boost.dev}/include" @@ -23,12 +25,13 @@ stdenv.mkDerivation rec { installFlags+=" SWIFT_INSTALLDIR=$out" ''; + enableParallelBuilding = true; + meta = with stdenv.lib; { description = "An XMPP library for C++, used by the Swift client"; homepage = http://swift.im/swiften.html; license = licenses.gpl2Plus; platforms = platforms.linux; maintainers = [ maintainers.twey ]; - broken = true; # TODO: Build is failing! }; } diff --git a/pkgs/development/libraries/swiften/scons.patch b/pkgs/development/libraries/swiften/scons.patch new file mode 100644 index 00000000000..d956767696d --- /dev/null +++ b/pkgs/development/libraries/swiften/scons.patch @@ -0,0 +1,9 @@ +--- a/BuildTools/SCons/SConscript.boot ++++ b/BuildTools/SCons/SConscript.boot +@@ -129,5 +129 @@ vars.Add(PathVariable("sparkle_public_dsa_key", "Optional path to a public DSA k +-env_ENV = { +- 'PATH' : os.environ['PATH'], +- 'LD_LIBRARY_PATH' : os.environ.get("LD_LIBRARY_PATH", ""), +- 'TERM' : os.environ.get("TERM", ""), +-} ++env_ENV = os.environ From 94f412e254c317f96e64711aeea401889bdad75c Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Wed, 31 Jul 2019 16:51:28 +0200 Subject: [PATCH 1317/1611] anbox: fix build see https://github.com/anbox/anbox/issues/1124 --- pkgs/os-specific/linux/anbox/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/anbox/default.nix b/pkgs/os-specific/linux/anbox/default.nix index 64ed110b2a3..755ec390a9c 100644 --- a/pkgs/os-specific/linux/anbox/default.nix +++ b/pkgs/os-specific/linux/anbox/default.nix @@ -64,6 +64,8 @@ stdenv.mkDerivation rec { libGL ]; + NIX_CFLAGS_COMPILE = "-Wno-error=missing-field-initializers"; + patchPhase = '' patchShebangs scripts From 840e16b1a99934fc10aefbf118f1aa10a8daca1c Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Tue, 23 Jul 2019 15:44:04 +0200 Subject: [PATCH 1318/1611] anbox-modules: 2018-09-08 -> 2019-07-13 --- pkgs/os-specific/linux/anbox/kmod.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/anbox/kmod.nix b/pkgs/os-specific/linux/anbox/kmod.nix index 6415cc635d5..2f5c392c173 100644 --- a/pkgs/os-specific/linux/anbox/kmod.nix +++ b/pkgs/os-specific/linux/anbox/kmod.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "anbox-modules"; - version = "2018-09-08-" + kernel.version; + version = "2019-07-13-" + kernel.version; src = fetchFromGitHub { owner = "anbox"; repo = "anbox-modules"; - rev = "27fd47e11ef6eef93738f8f3df3e42c88975544e"; - sha256 = "1hnf5x5swjcws6mnxmd3byll8l7qsxxj9pgki2k31rbmqqf2sb0x"; + rev = "816dd4d6e702cf77a44cfe208659af6c39e02b57"; + sha256 = "115xrv3fz5bk51hz8cwb61h0xnrsnv217fxmbpw35a6hjrk7gslc"; }; nativeBuildInputs = kernel.moduleBuildDependencies; From 8761bc0ad786729a9c8e90e5f7fb14d1bb3eeeb4 Mon Sep 17 00:00:00 2001 From: Sarah Brofeldt Date: Wed, 31 Jul 2019 18:41:35 +0200 Subject: [PATCH 1319/1611] gitlab-runner: Fix prebuilt hash --- .../tools/continuous-integration/gitlab-runner/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix index 3ced385e9da..1aa13a34d12 100644 --- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix +++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix @@ -5,7 +5,7 @@ let # Gitlab runner embeds some docker images these are prebuilt for arm and x86_64 docker_x86_64 = fetchurl { url = "https://gitlab-runner-downloads.s3.amazonaws.com/v${version}/helper-images/prebuilt-x86_64.tar.xz"; - sha256 = "0zrlprzbjnssrf0qjb80fy50ypryrqhmkqrpad68bnsz7da34idk"; + sha256 = "1yx530h5rz7wmd012962f9dfj0hvj1m7zab5vchndna4svzzycch"; }; docker_arm = fetchurl { From 064ddec59802c5d078060c19451b4c3ee53624ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Xaver=20H=C3=B6rl?= Date: Wed, 31 Jul 2019 18:47:47 +0200 Subject: [PATCH 1320/1611] android-file-transfer: fix building with qt Use mkDerivation has instead of stdenv.mkDerivation (see #54525). --- pkgs/tools/filesystems/android-file-transfer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/android-file-transfer/default.nix b/pkgs/tools/filesystems/android-file-transfer/default.nix index 3a29d272b15..001e644b7e7 100644 --- a/pkgs/tools/filesystems/android-file-transfer/default.nix +++ b/pkgs/tools/filesystems/android-file-transfer/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }: +{ stdenv, mkDerivation, fetchFromGitHub, cmake, fuse, readline, pkgconfig, qtbase }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "android-file-transfer"; version = "3.9"; From 2a2fcbb274e355aa053a94df2c15801b733e5c66 Mon Sep 17 00:00:00 2001 From: gcv Date: Tue, 30 Jul 2019 17:43:37 -0700 Subject: [PATCH 1321/1611] gnupg: Allow GnuPG1 to build on all platforms. --- pkgs/tools/security/gnupg/1.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/gnupg/1.nix b/pkgs/tools/security/gnupg/1.nix index b86bb1a221c..3b916378bf5 100644 --- a/pkgs/tools/security/gnupg/1.nix +++ b/pkgs/tools/security/gnupg/1.nix @@ -27,6 +27,6 @@ stdenv.mkDerivation rec { other applications. A wealth of frontend applications and libraries are available. ''; - platforms = platforms.gnu ++ platforms.linux; # arbitrary choice + platforms = platforms.all; }; } From 851ebff68898c52a783800b101113c2169db8499 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Wed, 31 Jul 2019 19:08:33 +0200 Subject: [PATCH 1322/1611] frog: Fix build (icu64 -> icu60) icu60 is the latest version that works. Build the derivation languageMachines.test to test. --- .../libraries/languagemachines/packages.nix | 12 ++++++++---- pkgs/top-level/all-packages.nix | 4 +++- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/languagemachines/packages.nix b/pkgs/development/libraries/languagemachines/packages.nix index c2d449ed13c..8a490bbc986 100644 --- a/pkgs/development/libraries/languagemachines/packages.nix +++ b/pkgs/development/libraries/languagemachines/packages.nix @@ -1,13 +1,17 @@ -{ callPackage }: +{ pkgs }: +let + inherit (pkgs) callPackage; + icu = pkgs.icu60; +in { ticcutils = callPackage ./ticcutils.nix { }; - libfolia = callPackage ./libfolia.nix { }; - ucto = callPackage ./ucto.nix { }; + libfolia = callPackage ./libfolia.nix { inherit icu; }; + ucto = callPackage ./ucto.nix { inherit icu; }; uctodata = callPackage ./uctodata.nix { }; timbl = callPackage ./timbl.nix { }; timblserver = callPackage ./timblserver.nix { }; mbt = callPackage ./mbt.nix { }; - frog = callPackage ./frog.nix { }; + frog = callPackage ./frog.nix { inherit icu; }; frogdata = callPackage ./frogdata.nix { }; test = callPackage ./test.nix { }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8d3f900b5a6..2db3c3fe431 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11268,7 +11268,9 @@ in stdenv = gccStdenv; }; - languageMachines = recurseIntoAttrs (import ../development/libraries/languagemachines/packages.nix { inherit callPackage; }); + languageMachines = recurseIntoAttrs (import ../development/libraries/languagemachines/packages.nix { + inherit pkgs; + }); lasem = callPackage ../development/libraries/lasem { }; From 4ee4263fb9d934a88dd4ca35737a57f597889fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Heredia=20Montiel?= Date: Wed, 31 Jul 2019 16:43:20 +0000 Subject: [PATCH 1323/1611] mill: 0.4.1 -> 0.5.0 --- pkgs/development/tools/build-managers/mill/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/mill/default.nix b/pkgs/development/tools/build-managers/mill/default.nix index ff49bea526a..f929d310585 100644 --- a/pkgs/development/tools/build-managers/mill/default.nix +++ b/pkgs/development/tools/build-managers/mill/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "mill-${version}"; - version = "0.4.1"; + version = "0.5.0"; src = fetchurl { url = "https://github.com/lihaoyi/mill/releases/download/${version}/${version}"; - sha256 = "17im60ckbd5hbpkl4pb3nr3mg5crln4sphd7d0dgzsrs3p9h194x"; + sha256 = "ecf83db96a32024f14b031ce458b1b3eed01e713265e16c42eb4a894a1a0d654"; }; nativeBuildInputs = [ makeWrapper ]; From 68b647a3b6fcedc4dd3efc6f584ff86c50f91787 Mon Sep 17 00:00:00 2001 From: Jan Hrnko Date: Wed, 31 Jul 2019 19:46:43 +0200 Subject: [PATCH 1324/1611] pythonPackages.shamir-mnemonic: init at 0.1.0 --- .../shamir-mnemonic/default.nix | 22 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/python-modules/shamir-mnemonic/default.nix diff --git a/pkgs/development/python-modules/shamir-mnemonic/default.nix b/pkgs/development/python-modules/shamir-mnemonic/default.nix new file mode 100644 index 00000000000..907f87dcd47 --- /dev/null +++ b/pkgs/development/python-modules/shamir-mnemonic/default.nix @@ -0,0 +1,22 @@ +{ lib, fetchPypi, buildPythonPackage, isPy3k, click, colorama }: + +buildPythonPackage rec { + pname = "shamir-mnemonic"; + version = "0.1.0"; + + disabled = !isPy3k; + + src = fetchPypi { + inherit pname version; + sha256 = "1cc08d276e05b13cd32bd3b0c5d1cb6c30254e0086e0f6857ec106d4cceff121"; + }; + + propagatedBuildInputs = [ click colorama ]; + + meta = { + description = "Reference implementation of SLIP-0039"; + homepage = "https://github.com/trezor/python-shamir-mnemonic"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ "1000101" ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 68718fe9f6b..ed47a42e113 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4716,6 +4716,8 @@ in { simplegeneric = callPackage ../development/python-modules/simplegeneric { }; + shamir-mnemonic = callPackage ../development/python-modules/shamir-mnemonic { }; + shodan = callPackage ../development/python-modules/shodan { }; should-dsl = callPackage ../development/python-modules/should-dsl { }; From c43f685767b3cbfce47eb9a7cc7527659c235ab4 Mon Sep 17 00:00:00 2001 From: Jan Hrnko Date: Wed, 31 Jul 2019 19:52:54 +0200 Subject: [PATCH 1325/1611] pythonPackages.trezor: 0.11.3 -> 0.11.4 --- pkgs/development/python-modules/trezor/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/trezor/default.nix b/pkgs/development/python-modules/trezor/default.nix index 589878d69f5..12e88153696 100644 --- a/pkgs/development/python-modules/trezor/default.nix +++ b/pkgs/development/python-modules/trezor/default.nix @@ -10,20 +10,21 @@ , construct , libusb1 , rlp +, shamir-mnemonic }: buildPythonPackage rec { pname = "trezor"; - version = "0.11.3"; + version = "0.11.4"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "c79a500e90d003073c8060d319dceb042caaba9472f13990c77ed37d04a82108"; + sha256 = "aeb3f56a4c389495617f27bf218471b7969f636d25ddc491dfefeb8a1b3cd499"; }; - propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp ]; + propagatedBuildInputs = [ typing-extensions protobuf hidapi ecdsa mnemonic requests pyblake2 click construct libusb1 rlp shamir-mnemonic ]; # build requires UTF-8 locale LANG = "en_US.UTF-8"; @@ -41,8 +42,8 @@ buildPythonPackage rec { meta = { description = "Python library for communicating with TREZOR Bitcoin Hardware Wallet"; - homepage = https://github.com/trezor/python-trezor; + homepage = "https://github.com/trezor/trezor-firmware/tree/master/python"; license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ np prusnak mmahut ]; + maintainers = with lib.maintainers; [ np prusnak mmahut "1000101" ]; }; } From 8e630764865a22c56c01e50d8456f000bfc57a8c Mon Sep 17 00:00:00 2001 From: volth Date: Sat, 27 Jul 2019 05:46:18 +0000 Subject: [PATCH 1326/1611] graalvm8: 19.1.0 -> 19.1.1 --- pkgs/development/compilers/graalvm/default.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index 37709a332b9..01bd308f4bc 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -4,7 +4,7 @@ }: let - version = "19.1.0"; + version = "19.1.1"; truffleMake = ./truffle.make; R = fetchurl { url = "http://cran.rstudio.com/src/base/R-3/R-3.5.1.tar.gz"; @@ -145,10 +145,10 @@ let ]; graal-mxcachegit = [ - { sha256 = "0wmdqbiydrr3rhcxgfxa644gsdqndhmqqn93kw6l4c9yzgnkk3w1"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } + { sha256 = "05z2830ng71bhgsxc0zyc74l1bz7hg54la8j1r99993fhhch4y36"; name = "graaljs"; url = "https://github.com/graalvm/graaljs.git"; rev = "vm-${version}"; } { sha256 = "0ai5x4n1c2lcfkfpp29zn1bcmp3khc5hvssyw1qr1l2zy79fxwjp"; name = "truffleruby"; url = "https://github.com/oracle/truffleruby.git"; rev = "vm-${version}"; } { sha256 = "010079qsl6dff3yca8vlzcahq9z1ppyr758shjkm1f7izwphjv7p"; name = "fastr"; url = "https://github.com/oracle/fastr.git"; rev = "vm-${version}"; } - { sha256 = "00r9wdd7xfj1q6w91kwz9zcaapi8hd6yq19inyq1jklab8r68psi"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } + { sha256 = "0hcqbasqs0yb7p1sal63qbxqxh942gh5vzl95pfdlflmc2g82v4q"; name = "graalpython"; url = "https://github.com/graalvm/graalpython.git"; rev = "vm-${version}"; } ]; ninja-syntax = python27.pkgs.buildPythonPackage rec { @@ -172,13 +172,13 @@ let in rec { mx = stdenv.mkDerivation rec { - version = "5.224.10"; + version = "5.223.0"; pname = "mx"; src = fetchFromGitHub { owner = "graalvm"; repo = "mx"; rev = version; - sha256 = "13qa31flabsflsbjcm785zfxrgp6sgdxcmglz2bw0rcfcln00zq4"; + sha256 = "0q51dnm6n1472p93dxr4jh8d7cv09a70pq89cdgxwh42vapykrn9"; }; nativeBuildInputs = [ makeWrapper ]; prePatch = '' @@ -217,13 +217,13 @@ in rec { }; jvmci8 = stdenv.mkDerivation rec { - version = "20-b04"; + version = "19.2-b01"; name = "jvmci-${version}"; src = fetchFromGitHub { owner = "graalvm"; repo = "graal-jvmci-8"; rev = "jvmci-${version}"; - sha256 = "1k9szvnl5j3vg645si7s9lb93bkfl4ifc2z8ngnlb23ircsn3qdx"; + sha256 = "0maipj871vaxvap4576m0pzblzqxfjjzmwap3ndd84ny8d6vbqaa"; }; buildInputs = [ mx mercurial openjdk ]; postUnpack = '' @@ -289,7 +289,7 @@ in rec { owner = "oracle"; repo = "graal"; rev = "vm-${version}"; - sha256 = "00142hyspgjblj8j49qmdvgc24193n0g95fh2if9c7574q3zspvd"; + sha256 = "0abx6adk91yzaf1md4qbidxykpqcgphh6j4hj01ry57s4if0j66f"; }; patches = [ ./002_setjmp.c.patch ./003_mx_truffle.py.patch ]; buildInputs = [ mx zlib mercurial jvmci8 git clang llvm @@ -410,7 +410,7 @@ in rec { description = "High-Performance Polyglot VM"; license = licenses.gpl2; maintainers = with maintainers; [ volth hlolli ]; - platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" ]; + platforms = [ "x86_64-linux" /*"aarch64-linux" "x86_64-darwin"*/ ]; }; }; } From 7efcbead2c52e9e2514cd5983b516baa653116a7 Mon Sep 17 00:00:00 2001 From: Jeff Slight Date: Wed, 31 Jul 2019 14:55:08 -0700 Subject: [PATCH 1327/1611] nixos/gitlab: fix config initializer permissions --- nixos/modules/services/misc/gitlab.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 9fce9419a1a..2f3f76d79ff 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -502,6 +502,7 @@ in { "d ${cfg.statePath} 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/builds 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/config 0750 ${cfg.user} ${cfg.group} -" + "d ${cfg.statePath}/config/initializers 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/db 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/log 0750 ${cfg.user} ${cfg.group} -" "d ${cfg.statePath}/repositories 2770 ${cfg.user} ${cfg.group} -" From 1a784390d2c722075c78cdb6f2ace71d428e5560 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Thu, 1 Aug 2019 00:40:49 +0200 Subject: [PATCH 1328/1611] gitea: 1.8.3 -> 1.9.0 --- pkgs/applications/version-management/gitea/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/version-management/gitea/default.nix b/pkgs/applications/version-management/gitea/default.nix index 748e473be3d..378a272dbf6 100644 --- a/pkgs/applications/version-management/gitea/default.nix +++ b/pkgs/applications/version-management/gitea/default.nix @@ -8,13 +8,13 @@ with stdenv.lib; buildGoPackage rec { pname = "gitea"; - version = "1.8.3"; + version = "1.9.0"; src = fetchFromGitHub { owner = "go-gitea"; repo = "gitea"; rev = "v${version}"; - sha256 = "1q3wslf9s4dg7h1f41rh9rb7qlbsqz8k3xffmlzdbbgfdrm7sym1"; + sha256 = "1z7rkhxkymv7rgc7blh9ps5sqrgl4sryf0rqcp16nh9n5snfm1rm"; # Required to generate the same checksum on MacOS due to unicode encoding differences # More information: https://github.com/NixOS/nixpkgs/pull/48128 extraPostFetch = '' From 19011bad0c512c42f68f1ed589df36ab66cf8ef6 Mon Sep 17 00:00:00 2001 From: Luke Worth Date: Thu, 1 Aug 2019 08:16:59 +1000 Subject: [PATCH 1329/1611] postgis: add explanatory comment --- pkgs/servers/sql/postgresql/ext/postgis.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix index 5e38cb42d19..aa31d3163c8 100644 --- a/pkgs/servers/sql/postgresql/ext/postgis.nix +++ b/pkgs/servers/sql/postgresql/ext/postgis.nix @@ -46,12 +46,17 @@ stdenv.mkDerivation rec { " \ "raster/scripts/python/Makefile"; mkdir -p $out/bin + + # postgis' build system assumes it is being installed to the same place as postgresql, and looks + # for the postgres binary relative to $PREFIX. We gently support this system using an illusion. ln -s ${postgresql}/bin/postgres $out/bin/postgres ''; # create aliases for all commands adding version information postInstall = '' + # Teardown the illusory postgres used for building; see postConfigure. rm $out/bin/postgres + for prog in $out/bin/*; do # */ ln -s $prog $prog-${version} done From c1da476a8815bb9c618e78bd85d54f8825f788b7 Mon Sep 17 00:00:00 2001 From: Luke Worth Date: Thu, 1 Aug 2019 08:21:07 +1000 Subject: [PATCH 1330/1611] postgis: match platform compatibility with postgres --- pkgs/servers/sql/postgresql/ext/postgis.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix index aa31d3163c8..63b8a39b0e2 100644 --- a/pkgs/servers/sql/postgresql/ext/postgis.nix +++ b/pkgs/servers/sql/postgresql/ext/postgis.nix @@ -70,6 +70,6 @@ stdenv.mkDerivation rec { homepage = https://postgis.net/; license = licenses.gpl2; maintainers = [ maintainers.marcweber ]; - platforms = platforms.all; + inherit (postgresql.meta) platforms; }; } From 5f44f311ded2c8ef2a8ef4f9a2ff5565e6de8f14 Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Wed, 31 Jul 2019 23:08:31 +0000 Subject: [PATCH 1331/1611] =?UTF-8?q?xonsh:=200.9.8=20=E2=86=92=200.9.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/shells/xonsh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index b896b8b088e..2c43bb420eb 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -2,14 +2,14 @@ python3Packages.buildPythonApplication rec { pname = "xonsh"; - version = "0.9.8"; + version = "0.9.9"; # fetch from github because the pypi package ships incomplete tests src = fetchFromGitHub { owner = "xonsh"; repo = "xonsh"; rev = "refs/tags/${version}"; - sha256 = "0lnvx1kdk1nwv988wrxyvbzb25xawz517amvi4pwzs22bymcdhws"; + sha256 = "0c6ywzn72clcclawgf1khwaaj3snn49fmajz8qfhc5mpbnvdp7q0"; }; LC_ALL = "en_US.UTF-8"; From 42c3eefd778e37c8602f45cdef89fe001f108aad Mon Sep 17 00:00:00 2001 From: Artemis Tosini Date: Wed, 31 Jul 2019 23:28:13 +0000 Subject: [PATCH 1332/1611] nixos/xonsh: Use the package specified in the package option --- nixos/modules/programs/xonsh.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/programs/xonsh.nix b/nixos/modules/programs/xonsh.nix index ceab9b5db93..5cd2a49f807 100644 --- a/nixos/modules/programs/xonsh.nix +++ b/nixos/modules/programs/xonsh.nix @@ -26,6 +26,7 @@ in package = mkOption { type = types.package; + default = pkgs.xonsh; example = literalExample "pkgs.xonsh.override { configFile = \"/path/to/xonshrc\"; }"; description = '' xonsh package to use. @@ -46,11 +47,11 @@ in environment.etc."xonshrc".text = cfg.config; - environment.systemPackages = [ pkgs.xonsh ]; + environment.systemPackages = [ cfg.package ]; environment.shells = [ "/run/current-system/sw/bin/xonsh" - "${pkgs.xonsh}/bin/xonsh" + "${cfg.package}/bin/xonsh" ]; }; From fb2e964012a16c21feb718906b792854243a7ede Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Wed, 31 Jul 2019 18:29:11 -0700 Subject: [PATCH 1333/1611] python3Packages.xgboost: fix the build on Darwin (#65703) --- pkgs/development/python-modules/xgboost/default.nix | 2 ++ .../python-modules/xgboost/lib-path-for-python.patch | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/xgboost/default.nix b/pkgs/development/python-modules/xgboost/default.nix index bbe7c986260..c75362436e4 100644 --- a/pkgs/development/python-modules/xgboost/default.nix +++ b/pkgs/development/python-modules/xgboost/default.nix @@ -3,6 +3,7 @@ , nose , scipy , scikitlearn +, stdenv , xgboost , substituteAll , pandas @@ -19,6 +20,7 @@ buildPythonPackage rec { (substituteAll { src = ./lib-path-for-python.patch; libpath = "${xgboost}/lib"; + extention = stdenv.hostPlatform.extensions.sharedLibrary; }) ]; diff --git a/pkgs/development/python-modules/xgboost/lib-path-for-python.patch b/pkgs/development/python-modules/xgboost/lib-path-for-python.patch index 86c628c694b..c9252c12fed 100644 --- a/pkgs/development/python-modules/xgboost/lib-path-for-python.patch +++ b/pkgs/development/python-modules/xgboost/lib-path-for-python.patch @@ -35,4 +35,4 @@ index d87922c0..859a30fb 100644 - 'did you install compilers and run build.sh in root path?\n' - 'List of candidates:\n' + ('\n'.join(dll_path))) - return lib_path -+ return ["@libpath@/libxgboost.so"] ++ return ["@libpath@/libxgboost@extention@"] From 06b45a8d70e6c2156e8b0d58ff355ad55e972b9a Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 31 Jul 2019 21:42:32 -0400 Subject: [PATCH 1334/1611] ghostwriter: use qt5's mkDerivation --- pkgs/applications/editors/ghostwriter/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/ghostwriter/default.nix b/pkgs/applications/editors/ghostwriter/default.nix index a65954d7d2a..1e07902365d 100644 --- a/pkgs/applications/editors/ghostwriter/default.nix +++ b/pkgs/applications/editors/ghostwriter/default.nix @@ -1,9 +1,8 @@ -{ stdenv, fetchFromGitHub, qmake, pkgconfig, qttools, qtwebengine, hunspell }: +{ stdenv, mkDerivation, fetchFromGitHub, qmake, pkgconfig, qttools, qtwebengine, hunspell }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "ghostwriter"; version = "1.8.0"; - name = "${pname}-${version}"; src = fetchFromGitHub { owner = "wereturtle"; From ccb9ada402da6ef01493b1e08d17fc184e7884cb Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Wed, 10 Jul 2019 22:49:51 -0400 Subject: [PATCH 1335/1611] mariadb: fix mytop script --- pkgs/servers/sql/mariadb/default.nix | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 94cdf801ff2..de1b6ec0b12 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -1,8 +1,9 @@ -{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, ncurses, zlib, xz, lzo, lz4, bzip2, snappy +{ stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, makeWrapper, ncurses, zlib, xz, lzo, lz4, bzip2, snappy , libiconv, openssl, pcre, boost, judy, bison, libxml2, libkrb5 , libaio, libevent, jemalloc, cracklib, systemd, numactl, perl , fixDarwinDylibNames, cctools, CoreServices , asio, buildEnv, check, scons +, less }: with stdenv.lib; @@ -11,6 +12,8 @@ let # in mariadb # spans the whole file libExt = stdenv.hostPlatform.extensions.sharedLibrary; +mytopEnv = perl.withPackages (p: with p; [ DataDumper DBDmysql DBI TermReadKey ]); + mariadb = everything // { inherit client; # libmysqlclient.so in .out, necessary headers in .dev and utils in .bin server = everything; # a full single-output build, including everything in `client` again @@ -133,12 +136,13 @@ everything = stdenv.mkDerivation (common // { outputs = [ "out" "dev" "man" ]; - nativeBuildInputs = common.nativeBuildInputs ++ [ bison ]; + nativeBuildInputs = common.nativeBuildInputs ++ [ bison ] ++ optional (!stdenv.isDarwin) makeWrapper; buildInputs = common.buildInputs ++ [ xz lzo lz4 bzip2 snappy libxml2 boost judy libevent cracklib - ] ++ optional (stdenv.isLinux && !stdenv.isAarch32) numactl; + ] ++ optional (stdenv.isLinux && !stdenv.isAarch32) numactl + ++ optional (!stdenv.isDarwin) mytopEnv; cmakeFlags = common.cmakeFlags ++ [ "-DMYSQL_DATADIR=/var/lib/mysql" @@ -161,6 +165,8 @@ everything = stdenv.mkDerivation (common // { cmakeFlags="$cmakeFlags \ -DINSTALL_SHAREDIR=$dev/share/mysql -DINSTALL_SUPPORTFILESDIR=$dev/share/mysql" + '' + optionalString (!stdenv.isDarwin) '' + patchShebangs scripts/mytop.sh ''; postInstall = '' @@ -181,6 +187,11 @@ everything = stdenv.mkDerivation (common // { sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster ''; + # perlPackages.DBDmysql is broken on darwin + postFixup = optionalString (!stdenv.isDarwin) '' + wrapProgram $out/bin/mytop --set PATH ${less}/bin/less + ''; + CXXFLAGS = optionalString stdenv.isi686 "-fpermissive"; }); From 4fa644bceca4296619ba6d3a1a18201f4ca27538 Mon Sep 17 00:00:00 2001 From: Hugo Reeves Date: Wed, 31 Jul 2019 21:29:18 +1200 Subject: [PATCH 1336/1611] croc: init at 6.1.1 --- pkgs/tools/networking/croc/default.nix | 38 ++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/tools/networking/croc/default.nix diff --git a/pkgs/tools/networking/croc/default.nix b/pkgs/tools/networking/croc/default.nix new file mode 100644 index 00000000000..160b5840cf5 --- /dev/null +++ b/pkgs/tools/networking/croc/default.nix @@ -0,0 +1,38 @@ +{ stdenv, buildGoModule, fetchFromGitHub }: + +buildGoModule rec { + pname = "croc"; + version = "6.1.1"; + + goPackagePath = "github.com/schollz/croc"; + + src = fetchFromGitHub { + owner = "schollz"; + repo = pname; + rev = "v${version}"; + sha256 = "08gkwllk3m5hpkr1iwabvs739rvl6rzdnra2v040dzdj6zgyd12r"; + }; + + modSha256 = "026m3hc2imna7bf4jpqm7yq6mr4l5is2crsx1vxdpr4h0n6z0v3i"; + subPackages = [ "." ]; + + meta = with stdenv.lib; { + description = "Easily and securely send things from one computer to another"; + homepage = https://github.com/schollz/croc; + license = licenses.mit; + maintainers = with maintainers; [ hugoreeves ]; + + longDescription = '' + Croc is a command line tool written in Go that allows any two computers to + simply and securely transfer files and folders. + + Croc does all of the following: + - Allows any two computers to transfer data (using a relay) + - Provides end-to-end encryption (using PAKE) + - Enables easy cross-platform transfers (Windows, Linux, Mac) + - Allows multiple file transfers + - Allows resuming transfers that are interrupted + - Does not require a server or port-forwarding + ''; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89fc4364ffb..ddef47d8add 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1276,6 +1276,8 @@ in ccnet = callPackage ../tools/networking/ccnet { }; + croc = callPackage ../tools/networking/croc { }; + cddl = callPackage ../development/tools/cddl { }; cedille = callPackage ../applications/science/logic/cedille From d7aa6df31f19821800c8e9a96387eaad1dc68d34 Mon Sep 17 00:00:00 2001 From: Colin L Rice Date: Thu, 1 Aug 2019 01:54:28 -0400 Subject: [PATCH 1337/1611] nix-daemon: Fix builduser count to work when maxJobs is auto --- nixos/modules/services/misc/nix-daemon.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index d8f90f1539c..6bc88c66dc1 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -467,7 +467,7 @@ in fi ''; - nix.nrBuildUsers = mkDefault (lib.max 32 cfg.maxJobs); + nix.nrBuildUsers = mkDefault (lib.max 32 (if cfg.maxJobs == "auto" then 0 else cfg.maxJobs)); users.users = nixbldUsers; From 15cc0cc5c9117da04bdaadca03a2f733a3668c94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 1 Aug 2019 07:28:50 +0100 Subject: [PATCH 1338/1611] radare2: 3.6.0 -> 3.7.0 --- pkgs/development/tools/analysis/radare2/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/tools/analysis/radare2/default.nix b/pkgs/development/tools/analysis/radare2/default.nix index 24253da1e29..39cd6417542 100644 --- a/pkgs/development/tools/analysis/radare2/default.nix +++ b/pkgs/development/tools/analysis/radare2/default.nix @@ -109,12 +109,12 @@ in { # # DO NOT EDIT! Automatically generated by ./update.py radare2 = generic { - version_commit = "22265"; - gittap = "3.6.0"; - gittip = "ff3bb6e3b2e6a519b4c975d05758c171a5186389"; - rev = "3.6.0"; - version = "3.6.0"; - sha256 = "0vp94qzznqv87vvjbyyj6swkm6gl7byqvb1jv23i8i42zi5n7qmd"; + version_commit = "22465"; + gittap = "3.7.0"; + gittip = "cb2648cbbde3cd63cb1b2a9b1d4269c97bd653b8"; + rev = "3.7.0"; + version = "3.7.0"; + sha256 = "1kinf51sb1zyy8nlq9yig02z42izih7kz8ff0gqm8all0hrzclxc"; cs_ver = "4.0.1"; cs_sha256 = "0ijwxxk71nr9z91yxw20zfj4bbsbrgvixps5c7cpj163xlzlwba6"; }; From 4cf37460b66aedad6887bc302364dd814c12d37e Mon Sep 17 00:00:00 2001 From: Mats Rauhala Date: Thu, 1 Aug 2019 09:36:51 +0300 Subject: [PATCH 1339/1611] flameshot: Use Qt mkDerivation (#65710) --- pkgs/tools/misc/flameshot/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/flameshot/default.nix b/pkgs/tools/misc/flameshot/default.nix index 16a46ac1432..ad6ed6acb4c 100644 --- a/pkgs/tools/misc/flameshot/default.nix +++ b/pkgs/tools/misc/flameshot/default.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchFromGitHub, qtbase, qmake, qttools, qtsvg }: +{ mkDerivation, lib, fetchFromGitHub, qtbase, qmake, qttools, qtsvg }: # To use `flameshot gui`, you will also need to put flameshot in `services.dbus.packages` # in configuration.nix so that the daemon gets launched properly: # # services.dbus.packages = [ pkgs.flameshot ]; # environment.systemPackages = [ pkgs.flameshot ]; -stdenv.mkDerivation rec { - name = "flameshot-${version}"; +mkDerivation rec { + pname = "flameshot"; version = "0.6.0"; src = fetchFromGitHub { @@ -34,11 +34,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = with stdenv.lib; { + meta = with lib; { description = "Powerful yet simple to use screenshot software"; homepage = https://github.com/lupoDharkael/flameshot; maintainers = [ maintainers.scode ]; - license = stdenv.lib.licenses.gpl3; - platforms = stdenv.lib.platforms.linux; + license = lib.licenses.gpl3; + platforms = lib.platforms.linux; }; } From 79bd446d8ada91e79f5b7c1ebc6c7cb615f06784 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Thu, 1 Aug 2019 07:27:25 +0100 Subject: [PATCH 1340/1611] mopidy: 2.2.2 -> 2.2.3 --- pkgs/applications/audio/mopidy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mopidy/default.nix b/pkgs/applications/audio/mopidy/default.nix index 9015a8c749a..c1379c57fe5 100644 --- a/pkgs/applications/audio/mopidy/default.nix +++ b/pkgs/applications/audio/mopidy/default.nix @@ -4,13 +4,13 @@ pythonPackages.buildPythonApplication rec { pname = "mopidy"; - version = "2.2.2"; + version = "2.2.3"; src = fetchFromGitHub { owner = "mopidy"; repo = "mopidy"; rev = "v${version}"; - sha256 = "01vl162c7ssf69b0m65ys9fxnsqnfa1whwbprnc063lkcnrnlkr1"; + sha256 = "0i9rpnlmgrnkgmr9hyx9sky9gzj2cjhay84a0yaijwcb9nmr8nnc"; }; nativeBuildInputs = [ wrapGAppsHook ]; From 94545c30c58e94b1ecc37c60d5abd016520c77dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Stylianos=20Ramos?= Date: Wed, 12 Jun 2019 00:34:12 -0300 Subject: [PATCH 1341/1611] joker: 0.12.2 -> 0.12.4 --- pkgs/development/interpreters/joker/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/joker/default.nix b/pkgs/development/interpreters/joker/default.nix index c3b494783e7..ba65c00f1e9 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.12.2"; + version = "0.12.4"; goPackagePath = "github.com/candid82/joker"; @@ -10,11 +10,13 @@ buildGoPackage rec { rev = "v${version}"; owner = "candid82"; repo = "joker"; - sha256 = "0cqz8k53fzz3xqx9czk3hgq164dsbvnk51s0j29g1bmkbl51c2vm"; + sha256 = "1swi991khmyhxn6w6xsdqp1wbyx3qmd9d7yhpwvqasyxp8gg3szm"; }; preBuild = "go generate ./..."; + postBuild = "rm go/bin/sum256dir"; + dontInstallSrc = true; excludedPackages = "gen"; # Do not install private generators. From ec3f7e3e54533846ef9d1fba9bd38f9f898bca0f Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Thu, 1 Aug 2019 01:44:30 -0700 Subject: [PATCH 1342/1611] bundlerApp: meta.platforms defaults to platforms of ruby dependency (#65697) --- pkgs/development/ruby-modules/bundler-app/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/ruby-modules/bundler-app/default.nix b/pkgs/development/ruby-modules/bundler-app/default.nix index f8843c61582..58e72e4a9f4 100644 --- a/pkgs/development/ruby-modules/bundler-app/default.nix +++ b/pkgs/development/ruby-modules/bundler-app/default.nix @@ -41,6 +41,7 @@ let buildInputs = buildInputs ++ lib.optional (scripts != []) makeWrapper; + meta = { platforms = ruby.meta.platforms; } // meta; passthru = basicEnv.passthru // { inherit basicEnv; inherit (basicEnv) env; From 3f5b182891cba34fd6366d1dcb4e5380bb16d442 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Tue, 30 Jul 2019 20:20:52 +0200 Subject: [PATCH 1343/1611] dmenu2: Remove the package (fix #63218) --- pkgs/applications/misc/clipmenu/default.nix | 4 +-- pkgs/applications/misc/dmenu2/default.nix | 29 --------------------- pkgs/top-level/all-packages.nix | 6 ++++- 3 files changed, 7 insertions(+), 32 deletions(-) delete mode 100644 pkgs/applications/misc/dmenu2/default.nix diff --git a/pkgs/applications/misc/clipmenu/default.nix b/pkgs/applications/misc/clipmenu/default.nix index 7a47a0e3bc0..e6e4ede6ac1 100644 --- a/pkgs/applications/misc/clipmenu/default.nix +++ b/pkgs/applications/misc/clipmenu/default.nix @@ -1,6 +1,6 @@ -{ clipnotify, makeWrapper, xsel, dmenu2, utillinux, gawk, stdenv, fetchFromGitHub, lib }: +{ clipnotify, makeWrapper, xsel, dmenu, utillinux, gawk, stdenv, fetchFromGitHub, lib }: let - runtimePath = lib.makeBinPath [ clipnotify xsel dmenu2 utillinux gawk ]; + runtimePath = lib.makeBinPath [ clipnotify xsel dmenu utillinux gawk ]; in stdenv.mkDerivation rec { name = "clipmenu-${version}"; diff --git a/pkgs/applications/misc/dmenu2/default.nix b/pkgs/applications/misc/dmenu2/default.nix deleted file mode 100644 index 3d567603359..00000000000 --- a/pkgs/applications/misc/dmenu2/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{stdenv, fetchhg, libX11, libXinerama, libXft, zlib}: - -with stdenv.lib; - -stdenv.mkDerivation rec { - name = "dmenu2-0.3pre-2014-07-08"; - - src = fetchhg { - url = "https://bitbucket.org/melek/dmenu2"; - rev = "36cb94a16edf928bdaaa636123392517ed469be0"; - sha256 = "1b17z5ypg6ij7zz3ncp3irc87raccna10y4w490c872a99lp23lv"; - }; - - buildInputs = [ libX11 libXinerama zlib libXft ]; - - postPatch = '' - sed -ri -e 's!\<(dmenu|stest)\>!'"$out/bin"'/&!g' dmenu_run - ''; - - preConfigure = [ ''sed -i "s@PREFIX = /usr/local@PREFIX = $out@g" config.mk'' ]; - - meta = { - description = "A patched fork of the original dmenu - an efficient dynamic menu for X"; - homepage = https://bitbucket.org/melek/dmenu2; - license = licenses.mit; - maintainers = [ maintainers.cstrahan ]; - platforms = platforms.all; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e240d4cc5c6..87fbdcdcbfb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17549,7 +17549,11 @@ in dmenu = callPackage ../applications/misc/dmenu { }; - dmenu2 = callPackage ../applications/misc/dmenu2 { }; + # TODO (@primeos): Remove after the 19.09 branch-off: + dmenu2 = throw '' + The fork "dmenu2" is not maintained by upstream anymore. Please use the + original "dmenu" instead. + ''; dmensamenu = callPackage ../applications/misc/dmensamenu { inherit (python3Packages) buildPythonApplication requests; From bffe156bd27c6c30e66ecfef3c7c98042a1fa483 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 1 Aug 2019 12:02:32 +0200 Subject: [PATCH 1344/1611] mdsh: 0.1.3 -> 0.1.4 --- pkgs/development/tools/documentation/mdsh/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/documentation/mdsh/default.nix b/pkgs/development/tools/documentation/mdsh/default.nix index 645cd62c3c4..af25f3f7595 100644 --- a/pkgs/development/tools/documentation/mdsh/default.nix +++ b/pkgs/development/tools/documentation/mdsh/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { name = "mdsh-${version}"; - version = "0.1.3"; + version = "0.1.4"; src = fetchFromGitHub { owner = "zimbatm"; repo = "mdsh"; rev = "v${version}"; - sha256 = "17pd090wpnx7i8q9pp9rhps35ahm1xn4h6pm1cfsafm072qd7rff"; + sha256 = "0m3f5mrdmnmkfsy7mc6x3jf4ainmq0z42mv935ikcdbjwwjbd5gq"; }; - cargoSha256 = "0a2d2qnb0wkxcs2l839p7jsr99ng2frahsfi2viy9fjynsjpvzlm"; + cargoSha256 = "11kzl0ns84xhdacn0k7nilgzgpwazmaaqdjf2kcarxf2h01b0rjv"; meta = with stdenv.lib; { description = "Markdown shell pre-processor"; From 2ee92a1956c8aa09e5bc486b73bc3caf3eaaf365 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Thu, 1 Aug 2019 11:36:27 +0200 Subject: [PATCH 1345/1611] python37Packages.mysql-connector: 8.0.16 -> 8.0.17 --- pkgs/development/python-modules/mysql-connector/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/mysql-connector/default.nix b/pkgs/development/python-modules/mysql-connector/default.nix index efddecd4246..1db93922725 100644 --- a/pkgs/development/python-modules/mysql-connector/default.nix +++ b/pkgs/development/python-modules/mysql-connector/default.nix @@ -4,13 +4,13 @@ buildPythonPackage rec { pname = "mysql-connector"; - version = "8.0.16"; + version = "8.0.17"; src = fetchFromGitHub { owner = "mysql"; repo = "mysql-connector-python"; rev = version; - sha256 = "0yl3fkyws24lc2qrbvn42bqy72aqy8q5v8f0j5zy3mkh9a7wlxdp"; + sha256 = "1by0g7hrbmb1wj2wh3q9y92mjimck2izh1i4fm1xfbp278p2acbd"; }; propagatedBuildInputs = [ protobuf ]; From 9d5e531dff39edade2f98ecb7c64c11cb92c606a Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:01:56 +0300 Subject: [PATCH 1346/1611] mariadb: 10.3.15 -> 10.3.17 --- pkgs/servers/sql/mariadb/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index de1b6ec0b12..b159b86b0db 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -27,14 +27,14 @@ galeraLibs = buildEnv { }; common = rec { # attributes common to both builds - version = "10.3.15"; + version = "10.3.17"; src = fetchurl { urls = [ "https://downloads.mariadb.org/f/mariadb-${version}/source/mariadb-${version}.tar.gz" "https://downloads.mariadb.com/MariaDB/mariadb-${version}/source/mariadb-${version}.tar.gz" ]; - sha256 = "0s399nxk2z8fgdr527p64y74zwjc3gpv7psf1n2r6ksl9njr3wr7"; + sha256 = "15vh15az16932q42y9dxpzwxldmh0x4hvzrar3f8kblsqm7ym890"; name = "mariadb-${version}.tar.gz"; }; @@ -103,7 +103,7 @@ common = rec { # attributes common to both builds }; client = stdenv.mkDerivation (common // { - name = "mariadb-client-${common.version}"; + pname = "mariadb-client"; outputs = [ "out" "dev" "man" ]; @@ -132,7 +132,7 @@ client = stdenv.mkDerivation (common // { }); everything = stdenv.mkDerivation (common // { - name = "mariadb-${common.version}"; + pname = "mariadb"; outputs = [ "out" "dev" "man" ]; From f0d88f05b68d7500be68f470c05eddc705592397 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:08:45 +0300 Subject: [PATCH 1347/1611] mariadb: fix mariadb_config path --- .../mariadb/cmake-libmariadb-includedir.patch | 21 ++++++++++ pkgs/servers/sql/mariadb/default.nix | 41 +++++++++++++------ 2 files changed, 49 insertions(+), 13 deletions(-) create mode 100644 pkgs/servers/sql/mariadb/cmake-libmariadb-includedir.patch diff --git a/pkgs/servers/sql/mariadb/cmake-libmariadb-includedir.patch b/pkgs/servers/sql/mariadb/cmake-libmariadb-includedir.patch new file mode 100644 index 00000000000..dee77d9ab17 --- /dev/null +++ b/pkgs/servers/sql/mariadb/cmake-libmariadb-includedir.patch @@ -0,0 +1,21 @@ +diff --git a/libmariadb/mariadb_config/mariadb_config.c.in b/libmariadb/mariadb_config/mariadb_config.c.in +index 703c9466..c6d3f1bc 100644 +--- a/libmariadb/mariadb_config/mariadb_config.c.in ++++ b/libmariadb/mariadb_config/mariadb_config.c.in +@@ -5,13 +5,13 @@ + + static char *mariadb_progname; + +-#define INCLUDE "-I@CMAKE_INSTALL_PREFIX@/@INSTALL_INCLUDEDIR@ -I@CMAKE_INSTALL_PREFIX@/@INSTALL_INCLUDEDIR@/mysql" +-#define LIBS "-L@CMAKE_INSTALL_PREFIX@/@INSTALL_LIBDIR@/ -lmariadb" ++#define INCLUDE "-I@CMAKE_INSTALL_PREFIX_DEV@/@INSTALL_INCLUDEDIR@ -I@CMAKE_INSTALL_PREFIX_DEV@/@INSTALL_INCLUDEDIR@/mysql" ++#define LIBS "-L@CMAKE_INSTALL_PREFIX_DEV@/@INSTALL_LIBDIR@/ -lmariadb" + #define LIBS_SYS "@extra_dynamic_LDFLAGS@" + #define CFLAGS INCLUDE + #define VERSION "@MARIADB_CLIENT_VERSION@" + #define CC_VERSION "@CPACK_PACKAGE_VERSION@" +-#define PLUGIN_DIR "@CMAKE_INSTALL_PREFIX@/@INSTALL_PLUGINDIR@" ++#define PLUGIN_DIR "@CMAKE_INSTALL_PREFIX_DEV@/@INSTALL_PLUGINDIR@" + #define SOCKET "@MARIADB_UNIX_ADDR@" + #define PORT "@MARIADB_PORT@" + #define TLS_LIBRARY_VERSION "@TLS_LIBRARY_VERSION@" diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index b159b86b0db..fb280ed374d 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -49,8 +49,10 @@ common = rec { # attributes common to both builds sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt ''; - patches = [ ./cmake-includedir.patch ] - ++ optionals stdenv.isDarwin [ + patches = [ + ./cmake-includedir.patch + ./cmake-libmariadb-includedir.patch + ] ++ optionals stdenv.isDarwin [ # Derived from "Fixed c++11 narrowing error" # https://github.com/MariaDB/server/commit/a0dfefb0f8a47145e599a5f1b0dc576fa7634b92 ./fix-c++11-narrowing-error.patch @@ -68,6 +70,8 @@ common = rec { # attributes common to both builds "-DINSTALL_DOCDIR=share/doc/mysql" "-DINSTALL_DOCREADMEDIR=share/doc/mysql" "-DINSTALL_INCLUDEDIR=include/mysql" + "-DINSTALL_LIBDIR=lib/mysql" + "-DINSTALL_PLUGINDIR=lib/mysql/plugin" "-DINSTALL_INFODIR=share/mysql/docs" "-DINSTALL_MANDIR=share/man" "-DINSTALL_MYSQLSHAREDIR=share/mysql" @@ -91,6 +95,12 @@ common = rec { # attributes common to both builds "-DWITHOUT_TOKUDB=1" # mariadb docs say disable this for musl ]; + postInstall = '' + mkdir -p "$dev"/bin && mv "$out"/bin/{mariadb_config,mysql_config} "$dev"/bin + mkdir -p "$dev"/lib/mysql && mv "$out"/lib/mysql/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib/mysql + mkdir -p "$dev"/lib/mysql/plugin && mv "$out"/lib/mysql/plugin/{caching_sha2_password.so,dialog.so,mysql_clear_password.so,sha256_password.so} "$dev"/lib/mysql/plugin + ''; + passthru.mysqlVersion = "5.7"; meta = with stdenv.lib; { @@ -116,16 +126,21 @@ client = stdenv.mkDerivation (common // { "-DWITH_WSREP=OFF" ]; - postInstall = '' + preConfigure = '' + cmakeFlags="$cmakeFlags \ + -DCMAKE_INSTALL_PREFIX_DEV=$dev" + ''; + + postInstall = common.postInstall + '' rm -r "$out"/share/mysql rm -r "$out"/share/doc - rm "$out"/bin/{msql2mysql,mysql_plugin,mytop,wsrep_sst_rsync_wan,mysql_config,mariadb_config} - rm "$out"/lib/plugin/{daemon_example.ini,dialog.so,mysql_clear_password.so,sha256_password.so} - libmysqlclient_path=$(readlink -f $out/lib/libmysqlclient${libExt}) - rm "$out"/lib/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}} - mv "$libmysqlclient_path" "$out"/lib/libmysqlclient${libExt} - ln -sv libmysqlclient${libExt} "$out"/lib/libmysqlclient_r${libExt} - mkdir -p "$dev"/lib && mv "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib + rm "$out"/bin/{msql2mysql,mysql_plugin,mytop,wsrep_sst_rsync_wan} + rm "$out"/lib/mysql/plugin/daemon_example.ini + libmysqlclient_path=$(readlink -f $out/lib/mysql/libmysqlclient${libExt}) + rm "$out"/lib/mysql/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}} + mv "$libmysqlclient_path" "$out"/lib/mysql/libmysqlclient${libExt} + ln -sv libmysqlclient${libExt} "$out"/lib/mysql/libmysqlclient_r${libExt} + ''; enableParallelBuilding = true; # the client should be OK @@ -163,13 +178,14 @@ everything = stdenv.mkDerivation (common // { preConfigure = '' cmakeFlags="$cmakeFlags \ + -DCMAKE_INSTALL_PREFIX_DEV=$dev -DINSTALL_SHAREDIR=$dev/share/mysql -DINSTALL_SUPPORTFILESDIR=$dev/share/mysql" '' + optionalString (!stdenv.isDarwin) '' patchShebangs scripts/mytop.sh ''; - postInstall = '' + postInstall = common.postInstall + '' chmod +x "$out"/bin/wsrep_sst_common rm -r "$out"/data # Don't need testing data rm "$out"/bin/{mysql_find_rows,mysql_waitpid,mysqlaccess,mysqladmin,mysqlbinlog,mysqlcheck} @@ -180,9 +196,8 @@ everything = stdenv.mkDerivation (common // { '' } rm "$out"/lib/mysql/plugin/{client_ed25519.so,daemon_example.ini} - rm "$out"/lib/{libmysqlclient${libExt},libmysqlclient_r${libExt}} + rm "$out"/lib/mysql/{libmysqlclient${libExt},libmysqlclient_r${libExt}} mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql - mkdir -p "$dev"/lib && mv "$out"/lib/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib '' + optionalString (! stdenv.isDarwin) '' sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster ''; From c8488b913a285b72bb9dc090f2903762b11ac9ce Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:15:55 +0300 Subject: [PATCH 1348/1611] mariadb: add option to build server without client binary files --- .../sql/mariadb/cmake-without-client.patch | 15 +++++++++++ pkgs/servers/sql/mariadb/default.nix | 25 ++++++++++++------- 2 files changed, 31 insertions(+), 9 deletions(-) create mode 100644 pkgs/servers/sql/mariadb/cmake-without-client.patch diff --git a/pkgs/servers/sql/mariadb/cmake-without-client.patch b/pkgs/servers/sql/mariadb/cmake-without-client.patch new file mode 100644 index 00000000000..ce36d036b6d --- /dev/null +++ b/pkgs/servers/sql/mariadb/cmake-without-client.patch @@ -0,0 +1,15 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 1ea7c1df..b0face0d 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -176,6 +176,10 @@ ELSE() + SET (SKIP_COMPONENTS "N-O-N-E") + ENDIF() + ++IF (WITHOUT_CLIENT) ++ SET (SKIP_COMPONENTS "Client|ClientPlugins|ManPagesClient") ++ENDIF() ++ + OPTION(NOT_FOR_DISTRIBUTION "Allow linking with GPLv2-incompatible system libraries. Only set it you never plan to distribute the resulting binaries" OFF) + + INCLUDE(check_compiler_flag) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index fb280ed374d..a4d6df2432d 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -4,6 +4,7 @@ , fixDarwinDylibNames, cctools, CoreServices , asio, buildEnv, check, scons , less +, withoutClient ? false }: with stdenv.lib; @@ -14,9 +15,9 @@ libExt = stdenv.hostPlatform.extensions.sharedLibrary; mytopEnv = perl.withPackages (p: with p; [ DataDumper DBDmysql DBI TermReadKey ]); -mariadb = everything // { +mariadb = server // { inherit client; # libmysqlclient.so in .out, necessary headers in .dev and utils in .bin - server = everything; # a full single-output build, including everything in `client` again + server = server; # MariaDB Server inherit connector-c; # libmysqlclient.so inherit galera; }; @@ -146,8 +147,8 @@ client = stdenv.mkDerivation (common // { enableParallelBuilding = true; # the client should be OK }); -everything = stdenv.mkDerivation (common // { - pname = "mariadb"; +server = stdenv.mkDerivation (common // { + pname = "mariadb-server"; outputs = [ "out" "dev" "man" ]; @@ -159,6 +160,10 @@ everything = stdenv.mkDerivation (common // { ] ++ optional (stdenv.isLinux && !stdenv.isAarch32) numactl ++ optional (!stdenv.isDarwin) mytopEnv; + patches = common.patches ++ [ + ./cmake-without-client.patch + ]; + cmakeFlags = common.cmakeFlags ++ [ "-DMYSQL_DATADIR=/var/lib/mysql" "-DINSTALL_PLUGINDIR=lib/mysql/plugin" @@ -171,6 +176,8 @@ everything = stdenv.mkDerivation (common // { "-DWITH_INNODB_DISALLOW_WRITES=ON" "-DWITHOUT_EXAMPLE=1" "-DWITHOUT_FEDERATED=1" + ] ++ stdenv.lib.optionals withoutClient [ + "-DWITHOUT_CLIENT=ON" ] ++ stdenv.lib.optionals stdenv.isDarwin [ "-DWITHOUT_OQGRAPH=1" "-DWITHOUT_TOKUDB=1" @@ -188,16 +195,16 @@ everything = stdenv.mkDerivation (common // { postInstall = common.postInstall + '' chmod +x "$out"/bin/wsrep_sst_common rm -r "$out"/data # Don't need testing data - rm "$out"/bin/{mysql_find_rows,mysql_waitpid,mysqlaccess,mysqladmin,mysqlbinlog,mysqlcheck} - rm "$out"/bin/{mysqldump,mysqlhotcopy,mysqlimport,mysqlshow,mysqlslap,mysqltest} + rm "$out"/lib/mysql/plugin/daemon_example.ini + rm "$out"/lib/mysql/{libmysqlclient${libExt},libmysqlclient_r${libExt}} + mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql + '' + optionalString withoutClient '' ${ # We don't build with GSSAPI on Darwin optionalString (! stdenv.isDarwin) '' rm "$out"/lib/mysql/plugin/auth_gssapi_client.so '' } - rm "$out"/lib/mysql/plugin/{client_ed25519.so,daemon_example.ini} - rm "$out"/lib/mysql/{libmysqlclient${libExt},libmysqlclient_r${libExt}} - mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql + rm "$out"/lib/mysql/plugin/client_ed25519.so '' + optionalString (! stdenv.isDarwin) '' sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster ''; From 0a4562277f04a32582248a4552a90569e25b1daa Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:18:12 +0300 Subject: [PATCH 1349/1611] mariadb: fix config build mariadb client --- pkgs/servers/sql/mariadb/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index a4d6df2432d..541db100595 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -16,7 +16,7 @@ libExt = stdenv.hostPlatform.extensions.sharedLibrary; mytopEnv = perl.withPackages (p: with p; [ DataDumper DBDmysql DBI TermReadKey ]); mariadb = server // { - inherit client; # libmysqlclient.so in .out, necessary headers in .dev and utils in .bin + inherit client; # MariaDB Client server = server; # MariaDB Server inherit connector-c; # libmysqlclient.so inherit galera; @@ -120,11 +120,14 @@ client = stdenv.mkDerivation (common // { propagatedBuildInputs = [ openssl zlib ]; # required from mariadb.pc - patches = [ ./cmake-plugin-includedir.patch ]; + patches = common.patches ++ [ + ./cmake-plugin-includedir.patch + ]; cmakeFlags = common.cmakeFlags ++ [ "-DWITHOUT_SERVER=ON" "-DWITH_WSREP=OFF" + "-DINSTALL_MYSQLSHAREDIR=share/mysql-client" ]; preConfigure = '' @@ -133,9 +136,8 @@ client = stdenv.mkDerivation (common // { ''; postInstall = common.postInstall + '' - rm -r "$out"/share/mysql rm -r "$out"/share/doc - rm "$out"/bin/{msql2mysql,mysql_plugin,mytop,wsrep_sst_rsync_wan} + rm "$out"/bin/{mytop,wsrep_sst_rsync_wan} rm "$out"/lib/mysql/plugin/daemon_example.ini libmysqlclient_path=$(readlink -f $out/lib/mysql/libmysqlclient${libExt}) rm "$out"/lib/mysql/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}} From 9d8984e5c991281234c960781e43366b69c79174 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Thu, 1 Aug 2019 11:25:30 +0200 Subject: [PATCH 1350/1611] gnomeExtensions.pidgin-im-integration: move from gnome3.pidgin-im-gnome-shell-extension --- pkgs/desktops/gnome-3/default.nix | 4 ++-- .../pidgin-im-integration}/default.nix | 7 +++---- pkgs/top-level/all-packages.nix | 1 + 3 files changed, 6 insertions(+), 6 deletions(-) rename pkgs/desktops/gnome-3/{misc/pidgin => extensions/pidgin-im-integration}/default.nix (85%) diff --git a/pkgs/desktops/gnome-3/default.nix b/pkgs/desktops/gnome-3/default.nix index 742babf721a..87b7be5bdd2 100644 --- a/pkgs/desktops/gnome-3/default.nix +++ b/pkgs/desktops/gnome-3/default.nix @@ -345,8 +345,6 @@ lib.makeScope pkgs.newScope (self: with self; { nautilus-python = callPackage ./misc/nautilus-python { }; - pidgin-im-gnome-shell-extension = callPackage ./misc/pidgin { }; - gtkhtml = callPackage ./misc/gtkhtml { enchant = pkgs.enchant1; }; pomodoro = callPackage ./misc/pomodoro { }; @@ -398,4 +396,6 @@ lib.makeScope pkgs.newScope (self: with self; { gtk = gtk3; gtkmm = gtkmm3; rest = librest; + + pidgin-im-gnome-shell-extension = pkgs.gnomeExtensions.pidgin-im-integration; # added 2019-08-01 }) diff --git a/pkgs/desktops/gnome-3/misc/pidgin/default.nix b/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix similarity index 85% rename from pkgs/desktops/gnome-3/misc/pidgin/default.nix rename to pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix index c11fdfa6099..4bff9175deb 100644 --- a/pkgs/desktops/gnome-3/misc/pidgin/default.nix +++ b/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix @@ -1,13 +1,12 @@ { stdenv, fetchFromGitHub, glib }: stdenv.mkDerivation rec { + pname = "gnome-shell-extension-pidgin-im-integration"; version = "1.0.1"; - basename = "pidgin-im-gnome-shell-extension"; - name = "${basename}-${version}"; src = fetchFromGitHub { owner = "muffinmad"; - repo = "${basename}"; + repo = "pidgin-im-gnome-shell-extension"; rev = "v${version}"; sha256 = "1567s2sfqig4jw0nrn134f5vkx0yq31q044grv3xk4vpl1f3z2lr"; }; @@ -22,7 +21,7 @@ stdenv.mkDerivation rec { mkdir -p "$extensions_dir" mv *.js metadata.json dbus.xml gnome-shell-extension-pidgin.pot "$extensions_dir" - schemas_dir="$share_dir/gsettings-schemas/${name}/glib-2.0/schemas" + schemas_dir="$share_dir/gsettings-schemas/${pname}-${version}/glib-2.0/schemas" mkdir -p "$schemas_dir" mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */ glib-compile-schemas "$schemas_dir" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6903fc15ef1..4c03030b606 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -22372,6 +22372,7 @@ in 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 { }; + pidgin-im-integration = callPackage ../desktops/gnome-3/extensions/pidgin-im-integration { }; remove-dropdown-arrows = callPackage ../desktops/gnome-3/extensions/remove-dropdown-arrows { }; sound-output-device-chooser = callPackage ../desktops/gnome-3/extensions/sound-output-device-chooser { }; system-monitor = callPackage ../desktops/gnome-3/extensions/system-monitor { }; From 82061dedaaf29b6e8542ce411858e99f5a094e10 Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Mon, 1 Jul 2019 23:56:01 -0700 Subject: [PATCH 1351/1611] gnomeExtensions.pidgin-im-integration: 1.0.1 -> 32 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/pidgin-im-gnome-shell-extension/versions --- .../pidgin-im-integration/default.nix | 20 +++++-------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix b/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix index 4bff9175deb..6f1cc3df409 100644 --- a/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix +++ b/pkgs/desktops/gnome-3/extensions/pidgin-im-integration/default.nix @@ -2,33 +2,23 @@ stdenv.mkDerivation rec { pname = "gnome-shell-extension-pidgin-im-integration"; - version = "1.0.1"; + version = "32"; src = fetchFromGitHub { owner = "muffinmad"; repo = "pidgin-im-gnome-shell-extension"; rev = "v${version}"; - sha256 = "1567s2sfqig4jw0nrn134f5vkx0yq31q044grv3xk4vpl1f3z2lr"; + sha256 = "1jyg8r0s1v83sgg6y0jbsj2v37mglh8rvd8vi27fxnjq9xmg8kpc"; }; - buildInputs = [ glib ]; + dontConfigure = true; + dontBuild = true; - configurePhase = ""; - buildPhase = ""; installPhase = '' share_dir="$prefix/share" extensions_dir="$share_dir/gnome-shell/extensions/pidgin@muffinmad" mkdir -p "$extensions_dir" - mv *.js metadata.json dbus.xml gnome-shell-extension-pidgin.pot "$extensions_dir" - - schemas_dir="$share_dir/gsettings-schemas/${pname}-${version}/glib-2.0/schemas" - mkdir -p "$schemas_dir" - mv schemas/* "$schemas_dir" # fix Emacs syntax highlighting: */ - glib-compile-schemas "$schemas_dir" - - locale_dir="$share_dir/locale" - mkdir -p "$locale_dir" - mv locale/* $locale_dir # fix Emacs syntax highlighting: */ + mv *.js metadata.json dbus.xml schemas locale "$extensions_dir" ''; meta = with stdenv.lib; { From 0692c615e5c62b7664c66575114d3253d6a391df Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:22:10 +0300 Subject: [PATCH 1352/1611] mariadb: remove test binaries --- pkgs/servers/sql/mariadb/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 541db100595..4c185cc8915 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -85,6 +85,7 @@ common = rec { # attributes common to both builds "-DWITH_SSL=system" "-DWITH_PCRE=system" "-DWITH_SAFEMALLOC=OFF" + "-DWITH_UNIT_TESTS=OFF" "-DEMBEDDED_LIBRARY=OFF" ] ++ optional stdenv.isDarwin [ # On Darwin without sandbox, CMake will find the system java and attempt to build with java support, but @@ -137,7 +138,7 @@ client = stdenv.mkDerivation (common // { postInstall = common.postInstall + '' rm -r "$out"/share/doc - rm "$out"/bin/{mytop,wsrep_sst_rsync_wan} + rm "$out"/bin/{mysqltest,mytop,wsrep_sst_rsync_wan} rm "$out"/lib/mysql/plugin/daemon_example.ini libmysqlclient_path=$(readlink -f $out/lib/mysql/libmysqlclient${libExt}) rm "$out"/lib/mysql/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}} @@ -196,6 +197,7 @@ server = stdenv.mkDerivation (common // { postInstall = common.postInstall + '' chmod +x "$out"/bin/wsrep_sst_common + rm "$out"/bin/mysql_client_test rm -r "$out"/data # Don't need testing data rm "$out"/lib/mysql/plugin/daemon_example.ini rm "$out"/lib/mysql/{libmysqlclient${libExt},libmysqlclient_r${libExt}} From 13758a68b037caa630a1d842998f27d2a62b1db6 Mon Sep 17 00:00:00 2001 From: angristan Date: Thu, 1 Aug 2019 13:40:01 +0200 Subject: [PATCH 1353/1611] solargraph: 0.34.2 -> 0.35.1 --- pkgs/development/ruby-modules/solargraph/Gemfile.lock | 4 ++-- pkgs/development/ruby-modules/solargraph/gemset.nix | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ruby-modules/solargraph/Gemfile.lock b/pkgs/development/ruby-modules/solargraph/Gemfile.lock index ae3246c9277..0770eea4ad4 100644 --- a/pkgs/development/ruby-modules/solargraph/Gemfile.lock +++ b/pkgs/development/ruby-modules/solargraph/Gemfile.lock @@ -15,7 +15,7 @@ GEM rainbow (3.0.0) reverse_markdown (1.1.0) nokogiri - rubocop (0.72.0) + rubocop (0.74.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.6) @@ -23,7 +23,7 @@ GEM ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 1.7) ruby-progressbar (1.10.1) - solargraph (0.34.2) + solargraph (0.35.1) backport (~> 1.1) bundler (>= 1.17.2) htmlentities (~> 4.3, >= 4.3.4) diff --git a/pkgs/development/ruby-modules/solargraph/gemset.nix b/pkgs/development/ruby-modules/solargraph/gemset.nix index 5677801826a..7fa679fc162 100644 --- a/pkgs/development/ruby-modules/solargraph/gemset.nix +++ b/pkgs/development/ruby-modules/solargraph/gemset.nix @@ -118,10 +118,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "192vmm9ah6b4wyabawaszpr8n3z93y3ymykp3m4pncrbwngmn3m2"; + sha256 = "0wpyass9qb2wvq8zsc7wdzix5xy2ldiv66wnx8mwwprz2dcvzayk"; type = "gem"; }; - version = "0.72.0"; + version = "0.74.0"; }; ruby-progressbar = { groups = ["default"]; @@ -139,10 +139,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1r217wvspg7mmjvkng3ksas3pbcy90iiw46r4b8xzd08y8p66ssy"; + sha256 = "00pq74a3zvb7x333mwcz7m73p7g4sjwzxmci94jwasl0h35fapzg"; type = "gem"; }; - version = "0.34.2"; + version = "0.35.1"; }; thor = { groups = ["default"]; From dad37cbbf8ed2545025fabb57a4ec4df8a53715a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Thu, 1 Aug 2019 08:00:00 -0500 Subject: [PATCH 1354/1611] z-lua: 1.7.1 -> 1.7.2 --- pkgs/tools/misc/z-lua/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/z-lua/default.nix b/pkgs/tools/misc/z-lua/default.nix index 9b0f5e477a1..aed902044f9 100644 --- a/pkgs/tools/misc/z-lua/default.nix +++ b/pkgs/tools/misc/z-lua/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "z-lua"; - version = "1.7.1"; + version = "1.7.2"; src = fetchFromGitHub { owner = "skywind3000"; repo = "z.lua"; rev = "v${version}"; - sha256 = "01n4x84rpmyjyfga90s2s63gdk17z944hz35fk95qnshc5fapfq8"; + sha256 = "17klcw2iv7d636mp7fb80kjvqd3xqkzqhwz41ri1l029dxji4zzh"; }; dontBuild = true; From 7c4d08421eaf762d259a31bc1c7cbcf144d2a00e Mon Sep 17 00:00:00 2001 From: "K. Bruneau" Date: Thu, 1 Aug 2019 10:47:16 -0400 Subject: [PATCH 1355/1611] winetricks: 20190310 -> 20190615 (#64706) --- pkgs/misc/emulators/wine/sources.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/wine/sources.nix b/pkgs/misc/emulators/wine/sources.nix index 41f3813b94b..4ccdb254daa 100644 --- a/pkgs/misc/emulators/wine/sources.nix +++ b/pkgs/misc/emulators/wine/sources.nix @@ -56,8 +56,8 @@ in rec { winetricks = fetchFromGitHub rec { # https://github.com/Winetricks/winetricks/releases - version = "20190310"; - sha256 = "0mqzl7k9q7lfkmk8fk9dfzi2dm45h31mrid9265qh2d56nk28ali"; + version = "20190615"; + sha256 = "1bdvj363yjn7agqq1fxdfz31j1rrs2wc02v874jjx5sw1bfq5qsa"; owner = "Winetricks"; repo = "winetricks"; rev = version; From e1c1db787a4540ef6fc43a7af036ae31d55c25a9 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Thu, 1 Aug 2019 17:32:08 +0200 Subject: [PATCH 1356/1611] jdupes: 1.13.1 -> 1.13.2 --- pkgs/tools/misc/jdupes/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/jdupes/default.nix b/pkgs/tools/misc/jdupes/default.nix index 8b3324ad66a..d82347fef8f 100644 --- a/pkgs/tools/misc/jdupes/default.nix +++ b/pkgs/tools/misc/jdupes/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "jdupes-${version}"; - version = "1.13.1"; + version = "1.13.2"; src = fetchFromGitHub { owner = "jbruchon"; repo = "jdupes"; rev = "v${version}"; - sha256 = "1f001l56dx7aixlpl7438shzh8b2vanx8k1sywm9ix6cak1k8rzr"; + sha256 = "1dzw1h9x9addkxf7r8lb8y09wmdkx8i61f5m96589r88jjk965xy"; # Unicode file names lead to different checksums on HFS+ vs. other # filesystems because of unicode normalisation. The testdir # directories have such files and will be removed. From 7d5f527fc024fe3676f0aa646761bc494682b286 Mon Sep 17 00:00:00 2001 From: Troels Henriksen Date: Thu, 1 Aug 2019 18:06:41 +0200 Subject: [PATCH 1357/1611] oclgrind: init at 18.3. (#63159) oclgrind: init at 18.3 --- .../tools/analysis/oclgrind/default.nix | 28 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/analysis/oclgrind/default.nix diff --git a/pkgs/development/tools/analysis/oclgrind/default.nix b/pkgs/development/tools/analysis/oclgrind/default.nix new file mode 100644 index 00000000000..4d1b22a72b5 --- /dev/null +++ b/pkgs/development/tools/analysis/oclgrind/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchFromGitHub, cmake, llvmPackages, readline, python }: + +stdenv.mkDerivation rec { + pname = "oclgrind"; + version = "18.3"; # see comment in all-packages.nix + + src = fetchFromGitHub { + owner = "jrprice"; + repo = "oclgrind"; + rev = "v${version}"; + sha256 = "0s42z3dg684a0gk8qyx2h08cbh95zkrdaaj9y71rrc5bjsg8197x"; + }; + + nativeBuildInputs = [ cmake ]; + buildInputs = [ llvmPackages.llvm llvmPackages.clang-unwrapped readline python ]; + + cmakeFlags = [ + "-DCLANG_ROOT=${llvmPackages.clang-unwrapped}" + ]; + + meta = with stdenv.lib; { + description = "An OpenCL device simulator and debugger"; + homepage = https://github.com/jrprice/oclgrind; + license = licenses.bsd3; + platforms = platforms.linux; + maintainers = with maintainers; [ athas ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a1cfa099bca..7bb749d5aef 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23908,6 +23908,10 @@ in sndio = callPackage ../misc/sndio { }; + # Oclgrind 18.3 does not work with newer LLVMs (but HEAD does, so + # fix this after next release). + oclgrind = callPackage ../development/tools/analysis/oclgrind { llvmPackages = llvmPackages_6; }; + opkg = callPackage ../tools/package-management/opkg { }; opkg-utils = callPackage ../tools/package-management/opkg-utils { }; From bad033aaa7be98cff202ac7aa5b8336454752dd1 Mon Sep 17 00:00:00 2001 From: Nick Bathum Date: Thu, 1 Aug 2019 12:07:47 -0400 Subject: [PATCH 1358/1611] ghidra 9.0.2 -> 9.0.4 --- pkgs/tools/security/ghidra/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/ghidra/default.nix b/pkgs/tools/security/ghidra/default.nix index 0878e058c3e..d68fd5e7e92 100644 --- a/pkgs/tools/security/ghidra/default.nix +++ b/pkgs/tools/security/ghidra/default.nix @@ -6,11 +6,11 @@ in stdenv.mkDerivation { - name = "ghidra-9.0.2"; + name = "ghidra-9.0.4"; src = fetchurl { - url = https://ghidra-sre.org/ghidra_9.0.2_PUBLIC_20190403.zip; - sha256 = "10ffd65c266e9f5b631c8ed96786c41ef30e2de939c3c42770573bb3548f8e9f"; + url = https://ghidra-sre.org/ghidra_9.0.4_PUBLIC_20190516.zip; + sha256 = "1gqqxk57hswwgr97qisqivcfgjdxjipfdshyh4r76dyrfpa0q3d5"; }; nativeBuildInputs = [ From 4ae454d1eb6c79f67eea29e37dc37b69e87554a9 Mon Sep 17 00:00:00 2001 From: Francesco Gazzetta Date: Thu, 1 Aug 2019 19:20:16 +0200 Subject: [PATCH 1359/1611] duktape: 2.3.0 -> 2.4.0 --- pkgs/development/interpreters/duktape/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/duktape/default.nix b/pkgs/development/interpreters/duktape/default.nix index f3b253bfd22..f79c30740a1 100644 --- a/pkgs/development/interpreters/duktape/default.nix +++ b/pkgs/development/interpreters/duktape/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "duktape-${version}"; - version = "2.3.0"; + version = "2.4.0"; src = fetchurl { url = "http://duktape.org/duktape-${version}.tar.xz"; - sha256 = "1s5g8lg0dga6x3rcq328a6hsd2sk2vzwq9zfmskjh5h6n8x2yvpd"; + sha256 = "1z3i0ymnkk6q48bmbgh59g1ryrwjdv46vrf6nbnmqfv3s43r7a46"; }; buildPhase = '' From ac9057538272716a63dc2b60fcbb30c08ed7ee26 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:25:45 +0300 Subject: [PATCH 1360/1611] mariadb: clean config --- pkgs/servers/sql/mariadb/default.nix | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 4c185cc8915..d10b0fbc37b 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -43,8 +43,8 @@ common = rec { # attributes common to both builds buildInputs = [ ncurses openssl zlib pcre jemalloc libiconv - ] ++ stdenv.lib.optionals stdenv.isLinux [ libaio systemd libkrb5 ] - ++ stdenv.lib.optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ]; + ] ++ optionals stdenv.isLinux [ libaio systemd libkrb5 ] + ++ optionals stdenv.isDarwin [ perl fixDarwinDylibNames cctools CoreServices ]; prePatch = '' sed -i 's,[^"]*/var/log,/var/log,g' storage/mroonga/vendor/groonga/CMakeLists.txt @@ -87,25 +87,28 @@ common = rec { # attributes common to both builds "-DWITH_SAFEMALLOC=OFF" "-DWITH_UNIT_TESTS=OFF" "-DEMBEDDED_LIBRARY=OFF" - ] ++ optional stdenv.isDarwin [ + ] ++ optionals stdenv.isDarwin [ # On Darwin without sandbox, CMake will find the system java and attempt to build with java support, but # then it will fail during the actual build. Let's just disable the flag explicitly until someone decides # to pass in java explicitly. "-DCONNECT_WITH_JDBC=OFF" "-DCURSES_LIBRARY=${ncurses.out}/lib/libncurses.dylib" - ] ++ optional stdenv.hostPlatform.isMusl [ + ] ++ optionals stdenv.hostPlatform.isMusl [ "-DWITHOUT_TOKUDB=1" # mariadb docs say disable this for musl ]; postInstall = '' + rm "$out"/lib/mysql/plugin/daemon_example.ini mkdir -p "$dev"/bin && mv "$out"/bin/{mariadb_config,mysql_config} "$dev"/bin mkdir -p "$dev"/lib/mysql && mv "$out"/lib/mysql/{libmariadbclient.a,libmysqlclient.a,libmysqlclient_r.a,libmysqlservices.a} "$dev"/lib/mysql mkdir -p "$dev"/lib/mysql/plugin && mv "$out"/lib/mysql/plugin/{caching_sha2_password.so,dialog.so,mysql_clear_password.so,sha256_password.so} "$dev"/lib/mysql/plugin ''; + enableParallelBuilding = true; + passthru.mysqlVersion = "5.7"; - meta = with stdenv.lib; { + meta = { description = "An enhanced, drop-in replacement for MySQL"; homepage = https://mariadb.org/; license = licenses.gpl2; @@ -139,15 +142,12 @@ client = stdenv.mkDerivation (common // { postInstall = common.postInstall + '' rm -r "$out"/share/doc rm "$out"/bin/{mysqltest,mytop,wsrep_sst_rsync_wan} - rm "$out"/lib/mysql/plugin/daemon_example.ini libmysqlclient_path=$(readlink -f $out/lib/mysql/libmysqlclient${libExt}) rm "$out"/lib/mysql/{libmariadb${libExt},libmysqlclient${libExt},libmysqlclient_r${libExt}} mv "$libmysqlclient_path" "$out"/lib/mysql/libmysqlclient${libExt} ln -sv libmysqlclient${libExt} "$out"/lib/mysql/libmysqlclient_r${libExt} ''; - - enableParallelBuilding = true; # the client should be OK }); server = stdenv.mkDerivation (common // { @@ -199,17 +199,16 @@ server = stdenv.mkDerivation (common // { chmod +x "$out"/bin/wsrep_sst_common rm "$out"/bin/mysql_client_test rm -r "$out"/data # Don't need testing data - rm "$out"/lib/mysql/plugin/daemon_example.ini rm "$out"/lib/mysql/{libmysqlclient${libExt},libmysqlclient_r${libExt}} mv "$out"/share/{groonga,groonga-normalizer-mysql} "$out"/share/doc/mysql '' + optionalString withoutClient '' ${ # We don't build with GSSAPI on Darwin - optionalString (! stdenv.isDarwin) '' + optionalString (!stdenv.isDarwin) '' rm "$out"/lib/mysql/plugin/auth_gssapi_client.so '' } rm "$out"/lib/mysql/plugin/client_ed25519.so - '' + optionalString (! stdenv.isDarwin) '' + '' + optionalString (!stdenv.isDarwin) '' sed -i 's/-mariadb/-mysql/' "$out"/bin/galera_new_cluster ''; From 0b8da0cbfb425dd312c10f875d68eb7a4f446d14 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 14:26:16 +0300 Subject: [PATCH 1361/1611] mariadb: add aliases for mariadb.client --- pkgs/top-level/aliases.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index fe3f1851913..8bb9c7274f9 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -194,6 +194,8 @@ mapAliases ({ m3d-linux = m33-linux; # added 2016-08-13 man_db = man-db; # added 2016-05 manpages = man-pages; # added 2015-12-06 + mariadb-client = hiPrio mariadb.client; #added 2019.07.28 + mysql-client = hiPrio mariadb.client; memtest86 = memtest86plus; # added 2019-05-08 mesa_noglu = mesa; # added 2019-05-28 # NOTE: 2018-07-12: legacy alias: From 12f95f75726ded0807d0184b3b55084fcddca5ea Mon Sep 17 00:00:00 2001 From: Izorkin Date: Thu, 1 Aug 2019 19:41:57 +0300 Subject: [PATCH 1362/1611] mariadb: remove c++11 narrowing error patch --- pkgs/servers/sql/mariadb/default.nix | 6 +----- .../sql/mariadb/fix-c++11-narrowing-error.patch | 13 ------------- 2 files changed, 1 insertion(+), 18 deletions(-) delete mode 100644 pkgs/servers/sql/mariadb/fix-c++11-narrowing-error.patch diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index d10b0fbc37b..2f923116b2b 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -53,11 +53,7 @@ common = rec { # attributes common to both builds patches = [ ./cmake-includedir.patch ./cmake-libmariadb-includedir.patch - ] ++ optionals stdenv.isDarwin [ - # Derived from "Fixed c++11 narrowing error" - # https://github.com/MariaDB/server/commit/a0dfefb0f8a47145e599a5f1b0dc576fa7634b92 - ./fix-c++11-narrowing-error.patch - ]; + ]; cmakeFlags = [ "-DBUILD_CONFIG=mysql_release" diff --git a/pkgs/servers/sql/mariadb/fix-c++11-narrowing-error.patch b/pkgs/servers/sql/mariadb/fix-c++11-narrowing-error.patch deleted file mode 100644 index 7399d8e3927..00000000000 --- a/pkgs/servers/sql/mariadb/fix-c++11-narrowing-error.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/sql/table.cc b/sql/table.cc -index e46af771507..9bef21a1da2 100644 ---- a/sql/table.cc -+++ b/sql/table.cc -@@ -8814,7 +8814,7 @@ bool TR_table::update(ulonglong start_id, ulonglong end_id) - - store(FLD_BEGIN_TS, thd->transaction_time()); - thd->set_time(); -- timeval end_time= {thd->query_start(), long(thd->query_start_sec_part())}; -+ timeval end_time= {thd->query_start(), int(thd->query_start_sec_part())}; - store(FLD_TRX_ID, start_id); - store(FLD_COMMIT_ID, end_id); - store(FLD_COMMIT_TS, end_time); From ed5ed93422de9243bf4642b241d755db43eaf279 Mon Sep 17 00:00:00 2001 From: David McKay Date: Thu, 1 Aug 2019 18:52:25 +0100 Subject: [PATCH 1363/1611] terraform_0_12: 0.12.5 -> 0.12.6 (#65729) --- pkgs/applications/networking/cluster/terraform/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index cb192bddcaf..02803daa219 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -97,8 +97,8 @@ in rec { terraform_0_11-full = terraform_0_11.full; terraform_0_12 = pluggable (generic { - version = "0.12.5"; - sha256 = "0p064rhaanwx4szs8hv6mdqad8d2bgfd94h2la11j58xbsxc7hap"; + version = "0.12.6"; + sha256 = "0vxvciv4amblxx50wivlm60fyj1ardfgdpj3l8cj9fhi79b3khxl"; patches = [ ./provider-path.patch ]; passthru = { inherit plugins; }; }); From b1f0e2ace1b08d6d571e015430b8ae127a249c73 Mon Sep 17 00:00:00 2001 From: Jon Date: Thu, 1 Aug 2019 10:54:41 -0700 Subject: [PATCH 1364/1611] python3Packages.datatable: fix the Darwin build (#65613) --- .../python-modules/datatable/default.nix | 30 ++++++++++--- .../datatable/hardcode-library-paths.patch | 43 +++++++++++++++++++ ...onkeypatch_disable-native-relocation.patch | 28 ++++++++++++ pkgs/top-level/python-packages.nix | 4 +- 4 files changed, 99 insertions(+), 6 deletions(-) create mode 100644 pkgs/development/python-modules/datatable/hardcode-library-paths.patch create mode 100644 pkgs/development/python-modules/datatable/remove-compiler-monkeypatch_disable-native-relocation.patch diff --git a/pkgs/development/python-modules/datatable/default.nix b/pkgs/development/python-modules/datatable/default.nix index 3ea926ac23b..200ebef1faa 100644 --- a/pkgs/development/python-modules/datatable/default.nix +++ b/pkgs/development/python-modules/datatable/default.nix @@ -1,11 +1,16 @@ -{ lib +{ blessed , buildPythonPackage , fetchPypi -, pythonOlder +, lib +, libcxx +, libcxxabi , llvm -, typesentry -, blessed +, openmp , pytest +, pythonOlder +, stdenv +, substituteAll +, typesentry }: buildPythonPackage rec { @@ -17,10 +22,25 @@ buildPythonPackage rec { sha256 = "1s8z81zffrckvdwrrl0pkjc7gsdvjxw59xgg6ck81dl7gkh5grjk"; }; + patches = [ + # Disable the compiler monkey patching, and remove the task that's copying + # the native dependencies to the build directory. + ./remove-compiler-monkeypatch_disable-native-relocation.patch + ] ++ lib.optionals stdenv.isDarwin [ + # Replace the library auto-detection with hardcoded paths. + (substituteAll { + src = ./hardcode-library-paths.patch; + + libomp_dylib = "${lib.getLib openmp}/lib/libomp.dylib"; + libcxx_dylib = "${lib.getLib libcxx}/lib/libc++.1.dylib"; + libcxxabi_dylib = "${lib.getLib libcxxabi}/lib/libc++abi.dylib"; + }) + ]; + disabled = pythonOlder "3.5"; propagatedBuildInputs = [ typesentry blessed ]; - buildInputs = [ llvm ]; + buildInputs = [ llvm ] ++ lib.optionals stdenv.isDarwin [ openmp ]; checkInputs = [ pytest ]; LLVM = llvm; diff --git a/pkgs/development/python-modules/datatable/hardcode-library-paths.patch b/pkgs/development/python-modules/datatable/hardcode-library-paths.patch new file mode 100644 index 00000000000..76c2f0e1dd7 --- /dev/null +++ b/pkgs/development/python-modules/datatable/hardcode-library-paths.patch @@ -0,0 +1,43 @@ +diff --git a/ci/setup_utils.py b/ci/setup_utils.py +index 66b385a..6255af0 100644 +--- a/ci/setup_utils.py ++++ b/ci/setup_utils.py +@@ -600,37 +600,7 @@ def find_linked_dynamic_libraries(): + them as a list of absolute paths. + """ + with TaskContext("Find the required dynamic libraries") as log: +- llvm = get_llvm() +- libs = required_link_libraries() +- resolved = [] +- for libname in libs: +- if llvm: +- fullpath = os.path.join(llvm, "lib", libname) +- if os.path.isfile(fullpath): +- resolved.append(fullpath) +- log.info("Library `%s` found at %s" % (libname, fullpath)) +- continue +- else: +- log.info("%s does not exist" % fullpath) +- # Rely on the shell `locate` command to find the dynamic libraries. +- proc = subprocess.Popen(["locate", libname], stdout=subprocess.PIPE, +- stderr=subprocess.PIPE) +- stdout, stderr = proc.communicate() +- if proc.returncode == 0: +- results = stdout.decode().strip().split("\n") +- results = [r for r in results if r] +- if results: +- results.sort(key=len) +- fullpath = results[0] +- assert os.path.isfile(fullpath), "Invalid path: %r" % (fullpath,) +- resolved.append(fullpath) +- log.info("Library `%s` found at %s" % (libname, fullpath)) +- continue +- else: +- log.fatal("Cannot locate dynamic library `%s`" % libname) +- else: +- log.fatal("`locate` command returned the following error:\n%s" +- % stderr.decode()) ++ resolved = ["@libomp_dylib@", "@libcxx_dylib@", "@libcxxabi_dylib@"] + return resolved + + diff --git a/pkgs/development/python-modules/datatable/remove-compiler-monkeypatch_disable-native-relocation.patch b/pkgs/development/python-modules/datatable/remove-compiler-monkeypatch_disable-native-relocation.patch new file mode 100644 index 00000000000..7cdbfa90724 --- /dev/null +++ b/pkgs/development/python-modules/datatable/remove-compiler-monkeypatch_disable-native-relocation.patch @@ -0,0 +1,28 @@ +diff --git a/setup.py b/setup.py +index 58fc875..8032561 100644 +--- a/setup.py ++++ b/setup.py +@@ -141,23 +141,6 @@ if cmd in ("build", "bdist_wheel", "build_ext", "install"): + extra_link_args = get_extra_link_args() + cpp_files = get_c_sources("c") + +- with TaskContext("Copy dynamic libraries") as log: +- # Copy system libraries into the datatable/lib folder, so that they can +- # be packaged with the wheel +- libs = find_linked_dynamic_libraries() +- for libpath in libs: +- trgfile = os.path.join("datatable", "lib", +- os.path.basename(libpath)) +- if os.path.exists(trgfile): +- log.info("File %s already exists, skipped" % trgfile) +- else: +- log.info("Copying %s to %s" % (libpath, trgfile)) +- shutil.copy(libpath, trgfile) +- +- if ismacos(): +- monkey_patch_compiler() +- +- + # Create the git version file + if cmd in ("build", "sdist", "bdist_wheel", "install"): + make_git_version_file(True) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ed47a42e113..7bc682e3da5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -482,7 +482,9 @@ in { btchip = callPackage ../development/python-modules/btchip { }; - datatable = callPackage ../development/python-modules/datatable { }; + datatable = callPackage ../development/python-modules/datatable { + inherit (pkgs.llvmPackages) openmp libcxx libcxxabi; + }; datamodeldict = callPackage ../development/python-modules/datamodeldict { }; From 43dcb0542f74ca6ce9c135dac6a34f23669c35b3 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Tue, 30 Jul 2019 15:12:24 -0400 Subject: [PATCH 1365/1611] fractal: 4.0.0 -> 4.2.0 Build system changes happening in the following commits: * https://gitlab.gnome.org/GNOME/fractal/commit/79bf10af6ddecf50b0dc7641658694c196f73403 * https://gitlab.gnome.org/GNOME/fractal/commit/6982765607fb0a0c9e5eae4ad32659b29e5d0fb3 * https://gitlab.gnome.org/GNOME/fractal/commit/4abfa58282e958b2ab6fe44c5e3963d1b5db258a Submitted MR upstream to update Cargo.lock [0] and to make scripts executable [1]. [0]: https://gitlab.gnome.org/GNOME/fractal/merge_requests/446 [1]: https://gitlab.gnome.org/GNOME/fractal/merge_requests/447 --- .../instant-messengers/fractal/default.nix | 28 +++++++++++-------- 1 file changed, 17 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/fractal/default.nix b/pkgs/applications/networking/instant-messengers/fractal/default.nix index 218bdd80ff0..0f1660096e6 100644 --- a/pkgs/applications/networking/instant-messengers/fractal/default.nix +++ b/pkgs/applications/networking/instant-messengers/fractal/default.nix @@ -1,5 +1,6 @@ { stdenv , fetchFromGitLab +, fetchpatch , meson , ninja , gettext @@ -13,28 +14,29 @@ , glib , libhandy , gtk3 -, libsecret , dbus , openssl , sqlite , gst_all_1 +, cairo +, gdk_pixbuf +, gspell , wrapGAppsHook -, fetchpatch }: rustPlatform.buildRustPackage rec { pname = "fractal"; - version = "4.0.0"; + version = "4.2.0"; src = fetchFromGitLab { domain = "gitlab.gnome.org"; owner = "GNOME"; repo = "fractal"; rev = version; - sha256 = "05q47jdgbi5jz01280msb8gxnbsrgf2jvglfm6k40f1xw4wxkrzy"; + sha256 = "0clwsmd6h759bzlazfq5ig56dbx7npx3h43yspk87j1rm2dp1177"; }; - cargoSha256 = "1ax5dv200v8mfx0418bx8sbwpbp6zj469xg75hp78kqfiv83pn1g"; + cargoSha256 = "1hwjajkphl5439dymglgj3h92hxgbf7xpipzrga7ga8m10nx1dhl"; nativeBuildInputs = [ cargo @@ -48,8 +50,12 @@ rustPlatform.buildRustPackage rec { ]; buildInputs = [ + cairo dbus + gdk_pixbuf glib + gspell + gst_all_1.gst-editing-services gst_all_1.gst-plugins-bad gst_all_1.gst-plugins-base gst_all_1.gstreamer @@ -57,21 +63,21 @@ rustPlatform.buildRustPackage rec { gtksourceview hicolor-icon-theme libhandy - libsecret openssl sqlite ]; - patches = [ - # Fixes build with >= gstreamer 1.15.1 + cargoPatches = [ + # https://gitlab.gnome.org/GNOME/fractal/merge_requests/446 (fetchpatch { - url = "https://gitlab.gnome.org/GNOME/fractal/commit/e78f36c25c095ea09c9c421187593706ad7c4065.patch"; - sha256 = "1qv7ayhkhgrrldag2lzs9ql17nbc1d72j375ljhhf6cms89r19ir"; + url = "https://gitlab.gnome.org/GNOME/fractal/commit/2778acdc6c50bc6f034513029b66b0b092bc4c38.patch"; + sha256 = "08v17xmbwrjw688ps4hsnd60d5fm26xj72an3zf6yszha2b97j6y"; }) ]; postPatch = '' - patchShebangs scripts/meson_post_install.py + chmod +x scripts/test.sh + patchShebangs scripts/meson_post_install.py scripts/test.sh ''; # Don't use buildRustPackage phases, only use it for rust deps setup From cf32d902c9b19e8a9b2ecc73fde1827eac4d5911 Mon Sep 17 00:00:00 2001 From: angristan Date: Thu, 1 Aug 2019 13:44:56 +0200 Subject: [PATCH 1366/1611] maintainers: add angristan --- maintainers/maintainer-list.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index 5bf922d86d9..c655126cbdc 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -393,6 +393,11 @@ github = "aneeshusa"; name = "Aneesh Agrawal"; }; + angristan = { + email = "angristan@pm.me"; + github = "angristan"; + name = "Stanislas Lange"; + }; ankhers = { email = "justin.k.wood@gmail.com"; github = "ankhers"; From 27e3932097841b9e84d1dac5dc4feed98b0cdd57 Mon Sep 17 00:00:00 2001 From: angristan Date: Thu, 1 Aug 2019 20:11:31 +0200 Subject: [PATCH 1367/1611] solargraph: add angristan as maintainer --- pkgs/development/ruby-modules/solargraph/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/ruby-modules/solargraph/default.nix b/pkgs/development/ruby-modules/solargraph/default.nix index 0cfd8c5d66b..f5854a6533d 100644 --- a/pkgs/development/ruby-modules/solargraph/default.nix +++ b/pkgs/development/ruby-modules/solargraph/default.nix @@ -11,7 +11,7 @@ bundlerApp rec { description = "IDE tools for the Ruby language"; homepage = http://www.github.com/castwide/solargraph; license = licenses.mit; - maintainers = with maintainers; [ worldofpeace nicknovitski ]; + maintainers = with maintainers; [ worldofpeace nicknovitski angristan ]; platforms = platforms.unix; }; } From 0e6d79b39f5de26b5455921b2f7891fba529fdb4 Mon Sep 17 00:00:00 2001 From: angristan Date: Tue, 30 Jul 2019 14:32:15 +0200 Subject: [PATCH 1368/1611] spotify: 1.0.96.181 -> 1.1.10.546 See #57800 and #65081 for discussion around fixing the SIGSEV since 1.1.5 Fix taken from https://gitweb.gentoo.org/repo/gentoo.git/commit/media-sound/spotify?id=d8c8d8abd012c709551cc96802d2615fa69b5212: Adding apulse libraries to LD_LIBRARY_PATH make spotify work even if pulseaudio is not installed. If pulseaudio is installed instead of apulse, this has no effect. Adding APULSE_PLAYBACK_DEVICE is also necessary otherwise apulse does not find the device (inspired by the tor-browser-bundle derivation) --- pkgs/applications/audio/spotify/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 6e926fe11c3..44526eb594c 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk2, cups, nspr, nss, libpng, libnotify , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 -, at-spi2-atk +, at-spi2-atk, at-spi2-core, apulse }: let @@ -10,20 +10,22 @@ let # If an update breaks things, one of those might have valuable info: # https://aur.archlinux.org/packages/spotify/ # https://community.spotify.com/t5/Desktop-Linux - version = "1.0.96.181.gf6bc1b6b-12"; + version = "1.1.10.546.ge08ef575-19"; # To get the latest stable revision: # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' # To get general information: # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' # More examples of api usage: # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py - rev = "30"; + rev = "36"; deps = [ alsaLib + apulse atk at-spi2-atk + at-spi2-core cairo cups curl @@ -72,7 +74,7 @@ stdenv.mkDerivation { # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 src = fetchurl { url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; - sha512 = "859730fbc80067f0828f7e13eee9a21b13b749f897a50e17c2da4ee672785cfd79e1af6336e609529d105e040dc40f61b6189524783ac93d49f991c4ea8b3c56"; + sha512 = "c49f1a86a9b737e64a475bbe62754a36f607669e908eb725a2395f0a0a6b95968e0c8ce27ab2c8b6c92fe8cbacb1ef58de11c79b92dc0f58c2c6d3a140706a1f"; }; buildInputs = [ squashfsTools makeWrapper ]; @@ -134,6 +136,8 @@ stdenv.mkDerivation { librarypath="${stdenv.lib.makeLibraryPath deps}:$libdir" wrapProgram $out/share/spotify/spotify \ --prefix LD_LIBRARY_PATH : "$librarypath" \ + --prefix LD_LIBRARY_PATH : "${apulse}/lib/apulse" \ + --set APULSE_PLAYBACK_DEVICE plug:dmix \ --prefix PATH : "${gnome3.zenity}/bin" # fix Icon line in the desktop file (#48062) From e2473426593e85576165d6e2e8fb67cfb219a4a2 Mon Sep 17 00:00:00 2001 From: angristan Date: Thu, 1 Aug 2019 20:31:18 +0200 Subject: [PATCH 1369/1611] spotify: add angristan as maintainer --- pkgs/applications/audio/spotify/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 44526eb594c..4c08a8d285d 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -162,7 +162,7 @@ stdenv.mkDerivation { homepage = https://www.spotify.com/; description = "Play music from the Spotify music service"; license = licenses.unfree; - maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau ]; + maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau angristan ]; platforms = [ "x86_64-linux" ]; }; } From ef138ff7d6925557e73e72f91b340b44977e548b Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 1 Aug 2019 11:55:36 -0700 Subject: [PATCH 1370/1611] pythonPackages.redis: 3.1.0 -> 3.3.4 --- pkgs/development/python-modules/redis/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/redis/default.nix b/pkgs/development/python-modules/redis/default.nix index 1851fe7a0de..62a1177054b 100644 --- a/pkgs/development/python-modules/redis/default.nix +++ b/pkgs/development/python-modules/redis/default.nix @@ -1,18 +1,20 @@ -{ fetchPypi, buildPythonPackage }: +{ lib, fetchPypi, buildPythonPackage }: + buildPythonPackage rec { pname = "redis"; - version = "3.1.0"; + version = "3.3.4"; src = fetchPypi { inherit pname version; - sha256 = "7ba8612bbfd966dea8c62322543fed0095da2834dbd5a7c124afbc617a156aa7"; + sha256 = "18n6k113izfqsm8yysrw1a5ba6kv0vsgfz6ab5n0k6k65yvr690z"; }; # tests require a running redis doCheck = false; - meta = { + meta = with lib; { description = "Python client for Redis key-value store"; homepage = "https://pypi.python.org/pypi/redis/"; + license = with licenses; [ mit ]; }; } From 32f62e9798d28a41a532579066b4cda3b499c7d3 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 31 Jul 2019 21:32:19 -0400 Subject: [PATCH 1371/1611] zoom-us: use flathub desktop integration We fetch from https://github.com/flathub/us.zoom.Zoom and install their appdata, icons, and desktop file. --- .../instant-messengers/zoom-us/default.nix | 41 ++++++++++++++----- 1 file changed, 30 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index 82af30811a6..cd78619aa4c 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, mkDerivation, makeWrapper, makeDesktopItem, autoPatchelfHook -, wrapQtAppsHook +{ stdenv, fetchurl, mkDerivation, makeWrapper, autoPatchelfHook +, wrapQtAppsHook, fetchFromGitHub # Dynamic libraries , dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative , qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg @@ -22,6 +22,14 @@ let }; }; + # Used for icons, appdata, and desktop file. + desktopIntegration = fetchFromGitHub { + owner = "flathub"; + repo = "us.zoom.Zoom"; + rev = "0d294e1fdd2a4ef4e05d414bc680511f24d835d7"; + sha256 = "0rm188844a10v8d6zgl2pnwsliwknawj09b02iabrvjw5w1lp6wl"; + }; + in mkDerivation { name = "zoom-us-${version}"; @@ -66,15 +74,26 @@ in mkDerivation { runHook postInstall ''; - postInstall = (makeDesktopItem { - name = "zoom-us"; - exec = "$out/bin/zoom-us %U"; - icon = "$out/share/zoom-us/application-x-zoom.png"; - desktopName = "Zoom"; - genericName = "Video Conference"; - categories = "Network;Application;"; - mimeType = "x-scheme-handler/zoommtg;"; - }).buildCommand + '' + postInstall = '' + mkdir -p $out/share/{applications,appdata,icons} + + # Desktop File + cp ${desktopIntegration}/us.zoom.Zoom.desktop $out/share/applications + substituteInPlace $out/share/applications/us.zoom.Zoom.desktop \ + --replace "Exec=zoom" "Exec=$out/bin/zoom-us" + + # Appdata + cp ${desktopIntegration}/us.zoom.Zoom.appdata.xml $out/share/appdata + + # Icons + for icon_size in 64 96 128 256; do + path=$icon_size'x'$icon_size + icon=${desktopIntegration}/us.zoom.Zoom.$icon_size.png + + mkdir -p $out/share/icons/hicolor/$path/apps + cp $icon $out/share/icons/hicolor/$path/apps/us.zoom.Zoom.png + done + ln -s $out/share/zoom-us/zoom $out/bin/zoom-us ''; From 2d307238defae9c47b865afb2dd578e283330ed5 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Wed, 31 Jul 2019 21:32:54 -0400 Subject: [PATCH 1372/1611] zoom-us: drop uneeded *Inputs --- .../networking/instant-messengers/zoom-us/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix index cd78619aa4c..8aa732fd6ba 100644 --- a/pkgs/applications/networking/instant-messengers/zoom-us/default.nix +++ b/pkgs/applications/networking/instant-messengers/zoom-us/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, mkDerivation, makeWrapper, autoPatchelfHook -, wrapQtAppsHook, fetchFromGitHub +{ stdenv, fetchurl, mkDerivation, autoPatchelfHook +, fetchFromGitHub # Dynamic libraries , dbus, glib, libGL, libX11, libXfixes, libuuid, libxcb, qtbase, qtdeclarative , qtimageformats, qtlocation, qtquickcontrols, qtquickcontrols2, qtscript, qtsvg @@ -35,7 +35,7 @@ in mkDerivation { src = srcs.${stdenv.hostPlatform.system}; - nativeBuildInputs = [ autoPatchelfHook makeWrapper wrapQtAppsHook ]; + nativeBuildInputs = [ autoPatchelfHook ]; buildInputs = [ dbus glib libGL libX11 libXfixes libuuid libxcb libjpeg_turbo From f0969de28cf26af14fef756ad494d52c58549cb8 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 1 Aug 2019 11:27:35 -0700 Subject: [PATCH 1373/1611] pythonPackages.pyproj: 2.2.1 -> 2.2.2 --- pkgs/development/python-modules/pyproj/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pyproj/default.nix b/pkgs/development/python-modules/pyproj/default.nix index ddfecbe8ec5..0f2763faf60 100644 --- a/pkgs/development/python-modules/pyproj/default.nix +++ b/pkgs/development/python-modules/pyproj/default.nix @@ -1,4 +1,4 @@ -{ lib, buildPythonPackage, fetchPypi, python, pkgs, pythonOlder, substituteAll +{ lib, buildPythonPackage, fetchFromGitHub, python, pkgs, pythonOlder, substituteAll , aenum , cython , pytest @@ -8,11 +8,13 @@ buildPythonPackage rec { pname = "pyproj"; - version = "2.2.1"; + version = "2.2.2"; - src = fetchPypi { - inherit pname version; - sha256 = "0yigcxwmx5cczipf2mpmy2gq1dnl0635yjvjq86ay47j1j5fd2gc"; + src = fetchFromGitHub { + owner = "pyproj4"; + repo = "pyproj"; + rev = "v${version}rel"; + sha256 = "0mb0jczgqh3sma69k7237i38h09gxgmvmddls9hpw4f3131f5ax7"; }; # force pyproj to use ${pkgs.proj} From 7944f2a2070bc7f410fa1ef75f4c3ffcb08cdbad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Thu, 1 Aug 2019 20:11:47 +0200 Subject: [PATCH 1374/1611] pythonPackages.spacy: 2.1.6 -> 2.1.7 Changelog: https://github.com/explosion/spaCy/releases/tag/v2.1.7 --- pkgs/development/python-modules/spacy/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/spacy/default.nix b/pkgs/development/python-modules/spacy/default.nix index 2a8e5a264cf..1529d2ededb 100644 --- a/pkgs/development/python-modules/spacy/default.nix +++ b/pkgs/development/python-modules/spacy/default.nix @@ -25,18 +25,16 @@ buildPythonPackage rec { pname = "spacy"; - version = "2.1.6"; + version = "2.1.7"; src = fetchPypi { inherit pname version; - sha256 = "1s0a0vir9lg5q8n832kkadbajb4i4zl20zmdg3g20qlp4mcbn25p"; + sha256 = "0k4kh9jnpdawaqjxwcdi2h01s85s5r338ajgv9kkq59iha4hichh"; }; prePatch = '' substituteInPlace setup.py \ - --replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6" \ - --replace "regex==" "regex>=" \ - --replace "wheel>=0.32.0,<0.33.0" "wheel>=0.32.0" + --replace "plac<1.0.0,>=0.9.6" "plac>=0.9.6" ''; propagatedBuildInputs = [ From 1a063b8fef07db9560b9267d6e4951a710f3aa6e Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Wed, 31 Jul 2019 20:46:22 -0400 Subject: [PATCH 1375/1611] pythonPackages.zstd: 1.4.0.0 -> 1.4.1.0 --- pkgs/development/python-modules/zstd/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/zstd/default.nix b/pkgs/development/python-modules/zstd/default.nix index 08b1d67ffee..9c9c932cabf 100644 --- a/pkgs/development/python-modules/zstd/default.nix +++ b/pkgs/development/python-modules/zstd/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "zstd"; - version = "1.4.0.0"; + version = "1.4.1.0"; src = fetchPypi { inherit pname version; - sha256 = "01prq9rwz1gh42idnj2162w79dzs8gf3ac8pn12lz347w280kjbk"; + sha256 = "0laxg0pag1bzmqmg4x81jb32412pn98p9zg2b0li035m779nka95"; }; postPatch = '' From 38b43eeed4326fb1b93d8388d405ac04f7eef809 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Wed, 31 Jul 2019 13:48:26 -0700 Subject: [PATCH 1376/1611] riemann-tools: 0.2.13 -> 0.2.14 --- pkgs/tools/misc/riemann-tools/Gemfile | 2 +- pkgs/tools/misc/riemann-tools/Gemfile.lock | 9 +++++---- pkgs/tools/misc/riemann-tools/gemset.nix | 16 +++++++++++++--- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/misc/riemann-tools/Gemfile b/pkgs/tools/misc/riemann-tools/Gemfile index ac6abd42c89..b2e34d5120e 100644 --- a/pkgs/tools/misc/riemann-tools/Gemfile +++ b/pkgs/tools/misc/riemann-tools/Gemfile @@ -1,3 +1,3 @@ source 'https://rubygems.org' -gem "riemann-tools", "0.2.13" +gem "riemann-tools" diff --git a/pkgs/tools/misc/riemann-tools/Gemfile.lock b/pkgs/tools/misc/riemann-tools/Gemfile.lock index 65057156ad1..881b8aefcdf 100644 --- a/pkgs/tools/misc/riemann-tools/Gemfile.lock +++ b/pkgs/tools/misc/riemann-tools/Gemfile.lock @@ -4,21 +4,22 @@ GEM beefcake (1.0.0) json (1.8.6) mtrc (0.0.4) + optimist (3.0.0) riemann-client (0.2.6) beefcake (>= 0.3.5, <= 1.0.0) mtrc (>= 0.0.4) trollop (>= 1.16.2) - riemann-tools (0.2.13) + riemann-tools (0.2.14) json (~> 1.8) - riemann-client (>= 0.2.6) - trollop (>= 1.16.2) + optimist (~> 3.0, >= 3.0.0) + riemann-client (~> 0.2, >= 0.2.6) trollop (2.9.9) PLATFORMS ruby DEPENDENCIES - riemann-tools (= 0.2.13) + riemann-tools BUNDLED WITH 1.17.2 diff --git a/pkgs/tools/misc/riemann-tools/gemset.nix b/pkgs/tools/misc/riemann-tools/gemset.nix index 450fba80b72..e775de987d6 100644 --- a/pkgs/tools/misc/riemann-tools/gemset.nix +++ b/pkgs/tools/misc/riemann-tools/gemset.nix @@ -29,6 +29,16 @@ }; version = "0.0.4"; }; + optimist = { + groups = ["default"]; + platforms = []; + source = { + remotes = ["https://rubygems.org"]; + sha256 = "05jxrp3nbn5iilc1k7ir90mfnwc5abc9h78s5rpm3qafwqxvcj4j"; + type = "gem"; + }; + version = "3.0.0"; + }; riemann-client = { dependencies = ["beefcake" "mtrc" "trollop"]; groups = ["default"]; @@ -41,15 +51,15 @@ version = "0.2.6"; }; riemann-tools = { - dependencies = ["json" "riemann-client" "trollop"]; + dependencies = ["json" "optimist" "riemann-client"]; groups = ["default"]; platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0brf44cq4xz0nqhs189zlg76527bfv3jr453yc00410qdzz8fpxa"; + sha256 = "07w9x3iw32zwpzsm9l63vn0nv1778qls1blqysr45m7l7x6n5wjx"; type = "gem"; }; - version = "0.2.13"; + version = "0.2.14"; }; trollop = { groups = ["default"]; From da5455551048a1a50071bf88ad8a005885e3ab73 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Thu, 1 Aug 2019 15:05:25 -0400 Subject: [PATCH 1377/1611] zathura: drop broken synctexSupport option --- pkgs/applications/misc/zathura/core/default.nix | 11 +++++------ pkgs/applications/misc/zathura/default.nix | 7 ++----- 2 files changed, 7 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix index af72e0a8d9a..585b4eef9ea 100644 --- a/pkgs/applications/misc/zathura/core/default.nix +++ b/pkgs/applications/misc/zathura/core/default.nix @@ -3,11 +3,9 @@ , gtk, girara, gettext, libxml2, check , sqlite, glib, texlive, libintl, libseccomp , file, librsvg -, gtk-mac-integration, synctexSupport ? true +, gtk-mac-integration }: -assert synctexSupport -> texlive != null; - with stdenv.lib; stdenv.mkDerivation rec { @@ -29,7 +27,8 @@ stdenv.mkDerivation rec { # "-Dseccomp=enabled" "-Dmanpages=enabled" "-Dconvert-icon=enabled" - ] ++ optional synctexSupport "-Dsynctex=enabled"; + "-Dsynctex=enabled" + ]; nativeBuildInputs = [ meson ninja pkgconfig desktop-file-utils python3.pkgs.sphinx @@ -38,8 +37,8 @@ stdenv.mkDerivation rec { buildInputs = [ gtk girara libintl sqlite glib file librsvg - ] ++ optional synctexSupport texlive.bin.core - ++ optional stdenv.isLinux libseccomp + texlive.bin.core + ] ++ optional stdenv.isLinux libseccomp ++ optional stdenv.isDarwin gtk-mac-integration; doCheck = true; diff --git a/pkgs/applications/misc/zathura/default.nix b/pkgs/applications/misc/zathura/default.nix index e3db15ca78d..1548b0581b6 100644 --- a/pkgs/applications/misc/zathura/default.nix +++ b/pkgs/applications/misc/zathura/default.nix @@ -1,7 +1,6 @@ { config, pkgs # zathura_pdf_mupdf fails to load _opj_create_decompress at runtime on Darwin (https://github.com/NixOS/nixpkgs/pull/61295#issue-277982980) -, useMupdf ? config.zathura.useMupdf or (!pkgs.stdenv.isDarwin) -, synctexSupport ? true }: +, useMupdf ? config.zathura.useMupdf or (!pkgs.stdenv.isDarwin) }: let callPackage = pkgs.newScope self; @@ -9,9 +8,7 @@ let self = rec { gtk = pkgs.gtk3; - zathura_core = callPackage ./core { - inherit synctexSupport; - }; + zathura_core = callPackage ./core { }; zathura_pdf_poppler = callPackage ./pdf-poppler { }; From 2fb5993fe77ae07c9c2929dd40024634528cbc84 Mon Sep 17 00:00:00 2001 From: Atkins Date: Fri, 2 Aug 2019 03:31:22 +0800 Subject: [PATCH 1378/1611] kustomize: 3.0.0 -> 3.1.0 --- pkgs/development/tools/kustomize/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/tools/kustomize/default.nix b/pkgs/development/tools/kustomize/default.nix index 17147ef7c97..3f1bf29773b 100644 --- a/pkgs/development/tools/kustomize/default.nix +++ b/pkgs/development/tools/kustomize/default.nix @@ -2,9 +2,9 @@ buildGoModule rec { name = "kustomize-${version}"; - version = "3.0.0"; - # rev is the 3.0.0 commit, mainly for kustomize version command output - rev = "e0bac6ad192f33d993f11206e24f6cda1d04c4ec"; + version = "3.1.0"; + # rev is the 3.1.0 commit, mainly for kustomize version command output + rev = "95f3303493fdea243ae83b767978092396169baf"; goPackagePath = "sigs.k8s.io/kustomize"; subPackages = [ "cmd/kustomize" ]; @@ -17,7 +17,7 @@ buildGoModule rec { ''; src = fetchFromGitHub { - sha256 = "1ywppn97gfgrwlq1nrj4kdvrdanq5ahqaa636ynyp9yiv9ibziq6"; + sha256 = "0kigcirkjvnj3xi1p28p9yp3s0lff24q5qcvf8ahjwvpbwka14sh"; rev = "v${version}"; repo = "kustomize"; owner = "kubernetes-sigs"; From c19dba37f3d689d48e850ec7575263db7228625f Mon Sep 17 00:00:00 2001 From: Alex Branham Date: Thu, 1 Aug 2019 15:08:15 -0500 Subject: [PATCH 1379/1611] stow: 2.3.0 -> 2.3.1 --- pkgs/tools/misc/stow/default.nix | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/pkgs/tools/misc/stow/default.nix b/pkgs/tools/misc/stow/default.nix index a4d322ae184..d5eecff7278 100644 --- a/pkgs/tools/misc/stow/default.nix +++ b/pkgs/tools/misc/stow/default.nix @@ -1,26 +1,18 @@ -{ stdenv, fetchurl, perl, perlPackages, makeWrapper }: +{ stdenv, fetchurl, perl, perlPackages }: let pname = "stow"; - version = "2.3.0"; + version = "2.3.1"; in stdenv.mkDerivation { name = "${pname}-${version}"; src = fetchurl { url = "mirror://gnu/stow/stow-${version}.tar.bz2"; - sha256 = "1fnn83wwx3yaxpqkq8xyya3aiibz19fwrfj30nsiikm7igmwgiv5"; + sha256 = "0bs2b90wjkk1camcasy8kn403kazq6c7fj5m5msfl3navbgwz9i6"; }; - nativeBuildInputs = [ makeWrapper ]; - buildInputs = with perlPackages; [ perl IOStringy TestOutput HashMerge Clone CloneChoose ]; - - postFixup = '' - wrapProgram "$out"/bin/stow \ - --set PERL5LIB "$out/lib/perl5/site_perl:${with perlPackages; makePerlPath [ - HashMerge Clone CloneChoose - ]}" - ''; + buildInputs = with perlPackages; [ perl IOStringy TestOutput ]; doCheck = true; From 6ec98ddc23ce6bc3d44c5b4ae642ded1d2bd6043 Mon Sep 17 00:00:00 2001 From: vitaliizinchenko Date: Wed, 31 Jul 2019 15:52:08 -0400 Subject: [PATCH 1380/1611] gnupatch: update links to patches --- pkgs/tools/text/gnupatch/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix index 1a5cda5799d..33bec808a2a 100644 --- a/pkgs/tools/text/gnupatch/default.nix +++ b/pkgs/tools/text/gnupatch/default.nix @@ -14,11 +14,11 @@ stdenv.mkDerivation rec { # https://git.savannah.gnu.org/cgit/patch.git/patch/?id=f290f48a621867084884bfff87f8093c15195e6a ./CVE-2018-6951.patch (fetchurl { - url = https://sources.debian.org/data/main/p/patch/2.7.6-2/debian/patches/Allow_input_files_to_be_missing_for_ed-style_patches.patch; + url = https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b5a91a01e5d0897facdd0f49d64b76b0f02b43e1; sha256 = "0iw0lk0yhnhvfjzal48ij6zdr92mgb84jq7fwryy1hdhi47hhq64"; }) (fetchurl { # CVE-2018-1000156 - url = https://sources.debian.org/data/main/p/patch/2.7.6-2/debian/patches/Fix_arbitrary_command_execution_in_ed-style_patches.patch; + url = https://git.savannah.gnu.org/cgit/patch.git/patch/?id=123eaff0d5d1aebe128295959435b9ca5909c26d; sha256 = "1bpy16n3hm5nv9xkrn6c4wglzsdzj3ss1biq16w9kfv48p4hx2vg"; }) # https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300 From 0e979671870694f1cb331035af5156091680ac43 Mon Sep 17 00:00:00 2001 From: adisbladis Date: Thu, 1 Aug 2019 21:28:33 +0100 Subject: [PATCH 1381/1611] hound: Wrap git & mercurial binaries --- pkgs/development/tools/misc/hound/default.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/hound/default.nix b/pkgs/development/tools/misc/hound/default.nix index f1875ee0903..0f9219f10a0 100644 --- a/pkgs/development/tools/misc/hound/default.nix +++ b/pkgs/development/tools/misc/hound/default.nix @@ -1,10 +1,18 @@ -{ stdenv, buildGoPackage, fetchFromGitHub }: +{ stdenv +, buildGoPackage +, fetchFromGitHub +, makeWrapper +, mercurial +, git +}: buildGoPackage rec { name = "hound-unstable-${version}"; version = "2018-11-02"; rev = "74ec7448a234d8d09e800b92e52c92e378c07742"; + nativeBuildInputs = [ makeWrapper ]; + goPackagePath = "github.com/etsy/hound"; src = fetchFromGitHub { @@ -16,6 +24,12 @@ buildGoPackage rec { goDeps = ./deps.nix; + postInstall = with stdenv; let + binPath = lib.makeBinPath [ mercurial git ]; + in '' + wrapProgram $bin/bin/houndd --prefix PATH : ${binPath} + ''; + meta = { inherit (src.meta) homepage; From c2c77e7824b5cde369e9bfb9db1f4f68a88f02aa Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Thu, 1 Aug 2019 14:16:24 -0700 Subject: [PATCH 1382/1611] hiera-eyaml: 2.1.0 -> 3.0.0 (#65692) --- pkgs/tools/system/hiera-eyaml/Gemfile | 2 +- pkgs/tools/system/hiera-eyaml/Gemfile.lock | 10 +++++----- pkgs/tools/system/hiera-eyaml/gemset.nix | 15 ++++++++++----- 3 files changed, 16 insertions(+), 11 deletions(-) diff --git a/pkgs/tools/system/hiera-eyaml/Gemfile b/pkgs/tools/system/hiera-eyaml/Gemfile index 18c7cde2a08..2c2e8f27e40 100644 --- a/pkgs/tools/system/hiera-eyaml/Gemfile +++ b/pkgs/tools/system/hiera-eyaml/Gemfile @@ -1,3 +1,3 @@ source 'https://rubygems.org' -gem 'hiera-eyaml', '2.1.0' +gem 'hiera-eyaml' diff --git a/pkgs/tools/system/hiera-eyaml/Gemfile.lock b/pkgs/tools/system/hiera-eyaml/Gemfile.lock index a6d1c1f872e..259c2e170b0 100644 --- a/pkgs/tools/system/hiera-eyaml/Gemfile.lock +++ b/pkgs/tools/system/hiera-eyaml/Gemfile.lock @@ -1,17 +1,17 @@ GEM remote: https://rubygems.org/ specs: - hiera-eyaml (2.1.0) + hiera-eyaml (3.0.0) highline (~> 1.6.19) - trollop (~> 2.0) + optimist highline (1.6.21) - trollop (2.1.2) + optimist (3.0.0) PLATFORMS ruby DEPENDENCIES - hiera-eyaml (= 2.1.0) + hiera-eyaml BUNDLED WITH - 1.11.2 + 1.17.2 diff --git a/pkgs/tools/system/hiera-eyaml/gemset.nix b/pkgs/tools/system/hiera-eyaml/gemset.nix index ab6d5307ebb..d5aa722e5fc 100644 --- a/pkgs/tools/system/hiera-eyaml/gemset.nix +++ b/pkgs/tools/system/hiera-eyaml/gemset.nix @@ -1,11 +1,14 @@ { hiera-eyaml = { + dependencies = ["highline" "optimist"]; + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1h25pfv89macjf3sjdrx7slhlq1af4zybai42ci3gj02b6hli4a6"; + sha256 = "049rxnwyivqgyjl0sjg7cb2q44ic0wsml288caspd1ps8v31gl18"; type = "gem"; }; - version = "2.1.0"; + version = "3.0.0"; }; highline = { source = { @@ -15,12 +18,14 @@ }; version = "1.6.21"; }; - trollop = { + optimist = { + groups = ["default"]; + platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; + sha256 = "05jxrp3nbn5iilc1k7ir90mfnwc5abc9h78s5rpm3qafwqxvcj4j"; type = "gem"; }; - version = "2.1.2"; + version = "3.0.0"; }; } \ No newline at end of file From 64b4a24047eb681730da1cb89eae01ff48bd8369 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Thu, 1 Aug 2019 17:51:51 -0400 Subject: [PATCH 1383/1611] nixos/xdg/portal: set GTK_USE_PORTAL with lib.mkIf If lib.optional is given a false value it will return an empty list. Thusly the set-environment script can have ``` export GTK_USE_PORTAL= ``` This can rub certain bugs the wrong way #65679 so lets make sure this isn't set in the environment at all. --- nixos/modules/config/xdg/portal.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/config/xdg/portal.nix b/nixos/modules/config/xdg/portal.nix index 89ddf80b575..bdbbfda2bb4 100644 --- a/nixos/modules/config/xdg/portal.nix +++ b/nixos/modules/config/xdg/portal.nix @@ -51,7 +51,7 @@ with lib; systemd.packages = packages; environment.variables = { - GTK_USE_PORTAL = optional cfg.gtkUsePortal "1"; + GTK_USE_PORTAL = mkIf cfg.gtkUsePortal "1"; XDG_DESKTOP_PORTAL_PATH = map (p: "${p}/share/xdg-desktop-portal/portals") cfg.extraPortals; }; }; From 918e56446e72d0cfb97e6176a20acd447ef1d129 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 1 Aug 2019 12:20:35 -0700 Subject: [PATCH 1384/1611] pythonPackages.textacy: mark as broken --- pkgs/development/python-modules/textacy/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/textacy/default.nix b/pkgs/development/python-modules/textacy/default.nix index 05121f2b9b2..086218b8439 100644 --- a/pkgs/development/python-modules/textacy/default.nix +++ b/pkgs/development/python-modules/textacy/default.nix @@ -30,8 +30,6 @@ buildPythonPackage rec { sha256 = "50402545ac92b1a931c2365e341cb35c4ebe5575525f1dcc5265901ff3895a5f"; }; - disabled = isPy27; # 2.7 requires backports.csv - propagatedBuildInputs = [ cachetools cld2-cffi @@ -64,5 +62,8 @@ buildPythonPackage rec { homepage = "http://textacy.readthedocs.io/"; license = licenses.asl20; maintainers = with maintainers; [ rvl ]; + # ftfy and jellyfish no longer support python2 + # latest scikitlearn not supported for this: https://github.com/chartbeat-labs/textacy/issues/260 + broken = true; }; } From 943b3fbb43a1fe4eeb7590aaf957a21a7297f04d Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Thu, 1 Aug 2019 19:01:13 +0200 Subject: [PATCH 1385/1611] metabase: 0.32.9 -> 0.32.10 --- pkgs/servers/metabase/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/metabase/default.nix b/pkgs/servers/metabase/default.nix index f1820d65ed0..cf4896bf56b 100644 --- a/pkgs/servers/metabase/default.nix +++ b/pkgs/servers/metabase/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { - name = "metabase-${version}"; - version = "0.32.9"; + pname = "metabase"; + version = "0.32.10"; src = fetchurl { url = "http://downloads.metabase.com/v${version}/metabase.jar"; - sha256 = "08iybb1m2pmimn0fs95kd948yf6c1xmg5kkzm9ykx4cpb9pn1yw0"; + sha256 = "0dzwwwvsi9pr40xbqws02yzjgx89ygjiybjd0n73hj69v6j9f2rn"; }; nativeBuildInputs = [ makeWrapper ]; @@ -18,8 +18,8 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "The easy, open source way for everyone in your company to ask questions and learn from data."; - homepage = https://metabase.com; + description = "The easy, open source way for everyone in your company to ask questions and learn from data"; + homepage = "https://metabase.com"; license = licenses.agpl3; platforms = platforms.all; maintainers = with maintainers; [ schneefux thoughtpolice ]; From 6f92bc0cfd9ef61f86126d5bce971b79b97ed53b Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Thu, 1 Aug 2019 18:45:52 +0200 Subject: [PATCH 1386/1611] slack: 4.0.0 -> 4.0.1 --- .../networking/instant-messengers/slack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 5d28daf816d..68e13221aa9 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -6,7 +6,7 @@ at-spi2-atk, libuuid, nodePackages let - version = "4.0.0"; + version = "4.0.1"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -51,7 +51,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://downloads.slack-edge.com/linux_releases/slack-desktop-${version}-amd64.deb"; - sha256 = "911a4c05fb4f85181df13f013e82440b0d171862c9cb137dc19b6381d47bd57e"; + sha256 = "1g7c8jka750pblsfzjvfyf7sp1m409kybqagml9miif1v71scxv2"; } else throw "Slack is not supported on ${stdenv.hostPlatform.system}"; From 44884cdf291d8436fb473907994bda65450de468 Mon Sep 17 00:00:00 2001 From: Marek Mahut Date: Thu, 1 Aug 2019 18:56:19 +0200 Subject: [PATCH 1387/1611] slack: adding mmahut as a maintainer --- .../applications/networking/instant-messengers/slack/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/networking/instant-messengers/slack/default.nix b/pkgs/applications/networking/instant-messengers/slack/default.nix index 68e13221aa9..45544a7d2a9 100644 --- a/pkgs/applications/networking/instant-messengers/slack/default.nix +++ b/pkgs/applications/networking/instant-messengers/slack/default.nix @@ -113,6 +113,7 @@ in stdenv.mkDerivation { description = "Desktop client for Slack"; homepage = https://slack.com; license = licenses.unfree; + maintainers = [ maintainers.mmahut ]; platforms = [ "x86_64-linux" ]; }; } From 17d29239b835353259c5506fbd37ff6676044a9c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 1 Aug 2019 00:12:51 +0300 Subject: [PATCH 1388/1611] mumble: refactor and fix Qt 5 version * Use -rc version instead of a git checkout. Rename derivation accordingly; * Change PLUGIN_PATH similar to Arch; * Fix install phase so that random files aren't installed and plugins use separate directory; * Use linkSoVersions to remove duplicate libraries. --- .../networking/mumble/default.nix | 55 ++++++++++++------- pkgs/top-level/aliases.nix | 4 ++ pkgs/top-level/all-packages.nix | 4 +- 3 files changed, 40 insertions(+), 23 deletions(-) diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 9642c54a26a..9f641061bd8 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -14,7 +14,7 @@ assert iceSupport -> zeroc_ice != null; with stdenv.lib; let - generic = overrides: source: stdenv.mkDerivation (source // overrides // { + generic = overrides: source: (if source.qtVersion == 5 then qt5.mkDerivation else stdenv.mkDerivation) (source // overrides // { name = "${overrides.type}-${source.version}"; patches = (source.patches or []) ++ optional jackSupport ./mumble-jack-support.patch; @@ -26,7 +26,7 @@ let # protobuf is freezed to 3.6 because of this bug: https://github.com/mumble-voip/mumble/issues/3617 # this could be reverted to the latest version in a future release of mumble as it is already fixed in master buildInputs = [ boost protobuf3_6 avahi ] - ++ { qt4 = [ qt4 ]; qt5 = [ qt5.qtbase ]; }."qt${toString source.qtVersion}" + ++ optional (source.qtVersion == 4) qt4 ++ (overrides.buildInputs or [ ]); qmakeFlags = [ @@ -45,20 +45,23 @@ let ++ (overrides.configureFlags or [ ]); preConfigure = '' - qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib" + qmakeFlags="$qmakeFlags DEFINES+=PLUGIN_PATH=$out/lib/mumble" patchShebangs scripts ''; makeFlags = [ "release" ]; installPhase = '' - mkdir -p $out/{lib,bin} - find release -type f -not -name \*.\* -exec cp {} $out/bin \; - find release -type f -name \*.\* -exec cp {} $out/lib \; + runHook preInstall + ${overrides.installPhase} + + # doc stuff mkdir -p $out/share/man/man1 - cp man/mum* $out/share/man/man1 - '' + (overrides.installPhase or ""); + install -Dm644 man/mum* $out/share/man/man1/ + + runHook postInstall + ''; enableParallelBuilding = true; @@ -74,7 +77,7 @@ let client = source: generic { type = "mumble"; - nativeBuildInputs = optionals (source.qtVersion == 5) [ qt5.qttools ]; + nativeBuildInputs = optional (source.qtVersion == 5) qt5.qttools; buildInputs = [ libopus libsndfile speex ] ++ optional (source.qtVersion == 5) qt5.qtsvg ++ optional stdenv.isLinux alsaLib @@ -89,12 +92,19 @@ let NIX_CFLAGS_COMPILE = optional speechdSupport "-I${speechd}/include/speech-dispatcher"; installPhase = '' - mkdir -p $out/share/applications - cp scripts/mumble.desktop $out/share/applications + # bin stuff + install -Dm755 release/mumble $out/bin/mumble + install -Dm755 scripts/mumble-overlay $out/bin/mumble-overlay - mkdir -p $out/share/icons{,/hicolor/scalable/apps} - cp icons/mumble.svg $out/share/icons - ln -s $out/share/icons/mumble.svg $out/share/icons/hicolor/scalable/apps + # lib stuff + mkdir -p $out/lib/mumble + cp -P release/libmumble.so* $out/lib + cp -P release/libcelt* $out/lib/mumble + cp -P release/plugins/* $out/lib/mumble + + # icons + install -Dm644 scripts/mumble.desktop $out/share/applications/mumble.desktop + install -Dm644 icons/mumble.svg $out/share/icons/hicolor/scalable/apps/mumble.svg ''; } source; @@ -110,6 +120,11 @@ let ]; buildInputs = [ libcap ] ++ optional iceSupport zeroc_ice; + + installPhase = '' + # bin stuff + install -Dm755 release/murmurd $out/bin/murmurd + ''; }; stableSource = rec { @@ -138,26 +153,24 @@ let ]; }; - gitSource = rec { - version = "2019-07-10"; + rcSource = rec { + version = "1.3.0-rc2"; qtVersion = 5; # Needs submodules src = fetchFromGitHub { owner = "mumble-voip"; repo = "mumble"; - rev = "41b265584654c7ac216fd3ccb9c141734d3f839b"; + rev = version; sha256 = "00irlzz5q4drmsfbwrkyy7p7w8a5fc1ip5vyicq3g3cy58dprpqr"; fetchSubmodules = true; }; }; in { mumble = client stableSource; - mumble_git = client gitSource; + mumble_rc = client rcSource; murmur = server stableSource; - murmur_git = (server gitSource).overrideAttrs (old: { + murmur_rc = (server rcSource).overrideAttrs (old: { meta = old.meta // { broken = iceSupport; }; - - nativeBuildInputs = old.nativeBuildInputs or [] ++ [ qt5.wrapQtAppsHook ]; }); } diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index fe3f1851913..e8e16489b3b 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -416,6 +416,10 @@ mapAliases ({ gst-plugins-good = pkgs.gst-plugins-good; gst-plugins-ugly = pkgs.gst-plugins-ugly; }; + + # added 2019-08-01 + mumble_git = pkgs.mumble_rc; + murmur_git = pkgs.murmur_rc; } // (with ocaml-ng; { # added 2016-09-14 ocaml_4_00_1 = ocamlPackages_4_00_1.ocaml; ocaml_4_01_0 = ocamlPackages_4_01_0.ocaml; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7bb749d5aef..2b83e829154 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -19428,7 +19428,7 @@ in speechdSupport = config.mumble.speechdSupport or false; pulseSupport = config.pulseaudio or false; iceSupport = config.murmur.iceSupport or true; - }) mumble mumble_git murmur; + }) mumble mumble_rc murmur; inherit (callPackages ../applications/networking/mumble { avahi = avahi-compat; @@ -19436,7 +19436,7 @@ in speechdSupport = config.mumble.speechdSupport or false; pulseSupport = config.pulseaudio or false; iceSupport = false; - }) murmur_git; + }) murmur_rc; mumble_overlay = callPackage ../applications/networking/mumble/overlay.nix { mumble_i686 = if stdenv.hostPlatform.system == "x86_64-linux" From 62d9fc656fa7c2cda3ddf0d9512c4bf24a05a5da Mon Sep 17 00:00:00 2001 From: cw <789@webuhu.at> Date: Tue, 30 Jul 2019 13:53:21 +0200 Subject: [PATCH 1389/1611] unifiStable: 5.10.23 -> 5.10.25 --- pkgs/servers/unifi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index bad068245f3..76c4bfc428e 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -49,8 +49,8 @@ in rec { }; unifiStable = generic { - version = "5.10.23"; - sha256 = "0ak8crx3anxsx4r3b9k0rihgafkgsxj7f64z48nrk1l8m7f0wwxg"; + version = "5.10.25"; + sha256 = "1v03r7qd09s6lz37wwlsrqiy1jcwxnvj1q87jwpmhdipjprcjfdx"; }; unifiTesting = generic { From fae732edb11876800db7b9f1eebbc7c553a9c99b Mon Sep 17 00:00:00 2001 From: adisbladis Date: Fri, 5 Jul 2019 11:01:52 +0100 Subject: [PATCH 1390/1611] nodePackages: Regenerate node packages for nodejs 10 & 12 --- .../node-packages/composition-v10.nix | 2 +- .../node-packages/composition-v12.nix | 4 +- .../development/node-packages/default-v10.nix | 9 - pkgs/development/node-packages/generate.sh | 1 - pkgs/development/node-packages/node-env.nix | 158 +- .../node-packages/node-packages-v10.json | 48 +- .../node-packages/node-packages-v10.nix | 13660 ++++++++++------ .../node-packages/node-packages-v12.nix | 36 +- pkgs/top-level/all-packages.nix | 2 +- 9 files changed, 8692 insertions(+), 5228 deletions(-) diff --git a/pkgs/development/node-packages/composition-v10.nix b/pkgs/development/node-packages/composition-v10.nix index fa4b4c3be56..9f723a6da47 100644 --- a/pkgs/development/node-packages/composition-v10.nix +++ b/pkgs/development/node-packages/composition-v10.nix @@ -1,4 +1,4 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! +# This file has been generated by node2nix 1.6.0. Do not edit! {pkgs ? import { inherit system; diff --git a/pkgs/development/node-packages/composition-v12.nix b/pkgs/development/node-packages/composition-v12.nix index 880d72efd35..4f05009f3ef 100644 --- a/pkgs/development/node-packages/composition-v12.nix +++ b/pkgs/development/node-packages/composition-v12.nix @@ -1,8 +1,8 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! +# This file has been generated by node2nix 1.6.0. Do not edit! {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-6_x"}: let nodeEnv = import ./node-env.nix { diff --git a/pkgs/development/node-packages/default-v10.nix b/pkgs/development/node-packages/default-v10.nix index 50b33f7effd..8a479924d46 100644 --- a/pkgs/development/node-packages/default-v10.nix +++ b/pkgs/development/node-packages/default-v10.nix @@ -7,15 +7,6 @@ let }; in nodePackages // { - aws-azure-login = nodePackages.aws-azure-login.override { - PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = "true"; - - buildInputs = [ pkgs.makeWrapper ]; - postInstall = '' - wrapProgram "$out/bin/aws-azure-login" --set PUPPETEER_EXECUTABLE_PATH "${pkgs.chromium}/bin/chromium" - ''; - }; - bower2nix = nodePackages.bower2nix.override { buildInputs = [ pkgs.makeWrapper ]; postInstall = '' diff --git a/pkgs/development/node-packages/generate.sh b/pkgs/development/node-packages/generate.sh index 5975cc8966b..dafbcb17f7e 100755 --- a/pkgs/development/node-packages/generate.sh +++ b/pkgs/development/node-packages/generate.sh @@ -4,6 +4,5 @@ set -eu -o pipefail rm -f node-env.nix -node2nix -8 -i node-packages-v8.json -o node-packages-v8.nix -c composition-v8.nix node2nix --nodejs-10 -i node-packages-v10.json -o node-packages-v10.nix -c composition-v10.nix node2nix --nodejs-12 -i node-packages-v12.json -o node-packages-v12.nix -c composition-v12.nix diff --git a/pkgs/development/node-packages/node-env.nix b/pkgs/development/node-packages/node-env.nix index 670556bf271..720e0cc0850 100644 --- a/pkgs/development/node-packages/node-env.nix +++ b/pkgs/development/node-packages/node-env.nix @@ -11,7 +11,7 @@ let cat > $out/bin/tar < Date: Fri, 5 Jul 2019 11:03:28 +0100 Subject: [PATCH 1391/1611] nodejs-8_x: Drop package It will be EOL within the support period of 19.09 --- nixos/doc/manual/release-notes/rl-1909.xml | 5 + .../instant-messengers/rambox/bare.nix | 6 +- .../mobile/titaniumenv/default.nix | 2 +- .../node-packages/composition-v8.nix | 17 - pkgs/development/node-packages/default-v8.nix | 27 - .../node-packages/node-packages-v8.json | 13 - .../node-packages/node-packages-v8.nix | 10075 ---------------- pkgs/development/web/nodejs/v8.nix | 10 - pkgs/development/web/remarkjs/nodepkgs.nix | 2 +- pkgs/misc/base16-builder/node-packages.nix | 2 +- .../web-apps/cryptpad/node-packages.nix | 4 +- pkgs/tools/networking/airfield/node.nix | 2 +- pkgs/tools/package-management/nixui/nixui.nix | 2 +- .../security/bitwarden-cli/node-packages.nix | 2 +- pkgs/top-level/all-packages.nix | 9 +- 15 files changed, 17 insertions(+), 10161 deletions(-) delete mode 100644 pkgs/development/node-packages/composition-v8.nix delete mode 100644 pkgs/development/node-packages/default-v8.nix delete mode 100644 pkgs/development/node-packages/node-packages-v8.json delete mode 100644 pkgs/development/node-packages/node-packages-v8.nix delete mode 100644 pkgs/development/web/nodejs/v8.nix diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index 0e067cf1f55..049d21d01b2 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -214,6 +214,11 @@ have a look at the official repo. + + + Nodejs 8 is scheduled EOL under the lifetime of 19.09 and has been dropped. + +
diff --git a/pkgs/applications/networking/instant-messengers/rambox/bare.nix b/pkgs/applications/networking/instant-messengers/rambox/bare.nix index a9ee4dd6aea..60a4dd39fb0 100644 --- a/pkgs/applications/networking/instant-messengers/rambox/bare.nix +++ b/pkgs/applications/networking/instant-messengers/rambox/bare.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, fetchNodeModules, nodejs-8_x, ruby, sencha +{ stdenv, fetchFromGitHub, fetchNodeModules, nodejs-10_x, ruby, sencha , auth0ClientID, auth0Domain }: stdenv.mkDerivation rec { @@ -12,12 +12,12 @@ stdenv.mkDerivation rec { sha256 = "1h44srl2gzkhjaazpwz1pwy4dp5x776fc685kahlvjlsfls0fvy9"; }; - nativeBuildInputs = [ nodejs-8_x ruby sencha ]; + nativeBuildInputs = [ nodejs-10_x ruby sencha ]; node_modules = fetchNodeModules { inherit src; - nodejs = nodejs-8_x; + nodejs = nodejs-10_x; sha256 = "0qsgr8cq81yismal5sqr02skakqpynwwzk5s98dr5bg91y361fgy"; }; diff --git a/pkgs/development/mobile/titaniumenv/default.nix b/pkgs/development/mobile/titaniumenv/default.nix index e29801c51f9..6821474c4d0 100644 --- a/pkgs/development/mobile/titaniumenv/default.nix +++ b/pkgs/development/mobile/titaniumenv/default.nix @@ -12,7 +12,7 @@ rec { buildApp = import ./build-app.nix { inherit (pkgs) stdenv python which file jdk nodejs; - inherit (pkgs.nodePackages_8_x) alloy titanium; + inherit (pkgs.nodePackages_10_x) alloy titanium; inherit (androidenv) composeAndroidPackages; inherit (xcodeenv) composeXcodeWrapper; inherit titaniumsdk; diff --git a/pkgs/development/node-packages/composition-v8.nix b/pkgs/development/node-packages/composition-v8.nix deleted file mode 100644 index 7fcc3f81133..00000000000 --- a/pkgs/development/node-packages/composition-v8.nix +++ /dev/null @@ -1,17 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{pkgs ? import { - inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: - -let - nodeEnv = import ./node-env.nix { - inherit (pkgs) stdenv python2 utillinux runCommand writeTextFile; - inherit nodejs; - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; - }; -in -import ./node-packages-v8.nix { - inherit (pkgs) fetchurl fetchgit; - inherit nodeEnv; -} \ No newline at end of file diff --git a/pkgs/development/node-packages/default-v8.nix b/pkgs/development/node-packages/default-v8.nix deleted file mode 100644 index d90c3ab3364..00000000000 --- a/pkgs/development/node-packages/default-v8.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, nodejs, stdenv }: - -let - nodePackages = import ./composition-v8.nix { - inherit pkgs nodejs; - inherit (stdenv.hostPlatform) system; - }; -in -nodePackages // { - pnpm = nodePackages.pnpm.override { - nativeBuildInputs = [ pkgs.makeWrapper ]; - postInstall = let - pnpmLibPath = stdenv.lib.makeBinPath [ - nodejs.passthru.python - nodejs - ]; - in '' - for prog in $out/bin/*; do - wrapProgram "$prog" --prefix PATH : ${pnpmLibPath} - done - ''; - }; - - stf = nodePackages.stf.override { - nativeBuildInputs = with pkgs; [ yasm czmq protobufc ]; - }; -} diff --git a/pkgs/development/node-packages/node-packages-v8.json b/pkgs/development/node-packages/node-packages-v8.json deleted file mode 100644 index b2187cc4680..00000000000 --- a/pkgs/development/node-packages/node-packages-v8.json +++ /dev/null @@ -1,13 +0,0 @@ -[ - "alloy" -, "azure-cli" -, "bower" -, "coffee-script" -, "grunt-cli" -, "node-gyp" -, "node-gyp-build" -, "node-pre-gyp" -, "pnpm" -, "stf" -, "titanium" -] diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix deleted file mode 100644 index 8f78d6fb227..00000000000 --- a/pkgs/development/node-packages/node-packages-v8.nix +++ /dev/null @@ -1,10075 +0,0 @@ -# This file has been generated by node2nix 1.7.0. Do not edit! - -{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: - -let - sources = { - "@babel/code-frame-7.5.5" = { - name = "_at_babel_slash_code-frame"; - packageName = "@babel/code-frame"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.5.5.tgz"; - sha512 = "27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw=="; - }; - }; - "@babel/core-7.5.5" = { - name = "_at_babel_slash_core"; - packageName = "@babel/core"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/core/-/core-7.5.5.tgz"; - sha512 = "i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg=="; - }; - }; - "@babel/generator-7.5.5" = { - name = "_at_babel_slash_generator"; - packageName = "@babel/generator"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.5.5.tgz"; - sha512 = "ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ=="; - }; - }; - "@babel/helper-function-name-7.1.0" = { - name = "_at_babel_slash_helper-function-name"; - packageName = "@babel/helper-function-name"; - version = "7.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz"; - sha512 = "A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw=="; - }; - }; - "@babel/helper-get-function-arity-7.0.0" = { - name = "_at_babel_slash_helper-get-function-arity"; - packageName = "@babel/helper-get-function-arity"; - version = "7.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz"; - sha512 = "r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ=="; - }; - }; - "@babel/helper-split-export-declaration-7.4.4" = { - name = "_at_babel_slash_helper-split-export-declaration"; - packageName = "@babel/helper-split-export-declaration"; - version = "7.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz"; - sha512 = "Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q=="; - }; - }; - "@babel/helpers-7.5.5" = { - name = "_at_babel_slash_helpers"; - packageName = "@babel/helpers"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.5.5.tgz"; - sha512 = "nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g=="; - }; - }; - "@babel/highlight-7.5.0" = { - name = "_at_babel_slash_highlight"; - packageName = "@babel/highlight"; - version = "7.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.5.0.tgz"; - sha512 = "7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ=="; - }; - }; - "@babel/parser-7.5.5" = { - name = "_at_babel_slash_parser"; - packageName = "@babel/parser"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.5.5.tgz"; - sha512 = "E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g=="; - }; - }; - "@babel/template-7.4.4" = { - name = "_at_babel_slash_template"; - packageName = "@babel/template"; - version = "7.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz"; - sha512 = "CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw=="; - }; - }; - "@babel/traverse-7.5.5" = { - name = "_at_babel_slash_traverse"; - packageName = "@babel/traverse"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.5.5.tgz"; - sha512 = "MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ=="; - }; - }; - "@babel/types-7.5.5" = { - name = "_at_babel_slash_types"; - packageName = "@babel/types"; - version = "7.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@babel/types/-/types-7.5.5.tgz"; - sha512 = "s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw=="; - }; - }; - "@sailshq/lodash-3.10.3" = { - name = "_at_sailshq_slash_lodash"; - packageName = "@sailshq/lodash"; - version = "3.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/@sailshq/lodash/-/lodash-3.10.3.tgz"; - sha512 = "XTF5BtsTSiSpTnfqrCGS5Q8FvSHWCywA0oRxFAZo8E1a8k1MMFUvk3VlRk3q/SusEYwy7gvVdyt9vvNlTa2VuA=="; - }; - }; - "@slack/client-3.16.0" = { - name = "_at_slack_slash_client"; - packageName = "@slack/client"; - version = "3.16.0"; - src = fetchurl { - url = "https://registry.npmjs.org/@slack/client/-/client-3.16.0.tgz"; - sha512 = "CWr7a3rTVrN5Vs8GYReRAvTourbXHOqB1zglcskj05ICH4GZL5BOAza2ARai+qc3Nz0nY08Bozi1x0014KOqlg=="; - }; - }; - "@types/babel-types-7.0.7" = { - name = "_at_types_slash_babel-types"; - packageName = "@types/babel-types"; - version = "7.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babel-types/-/babel-types-7.0.7.tgz"; - sha512 = "dBtBbrc+qTHy1WdfHYjBwRln4+LWqASWakLHsWHR2NWHIFkv4W3O070IGoGLEBrJBvct3r0L1BUPuvURi7kYUQ=="; - }; - }; - "@types/babylon-6.16.5" = { - name = "_at_types_slash_babylon"; - packageName = "@types/babylon"; - version = "6.16.5"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/babylon/-/babylon-6.16.5.tgz"; - sha512 = "xH2e58elpj1X4ynnKp9qSnWlsRTIs6n3tgLGNfwAGHwePw0mulHQllV34n0T25uYSu1k0hRKkWXF890B1yS47w=="; - }; - }; - "@types/node-8.10.51" = { - name = "_at_types_slash_node"; - packageName = "@types/node"; - version = "8.10.51"; - src = fetchurl { - url = "https://registry.npmjs.org/@types/node/-/node-8.10.51.tgz"; - sha512 = "cArrlJp3Yv6IyFT/DYe+rlO8o3SIHraALbBW/+CcCYW/a9QucpLI+n2p4sRxAvl2O35TiecpX2heSZtJjvEO+Q=="; - }; - }; - "JSV-4.0.2" = { - name = "JSV"; - packageName = "JSV"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/JSV/-/JSV-4.0.2.tgz"; - sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; - }; - }; - "abbrev-1.1.1" = { - name = "abbrev"; - packageName = "abbrev"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; - sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; - }; - }; - "accepts-1.3.7" = { - name = "accepts"; - packageName = "accepts"; - version = "1.3.7"; - src = fetchurl { - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; - }; - }; - "acorn-3.3.0" = { - name = "acorn"; - packageName = "acorn"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz"; - sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a"; - }; - }; - "acorn-4.0.13" = { - name = "acorn"; - packageName = "acorn"; - version = "4.0.13"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz"; - sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; - }; - }; - "acorn-globals-3.1.0" = { - name = "acorn-globals"; - packageName = "acorn-globals"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-3.1.0.tgz"; - sha1 = "fd8270f71fbb4996b004fa880ee5d46573a731bf"; - }; - }; - "adal-node-0.1.28" = { - name = "adal-node"; - packageName = "adal-node"; - version = "0.1.28"; - src = fetchurl { - url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.28.tgz"; - sha1 = "468c4bb3ebbd96b1270669f4b9cba4e0065ea485"; - }; - }; - "adbkit-2.11.1" = { - name = "adbkit"; - packageName = "adbkit"; - version = "2.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/adbkit/-/adbkit-2.11.1.tgz"; - sha512 = "hDTiRg9NX3HQt7WoDAPCplUpvzr4ZzQa2lq7BdTTJ/iOZ6O7YNAs6UYD8sFAiBEcYHDRIyq3cm9sZP6uZnhvXw=="; - }; - }; - "adbkit-apkreader-3.1.2" = { - name = "adbkit-apkreader"; - packageName = "adbkit-apkreader"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/adbkit-apkreader/-/adbkit-apkreader-3.1.2.tgz"; - sha512 = "xFlRkjEuJ8+hEo6BfUWXyaxDm54RtLCBBC4TzYc1S0SQqrE7r31QWfYaUlJH+eJiPGTUzUCd+SUs1cJaCkATnQ=="; - }; - }; - "adbkit-logcat-1.1.0" = { - name = "adbkit-logcat"; - packageName = "adbkit-logcat"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/adbkit-logcat/-/adbkit-logcat-1.1.0.tgz"; - sha1 = "01d7f9b0cef9093a30bcb3b007efff301508962f"; - }; - }; - "adbkit-monkey-1.0.1" = { - name = "adbkit-monkey"; - packageName = "adbkit-monkey"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/adbkit-monkey/-/adbkit-monkey-1.0.1.tgz"; - sha1 = "f291be701a2efc567a63fc7aa6afcded31430be1"; - }; - }; - "adm-zip-0.4.13" = { - name = "adm-zip"; - packageName = "adm-zip"; - version = "0.4.13"; - src = fetchurl { - url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.13.tgz"; - sha512 = "fERNJX8sOXfel6qCBCMPvZLzENBEhZTzKqg6vrOW5pvoEaQuJhRU4ndTAh6lHOxn1I6jnz2NHra56ZODM751uw=="; - }; - }; - "after-0.8.2" = { - name = "after"; - packageName = "after"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/after/-/after-0.8.2.tgz"; - sha1 = "fedb394f9f0e02aa9768e702bda23b505fae7e1f"; - }; - }; - "agent-base-2.1.1" = { - name = "agent-base"; - packageName = "agent-base"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/agent-base/-/agent-base-2.1.1.tgz"; - sha1 = "d6de10d5af6132d5bd692427d46fc538539094c7"; - }; - }; - "ajv-6.10.2" = { - name = "ajv"; - packageName = "ajv"; - version = "6.10.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; - sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; - }; - }; - "align-text-0.1.4" = { - name = "align-text"; - packageName = "align-text"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; - sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; - }; - }; - "amdefine-1.0.1" = { - name = "amdefine"; - packageName = "amdefine"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz"; - sha1 = "4a5282ac164729e93619bcfd3ad151f817ce91f5"; - }; - }; - "ansi-regex-2.1.1" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; - }; - }; - "ansi-regex-3.0.0" = { - name = "ansi-regex"; - packageName = "ansi-regex"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; - }; - }; - "ansi-styles-1.0.0" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.0.0.tgz"; - sha1 = "cb102df1c56f5123eab8b67cd7b98027a0279178"; - }; - }; - "ansi-styles-2.2.1" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "2.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; - }; - }; - "ansi-styles-3.2.1" = { - name = "ansi-styles"; - packageName = "ansi-styles"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; - }; - }; - "append-field-1.0.0" = { - name = "append-field"; - packageName = "append-field"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/append-field/-/append-field-1.0.0.tgz"; - sha1 = "1e3440e915f0b1203d23748e78edd7b9b5b43e56"; - }; - }; - "applicationinsights-0.16.0" = { - name = "applicationinsights"; - packageName = "applicationinsights"; - version = "0.16.0"; - src = fetchurl { - url = "https://registry.npmjs.org/applicationinsights/-/applicationinsights-0.16.0.tgz"; - sha1 = "e02dafb10cf573c19b429793c87797d6404f0ee3"; - }; - }; - "aproba-1.2.0" = { - name = "aproba"; - packageName = "aproba"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz"; - sha512 = "Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw=="; - }; - }; - "are-we-there-yet-1.1.5" = { - name = "are-we-there-yet"; - packageName = "are-we-there-yet"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; - sha512 = "5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w=="; - }; - }; - "argparse-1.0.10" = { - name = "argparse"; - packageName = "argparse"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; - }; - }; - "arr-diff-4.0.0" = { - name = "arr-diff"; - packageName = "arr-diff"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; - }; - }; - "arr-flatten-1.1.0" = { - name = "arr-flatten"; - packageName = "arr-flatten"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"; - sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; - }; - }; - "arr-union-3.1.0" = { - name = "arr-union"; - packageName = "arr-union"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; - }; - }; - "array-each-1.0.1" = { - name = "array-each"; - packageName = "array-each"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz"; - sha1 = "a794af0c05ab1752846ee753a1f211a05ba0c44f"; - }; - }; - "array-flatten-1.1.1" = { - name = "array-flatten"; - packageName = "array-flatten"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; - sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; - }; - }; - "array-parallel-0.1.3" = { - name = "array-parallel"; - packageName = "array-parallel"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/array-parallel/-/array-parallel-0.1.3.tgz"; - sha1 = "8f785308926ed5aa478c47e64d1b334b6c0c947d"; - }; - }; - "array-series-0.1.5" = { - name = "array-series"; - packageName = "array-series"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/array-series/-/array-series-0.1.5.tgz"; - sha1 = "df5d37bfc5c2ef0755e2aa4f92feae7d4b5a972f"; - }; - }; - "array-slice-1.1.0" = { - name = "array-slice"; - packageName = "array-slice"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/array-slice/-/array-slice-1.1.0.tgz"; - sha512 = "B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w=="; - }; - }; - "array-unique-0.3.2" = { - name = "array-unique"; - packageName = "array-unique"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; - }; - }; - "arraybuffer.slice-0.0.7" = { - name = "arraybuffer.slice"; - packageName = "arraybuffer.slice"; - version = "0.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz"; - sha512 = "wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog=="; - }; - }; - "asap-2.0.6" = { - name = "asap"; - packageName = "asap"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; - sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; - }; - }; - "ascli-0.3.0" = { - name = "ascli"; - packageName = "ascli"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz"; - sha1 = "5e66230e5219fe3e8952a4efb4f20fae596a813a"; - }; - }; - "asn1-0.1.11" = { - name = "asn1"; - packageName = "asn1"; - version = "0.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz"; - sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; - }; - }; - "asn1-0.2.3" = { - name = "asn1"; - packageName = "asn1"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; - }; - }; - "asn1-0.2.4" = { - name = "asn1"; - packageName = "asn1"; - version = "0.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz"; - sha512 = "jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg=="; - }; - }; - "assert-plus-0.1.5" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; - sha1 = "ee74009413002d84cec7219c6ac811812e723160"; - }; - }; - "assert-plus-0.2.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; - }; - }; - "assert-plus-1.0.0" = { - name = "assert-plus"; - packageName = "assert-plus"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; - }; - }; - "assign-symbols-1.0.0" = { - name = "assign-symbols"; - packageName = "assign-symbols"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; - }; - }; - "async-0.2.10" = { - name = "async"; - packageName = "async"; - version = "0.2.10"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; - sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; - }; - }; - "async-0.2.7" = { - name = "async"; - packageName = "async"; - version = "0.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-0.2.7.tgz"; - sha1 = "44c5ee151aece6c4bf5364cfc7c28fe4e58f18df"; - }; - }; - "async-1.0.0" = { - name = "async"; - packageName = "async"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; - sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; - }; - }; - "async-1.4.2" = { - name = "async"; - packageName = "async"; - version = "1.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz"; - sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab"; - }; - }; - "async-1.5.2" = { - name = "async"; - packageName = "async"; - version = "1.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; - sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; - }; - }; - "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 = "xAfGg1/NTLBBKlHFmnd7PlmUW9KhVQIUuSrYem9xzFUZy13ScvtyGGejaae9iAVRiRq9+Cx7DPFaAAhCpyxyPw=="; - }; - }; - "async-2.6.1" = { - name = "async"; - packageName = "async"; - version = "2.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz"; - sha512 = "fNEiL2+AZt6AlAw/29Cr0UDe4sRAHCpEHh54WMz+Bb7QfNcFw4h3loofyJpLeQs4Yx7yuqu/2dLgM5hKOs6HlQ=="; - }; - }; - "async-2.6.3" = { - name = "async"; - packageName = "async"; - version = "2.6.3"; - src = fetchurl { - url = "https://registry.npmjs.org/async/-/async-2.6.3.tgz"; - sha512 = "zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg=="; - }; - }; - "async-limiter-1.0.0" = { - name = "async-limiter"; - packageName = "async-limiter"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz"; - sha512 = "jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg=="; - }; - }; - "asynckit-0.4.0" = { - name = "asynckit"; - packageName = "asynckit"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; - }; - }; - "atob-2.1.2" = { - name = "atob"; - packageName = "atob"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"; - sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; - }; - }; - "aws-sdk-2.497.0" = { - name = "aws-sdk"; - packageName = "aws-sdk"; - version = "2.497.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.497.0.tgz"; - sha512 = "SCAVfWqj0qe22Lj6ZHMP/4autc9x3GqgWTj3YrE3VleSuql62xhyCC9gSYfbm7wo8Puqx0+kEnKYyyXR7Z98QA=="; - }; - }; - "aws-sign2-0.6.0" = { - name = "aws-sign2"; - packageName = "aws-sign2"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; - }; - }; - "aws-sign2-0.7.0" = { - name = "aws-sign2"; - packageName = "aws-sign2"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; - }; - }; - "aws4-1.8.0" = { - name = "aws4"; - packageName = "aws4"; - version = "1.8.0"; - src = fetchurl { - url = "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz"; - sha512 = "ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ=="; - }; - }; - "azure-arm-authorization-2.0.0" = { - name = "azure-arm-authorization"; - packageName = "azure-arm-authorization"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-authorization/-/azure-arm-authorization-2.0.0.tgz"; - sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f"; - }; - }; - "azure-arm-batch-3.2.0" = { - name = "azure-arm-batch"; - packageName = "azure-arm-batch"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-3.2.0.tgz"; - sha512 = "DDfgAiRruGAiL8Yot5nufG3O8GLA0r5lf1CGYhuF8pEzQ+vYfhLpgJzme7LPh3ASPb8UBSVYHm1IK4W4StvVnw=="; - }; - }; - "azure-arm-cdn-4.2.0" = { - name = "azure-arm-cdn"; - packageName = "azure-arm-cdn"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-4.2.0.tgz"; - sha512 = "DkpLntvqHtCLbf7p/qqLS0eJluZtsb8gU65deJYiMz4OFQco+InP9giCVnY8gElW3QbMaqKyHOJCDK7NllKMoA=="; - }; - }; - "azure-arm-commerce-2.1.0" = { - name = "azure-arm-commerce"; - packageName = "azure-arm-commerce"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-2.1.0.tgz"; - sha512 = "zhZ9b1Comp1Owa8/Pn7ORTL0l+uX9elz5A5yOoL/XdYXC8S6bN2QaiRLPmue9ZB55qGE1Tn7Cf+KRlpskL17hQ=="; - }; - }; - "azure-arm-compute-3.0.0-preview" = { - name = "azure-arm-compute"; - packageName = "azure-arm-compute"; - version = "3.0.0-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-compute/-/azure-arm-compute-3.0.0-preview.tgz"; - sha1 = "f5f07792afcdff29ce0b7e16705342b6986f571b"; - }; - }; - "azure-arm-datalake-analytics-1.0.2-preview" = { - name = "azure-arm-datalake-analytics"; - packageName = "azure-arm-datalake-analytics"; - version = "1.0.2-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-datalake-analytics/-/azure-arm-datalake-analytics-1.0.2-preview.tgz"; - sha1 = "b34f868e98a972ec80e4408d209dc06c000dfb63"; - }; - }; - "azure-arm-datalake-store-1.0.2-preview" = { - name = "azure-arm-datalake-store"; - packageName = "azure-arm-datalake-store"; - version = "1.0.2-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-datalake-store/-/azure-arm-datalake-store-1.0.2-preview.tgz"; - sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763"; - }; - }; - "azure-arm-devtestlabs-2.1.1" = { - name = "azure-arm-devtestlabs"; - packageName = "azure-arm-devtestlabs"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-2.1.1.tgz"; - sha512 = "S5dCYTMrqL+BJc699fIQtXwLFuv5m8jTDqPdXTFpn/CSkyBcOyJwuZH2zPExQjGNZTyjIR6GWi8oeg/IpYLBWw=="; - }; - }; - "azure-arm-dns-2.1.0" = { - name = "azure-arm-dns"; - packageName = "azure-arm-dns"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.1.0.tgz"; - sha512 = "/y0tOM9qNijPYqB381JFYiEyfF+L5B8z+F8JS1OMV1JXIb45vZKXeoe82ZNMZ5g38Vme3uAblxpvp5OtIcvW6Q=="; - }; - }; - "azure-arm-hdinsight-0.2.2" = { - name = "azure-arm-hdinsight"; - packageName = "azure-arm-hdinsight"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-hdinsight/-/azure-arm-hdinsight-0.2.2.tgz"; - sha1 = "3daeade6d26f6b115d8598320541ad2dcaa9516d"; - }; - }; - "azure-arm-hdinsight-jobs-0.1.0" = { - name = "azure-arm-hdinsight-jobs"; - packageName = "azure-arm-hdinsight-jobs"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-hdinsight-jobs/-/azure-arm-hdinsight-jobs-0.1.0.tgz"; - sha1 = "252938f18d4341adf9942261656e791490c3c220"; - }; - }; - "azure-arm-insights-0.11.3" = { - name = "azure-arm-insights"; - packageName = "azure-arm-insights"; - version = "0.11.3"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-insights/-/azure-arm-insights-0.11.3.tgz"; - sha1 = "4e38f8d72cd532e8ad3982d26f43f73f8fb2149f"; - }; - }; - "azure-arm-iothub-1.0.1-preview" = { - name = "azure-arm-iothub"; - packageName = "azure-arm-iothub"; - version = "1.0.1-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-iothub/-/azure-arm-iothub-1.0.1-preview.tgz"; - sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91"; - }; - }; - "azure-arm-network-5.3.0" = { - name = "azure-arm-network"; - packageName = "azure-arm-network"; - version = "5.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.3.0.tgz"; - sha512 = "juitxBWofPBZ+kcmLB8OjW5qPD6+/Ncdq86WjDTIUcH+cyb/GWktdDymv6adbOyz4xZ9/wbThFL7AHgq8cHBig=="; - }; - }; - "azure-arm-powerbiembedded-0.1.1" = { - name = "azure-arm-powerbiembedded"; - packageName = "azure-arm-powerbiembedded"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.1.tgz"; - sha1 = "7103c94e06b3ddf628293f60e02fd0ba8f9c3ca9"; - }; - }; - "azure-arm-rediscache-0.2.3" = { - name = "azure-arm-rediscache"; - packageName = "azure-arm-rediscache"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-rediscache/-/azure-arm-rediscache-0.2.3.tgz"; - sha1 = "b6898abe8b4c3e1b2ec5be82689ef212bc2b1a06"; - }; - }; - "azure-arm-resource-1.6.1-preview" = { - name = "azure-arm-resource"; - packageName = "azure-arm-resource"; - version = "1.6.1-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-1.6.1-preview.tgz"; - sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6"; - }; - }; - "azure-arm-resource-7.3.0" = { - name = "azure-arm-resource"; - packageName = "azure-arm-resource"; - version = "7.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-resource/-/azure-arm-resource-7.3.0.tgz"; - sha512 = "2K+ps1Iwa4PBQFwdCn1X8kAVIRLH5M7nlNZtfOWaYd7DXJ131qJpwW8ul6gKZgG7DAI3PBodrGsHFvPdgA+AzQ=="; - }; - }; - "azure-arm-servermanagement-1.1.0" = { - name = "azure-arm-servermanagement"; - packageName = "azure-arm-servermanagement"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-1.1.0.tgz"; - sha512 = "GlPXPD5Up2U6Qxv40ScC/+7WRcVVYQf7EHUSomD385o/MuyJAjM6CxBS8fPKwkZR5MRSd60p6kBo5AQ+bwfpeA=="; - }; - }; - "azure-arm-storage-5.2.0" = { - name = "azure-arm-storage"; - packageName = "azure-arm-storage"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-5.2.0.tgz"; - sha512 = "BVFUPi48eJNJFP4ryQ3BwNRlKRNuAA7cZeSxCvr6dGEP+wrd1Ixmb2MlvoMRjgjcEOVnhP4t2YQyHcHNqQsH9A=="; - }; - }; - "azure-arm-trafficmanager-1.1.0-preview" = { - name = "azure-arm-trafficmanager"; - packageName = "azure-arm-trafficmanager"; - version = "1.1.0-preview"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-trafficmanager/-/azure-arm-trafficmanager-1.1.0-preview.tgz"; - sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50"; - }; - }; - "azure-arm-website-5.7.0" = { - name = "azure-arm-website"; - packageName = "azure-arm-website"; - version = "5.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-5.7.0.tgz"; - sha512 = "GnwqaelTIhv40YI3Ch8+Q272X6XXWTq99Y1aYWZb1cejSP4gjrWWeppwor4HtjlVU9i9YIvYO91TRjQt8FrHVA=="; - }; - }; - "azure-asm-compute-0.18.0" = { - name = "azure-asm-compute"; - packageName = "azure-asm-compute"; - version = "0.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-compute/-/azure-asm-compute-0.18.0.tgz"; - sha1 = "109c31e17c697f4a00a01533fb230bf3ae448685"; - }; - }; - "azure-asm-hdinsight-0.10.2" = { - name = "azure-asm-hdinsight"; - packageName = "azure-asm-hdinsight"; - version = "0.10.2"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-hdinsight/-/azure-asm-hdinsight-0.10.2.tgz"; - sha1 = "2d11cdaaa073fc38f31c718991d5923fb7259fa0"; - }; - }; - "azure-asm-mgmt-0.10.1" = { - name = "azure-asm-mgmt"; - packageName = "azure-asm-mgmt"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-mgmt/-/azure-asm-mgmt-0.10.1.tgz"; - sha1 = "d0a44b47ccabf338b19d53271675733cfa2d1751"; - }; - }; - "azure-asm-network-0.13.0" = { - name = "azure-asm-network"; - packageName = "azure-asm-network"; - version = "0.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-network/-/azure-asm-network-0.13.0.tgz"; - sha1 = "8d5d46b66b16c36dfc067f7c7c87bd2f42049c54"; - }; - }; - "azure-asm-sb-0.10.1" = { - name = "azure-asm-sb"; - packageName = "azure-asm-sb"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-sb/-/azure-asm-sb-0.10.1.tgz"; - sha1 = "92487b24166041119714f66760ec1f36e8dc7222"; - }; - }; - "azure-asm-sql-0.10.1" = { - name = "azure-asm-sql"; - packageName = "azure-asm-sql"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-sql/-/azure-asm-sql-0.10.1.tgz"; - sha1 = "47728df19a6d4f1cc935235c69fa9cf048cc8f42"; - }; - }; - "azure-asm-storage-0.12.0" = { - name = "azure-asm-storage"; - packageName = "azure-asm-storage"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-storage/-/azure-asm-storage-0.12.0.tgz"; - sha1 = "f5edf48d41d18a80eb14af6a72c1d6924214fdd3"; - }; - }; - "azure-asm-subscription-0.10.1" = { - name = "azure-asm-subscription"; - packageName = "azure-asm-subscription"; - version = "0.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-subscription/-/azure-asm-subscription-0.10.1.tgz"; - sha1 = "917a5e87a04b69c0f5c29339fe910bb5e5e7a04c"; - }; - }; - "azure-asm-trafficmanager-0.10.3" = { - name = "azure-asm-trafficmanager"; - packageName = "azure-asm-trafficmanager"; - version = "0.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-trafficmanager/-/azure-asm-trafficmanager-0.10.3.tgz"; - sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447"; - }; - }; - "azure-asm-website-0.10.7" = { - name = "azure-asm-website"; - packageName = "azure-asm-website"; - version = "0.10.7"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.7.tgz"; - sha512 = "h3OmXKKOLd4sbf4khrxqGTjspjqpKduKN9EWgEoIeNhMY+PVKrVEIMr3ZyKzmmy/8123MD+ip67wMqUKSTLtUA=="; - }; - }; - "azure-batch-3.2.2" = { - name = "azure-batch"; - packageName = "azure-batch"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-batch/-/azure-batch-3.2.2.tgz"; - sha512 = "IM5nUITXMgTFTF4avRxsz/oLcMXLSZEzpukulRRpO1emXBI4EgSIr0++hUo+AZ94MINE2C4DXgCDiQ9P0suYXw=="; - }; - }; - "azure-common-0.9.22" = { - name = "azure-common"; - packageName = "azure-common"; - version = "0.9.22"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.22.tgz"; - sha512 = "0r9tK9D+1xl2/VPVtfmGmtkMqfooiBLS87fX+Ab0hOCPVVe/6CgVC4in0wSf2Ta8r65DbvxV5P4/t8fp8Q3EsQ=="; - }; - }; - "azure-gallery-2.0.0-pre.18" = { - name = "azure-gallery"; - packageName = "azure-gallery"; - version = "2.0.0-pre.18"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-gallery/-/azure-gallery-2.0.0-pre.18.tgz"; - sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6"; - }; - }; - "azure-graph-2.2.0" = { - name = "azure-graph"; - packageName = "azure-graph"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.2.0.tgz"; - sha512 = "ab0LlM5Q3pcKm+V6F6yx2ShzGOTYMcmJvLdL3PQsC9hF+hrYsBdkTCdNZdlPBgrSB8jp5vzhmK83qHGRs14hHw=="; - }; - }; - "azure-keyvault-3.0.4" = { - name = "azure-keyvault"; - packageName = "azure-keyvault"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-3.0.4.tgz"; - sha1 = "b7733d8f58d99a66f9ae766451556eb3b058dae5"; - }; - }; - "azure-monitoring-0.10.6" = { - name = "azure-monitoring"; - packageName = "azure-monitoring"; - version = "0.10.6"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.6.tgz"; - sha512 = "6HNA8VuC5qYvQMjcQt2/zlB7oyAJ7n6KGIYGstS6KS9Orux0peqxlrGPDeQRa4jDNq6ili83KiGc7RhWcgsE4Q=="; - }; - }; - "azure-servicefabric-2.2.0" = { - name = "azure-servicefabric"; - packageName = "azure-servicefabric"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-servicefabric/-/azure-servicefabric-2.2.0.tgz"; - sha512 = "b+rxF8esa1Cm+bnJLs6a+hO/7U9QwvQzg0bSR1rKP9NTKjZji3GxdndcPVkHqFv28QiLo9ifyR/FaJMA0cDcTw=="; - }; - }; - "azure-storage-2.10.3" = { - name = "azure-storage"; - packageName = "azure-storage"; - version = "2.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.10.3.tgz"; - sha512 = "IGLs5Xj6kO8Ii90KerQrrwuJKexLgSwYC4oLWmc11mzKe7Jt2E5IVg+ZQ8K53YWZACtVTMBNO3iGuA+4ipjJxQ=="; - }; - }; - "babel-runtime-6.26.0" = { - name = "babel-runtime"; - packageName = "babel-runtime"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; - }; - }; - "babel-types-6.26.0" = { - name = "babel-types"; - packageName = "babel-types"; - version = "6.26.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babel-types/-/babel-types-6.26.0.tgz"; - sha1 = "a3b073f94ab49eb6fa55cd65227a334380632497"; - }; - }; - "babylon-6.18.0" = { - name = "babylon"; - packageName = "babylon"; - version = "6.18.0"; - src = fetchurl { - url = "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz"; - sha512 = "q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ=="; - }; - }; - "backo2-1.0.2" = { - name = "backo2"; - packageName = "backo2"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; - sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; - }; - }; - "backoff-2.5.0" = { - name = "backoff"; - packageName = "backoff"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; - sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; - }; - }; - "bagpipes-0.1.2" = { - name = "bagpipes"; - packageName = "bagpipes"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bagpipes/-/bagpipes-0.1.2.tgz"; - sha512 = "+1JbB1W4s46ptVw6mtyxdCH9nLpuRp01qq6JD7Ga/JFQbfrF7u1AGa7N2m0wcqirVUXpFFOjfZ08NDYyZuna4w=="; - }; - }; - "balanced-match-1.0.0" = { - name = "balanced-match"; - packageName = "balanced-match"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz"; - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; - }; - }; - "base-0.11.2" = { - name = "base"; - packageName = "base"; - version = "0.11.2"; - src = fetchurl { - url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz"; - sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; - }; - }; - "base64-arraybuffer-0.1.5" = { - name = "base64-arraybuffer"; - packageName = "base64-arraybuffer"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz"; - sha1 = "73926771923b5a19747ad666aa5cd4bf9c6e9ce8"; - }; - }; - "base64-js-1.3.0" = { - name = "base64-js"; - packageName = "base64-js"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz"; - sha512 = "ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw=="; - }; - }; - "base64id-1.0.0" = { - name = "base64id"; - packageName = "base64id"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz"; - sha1 = "47688cb99bb6804f0e06d3e763b1c32e57d8e6b6"; - }; - }; - "base64url-3.0.1" = { - name = "base64url"; - packageName = "base64url"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/base64url/-/base64url-3.0.1.tgz"; - sha512 = "ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A=="; - }; - }; - "basic-auth-1.1.0" = { - name = "basic-auth"; - packageName = "basic-auth"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.1.0.tgz"; - sha1 = "45221ee429f7ee1e5035be3f51533f1cdfd29884"; - }; - }; - "bcrypt-pbkdf-1.0.2" = { - name = "bcrypt-pbkdf"; - packageName = "bcrypt-pbkdf"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; - }; - }; - "better-assert-1.0.2" = { - name = "better-assert"; - packageName = "better-assert"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; - sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; - }; - }; - "bindings-1.2.1" = { - name = "bindings"; - packageName = "bindings"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; - sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; - }; - }; - "bl-1.1.2" = { - name = "bl"; - packageName = "bl"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz"; - sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398"; - }; - }; - "blob-0.0.5" = { - name = "blob"; - packageName = "blob"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/blob/-/blob-0.0.5.tgz"; - sha512 = "gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig=="; - }; - }; - "bluebird-1.1.1" = { - name = "bluebird"; - packageName = "bluebird"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-1.1.1.tgz"; - sha1 = "744e9980145e2ebc41a9e34826f913096667fb33"; - }; - }; - "bluebird-2.11.0" = { - name = "bluebird"; - packageName = "bluebird"; - version = "2.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-2.11.0.tgz"; - sha1 = "534b9033c022c9579c56ba3b3e5a5caafbb650e1"; - }; - }; - "bluebird-2.9.34" = { - name = "bluebird"; - packageName = "bluebird"; - version = "2.9.34"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.34.tgz"; - sha1 = "2f7b4ec80216328a9fddebdf69c8d4942feff7d8"; - }; - }; - "bluebird-3.4.7" = { - name = "bluebird"; - packageName = "bluebird"; - version = "3.4.7"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz"; - sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3"; - }; - }; - "bluebird-3.5.5" = { - name = "bluebird"; - packageName = "bluebird"; - version = "3.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz"; - sha512 = "5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w=="; - }; - }; - "body-parser-1.19.0" = { - name = "body-parser"; - packageName = "body-parser"; - version = "1.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz"; - sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; - }; - }; - "boom-2.10.1" = { - name = "boom"; - packageName = "boom"; - version = "2.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; - }; - }; - "brace-expansion-1.1.11" = { - name = "brace-expansion"; - packageName = "brace-expansion"; - version = "1.1.11"; - src = fetchurl { - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; - }; - }; - "braces-2.3.2" = { - name = "braces"; - packageName = "braces"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"; - sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; - }; - }; - "browserify-mime-1.2.9" = { - name = "browserify-mime"; - packageName = "browserify-mime"; - version = "1.2.9"; - src = fetchurl { - url = "https://registry.npmjs.org/browserify-mime/-/browserify-mime-1.2.9.tgz"; - sha1 = "aeb1af28de6c0d7a6a2ce40adb68ff18422af31f"; - }; - }; - "buffer-4.9.1" = { - name = "buffer"; - packageName = "buffer"; - version = "4.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz"; - sha1 = "6d1bb601b07a4efced97094132093027c95bc298"; - }; - }; - "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-equal-constant-time-1.0.1" = { - name = "buffer-equal-constant-time"; - packageName = "buffer-equal-constant-time"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"; - sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"; - }; - }; - "buffer-from-1.1.1" = { - name = "buffer-from"; - packageName = "buffer-from"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz"; - sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A=="; - }; - }; - "bufferutil-1.3.0" = { - name = "bufferutil"; - packageName = "bufferutil"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bufferutil/-/bufferutil-1.3.0.tgz"; - sha1 = "69fdf13ad9d91222baee109945faadc431534f86"; - }; - }; - "bufferview-1.0.1" = { - name = "bufferview"; - packageName = "bufferview"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz"; - sha1 = "7afd74a45f937fa422a1d338c08bbfdc76cd725d"; - }; - }; - "bunyan-1.8.12" = { - name = "bunyan"; - packageName = "bunyan"; - version = "1.8.12"; - src = fetchurl { - url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.12.tgz"; - sha1 = "f150f0f6748abdd72aeae84f04403be2ef113797"; - }; - }; - "busboy-0.2.14" = { - name = "busboy"; - packageName = "busboy"; - version = "0.2.14"; - src = fetchurl { - url = "https://registry.npmjs.org/busboy/-/busboy-0.2.14.tgz"; - sha1 = "6c2a622efcf47c57bbbe1e2a9c37ad36c7925453"; - }; - }; - "bytebuffer-3.5.5" = { - name = "bytebuffer"; - packageName = "bytebuffer"; - version = "3.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.5.tgz"; - sha1 = "7a6faf1a13514b083f1fcf9541c4c9bfbe7e7fd3"; - }; - }; - "bytes-3.0.0" = { - name = "bytes"; - packageName = "bytes"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; - sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; - }; - }; - "bytes-3.1.0" = { - name = "bytes"; - packageName = "bytes"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz"; - sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; - }; - }; - "cache-base-1.0.1" = { - name = "cache-base"; - packageName = "cache-base"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; - sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; - }; - }; - "caller-id-0.1.0" = { - name = "caller-id"; - packageName = "caller-id"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caller-id/-/caller-id-0.1.0.tgz"; - sha1 = "59bdac0893d12c3871408279231f97458364f07b"; - }; - }; - "callsite-1.0.0" = { - name = "callsite"; - packageName = "callsite"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; - sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; - }; - }; - "camelcase-1.2.1" = { - name = "camelcase"; - packageName = "camelcase"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; - sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; - }; - }; - "camelcase-3.0.0" = { - name = "camelcase"; - packageName = "camelcase"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz"; - sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"; - }; - }; - "camelcase-5.3.1" = { - name = "camelcase"; - packageName = "camelcase"; - version = "5.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; - }; - }; - "caseless-0.11.0" = { - name = "caseless"; - packageName = "caseless"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; - sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; - }; - }; - "caseless-0.12.0" = { - name = "caseless"; - packageName = "caseless"; - version = "0.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; - sha1 = "1b681c21ff84033c826543090689420d187151dc"; - }; - }; - "center-align-0.1.3" = { - name = "center-align"; - packageName = "center-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; - sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; - }; - }; - "chalk-0.4.0" = { - name = "chalk"; - packageName = "chalk"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-0.4.0.tgz"; - sha1 = "5199a3ddcd0c1efe23bc08c1b027b06176e0c64f"; - }; - }; - "chalk-1.1.3" = { - name = "chalk"; - packageName = "chalk"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; - }; - }; - "chalk-2.4.2" = { - name = "chalk"; - packageName = "chalk"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; - }; - }; - "chance-1.0.18" = { - name = "chance"; - packageName = "chance"; - version = "1.0.18"; - src = fetchurl { - url = "https://registry.npmjs.org/chance/-/chance-1.0.18.tgz"; - sha512 = "g9YLQVHVZS/3F+zIicfB58vjcxopvYQRp7xHzvyDFDhXH1aRZI/JhwSAO0X5qYiQluoGnaNAU6wByD2KTxJN1A=="; - }; - }; - "character-parser-2.2.0" = { - name = "character-parser"; - packageName = "character-parser"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz"; - sha1 = "c7ce28f36d4bcd9744e5ffc2c5fcde1c73261fc0"; - }; - }; - "chmodr-1.2.0" = { - name = "chmodr"; - packageName = "chmodr"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/chmodr/-/chmodr-1.2.0.tgz"; - sha512 = "Y5uI7Iq/Az6HgJEL6pdw7THVd7jbVOTPwsmcPOBjQL8e3N+pz872kzK5QxYGEy21iRys+iHWV0UZQXDFJo1hyA=="; - }; - }; - "chownr-1.1.2" = { - name = "chownr"; - packageName = "chownr"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/chownr/-/chownr-1.1.2.tgz"; - sha512 = "GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A=="; - }; - }; - "class-utils-0.3.6" = { - name = "class-utils"; - packageName = "class-utils"; - version = "0.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"; - sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; - }; - }; - "clean-css-4.2.1" = { - name = "clean-css"; - packageName = "clean-css"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz"; - sha512 = "4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g=="; - }; - }; - "cliui-2.1.0" = { - name = "cliui"; - packageName = "cliui"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; - sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; - }; - }; - "cliui-3.2.0" = { - name = "cliui"; - packageName = "cliui"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; - sha1 = "120601537a916d29940f934da3b48d585a39213d"; - }; - }; - "cliui-4.1.0" = { - name = "cliui"; - packageName = "cliui"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz"; - sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ=="; - }; - }; - "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"; - }; - }; - "code-point-at-1.1.0" = { - name = "code-point-at"; - packageName = "code-point-at"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; - }; - }; - "collection-visit-1.0.0" = { - name = "collection-visit"; - packageName = "collection-visit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; - }; - }; - "color-convert-1.9.3" = { - name = "color-convert"; - packageName = "color-convert"; - version = "1.9.3"; - src = fetchurl { - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; - }; - }; - "color-name-1.1.3" = { - name = "color-name"; - packageName = "color-name"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; - }; - }; - "colors-0.6.2" = { - name = "colors"; - packageName = "colors"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; - sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc"; - }; - }; - "colors-1.0.3" = { - name = "colors"; - packageName = "colors"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; - }; - }; - "colors-1.1.2" = { - name = "colors"; - packageName = "colors"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; - sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; - }; - }; - "colors-1.3.3" = { - name = "colors"; - packageName = "colors"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz"; - sha512 = "mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg=="; - }; - }; - "colour-0.7.1" = { - name = "colour"; - packageName = "colour"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz"; - sha1 = "9cb169917ec5d12c0736d3e8685746df1cadf778"; - }; - }; - "combined-stream-1.0.8" = { - name = "combined-stream"; - packageName = "combined-stream"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; - sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; - }; - }; - "commander-1.0.4" = { - name = "commander"; - packageName = "commander"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-1.0.4.tgz"; - sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3"; - }; - }; - "commander-1.1.1" = { - name = "commander"; - packageName = "commander"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-1.1.1.tgz"; - sha1 = "50d1651868ae60eccff0a2d9f34595376bc6b041"; - }; - }; - "commander-2.19.0" = { - name = "commander"; - packageName = "commander"; - version = "2.19.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz"; - sha512 = "6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg=="; - }; - }; - "commander-2.20.0" = { - name = "commander"; - packageName = "commander"; - version = "2.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz"; - sha512 = "7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ=="; - }; - }; - "component-bind-1.0.0" = { - name = "component-bind"; - packageName = "component-bind"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; - sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; - }; - }; - "component-emitter-1.2.1" = { - name = "component-emitter"; - packageName = "component-emitter"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz"; - sha1 = "137918d6d78283f7df7a6b7c5a63e140e69425e6"; - }; - }; - "component-emitter-1.3.0" = { - name = "component-emitter"; - packageName = "component-emitter"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"; - sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; - }; - }; - "component-inherit-0.0.3" = { - name = "component-inherit"; - packageName = "component-inherit"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; - sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; - }; - }; - "compressible-2.0.17" = { - name = "compressible"; - packageName = "compressible"; - version = "2.0.17"; - src = fetchurl { - url = "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz"; - sha512 = "BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw=="; - }; - }; - "compression-1.7.4" = { - name = "compression"; - packageName = "compression"; - version = "1.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz"; - sha512 = "jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ=="; - }; - }; - "concat-map-0.0.1" = { - name = "concat-map"; - packageName = "concat-map"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; - }; - }; - "concat-stream-1.6.2" = { - name = "concat-stream"; - packageName = "concat-stream"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz"; - sha512 = "27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw=="; - }; - }; - "config-1.31.0" = { - name = "config"; - packageName = "config"; - version = "1.31.0"; - src = fetchurl { - url = "https://registry.npmjs.org/config/-/config-1.31.0.tgz"; - sha512 = "Ep/l9Rd1J9IPueztJfpbOqVzuKHQh4ZODMNt9xqTYdBBNRXbV4oTu34kCkkfdRVcDq0ohtpaeXGgb+c0LQxFRA=="; - }; - }; - "console-control-strings-1.1.0" = { - name = "console-control-strings"; - packageName = "console-control-strings"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz"; - sha1 = "3d7cf4464db6446ea644bf4b39507f9851008e8e"; - }; - }; - "constantinople-3.1.2" = { - name = "constantinople"; - packageName = "constantinople"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/constantinople/-/constantinople-3.1.2.tgz"; - sha512 = "yePcBqEFhLOqSBtwYOGGS1exHo/s1xjekXiinh4itpNQGCu4KA1euPh1fg07N2wMITZXQkBz75Ntdt1ctGZouw=="; - }; - }; - "content-disposition-0.5.3" = { - name = "content-disposition"; - packageName = "content-disposition"; - version = "0.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz"; - sha512 = "ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g=="; - }; - }; - "content-type-1.0.4" = { - name = "content-type"; - packageName = "content-type"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz"; - sha512 = "hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA=="; - }; - }; - "convert-source-map-1.6.0" = { - name = "convert-source-map"; - packageName = "convert-source-map"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz"; - sha512 = "eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A=="; - }; - }; - "convert-to-ecmascript-compatible-varname-0.1.5" = { - name = "convert-to-ecmascript-compatible-varname"; - packageName = "convert-to-ecmascript-compatible-varname"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/convert-to-ecmascript-compatible-varname/-/convert-to-ecmascript-compatible-varname-0.1.5.tgz"; - sha1 = "f67a4938c5233443564250479c67014bac878499"; - }; - }; - "cookie-0.3.1" = { - name = "cookie"; - packageName = "cookie"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; - sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; - }; - }; - "cookie-0.4.0" = { - name = "cookie"; - packageName = "cookie"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz"; - sha512 = "+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg=="; - }; - }; - "cookie-session-2.0.0-beta.3" = { - name = "cookie-session"; - packageName = "cookie-session"; - version = "2.0.0-beta.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie-session/-/cookie-session-2.0.0-beta.3.tgz"; - sha512 = "zyqm5tA0z9yMEB/xyP7lnRnqp8eLR2e0dap+9+rBwVigla9yPKn8XTL1jJymog8xjfrowqW2o5LUjixQChkqrw=="; - }; - }; - "cookie-signature-1.0.6" = { - name = "cookie-signature"; - packageName = "cookie-signature"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; - sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; - }; - }; - "cookiejar-2.1.2" = { - name = "cookiejar"; - packageName = "cookiejar"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"; - sha512 = "Mw+adcfzPxcPeI+0WlvRrr/3lGVO0bD75SxX6811cxSh1Wbxx7xZBGK1eVtDf6si8rg2lhnUjsVLMFMfbRIuwA=="; - }; - }; - "cookies-0.7.1" = { - name = "cookies"; - packageName = "cookies"; - version = "0.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/cookies/-/cookies-0.7.1.tgz"; - sha1 = "7c8a615f5481c61ab9f16c833731bcb8f663b99b"; - }; - }; - "copy-descriptor-0.1.1" = { - name = "copy-descriptor"; - packageName = "copy-descriptor"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; - }; - }; - "core-js-2.6.9" = { - name = "core-js"; - packageName = "core-js"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/core-js/-/core-js-2.6.9.tgz"; - sha512 = "HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A=="; - }; - }; - "core-util-is-1.0.2" = { - name = "core-util-is"; - packageName = "core-util-is"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; - }; - }; - "cors-2.8.5" = { - name = "cors"; - packageName = "cors"; - version = "2.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz"; - sha512 = "KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g=="; - }; - }; - "cross-spawn-4.0.2" = { - name = "cross-spawn"; - packageName = "cross-spawn"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-4.0.2.tgz"; - sha1 = "7b9247621c23adfdd3856004a823cbe397424d41"; - }; - }; - "cross-spawn-6.0.5" = { - name = "cross-spawn"; - packageName = "cross-spawn"; - version = "6.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"; - sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; - }; - }; - "cryptiles-2.0.5" = { - name = "cryptiles"; - packageName = "cryptiles"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; - }; - }; - "csrf-3.1.0" = { - name = "csrf"; - packageName = "csrf"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/csrf/-/csrf-3.1.0.tgz"; - sha512 = "uTqEnCvWRk042asU6JtapDTcJeeailFy4ydOQS28bj1hcLnYRiqi8SsD2jS412AY1I/4qdOwWZun774iqywf9w=="; - }; - }; - "csurf-1.10.0" = { - name = "csurf"; - packageName = "csurf"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/csurf/-/csurf-1.10.0.tgz"; - sha512 = "fh725p0R83wA5JukCik5hdEko/LizW/Vl7pkKDa1WJUVCosg141mqaAWCScB+nkEaRMFMGbutHMOr6oBNc/j9A=="; - }; - }; - "ctype-0.5.2" = { - name = "ctype"; - packageName = "ctype"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ctype/-/ctype-0.5.2.tgz"; - sha1 = "fe8091d468a373a0b0c9ff8bbfb3425c00973a1d"; - }; - }; - "cycle-1.0.3" = { - name = "cycle"; - packageName = "cycle"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; - sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; - }; - }; - "dashdash-1.14.1" = { - name = "dashdash"; - packageName = "dashdash"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz"; - sha1 = "853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"; - }; - }; - "date-utils-1.2.21" = { - name = "date-utils"; - packageName = "date-utils"; - version = "1.2.21"; - src = fetchurl { - url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz"; - sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64"; - }; - }; - "dateformat-1.0.2-1.2.3" = { - name = "dateformat"; - packageName = "dateformat"; - version = "1.0.2-1.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"; - sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9"; - }; - }; - "debug-0.7.4" = { - name = "debug"; - packageName = "debug"; - version = "0.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; - sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39"; - }; - }; - "debug-2.6.9" = { - name = "debug"; - packageName = "debug"; - version = "2.6.9"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; - }; - }; - "debug-3.1.0" = { - name = "debug"; - packageName = "debug"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; - sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; - }; - }; - "debug-3.2.6" = { - name = "debug"; - packageName = "debug"; - version = "3.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"; - sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; - }; - }; - "debug-4.1.1" = { - name = "debug"; - packageName = "debug"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz"; - sha512 = "pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw=="; - }; - }; - "decamelize-1.2.0" = { - name = "decamelize"; - packageName = "decamelize"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; - }; - }; - "decode-uri-component-0.2.0" = { - name = "decode-uri-component"; - packageName = "decode-uri-component"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; - }; - }; - "deep-equal-1.0.1" = { - name = "deep-equal"; - packageName = "deep-equal"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; - sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; - }; - }; - "deep-extend-0.4.2" = { - name = "deep-extend"; - packageName = "deep-extend"; - version = "0.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.2.tgz"; - sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f"; - }; - }; - "deep-extend-0.6.0" = { - name = "deep-extend"; - packageName = "deep-extend"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; - sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; - }; - }; - "defaults-1.0.3" = { - name = "defaults"; - packageName = "defaults"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; - sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; - }; - }; - "define-property-0.2.5" = { - name = "define-property"; - packageName = "define-property"; - version = "0.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; - }; - }; - "define-property-1.0.0" = { - name = "define-property"; - packageName = "define-property"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; - }; - }; - "define-property-2.0.2" = { - name = "define-property"; - packageName = "define-property"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"; - sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; - }; - }; - "delayed-stream-1.0.0" = { - name = "delayed-stream"; - packageName = "delayed-stream"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; - }; - }; - "delegates-1.0.0" = { - name = "delegates"; - packageName = "delegates"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; - sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; - }; - }; - "depd-1.1.2" = { - name = "depd"; - packageName = "depd"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; - sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; - }; - }; - "deref-0.6.4" = { - name = "deref"; - packageName = "deref"; - version = "0.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/deref/-/deref-0.6.4.tgz"; - sha1 = "bd5a96d45dbed3011bb81bdf68ddf54be8e1bd4e"; - }; - }; - "destroy-1.0.4" = { - name = "destroy"; - packageName = "destroy"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; - sha1 = "978857442c44749e4206613e37946205826abd80"; - }; - }; - "detect-file-1.0.0" = { - name = "detect-file"; - packageName = "detect-file"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"; - sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; - }; - }; - "detect-libc-1.0.3" = { - name = "detect-libc"; - packageName = "detect-libc"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; - sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; - }; - }; - "dicer-0.2.5" = { - name = "dicer"; - packageName = "dicer"; - version = "0.2.5"; - src = fetchurl { - url = "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz"; - sha1 = "5996c086bb33218c812c090bddc09cd12facb70f"; - }; - }; - "diff-3.5.0" = { - name = "diff"; - packageName = "diff"; - version = "3.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz"; - sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="; - }; - }; - "doctypes-1.1.0" = { - name = "doctypes"; - packageName = "doctypes"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz"; - sha1 = "ea80b106a87538774e8a3a4a5afe293de489e0a9"; - }; - }; - "drange-1.1.1" = { - name = "drange"; - packageName = "drange"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/drange/-/drange-1.1.1.tgz"; - sha512 = "pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA=="; - }; - }; - "dtrace-provider-0.8.7" = { - name = "dtrace-provider"; - packageName = "dtrace-provider"; - version = "0.8.7"; - src = fetchurl { - url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz"; - sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04"; - }; - }; - "duplexer-0.1.1" = { - name = "duplexer"; - packageName = "duplexer"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; - sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; - }; - }; - "easy-table-1.1.0" = { - name = "easy-table"; - packageName = "easy-table"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/easy-table/-/easy-table-1.1.0.tgz"; - sha1 = "86f9ab4c102f0371b7297b92a651d5824bc8cb73"; - }; - }; - "ecc-jsbn-0.1.2" = { - name = "ecc-jsbn"; - packageName = "ecc-jsbn"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz"; - sha1 = "3a83a904e54353287874c564b7549386849a98c9"; - }; - }; - "ecdsa-sig-formatter-1.0.11" = { - name = "ecdsa-sig-formatter"; - packageName = "ecdsa-sig-formatter"; - version = "1.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"; - sha512 = "nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ=="; - }; - }; - "ee-first-1.1.1" = { - name = "ee-first"; - packageName = "ee-first"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; - sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; - }; - }; - "ejs-0.8.8" = { - name = "ejs"; - packageName = "ejs"; - version = "0.8.8"; - src = fetchurl { - url = "https://registry.npmjs.org/ejs/-/ejs-0.8.8.tgz"; - sha1 = "ffdc56dcc35d02926dd50ad13439bbc54061d598"; - }; - }; - "ejs-2.5.7" = { - name = "ejs"; - packageName = "ejs"; - version = "2.5.7"; - src = fetchurl { - url = "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz"; - sha1 = "cc872c168880ae3c7189762fd5ffc00896c9518a"; - }; - }; - "encodeurl-1.0.2" = { - name = "encodeurl"; - packageName = "encodeurl"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz"; - sha1 = "ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"; - }; - }; - "end-of-stream-1.4.1" = { - name = "end-of-stream"; - packageName = "end-of-stream"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz"; - sha512 = "1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q=="; - }; - }; - "engine.io-3.3.2" = { - name = "engine.io"; - packageName = "engine.io"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io/-/engine.io-3.3.2.tgz"; - sha512 = "AsaA9KG7cWPXWHp5FvHdDWY3AMWeZ8x+2pUVLcn71qE5AtAzgGbxuclOytygskw8XGmiQafTmnI9Bix3uihu2w=="; - }; - }; - "engine.io-client-3.3.2" = { - name = "engine.io-client"; - packageName = "engine.io-client"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-3.3.2.tgz"; - sha512 = "y0CPINnhMvPuwtqXfsGuWE8BB66+B6wTtCofQDRecMQPYX3MYUZXFNKDhdrSe3EVjgOu4V3rxdeqN/Tr91IgbQ=="; - }; - }; - "engine.io-parser-2.1.3" = { - name = "engine.io-parser"; - packageName = "engine.io-parser"; - version = "2.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-2.1.3.tgz"; - sha512 = "6HXPre2O4Houl7c4g7Ic/XzPnHBvaEmN90vtRO9uLmwtRqQmTOw0QMevL1TOfL2Cpu1VzsaTmMotQgMdkzGkVA=="; - }; - }; - "ensure-posix-path-1.1.1" = { - name = "ensure-posix-path"; - packageName = "ensure-posix-path"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ensure-posix-path/-/ensure-posix-path-1.1.1.tgz"; - sha512 = "VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw=="; - }; - }; - "env-paths-1.0.0" = { - name = "env-paths"; - packageName = "env-paths"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/env-paths/-/env-paths-1.0.0.tgz"; - sha1 = "4168133b42bb05c38a35b1ae4397c8298ab369e0"; - }; - }; - "envconf-0.0.4" = { - name = "envconf"; - packageName = "envconf"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/envconf/-/envconf-0.0.4.tgz"; - sha1 = "85675afba237c43f98de2d46adc0e532a4dcf48b"; - }; - }; - "error-ex-1.3.2" = { - name = "error-ex"; - packageName = "error-ex"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"; - sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; - }; - }; - "escape-html-1.0.3" = { - name = "escape-html"; - packageName = "escape-html"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; - sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; - }; - }; - "escape-string-regexp-1.0.5" = { - name = "escape-string-regexp"; - packageName = "escape-string-regexp"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; - }; - }; - "esprima-2.0.0" = { - name = "esprima"; - packageName = "esprima"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-2.0.0.tgz"; - sha1 = "609ac5c2667eae5433b41eb9ecece2331b41498f"; - }; - }; - "esprima-4.0.1" = { - name = "esprima"; - packageName = "esprima"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; - }; - }; - "esutils-2.0.2" = { - name = "esutils"; - packageName = "esutils"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; - sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; - }; - }; - "etag-1.8.1" = { - name = "etag"; - packageName = "etag"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz"; - sha1 = "41ae2eeb65efa62268aebfea83ac7d79299b0887"; - }; - }; - "event-stream-3.1.5" = { - name = "event-stream"; - packageName = "event-stream"; - version = "3.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/event-stream/-/event-stream-3.1.5.tgz"; - sha1 = "6cba5a3ae02a7e4967d65ad04ef12502a2fff66c"; - }; - }; - "eventemitter3-1.2.0" = { - name = "eventemitter3"; - packageName = "eventemitter3"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz"; - sha1 = "1c86991d816ad1e504750e73874224ecf3bec508"; - }; - }; - "eventemitter3-3.1.2" = { - name = "eventemitter3"; - packageName = "eventemitter3"; - version = "3.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz"; - sha512 = "tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q=="; - }; - }; - "events-1.1.1" = { - name = "events"; - packageName = "events"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/events/-/events-1.1.1.tgz"; - sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; - }; - }; - "execa-1.0.0" = { - name = "execa"; - packageName = "execa"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"; - sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; - }; - }; - "expand-brackets-2.1.4" = { - name = "expand-brackets"; - packageName = "expand-brackets"; - version = "2.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; - }; - }; - "expand-tilde-2.0.2" = { - name = "expand-tilde"; - packageName = "expand-tilde"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; - sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; - }; - }; - "express-4.17.1" = { - name = "express"; - packageName = "express"; - version = "4.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/express/-/express-4.17.1.tgz"; - sha512 = "mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g=="; - }; - }; - "express-validator-2.21.0" = { - name = "express-validator"; - packageName = "express-validator"; - version = "2.21.0"; - src = fetchurl { - url = "https://registry.npmjs.org/express-validator/-/express-validator-2.21.0.tgz"; - sha1 = "f5fc2f9fa9e9a8578634f10e86ba5a4346b96f4f"; - }; - }; - "extend-3.0.2" = { - name = "extend"; - packageName = "extend"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz"; - sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; - }; - }; - "extend-shallow-2.0.1" = { - name = "extend-shallow"; - packageName = "extend-shallow"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; - }; - }; - "extend-shallow-3.0.2" = { - name = "extend-shallow"; - packageName = "extend-shallow"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"; - sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; - }; - }; - "extglob-2.0.4" = { - name = "extglob"; - packageName = "extglob"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"; - sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; - }; - }; - "extsprintf-1.2.0" = { - name = "extsprintf"; - packageName = "extsprintf"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; - sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; - }; - }; - "extsprintf-1.3.0" = { - name = "extsprintf"; - packageName = "extsprintf"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; - sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; - }; - }; - "eyes-0.1.8" = { - name = "eyes"; - packageName = "eyes"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; - sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; - }; - }; - "faker-3.1.0" = { - name = "faker"; - packageName = "faker"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/faker/-/faker-3.1.0.tgz"; - sha1 = "0f908faf4e6ec02524e54a57e432c5c013e08c9f"; - }; - }; - "fast-deep-equal-2.0.1" = { - name = "fast-deep-equal"; - packageName = "fast-deep-equal"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz"; - sha1 = "7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"; - }; - }; - "fast-json-patch-0.5.6" = { - name = "fast-json-patch"; - packageName = "fast-json-patch"; - version = "0.5.6"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz"; - sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402"; - }; - }; - "fast-json-stable-stringify-2.0.0" = { - name = "fast-json-stable-stringify"; - packageName = "fast-json-stable-stringify"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz"; - sha1 = "d5142c0caee6b1189f87d3a76111064f86c8bbf2"; - }; - }; - "fd-slicer-1.1.0" = { - name = "fd-slicer"; - packageName = "fd-slicer"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz"; - sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e"; - }; - }; - "fibers-1.0.15" = { - name = "fibers"; - packageName = "fibers"; - version = "1.0.15"; - src = fetchurl { - url = "https://registry.npmjs.org/fibers/-/fibers-1.0.15.tgz"; - sha1 = "22f039c8f18b856190fbbe4decf056154c1eae9c"; - }; - }; - "fields-0.1.24" = { - name = "fields"; - packageName = "fields"; - version = "0.1.24"; - src = fetchurl { - url = "https://registry.npmjs.org/fields/-/fields-0.1.24.tgz"; - sha1 = "bed93b1c2521f4705fe764f4209267fdfd89f5d3"; - }; - }; - "fill-range-4.0.0" = { - name = "fill-range"; - packageName = "fill-range"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; - }; - }; - "finalhandler-1.1.2" = { - name = "finalhandler"; - packageName = "finalhandler"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz"; - sha512 = "aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA=="; - }; - }; - "find-up-1.1.2" = { - name = "find-up"; - packageName = "find-up"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; - sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; - }; - }; - "find-up-3.0.0" = { - name = "find-up"; - packageName = "find-up"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; - }; - }; - "findup-sync-2.0.0" = { - name = "findup-sync"; - packageName = "findup-sync"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz"; - sha1 = "9326b1488c22d1a6088650a86901b2d9a90a2cbc"; - }; - }; - "fined-1.2.0" = { - name = "fined"; - packageName = "fined"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fined/-/fined-1.2.0.tgz"; - sha512 = "ZYDqPLGxDkDhDZBjZBb+oD1+j0rA4E0pXY50eplAAOPg2N/gUBSSk5IM1/QhPfyVo19lJ+CvXpqfvk+b2p/8Ng=="; - }; - }; - "flagged-respawn-1.0.1" = { - name = "flagged-respawn"; - packageName = "flagged-respawn"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-1.0.1.tgz"; - sha512 = "lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q=="; - }; - }; - "follow-redirects-1.7.0" = { - name = "follow-redirects"; - packageName = "follow-redirects"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz"; - sha512 = "m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ=="; - }; - }; - "for-in-1.0.2" = { - name = "for-in"; - packageName = "for-in"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"; - sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; - }; - }; - "for-own-1.0.0" = { - name = "for-own"; - packageName = "for-own"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz"; - sha1 = "c63332f415cedc4b04dbfe70cf836494c53cb44b"; - }; - }; - "forever-agent-0.6.1" = { - name = "forever-agent"; - packageName = "forever-agent"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; - sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; - }; - }; - "form-data-1.0.1" = { - name = "form-data"; - packageName = "form-data"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-1.0.1.tgz"; - sha1 = "ae315db9a4907fa065502304a66d7733475ee37c"; - }; - }; - "form-data-2.1.4" = { - name = "form-data"; - packageName = "form-data"; - version = "2.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.1.4.tgz"; - sha1 = "33c183acf193276ecaa98143a69e94bfee1750d1"; - }; - }; - "form-data-2.3.3" = { - name = "form-data"; - packageName = "form-data"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz"; - sha512 = "1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ=="; - }; - }; - "form-data-2.5.0" = { - name = "form-data"; - packageName = "form-data"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/form-data/-/form-data-2.5.0.tgz"; - sha512 = "WXieX3G/8side6VIqx44ablyULoGruSde5PNTxoUyo5CeyAMX6nVWUd0rgist/EuX655cjhUhTo1Fo3tRYqbcA=="; - }; - }; - "formidable-1.2.1" = { - name = "formidable"; - packageName = "formidable"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/formidable/-/formidable-1.2.1.tgz"; - sha512 = "Fs9VRguL0gqGHkXS5GQiMCr1VhZBxz0JnJs4JmMp/2jL18Fmbzvv7vOFRU+U8TBkHEE/CX1qDXzJplVULgsLeg=="; - }; - }; - "forwarded-0.1.2" = { - name = "forwarded"; - packageName = "forwarded"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz"; - sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84"; - }; - }; - "fragment-cache-0.2.1" = { - name = "fragment-cache"; - packageName = "fragment-cache"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; - }; - }; - "fresh-0.5.2" = { - name = "fresh"; - packageName = "fresh"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz"; - sha1 = "3d8cadd90d976569fa835ab1f8e4b23a105605a7"; - }; - }; - "from-0.1.7" = { - name = "from"; - packageName = "from"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz"; - sha1 = "83c60afc58b9c56997007ed1a768b3ab303a44fe"; - }; - }; - "fs-extra-5.0.0" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "5.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz"; - sha512 = "66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ=="; - }; - }; - "fs-extra-7.0.1" = { - name = "fs-extra"; - packageName = "fs-extra"; - version = "7.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz"; - sha512 = "YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw=="; - }; - }; - "fs-minipass-1.2.6" = { - name = "fs-minipass"; - packageName = "fs-minipass"; - version = "1.2.6"; - src = fetchurl { - url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.6.tgz"; - sha512 = "crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ=="; - }; - }; - "fs.realpath-1.0.0" = { - name = "fs.realpath"; - packageName = "fs.realpath"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; - }; - }; - "function-bind-1.1.1" = { - name = "function-bind"; - packageName = "function-bind"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; - }; - }; - "galaxy-0.1.12" = { - name = "galaxy"; - packageName = "galaxy"; - version = "0.1.12"; - src = fetchurl { - url = "https://registry.npmjs.org/galaxy/-/galaxy-0.1.12.tgz"; - sha1 = "0c989774f2870c69378aa665648cdc60f343aa53"; - }; - }; - "gauge-2.7.4" = { - name = "gauge"; - packageName = "gauge"; - version = "2.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz"; - sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; - }; - }; - "generate-function-2.3.1" = { - name = "generate-function"; - packageName = "generate-function"; - version = "2.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/generate-function/-/generate-function-2.3.1.tgz"; - sha512 = "eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ=="; - }; - }; - "generate-object-property-1.2.0" = { - name = "generate-object-property"; - packageName = "generate-object-property"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; - sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; - }; - }; - "get-caller-file-1.0.3" = { - name = "get-caller-file"; - packageName = "get-caller-file"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz"; - sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; - }; - }; - "get-stream-4.1.0" = { - name = "get-stream"; - packageName = "get-stream"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"; - sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; - }; - }; - "get-value-2.0.6" = { - name = "get-value"; - packageName = "get-value"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; - }; - }; - "getpass-0.1.7" = { - name = "getpass"; - packageName = "getpass"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz"; - sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; - }; - }; - "github-0.1.6" = { - name = "github"; - packageName = "github"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/github/-/github-0.1.6.tgz"; - sha1 = "1344e694f8d20ef9b29bcbfd1ca5eb4f7a287922"; - }; - }; - "glob-6.0.4" = { - name = "glob"; - packageName = "glob"; - version = "6.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; - sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; - }; - }; - "glob-7.1.4" = { - name = "glob"; - packageName = "glob"; - version = "7.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz"; - sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A=="; - }; - }; - "global-modules-0.2.3" = { - name = "global-modules"; - packageName = "global-modules"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/global-modules/-/global-modules-0.2.3.tgz"; - sha1 = "ea5a3bed42c6d6ce995a4f8a1269b5dae223828d"; - }; - }; - "global-modules-1.0.0" = { - name = "global-modules"; - packageName = "global-modules"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"; - sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg=="; - }; - }; - "global-paths-1.0.0" = { - name = "global-paths"; - packageName = "global-paths"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/global-paths/-/global-paths-1.0.0.tgz"; - sha1 = "3ffc84341594e47b32bfade5785355d4df7feac7"; - }; - }; - "global-prefix-0.1.5" = { - name = "global-prefix"; - packageName = "global-prefix"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-0.1.5.tgz"; - sha1 = "8d3bc6b8da3ca8112a160d8d496ff0462bfef78f"; - }; - }; - "global-prefix-1.0.2" = { - name = "global-prefix"; - packageName = "global-prefix"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"; - sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; - }; - }; - "globals-11.12.0" = { - name = "globals"; - packageName = "globals"; - version = "11.12.0"; - src = fetchurl { - url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; - }; - }; - "gm-1.23.1" = { - name = "gm"; - packageName = "gm"; - version = "1.23.1"; - src = fetchurl { - url = "https://registry.npmjs.org/gm/-/gm-1.23.1.tgz"; - sha1 = "2edeeb958084d0f8ea7988e5d995b1c7dfc14777"; - }; - }; - "graceful-fs-4.2.0" = { - name = "graceful-fs"; - packageName = "graceful-fs"; - version = "4.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz"; - sha512 = "jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg=="; - }; - }; - "graphlib-2.1.7" = { - name = "graphlib"; - packageName = "graphlib"; - version = "2.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/graphlib/-/graphlib-2.1.7.tgz"; - sha512 = "TyI9jIy2J4j0qgPmOOrHTCtpPqJGN/aurBwc6ZT+bRii+di1I+Wv3obRhVrmBEXet+qkMaEX67dXrwsd3QQM6w=="; - }; - }; - "grunt-known-options-1.1.1" = { - name = "grunt-known-options"; - packageName = "grunt-known-options"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz"; - sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ=="; - }; - }; - "har-schema-2.0.0" = { - name = "har-schema"; - packageName = "har-schema"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz"; - sha1 = "a94c2224ebcac04782a0d9035521f24735b7ec92"; - }; - }; - "har-validator-2.0.6" = { - name = "har-validator"; - packageName = "har-validator"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; - sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; - }; - }; - "har-validator-5.1.3" = { - name = "har-validator"; - packageName = "har-validator"; - version = "5.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz"; - sha512 = "sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g=="; - }; - }; - "has-1.0.3" = { - name = "has"; - packageName = "has"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; - }; - }; - "has-ansi-2.0.0" = { - name = "has-ansi"; - packageName = "has-ansi"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; - }; - }; - "has-binary2-1.0.3" = { - name = "has-binary2"; - packageName = "has-binary2"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/has-binary2/-/has-binary2-1.0.3.tgz"; - sha512 = "G1LWKhDSvhGeAQ8mPVQlqNcOB2sJdwATtZKl2pDKKHfpf/rYj24lkinxf69blJbnsvtqqNU+L3SL50vzZhXOnw=="; - }; - }; - "has-color-0.1.7" = { - name = "has-color"; - packageName = "has-color"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/has-color/-/has-color-0.1.7.tgz"; - sha1 = "67144a5260c34fc3cca677d041daf52fe7b78b2f"; - }; - }; - "has-cors-1.1.0" = { - name = "has-cors"; - packageName = "has-cors"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"; - sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; - }; - }; - "has-flag-3.0.0" = { - name = "has-flag"; - packageName = "has-flag"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; - }; - }; - "has-unicode-2.0.1" = { - name = "has-unicode"; - packageName = "has-unicode"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz"; - sha1 = "e0e6fe6a28cf51138855e086d1691e771de2a8b9"; - }; - }; - "has-value-0.3.1" = { - name = "has-value"; - packageName = "has-value"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; - }; - }; - "has-value-1.0.0" = { - name = "has-value"; - packageName = "has-value"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"; - sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; - }; - }; - "has-values-0.1.4" = { - name = "has-values"; - packageName = "has-values"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; - }; - }; - "has-values-1.0.0" = { - name = "has-values"; - packageName = "has-values"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"; - sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; - }; - }; - "hash-base-3.0.4" = { - name = "hash-base"; - packageName = "hash-base"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz"; - sha1 = "5fc8686847ecd73499403319a6b0a3f3f6ae4918"; - }; - }; - "hawk-3.1.3" = { - name = "hawk"; - packageName = "hawk"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; - }; - }; - "highlight.js-8.2.0" = { - name = "highlight.js"; - packageName = "highlight.js"; - version = "8.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/highlight.js/-/highlight.js-8.2.0.tgz"; - sha1 = "31ac0ea5d20f88f562948e7e8eb5a62e9e8c5e43"; - }; - }; - "hipchatter-0.3.2" = { - name = "hipchatter"; - packageName = "hipchatter"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/hipchatter/-/hipchatter-0.3.2.tgz"; - sha1 = "7f529cb676884032b0756750556ce77123bec406"; - }; - }; - "hoek-2.16.3" = { - name = "hoek"; - packageName = "hoek"; - version = "2.16.3"; - src = fetchurl { - url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; - }; - }; - "homedir-polyfill-1.0.3" = { - name = "homedir-polyfill"; - packageName = "homedir-polyfill"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; - sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="; - }; - }; - "hosted-git-info-2.7.1" = { - name = "hosted-git-info"; - packageName = "hosted-git-info"; - version = "2.7.1"; - src = fetchurl { - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz"; - sha512 = "7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w=="; - }; - }; - "http-basic-2.5.1" = { - name = "http-basic"; - packageName = "http-basic"; - version = "2.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/http-basic/-/http-basic-2.5.1.tgz"; - sha1 = "8ce447bdb5b6c577f8a63e3fa78056ec4bb4dbfb"; - }; - }; - "http-errors-1.7.2" = { - name = "http-errors"; - packageName = "http-errors"; - version = "1.7.2"; - src = fetchurl { - url = "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz"; - sha512 = "uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg=="; - }; - }; - "http-proxy-1.17.0" = { - name = "http-proxy"; - packageName = "http-proxy"; - version = "1.17.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz"; - sha512 = "Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g=="; - }; - }; - "http-response-object-1.1.0" = { - name = "http-response-object"; - packageName = "http-response-object"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-response-object/-/http-response-object-1.1.0.tgz"; - sha1 = "a7c4e75aae82f3bb4904e4f43f615673b4d518c3"; - }; - }; - "http-signature-1.1.1" = { - name = "http-signature"; - packageName = "http-signature"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; - }; - }; - "http-signature-1.2.0" = { - name = "http-signature"; - packageName = "http-signature"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz"; - sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; - }; - }; - "https-proxy-agent-1.0.0" = { - name = "https-proxy-agent"; - packageName = "https-proxy-agent"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz"; - sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6"; - }; - }; - "humanize-0.0.9" = { - name = "humanize"; - packageName = "humanize"; - version = "0.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/humanize/-/humanize-0.0.9.tgz"; - sha1 = "1994ffaecdfe9c441ed2bdac7452b7bb4c9e41a4"; - }; - }; - "i-0.3.6" = { - name = "i"; - packageName = "i"; - version = "0.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/i/-/i-0.3.6.tgz"; - sha1 = "d96c92732076f072711b6b10fd7d4f65ad8ee23d"; - }; - }; - "iconv-lite-0.4.24" = { - name = "iconv-lite"; - packageName = "iconv-lite"; - version = "0.4.24"; - src = fetchurl { - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; - }; - }; - "ieee754-1.1.8" = { - name = "ieee754"; - packageName = "ieee754"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.8.tgz"; - sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4"; - }; - }; - "ignore-walk-3.0.1" = { - name = "ignore-walk"; - packageName = "ignore-walk"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ignore-walk/-/ignore-walk-3.0.1.tgz"; - sha512 = "DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ=="; - }; - }; - "in-publish-2.0.0" = { - name = "in-publish"; - packageName = "in-publish"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz"; - sha1 = "e20ff5e3a2afc2690320b6dc552682a9c7fadf51"; - }; - }; - "indexof-0.0.1" = { - name = "indexof"; - packageName = "indexof"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; - sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; - }; - }; - "inflight-1.0.6" = { - name = "inflight"; - packageName = "inflight"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; - }; - }; - "inherits-2.0.3" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz"; - sha1 = "633c2c83e3da42a502f52466022480f4208261de"; - }; - }; - "inherits-2.0.4" = { - name = "inherits"; - packageName = "inherits"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; - }; - }; - "ini-1.3.5" = { - name = "ini"; - packageName = "ini"; - version = "1.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; - sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="; - }; - }; - "interpret-1.1.0" = { - name = "interpret"; - packageName = "interpret"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/interpret/-/interpret-1.1.0.tgz"; - sha1 = "7ed1b1410c6a0e0f78cf95d3b8440c63f78b8614"; - }; - }; - "invert-kv-1.0.0" = { - name = "invert-kv"; - packageName = "invert-kv"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; - sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; - }; - }; - "invert-kv-2.0.0" = { - name = "invert-kv"; - packageName = "invert-kv"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz"; - sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA=="; - }; - }; - "ipaddr.js-1.4.0" = { - name = "ipaddr.js"; - packageName = "ipaddr.js"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.4.0.tgz"; - sha1 = "296aca878a821816e5b85d0a285a99bcff4582f0"; - }; - }; - "ipaddr.js-1.9.0" = { - name = "ipaddr.js"; - packageName = "ipaddr.js"; - version = "1.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz"; - sha512 = "M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA=="; - }; - }; - "is-3.3.0" = { - name = "is"; - packageName = "is"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is/-/is-3.3.0.tgz"; - sha512 = "nW24QBoPcFGGHJGUwnfpI7Yc5CdqWNdsyHQszVE/z2pKHXzh7FZ5GWhJqSyaQ9wMkQnsTx+kAI8bHlCX4tKdbg=="; - }; - }; - "is-absolute-1.0.0" = { - name = "is-absolute"; - packageName = "is-absolute"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-absolute/-/is-absolute-1.0.0.tgz"; - sha512 = "dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA=="; - }; - }; - "is-accessor-descriptor-0.1.6" = { - name = "is-accessor-descriptor"; - packageName = "is-accessor-descriptor"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; - }; - }; - "is-accessor-descriptor-1.0.0" = { - name = "is-accessor-descriptor"; - packageName = "is-accessor-descriptor"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; - sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; - }; - }; - "is-arrayish-0.2.1" = { - name = "is-arrayish"; - packageName = "is-arrayish"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; - }; - }; - "is-buffer-1.1.6" = { - name = "is-buffer"; - packageName = "is-buffer"; - version = "1.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; - }; - }; - "is-data-descriptor-0.1.4" = { - name = "is-data-descriptor"; - packageName = "is-data-descriptor"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; - }; - }; - "is-data-descriptor-1.0.0" = { - name = "is-data-descriptor"; - packageName = "is-data-descriptor"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; - sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; - }; - }; - "is-descriptor-0.1.6" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "0.1.6"; - src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"; - sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; - }; - }; - "is-descriptor-1.0.2" = { - name = "is-descriptor"; - packageName = "is-descriptor"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"; - sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; - }; - }; - "is-expression-3.0.0" = { - name = "is-expression"; - packageName = "is-expression"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-expression/-/is-expression-3.0.0.tgz"; - sha1 = "39acaa6be7fd1f3471dc42c7416e61c24317ac9f"; - }; - }; - "is-extendable-0.1.1" = { - name = "is-extendable"; - packageName = "is-extendable"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; - sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; - }; - }; - "is-extendable-1.0.1" = { - name = "is-extendable"; - packageName = "is-extendable"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"; - sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; - }; - }; - "is-extglob-2.1.1" = { - name = "is-extglob"; - packageName = "is-extglob"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; - }; - }; - "is-fullwidth-code-point-1.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; - }; - }; - "is-fullwidth-code-point-2.0.0" = { - name = "is-fullwidth-code-point"; - packageName = "is-fullwidth-code-point"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; - }; - }; - "is-glob-3.1.0" = { - name = "is-glob"; - packageName = "is-glob"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; - sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; - }; - }; - "is-my-ip-valid-1.0.0" = { - name = "is-my-ip-valid"; - packageName = "is-my-ip-valid"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-my-ip-valid/-/is-my-ip-valid-1.0.0.tgz"; - sha512 = "gmh/eWXROncUzRnIa1Ubrt5b8ep/MGSnfAUI3aRp+sqTCs1tv1Isl8d8F6JmkN3dXKc3ehZMrtiPN9eL03NuaQ=="; - }; - }; - "is-my-json-valid-2.20.0" = { - name = "is-my-json-valid"; - packageName = "is-my-json-valid"; - version = "2.20.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.20.0.tgz"; - sha512 = "XTHBZSIIxNsIsZXg7XB5l8z/OBFosl1Wao4tXLpeC7eKU4Vm/kdop2azkPqULwnfGQjmeDIyey9g7afMMtdWAA=="; - }; - }; - "is-number-3.0.0" = { - name = "is-number"; - packageName = "is-number"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"; - sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; - }; - }; - "is-plain-object-2.0.4" = { - name = "is-plain-object"; - packageName = "is-plain-object"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; - sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; - }; - }; - "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-property-1.0.2" = { - name = "is-property"; - packageName = "is-property"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; - sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; - }; - }; - "is-regex-1.0.4" = { - name = "is-regex"; - packageName = "is-regex"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz"; - sha1 = "5517489b547091b0930e095654ced25ee97e9491"; - }; - }; - "is-relative-1.0.0" = { - name = "is-relative"; - packageName = "is-relative"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-relative/-/is-relative-1.0.0.tgz"; - sha512 = "Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA=="; - }; - }; - "is-stream-1.1.0" = { - name = "is-stream"; - packageName = "is-stream"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; - }; - }; - "is-typedarray-1.0.0" = { - name = "is-typedarray"; - packageName = "is-typedarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; - }; - }; - "is-unc-path-1.0.0" = { - name = "is-unc-path"; - packageName = "is-unc-path"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-unc-path/-/is-unc-path-1.0.0.tgz"; - sha512 = "mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ=="; - }; - }; - "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-windows-0.2.0" = { - name = "is-windows"; - packageName = "is-windows"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/is-windows/-/is-windows-0.2.0.tgz"; - sha1 = "de1aa6d63ea29dd248737b69f1ff8b8002d2108c"; - }; - }; - "is-windows-1.0.2" = { - name = "is-windows"; - packageName = "is-windows"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"; - sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; - }; - }; - "isarray-0.0.1" = { - name = "isarray"; - packageName = "isarray"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; - }; - }; - "isarray-1.0.0" = { - name = "isarray"; - packageName = "isarray"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; - }; - }; - "isarray-2.0.1" = { - name = "isarray"; - packageName = "isarray"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isarray/-/isarray-2.0.1.tgz"; - sha1 = "a37d94ed9cda2d59865c9f76fe596ee1f338741e"; - }; - }; - "isexe-2.0.0" = { - name = "isexe"; - packageName = "isexe"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; - }; - }; - "isobject-2.1.0" = { - name = "isobject"; - packageName = "isobject"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"; - sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; - }; - }; - "isobject-3.0.1" = { - name = "isobject"; - packageName = "isobject"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; - }; - }; - "isstream-0.1.2" = { - name = "isstream"; - packageName = "isstream"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; - sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; - }; - }; - "jmespath-0.15.0" = { - name = "jmespath"; - packageName = "jmespath"; - version = "0.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz"; - sha1 = "a3f222a9aae9f966f5d27c796510e28091764217"; - }; - }; - "jpeg-turbo-0.4.0" = { - name = "jpeg-turbo"; - packageName = "jpeg-turbo"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jpeg-turbo/-/jpeg-turbo-0.4.0.tgz"; - sha1 = "f6f9f099f9882bad84585c6b1004344d6fadb33c"; - }; - }; - "js-base64-2.5.1" = { - name = "js-base64"; - packageName = "js-base64"; - version = "2.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz"; - sha512 = "M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw=="; - }; - }; - "js-stringify-1.0.2" = { - name = "js-stringify"; - packageName = "js-stringify"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz"; - sha1 = "1736fddfd9724f28a3682adc6230ae7e4e9679db"; - }; - }; - "js-tokens-4.0.0" = { - name = "js-tokens"; - packageName = "js-tokens"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; - sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; - }; - }; - "js-yaml-3.13.1" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.13.1"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; - }; - }; - "js-yaml-3.2.7" = { - name = "js-yaml"; - packageName = "js-yaml"; - version = "3.2.7"; - src = fetchurl { - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.2.7.tgz"; - sha1 = "102790f265d986fe95a4d0f2a792e7a7bd886eec"; - }; - }; - "js2xmlparser-1.0.0" = { - name = "js2xmlparser"; - packageName = "js2xmlparser"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/js2xmlparser/-/js2xmlparser-1.0.0.tgz"; - sha1 = "5a170f2e8d6476ce45405e04823242513782fe30"; - }; - }; - "jsbn-0.1.1" = { - name = "jsbn"; - packageName = "jsbn"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz"; - sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; - }; - }; - "jsesc-2.5.2" = { - name = "jsesc"; - packageName = "jsesc"; - version = "2.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; - }; - }; - "json-edm-parser-0.1.2" = { - name = "json-edm-parser"; - packageName = "json-edm-parser"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/json-edm-parser/-/json-edm-parser-0.1.2.tgz"; - sha1 = "1e60b0fef1bc0af67bc0d146dfdde5486cd615b4"; - }; - }; - "json-refs-2.1.7" = { - name = "json-refs"; - packageName = "json-refs"; - version = "2.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/json-refs/-/json-refs-2.1.7.tgz"; - sha1 = "b9eb01fe29f5ea3e92878f15aea10ad38b5acf89"; - }; - }; - "json-schema-0.2.3" = { - name = "json-schema"; - packageName = "json-schema"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz"; - sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; - }; - }; - "json-schema-faker-0.2.16" = { - name = "json-schema-faker"; - packageName = "json-schema-faker"; - version = "0.2.16"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema-faker/-/json-schema-faker-0.2.16.tgz"; - sha1 = "51d3ca48955d8fe734f591d747b72453be5a78f2"; - }; - }; - "json-schema-traverse-0.4.1" = { - name = "json-schema-traverse"; - packageName = "json-schema-traverse"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"; - sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; - }; - }; - "json-stringify-safe-5.0.1" = { - name = "json-stringify-safe"; - packageName = "json-stringify-safe"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; - }; - }; - "json5-1.0.1" = { - name = "json5"; - packageName = "json5"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"; - sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; - }; - }; - "json5-2.1.0" = { - name = "json5"; - packageName = "json5"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz"; - sha512 = "8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ=="; - }; - }; - "jsonfile-4.0.0" = { - name = "jsonfile"; - packageName = "jsonfile"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; - }; - }; - "jsonlint-1.6.2" = { - name = "jsonlint"; - packageName = "jsonlint"; - version = "1.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonlint/-/jsonlint-1.6.2.tgz"; - sha1 = "5737045085f55eb455c68b1ff4ebc01bd50e8830"; - }; - }; - "jsonminify-0.4.1" = { - name = "jsonminify"; - packageName = "jsonminify"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonminify/-/jsonminify-0.4.1.tgz"; - sha1 = "805dafbb39395188cee9ab582c81ef959d7e710c"; - }; - }; - "jsonparse-1.2.0" = { - name = "jsonparse"; - packageName = "jsonparse"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz"; - sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd"; - }; - }; - "jsonpointer-4.0.1" = { - name = "jsonpointer"; - packageName = "jsonpointer"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz"; - sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; - }; - }; - "jspath-0.3.4" = { - name = "jspath"; - packageName = "jspath"; - version = "0.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/jspath/-/jspath-0.3.4.tgz"; - sha1 = "d89d3ed2e87434fe6cd004b242c912df96973524"; - }; - }; - "jsprim-1.4.1" = { - name = "jsprim"; - packageName = "jsprim"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz"; - sha1 = "313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"; - }; - }; - "jsrsasign-4.8.2" = { - name = "jsrsasign"; - packageName = "jsrsasign"; - version = "4.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jsrsasign/-/jsrsasign-4.8.2.tgz"; - sha1 = "bd0a7040d426d7598d6c742ec8f875d0e88644a9"; - }; - }; - "jstransformer-1.0.0" = { - name = "jstransformer"; - packageName = "jstransformer"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz"; - sha1 = "ed8bf0921e2f3f1ed4d5c1a44f68709ed24722c3"; - }; - }; - "jwa-1.4.1" = { - name = "jwa"; - packageName = "jwa"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/jwa/-/jwa-1.4.1.tgz"; - sha512 = "qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA=="; - }; - }; - "jws-3.2.2" = { - name = "jws"; - packageName = "jws"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/jws/-/jws-3.2.2.tgz"; - sha512 = "YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA=="; - }; - }; - "jwt-decode-2.2.0" = { - name = "jwt-decode"; - packageName = "jwt-decode"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz"; - sha1 = "7d86bd56679f58ce6a84704a657dd392bba81a79"; - }; - }; - "keygrip-1.0.3" = { - name = "keygrip"; - packageName = "keygrip"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/keygrip/-/keygrip-1.0.3.tgz"; - sha512 = "/PpesirAIfaklxUzp4Yb7xBper9MwP6hNRA6BGGUFCgbJ+BM5CKBtsoxinNXkLHAr+GXS1/lSlF2rP7cv5Fl+g=="; - }; - }; - "keypress-0.1.0" = { - name = "keypress"; - packageName = "keypress"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz"; - sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a"; - }; - }; - "keypress-0.2.1" = { - name = "keypress"; - packageName = "keypress"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz"; - sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77"; - }; - }; - "kind-of-3.2.2" = { - name = "kind-of"; - packageName = "kind-of"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; - }; - }; - "kind-of-4.0.0" = { - name = "kind-of"; - packageName = "kind-of"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"; - sha1 = "20813df3d712928b207378691a45066fae72dd57"; - }; - }; - "kind-of-5.1.0" = { - name = "kind-of"; - packageName = "kind-of"; - version = "5.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"; - sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; - }; - }; - "kind-of-6.0.2" = { - name = "kind-of"; - packageName = "kind-of"; - version = "6.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz"; - sha512 = "s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA=="; - }; - }; - "kuduscript-1.0.16" = { - name = "kuduscript"; - packageName = "kuduscript"; - version = "1.0.16"; - src = fetchurl { - url = "https://registry.npmjs.org/kuduscript/-/kuduscript-1.0.16.tgz"; - sha512 = "++ulra2RtdutmJhZZFohhF+kbccz2XdFTf23857x8X1M9Jfm54ZKY4kXPJKgPdMz6eTH1MBXWXh17RvGWxLNrw=="; - }; - }; - "lazy-cache-1.0.4" = { - name = "lazy-cache"; - packageName = "lazy-cache"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz"; - sha1 = "a1d78fc3a50474cb80845d3b3b6e1da49a446e8e"; - }; - }; - "lcid-1.0.0" = { - name = "lcid"; - packageName = "lcid"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; - sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; - }; - }; - "lcid-2.0.0" = { - name = "lcid"; - packageName = "lcid"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz"; - sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="; - }; - }; - "ldap-filter-0.2.2" = { - name = "ldap-filter"; - packageName = "ldap-filter"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ldap-filter/-/ldap-filter-0.2.2.tgz"; - sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; - }; - }; - "ldapjs-1.0.2" = { - name = "ldapjs"; - packageName = "ldapjs"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ldapjs/-/ldapjs-1.0.2.tgz"; - sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; - }; - }; - "liftoff-2.5.0" = { - name = "liftoff"; - packageName = "liftoff"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/liftoff/-/liftoff-2.5.0.tgz"; - sha1 = "2009291bb31cea861bbf10a7c15a28caf75c31ec"; - }; - }; - "load-json-file-1.1.0" = { - name = "load-json-file"; - packageName = "load-json-file"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; - sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; - }; - }; - "locate-path-3.0.0" = { - name = "locate-path"; - packageName = "locate-path"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; - }; - }; - "lodash-2.4.2" = { - name = "lodash"; - packageName = "lodash"; - version = "2.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; - sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e"; - }; - }; - "lodash-3.10.1" = { - name = "lodash"; - packageName = "lodash"; - version = "3.10.1"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; - sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; - }; - }; - "lodash-3.2.0" = { - name = "lodash"; - packageName = "lodash"; - version = "3.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz"; - sha1 = "4bf50a3243f9aeb0bac41a55d3d5990675a462fb"; - }; - }; - "lodash-4.16.6" = { - name = "lodash"; - packageName = "lodash"; - version = "4.16.6"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.16.6.tgz"; - sha1 = "d22c9ac660288f3843e16ba7d2b5d06cca27d777"; - }; - }; - "lodash-4.17.15" = { - name = "lodash"; - packageName = "lodash"; - version = "4.17.15"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; - sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; - }; - }; - "lodash.get-4.4.2" = { - name = "lodash.get"; - packageName = "lodash.get"; - version = "4.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; - sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; - }; - }; - "lodash.isequal-4.5.0" = { - name = "lodash.isequal"; - packageName = "lodash.isequal"; - version = "4.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz"; - sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; - }; - }; - "long-2.4.0" = { - name = "long"; - packageName = "long"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz"; - sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f"; - }; - }; - "longest-1.0.1" = { - name = "longest"; - packageName = "longest"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; - }; - }; - "longjohn-0.2.12" = { - name = "longjohn"; - packageName = "longjohn"; - version = "0.2.12"; - src = fetchurl { - url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.12.tgz"; - sha1 = "7ca7446b083655c377e7512213dc754d52a64a7e"; - }; - }; - "lru-cache-4.1.5" = { - name = "lru-cache"; - packageName = "lru-cache"; - version = "4.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; - }; - }; - "machine-10.4.0" = { - name = "machine"; - packageName = "machine"; - version = "10.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/machine/-/machine-10.4.0.tgz"; - sha1 = "9b562ce467821332828a377d190eb936b4e407b2"; - }; - }; - "machine-9.1.2" = { - name = "machine"; - packageName = "machine"; - version = "9.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/machine/-/machine-9.1.2.tgz"; - sha1 = "84bf8fb7766a96aa65aa96d66e9509eb6a05a834"; - }; - }; - "machinepack-http-2.4.0" = { - name = "machinepack-http"; - packageName = "machinepack-http"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/machinepack-http/-/machinepack-http-2.4.0.tgz"; - sha1 = "0a785c17dc6b9c1b9ac40881beefae8ae74855e9"; - }; - }; - "machinepack-urls-4.1.0" = { - name = "machinepack-urls"; - packageName = "machinepack-urls"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/machinepack-urls/-/machinepack-urls-4.1.0.tgz"; - sha1 = "d25e32e97c3c2cb89568ba8c98d229d5c305e391"; - }; - }; - "make-iterator-1.0.1" = { - name = "make-iterator"; - packageName = "make-iterator"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/make-iterator/-/make-iterator-1.0.1.tgz"; - sha512 = "pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw=="; - }; - }; - "map-age-cleaner-0.1.3" = { - name = "map-age-cleaner"; - packageName = "map-age-cleaner"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; - sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w=="; - }; - }; - "map-cache-0.2.2" = { - name = "map-cache"; - packageName = "map-cache"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; - }; - }; - "map-stream-0.1.0" = { - name = "map-stream"; - packageName = "map-stream"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; - sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194"; - }; - }; - "map-visit-1.0.0" = { - name = "map-visit"; - packageName = "map-visit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; - sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; - }; - }; - "markdown-serve-0.3.3" = { - name = "markdown-serve"; - packageName = "markdown-serve"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/markdown-serve/-/markdown-serve-0.3.3.tgz"; - sha1 = "02328f5b2c60fe0767cd73ab9048861f33196c1b"; - }; - }; - "marked-0.3.19" = { - name = "marked"; - packageName = "marked"; - version = "0.3.19"; - src = fetchurl { - url = "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz"; - sha512 = "ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg=="; - }; - }; - "matcher-collection-1.1.2" = { - name = "matcher-collection"; - packageName = "matcher-collection"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/matcher-collection/-/matcher-collection-1.1.2.tgz"; - sha512 = "YQ/teqaOIIfUHedRam08PB3NK7Mjct6BvzRnJmpGDm8uFXpNr1sbY4yuflI5JcEs6COpYA0FpRQhSDBf1tT95g=="; - }; - }; - "md5.js-1.3.4" = { - name = "md5.js"; - packageName = "md5.js"; - version = "1.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/md5.js/-/md5.js-1.3.4.tgz"; - sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; - }; - }; - "media-typer-0.3.0" = { - name = "media-typer"; - packageName = "media-typer"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; - sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; - }; - }; - "mem-4.3.0" = { - name = "mem"; - packageName = "mem"; - version = "4.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz"; - sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w=="; - }; - }; - "merge-descriptors-1.0.1" = { - name = "merge-descriptors"; - packageName = "merge-descriptors"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; - sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; - }; - }; - "methods-1.1.2" = { - name = "methods"; - packageName = "methods"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; - sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; - }; - }; - "micromatch-3.1.10" = { - name = "micromatch"; - packageName = "micromatch"; - version = "3.1.10"; - src = fetchurl { - url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"; - sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; - }; - }; - "mime-1.6.0" = { - name = "mime"; - packageName = "mime"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz"; - sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; - }; - }; - "mime-db-1.40.0" = { - name = "mime-db"; - packageName = "mime-db"; - version = "1.40.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz"; - sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="; - }; - }; - "mime-types-2.1.24" = { - name = "mime-types"; - packageName = "mime-types"; - version = "2.1.24"; - src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz"; - sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; - }; - }; - "mimic-fn-2.1.0" = { - name = "mimic-fn"; - packageName = "mimic-fn"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"; - sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; - }; - }; - "minicap-prebuilt-2.3.0" = { - name = "minicap-prebuilt"; - packageName = "minicap-prebuilt"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minicap-prebuilt/-/minicap-prebuilt-2.3.0.tgz"; - sha512 = "LfHUYIA047rrqIZEn0gwbqbzarU5bmZ8yZ9SizeoiPwVq5cemE3foJTJZ3pCktUq/IPkKNGghFHJk1O8149mOA=="; - }; - }; - "minimatch-3.0.4" = { - name = "minimatch"; - packageName = "minimatch"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; - }; - }; - "minimist-0.0.10" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; - sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; - }; - }; - "minimist-0.0.8" = { - name = "minimist"; - packageName = "minimist"; - version = "0.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; - }; - }; - "minimist-1.2.0" = { - name = "minimist"; - packageName = "minimist"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; - }; - }; - "minipass-2.3.5" = { - name = "minipass"; - packageName = "minipass"; - version = "2.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/minipass/-/minipass-2.3.5.tgz"; - sha512 = "Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA=="; - }; - }; - "minitouch-prebuilt-1.2.0" = { - name = "minitouch-prebuilt"; - packageName = "minitouch-prebuilt"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/minitouch-prebuilt/-/minitouch-prebuilt-1.2.0.tgz"; - sha512 = "YBTCTK0kPQIry0dJUqnj+OKw7qk1BDk4JnOH55ujaL4vtf9f3fRsHtD+zz899SKwT2t319HrrfBNwMLx6h2Vtg=="; - }; - }; - "minizlib-1.2.1" = { - name = "minizlib"; - packageName = "minizlib"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/minizlib/-/minizlib-1.2.1.tgz"; - sha512 = "7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA=="; - }; - }; - "mixin-deep-1.3.2" = { - name = "mixin-deep"; - packageName = "mixin-deep"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"; - sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="; - }; - }; - "mkdirp-0.5.1" = { - name = "mkdirp"; - packageName = "mkdirp"; - version = "0.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; - }; - }; - "moment-2.20.1" = { - name = "moment"; - packageName = "moment"; - version = "2.20.1"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"; - sha512 = "Yh9y73JRljxW5QxN08Fner68eFLxM5ynNOAw2LbIB1YAGeQzZT8QFSUvkAz609Zf+IHhhaUxqZK8dG3W/+HEvg=="; - }; - }; - "moment-2.22.2" = { - name = "moment"; - packageName = "moment"; - version = "2.22.2"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz"; - sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66"; - }; - }; - "moment-2.24.0" = { - name = "moment"; - packageName = "moment"; - version = "2.24.0"; - src = fetchurl { - url = "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz"; - sha512 = "bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg=="; - }; - }; - "ms-2.0.0" = { - name = "ms"; - packageName = "ms"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; - }; - }; - "ms-2.1.1" = { - name = "ms"; - packageName = "ms"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; - sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; - }; - }; - "ms-2.1.2" = { - name = "ms"; - packageName = "ms"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; - }; - }; - "ms-rest-1.15.7" = { - name = "ms-rest"; - packageName = "ms-rest"; - version = "1.15.7"; - src = fetchurl { - url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz"; - sha1 = "400515e05b1924889cb61a1ec6054290a68e1207"; - }; - }; - "ms-rest-2.5.3" = { - name = "ms-rest"; - packageName = "ms-rest"; - version = "2.5.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ms-rest/-/ms-rest-2.5.3.tgz"; - sha512 = "p0CnzrTzEkS8UTEwgCqT2O5YVK9E8KGBBlJVm3hFtMZvf0dmncKYXWFPyUa4PAsfBL7h4jfu39tOIFTu6exntg=="; - }; - }; - "ms-rest-azure-1.15.7" = { - name = "ms-rest-azure"; - packageName = "ms-rest-azure"; - version = "1.15.7"; - src = fetchurl { - url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.15.7.tgz"; - sha1 = "8bce09f053b1565dbaa8bd022ca40155c35b0fde"; - }; - }; - "ms-rest-azure-2.6.0" = { - name = "ms-rest-azure"; - packageName = "ms-rest-azure"; - version = "2.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-2.6.0.tgz"; - sha512 = "J6386a9krZ4VtU7CRt+Ypgo9RGf8+d3gjMBkH7zbkM4zzkhbbMOYiPRaZ+bHZcfihkKLlktTgA6rjshTjF329A=="; - }; - }; - "multer-1.4.2" = { - name = "multer"; - packageName = "multer"; - version = "1.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/multer/-/multer-1.4.2.tgz"; - sha512 = "xY8pX7V+ybyUpbYMxtjM9KAiD9ixtg5/JkeKUTD6xilfDv0vzzOFcCp4Ljb1UU3tSOM3VTZtKo63OmzOrGi3Cg=="; - }; - }; - "mustache-2.3.2" = { - name = "mustache"; - packageName = "mustache"; - version = "2.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz"; - sha512 = "KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ=="; - }; - }; - "mute-stream-0.0.8" = { - name = "mute-stream"; - packageName = "mute-stream"; - version = "0.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"; - sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; - }; - }; - "mv-2.1.1" = { - name = "mv"; - packageName = "mv"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; - sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; - }; - }; - "my-local-ip-1.0.0" = { - name = "my-local-ip"; - packageName = "my-local-ip"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/my-local-ip/-/my-local-ip-1.0.0.tgz"; - sha1 = "37585555a4ff1985309edac7c2a045a466be6c32"; - }; - }; - "nan-2.14.0" = { - name = "nan"; - packageName = "nan"; - version = "2.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz"; - sha512 = "INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg=="; - }; - }; - "nan-2.3.5" = { - name = "nan"; - packageName = "nan"; - version = "2.3.5"; - src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.3.5.tgz"; - sha1 = "822a0dc266290ce4cd3a12282ca3e7e364668a08"; - }; - }; - "nan-2.4.0" = { - name = "nan"; - packageName = "nan"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/nan/-/nan-2.4.0.tgz"; - sha1 = "fb3c59d45fe4effe215f0b890f8adf6eb32d2232"; - }; - }; - "nanomatch-1.2.13" = { - name = "nanomatch"; - packageName = "nanomatch"; - version = "1.2.13"; - src = fetchurl { - url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"; - sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; - }; - }; - "native-promise-only-0.8.1" = { - name = "native-promise-only"; - packageName = "native-promise-only"; - version = "0.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz"; - sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11"; - }; - }; - "ncp-0.4.2" = { - name = "ncp"; - packageName = "ncp"; - version = "0.4.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; - sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; - }; - }; - "ncp-2.0.0" = { - name = "ncp"; - packageName = "ncp"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; - sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; - }; - }; - "needle-1.6.0" = { - name = "needle"; - packageName = "needle"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-1.6.0.tgz"; - sha1 = "f52a5858972121618e002f8e6384cadac22d624f"; - }; - }; - "needle-2.4.0" = { - name = "needle"; - packageName = "needle"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/needle/-/needle-2.4.0.tgz"; - sha512 = "4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg=="; - }; - }; - "negotiator-0.6.2" = { - name = "negotiator"; - packageName = "negotiator"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; - }; - }; - "nice-try-1.0.5" = { - name = "nice-try"; - packageName = "nice-try"; - version = "1.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"; - sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; - }; - }; - "node-appc-0.2.49" = { - name = "node-appc"; - packageName = "node-appc"; - version = "0.2.49"; - src = fetchurl { - url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.49.tgz"; - sha512 = "PldEN7CgEy7ekSZyomgpajLX7STCZPDJI6rGy7FCbWi7ZJgTt9/C3omCxPkIKVjtwcXzXoSA31zUWUnBzTkEUg=="; - }; - }; - "node-forge-0.2.24" = { - name = "node-forge"; - packageName = "node-forge"; - version = "0.2.24"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.2.24.tgz"; - sha1 = "fa6f846f42fa93f63a0a30c9fbff7b4e130e0858"; - }; - }; - "node-forge-0.6.23" = { - name = "node-forge"; - packageName = "node-forge"; - version = "0.6.23"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.23.tgz"; - sha1 = "f03cf65ebd5d4d9dd2f7becb57ceaf78ed94a2bf"; - }; - }; - "node-forge-0.7.6" = { - name = "node-forge"; - packageName = "node-forge"; - version = "0.7.6"; - src = fetchurl { - url = "https://registry.npmjs.org/node-forge/-/node-forge-0.7.6.tgz"; - sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw=="; - }; - }; - "node-uuid-1.4.8" = { - name = "node-uuid"; - packageName = "node-uuid"; - version = "1.4.8"; - src = fetchurl { - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; - sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; - }; - }; - "node.extend-2.0.0" = { - name = "node.extend"; - packageName = "node.extend"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node.extend/-/node.extend-2.0.0.tgz"; - sha1 = "7525a2875677ea534784a5e10ac78956139614df"; - }; - }; - "nomnom-1.8.1" = { - name = "nomnom"; - packageName = "nomnom"; - version = "1.8.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nomnom/-/nomnom-1.8.1.tgz"; - sha1 = "2151f722472ba79e50a76fc125bb8c8f2e4dc2a7"; - }; - }; - "nopt-3.0.6" = { - name = "nopt"; - packageName = "nopt"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; - sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; - }; - }; - "nopt-4.0.1" = { - name = "nopt"; - packageName = "nopt"; - version = "4.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz"; - sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d"; - }; - }; - "normalize-package-data-2.5.0" = { - name = "normalize-package-data"; - packageName = "normalize-package-data"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; - sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; - }; - }; - "npm-bundled-1.0.6" = { - name = "npm-bundled"; - packageName = "npm-bundled"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-bundled/-/npm-bundled-1.0.6.tgz"; - sha512 = "8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g=="; - }; - }; - "npm-packlist-1.4.4" = { - name = "npm-packlist"; - packageName = "npm-packlist"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-packlist/-/npm-packlist-1.4.4.tgz"; - sha512 = "zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw=="; - }; - }; - "npm-run-path-2.0.2" = { - name = "npm-run-path"; - packageName = "npm-run-path"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; - }; - }; - "npmlog-4.1.2" = { - name = "npmlog"; - packageName = "npmlog"; - version = "4.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz"; - sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; - }; - }; - "number-is-nan-1.0.1" = { - name = "number-is-nan"; - packageName = "number-is-nan"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; - sha1 = "097b602b53422a522c1afb8790318336941a011d"; - }; - }; - "oauth-0.9.15" = { - name = "oauth"; - packageName = "oauth"; - version = "0.9.15"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth/-/oauth-0.9.15.tgz"; - sha1 = "bd1fefaf686c96b75475aed5196412ff60cfb9c1"; - }; - }; - "oauth-sign-0.8.2" = { - name = "oauth-sign"; - packageName = "oauth-sign"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.2.tgz"; - sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43"; - }; - }; - "oauth-sign-0.9.0" = { - name = "oauth-sign"; - packageName = "oauth-sign"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz"; - sha512 = "fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="; - }; - }; - "object-assign-4.1.1" = { - name = "object-assign"; - packageName = "object-assign"; - version = "4.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"; - sha1 = "2109adc7965887cfc05cbbd442cac8bfbb360863"; - }; - }; - "object-component-0.0.3" = { - name = "object-component"; - packageName = "object-component"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; - sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; - }; - }; - "object-copy-0.1.0" = { - name = "object-copy"; - packageName = "object-copy"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; - }; - }; - "object-hash-0.3.0" = { - name = "object-hash"; - packageName = "object-hash"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object-hash/-/object-hash-0.3.0.tgz"; - sha1 = "548208e43b36a44e4da30bad6c56ac53b885e744"; - }; - }; - "object-visit-1.0.1" = { - name = "object-visit"; - packageName = "object-visit"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"; - sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; - }; - }; - "object.defaults-1.1.0" = { - name = "object.defaults"; - packageName = "object.defaults"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz"; - sha1 = "3a7f868334b407dea06da16d88d5cd29e435fecf"; - }; - }; - "object.map-1.0.1" = { - name = "object.map"; - packageName = "object.map"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz"; - sha1 = "cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37"; - }; - }; - "object.pick-1.3.0" = { - name = "object.pick"; - packageName = "object.pick"; - version = "1.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; - sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; - }; - }; - "omelette-0.3.2" = { - name = "omelette"; - packageName = "omelette"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/omelette/-/omelette-0.3.2.tgz"; - sha1 = "68c1b3c57ced778b4e67d8637d2559b2c1b3ec26"; - }; - }; - "on-finished-2.3.0" = { - name = "on-finished"; - packageName = "on-finished"; - version = "2.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; - sha1 = "20f1336481b083cd75337992a16971aa2d906947"; - }; - }; - "on-headers-1.0.2" = { - name = "on-headers"; - packageName = "on-headers"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz"; - sha512 = "pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA=="; - }; - }; - "once-1.4.0" = { - name = "once"; - packageName = "once"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; - }; - }; - "openid-2.0.6" = { - name = "openid"; - packageName = "openid"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/openid/-/openid-2.0.6.tgz"; - sha1 = "707375e59ab9f73025899727679b20328171c9aa"; - }; - }; - "openssl-wrapper-0.3.4" = { - name = "openssl-wrapper"; - packageName = "openssl-wrapper"; - version = "0.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz"; - sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07"; - }; - }; - "optimist-0.6.1" = { - name = "optimist"; - packageName = "optimist"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz"; - sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; - }; - }; - "options-0.0.6" = { - name = "options"; - packageName = "options"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz"; - sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f"; - }; - }; - "optjs-3.2.2" = { - name = "optjs"; - packageName = "optjs"; - version = "3.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz"; - sha1 = "69a6ce89c442a44403141ad2f9b370bd5bb6f4ee"; - }; - }; - "os-homedir-1.0.2" = { - name = "os-homedir"; - packageName = "os-homedir"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz"; - sha1 = "ffbc4988336e0e833de0c168c7ef152121aa7fb3"; - }; - }; - "os-locale-1.4.0" = { - name = "os-locale"; - packageName = "os-locale"; - version = "1.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; - sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9"; - }; - }; - "os-locale-3.1.0" = { - name = "os-locale"; - packageName = "os-locale"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz"; - sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q=="; - }; - }; - "os-tmpdir-1.0.2" = { - name = "os-tmpdir"; - packageName = "os-tmpdir"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; - }; - }; - "osenv-0.1.5" = { - name = "osenv"; - packageName = "osenv"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz"; - sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; - }; - }; - "p-defer-1.0.0" = { - name = "p-defer"; - packageName = "p-defer"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz"; - sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; - }; - }; - "p-finally-1.0.0" = { - name = "p-finally"; - packageName = "p-finally"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; - sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; - }; - }; - "p-is-promise-2.1.0" = { - name = "p-is-promise"; - packageName = "p-is-promise"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz"; - sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg=="; - }; - }; - "p-limit-2.2.0" = { - name = "p-limit"; - packageName = "p-limit"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz"; - sha512 = "pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ=="; - }; - }; - "p-locate-3.0.0" = { - name = "p-locate"; - packageName = "p-locate"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; - }; - }; - "p-try-2.2.0" = { - name = "p-try"; - packageName = "p-try"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; - }; - }; - "parse-filepath-1.0.2" = { - name = "parse-filepath"; - packageName = "parse-filepath"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz"; - sha1 = "a632127f53aaf3d15876f5872f3ffac763d6c891"; - }; - }; - "parse-json-2.2.0" = { - name = "parse-json"; - packageName = "parse-json"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; - }; - }; - "parse-passwd-1.0.0" = { - name = "parse-passwd"; - packageName = "parse-passwd"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; - sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; - }; - }; - "parseqs-0.0.5" = { - name = "parseqs"; - packageName = "parseqs"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz"; - sha1 = "d5208a3738e46766e291ba2ea173684921a8b89d"; - }; - }; - "parseuri-0.0.5" = { - name = "parseuri"; - packageName = "parseuri"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz"; - sha1 = "80204a50d4dbb779bfdc6ebe2778d90e4bce320a"; - }; - }; - "parseurl-1.3.3" = { - name = "parseurl"; - packageName = "parseurl"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz"; - sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="; - }; - }; - "pascalcase-0.1.1" = { - name = "pascalcase"; - packageName = "pascalcase"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; - }; - }; - "passport-0.3.2" = { - name = "passport"; - packageName = "passport"; - version = "0.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz"; - sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102"; - }; - }; - "passport-oauth2-1.5.0" = { - name = "passport-oauth2"; - packageName = "passport-oauth2"; - version = "1.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.5.0.tgz"; - sha512 = "kqBt6vR/5VlCK8iCx1/KpY42kQ+NEHZwsSyt4Y6STiNjU+wWICG1i8ucc1FapXDGO15C5O5VZz7+7vRzrDPXXQ=="; - }; - }; - "passport-saml-0.15.0" = { - name = "passport-saml"; - packageName = "passport-saml"; - version = "0.15.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-saml/-/passport-saml-0.15.0.tgz"; - sha1 = "7d45c07baaf80d8e2cf898367132a5e4c0535cad"; - }; - }; - "passport-strategy-1.0.0" = { - name = "passport-strategy"; - packageName = "passport-strategy"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"; - sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4"; - }; - }; - "path-exists-2.1.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; - sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; - }; - }; - "path-exists-3.0.0" = { - name = "path-exists"; - packageName = "path-exists"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; - }; - }; - "path-is-absolute-1.0.1" = { - name = "path-is-absolute"; - packageName = "path-is-absolute"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; - }; - }; - "path-key-2.0.1" = { - name = "path-key"; - packageName = "path-key"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; - }; - }; - "path-loader-1.0.10" = { - name = "path-loader"; - packageName = "path-loader"; - version = "1.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/path-loader/-/path-loader-1.0.10.tgz"; - sha512 = "CMP0v6S6z8PHeJ6NFVyVJm6WyJjIwFvyz2b0n2/4bKdS/0uZa/9sKUlYZzubrn3zuDRU0zIuEDX9DZYQ2ZI8TA=="; - }; - }; - "path-parse-1.0.6" = { - name = "path-parse"; - packageName = "path-parse"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz"; - sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="; - }; - }; - "path-root-0.1.1" = { - name = "path-root"; - packageName = "path-root"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz"; - sha1 = "9a4a6814cac1c0cd73360a95f32083c8ea4745b7"; - }; - }; - "path-root-regex-0.1.2" = { - name = "path-root-regex"; - packageName = "path-root-regex"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz"; - sha1 = "bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d"; - }; - }; - "path-to-regexp-0.1.7" = { - name = "path-to-regexp"; - packageName = "path-to-regexp"; - version = "0.1.7"; - src = fetchurl { - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; - sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; - }; - }; - "path-to-regexp-1.7.0" = { - name = "path-to-regexp"; - packageName = "path-to-regexp"; - version = "1.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz"; - sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d"; - }; - }; - "path-type-1.1.0" = { - name = "path-type"; - packageName = "path-type"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; - sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; - }; - }; - "pause-0.0.1" = { - name = "pause"; - packageName = "pause"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; - sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; - }; - }; - "pause-stream-0.0.11" = { - name = "pause-stream"; - packageName = "pause-stream"; - version = "0.0.11"; - src = fetchurl { - url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; - 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"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz"; - 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"; - }; - }; - "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"; - }; - }; - "pipeworks-1.3.1" = { - name = "pipeworks"; - packageName = "pipeworks"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pipeworks/-/pipeworks-1.3.1.tgz"; - sha1 = "f8436f8565ed1d97bf3a80632a5397bfd353385f"; - }; - }; - "pkginfo-0.3.1" = { - name = "pkginfo"; - packageName = "pkginfo"; - version = "0.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz"; - sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21"; - }; - }; - "pkginfo-0.4.1" = { - name = "pkginfo"; - packageName = "pkginfo"; - version = "0.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.1.tgz"; - sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff"; - }; - }; - "please-update-dependencies-2.0.0" = { - name = "please-update-dependencies"; - packageName = "please-update-dependencies"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/please-update-dependencies/-/please-update-dependencies-2.0.0.tgz"; - sha1 = "9a99433f3789d1e2757c04e3803395b6fa55a348"; - }; - }; - "posix-character-classes-0.1.1" = { - name = "posix-character-classes"; - packageName = "posix-character-classes"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; - }; - }; - "precond-0.2.3" = { - name = "precond"; - packageName = "precond"; - version = "0.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; - sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; - }; - }; - "process-nextick-args-1.0.7" = { - name = "process-nextick-args"; - packageName = "process-nextick-args"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz"; - sha1 = "150e20b756590ad3f91093f25a4f2ad8bff30ba3"; - }; - }; - "process-nextick-args-2.0.1" = { - name = "process-nextick-args"; - packageName = "process-nextick-args"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; - }; - }; - "progress-1.1.8" = { - name = "progress"; - packageName = "progress"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; - sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; - }; - }; - "promise-7.3.1" = { - name = "promise"; - packageName = "promise"; - version = "7.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz"; - sha512 = "nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg=="; - }; - }; - "prompt-0.2.14" = { - name = "prompt"; - packageName = "prompt"; - version = "0.2.14"; - src = fetchurl { - url = "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz"; - sha1 = "57754f64f543fd7b0845707c818ece618f05ffdc"; - }; - }; - "protobufjs-3.8.2" = { - name = "protobufjs"; - packageName = "protobufjs"; - version = "3.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/protobufjs/-/protobufjs-3.8.2.tgz"; - sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17"; - }; - }; - "proxy-addr-1.1.5" = { - name = "proxy-addr"; - packageName = "proxy-addr"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.5.tgz"; - sha1 = "71c0ee3b102de3f202f3b64f608d173fcba1a918"; - }; - }; - "proxy-addr-2.0.5" = { - name = "proxy-addr"; - packageName = "proxy-addr"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz"; - sha512 = "t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ=="; - }; - }; - "pseudomap-1.0.2" = { - name = "pseudomap"; - packageName = "pseudomap"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; - }; - }; - "psl-1.2.0" = { - name = "psl"; - packageName = "psl"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/psl/-/psl-1.2.0.tgz"; - sha512 = "GEn74ZffufCmkDDLNcl3uuyF/aSD6exEyh1v/ZSdAomB82t6G9hzJVRx0jBmLDW+VfZqks3aScmMw9DszwUalA=="; - }; - }; - "pug-2.0.4" = { - name = "pug"; - packageName = "pug"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/pug/-/pug-2.0.4.tgz"; - sha512 = "XhoaDlvi6NIzL49nu094R2NA6P37ijtgMDuWE+ofekDChvfKnzFal60bhSdiy8y2PBO6fmz3oMEIcfpBVRUdvw=="; - }; - }; - "pug-attrs-2.0.4" = { - name = "pug-attrs"; - packageName = "pug-attrs"; - version = "2.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-attrs/-/pug-attrs-2.0.4.tgz"; - sha512 = "TaZ4Z2TWUPDJcV3wjU3RtUXMrd3kM4Wzjbe3EWnSsZPsJ3LDI0F3yCnf2/W7PPFF+edUFQ0HgDL1IoxSz5K8EQ=="; - }; - }; - "pug-code-gen-2.0.2" = { - name = "pug-code-gen"; - packageName = "pug-code-gen"; - version = "2.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-2.0.2.tgz"; - sha512 = "kROFWv/AHx/9CRgoGJeRSm+4mLWchbgpRzTEn8XCiwwOy6Vh0gAClS8Vh5TEJ9DBjaP8wCjS3J6HKsEsYdvaCw=="; - }; - }; - "pug-error-1.3.3" = { - name = "pug-error"; - packageName = "pug-error"; - version = "1.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-error/-/pug-error-1.3.3.tgz"; - sha512 = "qE3YhESP2mRAWMFJgKdtT5D7ckThRScXRwkfo+Erqga7dyJdY3ZquspprMCj/9sJ2ijm5hXFWQE/A3l4poMWiQ=="; - }; - }; - "pug-filters-3.1.1" = { - name = "pug-filters"; - packageName = "pug-filters"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-filters/-/pug-filters-3.1.1.tgz"; - sha512 = "lFfjNyGEyVWC4BwX0WyvkoWLapI5xHSM3xZJFUhx4JM4XyyRdO8Aucc6pCygnqV2uSgJFaJWW3Ft1wCWSoQkQg=="; - }; - }; - "pug-lexer-4.1.0" = { - name = "pug-lexer"; - packageName = "pug-lexer"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-lexer/-/pug-lexer-4.1.0.tgz"; - sha512 = "i55yzEBtjm0mlplW4LoANq7k3S8gDdfC6+LThGEvsK4FuobcKfDAwt6V4jKPH9RtiE3a2Akfg5UpafZ1OksaPA=="; - }; - }; - "pug-linker-3.0.6" = { - name = "pug-linker"; - packageName = "pug-linker"; - version = "3.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-linker/-/pug-linker-3.0.6.tgz"; - sha512 = "bagfuHttfQOpANGy1Y6NJ+0mNb7dD2MswFG2ZKj22s8g0wVsojpRlqveEQHmgXXcfROB2RT6oqbPYr9EN2ZWzg=="; - }; - }; - "pug-load-2.0.12" = { - name = "pug-load"; - packageName = "pug-load"; - version = "2.0.12"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-load/-/pug-load-2.0.12.tgz"; - sha512 = "UqpgGpyyXRYgJs/X60sE6SIf8UBsmcHYKNaOccyVLEuT6OPBIMo6xMPhoJnqtB3Q3BbO4Z3Bjz5qDsUWh4rXsg=="; - }; - }; - "pug-parser-5.0.1" = { - name = "pug-parser"; - packageName = "pug-parser"; - version = "5.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-parser/-/pug-parser-5.0.1.tgz"; - sha512 = "nGHqK+w07p5/PsPIyzkTQfzlYfuqoiGjaoqHv1LjOv2ZLXmGX1O+4Vcvps+P4LhxZ3drYSljjq4b+Naid126wA=="; - }; - }; - "pug-runtime-2.0.5" = { - name = "pug-runtime"; - packageName = "pug-runtime"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-runtime/-/pug-runtime-2.0.5.tgz"; - sha512 = "P+rXKn9un4fQY77wtpcuFyvFaBww7/91f3jHa154qU26qFAnOe6SW1CbIDcxiG5lLK9HazYrMCCuDvNgDQNptw=="; - }; - }; - "pug-strip-comments-1.0.4" = { - name = "pug-strip-comments"; - packageName = "pug-strip-comments"; - version = "1.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-1.0.4.tgz"; - sha512 = "i5j/9CS4yFhSxHp5iKPHwigaig/VV9g+FgReLJWWHEHbvKsbqL0oP/K5ubuLco6Wu3Kan5p7u7qk8A4oLLh6vw=="; - }; - }; - "pug-walk-1.1.8" = { - name = "pug-walk"; - packageName = "pug-walk"; - version = "1.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/pug-walk/-/pug-walk-1.1.8.tgz"; - sha512 = "GMu3M5nUL3fju4/egXwZO0XLi6fW/K3T3VTgFQ14GxNi8btlxgT5qZL//JwZFm/2Fa64J/PNS8AZeys3wiMkVA=="; - }; - }; - "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 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; - }; - }; - "punycode-1.3.2" = { - name = "punycode"; - packageName = "punycode"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; - sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; - }; - }; - "punycode-1.4.1" = { - name = "punycode"; - packageName = "punycode"; - version = "1.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; - sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; - }; - }; - "punycode-2.1.1" = { - name = "punycode"; - packageName = "punycode"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; - }; - }; - "q-1.1.2" = { - name = "q"; - packageName = "q"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/q/-/q-1.1.2.tgz"; - sha1 = "6357e291206701d99f197ab84e57e8ad196f2a89"; - }; - }; - "qs-6.2.3" = { - name = "qs"; - packageName = "qs"; - version = "6.2.3"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz"; - sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe"; - }; - }; - "qs-6.3.2" = { - name = "qs"; - packageName = "qs"; - version = "6.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz"; - sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c"; - }; - }; - "qs-6.5.2" = { - name = "qs"; - packageName = "qs"; - version = "6.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; - }; - }; - "qs-6.7.0" = { - name = "qs"; - packageName = "qs"; - version = "6.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz"; - sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; - }; - }; - "querystring-0.2.0" = { - name = "querystring"; - packageName = "querystring"; - version = "0.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; - sha1 = "b209849203bb25df820da756e747005878521620"; - }; - }; - "randexp-0.4.9" = { - name = "randexp"; - packageName = "randexp"; - version = "0.4.9"; - src = fetchurl { - url = "https://registry.npmjs.org/randexp/-/randexp-0.4.9.tgz"; - sha512 = "maAX1cnBkzIZ89O4tSQUOF098xjGMC8N+9vuY/WfHwg87THw6odD2Br35donlj5e6KnB1SB0QBHhTQhhDHuTPQ=="; - }; - }; - "random-bytes-1.0.0" = { - name = "random-bytes"; - packageName = "random-bytes"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; - sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; - }; - }; - "range-parser-1.2.1" = { - name = "range-parser"; - packageName = "range-parser"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz"; - sha512 = "Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="; - }; - }; - "raw-body-2.4.0" = { - name = "raw-body"; - packageName = "raw-body"; - version = "2.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz"; - sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; - }; - }; - "rc-1.2.8" = { - name = "rc"; - packageName = "rc"; - version = "1.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; - sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; - }; - }; - "read-1.0.7" = { - name = "read"; - packageName = "read"; - version = "1.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz"; - sha1 = "b3da19bd052431a97671d44a42634adf710b40c4"; - }; - }; - "read-pkg-1.1.0" = { - name = "read-pkg"; - packageName = "read-pkg"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; - sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; - }; - }; - "read-pkg-up-1.0.1" = { - name = "read-pkg-up"; - packageName = "read-pkg-up"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; - sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; - }; - }; - "readable-stream-1.0.34" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.0.34"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; - }; - }; - "readable-stream-1.1.14" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "1.1.14"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz"; - sha1 = "7cf4c54ef648e3813084c636dd2079e166c081d9"; - }; - }; - "readable-stream-2.0.6" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; - sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; - }; - }; - "readable-stream-2.3.6" = { - name = "readable-stream"; - packageName = "readable-stream"; - version = "2.3.6"; - src = fetchurl { - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz"; - sha512 = "tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw=="; - }; - }; - "rechoir-0.6.2" = { - name = "rechoir"; - packageName = "rechoir"; - version = "0.6.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; - sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; - }; - }; - "regenerator-runtime-0.11.1" = { - name = "regenerator-runtime"; - packageName = "regenerator-runtime"; - version = "0.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz"; - sha512 = "MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg=="; - }; - }; - "regex-not-1.0.2" = { - name = "regex-not"; - packageName = "regex-not"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"; - sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; - }; - }; - "repeat-element-1.1.3" = { - name = "repeat-element"; - packageName = "repeat-element"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz"; - sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g=="; - }; - }; - "repeat-string-1.6.1" = { - name = "repeat-string"; - packageName = "repeat-string"; - version = "1.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; - }; - }; - "request-2.74.0" = { - name = "request"; - packageName = "request"; - version = "2.74.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.74.0.tgz"; - sha1 = "7693ca768bbb0ea5c8ce08c084a45efa05b892ab"; - }; - }; - "request-2.76.0" = { - name = "request"; - packageName = "request"; - version = "2.76.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.76.0.tgz"; - sha1 = "be44505afef70360a0436955106be3945d95560e"; - }; - }; - "request-2.88.0" = { - name = "request"; - packageName = "request"; - version = "2.88.0"; - src = fetchurl { - url = "https://registry.npmjs.org/request/-/request-2.88.0.tgz"; - sha512 = "NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg=="; - }; - }; - "request-progress-2.0.1" = { - name = "request-progress"; - packageName = "request-progress"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; - sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; - }; - }; - "require-directory-2.1.1" = { - name = "require-directory"; - packageName = "require-directory"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; - }; - }; - "require-main-filename-1.0.1" = { - name = "require-main-filename"; - packageName = "require-main-filename"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; - }; - }; - "requires-port-1.0.0" = { - name = "requires-port"; - packageName = "requires-port"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; - sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; - }; - }; - "resolve-1.11.1" = { - name = "resolve"; - packageName = "resolve"; - version = "1.11.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve/-/resolve-1.11.1.tgz"; - sha512 = "vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw=="; - }; - }; - "resolve-dir-1.0.1" = { - name = "resolve-dir"; - packageName = "resolve-dir"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"; - sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; - }; - }; - "resolve-url-0.2.1" = { - name = "resolve-url"; - packageName = "resolve-url"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; - }; - }; - "ret-0.1.15" = { - name = "ret"; - packageName = "ret"; - version = "0.1.15"; - src = fetchurl { - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; - }; - }; - "ret-0.2.2" = { - name = "ret"; - packageName = "ret"; - version = "0.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ret/-/ret-0.2.2.tgz"; - sha512 = "M0b3YWQs7R3Z917WRQy1HHA7Ba7D8hvZg6UE5mLykJxQVE2ju0IXbGlaHPPlkY+WN7wFP+wUMXmBFA0aV6vYGQ=="; - }; - }; - "rethinkdb-2.3.3" = { - name = "rethinkdb"; - packageName = "rethinkdb"; - version = "2.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/rethinkdb/-/rethinkdb-2.3.3.tgz"; - sha1 = "3dc6586e22fa1dabee0d254e64bd0e379fad2f72"; - }; - }; - "retry-0.9.0" = { - name = "retry"; - packageName = "retry"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/retry/-/retry-0.9.0.tgz"; - sha1 = "6f697e50a0e4ddc8c8f7fb547a9b60dead43678d"; - }; - }; - "revalidator-0.1.8" = { - name = "revalidator"; - packageName = "revalidator"; - version = "0.1.8"; - src = fetchurl { - url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz"; - sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b"; - }; - }; - "right-align-0.1.3" = { - name = "right-align"; - packageName = "right-align"; - version = "0.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; - sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; - }; - }; - "rimraf-2.2.8" = { - name = "rimraf"; - packageName = "rimraf"; - version = "2.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; - sha1 = "e439be2aaee327321952730f99a8929e4fc50582"; - }; - }; - "rimraf-2.4.5" = { - name = "rimraf"; - packageName = "rimraf"; - version = "2.4.5"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; - sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; - }; - }; - "rimraf-2.6.3" = { - name = "rimraf"; - packageName = "rimraf"; - version = "2.6.3"; - src = fetchurl { - url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; - sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; - }; - }; - "rndm-1.2.0" = { - name = "rndm"; - packageName = "rndm"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz"; - sha1 = "f33fe9cfb52bbfd520aa18323bc65db110a1b76c"; - }; - }; - "rttc-4.5.2" = { - name = "rttc"; - packageName = "rttc"; - version = "4.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/rttc/-/rttc-4.5.2.tgz"; - sha1 = "ba6a3e92898b4274f123bbac49485d7616a37cbc"; - }; - }; - "rttc-7.4.0" = { - name = "rttc"; - packageName = "rttc"; - version = "7.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/rttc/-/rttc-7.4.0.tgz"; - sha1 = "bc9cacd46add923deb62495a01934eb7ef619fb4"; - }; - }; - "safe-buffer-5.1.1" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz"; - sha512 = "kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg=="; - }; - }; - "safe-buffer-5.1.2" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; - }; - }; - "safe-buffer-5.2.0" = { - name = "safe-buffer"; - packageName = "safe-buffer"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; - sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; - }; - }; - "safe-json-stringify-1.2.0" = { - name = "safe-json-stringify"; - packageName = "safe-json-stringify"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; - sha512 = "gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg=="; - }; - }; - "safe-regex-1.1.0" = { - name = "safe-regex"; - packageName = "safe-regex"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; - }; - }; - "safer-buffer-2.1.2" = { - name = "safer-buffer"; - packageName = "safer-buffer"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; - }; - }; - "sax-0.5.8" = { - name = "sax"; - packageName = "sax"; - version = "0.5.8"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; - sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; - }; - }; - "sax-1.2.1" = { - name = "sax"; - packageName = "sax"; - version = "1.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"; - sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a"; - }; - }; - "sax-1.2.4" = { - name = "sax"; - packageName = "sax"; - version = "1.2.4"; - src = fetchurl { - url = "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz"; - sha512 = "NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw=="; - }; - }; - "semver-5.0.3" = { - name = "semver"; - packageName = "semver"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz"; - sha1 = "77466de589cd5d3c95f138aa78bc569a3cb5d27a"; - }; - }; - "semver-5.3.0" = { - name = "semver"; - packageName = "semver"; - version = "5.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz"; - sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; - }; - }; - "semver-5.5.1" = { - name = "semver"; - packageName = "semver"; - version = "5.5.1"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.5.1.tgz"; - sha512 = "PqpAxfrEhlSUWge8dwIp4tZnQ25DIOthpiaHNIthsjEFQD6EvqUKUDM7L8O2rShkFccYo1VjJR0coWfNkCubRw=="; - }; - }; - "semver-5.6.0" = { - name = "semver"; - packageName = "semver"; - version = "5.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz"; - sha512 = "RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg=="; - }; - }; - "semver-5.7.0" = { - name = "semver"; - packageName = "semver"; - version = "5.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz"; - sha512 = "Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA=="; - }; - }; - "send-0.17.1" = { - name = "send"; - packageName = "send"; - version = "0.17.1"; - src = fetchurl { - url = "https://registry.npmjs.org/send/-/send-0.17.1.tgz"; - sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; - }; - }; - "serve-favicon-2.5.0" = { - name = "serve-favicon"; - packageName = "serve-favicon"; - version = "2.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz"; - sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0"; - }; - }; - "serve-static-1.14.1" = { - name = "serve-static"; - packageName = "serve-static"; - version = "1.14.1"; - src = fetchurl { - url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz"; - sha512 = "JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg=="; - }; - }; - "set-blocking-2.0.0" = { - name = "set-blocking"; - packageName = "set-blocking"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; - }; - }; - "set-value-2.0.1" = { - name = "set-value"; - packageName = "set-value"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"; - sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="; - }; - }; - "setprototypeof-1.1.1" = { - name = "setprototypeof"; - packageName = "setprototypeof"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz"; - sha512 = "JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw=="; - }; - }; - "shebang-command-1.2.0" = { - name = "shebang-command"; - packageName = "shebang-command"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; - }; - }; - "shebang-regex-1.0.0" = { - name = "shebang-regex"; - packageName = "shebang-regex"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; - }; - }; - "signal-exit-3.0.2" = { - name = "signal-exit"; - packageName = "signal-exit"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz"; - sha1 = "b5fdc08f1287ea1178628e415e25132b73646c6d"; - }; - }; - "slash-1.0.0" = { - name = "slash"; - packageName = "slash"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz"; - sha1 = "c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"; - }; - }; - "snapdragon-0.8.2" = { - name = "snapdragon"; - packageName = "snapdragon"; - version = "0.8.2"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"; - sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; - }; - }; - "snapdragon-node-2.1.1" = { - name = "snapdragon-node"; - packageName = "snapdragon-node"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; - sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; - }; - }; - "snapdragon-util-3.0.1" = { - name = "snapdragon-util"; - packageName = "snapdragon-util"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; - sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; - }; - }; - "sntp-1.0.9" = { - name = "sntp"; - packageName = "sntp"; - version = "1.0.9"; - src = fetchurl { - url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; - }; - }; - "socket.io-2.2.0" = { - name = "socket.io"; - packageName = "socket.io"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.2.0.tgz"; - sha512 = "wxXrIuZ8AILcn+f1B4ez4hJTPG24iNgxBBDaJfT6MsyOhVYiTXWexGoPkd87ktJG8kQEcL/NBvRi64+9k4Kc0w=="; - }; - }; - "socket.io-adapter-1.1.1" = { - name = "socket.io-adapter"; - packageName = "socket.io-adapter"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-1.1.1.tgz"; - sha1 = "2a805e8a14d6372124dd9159ad4502f8cb07f06b"; - }; - }; - "socket.io-client-2.2.0" = { - name = "socket.io-client"; - packageName = "socket.io-client"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.2.0.tgz"; - sha512 = "56ZrkTDbdTLmBIyfFYesgOxsjcLnwAKoN4CiPyTVkMQj3zTUh0QAx3GbvIvLpFEOvQWu92yyWICxB0u7wkVbYA=="; - }; - }; - "socket.io-parser-3.3.0" = { - name = "socket.io-parser"; - packageName = "socket.io-parser"; - version = "3.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-3.3.0.tgz"; - sha512 = "hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng=="; - }; - }; - "source-map-0.1.43" = { - name = "source-map"; - packageName = "source-map"; - version = "0.1.43"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz"; - sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346"; - }; - }; - "source-map-0.5.7" = { - name = "source-map"; - packageName = "source-map"; - version = "0.5.7"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; - }; - }; - "source-map-0.6.1" = { - name = "source-map"; - packageName = "source-map"; - version = "0.6.1"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; - }; - }; - "source-map-resolve-0.5.2" = { - name = "source-map-resolve"; - packageName = "source-map-resolve"; - version = "0.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz"; - sha512 = "MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA=="; - }; - }; - "source-map-support-0.5.12" = { - name = "source-map-support"; - packageName = "source-map-support"; - version = "0.5.12"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz"; - sha512 = "4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ=="; - }; - }; - "source-map-url-0.4.0" = { - name = "source-map-url"; - packageName = "source-map-url"; - version = "0.4.0"; - src = fetchurl { - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; - }; - }; - "spdx-correct-3.1.0" = { - name = "spdx-correct"; - packageName = "spdx-correct"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz"; - sha512 = "lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q=="; - }; - }; - "spdx-exceptions-2.2.0" = { - name = "spdx-exceptions"; - packageName = "spdx-exceptions"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz"; - sha512 = "2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA=="; - }; - }; - "spdx-expression-parse-3.0.0" = { - name = "spdx-expression-parse"; - packageName = "spdx-expression-parse"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz"; - sha512 = "Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg=="; - }; - }; - "spdx-license-ids-3.0.5" = { - name = "spdx-license-ids"; - packageName = "spdx-license-ids"; - version = "3.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz"; - sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q=="; - }; - }; - "split-0.2.10" = { - name = "split"; - packageName = "split"; - version = "0.2.10"; - src = fetchurl { - url = "https://registry.npmjs.org/split/-/split-0.2.10.tgz"; - sha1 = "67097c601d697ce1368f418f06cd201cf0521a57"; - }; - }; - "split-0.3.3" = { - name = "split"; - packageName = "split"; - version = "0.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz"; - sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f"; - }; - }; - "split-1.0.1" = { - name = "split"; - packageName = "split"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; - }; - }; - "split-string-3.1.0" = { - name = "split-string"; - packageName = "split-string"; - version = "3.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"; - sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; - }; - }; - "sprintf-0.1.5" = { - name = "sprintf"; - packageName = "sprintf"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz"; - sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf"; - }; - }; - "sprintf-js-1.0.3" = { - name = "sprintf-js"; - packageName = "sprintf-js"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; - }; - }; - "ssh-key-to-pem-0.11.0" = { - name = "ssh-key-to-pem"; - packageName = "ssh-key-to-pem"; - version = "0.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/ssh-key-to-pem/-/ssh-key-to-pem-0.11.0.tgz"; - sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4"; - }; - }; - "sshpk-1.16.1" = { - name = "sshpk"; - packageName = "sshpk"; - version = "1.16.1"; - src = fetchurl { - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; - }; - }; - "stack-trace-0.0.10" = { - name = "stack-trace"; - packageName = "stack-trace"; - version = "0.0.10"; - src = fetchurl { - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; - sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; - }; - }; - "static-extend-0.1.2" = { - name = "static-extend"; - packageName = "static-extend"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; - }; - }; - "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"; - }; - }; - "stf-appstore-db-1.0.0" = { - name = "stf-appstore-db"; - packageName = "stf-appstore-db"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stf-appstore-db/-/stf-appstore-db-1.0.0.tgz"; - sha1 = "3ddaf62d509d6c3125db17813cba34b54435b7e4"; - }; - }; - "stf-browser-db-1.0.2" = { - name = "stf-browser-db"; - packageName = "stf-browser-db"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/stf-browser-db/-/stf-browser-db-1.0.2.tgz"; - sha1 = "8cb9af1ea0c66221c4ee93d5b5df45aa6c01e25c"; - }; - }; - "stf-device-db-1.2.0" = { - name = "stf-device-db"; - packageName = "stf-device-db"; - version = "1.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stf-device-db/-/stf-device-db-1.2.0.tgz"; - sha1 = "16bbb70cc6623d2dfbba585ec5c374ca9c160dce"; - }; - }; - "stf-syrup-1.0.0" = { - name = "stf-syrup"; - packageName = "stf-syrup"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stf-syrup/-/stf-syrup-1.0.0.tgz"; - sha1 = "acdfd811b860960a5caee6efb8120579a67cc7c2"; - }; - }; - "stf-wiki-1.0.0" = { - name = "stf-wiki"; - packageName = "stf-wiki"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/stf-wiki/-/stf-wiki-1.0.0.tgz"; - sha1 = "ac8382de415d0c99a5a2b5fa0c404b174a8ed59b"; - }; - }; - "stream-combiner-0.0.4" = { - name = "stream-combiner"; - packageName = "stream-combiner"; - version = "0.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; - sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; - }; - }; - "streamline-0.10.17" = { - name = "streamline"; - packageName = "streamline"; - version = "0.10.17"; - src = fetchurl { - url = "https://registry.npmjs.org/streamline/-/streamline-0.10.17.tgz"; - sha1 = "fa2170da74194dbd0b54f756523f0d0d370426af"; - }; - }; - "streamline-0.4.11" = { - name = "streamline"; - packageName = "streamline"; - version = "0.4.11"; - src = fetchurl { - url = "https://registry.npmjs.org/streamline/-/streamline-0.4.11.tgz"; - sha1 = "0e3c4f24a3f052b231b12d5049085a0a099be782"; - }; - }; - "streamline-streams-0.1.5" = { - name = "streamline-streams"; - packageName = "streamline-streams"; - version = "0.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/streamline-streams/-/streamline-streams-0.1.5.tgz"; - sha1 = "5b0ff80cf543f603cc3438ed178ca2aec7899b54"; - }; - }; - "streamsearch-0.1.2" = { - name = "streamsearch"; - packageName = "streamsearch"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"; - sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a"; - }; - }; - "string-width-1.0.2" = { - name = "string-width"; - packageName = "string-width"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; - }; - }; - "string-width-2.1.1" = { - name = "string-width"; - packageName = "string-width"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; - }; - }; - "string_decoder-0.10.31" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "0.10.31"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; - }; - }; - "string_decoder-1.1.1" = { - name = "string_decoder"; - packageName = "string_decoder"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; - }; - }; - "stringstream-0.0.6" = { - name = "stringstream"; - packageName = "stringstream"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz"; - sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="; - }; - }; - "strip-ansi-0.1.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "0.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.1.1.tgz"; - sha1 = "39e8a98d044d150660abe4a6808acf70bb7bc991"; - }; - }; - "strip-ansi-3.0.1" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "3.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; - }; - }; - "strip-ansi-4.0.0" = { - name = "strip-ansi"; - packageName = "strip-ansi"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; - }; - }; - "strip-bom-2.0.0" = { - name = "strip-bom"; - packageName = "strip-bom"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; - sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; - }; - }; - "strip-eof-1.0.0" = { - name = "strip-eof"; - packageName = "strip-eof"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; - }; - }; - "strip-json-comments-2.0.1" = { - name = "strip-json-comments"; - packageName = "strip-json-comments"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; - }; - }; - "superagent-3.8.3" = { - name = "superagent"; - packageName = "superagent"; - version = "3.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz"; - sha512 = "GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA=="; - }; - }; - "supports-color-2.0.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; - sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; - }; - }; - "supports-color-5.5.0" = { - name = "supports-color"; - packageName = "supports-color"; - version = "5.5.0"; - src = fetchurl { - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; - }; - }; - "swagger-express-mw-0.7.0" = { - name = "swagger-express-mw"; - packageName = "swagger-express-mw"; - version = "0.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/swagger-express-mw/-/swagger-express-mw-0.7.0.tgz"; - sha1 = "49f5db72d1d4b3827336ee6cc7b369caed5bf4c8"; - }; - }; - "swagger-methods-1.0.8" = { - name = "swagger-methods"; - packageName = "swagger-methods"; - version = "1.0.8"; - src = fetchurl { - url = "https://registry.npmjs.org/swagger-methods/-/swagger-methods-1.0.8.tgz"; - sha512 = "G6baCwuHA+C5jf4FNOrosE4XlmGsdjbOjdBK4yuiDDj/ro9uR4Srj3OR84oQMT8F3qKp00tYNv0YN730oTHPZA=="; - }; - }; - "swagger-node-runner-0.7.3" = { - name = "swagger-node-runner"; - packageName = "swagger-node-runner"; - version = "0.7.3"; - src = fetchurl { - url = "https://registry.npmjs.org/swagger-node-runner/-/swagger-node-runner-0.7.3.tgz"; - sha1 = "3f4447fa66bc32ff4a9a6faac3cad5567b2ddc6a"; - }; - }; - "swagger-schema-official-2.0.0-bab6bed" = { - name = "swagger-schema-official"; - packageName = "swagger-schema-official"; - version = "2.0.0-bab6bed"; - src = fetchurl { - url = "https://registry.npmjs.org/swagger-schema-official/-/swagger-schema-official-2.0.0-bab6bed.tgz"; - sha1 = "70070468d6d2977ca5237b2e519ca7d06a2ea3fd"; - }; - }; - "sway-1.0.0" = { - name = "sway"; - packageName = "sway"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sway/-/sway-1.0.0.tgz"; - sha1 = "368ffc0e96bd84226ed1b9b33d66be57da04f09a"; - }; - }; - "switchback-1.1.3" = { - name = "switchback"; - packageName = "switchback"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/switchback/-/switchback-1.1.3.tgz"; - sha1 = "12c70109348d6a296f739ba910eeb853f8b6e631"; - }; - }; - "switchback-2.0.5" = { - name = "switchback"; - packageName = "switchback"; - version = "2.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/switchback/-/switchback-2.0.5.tgz"; - sha512 = "w9gnsTxR5geOKt45QUryhDP9KTLcOAqje9usR2VQ2ng8DfhaF+mkIcArxioMP/p6Z/ecKE58i2/B0DDlMJK1jw=="; - }; - }; - "sync-request-3.0.0" = { - name = "sync-request"; - packageName = "sync-request"; - version = "3.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/sync-request/-/sync-request-3.0.0.tgz"; - sha1 = "8030046939b00096e625c0dd6b3905bc7b85709c"; - }; - }; - "tar-4.4.10" = { - name = "tar"; - packageName = "tar"; - version = "4.4.10"; - src = fetchurl { - url = "https://registry.npmjs.org/tar/-/tar-4.4.10.tgz"; - sha512 = "g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA=="; - }; - }; - "temp-0.8.3" = { - name = "temp"; - packageName = "temp"; - version = "0.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz"; - sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59"; - }; - }; - "temp-0.9.0" = { - name = "temp"; - packageName = "temp"; - version = "0.9.0"; - src = fetchurl { - url = "https://registry.npmjs.org/temp/-/temp-0.9.0.tgz"; - sha512 = "YfUhPQCJoNQE5N+FJQcdPz63O3x3sdT4Xju69Gj4iZe0lBKOtnAMi0SLj9xKhGkcGhsxThvTJ/usxtFPo438zQ=="; - }; - }; - "then-request-2.2.0" = { - name = "then-request"; - packageName = "then-request"; - version = "2.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/then-request/-/then-request-2.2.0.tgz"; - sha1 = "6678b32fa0ca218fe569981bbd8871b594060d81"; - }; - }; - "throttleit-1.0.0" = { - name = "throttleit"; - packageName = "throttleit"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; - sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; - }; - }; - "through-2.3.4" = { - name = "through"; - packageName = "through"; - version = "2.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/through/-/through-2.3.4.tgz"; - sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455"; - }; - }; - "through-2.3.8" = { - name = "through"; - packageName = "through"; - version = "2.3.8"; - src = fetchurl { - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; - }; - }; - "to-array-0.1.4" = { - name = "to-array"; - packageName = "to-array"; - version = "0.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"; - sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; - }; - }; - "to-fast-properties-1.0.3" = { - name = "to-fast-properties"; - packageName = "to-fast-properties"; - version = "1.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.3.tgz"; - sha1 = "b83571fa4d8c25b82e231b06e3a3055de4ca1a47"; - }; - }; - "to-fast-properties-2.0.0" = { - name = "to-fast-properties"; - packageName = "to-fast-properties"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; - }; - }; - "to-object-path-0.3.0" = { - name = "to-object-path"; - packageName = "to-object-path"; - version = "0.3.0"; - src = fetchurl { - url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; - }; - }; - "to-regex-3.0.2" = { - name = "to-regex"; - packageName = "to-regex"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"; - sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; - }; - }; - "to-regex-range-2.1.1" = { - name = "to-regex-range"; - packageName = "to-regex-range"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; - }; - }; - "toidentifier-1.0.0" = { - name = "toidentifier"; - packageName = "toidentifier"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz"; - sha512 = "yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw=="; - }; - }; - "token-stream-0.0.1" = { - name = "token-stream"; - packageName = "token-stream"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/token-stream/-/token-stream-0.0.1.tgz"; - sha1 = "ceeefc717a76c4316f126d0b9dbaa55d7e7df01a"; - }; - }; - "tough-cookie-2.3.4" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.3.4.tgz"; - sha512 = "TZ6TTfI5NtZnuyy/Kecv+CnoROnyXn2DN97LontgQpCwsX2XyLYCC0ENhYkehSOwAp8rTQKc/NUIF7BkQ5rKLA=="; - }; - }; - "tough-cookie-2.4.3" = { - name = "tough-cookie"; - packageName = "tough-cookie"; - version = "2.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz"; - sha512 = "Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ=="; - }; - }; - "transliteration-1.6.6" = { - name = "transliteration"; - packageName = "transliteration"; - version = "1.6.6"; - src = fetchurl { - url = "https://registry.npmjs.org/transliteration/-/transliteration-1.6.6.tgz"; - sha1 = "8a7e8ab3044ad19f233f50c15894cbf69e5d205e"; - }; - }; - "trim-right-1.0.1" = { - name = "trim-right"; - packageName = "trim-right"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz"; - sha1 = "cb2e1203067e0c8de1f614094b9fe45704ea6003"; - }; - }; - "tsscmp-1.0.6" = { - name = "tsscmp"; - packageName = "tsscmp"; - version = "1.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz"; - sha512 = "LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA=="; - }; - }; - "tunnel-0.0.2" = { - name = "tunnel"; - packageName = "tunnel"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.2.tgz"; - sha1 = "f23bcd8b7a7b8a864261b2084f66f93193396334"; - }; - }; - "tunnel-0.0.5" = { - name = "tunnel"; - packageName = "tunnel"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel/-/tunnel-0.0.5.tgz"; - sha512 = "gj5sdqherx4VZKMcBA4vewER7zdK25Td+z1npBqpbDys4eJrLx+SlYjJvq1bDXs2irkuJM5pf8ktaEQVipkrbA=="; - }; - }; - "tunnel-agent-0.4.3" = { - name = "tunnel-agent"; - packageName = "tunnel-agent"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; - sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; - }; - }; - "tunnel-agent-0.6.0" = { - name = "tunnel-agent"; - packageName = "tunnel-agent"; - version = "0.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz"; - sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd"; - }; - }; - "tweetnacl-0.14.5" = { - name = "tweetnacl"; - packageName = "tweetnacl"; - version = "0.14.5"; - src = fetchurl { - url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz"; - sha1 = "5ae68177f192d4456269d108afa93ff8743f4f64"; - }; - }; - "type-is-1.6.18" = { - name = "type-is"; - packageName = "type-is"; - version = "1.6.18"; - src = fetchurl { - url = "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz"; - sha512 = "TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g=="; - }; - }; - "typedarray-0.0.6" = { - name = "typedarray"; - packageName = "typedarray"; - version = "0.0.6"; - src = fetchurl { - url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; - }; - }; - "uglify-js-2.8.29" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "2.8.29"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz"; - sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; - }; - }; - "uglify-js-3.4.10" = { - name = "uglify-js"; - packageName = "uglify-js"; - version = "3.4.10"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz"; - sha512 = "Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw=="; - }; - }; - "uglify-to-browserify-1.0.2" = { - name = "uglify-to-browserify"; - packageName = "uglify-to-browserify"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; - }; - }; - "uid-safe-2.1.5" = { - name = "uid-safe"; - packageName = "uid-safe"; - version = "2.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.5.tgz"; - sha512 = "KPHm4VL5dDXKz01UuEd88Df+KzynaohSL9fBh096KWAxSKZQDI2uBrVqtvRM4rwrIrRRKsdLNML/lnaaVSRioA=="; - }; - }; - "uid2-0.0.3" = { - name = "uid2"; - packageName = "uid2"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; - sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; - }; - }; - "ultron-1.0.2" = { - name = "ultron"; - packageName = "ultron"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"; - sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa"; - }; - }; - "ultron-1.1.1" = { - name = "ultron"; - packageName = "ultron"; - version = "1.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/ultron/-/ultron-1.1.1.tgz"; - sha512 = "UIEXBNeYmKptWH6z8ZnqTeS8fV74zG0/eRU9VGkpzz+LIJNs8W/zM/L+7ctCkRrgbNnnR0xxw4bKOr0cW0N0Og=="; - }; - }; - "unc-path-regex-0.1.2" = { - name = "unc-path-regex"; - packageName = "unc-path-regex"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz"; - sha1 = "e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"; - }; - }; - "underscore-1.4.4" = { - name = "underscore"; - packageName = "underscore"; - version = "1.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"; - sha1 = "61a6a32010622afa07963bf325203cf12239d604"; - }; - }; - "underscore-1.6.0" = { - name = "underscore"; - packageName = "underscore"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; - }; - }; - "underscore-1.8.3" = { - name = "underscore"; - packageName = "underscore"; - version = "1.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; - sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; - }; - }; - "underscore-1.9.1" = { - name = "underscore"; - packageName = "underscore"; - version = "1.9.1"; - src = fetchurl { - url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz"; - sha512 = "5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg=="; - }; - }; - "union-value-1.0.1" = { - name = "union-value"; - packageName = "union-value"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"; - sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="; - }; - }; - "universalify-0.1.2" = { - name = "universalify"; - packageName = "universalify"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; - }; - }; - "unpipe-1.0.0" = { - name = "unpipe"; - packageName = "unpipe"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; - sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; - }; - }; - "unset-value-1.0.0" = { - name = "unset-value"; - packageName = "unset-value"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"; - sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; - }; - }; - "uri-js-3.0.2" = { - name = "uri-js"; - packageName = "uri-js"; - version = "3.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uri-js/-/uri-js-3.0.2.tgz"; - sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; - }; - }; - "uri-js-4.2.2" = { - name = "uri-js"; - packageName = "uri-js"; - version = "4.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; - sha512 = "KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ=="; - }; - }; - "urix-0.1.0" = { - name = "urix"; - packageName = "urix"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; - }; - }; - "url-0.10.3" = { - name = "url"; - packageName = "url"; - version = "0.10.3"; - src = fetchurl { - url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz"; - sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; - }; - }; - "url-join-0.0.1" = { - name = "url-join"; - packageName = "url-join"; - version = "0.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/url-join/-/url-join-0.0.1.tgz"; - sha1 = "1db48ad422d3402469a87f7d97bdebfe4fb1e3c8"; - }; - }; - "url-join-1.1.0" = { - name = "url-join"; - packageName = "url-join"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/url-join/-/url-join-1.1.0.tgz"; - sha1 = "741c6c2f4596c4830d6718460920d0c92202dc78"; - }; - }; - "use-3.1.1" = { - name = "use"; - packageName = "use"; - version = "3.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz"; - sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; - }; - }; - "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"; - }; - }; - "utf-8-validate-1.2.2" = { - name = "utf-8-validate"; - packageName = "utf-8-validate"; - version = "1.2.2"; - src = fetchurl { - url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.2.2.tgz"; - sha1 = "8bb871a4741e085c70487ca7acdbd7d6d36029eb"; - }; - }; - "util-deprecate-1.0.2" = { - name = "util-deprecate"; - packageName = "util-deprecate"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; - }; - }; - "utile-0.2.1" = { - name = "utile"; - packageName = "utile"; - version = "0.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz"; - sha1 = "930c88e99098d6220834c356cbd9a770522d90d7"; - }; - }; - "utils-merge-1.0.1" = { - name = "utils-merge"; - packageName = "utils-merge"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz"; - sha1 = "9f95710f50a267947b2ccc124741c1028427e713"; - }; - }; - "uuid-3.3.2" = { - name = "uuid"; - packageName = "uuid"; - version = "3.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz"; - sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA=="; - }; - }; - "v8flags-3.1.3" = { - name = "v8flags"; - packageName = "v8flags"; - version = "3.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/v8flags/-/v8flags-3.1.3.tgz"; - sha512 = "amh9CCg3ZxkzQ48Mhcb8iX7xpAfYJgePHxWMQCBWECpOSqJUXgY26ncA61UTV0BkPqfhcy6mzwCIoP4ygxpW8w=="; - }; - }; - "validate-npm-package-license-3.0.4" = { - name = "validate-npm-package-license"; - packageName = "validate-npm-package-license"; - version = "3.0.4"; - src = fetchurl { - url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; - sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; - }; - }; - "validator-10.11.0" = { - name = "validator"; - packageName = "validator"; - version = "10.11.0"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-10.11.0.tgz"; - sha512 = "X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw=="; - }; - }; - "validator-5.2.0" = { - name = "validator"; - packageName = "validator"; - version = "5.2.0"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz"; - sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689"; - }; - }; - "validator-5.7.0" = { - name = "validator"; - packageName = "validator"; - version = "5.7.0"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-5.7.0.tgz"; - sha1 = "7a87a58146b695ac486071141c0c49d67da05e5c"; - }; - }; - "validator-9.4.1" = { - name = "validator"; - packageName = "validator"; - version = "9.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz"; - sha512 = "YV5KjzvRmSyJ1ee/Dm5UED0G+1L4GZnLN3w6/T+zZm8scVua4sOhYKWTUrKa0H/tMiJyO9QLHMPN+9mB/aMunA=="; - }; - }; - "vary-1.1.2" = { - name = "vary"; - packageName = "vary"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz"; - sha1 = "2299f02c6ded30d4a5961b0b9f74524a18f634fc"; - }; - }; - "vasync-1.6.4" = { - name = "vasync"; - packageName = "vasync"; - version = "1.6.4"; - src = fetchurl { - url = "https://registry.npmjs.org/vasync/-/vasync-1.6.4.tgz"; - sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; - }; - }; - "verror-1.10.0" = { - name = "verror"; - packageName = "verror"; - version = "1.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; - sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; - }; - }; - "verror-1.6.0" = { - name = "verror"; - packageName = "verror"; - version = "1.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; - sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; - }; - }; - "void-elements-2.0.1" = { - name = "void-elements"; - packageName = "void-elements"; - version = "2.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz"; - sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; - }; - }; - "walk-sync-0.3.4" = { - name = "walk-sync"; - packageName = "walk-sync"; - version = "0.3.4"; - src = fetchurl { - url = "https://registry.npmjs.org/walk-sync/-/walk-sync-0.3.4.tgz"; - sha512 = "ttGcuHA/OBnN2pcM6johpYlEms7XpO5/fyKIr48541xXedan4roO8cS1Q2S/zbbjGH/BarYDAMeS2Mi9HE5Tig=="; - }; - }; - "wcwidth-1.0.1" = { - name = "wcwidth"; - packageName = "wcwidth"; - version = "1.0.1"; - src = fetchurl { - url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"; - sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; - }; - }; - "which-1.3.1" = { - name = "which"; - packageName = "which"; - version = "1.3.1"; - src = fetchurl { - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; - }; - }; - "which-module-1.0.0" = { - name = "which-module"; - packageName = "which-module"; - version = "1.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz"; - sha1 = "bba63ca861948994ff307736089e3b96026c2a4f"; - }; - }; - "which-module-2.0.0" = { - name = "which-module"; - packageName = "which-module"; - version = "2.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; - }; - }; - "wide-align-1.1.3" = { - name = "wide-align"; - packageName = "wide-align"; - version = "1.1.3"; - src = fetchurl { - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; - }; - }; - "window-size-0.1.0" = { - name = "window-size"; - packageName = "window-size"; - version = "0.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; - }; - }; - "winston-0.8.3" = { - name = "winston"; - packageName = "winston"; - version = "0.8.3"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; - sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; - }; - }; - "winston-1.1.2" = { - name = "winston"; - packageName = "winston"; - version = "1.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-1.1.2.tgz"; - sha1 = "68edd769ff79d4f9528cf0e5d80021aade67480c"; - }; - }; - "winston-2.1.1" = { - name = "winston"; - packageName = "winston"; - version = "2.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; - sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; - }; - }; - "winston-2.4.4" = { - name = "winston"; - packageName = "winston"; - version = "2.4.4"; - src = fetchurl { - url = "https://registry.npmjs.org/winston/-/winston-2.4.4.tgz"; - sha512 = "NBo2Pepn4hK4V01UfcWcDlmiVTs7VTB1h7bgnB0rgP146bYhMxX0ypCz3lBOfNxCO4Zuek7yeT+y/zM1OfMw4Q=="; - }; - }; - "with-5.1.1" = { - name = "with"; - packageName = "with"; - version = "5.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/with/-/with-5.1.1.tgz"; - sha1 = "fa4daa92daf32c4ea94ed453c81f04686b575dfe"; - }; - }; - "wordwrap-0.0.2" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "0.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; - }; - }; - "wordwrap-0.0.3" = { - name = "wordwrap"; - packageName = "wordwrap"; - version = "0.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"; - sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; - }; - }; - "wrap-ansi-2.1.0" = { - name = "wrap-ansi"; - packageName = "wrap-ansi"; - version = "2.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; - }; - }; - "wrappy-1.0.2" = { - name = "wrappy"; - packageName = "wrappy"; - version = "1.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; - }; - }; - "ws-1.1.5" = { - name = "ws"; - packageName = "ws"; - version = "1.1.5"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-1.1.5.tgz"; - sha512 = "o3KqipXNUdS7wpQzBHSe180lBGO60SoK0yVo3CYJgb2MkobuWuBX6dhkYP5ORCLd55y+SaflMOV5fqAB53ux4w=="; - }; - }; - "ws-3.3.3" = { - name = "ws"; - packageName = "ws"; - version = "3.3.3"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-3.3.3.tgz"; - sha512 = "nnWLa/NwZSt4KQJu51MYlCcSQ5g7INpOrOMt4XV8j4dqTXdmlUmSHQ8/oLC069ckre0fRsgfvsKwbTdtKLCDkA=="; - }; - }; - "ws-6.1.4" = { - name = "ws"; - packageName = "ws"; - version = "6.1.4"; - src = fetchurl { - url = "https://registry.npmjs.org/ws/-/ws-6.1.4.tgz"; - sha512 = "eqZfL+NE/YQc1/ZynhojeV8q+H050oR8AZ2uIev7RU10svA9ZnJUddHcOUZTJLinZ9yEfdA2kSATS2qZK5fhJA=="; - }; - }; - "xml-crypto-0.8.5" = { - name = "xml-crypto"; - packageName = "xml-crypto"; - version = "0.8.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-crypto/-/xml-crypto-0.8.5.tgz"; - sha1 = "2bbcfb3eb33f3a82a218b822bf672b6b1c20e538"; - }; - }; - "xml-encryption-0.7.4" = { - name = "xml-encryption"; - packageName = "xml-encryption"; - version = "0.7.4"; - src = fetchurl { - url = "https://registry.npmjs.org/xml-encryption/-/xml-encryption-0.7.4.tgz"; - sha1 = "42791ec64d556d2455dcb9da0a54123665ac65c7"; - }; - }; - "xml2js-0.1.14" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.1.14"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz"; - sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; - }; - }; - "xml2js-0.2.8" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.2.8"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz"; - sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2"; - }; - }; - "xml2js-0.4.19" = { - name = "xml2js"; - packageName = "xml2js"; - version = "0.4.19"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.19.tgz"; - sha512 = "esZnJZJOiJR9wWKMyuvSE1y6Dq5LCuJanqhxslH2bxM6duahNZ+HMpCLhBQGZkbX6xRf8x1Y2eJlgt2q3qo49Q=="; - }; - }; - "xml2tss-0.0.5" = { - name = "xml2tss"; - packageName = "xml2tss"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xml2tss/-/xml2tss-0.0.5.tgz"; - sha1 = "d76a310d6b8a7ba9e4825bb3d43f5427e9fe8f6e"; - }; - }; - "xmlbuilder-0.4.3" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "0.4.3"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz"; - sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58"; - }; - }; - "xmlbuilder-2.5.2" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "2.5.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.5.2.tgz"; - sha1 = "5ab88fc508ab2ff14873010b56163d3f92b19325"; - }; - }; - "xmlbuilder-9.0.7" = { - name = "xmlbuilder"; - packageName = "xmlbuilder"; - version = "9.0.7"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-9.0.7.tgz"; - sha1 = "132ee63d2ec5565c557e20f4c22df9aca686b10d"; - }; - }; - "xmldom-0.1.19" = { - name = "xmldom"; - packageName = "xmldom"; - version = "0.1.19"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; - }; - }; - "xmldom-0.1.27" = { - name = "xmldom"; - packageName = "xmldom"; - version = "0.1.27"; - src = fetchurl { - url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz"; - sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; - }; - }; - "xmlhttprequest-ssl-1.5.5" = { - name = "xmlhttprequest-ssl"; - packageName = "xmlhttprequest-ssl"; - version = "1.5.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz"; - sha1 = "c2876b06168aadc40e57d97e81191ac8f4398b3e"; - }; - }; - "xpath-0.0.5" = { - name = "xpath"; - packageName = "xpath"; - version = "0.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/xpath/-/xpath-0.0.5.tgz"; - sha1 = "454036f6ef0f3df5af5d4ba4a119fb75674b3e6c"; - }; - }; - "xpath.js-1.1.0" = { - name = "xpath.js"; - packageName = "xpath.js"; - version = "1.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.1.0.tgz"; - sha512 = "jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ=="; - }; - }; - "xtend-4.0.2" = { - name = "xtend"; - packageName = "xtend"; - version = "4.0.2"; - src = fetchurl { - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; - }; - }; - "y18n-3.2.1" = { - name = "y18n"; - packageName = "y18n"; - version = "3.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; - sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; - }; - }; - "y18n-4.0.0" = { - name = "y18n"; - packageName = "y18n"; - version = "4.0.0"; - src = fetchurl { - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; - sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; - }; - }; - "yallist-2.1.2" = { - name = "yallist"; - packageName = "yallist"; - version = "2.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; - }; - }; - "yallist-3.0.3" = { - name = "yallist"; - packageName = "yallist"; - version = "3.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz"; - sha512 = "S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A=="; - }; - }; - "yargs-12.0.5" = { - name = "yargs"; - packageName = "yargs"; - version = "12.0.5"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz"; - sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw=="; - }; - }; - "yargs-3.10.0" = { - name = "yargs"; - packageName = "yargs"; - version = "3.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; - sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; - }; - }; - "yargs-6.6.0" = { - name = "yargs"; - packageName = "yargs"; - version = "6.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz"; - sha1 = "782ec21ef403345f830a808ca3d513af56065208"; - }; - }; - "yargs-parser-11.1.1" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "11.1.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz"; - sha512 = "C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ=="; - }; - }; - "yargs-parser-4.2.1" = { - name = "yargs-parser"; - packageName = "yargs-parser"; - version = "4.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz"; - sha1 = "29cceac0dc4f03c6c87b4a9f217dd18c9f74871c"; - }; - }; - "yauzl-2.10.0" = { - name = "yauzl"; - packageName = "yauzl"; - version = "2.10.0"; - src = fetchurl { - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz"; - sha1 = "c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"; - }; - }; - "yeast-0.1.2" = { - name = "yeast"; - packageName = "yeast"; - version = "0.1.2"; - src = fetchurl { - url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; - sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; - }; - }; - "z-schema-3.25.1" = { - name = "z-schema"; - packageName = "z-schema"; - version = "3.25.1"; - src = fetchurl { - url = "https://registry.npmjs.org/z-schema/-/z-schema-3.25.1.tgz"; - sha512 = "7tDlwhrBG+oYFdXNOjILSurpfQyuVgkRe3hB2q8TEssamDHB7BbLWYkYO98nTn0FibfdFroFKDjndbgufAgS/Q=="; - }; - }; - "zmq-2.15.3" = { - name = "zmq"; - packageName = "zmq"; - version = "2.15.3"; - src = fetchurl { - url = "https://registry.npmjs.org/zmq/-/zmq-2.15.3.tgz"; - sha1 = "66c6de82cc36b09734b820703776490a6fbbe624"; - }; - }; - }; -in -{ - alloy = nodeEnv.buildNodePackage { - name = "alloy"; - packageName = "alloy"; - version = "1.14.0"; - src = fetchurl { - url = "https://registry.npmjs.org/alloy/-/alloy-1.14.0.tgz"; - sha512 = "42iwEb64YKWuX7E73Q6zIz7/eP6p3SvacSR02LVoTfveitVXTXw5lzW9JFmBQRqua1kdN+YeaPgx8ocz8Ea3wQ=="; - }; - dependencies = [ - sources."@babel/code-frame-7.5.5" - (sources."@babel/core-7.5.5" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - (sources."@babel/generator-7.5.5" // { - dependencies = [ - sources."source-map-0.5.7" - ]; - }) - sources."@babel/helper-function-name-7.1.0" - sources."@babel/helper-get-function-arity-7.0.0" - sources."@babel/helper-split-export-declaration-7.4.4" - sources."@babel/helpers-7.5.5" - sources."@babel/highlight-7.5.0" - sources."@babel/parser-7.5.5" - sources."@babel/template-7.4.4" - sources."@babel/traverse-7.5.5" - sources."@babel/types-7.5.5" - sources."JSV-4.0.2" - sources."ansi-styles-3.2.1" - sources."array-unique-0.3.2" - sources."async-2.6.3" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."chalk-2.4.2" - sources."chmodr-1.2.0" - sources."color-convert-1.9.3" - sources."color-name-1.1.3" - sources."colors-1.3.3" - sources."commander-2.20.0" - sources."concat-map-0.0.1" - sources."convert-source-map-1.6.0" - sources."debug-4.1.1" - sources."ejs-2.5.7" - sources."ensure-posix-path-1.1.1" - sources."escape-string-regexp-1.0.5" - sources."esutils-2.0.2" - sources."fs-extra-5.0.0" - (sources."global-modules-0.2.3" // { - dependencies = [ - sources."is-windows-0.2.0" - ]; - }) - sources."global-paths-1.0.0" - (sources."global-prefix-0.1.5" // { - dependencies = [ - sources."is-windows-0.2.0" - ]; - }) - sources."globals-11.12.0" - sources."graceful-fs-4.2.0" - sources."has-color-0.1.7" - sources."has-flag-3.0.0" - sources."homedir-polyfill-1.0.3" - sources."ini-1.3.5" - sources."is-3.3.0" - sources."is-windows-1.0.2" - sources."isexe-2.0.0" - sources."js-tokens-4.0.0" - sources."jsesc-2.5.2" - sources."json5-2.1.0" - sources."jsonfile-4.0.0" - sources."jsonlint-1.6.2" - sources."lodash-4.17.15" - sources."matcher-collection-1.1.2" - sources."minimatch-3.0.4" - sources."minimist-1.2.0" - sources."moment-2.20.1" - sources."ms-2.1.2" - sources."node.extend-2.0.0" - (sources."nomnom-1.8.1" // { - dependencies = [ - sources."ansi-styles-1.0.0" - sources."chalk-0.4.0" - ]; - }) - sources."parse-passwd-1.0.0" - sources."path-parse-1.0.6" - sources."pkginfo-0.4.1" - sources."resolve-1.11.1" - sources."safe-buffer-5.1.2" - sources."sax-0.5.8" - sources."semver-5.7.0" - sources."source-map-0.6.1" - sources."strip-ansi-0.1.1" - sources."supports-color-5.5.0" - sources."to-fast-properties-2.0.0" - sources."trim-right-1.0.1" - sources."underscore-1.6.0" - sources."universalify-0.1.2" - sources."walk-sync-0.3.4" - sources."which-1.3.1" - sources."xml2js-0.2.8" - sources."xml2tss-0.0.5" - sources."xmldom-0.1.27" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Appcelerator Titanium MVC Framework"; - homepage = "https://github.com/appcelerator/alloy#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - azure-cli = nodeEnv.buildNodePackage { - name = "azure-cli"; - packageName = "azure-cli"; - version = "0.10.20"; - src = fetchurl { - url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.20.tgz"; - sha512 = "MMiK5sFfIocNMWCc5PshUCAe6aY4P13/GCmSwudOziA/pFdQMHU8jhu+jU2SSWFug4K1ugeuCwtMXe43oL0PhQ=="; - }; - dependencies = [ - sources."@types/node-8.10.51" - sources."JSV-4.0.2" - sources."adal-node-0.1.28" - sources."ajv-6.10.2" - sources."amdefine-1.0.1" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."applicationinsights-0.16.0" - sources."asap-2.0.6" - sources."asn1-0.2.4" - sources."assert-plus-0.2.0" - sources."async-1.4.2" - sources."asynckit-0.4.0" - sources."aws-sign2-0.6.0" - sources."aws4-1.8.0" - sources."azure-arm-authorization-2.0.0" - sources."azure-arm-batch-3.2.0" - sources."azure-arm-cdn-4.2.0" - sources."azure-arm-commerce-2.1.0" - sources."azure-arm-compute-3.0.0-preview" - (sources."azure-arm-datalake-analytics-1.0.2-preview" // { - dependencies = [ - sources."async-0.2.7" - sources."azure-arm-resource-1.6.1-preview" - sources."ms-rest-1.15.7" - sources."ms-rest-azure-1.15.7" - sources."request-2.74.0" - ]; - }) - (sources."azure-arm-datalake-store-1.0.2-preview" // { - dependencies = [ - sources."async-0.2.7" - sources."azure-arm-resource-1.6.1-preview" - sources."ms-rest-1.15.7" - sources."ms-rest-azure-1.15.7" - sources."request-2.74.0" - ]; - }) - sources."azure-arm-devtestlabs-2.1.1" - sources."azure-arm-dns-2.1.0" - sources."azure-arm-hdinsight-0.2.2" - 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-5.3.0" - (sources."azure-arm-powerbiembedded-0.1.1" // { - dependencies = [ - sources."async-0.2.7" - sources."azure-arm-resource-1.6.1-preview" - sources."ms-rest-1.15.7" - sources."ms-rest-azure-1.15.7" - sources."request-2.74.0" - ]; - }) - (sources."azure-arm-rediscache-0.2.3" // { - dependencies = [ - sources."async-0.2.7" - sources."azure-arm-resource-1.6.1-preview" - sources."ms-rest-1.15.7" - sources."ms-rest-azure-1.15.7" - sources."request-2.74.0" - ]; - }) - sources."azure-arm-resource-7.3.0" - sources."azure-arm-servermanagement-1.1.0" - sources."azure-arm-storage-5.2.0" - sources."azure-arm-trafficmanager-1.1.0-preview" - sources."azure-arm-website-5.7.0" - sources."azure-asm-compute-0.18.0" - sources."azure-asm-hdinsight-0.10.2" - sources."azure-asm-mgmt-0.10.1" - sources."azure-asm-network-0.13.0" - sources."azure-asm-sb-0.10.1" - sources."azure-asm-sql-0.10.1" - sources."azure-asm-storage-0.12.0" - sources."azure-asm-subscription-0.10.1" - sources."azure-asm-trafficmanager-0.10.3" - (sources."azure-asm-website-0.10.7" // { - dependencies = [ - sources."underscore-1.9.1" - ]; - }) - (sources."azure-batch-3.2.2" // { - dependencies = [ - sources."underscore-1.9.1" - ]; - }) - (sources."azure-common-0.9.22" // { - dependencies = [ - sources."validator-9.4.1" - (sources."xml2js-0.4.19" // { - dependencies = [ - sources."xmlbuilder-9.0.7" - ]; - }) - ]; - }) - sources."azure-gallery-2.0.0-pre.18" - sources."azure-graph-2.2.0" - sources."azure-keyvault-3.0.4" - (sources."azure-monitoring-0.10.6" // { - dependencies = [ - sources."underscore-1.9.1" - ]; - }) - sources."azure-servicefabric-2.2.0" - (sources."azure-storage-2.10.3" // { - dependencies = [ - sources."readable-stream-2.0.6" - sources."sax-0.5.8" - sources."underscore-1.8.3" - sources."validator-9.4.1" - sources."xml2js-0.2.8" - sources."xmlbuilder-9.0.7" - ]; - }) - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - (sources."bl-1.1.2" // { - dependencies = [ - sources."readable-stream-2.0.6" - ]; - }) - sources."boom-2.10.1" - sources."brace-expansion-1.1.11" - sources."browserify-mime-1.2.9" - sources."buffer-equal-constant-time-1.0.1" - sources."buffer-from-1.1.1" - sources."caller-id-0.1.0" - sources."caseless-0.11.0" - sources."chalk-1.1.3" - sources."clone-1.0.4" - sources."colors-1.1.2" - sources."combined-stream-1.0.8" - sources."commander-1.0.4" - sources."concat-map-0.0.1" - (sources."concat-stream-1.6.2" // { - dependencies = [ - sources."process-nextick-args-2.0.1" - sources."readable-stream-2.3.6" - sources."safe-buffer-5.1.2" - sources."string_decoder-1.1.1" - ]; - }) - sources."core-util-is-1.0.2" - sources."cryptiles-2.0.5" - sources."ctype-0.5.2" - sources."cycle-1.0.3" - (sources."dashdash-1.14.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."date-utils-1.2.21" - sources."dateformat-1.0.2-1.2.3" - sources."deep-equal-1.0.1" - sources."defaults-1.0.3" - sources."delayed-stream-1.0.0" - sources."duplexer-0.1.1" - sources."easy-table-1.1.0" - sources."ecc-jsbn-0.1.2" - sources."ecdsa-sig-formatter-1.0.11" - sources."envconf-0.0.4" - sources."escape-string-regexp-1.0.5" - sources."event-stream-3.1.5" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."eyes-0.1.8" - sources."fast-deep-equal-2.0.1" - sources."fast-json-patch-0.5.6" - sources."fast-json-stable-stringify-2.0.0" - sources."fibers-1.0.15" - sources."forever-agent-0.6.1" - (sources."form-data-1.0.1" // { - dependencies = [ - sources."async-2.6.3" - ]; - }) - sources."from-0.1.7" - sources."fs.realpath-1.0.0" - sources."galaxy-0.1.12" - sources."generate-function-2.3.1" - sources."generate-object-property-1.2.0" - (sources."getpass-0.1.7" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."github-0.1.6" - sources."glob-7.1.4" - sources."har-schema-2.0.0" - (sources."har-validator-2.0.6" // { - dependencies = [ - sources."commander-2.20.0" - ]; - }) - sources."has-ansi-2.0.0" - sources."has-color-0.1.7" - sources."hash-base-3.0.4" - sources."hawk-3.1.3" - sources."hoek-2.16.3" - sources."http-basic-2.5.1" - sources."http-response-object-1.1.0" - sources."http-signature-1.1.1" - sources."i-0.3.6" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-buffer-1.1.6" - sources."is-my-ip-valid-1.0.0" - sources."is-my-json-valid-2.20.0" - sources."is-property-1.0.2" - sources."is-stream-1.1.0" - sources."is-typedarray-1.0.0" - sources."isarray-1.0.0" - sources."isstream-0.1.2" - sources."js2xmlparser-1.0.0" - sources."jsbn-0.1.1" - sources."json-edm-parser-0.1.2" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonlint-1.6.2" - sources."jsonminify-0.4.1" - sources."jsonparse-1.2.0" - sources."jsonpointer-4.0.1" - (sources."jsprim-1.4.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."jsrsasign-4.8.2" - sources."jwa-1.4.1" - sources."jws-3.2.2" - sources."jwt-decode-2.2.0" - sources."keypress-0.1.0" - (sources."kuduscript-1.0.16" // { - dependencies = [ - sources."commander-1.1.1" - sources."streamline-0.4.11" - ]; - }) - sources."lodash-4.17.15" - sources."map-stream-0.1.0" - sources."md5.js-1.3.4" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."mkdirp-0.5.1" - sources."moment-2.24.0" - (sources."ms-rest-2.5.3" // { - dependencies = [ - sources."through-2.3.8" - sources."tunnel-0.0.5" - ]; - }) - (sources."ms-rest-azure-2.6.0" // { - dependencies = [ - sources."async-2.6.0" - ]; - }) - sources."mute-stream-0.0.8" - sources."ncp-0.4.2" - sources."node-forge-0.6.23" - sources."node-uuid-1.4.8" - (sources."nomnom-1.8.1" // { - dependencies = [ - sources."ansi-styles-1.0.0" - sources."chalk-0.4.0" - sources."strip-ansi-0.1.1" - sources."underscore-1.6.0" - ]; - }) - sources."oauth-sign-0.8.2" - sources."omelette-0.3.2" - sources."once-1.4.0" - sources."openssl-wrapper-0.3.4" - sources."os-homedir-1.0.2" - sources."path-is-absolute-1.0.1" - sources."pause-stream-0.0.11" - sources."performance-now-2.1.0" - sources."pinkie-2.0.4" - sources."pinkie-promise-2.0.1" - sources."pkginfo-0.4.1" - sources."process-nextick-args-1.0.7" - sources."progress-1.1.8" - sources."promise-7.3.1" - (sources."prompt-0.2.14" // { - dependencies = [ - sources."async-0.2.10" - sources."colors-0.6.2" - (sources."winston-0.8.3" // { - dependencies = [ - sources."pkginfo-0.3.1" - ]; - }) - ]; - }) - sources."psl-1.2.0" - sources."punycode-1.4.1" - sources."qs-6.2.3" - sources."read-1.0.7" - (sources."readable-stream-1.0.34" // { - dependencies = [ - sources."isarray-0.0.1" - ]; - }) - (sources."request-2.88.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."aws-sign2-0.7.0" - sources."caseless-0.12.0" - sources."form-data-2.3.3" - sources."har-validator-5.1.3" - sources."http-signature-1.2.0" - sources."oauth-sign-0.9.0" - sources."qs-6.5.2" - sources."tough-cookie-2.4.3" - sources."tunnel-agent-0.6.0" - ]; - }) - sources."revalidator-0.1.8" - sources."rimraf-2.6.3" - sources."safe-buffer-5.2.0" - sources."safer-buffer-2.1.2" - sources."sax-1.2.4" - sources."sntp-1.0.9" - sources."source-map-0.1.43" - sources."split-0.2.10" - (sources."ssh-key-to-pem-0.11.0" // { - dependencies = [ - sources."asn1-0.1.11" - ]; - }) - (sources."sshpk-1.16.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."stack-trace-0.0.10" - sources."stream-combiner-0.0.4" - sources."streamline-0.10.17" - sources."streamline-streams-0.1.5" - sources."string_decoder-0.10.31" - sources."stringstream-0.0.6" - sources."strip-ansi-3.0.1" - sources."supports-color-2.0.0" - sources."sync-request-3.0.0" - sources."then-request-2.2.0" - sources."through-2.3.4" - sources."tough-cookie-2.3.4" - sources."tunnel-0.0.2" - sources."tunnel-agent-0.4.3" - sources."tweetnacl-0.14.5" - sources."typedarray-0.0.6" - sources."underscore-1.4.4" - (sources."uri-js-4.2.2" // { - dependencies = [ - sources."punycode-2.1.1" - ]; - }) - sources."user-home-2.0.0" - sources."util-deprecate-1.0.2" - (sources."utile-0.2.1" // { - dependencies = [ - sources."async-0.2.10" - ]; - }) - sources."uuid-3.3.2" - sources."validator-5.2.0" - (sources."verror-1.10.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."wcwidth-1.0.1" - (sources."winston-2.1.1" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - sources."pkginfo-0.3.1" - ]; - }) - sources."wordwrap-0.0.2" - sources."wrappy-1.0.2" - sources."xml2js-0.1.14" - sources."xmlbuilder-0.4.3" - sources."xmldom-0.1.27" - sources."xpath.js-1.1.0" - sources."xtend-4.0.2" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Microsoft Azure Cross Platform Command Line tool"; - homepage = https://github.com/Azure/azure-xplat-cli; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - bower = nodeEnv.buildNodePackage { - name = "bower"; - packageName = "bower"; - version = "1.8.8"; - src = fetchurl { - url = "https://registry.npmjs.org/bower/-/bower-1.8.8.tgz"; - sha512 = "1SrJnXnkP9soITHptSO+ahx3QKp3cVzn8poI6ujqc5SeOkg5iqM1pK9H+DSc2OQ8SnO0jC/NG4Ur/UIwy7574A=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "The browser package manager"; - homepage = http://bower.io/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - coffee-script = nodeEnv.buildNodePackage { - 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 = "fLeEhqwymYat/MpTPUjSKHVYYl0ec2mOyALEMLmzr5i1isuG+6jfI2j2d5oBO3VIzgUXgBVIcOT9uH1TFxBckw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Unfancy JavaScript"; - homepage = http://coffeescript.org/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - grunt-cli = nodeEnv.buildNodePackage { - name = "grunt-cli"; - packageName = "grunt-cli"; - version = "1.3.2"; - src = fetchurl { - url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.3.2.tgz"; - sha512 = "8OHDiZZkcptxVXtMfDxJvmN7MVJNE8L/yIcPb4HB7TlyFD1kDvjHrb62uhySsU14wJx9ORMnTuhRMQ40lH/orQ=="; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."arr-diff-4.0.0" - sources."arr-flatten-1.1.0" - sources."arr-union-3.1.0" - sources."array-each-1.0.1" - sources."array-slice-1.1.0" - sources."array-unique-0.3.2" - sources."assign-symbols-1.0.0" - sources."atob-2.1.2" - (sources."base-0.11.2" // { - dependencies = [ - sources."define-property-1.0.0" - ]; - }) - (sources."braces-2.3.2" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."cache-base-1.0.1" - (sources."class-utils-0.3.6" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - sources."collection-visit-1.0.0" - sources."component-emitter-1.3.0" - sources."copy-descriptor-0.1.1" - sources."debug-2.6.9" - sources."decode-uri-component-0.2.0" - sources."define-property-2.0.2" - sources."detect-file-1.0.0" - (sources."expand-brackets-2.1.4" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - sources."expand-tilde-2.0.2" - sources."extend-3.0.2" - (sources."extend-shallow-3.0.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - (sources."extglob-2.0.4" // { - dependencies = [ - sources."define-property-1.0.0" - sources."extend-shallow-2.0.1" - ]; - }) - (sources."fill-range-4.0.0" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - sources."findup-sync-2.0.0" - sources."fined-1.2.0" - sources."flagged-respawn-1.0.1" - sources."for-in-1.0.2" - sources."for-own-1.0.0" - sources."fragment-cache-0.2.1" - sources."get-value-2.0.6" - sources."global-modules-1.0.0" - sources."global-prefix-1.0.2" - sources."grunt-known-options-1.1.1" - sources."has-value-1.0.0" - (sources."has-values-1.0.0" // { - dependencies = [ - sources."kind-of-4.0.0" - ]; - }) - sources."homedir-polyfill-1.0.3" - sources."ini-1.3.5" - sources."interpret-1.1.0" - sources."is-absolute-1.0.0" - sources."is-accessor-descriptor-1.0.0" - sources."is-buffer-1.1.6" - sources."is-data-descriptor-1.0.0" - sources."is-descriptor-1.0.2" - sources."is-extendable-0.1.1" - sources."is-extglob-2.1.1" - sources."is-glob-3.1.0" - (sources."is-number-3.0.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."is-plain-object-2.0.4" - sources."is-relative-1.0.0" - sources."is-unc-path-1.0.0" - sources."is-windows-1.0.2" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isobject-3.0.1" - sources."kind-of-6.0.2" - sources."liftoff-2.5.0" - sources."make-iterator-1.0.1" - sources."map-cache-0.2.2" - sources."map-visit-1.0.0" - sources."micromatch-3.1.10" - (sources."mixin-deep-1.3.2" // { - dependencies = [ - sources."is-extendable-1.0.1" - ]; - }) - sources."ms-2.0.0" - sources."nanomatch-1.2.13" - sources."nopt-4.0.1" - (sources."object-copy-0.1.0" // { - dependencies = [ - sources."define-property-0.2.5" - sources."is-accessor-descriptor-0.1.6" - sources."is-data-descriptor-0.1.4" - (sources."is-descriptor-0.1.6" // { - dependencies = [ - sources."kind-of-5.1.0" - ]; - }) - sources."kind-of-3.2.2" - ]; - }) - sources."object-visit-1.0.1" - sources."object.defaults-1.1.0" - sources."object.map-1.0.1" - sources."object.pick-1.3.0" - sources."os-homedir-1.0.2" - sources."os-tmpdir-1.0.2" - sources."osenv-0.1.5" - sources."parse-filepath-1.0.2" - sources."parse-passwd-1.0.0" - sources."pascalcase-0.1.1" - sources."path-parse-1.0.6" - sources."path-root-0.1.1" - sources."path-root-regex-0.1.2" - sources."posix-character-classes-0.1.1" - sources."rechoir-0.6.2" - sources."regex-not-1.0.2" - sources."repeat-element-1.1.3" - sources."repeat-string-1.6.1" - sources."resolve-1.11.1" - sources."resolve-dir-1.0.1" - sources."resolve-url-0.2.1" - sources."ret-0.1.15" - sources."safe-regex-1.1.0" - (sources."set-value-2.0.1" // { - dependencies = [ - sources."extend-shallow-2.0.1" - ]; - }) - (sources."snapdragon-0.8.2" // { - dependencies = [ - sources."define-property-0.2.5" - sources."extend-shallow-2.0.1" - (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."kind-of-5.1.0" - ]; - }) - (sources."snapdragon-node-2.1.1" // { - dependencies = [ - sources."define-property-1.0.0" - ]; - }) - (sources."snapdragon-util-3.0.1" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."source-map-0.5.7" - sources."source-map-resolve-0.5.2" - sources."source-map-url-0.4.0" - sources."split-string-3.1.0" - (sources."static-extend-0.1.2" // { - dependencies = [ - sources."define-property-0.2.5" - (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."kind-of-5.1.0" - ]; - }) - (sources."to-object-path-0.3.0" // { - dependencies = [ - sources."kind-of-3.2.2" - ]; - }) - sources."to-regex-3.0.2" - sources."to-regex-range-2.1.1" - sources."unc-path-regex-0.1.2" - sources."union-value-1.0.1" - (sources."unset-value-1.0.0" // { - dependencies = [ - (sources."has-value-0.3.1" // { - dependencies = [ - sources."isobject-2.1.0" - ]; - }) - sources."has-values-0.1.4" - ]; - }) - sources."urix-0.1.0" - sources."use-3.1.1" - sources."v8flags-3.1.3" - sources."which-1.3.1" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "The grunt command line interface"; - homepage = "https://github.com/gruntjs/grunt-cli#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - node-gyp = nodeEnv.buildNodePackage { - name = "node-gyp"; - packageName = "node-gyp"; - version = "5.0.3"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp/-/node-gyp-5.0.3.tgz"; - sha512 = "z/JdtkFGUm0QaQUusvloyYuGDub3nUbOo5de1Fz57cM++osBTvQatBUSTlF1k/w8vFHPxxXW6zxGvkxXSpaBkQ=="; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."ajv-6.10.2" - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.5" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-1.1.11" - sources."caseless-0.12.0" - sources."chownr-1.1.2" - sources."code-point-at-1.1.0" - sources."combined-stream-1.0.8" - sources."concat-map-0.0.1" - sources."console-control-strings-1.1.0" - sources."core-util-is-1.0.2" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."delegates-1.0.0" - sources."ecc-jsbn-0.1.2" - sources."env-paths-1.0.0" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-minipass-1.2.6" - sources."fs.realpath-1.0.0" - sources."gauge-2.7.4" - sources."getpass-0.1.7" - sources."glob-7.1.4" - sources."graceful-fs-4.2.0" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."has-unicode-2.0.1" - sources."http-signature-1.2.0" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-fullwidth-code-point-1.0.0" - sources."is-typedarray-1.0.0" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsprim-1.4.1" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."minipass-2.3.5" - sources."minizlib-1.2.1" - sources."mkdirp-0.5.1" - sources."nopt-3.0.6" - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" - sources."oauth-sign-0.9.0" - sources."object-assign-4.1.1" - sources."once-1.4.0" - sources."path-is-absolute-1.0.1" - sources."performance-now-2.1.0" - sources."process-nextick-args-2.0.1" - sources."psl-1.2.0" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."readable-stream-2.3.6" - sources."request-2.88.0" - sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."semver-5.3.0" - sources."set-blocking-2.0.0" - sources."signal-exit-3.0.2" - sources."sshpk-1.16.1" - sources."string-width-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."tar-4.4.10" - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uri-js-4.2.2" - sources."util-deprecate-1.0.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - sources."which-1.3.1" - sources."wide-align-1.1.3" - sources."wrappy-1.0.2" - sources."yallist-3.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Node.js native addon build tool"; - homepage = "https://github.com/nodejs/node-gyp#readme"; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - node-gyp-build = nodeEnv.buildNodePackage { - name = "node-gyp-build"; - packageName = "node-gyp-build"; - version = "4.1.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.1.0.tgz"; - sha512 = "rGLv++nK20BG8gc0MzzcYe1Nl3p3mtwJ74Q2QD0HTEDKZ6NvOFSelY6s2QBPWIHRR8h7hpad0LiwajfClBJfNg=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Build tool and bindings loader for node-gyp that supports prebuilds"; - homepage = https://github.com/prebuild/node-gyp-build; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - node-pre-gyp = nodeEnv.buildNodePackage { - name = "node-pre-gyp"; - packageName = "node-pre-gyp"; - version = "0.13.0"; - src = fetchurl { - url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.13.0.tgz"; - sha512 = "Md1D3xnEne8b/HGVQkZZwV27WUi1ZRuZBij24TNaZwUPU3ZAFtvT6xxJGaUVillfmMKnn5oD1HoGsp2Ftik7SQ=="; - }; - dependencies = [ - sources."abbrev-1.1.1" - sources."ansi-regex-2.1.1" - sources."aproba-1.2.0" - sources."are-we-there-yet-1.1.5" - sources."balanced-match-1.0.0" - sources."brace-expansion-1.1.11" - sources."chownr-1.1.2" - sources."code-point-at-1.1.0" - sources."concat-map-0.0.1" - sources."console-control-strings-1.1.0" - sources."core-util-is-1.0.2" - sources."debug-3.2.6" - sources."deep-extend-0.6.0" - sources."delegates-1.0.0" - sources."detect-libc-1.0.3" - sources."fs-minipass-1.2.6" - sources."fs.realpath-1.0.0" - sources."gauge-2.7.4" - sources."glob-7.1.4" - sources."has-unicode-2.0.1" - sources."iconv-lite-0.4.24" - sources."ignore-walk-3.0.1" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."ini-1.3.5" - sources."is-fullwidth-code-point-1.0.0" - sources."isarray-1.0.0" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."minipass-2.3.5" - sources."minizlib-1.2.1" - sources."mkdirp-0.5.1" - sources."ms-2.1.2" - sources."needle-2.4.0" - sources."nopt-4.0.1" - sources."npm-bundled-1.0.6" - sources."npm-packlist-1.4.4" - sources."npmlog-4.1.2" - sources."number-is-nan-1.0.1" - 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."process-nextick-args-2.0.1" - (sources."rc-1.2.8" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."readable-stream-2.3.6" - sources."rimraf-2.6.3" - sources."safe-buffer-5.1.2" - sources."safer-buffer-2.1.2" - sources."sax-1.2.4" - sources."semver-5.7.0" - sources."set-blocking-2.0.0" - sources."signal-exit-3.0.2" - sources."string-width-1.0.2" - sources."string_decoder-1.1.1" - sources."strip-ansi-3.0.1" - sources."strip-json-comments-2.0.1" - sources."tar-4.4.10" - sources."util-deprecate-1.0.2" - sources."wide-align-1.1.3" - sources."wrappy-1.0.2" - sources."yallist-3.0.3" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Node.js native addon binary install tool"; - homepage = "https://github.com/mapbox/node-pre-gyp#readme"; - license = "BSD-3-Clause"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - pnpm = nodeEnv.buildNodePackage { - name = "pnpm"; - packageName = "pnpm"; - version = "3.6.0"; - src = fetchurl { - url = "https://registry.npmjs.org/pnpm/-/pnpm-3.6.0.tgz"; - sha512 = "tjBYCFDvnGdA/FHlOfLn4WZ2Iy1JO8GRFem0RkbtbKO91Z9Jz8v2oYQYkMspY7/7lCBbjQA8+eUatTUu3d6eqw=="; - }; - buildInputs = globalBuildInputs; - meta = { - description = "Fast, disk space efficient package manager"; - homepage = https://pnpm.js.org/; - license = "MIT"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - stf = nodeEnv.buildNodePackage { - name = "stf"; - packageName = "stf"; - version = "3.4.1"; - src = fetchurl { - url = "https://registry.npmjs.org/stf/-/stf-3.4.1.tgz"; - sha512 = "ddyn6GoWoboSze2SSRMKjDGu4i0z1xaQ0KN5BiQInAyeuIXGiZygZBxeJsO02GrQJ88rCb5i9JSR+qMwyBz6Bw=="; - }; - dependencies = [ - sources."@sailshq/lodash-3.10.3" - (sources."@slack/client-3.16.0" // { - dependencies = [ - sources."bluebird-3.5.5" - sources."request-2.76.0" - sources."url-join-0.0.1" - sources."ws-1.1.5" - ]; - }) - sources."@types/babel-types-7.0.7" - sources."@types/babylon-6.16.5" - sources."accepts-1.3.7" - sources."acorn-3.3.0" - (sources."acorn-globals-3.1.0" // { - dependencies = [ - sources."acorn-4.0.13" - ]; - }) - (sources."adbkit-2.11.1" // { - dependencies = [ - sources."bluebird-2.9.34" - sources."split-0.3.3" - ]; - }) - (sources."adbkit-apkreader-3.1.2" // { - dependencies = [ - sources."bluebird-3.5.5" - sources."debug-0.7.4" - ]; - }) - sources."adbkit-logcat-1.1.0" - (sources."adbkit-monkey-1.0.1" // { - dependencies = [ - sources."async-0.2.10" - ]; - }) - sources."after-0.8.2" - (sources."agent-base-2.1.1" // { - dependencies = [ - sources."semver-5.0.3" - ]; - }) - sources."ajv-6.10.2" - sources."align-text-0.1.4" - sources."ansi-regex-2.1.1" - sources."ansi-styles-2.2.1" - sources."append-field-1.0.0" - sources."argparse-1.0.10" - sources."array-flatten-1.1.1" - sources."array-parallel-0.1.3" - sources."array-series-0.1.5" - sources."arraybuffer.slice-0.0.7" - sources."asap-2.0.6" - sources."ascli-0.3.0" - sources."asn1-0.2.4" - sources."assert-plus-0.2.0" - sources."async-1.5.2" - sources."async-limiter-1.0.0" - sources."asynckit-0.4.0" - sources."aws-sdk-2.497.0" - sources."aws-sign2-0.6.0" - sources."aws4-1.8.0" - sources."babel-runtime-6.26.0" - sources."babel-types-6.26.0" - sources."babylon-6.18.0" - sources."backo2-1.0.2" - sources."backoff-2.5.0" - (sources."bagpipes-0.1.2" // { - dependencies = [ - sources."lodash-3.10.1" - ]; - }) - sources."balanced-match-1.0.0" - sources."base64-arraybuffer-0.1.5" - sources."base64-js-1.3.0" - sources."base64id-1.0.0" - sources."base64url-3.0.1" - sources."basic-auth-1.1.0" - sources."bcrypt-pbkdf-1.0.2" - sources."better-assert-1.0.2" - sources."bindings-1.2.1" - sources."blob-0.0.5" - sources."bluebird-2.11.0" - (sources."body-parser-1.19.0" // { - dependencies = [ - sources."qs-6.7.0" - ]; - }) - sources."boom-2.10.1" - sources."brace-expansion-1.1.11" - sources."buffer-4.9.1" - sources."buffer-crc32-0.2.13" - sources."buffer-equal-constant-time-1.0.1" - sources."buffer-from-1.1.1" - sources."bufferutil-1.3.0" - sources."bufferview-1.0.1" - sources."bunyan-1.8.12" - sources."busboy-0.2.14" - sources."bytebuffer-3.5.5" - sources."bytes-3.1.0" - sources."callsite-1.0.0" - sources."camelcase-1.2.1" - sources."caseless-0.11.0" - sources."center-align-0.1.3" - sources."chalk-1.1.3" - sources."chance-1.0.18" - sources."character-parser-2.2.0" - sources."clean-css-4.2.1" - sources."cliui-2.1.0" - sources."code-point-at-1.1.0" - sources."colors-1.0.3" - sources."colour-0.7.1" - sources."combined-stream-1.0.8" - sources."commander-2.20.0" - sources."component-bind-1.0.0" - sources."component-emitter-1.2.1" - sources."component-inherit-0.0.3" - sources."compressible-2.0.17" - (sources."compression-1.7.4" // { - dependencies = [ - sources."bytes-3.0.0" - ]; - }) - sources."concat-map-0.0.1" - (sources."concat-stream-1.6.2" // { - dependencies = [ - sources."readable-stream-2.3.6" - sources."string_decoder-1.1.1" - ]; - }) - sources."config-1.31.0" - sources."constantinople-3.1.2" - sources."content-disposition-0.5.3" - sources."content-type-1.0.4" - sources."convert-to-ecmascript-compatible-varname-0.1.5" - sources."cookie-0.3.1" - (sources."cookie-session-2.0.0-beta.3" // { - dependencies = [ - sources."debug-3.1.0" - sources."safe-buffer-5.1.1" - ]; - }) - sources."cookie-signature-1.0.6" - sources."cookiejar-2.1.2" - sources."cookies-0.7.1" - sources."core-js-2.6.9" - sources."core-util-is-1.0.2" - sources."cors-2.8.5" - sources."cross-spawn-4.0.2" - sources."cryptiles-2.0.5" - sources."csrf-3.1.0" - sources."csurf-1.10.0" - sources."cycle-1.0.3" - (sources."dashdash-1.14.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."debug-2.6.9" - sources."decamelize-1.2.0" - sources."deep-extend-0.4.2" - sources."delayed-stream-1.0.0" - sources."depd-1.1.2" - sources."deref-0.6.4" - sources."destroy-1.0.4" - sources."dicer-0.2.5" - sources."doctypes-1.1.0" - sources."drange-1.1.1" - (sources."dtrace-provider-0.8.7" // { - dependencies = [ - sources."nan-2.14.0" - ]; - }) - sources."ecc-jsbn-0.1.2" - sources."ecdsa-sig-formatter-1.0.11" - sources."ee-first-1.1.1" - sources."ejs-0.8.8" - sources."encodeurl-1.0.2" - sources."end-of-stream-1.4.1" - (sources."engine.io-3.3.2" // { - dependencies = [ - sources."debug-3.1.0" - sources."ws-6.1.4" - ]; - }) - (sources."engine.io-client-3.3.2" // { - dependencies = [ - sources."debug-3.1.0" - sources."ws-6.1.4" - ]; - }) - sources."engine.io-parser-2.1.3" - sources."error-ex-1.3.2" - sources."escape-html-1.0.3" - sources."escape-string-regexp-1.0.5" - sources."esprima-2.0.0" - sources."esutils-2.0.2" - sources."etag-1.8.1" - sources."eventemitter3-1.2.0" - sources."events-1.1.1" - (sources."execa-1.0.0" // { - dependencies = [ - sources."cross-spawn-6.0.5" - ]; - }) - (sources."express-4.17.1" // { - dependencies = [ - sources."cookie-0.4.0" - sources."proxy-addr-2.0.5" - sources."qs-6.7.0" - ]; - }) - (sources."express-validator-2.21.0" // { - dependencies = [ - sources."bluebird-3.4.7" - sources."lodash-4.16.6" - ]; - }) - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."eyes-0.1.8" - sources."faker-3.1.0" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - sources."fd-slicer-1.1.0" - sources."finalhandler-1.1.2" - sources."find-up-3.0.0" - (sources."follow-redirects-1.7.0" // { - dependencies = [ - sources."debug-3.2.6" - sources."ms-2.1.2" - ]; - }) - sources."forever-agent-0.6.1" - sources."form-data-2.1.4" - sources."formidable-1.2.1" - sources."forwarded-0.1.2" - sources."fresh-0.5.2" - sources."function-bind-1.1.1" - sources."generate-function-2.3.1" - sources."generate-object-property-1.2.0" - sources."get-caller-file-1.0.3" - sources."get-stream-4.1.0" - (sources."getpass-0.1.7" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."glob-6.0.4" - (sources."gm-1.23.1" // { - dependencies = [ - sources."debug-3.2.6" - sources."ms-2.1.2" - ]; - }) - sources."graceful-fs-4.2.0" - sources."graphlib-2.1.7" - sources."har-schema-2.0.0" - sources."har-validator-2.0.6" - sources."has-1.0.3" - sources."has-ansi-2.0.0" - (sources."has-binary2-1.0.3" // { - dependencies = [ - sources."isarray-2.0.1" - ]; - }) - sources."has-cors-1.1.0" - sources."hawk-3.1.3" - sources."highlight.js-8.2.0" - (sources."hipchatter-0.3.2" // { - dependencies = [ - sources."async-0.2.10" - ]; - }) - sources."hoek-2.16.3" - sources."hosted-git-info-2.7.1" - (sources."http-errors-1.7.2" // { - dependencies = [ - sources."inherits-2.0.3" - ]; - }) - (sources."http-proxy-1.17.0" // { - dependencies = [ - sources."eventemitter3-3.1.2" - ]; - }) - sources."http-signature-1.1.1" - sources."https-proxy-agent-1.0.0" - sources."iconv-lite-0.4.24" - sources."ieee754-1.1.8" - sources."in-publish-2.0.0" - sources."indexof-0.0.1" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."invert-kv-2.0.0" - sources."ipaddr.js-1.9.0" - sources."is-arrayish-0.2.1" - sources."is-buffer-1.1.6" - (sources."is-expression-3.0.0" // { - dependencies = [ - sources."acorn-4.0.13" - ]; - }) - sources."is-fullwidth-code-point-1.0.0" - sources."is-my-ip-valid-1.0.0" - sources."is-my-json-valid-2.20.0" - sources."is-promise-2.1.0" - sources."is-property-1.0.2" - sources."is-regex-1.0.4" - sources."is-stream-1.1.0" - sources."is-typedarray-1.0.0" - sources."is-utf8-0.2.1" - sources."isarray-1.0.0" - sources."isexe-2.0.0" - sources."isstream-0.1.2" - sources."jmespath-0.15.0" - sources."jpeg-turbo-0.4.0" - sources."js-base64-2.5.1" - sources."js-stringify-1.0.2" - sources."js-yaml-3.2.7" - sources."jsbn-0.1.1" - (sources."json-refs-2.1.7" // { - dependencies = [ - sources."esprima-4.0.1" - sources."js-yaml-3.13.1" - sources."punycode-2.1.1" - sources."uri-js-3.0.2" - ]; - }) - sources."json-schema-0.2.3" - sources."json-schema-faker-0.2.16" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - (sources."json5-1.0.1" // { - dependencies = [ - sources."minimist-1.2.0" - ]; - }) - sources."jsonpointer-4.0.1" - sources."jspath-0.3.4" - (sources."jsprim-1.4.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."jstransformer-1.0.0" - sources."jwa-1.4.1" - sources."jws-3.2.2" - sources."keygrip-1.0.3" - sources."kind-of-3.2.2" - sources."lazy-cache-1.0.4" - sources."lcid-2.0.0" - (sources."ldap-filter-0.2.2" // { - dependencies = [ - sources."assert-plus-0.1.5" - ]; - }) - (sources."ldapjs-1.0.2" // { - dependencies = [ - sources."asn1-0.2.3" - sources."assert-plus-1.0.0" - ]; - }) - sources."load-json-file-1.1.0" - sources."locate-path-3.0.0" - sources."lodash-4.17.15" - sources."lodash.get-4.4.2" - sources."lodash.isequal-4.5.0" - sources."long-2.4.0" - sources."longest-1.0.1" - sources."lru-cache-4.1.5" - (sources."machine-10.4.0" // { - dependencies = [ - sources."lodash-3.10.1" - ]; - }) - (sources."machinepack-http-2.4.0" // { - dependencies = [ - sources."lodash-3.10.1" - ]; - }) - (sources."machinepack-urls-4.1.0" // { - dependencies = [ - sources."lodash-3.10.1" - sources."machine-9.1.2" - sources."rttc-4.5.2" - (sources."switchback-1.1.3" // { - dependencies = [ - sources."lodash-2.4.2" - ]; - }) - ]; - }) - sources."map-age-cleaner-0.1.3" - (sources."markdown-serve-0.3.3" // { - dependencies = [ - sources."lodash-2.4.2" - ]; - }) - sources."marked-0.3.19" - sources."media-typer-0.3.0" - sources."mem-4.3.0" - sources."merge-descriptors-1.0.1" - sources."methods-1.1.2" - sources."mime-1.6.0" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."mimic-fn-2.1.0" - sources."minicap-prebuilt-2.3.0" - sources."minimatch-3.0.4" - sources."minimist-0.0.8" - sources."minitouch-prebuilt-1.2.0" - sources."mkdirp-0.5.1" - sources."moment-2.24.0" - sources."ms-2.0.0" - sources."multer-1.4.2" - sources."mustache-2.3.2" - sources."mv-2.1.1" - sources."my-local-ip-1.0.0" - sources."nan-2.4.0" - sources."native-promise-only-0.8.1" - sources."ncp-2.0.0" - sources."needle-1.6.0" - sources."negotiator-0.6.2" - sources."nice-try-1.0.5" - sources."node-forge-0.7.6" - sources."node-uuid-1.4.8" - sources."normalize-package-data-2.5.0" - sources."npm-run-path-2.0.2" - sources."number-is-nan-1.0.1" - sources."oauth-0.9.15" - sources."oauth-sign-0.8.2" - sources."object-assign-4.1.1" - sources."object-component-0.0.3" - sources."object-hash-0.3.0" - sources."on-finished-2.3.0" - sources."on-headers-1.0.2" - sources."once-1.4.0" - sources."openid-2.0.6" - sources."options-0.0.6" - sources."optjs-3.2.2" - sources."os-locale-3.1.0" - sources."os-tmpdir-1.0.2" - sources."p-defer-1.0.0" - sources."p-finally-1.0.0" - sources."p-is-promise-2.1.0" - sources."p-limit-2.2.0" - sources."p-locate-3.0.0" - sources."p-try-2.2.0" - sources."parse-json-2.2.0" - sources."parseqs-0.0.5" - sources."parseuri-0.0.5" - sources."parseurl-1.3.3" - sources."passport-0.3.2" - sources."passport-oauth2-1.5.0" - (sources."passport-saml-0.15.0" // { - dependencies = [ - sources."lodash-3.2.0" - sources."xmlbuilder-2.5.2" - ]; - }) - sources."passport-strategy-1.0.0" - sources."path-exists-3.0.0" - sources."path-is-absolute-1.0.1" - sources."path-key-2.0.1" - sources."path-loader-1.0.10" - sources."path-parse-1.0.6" - sources."path-to-regexp-0.1.7" - sources."path-type-1.1.0" - sources."pause-0.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."pipeworks-1.3.1" - sources."pkginfo-0.4.1" - sources."please-update-dependencies-2.0.0" - sources."precond-0.2.3" - sources."process-nextick-args-2.0.1" - sources."promise-7.3.1" - sources."protobufjs-3.8.2" - (sources."proxy-addr-1.1.5" // { - dependencies = [ - sources."ipaddr.js-1.4.0" - ]; - }) - sources."pseudomap-1.0.2" - sources."psl-1.2.0" - sources."pug-2.0.4" - sources."pug-attrs-2.0.4" - sources."pug-code-gen-2.0.2" - sources."pug-error-1.3.3" - sources."pug-filters-3.1.1" - sources."pug-lexer-4.1.0" - sources."pug-linker-3.0.6" - sources."pug-load-2.0.12" - sources."pug-parser-5.0.1" - sources."pug-runtime-2.0.5" - sources."pug-strip-comments-1.0.4" - sources."pug-walk-1.1.8" - sources."pump-3.0.0" - sources."punycode-1.4.1" - sources."q-1.1.2" - sources."qs-6.3.2" - sources."querystring-0.2.0" - sources."randexp-0.4.9" - sources."random-bytes-1.0.0" - sources."range-parser-1.2.1" - sources."raw-body-2.4.0" - sources."read-pkg-1.1.0" - (sources."read-pkg-up-1.0.1" // { - dependencies = [ - sources."find-up-1.1.2" - sources."path-exists-2.1.0" - ]; - }) - (sources."readable-stream-1.1.14" // { - dependencies = [ - sources."isarray-0.0.1" - ]; - }) - sources."regenerator-runtime-0.11.1" - sources."repeat-string-1.6.1" - (sources."request-2.88.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - sources."aws-sign2-0.7.0" - sources."caseless-0.12.0" - sources."form-data-2.3.3" - sources."har-validator-5.1.3" - sources."http-signature-1.2.0" - sources."oauth-sign-0.9.0" - sources."qs-6.5.2" - sources."tough-cookie-2.4.3" - sources."tunnel-agent-0.6.0" - ]; - }) - sources."request-progress-2.0.1" - sources."require-directory-2.1.1" - sources."require-main-filename-1.0.1" - sources."requires-port-1.0.0" - sources."resolve-1.11.1" - sources."ret-0.2.2" - sources."rethinkdb-2.3.3" - sources."retry-0.9.0" - sources."right-align-0.1.3" - sources."rimraf-2.4.5" - sources."rndm-1.2.0" - (sources."rttc-7.4.0" // { - dependencies = [ - sources."lodash-3.10.1" - ]; - }) - sources."safe-buffer-5.1.2" - sources."safe-json-stringify-1.2.0" - sources."safer-buffer-2.1.2" - sources."sax-1.2.1" - sources."semver-5.7.0" - (sources."send-0.17.1" // { - dependencies = [ - sources."ms-2.1.1" - ]; - }) - (sources."serve-favicon-2.5.0" // { - dependencies = [ - sources."ms-2.1.1" - sources."safe-buffer-5.1.1" - ]; - }) - sources."serve-static-1.14.1" - sources."set-blocking-2.0.0" - sources."setprototypeof-1.1.1" - sources."shebang-command-1.2.0" - sources."shebang-regex-1.0.0" - sources."signal-exit-3.0.2" - sources."slash-1.0.0" - sources."sntp-1.0.9" - (sources."socket.io-2.2.0" // { - dependencies = [ - sources."debug-4.1.1" - sources."ms-2.1.2" - ]; - }) - sources."socket.io-adapter-1.1.1" - (sources."socket.io-client-2.2.0" // { - dependencies = [ - sources."debug-3.1.0" - ]; - }) - (sources."socket.io-parser-3.3.0" // { - dependencies = [ - sources."debug-3.1.0" - sources."isarray-2.0.1" - ]; - }) - sources."source-map-0.6.1" - sources."spdx-correct-3.1.0" - sources."spdx-exceptions-2.2.0" - sources."spdx-expression-parse-3.0.0" - sources."spdx-license-ids-3.0.5" - sources."split-1.0.1" - sources."sprintf-js-1.0.3" - (sources."sshpk-1.16.1" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."stack-trace-0.0.10" - sources."statuses-1.5.0" - sources."stf-appstore-db-1.0.0" - sources."stf-browser-db-1.0.2" - sources."stf-device-db-1.2.0" - (sources."stf-syrup-1.0.0" // { - dependencies = [ - sources."bluebird-1.1.1" - sources."lodash-2.4.2" - ]; - }) - sources."stf-wiki-1.0.0" - sources."streamsearch-0.1.2" - (sources."string-width-2.1.1" // { - dependencies = [ - sources."ansi-regex-3.0.0" - sources."is-fullwidth-code-point-2.0.0" - sources."strip-ansi-4.0.0" - ]; - }) - sources."string_decoder-0.10.31" - sources."stringstream-0.0.6" - sources."strip-ansi-3.0.1" - sources."strip-bom-2.0.0" - sources."strip-eof-1.0.0" - (sources."superagent-3.8.3" // { - dependencies = [ - sources."debug-3.2.6" - sources."form-data-2.5.0" - sources."ms-2.1.2" - sources."qs-6.7.0" - sources."readable-stream-2.3.6" - sources."string_decoder-1.1.1" - ]; - }) - sources."supports-color-2.0.0" - sources."swagger-express-mw-0.7.0" - sources."swagger-methods-1.0.8" - (sources."swagger-node-runner-0.7.3" // { - dependencies = [ - sources."esprima-4.0.1" - sources."js-yaml-3.13.1" - sources."lodash-3.10.1" - sources."qs-6.7.0" - ]; - }) - sources."swagger-schema-official-2.0.0-bab6bed" - (sources."sway-1.0.0" // { - dependencies = [ - sources."esprima-4.0.1" - sources."isarray-0.0.1" - sources."js-yaml-3.13.1" - sources."path-to-regexp-1.7.0" - ]; - }) - sources."switchback-2.0.5" - (sources."temp-0.8.3" // { - dependencies = [ - sources."rimraf-2.2.8" - ]; - }) - sources."throttleit-1.0.0" - sources."through-2.3.8" - sources."to-array-0.1.4" - sources."to-fast-properties-1.0.3" - sources."toidentifier-1.0.0" - sources."token-stream-0.0.1" - sources."tough-cookie-2.3.4" - (sources."transliteration-1.6.6" // { - dependencies = [ - sources."ansi-regex-3.0.0" - sources."cliui-4.1.0" - sources."strip-ansi-4.0.0" - sources."yargs-12.0.5" - ]; - }) - sources."tsscmp-1.0.6" - sources."tunnel-agent-0.4.3" - sources."tweetnacl-0.14.5" - sources."type-is-1.6.18" - sources."typedarray-0.0.6" - (sources."uglify-js-2.8.29" // { - dependencies = [ - sources."source-map-0.5.7" - sources."yargs-3.10.0" - ]; - }) - sources."uglify-to-browserify-1.0.2" - sources."uid-safe-2.1.5" - sources."uid2-0.0.3" - sources."ultron-1.0.2" - sources."unpipe-1.0.0" - (sources."uri-js-4.2.2" // { - dependencies = [ - sources."punycode-2.1.1" - ]; - }) - (sources."url-0.10.3" // { - dependencies = [ - sources."punycode-1.3.2" - ]; - }) - sources."url-join-1.1.0" - sources."utf-8-validate-1.2.2" - sources."util-deprecate-1.0.2" - sources."utils-merge-1.0.1" - sources."uuid-3.3.2" - sources."validate-npm-package-license-3.0.4" - sources."validator-5.7.0" - sources."vary-1.1.2" - (sources."vasync-1.6.4" // { - dependencies = [ - sources."extsprintf-1.2.0" - sources."verror-1.6.0" - ]; - }) - (sources."verror-1.10.0" // { - dependencies = [ - sources."assert-plus-1.0.0" - ]; - }) - sources."void-elements-2.0.1" - sources."which-1.3.1" - sources."which-module-2.0.0" - sources."window-size-0.1.0" - (sources."winston-2.4.4" // { - dependencies = [ - sources."async-1.0.0" - ]; - }) - sources."with-5.1.1" - sources."wordwrap-0.0.2" - (sources."wrap-ansi-2.1.0" // { - dependencies = [ - sources."string-width-1.0.2" - ]; - }) - sources."wrappy-1.0.2" - (sources."ws-3.3.3" // { - dependencies = [ - sources."ultron-1.1.1" - ]; - }) - (sources."xml-crypto-0.8.5" // { - dependencies = [ - sources."xmldom-0.1.19" - ]; - }) - (sources."xml-encryption-0.7.4" // { - dependencies = [ - sources."async-0.2.10" - sources."node-forge-0.2.24" - ]; - }) - sources."xml2js-0.4.19" - sources."xmlbuilder-9.0.7" - sources."xmldom-0.1.27" - sources."xmlhttprequest-ssl-1.5.5" - sources."xpath-0.0.5" - sources."xpath.js-1.1.0" - sources."xtend-4.0.2" - sources."y18n-4.0.0" - sources."yallist-2.1.2" - (sources."yargs-6.6.0" // { - dependencies = [ - sources."camelcase-3.0.0" - sources."cliui-3.2.0" - sources."invert-kv-1.0.0" - sources."lcid-1.0.0" - sources."os-locale-1.4.0" - sources."string-width-1.0.2" - sources."which-module-1.0.0" - sources."y18n-3.2.1" - sources."yargs-parser-4.2.1" - ]; - }) - (sources."yargs-parser-11.1.1" // { - dependencies = [ - sources."camelcase-5.3.1" - ]; - }) - sources."yauzl-2.10.0" - sources."yeast-0.1.2" - (sources."z-schema-3.25.1" // { - dependencies = [ - sources."validator-10.11.0" - ]; - }) - (sources."zmq-2.15.3" // { - dependencies = [ - sources."nan-2.3.5" - ]; - }) - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Smartphone Test Farm"; - homepage = "https://github.com/openstf/stf#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; - titanium = nodeEnv.buildNodePackage { - name = "titanium"; - packageName = "titanium"; - version = "5.2.1"; - src = fetchurl { - url = "https://registry.npmjs.org/titanium/-/titanium-5.2.1.tgz"; - sha512 = "tltnQ41NBjItM+ELsGL2jpaEnsMMeziZe0sGKtUxhwM1tndh7GFMfu2lpDqAFdMLwj+ZplRmlK0kKP4++68rrA=="; - }; - dependencies = [ - sources."adm-zip-0.4.13" - sources."ajv-6.10.2" - sources."asn1-0.2.4" - sources."assert-plus-1.0.0" - sources."async-2.6.1" - sources."asynckit-0.4.0" - sources."aws-sign2-0.7.0" - sources."aws4-1.8.0" - sources."balanced-match-1.0.0" - sources."bcrypt-pbkdf-1.0.2" - sources."brace-expansion-1.1.11" - sources."buffer-from-1.1.1" - sources."caseless-0.12.0" - sources."colors-1.3.3" - sources."combined-stream-1.0.8" - sources."commander-2.19.0" - sources."concat-map-0.0.1" - sources."core-util-is-1.0.2" - sources."cycle-1.0.3" - sources."dashdash-1.14.1" - sources."delayed-stream-1.0.0" - sources."diff-3.5.0" - sources."ecc-jsbn-0.1.2" - sources."extend-3.0.2" - sources."extsprintf-1.3.0" - sources."eyes-0.1.8" - sources."fast-deep-equal-2.0.1" - sources."fast-json-stable-stringify-2.0.0" - (sources."fields-0.1.24" // { - dependencies = [ - sources."colors-0.6.2" - ]; - }) - sources."forever-agent-0.6.1" - sources."form-data-2.3.3" - sources."fs-extra-7.0.1" - sources."fs.realpath-1.0.0" - sources."getpass-0.1.7" - sources."glob-7.1.4" - sources."graceful-fs-4.2.0" - sources."har-schema-2.0.0" - sources."har-validator-5.1.3" - sources."http-signature-1.2.0" - sources."humanize-0.0.9" - sources."inflight-1.0.6" - sources."inherits-2.0.4" - sources."is-typedarray-1.0.0" - sources."isstream-0.1.2" - sources."jsbn-0.1.1" - sources."json-schema-0.2.3" - sources."json-schema-traverse-0.4.1" - sources."json-stringify-safe-5.0.1" - sources."jsonfile-4.0.0" - sources."jsprim-1.4.1" - sources."keypress-0.2.1" - sources."lodash-4.17.15" - sources."longjohn-0.2.12" - sources."mime-db-1.40.0" - sources."mime-types-2.1.24" - sources."minimatch-3.0.4" - sources."minimist-0.0.10" - sources."moment-2.22.2" - (sources."node-appc-0.2.49" // { - dependencies = [ - sources."semver-5.5.1" - sources."temp-0.8.3" - ]; - }) - sources."oauth-sign-0.9.0" - sources."once-1.4.0" - sources."optimist-0.6.1" - sources."os-tmpdir-1.0.2" - sources."path-is-absolute-1.0.1" - sources."performance-now-2.1.0" - sources."pkginfo-0.3.1" - sources."psl-1.2.0" - sources."punycode-2.1.1" - sources."qs-6.5.2" - sources."request-2.88.0" - sources."rimraf-2.2.8" - sources."safe-buffer-5.2.0" - sources."safer-buffer-2.1.2" - sources."semver-5.6.0" - sources."source-map-0.6.1" - sources."source-map-support-0.5.12" - sources."sprintf-0.1.5" - sources."sshpk-1.16.1" - sources."stack-trace-0.0.10" - (sources."temp-0.9.0" // { - dependencies = [ - sources."rimraf-2.6.3" - ]; - }) - (sources."tough-cookie-2.4.3" // { - dependencies = [ - sources."punycode-1.4.1" - ]; - }) - sources."tunnel-agent-0.6.0" - sources."tweetnacl-0.14.5" - sources."uglify-js-3.4.10" - sources."universalify-0.1.2" - sources."uri-js-4.2.2" - sources."uuid-3.3.2" - sources."verror-1.10.0" - (sources."winston-1.1.2" // { - dependencies = [ - sources."async-1.0.0" - sources."colors-1.0.3" - ]; - }) - sources."wordwrap-0.0.3" - sources."wrappy-1.0.2" - sources."xmldom-0.1.27" - ]; - buildInputs = globalBuildInputs; - meta = { - description = "Appcelerator Titanium Command line"; - homepage = "https://github.com/appcelerator/titanium#readme"; - license = "Apache-2.0"; - }; - production = true; - bypassCache = true; - reconstructLock = true; - }; -} \ No newline at end of file diff --git a/pkgs/development/web/nodejs/v8.nix b/pkgs/development/web/nodejs/v8.nix deleted file mode 100644 index 90d88215d3f..00000000000 --- a/pkgs/development/web/nodejs/v8.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ callPackage, enableNpm ? true }: - -let - buildNodejs = callPackage ./nodejs.nix {}; -in - buildNodejs { - inherit enableNpm; - version = "8.16.0"; - sha256 = "0h3k5y51fyysqnqb8n5v5zxga937pipag49xzx6xr9b82phfh59m"; - } diff --git a/pkgs/development/web/remarkjs/nodepkgs.nix b/pkgs/development/web/remarkjs/nodepkgs.nix index 32c24174b5e..10fbc98d51a 100644 --- a/pkgs/development/web/remarkjs/nodepkgs.nix +++ b/pkgs/development/web/remarkjs/nodepkgs.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../node-packages/node-env.nix { diff --git a/pkgs/misc/base16-builder/node-packages.nix b/pkgs/misc/base16-builder/node-packages.nix index 9df36bde4b0..e7b4f81f7e0 100644 --- a/pkgs/misc/base16-builder/node-packages.nix +++ b/pkgs/misc/base16-builder/node-packages.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../development/node-packages/node-env.nix { diff --git a/pkgs/servers/web-apps/cryptpad/node-packages.nix b/pkgs/servers/web-apps/cryptpad/node-packages.nix index cae300a53f4..75e28e2382e 100644 --- a/pkgs/servers/web-apps/cryptpad/node-packages.nix +++ b/pkgs/servers/web-apps/cryptpad/node-packages.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-6_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../../development/node-packages/node-env.nix { @@ -14,4 +14,4 @@ in import ./node-packages-generated.nix { inherit (pkgs) fetchurl fetchgit; inherit nodeEnv; -} \ No newline at end of file +} diff --git a/pkgs/tools/networking/airfield/node.nix b/pkgs/tools/networking/airfield/node.nix index 0983d3e127b..8fe405e1b3e 100644 --- a/pkgs/tools/networking/airfield/node.nix +++ b/pkgs/tools/networking/airfield/node.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../../development/node-packages/node-env.nix { diff --git a/pkgs/tools/package-management/nixui/nixui.nix b/pkgs/tools/package-management/nixui/nixui.nix index 0983d3e127b..8fe405e1b3e 100644 --- a/pkgs/tools/package-management/nixui/nixui.nix +++ b/pkgs/tools/package-management/nixui/nixui.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../../development/node-packages/node-env.nix { diff --git a/pkgs/tools/security/bitwarden-cli/node-packages.nix b/pkgs/tools/security/bitwarden-cli/node-packages.nix index 6fb6421eb2d..ea2be5965aa 100644 --- a/pkgs/tools/security/bitwarden-cli/node-packages.nix +++ b/pkgs/tools/security/bitwarden-cli/node-packages.nix @@ -2,7 +2,7 @@ {pkgs ? import { inherit system; - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-8_x"}: + }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-10_x"}: let nodeEnv = import ../../../development/node-packages/node-env.nix { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e80aff150fd..f5b9a1b6bde 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4313,9 +4313,6 @@ in nodejs-slim = nodejs-slim-10_x; - nodejs-8_x = callPackage ../development/web/nodejs/v8.nix {}; - nodejs-slim-8_x = callPackage ../development/web/nodejs/v8.nix { enableNpm = false; }; - nodejs-10_x = callPackage ../development/web/nodejs/v10.nix { openssl = openssl_1_1; }; @@ -4350,10 +4347,6 @@ in nodejs = pkgs.nodejs-10_x; }); - nodePackages_8_x = dontRecurseIntoAttrs (callPackage ../development/node-packages/default-v8.nix { - nodejs = pkgs.nodejs-8_x; - }); - nodePackages = nodePackages_10_x; now-cli = callPackage ../development/web/now-cli {}; @@ -16537,7 +16530,7 @@ in iosevka = callPackage ../data/fonts/iosevka { - nodejs = nodejs-8_x; + nodejs = nodejs-10_x; }; iosevka-bin = callPackage ../data/fonts/iosevka/bin.nix {}; From 7d16cd787d70824907d0a311621e6776e35e8f72 Mon Sep 17 00:00:00 2001 From: Wael Nasreddine Date: Thu, 1 Aug 2019 17:55:34 -0700 Subject: [PATCH 1392/1611] pythonPackages.pynamodb: init at 3.4.1 (#65759) --- .../python-modules/pynamodb/default.nix | 33 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/development/python-modules/pynamodb/default.nix diff --git a/pkgs/development/python-modules/pynamodb/default.nix b/pkgs/development/python-modules/pynamodb/default.nix new file mode 100644 index 00000000000..e7cd0872c76 --- /dev/null +++ b/pkgs/development/python-modules/pynamodb/default.nix @@ -0,0 +1,33 @@ +{ lib +, buildPythonPackage +, botocore +, fetchPypi +, mock +, mypy +, python-dateutil +, pytest +, requests +}: + +buildPythonPackage rec { + pname = "pynamodb"; + version = "3.4.1"; + + src = fetchPypi { + inherit pname version; + sha256 = "1cwgqvpqn59y3zq4wv35m1v4jrh3ih6zbyv30g5nxbw13vddxr92"; + }; + + propagatedBuildInputs = [ python-dateutil botocore ]; + checkInputs = [ requests mock pytest mypy ]; + + meta = with lib; { + description = "A Pythonic interface for Amazon’s DynamoDB that supports Python 2 and 3."; + longDescription = '' + DynamoDB is a great NoSQL service provided by Amazon, but the API is + verbose. PynamoDB presents you with a simple, elegant API. + ''; + homepage = "http://jlafon.io/pynamodb.html"; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7bc682e3da5..180de8ed8a5 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -129,6 +129,8 @@ in { py3to2 = callPackage ../development/python-modules/3to2 { }; + pynamodb = callPackage ../development/python-modules/pynamodb { }; + absl-py = callPackage ../development/python-modules/absl-py { }; adb-homeassistant = callPackage ../development/python-modules/adb-homeassistant { }; From cd3718281f9aec370707c86a4e86612926a0e839 Mon Sep 17 00:00:00 2001 From: Lily Ballard Date: Thu, 1 Aug 2019 21:32:08 -0700 Subject: [PATCH 1393/1611] ripgrep: 11.0.1 -> 11.0.2 --- pkgs/tools/text/ripgrep/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/ripgrep/default.nix b/pkgs/tools/text/ripgrep/default.nix index 311767a786f..4fa90441bdb 100644 --- a/pkgs/tools/text/ripgrep/default.nix +++ b/pkgs/tools/text/ripgrep/default.nix @@ -5,16 +5,16 @@ rustPlatform.buildRustPackage rec { pname = "ripgrep"; - version = "11.0.1"; + version = "11.0.2"; src = fetchFromGitHub { owner = "BurntSushi"; repo = pname; rev = version; - sha256 = "0vak82d4vyw0w8agswbyxa6g3zs2h9mxm2xjw0xs9qccvmi7whbb"; + sha256 = "1iga3320mgi7m853la55xip514a3chqsdi1a1rwv25lr9b1p7vd3"; }; - cargoSha256 = "1k1wg27p7w8b3cgygnkr6yhsc4hpnvrpa227s612vy2zfcmgb1kx"; + cargoSha256 = "11477l4l1y55klw5dp2kbsnv989vdz1547ml346hcfbkzv7m450v"; cargoBuildFlags = stdenv.lib.optional withPCRE2 "--features pcre2"; From 58e584ccd36f6eea3b75bd53509a3b5705818279 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 00:00:00 -0500 Subject: [PATCH 1394/1611] dsvpn: init at 0.1.0 --- .../applications/networking/dsvpn/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/applications/networking/dsvpn/default.nix diff --git a/pkgs/applications/networking/dsvpn/default.nix b/pkgs/applications/networking/dsvpn/default.nix new file mode 100644 index 00000000000..68198ae14e2 --- /dev/null +++ b/pkgs/applications/networking/dsvpn/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub }: + +stdenv.mkDerivation rec { + pname = "dsvpn"; + version = "0.1.0"; + + src = fetchFromGitHub { + owner = "jedisct1"; + repo = pname; + rev = version; + sha256 = "1g747197zpg83ba9l9vxg8m3jv13wcprhnyr8asdxq745kzmynsr"; + }; + + installPhase = '' + runHook preInstall + + install -Dm755 -t $out/bin dsvpn + + runHook postInstall + ''; + + meta = with stdenv.lib; { + description = "A Dead Simple VPN"; + homepage = "https://github.com/jedisct1/dsvpn"; + license = licenses.mit; + maintainers = [ maintainers.marsam ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f5b9a1b6bde..43463981396 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1482,6 +1482,8 @@ in gtk = gtk3; }; + dsvpn = callPackage ../applications/networking/dsvpn { }; + dtools = callPackage ../development/tools/dtools { }; dtrx = callPackage ../tools/compression/dtrx { }; From b5f09b347db63009d8b5ceeb85fb3b8f9a3d4e0e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 00:47:53 -0500 Subject: [PATCH 1395/1611] postgresqlPackages.timescaledb: 1.4.0 -> 1.4.1 --- pkgs/servers/sql/postgresql/ext/timescaledb.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix index c77c01f8d20..6997b5b834a 100644 --- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix +++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { name = "timescaledb-${version}"; - version = "1.4.0"; + version = "1.4.1"; nativeBuildInputs = [ cmake ]; buildInputs = [ postgresql openssl ]; @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { owner = "timescale"; repo = "timescaledb"; rev = "refs/tags/${version}"; - sha256 = "0xjl3pdm36pksbkhl44kixqkfv8qpdm4frfwxv0p4vvjmlhslz48"; + sha256 = "1gbca0fyaxjkwijdp2ah4iykwq5xabz9kkf8ak76sif4lz64y54b"; }; cmakeFlags = [ "-DSEND_TELEMETRY_DEFAULT=OFF" ]; From 8ebe63c2460056a95ecf902a5b3ff98b4f8c431a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 00:49:52 -0500 Subject: [PATCH 1396/1611] postgresqlPackages.timescaledb: add marsam as maintainer --- pkgs/servers/sql/postgresql/ext/timescaledb.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/sql/postgresql/ext/timescaledb.nix b/pkgs/servers/sql/postgresql/ext/timescaledb.nix index 6997b5b834a..77da47b00e0 100644 --- a/pkgs/servers/sql/postgresql/ext/timescaledb.nix +++ b/pkgs/servers/sql/postgresql/ext/timescaledb.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Scales PostgreSQL for time-series data via automatic partitioning across time and space"; homepage = https://www.timescale.com/; - maintainers = with maintainers; [ volth ]; + maintainers = with maintainers; [ volth marsam ]; platforms = postgresql.meta.platforms; license = licenses.asl20; }; From 18c515ac8022ce7a973ce18d272abc409c4c66a6 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 00:55:07 -0500 Subject: [PATCH 1397/1611] rubocop: 0.73.0 -> 0.74.0 --- pkgs/development/tools/rubocop/Gemfile.lock | 2 +- pkgs/development/tools/rubocop/gemset.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/rubocop/Gemfile.lock b/pkgs/development/tools/rubocop/Gemfile.lock index 5d18d344281..df5bee57be6 100644 --- a/pkgs/development/tools/rubocop/Gemfile.lock +++ b/pkgs/development/tools/rubocop/Gemfile.lock @@ -7,7 +7,7 @@ GEM parser (2.6.3.0) ast (~> 2.4.0) rainbow (3.0.0) - rubocop (0.73.0) + rubocop (0.74.0) jaro_winkler (~> 1.5.1) parallel (~> 1.10) parser (>= 2.6) diff --git a/pkgs/development/tools/rubocop/gemset.nix b/pkgs/development/tools/rubocop/gemset.nix index 9eaa50eff95..892d0d74d7b 100644 --- a/pkgs/development/tools/rubocop/gemset.nix +++ b/pkgs/development/tools/rubocop/gemset.nix @@ -56,10 +56,10 @@ platforms = []; source = { remotes = ["https://rubygems.org"]; - sha256 = "1b5zc8xaqb5krchjrjqj7sc205awmnpksc4ng0rbckd6xcbr7n0f"; + sha256 = "0wpyass9qb2wvq8zsc7wdzix5xy2ldiv66wnx8mwwprz2dcvzayk"; type = "gem"; }; - version = "0.73.0"; + version = "0.74.0"; }; ruby-progressbar = { groups = ["default"]; From 8b72021519b126ce325d52fc3d3054e3294944c8 Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Fri, 2 Aug 2019 06:07:42 +0000 Subject: [PATCH 1398/1611] prometheus-pushgateway: remove myself from list of maintainers --- pkgs/servers/monitoring/prometheus/pushgateway.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix index 3c383591386..1c00f734c19 100644 --- a/pkgs/servers/monitoring/prometheus/pushgateway.nix +++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix @@ -43,7 +43,7 @@ buildGoPackage rec { description = "Allows ephemeral and batch jobs to expose metrics to Prometheus"; homepage = https://github.com/prometheus/pushgateway; license = licenses.asl20; - maintainers = with maintainers; [ benley fpletz ivan ]; + maintainers = with maintainers; [ benley fpletz ]; platforms = platforms.unix; }; } From bd9a7131a15e45c1d3668c0817f9d2181e9b35cc Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 25 Jul 2019 17:01:07 +0000 Subject: [PATCH 1399/1611] ocamlPackages.lambdasoup: init at 0.6.3 --- .../ocaml-modules/lambdasoup/default.nix | 23 +++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 pkgs/development/ocaml-modules/lambdasoup/default.nix diff --git a/pkgs/development/ocaml-modules/lambdasoup/default.nix b/pkgs/development/ocaml-modules/lambdasoup/default.nix new file mode 100644 index 00000000000..b4980240c90 --- /dev/null +++ b/pkgs/development/ocaml-modules/lambdasoup/default.nix @@ -0,0 +1,23 @@ +{ lib, fetchFromGitHub, buildDunePackage, markup }: + +buildDunePackage rec { + pname = "lambdasoup"; + version = "0.6.3"; # NB: double-check the license when updating + + src = fetchFromGitHub { + owner = "aantron"; + repo = pname; + rev = version; + sha256 = "1w4zp3vswijzvrx0c3fv269ncqwnvvrzc46629nnwm9shwv07vmv"; + }; + + propagatedBuildInputs = [ markup ]; + + meta = { + description = "Functional HTML scraping and rewriting with CSS in OCaml"; + homepage = "https://aantron.github.io/lambdasoup/"; + license = lib.licenses.bsd2; + maintainers = [ lib.maintainers.vbgl ]; + }; + +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 949c5b6a308..fcb9a61b0f5 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -376,6 +376,8 @@ let lacaml = callPackage ../development/ocaml-modules/lacaml { }; + lambdasoup = callPackage ../development/ocaml-modules/lambdasoup { }; + lambdaTerm-1_6 = callPackage ../development/ocaml-modules/lambda-term/1.6.nix { lwt = lwt2; }; lambdaTerm = if lib.versionOlder "4.02" ocaml.version From 0d70d4a8b836d3848b62b56b91e845aa5254c78e Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 25 Jul 2019 16:24:18 +0000 Subject: [PATCH 1400/1611] ocamlPackages.merlin_extend-0.3 -> merlin-extend-0.4 --- pkgs/development/compilers/reason/default.nix | 4 +-- .../ocaml-modules/merlin-extend/default.nix | 22 ++++++++++++++++ .../ocaml-modules/merlin_extend/default.nix | 26 ------------------- pkgs/top-level/ocaml-packages.nix | 2 +- 4 files changed, 25 insertions(+), 29 deletions(-) create mode 100644 pkgs/development/ocaml-modules/merlin-extend/default.nix delete mode 100644 pkgs/development/ocaml-modules/merlin_extend/default.nix diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix index 1b84b934852..715b000f323 100644 --- a/pkgs/development/compilers/reason/default.nix +++ b/pkgs/development/compilers/reason/default.nix @@ -1,5 +1,5 @@ { stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune -, menhir, merlin_extend, ppx_tools_versioned, utop +, menhir, merlin-extend, ppx_tools_versioned, utop }: stdenv.mkDerivation rec { @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ makeWrapper ]; - propagatedBuildInputs = [ menhir merlin_extend ppx_tools_versioned ]; + propagatedBuildInputs = [ menhir merlin-extend ppx_tools_versioned ]; buildInputs = [ ocaml findlib dune utop menhir ]; diff --git a/pkgs/development/ocaml-modules/merlin-extend/default.nix b/pkgs/development/ocaml-modules/merlin-extend/default.nix new file mode 100644 index 00000000000..ad3b1337977 --- /dev/null +++ b/pkgs/development/ocaml-modules/merlin-extend/default.nix @@ -0,0 +1,22 @@ +{ lib, buildDunePackage, fetchFromGitHub, cppo }: + +buildDunePackage rec { + pname = "merlin-extend"; + version = "0.4"; + + src = fetchFromGitHub { + owner = "let-def"; + repo = pname; + sha256 = "1dxiqmm7ry24gvw6p9n4mrz37mnq4s6m8blrccsv3rb8yq82acx9"; + rev = "v${version}"; + }; + + buildInputs = [ cppo ]; + + meta = with lib; { + inherit (src.meta) homepage; + description = "SDK to extend Merlin"; + license = licenses.mit; + maintainers = [ maintainers.volth ]; + }; +} diff --git a/pkgs/development/ocaml-modules/merlin_extend/default.nix b/pkgs/development/ocaml-modules/merlin_extend/default.nix deleted file mode 100644 index 79b8b69bbb5..00000000000 --- a/pkgs/development/ocaml-modules/merlin_extend/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ stdenv, buildOcaml, fetchFromGitHub, cppo }: - -buildOcaml rec { - name = "merlin_extend"; - version = "0.3"; - - minimumSupportedOcamlVersion = "4.02"; - - src = fetchFromGitHub { - owner = "let-def"; - repo = "merlin-extend"; - sha256 = "1z6hybcb7ry0bkzjd0r2dlcgjnhhxdsr06x3h03sj7h5fihsc7vd"; - rev = "v${version}"; - }; - - buildInputs = [ cppo ]; - - createFindlibDestdir = true; - - meta = with stdenv.lib; { - homepage = https://github.com/let-def/merlin-extend; - description = "SDK to extend Merlin"; - license = licenses.mit; - maintainers = [ maintainers.volth ]; - }; -} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 949c5b6a308..a543e31bdcb 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -436,7 +436,7 @@ let merlin = callPackage ../development/tools/ocaml/merlin { }; - merlin_extend = callPackage ../development/ocaml-modules/merlin_extend { }; + merlin-extend = callPackage ../development/ocaml-modules/merlin-extend { }; mezzo = callPackage ../development/compilers/mezzo { }; From 18c2645f7b64027f6470fab146708d210f011317 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 01:48:26 -0500 Subject: [PATCH 1401/1611] grpc: 1.19.1 -> 1.22.0 --- pkgs/development/libraries/grpc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix index 77773e91e17..e91d57b0cd6 100644 --- a/pkgs/development/libraries/grpc/default.nix +++ b/pkgs/development/libraries/grpc/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchFromGitHub, cmake, zlib, c-ares, pkgconfig, openssl, protobuf, gflags }: stdenv.mkDerivation rec { - version = "1.19.1"; + version = "1.22.0"; name = "grpc-${version}"; src = fetchFromGitHub { owner = "grpc"; repo = "grpc"; rev = "v${version}"; - sha256 = "0c0jra4qnd86gyr4rlblic3igb5dpgrldac35myk5i5ia547fdhj"; + sha256 = "10wf9sakkxpcvc09n1h91x6slwwhxblghs4zn95klyc4m6py1gfg"; }; nativeBuildInputs = [ cmake pkgconfig ]; buildInputs = [ zlib c-ares c-ares.cmake-config openssl protobuf gflags ]; From 82d9988eb85f9f6d0de0da85b564d414d751d00c Mon Sep 17 00:00:00 2001 From: Atkins Date: Fri, 2 Aug 2019 14:24:32 +0800 Subject: [PATCH 1402/1611] kustomize: fix variable interpolation for version info --- pkgs/development/tools/kustomize/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/kustomize/default.nix b/pkgs/development/tools/kustomize/default.nix index 3f1bf29773b..07d2357a50b 100644 --- a/pkgs/development/tools/kustomize/default.nix +++ b/pkgs/development/tools/kustomize/default.nix @@ -1,7 +1,7 @@ { lib, buildGoModule, fetchFromGitHub }: buildGoModule rec { - name = "kustomize-${version}"; + pname = "kustomize"; version = "3.1.0"; # rev is the 3.1.0 commit, mainly for kustomize version command output rev = "95f3303493fdea243ae83b767978092396169baf"; @@ -9,7 +9,7 @@ buildGoModule rec { goPackagePath = "sigs.k8s.io/kustomize"; subPackages = [ "cmd/kustomize" ]; - buildFlagsArray = let t = "${goPackagePath}/pkg/commands/misc"; in '' + buildFlagsArray = let t = "${goPackagePath}/v3/pkg/commands/misc"; in '' -ldflags= -s -X ${t}.kustomizeVersion=${version} -X ${t}.gitCommit=${rev} @@ -19,7 +19,7 @@ buildGoModule rec { src = fetchFromGitHub { sha256 = "0kigcirkjvnj3xi1p28p9yp3s0lff24q5qcvf8ahjwvpbwka14sh"; rev = "v${version}"; - repo = "kustomize"; + repo = pname; owner = "kubernetes-sigs"; }; From f2c7593c1aa37a049df0679522ede969e77f4056 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 01:55:21 -0500 Subject: [PATCH 1403/1611] grpc: fix darwin build --- pkgs/development/libraries/grpc/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/grpc/default.nix b/pkgs/development/libraries/grpc/default.nix index e91d57b0cd6..81e90154aa5 100644 --- a/pkgs/development/libraries/grpc/default.nix +++ b/pkgs/development/libraries/grpc/default.nix @@ -19,6 +19,7 @@ stdenv.mkDerivation rec { "-DgRPC_PROTOBUF_PROVIDER=package" "-DgRPC_GFLAGS_PROVIDER=package" "-DBUILD_SHARED_LIBS=ON" + "-DCMAKE_SKIP_BUILD_RPATH=OFF" ]; # CMake creates a build directory by default, this conflicts with the From 002b853782e939c50da3fa7d424b08346f39eb6f Mon Sep 17 00:00:00 2001 From: Ivan Kozik Date: Fri, 2 Aug 2019 09:29:49 +0200 Subject: [PATCH 1404/1611] gnupatch: avoid rebuild from c4ce832e PR #65687 vcunat is really sorry for not noticing this. --- pkgs/tools/text/gnupatch/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/tools/text/gnupatch/default.nix b/pkgs/tools/text/gnupatch/default.nix index 33bec808a2a..91552d25d51 100644 --- a/pkgs/tools/text/gnupatch/default.nix +++ b/pkgs/tools/text/gnupatch/default.nix @@ -15,10 +15,12 @@ stdenv.mkDerivation rec { ./CVE-2018-6951.patch (fetchurl { url = https://git.savannah.gnu.org/cgit/patch.git/patch/?id=b5a91a01e5d0897facdd0f49d64b76b0f02b43e1; + name = "Allow_input_files_to_be_missing_for_ed-style_patches.patch"; sha256 = "0iw0lk0yhnhvfjzal48ij6zdr92mgb84jq7fwryy1hdhi47hhq64"; }) (fetchurl { # CVE-2018-1000156 url = https://git.savannah.gnu.org/cgit/patch.git/patch/?id=123eaff0d5d1aebe128295959435b9ca5909c26d; + name = "Fix_arbitrary_command_execution_in_ed-style_patches.patch"; sha256 = "1bpy16n3hm5nv9xkrn6c4wglzsdzj3ss1biq16w9kfv48p4hx2vg"; }) # https://git.savannah.gnu.org/cgit/patch.git/commit/?id=9c986353e420ead6e706262bf204d6e03322c300 From 8dfc8c67d87bbeb6ce732b6d433c7cf962c0e828 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Fri, 2 Aug 2019 15:53:28 +0900 Subject: [PATCH 1405/1611] python3Packages.cmd2: 0.9.14 -> 0.9.15 API changes quite a bit: https://github.com/python-cmd2/cmd2/blob/0.9.15/CHANGELOG.md --- pkgs/development/python-modules/cmd2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cmd2/default.nix b/pkgs/development/python-modules/cmd2/default.nix index e88f87b7bd0..a71d048b47b 100644 --- a/pkgs/development/python-modules/cmd2/default.nix +++ b/pkgs/development/python-modules/cmd2/default.nix @@ -6,11 +6,11 @@ }: buildPythonPackage rec { pname = "cmd2"; - version = "0.9.14"; + version = "0.9.15"; src = fetchPypi { inherit pname version; - sha256 = "0rllwc4h89xdivy85nmgqdi2s0sk1zw31mlvrnlr9gz2902cnq93"; + sha256 = "0k3y3czpabw173vhqg523l2r804jj08986wlz6vyh224zr0ngggw"; }; LC_ALL="en_US.UTF-8"; From 47c5c7fbc8f0e00916433db62d439d209ef67739 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 02:18:24 -0500 Subject: [PATCH 1406/1611] pythonPackages.scrapy: 1.7.2 -> 1.7.3 --- pkgs/development/python-modules/scrapy/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/scrapy/default.nix b/pkgs/development/python-modules/scrapy/default.nix index 8f3b5a3aacc..ee1445bef5c 100644 --- a/pkgs/development/python-modules/scrapy/default.nix +++ b/pkgs/development/python-modules/scrapy/default.nix @@ -2,7 +2,7 @@ testfixtures, pillow, six, twisted, w3lib, lxml, queuelib, pyopenssl, service-identity, parsel, pydispatcher, cssselect, lib }: buildPythonPackage rec { - version = "1.7.2"; + version = "1.7.3"; pname = "Scrapy"; checkInputs = [ glibcLocales mock pytest botocore testfixtures pillow ]; @@ -31,7 +31,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "7a4ed68cfb44dc86e1895f0fb46257ee4adb1090754ac21faec205763f054464"; + sha256 = "fe5a40177960e97d42d1c752a73edb40f76a85a24076dec8535cffa499eb08c8"; }; postInstall = '' From a04ce7f5f88cf88cb6dfbcbe39ed2e8f18f04e6c Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Fri, 2 Aug 2019 10:14:52 +0200 Subject: [PATCH 1407/1611] EmptyEpsilon: 2019.01.19 -> 2019.05.21 --- pkgs/games/empty-epsilon/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/games/empty-epsilon/default.nix b/pkgs/games/empty-epsilon/default.nix index cb46b8d9ba2..bd2a9d78757 100644 --- a/pkgs/games/empty-epsilon/default.nix +++ b/pkgs/games/empty-epsilon/default.nix @@ -3,8 +3,8 @@ let major = "2019"; - minor = "01"; - patch = "19"; + minor = "05"; + patch = "21"; version = "${major}.${minor}.${patch}"; @@ -16,7 +16,7 @@ let owner = "daid"; repo = "SeriousProton"; rev = "EE-${version}"; - sha256 = "1a5g16vvjrykmdgy5fc8x0v4ipfm0qdaimmy5jz84am14dqi3f8w"; + sha256 = "0q6in9rfs3b3qrfj2j6aj64z110k1yall4iqpp68rpp9r1dsh26p"; }; nativeBuildInputs = [ cmake ]; @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { owner = "daid"; repo = "EmptyEpsilon"; rev = "EE-${version}"; - sha256 = "082v27w3n4jdm4a5884607rwsw4s00cnpqmh7bsdg9q3l29jpygn"; + sha256 = "0v2xz1wlji6m6311r3vpkdil3a7l1w5nsz5yqd1l8bimy11rdr55"; }; nativeBuildInputs = [ cmake ]; From d65f1b20c3dc269d4f26c7930cb179aabe3ca2db Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Mon, 8 Apr 2019 22:06:50 +0200 Subject: [PATCH 1408/1611] emacs-modes: replace melpa-generated with json format This approach has several differences with emacs2nix: - the updater uses a downloaded recipes.json and archive.json for commit information, it uses a local checkout only for hashing the recipes - the generated file is JSON - the updater is written in emacs lisp - prefetch errors are put into an error key in the JSON, for review + meta.broken attributes are generated from it The updater re-uses the existing generated file to memoize prefetched content-sha256s for commits, thus prefetching should normally be quite fast. --- .../editors/emacs-modes/libgenerated.nix | 90 + .../editors/emacs-modes/melpa-generated.nix | 111400 --------------- .../editors/emacs-modes/melpa-packages.nix | 38 +- .../emacs-modes/melpa-stable-generated.nix | 56691 -------- .../emacs-modes/melpa-stable-packages.nix | 45 +- .../emacs-modes/recipes-archive-melpa.json | 96458 +++++++++++++ .../editors/emacs-modes/update-melpa | 8 + .../editors/emacs-modes/update-melpa.el | 434 + .../editors/emacs-modes/updater-emacs.nix | 29 + pkgs/top-level/emacs-packages.nix | 2 +- 10 files changed, 97085 insertions(+), 168110 deletions(-) create mode 100644 pkgs/applications/editors/emacs-modes/libgenerated.nix delete mode 100644 pkgs/applications/editors/emacs-modes/melpa-generated.nix delete mode 100644 pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix create mode 100644 pkgs/applications/editors/emacs-modes/recipes-archive-melpa.json create mode 100755 pkgs/applications/editors/emacs-modes/update-melpa create mode 100644 pkgs/applications/editors/emacs-modes/update-melpa.el create mode 100644 pkgs/applications/editors/emacs-modes/updater-emacs.nix diff --git a/pkgs/applications/editors/emacs-modes/libgenerated.nix b/pkgs/applications/editors/emacs-modes/libgenerated.nix new file mode 100644 index 00000000000..73d66dc2b3c --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/libgenerated.nix @@ -0,0 +1,90 @@ +lib: self: + +let + + fetcherGenerators = { repo ? null + , url ? null + , ... }: + { sha256 + , commit + , ...}: { + github = self.callPackage ({ fetchFromGitHub }: + fetchFromGitHub { + owner = lib.head (lib.splitString "/" repo); + repo = lib.head (lib.tail (lib.splitString "/" repo)); + rev = commit; + inherit sha256; + } + ) {}; + gitlab = self.callPackage ({ fetchFromGitLab }: + fetchFromGitLab { + owner = lib.head (lib.splitString "/" repo); + repo = lib.head (lib.tail (lib.splitString "/" repo)); + rev = commit; + inherit sha256; + } + ) {}; + git = self.callPackage ({ fetchgit }: + fetchgit { + rev = commit; + inherit sha256 url; + } + ) {}; + bitbucket = self.callPackage ({ fetchhg }: + fetchhg { + rev = commit; + url = "https://bitbucket.com/${repo}"; + inherit sha256; + } + ) {}; + hg = self.callPackage ({ fetchhg }: + fetchhg { + rev = commit; + inherit sha256 url; + } + ) {}; + }; + +in { + + melpaDerivation = variant: + { ename, fetcher + , commit ? null + , sha256 ? null + , ... }@args: + let + sourceArgs = args."${variant}"; + version = sourceArgs.version or null; + deps = sourceArgs.deps or null; + error = sourceArgs.error or args.error or null; + hasSource = lib.hasAttr variant args; + pname = builtins.replaceStrings [ "@" ] [ "at" ] ename; + broken = ! isNull error; + in + lib.nameValuePair ename (if hasSource then ( + self.callPackage ({ melpaBuild, fetchurl, ... }@pkgargs: + melpaBuild { + inherit pname; + ename = ename; + version = if isNull version then "" else + lib.concatStringsSep "." (map toString version); + # TODO: Broken should not result in src being null (hack to avoid eval errors) + src = if (isNull sha256 || broken) then null else + lib.getAttr fetcher (fetcherGenerators args sourceArgs); + recipe = if isNull commit then null else + fetchurl { + name = pname + "-recipe"; + url = "https://raw.githubusercontent.com/melpa/melpa/${commit}/recipes/${ename}"; + inherit sha256; + }; + packageRequires = lib.optional (! isNull deps) + (map (dep: pkgargs."${dep}" or self."${dep}" or null) + deps); + meta = (sourceArgs.meta or {}) // { + inherit broken; + }; + } + ) {} + ) else null); + +} diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix deleted file mode 100644 index 9b260433245..00000000000 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ /dev/null @@ -1,111400 +0,0 @@ -{ callPackage }: - { - _0blayout = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "_0blayout"; - ename = "0blayout"; - version = "20161007.2307"; - src = fetchFromGitHub { - owner = "etu"; - repo = "0blayout-mode"; - rev = "4bc6ff06abf298270abb7ef40db605e08caa9287"; - sha256 = "1ddzifckgac4k6invpvvad1avdrly0k5n0jnmc738xxnpc3fk6h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6521ec44ae8b0ba2e0523517f0f3d5b94ddbe1be/recipes/0blayout"; - sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/0blayout"; - license = lib.licenses.free; - }; - }) {}; - _0xc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "_0xc"; - ename = "0xc"; - version = "20190218.1717"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "0xc"; - rev = "167e93ce863381a58988655927042514d984ad49"; - sha256 = "0msx29il7c01njlc4pwxs3f3qcvyakgjcivxaa287jibf67yg0ph"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fbb2c86a50a8df9a3967787fc10f33beab2c933/recipes/0xc"; - sha256 = "0lxcz1x1dymsh9idhkn7jn8vphr724d6sb88a4g55x2m1rlmzg3w"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/0xc"; - license = lib.licenses.free; - }; - }) {}; - _2048-game = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "_2048-game"; - ename = "2048-game"; - version = "20151026.1233"; - src = fetchhg { - url = "https://bitbucket.com/zck/2048.el"; - rev = "ea6c3bce8ac1"; - sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/2048-game"; - sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/2048-game"; - license = lib.licenses.free; - }; - }) {}; - _4clojure = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "_4clojure"; - ename = "4clojure"; - version = "20131014.1507"; - src = fetchFromGitHub { - owner = "losingkeys"; - repo = "4clojure.el"; - rev = "45f1aa34b8c9688885deede4fac652bd61a4b70d"; - sha256 = "14klf786m0i5ij70pnyvsirafbv8giby481vfxlfbffsyf51afp1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/4clojure"; - sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk"; - name = "recipe"; - }; - packageRequires = [ json request ]; - meta = { - homepage = "https://melpa.org/#/4clojure"; - license = lib.licenses.free; - }; - }) {}; - a = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "a"; - ename = "a"; - version = "20180907.253"; - src = fetchFromGitHub { - owner = "plexus"; - repo = "a.el"; - rev = "8583685c32069a73ccae0100e990e7b39c901737"; - sha256 = "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a226f1d81cd1ae81b91c1102fbe40aac2eddcaa8/recipes/a"; - sha256 = "1xqja47iw1c78kiv4854z47iblvvzrc1l35zjdhmhkh9hh10z886"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/a"; - license = lib.licenses.free; - }; - }) {}; - aa-edit-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , navi2ch }: - melpaBuild { - pname = "aa-edit-mode"; - ename = "aa-edit-mode"; - version = "20170118.1920"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "aa-edit-mode"; - rev = "1dd801225b7ad3c23ad09698f5e77f0df7012a65"; - sha256 = "17kxpyfprdyj96c4ivv8bxwyls69cgh2r3gwrgj6bwinbiszh9rr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20d00f782f2db87264c7fb1aac7455e44b8b24e7/recipes/aa-edit-mode"; - sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn"; - name = "recipe"; - }; - packageRequires = [ emacs navi2ch ]; - meta = { - homepage = "https://melpa.org/#/aa-edit-mode"; - license = lib.licenses.free; - }; - }) {}; - abc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "abc-mode"; - ename = "abc-mode"; - version = "20171020.319"; - src = fetchFromGitHub { - owner = "mkjunker"; - repo = "abc-mode"; - rev = "238deedeb6c90df168045552eb463cfae9e1f88f"; - sha256 = "1wkjdvsav2x9zsl25h87iyfl6r0md86i2gmxqhvf63acxqgrgb2q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaee9dc5de06747374f311d86a550d3cc15beed1/recipes/abc-mode"; - sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/abc-mode"; - license = lib.licenses.free; - }; - }) {}; - abgaben = callPackage ({ f - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , pdf-tools - , s }: - melpaBuild { - pname = "abgaben"; - ename = "abgaben"; - version = "20171118.2246"; - src = fetchFromGitLab { - owner = "akoehn"; - repo = "abgaben"; - rev = "966bfcfdd3b2e288576ffe363d676ad282902090"; - sha256 = "0zmzn8rdn1q0dfql3awivhrxd1nrvqr6mb8gv2ynaldyidgsb487"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b0aa60aa0edf33205e0fcb309be779ad8da08ec/recipes/abgaben"; - sha256 = "1xywghyp6aahzin1ygwzqfg9640dliycl4g02jz3gpix8hd3g8gy"; - name = "recipe"; - }; - packageRequires = [ f pdf-tools s ]; - meta = { - homepage = "https://melpa.org/#/abgaben"; - license = lib.licenses.free; - }; - }) {}; - abl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "abl-mode"; - ename = "abl-mode"; - version = "20190403.204"; - src = fetchFromGitHub { - owner = "afroisalreadyinu"; - repo = "abl-mode"; - rev = "44b7d946bc3a693f5a931c4a62c0a67d42e8d4dc"; - sha256 = "070c408bq5pliq0xbd1861l6db4sbfpnj3r6aknbqh2vb7l4yimb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a52edb381daa9c4dcc9f7e511175b38fc141be/recipes/abl-mode"; - sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/abl-mode"; - license = lib.licenses.free; - }; - }) {}; - abs-mode = callPackage ({ emacs - , erlang - , fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , maude-mode - , melpaBuild }: - melpaBuild { - pname = "abs-mode"; - ename = "abs-mode"; - version = "20190404.1604"; - src = fetchFromGitHub { - owner = "abstools"; - repo = "abs-mode"; - rev = "31fb36f9206203062b8c618fef6ad484e44af226"; - sha256 = "0h0zsjqhjm18ppmaqv2kn4q1mchc1igcz80zwz8523n2w2gk9bri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aabccc4061e7764069796e12ee9688b67651cf70/recipes/abs-mode"; - sha256 = "148y99iaxcnjaacw017chwq0sq05ywgy5jx1lhp9ly7innrl9i1k"; - name = "recipe"; - }; - packageRequires = [ emacs erlang flymake maude-mode ]; - meta = { - homepage = "https://melpa.org/#/abs-mode"; - license = lib.licenses.free; - }; - }) {}; - abyss-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "abyss-theme"; - ename = "abyss-theme"; - version = "20170808.645"; - src = fetchFromGitHub { - owner = "mgrbyte"; - repo = "emacs-abyss-theme"; - rev = "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14"; - sha256 = "07z0djv7h3yrv4iw9n633j6dxzxb4nnzijsqkmz22ik6fbwxg5mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f390e5153b6360a27abc74983f5fef11226634f3/recipes/abyss-theme"; - sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/abyss-theme"; - license = lib.licenses.free; - }; - }) {}; - ac-alchemist = callPackage ({ alchemist - , auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-alchemist"; - ename = "ac-alchemist"; - version = "20150907.2356"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-alchemist"; - rev = "b1891c3d41aed83f61d78a609ea97be5cc2758d9"; - sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9037aa41a8d9467838495bb235db32c19cc417/recipes/ac-alchemist"; - sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; - name = "recipe"; - }; - packageRequires = [ alchemist auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-alchemist"; - license = lib.licenses.free; - }; - }) {}; - ac-c-headers = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-c-headers"; - ename = "ac-c-headers"; - version = "20151021.134"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "ac-c-headers"; - rev = "de13a1d35b311e6601556d8ef163de102057deea"; - sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7736fb9ea3a59c36c0b8b824d83bb1bb0099d43/recipes/ac-c-headers"; - sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/ac-c-headers"; - license = lib.licenses.free; - }; - }) {}; - ac-capf = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-capf"; - ename = "ac-capf"; - version = "20151031.1917"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-capf"; - rev = "17571dba0a8f98111f2ab758e9bea285b263781b"; - sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/929da263f57b904c50f5f17b09d4c4b480999c97/recipes/ac-capf"; - sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-capf"; - license = lib.licenses.free; - }; - }) {}; - ac-cider = callPackage ({ auto-complete - , cider - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-cider"; - ename = "ac-cider"; - version = "20161006.19"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "ac-cider"; - rev = "d8670939bbf88079263d5ace2b8bc04cf325be36"; - sha256 = "01g1h2j0rfih8v0yvvr5gjh3abcj2mz3jmfbis8a60ivmngab732"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8adefaf2e284ef91baec3dbd3e10c868de69926/recipes/ac-cider"; - sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; - name = "recipe"; - }; - packageRequires = [ auto-complete cider cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-cider"; - license = lib.licenses.free; - }; - }) {}; - ac-clang = callPackage ({ auto-complete - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip - , yasnippet }: - melpaBuild { - pname = "ac-clang"; - ename = "ac-clang"; - version = "20180709.2246"; - src = fetchFromGitHub { - owner = "yaruopooner"; - repo = "ac-clang"; - rev = "3294b968eb1a8317049190940193f9da47c085ef"; - sha256 = "160hda911vsc2zcs56560cpv7kj0966vjzwmc0md6fkz3wrj7w0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang"; - sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib emacs pos-tip yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ac-clang"; - license = lib.licenses.free; - }; - }) {}; - ac-dcd = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , flycheck-dmd-dub - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-dcd"; - ename = "ac-dcd"; - version = "20190425.207"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "ac-dcd"; - rev = "9d444523ffa92a763ea8f532b8001829a51a2557"; - sha256 = "1fkpvr7mix9wvhd6pgbcj6mrmhrffvlh5sp8wp5m48j0qc3wx7mi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64142a4b14531409f45f02a8053ed8948f48221d/recipes/ac-dcd"; - sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; - name = "recipe"; - }; - packageRequires = [ auto-complete flycheck-dmd-dub ]; - meta = { - homepage = "https://melpa.org/#/ac-dcd"; - license = lib.licenses.free; - }; - }) {}; - ac-emacs-eclim = callPackage ({ auto-complete - , eclim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-emacs-eclim"; - ename = "ac-emacs-eclim"; - version = "20180911.421"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "edff7e0e30c87036710d88fb0b7a4644750858e8"; - sha256 = "0ywifqdhv7cibgl42m7i15widna9i1dk5kl5rglyql7hy05nk9gj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/ac-emacs-eclim"; - sha256 = "0bkh7x6zj5drdvm9ji4vwqdxv7limd9a1idy8lsg0lcca3rjq3s5"; - name = "recipe"; - }; - packageRequires = [ auto-complete eclim ]; - meta = { - homepage = "https://melpa.org/#/ac-emacs-eclim"; - license = lib.licenses.free; - }; - }) {}; - ac-emmet = callPackage ({ auto-complete - , emmet-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-emmet"; - ename = "ac-emmet"; - version = "20131015.858"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "ac-emmet"; - rev = "88f24876ee3b759978d4614a758280b5d512d543"; - sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39861b4f0a458c8ccf02f7a3443c54b0e74daa11/recipes/ac-emmet"; - sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x"; - name = "recipe"; - }; - packageRequires = [ auto-complete emmet-mode ]; - meta = { - homepage = "https://melpa.org/#/ac-emmet"; - license = lib.licenses.free; - }; - }) {}; - ac-emoji = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-emoji"; - ename = "ac-emoji"; - version = "20150823.11"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-emoji"; - rev = "53677f754929ead403ccde64b714ebb6b8fc808e"; - sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15f591f9cba367b071046fef5ae01bbbd0475ce3/recipes/ac-emoji"; - sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-emoji"; - license = lib.licenses.free; - }; - }) {}; - ac-etags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-etags"; - ename = "ac-etags"; - version = "20161001.807"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-etags"; - rev = "7983e631c226fe0fa53af3b2d56bf4eca3d785ce"; - sha256 = "1vvgcy5hybrip4jn4pj9r3fahr6rc70k28w5aw951h0x7g7laipr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fda9c7def8bc54af4ab17dc049dd94324c8f10fa/recipes/ac-etags"; - sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/ac-etags"; - license = lib.licenses.free; - }; - }) {}; - ac-geiser = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , geiser - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-geiser"; - ename = "ac-geiser"; - version = "20130928.2347"; - src = fetchFromGitHub { - owner = "xiaohanyu"; - repo = "ac-geiser"; - rev = "0e2e36532336f27e3dc3b01fff55ad1a4329817d"; - sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/586ef409e3ae758b459b625d4bf0108f0525a085/recipes/ac-geiser"; - sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; - name = "recipe"; - }; - packageRequires = [ auto-complete geiser ]; - meta = { - homepage = "https://melpa.org/#/ac-geiser"; - license = lib.licenses.free; - }; - }) {}; - ac-haskell-process = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-haskell-process"; - ename = "ac-haskell-process"; - version = "20150423.702"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-haskell-process"; - rev = "0362d4323511107ec70e7165cb612f3ab01b712f"; - sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98bd259b6bfd9b49a8ae421807a4ab3821f09608/recipes/ac-haskell-process"; - sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; - name = "recipe"; - }; - packageRequires = [ auto-complete haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/ac-haskell-process"; - license = lib.licenses.free; - }; - }) {}; - ac-helm = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "ac-helm"; - ename = "ac-helm"; - version = "20160318.1933"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "ac-helm"; - rev = "baf2b1e04bcffa835084389c0fab415f26efbf32"; - sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50427d365c79aff84ac759d19ce177b4f7ed2751/recipes/ac-helm"; - sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib helm popup ]; - meta = { - homepage = "https://melpa.org/#/ac-helm"; - license = lib.licenses.free; - }; - }) {}; - ac-html = callPackage ({ auto-complete - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ac-html"; - ename = "ac-html"; - version = "20151005.31"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "ac-html"; - rev = "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2"; - sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/ac-html"; - sha256 = "1vidmvylwwvraf8k63dvxv47ism49n6pp0f38l5rl4iaznhkdr84"; - name = "recipe"; - }; - packageRequires = [ auto-complete dash f s ]; - meta = { - homepage = "https://melpa.org/#/ac-html"; - license = lib.licenses.free; - }; - }) {}; - ac-html-angular = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html-angular"; - ename = "ac-html-angular"; - version = "20151224.2319"; - src = fetchFromGitHub { - owner = "osv"; - repo = "ac-html-angular"; - rev = "6bafe09afe03112ca4183d58461c1a6f6c2b3c67"; - sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0805ba6674d1298d730770e8ea46b9bbd68cd1d3/recipes/ac-html-angular"; - sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s"; - name = "recipe"; - }; - packageRequires = [ web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html-angular"; - license = lib.licenses.free; - }; - }) {}; - ac-html-bootstrap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html-bootstrap"; - ename = "ac-html-bootstrap"; - version = "20160302.901"; - src = fetchFromGitHub { - owner = "osv"; - repo = "ac-html-bootstrap"; - rev = "481e6e441cd566554ce71cd8cb28c9e7ebb1c24b"; - sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cf8aed547ca2390395dcf52d6c542b6944697af/recipes/ac-html-bootstrap"; - sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; - name = "recipe"; - }; - packageRequires = [ web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html-bootstrap"; - license = lib.licenses.free; - }; - }) {}; - ac-html-csswatcher = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html-csswatcher"; - ename = "ac-html-csswatcher"; - version = "20151208.1313"; - src = fetchFromGitHub { - owner = "osv"; - repo = "ac-html-csswatcher"; - rev = "b0f3e7e1a3fe49e88b6eb6432377232fc715f221"; - sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fba8b9bf212e6fa389eae8394d0b3bbce9eb0f92/recipes/ac-html-csswatcher"; - sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; - name = "recipe"; - }; - packageRequires = [ web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html-csswatcher"; - license = lib.licenses.free; - }; - }) {}; - ac-inf-ruby = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-inf-ruby"; - ename = "ac-inf-ruby"; - version = "20131115.350"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-inf-ruby"; - rev = "094d86761088ab0b16ddac75cf57eeb9c2afbee2"; - sha256 = "0cabg054mpxrxaw95pfh7bv7rwpfpjhyqg8ghgd8j2vvj95p1m2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a72abe0fe1253149afb45b0d9e81b6846a926c0/recipes/ac-inf-ruby"; - sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; - name = "recipe"; - }; - packageRequires = [ auto-complete inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/ac-inf-ruby"; - license = lib.licenses.free; - }; - }) {}; - ac-ispell = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-ispell"; - ename = "ac-ispell"; - version = "20151031.1926"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-ispell"; - rev = "7e054793fe77f5fa1ced59d97da9c31df9807c48"; - sha256 = "1jidg08jz6np7jfg11qzijmsrbv1i3kdsqmmnz1xlybj1933xjvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b41acb7387ebef9af2906fa16298b64d6431bfb0/recipes/ac-ispell"; - sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-ispell"; - license = lib.licenses.free; - }; - }) {}; - ac-js2 = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , skewer-mode }: - melpaBuild { - pname = "ac-js2"; - ename = "ac-js2"; - version = "20190101.133"; - src = fetchFromGitHub { - owner = "ScottyB"; - repo = "ac-js2"; - rev = "2b56d09a16c1a0ce514cc1b85d64cb1be4502723"; - sha256 = "11q4aaiqr4xnw5j0yqj35gc4a290az75qdyhadj09xr2j2jay35x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/255588a330e4c9a03517885092d5678375aa7850/recipes/ac-js2"; - sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa"; - name = "recipe"; - }; - packageRequires = [ js2-mode skewer-mode ]; - meta = { - homepage = "https://melpa.org/#/ac-js2"; - license = lib.licenses.free; - }; - }) {}; - ac-math = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , math-symbol-lists - , melpaBuild }: - melpaBuild { - pname = "ac-math"; - ename = "ac-math"; - version = "20141116.1327"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "ac-math"; - rev = "89478063dead68894f0d27687b63896633048c6f"; - sha256 = "0mzbc3ninsz970xly90zbxlxqy4b0s8yrp1mlj8jzpk5dzlc4g51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ac-math"; - sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl"; - name = "recipe"; - }; - packageRequires = [ auto-complete math-symbol-lists ]; - meta = { - homepage = "https://melpa.org/#/ac-math"; - license = lib.licenses.free; - }; - }) {}; - ac-mozc = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc }: - melpaBuild { - pname = "ac-mozc"; - ename = "ac-mozc"; - version = "20150227.819"; - src = fetchFromGitHub { - owner = "igjit"; - repo = "ac-mozc"; - rev = "4c6c8be4701010d9362184437c0f783e0335c631"; - sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3f74039d397037e640cc371d24bdb60ac90bf1/recipes/ac-mozc"; - sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib mozc ]; - meta = { - homepage = "https://melpa.org/#/ac-mozc"; - license = lib.licenses.free; - }; - }) {}; - ac-octave = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-octave"; - ename = "ac-octave"; - version = "20180405.2034"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "ac-octave"; - rev = "fe0f931f2024f43de3c4fff4b1ace672413adeae"; - sha256 = "1yj5fapbp79k88k1cxrmmf91fb0j6s4s7f2dhk2afcf7z83mqkwb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/634bd324148d6b74e1098362e06dc512456cde31/recipes/ac-octave"; - sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/ac-octave"; - license = lib.licenses.free; - }; - }) {}; - ac-php = callPackage ({ ac-php-core - , auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "ac-php"; - ename = "ac-php"; - version = "20190423.1922"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b"; - sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php"; - sha256 = "1wqwwgdln98snlq5msdx94b7985krvqfn264hxs1h94r85kgn1ba"; - name = "recipe"; - }; - packageRequires = [ ac-php-core auto-complete yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ac-php"; - license = lib.licenses.free; - }; - }) {}; - ac-php-core = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , popup - , s - , xcscope }: - melpaBuild { - pname = "ac-php-core"; - ename = "ac-php-core"; - version = "20190531.2322"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "19b34b56ebc0eaabf9b1f4a8ac6819bde9855d2b"; - sha256 = "02j0dwzbvi744ybdqwx8dan1ahl2yar7cw20n619vbmxn0r6pml2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core"; - sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn"; - name = "recipe"; - }; - packageRequires = [ dash f php-mode popup s xcscope ]; - meta = { - homepage = "https://melpa.org/#/ac-php-core"; - license = lib.licenses.free; - }; - }) {}; - ac-racer = callPackage ({ auto-complete - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , racer }: - melpaBuild { - pname = "ac-racer"; - ename = "ac-racer"; - version = "20170114.9"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-racer"; - rev = "4408c2d652dec0432e20c05e001db8222d778c6b"; - sha256 = "01154kqzh3pjy57vxhv27nm69p85a1fwl7r95c7pzmzxgxigfz1p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4318daf4dbb6864ee41f41287c89010fb811641/recipes/ac-racer"; - sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; - name = "recipe"; - }; - packageRequires = [ auto-complete emacs racer ]; - meta = { - homepage = "https://melpa.org/#/ac-racer"; - license = lib.licenses.free; - }; - }) {}; - ac-rtags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "ac-rtags"; - ename = "ac-rtags"; - version = "20181117.1149"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "5e51faa79016b3302d8037e13329a4320de524f5"; - sha256 = "0qw6l96k2hxv3jvjw3nvas7m73jqj7mcchawzss8by92l61n0cx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; - sha256 = "1w9v32di9135mm598c4506gxf0xr5jyz8dyd9dhga5d60q7g9641"; - name = "recipe"; - }; - packageRequires = [ auto-complete rtags ]; - meta = { - homepage = "https://melpa.org/#/ac-rtags"; - license = lib.licenses.free; - }; - }) {}; - ac-skk = callPackage ({ auto-complete - , cl-lib ? null - , ddskk - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tinysegmenter }: - melpaBuild { - pname = "ac-skk"; - ename = "ac-skk"; - version = "20141229.1719"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "ac-skk.el"; - rev = "d25a265930430d080329789fb253d786c01dfa24"; - sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9d8268d2db4b38ca18156964483b0b067f6f5d/recipes/ac-skk"; - sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ddskk tinysegmenter ]; - meta = { - homepage = "https://melpa.org/#/ac-skk"; - license = lib.licenses.free; - }; - }) {}; - ac-slime = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "ac-slime"; - ename = "ac-slime"; - version = "20171027.1400"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-slime"; - rev = "a91f664510d3da24b02e87e4aa59d049483a6529"; - sha256 = "04qjj5jw7yp49nbb0p70cxlad8m4nq5mhil4k6pav74nkgjrldcl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ac-slime"; - sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib slime ]; - meta = { - homepage = "https://melpa.org/#/ac-slime"; - license = lib.licenses.free; - }; - }) {}; - ac-sly = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "ac-sly"; - ename = "ac-sly"; - version = "20170728.327"; - src = fetchFromGitHub { - owner = "qoocku"; - repo = "ac-sly"; - rev = "bf69c687c4ecf1994349d20c182e9b567399912e"; - sha256 = "09g6v2yp3wl566488zsb79lklqpai9dgz6xwv1y5h6zkghxvkhpy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb26741e841d4886c14f0a059a52805732f179b1/recipes/ac-sly"; - sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib sly ]; - meta = { - homepage = "https://melpa.org/#/ac-sly"; - license = lib.licenses.free; - }; - }) {}; - academic-phrases = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "academic-phrases"; - ename = "academic-phrases"; - version = "20180723.321"; - src = fetchFromGitHub { - owner = "nashamri"; - repo = "academic-phrases"; - rev = "25d9cf67feac6359cb213f061735e2679c84187f"; - sha256 = "0m32jpg6n0azz2f4y57y92zfvzm54ankx5cm06gli2zw2v1218fw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe4323043fb875c0252861800e61fdd0a51ed453/recipes/academic-phrases"; - sha256 = "18y6lff7xwg6hczwgavwp32848gnlmc30afra9x7m8wmdddps1bh"; - name = "recipe"; - }; - 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"; - ename = "ace-flyspell"; - version = "20170308.2109"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-flyspell"; - rev = "538d4f8508d305262ba0228dfe7c819fb65b53c9"; - sha256 = "1yplf5klgjjzx3cb1ihqb9f9cwn898l0vhasc3cwiqz6ldyq2na8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ace-flyspell"; - sha256 = "1zgywb90cg64nllbbk0x9ipm6znyc5yh7vkajrrnw06r5vabyp9y"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-flyspell"; - license = lib.licenses.free; - }; - }) {}; - ace-isearch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-isearch"; - ename = "ace-isearch"; - version = "20170506.12"; - src = fetchFromGitHub { - owner = "tam17aki"; - repo = "ace-isearch"; - rev = "0502f95e333c8059a678745e5a112542965661d1"; - sha256 = "1gzvhxkx7dl7wh2fkkiq9vplfhrqyxl0vzlzf617j4gggjbkpzps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/344f0cf784a027cde196b7d766024fb415fa1968/recipes/ace-isearch"; - sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ace-isearch"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-buffer = callPackage ({ avy - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-buffer"; - ename = "ace-jump-buffer"; - version = "20171031.850"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "ace-jump-buffer"; - rev = "ae5be0415c823f7bb66833aa4af2180d4cf99cef"; - sha256 = "0zg4x5faxkp0gnjq7209hn74qkzmk8k7wbr7k8wxpssjbnmxkvd1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31100b5b899e942de7796bcbf6365625d1b62574/recipes/ace-jump-buffer"; - sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; - name = "recipe"; - }; - packageRequires = [ avy dash ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-buffer"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-helm-line = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-helm-line"; - ename = "ace-jump-helm-line"; - version = "20160918.1136"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-jump-helm-line"; - rev = "1483055255df3f8ae349f7520f05b1e43ea3ed37"; - sha256 = "191a2g1if1jliikbxkpwmvlp4v1sp541j71xrlymili8ygm0idq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8925f3daa92ff39776b55642aa9ec0e49245c0c7/recipes/ace-jump-helm-line"; - sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; - name = "recipe"; - }; - packageRequires = [ avy helm ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-helm-line"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-mode"; - ename = "ace-jump-mode"; - version = "20140616.115"; - src = fetchFromGitHub { - owner = "winterTTr"; - repo = "ace-jump-mode"; - rev = "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac"; - sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ace-jump-mode"; - sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ace-jump-mode"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-zap = callPackage ({ ace-jump-mode - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-zap"; - ename = "ace-jump-zap"; - version = "20170717.1149"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "ace-jump-zap"; - rev = "52b5d4c6c73bd0fc833a0dcb4e803a5287d8cae8"; - sha256 = "1iw90mk6hdrbskxgv67xj27qd26w5dlh4s6a6xqqsj8ld56nzbvr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b435db3b79333a20aa27a72f33c431f0a019ba1/recipes/ace-jump-zap"; - sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; - name = "recipe"; - }; - packageRequires = [ ace-jump-mode dash ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-zap"; - license = lib.licenses.free; - }; - }) {}; - ace-link = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-link"; - ename = "ace-link"; - version = "20190406.1944"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ace-link"; - rev = "30937c6fe1ffe016dc0387f3060f67eb8b5d229a"; - sha256 = "09l9zzs2bskf1mmlykjcqpw4vgnlxmq9qf0d78m1ngq7c9ymlnqw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68032f40c0ce4170a22db535be4bfa7099f61f85/recipes/ace-link"; - sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-link"; - license = lib.licenses.free; - }; - }) {}; - ace-mc = callPackage ({ ace-jump-mode - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "ace-mc"; - ename = "ace-mc"; - version = "20190205.2349"; - src = fetchFromGitHub { - owner = "mm--"; - repo = "ace-mc"; - rev = "6877880efd99e177e4e9116a364576def3da391b"; - sha256 = "180licc7w5b6f42ifwvllbnmf3aq8cbr8jhkbk37lzick4sv10d2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62e3a5f23ce219b16081cb0bba9fc4699e11fafa/recipes/ace-mc"; - sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8"; - name = "recipe"; - }; - packageRequires = [ ace-jump-mode dash multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/ace-mc"; - license = lib.licenses.free; - }; - }) {}; - ace-pinyin = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "ace-pinyin"; - ename = "ace-pinyin"; - version = "20190122.2002"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-pinyin"; - rev = "4915b2413359d85002918e322dbc90c4984b4277"; - sha256 = "1yv3445p6w10wj310ffla2ghh81fynwgmxpsfkwgbcsbcjx9hmsl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ace-pinyin"; - sha256 = "1b3asvzm3k66lsdkmlsgmnf8xlyic8zv294j1iahzkwm6bzqj8wd"; - name = "recipe"; - }; - packageRequires = [ avy pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/ace-pinyin"; - license = lib.licenses.free; - }; - }) {}; - ace-popup-menu = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-popup-menu"; - ename = "ace-popup-menu"; - version = "20181231.2302"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "ace-popup-menu"; - rev = "580f2eab0e8621ae08b85b70cd573a764a5e0f7d"; - sha256 = "0f4rzbx1apl6pzkbg43sjirbr4nm97bgfbvk15w68jj91q804b9h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53742e2242101c4b3b3901f5c74e24facf62c7d6/recipes/ace-popup-menu"; - sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/ace-popup-menu"; - license = lib.licenses.free; - }; - }) {}; - ace-window = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-window"; - ename = "ace-window"; - version = "20190527.651"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ace-window"; - rev = "138a80cbc4e9ed17d3a085a3687f5223a142a9a3"; - sha256 = "1b9b5zjm7lkdnj3zrk9sh271jdx96wd267774781dlf29i8mgm9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe131d3c2ea498e4df30ba539a6b91c00f5b07/recipes/ace-window"; - sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-window"; - license = lib.licenses.free; - }; - }) {}; - achievements = callPackage ({ fetchhg - , fetchurl - , keyfreq - , lib - , melpaBuild }: - melpaBuild { - pname = "achievements"; - ename = "achievements"; - version = "20150530.1126"; - src = fetchhg { - url = "https://bitbucket.com/gvol/emacs-achievements"; - rev = "18a422131c12"; - sha256 = "0nk1zhqx0lvckjc98b36125148zgx1l2axln8gvkdwlhrd2cc6vj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83ec19a4ebac6b2d0fd84939b393848f82620978/recipes/achievements"; - sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr"; - name = "recipe"; - }; - packageRequires = [ keyfreq ]; - meta = { - homepage = "https://melpa.org/#/achievements"; - license = lib.licenses.free; - }; - }) {}; - ack-menu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , mag-menu - , melpaBuild }: - melpaBuild { - pname = "ack-menu"; - ename = "ack-menu"; - version = "20150504.1322"; - src = fetchFromGitHub { - owner = "chumpage"; - repo = "ack-menu"; - rev = "f77be93a4697926ecf3195a355eb69580f695f4d"; - sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ff331ed45e5b7697e4862e723408602ecc98bc7/recipes/ack-menu"; - sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; - name = "recipe"; - }; - packageRequires = [ mag-menu ]; - meta = { - homepage = "https://melpa.org/#/ack-menu"; - license = lib.licenses.free; - }; - }) {}; - actionscript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "actionscript-mode"; - ename = "actionscript-mode"; - version = "20180527.1001"; - src = fetchFromGitHub { - owner = "austinhaas"; - repo = "actionscript-mode"; - rev = "65abd58e198458a8e46748c5962c41d80d60c4ea"; - sha256 = "0cb8kkhh43wg63abjx6d4x55f0l3r6ziqcaz8rz1zr12jffnac8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c11e74f2156f109b713380cebf83022d7159d4a/recipes/actionscript-mode"; - sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/actionscript-mode"; - license = lib.licenses.free; - }; - }) {}; - activity-watch-mode = callPackage ({ cl - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , projectile - , request }: - melpaBuild { - pname = "activity-watch-mode"; - ename = "activity-watch-mode"; - version = "20190423.829"; - src = fetchFromGitHub { - owner = "pauldub"; - repo = "activity-watch-mode"; - rev = "c2ad321952524d88dd34842a6989b6e2d8acb646"; - sha256 = "1fan25w5zb33i8mbd06iwz8vjac0alcv1r73h9hyzdkn8ivl6k3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9780c413da8001651191fb8f9708fe9691d714cf/recipes/activity-watch-mode"; - sha256 = "0k0ai6658gb43c4ylrq66zqzrfh6ksvkf0kxj2qx8a5a1aw9bd4d"; - name = "recipe"; - }; - packageRequires = [ cl emacs json projectile request ]; - meta = { - homepage = "https://melpa.org/#/activity-watch-mode"; - license = lib.licenses.free; - }; - }) {}; - adafruit-wisdom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "adafruit-wisdom"; - ename = "adafruit-wisdom"; - version = "20180224.1652"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "adafruit-wisdom.el"; - rev = "473b973885589a4843e80daf5c8503ea4cedf2ff"; - sha256 = "0xzzyvnvv0951rr5l5l1vgls3cj5884nhfgqb8w5ian28jsf28bx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18483af52c26f719fbfde626db84a67750bf4754/recipes/adafruit-wisdom"; - sha256 = "0ckh420cirspwg2yd5q9y1az03j2l1jzd67g8dpvqjkgdp485gad"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/adafruit-wisdom"; - license = lib.licenses.free; - }; - }) {}; - add-hooks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "add-hooks"; - ename = "add-hooks"; - version = "20171216.1723"; - src = fetchFromGitHub { - owner = "nickmccurdy"; - repo = "add-hooks"; - rev = "1845137703461fc44bd77cf24014ba58f19c369d"; - sha256 = "02s9mv26ycypn4qfshrh17v1hsys2q9vffxj3g4lgq0lykplvkkm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/901f846aef46d512dc0a1770bab7f07c0ae330cd/recipes/add-hooks"; - sha256 = "09a5b3prznibkb5igfn8x3vsjrlkh3534zycs8g25g4li87mcb6p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/add-hooks"; - license = lib.licenses.free; - }; - }) {}; - add-node-modules-path = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "add-node-modules-path"; - ename = "add-node-modules-path"; - version = "20180710.1642"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "add-node-modules-path"; - rev = "f31e69ccb681f882aebb806ce6e9478e3ac39708"; - sha256 = "0p106bqmvdr8by5iv02bshm339qbrjcch2d15mrm4h3nav03v306"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63e99d8fc0678d7b1831cae8940e9e6547780861/recipes/add-node-modules-path"; - sha256 = "0gbl875fgqr5np6r4cs8njs6fil1qmy8a5wir88x78ybdwwxsmbl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/add-node-modules-path"; - license = lib.licenses.free; - }; - }) {}; - addressbook-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "addressbook-bookmark"; - ename = "addressbook-bookmark"; - version = "20171107.2234"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "addressbook-bookmark"; - rev = "4f560af8397a46772e4b39f74f44a9ec9309a224"; - sha256 = "166iih6fzfizb1yxfhwzh9w9c3wi2xb25qjgialp5rwxlwdwy9dr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a497aec6e27efa627068542cae5a16c01c3c6d3c/recipes/addressbook-bookmark"; - sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/addressbook-bookmark"; - license = lib.licenses.free; - }; - }) {}; - adoc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markup-faces - , melpaBuild }: - melpaBuild { - pname = "adoc-mode"; - ename = "adoc-mode"; - version = "20160314.1430"; - src = fetchFromGitHub { - owner = "sensorflo"; - repo = "adoc-mode"; - rev = "745884359a1b8826ede2c4cfd2f0b5478953ac40"; - sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/adoc-mode"; - sha256 = "0jd3zr4zpb4qqn504azl0y02cryv7n9wphv64b0fbpipr7w5hm2c"; - name = "recipe"; - }; - packageRequires = [ markup-faces ]; - meta = { - homepage = "https://melpa.org/#/adoc-mode"; - license = lib.licenses.free; - }; - }) {}; - aes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aes"; - ename = "aes"; - version = "20171028.2323"; - src = fetchFromGitHub { - owner = "Sauermann"; - repo = "emacs-aes"; - rev = "b7d5da89c3443292e4f0b1c9d254d459933cf5af"; - sha256 = "0nz1lf77qr3vm90rm02d4inw8glav722rxsiqds76m4xsjrq02m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/33ca3106852f82624b36c7e3f03f5c0c620f304f/recipes/aes"; - sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aes"; - license = lib.licenses.free; - }; - }) {}; - afternoon-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "afternoon-theme"; - ename = "afternoon-theme"; - version = "20140104.1059"; - src = fetchFromGitHub { - owner = "osener"; - repo = "emacs-afternoon-theme"; - rev = "89b1d778a1f8b385775c122f2bd1c62f0fbf931a"; - sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/583256b7fa48501c8bfad305d76d2e16b6441539/recipes/afternoon-theme"; - sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/afternoon-theme"; - license = lib.licenses.free; - }; - }) {}; - ag = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ag"; - ename = "ag"; - version = "20180225.240"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "ag.el"; - rev = "77b4f50c5372bf219da496567b2b867261f0d354"; - sha256 = "0kwp6bb8fwv76x9r35rz4mvwica1fsappp82rjr1xlhnwwdsc120"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67f410ac3a58a038e194bcf174bc0a8ceceafb9a/recipes/ag"; - sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/ag"; - license = lib.licenses.free; - }; - }) {}; - aggressive-fill-paragraph = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aggressive-fill-paragraph"; - ename = "aggressive-fill-paragraph"; - version = "20180910.116"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "aggressive-fill-paragraph-mode"; - rev = "39eb7ac73976d4d4044ef3d750c3ade967d036e1"; - sha256 = "1ly79z9aqy3b2wq11ifvvkls9qqbpkbb8hj7nsvpq59vqa9fknli"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/982f5936f2d83222263df2886ca0b629076366bb/recipes/aggressive-fill-paragraph"; - sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/aggressive-fill-paragraph"; - license = lib.licenses.free; - }; - }) {}; - aggressive-indent = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aggressive-indent"; - ename = "aggressive-indent"; - version = "20190218.1531"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "aggressive-indent-mode"; - rev = "3803f24020ef0a656dc5345713c4964073aec9a8"; - sha256 = "0dbg4lmzq0r7pvqx0wqxdcnmqz76nk9sdbwg276cmflqj9m0q7z1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/aggressive-indent"; - sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/aggressive-indent"; - license = lib.licenses.free; - }; - }) {}; - agtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "agtags"; - ename = "agtags"; - version = "20181229.1634"; - src = fetchFromGitHub { - owner = "vietor"; - repo = "agtags"; - rev = "7a59137db7780678cf86d0c1193da5fde38bc759"; - sha256 = "1mr1k7bx5zq54j3vhjhny5wzh3z8dh94rcv0bqlmzc8ibidj557p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb6677262303a0cad2d844db77693c00d9bc575a/recipes/agtags"; - sha256 = "07kpdbchplkbspid8gnjsprbdwf244nr2q596pw6jl17bysbbbk7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/agtags"; - license = lib.licenses.free; - }; - }) {}; - ahg = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ahg"; - ename = "ahg"; - version = "20181120.501"; - src = fetchhg { - url = "https://bitbucket.com/agriggio/ahg"; - rev = "7213c02fdbd6"; - sha256 = "0dxgb033rzayjah2yyxprjsk7ir25a5pqjp3lmx8dj8g9bcxddx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/ahg"; - sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ahg"; - license = lib.licenses.free; - }; - }) {}; - ahk-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ahk-mode"; - ename = "ahk-mode"; - version = "20190322.2323"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "ahk-mode"; - rev = "66e02a3b44d672787b1f13a30008801a9efca65b"; - sha256 = "15x1hwar0i89y2vbjrfp7d0b2fj48zqribfm4323k1fc18hbzrb7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ahk-mode"; - sha256 = "0jx5vhlfw5r6l4125bjjbf7dl1589ac6j419swx26k3p8p58d93r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ahk-mode"; - license = lib.licenses.free; - }; - }) {}; - ahungry-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ahungry-theme"; - ename = "ahungry-theme"; - version = "20180130.1928"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "color-theme-ahungry"; - rev = "a038d91ec593d1f1b19ca66a0576d59bbc24c523"; - sha256 = "0f86xp7l8bv4z5dgf3pamjgqyiq3kfx9gbi9wcw0m6lbza8db15a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/520295978fd7de3f4266dd69cc30d0b4fdf09db0/recipes/ahungry-theme"; - sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ahungry-theme"; - license = lib.licenses.free; - }; - }) {}; - aio = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aio"; - ename = "aio"; - version = "20190601.53"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-aio"; - rev = "0e8a18f1bbb5f7be0f88d8e02ef13494736d63bc"; - sha256 = "1aikvka4s97p5s26vclrnamgj8agx1j8ls6q3x7mxf8mhpv4ghqz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95744cc13e7ac8d9acd794004d951f62e5880fa4/recipes/aio"; - sha256 = "0sd8g2w4n9r2ndmp353v89xvky8043vmd92v2ggbl45chhpjl5zw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/aio"; - license = lib.licenses.free; - }; - }) {}; - airline-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "airline-themes"; - ename = "airline-themes"; - version = "20180410.2106"; - src = fetchFromGitHub { - owner = "AnthonyDiGirolamo"; - repo = "airline-themes"; - rev = "8b528fbae0e557461315bed82883275d58df41f2"; - sha256 = "1xydgf9w0i2anpmjhy8m0zv1hql4gb37i11xfn6xzwna572z1ml9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/addeb923176132a52807308fa5e71d41c9511802/recipes/airline-themes"; - sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; - name = "recipe"; - }; - packageRequires = [ powerline ]; - meta = { - homepage = "https://melpa.org/#/airline-themes"; - license = lib.licenses.free; - }; - }) {}; - airplay = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , simple-httpd }: - melpaBuild { - pname = "airplay"; - ename = "airplay"; - version = "20130212.426"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "airplay-el"; - rev = "46fad71d293a3e18551cf464fe6c6208a7a32d9d"; - sha256 = "1dlmkx17lafkxz3sfajylc5fml5rq339xn6v2qj463gg4n8sdgij"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f9d8229e4c91f4e3e8925b07e59d2a81cc745e/recipes/airplay"; - sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f"; - name = "recipe"; - }; - packageRequires = [ deferred request simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/airplay"; - license = lib.licenses.free; - }; - }) {}; - alan-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "alan-mode"; - ename = "alan-mode"; - version = "20190406.2255"; - src = fetchFromGitHub { - owner = "M-industries"; - repo = "AlanForEmacs"; - rev = "a5a705b64230bb14ad1d19bcc0613e3261e8cbe5"; - sha256 = "1jhsrb26fpm9yykp974rx77ika76zq3gq7pcjgixw4d4ga737d95"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e52314db81dad3517ab400099b032260c3e3e6f/recipes/alan-mode"; - sha256 = "1528rh26kr9zj43djbrfb7vmq78spfay3k3ps5apc580ipx1a4hg"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck s ]; - meta = { - homepage = "https://melpa.org/#/alan-mode"; - license = lib.licenses.free; - }; - }) {}; - alarm-clock = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alarm-clock"; - ename = "alarm-clock"; - version = "20190211.2107"; - src = fetchFromGitHub { - owner = "wlemuel"; - repo = "alarm-clock"; - rev = "d5706ace823f75136107c09c6dad79df7c3b290e"; - sha256 = "1jaagkzfdn9z1plw7ky7gabp45gv0a0gap2a55is1i9cyy83kzmw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/440fe05fa0d10d54e9c52e2e54e71a1321325376/recipes/alarm-clock"; - sha256 = "1cgrj6dzpx0q15qzr9d342wg8w92c2r4zmk7rif2h87qxr66fbrg"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/alarm-clock"; - license = lib.licenses.free; - }; - }) {}; - alchemist = callPackage ({ company - , dash - , elixir-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "alchemist"; - ename = "alchemist"; - version = "20180312.604"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "alchemist.el"; - rev = "6f99367511ae209f8fe2c990779764bbb4ccb6ed"; - sha256 = "12f95rwxs11sqf1w9pnf6cxc2lh2jz4nqkq33p8b5yamnl8cq9kg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6616dc61d17c5bd89bc4d226baab24a1f8e49b3e/recipes/alchemist"; - sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; - name = "recipe"; - }; - packageRequires = [ company dash elixir-mode emacs pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/alchemist"; - license = lib.licenses.free; - }; - }) {}; - alda-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alda-mode"; - ename = "alda-mode"; - version = "20180607.2305"; - src = fetchFromGitLab { - owner = "jgkamat"; - repo = "alda-mode"; - rev = "ebc4232e754a3a49c937f59ebd849520b901e54c"; - sha256 = "1rnvchb2rh7yzp2nw7qs9nh9m2r9cvhmkvh1qda3avf1ha9q20hp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/848cb17d871287c401496e4483e400b44696e89d/recipes/alda-mode"; - sha256 = "0qvaxh4392rpxikylcnn31z13wabaydj5aa4jyn499ggqdz7liw9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/alda-mode"; - license = lib.licenses.free; - }; - }) {}; - alect-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alect-themes"; - ename = "alect-themes"; - version = "20190506.740"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "alect-themes"; - rev = "da7305075d292cc1909bf26dc5634bc3cc8d2603"; - sha256 = "06nsfmydlcdqi4fp3nn6yz4xys38f3q196pf3bmmdqgg7pbcm259"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes"; - sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/alect-themes"; - license = lib.licenses.free; - }; - }) {}; - alert = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , gntp - , lib - , log4e - , melpaBuild }: - melpaBuild { - pname = "alert"; - ename = "alert"; - version = "20190227.918"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "alert"; - rev = "a53e39e2fcd14fd0c04db9b27776831f04593b7f"; - sha256 = "1zlnp0hg6sc3n252ca6kgnfyhxgv1b389h4qszp31jg6fwp3jgpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/113953825ac4ff98d90a5375eb48d8b7bfa224e7/recipes/alert"; - sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; - name = "recipe"; - }; - packageRequires = [ cl-lib gntp log4e ]; - meta = { - homepage = "https://melpa.org/#/alert"; - license = lib.licenses.free; - }; - }) {}; - alert-termux = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alert-termux"; - ename = "alert-termux"; - version = "20181119.151"; - src = fetchFromGitHub { - owner = "gergelypolonkai"; - repo = "alert-termux"; - rev = "8215cf1d86392738c35a90bbc0055359265dfc4d"; - sha256 = "05znscs3dljkzsk6xkbw3mx3ns8j0y31l9m01mswqmq98msa409f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d43e98a7142cf0edc89fa9e2f2817787c073667f/recipes/alert-termux"; - sha256 = "19dfxbpp1kn1ara0fj9xr0ishpk1yiykg2al8g43rcy615vkpk8j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/alert-termux"; - license = lib.licenses.free; - }; - }) {}; - align-cljlet = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "align-cljlet"; - ename = "align-cljlet"; - version = "20160112.1301"; - src = fetchFromGitHub { - owner = "gstamp"; - repo = "align-cljlet"; - rev = "ebcf0a912e836579a3a9d386e22c1c4bef7fba17"; - sha256 = "1g0fp77zrnpa9dplj41my2wsin6qxpw49f7451km29mjayh2zhfj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/align-cljlet"; - sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih"; - name = "recipe"; - }; - packageRequires = [ clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/align-cljlet"; - license = lib.licenses.free; - }; - }) {}; - all-ext = callPackage ({ all - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "all-ext"; - ename = "all-ext"; - version = "20170114.1805"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "all-ext"; - rev = "9f4ef84a147cf4e0af6ef45826d6cb3558db6b88"; - sha256 = "0gdrsi9n9i1ibijkgk5kyjdjdmnsccfbpifpv679371glap9f68b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/all-ext"; - sha256 = "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql"; - name = "recipe"; - }; - packageRequires = [ all ]; - meta = { - homepage = "https://melpa.org/#/all-ext"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize }: - melpaBuild { - pname = "all-the-icons"; - ename = "all-the-icons"; - version = "20190320.1109"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "all-the-icons.el"; - rev = "f996fafa5b2ea072d0ad1df9cd98acc75820f530"; - sha256 = "0yc07xppgv78l56v7qwqp4sf3p44znkv5l0vlvwg8x1dciksxgqw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/604c01aa15927bd122260529ff0f4bb6a8168b7e/recipes/all-the-icons"; - sha256 = "00ba4gkfvg38l4s0gsb4asvv1hfw9yjl2786imybzy7bkg9f9x3q"; - name = "recipe"; - }; - packageRequires = [ emacs memoize ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons-dired = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "all-the-icons-dired"; - ename = "all-the-icons-dired"; - version = "20170418.1431"; - src = fetchFromGitHub { - owner = "jtbm37"; - repo = "all-the-icons-dired"; - rev = "980b7747d6c4a7992a1ec56afad908956db0a519"; - sha256 = "1pvbgyxfj4j205nj1r02045f1y4wgavdsk7f45hxkkhms1rj8jyy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/all-the-icons-dired"; - sha256 = "1qj639z24ln29hv6c51g1vsa2jsy4qrlhf8c7d5w9bxcrcn2fnr9"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons-dired"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons-gnus = callPackage ({ all-the-icons - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "all-the-icons-gnus"; - ename = "all-the-icons-gnus"; - version = "20180510.2354"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "all-the-icons-gnus"; - rev = "27f78996da0725943bcfb2d18038e6f7bddfa9c7"; - sha256 = "0yi3nbhx7cdxq2192kh5ra2n0a3qg20p342prz3a0bm3w7q2ym11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8ed74d39d165343c81c2a21aa47e3d3895d8119/recipes/all-the-icons-gnus"; - sha256 = "0vdqhpa49p8vzbad426gl0dvniapyk73kbscvjv7mdl4bwhcr309"; - name = "recipe"; - }; - packageRequires = [ all-the-icons dash emacs ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons-gnus"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons-ivy = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "all-the-icons-ivy"; - ename = "all-the-icons-ivy"; - version = "20190508.1103"; - src = fetchFromGitHub { - owner = "asok"; - repo = "all-the-icons-ivy"; - rev = "babea626db20773de4c408acb2788e2b9c8277e3"; - sha256 = "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9496e6bb6f03f35444fb204860bc50e5e1b36214/recipes/all-the-icons-ivy"; - sha256 = "1xv67gxd2sqj6zld4i3qcid0x5qsbd7baz55m93y1ivdqi7x7gr2"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons-ivy"; - license = lib.licenses.free; - }; - }) {}; - almost-mono-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "almost-mono-themes"; - ename = "almost-mono-themes"; - version = "20190526.2354"; - src = fetchFromGitHub { - owner = "cryon"; - repo = "almost-mono-themes"; - rev = "c3a85c1a665530a5d830665969725cdba8eceb75"; - sha256 = "034k32xkr5ma415hlkbl35z0jxc4sa1inf87hg3y6lrlfl83fyjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71ca87a0dd28f911dd988e1c208896b1ec5bfcc7/recipes/almost-mono-themes"; - sha256 = "1lv7c63lii8463mmsmxnldkwark2c6n46j9zvf990dhacwl4q1mg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/almost-mono-themes"; - license = lib.licenses.free; - }; - }) {}; - amd-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , js2-mode - , js2-refactor - , lib - , makey - , melpaBuild - , projectile - , s - , seq }: - melpaBuild { - pname = "amd-mode"; - ename = "amd-mode"; - version = "20180111.602"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "amd-mode.el"; - rev = "01fd19e0d635ccaf8e812364d8720733f2e84126"; - sha256 = "040g07k2hcwqspansjqfpng0lxzkmip26ipz26q6mvkpwm2wilv4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode"; - sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; - name = "recipe"; - }; - packageRequires = [ - emacs - f - js2-mode - js2-refactor - makey - projectile - s - seq - ]; - meta = { - homepage = "https://melpa.org/#/amd-mode"; - license = lib.licenses.free; - }; - }) {}; - ameba = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ameba"; - ename = "ameba"; - version = "20190503.513"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "ameba.el"; - rev = "76258a17e9ac6dee05469740938920dc3b7a0bb9"; - sha256 = "1crs6qq74krib1mi0z03d0r5xh0k3sf6j57g6s68v1x69zi9vc0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/ameba"; - sha256 = "0500r0yihd208zc8cvdqgfn58a7mrhfnb0lqy509b4k0i8y0v5mq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ameba"; - license = lib.licenses.free; - }; - }) {}; - ammonite-term-repl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , scala-mode }: - melpaBuild { - pname = "ammonite-term-repl"; - ename = "ammonite-term-repl"; - version = "20190511.1712"; - src = fetchFromGitHub { - owner = "zwild"; - repo = "ammonite-term-repl"; - rev = "e8fcb22099d58c8c2becff0c66a87acf46dab132"; - sha256 = "05drkc8dz89i8j8y9smwz7yz0vhbg33cxb6bs1lh1mmhyw3kq9jp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf0ece0efb1fcf0ea7364df0d35fca69862f5e9a/recipes/ammonite-term-repl"; - sha256 = "004cvhyh4afgpb31m1q31g98x8c9m6lmsb5fzc4a1r5pb4p3iimp"; - name = "recipe"; - }; - packageRequires = [ emacs s scala-mode ]; - meta = { - homepage = "https://melpa.org/#/ammonite-term-repl"; - license = lib.licenses.free; - }; - }) {}; - ample-regexps = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ample-regexps"; - ename = "ample-regexps"; - version = "20151023.300"; - src = fetchFromGitHub { - owner = "immerrr"; - repo = "ample-regexps.el"; - rev = "884c712a82773d3af500e71d20bebe52340352c5"; - sha256 = "18cicz11i19cpabrq6khnl9ks1khn6gw5a4ckaq4y65r40x0cr6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a5c72dfb52d55b2b22c91f115b32fff14f2f61e/recipes/ample-regexps"; - sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ample-regexps"; - license = lib.licenses.free; - }; - }) {}; - ample-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ample-theme"; - ename = "ample-theme"; - version = "20180207.945"; - src = fetchFromGitHub { - owner = "jordonbiondo"; - repo = "ample-theme"; - rev = "366698400c555211c2082962a5d74f3dd79a78c8"; - sha256 = "1kzb15aqy7n2wxibmnihya7n6ajs34jxp9iin96n758nza92m59c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d448c03202137a461ed814ce87acfac23faf676e/recipes/ample-theme"; - sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ample-theme"; - license = lib.licenses.free; - }; - }) {}; - ample-zen-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ample-zen-theme"; - ename = "ample-zen-theme"; - version = "20150119.1354"; - src = fetchFromGitHub { - owner = "mjwall"; - repo = "ample-zen"; - rev = "b277bb7abd4b6624e8d59f02474b79af50a007bd"; - sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3b8c21f5dfbe9d4845a01548c8b7d9ddfe172a7/recipes/ample-zen-theme"; - sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ample-zen-theme"; - license = lib.licenses.free; - }; - }) {}; - amx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "amx"; - ename = "amx"; - version = "20190418.2030"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "amx"; - rev = "b46e77d8ef9d1edf225e67055001f7e85048f842"; - sha256 = "0hrgq6kmfqx21y0dpvhwd82rap75lnn2lzlhria893yvqc7phzn5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c55bfad05343b2b0f3150fd2b4adb07a1768c1c0/recipes/amx"; - sha256 = "1ikhjvkca0lsb9j719yf6spg6nwc0qaydkd8aax162sis7kp9fap"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/amx"; - license = lib.licenses.free; - }; - }) {}; - anaconda-mode = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic - , s }: - melpaBuild { - pname = "anaconda-mode"; - ename = "anaconda-mode"; - version = "20190111.724"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "anaconda-mode"; - rev = "af1b59d25044901b2db1612ff284fc7b4a7756e3"; - sha256 = "1jxr4gq4vwybb50pwnfkgmhdxaqlvr029vfa5hagd8d9n5ahpypa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8/recipes/anaconda-mode"; - sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pythonic s ]; - meta = { - homepage = "https://melpa.org/#/anaconda-mode"; - license = lib.licenses.free; - }; - }) {}; - anaphora = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anaphora"; - ename = "anaphora"; - version = "20180618.1500"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "anaphora"; - rev = "3b2da3f759b244975852e79721c4a2dbad3905cf"; - sha256 = "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8505db1945071a15ba0f2bb74b58d4a6875ca7d6/recipes/anaphora"; - sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anaphora"; - license = lib.licenses.free; - }; - }) {}; - android-env = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "android-env"; - ename = "android-env"; - version = "20190513.622"; - src = fetchFromGitHub { - owner = "fernando-jascovich"; - repo = "android-env.el"; - rev = "e89361c53304f0db1120b031876b9a7ff992b8fb"; - sha256 = "1qrjxg5bb2vg50cnmf8ifn3fs5vg55l2zydnx4j6yk7acicvj94m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/570ad0e94736d9fd16f3909bcfa928a9153ea703/recipes/android-env"; - sha256 = "1gfxrfg42rn2rzh5fr4w6h8ngczhl56jghfgrffz9x8wcxxmqgpr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/android-env"; - license = lib.licenses.free; - }; - }) {}; - android-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "android-mode"; - ename = "android-mode"; - version = "20190109.214"; - src = fetchFromGitHub { - owner = "remvee"; - repo = "android-mode"; - rev = "d60c88bfbd2dc5122bd2fde7dc11ec1e6848a5db"; - sha256 = "1hd7wxp8f67cnbyjs4bv9x18nvzn16qjy4pi7bkbcymfpwj33r38"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77633aa340803a433570327943fbe31b396f4355/recipes/android-mode"; - sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/android-mode"; - license = lib.licenses.free; - }; - }) {}; - angry-police-captain = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "angry-police-captain"; - ename = "angry-police-captain"; - version = "20120829.552"; - src = fetchFromGitHub { - owner = "rolpereira"; - repo = "angry-police-captain-el"; - rev = "d11931c5cb63368dcc4a48797962428cca6d3e9d"; - sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/angry-police-captain"; - sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/angry-police-captain"; - license = lib.licenses.free; - }; - }) {}; - angular-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "angular-mode"; - ename = "angular-mode"; - version = "20151201.1327"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "angularjs-mode"; - rev = "8720cde86af0f1859ccc8580571e8d0ad1c52cff"; - sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/angular-mode"; - sha256 = "0pq4lyhppzi806n1k07n0gdhr8z8z71ri12my0pl81rl5j2z69l2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/angular-mode"; - license = lib.licenses.free; - }; - }) {}; - angular-snippets = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "angular-snippets"; - ename = "angular-snippets"; - version = "20140513.2223"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "angular-snippets.el"; - rev = "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b"; - sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96a0ad5fdbc52f803846e580856fb9c58181c020/recipes/angular-snippets"; - sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/angular-snippets"; - license = lib.licenses.free; - }; - }) {}; - anki-editor = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "anki-editor"; - ename = "anki-editor"; - version = "20181230.2353"; - src = fetchFromGitHub { - owner = "louietan"; - repo = "anki-editor"; - rev = "115ce2e2e62deb8dbca91fd84c7999ba80916c89"; - sha256 = "0njwsq03h36hqw55xk6n8225k52nlw1lq0mc9pzww2bf7dccjl9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8155d649e4b129d0c72da6bb2b1aac66c8483491/recipes/anki-editor"; - sha256 = "18c5p82llq11vg1svqvbjrcnm7695nbbc6pwwl9jdjplasar585l"; - name = "recipe"; - }; - packageRequires = [ dash emacs request ]; - meta = { - homepage = "https://melpa.org/#/anki-editor"; - license = lib.licenses.free; - }; - }) {}; - anki-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , request - , s }: - melpaBuild { - pname = "anki-mode"; - ename = "anki-mode"; - version = "20181106.1037"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "anki-mode"; - rev = "095fbe74604892a131a4ffc1f6bb9404717028be"; - sha256 = "08vn9xkp6894s8580gj36ink3bqgcw932rpy6yn6n5qcfykmhpnq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc02d06e7c7e9230e4b082923b889e1e83676263/recipes/anki-mode"; - sha256 = "1d429ws6kmswcyk0dnb303z01kq475n60a520hj258x23vp8802q"; - name = "recipe"; - }; - packageRequires = [ dash emacs markdown-mode request s ]; - meta = { - homepage = "https://melpa.org/#/anki-mode"; - license = lib.licenses.free; - }; - }) {}; - annotate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "annotate"; - ename = "annotate"; - version = "20190519.6"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "annotate.el"; - rev = "09d0cd89e458779ca375ac28bc664ee2e20db530"; - sha256 = "141pqfrrzbqaxxcr6m6ri9r6k1mg5i3cv8v2kili365cypnjdg1y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae88b8e3b080501195d291012deab31aaf35f7/recipes/annotate"; - sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/annotate"; - license = lib.licenses.free; - }; - }) {}; - annotate-depth = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "annotate-depth"; - ename = "annotate-depth"; - version = "20160520.1340"; - src = fetchFromGitHub { - owner = "netromdk"; - repo = "annotate-depth"; - rev = "fcb24fa36287250e40d195590c4ca4a8a696277b"; - sha256 = "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb37bd77aea642ca72d74112bdd8a02eab8d1a80/recipes/annotate-depth"; - sha256 = "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/annotate-depth"; - license = lib.licenses.free; - }; - }) {}; - annoying-arrows-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "annoying-arrows-mode"; - ename = "annoying-arrows-mode"; - version = "20161023.2346"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "annoying-arrows-mode.el"; - rev = "3c42e9807d7696da2da2a21b63beebf9cdb3f5dc"; - sha256 = "06gs5ln3w1xvq8f8k9225rwiipbh9cs0dzyyb7z05717rmqixcc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/annoying-arrows-mode"; - sha256 = "1vswlfypn6ijn0wwa3dsqkz5n3pillpmli2ha4q9snhd3a667vyh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/annoying-arrows-mode"; - license = lib.licenses.free; - }; - }) {}; - ansi = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ansi"; - ename = "ansi"; - version = "20150703.126"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ansi.el"; - rev = "a042c5954453bab9a74177e2b78ad17a824caebc"; - sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ansi"; - sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/ansi"; - license = lib.licenses.free; - }; - }) {}; - ansible = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ansible"; - ename = "ansible"; - version = "20180812.1814"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-ansible"; - rev = "8a097176d6772b6667254dbbe19c5fb64527bf5d"; - sha256 = "1m2cb88jb1wxa9rydkbn5llx2gql453l87b4cgzsjllha6j1488k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e45bf58b980ff542a5e887707a6361eb5ac0492/recipes/ansible"; - sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; - name = "recipe"; - }; - packageRequires = [ f s ]; - meta = { - homepage = "https://melpa.org/#/ansible"; - license = lib.licenses.free; - }; - }) {}; - ansible-doc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ansible-doc"; - ename = "ansible-doc"; - version = "20160924.124"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "ansible-doc.el"; - rev = "bc8128a85a79b14f4a121105d87a5eddc33975ad"; - sha256 = "0z3y69sfzka764wjbx31dywdq4d6bfsafv2gmmbpmxqmwfmy8sz4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1daaaa7462f0b83c15ed9d9e7e6d0ee94434b8e9/recipes/ansible-doc"; - sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ansible-doc"; - license = lib.licenses.free; - }; - }) {}; - ansible-vault = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ansible-vault"; - ename = "ansible-vault"; - version = "20190126.1136"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "ansible-vault-mode"; - rev = "4fe490f524b79748c9f23026bb88d8f516b4ef40"; - sha256 = "17kbjlssxa9b2fcp8vf2xs2k5y6jgpw277mj2gbv173b0i7v1fjd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bff0da29a9b883e53a3d211c5577a3e0bc263a0/recipes/ansible-vault"; - sha256 = "0pmsvpc866rgcajb2ihhb62g3rwhda7vvq2kxkvr566y609vv021"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ansible-vault"; - license = lib.licenses.free; - }; - }) {}; - ant = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ant"; - ename = "ant"; - version = "20160211.743"; - src = fetchFromGitHub { - owner = "apg"; - repo = "ant-el"; - rev = "510b5a3f57ee4b2855422d88d359a28922c1ab70"; - sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ant"; - sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ant"; - license = lib.licenses.free; - }; - }) {}; - anti-zenburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anti-zenburn-theme"; - ename = "anti-zenburn-theme"; - version = "20180712.1138"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "anti-zenburn-theme"; - rev = "dbafbaa86be67c1d409873f57a5c0bbe1e7ca158"; - sha256 = "1h4lachmrpjiblah4rjd2cpvz6n6qh3i5cdp4wra2dk177h7kj6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f6f803dc99a1b1fdb5b4e79f1c9cf72b702d091/recipes/anti-zenburn-theme"; - sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anti-zenburn-theme"; - license = lib.licenses.free; - }; - }) {}; - anx-api = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anx-api"; - ename = "anx-api"; - version = "20140208.714"; - src = fetchFromGitHub { - owner = "rmloveland"; - repo = "emacs-appnexus-api"; - rev = "b2411ebc966ac32c3ffc61bc22bf183834df0fa0"; - sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e3b329ff11818a1553c74a02475cb4110173076/recipes/anx-api"; - sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anx-api"; - license = lib.licenses.free; - }; - }) {}; - anybar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anybar"; - ename = "anybar"; - version = "20160816.721"; - src = fetchFromGitHub { - owner = "tie-rack"; - repo = "anybar-el"; - rev = "7a0743e0d31bcb36ab1bb2e351f3e7139c422ac5"; - sha256 = "1s7vnp2xzffdj4pqdqn6mrirw33ms0yqlpxzz5pwj6xrbp2x5r6s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5516e309df9ac8bf0fafb9ec9037094d82913b67/recipes/anybar"; - sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anybar"; - license = lib.licenses.free; - }; - }) {}; - anyins = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anyins"; - ename = "anyins"; - version = "20131229.241"; - src = fetchFromGitHub { - owner = "antham"; - repo = "anyins"; - rev = "cd5e3c1abd471c8a67aafc42c4c985a2796f4b9f"; - sha256 = "0j36wrvc3kj1afigpc230d92gwszk1qrmiz38jyi9anr6an4ch3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a367da2cb71fc0b144f9e608dc4857624991f19c/recipes/anyins"; - sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anyins"; - license = lib.licenses.free; - }; - }) {}; - anzu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anzu"; - ename = "anzu"; - version = "20190303.901"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-anzu"; - rev = "592f8ee6d0b1bc543943b36a30063c2d1aac4b22"; - sha256 = "123zbnl36vi0gkffd6m6mkskhmjmm0am23j45w1mbmfyq03r1d8b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/anzu"; - sha256 = "181hzwy9bc0zfhax26p20q9cjibrmi9ngps5fa3ja5g6scxfs9g1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/anzu"; - license = lib.licenses.free; - }; - }) {}; - aozora-view = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aozora-view"; - ename = "aozora-view"; - version = "20140310.617"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "aozora-view"; - rev = "b0390616d19e45f15f9a2f5d5688274831e721fd"; - sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6c13f8a0dd90c1c1f39711a5de69c1e0b785601/recipes/aozora-view"; - sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aozora-view"; - license = lib.licenses.free; - }; - }) {}; - apache-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apache-mode"; - ename = "apache-mode"; - version = "20190521.2013"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "apache-mode"; - rev = "354f9302a8d805ac80d846adcd1cef10830b3d51"; - sha256 = "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/apache-mode"; - sha256 = "0wzfx3kaiwvya30ihq3vpdhy6znkzf25w5x43x457ifdn2vrh9zi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apache-mode"; - license = lib.licenses.free; - }; - }) {}; - apel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apel"; - ename = "apel"; - version = "20190407.356"; - src = fetchFromGitHub { - owner = "wanderlust"; - repo = "apel"; - rev = "d146ddbf8818e81d3577d5eee7825d377bec0c73"; - sha256 = "04ic76gzn3m4rnmm2xjc72vrxazxjvsjabd3lbxvwj6c1fb11fnw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/apel"; - sha256 = "0zrm8m66p3aqr0108s3cj6z4xqbg2hx37z1pam4c65bqlhh74s8y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apel"; - license = lib.licenses.free; - }; - }) {}; - apib-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "apib-mode"; - ename = "apib-mode"; - version = "20170520.658"; - src = fetchFromGitHub { - owner = "w-vi"; - repo = "apib-mode"; - rev = "6cc7c6f21b8e415b1718bb6a07ab2182e9e9dde6"; - sha256 = "1717f78kaqkmbhfwb9kzsv5wi2zabcbwb4wh1jklhcaalvmk3z7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ebb04f975d8226a76260895399c937d6a1940/recipes/apib-mode"; - sha256 = "0y3n0xmyc4gkypq07v4sp0i6291qaj2m13zkg6mxp61zm669v2fb"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/apib-mode"; - license = lib.licenses.free; - }; - }) {}; - apiwrap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apiwrap"; - ename = "apiwrap"; - version = "20180602.1531"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "apiwrap.el"; - rev = "e4c9c57d6620a788ec8a715ff1bb50542edea3a6"; - sha256 = "0xpb8mmssajy42r2h1m9inhv1chx19wkp5p0p63nwpk7mhjj8bis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0197fd3657e65e3826375d9b6f19da3058366c91/recipes/apiwrap"; - sha256 = "0n50n1n5pvcgcp1gmna3ci36pnbanjdbjpgv7zyarlb80hywbiyw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/apiwrap"; - license = lib.licenses.free; - }; - }) {}; - apples-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apples-mode"; - ename = "apples-mode"; - version = "20110120.2018"; - src = fetchFromGitHub { - owner = "tequilasunset"; - repo = "apples-mode"; - rev = "83a9ab0d6ba82496e2f7df386909b1a55701fccb"; - sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c/recipes/apples-mode"; - sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apples-mode"; - license = lib.licenses.free; - }; - }) {}; - applescript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "applescript-mode"; - ename = "applescript-mode"; - version = "20090320.2332"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "applescript-mode"; - rev = "8f888cd80af1e0902b5609143facd3051bc94892"; - sha256 = "0d3bqx6346vmniv001jgd6wggp80kv1kqc38sdgd88862gkqnqyg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/576e42b33a5245e1aae0f0d879fd18762342db32/recipes/applescript-mode"; - sha256 = "0rj03xw8yx79xj9ahdwfxicxna0a0lykn2n39xng5gnm4bh2n6z4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/applescript-mode"; - license = lib.licenses.free; - }; - }) {}; - aproject = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aproject"; - ename = "aproject"; - version = "20190530.2013"; - src = fetchFromGitHub { - owner = "vietor"; - repo = "aproject"; - rev = "702caf5392288dfd821b1e744fef0bb4fd9f9281"; - sha256 = "18n3gsghj7sxxd6kpp21b2p7qwv93giwyr1zfvgbs8pzsbc8i9rx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject"; - sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aproject"; - license = lib.licenses.free; - }; - }) {}; - apropospriate-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apropospriate-theme"; - ename = "apropospriate-theme"; - version = "20190403.1132"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "apropospriate-theme"; - rev = "ad27279e7bf883aa7bedec21593d5453bc3963c3"; - sha256 = "1gww774v82nc74hqlclcd0i2ajciha81vh0r7j126a4wv7zxwdns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1da33013f15825ab656260ce7453b8127e0286f4/recipes/apropospriate-theme"; - sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apropospriate-theme"; - license = lib.licenses.free; - }; - }) {}; - apt-sources-list = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apt-sources-list"; - ename = "apt-sources-list"; - version = "20180527.541"; - src = fetchgit { - url = "https://git.korewanetadesu.com/apt-sources-list.git"; - rev = "44112833b3fa7f4d7e43708e5996782e22bb2fa3"; - sha256 = "0av8v9ibqws5vb2sg3bfk0g1pyraqjgwmcg2n23whmpbl5xdnh6k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/141a22e593415302d64cf8ebd2635a1baf35eb38/recipes/apt-sources-list"; - sha256 = "1gnl6zqv6imk2qpv4lj7qyjgf1ldxib3k14gsmwqm0c1zwjsid3j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/apt-sources-list"; - license = lib.licenses.free; - }; - }) {}; - arc-dark-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "arc-dark-theme"; - ename = "arc-dark-theme"; - version = "20190314.932"; - src = fetchFromGitHub { - owner = "cfraz89"; - repo = "arc-dark-theme"; - rev = "ee17dcca35dd0304145efc468b3f25af6907a59d"; - sha256 = "0cfj5c6rz68095wxs8m733lwc5ymbgi5v82drxhjqcascvrdr1v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c9060669b262f0588643bd8758edac578834bc/recipes/arc-dark-theme"; - sha256 = "0a61kxdyzm6gf8gf8fniqz5mqkxk24k8hpxww3996v9mqs1bn05s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/arc-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - arch-packer = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "arch-packer"; - ename = "arch-packer"; - version = "20170730.621"; - src = fetchFromGitHub { - owner = "brotzeit"; - repo = "arch-packer"; - rev = "940e96f7d357c6570b675a0f942181c787f1bfd7"; - sha256 = "0m80ka51m7a1797q6br41x96znvqfmpwzh3vk4mz66mdx2r4xk77"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/arch-packer"; - sha256 = "04kv22vpcpjhc047yz6k6dizmwwdjk6vcm8imri76gi9ns1w5n5z"; - name = "recipe"; - }; - packageRequires = [ async dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/arch-packer"; - license = lib.licenses.free; - }; - }) {}; - archive-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "archive-region"; - ename = "archive-region"; - version = "20140201.1542"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "archive-region"; - rev = "0d357d4c42a6a248c457f358f81b20fd20fede2f"; - sha256 = "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/archive-region"; - sha256 = "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/archive-region"; - license = lib.licenses.free; - }; - }) {}; - archive-rpm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "archive-rpm"; - ename = "archive-rpm"; - version = "20180706.532"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "archive-rpm"; - rev = "59f83caebbd2f92fd634f6968e6d17b50ffa3dc7"; - sha256 = "11ssqaax4jl7r3z5agzmc74sjsfvl0m3xvp015ncqzpzysla47g3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5f5653e62afdc022eac30bda3d21bd2d2625d2e/recipes/archive-rpm"; - sha256 = "0s53zbn71lb008gw3f0b5w4q0pw0vgiqbffgnyib24sh03ijl7z7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/archive-rpm"; - license = lib.licenses.free; - }; - }) {}; - arduino-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , spinner }: - melpaBuild { - pname = "arduino-mode"; - ename = "arduino-mode"; - version = "20180508.1736"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "arduino-mode"; - rev = "8805fe64ea6aba51dacb0d8c9e8e2ca2cac3ccf9"; - sha256 = "1sg6n4ys5lq2m7q876qi88r11c08y05ggyv9r85ahins2pbgbv95"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2db785f52c2facc55459e945ccb4d4b088506747/recipes/arduino-mode"; - sha256 = "1amqah0sx95866ikdlc7h7n9hmrwaqizc0rj0gliv15kjjggv55v"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs spinner ]; - meta = { - homepage = "https://melpa.org/#/arduino-mode"; - license = lib.licenses.free; - }; - }) {}; - aria2 = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aria2"; - ename = "aria2"; - version = "20141107.1517"; - src = fetchFromGitLab { - owner = "ukaszg"; - repo = "aria2"; - rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"; - sha256 = "1xkgz3l7idw5bk1xlffdaddf5v1q6fm3grbryl4xvssrbwgnyisf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89a55e7c313066ae1bc0db0af5c289814c85fcb1/recipes/aria2"; - sha256 = "1gsqdqs3q86k7q88rf7qamc0sp5ca00xn9kr1r717vf6qq6a0c3c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/aria2"; - license = lib.licenses.free; - }; - }) {}; - ariadne = callPackage ({ bert - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ariadne"; - ename = "ariadne"; - version = "20131117.911"; - src = fetchFromGitHub { - owner = "manzyuk"; - repo = "ariadne-el"; - rev = "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15"; - sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/ariadne"; - sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p"; - name = "recipe"; - }; - packageRequires = [ bert ]; - meta = { - homepage = "https://melpa.org/#/ariadne"; - license = lib.licenses.free; - }; - }) {}; - arjen-grey-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "arjen-grey-theme"; - ename = "arjen-grey-theme"; - version = "20170522.1347"; - src = fetchFromGitHub { - owner = "credmp"; - repo = "arjen-grey-theme"; - rev = "4cd0be72b65d42390e2105cfdaa408a1ead8d8d1"; - sha256 = "1n5axwn498ahb6984ir1zfl8vvwgbvq9bbrdfzydkmjljhgrp0rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed9804061cfadd26c69bb1bfe63dbe22f916f723/recipes/arjen-grey-theme"; - sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/arjen-grey-theme"; - license = lib.licenses.free; - }; - }) {}; - artbollocks-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "artbollocks-mode"; - ename = "artbollocks-mode"; - version = "20170523.2122"; - src = fetchFromGitHub { - owner = "sachac"; - repo = "artbollocks-mode"; - rev = "4a907e470bf345b88c3802c1241ce2b8cf4123ee"; - sha256 = "1l1dwhdfd5bwx92k84h5v47pv9my4p4wj0wq8hrwvwzwlv8dzn2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22b237ab91ddd3c17986ea12e6a32f2ce62d3a79/recipes/artbollocks-mode"; - sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/artbollocks-mode"; - license = lib.licenses.free; - }; - }) {}; - arview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "arview"; - ename = "arview"; - version = "20160419.1409"; - src = fetchFromGitHub { - owner = "afainer"; - repo = "arview"; - rev = "5437b4221b64b238c273a651d4792c577dba6d45"; - sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31574cd756f4f93e2c6bcad5eca33a3294cccd54/recipes/arview"; - sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/arview"; - license = lib.licenses.free; - }; - }) {}; - asilea = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "asilea"; - ename = "asilea"; - version = "20150105.725"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "asilea"; - rev = "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f"; - sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/858e673c66e876d80f41d47d307c944d7bdb147d/recipes/asilea"; - sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/asilea"; - license = lib.licenses.free; - }; - }) {}; - asn1-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "asn1-mode"; - ename = "asn1-mode"; - version = "20170728.1926"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "asn1-mode"; - rev = "d5d4a8259daf708411699bcea85d322f18beb972"; - sha256 = "067khpi4ghzyifrk1vhi57n3alp67qks4k4km11hasiavi5gsjmp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b694baceceb54810be8f8c7152b2ac0b4063f01c/recipes/asn1-mode"; - sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/asn1-mode"; - license = lib.licenses.free; - }; - }) {}; - assess = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , m-buffer - , melpaBuild }: - melpaBuild { - pname = "assess"; - ename = "assess"; - version = "20190102.211"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "assess"; - rev = "7a3189a5870fb20d179ff3ea761707a046814966"; - sha256 = "0qif6q4j0i5p2izj9p7sv1j2s6a95zklswfx8x2shv22dkphznkl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f917a34506193f2674b195569dfd3c13ba62c1d/recipes/assess"; - sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; - name = "recipe"; - }; - packageRequires = [ emacs m-buffer ]; - meta = { - homepage = "https://melpa.org/#/assess"; - license = lib.licenses.free; - }; - }) {}; - async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "async"; - ename = "async"; - version = "20190502.2356"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "emacs-async"; - rev = "bd68cc1ab1ac6af890e250bdaa12ffb1cb9649be"; - sha256 = "02n46dqbpdjlj65s1aka6ky49rgv2rpn06lzpfxwxl7kkzclc5f8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/async"; - sha256 = "0s2qrmkqqfgi1ilzbj0rfk27f89p4dycdl1lqkbsm23j0zya53w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/async"; - license = lib.licenses.free; - }; - }) {}; - async-await = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , promise }: - melpaBuild { - pname = "async-await"; - ename = "async-await"; - version = "20170208.350"; - src = fetchFromGitHub { - owner = "chuntaro"; - repo = "emacs-async-await"; - rev = "da472e38bb7b8eaeea3f81ffd13e4006c31e9e6f"; - sha256 = "02mqlf07bq24c4gg12zgyyg3a3dqnwygxkm70w7ziwr6hv05kzdh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d74ecf94e5dbb46a939d26833b7cd0efd159ca1/recipes/async-await"; - sha256 = "1534rhr4j74qbndafdj9q2wggcn8gphhjn3id8p27wyxr5sh93ms"; - name = "recipe"; - }; - packageRequires = [ emacs promise ]; - meta = { - homepage = "https://melpa.org/#/async-await"; - license = lib.licenses.free; - }; - }) {}; - at = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "at"; - ename = "@"; - version = "20181225.638"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "at-el"; - rev = "0a6189f8be42dbbc5d9358cbd447d471236135a2"; - sha256 = "11s46n3j6ij0ynxwl35wxbzg97pkmnhxh43l5vvaz9kizf6mhpbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/@"; - sha256 = "0da0xqk8fhz8aij3zmpp4bz3plpvfq2riyy17i7ny4ralxb3g08z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/@"; - license = lib.licenses.free; - }; - }) {}; - atom-dark-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "atom-dark-theme"; - ename = "atom-dark-theme"; - version = "20181022.902"; - src = fetchFromGitHub { - owner = "whitlockjc"; - repo = "atom-dark-theme-emacs"; - rev = "5c8610d0b45a536b8f7f9777297c86362685a357"; - sha256 = "15mjn5z7f7x8k4lbab5xv2r88s9ch9b58znv6vwpqakp63rx8hsx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1f565871559d6ea4ca4bb2fbaebce58f2f383eb/recipes/atom-dark-theme"; - sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/atom-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - atom-one-dark-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "atom-one-dark-theme"; - ename = "atom-one-dark-theme"; - version = "20190605.946"; - src = fetchFromGitHub { - owner = "jonathanchu"; - repo = "atom-one-dark-theme"; - rev = "bbad275cd51dcee14c42be647b15c39ffb26aac0"; - sha256 = "01df7z5mkpvl6lvcz0jn4jyvs2q94mszviqaxvc65wswrvxa05di"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ba1c4625c9603372746a6c2edb69d65f0ef79f5/recipes/atom-one-dark-theme"; - sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/atom-one-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - atomic-chrome = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "atomic-chrome"; - ename = "atomic-chrome"; - version = "20180617.24"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "atomic-chrome"; - rev = "a505f638866f9e7b913784be0dc84f338e9ad449"; - sha256 = "081465ahis2rvlklzn2vakbwn5dgr43ks4csp3arnlj11b43f3ai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35785773942a5510e2317ded5bdf872ffe434e8c/recipes/atomic-chrome"; - sha256 = "0dx12mjdc4vhbvrcl61a7j247mgs71vvy0qqj6czbpfawfl46am9"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist websocket ]; - meta = { - homepage = "https://melpa.org/#/atomic-chrome"; - license = lib.licenses.free; - }; - }) {}; - attrap = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "attrap"; - ename = "attrap"; - version = "20190207.610"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "attrap"; - rev = "3b092bb8f6755a97e6ecb7623b9d2dde58beba4a"; - sha256 = "05d32980saji8ja1pcv65l0s3dq7w0n5hpikbf246hciy1x067pp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7420eca80a8c1776d68b1f121511cc265cc70dc/recipes/attrap"; - sha256 = "1gxnrlsn9xcnnx0nhjxnhrz9bdpk2kpzjhj8jhjmwws9y361fimh"; - name = "recipe"; - }; - packageRequires = [ dash emacs f flycheck s ]; - meta = { - homepage = "https://melpa.org/#/attrap"; - license = lib.licenses.free; - }; - }) {}; - auctex-latexmk = callPackage ({ auctex - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auctex-latexmk"; - ename = "auctex-latexmk"; - version = "20170618.936"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "auctex-latexmk"; - rev = "64967712b1bbfac8069aa5940fddef938a692a1a"; - sha256 = "0syd65b6x6lz6as5ih5pldmwgbmq0v3d9pay2n04vqrvsij6m3qy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f48af615c56f093dff417a5d3b705f9993c518f/recipes/auctex-latexmk"; - sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; - name = "recipe"; - }; - packageRequires = [ auctex ]; - meta = { - homepage = "https://melpa.org/#/auctex-latexmk"; - license = lib.licenses.free; - }; - }) {}; - auctex-lua = callPackage ({ auctex - , fetchFromGitHub - , fetchurl - , lib - , lua-mode - , melpaBuild }: - melpaBuild { - pname = "auctex-lua"; - ename = "auctex-lua"; - version = "20151121.810"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "auctex-lua"; - rev = "799cd8ac10c96991bb63d9aa60528ae5d8c786b5"; - sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/102c7b05f5bfff12ac2820cae58c0205ca450559/recipes/auctex-lua"; - sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf"; - name = "recipe"; - }; - packageRequires = [ auctex lua-mode ]; - meta = { - homepage = "https://melpa.org/#/auctex-lua"; - license = lib.licenses.free; - }; - }) {}; - audio-notes-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "audio-notes-mode"; - ename = "audio-notes-mode"; - version = "20170611.1459"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "audio-notes-mode"; - rev = "fa38350829c7e97257efc746a010471d33748a68"; - sha256 = "1srg6rg3j9ri2cyr4g78dfqq3fhpn6hf3mq4iz2jfqjayppfv38b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/audio-notes-mode"; - sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/audio-notes-mode"; - license = lib.licenses.free; - }; - }) {}; - aurel = callPackage ({ bui - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aurel"; - ename = "aurel"; - version = "20170114.137"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "aurel"; - rev = "fc7ad208f43f8525f84a18941c9b55f956df8961"; - sha256 = "0mcbw8p4wrnnr39wzkfz9kc899w0k1jb00q1926mchf202cmnz94"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1612acd2cf1fea739739608113923ec51d307e9/recipes/aurel"; - sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; - name = "recipe"; - }; - packageRequires = [ bui dash emacs ]; - meta = { - homepage = "https://melpa.org/#/aurel"; - license = lib.licenses.free; - }; - }) {}; - aurora-config-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aurora-config-mode"; - ename = "aurora-config-mode"; - version = "20180216.1502"; - src = fetchFromGitHub { - owner = "bdd"; - repo = "aurora-config-mode.el"; - rev = "8273ec7937a21b469b9dbb6c11714255b890f410"; - sha256 = "1dlhf35hhjgkd9bqbpwrb825g1z6nh14mg31jg2avv55s28j0riy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10a44bed8edee646bf68abf7dffbe352a137a278/recipes/aurora-config-mode"; - sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aurora-config-mode"; - license = lib.licenses.free; - }; - }) {}; - auth-source-pass = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auth-source-pass"; - ename = "auth-source-pass"; - version = "20190528.1259"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "auth-password-store"; - rev = "4b8e5e2d35ac3de1933e6ea55b3d59f181f4568f"; - sha256 = "017jlxvzg31wmxsp04y71fnk80qgwbigsdp2z35y94xqcfnpij3k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass"; - sha256 = "0icwdwz2zy3f9ynksr81pgq482iapsbx8lpyssiklyw0xgd1k8ak"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auth-source-pass"; - license = lib.licenses.free; - }; - }) {}; - auto-async-byte-compile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-async-byte-compile"; - ename = "auto-async-byte-compile"; - version = "20160915.2154"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "auto-async-byte-compile"; - rev = "8681e74ddb8481789c5dbb3cafabb327db4c4484"; - sha256 = "1g98gla9qdqmifsxakhkbxlljy2ln1s3wfahk9zycrwgzfjlsdf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/auto-async-byte-compile"; - sha256 = "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-async-byte-compile"; - license = lib.licenses.free; - }; - }) {}; - auto-auto-indent = callPackage ({ cl-lib ? null - , es-lib - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-auto-indent"; - ename = "auto-auto-indent"; - version = "20131106.1103"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "auto-auto-indent"; - rev = "0139378577f936d34b20276af6f022fb457af490"; - sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/auto-auto-indent"; - sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7"; - name = "recipe"; - }; - packageRequires = [ cl-lib es-lib ]; - meta = { - homepage = "https://melpa.org/#/auto-auto-indent"; - license = lib.licenses.free; - }; - }) {}; - auto-compile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , packed }: - melpaBuild { - pname = "auto-compile"; - ename = "auto-compile"; - version = "20181230.1416"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "auto-compile"; - rev = "e6bbb1371324c8884af3b201e9adbc9296eb2ff4"; - sha256 = "1jyn7yvbvk7cydy3pzwqlb0yxf5cxdiipa1gnigdk9wdbj68wjjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/auto-compile"; - sha256 = "08k9wqk4yysps8n5n50v7lpadwsnm553pv9p7m242fwbgbsgz6nf"; - name = "recipe"; - }; - packageRequires = [ emacs packed ]; - meta = { - homepage = "https://melpa.org/#/auto-compile"; - license = lib.licenses.free; - }; - }) {}; - auto-complete = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "auto-complete"; - ename = "auto-complete"; - version = "20170124.1845"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "auto-complete"; - rev = "2e83566ddfa758c69afe50b8a1c62a66f47471e3"; - sha256 = "1rkqjq7wr4aavg08i8mq13w85z14xdhfmpbipj5mhwlpyrrci4bk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/auto-complete"; - sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; - name = "recipe"; - }; - packageRequires = [ cl-lib popup ]; - meta = { - homepage = "https://melpa.org/#/auto-complete"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-auctex = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "auto-complete-auctex"; - ename = "auto-complete-auctex"; - version = "20140223.958"; - src = fetchFromGitHub { - owner = "monsanto"; - repo = "auto-complete-auctex"; - rev = "855633f668bcc4b9408396742a7cb84e0c4a2f77"; - sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77167fb2e84bed32ace9490c1ed4148719e4cf8e/recipes/auto-complete-auctex"; - sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh"; - name = "recipe"; - }; - packageRequires = [ auto-complete yasnippet ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-auctex"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-c-headers = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-c-headers"; - ename = "auto-complete-c-headers"; - version = "20150911.2023"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "auto-complete-c-headers"; - rev = "52fef720c6f274ad8de52bef39a343421006c511"; - sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0174b70fec45ddec9c1e9555adc82fef59054135/recipes/auto-complete-c-headers"; - sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-c-headers"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-chunk = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-chunk"; - ename = "auto-complete-chunk"; - version = "20140225.146"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "auto-complete-chunk"; - rev = "a9aa77ffb84a1037984a7ce4dda25074272f13fe"; - sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/306e2528638d97c28372df55a9376750d3fde1d4/recipes/auto-complete-chunk"; - sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-chunk"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-clang = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-clang"; - ename = "auto-complete-clang"; - version = "20140409.52"; - src = fetchFromGitHub { - owner = "brianjcj"; - repo = "auto-complete-clang"; - rev = "a195db1d0593b4fb97efe50885e12aa6764d998c"; - sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eab7d88a893fdf76c22f0aa5ac3577efd60fc9b4/recipes/auto-complete-clang"; - sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-clang"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-clang-async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-clang-async"; - ename = "auto-complete-clang-async"; - version = "20130526.814"; - src = fetchFromGitHub { - owner = "Golevka"; - repo = "emacs-clang-complete-async"; - rev = "5eb63c8a1e4ca3af124baf0f8f801b949888f9b8"; - sha256 = "09f8hqs9n13lkb7b352ig07b9xm1w0mbbnqfy2s5cw4cppmakf2n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23aa24b025216359c5e600eee2f2cd4ecc7556e3/recipes/auto-complete-clang-async"; - sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-complete-clang-async"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-distel = callPackage ({ auto-complete - , distel-completion-lib - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-distel"; - ename = "auto-complete-distel"; - version = "20180827.644"; - src = fetchFromGitHub { - owner = "sebastiw"; - repo = "distel-completion"; - rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e"; - sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/auto-complete-distel"; - sha256 = "0ca242gl8dl4rmg8qqyhgxvf46fprl2npbq2w8f6s546s9nql4jk"; - name = "recipe"; - }; - packageRequires = [ auto-complete distel-completion-lib ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-distel"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-exuberant-ctags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-exuberant-ctags"; - ename = "auto-complete-exuberant-ctags"; - version = "20140320.24"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "auto-complete-exuberant-ctags"; - rev = "ff6121ff8b71beb5aa606d28fd389c484ed49765"; - sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc9786ed8cea2461b592f860d8e2a0897c57068/recipes/auto-complete-exuberant-ctags"; - sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-exuberant-ctags"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-nxml = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-nxml"; - ename = "auto-complete-nxml"; - version = "20140220.2058"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "auto-complete-nxml"; - rev = "ac7b09a23e45f9bd02affb31847263de4180163a"; - sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c89dcbf03a802a4361e44174a332a312e352be36/recipes/auto-complete-nxml"; - sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-nxml"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-pcmp = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "auto-complete-pcmp"; - ename = "auto-complete-pcmp"; - version = "20140226.2251"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "auto-complete-pcmp"; - rev = "dc5c0af834d327dd686d74a4171e5d9170007a6c"; - sha256 = "0ygak7hypc27d0wvciksnmg8c5njw2skf1ml60vs63a1krkax63i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c53a8aeaaab23e032a8e7cb5cad7e531a1662c/recipes/auto-complete-pcmp"; - sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-pcmp"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-rst = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-rst"; - ename = "auto-complete-rst"; - version = "20140225.144"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "auto-complete-rst"; - rev = "4803ce41a96224e6fa54e6741a5b5f40ebed7351"; - sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c948dc47f67aa47a1607cbdacdc95241d1a658f/recipes/auto-complete-rst"; - sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-rst"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-sage = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sage-shell-mode }: - melpaBuild { - pname = "auto-complete-sage"; - ename = "auto-complete-sage"; - version = "20160514.51"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "auto-complete-sage"; - rev = "51b8e3905196d266e1f8aa47881189833151b398"; - sha256 = "139in1jgxg43v7ji4i1qmxbgspr71h95lzlz0fvdk78vkxc5842b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1cd78dcd58d559c47873f8fcfcab089a8493dd6/recipes/auto-complete-sage"; - sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; - name = "recipe"; - }; - packageRequires = [ auto-complete sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-sage"; - license = lib.licenses.free; - }; - }) {}; - auto-dictionary = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-dictionary"; - ename = "auto-dictionary"; - version = "20150410.910"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "auto-dictionary-mode"; - rev = "b364e08009fe0062cf0927d8a0582fad5a12b8e7"; - sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1711d710ac09fe407fde89ee351ccdcb78555d35/recipes/auto-dictionary"; - sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-dictionary"; - license = lib.licenses.free; - }; - }) {}; - auto-dim-other-buffers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-dim-other-buffers"; - ename = "auto-dim-other-buffers"; - version = "20180612.1641"; - src = fetchFromGitHub { - owner = "mina86"; - repo = "auto-dim-other-buffers.el"; - rev = "ec74b4803adeadf06296c84595fb6ccf4e1b4a3f"; - sha256 = "0l08kx12k97nag8khb63rz5fl1r9gahgmjg5073h25lypl74895n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/auto-dim-other-buffers"; - sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-dim-other-buffers"; - license = lib.licenses.free; - }; - }) {}; - auto-highlight-symbol = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-highlight-symbol"; - ename = "auto-highlight-symbol"; - version = "20130313.243"; - src = fetchFromGitHub { - owner = "gennad"; - repo = "auto-highlight-symbol"; - rev = "26573de912d760e04321b350897aea70958cee8b"; - sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdf73ee62f0a4e762e3a1aa94284abea8da8ce7c/recipes/auto-highlight-symbol"; - sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-highlight-symbol"; - license = lib.licenses.free; - }; - }) {}; - auto-indent-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-indent-mode"; - ename = "auto-indent-mode"; - version = "20171221.2106"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "auto-indent-mode.el"; - rev = "28069360a7f89ad0286fd6a53db550752ec58488"; - sha256 = "14sqmv320ryfljpxbjw9xphj6bz1ccjk3ih4cm1r8aryyhxiacii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49af78177278e7072c70fde0eaa5bb82490ebe9d/recipes/auto-indent-mode"; - sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-indent-mode"; - license = lib.licenses.free; - }; - }) {}; - auto-minor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-minor-mode"; - ename = "auto-minor-mode"; - version = "20180527.423"; - src = fetchFromGitHub { - owner = "joewreschnig"; - repo = "auto-minor-mode"; - rev = "c62f4e04c7b73835c399f0348bea0ade2720bcbb"; - sha256 = "0vqqy6nbb884h8qhzqvjycvfqbm9pbhqxr3dlxrhfx8m6c3iasq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3ab5f048034777551e344101d8415cac92362c8/recipes/auto-minor-mode"; - sha256 = "1dpdylrpw1pvlmhh229b3lqs07drx9kdhw4vcv5a48qah14dz6qa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - auto-org-md = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-org-md"; - ename = "auto-org-md"; - version = "20180213.1543"; - src = fetchFromGitHub { - owner = "jamcha-aa"; - repo = "auto-org-md"; - rev = "9318338bdb7fe8bd698d88f3af89b2d6413efdd2"; - sha256 = "1dzxc1f4yvj8xww5drcpzmn3fyi8ziimh1cmy6l3i399l1zl0njj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39f934f86b5dc04078c204bcbd268af60857e268/recipes/auto-org-md"; - sha256 = "1yh9g8407kym6r0b8kr18qshxlrkw47ac17a9lvql0ksshfmnqvk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-org-md"; - license = lib.licenses.free; - }; - }) {}; - auto-package-update = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-package-update"; - ename = "auto-package-update"; - version = "20180712.1345"; - src = fetchFromGitHub { - owner = "rranelli"; - repo = "auto-package-update.el"; - rev = "55870d313fbe9db40b1a2b59dbc420ba66a9297e"; - sha256 = "06hnr7id7w774adip0yffxh6c2xk27j2kch03r8y0v19mnfrvb39"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78f549a299a06941edce13381f597f3a61e8c723/recipes/auto-package-update"; - sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-package-update"; - license = lib.licenses.free; - }; - }) {}; - auto-pause = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-pause"; - ename = "auto-pause"; - version = "20160426.516"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "auto-pause"; - rev = "a4d778de774ca3895542cb559a953e0d98657338"; - sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/275d1b1bf1eb47cd9c769286c03b2b9aff9d74dd/recipes/auto-pause"; - sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-pause"; - license = lib.licenses.free; - }; - }) {}; - auto-read-only = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-read-only"; - ename = "auto-read-only"; - version = "20170305.2043"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "auto-read-only.el"; - rev = "20e26d9eb017e6ab61fbd53f2ac2511b0afe3446"; - sha256 = "140w3gdbvyajy9rq82mc24mk7zsvhq4wc8yrrdwlzhzmqaflcz76"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/189e394eb9fac09783c75ff1b64facdd745a0454/recipes/auto-read-only"; - sha256 = "1cvh2c7pgdxgnl0fr1lymz9pf573hj6dn8cjcb64wdczkrci7yk5"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/auto-read-only"; - license = lib.licenses.free; - }; - }) {}; - auto-rename-tag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-rename-tag"; - ename = "auto-rename-tag"; - version = "20190524.2328"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "auto-rename-tag"; - rev = "4bd41b3107d3971c9533f9d0c8718c299669cb78"; - sha256 = "1g6kllnl625h6vmnps15a7ivpxq3k6s4vdxj50dj2i76g19wi2cn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/auto-rename-tag"; - sha256 = "0ysm559b2p2v2v39cssx5cviy2qb78cjvhmy76hih09qimg2azrz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-rename-tag"; - license = lib.licenses.free; - }; - }) {}; - auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-save-buffers-enhanced"; - ename = "auto-save-buffers-enhanced"; - version = "20161108.2310"; - src = fetchFromGitHub { - owner = "kentaro"; - repo = "auto-save-buffers-enhanced"; - rev = "461e8c816c1b7c650be5f209078b381fe55da8c6"; - sha256 = "0ckjijjpqpbv9yrqfnl3x9hcdwwdgvm5r2vyx1a9nk4d3i0hd9i5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d221a217e9f6a686fa2a8b120a1f0b43c4482ce6/recipes/auto-save-buffers-enhanced"; - sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-save-buffers-enhanced"; - license = lib.licenses.free; - }; - }) {}; - auto-shell-command = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "auto-shell-command"; - ename = "auto-shell-command"; - version = "20180817.802"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "auto-shell-command"; - rev = "a8f9213e3c773b5687b81881240e6e648f2f56ba"; - sha256 = "1b0kgqh521y16cx84rbsr244i4fs3l8h4wqjy2zdpwbpbikx1hxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea710bfa77fee7c2688eea8258ca9d2105d1896e/recipes/auto-shell-command"; - sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; - name = "recipe"; - }; - packageRequires = [ deferred popwin ]; - meta = { - homepage = "https://melpa.org/#/auto-shell-command"; - license = lib.licenses.free; - }; - }) {}; - auto-sudoedit = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-sudoedit"; - ename = "auto-sudoedit"; - version = "20180915.6"; - src = fetchFromGitHub { - owner = "ncaq"; - repo = "auto-sudoedit"; - rev = "16bfa23e6d9c30968a6b6364ada17c88138255f3"; - sha256 = "1f2rqi5nqa40lgcsnbxk9r4dzn6kcachh3qjv76lm9lzyc41c8ln"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cf6bc8bb7b618d74427622b9b2812daa79a3767/recipes/auto-sudoedit"; - sha256 = "1clp52fqxsilyi62p1cabhan55lbwax6fqlhccyjbl36yrdig3fh"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/auto-sudoedit"; - license = lib.licenses.free; - }; - }) {}; - auto-virtualenv = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyvenv - , s }: - melpaBuild { - pname = "auto-virtualenv"; - ename = "auto-virtualenv"; - version = "20170125.1117"; - src = fetchFromGitHub { - owner = "marcwebbie"; - repo = "auto-virtualenv"; - rev = "fd98a2d34cb6828e59317a50f8763ee1fd672b00"; - sha256 = "1fsigqngd9a2zkkwzz86ynpr8gvm56329clw8zb8vq0058rdxsjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ccb91515d9a8195061429ed8df3471867d211f9a/recipes/auto-virtualenv"; - sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk"; - name = "recipe"; - }; - packageRequires = [ cl-lib pyvenv s ]; - meta = { - homepage = "https://melpa.org/#/auto-virtualenv"; - license = lib.licenses.free; - }; - }) {}; - auto-virtualenvwrapper = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , virtualenvwrapper }: - melpaBuild { - pname = "auto-virtualenvwrapper"; - ename = "auto-virtualenvwrapper"; - version = "20181006.237"; - src = fetchFromGitHub { - owner = "robert-zaremba"; - repo = "auto-virtualenvwrapper.el"; - rev = "72cc9168db475e8328019f9592493560dab832a5"; - sha256 = "1cvc2k5x0ircnpppwwmm813h7c59pyswz4dfgwqqrk325zcnp80f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02a209ae8f9fc68feb3bb64d32d129fedef2b80b/recipes/auto-virtualenvwrapper"; - sha256 = "1v82z922d9sadwvyrl4iddsa19f5k43s6iwn8w146jcl0v42bkmd"; - name = "recipe"; - }; - packageRequires = [ cl-lib s virtualenvwrapper ]; - meta = { - homepage = "https://melpa.org/#/auto-virtualenvwrapper"; - license = lib.licenses.free; - }; - }) {}; - auto-yasnippet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "auto-yasnippet"; - ename = "auto-yasnippet"; - version = "20190326.258"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "auto-yasnippet"; - rev = "2f755e20d61d7d9098e00dd01f4b6d096bdf1a88"; - sha256 = "1vf5mc19siak82fgx29n18ni7fnfc2b1k32jdssk0irk9zcjir06"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d33c0aee6a5d27217bbae28fc8f448c3badc8a4b/recipes/auto-yasnippet"; - sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/auto-yasnippet"; - license = lib.licenses.free; - }; - }) {}; - autobookmarks = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autobookmarks"; - ename = "autobookmarks"; - version = "20180531.1206"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "autobookmarks"; - rev = "e971aa49d97da9f7ed760b37e0b674e45f1c5673"; - sha256 = "04453h3s9g7ka028s4f97z606czq3vsvphrmba533jkl8lk3hpi8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e40e6ebeb30b3f23ad37a695e011431a48c5a62e/recipes/autobookmarks"; - sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/autobookmarks"; - license = lib.licenses.free; - }; - }) {}; - autodisass-java-bytecode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autodisass-java-bytecode"; - ename = "autodisass-java-bytecode"; - version = "20151005.912"; - src = fetchFromGitHub { - owner = "gbalats"; - repo = "autodisass-java-bytecode"; - rev = "3d61dbe266133c950b39e880f78d142751c7dc4c"; - sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a094845521d76754a29435012af5fba9f7975a8e/recipes/autodisass-java-bytecode"; - sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autodisass-java-bytecode"; - license = lib.licenses.free; - }; - }) {}; - autodisass-llvm-bitcode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autodisass-llvm-bitcode"; - ename = "autodisass-llvm-bitcode"; - version = "20150410.1825"; - src = fetchFromGitHub { - owner = "gbalats"; - repo = "autodisass-llvm-bitcode"; - rev = "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0"; - sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/657e8f6bd0e44f11db8480ca42fb29d85fc3ec29/recipes/autodisass-llvm-bitcode"; - sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autodisass-llvm-bitcode"; - license = lib.licenses.free; - }; - }) {}; - automargin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "automargin"; - ename = "automargin"; - version = "20131112.14"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "automargin"; - rev = "f0dce37b7ece368dd805e03b5e2af6e571038bc6"; - sha256 = "0p95kszsllkj11dyn9vq9ycp8mlir2mzh80gj5kwmkvd10s2s3c6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0937e63ec686cc3e183bddb029a514c64934fc81/recipes/automargin"; - sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/automargin"; - license = lib.licenses.free; - }; - }) {}; - autopair = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autopair"; - ename = "autopair"; - version = "20160304.437"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "autopair"; - rev = "2b6d72bccb0ebba6e7e711528872b898b0c65b0a"; - sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/autopair"; - sha256 = "0l2ypsj3dkasm0lj9jmnaqjs3rv97ldfw8cmayv77mzfd6lhjmh3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/autopair"; - license = lib.licenses.free; - }; - }) {}; - autotest = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autotest"; - ename = "autotest"; - version = "20190331.1530"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "elisp"; - rev = "b59013510006294b5e7623522f620d5cbac95cf3"; - sha256 = "06ij30gvpf7244xsdv14qdb86nqqahfrr20gafla764w6r1il62z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc2c4a590cbeccfb43003972a78f5d76ec4a9e7/recipes/autotest"; - sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autotest"; - license = lib.licenses.free; - }; - }) {}; - autotetris-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autotetris-mode"; - ename = "autotetris-mode"; - version = "20141114.846"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "autotetris-mode"; - rev = "7d348d33829bc89ddbd2b4d5cfe5073c3b0cbaaa"; - sha256 = "14pjsb026mgjf6l3dggy255knr7c1vfmgb6kgafmkzvr96aglcdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c5c698b7dfb179f43b9fdf4652b96e2d7f8e7c6/recipes/autotetris-mode"; - sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/autotetris-mode"; - license = lib.licenses.free; - }; - }) {}; - autothemer = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autothemer"; - ename = "autothemer"; - version = "20180920.223"; - src = fetchFromGitHub { - owner = "jasonm23"; - repo = "autothemer"; - rev = "69488c71dfc182cf2e7be2d745037f230ade678e"; - sha256 = "0l3xsnp5j46jcjc1nkfbfg0pyzdi94rn0h5idfpqikj6f3ralh10"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/autothemer"; - sha256 = "0wahmbihyr3dx4lgiwi7041gvmmqlzlv7ss25fw90srs9n2h05gj"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/autothemer"; - license = lib.licenses.free; - }; - }) {}; - autumn-light-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autumn-light-theme"; - ename = "autumn-light-theme"; - version = "20150515.747"; - src = fetchFromGitHub { - owner = "aalpern"; - repo = "emacs-color-theme-autumn-light"; - rev = "26a52a79e7fff401af6d24c4365bb4a250c1136a"; - sha256 = "0nc71mxp57h5dnd1vrgc9vh0lrjzq5mfm8li4b11l2gpnbv4s4wi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52a7598dc550c76f4e081fe1c4a6d8697bd30561/recipes/autumn-light-theme"; - sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autumn-light-theme"; - license = lib.licenses.free; - }; - }) {}; - avandu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avandu"; - ename = "avandu"; - version = "20170101.1103"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "avandu"; - rev = "f44588d8e747fa880411cb4542cc39962252b90a"; - sha256 = "097wls9k6qrf12nn8mpszfbqsaqc81956yqxns1sjs6dmjqi0c7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1344e49e6a41ce390a047cb8d48090160b37b50/recipes/avandu"; - sha256 = "174bd3vbvh0l9282bg8575nqc71zkg90bwbxbv1b7dz8qaaczhcy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/avandu"; - license = lib.licenses.free; - }; - }) {}; - avk-emacs-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avk-emacs-themes"; - ename = "avk-emacs-themes"; - version = "20181127.2345"; - src = fetchFromGitHub { - owner = "avkoval"; - repo = "avk-emacs-themes"; - rev = "cadbfb4c9cd6812d63b69076a9d90514bfd2db66"; - sha256 = "07isy168fnvyy25z1wwyr6740bmwmff6c3yfcdy7dnypcj9whllr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef362a76a3881c7596dcc2639df588227b3713c0/recipes/avk-emacs-themes"; - sha256 = "0yimnfm50qsq505fc67b3qnxx2aiyz5a7bw87zkjrdnar12vv144"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/avk-emacs-themes"; - license = lib.licenses.free; - }; - }) {}; - avy = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy"; - ename = "avy"; - version = "20190520.247"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "avy"; - rev = "f91ae613a86187c8ca75e86f22e3f5ac9958399c"; - sha256 = "0kkglpk7x2hps176yzymp112fgmxng1r3pfbb48hh9ivsbmzykl7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy"; - sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/avy"; - license = lib.licenses.free; - }; - }) {}; - avy-flycheck = callPackage ({ avy - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "avy-flycheck"; - ename = "avy-flycheck"; - version = "20160720.800"; - src = fetchFromGitHub { - owner = "magicdirac"; - repo = "avy-flycheck"; - rev = "5522f3bbbed1801d9278ed696ec0cbba38352985"; - sha256 = "1nwc8xid0k6bnnpgsrrlwx71a04llkiapjsbchp9jgcf11l5mghw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05755bed49219072d2ec98f0be5ecba4deda7cd1/recipes/avy-flycheck"; - sha256 = "0xvgysbx8yxhypms6639kk3cn0x6y6njnhnn9lf6hxsi96wd9y96"; - name = "recipe"; - }; - packageRequires = [ avy emacs flycheck seq ]; - meta = { - homepage = "https://melpa.org/#/avy-flycheck"; - license = lib.licenses.free; - }; - }) {}; - avy-menu = callPackage ({ avy - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy-menu"; - ename = "avy-menu"; - version = "20181231.2308"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "avy-menu"; - rev = "4610cb0f41a84b2a8506360768d74e93661da8b3"; - sha256 = "1yms2n1j1w19g7rjxpxhi5bfkl1czjaqyz5lqabmndcd4sljbc4y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0b4cfb30c405d44803b36ebcaccef0cf87fe2d/recipes/avy-menu"; - sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; - name = "recipe"; - }; - packageRequires = [ avy emacs ]; - meta = { - homepage = "https://melpa.org/#/avy-menu"; - license = lib.licenses.free; - }; - }) {}; - avy-migemo = callPackage ({ avy - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "avy-migemo"; - ename = "avy-migemo"; - version = "20180716.755"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "avy-migemo"; - rev = "922a6dd82c0bfa316b0fbb56a9d4dd4ffa5707e7"; - sha256 = "1a4421h15ba7lsnbh8kqm3hvs06fp830wb1nvwgpsk7vmqqi2qgl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a02db29eb3e4b76b4a9cdbc966df5a1bd35dec0/recipes/avy-migemo"; - sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; - name = "recipe"; - }; - packageRequires = [ avy emacs migemo ]; - meta = { - homepage = "https://melpa.org/#/avy-migemo"; - license = lib.licenses.free; - }; - }) {}; - avy-zap = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy-zap"; - ename = "avy-zap"; - version = "20190411.2020"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "avy-zap"; - rev = "f1089c96b290225032a09c14e87568958ac93438"; - sha256 = "14ihz0bj1grpy25l5mapcmfjxw2pvcmkxi53vc2db73di8panv3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10a2a57c78ac1d8ab621031caa21e8574daeb9a0/recipes/avy-zap"; - sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/avy-zap"; - license = lib.licenses.free; - }; - }) {}; - aws-ec2 = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tblui }: - melpaBuild { - pname = "aws-ec2"; - ename = "aws-ec2"; - version = "20161007.1214"; - src = fetchFromGitHub { - owner = "Yuki-Inoue"; - repo = "aws.el"; - rev = "5601d4f268fc34b86a02ca90cde7d3771619a368"; - sha256 = "15idbbxsghzn737s9jppnx820nnm1srcl1418458hwfy3wqhq38g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90ac00160cbf692baa1f3953122ac828356944e0/recipes/aws-ec2"; - sha256 = "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd"; - name = "recipe"; - }; - packageRequires = [ dash emacs tblui ]; - meta = { - homepage = "https://melpa.org/#/aws-ec2"; - license = lib.licenses.free; - }; - }) {}; - aws-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "aws-snippets"; - ename = "aws-snippets"; - version = "20190207.247"; - src = fetchFromGitHub { - owner = "baron42bba"; - repo = "aws-snippets"; - rev = "9cb1edaaa86609b51a7fbf39ec643cc5ae80eaa1"; - sha256 = "1rzfzb19h5d0ikysxi0xcbyvv733kdmcmydpc7wwq9qkb31wck56"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/485aa401a6a14cd4a916474d9a7df12cdf45d591/recipes/aws-snippets"; - sha256 = "1p2il4ig3nafsapa87hgghw6ri9d5qqi0hl8zjyypa06rcnag9g9"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/aws-snippets"; - license = lib.licenses.free; - }; - }) {}; - axiom-environment = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "axiom-environment"; - ename = "axiom-environment"; - version = "20190323.1224"; - src = fetchgit { - url = "https://bitbucket.org/pdo/axiom-environment"; - rev = "e3444570fa081410171a089f6c118ea6627e5d48"; - sha256 = "04j18cxr5il5fmdk4habsyys2z47gbldjsfnwzy2xpb316bc5m66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/axiom-environment"; - sha256 = "1hzfxdwhgv0z9136k7bdjhqjrkawsjmvqch6za6p7nkpd9ikr2zb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/axiom-environment"; - license = lib.licenses.free; - }; - }) {}; - babel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "babel"; - ename = "babel"; - version = "20181201.119"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "babel"; - rev = "c25dedb5c7f2465b122102f02cd9845668818c20"; - sha256 = "1ydb8zbg8n56wf5hb8i3i2s40mspqfkszfdd8v8jjqb5wm8q32rc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc/recipes/babel"; - sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/babel"; - license = lib.licenses.free; - }; - }) {}; - babel-repl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "babel-repl"; - ename = "babel-repl"; - version = "20160504.1501"; - src = fetchFromGitHub { - owner = "hung-phan"; - repo = "babel-repl"; - rev = "0faa2f6518a2b46236f116ca1736a314f7d9c034"; - sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfd4ac01ea16fcbc6e9343a953a2f278c5874d3d/recipes/babel-repl"; - sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/babel-repl"; - license = lib.licenses.free; - }; - }) {}; - back-button = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , nav-flash - , pcache - , persistent-soft - , smartrep - , ucs-utils }: - melpaBuild { - pname = "back-button"; - ename = "back-button"; - version = "20150804.1304"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "back-button"; - rev = "98d92984a740acd1547bd7ed05cca0affdb21c3e"; - sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/back-button"; - sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; - name = "recipe"; - }; - packageRequires = [ - list-utils - nav-flash - pcache - persistent-soft - smartrep - ucs-utils - ]; - meta = { - homepage = "https://melpa.org/#/back-button"; - license = lib.licenses.free; - }; - }) {}; - backlight = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "backlight"; - ename = "backlight"; - version = "20180629.1459"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "backlight.el"; - rev = "096e632bf100d318754d6c961c90ebb0ef29dce5"; - sha256 = "0w9ng4rhsawcf96mnpy71h50j4mankmvjnfknxlmwiwlmx4sp0f1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b33ef75760ff02983d8c4c6f98621bb441751c3/recipes/backlight"; - sha256 = "0gzshxs9vw5wrb6pnxdaw5q4c8i0vsmc7wb0y2jyhxsr81mlxdpi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/backlight"; - license = lib.licenses.free; - }; - }) {}; - backline = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , outline-minor-faces }: - melpaBuild { - pname = "backline"; - ename = "backline"; - version = "20181111.32"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "backline"; - rev = "960deaef1d87658f79a0bd95c85946371d211590"; - sha256 = "017w7qa74laq04h359znn9kjsqpl91gypsqsldpnlrb25jw0z0gl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f252e45e8bd6e8af1267755d108f378a974ddaf1/recipes/backline"; - sha256 = "0y5y048s6r3mcgjfxpmwarnhn6lh00j9cla6qjsd83f79hw5cq4y"; - name = "recipe"; - }; - packageRequires = [ emacs outline-minor-faces ]; - meta = { - homepage = "https://melpa.org/#/backline"; - license = lib.licenses.free; - }; - }) {}; - backup-each-save = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "backup-each-save"; - ename = "backup-each-save"; - version = "20180226.2157"; - src = fetchFromGitHub { - owner = "conornash"; - repo = "backup-each-save"; - rev = "3c414b9d6b278911c95c5b8b71819e6af6f8a02a"; - sha256 = "13pliz2ra020hhxcidkyhfa0767n188l1w5r0vpvv6zqyc2p414i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caa478356d20b5b0e9a450f7b4a8b25937e583a4/recipes/backup-each-save"; - sha256 = "1l7lx3vd27qypkxa0cdm8zbd9fv08xn1bf6xj6g9c49ql95xbyiv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/backup-each-save"; - license = lib.licenses.free; - }; - }) {}; - backup-walker = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "backup-walker"; - ename = "backup-walker"; - version = "20130720.816"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "backup-walker"; - rev = "934a4128c122972ac32bb9952addf279a60a94da"; - sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9428a70292cf6b796d7d994ad6b73d7d45970c19/recipes/backup-walker"; - sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/backup-walker"; - license = lib.licenses.free; - }; - }) {}; - backward-forward = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "backward-forward"; - ename = "backward-forward"; - version = "20161228.2150"; - src = fetchFromGitLab { - owner = "vancan1ty"; - repo = "emacs-backward-forward"; - rev = "58489957a62a0da25dfb5df902624d2548d800b4"; - sha256 = "14v9q58vd0iggs8x8hjh24cv58g2pbwnr6zghd2anaygbj74ij24"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb44d7b604c50d4e07404c0dff071fbc66ea903d/recipes/backward-forward"; - sha256 = "0kpy761xdk2s21s92cw03fgw5xq9glybrhnjv2v89xrg16vdvamf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/backward-forward"; - license = lib.licenses.free; - }; - }) {}; - badger-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "badger-theme"; - ename = "badger-theme"; - version = "20140716.1932"; - src = fetchFromGitHub { - owner = "ccann"; - repo = "badger-theme"; - rev = "80fb9f8ace37b2e8807da639f7da499a53ffefd4"; - sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/298e43769c6cd855526d847e8e3b237912360777/recipes/badger-theme"; - sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/badger-theme"; - license = lib.licenses.free; - }; - }) {}; - badwolf-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "badwolf-theme"; - ename = "badwolf-theme"; - version = "20161004.15"; - src = fetchFromGitHub { - owner = "bkruczyk"; - repo = "badwolf-emacs"; - rev = "ea01a3d9358e968f75e3ed15dec6a2a96ce3d9a1"; - sha256 = "0a6adsxvmw3mgji17is75jrq3ifmzpch8rwqqyfgc99xzndvab7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/badwolf-theme"; - sha256 = "15n33l0iaq2pk70rpw7qdm8dlwcinfclpnlr3bs7vcb1dknp4g9v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/badwolf-theme"; - license = lib.licenses.free; - }; - }) {}; - banner-comment = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "banner-comment"; - ename = "banner-comment"; - version = "20180923.1211"; - src = fetchFromGitHub { - owner = "WJCFerguson"; - repo = "banner-comment"; - rev = "ac52f6b24e590787a385c08cc3751d6f2ddca815"; - sha256 = "1630py97ldh3w71s26jbcxk58529g03sl0padnzqj0rbqy82yw8w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bb69f15cb6be38a86abf4d15450a29c9a819068/recipes/banner-comment"; - sha256 = "0i5nkfdwfr9mcir2ijdhw563azmr5p7hyl6rfy1r04fzs8j7w2pc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/banner-comment"; - license = lib.licenses.free; - }; - }) {}; - bap-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bap-mode"; - ename = "bap-mode"; - version = "20190401.846"; - src = fetchFromGitHub { - owner = "fkie-cad"; - repo = "bap-mode"; - rev = "5e0570a4d70003aea451232358c0adb2d1a813fc"; - sha256 = "0vb8r4xar2fz5yxfsx7ss9k0vd72dypz8lgavypkb1kvvizv0h5b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05b1b5885a9d5e3bda38bc8a2f987bffd9353cc0/recipes/bap-mode"; - sha256 = "1n0sv6d6vnv40iks18vws16psbv83v401pdd8w2d2cfhhsmmi4ii"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bap-mode"; - license = lib.licenses.free; - }; - }) {}; - bar-cursor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bar-cursor"; - ename = "bar-cursor"; - version = "20180226.1645"; - src = fetchFromGitHub { - owner = "ajsquared"; - repo = "bar-cursor"; - rev = "20cb59bedc3532a712fe7feeff3660ebd72a8107"; - sha256 = "06b0nkcp8yjixps72nrgk2zmljc9f71cdr96jdpgssydfhn4pcdf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/932e7b128f092ec724ebf18c9c5ca84e16edc82c/recipes/bar-cursor"; - sha256 = "0f7z3mlnh3p28pmn1bnqbszcy1j68dwm8xra1wz8jgykvrdlyf2s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bar-cursor"; - license = lib.licenses.free; - }; - }) {}; - bart-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bart-mode"; - ename = "bart-mode"; - version = "20190601.304"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "bart-mode"; - rev = "f70b6c42452e47c0c6b3ebd4c90e555a9bedeec7"; - sha256 = "0s47ijlnspndia6f1116g6nr6hnirmba6fkvdcvw4qm7mhn5xrc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f9cb09c07cb9fdef15de3e8dbfb6725d97dff6f/recipes/bart-mode"; - sha256 = "0wyfsf7kqfghnci9rlk9x0rkai6x7hy3vfzkgh7s2yz081p1kfam"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bart-mode"; - license = lib.licenses.free; - }; - }) {}; - base16-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "base16-theme"; - ename = "base16-theme"; - version = "20190603.1342"; - src = fetchFromGitHub { - owner = "belak"; - repo = "base16-emacs"; - rev = "880646d8c574e3b4eecfa870e135fc564766c93d"; - sha256 = "1kmnwbm1jgmrs6jdc3mlmx6ga9dzhiqpqa8a9js6ws4rdl2iz7dr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30862f6be74882cfb57fb031f7318d3fd15551e3/recipes/base16-theme"; - sha256 = "115dhr3gfvdz5wv76fwpv3b4dywiwbk69qrhkfhij8vpcfybrpzx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/base16-theme"; - license = lib.licenses.free; - }; - }) {}; - bash-completion = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bash-completion"; - ename = "bash-completion"; - version = "20190516.1154"; - src = fetchFromGitHub { - owner = "szermatt"; - repo = "emacs-bash-completion"; - rev = "61592a1ce11efdff1d18bb7675c651a8f914c10d"; - sha256 = "09chkvcwy12h24wlb92hjyanrsfc1nc735h8bpi0ffy1i8lxmlfm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion"; - sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bash-completion"; - license = lib.licenses.free; - }; - }) {}; - basic-c-compile = callPackage ({ cl-lib ? null - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "basic-c-compile"; - ename = "basic-c-compile"; - version = "20170302.312"; - src = fetchFromGitHub { - owner = "nick96"; - repo = "basic-c-compile"; - rev = "335e96e19647ad7245fb68cf7e68cf86c5023d23"; - sha256 = "1sq6mmg5361z30psn6x2ylpr8yxsbg3d47qai9px7p889p63384l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/basic-c-compile"; - sha256 = "0g595d1vd97b5qqydpb6cr3ibgcm08cw8c154h35vz3cl4w86mwd"; - name = "recipe"; - }; - packageRequires = [ cl-lib f ]; - meta = { - homepage = "https://melpa.org/#/basic-c-compile"; - license = lib.licenses.free; - }; - }) {}; - basic-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "basic-mode"; - ename = "basic-mode"; - version = "20180919.1052"; - src = fetchFromGitHub { - owner = "dykstrom"; - repo = "basic-mode"; - rev = "812f078240f9de09491701853569335ba6d9b5ff"; - sha256 = "1492klgbkxb46x02kmhngccx4p9fmjvf6m4ay89j7pyaixvcqj8v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71801bdc0720f150edeab6796487c753c6e7c3f5/recipes/basic-mode"; - sha256 = "1l0ylzww7jg6l804fdrklhay4is0wx1drfi9l9wn7gcdjh76mr6g"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/basic-mode"; - license = lib.licenses.free; - }; - }) {}; - basic-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "basic-theme"; - ename = "basic-theme"; - version = "20160817.127"; - src = fetchFromGitHub { - owner = "fgeller"; - repo = "basic-theme.el"; - rev = "9d0fd5f56898a5237c1de3363ad416aeab7f880e"; - sha256 = "1bnv8kkg6yy09kxns78xlbl0vwc5dz0azvgvry2a0361f48f0315"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/451d1b67fefec5d3a346b1261d1284e8df6927a0/recipes/basic-theme"; - sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/basic-theme"; - license = lib.licenses.free; - }; - }) {}; - bats-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bats-mode"; - ename = "bats-mode"; - version = "20160513.2315"; - src = fetchFromGitHub { - owner = "dougm"; - repo = "bats-mode"; - rev = "d519f7c89f5ae17dfc33400596df4564b478315f"; - sha256 = "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d742fb825e163beb33c3873aa48a1c411711e312/recipes/bats-mode"; - sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bats-mode"; - license = lib.licenses.free; - }; - }) {}; - battle-haxe = callPackage ({ async - , cl-lib ? null - , company - , dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "battle-haxe"; - ename = "battle-haxe"; - version = "20190421.1924"; - src = fetchFromGitHub { - owner = "AlonTzarafi"; - repo = "battle-haxe"; - rev = "c25894ef8a148b568922e5c9a5c90c52c5de5e3c"; - sha256 = "0zlrrxqj95kn4pw8qh8xhldikzfbja61lvjcy7xxhsv5nvgrzc9j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75781ee881a8f3215ab40d47273c8a9d1fed7949/recipes/battle-haxe"; - sha256 = "02x7hchk3jninas4mybn98m09wn1bfqqdjfq45b6rgw1am6mvvwz"; - name = "recipe"; - }; - packageRequires = [ - async - cl-lib - company - dash - dash-functional - emacs - f - helm - s - ]; - meta = { - homepage = "https://melpa.org/#/battle-haxe"; - license = lib.licenses.free; - }; - }) {}; - bazel-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bazel-mode"; - ename = "bazel-mode"; - version = "20190606.100"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "bazel-mode"; - rev = "f07e75fc2dd97ba20e40806927409357aaad2496"; - sha256 = "0grbvzqy4x6wh2951jsh5mmbhwbd6j5figqj7v9q5px5alprjqsl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3945f7eba7d5f248cace11a7946262ac2500b01a/recipes/bazel-mode"; - sha256 = "10590pbpg6mwkcwlm01nxf0ypw694h1b57frvn5rnc53al87i586"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bazel-mode"; - license = lib.licenses.free; - }; - }) {}; - bbcode-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbcode-mode"; - ename = "bbcode-mode"; - version = "20190304.1322"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-bbcode-mode"; - rev = "e16619c80ea21154b4a4ccc2e13d0077e97c9caf"; - sha256 = "0l7jygskxmbckf3xhbjzgwzkrj2m6z1n3i2l7qc9ii4i3mhpx0ai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57c307eecfc0fccfdc525ce6ff63a69ff3b78874/recipes/bbcode-mode"; - sha256 = "0rrhvwb4hrg2sbjbpgdghcgrc6gwpq3vax28r5mlacn5w5x31qjb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/bbcode-mode"; - license = lib.licenses.free; - }; - }) {}; - bbdb = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb"; - ename = "bbdb"; - version = "20190317.1353"; - src = fetchgit { - url = "https://git.savannah.nongnu.org/git/bbdb.git"; - rev = "e702668eb55fad2952f677cfc82898518d627bb3"; - sha256 = "167br6hfb2xshwjnbzhxzf9z09w3lficvc2kbxskgk8qjkm53hqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/bbdb"; - sha256 = "0mm8n3dbi8lap3pjr97n2f675iy7sg476sm1vxygbc3j67rq1zb2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bbdb"; - license = lib.licenses.free; - }; - }) {}; - bbdb- = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "bbdb-"; - ename = "bbdb-"; - version = "20140221.1554"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "bbdb-"; - rev = "2839e84c894de2513af41053e80a277a1b483d22"; - sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01e7a8cc1dde506cb2fcfd9270f15dc61c43ec17/recipes/bbdb-"; - sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; - name = "recipe"; - }; - packageRequires = [ bbdb log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/bbdb-"; - license = lib.licenses.free; - }; - }) {}; - bbdb-csv-import = callPackage ({ bbdb - , dash - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , pcsv }: - melpaBuild { - pname = "bbdb-csv-import"; - ename = "bbdb-csv-import"; - version = "20180121.1649"; - src = fetchFromGitLab { - owner = "iankelling"; - repo = "bbdb-csv-import"; - rev = "dbc2e0fe9e8ae65e494011044d905ae79b3cee3e"; - sha256 = "0n52arydcsmarkpqqwxvw686cypl7iz73kzizirdjhcqmzimx9pl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/bbdb-csv-import"; - sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm"; - name = "recipe"; - }; - packageRequires = [ bbdb dash pcsv ]; - meta = { - homepage = "https://melpa.org/#/bbdb-csv-import"; - license = lib.licenses.free; - }; - }) {}; - bbdb-ext = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb-ext"; - ename = "bbdb-ext"; - version = "20151220.1213"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "bbdb-ext"; - rev = "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55"; - sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1ba0575cb6f0270bab8bf00726842b2a4d0bef3/recipes/bbdb-ext"; - sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li"; - name = "recipe"; - }; - packageRequires = [ bbdb ]; - meta = { - homepage = "https://melpa.org/#/bbdb-ext"; - license = lib.licenses.free; - }; - }) {}; - bbdb-vcard = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb-vcard"; - ename = "bbdb-vcard"; - version = "20190410.1354"; - src = fetchFromGitHub { - owner = "tohojo"; - repo = "bbdb-vcard"; - rev = "853cbcd882be137a5488c70328c25f5982aca657"; - sha256 = "0r8xcxvzalf5g12mqy6w7yv34nxd8n2wcqa5ib06nf40n162nrwg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd5d9027c49beae89f78d2a30dfa4bd070dff1bd/recipes/bbdb-vcard"; - sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; - name = "recipe"; - }; - packageRequires = [ bbdb ]; - meta = { - homepage = "https://melpa.org/#/bbdb-vcard"; - license = lib.licenses.free; - }; - }) {}; - bbdb2erc = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb2erc"; - ename = "bbdb2erc"; - version = "20170221.554"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "bbdb2erc"; - rev = "15db2bd29df0f6ee32c499fdeffb960b6a7f97a0"; - sha256 = "0jlm6qffhh84vy5wmkxmsm5i4dp87cfh7zr5kvrw72zyww986kn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/bbdb2erc"; - sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; - name = "recipe"; - }; - packageRequires = [ bbdb ]; - meta = { - homepage = "https://melpa.org/#/bbdb2erc"; - license = lib.licenses.free; - }; - }) {}; - bbyac = callPackage ({ browse-kill-ring - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbyac"; - ename = "bbyac"; - version = "20180206.641"; - src = fetchFromGitHub { - owner = "baohaojun"; - repo = "bbyac"; - rev = "9f0de9cad13801891ffb590dc09f51ff9a7cb225"; - sha256 = "0q0i1j8ljfd61rk6d5fys7wvdbym9pz5nhwyfvmm0ijmy19d1ppz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92c10c13a1bd19c8bdbca128852d1c91b76f7002/recipes/bbyac"; - sha256 = "1pb12b8xrcgyniwqc90z3kr3rq9kkzxjawwcz7xwzymq39fx0897"; - name = "recipe"; - }; - packageRequires = [ browse-kill-ring cl-lib ]; - meta = { - homepage = "https://melpa.org/#/bbyac"; - license = lib.licenses.free; - }; - }) {}; - bdo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bdo"; - ename = "bdo"; - version = "20140126.101"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "bdo"; - rev = "c96cb6aa9e97fa3491185c50dee0f77a13241010"; - sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bdo"; - sha256 = "1n2kpaps6992nxl0v1003czcbw1k4xq906an56694wkh05az505j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bdo"; - license = lib.licenses.free; - }; - }) {}; - beacon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "beacon"; - ename = "beacon"; - version = "20190104.1131"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "beacon"; - rev = "bde78180c678b233c94321394f46a81dc6dce1da"; - sha256 = "19m90jjbsjzhzf7phlg79l8d2kxgrqnrrg1ipa3sf7vzxxkmsdld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d09cfab21be800831644218e9c8c4433087951c0/recipes/beacon"; - sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/beacon"; - license = lib.licenses.free; - }; - }) {}; - beeminder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "beeminder"; - ename = "beeminder"; - version = "20180413.1229"; - src = fetchFromGitHub { - owner = "Sodaware"; - repo = "beeminder.el"; - rev = "3fcee7a7003a37171ddb59171c7f4b5dd4b34349"; - sha256 = "0phiyv4n5y052fgxngl3yy74akb378sr6manx21s360gnxzcblwd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/beeminder"; - sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/beeminder"; - license = lib.licenses.free; - }; - }) {}; - beginend = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "beginend"; - ename = "beginend"; - version = "20180827.226"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "beginend"; - rev = "e4ff077de4a2c80e1f42adfc86837537899447a5"; - sha256 = "15mcwh6189581l9abzm2japdv8fzpwf1vlr9ql8xb1mn3nih9qi5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c1157d4fd9e47a780bbd91075252acdc7899dd/recipes/beginend"; - sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/beginend"; - license = lib.licenses.free; - }; - }) {}; - belarus-holidays = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "belarus-holidays"; - ename = "belarus-holidays"; - version = "20190102.543"; - src = fetchgit { - url = "https://bitbucket.org/EugeneMakei/belarus-holidays.el"; - rev = "35a18273e19edc3b4c761030ffbd11116483b83e"; - sha256 = "1mddjgv2q0sr5v4gxvrzz8y0ybj2bjb5klqsrjajcpbpgbim1qgf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6987c5fbafc602ff6b48c347b4e3e7c4471681e8/recipes/belarus-holidays"; - sha256 = "0ls4y0bjdz37zvzp2xppsa4qdgmpwkz2l6ycjf9134brdnhm9gqy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/belarus-holidays"; - license = lib.licenses.free; - }; - }) {}; - benchmark-init = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "benchmark-init"; - ename = "benchmark-init"; - version = "20150905.238"; - src = fetchFromGitHub { - owner = "dholm"; - repo = "benchmark-init-el"; - rev = "8e4c32f32ec869fe521fb4d3c0a69406830b4178"; - sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54b9ae6fc10b0c56fcc7a0ad73743ffc85a3e9a0/recipes/benchmark-init"; - sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/benchmark-init"; - license = lib.licenses.free; - }; - }) {}; - benchstat = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "benchstat"; - ename = "benchstat"; - version = "20171013.2012"; - src = fetchFromGitHub { - owner = "Quasilyte"; - repo = "benchstat.el"; - rev = "fee86f521f22ef0f99564903d63e2023b591fc7f"; - sha256 = "1rzb6ai5f5mf9kn0nnjfxjn3l3h5b9ksbkqr1bi52fagryxrfgl2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9180fbedf95f9b1f5810bbf4929dfee513f89e3/recipes/benchstat"; - sha256 = "0h2zi4gh23bas1zfj7j2x994lwgd3xyys96ipg1vq7z2b06572k9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/benchstat"; - license = lib.licenses.free; - }; - }) {}; - bert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bert"; - ename = "bert"; - version = "20131117.214"; - src = fetchFromGitHub { - owner = "manzyuk"; - repo = "bert-el"; - rev = "a3eec6980a725aa4abd2019e4c00246450260490"; - sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89635cd11621b04a8575629ec1bf196fb3ea5d43/recipes/bert"; - sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bert"; - license = lib.licenses.free; - }; - }) {}; - better-defaults = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "better-defaults"; - ename = "better-defaults"; - version = "20190224.1016"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "better-defaults"; - rev = "0937ac9a813632c48d114cf959768cda9676db3a"; - sha256 = "0zwixak4aysj6hckg7h7qj6ha6n7fb9v66drfpgjcg4ylg500anr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bb729c1ad8602a5c0c27e81c9442981a54a924a/recipes/better-defaults"; - sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/better-defaults"; - license = lib.licenses.free; - }; - }) {}; - better-jumper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "better-jumper"; - ename = "better-jumper"; - version = "20190510.947"; - src = fetchFromGitHub { - owner = "gilbertw1"; - repo = "better-jumper"; - rev = "2c04d4bc09da88c5b8b276c87d3f9f56e517144e"; - sha256 = "1gzmhgr17mvxj1qvcisfq74dbb2rsgzx2wrbjf36jrwfzx7sdjxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b08970e3bd5d64e640158d98d7e3ab5031d82895/recipes/better-jumper"; - sha256 = "0javbi799yijc3lb4dzkjwj4f4wxxrga9iixik544z98412ia8an"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/better-jumper"; - license = lib.licenses.free; - }; - }) {}; - better-shell = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "better-shell"; - ename = "better-shell"; - version = "20180625.616"; - src = fetchFromGitHub { - owner = "killdash9"; - repo = "better-shell"; - rev = "cfcd9d57f87ad68cd72bf4935fd1aaa1d9f059a9"; - sha256 = "1z2c2w7p9clijzsfjhcghl76ycy6s0lyymxglzzk7js5np8idmdr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/better-shell"; - sha256 = "0si8nj18i3jlhdb8m6f21rmi0lxians34vhw4xhvxw2yr9l85lj6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/better-shell"; - license = lib.licenses.free; - }; - }) {}; - bf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bf-mode"; - ename = "bf-mode"; - version = "20130403.742"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "bf-mode"; - rev = "7cc4d09aed64d9db6be95646f5f5067de68f8895"; - sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fe1763891c7343c0ad0c7970b8a3c9035b4e8a/recipes/bf-mode"; - sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bf-mode"; - license = lib.licenses.free; - }; - }) {}; - bfbuilder = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bfbuilder"; - ename = "bfbuilder"; - version = "20150924.950"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "bfbuilder"; - rev = "bb4c8a7be39af97ea5016099b320edd6d2b78149"; - sha256 = "1n87db51ff3bqk3dk6rzipcl9mxr74a6wwkkpxq607wjxhxz0b9y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e77dd911b850846f1719b2ee943b74028d94f04/recipes/bfbuilder"; - sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/bfbuilder"; - license = lib.licenses.free; - }; - }) {}; - bibclean-format = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "bibclean-format"; - ename = "bibclean-format"; - version = "20190302.1217"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "bibclean-format"; - rev = "b4003950a925d1c659bc359ab5e88e4441775d77"; - sha256 = "1x5hbs9j4ms93p080267kjyqpk81il3x7q87awf6qzz5xhc20d3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a96cc66b22e7ec145ffa3031089a3d60e77b8c42/recipes/bibclean-format"; - sha256 = "1lvi1r612jb6w0j6mbq93gk9f7hmb1pn42lfs47gvf0prmjf1zyb"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/bibclean-format"; - license = lib.licenses.free; - }; - }) {}; - biblio = callPackage ({ biblio-core - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "biblio"; - ename = "biblio"; - version = "20190214.1907"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "biblio.el"; - rev = "ff05f0b7b1d3378c570a898c6f99f787256b3d53"; - sha256 = "1z4xzrqkw9bzs0fxyddhrpyh9yflvd0d8ki2fywl9d6d5lnns3h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5fbaa8c59b0e64d13beb0e0f18b0734afa84f51/recipes/biblio"; - sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; - name = "recipe"; - }; - packageRequires = [ biblio-core emacs ]; - meta = { - homepage = "https://melpa.org/#/biblio"; - license = lib.licenses.free; - }; - }) {}; - biblio-bibsonomy = callPackage ({ biblio-core - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "biblio-bibsonomy"; - ename = "biblio-bibsonomy"; - version = "20190105.400"; - src = fetchFromGitHub { - owner = "andreasjansson"; - repo = "biblio-bibsonomy.el"; - rev = "fbdb3ecfcd88c179a2358d7967f7ecafef725835"; - sha256 = "0awqlv1v672vz51wccmijicv4agn0gqw5xllp0pxg8djzxl8isgl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4867fd81cf56c8a74dcc71774790aa602b068a7/recipes/biblio-bibsonomy"; - sha256 = "0xfycxsslmr5si636l9pv9w5s5hmlk3253wq2vg8dm7b7ag5gr4s"; - name = "recipe"; - }; - packageRequires = [ biblio-core emacs ]; - meta = { - homepage = "https://melpa.org/#/biblio-bibsonomy"; - license = lib.licenses.free; - }; - }) {}; - biblio-core = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "biblio-core"; - ename = "biblio-core"; - version = "20190214.1843"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "biblio.el"; - rev = "a5088a332513930ccad808bb792a5823ed44652e"; - sha256 = "0ld1190wdqnpsf4kzbr59jykcrs0dhiha18pfxd82bh6b76h534k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f086d3e8fd6a95ce198e148cd3ede35dd73fb8/recipes/biblio-core"; - sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/biblio-core"; - license = lib.licenses.free; - }; - }) {}; - bibliothek = callPackage ({ a - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pdf-tools }: - melpaBuild { - pname = "bibliothek"; - ename = "bibliothek"; - version = "20190124.1028"; - src = fetchFromGitHub { - owner = "cadadr"; - repo = "elisp"; - rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4"; - sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8308e72c4437237fded29db1f60b3eba0edd26/recipes/bibliothek"; - sha256 = "011wnya65vfnn17fn1vhq0sk8c1mli81x0nb44yi6zl1hwxivb55"; - name = "recipe"; - }; - packageRequires = [ a emacs pdf-tools ]; - meta = { - homepage = "https://melpa.org/#/bibliothek"; - license = lib.licenses.free; - }; - }) {}; - bibretrieve = callPackage ({ auctex - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bibretrieve"; - ename = "bibretrieve"; - version = "20180901.228"; - src = fetchFromGitHub { - owner = "pzorin"; - repo = "bibretrieve"; - rev = "600fa1fcc4c5d79c628457f2316f3429c96be006"; - sha256 = "17jy0a4j97vxnj9659q0jr32nx8kj12j9vhi5hnfw2nqxz33x7gr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e548e0cf8babaf32f1db58099599a72cebdbb84d/recipes/bibretrieve"; - sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii"; - name = "recipe"; - }; - packageRequires = [ auctex emacs ]; - meta = { - homepage = "https://melpa.org/#/bibretrieve"; - license = lib.licenses.free; - }; - }) {}; - bibslurp = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "bibslurp"; - ename = "bibslurp"; - version = "20151202.1546"; - src = fetchFromGitHub { - owner = "mkmcc"; - repo = "bibslurp"; - rev = "aeba96368f2a06959e4fe945375ce2a54d34b189"; - sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67f473e839d6325f193c641792671f43fbf83b6d/recipes/bibslurp"; - sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/bibslurp"; - license = lib.licenses.free; - }; - }) {}; - bibtex-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bibtex-utils"; - ename = "bibtex-utils"; - version = "20170817.1219"; - src = fetchFromGitHub { - owner = "plantarum"; - repo = "bibtex-utils"; - rev = "ed5ccce46c2088a28a2f0c49caa679d2f20567f0"; - sha256 = "0cy0w4986lngzhzmfvk9r5xf0qa9bdz2ybzgv3nkwl48pjqvvi15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5764b6a880e8143db66e9011cc1c2bf0bcd61082/recipes/bibtex-utils"; - sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bibtex-utils"; - license = lib.licenses.free; - }; - }) {}; - bicycle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bicycle"; - ename = "bicycle"; - version = "20180909.1426"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "bicycle"; - rev = "42a5db3514019d539500a67f913411f5533a1eb3"; - sha256 = "1nanf0dp7kqzs2mc8gzr9qzn9v6q86sdr35pzysdl41xqydxpsrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec9b4138ffaf81b556e01b85ce4b112e77909260/recipes/bicycle"; - sha256 = "16ikqbmsjyknj3580wdnp8ffs85bq9idf9hvxm0ihgw5gy469xqj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bicycle"; - license = lib.licenses.free; - }; - }) {}; - bifocal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bifocal"; - ename = "bifocal"; - version = "20181109.1941"; - src = fetchFromGitHub { - owner = "riscy"; - repo = "bifocal-mode"; - rev = "add30c678488cec04976a85ba8cda20805938a01"; - sha256 = "01j8s6c3qm4scxy1dk07l41y0n55gz83zzfi254kc2vyx02vqg7f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/79e71995bd8452bad2e717884f148ec74c9735fc/recipes/bifocal"; - sha256 = "07qrxsby611l3cwsmw3d53h1n7cd1vg53j4vlc2isg56l2m4qks5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bifocal"; - license = lib.licenses.free; - }; - }) {}; - binclock = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "binclock"; - ename = "binclock"; - version = "20170802.416"; - src = fetchFromGitHub { - owner = "davep"; - repo = "binclock.el"; - rev = "87042230d7f3fe3e9a77fae0dbab7d8f7e7794ad"; - sha256 = "0bbcn3aif3qvmgbga7znivcbgn1n79278x7xvbha52zpj584xp8d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95dfa38d795172dca6a09cd02e21630747723949/recipes/binclock"; - sha256 = "1s0072kcd1xp8355j8aph94gb3a1wqmzx1hhfp9d6bzqf6cij8gk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/binclock"; - license = lib.licenses.free; - }; - }) {}; - bind-chord = callPackage ({ bind-key - , fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-chord"; - ename = "bind-chord"; - version = "20171204.1210"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "33127b706e66fb20dfa40d94eb553dd7d6ef9197"; - sha256 = "1iz7ibdvf3bnfkwfhakigvrdzg69qgx3z7qayq54spx3rpxf7x0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/bind-chord"; - sha256 = "1hyhs3iypyg5730a20axcfzrrglm4nbgdz8x1ifkaa0iy5zc9hb0"; - name = "recipe"; - }; - packageRequires = [ bind-key key-chord ]; - meta = { - homepage = "https://melpa.org/#/bind-chord"; - license = lib.licenses.free; - }; - }) {}; - bind-key = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-key"; - ename = "bind-key"; - version = "20180512.2130"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "c03d153e5882109e24c016d3afa6940af673ede6"; - sha256 = "0zyl8dfg8acf99966sp8i5iky1mvn2h016viqk48s0hjv9va0wii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key"; - sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bind-key"; - license = lib.licenses.free; - }; - }) {}; - bind-map = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-map"; - ename = "bind-map"; - version = "20161207.711"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-bind-map"; - rev = "bf4181e3a41463684adfffc6c5c305b30480e30f"; - sha256 = "0vrk17yg3jbww92p433p64ijmjf7cjg2wmzi9w418235w1xdfzz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f58800af5965a6e7c9314aa00e971196ea0d036e/recipes/bind-map"; - sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bind-map"; - license = lib.licenses.free; - }; - }) {}; - bing-dict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bing-dict"; - ename = "bing-dict"; - version = "20190122.2102"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "bing-dict.el"; - rev = "7ac91fa718a5fb4620ccc13a53b1b82de8005ac8"; - sha256 = "0swx68wmrlgqx9kp6jfzsfvi6v0r55cyal0p6b2xh1gj6iwa61ml"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bing-dict"; - sha256 = "1cqjndq8xm2bwjvdj95dn377bp9r6rrkp1z4a45faj408mipahli"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bing-dict"; - license = lib.licenses.free; - }; - }) {}; - birds-of-paradise-plus-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "birds-of-paradise-plus-theme"; - ename = "birds-of-paradise-plus-theme"; - version = "20130419.1429"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "birds-of-paradise-plus-theme.el"; - rev = "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f"; - sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3932853232c269f158806aebe416b456c752a9bb/recipes/birds-of-paradise-plus-theme"; - sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/birds-of-paradise-plus-theme"; - license = lib.licenses.free; - }; - }) {}; - bison-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bison-mode"; - ename = "bison-mode"; - version = "20160616.2252"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "bison-mode"; - rev = "314af3b7af7eb897fd3932616cb8600a85228cea"; - sha256 = "0ymjgwyi73vl81i7v1g2ad09lxp4mhp47r6zcijqa5hbx9l1skik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d08592cabbc0779c67c260f9648d2273c0dd9e3e/recipes/bison-mode"; - sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bison-mode"; - license = lib.licenses.free; - }; - }) {}; - bitbake = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode - , s }: - melpaBuild { - pname = "bitbake"; - ename = "bitbake"; - version = "20190107.355"; - src = fetchFromGitHub { - owner = "canatella"; - repo = "bitbake-el"; - rev = "6b65c10a88c8750694c9c9e77299450200e7481e"; - sha256 = "0xy4dqlg8d6ppwpa9l96dycag53rmzwiv68s2mzmpkcrjn023dr3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da099b66180ed537f8962ab4ca727d2441f9691d/recipes/bitbake"; - sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah"; - name = "recipe"; - }; - packageRequires = [ dash emacs mmm-mode s ]; - meta = { - homepage = "https://melpa.org/#/bitbake"; - license = lib.licenses.free; - }; - }) {}; - bitbucket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "bitbucket"; - ename = "bitbucket"; - version = "20170404.2146"; - src = fetchFromGitHub { - owner = "tjaartvdwalt"; - repo = "bitbucket.el"; - rev = "db001a9d936e6b5c3cc5d5ec22794e234e0d162d"; - sha256 = "0iwmhnnscj3axxzgcb9ma7n5wn3zpjiwkh1dxrlk2kcclbzlbjha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cf87389e6a5d868850d27e077202e1e52eaf4aa/recipes/bitbucket"; - sha256 = "1d0v6hvmxky3k2m89b7xm1igx9fmzvhdpn1bi8zln61m4zgr3yz0"; - name = "recipe"; - }; - packageRequires = [ emacs request s ]; - meta = { - homepage = "https://melpa.org/#/bitbucket"; - license = lib.licenses.free; - }; - }) {}; - bitlbee = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bitlbee"; - ename = "bitlbee"; - version = "20151202.1600"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "bitlbee-el"; - rev = "f3342da46b0864ae8db4e82b553d9e617b090534"; - sha256 = "1qbp15w4g9j9qhrgb04dwqa76i8sh1nbfd8gbpgp91sz9gackgkq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/bitlbee"; - sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bitlbee"; - license = lib.licenses.free; - }; - }) {}; - blackboard-bold-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blackboard-bold-mode"; - ename = "blackboard-bold-mode"; - version = "20160812.1906"; - src = fetchFromGitHub { - owner = "grettke"; - repo = "blackboard-bold-mode"; - rev = "5299cb064ba71baa3e331b8560bf8dd38cbbc4ed"; - sha256 = "00xbcgx4snz4sd7q7ys24rsnf5wdxjn402v8y5dgn4ayx88y1rrj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/blackboard-bold-mode"; - sha256 = "08fmzm5lblkk503zr4d6hkp45075pwwd8zinngasrsf1r01isksj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/blackboard-bold-mode"; - license = lib.licenses.free; - }; - }) {}; - blackboard-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blackboard-theme"; - ename = "blackboard-theme"; - version = "20161215.2256"; - src = fetchFromGitHub { - owner = "don9z"; - repo = "blackboard-theme"; - rev = "d8b984f2541bb86eb4363a2b4c94631e49843d4a"; - sha256 = "1jh2960yab6rhdq7ci1slpmnr43619cza0g8bfbq759yz5b7xryh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eca8cbcc1282bb061f769daf86b1938d1f30f704/recipes/blackboard-theme"; - sha256 = "19cnfxrm85985ic55y5x7nwxdynjp7djyd33dhj8r7s92cs25fn7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/blackboard-theme"; - license = lib.licenses.free; - }; - }) {}; - blacken = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blacken"; - ename = "blacken"; - version = "20190521.141"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "blacken"; - rev = "1874018ae242176d0780cdcd0109e8f9a123a914"; - sha256 = "1zgx7j4cp51r2cdlyf744jgfpid4lz7fwwjxbm6cvcp9hv57v7wz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69d9802996a338be937d61678f2cadf3497f6b85/recipes/blacken"; - sha256 = "16lbs76jkhcq0vg09x1n8mrd4pgz5bdjsprr9260xr7g3dx8xacc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/blacken"; - license = lib.licenses.free; - }; - }) {}; - blgrep = callPackage ({ clmemo - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blgrep"; - ename = "blgrep"; - version = "20150401.716"; - src = fetchFromGitHub { - owner = "ataka"; - repo = "blgrep"; - rev = "605beda210610a5829750a987f5fcebea97af546"; - sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e78ed9dc4a7ff57524e79213973157ab364ae14d/recipes/blgrep"; - sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm"; - name = "recipe"; - }; - packageRequires = [ clmemo ]; - meta = { - homepage = "https://melpa.org/#/blgrep"; - license = lib.licenses.free; - }; - }) {}; - blimp = callPackage ({ eimp - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blimp"; - ename = "blimp"; - version = "20180903.1540"; - src = fetchFromGitHub { - owner = "walseb"; - repo = "blimp"; - rev = "b048b037129b68674b99310bcc08fb96d44fdbb4"; - sha256 = "0az7bjxc6awn56sv49w3d0ws6w7i0gqm99sbkbnjrfgj3ha8xz4d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4fe28626950659c5ba4aa9cc7ba6126ce4737fb7/recipes/blimp"; - sha256 = "1k70x0gs9ns7652ahq2b8fhmichsmajzqmm46v1imji238zr7kb1"; - name = "recipe"; - }; - packageRequires = [ eimp emacs ]; - meta = { - homepage = "https://melpa.org/#/blimp"; - license = lib.licenses.free; - }; - }) {}; - bliss-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bliss-theme"; - ename = "bliss-theme"; - version = "20170808.607"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-bliss-theme"; - rev = "c3cf6d8a666ab26909b7da158f9e94df71a5fbbf"; - sha256 = "1bpyhsjfdjfa1iw9kv7fsl30vz48qllqgjg1rsxdl3vcripcbc9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/bliss-theme"; - sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bliss-theme"; - license = lib.licenses.free; - }; - }) {}; - bln-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bln-mode"; - ename = "bln-mode"; - version = "20181121.118"; - src = fetchFromGitHub { - owner = "mgrachten"; - repo = "bln-mode"; - rev = "a601b0bf975dd1432f6552ab6afe3f4f71133b4a"; - sha256 = "19y1fs5bzp2sqvh6svmj0cpvgq13zmsn852027hi11zvwi6dzqz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee12ef97df241b7405feee69c1e66b3c1a67204b/recipes/bln-mode"; - sha256 = "0w4abaqx9gz04ls1hn1qz8qg9jpvi80b9jb597ddjcbnwqq9z83r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bln-mode"; - license = lib.licenses.free; - }; - }) {}; - blockdiag-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "blockdiag-mode"; - ename = "blockdiag-mode"; - version = "20160426.2224"; - src = fetchFromGitHub { - owner = "xcezx"; - repo = "blockdiag-mode"; - rev = "f3b21ba433d60327cebd103ae4492200750e24a9"; - sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0adb94f2a435e846944a1c544e6591b131a10e/recipes/blockdiag-mode"; - sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/blockdiag-mode"; - license = lib.licenses.free; - }; - }) {}; - blog-admin = callPackage ({ cl-lib ? null - , ctable - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names - , s }: - melpaBuild { - pname = "blog-admin"; - ename = "blog-admin"; - version = "20170923.709"; - src = fetchFromGitHub { - owner = "CodeFalling"; - repo = "blog-admin"; - rev = "b5f2e1dad7d68ec903619f7280bb0bcb7e398a1e"; - sha256 = "0fgzmmjxhl8i9yqx1bvb7hgkk9w4ylx73xy990qf1bl7fg21v636"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/blog-admin"; - sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ctable f names s ]; - meta = { - homepage = "https://melpa.org/#/blog-admin"; - license = lib.licenses.free; - }; - }) {}; - blog-minimal = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , mustache - , org - , s - , simple-httpd }: - melpaBuild { - pname = "blog-minimal"; - ename = "blog-minimal"; - version = "20181021.149"; - src = fetchFromGitHub { - owner = "thiefuniverse"; - repo = "blog-minimal"; - rev = "a634a2db0b80cb445ef0b072d1a1482ced91f9ad"; - sha256 = "0mxfrp7gwg07d8vkipqf8p6mli9y5sqh25k1dkcsidmc6m09j5qn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/56217a33b0669a782621dd65d83419ae371ed60a/recipes/blog-minimal"; - sha256 = "1qj25b6n3slvmbqvzfd37v4xmy1vvz37686jdr29bw5qk4prgxff"; - name = "recipe"; - }; - packageRequires = [ ht mustache org s simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/blog-minimal"; - license = lib.licenses.free; - }; - }) {}; - bm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bm"; - ename = "bm"; - version = "20190527.1410"; - src = fetchFromGitHub { - owner = "joodland"; - repo = "bm"; - rev = "637dacf4cb9112fdfb949706a704dd53cbe79c7e"; - sha256 = "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/bm"; - sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bm"; - license = lib.licenses.free; - }; - }) {}; - bmx-mode = callPackage ({ cl-lib ? null - , company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "bmx-mode"; - ename = "bmx-mode"; - version = "20180929.432"; - src = fetchFromGitHub { - owner = "josteink"; - repo = "bmx-mode"; - rev = "536b332edc3b98cc97588c937c7368803ba5961c"; - sha256 = "0hbkh4fb1cb1fd7fq1999i9rffr2xc0l16b0m5sajcrsir3gq4nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f456d2b2b8f5a33bcb0f2ffd19e6e0276950f24/recipes/bmx-mode"; - sha256 = "04g8l4cw20k3yhbija9mz1l4nx3bzhzj7nb35s0xdyvwbc2mhrwb"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/bmx-mode"; - license = lib.licenses.free; - }; - }) {}; - bnf-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bnf-mode"; - ename = "bnf-mode"; - version = "20190514.347"; - src = fetchFromGitHub { - owner = "sergeyklay"; - repo = "bnf-mode"; - rev = "2f217ecf76fa775da4b28de7dd2b615460d9f8ad"; - sha256 = "17nhy9mwaji230d3dhi3d40wibqviapa5h60mlm20mc5b2vb0vyd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/217bde4ccd2d68dc14b1bfee22fbc99cd4109952/recipes/bnf-mode"; - sha256 = "027pn2lvqsxyj9ii5svql2sw4xm9wrd9zy7ms8vayv737w5xd3n1"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/bnf-mode"; - license = lib.licenses.free; - }; - }) {}; - bnfc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bnfc"; - ename = "bnfc"; - version = "20160605.1227"; - src = fetchFromGitHub { - owner = "jmitchell"; - repo = "bnfc-mode"; - rev = "1b58df1dd0cb9b81900632fb2843a03b94f56fdb"; - sha256 = "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7871b6372a391ace76edea40c6f92ceb10b70bf9/recipes/bnfc"; - sha256 = "0h6qhyi7vcikg7zhv8lywdz033kp27a8z1ymq5wgs4aqs184igm6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bnfc"; - license = lib.licenses.free; - }; - }) {}; - bog = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bog"; - ename = "bog"; - version = "20180815.1513"; - src = fetchFromGitHub { - owner = "kyleam"; - repo = "bog"; - rev = "b5df3647f55359f8546dcfa991a351673a069a49"; - sha256 = "1rfv036wzlrbqbki5i24871a9f2h6zk7yqd1lq6gnqrc4y7m477c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog"; - sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/bog"; - license = lib.licenses.free; - }; - }) {}; - bolt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bolt-mode"; - ename = "bolt-mode"; - version = "20180310.10"; - src = fetchFromGitHub { - owner = "mpontus"; - repo = "bolt-mode"; - rev = "85a5a752bfbebb4aed884326c25db64c000e9934"; - sha256 = "03nxcmpm5n8jcca39ivrl7cjqz3gzsl3w6qc30hcp278qf2jq6va"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec9e35f0e37db90d906fccd08fb25b673c88d3b8/recipes/bolt-mode"; - sha256 = "03x89k8v0m9kv1fhyys2gwympb70qlmg7gdib8wsmdxs34ys5igz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bolt-mode"; - license = lib.licenses.free; - }; - }) {}; - bongo = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bongo"; - ename = "bongo"; - version = "20171118.1842"; - src = fetchFromGitHub { - owner = "dbrock"; - repo = "bongo"; - rev = "3d246be1e8d14865f5253567ab8fee5d4e9c470c"; - sha256 = "1zxk6x08gmir3qv07xanlsd2fb777jdbfzdksv1qh6srxbk3qfjq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/692428769cd792dc0644641682c2793103dd00c6/recipes/bongo"; - sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/bongo"; - license = lib.licenses.free; - }; - }) {}; - bonjourmadame = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bonjourmadame"; - ename = "bonjourmadame"; - version = "20170919.434"; - src = fetchFromGitHub { - owner = "pierre-lecocq"; - repo = "bonjourmadame"; - rev = "d3df185fce78aefa689fded8e56a654f0fde4ac0"; - sha256 = "1acn63hd7s2z8viy52hmhncdic7m86rcqczxnz9aivikqy4hfnsi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34c4cfd7bbf5b442a9304598ba0a23ba9b8dfae4/recipes/bonjourmadame"; - sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bonjourmadame"; - license = lib.licenses.free; - }; - }) {}; - boogie-friends = callPackage ({ cl-lib ? null - , company - , dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "boogie-friends"; - ename = "boogie-friends"; - version = "20190523.356"; - src = fetchFromGitHub { - owner = "boogie-org"; - repo = "boogie-friends"; - rev = "079df882503b7a9fb4cd270f3eca1cc8131b49a9"; - sha256 = "0swiy4ixdn2ps0hm13dppnpq0yk30x58a19whn99nlfdy5fkwhi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5bdd06b82d002677c046876642efe1dc01bc3e77/recipes/boogie-friends"; - sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash flycheck yasnippet ]; - meta = { - homepage = "https://melpa.org/#/boogie-friends"; - license = lib.licenses.free; - }; - }) {}; - bool-flip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bool-flip"; - ename = "bool-flip"; - version = "20161215.739"; - src = fetchFromGitHub { - owner = "michaeljb"; - repo = "bool-flip"; - rev = "0f7cc9b387429239fb929896511727d4e49a795b"; - sha256 = "1051gy7izy25jwh079231d4lh9azchbqc6nvfrkv8s9ck407a65a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f56377a7c3f4b75206ad9ba570c35dbf752079e9/recipes/bool-flip"; - sha256 = "1xfspqxshx7m8gh6g1snkaahka9f71fnq7hx81nik4s9s8pmxj9c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bool-flip"; - license = lib.licenses.free; - }; - }) {}; - boon = callPackage ({ dash - , emacs - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "boon"; - ename = "boon"; - version = "20190529.149"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "boon"; - rev = "501adc6580a24a3dc59925ebcf31363ec2531cfa"; - sha256 = "0wi6dvq25cd6594jwdiivm7as8j6mvr79982jk7jgk1r170yz9b0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon"; - sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; - name = "recipe"; - }; - packageRequires = [ dash emacs expand-region multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/boon"; - license = lib.licenses.free; - }; - }) {}; - borg = callPackage ({ dash - , emacs - , epkg - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "borg"; - ename = "borg"; - version = "20190505.348"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "borg"; - rev = "940af3d437b299ef81ce73da4e4ec8c2f52d7a79"; - sha256 = "0lg2inxzfz6pcblynna4fyi5lxnmbrpl095d6574d0pnn22zdx5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/878ab90d444f3a1fd2c9f9068ca7b477e218f1da/recipes/borg"; - sha256 = "0gn4hf7hn190gl0kg59nr6jzjnb39c0hy9b3brrsfld9hyxga9jr"; - name = "recipe"; - }; - packageRequires = [ dash emacs epkg magit ]; - meta = { - homepage = "https://melpa.org/#/borg"; - license = lib.licenses.free; - }; - }) {}; - borland-blue-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "borland-blue-theme"; - ename = "borland-blue-theme"; - version = "20160117.521"; - src = fetchFromGitHub { - owner = "fourier"; - repo = "borland-blue-theme"; - rev = "db74eefebbc89d3c62575f8f50b319e87b4a3470"; - sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ff5916fd2caee778479bc2ad3ef13ee514052c/recipes/borland-blue-theme"; - sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/borland-blue-theme"; - license = lib.licenses.free; - }; - }) {}; - boron-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "boron-theme"; - ename = "boron-theme"; - version = "20170808.608"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-boron-theme"; - rev = "87ae1a765e07429fec25d2f29b004f84b52d2e0a"; - sha256 = "1kdf71af1s67vshgwkdgi7swxx942i605awhmhrhdjbkra29v4yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/boron-theme"; - sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/boron-theme"; - license = lib.licenses.free; - }; - }) {}; - boxquote = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "boxquote"; - ename = "boxquote"; - version = "20170802.417"; - src = fetchFromGitHub { - owner = "davep"; - repo = "boxquote.el"; - rev = "7e47e0e2853bc1215739b2e28f260e9eed93b2c5"; - sha256 = "1aqhg24gajvllbqxb0zxrnx6sddas37k2ldfinqyszd856sjhsg3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2148f8f17b16154bfc337df69a5ad31e25a9b05/recipes/boxquote"; - sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/boxquote"; - license = lib.licenses.free; - }; - }) {}; - bpe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bpe"; - ename = "bpe"; - version = "20141228.1405"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "bpe"; - rev = "7b5b25f83506e6c9f4075d3803fa32404943a189"; - sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a99263c2672d4c2433835cf948101130126e14b/recipes/bpe"; - sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bpe"; - license = lib.licenses.free; - }; - }) {}; - bpr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bpr"; - ename = "bpr"; - version = "20180220.1044"; - src = fetchFromGitHub { - owner = "ilya-babanov"; - repo = "emacs-bpr"; - rev = "af84a83dea09d86e77d87ac30604f2c5b4bf4117"; - sha256 = "1r2prq9j6fmzzkl1f3r9drn6lna2wzd9qv127x7z5g6n8pgb6ipx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/bpr"; - sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bpr"; - license = lib.licenses.free; - }; - }) {}; - bracketed-paste = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bracketed-paste"; - ename = "bracketed-paste"; - version = "20160407.1648"; - src = fetchFromGitHub { - owner = "hchbaw"; - repo = "bracketed-paste.el"; - rev = "843ce3bbb63d560face889e13a57a2f7543957d5"; - sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6446db573d97ceb21cd39ce05fb39627113bbd74/recipes/bracketed-paste"; - sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bracketed-paste"; - license = lib.licenses.free; - }; - }) {}; - brainfuck-mode = callPackage ({ fetchFromGitHub - , fetchurl - , langdoc - , lib - , melpaBuild }: - melpaBuild { - pname = "brainfuck-mode"; - ename = "brainfuck-mode"; - version = "20150113.42"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "brainfuck-mode"; - rev = "36e69552bb3b97a4f888d362c59845651bd0d492"; - sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/279ae8faabbfa2f894999e1534a964606722a150/recipes/brainfuck-mode"; - sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd"; - name = "recipe"; - }; - packageRequires = [ langdoc ]; - meta = { - homepage = "https://melpa.org/#/brainfuck-mode"; - license = lib.licenses.free; - }; - }) {}; - broadcast = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "broadcast"; - ename = "broadcast"; - version = "20151204.1812"; - src = fetchFromGitHub { - owner = "killdash9"; - repo = "broadcast.el"; - rev = "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16"; - sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ed51896112e702a8b853059884aad50d37738c2/recipes/broadcast"; - sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/broadcast"; - license = lib.licenses.free; - }; - }) {}; - browse-at-remote = callPackage ({ cl-lib ? null - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "browse-at-remote"; - ename = "browse-at-remote"; - version = "20190213.1129"; - src = fetchFromGitHub { - owner = "rmuslimov"; - repo = "browse-at-remote"; - rev = "a61bda14a84983c84e81d2135bb59e92049cdf85"; - sha256 = "1chvg9m72i888gq94crand9kkyng7gi487508nhvxsr13a6mjh7j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/browse-at-remote"; - sha256 = "0s088ba047azba60rlfn3jbqr321vnm953i7dqw2gj9xml90kbm4"; - name = "recipe"; - }; - packageRequires = [ cl-lib f s ]; - meta = { - homepage = "https://melpa.org/#/browse-at-remote"; - license = lib.licenses.free; - }; - }) {}; - browse-kill-ring = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "browse-kill-ring"; - ename = "browse-kill-ring"; - version = "20171219.1108"; - src = fetchFromGitHub { - owner = "browse-kill-ring"; - repo = "browse-kill-ring"; - rev = "8debc43e41d7e51532698331c6f283905890b904"; - sha256 = "18yg35raks0kbzg5wjay6liingdcv4glyzl9n14sgr9vzc7h96f9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/294dc32a672e6b6b0ebfc46cdf0ff9ceacf73e89/recipes/browse-kill-ring"; - sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/browse-kill-ring"; - license = lib.licenses.free; - }; - }) {}; - browse-url-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "browse-url-dwim"; - ename = "browse-url-dwim"; - version = "20140731.1222"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "browse-url-dwim"; - rev = "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30"; - sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/browse-url-dwim"; - sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; - name = "recipe"; - }; - packageRequires = [ string-utils ]; - meta = { - homepage = "https://melpa.org/#/browse-url-dwim"; - license = lib.licenses.free; - }; - }) {}; - brutalist-theme = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "brutalist-theme"; - ename = "brutalist-theme"; - version = "20181023.522"; - src = fetchgit { - url = "https://git.madhouse-project.org/algernon/brutalist-theme.el.git"; - rev = "15ea5d881cad24c40d02a1980891b3c17853ad20"; - sha256 = "1zlkx9l8srdw4f95355mng08sx9r23dl7318bpkrw6q56lnp79sf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec889956a5685c3a60003ad2bfa04b03b57aa8e8/recipes/brutalist-theme"; - sha256 = "0dg0432r3cpjgdlpz583vky4hj5vld9d25dvaj6nxlir2ph9g9hn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/brutalist-theme"; - license = lib.licenses.free; - }; - }) {}; - bshell = callPackage ({ buffer-manage - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bshell"; - ename = "bshell"; - version = "20170903.1137"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "bshell"; - rev = "884a8b906617d305e9d5d2c3750618d2f86f9aed"; - sha256 = "16qh71yhpxs5cxjmkiqiia8xrxa0ym2n32znp4yc7xiv2xfw2ss4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf0ed51304f752af3e1f56caf2856d1521d782a4/recipes/bshell"; - sha256 = "1ds8xvh74i6wqswjp8i30knr74l4gbalkb2jil8qjb9wp9l1gw9z"; - name = "recipe"; - }; - packageRequires = [ buffer-manage emacs ]; - meta = { - homepage = "https://melpa.org/#/bshell"; - license = lib.licenses.free; - }; - }) {}; - btc-ticker = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "btc-ticker"; - ename = "btc-ticker"; - version = "20151113.659"; - src = fetchFromGitHub { - owner = "niedbalski"; - repo = "emacs-btc-ticker"; - rev = "845235b545f070d0812cd1654cbaa4997565824f"; - sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f78796a8835ec44f4d13c99559fd4d113c6f4f29/recipes/btc-ticker"; - sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1"; - name = "recipe"; - }; - packageRequires = [ json request ]; - meta = { - homepage = "https://melpa.org/#/btc-ticker"; - license = lib.licenses.free; - }; - }) {}; - bts = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , pos-tip - , s - , widget-mvc - , yaxception }: - melpaBuild { - pname = "bts"; - ename = "bts"; - version = "20151109.533"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-bts"; - rev = "df42d58a36447697f93b56e69f5e700b2baef1f9"; - sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2f9c2f465b06c97cd03c5644155cd6c7fade24/recipes/bts"; - sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3"; - name = "recipe"; - }; - packageRequires = [ dash log4e pos-tip s widget-mvc yaxception ]; - meta = { - homepage = "https://melpa.org/#/bts"; - license = lib.licenses.free; - }; - }) {}; - bts-github = callPackage ({ bts - , fetchFromGitHub - , fetchurl - , gh - , lib - , melpaBuild }: - melpaBuild { - pname = "bts-github"; - ename = "bts-github"; - version = "20170401.549"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-bts-github"; - rev = "ef2cf9202dc2128e5efdb613bfde9276a8cd95ad"; - sha256 = "173i9n4c8mg93gpc7ljxh3nhm4lq2c04yhrvjz6fwwwqvmnkha5f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f3e87699181877e50d75a89e2ee76e403fc9317/recipes/bts-github"; - sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln"; - name = "recipe"; - }; - packageRequires = [ bts gh ]; - meta = { - homepage = "https://melpa.org/#/bts-github"; - license = lib.licenses.free; - }; - }) {}; - bubbleberry-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bubbleberry-theme"; - ename = "bubbleberry-theme"; - version = "20141017.244"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-bubbleberry-theme"; - rev = "22e9adf4586414024e4592972022ec297321b320"; - sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/bubbleberry-theme"; - sha256 = "1mjygck5ra30j44msccqas8v6gkpyv74p6y6hidm8v4f8n6m8dcz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bubbleberry-theme"; - license = lib.licenses.free; - }; - }) {}; - buckwalter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buckwalter"; - ename = "buckwalter"; - version = "20190204.651"; - src = fetchFromGitHub { - owner = "joehakimrahme"; - repo = "buckwalter.el"; - rev = "d4a7785eef05491ac4eb3150b75c473480bb51cb"; - sha256 = "1i0kkn2qziakpy0ax8rc1pjdb6r881gybqhl5dwmwsd8gkfhddy5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7dd38487731cc978e104afa39f8954cfc33ba27f/recipes/buckwalter"; - sha256 = "08pnmfy910n5l00kmkn4533x48m3scsxzyra0nl6iry2n39y2kr1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buckwalter"; - license = lib.licenses.free; - }; - }) {}; - buffer-buttons = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-buttons"; - ename = "buffer-buttons"; - version = "20150106.639"; - src = fetchFromGitHub { - owner = "rpav"; - repo = "buffer-buttons"; - rev = "2feb8494fa7863b98256bc85da670d74a3a8a975"; - sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d518e81c8342a93455108e769c8b42747982c924/recipes/buffer-buttons"; - sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-buttons"; - license = lib.licenses.free; - }; - }) {}; - buffer-flip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-flip"; - ename = "buffer-flip"; - version = "20180307.1451"; - src = fetchFromGitHub { - owner = "killdash9"; - repo = "buffer-flip.el"; - rev = "e093360e05164c78255866c1ac8f966aa38ba514"; - sha256 = "1s35llycdhhclf9kl1q9l7zzzfqrnnvbiqv5csfw0mngfj0lz77f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3924870cac1392a7eaeeda34b92614c26c674d63/recipes/buffer-flip"; - sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-flip"; - license = lib.licenses.free; - }; - }) {}; - buffer-manage = callPackage ({ choice-program - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-manage"; - ename = "buffer-manage"; - version = "20180528.913"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "buffer-manage"; - rev = "8bbe342a4dafcfdaf305baea98bd4208036ab89a"; - sha256 = "027d71ppkcq60lkzgal8wv4xpjs4hzgih5ry9q2d4g0dr7wkjp3j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28f8f376df810e6ebebba9fb2c93eabbe3526cc9/recipes/buffer-manage"; - sha256 = "0fwri332faybv2apjh8zajqpryi0g4kk3and8djibpvci40l42jb"; - name = "recipe"; - }; - packageRequires = [ choice-program dash emacs ]; - meta = { - homepage = "https://melpa.org/#/buffer-manage"; - license = lib.licenses.free; - }; - }) {}; - buffer-move = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-move"; - ename = "buffer-move"; - version = "20160615.1103"; - src = fetchFromGitHub { - owner = "lukhas"; - repo = "buffer-move"; - rev = "cb517ecf8409b5fdcda472d7190c6021f0c49751"; - sha256 = "0gxy58v8nyv6pmzfn8552m8a14f5lzcbkndp5xpzq4g9qvmifmj6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e30e053eab078a8bef73e42b90299231ea0997ee/recipes/buffer-move"; - sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-move"; - license = lib.licenses.free; - }; - }) {}; - buffer-sets = callPackage ({ cl-lib ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-sets"; - ename = "buffer-sets"; - version = "20170717.2040"; - src = fetchgit { - url = "https://git.flintfam.org/swf-projects/buffer-sets.git"; - rev = "4a4ccb0d6916c3e9fba737bb7b48e8aac921954e"; - sha256 = "1rg6iwswi82w8938pavwhvvr2z3ismb42asam2fkad47h2sgn0gz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61d07bbe7201fc991c7ab7ee6299a89d63ddb5e5/recipes/buffer-sets"; - sha256 = "1xj9fn2x4kbx8kp999wvz1j68znp7j81zl6rnbaipbx7hjpqrsin"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/buffer-sets"; - license = lib.licenses.free; - }; - }) {}; - buffer-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-utils"; - ename = "buffer-utils"; - version = "20140512.700"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "buffer-utils"; - rev = "32e1f23817b9c6caedb53e5359baad29e99eaa2b"; - sha256 = "0fajk0qjm1cq1a7ps2fa584g23bjlbccxv7s0x6n5yqpgn1f79ax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/buffer-utils"; - sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-utils"; - license = lib.licenses.free; - }; - }) {}; - buffer-watcher = callPackage ({ cl-lib ? null - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-watcher"; - ename = "buffer-watcher"; - version = "20170913.139"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "buffer-watcher"; - rev = "b32c67c8a5d724257d759f4c903d0dedc32246ef"; - sha256 = "0mygs48mk2z8cw1csz2wfyn7kln9662d16hwpmbxs5x8k71aq8jx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8681776d467951d14d8247e6939bd9a6f2a80ec/recipes/buffer-watcher"; - sha256 = "0v096021xk7k821bxb5zddw6sljqa6fs8f7s8j0w3pv6lmhra1ln"; - name = "recipe"; - }; - packageRequires = [ cl-lib f ]; - meta = { - homepage = "https://melpa.org/#/buffer-watcher"; - license = lib.licenses.free; - }; - }) {}; - bufshow = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bufshow"; - ename = "bufshow"; - version = "20130726.1138"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "bufshow"; - rev = "42d7fb74c3f914e127d5447c63d209bf19f5d517"; - sha256 = "1gmk0p9rkhkpzg38rf642w2qancj5gb43dhqnhh3asgmij7f6nk3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/543a734795eed11aa47a8e1348d14e362b341af0/recipes/bufshow"; - sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bufshow"; - license = lib.licenses.free; - }; - }) {}; - bug-reference-github = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bug-reference-github"; - ename = "bug-reference-github"; - version = "20180128.514"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "bug-reference-github"; - rev = "f570a0532bfb44f095b42cf68ab1f69799101137"; - sha256 = "09rbxgrk7jp9xajya6nccj0ak7fc48wyxq4sfmjmy3q1qfszdsc3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5dfce86371692dddef78a6c1d772138b487b82cb/recipes/bug-reference-github"; - sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bug-reference-github"; - license = lib.licenses.free; - }; - }) {}; - bui = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bui"; - ename = "bui"; - version = "20181218.1030"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "bui.el"; - rev = "9162c24b75799857d54838d961c60776ffcd657e"; - sha256 = "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38b7c9345de75a707b4a73e8bb8e2f213e4fd739/recipes/bui"; - sha256 = "0a4g55k02hi3cwvk4d35lk2x5kc4fabskl2025i83hx0rqw4w3f1"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/bui"; - license = lib.licenses.free; - }; - }) {}; - build-farm = callPackage ({ bui - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "build-farm"; - ename = "build-farm"; - version = "20181218.1202"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "build-farm.el"; - rev = "5c268a3c235ace0d79ef1ec82c440120317e06f5"; - sha256 = "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc97bf56ea50788ecbbbb1f46e188e8487370936/recipes/build-farm"; - sha256 = "0dbq3sc1x0cj06hv3mlk0zw0cijdwjszicylv14m1wahal33xjrw"; - name = "recipe"; - }; - packageRequires = [ bui emacs magit-popup ]; - meta = { - homepage = "https://melpa.org/#/build-farm"; - license = lib.licenses.free; - }; - }) {}; - build-helper = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "build-helper"; - ename = "build-helper"; - version = "20161009.1055"; - src = fetchFromGitHub { - owner = "afonso360"; - repo = "build-helper"; - rev = "d1962858734253eca791721ccf62d1c4a10719f5"; - sha256 = "07bhagf206p8q0nmz3sy2frd3zzi96snm3bm0rp6mffai0p58vps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af56cde18ae0efb0ae91c818e6804c55cdb3b8c2/recipes/build-helper"; - sha256 = "1asgpf2k4i7p88ask1i6ra4krhsxr6j2d2qv0gfxlsa5p330mmgh"; - name = "recipe"; - }; - packageRequires = [ projectile ]; - meta = { - homepage = "https://melpa.org/#/build-helper"; - license = lib.licenses.free; - }; - }) {}; - build-status = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "build-status"; - ename = "build-status"; - version = "20171111.1147"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "build-status"; - rev = "ef44185d9dd748ea578d68398f3f729a8adb45b5"; - sha256 = "00zcmmdccgzb5cp1nd9kjpiqs3zd9rh0z7aj9kmwsffaq339g55n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23bbe012f313cf0cf4c45a66eb0bee9361ced564/recipes/build-status"; - sha256 = "0ckyf0asll50gifx1v0qqzpimjms8i1rgw9bnqiyj861qn5hch92"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/build-status"; - license = lib.licenses.free; - }; - }) {}; - bundler = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "bundler"; - ename = "bundler"; - version = "20160815.215"; - src = fetchFromGitHub { - owner = "endofunky"; - repo = "bundler.el"; - rev = "f981f67c33b42243e57a78c358dffff70022b56b"; - sha256 = "1hfcvlkwa3hh70qan3q5mvld1hqqbnmbwqycvlqi6qr8dcdfl3cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/bundler"; - sha256 = "1jvcrxwsf9yd5vhirfdmjl52n6hffr1vikd386qbn32vgqcsba7a"; - name = "recipe"; - }; - packageRequires = [ cl-lib inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/bundler"; - license = lib.licenses.free; - }; - }) {}; - bury-successful-compilation = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bury-successful-compilation"; - ename = "bury-successful-compilation"; - version = "20181105.2003"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "bury-successful-compilation"; - rev = "674644c844184605a1bb4f9487a60f7a780a6fe7"; - sha256 = "13ilv4zbzwb5rz0gf69z8pvxazvwlmb5shkb055l42ksxslp49hh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f66e2e23c7a1fa0ce6fa8a0e814242b7c46c299c/recipes/bury-successful-compilation"; - sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bury-successful-compilation"; - license = lib.licenses.free; - }; - }) {}; - buster-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buster-mode"; - ename = "buster-mode"; - version = "20140928.513"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "buster-mode"; - rev = "de6958ef8369400922618b8d1e99abfa91b97ac5"; - sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/buster-mode"; - sha256 = "0nylkxy9qlj1h5v0pja4g315xcj5qzvkys4dsnzbh3xq4xzyj6xj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buster-mode"; - license = lib.licenses.free; - }; - }) {}; - buster-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "buster-snippets"; - ename = "buster-snippets"; - version = "20151125.210"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "buster-snippets.el"; - rev = "bb8769dae132659858e74d52f3f4e8790399423a"; - sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67dabf33096113e68fe282309246094711751e1f/recipes/buster-snippets"; - sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/buster-snippets"; - license = lib.licenses.free; - }; - }) {}; - busybee-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "busybee-theme"; - ename = "busybee-theme"; - version = "20170719.228"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "busybee-theme"; - rev = "66b2315b030582d0ebee605cf455d386d8c30fcd"; - sha256 = "1cvj5m45f5ky3w86khh6crvdqrdjxg2z6b34jlm32qpgmn0s5g45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36e2089b998d98575aa6dd3cc79fb7f6847f7aa3/recipes/busybee-theme"; - sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/busybee-theme"; - license = lib.licenses.free; - }; - }) {}; - butler = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "butler"; - ename = "butler"; - version = "20150811.1708"; - src = fetchFromGitHub { - owner = "AshtonKem"; - repo = "Butler"; - rev = "8ceb35737107572455cca9a61ff46b3ff78f1016"; - sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c86e3f5083e59568afac69eed9aa8c1a0bd76e2e/recipes/butler"; - sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; - name = "recipe"; - }; - packageRequires = [ deferred emacs json ]; - meta = { - homepage = "https://melpa.org/#/butler"; - license = lib.licenses.free; - }; - }) {}; - buttercup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buttercup"; - ename = "buttercup"; - version = "20181202.807"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "emacs-buttercup"; - rev = "810fa6fb8dab06610dbf2b5ccbc64b4d0ecc7485"; - sha256 = "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup"; - sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buttercup"; - license = lib.licenses.free; - }; - }) {}; - buttercup-junit = callPackage ({ buttercup - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buttercup-junit"; - ename = "buttercup-junit"; - version = "20181111.1258"; - src = fetchgit { - url = "https://bitbucket.org/olanilsson/buttercup-junit"; - rev = "1b3214d3d74d998c475f54035643231d8bcffbee"; - sha256 = "120ayxx7f8vdmjwdvycjpkc9acb03z1l0jf2ndigyg64jb8q7a4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1030960afe994da338d78607233319b3f7f0c8b/recipes/buttercup-junit"; - sha256 = "1v848vbwxqrw9sdsvjaggkspavmbwkmqshf321m4n8srvi51383w"; - name = "recipe"; - }; - packageRequires = [ buttercup emacs ]; - meta = { - homepage = "https://melpa.org/#/buttercup-junit"; - license = lib.licenses.free; - }; - }) {}; - button-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "button-lock"; - ename = "button-lock"; - version = "20150223.554"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "button-lock"; - rev = "f9082feb329432fcf2ac49a95e64bed9fda24d58"; - sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/button-lock"; - sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/button-lock"; - license = lib.licenses.free; - }; - }) {}; - buttons = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buttons"; - ename = "buttons"; - version = "20190318.1741"; - src = fetchFromGitHub { - owner = "erjoalgo"; - repo = "emacs-buttons"; - rev = "a14d0c21cc30d33b57481f535f2a838d65b2032f"; - sha256 = "17b6km8qvkh43g276fmv552lffd2jq5x863fc7zm7xf2khwmpwbh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b8f9437268a51654b2bebdd024c35060b078962/recipes/buttons"; - sha256 = "0pp7x4z6vzdfav5ljxsk1q6xby7gcxnkyl5fcbsd4r98ja4zmyq4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/buttons"; - license = lib.licenses.free; - }; - }) {}; - c-c-combo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "c-c-combo"; - ename = "c-c-combo"; - version = "20151223.1855"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "c-c-combo.el"; - rev = "a261a833499a7fdc29610863b3aafc74818770ba"; - sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da105eab0e7a5a3a1fc562973d99cbbbe9019b5f/recipes/c-c-combo"; - sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/c-c-combo"; - license = lib.licenses.free; - }; - }) {}; - c-eldoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "c-eldoc"; - ename = "c-eldoc"; - version = "20181108.2039"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "c-eldoc"; - rev = "e35c0e40f71c25804919f6c01fd27e95c2e2adb7"; - sha256 = "0rwxlq8w6507lkvvj0krwvg4ai1wyj466nhns1f857kry7cssnzy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/c-eldoc"; - sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/c-eldoc"; - license = lib.licenses.free; - }; - }) {}; - c0-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "c0-mode"; - ename = "c0-mode"; - version = "20151110.1052"; - src = fetchFromGitHub { - owner = "catern"; - repo = "c0-mode"; - rev = "c214093c36864d6208fcb9e6a72413ed17ed5d60"; - sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/268115452d9c22a6f2627cec1eb122b47e85b88c/recipes/c0-mode"; - sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/c0-mode"; - license = lib.licenses.free; - }; - }) {}; - cabledolphin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "cabledolphin"; - ename = "cabledolphin"; - version = "20160204.138"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "cabledolphin"; - rev = "fffc192cafa61558e924323d6da8166fe5f2a6f9"; - sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8bd2715aec4793abc37d6899adabd568955a08/recipes/cabledolphin"; - sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/cabledolphin"; - license = lib.licenses.free; - }; - }) {}; - cache = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cache"; - ename = "cache"; - version = "20111019.1600"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "cache"; - rev = "7499586b6c8224df9f5c5bc4dec96b008258d580"; - sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cache"; - sha256 = "15pj7f4n0lk8qqsfafdj19iy0hz4xpfcf2fnby7ziq2dldyqrax9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cache"; - license = lib.licenses.free; - }; - }) {}; - cacoo = callPackage ({ concurrent - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cacoo"; - ename = "cacoo"; - version = "20120319.1659"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-cacoo"; - rev = "c9fa04fbe97639b24698709530361c2bb5f3273c"; - sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd55f5c29876c2483001cd9deaca68cab5054b9/recipes/cacoo"; - sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; - name = "recipe"; - }; - packageRequires = [ concurrent ]; - meta = { - homepage = "https://melpa.org/#/cacoo"; - license = lib.licenses.free; - }; - }) {}; - caddyfile-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild }: - melpaBuild { - pname = "caddyfile-mode"; - ename = "caddyfile-mode"; - version = "20181204.58"; - src = fetchFromGitHub { - owner = "Schnouki"; - repo = "caddyfile-mode"; - rev = "9da9c964f926690b1a1c029bd6d89ae83c5cef41"; - sha256 = "0wip6n5x1prp7dzbvm8qik87iqpinr8yy138idddj4jc6hwd78p4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec771222056dcb6c67e133cd6aa6b4e4d03ac264/recipes/caddyfile-mode"; - sha256 = "12d57xcpp78lmcr95nfp0r9g7lkw8kfxf9c3rc7g53kh5xaaj4i2"; - name = "recipe"; - }; - packageRequires = [ emacs loop ]; - meta = { - homepage = "https://melpa.org/#/caddyfile-mode"; - license = lib.licenses.free; - }; - }) {}; - cake-inflector = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cake-inflector"; - ename = "cake-inflector"; - version = "20140415.158"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-cake-inflector"; - rev = "d9c6298fbca53efeb6f0f37140395659d9a6d7cc"; - sha256 = "09p04bssiqyp74947ivsl09x93bd6ik48ycgimafmx8aycnrjfla"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77c46238b632047160d6dfac9b257f57b0c4283b/recipes/cake-inflector"; - sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/cake-inflector"; - license = lib.licenses.free; - }; - }) {}; - cakecrumbs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cakecrumbs"; - ename = "cakecrumbs"; - version = "20180928.1839"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "cakecrumbs.el"; - rev = "cf8c1df885eee004602f73c4f841301e200e5850"; - sha256 = "0s5ga39dpn9rjxjk5inkylqh56w3qgaq2wmwwgv5gsydqdyil31f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c970907affeb4a21fa1b7c350edf171dbdcd8de5/recipes/cakecrumbs"; - sha256 = "1s5j8w0y47qpdq4f34l7hmdhxp560wg1lgzqz6p3p3lg1l89sv47"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cakecrumbs"; - license = lib.licenses.free; - }; - }) {}; - cal-china-x = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cal-china-x"; - ename = "cal-china-x"; - version = "20190518.357"; - src = fetchFromGitHub { - owner = "xwl"; - repo = "cal-china-x"; - rev = "177f60e011606126f23c8ffed69458439f1c12e0"; - sha256 = "1a0qdiihyc5qwz5j68hnpfp0fx3qbzgvzflrbfv072r7ldxzfi57"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1098d34012fa72f8c8c30d5f0f495fdbe1d3d65/recipes/cal-china-x"; - sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cal-china-x"; - license = lib.licenses.free; - }; - }) {}; - calendar-norway = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calendar-norway"; - ename = "calendar-norway"; - version = "20180906.802"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "calendar-norway.el"; - rev = "8d1fda8268caa74ba5e712c7675ed3c34e46e2d4"; - sha256 = "011c8pz1g805a7c3djai39yasd2idfp4c2dcrvf7kbls27ayrl6d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5d01230027d5cec9da2545a9ce9270a611f6567/recipes/calendar-norway"; - sha256 = "1i23ks0bnq62bvn3szvqf0ikcam4s92yvr998mkjxhdhc94zd19c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calendar-norway"; - license = lib.licenses.free; - }; - }) {}; - calfw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw"; - ename = "calfw"; - version = "20180117.1645"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "03abce97620a4a7f7ec5f911e669da9031ab9088"; - sha256 = "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw"; - sha256 = "0am1nafc16zax8082gjlz0pi85lryjhrx0v80nzgr23iybj5mfx4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw"; - license = lib.licenses.free; - }; - }) {}; - calfw-cal = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-cal"; - ename = "calfw-cal"; - version = "20170320.506"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "136dce009a26e7d8a8064af422c2cf8170e852c5"; - sha256 = "1hiip8hfl7myimgba7ggs1ki1pk3ag7nyfa8j2zzm87n93g5xia4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-cal"; - sha256 = "1wylkd7jl1ifq56jj04l5b9wfrjkhwncxzrjgnbgg1cl2klf6v4m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-cal"; - license = lib.licenses.free; - }; - }) {}; - calfw-gcal = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-gcal"; - ename = "calfw-gcal"; - version = "20120111.200"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "calfw-gcal.el"; - rev = "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870"; - sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/calfw-gcal"; - sha256 = "0pzjs8kvf9vxdzziq7zd59vniq21k4a6yygpv4fz2by3s3bvnrid"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-gcal"; - license = lib.licenses.free; - }; - }) {}; - calfw-howm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-howm"; - ename = "calfw-howm"; - version = "20170703.1704"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "bcfc0c546c3c58e1f635a9a29efdf56c9421a3ce"; - sha256 = "0n7kn0g7mxylp28w5llrz22w12qjvypa1g82660qr2d9ga9mb0v9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-howm"; - sha256 = "08cv16cq211sy2v1i0gk7d81f0gyywv0i9szmamnrbjif3rrv2m0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-howm"; - license = lib.licenses.free; - }; - }) {}; - calfw-ical = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-ical"; - ename = "calfw-ical"; - version = "20150703.119"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "a67fa1023b3fddc1d1f38114c1d207376c8e6289"; - sha256 = "0g8s3pgivqk1vqdgkndznkl48c4m5yiahkjxyqyv2781hdb4f6xa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-ical"; - sha256 = "1bh9ahwp9b5knjxph79kl19fgs48x3w7dga299l0xvbxq2jhs95q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-ical"; - license = lib.licenses.free; - }; - }) {}; - calfw-org = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-org"; - ename = "calfw-org"; - version = "20160302.1858"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "e03ae470788778e7714b73520014eadc03a88abd"; - sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-org"; - sha256 = "1cfpjh08djz3k067w3580yb15p1csks3gzch9c4cbrbcjvg8inh5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-org"; - license = lib.licenses.free; - }; - }) {}; - call-graph = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , ivy - , lib - , melpaBuild - , tree-mode }: - melpaBuild { - pname = "call-graph"; - ename = "call-graph"; - version = "20190507.105"; - src = fetchFromGitHub { - owner = "beacoder"; - repo = "call-graph"; - rev = "495f192859c71e161f89aa14d530faf2df18139d"; - sha256 = "0a2gn6a7f54j9x3qr3d2syrpwwxjbsdn41rzqp4jb64lmn4nv82m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6acf099e2510c82b4b03e2f35051afc3d28af45/recipes/call-graph"; - sha256 = "0cklr79gqqrb94jq8aq65wqriamay78vv9sd3jrvp86ixl3ig5xc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs hierarchy ivy tree-mode ]; - meta = { - homepage = "https://melpa.org/#/call-graph"; - license = lib.licenses.free; - }; - }) {}; - calmer-forest-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calmer-forest-theme"; - ename = "calmer-forest-theme"; - version = "20130925.2210"; - src = fetchFromGitHub { - owner = "caldwell"; - repo = "calmer-forest-theme"; - rev = "31a0bed8e5db1e314557175a719a10804ac089f4"; - sha256 = "1rqd46ngnjln6vvcx7vsmwsjn4r3wfdpip6gqjqbsznav2g74bra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edb51491e575ef64a705cd0b972de07993f185cf/recipes/calmer-forest-theme"; - sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calmer-forest-theme"; - license = lib.licenses.free; - }; - }) {}; - camcorder = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "camcorder"; - ename = "camcorder"; - version = "20190317.1438"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "camcorder.el"; - rev = "b11ca61491a27681bb3131b72b51c105fd996bed"; - sha256 = "11p42cmk9sj2ilpx6nnlbzff85qi0m27wk49da2ipal28wcx2452"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/camcorder"; - sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs names ]; - meta = { - homepage = "https://melpa.org/#/camcorder"; - license = lib.licenses.free; - }; - }) {}; - caml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "caml"; - ename = "caml"; - version = "20190413.505"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "caml-mode"; - rev = "38ebde12d3d529e6ef8078967997d32226e69e82"; - sha256 = "13gz0s7bnjsnab7wn8mk0zva7756hf68izqp9agd8vqnm0c75nlp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42667ee0d64bce19ad9081a4fae163a9655641d4/recipes/caml"; - sha256 = "0hpxvvgq9nxcbxq9dm1sia3ph2h7p07pp48jz77pr786lrw67la0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/caml"; - license = lib.licenses.free; - }; - }) {}; - cangjie = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cangjie"; - ename = "cangjie"; - version = "20190322.434"; - src = fetchFromGitHub { - owner = "kisaragi-hiu"; - repo = "cangjie.el"; - rev = "f4dcb691e3bda6971cb89b07f368dd285179a8ff"; - sha256 = "0hvwaj1g1szyhjvyxhwflq45bbcvvgv391wa7qkwlxmrvvfhp9k2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed79fc972f7fe69d7bad5d1cdde3a276885a9fe8/recipes/cangjie"; - sha256 = "0gdp6dlkzkkd8r3cmwakwxlxsbysb351n1lr9sq4d60gbbskklln"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/cangjie"; - license = lib.licenses.free; - }; - }) {}; - capture = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "capture"; - ename = "capture"; - version = "20130828.944"; - src = fetchFromGitHub { - owner = "pashinin"; - repo = "capture.el"; - rev = "9140c207b48b3520a2f06674b3e1bee2fc92b80c"; - sha256 = "1fqqiari3r2dib65gc1jayhj5rca249g1ll9lxdcc7mfifjc4pqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bdfe43be6c5f77845e82745534a1b1a9eb190466/recipes/capture"; - sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/capture"; - license = lib.licenses.free; - }; - }) {}; - carbon-now-sh = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "carbon-now-sh"; - ename = "carbon-now-sh"; - version = "20180331.1035"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "carbon-now-sh.el"; - rev = "b5f1e5487301b230078f3ab8032e19969d738aea"; - sha256 = "1x987rvbz56ppjys7xbkzkn53cdjzxay3nkvr9w555kc24qsg2qf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b79bb8af3c149b2d131813c5308141e0e06adccf/recipes/carbon-now-sh"; - sha256 = "1casq1b71rlwanayixs6rrn96jn1w7bzkq77lg0ini5hrfd3w18p"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/carbon-now-sh"; - license = lib.licenses.free; - }; - }) {}; - cargo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , rust-mode }: - melpaBuild { - pname = "cargo"; - ename = "cargo"; - version = "20190108.17"; - src = fetchFromGitHub { - owner = "kwrooijen"; - repo = "cargo.el"; - rev = "1f3bc0d10dbddabfe1974590847a1359aeb3c244"; - sha256 = "0kixkp2q8dj7gbqkmgb2jz3ihfrbyxykvfd1abh8bkxsa4zz6khm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo"; - sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode rust-mode ]; - meta = { - homepage = "https://melpa.org/#/cargo"; - license = lib.licenses.free; - }; - }) {}; - caroline-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "caroline-theme"; - ename = "caroline-theme"; - version = "20160317.2220"; - src = fetchFromGitHub { - owner = "xjackk"; - repo = "caroline-theme"; - rev = "222fd483db304509f9e422dc82883d808e023ceb"; - sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/caroline-theme"; - sha256 = "178nxcz73lmvnjcr6x6as25d8m5knc21jpr66b4rg0rmlmhchkal"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/caroline-theme"; - license = lib.licenses.free; - }; - }) {}; - caseformat = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "caseformat"; - ename = "caseformat"; - version = "20160115.815"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "caseformat"; - rev = "e4961889309408b3425da9b69c16ddfadd17a674"; - sha256 = "08bypv8dijzv05hml4lzzy0ynhsgkma9bspw8sq3zgz5q92gnvrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba158fbeebcda6b6122b18c97ab8042b1c0a0bc0/recipes/caseformat"; - sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/caseformat"; - license = lib.licenses.free; - }; - }) {}; - cask = callPackage ({ ansi - , cl-lib ? null - , dash - , epl - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , package-build - , s - , shut-up }: - melpaBuild { - pname = "cask"; - ename = "cask"; - version = "20181107.142"; - src = fetchFromGitHub { - owner = "cask"; - repo = "cask"; - rev = "199b4380dd3e178ff9df3a9d13d044d67e522b3f"; - sha256 = "14q76wdlnwg08ais2gpmdrjvshly1wp8p8ckyhdmnwq7x39qvh7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/606e62bacfc6b6fc1d8bff3e716b743e6f32b29a/recipes/cask"; - sha256 = "17jv9hhwh3azwa8rc5iljr3c2kz6razq67mvsxi9qnywq4rhrgm9"; - name = "recipe"; - }; - packageRequires = [ ansi cl-lib dash epl f package-build s shut-up ]; - meta = { - homepage = "https://melpa.org/#/cask"; - license = lib.licenses.free; - }; - }) {}; - cask-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cask-mode"; - ename = "cask-mode"; - version = "20160410.749"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "cask-mode"; - rev = "c97755267b7215f02df7b0c16b4210c04aee6566"; - sha256 = "162vvyycvv9pd93hsb8blbjqf22d40xinm5340b3vnsqgg33l4jl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d8bc1afaf69b4f29ba1bb0243c25574bc1197cc/recipes/cask-mode"; - sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cask-mode"; - license = lib.licenses.free; - }; - }) {}; - cask-package-toolset = callPackage ({ ansi - , cl-lib ? null - , commander - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "cask-package-toolset"; - ename = "cask-package-toolset"; - version = "20170921.1556"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "cask-package-toolset.el"; - rev = "2c74cd827e88c7f8360581a841e45f0b794510e7"; - sha256 = "1hk5q6p1j7cqg5srr3v21xfyy7aas4hfj1a66h21c2xvfjra3hxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed71e45389626e700b93b29d5e2659b6706274d8/recipes/cask-package-toolset"; - sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; - name = "recipe"; - }; - packageRequires = [ ansi cl-lib commander dash emacs f s shut-up ]; - meta = { - homepage = "https://melpa.org/#/cask-package-toolset"; - license = lib.licenses.free; - }; - }) {}; - caskxy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "caskxy"; - ename = "caskxy"; - version = "20140513.839"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "caskxy"; - rev = "279f3ab79bd77fe69cb3148a79896b9bf118a9b3"; - sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d61aea505e4913879f68081497e85542e9fd786/recipes/caskxy"; - sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/caskxy"; - license = lib.licenses.free; - }; - }) {}; - catmacs = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "catmacs"; - ename = "catmacs"; - version = "20170826.457"; - src = fetchgit { - url = "https://bitbucket.org/pymaximus/catmacs"; - rev = "6ea9ee195661fe95355413856476c45dcc8e24e8"; - sha256 = "057fqmpzhpslhcyvz4s7lp2v448fy7xicfk9kaw3fjhlrnkhi603"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e62e45ea234a574ed602f27c3c6bc240bcd4fa43/recipes/catmacs"; - sha256 = "0ym1szmq9ib75yiyy5jw647fcs7gg0d5dkskqc293pg81qf3im50"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/catmacs"; - license = lib.licenses.free; - }; - }) {}; - cbm = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cbm"; - ename = "cbm"; - version = "20171116.440"; - src = fetchFromGitHub { - owner = "akermu"; - repo = "cbm.el"; - rev = "5b41c936ba9f6d170309a85ffebc9939c1050b31"; - sha256 = "091ln3d0jhdgahbwfdm1042b19886n3kwipw5gk8d0jnq5vwrkws"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f28dbc97dc23cdb0b4c74f8805775c787635871e/recipes/cbm"; - sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cbm"; - license = lib.licenses.free; - }; - }) {}; - cc-cedict = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cc-cedict"; - ename = "cc-cedict"; - version = "20181217.312"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "cc-cedict.el"; - rev = "7dd6e8a99c634c9eff5fa2931ad8828ff02dbd90"; - sha256 = "1clpwp5vp9rlnms3xfr4c0ddhc3cxl3vv76jasxiqjzidjs8n090"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/368aaef30c5c4f38d9d2dd09f966e3dcc2463e11/recipes/cc-cedict"; - sha256 = "1h8i9nfd66ayka5vkm1lp5crr4nm1bzi4sak0xid85fzgmx364vr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cc-cedict"; - license = lib.licenses.free; - }; - }) {}; - ccc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ccc"; - ename = "ccc"; - version = "20151205.543"; - src = fetchFromGitHub { - owner = "skk-dev"; - repo = "ddskk"; - rev = "e18c04d63712a5b40853bee3ca3f1bde8ba5bdba"; - sha256 = "17grxms81xb00bhg8j2yzc3j74njakgv4r80w0vj8fp1357j12xd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7375cab750a67ede1a021b6a4371b678a7b991b0/recipes/ccc"; - sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ccc"; - license = lib.licenses.free; - }; - }) {}; - ccls = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , projectile }: - melpaBuild { - pname = "ccls"; - ename = "ccls"; - version = "20190512.1857"; - src = fetchFromGitHub { - owner = "MaskRay"; - repo = "emacs-ccls"; - rev = "2764ddd57b03646f0327ea680a954b4a67450aef"; - sha256 = "16427jvzhjy8kpvlgl3qzkzppv98124hkgi8q8pv1h7m46k9lhh3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27a4022d58860917a659fce2b7d7791fbea4e2/recipes/ccls"; - sha256 = "0kiv0n6pdpa75wjcimpwccwbjbhga4gjnphjrkpj4qz5qv42rbnm"; - name = "recipe"; - }; - packageRequires = [ dash emacs lsp-mode projectile ]; - meta = { - homepage = "https://melpa.org/#/ccls"; - license = lib.licenses.free; - }; - }) {}; - cd-compile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cd-compile"; - ename = "cd-compile"; - version = "20141108.1157"; - src = fetchFromGitHub { - owner = "jamienicol"; - repo = "emacs-cd-compile"; - rev = "10284ccae86afda4a37b09ba90acd1e2efedec9f"; - sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bca4c9e8b071497ac50a85741bf46be6eaae2135/recipes/cd-compile"; - sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cd-compile"; - license = lib.licenses.free; - }; - }) {}; - cdb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cdb"; - ename = "cdb"; - version = "20151205.543"; - src = fetchFromGitHub { - owner = "skk-dev"; - repo = "ddskk"; - rev = "e18c04d63712a5b40853bee3ca3f1bde8ba5bdba"; - sha256 = "17grxms81xb00bhg8j2yzc3j74njakgv4r80w0vj8fp1357j12xd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b48fe069ecd95ea0f9768ecad969e0838344e45d/recipes/cdb"; - sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cdb"; - license = lib.licenses.free; - }; - }) {}; - cdlatex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cdlatex"; - ename = "cdlatex"; - version = "20190130.619"; - src = fetchFromGitHub { - owner = "cdominik"; - repo = "cdlatex"; - rev = "90d785a94c0db7aa0043ea62f5807af3df155438"; - sha256 = "1yhry3wrqh1ijc0n7140pnbwcamrgi89a75pg03zx0cqb5g6c8i6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cdlatex"; - sha256 = "021gj0jw93r8gk0cacw1ldfibpwr6fpkcrnign7b4nqqnb3135k9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cdlatex"; - license = lib.licenses.free; - }; - }) {}; - cdnjs = callPackage ({ dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "cdnjs"; - ename = "cdnjs"; - version = "20161031.822"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "cdnjs.el"; - rev = "ce19880d3ec3d81e6c665d0b1dfea99cc7a3f908"; - sha256 = "02j45ngddx7n5gvy42r8y3s22bmxlnvg2pqjfh0li8m599fnd11h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66e4ce4e2c7e4aaac9dc0ce476c4759b000ff5d6/recipes/cdnjs"; - sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; - name = "recipe"; - }; - packageRequires = [ dash deferred f pkg-info ]; - meta = { - homepage = "https://melpa.org/#/cdnjs"; - license = lib.licenses.free; - }; - }) {}; - cedit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cedit"; - ename = "cedit"; - version = "20141231.814"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "cedit"; - rev = "0878d851b6307c162bfbddd2bb02789e5e27bc2c"; - sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0de4796054f0c616849904bacf05c74c7d2cdcf6/recipes/cedit"; - sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cedit"; - license = lib.licenses.free; - }; - }) {}; - celery = callPackage ({ dash-functional - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "celery"; - ename = "celery"; - version = "20170225.124"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "emacs-celery"; - rev = "b3378dd81e5a717432123fb13d70201da5dc841a"; - sha256 = "0xm9dhcw7p60rckq9i4aqpv050n2244yi8w5rvqlqb2i4pnkb0fh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b896b2b89d990a7ce2f4bf4ce0aee0d126f3e55/recipes/celery"; - sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; - name = "recipe"; - }; - packageRequires = [ dash-functional deferred emacs s ]; - meta = { - homepage = "https://melpa.org/#/celery"; - license = lib.licenses.free; - }; - }) {}; - celestial-mode-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "celestial-mode-line"; - ename = "celestial-mode-line"; - version = "20180518.122"; - src = fetchFromGitHub { - owner = "ecraven"; - repo = "celestial-mode-line"; - rev = "3f5794aca99b977f1592cf1ab4516ae7922196a1"; - sha256 = "01kdpfjnfnjll40n1zdp641gw8pk2vnv93a59lyx1mw1f30yvfr6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cdb1d057f76166ba32d5028f18eec7d09857f990/recipes/celestial-mode-line"; - sha256 = "1s6vn71mxfvvafjs25j12z1gnmxnkvnw716zy5ifx1bs8s5960kq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/celestial-mode-line"; - license = lib.licenses.free; - }; - }) {}; - centered-cursor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "centered-cursor-mode"; - ename = "centered-cursor-mode"; - version = "20190306.206"; - src = fetchFromGitHub { - owner = "andre-r"; - repo = "centered-cursor-mode.el"; - rev = "152877108504c7cc6ebdcf51d08aea26506e2a6d"; - sha256 = "0kks14ycvvrfm14hg18cv60gkijvgrija03pz6ibnmc34ab3gvjz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a7a28caba49a20413dec3c3d0cc9c36b859834d/recipes/centered-cursor-mode"; - sha256 = "1yy50p3xprkqiak3vfly5s5kpbbdmxmw6fhgz13fw97553hr3w5x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/centered-cursor-mode"; - license = lib.licenses.free; - }; - }) {}; - centered-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "centered-window"; - ename = "centered-window"; - version = "20171127.149"; - src = fetchFromGitHub { - owner = "anler"; - repo = "centered-window-mode"; - rev = "1234a364c9fa3a54087884ced2a7357b93fbb5d7"; - sha256 = "1z3zi6zy1z68g4sfiv21l998n04hbbqp660khind6ap8yjjn8ik8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58bfd795d4d620f0c83384fb03008e129c71dc09/recipes/centered-window"; - sha256 = "0w6na4ld79bpmkiv6glbrphc32v6g2rcrpi28259i94jhgy1kxqk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/centered-window"; - license = lib.licenses.free; - }; - }) {}; - centimacro = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "centimacro"; - ename = "centimacro"; - version = "20140306.627"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "centimacro"; - rev = "1b97a9b558ed9c49d5da1bfbf29b2506575c2742"; - sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de048d6e5d11a42d92de1938fd74fd37146a5a89/recipes/centimacro"; - sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/centimacro"; - license = lib.licenses.free; - }; - }) {}; - cerbere = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "cerbere"; - ename = "cerbere"; - version = "20181113.841"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "cerbere"; - rev = "bb18d932b16541105d41a668dbf6fc4e833a6dc2"; - sha256 = "1sx61pgh12iqby4yvslrmn634hn4hk2bh2zfybj1b5p3iwzzmpzd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4145e270a2113f30f8bb4d0f6c335f1c76f77b1c/recipes/cerbere"; - sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; - name = "recipe"; - }; - packageRequires = [ pkg-info ]; - meta = { - homepage = "https://melpa.org/#/cerbere"; - license = lib.licenses.free; - }; - }) {}; - ceylon-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ceylon-mode"; - ename = "ceylon-mode"; - version = "20180606.624"; - src = fetchFromGitHub { - owner = "lucaswerkmeister"; - repo = "ceylon-mode"; - rev = "948515672bc596dc118e8e3ede3ede5ec6a3c95a"; - sha256 = "1a9f9h5kywfy8c2kmaxc9vf5zcykbhghpi3ra2l3z5hm0knq54ay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09cd1a2ccf33b209a470780a66d54e1b1d597a86/recipes/ceylon-mode"; - sha256 = "0dgqmmb8qmvzn557h0fw1mx4y0p96870l8f8glizkk3fifg7wgq4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ceylon-mode"; - license = lib.licenses.free; - }; - }) {}; - cfengine-code-style = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cfengine-code-style"; - ename = "cfengine-code-style"; - version = "20171115.1308"; - src = fetchFromGitHub { - owner = "cfengine"; - repo = "core"; - rev = "10e43677e99a29d8072bb120e7cd7b9d03b1218f"; - sha256 = "0mncl7wb2vi620snk4z01k0wdbvvd5b2nw9nlnfr9a4hkn3fg44r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; - sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cfengine-code-style"; - license = lib.licenses.free; - }; - }) {}; - cff = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cff"; - ename = "cff"; - version = "20160118.1218"; - src = fetchFromGitHub { - owner = "fourier"; - repo = "cff"; - rev = "b6ab2a28e64ef06f281ec74cfe3114e450644dfa"; - sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c4e056132be11481aa26e89d5af1cd03925f92d1/recipes/cff"; - sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/cff"; - license = lib.licenses.free; - }; - }) {}; - cfml-mode = callPackage ({ cftag-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode }: - melpaBuild { - pname = "cfml-mode"; - ename = "cfml-mode"; - version = "20170903.1949"; - src = fetchFromGitHub { - owner = "am2605"; - repo = "cfml-mode"; - rev = "86e77dcbb583191a3e755bdc29534f33d82bfc56"; - sha256 = "0b0261ap0jiys9d0x31xg7x36kpq06fni2c0cjhi58wpcykq3s1p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d28507e1109195004a371fa201d914b995c2b4e/recipes/cfml-mode"; - sha256 = "0q88lxhkzzab4jjihk0livdpn6lsmd8l2s4brcbl8402m285sylp"; - name = "recipe"; - }; - packageRequires = [ cftag-mode emacs mmm-mode ]; - meta = { - homepage = "https://melpa.org/#/cfml-mode"; - license = lib.licenses.free; - }; - }) {}; - cframe = callPackage ({ buffer-manage - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cframe"; - ename = "cframe"; - version = "20170917.1509"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "cframe"; - rev = "61844d948e4464625f7023de62aeb27ca742b36f"; - sha256 = "1v413kvygfkdiqi9zg6ypihf2vcks0vs80qshg0ynm5zy27f984y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e39555b2538cc8a955766c5533871396e8fe712/recipes/cframe"; - sha256 = "0pngdaflk1pk2xmwbij4b520b3mlacnjab4r3jby0phah44ziv4l"; - name = "recipe"; - }; - packageRequires = [ buffer-manage dash emacs ]; - meta = { - homepage = "https://melpa.org/#/cframe"; - license = lib.licenses.free; - }; - }) {}; - cfrs = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe - , s }: - melpaBuild { - pname = "cfrs"; - ename = "cfrs"; - version = "20190603.1031"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "cfrs"; - rev = "809cdc642a18f7c2de34bdfb6ad78b2d577dbc09"; - sha256 = "152dwl4xn2xncq5s16vl9w6z40mllfvc9n4a567i36f73s95p7ia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce16d27a9d73a5eaffebf7b0ff36d90c292248f/recipes/cfrs"; - sha256 = "03mi5iz0yny2ddvp41l3yc49583zw0wqsv33rkycjfj562903syx"; - name = "recipe"; - }; - packageRequires = [ dash emacs posframe s ]; - meta = { - homepage = "https://melpa.org/#/cfrs"; - license = lib.licenses.free; - }; - }) {}; - cftag-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cftag-mode"; - ename = "cftag-mode"; - version = "20170811.2240"; - src = fetchFromGitHub { - owner = "am2605"; - repo = "cfml-mode"; - rev = "395c5a9422f7bda619fd67875a8a2173aaf9c807"; - sha256 = "1q0hy0baf8vcnnbanpl3za4q5ykxm33fyq2n863jp9v6b6wbc71d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0914d33ebf58847fa3906b1f0d53e97ac335b334/recipes/cftag-mode"; - sha256 = "0qnq8h5nwhw464ax8qpbsvflpaar44zw0mh2y7kc358v27n3qy6c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cftag-mode"; - license = lib.licenses.free; - }; - }) {}; - cg = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cg"; - ename = "cg"; - version = "20190316.1506"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "cg"; - rev = "9349600829ca1758306e703a649874f8c63955fa"; - sha256 = "1s3s37g99x19zxnq0xbiy95kjhm2hb09saxic2basapcp0sdfbwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/cg"; - sha256 = "1xffjilr9f2s3w7j8f3clq7qvsnr0lr8gadlybpzzy8x5fbmk4n3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cg"; - license = lib.licenses.free; - }; - }) {}; - challenger-deep-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "challenger-deep-theme"; - ename = "challenger-deep-theme"; - version = "20181205.1034"; - src = fetchFromGitHub { - owner = "challenger-deep-theme"; - repo = "emacs"; - rev = "64a27ff3d7f6633234f7f1ec28a70b47a176bb04"; - sha256 = "17pmr3fbcyhhv03y9x32h0bwi2mrbqnjv9cy04ghpr3hkpgkpz65"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/challenger-deep-theme"; - sha256 = "02k0irp27wv1b5g2a6g86zp7cdprv17c0mlhkjsq2brls274ch3y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/challenger-deep-theme"; - license = lib.licenses.free; - }; - }) {}; - change-inner = callPackage ({ expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "change-inner"; - ename = "change-inner"; - version = "20150707.844"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "change-inner.el"; - rev = "52c543a4b9808c0d15b565fcdf646c9779de33e8"; - sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/change-inner"; - sha256 = "09y076vhhvp21jsvw9f5z4yk6cnmmjavg7600flxg5g27ydgix57"; - name = "recipe"; - }; - packageRequires = [ expand-region ]; - meta = { - homepage = "https://melpa.org/#/change-inner"; - license = lib.licenses.free; - }; - }) {}; - chapel-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chapel-mode"; - ename = "chapel-mode"; - version = "20160504.108"; - src = fetchFromGitHub { - owner = "russel"; - repo = "Emacs-Chapel-Mode"; - rev = "816a1a54ff5ffdd20b6a4d249ace774740a3924c"; - sha256 = "0kp18xlc1005hbkfhng03y4xgaicqf6b5vwgnwbbw9s5qzirmhix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff32db72ad55a7191b5105192480e17535c7edde/recipes/chapel-mode"; - sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chapel-mode"; - license = lib.licenses.free; - }; - }) {}; - char-menu = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "char-menu"; - ename = "char-menu"; - version = "20181231.2305"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "char-menu"; - rev = "bf6f64e8347bdf6f8421d0494d30b9af30a49778"; - sha256 = "0dslfmhzxxyl9i9vfff21yjwjl9y8zhmgap7p3b2bdivks50hwwd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6676747e853045b3b19e7fc9524c793c6a08303/recipes/char-menu"; - sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/char-menu"; - license = lib.licenses.free; - }; - }) {}; - charmap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "charmap"; - ename = "charmap"; - version = "20160309.146"; - src = fetchFromGitHub { - owner = "lateau"; - repo = "charmap"; - rev = "e0477f08c56c93c420e01452bba64b0da732f309"; - sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11c549fca81c4276054f614d86d17fa7af4ab32e/recipes/charmap"; - sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/charmap"; - license = lib.licenses.free; - }; - }) {}; - chatwork = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chatwork"; - ename = "chatwork"; - version = "20170510.2142"; - src = fetchFromGitHub { - owner = "ataka"; - repo = "chatwork"; - rev = "fea231d479f06bf40dbfcf45de143eecc9ed744c"; - sha256 = "163xr18lm4awfgh4lcp7pr04jirpvlk8w1g4445zbxbpjfvv268z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77ae72e62b8771e890525c063522e7091ca8f674/recipes/chatwork"; - sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chatwork"; - license = lib.licenses.free; - }; - }) {}; - cheat-sh = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cheat-sh"; - ename = "cheat-sh"; - version = "20170802.418"; - src = fetchFromGitHub { - owner = "davep"; - repo = "cheat-sh.el"; - rev = "e90445124f3f145a047779e42d070a3c5e150f70"; - sha256 = "06avap8w833syhz7pdpsm73nbsgbwzmpagd7f3khzaf6r6c90jmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebac62fb3828d81e30145b9948d60e781e20eda2/recipes/cheat-sh"; - sha256 = "0f6wqyh3c3ap0l6khikqlw8sqqi6fsl468gn157faza4x63j9z80"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cheat-sh"; - license = lib.licenses.free; - }; - }) {}; - cheatsheet = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cheatsheet"; - ename = "cheatsheet"; - version = "20170126.1350"; - src = fetchFromGitHub { - owner = "darksmile"; - repo = "cheatsheet"; - rev = "e4f8e0110167ea16a17a74517d1f10cb7ff805b8"; - sha256 = "1vy2qmx9872hfrfcycpsmy0si481rwv4q4gwiy8f2w04zb92szbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d2cd657fcadb2dd3fd12864fe94a3465f8c9bd7/recipes/cheatsheet"; - sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/cheatsheet"; - license = lib.licenses.free; - }; - }) {}; - checkbox = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "checkbox"; - ename = "checkbox"; - version = "20141116.1658"; - src = fetchFromGitHub { - owner = "camdez"; - repo = "checkbox.el"; - rev = "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1"; - sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81c4a9d10238836865716f5ea45f8e0e625a87c6/recipes/checkbox"; - sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/checkbox"; - license = lib.licenses.free; - }; - }) {}; - chee = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "chee"; - ename = "chee"; - version = "20171123.1433"; - src = fetchFromGitHub { - owner = "eikek"; - repo = "chee"; - rev = "669ff9ee429f24c3c2d03b83d9cb9aec5f86bb8b"; - sha256 = "1k64mjzqmjirsld40dvmpq4llpb7ggx80r1hvsjqazc4mr16pbri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/chee"; - sha256 = "1sw84qaca2cwgrw332wfqjp3kg3axgi9n6wx5a6h2n3liq5yr1wj"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/chee"; - license = lib.licenses.free; - }; - }) {}; - cheerilee = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xelb }: - melpaBuild { - pname = "cheerilee"; - ename = "cheerilee"; - version = "20160313.1135"; - src = fetchFromGitHub { - owner = "Vannil"; - repo = "cheerilee.el"; - rev = "41bd81b5b0bb657241ceda5be6af5e07254d7376"; - sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da435df8d78b7c8d4834e00e35c69248a7043c0a/recipes/cheerilee"; - sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv"; - name = "recipe"; - }; - packageRequires = [ xelb ]; - meta = { - homepage = "https://melpa.org/#/cheerilee"; - license = lib.licenses.free; - }; - }) {}; - chef-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chef-mode"; - ename = "chef-mode"; - version = "20180628.753"; - src = fetchFromGitHub { - owner = "mpasternacki"; - repo = "chef-mode"; - rev = "048d691cb63981ae235763d4a6ced4af5c729924"; - sha256 = "1niin51xwkd8q3wbwcgb0gyk3sw1829qj2p2zv7fm8ljy1jicn2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4044056af824d552a2852ef1f2e7166899f56d8c/recipes/chef-mode"; - sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chef-mode"; - license = lib.licenses.free; - }; - }) {}; - cherry-blossom-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cherry-blossom-theme"; - ename = "cherry-blossom-theme"; - version = "20150621.2042"; - src = fetchFromGitHub { - owner = "inlinestyle"; - repo = "emacs-cherry-blossom-theme"; - rev = "e5ea23694c0f20ab670c0aa87214c27f2232d922"; - sha256 = "0gmbsiyh075gmv3cq9675wf6mpls5wlwgcavha31cdbsdb9frsk1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/401ae22f11f7ee808eb696a4c1f869cd824702c0/recipes/cherry-blossom-theme"; - sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cherry-blossom-theme"; - license = lib.licenses.free; - }; - }) {}; - chicken-scheme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chicken-scheme"; - ename = "chicken-scheme"; - version = "20141116.1139"; - src = fetchFromGitHub { - owner = "dleslie"; - repo = "chicken-scheme.el"; - rev = "19b0b08b5592063e852cae094b394c7d1f923639"; - sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03f4992471185bf41720ff6fc725fd5fa1291a41/recipes/chicken-scheme"; - sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chicken-scheme"; - license = lib.licenses.free; - }; - }) {}; - chinese-conv = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chinese-conv"; - ename = "chinese-conv"; - version = "20170807.1428"; - src = fetchFromGitHub { - owner = "gucong"; - repo = "emacs-chinese-conv"; - rev = "b56815bbb163d642e97fa73093b5a7e87cc32574"; - sha256 = "1bc3yn8y60y6a4vpqv39arn1pkcpl4s4n0sz9446f6m1lcal4c3r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a798158829f8fd84dd3e5e3ec5987d98ff54e641/recipes/chinese-conv"; - sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/chinese-conv"; - license = lib.licenses.free; - }; - }) {}; - chinese-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chinese-number"; - ename = "chinese-number"; - version = "20161007.2209"; - src = fetchFromGitHub { - owner = "zhcosin"; - repo = "chinese-number"; - rev = "1d0c440181848dfcd1d1e618b2650fb0562a32ac"; - sha256 = "1zm0wjhqsb11szvxs2rnq63396cbi6ffynpbn07p6gk5agxzfy0j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/chinese-number"; - sha256 = "0cjfxhd5izahkncs2nzpdv8brsxlwr2dx4hi07ymr62cr0hh0jgy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chinese-number"; - license = lib.licenses.free; - }; - }) {}; - chinese-wbim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chinese-wbim"; - ename = "chinese-wbim"; - version = "20150623.2050"; - src = fetchFromGitHub { - owner = "zilongshanren"; - repo = "chinese-wbim"; - rev = "57ff61ff3895d77335709d24b40cefc4d10b0095"; - sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b6b1d100ddf29d6936569d61bf4be19a24d002d/recipes/chinese-wbim"; - sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chinese-wbim"; - license = lib.licenses.free; - }; - }) {}; - chinese-word-at-point = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chinese-word-at-point"; - ename = "chinese-word-at-point"; - version = "20170811.241"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "chinese-word-at-point.el"; - rev = "8223d7439e005555b86995a005b225ae042f0538"; - sha256 = "13gva1ld4f9wwb2m4fpk6bd9342qvvmaf5i1r3x3h84czmk0nq1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b7785eca577218feade982c979694389f37ec3/recipes/chinese-word-at-point"; - sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/chinese-word-at-point"; - license = lib.licenses.free; - }; - }) {}; - chinese-yasdcv = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyim }: - melpaBuild { - pname = "chinese-yasdcv"; - ename = "chinese-yasdcv"; - version = "20171014.1844"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "chinese-yasdcv"; - rev = "5ab830daf1273d5a5cddcb94b56a9737f12d996f"; - sha256 = "1mv1n6m73aamxj18i851ww53q7p4ydiqgaapxyvjbm6sx8ddz9ak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6d727c30d2ec0f885a927a16a442fe220a740d5/recipes/chinese-yasdcv"; - sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm"; - name = "recipe"; - }; - packageRequires = [ cl-lib pyim ]; - meta = { - homepage = "https://melpa.org/#/chinese-yasdcv"; - license = lib.licenses.free; - }; - }) {}; - choice-program = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "choice-program"; - ename = "choice-program"; - version = "20180920.2013"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "choice-program"; - rev = "08ce5a5dd79690aed12fd9d152d8cb4be988fdb1"; - sha256 = "19mq8z00g12cpyrb8z0m9sxqs8adp4hbcbqxcila53myfcf7v92h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e39555b2538cc8a955766c5533871396e8fe712/recipes/choice-program"; - sha256 = "0a21yd3b8sb15vms9mclaa7xnnk0as08p6q38mwdwjp9sgcfyh1b"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/choice-program"; - license = lib.licenses.free; - }; - }) {}; - chronometer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chronometer"; - ename = "chronometer"; - version = "20190304.728"; - src = fetchFromGitHub { - owner = "marcelotoledo"; - repo = "chronometer"; - rev = "8457b296ef87be339cbe47730b922757d60bdcd5"; - sha256 = "1apzb0jccw91gdynqa1722bbalzj4kp9fq25zzw1rxsrgh3mgmc5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b20fa4885e2cdc0429d988c76b365bf34d9343db/recipes/chronometer"; - sha256 = "1kgfq9srch0amdgb4cvizlrg5xqq0hkkdq85yjr2xwsljh09m83k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/chronometer"; - license = lib.licenses.free; - }; - }) {}; - chronos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chronos"; - ename = "chronos"; - version = "20150602.829"; - src = fetchFromGitHub { - owner = "dxknight"; - repo = "chronos"; - rev = "b360d9dae57aa553cf2a14ffa0756a51ad71de09"; - sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53648c5699fc03e50774270f9560c727e2c22873/recipes/chronos"; - sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chronos"; - license = lib.licenses.free; - }; - }) {}; - chruby = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chruby"; - ename = "chruby"; - version = "20180114.852"; - src = fetchFromGitHub { - owner = "plexus"; - repo = "chruby.el"; - rev = "42bc6d521f832eca8e2ba210f30d03ad5529788f"; - sha256 = "06pvjw40qk017py9km26vjrh90acycnkr5r04nxf664qqkjlg2mc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1989a3c6fa4cd7aaf6b0b202f197eb7db51936b9/recipes/chruby"; - sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/chruby"; - license = lib.licenses.free; - }; - }) {}; - chyla-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chyla-theme"; - ename = "chyla-theme"; - version = "20180302.858"; - src = fetchFromGitHub { - owner = "chyla"; - repo = "ChylaThemeForEmacs"; - rev = "ae5e7ecace2ab474151eb0ac5ef07fba2dc32f8a"; - sha256 = "1gqzwwr3fnhd9iqn7zmqpxgxvmrhq7g849ndjwizksk0bfj3b596"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c55eebf8df165360ce1e5d18e484c90f296fe52/recipes/chyla-theme"; - sha256 = "1mgr6483bjjwk8bi6kijyw61s52nq6g2svhy5n1jnffi3gaw7hl5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chyla-theme"; - license = lib.licenses.free; - }; - }) {}; - cider = callPackage ({ clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parseedn - , pkg-info - , queue - , seq - , sesman - , spinner }: - melpaBuild { - pname = "cider"; - ename = "cider"; - version = "20190606.223"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider"; - rev = "d5c551b9d44e4239db04887461efb747411336d6"; - sha256 = "0shn1krnwa32pvnpyqj30w41xrk318c2jzf9bjbnj2887y28lndg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; - sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; - name = "recipe"; - }; - packageRequires = [ - clojure-mode - emacs - parseedn - pkg-info - queue - seq - sesman - spinner - ]; - meta = { - homepage = "https://melpa.org/#/cider"; - license = lib.licenses.free; - }; - }) {}; - cider-decompile = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , javap-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "cider-decompile"; - ename = "cider-decompile"; - version = "20151121.2137"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider-decompile"; - rev = "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651"; - sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b7f7f23bb15922ce7a7dad1ae23093db72aa10c/recipes/cider-decompile"; - sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4"; - name = "recipe"; - }; - packageRequires = [ cider javap-mode ]; - meta = { - homepage = "https://melpa.org/#/cider-decompile"; - license = lib.licenses.free; - }; - }) {}; - cider-eval-sexp-fu = callPackage ({ emacs - , eval-sexp-fu - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cider-eval-sexp-fu"; - ename = "cider-eval-sexp-fu"; - version = "20190311.1452"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider-eval-sexp-fu"; - rev = "7fd229f1441356866aedba611fd0cf4e89b50921"; - sha256 = "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/947f4d106d70f95ca8aac124ab0d90b2975208df/recipes/cider-eval-sexp-fu"; - sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; - name = "recipe"; - }; - packageRequires = [ emacs eval-sexp-fu ]; - meta = { - homepage = "https://melpa.org/#/cider-eval-sexp-fu"; - license = lib.licenses.free; - }; - }) {}; - cider-hydra = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "cider-hydra"; - ename = "cider-hydra"; - version = "20181015.27"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider-hydra"; - rev = "5956c3909cd9beae11f64973e4f0d830cea7860d"; - sha256 = "1hnari85c4y5sc8cdv2idkg2qv058crz54xdidnphr1wgw5zhvpk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51d5e6471f88337c478ee5c189f037aaec937f56/recipes/cider-hydra"; - sha256 = "1qjgfrj3ck70vkyc9c00mif0jq5hc2yan2hql31qzbpqzg3pi2r7"; - name = "recipe"; - }; - packageRequires = [ cider hydra ]; - meta = { - homepage = "https://melpa.org/#/cider-hydra"; - license = lib.licenses.free; - }; - }) {}; - ciel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ciel"; - ename = "ciel"; - version = "20180914.115"; - src = fetchFromGitHub { - owner = "cs14095"; - repo = "ciel.el"; - rev = "429773a3c551691a463ecfddd634b8bae2f48503"; - sha256 = "0xykdwsjgx44c0l5v9swkjjv0xa673krzlc71b1sc4dw9l526s4m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c70c007a557ea9fb9eb4d3f8b7adbe4dac39c8a/recipes/ciel"; - sha256 = "0rz7z3shhsvky91b581nn3hw760nlsc94fl35flm1973kvm9lvdp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ciel"; - license = lib.licenses.free; - }; - }) {}; - cil-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cil-mode"; - ename = "cil-mode"; - version = "20160622.730"; - src = fetchFromGitHub { - owner = "ForNeVeR"; - repo = "cil-mode"; - rev = "8023b45ec60961bf4c3a3d8a564727c463ed09d1"; - sha256 = "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ccbf4a7c9df3c85207c7160ee68ecc4ba4f3801a/recipes/cil-mode"; - sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cil-mode"; - license = lib.licenses.free; - }; - }) {}; - cinspect = callPackage ({ cl-lib ? null - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , python-environment }: - melpaBuild { - pname = "cinspect"; - ename = "cinspect"; - version = "20150715.1933"; - src = fetchFromGitHub { - owner = "inlinestyle"; - repo = "cinspect-mode"; - rev = "4e199a90f89b335cccda1518aa0963e0a1d4fbab"; - sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e5b5bdbfeb59ed8e98e50d0cc773d78c72d1699/recipes/cinspect"; - sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred emacs python-environment ]; - meta = { - homepage = "https://melpa.org/#/cinspect"; - license = lib.licenses.free; - }; - }) {}; - circadian = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circadian"; - ename = "circadian"; - version = "20181024.556"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "circadian.el"; - rev = "e0547c1779f2653dac09192951a0756ce2e2ea89"; - sha256 = "120b6wr2b4dmgaz5y3vpc5f68nqm1lfkgwpcxwxncspds7qb987j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/circadian"; - sha256 = "1xxrhifw371yc4i2cddzcdmqh5dfc905wyl88765098685q8k4bp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/circadian"; - license = lib.licenses.free; - }; - }) {}; - circe = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circe"; - ename = "circe"; - version = "20190322.542"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "6ccd4b494cbae9d28091217654f052eaea321007"; - sha256 = "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe"; - sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/circe"; - license = lib.licenses.free; - }; - }) {}; - circe-notifications = callPackage ({ alert - , circe - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circe-notifications"; - ename = "circe-notifications"; - version = "20180102.1518"; - src = fetchFromGitHub { - owner = "eqyiel"; - repo = "circe-notifications"; - rev = "291149ac12877bbd062da993479d3533a26862b0"; - sha256 = "18mva5nn919c86sgk6kdh437vdnlh9bk7fg10xqcpics1yv3viaw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76c0408423c4e0728789de7b356b2971d6c446c7/recipes/circe-notifications"; - sha256 = "06y525x5yc0xgbw0cf16mc72ca9bv8j8z4gpgznbad2qp7psf53c"; - name = "recipe"; - }; - packageRequires = [ alert circe emacs ]; - meta = { - homepage = "https://melpa.org/#/circe-notifications"; - license = lib.licenses.free; - }; - }) {}; - citeproc = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , queue - , s - , string-inflection }: - melpaBuild { - pname = "citeproc"; - ename = "citeproc"; - version = "20190422.1317"; - src = fetchFromGitHub { - owner = "andras-simonyi"; - repo = "citeproc-el"; - rev = "fa45f1a16f1860b1d873daa75886218d70ab0f29"; - sha256 = "06ldsw1668fgj5lrp8mk7c9bsxp1dsrl2s4f2j2yykl6rx0j3dyi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20aa56e9a4809cee1082224b1b4e65921a48bda1/recipes/citeproc"; - sha256 = "1qphg2bg7vvjzgvnsscbyf40llxxh4aa2s2ffk8vsbfd4p8208cq"; - name = "recipe"; - }; - packageRequires = [ dash emacs f org queue s string-inflection ]; - meta = { - homepage = "https://melpa.org/#/citeproc"; - license = lib.licenses.free; - }; - }) {}; - cl-format = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-format"; - ename = "cl-format"; - version = "20160412.1745"; - src = fetchFromGitHub { - owner = "alvinfrancis"; - repo = "cl-format"; - rev = "4380cb8009c47cc6d9098b383082b93b1aefa460"; - sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cl-format"; - sha256 = "09jwy0fgaz2f04dvcdns6w859s6izvrkp8ib4lws3x8kx8z918fy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cl-format"; - license = lib.licenses.free; - }; - }) {}; - cl-lib-highlight = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-lib-highlight"; - ename = "cl-lib-highlight"; - version = "20140127.1312"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "cl-lib-highlight"; - rev = "fd1b308e6e989791d1df14438efa6b77d20f7c7e"; - sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/696c79669478b0d1c9769cc6f0fe581ee056cf32/recipes/cl-lib-highlight"; - sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cl-lib-highlight"; - license = lib.licenses.free; - }; - }) {}; - cl-libify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-libify"; - ename = "cl-libify"; - version = "20181129.1830"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "cl-libify"; - rev = "e205b96f944a4f312fd523804cbbaf00027a3c8b"; - sha256 = "03xmpgpd4zw9x4shkz9aa744ifnwfblnq369qsp3r1awjacksrg3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22088f8779652072871d5c472c67f34bd0470129/recipes/cl-libify"; - sha256 = "0p3b57vfzhk348hb7bcnkq4ihi4qzsy4hcdvwa1h85i84vwyzk5d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cl-libify"; - license = lib.licenses.free; - }; - }) {}; - clang-format = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clang-format"; - ename = "clang-format"; - version = "20180406.814"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "clang-format"; - rev = "38ee476c47c3998f04a8cba9c18d0e2f806fe968"; - sha256 = "0zlw1qdchzpr93wqmkn7590w0frmhvd82jjfl1dngwa8j14pf97k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/clang-format"; - sha256 = "0v8nvgjadzmsz088q6cgli5s99z45bz9qb508qln1yips42zn258"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/clang-format"; - license = lib.licenses.free; - }; - }) {}; - clean-aindent-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clean-aindent-mode"; - ename = "clean-aindent-mode"; - version = "20171017.1343"; - src = fetchFromGitHub { - owner = "pmarinov"; - repo = "clean-aindent-mode"; - rev = "a97bcae8f43a9ff64e95473e4ef0d8bafe829211"; - sha256 = "07dgx09j6nn5dl9vpqfcs5yqm79kza3h3r1lb7r09wpkmrg0c2cr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee9dac7c10e652f026643620418dfea9237a0d23/recipes/clean-aindent-mode"; - sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clean-aindent-mode"; - license = lib.licenses.free; - }; - }) {}; - clean-buffers = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clean-buffers"; - ename = "clean-buffers"; - version = "20160529.1559"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "clean-buffers"; - rev = "1be6c54e3095761b6b64bf749faae3dfce94e72a"; - sha256 = "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fcabd17d7de9af443198ac9c2996bfbd94324de/recipes/clean-buffers"; - sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/clean-buffers"; - license = lib.licenses.free; - }; - }) {}; - clear-text = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clear-text"; - ename = "clear-text"; - version = "20160406.1343"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "clear-text.el"; - rev = "b50669b6077d6948f72cb3c649281d206e0c2f2b"; - sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2ae86a3001587ba753fcd0ca5137cb65d38910d/recipes/clear-text"; - sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clear-text"; - license = lib.licenses.free; - }; - }) {}; - clevercss = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clevercss"; - ename = "clevercss"; - version = "20131228.1755"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "CleverCSS-Mode"; - rev = "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc"; - sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec88232feb9d0a04278d5f615bb0ee0833ecb8ca/recipes/clevercss"; - sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clevercss"; - license = lib.licenses.free; - }; - }) {}; - click-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "click-mode"; - ename = "click-mode"; - version = "20180610.1744"; - src = fetchFromGitHub { - owner = "bmalehorn"; - repo = "click-mode"; - rev = "b94ea8cce89cf0e753b2ab915202d49ffc470fb6"; - sha256 = "0bz0wp40khha96k74g9vgnzm7xzsrh0wh4vks205pjhaxabhb5vh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1859bb26e3efd66394d7d9f4d2296cbeeaf5ba4d/recipes/click-mode"; - sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/click-mode"; - license = lib.licenses.free; - }; - }) {}; - cliphist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "cliphist"; - ename = "cliphist"; - version = "20181229.611"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "cliphist"; - rev = "232ab0b3f6d502de61ebe76681a6a04d4223b877"; - sha256 = "0is772r0b7i8rvra9zb94g9aczv8b6q0dmdk67wbli5rv5drfjyq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82d86dae4ad8efc8ef342883c164c56e43079171/recipes/cliphist"; - sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/cliphist"; - license = lib.licenses.free; - }; - }) {}; - clipmon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clipmon"; - ename = "clipmon"; - version = "20180129.254"; - src = fetchFromGitHub { - owner = "bburns"; - repo = "clipmon"; - rev = "95dc56c7ed84a654ec90f4740eb6df1050de8cf1"; - sha256 = "0mfb4k0i71y49hn0xk5a1mv4zaj249qcan0y0nzvgf7mmvr32n9w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/clipmon"; - sha256 = "0qhav3scmk3zsa7v3hg3zczps0as3mzrz3cl34n3xlvf4f6ifd9k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clipmon"; - license = lib.licenses.free; - }; - }) {}; - clippy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "clippy"; - ename = "clippy"; - version = "20161028.1254"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "clippy.el"; - rev = "ad4b5dba4cede6d4b21533186303d3d3e9a2510f"; - sha256 = "0rnqwzbr5hdap276ana0iz3lk2ih8kkj1m9cydavqqdrwzk4ldrm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3743596c4b6387351684b1bf00f17275b8e59e8/recipes/clippy"; - sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg"; - name = "recipe"; - }; - packageRequires = [ pos-tip ]; - meta = { - homepage = "https://melpa.org/#/clippy"; - license = lib.licenses.free; - }; - }) {}; - clips-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clips-mode"; - ename = "clips-mode"; - version = "20170909.123"; - src = fetchFromGitHub { - owner = "clips-mode"; - repo = "clips-mode"; - rev = "dd38e2822640a38f7d8bfec4f69d8dd24be27074"; - sha256 = "1q2jz72wi8d2pdrjic9kwqixp5sczjkkx8rf67rgaz37ysjpcbf6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/clips-mode"; - sha256 = "1ckk8ajr1x8y2h8jx2q233xs69nip3kjn0wp3xgfbwx7hjcbk7kr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clips-mode"; - license = lib.licenses.free; - }; - }) {}; - clj-refactor = callPackage ({ cider - , clojure-mode - , edn - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , inflections - , lib - , melpaBuild - , multiple-cursors - , paredit - , seq - , yasnippet }: - melpaBuild { - pname = "clj-refactor"; - ename = "clj-refactor"; - version = "20190516.554"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clj-refactor.el"; - rev = "9f508bbf7bf8dd439a78066a9d6fa47f4bc8f64f"; - sha256 = "0kb5zcq8hy7s6ikln0fgfya4shhfvnbx1vigz7g733ppm27bxxsb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/clj-refactor"; - sha256 = "05x0820x34pidcz03z96qs685y2700g7ha0dx4vy1xr7fg356c3z"; - name = "recipe"; - }; - packageRequires = [ - cider - clojure-mode - edn - emacs - hydra - inflections - multiple-cursors - paredit - seq - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/clj-refactor"; - license = lib.licenses.free; - }; - }) {}; - cljr-helm = callPackage ({ cl-lib ? null - , clj-refactor - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "cljr-helm"; - ename = "cljr-helm"; - version = "20160913.128"; - src = fetchFromGitHub { - owner = "philjackson"; - repo = "cljr-helm"; - rev = "f2fc7b698a56e4a44d5dfbc6a55d77a93c0fa9a4"; - sha256 = "0jy6hkz8sr1bplymwxnjg4q408cw2dgfrv70chlw3y5ddc4cingj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d99b67e295ef59916211bf22b57b4d093e3d53ab/recipes/cljr-helm"; - sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; - name = "recipe"; - }; - packageRequires = [ cl-lib clj-refactor helm-core ]; - meta = { - homepage = "https://melpa.org/#/cljr-helm"; - license = lib.licenses.free; - }; - }) {}; - cljsbuild-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cljsbuild-mode"; - ename = "cljsbuild-mode"; - version = "20160402.1000"; - src = fetchFromGitHub { - owner = "kototama"; - repo = "cljsbuild-mode"; - rev = "fa2315660cb3ce944b5e16c679dcf5afd6a97f4c"; - sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/cljsbuild-mode"; - sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cljsbuild-mode"; - license = lib.licenses.free; - }; - }) {}; - clmemo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clmemo"; - ename = "clmemo"; - version = "20160326.923"; - src = fetchFromGitHub { - owner = "ataka"; - repo = "clmemo"; - rev = "846a81b984d71edf8278a4d9f9b886e44d5b8365"; - sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e98b438990dc0dbda264fb4bf7a3237a2661baab/recipes/clmemo"; - sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clmemo"; - license = lib.licenses.free; - }; - }) {}; - cloc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cloc"; - ename = "cloc"; - version = "20170728.1124"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "cloc-emacs"; - rev = "f30f0472e465cc8d433d2473e9d3b8dfe2c94491"; - sha256 = "0g8hklc0914dsi3ks7g251w58ixa78qsh87dx914cc8sahpc0ws2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd7a641efd13aa0bd7509d8a5b0a28e3a0493c8/recipes/cloc"; - sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cloc"; - license = lib.licenses.free; - }; - }) {}; - clocker = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , spaceline }: - melpaBuild { - pname = "clocker"; - ename = "clocker"; - version = "20190214.1033"; - src = fetchFromGitHub { - owner = "roman"; - repo = "clocker.el"; - rev = "c4d76968a49287ce3bac0832bb5d5d076054c96f"; - sha256 = "1wp74fmnk21n5lrpmyk9j25dc79jffbmmhbgg5avzv63az6ffkdk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dadd3f5abad2e1f7863c4d654ff065f641395f64/recipes/clocker"; - sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; - name = "recipe"; - }; - packageRequires = [ dash projectile spaceline ]; - meta = { - homepage = "https://melpa.org/#/clocker"; - license = lib.licenses.free; - }; - }) {}; - clojars = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred }: - melpaBuild { - pname = "clojars"; - ename = "clojars"; - version = "20180825.1251"; - src = fetchFromGitHub { - owner = "joshuamiller"; - repo = "clojars.el"; - rev = "c78e4d5ddacda064c253e2b38d1c35188aa1ad71"; - sha256 = "1xa0c3i8mq3n8mh37i5avgfkcnjyqkg6h668d9lf3w0bnz5cw0x7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f766319c3e18a41017684ea503b0382e96ab31b/recipes/clojars"; - sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1"; - name = "recipe"; - }; - packageRequires = [ request-deferred ]; - meta = { - homepage = "https://melpa.org/#/clojars"; - license = lib.licenses.free; - }; - }) {}; - clojure-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-mode"; - ename = "clojure-mode"; - version = "20190508.822"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clojure-mode"; - rev = "a9cbe6a37f51da1c37035390d43500b437e8bff2"; - sha256 = "1lam3927gmzzl78ikc4z1c5yc92w59fi3191qa4vg9y8qqslqxd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode"; - sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/clojure-mode"; - license = lib.licenses.free; - }; - }) {}; - clojure-mode-extra-font-locking = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-mode-extra-font-locking"; - ename = "clojure-mode-extra-font-locking"; - version = "20180114.911"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clojure-mode"; - rev = "9bbc8d59b3b4dfe3f0564f0d06832a309b4e4e4e"; - sha256 = "0brwcxlz337bd1y1vjlix2aq6qjzqqrl0g9hag5lmpkimnbbnbv1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking"; - sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; - name = "recipe"; - }; - packageRequires = [ clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/clojure-mode-extra-font-locking"; - license = lib.licenses.free; - }; - }) {}; - clojure-quick-repls = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-quick-repls"; - ename = "clojure-quick-repls"; - version = "20150814.36"; - src = fetchFromGitHub { - owner = "symfrog"; - repo = "clojure-quick-repls"; - rev = "8fe4e44939e8a01a4cdf60c0001d9a6abf8a73c3"; - sha256 = "1wqml4psqqkzp8afccli4y2agbm8sz1fykycl3553cb2cidxgjga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e618430057eb3ac235ab4a44767524919c870036/recipes/clojure-quick-repls"; - sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; - name = "recipe"; - }; - packageRequires = [ cider dash ]; - meta = { - homepage = "https://melpa.org/#/clojure-quick-repls"; - license = lib.licenses.free; - }; - }) {}; - clojure-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "clojure-snippets"; - ename = "clojure-snippets"; - version = "20180314.608"; - src = fetchFromGitHub { - owner = "mpenet"; - repo = "clojure-snippets"; - rev = "6068dca90467a0f4ebc2cd39338a173d6f5ddc04"; - sha256 = "0vvadcydpsz4b17dlm1jd4fbddzfqibh3mlzv3k4gvp67vv10cqy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4898fc6746b30b0d0453b3b56d02479bfb0f70b9/recipes/clojure-snippets"; - sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/clojure-snippets"; - license = lib.licenses.free; - }; - }) {}; - clomacs = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , simple-httpd }: - melpaBuild { - pname = "clomacs"; - ename = "clomacs"; - version = "20190313.817"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clomacs"; - rev = "461be59e5f480af292c84fd6f7d88f1f885371a5"; - sha256 = "1kglhcid32vxs8nc7j2jjbd0cbwxx2rc0y2wlhmcxpd3gsk2lwp3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/345f9797e87e3f5f957c167a5e3d33d1e31b50a3/recipes/clomacs"; - sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; - name = "recipe"; - }; - packageRequires = [ cider emacs s simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/clomacs"; - license = lib.licenses.free; - }; - }) {}; - closql = callPackage ({ emacs - , emacsql-sqlite - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "closql"; - ename = "closql"; - version = "20181031.1458"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "closql"; - rev = "012b94f8695e194455111fd54eff0b94dd0dd0db"; - sha256 = "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/closql"; - sha256 = "13ybna20w2d1b3n0y5p1ybhkw0j0zh5nd43p1yvf8h1haj983l87"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql-sqlite ]; - meta = { - homepage = "https://melpa.org/#/closql"; - license = lib.licenses.free; - }; - }) {}; - closure-lint-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "closure-lint-mode"; - ename = "closure-lint-mode"; - version = "20101118.1324"; - src = fetchFromGitHub { - owner = "r0man"; - repo = "closure-lint-mode"; - rev = "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5"; - sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/closure-lint-mode"; - sha256 = "11kxgvfwngdjryrrihlpn0509axwv4zwkxzs4h1pw5vi7sv1n6xd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/closure-lint-mode"; - license = lib.licenses.free; - }; - }) {}; - cloud-to-butt-erc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cloud-to-butt-erc"; - ename = "cloud-to-butt-erc"; - version = "20130627.1608"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "cloud-to-butt-erc"; - rev = "6710c03d1bc91736435cbfe845924940cae34e5c"; - sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b12354152cce6e9a281dc26018c763b6f93e3cee/recipes/cloud-to-butt-erc"; - sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cloud-to-butt-erc"; - license = lib.licenses.free; - }; - }) {}; - clues-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clues-theme"; - ename = "clues-theme"; - version = "20161213.327"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-clues-theme"; - rev = "abd61f2b7f3e98de58ca26e6d1230e70c6406cc7"; - sha256 = "118k5bnlk9sc2n04saaxjncmc1a4m1wlf2y7xyklpffkazbd0m72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/clues-theme"; - sha256 = "0b0gypmxx8qjd8hgxf4kbvci1nwacsxl7rm5s1bcnk9cwc6k2jpr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/clues-theme"; - license = lib.licenses.free; - }; - }) {}; - cm-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cm-mode"; - ename = "cm-mode"; - version = "20170203.1307"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "criticmarkup-emacs"; - rev = "276d49c859822265070ae5dfbb403fd7d8d06436"; - sha256 = "0mqbjw9wiaq735v307hd7g0g6i3a4k7h71bi4g9rr2jbgiljmql4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42dda804ec0c7338c39c57eec6ba479609a38555/recipes/cm-mode"; - sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cm-mode"; - license = lib.licenses.free; - }; - }) {}; - cmake-font-lock = callPackage ({ cmake-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmake-font-lock"; - ename = "cmake-font-lock"; - version = "20190324.2150"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "cmake-font-lock"; - rev = "5b71ab212f272b7c62a9e7b21aa43a2533330b39"; - sha256 = "0ykk5sgxnh77qb61k39fy9vpbgv2hgv5gkh9df1jfyj5lhxxxdcq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/383a7f191c10916ad40284fba94f967765ffeb7e/recipes/cmake-font-lock"; - sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0"; - name = "recipe"; - }; - packageRequires = [ cmake-mode ]; - meta = { - homepage = "https://melpa.org/#/cmake-font-lock"; - license = lib.licenses.free; - }; - }) {}; - cmake-ide = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , levenshtein - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "cmake-ide"; - ename = "cmake-ide"; - version = "20190527.207"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "cmake-ide"; - rev = "6fc593e47d28bfe531d1029f61e4efeb2eefe982"; - sha256 = "1yj3ah7mgarbl0zjqzvqnp9wl3aqsiarid6cwlc4fmcnpg6l6n9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide"; - sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs levenshtein s seq ]; - meta = { - homepage = "https://melpa.org/#/cmake-ide"; - license = lib.licenses.free; - }; - }) {}; - cmake-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmake-mode"; - ename = "cmake-mode"; - version = "20180709.726"; - src = fetchFromGitHub { - owner = "Kitware"; - repo = "CMake"; - rev = "8d478c0003cc9bb4836038fc1a27d3bbd40348d2"; - sha256 = "0i4rs8m7qf9milc9csy38r7m0j5xqy2q75fqmyxd4xpfmkf4a2v7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; - sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cmake-mode"; - license = lib.licenses.free; - }; - }) {}; - cmake-project = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmake-project"; - ename = "cmake-project"; - version = "20171121.315"; - src = fetchFromGitHub { - owner = "alamaison"; - repo = "emacs-cmake-project"; - rev = "d3f408f226eff3f77f7e00dd519f4efc78fd292d"; - sha256 = "1r8a3arpkkn91k619z4b6ywnq15glc4n1ji33l0q2m59f5sfk8mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0857c4db1027981ea73bc32bcaa15e5df53edea3/recipes/cmake-project"; - sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cmake-project"; - license = lib.licenses.free; - }; - }) {}; - cmd-to-echo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shell-split-string }: - melpaBuild { - pname = "cmd-to-echo"; - ename = "cmd-to-echo"; - version = "20161203.1333"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "cmd-to-echo"; - rev = "e0e874fc0e1ad6d291e39ed76023445297ad438a"; - sha256 = "0wi097yk9p1xcfmps1g58xvvlv60akwky4y0pxdz6pa31w9jd1q8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cmd-to-echo"; - sha256 = "1b4mw1ips4695ixgw2hyinq9ry3bx4d1842kr7k6155a1v34s4zh"; - name = "recipe"; - }; - packageRequires = [ emacs s shell-split-string ]; - meta = { - homepage = "https://melpa.org/#/cmd-to-echo"; - license = lib.licenses.free; - }; - }) {}; - cmm-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmm-mode"; - ename = "cmm-mode"; - version = "20150224.2346"; - src = fetchFromGitHub { - owner = "bgamari"; - repo = "cmm-mode"; - rev = "c3ad514dff3eb30434f6b20d953276d4c00de1ee"; - sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07579854200302cf69e120648f4983961e628f7d/recipes/cmm-mode"; - sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cmm-mode"; - license = lib.licenses.free; - }; - }) {}; - cnfonts = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cnfonts"; - ename = "cnfonts"; - version = "20190314.432"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "cnfonts"; - rev = "c31d13cc3c320fd5bf24bf8309c6d982a25c49ee"; - sha256 = "0c50xacgcbk3kbkxbg713bmaidpmkhnsb89pn9v8p8rk5nz06b89"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d5787ffeeee68ffa41f3e777071815084e0ed7a/recipes/cnfonts"; - sha256 = "1pryn08fkdrdj7w302205nj1qhfbk1jzqxx6717crrxakkdqmn9w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cnfonts"; - license = lib.licenses.free; - }; - }) {}; - cobalt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cobalt"; - ename = "cobalt"; - version = "20180304.355"; - src = fetchFromGitHub { - owner = "cobalt-org"; - repo = "cobalt.el"; - rev = "634ace275697e188746ca22a30ff94380ec756be"; - sha256 = "1mrydmzldgabkkdpmlwfrfb6iddj4by7scc14k9bak5y6hj6ix7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2435d98e7564d333c8224b67ac6ad9c95debda1/recipes/cobalt"; - sha256 = "0r3fx1xx24x4qapbj2p8krc67rjmrjm88y89baf1x2swk7xdza92"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cobalt"; - license = lib.licenses.free; - }; - }) {}; - cobra-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cobra-mode"; - ename = "cobra-mode"; - version = "20140116.1316"; - src = fetchFromGitHub { - owner = "Nekroze"; - repo = "cobra-mode"; - rev = "acd6e53f6286af5176471d01f25257e5ddb6dd01"; - sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e986942c391f50fb633097f2f31969a8aeecb99e/recipes/cobra-mode"; - sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cobra-mode"; - license = lib.licenses.free; - }; - }) {}; - code-archive = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "code-archive"; - ename = "code-archive"; - version = "20190512.1437"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "code-archive"; - rev = "b4e7cda87b9cd6548071f784c4883d6019bc3d14"; - sha256 = "1h0g0ikpz5q1xsj547b83df268znn3ilibj1p42cxpdkfkylnr9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a8d0832eff966874d90e1d5ac1043c03e96b1c25/recipes/code-archive"; - sha256 = "0rj7cvwzhgam25jxjw5aqx9cxa86008gx2mwcyjlbnjrkhcbi97a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/code-archive"; - license = lib.licenses.free; - }; - }) {}; - code-library = callPackage ({ fetchFromGitHub - , fetchurl - , gist - , lib - , melpaBuild }: - melpaBuild { - pname = "code-library"; - ename = "code-library"; - version = "20160426.518"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "code-library"; - rev = "3c79338eae5c892bfb4e4882298422d9fd65d2d7"; - sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/197bdc508c4fd9712125553a108ca6c9fedcaefc/recipes/code-library"; - sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj"; - name = "recipe"; - }; - packageRequires = [ gist ]; - meta = { - homepage = "https://melpa.org/#/code-library"; - license = lib.licenses.free; - }; - }) {}; - code-stats = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "code-stats"; - ename = "code-stats"; - version = "20190406.1936"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "code-stats-emacs"; - rev = "15242297279cb0dee01fbb93ef7536e337e20bb7"; - sha256 = "1f2fmxpijggk804pa2m86z2n9kp11n4w5k83a7l2qw6c855ax8lx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20af5580926e9975605c0a245f6ac15c25f4921e/recipes/code-stats"; - sha256 = "0mwjlhpmrbh3mbw3hjlsbv1fr4mxh068c9g0zcxq7wkksxx707if"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/code-stats"; - license = lib.licenses.free; - }; - }) {}; - codebug = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "codebug"; - ename = "codebug"; - version = "20140929.1437"; - src = fetchFromGitHub { - owner = "shano"; - repo = "emacs-codebug"; - rev = "d95e5182fa1465406964873d9db1fdac77206f5b"; - sha256 = "1a3ifz9bv4ai9hiyvx0x3f9ygnrv6aqgpa6hxidhxdgg4ph5i4di"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35cd654bd7b390518eb5ddca8842bdfcc9e9e6f1/recipes/codebug"; - sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/codebug"; - license = lib.licenses.free; - }; - }) {}; - codesearch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild }: - melpaBuild { - pname = "codesearch"; - ename = "codesearch"; - version = "20181006.731"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-codesearch"; - rev = "f6eb96f034a925444412cfa03e45e0ccbbafe3f2"; - sha256 = "1xdkm1f04z1h3ivd6zm8hckf3n3fbi5rwybg4dwi5mim6w84i7j9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0da1c6971ac2d3e9ee67731d00a9e8ca2d169826/recipes/codesearch"; - sha256 = "1zm7fqwiknk07c8aks1silnkxifkfbdzvbzg77wrap48k8mnw03l"; - name = "recipe"; - }; - packageRequires = [ log4e ]; - meta = { - homepage = "https://melpa.org/#/codesearch"; - license = lib.licenses.free; - }; - }) {}; - codic = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "codic"; - ename = "codic"; - version = "20150926.427"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-codic"; - rev = "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557"; - sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/codic"; - sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/codic"; - license = lib.licenses.free; - }; - }) {}; - coffee-fof = callPackage ({ coffee-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "coffee-fof"; - ename = "coffee-fof"; - version = "20131012.530"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "coffee-fof"; - rev = "211529594bc074721c6cbc4edb73a63cc05f89ac"; - sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9024e5a71c992509a1dea5f673a31b806d5e175e/recipes/coffee-fof"; - sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc"; - name = "recipe"; - }; - packageRequires = [ coffee-mode ]; - meta = { - homepage = "https://melpa.org/#/coffee-fof"; - license = lib.licenses.free; - }; - }) {}; - coffee-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "coffee-mode"; - ename = "coffee-mode"; - version = "20170324.240"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "coffee-mode"; - rev = "a4d07f123e42e8c8e356e825e922bc83929fc3cb"; - sha256 = "0w3b3mwv5rlp305j7321izki9lrbnc8ks0v7r9m1ih26b8zci1gv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/coffee-mode"; - sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/coffee-mode"; - license = lib.licenses.free; - }; - }) {}; - coin-ticker = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "coin-ticker"; - ename = "coin-ticker"; - version = "20170611.27"; - src = fetchFromGitHub { - owner = "eklitzke"; - repo = "coin-ticker-mode"; - rev = "45108e239e1d129c0cc1ff37f2870cf73087780b"; - sha256 = "1xqp9p19az4ajbaj734vn0fn6z3hbq44m4clj5xvd0rddai9c57n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd783998658b69159e39d9440da7a0dd04135e49/recipes/coin-ticker"; - sha256 = "0v4zyswhghknlsal9xfsgwf8ckjwrjkjrg8w7p6yjqrxmfsbw93b"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/coin-ticker"; - license = lib.licenses.free; - }; - }) {}; - colemak-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "colemak-evil"; - ename = "colemak-evil"; - version = "20171015.1607"; - src = fetchFromGitHub { - owner = "patbl"; - repo = "colemak-evil"; - rev = "192c779281ae1fbf2405dcdb55b3c5b2a1d0b3d1"; - sha256 = "1clnvr7n6mx5b8pq1c6zchq7n1g8ip8hwgzc61ywrmiyv0v8rnc6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f0750a3f9537782ee61d6e56c51ce7b86def12e/recipes/colemak-evil"; - sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/colemak-evil"; - license = lib.licenses.free; - }; - }) {}; - colonoscopy-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "colonoscopy-theme"; - ename = "colonoscopy-theme"; - version = "20170808.609"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-colonoscopy-theme"; - rev = "64bbb322b13dae91ce9f1e3581f836f94f800ead"; - sha256 = "1r0is6zjkzikm565fvmj0gx8ms5ig9l5xihnka4fig7jy6ak33z5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/colonoscopy-theme"; - sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/colonoscopy-theme"; - license = lib.licenses.free; - }; - }) {}; - color-identifiers-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-identifiers-mode"; - ename = "color-identifiers-mode"; - version = "20181120.1151"; - src = fetchFromGitHub { - owner = "ankurdave"; - repo = "color-identifiers-mode"; - rev = "4ba39f0274e1f85e50c956c507f942d950891a20"; - sha256 = "102vyyal2zv8smbc7a362ibk5kl5nylplfjjx9w8r5pyapygq7mq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c735755e414fdf169aca5ec6f742533d21472e0/recipes/color-identifiers-mode"; - sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/color-identifiers-mode"; - license = lib.licenses.free; - }; - }) {}; - color-moccur = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-moccur"; - ename = "color-moccur"; - version = "20141222.1635"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "color-moccur.el"; - rev = "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7"; - sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19105272fd8def5c7b22bfe5eeed5212e6ccae9c/recipes/color-moccur"; - sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-moccur"; - license = lib.licenses.free; - }; - }) {}; - color-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme"; - ename = "color-theme"; - version = "20190220.315"; - src = fetchFromGitHub { - owner = "emacsattic"; - repo = "color-theme"; - rev = "3a2f6b615f5e2401e30d93a3e0adc210bbb4b7aa"; - sha256 = "09imx996afh3j207163kg8sc92hd7wljkpban1pnn6f67bgyrvlv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90fc6a19838f8e5ffe3b96747784d2f5628f7434/recipes/color-theme"; - sha256 = "0sgjyiqi65ylvd926ywfjzh752bpch3szvx4z3la1r9gpkrnwspd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-theme"; - license = lib.licenses.free; - }; - }) {}; - color-theme-approximate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-approximate"; - ename = "color-theme-approximate"; - version = "20140227.2036"; - src = fetchFromGitHub { - owner = "tungd"; - repo = "color-theme-approximate"; - rev = "f54301ca39bc5d2ffb000f233f8114184a3e7d71"; - sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/color-theme-approximate"; - sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-theme-approximate"; - license = lib.licenses.free; - }; - }) {}; - color-theme-buffer-local = callPackage ({ color-theme - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-buffer-local"; - ename = "color-theme-buffer-local"; - version = "20170125.2201"; - src = fetchFromGitHub { - owner = "vic"; - repo = "color-theme-buffer-local"; - rev = "faf7415c99e132094f1f09c6b6974ec118a18d87"; - sha256 = "1zk5clvkrq2grmm1bws2l5vbv1ycp41978bb902c563aws2rb8c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e43060d80b3345ef4e8df9f5a9d66af8a44a9c41/recipes/color-theme-buffer-local"; - sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0"; - name = "recipe"; - }; - packageRequires = [ color-theme ]; - meta = { - homepage = "https://melpa.org/#/color-theme-buffer-local"; - license = lib.licenses.free; - }; - }) {}; - color-theme-modern = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-modern"; - ename = "color-theme-modern"; - version = "20161219.344"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "replace-colorthemes"; - rev = "42a79266f1d7b473e9328e67a455e505e6c3eff5"; - sha256 = "0mw5rnzzc4yfcflg59viy81ziws680r44xr05qg032b5x02l8ar9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2db82e101916d8709b711034da5ca6e4072e1077/recipes/color-theme-modern"; - sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/color-theme-modern"; - license = lib.licenses.free; - }; - }) {}; - color-theme-sanityinc-solarized = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-sanityinc-solarized"; - ename = "color-theme-sanityinc-solarized"; - version = "20190205.1659"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "color-theme-sanityinc-solarized"; - rev = "2c36f3ab322fe8a1e63a872c8b1d1a172cf9a8ce"; - sha256 = "09zdxcjxx4dsg672n2sf3qv233wy9rajgafbp7lr2f2q165sl8hl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-solarized"; - sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/color-theme-sanityinc-solarized"; - license = lib.licenses.free; - }; - }) {}; - color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-sanityinc-tomorrow"; - ename = "color-theme-sanityinc-tomorrow"; - version = "20190502.144"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "color-theme-sanityinc-tomorrow"; - rev = "ecef4c09c5dfa9ebcc62867d3ccc023240bc2e1b"; - sha256 = "1i7jcrk42wn2a7nsvyhzh3bh4fc12cykiwxj8vi39zii4v7rirqw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow"; - sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-theme-sanityinc-tomorrow"; - license = lib.licenses.free; - }; - }) {}; - color-theme-x = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-x"; - ename = "color-theme-x"; - version = "20180226.1646"; - src = fetchFromGitHub { - owner = "ajsquared"; - repo = "color-theme-x"; - rev = "6c2264aa6c5d9a72caeae67ebaa4472090e70350"; - sha256 = "1fyz8bampcqzpbyg0l1g0nvv2m5n8000xy5yl05217dlxb448nnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/321900baf4149f8b58b075b9fb27716cf708f2a2/recipes/color-theme-x"; - sha256 = "0nb2hqmmj1rhqjcbv5m8r9g2bf993lp45ka9rrxqp0pkmyd9fvs2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/color-theme-x"; - license = lib.licenses.free; - }; - }) {}; - colormaps = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "colormaps"; - ename = "colormaps"; - version = "20171008.1524"; - src = fetchFromGitHub { - owner = "lepisma"; - repo = "colormaps.el"; - rev = "3a88961ba66b09a49ea5aa92b2b8776b2c92d68c"; - sha256 = "083hks2zzalizdsgabiwc1kd114r748v5i3w3kfk8pv37i2gay35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4c795d9e323b08bc8354a6933a061644705a2ec/recipes/colormaps"; - sha256 = "16plhgpfz1wb58p6h8wxjhplhgv0mbj3f2xj34p6vydh44l8w8q2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/colormaps"; - license = lib.licenses.free; - }; - }) {}; - column-enforce-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "column-enforce-mode"; - ename = "column-enforce-mode"; - version = "20171030.1200"; - src = fetchFromGitHub { - owner = "jordonbiondo"; - repo = "column-enforce-mode"; - rev = "2341a2b6a33d4b8b74c35062ec9cfe1bffd61944"; - sha256 = "0rcxb7daxxrp5f1i5cbv25viwawbbsn4ij1mnlclp5wz7ilcy2rs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91bebef8e97665a5d076c557d559367911a25ea2/recipes/column-enforce-mode"; - sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/column-enforce-mode"; - license = lib.licenses.free; - }; - }) {}; - com-css-sort = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "com-css-sort"; - ename = "com-css-sort"; - version = "20190517.52"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "com-css-sort"; - rev = "d002012500fbe4ccdde525d64b8f69015aded9ee"; - sha256 = "108500i75c56111q1pbk8fwylr31xpz4w1bn0xc3hm2xwr843kbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/com-css-sort"; - sha256 = "153yhyqrlmarz8rpcvb0rr7f388fhyb2val4qx2pzpsimklrwrcb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s ]; - meta = { - homepage = "https://melpa.org/#/com-css-sort"; - license = lib.licenses.free; - }; - }) {}; - comb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comb"; - ename = "comb"; - version = "20180831.21"; - src = fetchFromGitHub { - owner = "cyrus-and"; - repo = "comb"; - rev = "8a68d313bf429763eb8aa78ece00230a668f2a1f"; - sha256 = "1hh1lkan1ch5xyzrpfgzibf8dxmvaa1jfwlxyyhpnfs5h69h3245"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b236a1f3953475cbd7eb5c4289b092818ae08cf/recipes/comb"; - sha256 = "0n4pkigr07hwj5nb0ngs6ay80psqv7nppp82rg5w38qf0mjs3pkp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/comb"; - license = lib.licenses.free; - }; - }) {}; - comint-intercept = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comint-intercept"; - ename = "comint-intercept"; - version = "20170317.528"; - src = fetchFromGitHub { - owner = "hying-caritas"; - repo = "comint-intercept"; - rev = "84c41e60e1ea3e9d5da1eb99e9926a52b6658d6d"; - sha256 = "0jyi698abpjdaxb9l9ndq599w77svp7vgd3b708kn461gmqmkxv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d38188ec2d6e16714de9bb24ebd1ea89c7df3da/recipes/comint-intercept"; - sha256 = "1m2fn02n7aphlqmiaxgwp8jqg60sq4001cnkdxn5wb3w1hxy5qvq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/comint-intercept"; - license = lib.licenses.free; - }; - }) {}; - command-log-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "command-log-mode"; - ename = "command-log-mode"; - version = "20160412.2147"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "command-log-mode"; - rev = "af600e6b4129c8115f464af576505ea8e789db27"; - sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8426ca3c543178018f7feae6f0076af67a898483/recipes/command-log-mode"; - sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/command-log-mode"; - license = lib.licenses.free; - }; - }) {}; - command-queue = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "command-queue"; - ename = "command-queue"; - version = "20160328.1025"; - src = fetchFromGitHub { - owner = "Yuki-Inoue"; - repo = "command-queue"; - rev = "f327c6f852592229a755ec6de0c62c6aeafd6659"; - sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8fd6a70036e88039c850d280fbac782d04790a5f/recipes/command-queue"; - sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/command-queue"; - license = lib.licenses.free; - }; - }) {}; - commander = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "commander"; - ename = "commander"; - version = "20140120.1052"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "commander.el"; - rev = "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9"; - sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b308e05dd85856addbc04a9438f5026803cebd7/recipes/commander"; - sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f s ]; - meta = { - homepage = "https://melpa.org/#/commander"; - license = lib.licenses.free; - }; - }) {}; - comment-dwim-2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comment-dwim-2"; - ename = "comment-dwim-2"; - version = "20190105.853"; - src = fetchFromGitHub { - owner = "remyferre"; - repo = "comment-dwim-2"; - rev = "3dfdd58495c46a37708344a57c5c52beca6b2c1c"; - sha256 = "08pi3y12i6wx69aj09nk5qd6lplwxq5wz3m7w5701988q39x62xl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2"; - sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/comment-dwim-2"; - license = lib.licenses.free; - }; - }) {}; - comment-or-uncomment-sexp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comment-or-uncomment-sexp"; - ename = "comment-or-uncomment-sexp"; - version = "20190225.322"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "comment-or-uncomment-sexp"; - rev = "bec730d3fc1e6c17ff1339eb134af16c034a4d95"; - sha256 = "1jhyr854qraza75hjza8fjz2s06iydmdsa61vf5bf2kj5g1bfqkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1e87e59e1a7c7c7d6eab7dd6b37114e567e5c13/recipes/comment-or-uncomment-sexp"; - sha256 = "150gg1i593wgfzy0bg8jwgfc7a6hjnz84m2digjf3fpggvwv0rf8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/comment-or-uncomment-sexp"; - license = lib.licenses.free; - }; - }) {}; - comment-tags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comment-tags"; - ename = "comment-tags"; - version = "20170910.1035"; - src = fetchFromGitHub { - owner = "vincekd"; - repo = "comment-tags"; - rev = "7ae64a8d7aca098f360e03e9a3e780e27715c6e3"; - sha256 = "16bdc1kv2a15mn8ms170ahb4apz5csbwnxy227pg46kwfmxxqs2m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ac71f4ffc19bce4f571001f9270d5be855dfc3c/recipes/comment-tags"; - sha256 = "13slv150zch0b7zpxa2dbqjzpqh0iy559m6rc0zs0dwdagzryp3i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/comment-tags"; - license = lib.licenses.free; - }; - }) {}; - commentary-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "commentary-theme"; - ename = "commentary-theme"; - version = "20181213.245"; - src = fetchFromGitHub { - owner = "pzel"; - repo = "commentary-theme"; - rev = "9a825ae98166c9dbbf106e7be62ee69dd9f0342f"; - sha256 = "1x30iyvvxggbh7xvp8lwpirvpqijchqf2fdaw4xrlbw5vajlaxcx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/852b5f83c9870209080d2ed39fede3215ae43e64/recipes/commentary-theme"; - sha256 = "1s3g40f0r0v8m1qqldvw64vs43i5xza7rwkvhxqcqmj6p1a7mqqw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/commentary-theme"; - license = lib.licenses.free; - }; - }) {}; - commenter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "commenter"; - ename = "commenter"; - version = "20160219.827"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "commenter"; - rev = "6d1885419434ba779270c6fda0e30d390bb074bd"; - sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/437afab17b22c0c559617afa06923b5bc73a3ae8/recipes/commenter"; - sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/commenter"; - license = lib.licenses.free; - }; - }) {}; - commify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "commify"; - ename = "commify"; - version = "20161106.1534"; - src = fetchFromGitHub { - owner = "ddoherty03"; - repo = "commify"; - rev = "78732c2fa6c1a10288b7436d7c561ec9ebdd41be"; - sha256 = "1kb3cbjp69niq8ravh273dma0mnkf1v2ja372ahxfsq1janrkkm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fec4b048e1dc78a07acce7d2e6527b9f417d06d5/recipes/commify"; - sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/commify"; - license = lib.licenses.free; - }; - }) {}; - common-lisp-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "common-lisp-snippets"; - ename = "common-lisp-snippets"; - version = "20180226.723"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "common-lisp-snippets"; - rev = "1ddf808311ba4d9e8444a1cb50bd5ee75e4111f6"; - sha256 = "0zalsvs47hv33dmbs94srpb8q354sr52sxbad182p69dn1khlwyp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48d0166ccd3dcdd3df4719349778c6c5ab6872ca/recipes/common-lisp-snippets"; - sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/common-lisp-snippets"; - license = lib.licenses.free; - }; - }) {}; - company = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company"; - ename = "company"; - version = "20190430.1152"; - src = fetchFromGitHub { - owner = "company-mode"; - repo = "company-mode"; - rev = "ad6ff0eecca99dc5ac8b6a8a6174df7d2ad88ae7"; - sha256 = "0cps5sl9iij1wrpcnhi7xqv58cqsrswhc8r7hj1c00w8288z978w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company"; - sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/company"; - license = lib.licenses.free; - }; - }) {}; - company-anaconda = callPackage ({ anaconda-mode - , cl-lib ? null - , company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-anaconda"; - ename = "company-anaconda"; - version = "20181025.605"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-anaconda"; - rev = "0ab70de1740e67cee451abcf3685c7525ff9e95a"; - sha256 = "182cijh6l82jj1r7iwd93h3np9c8fvcibjhv7860rk9ik41n7wil"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/company-anaconda"; - sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; - name = "recipe"; - }; - packageRequires = [ anaconda-mode cl-lib company dash s ]; - meta = { - homepage = "https://melpa.org/#/company-anaconda"; - license = lib.licenses.free; - }; - }) {}; - company-ansible = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ansible"; - ename = "company-ansible"; - version = "20190301.1311"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "company-ansible"; - rev = "c31efced8a9b461de5982ed94c234fda3df96f10"; - sha256 = "0d2c3ckmwn36fwhvwfvqg86hfd2jwkg2n301chhxzs03v0mc03mx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible"; - sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-ansible"; - license = lib.licenses.free; - }; - }) {}; - company-arduino = callPackage ({ arduino-mode - , cl-lib ? null - , company - , company-c-headers - , company-irony - , emacs - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "company-arduino"; - ename = "company-arduino"; - version = "20160306.939"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "company-arduino"; - rev = "5958b917cc5cc729dc64d74d947da5ee91c48980"; - sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45350f816c4f5249792d29f97ef91f8c0685b983/recipes/company-arduino"; - sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws"; - name = "recipe"; - }; - packageRequires = [ - arduino-mode - cl-lib - company - company-c-headers - company-irony - emacs - irony - ]; - meta = { - homepage = "https://melpa.org/#/company-arduino"; - license = lib.licenses.free; - }; - }) {}; - company-auctex = callPackage ({ auctex - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "company-auctex"; - ename = "company-auctex"; - version = "20180725.1212"; - src = fetchFromGitHub { - owner = "alexeyr"; - repo = "company-auctex"; - rev = "48c42c58ce2f0e693301b0cb2d085055410c1b25"; - sha256 = "10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/189e1a60894db0787a4468b120fbab84be1b5d59/recipes/company-auctex"; - sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4"; - name = "recipe"; - }; - packageRequires = [ auctex company yasnippet ]; - meta = { - homepage = "https://melpa.org/#/company-auctex"; - license = lib.licenses.free; - }; - }) {}; - company-axiom = callPackage ({ axiom-environment - , company - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-axiom"; - ename = "company-axiom"; - version = "20171024.1310"; - src = fetchgit { - url = "https://bitbucket.org/pdo/axiom-environment"; - rev = "11ae39b2fcb344932b3f4b6a9fb6341880e3b8fa"; - sha256 = "1mygz9cd79w56sk3szh0mkgnng7mgr5jqqfd32yfjc3spvs6yzlh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/company-axiom"; - sha256 = "061n8zn11r5a9m96sqnw8kx252n1m401cmcyqla8n9valjbnvsag"; - name = "recipe"; - }; - packageRequires = [ axiom-environment company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-axiom"; - license = lib.licenses.free; - }; - }) {}; - company-bibtex = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsebib }: - melpaBuild { - pname = "company-bibtex"; - ename = "company-bibtex"; - version = "20171104.2344"; - src = fetchFromGitHub { - owner = "gbgar"; - repo = "company-bibtex"; - rev = "225c6f5c0c070c94c8cdbbd452ea548cd94d76f4"; - sha256 = "0bv2jcmyirdxm158w2766l3q7kh7h71l9milwc9fl8qfz7wb5l80"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-bibtex"; - sha256 = "1b96p5qyxl6jlq0kz0dbma5pwvgqcy4x4gmpknjqrjabafbq1ynn"; - name = "recipe"; - }; - packageRequires = [ cl-lib company parsebib ]; - meta = { - homepage = "https://melpa.org/#/company-bibtex"; - license = lib.licenses.free; - }; - }) {}; - company-box = callPackage ({ company - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-box"; - ename = "company-box"; - version = "20190311.1045"; - src = fetchFromGitHub { - owner = "sebastiencs"; - repo = "company-box"; - rev = "8fc6168f2d3a0275156dd3fdf46ba496adbab226"; - sha256 = "0mmn7lzl69hmy8rlzhwqb2ffgk29mb2ybb149cdpk7ydv1h63hqn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a54879f4dd4dcb6867680567731547d604ad02bb/recipes/company-box"; - sha256 = "0v39gja3jp8b2xfn9da93xsh8mihizwbg0gqp2yyczaxjm8ga23i"; - name = "recipe"; - }; - packageRequires = [ company dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/company-box"; - license = lib.licenses.free; - }; - }) {}; - company-c-headers = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-c-headers"; - ename = "company-c-headers"; - version = "20180814.1030"; - src = fetchFromGitHub { - owner = "randomphrase"; - repo = "company-c-headers"; - rev = "41331192b3961c8e3a51540678e1d11eaa346f03"; - sha256 = "1hl14pv8splirzr9riak8m48ngxy1c6wa2q6ds6aq849zx9dafqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d97b5c53967e0ff767b3654c52622f4b5ddf1985/recipes/company-c-headers"; - sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-c-headers"; - license = lib.licenses.free; - }; - }) {}; - company-cabal = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-cabal"; - ename = "company-cabal"; - version = "20170917.617"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-cabal"; - rev = "62112a7259e24bd6c08885629a185afe512b7d3d"; - sha256 = "1gf45xwjzdm8i4q6c6khk4dbg1mmp2r0awz2sjr4dcr2dbd1n7mg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee888b1ba57b6af3a3330607898810cd248862db/recipes/company-cabal"; - sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-cabal"; - license = lib.licenses.free; - }; - }) {}; - company-coq = callPackage ({ cl-lib ? null - , company - , company-math - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "company-coq"; - ename = "company-coq"; - version = "20190425.1151"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "company-coq"; - rev = "3262fcccc41eac8e1c589f4067dfff939ba72c5f"; - sha256 = "14d4pkg8h1cwi4235wv3ml7l9a2dw6vxz2z8l6i1zhng5pi0vvk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq"; - sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; - name = "recipe"; - }; - packageRequires = [ cl-lib company company-math dash yasnippet ]; - meta = { - homepage = "https://melpa.org/#/company-coq"; - license = lib.licenses.free; - }; - }) {}; - company-dcd = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , flycheck-dmd-dub - , ivy - , lib - , melpaBuild - , popwin - , yasnippet }: - melpaBuild { - pname = "company-dcd"; - ename = "company-dcd"; - version = "20190115.1856"; - src = fetchFromGitHub { - owner = "tsukimizake"; - repo = "company-dcd"; - rev = "11e90949e546fcff1b1cd40887ad7b6701aa1653"; - sha256 = "1n4f2hqmvwysbb1l6c5ah58b1bq8vxznk3ysszz8rs5gpqsizqd4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad5be8c53911271fba03a88da7e9d518c6508ffe/recipes/company-dcd"; - sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - company - flycheck-dmd-dub - ivy - popwin - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/company-dcd"; - license = lib.licenses.free; - }; - }) {}; - company-dict = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parent-mode }: - melpaBuild { - pname = "company-dict"; - ename = "company-dict"; - version = "20190301.1605"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-company-dict"; - rev = "cd7b8394f6014c57897f65d335d6b2bd65dab1f4"; - sha256 = "11whnjmy5dyg4wkwabpip8hqsmqys193m7aqbd7jl4hmq24hrwsw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/212c077def5b4933c6001056132181e1a5850a7c/recipes/company-dict"; - sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; - name = "recipe"; - }; - packageRequires = [ company emacs parent-mode ]; - meta = { - homepage = "https://melpa.org/#/company-dict"; - license = lib.licenses.free; - }; - }) {}; - company-distel = callPackage ({ distel-completion-lib - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-distel"; - ename = "company-distel"; - version = "20180827.644"; - src = fetchFromGitHub { - owner = "sebastiw"; - repo = "distel-completion"; - rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e"; - sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/company-distel"; - sha256 = "1jklxwkm2dvpcasmy9vl48dxq3q9s4dlk159ica39z0kqpkpzmgw"; - name = "recipe"; - }; - packageRequires = [ distel-completion-lib ]; - meta = { - homepage = "https://melpa.org/#/company-distel"; - license = lib.licenses.free; - }; - }) {}; - company-edbi = callPackage ({ cl-lib ? null - , company - , edbi - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-edbi"; - ename = "company-edbi"; - version = "20160221.1123"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-edbi"; - rev = "08dc69ccfbcf10ca83f7075e9b735c6885cd7e11"; - sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d881ff0927d5bd7f8192f58927ceabb9bad4beb/recipes/company-edbi"; - sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; - name = "recipe"; - }; - packageRequires = [ cl-lib company edbi s ]; - meta = { - homepage = "https://melpa.org/#/company-edbi"; - license = lib.licenses.free; - }; - }) {}; - company-emacs-eclim = callPackage ({ cl-lib ? null - , company - , eclim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-emacs-eclim"; - ename = "company-emacs-eclim"; - version = "20180911.421"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "edff7e0e30c87036710d88fb0b7a4644750858e8"; - sha256 = "0ywifqdhv7cibgl42m7i15widna9i1dk5kl5rglyql7hy05nk9gj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/company-emacs-eclim"; - sha256 = "1l56hcy0y3cr38z1pjf0ilsdqdzvj3zwd40markm6si2xhdr8xig"; - name = "recipe"; - }; - packageRequires = [ cl-lib company eclim ]; - meta = { - homepage = "https://melpa.org/#/company-emacs-eclim"; - license = lib.licenses.free; - }; - }) {}; - company-emoji = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-emoji"; - ename = "company-emoji"; - version = "20180925.1308"; - src = fetchFromGitHub { - owner = "dunn"; - repo = "company-emoji"; - rev = "f0d91d5be0077b20b418a3ba37d36f431fae322f"; - sha256 = "0aqqi1ksyglx7w347a99flpfa9pm1jakdvsgk4jr2ahv6j13nawg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji"; - sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; - name = "recipe"; - }; - packageRequires = [ cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-emoji"; - license = lib.licenses.free; - }; - }) {}; - company-erlang = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , ivy-erlang-complete - , lib - , melpaBuild }: - melpaBuild { - pname = "company-erlang"; - ename = "company-erlang"; - version = "20170122.2138"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "company-erlang"; - rev = "bc0524a16f17b66c7397690e4ca0e004f09ea6c5"; - sha256 = "04wm3i65fpzln7sdcny88hfjfm0n7wy44ffsr3697x4l95d0bnyh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca96ed0b5d6f8aea4de56ddeaa003b9c81d96219/recipes/company-erlang"; - sha256 = "0qlc89c05523kjzsb7j3yfi022la47kgixl74ggkafhn60scwdm7"; - name = "recipe"; - }; - packageRequires = [ company emacs ivy-erlang-complete ]; - meta = { - homepage = "https://melpa.org/#/company-erlang"; - license = lib.licenses.free; - }; - }) {}; - company-flow = callPackage ({ company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-flow"; - ename = "company-flow"; - version = "20180225.1359"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "company-flow"; - rev = "76ef585c70d2a3206c2eadf24ba61e59124c3a16"; - sha256 = "0zs9cblnbkxa0dxw4lyllmybqizxcdx96gv8jlhx20nrjpi78piw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63d346c14af1c5c138d14591a4d6dbc44d9bc429/recipes/company-flow"; - sha256 = "07brjfgiwv4dxjf0sca84allcy3qlp4jrkz7ki1qc5wmb5sd209l"; - name = "recipe"; - }; - packageRequires = [ company dash ]; - meta = { - homepage = "https://melpa.org/#/company-flow"; - license = lib.licenses.free; - }; - }) {}; - company-flx = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , flx - , lib - , melpaBuild }: - melpaBuild { - pname = "company-flx"; - ename = "company-flx"; - version = "20180102.2118"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "company-flx"; - rev = "05efcafb488f587bb6e60923078d97227462eb68"; - sha256 = "12cg8amyk1pg1d2n8fb0mmls14jzwx08hq6s6g7wyd9s7y96hkhb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f27d718ee67f8c91b208a35adbbcdac67bbb89ce/recipes/company-flx"; - sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn"; - name = "recipe"; - }; - packageRequires = [ company emacs flx ]; - meta = { - homepage = "https://melpa.org/#/company-flx"; - license = lib.licenses.free; - }; - }) {}; - company-ghc = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , ghc - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ghc"; - ename = "company-ghc"; - version = "20170918.133"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-ghc"; - rev = "dab111cb5067c545ccdc6b2d0ba70c1c4bbce060"; - sha256 = "0ygw3dhlz247qzmcsbnkkdry2w2ni60j1rbyqprnzp8sd5yk97r1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28f6a983444f796c81df7e5ee94d74c480b21298/recipes/company-ghc"; - sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs ghc ]; - meta = { - homepage = "https://melpa.org/#/company-ghc"; - license = lib.licenses.free; - }; - }) {}; - company-ghci = callPackage ({ company - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ghci"; - ename = "company-ghci"; - version = "20160310.1800"; - src = fetchFromGitHub { - owner = "orimh"; - repo = "company-ghci"; - rev = "c2d74a41166e76de2e78c87f582ba3a1179b2aa6"; - sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/company-ghci"; - sha256 = "11sygcn8jb4rcc1hfiadhsyanbhsmnalpz2qvh5iaba0l165bsgg"; - name = "recipe"; - }; - packageRequires = [ company haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/company-ghci"; - license = lib.licenses.free; - }; - }) {}; - company-glsl = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , glsl-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "company-glsl"; - ename = "company-glsl"; - version = "20171015.1049"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "company-glsl"; - rev = "a262c12c3bcd0807718c4edcaf2b054e30ef0e26"; - sha256 = "0338bym8ifvkgpbc4vyzf3nmlp6rc8lihyxcbym5m08612ln78mk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/company-glsl"; - sha256 = "1wzfdp6xz4nydfdcba8vs1za60lbfa0v4b8007dzn2fyg26rl326"; - name = "recipe"; - }; - packageRequires = [ company emacs glsl-mode ]; - meta = { - homepage = "https://melpa.org/#/company-glsl"; - license = lib.licenses.free; - }; - }) {}; - company-go = callPackage ({ company - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "company-go"; - ename = "company-go"; - version = "20190202.1619"; - src = fetchFromGitHub { - owner = "mdempsky"; - repo = "gocode"; - rev = "7fb65232883f19a8305706b4b4ff32916ffbcaf5"; - sha256 = "09yqziccv9mg5jlmhw8gslpcwwiiah0hs05nq0qnsbdnvc8bs4lr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3/recipes/company-go"; - sha256 = "1zhdckq1c9jzi5cf90w2m77fq6l67rjri4lnf8maq82gxqzk6wa5"; - name = "recipe"; - }; - packageRequires = [ company go-mode ]; - meta = { - homepage = "https://melpa.org/#/company-go"; - license = lib.licenses.free; - }; - }) {}; - company-inf-ruby = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "company-inf-ruby"; - ename = "company-inf-ruby"; - version = "20140805.1354"; - src = fetchFromGitHub { - owner = "company-mode"; - repo = "company-inf-ruby"; - rev = "9c2eab3bb82e8838c54013026e6ffb51cccbd37e"; - sha256 = "0sns1j74mbwkamiyfcq0jp6flzqknm0vbhr6vvg5nsw5b9lfir0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec0f597ceed00c68faa030ff0bc5676c513919f1/recipes/company-inf-ruby"; - sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm"; - name = "recipe"; - }; - packageRequires = [ company emacs inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/company-inf-ruby"; - license = lib.licenses.free; - }; - }) {}; - company-irony = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "company-irony"; - ename = "company-irony"; - version = "20190124.1546"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "company-irony"; - rev = "b44711dfce445610c1ffaec4951c6ff3882b216a"; - sha256 = "0s8v6kfgngpz6ic0g0l6xi6j9692xpmcamidmbk3l2blb172mggr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/company-irony"; - sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs irony ]; - meta = { - homepage = "https://melpa.org/#/company-irony"; - license = lib.licenses.free; - }; - }) {}; - company-irony-c-headers = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "company-irony-c-headers"; - ename = "company-irony-c-headers"; - version = "20151018.209"; - src = fetchFromGitHub { - owner = "hotpxl"; - repo = "company-irony-c-headers"; - rev = "ba304fe7eebdff90bbc7dea063b45b82638427fa"; - sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f9f62d8ef438a9ba4872bd7731768eddc5905de/recipes/company-irony-c-headers"; - sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; - name = "recipe"; - }; - packageRequires = [ cl-lib company irony ]; - meta = { - homepage = "https://melpa.org/#/company-irony-c-headers"; - license = lib.licenses.free; - }; - }) {}; - company-jedi = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , jedi-core - , lib - , melpaBuild }: - melpaBuild { - pname = "company-jedi"; - ename = "company-jedi"; - version = "20151216.1921"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-company-jedi"; - rev = "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b"; - sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/company-jedi"; - sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs jedi-core ]; - meta = { - homepage = "https://melpa.org/#/company-jedi"; - license = lib.licenses.free; - }; - }) {}; - company-lean = callPackage ({ company - , dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lean-mode - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-lean"; - ename = "company-lean"; - version = "20171102.754"; - src = fetchFromGitHub { - owner = "leanprover"; - repo = "lean-mode"; - rev = "c0af876c967fc969d67c467bc6767210d19c5d87"; - sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/company-lean"; - sha256 = "1hqkn7w5dyznf7i3r3132q8x31r74q188jsm5kdrjqgbwak2p91a"; - name = "recipe"; - }; - packageRequires = [ company dash dash-functional emacs f lean-mode s ]; - meta = { - homepage = "https://melpa.org/#/company-lean"; - license = lib.licenses.free; - }; - }) {}; - company-lsp = callPackage ({ company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , s }: - melpaBuild { - pname = "company-lsp"; - ename = "company-lsp"; - version = "20190524.1907"; - src = fetchFromGitHub { - owner = "tigersoldier"; - repo = "company-lsp"; - rev = "cd1a41583f2d71baef44604a14ea71f49b280bf0"; - sha256 = "0qxwl5w9l3bab35r9d8g2yfrykj6gzn8jz2b8h2rfkzd36k7zv11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5125f53307c1af3d9ccf2bae3c25e7d23dfe1932/recipes/company-lsp"; - sha256 = "09nbi6vxw8l26gfgsc1k3bx4m8i1px1b0jxaywszky5bv4fdy03l"; - name = "recipe"; - }; - packageRequires = [ company dash emacs lsp-mode s ]; - meta = { - homepage = "https://melpa.org/#/company-lsp"; - license = lib.licenses.free; - }; - }) {}; - company-lua = callPackage ({ company - , f - , fetchFromGitHub - , fetchurl - , lib - , lua-mode - , melpaBuild - , s }: - melpaBuild { - pname = "company-lua"; - ename = "company-lua"; - version = "20171108.1506"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "company-lua"; - rev = "29f6819de4d691e5fd0b62893a9f4fbc1c6fcb52"; - sha256 = "0ny2dcc7c585p7v3j6q0rpkbj1qmf2ismy8a5020jpr585xvz0hh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8191ab2aaa72041be46091e363d216cf1b73fde/recipes/company-lua"; - sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c"; - name = "recipe"; - }; - packageRequires = [ company f lua-mode s ]; - meta = { - homepage = "https://melpa.org/#/company-lua"; - license = lib.licenses.free; - }; - }) {}; - company-math = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , math-symbol-lists - , melpaBuild }: - melpaBuild { - pname = "company-math"; - ename = "company-math"; - version = "20190507.1306"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "company-math"; - rev = "600e49449644f6835f9dc3501bc58461999e8ab9"; - sha256 = "1ps2lpkzn8mjbpcbvvy1qz3xbgrh6951x8y9bsd1fm32drdph9lh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/company-math"; - sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; - name = "recipe"; - }; - packageRequires = [ company math-symbol-lists ]; - meta = { - homepage = "https://melpa.org/#/company-math"; - license = lib.licenses.free; - }; - }) {}; - company-nand2tetris = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nand2tetris }: - melpaBuild { - pname = "company-nand2tetris"; - ename = "company-nand2tetris"; - version = "20171201.1013"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "nand2tetris.el"; - rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01"; - sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/company-nand2tetris"; - sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886"; - name = "recipe"; - }; - packageRequires = [ cl-lib company nand2tetris ]; - meta = { - homepage = "https://melpa.org/#/company-nand2tetris"; - license = lib.licenses.free; - }; - }) {}; - company-nginx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-nginx"; - ename = "company-nginx"; - version = "20180603.1702"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "company-nginx"; - rev = "3074a5d322562f36867ef67bffeb25f1c0d8aca9"; - sha256 = "04nq6cihb5kymi3rjfx53337fx4g042cw1jxiv016sq88z24lznx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb8843cddfa9133ea9e2790e8a1d8051cd4dabea/recipes/company-nginx"; - sha256 = "15pxz0v3zpshwri0v15yh995k7ih9h46y81n4xywlyyh34wys3sj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/company-nginx"; - license = lib.licenses.free; - }; - }) {}; - company-ngram = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ngram"; - ename = "company-ngram"; - version = "20170129.1113"; - src = fetchFromGitHub { - owner = "kshramt"; - repo = "company-ngram"; - rev = "d15182df3eac72b29772802759b77c9eafef5066"; - sha256 = "05108s2a3c857n9j3c34hdni3fyq149pva4m3f51lis4wqrm4zv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/937e6a23782450525c4a90392c414173481e101b/recipes/company-ngram"; - sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; - name = "recipe"; - }; - packageRequires = [ cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-ngram"; - license = lib.licenses.free; - }; - }) {}; - company-nixos-options = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nixos-options }: - melpaBuild { - pname = "company-nixos-options"; - ename = "company-nixos-options"; - version = "20160215.57"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "a4e1d9ea9f2e773170caa3afbe54ecdf73d04ec8"; - sha256 = "1zcm74691bsay0l9vk2ffxgamrz8zyfmwkb9y915qylfwb48gyr2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/company-nixos-options"; - sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; - name = "recipe"; - }; - packageRequires = [ cl-lib company nixos-options ]; - meta = { - homepage = "https://melpa.org/#/company-nixos-options"; - license = lib.licenses.free; - }; - }) {}; - company-php = callPackage ({ ac-php-core - , cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-php"; - ename = "company-php"; - version = "20190423.1922"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b"; - sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php"; - sha256 = "1gnhklfkg17vxfx7fw65lr4nr07jx71y84mhs9zszwcr9p840hh5"; - name = "recipe"; - }; - packageRequires = [ ac-php-core cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-php"; - license = lib.licenses.free; - }; - }) {}; - company-phpactor = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , phpactor }: - melpaBuild { - pname = "company-phpactor"; - ename = "company-phpactor"; - version = "20190402.1916"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpactor.el"; - rev = "5dc331636786bdcee9ce2868d4d313c40aca1303"; - sha256 = "0qwklrsd8hxjvcddjj4ks3p24nyc3rcsxs9hyn3jphxww2igjbiv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc6edd22befea0aee9b11bc8df7d42c400e12f43/recipes/company-phpactor"; - sha256 = "1a6szs85hmxm2xpkmc3dyx2daap7bjvpnrl4gcmbq26zbz2f0z0a"; - name = "recipe"; - }; - packageRequires = [ company emacs phpactor ]; - meta = { - homepage = "https://melpa.org/#/company-phpactor"; - license = lib.licenses.free; - }; - }) {}; - company-plsense = callPackage ({ cl-lib ? null - , company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-plsense"; - ename = "company-plsense"; - version = "20180117.1658"; - src = fetchFromGitHub { - owner = "CeleritasCelery"; - repo = "company-plsense"; - rev = "b48e3181e08ec597269621d621aa06636f02d883"; - sha256 = "14rawd5xfgnkhdpp43mz4a5mf480949ny5hr5w6v5djmsibqxw5s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cf9d671d81e07c704676c557a9f0d686067ce5c/recipes/company-plsense"; - sha256 = "0k8k2vpkknd4nyxzwdj7698lgm5d85byxd49x7w5nrxmh2h1w3c7"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/company-plsense"; - license = lib.licenses.free; - }; - }) {}; - company-pollen = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pollen-mode }: - melpaBuild { - pname = "company-pollen"; - ename = "company-pollen"; - version = "20160812.810"; - src = fetchFromGitHub { - owner = "lijunsong"; - repo = "pollen-mode"; - rev = "9779f7f13b1e0cfb58af01af5d8ee9e783bb8a43"; - sha256 = "1i49js8y09d6bd5jp4fkl7z7gldaw2bfg5m2f504av73gqzqkxf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97bda0616abe3bb632fc4231e5317d9472dfd14f/recipes/company-pollen"; - sha256 = "1pz5d8j7scrv2ci9mxvyikwsk8badkrbp8dznnb5qq1ycqv24bl1"; - name = "recipe"; - }; - packageRequires = [ company pollen-mode ]; - meta = { - homepage = "https://melpa.org/#/company-pollen"; - license = lib.licenses.free; - }; - }) {}; - company-posframe = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe }: - melpaBuild { - pname = "company-posframe"; - ename = "company-posframe"; - version = "20190313.528"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "company-posframe"; - rev = "74091d132dea4b6ccd98c1ce7cec1b76b0ab8ad3"; - sha256 = "1jzaj3fjgplmzsxvmqh8z93filkk171ki8sk7iz9g44j0w7vmm38"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68c1203ae710e5f7af3f0e5e2877aba6deaf1ac8/recipes/company-posframe"; - sha256 = "1pd68m3hcn6wggw8a026x5kxn73f3zs278vs96q6cb5gbxyyhirs"; - name = "recipe"; - }; - packageRequires = [ company emacs posframe ]; - meta = { - homepage = "https://melpa.org/#/company-posframe"; - license = lib.licenses.free; - }; - }) {}; - company-prescient = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , prescient }: - melpaBuild { - pname = "company-prescient"; - ename = "company-prescient"; - version = "20190523.1034"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "ae414dde56f3430867faf41c04e4c3df75f9c960"; - sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b92c34e493bbefab1d7747b0855d1ab2f984cb7c/recipes/company-prescient"; - sha256 = "0cp918ihbjqxfgqnifknl5hphmvq5bl42dhp5ylvijsfa8kvbsb9"; - name = "recipe"; - }; - packageRequires = [ company emacs prescient ]; - meta = { - homepage = "https://melpa.org/#/company-prescient"; - license = lib.licenses.free; - }; - }) {}; - company-qml = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , qml-mode }: - melpaBuild { - pname = "company-qml"; - ename = "company-qml"; - version = "20170428.1008"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "company-qml"; - rev = "4af4f32a7ad86d86bb9293fb0b675aec513b5736"; - sha256 = "09d733r07gr4cxp7npyhi93xchvirxh1v00fr487v4a0mdaahpxf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b53477eaba4ef62f8317c9454e15ac015442fed/recipes/company-qml"; - sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx"; - name = "recipe"; - }; - packageRequires = [ company qml-mode ]; - meta = { - homepage = "https://melpa.org/#/company-qml"; - license = lib.licenses.free; - }; - }) {}; - company-quickhelp = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "company-quickhelp"; - ename = "company-quickhelp"; - version = "20180525.303"; - src = fetchFromGitHub { - owner = "expez"; - repo = "company-quickhelp"; - rev = "479676cade80a9f03802ca3d956591820ed5c537"; - sha256 = "0hbqpnaf4hnin3nmdzmfj3v22kk9a97b6zssqs96ns36d9h52xcp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp"; - sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; - name = "recipe"; - }; - packageRequires = [ company emacs pos-tip ]; - meta = { - homepage = "https://melpa.org/#/company-quickhelp"; - license = lib.licenses.free; - }; - }) {}; - company-racer = callPackage ({ cl-lib ? null - , company - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-racer"; - ename = "company-racer"; - version = "20171204.1910"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "company-racer"; - rev = "a00381c9d416f375f783fcb6ae8d40669ce1f567"; - sha256 = "13m3yzn4xbyl13z7h1cl6vqjbzikjycy7wydpy4a44yhr466zjr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c4671a674dbc1620a41e0ff99508892a25eec2ad/recipes/company-racer"; - sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4"; - name = "recipe"; - }; - packageRequires = [ cl-lib company deferred emacs ]; - meta = { - homepage = "https://melpa.org/#/company-racer"; - license = lib.licenses.free; - }; - }) {}; - company-reftex = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-reftex"; - ename = "company-reftex"; - version = "20181222.106"; - src = fetchFromGitHub { - owner = "TheBB"; - repo = "company-reftex"; - rev = "33935e96540201adab43f3a765d62289eba9e286"; - sha256 = "1sp4109fbj6cxq6v9lmkpkrlr6is340ibaqpslkkjyacjv6sv4cm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84c938612d46d45b5bb05ee35178eaa2284023e0/recipes/company-reftex"; - sha256 = "0xfl8cfpd2bdk91aj0nygp5gm808pnbi7zjdp4z6l21dsrawhbxz"; - name = "recipe"; - }; - packageRequires = [ company emacs s ]; - meta = { - homepage = "https://melpa.org/#/company-reftex"; - license = lib.licenses.free; - }; - }) {}; - company-restclient = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , know-your-http-well - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "company-restclient"; - ename = "company-restclient"; - version = "20190426.612"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-restclient"; - rev = "e5a3ec54edb44776738c13e13e34c85b3085277b"; - sha256 = "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient"; - sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - company - emacs - know-your-http-well - restclient - ]; - meta = { - homepage = "https://melpa.org/#/company-restclient"; - license = lib.licenses.free; - }; - }) {}; - company-rtags = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "company-rtags"; - ename = "company-rtags"; - version = "20180729.2038"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "7c470ba8e15740f37c3a7a9c56331c1cc4c0b1bb"; - sha256 = "05czbkgq48jv0f9vainflikil51xiwd0h24jmmx5886wi3v1wb4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; - sha256 = "0dicxbp3xn02pflrpfndj7hs494prvz64llsk1xpc2z23kfarp6f"; - name = "recipe"; - }; - packageRequires = [ company emacs rtags ]; - meta = { - homepage = "https://melpa.org/#/company-rtags"; - license = lib.licenses.free; - }; - }) {}; - company-shell = callPackage ({ cl-lib ? null - , company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-shell"; - ename = "company-shell"; - version = "20170517.2241"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "company-shell"; - rev = "acdbf8cba6ad9831d81a77bab7bbfd50f19edd86"; - sha256 = "1dk927da7g4a39sva9bda978bx6hpiz5kf341fj8sb7xhryvh5r2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbaa05d158f3806b9f79a2c826763166dbee56ca/recipes/company-shell"; - sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash emacs ]; - meta = { - homepage = "https://melpa.org/#/company-shell"; - license = lib.licenses.free; - }; - }) {}; - company-solidity = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , solidity-mode }: - melpaBuild { - pname = "company-solidity"; - ename = "company-solidity"; - version = "20181117.718"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "d6c48a1cb64d3c8a825dc0d06c839f2cacd4d289"; - sha256 = "14v71xf3z60s1fhpsz8b3l1v4na2ds0ddcp41y412fnrg4scbrhr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e561d869f4e32bad5d1a8678f67e591ff586d6de/recipes/company-solidity"; - sha256 = "1rkja48j2m0g0azc34i715ckkqwjkb44y3b4a9vlxs8cjqza4w7q"; - name = "recipe"; - }; - packageRequires = [ cl-lib company solidity-mode ]; - meta = { - homepage = "https://melpa.org/#/company-solidity"; - license = lib.licenses.free; - }; - }) {}; - company-sourcekit = callPackage ({ company - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sourcekit }: - melpaBuild { - pname = "company-sourcekit"; - ename = "company-sourcekit"; - version = "20170126.353"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "company-sourcekit"; - rev = "8ba62ac25bf533b7f148f333bcb5c1db799f749b"; - sha256 = "01dh0wdaydiai4v13r8g05rpiwqr5qqi34wif8vbk2mrr25wc7i9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/company-sourcekit"; - sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; - name = "recipe"; - }; - packageRequires = [ company dash dash-functional emacs sourcekit ]; - meta = { - homepage = "https://melpa.org/#/company-sourcekit"; - license = lib.licenses.free; - }; - }) {}; - company-statistics = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-statistics"; - ename = "company-statistics"; - version = "20170210.1133"; - src = fetchFromGitHub { - owner = "company-mode"; - repo = "company-statistics"; - rev = "e62157d43b2c874d2edbd547c3bdfb05d0a7ae5c"; - sha256 = "12mwviz1mwx4ywks2lkmybbgh1wny67wkzlq5y3ml8gvyc288n3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89d05b43f31ec157ce8e7bfba4b7c9119bda6dd2/recipes/company-statistics"; - sha256 = "1fl4ldj17m3xhi6xbw3bp9c2jir34xv3jh9daiw8g912fv2l5dcj"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-statistics"; - license = lib.licenses.free; - }; - }) {}; - company-suggest = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-suggest"; - ename = "company-suggest"; - version = "20180527.931"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "company-suggest"; - rev = "81fe56fae3a3d2d3cd1be09d7eb96422a4ad6f09"; - sha256 = "0ys9m11l8csyv2p0f7b13b9l5wqn73y5m4c29rj4xf2yy5b9p8sr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9579e3366db055364829e20d3ce228bf17060b0a/recipes/company-suggest"; - sha256 = "1w5fp4mydc4av14sjb8di6jjvzfqwnasnxpf9720pk0rsj05i972"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-suggest"; - license = lib.licenses.free; - }; - }) {}; - company-tabnine = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , unicode-escape }: - melpaBuild { - pname = "company-tabnine"; - ename = "company-tabnine"; - version = "20181207.1531"; - src = fetchFromGitHub { - owner = "TommyX12"; - repo = "company-tabnine"; - rev = "2d63df791027ec2bcc8956be6b7078d17f95217c"; - sha256 = "06p7z0nnal26xb3kkh3ik0q42wkn146mr15bz3c1amfpkx60y1qi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94476897a71a271b985967334632836252eb131b/recipes/company-tabnine"; - sha256 = "1x37xacrscmh9hq9mljbgdcl3pwfn2kmn567qv0jqys8ihbzi3v7"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs s unicode-escape ]; - meta = { - homepage = "https://melpa.org/#/company-tabnine"; - license = lib.licenses.free; - }; - }) {}; - company-tern = callPackage ({ cl-lib ? null - , company - , dash - , dash-functional - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , tern }: - melpaBuild { - pname = "company-tern"; - ename = "company-tern"; - version = "20161004.1147"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-tern"; - rev = "b20b3e490bf277c8480712210e3c92ea489859ef"; - sha256 = "1l4b54rqwsb32r8zwwrag7s35zc3kpviafdrqkq8r1nyshg2yccm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/company-tern"; - sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash dash-functional s tern ]; - meta = { - homepage = "https://melpa.org/#/company-tern"; - license = lib.licenses.free; - }; - }) {}; - company-terraform = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , terraform-mode }: - melpaBuild { - pname = "company-terraform"; - ename = "company-terraform"; - version = "20180703.533"; - src = fetchFromGitHub { - owner = "rafalcieslak"; - repo = "emacs-company-terraform"; - rev = "9c1146bfe23d4c461f4a59577faf4e46fcca7fe9"; - sha256 = "10b23azzgy51zrrmyi29mgy74f2zkrqrqvlk0r2iz9f7fydk8dpp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9732da975dcf59d3b311b19e20abbb29c33656/recipes/company-terraform"; - sha256 = "198ppqn6f7y9bg582z5s4cl9gg1q9ibsr7mmn68b50zvma7ankzh"; - name = "recipe"; - }; - packageRequires = [ company emacs terraform-mode ]; - meta = { - homepage = "https://melpa.org/#/company-terraform"; - license = lib.licenses.free; - }; - }) {}; - company-try-hard = callPackage ({ company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-try-hard"; - ename = "company-try-hard"; - version = "20150902.1506"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "company-try-hard"; - rev = "0401e8afa6bd4d3e9d2cf18e58955b83aef93005"; - sha256 = "18hy60fm3b3dmp29cmzbs6grlihkwifjbzv30gprwj5f6x7m8knf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d65c26aee15a27cbf27fa81110b607bf38099079/recipes/company-try-hard"; - sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj"; - name = "recipe"; - }; - packageRequires = [ company dash emacs ]; - meta = { - homepage = "https://melpa.org/#/company-try-hard"; - license = lib.licenses.free; - }; - }) {}; - company-web = callPackage ({ cl-lib ? null - , company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "company-web"; - ename = "company-web"; - version = "20180402.455"; - src = fetchFromGitHub { - owner = "osv"; - repo = "company-web"; - rev = "f0cc9187c9c34f72ad71f5649a69c74f996bae9a"; - sha256 = "1xcwwcy2866vzaqgn7hrl7j8k48mk74i4shm40v7ybacws47s9nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-web"; - sha256 = "1q2am684l4d038a3ymyy6gg2ds9lq5mcfc4in8dmvap5grdhia4b"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/company-web"; - license = lib.licenses.free; - }; - }) {}; - company-ycm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ycm }: - melpaBuild { - pname = "company-ycm"; - ename = "company-ycm"; - version = "20140904.1117"; - src = fetchFromGitHub { - owner = "neuromage"; - repo = "ycm.el"; - rev = "b2cb611503cf8d256fa19fc76362d7d5d9449d01"; - sha256 = "1xmmk5pg59w8cc1s9v3c65l8m388yl25ngjd0vibi22lm1k5ri8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/company-ycm"; - sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina"; - name = "recipe"; - }; - packageRequires = [ ycm ]; - meta = { - homepage = "https://melpa.org/#/company-ycm"; - license = lib.licenses.free; - }; - }) {}; - company-ycmd = callPackage ({ company - , dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , s - , ycmd }: - melpaBuild { - pname = "company-ycmd"; - ename = "company-ycmd"; - version = "20180520.353"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "966594701c1eef1f6d4dad0c71c6d43a029977d7"; - sha256 = "05b8l82l3p15r072zhmmwpcnxyyyrhzka5gc3vkzz2sa7wa7sp7j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-ycmd"; - sha256 = "1dycbp2q8grvv94mwp9n8s7xpz2zjs05l3lf471j3nlbk6xfsn5d"; - name = "recipe"; - }; - packageRequires = [ company dash deferred f let-alist s ycmd ]; - meta = { - homepage = "https://melpa.org/#/company-ycmd"; - license = lib.licenses.free; - }; - }) {}; - composable = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "composable"; - ename = "composable"; - version = "20190520.909"; - src = fetchFromGitHub { - owner = "paldepind"; - repo = "composable.el"; - rev = "f5e6cf4d9fb41ab1d09bfac9aa7f5e8cf5e1d794"; - sha256 = "094ds242xg0dxrpq18ab3qzs8dcpn2w5w0b0r6hn7ws76aq2bayh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable"; - sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/composable"; - license = lib.licenses.free; - }; - }) {}; - composer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-runtime - , request - , s - , seq }: - melpaBuild { - pname = "composer"; - ename = "composer"; - version = "20180923.440"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "composer.el"; - rev = "6c1578b2352c81cc9a22616a70db2a14b7d2b67f"; - sha256 = "0fijw3kcl4vyc5x7a1syqslsj13mwkq1k3bs4p60v2jg1fxqarrb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/composer"; - sha256 = "01w9cywhfngkrl9az8kfpzm12nc0zwmax01pyxlbi2l2icmvp5s1"; - name = "recipe"; - }; - packageRequires = [ emacs f php-runtime request s seq ]; - meta = { - homepage = "https://melpa.org/#/composer"; - license = lib.licenses.free; - }; - }) {}; - concurrent = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "concurrent"; - ename = "concurrent"; - version = "20161228.1930"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-deferred"; - rev = "9668749635472a63e7a9282e2124325405199b79"; - sha256 = "1ch5br9alvwcpijl9g8w5ypjrah29alpfpk4hjw23rwzyq5p4izq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/concurrent"; - sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; - name = "recipe"; - }; - packageRequires = [ deferred emacs ]; - meta = { - homepage = "https://melpa.org/#/concurrent"; - license = lib.licenses.free; - }; - }) {}; - conda = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "conda"; - ename = "conda"; - version = "20190531.1107"; - src = fetchFromGitHub { - owner = "necaris"; - repo = "conda.el"; - rev = "7f2461b268af1d321f41cbf299a07f00f7305426"; - sha256 = "1ccdl0836mm640qsxsf1ijxa6j4kzkjd7g38vldmji9jp25wyzac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcf762e34837975f5440a1d81a7f09699778123e/recipes/conda"; - sha256 = "1hi292h6ccl7vkvyxcwwcdxw8q2brv3hy0mnlikzj2qy5pbnfg4y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/conda"; - license = lib.licenses.free; - }; - }) {}; - config-general-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "config-general-mode"; - ename = "config-general-mode"; - version = "20171024.1140"; - src = fetchFromGitHub { - owner = "TLINDEN"; - repo = "config-general-mode"; - rev = "b4a8e6ba0bb027a77e4a0f701409f3e57bb2e4c0"; - sha256 = "115sk0h6i1bfnxw1v11719926cvnq7gyisjcysvkam40hp3d5fx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/config-general-mode"; - sha256 = "1pqivnyb1yljzs3fd554s0971wr9y6g1dx3lgym9gi5jhpyza38z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/config-general-mode"; - license = lib.licenses.free; - }; - }) {}; - config-parser = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "config-parser"; - ename = "config-parser"; - version = "20160426.519"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "el-config-parser"; - rev = "85d559e7889d8f5b98b8794b79426ae25ec3caa5"; - sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8fc040eebe72b278e3bd69212b207446cf4a5f06/recipes/config-parser"; - sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/config-parser"; - license = lib.licenses.free; - }; - }) {}; - confluence = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "confluence"; - ename = "confluence"; - version = "20151020.1828"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "confluence"; - rev = "442d6e14b51f8322fb7f0fe30682d2429f48ed73"; - sha256 = "18859zi60s2y79add998vxh084znbdxxq31m12flg7makxlamyh7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30de78c9cf83de30093a5647976eeaf552d4b2cb/recipes/confluence"; - sha256 = "0xa2g168mm31kh5h7smhx35cjsk1js88nzs19yakjljf56b1khlf"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/confluence"; - license = lib.licenses.free; - }; - }) {}; - conkeror-minor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "conkeror-minor-mode"; - ename = "conkeror-minor-mode"; - version = "20150114.804"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "conkeror-minor-mode"; - rev = "476e81c27b056e21c192391fe674a2bf875466b0"; - sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/conkeror-minor-mode"; - sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/conkeror-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - conllu-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , hydra - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "conllu-mode"; - ename = "conllu-mode"; - version = "20190215.1243"; - src = fetchFromGitHub { - owner = "odanoburu"; - repo = "conllu-mode"; - rev = "21d337937290c5bac3f578996ed8d672a916adc0"; - sha256 = "0sh0dqa6jr16pfg587d4hh65pyg9dk0p781ipqli17dmr8x0gi69"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/444f943baddfeafe29708d6d68aeeeedbb7aa7bd/recipes/conllu-mode"; - sha256 = "1wffvvs8d0xcnz6mcm9rbr8imyj4npyc148yh0gzfzlgjm0fiz1v"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flycheck hydra s ]; - meta = { - homepage = "https://melpa.org/#/conllu-mode"; - license = lib.licenses.free; - }; - }) {}; - connection = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "connection"; - ename = "connection"; - version = "20140717.2029"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "a5619fb275520d699eaae214e41ebcfde23c17f3"; - sha256 = "176w46j3m343vlkjn9jyaaz3ikzdzxffrvhalgc76ydw9wyivbf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/connection"; - sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/connection"; - license = lib.licenses.free; - }; - }) {}; - constant-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "constant-theme"; - ename = "constant-theme"; - version = "20180921.312"; - src = fetchFromGitHub { - owner = "Jannis"; - repo = "emacs-constant-theme"; - rev = "0feb9f99d708633d62fa548c953ebbe68fd70de0"; - sha256 = "14w92qh791zz22c1r47ncglh92ifgqxmz0pk5w61ka7zi7xqylg1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/constant-theme"; - sha256 = "13m4r37gscnqg3qmb0rs2r8sslp0irm7n4p6p496mmvljvjmpv6b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/constant-theme"; - license = lib.licenses.free; - }; - }) {}; - contextual = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "contextual"; - ename = "contextual"; - version = "20180726.100"; - src = fetchFromGitHub { - owner = "e-user"; - repo = "contextual"; - rev = "7ad2bb36426fd182d4d5ee7fd9be1cc0db8c7a84"; - sha256 = "0zk85y01w23zb9x60bc5w4q3p40cnyk9bsc6pd5h85rlaazbrpby"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de20db067590624bbd2ca5a7a537b7f11ada84f2/recipes/contextual"; - sha256 = "1xwjjchmn3xqxbgvqishh8i75scc4kjgdzlp5j64d443pfgyr56a"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/contextual"; - license = lib.licenses.free; - }; - }) {}; - contextual-menubar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "contextual-menubar"; - ename = "contextual-menubar"; - version = "20180204.2309"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "contextual-menubar"; - rev = "f76f55232ac07df76ef9a334a0c527dfab97c40b"; - sha256 = "0zks4w99nbhz1xvr67isgg6yjghpzbh5s5wd839zi0ly30x4riqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cba21d98f3abbf1f45d1fdd9164d4660b7d3e368/recipes/contextual-menubar"; - sha256 = "0r9bsnvf45h7gsdfhsz7h02nskjvflfa2yjarjv9fcl7aipz8rr6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/contextual-menubar"; - license = lib.licenses.free; - }; - }) {}; - contrast-color = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "contrast-color"; - ename = "contrast-color"; - version = "20160903.1107"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "contrast-color-el"; - rev = "6ff1b807e09ef6a775e4ab1032bb2ea3fc442d9e"; - sha256 = "1qvx00yrkl0zf2bnb46gw18nrhg3gwlc0az622bh5brckpn9dasv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a13602e10a5fa889d0e094eff5b74a39023a477/recipes/contrast-color"; - sha256 = "0pa88mfla7g7wpia0q1lkv2dncw63ivvh83hf73f75a22rvl8jcx"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/contrast-color"; - license = lib.licenses.free; - }; - }) {}; - control-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "control-mode"; - ename = "control-mode"; - version = "20160624.1010"; - src = fetchFromGitHub { - owner = "stephendavidmarsh"; - repo = "control-mode"; - rev = "6bf487144119b03f9cc54168f70e3d7d8d84e22b"; - sha256 = "0y6a0fcz6ic5ai5jibyd740mclzx88x3l6wp2vs8rw6qs15cr7xf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/control-mode"; - sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/control-mode"; - license = lib.licenses.free; - }; - }) {}; - copy-as-format = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "copy-as-format"; - ename = "copy-as-format"; - version = "20190522.1958"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "copy-as-format"; - rev = "a0962b670e26b723ce304b14e3397da453aef84e"; - sha256 = "0amgnl9d9sh69dh76vfb7ar6m995nka5zs3swa1pmqqnrmp8nr1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe8a2113d1c15701abe7a7e0a68e939c3d789b/recipes/copy-as-format"; - sha256 = "1yij5mqm0dg6326yms0a2w8gs42kdxq0ih8dhkpdar54r0bk3m8k"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/copy-as-format"; - license = lib.licenses.free; - }; - }) {}; - copy-file-on-save = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "copy-file-on-save"; - ename = "copy-file-on-save"; - version = "20180604.719"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "emacs-auto-deployment"; - rev = "5af6d5fcc35ddf9050eada96fd5f334bf0661b62"; - sha256 = "1q9liby1dmwwmg2jz13gx2ld47bpcqb9c7vx4qgky75wb5c2q1xz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/copy-file-on-save"; - sha256 = "1mcwgkhd241aijnmzrrqqn9f7hiq5k1w4fj83v50aixrcs049gc3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/copy-file-on-save"; - license = lib.licenses.free; - }; - }) {}; - copyit = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "copyit"; - ename = "copyit"; - version = "20161126.429"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-copyit"; - rev = "f50d033b129d467fb517a351adf3f16cabd82a62"; - sha256 = "1s1ddwxgvig7skibicm9j8jii651n1v5ivfj4j6d1kkc79lpq69n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit"; - sha256 = "1m28irqixzl44c683dxvc5x6l3qcqlpy6jzk6629paqkdi5mx1c0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s ]; - meta = { - homepage = "https://melpa.org/#/copyit"; - license = lib.licenses.free; - }; - }) {}; - copyit-pandoc = callPackage ({ copyit - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pandoc }: - melpaBuild { - pname = "copyit-pandoc"; - ename = "copyit-pandoc"; - version = "20160624.1328"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-copyit"; - rev = "c973d3650208a033aaf845989d023f9c6e572ddd"; - sha256 = "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit-pandoc"; - sha256 = "03v448gh6glq126r95w4y6s2p08jgjhkc6zgsplx0v9d5f2mwaqk"; - name = "recipe"; - }; - packageRequires = [ copyit emacs pandoc ]; - meta = { - homepage = "https://melpa.org/#/copyit-pandoc"; - license = lib.licenses.free; - }; - }) {}; - coq-commenter = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "coq-commenter"; - ename = "coq-commenter"; - version = "20170822.1609"; - src = fetchFromGitHub { - owner = "Ailrun"; - repo = "coq-commenter"; - rev = "7fe9a2cc0ebdb0b1e54a24eb7971d757fb588ac3"; - sha256 = "1rq0j6ds9snv21k2lzyja96qxxz8nrai5aj1k1si9zshld28mapx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/coq-commenter"; - sha256 = "1d6a40f8b4r8x08sy7qs335c9z744xmll326qzsjmxiqdkjv7h2k"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/coq-commenter"; - license = lib.licenses.free; - }; - }) {}; - corral = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "corral"; - ename = "corral"; - version = "20160502.1"; - src = fetchFromGitHub { - owner = "nivekuil"; - repo = "corral"; - rev = "8813288de240956641b37deafaaa4811548246df"; - sha256 = "06l2imhxm6dijkqlhk9s0vsa5a0ghybpy7qk7wpkgv0dlm3k3w7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b0d7e326f0401de0488b77d39af7bd7b8e8fdd4/recipes/corral"; - sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/corral"; - license = lib.licenses.free; - }; - }) {}; - cosmo = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cosmo"; - ename = "cosmo"; - version = "20170922.44"; - src = fetchFromGitLab { - owner = "montanari"; - repo = "cosmo-el"; - rev = "dd83b09a49a2843606b28279b674b2207040b36b"; - sha256 = "0phcg81g3dy67s1hfymvj0lkcpwygwql8iixf940nv31qllgzvd7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ab914dfefcddf6ecd65261bc11bd3eb12929c79/recipes/cosmo"; - sha256 = "1pk34d0kv1jm2fq72qa5lj0y39x1yf2nbkjjg8jcj8ari28h9vfk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cosmo"; - license = lib.licenses.free; - }; - }) {}; - counsel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "counsel"; - ename = "counsel"; - version = "20190604.357"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "92d5335caee6c8240fc2e0123858d2b239bffe0d"; - sha256 = "0ldg6viwrn16wq6rd01jwq1ichad6z5h63zrqk9xwqd1p7b8vmjr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; - sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; - name = "recipe"; - }; - packageRequires = [ emacs swiper ]; - meta = { - homepage = "https://melpa.org/#/counsel"; - license = lib.licenses.free; - }; - }) {}; - counsel-bbdb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-bbdb"; - ename = "counsel-bbdb"; - version = "20181128.520"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "counsel-bbdb"; - rev = "df2890deb73b09f8055243bd91942ea887d9b7a1"; - sha256 = "0bki658mvlchqf3prkzxz4217a95cxm58c1qmf84yp2n8h6gd0d8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ed9bcdb1f25a6dd743c1dac2bb6cda73a5a5dc2/recipes/counsel-bbdb"; - sha256 = "14d9mk44skpmyj0zkqwz97j80r630j7s5hfrrhlsafdpl5aafjxp"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-bbdb"; - license = lib.licenses.free; - }; - }) {}; - counsel-codesearch = callPackage ({ codesearch - , counsel - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-codesearch"; - ename = "counsel-codesearch"; - version = "20180925.103"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-counsel-codesearch"; - rev = "b7989fad3e06f301c31d5e896c42b6cc549a0e0c"; - sha256 = "1qv82nvj0kddmajm6pniadnz96mqz8rhl0g2w2z5834r48higxqv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3404c3cdfa6654ad80378ab258f0df68a6beeb9/recipes/counsel-codesearch"; - sha256 = "0y547cfxjq59zvi36av0rd1wdydf8d96ma438ja0x726f53nxd3g"; - name = "recipe"; - }; - packageRequires = [ codesearch counsel emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-codesearch"; - license = lib.licenses.free; - }; - }) {}; - counsel-css = callPackage ({ cl-lib ? null - , counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-css"; - ename = "counsel-css"; - version = "20180302.236"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-counsel-css"; - rev = "0536af00236cdce1ed08b40dd46c917e8b4b8869"; - sha256 = "04qm5dqxnl4s0axbrin7a7dpj3h8rx096q01bwzfs10qsdx3l7c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/519a05a9f0e43f3e1dfac75759346476bfc40772/recipes/counsel-css"; - sha256 = "1sckfq8kv68q1anqmslrvhcf83m7b5r0clny6q33b9x0qypkv9xp"; - name = "recipe"; - }; - packageRequires = [ cl-lib counsel emacs ]; - meta = { - homepage = "https://melpa.org/#/counsel-css"; - license = lib.licenses.free; - }; - }) {}; - counsel-dash = callPackage ({ cl-lib ? null - , counsel - , dash-docs - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-dash"; - ename = "counsel-dash"; - version = "20190510.8"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "counsel-dash"; - rev = "5856b8766956428c183a2df911a05f845d014041"; - sha256 = "1x0y6w5ivicckllznvljad42hgmbnilkrx9bz7rs4clr1baxzvyh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8af4d854f972bfed3d2122b4c089f72d8b5f2a/recipes/counsel-dash"; - sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk"; - name = "recipe"; - }; - packageRequires = [ cl-lib counsel dash-docs emacs ]; - meta = { - homepage = "https://melpa.org/#/counsel-dash"; - license = lib.licenses.free; - }; - }) {}; - counsel-etags = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-etags"; - ename = "counsel-etags"; - version = "20190603.1945"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "counsel-etags"; - rev = "fbeedab4ef1a3ea7ec3071580a31a4578d2c79ea"; - sha256 = "19d6a1q8is1yjq4mc6p2hqwwwfwamnlj4xlpfa3z482zqs812xly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags"; - sha256 = "1h3dlczm1m21d4h41vz9ngg5fi02g6f95qalfxdnsvz0d4w4yxk0"; - name = "recipe"; - }; - packageRequires = [ counsel emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-etags"; - license = lib.licenses.free; - }; - }) {}; - counsel-gtags = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "counsel-gtags"; - ename = "counsel-gtags"; - version = "20190422.801"; - src = fetchFromGitHub { - owner = "FelipeLema"; - repo = "emacs-counsel-gtags"; - rev = "3ebfd4159856e9dbd9531b2a43410f72175a90bb"; - sha256 = "08n11nvf7p6clmha8r50r2fzp9f4nmrcm8j6byvn99vazdvych7p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe8fe6af7826a4b73ac784fde8859130b9ad7096/recipes/counsel-gtags"; - sha256 = "1vxxcqijn3nab4146p06vhw6dn8zwb7arbk1610bajsvkyid428y"; - name = "recipe"; - }; - packageRequires = [ counsel emacs seq ]; - meta = { - homepage = "https://melpa.org/#/counsel-gtags"; - license = lib.licenses.free; - }; - }) {}; - counsel-notmuch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , notmuch - , s }: - melpaBuild { - pname = "counsel-notmuch"; - ename = "counsel-notmuch"; - version = "20181203.135"; - src = fetchFromGitHub { - owner = "fuxialexander"; - repo = "counsel-notmuch"; - rev = "a4a1562935e4180c42524c51609d1283e9be0688"; - sha256 = "01k1321d961kc2i660a5595bqk0d85f16snsxngsn5si6y83kqr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54fe0be4e8e8b90cd2dc3cc8b9c573694c8f773b/recipes/counsel-notmuch"; - sha256 = "1n4jp9fa5fbv55am0w1b832ncdih8gi6xflwabpwqqj4k5mj94p1"; - name = "recipe"; - }; - packageRequires = [ emacs ivy notmuch s ]; - meta = { - homepage = "https://melpa.org/#/counsel-notmuch"; - license = lib.licenses.free; - }; - }) {}; - counsel-org-capture-string = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-org-capture-string"; - ename = "counsel-org-capture-string"; - version = "20180816.24"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "counsel-org-capture-string"; - rev = "0fd5d72397a9268a89dd26de2a6c355f127453ac"; - sha256 = "19ijjiidxxysvkz9vnsgiymxd7w7zcs5bazn7dmahp5yaprlsjld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/380d58ac9487f2fb1d4a791008fa60fb7165e7e3/recipes/counsel-org-capture-string"; - sha256 = "1jqp4qscv8shx1kfnrm6642a83ba3rpzm7v9hz46j3aw6f3psw9g"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-org-capture-string"; - license = lib.licenses.free; - }; - }) {}; - counsel-org-clock = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-org-clock"; - ename = "counsel-org-clock"; - version = "20190406.2048"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "counsel-org-clock"; - rev = "ddf6b89652e4dbc0be5e8719213e7673c83959f1"; - sha256 = "1fd8ll7jcfmy2dhhhsqh1l6wqfklma54bqpb4jnxmdn2w9p3ndmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d21e10ba82b4ae0f8101031be16bc5f7e80ba5d5/recipes/counsel-org-clock"; - sha256 = "16pai05qqaw31ghdy1h164qy56mqsdsf2925i0qhlhysslkki8gh"; - name = "recipe"; - }; - packageRequires = [ dash emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-org-clock"; - license = lib.licenses.free; - }; - }) {}; - counsel-osx-app = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-osx-app"; - ename = "counsel-osx-app"; - version = "20160821.109"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "counsel-osx-app"; - rev = "5cc93ec684f837dc31ce20e7625407f2c0445691"; - sha256 = "03gnxk2midiczq5w1k69ddhnlhml1pnwr9yjaw3b30dgv6r29dpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/926d0ab3d62d7114d6997944521b66ab969f6830/recipes/counsel-osx-app"; - sha256 = "0zc74szalyazbvi0lh3zy08kb8kzlwcwnc8d1sj5n23ymvvs5nn3"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-osx-app"; - license = lib.licenses.free; - }; - }) {}; - counsel-projectile = callPackage ({ counsel - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "counsel-projectile"; - ename = "counsel-projectile"; - version = "20190325.156"; - src = fetchFromGitHub { - owner = "ericdanan"; - repo = "counsel-projectile"; - rev = "fb19569c9799e3edac7504d21a5ecf49231e9500"; - sha256 = "0n9rjqhplapxiwja5dap03frdvbd6y4i5q4ballmyrgg5pnc8l5k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/389f16f886a385b02f466540f042a16eea8ba792/recipes/counsel-projectile"; - sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl"; - name = "recipe"; - }; - packageRequires = [ counsel projectile ]; - meta = { - homepage = "https://melpa.org/#/counsel-projectile"; - license = lib.licenses.free; - }; - }) {}; - counsel-pydoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-pydoc"; - ename = "counsel-pydoc"; - version = "20171018.1342"; - src = fetchFromGitHub { - owner = "co-dh"; - repo = "pydoc_utils"; - rev = "08a4a1020da3d06604156303024c8a5e31ec36e4"; - sha256 = "0658pm99vnm50xq2c79mdbywrgmbs0wwl90hnc493652bznrsgmc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/110939c12b4e042a486e97be4c2a2426c5978ca6/recipes/counsel-pydoc"; - sha256 = "1a3vwh4jf5y03z95bd4blk75n6wjd24l6yw6vpr3991bi4qrxclz"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-pydoc"; - license = lib.licenses.free; - }; - }) {}; - counsel-spotify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-spotify"; - ename = "counsel-spotify"; - version = "20190406.1325"; - src = fetchFromGitHub { - owner = "Lautaro-Garcia"; - repo = "counsel-spotify"; - rev = "f484e6efd3994704cfd16c87c298fbfa12d442cc"; - sha256 = "0b5hykw3n96f0m50176hk639sbzdykhnp52xlp8g6l7p807x27w9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b386462518a5ebb6454f4d01582df98395239bcc/recipes/counsel-spotify"; - sha256 = "1xs4km5vjhn6dnlmrscz7airip07n1ppybp8mr17hinb8scfpv47"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-spotify"; - license = lib.licenses.free; - }; - }) {}; - counsel-tramp = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-tramp"; - ename = "counsel-tramp"; - version = "20190524.146"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-counsel-tramp"; - rev = "5ed06027a313b27ab17a8c8fabbc30c0e424c3b2"; - sha256 = "1qy9lf7cyv6hp9mmpwh92cpdcffbxzyzchx6878d5pmk9qh6xy92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1822b735b6bd533f658bd64ddccda29e19e9a5e/recipes/counsel-tramp"; - sha256 = "1ga57v6whnpigciw54k3hs0idq4cbl35qrysarik72f46by859v5"; - name = "recipe"; - }; - packageRequires = [ counsel emacs ]; - meta = { - homepage = "https://melpa.org/#/counsel-tramp"; - license = lib.licenses.free; - }; - }) {}; - counsel-world-clock = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "counsel-world-clock"; - ename = "counsel-world-clock"; - version = "20171201.2337"; - src = fetchFromGitHub { - owner = "kchenphy"; - repo = "counsel-world-clock"; - rev = "9834461002e1ea0c1669705e7a2b99dec969bb30"; - sha256 = "1gkbcq7fkh08cwmbf1q99s2m5hcja73vl8bfdx2iif74f81p89jf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9da8c45e7d06647f9591d80e83f851a7f3af85/recipes/counsel-world-clock"; - sha256 = "151vm7g7g0jwjlp0wrwlxrjnh9qsckc10whkfgaz9czzvvmsf4cv"; - name = "recipe"; - }; - packageRequires = [ ivy s ]; - meta = { - homepage = "https://melpa.org/#/counsel-world-clock"; - license = lib.licenses.free; - }; - }) {}; - countdown = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , stream }: - melpaBuild { - pname = "countdown"; - ename = "countdown"; - version = "20190527.436"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "countdown.el"; - rev = "c60b6ff13a2c36e731132ef8775b7d09c5ad963d"; - sha256 = "1vws72q9yl3s65f3qsn2s4s6sv1fl1y8l8yc7lspxpscskp277p9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce30233b21be706ab3aaeeb61d5110143fa47c89/recipes/countdown"; - sha256 = "0rjhc54f5dj55442b44yhvpicg98jg1jj1n0bv6alx699575vmym"; - name = "recipe"; - }; - packageRequires = [ emacs stream ]; - meta = { - homepage = "https://melpa.org/#/countdown"; - license = lib.licenses.free; - }; - }) {}; - cov = callPackage ({ elquery - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cov"; - ename = "cov"; - version = "20180415.1331"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "cov"; - rev = "2371d01e6b2928eb6cee6b7bfa8d50f96c47e750"; - sha256 = "1z1092xyn2zlmggp7dkr7cynmvrr4hjdsq2pgnri5lizp3bjyd4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d0f35ce436ac157955d6f92de96e14bef9ad69e3/recipes/cov"; - sha256 = "02wk8ikanl5lcwqb9wqc8xx5vwzhn2hpqpxdchg5mdi7fifa1rni"; - name = "recipe"; - }; - packageRequires = [ elquery emacs f s ]; - meta = { - homepage = "https://melpa.org/#/cov"; - license = lib.licenses.free; - }; - }) {}; - coverage = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ov }: - melpaBuild { - pname = "coverage"; - ename = "coverage"; - version = "20180226.2057"; - src = fetchFromGitHub { - owner = "trezona-lecomte"; - repo = "coverage"; - rev = "c73d984168955ca0f47f44b0464aa45282df42b6"; - sha256 = "1kn61j91x4r4kc498y2jas5il4pc4qzhkj8392g2qiq5m3lbv4vl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd70e138534551dd12ba4d165ba56fbd1e033241/recipes/coverage"; - sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; - name = "recipe"; - }; - packageRequires = [ cl-lib ov ]; - meta = { - homepage = "https://melpa.org/#/coverage"; - license = lib.licenses.free; - }; - }) {}; - coverlay = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "coverlay"; - ename = "coverlay"; - version = "20190414.240"; - src = fetchFromGitHub { - owner = "twada"; - repo = "coverlay.el"; - rev = "0beae208d0e7d746a94385428bd61aa5cd7ea828"; - sha256 = "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/coverlay"; - sha256 = "1n0fblacwps94mhbdwpi22frhqp3pxg4323ghb79rvszb7in9i8j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/coverlay"; - license = lib.licenses.free; - }; - }) {}; - cp5022x = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cp5022x"; - ename = "cp5022x"; - version = "20120323.1635"; - src = fetchFromGitHub { - owner = "awasira"; - repo = "cp5022x.el"; - rev = "ea7327dd75e54539576916f592ae1be98179ae35"; - sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/761fcb0ff07d9746d68e9946c8b46e50c67cd1d8/recipes/cp5022x"; - sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cp5022x"; - license = lib.licenses.free; - }; - }) {}; - cpanfile-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cpanfile-mode"; - ename = "cpanfile-mode"; - version = "20161001.10"; - src = fetchFromGitHub { - owner = "zakame"; - repo = "cpanfile-mode"; - rev = "b09908b4342b3aa97940159dbe91ac074ec98e0b"; - sha256 = "12nbfgvhd8gxakq787i1v3h2kcn1r76f9lhqx44gjwqy3yx201i5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/673e828a076ad806cdb69102a9d55f80ace45670/recipes/cpanfile-mode"; - sha256 = "1sflykfrhx9sn5dqlaa4s7w34nczh4xqwcig5rmlpwj9yl2mk2dm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cpanfile-mode"; - license = lib.licenses.free; - }; - }) {}; - cpputils-cmake = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cpputils-cmake"; - ename = "cpputils-cmake"; - version = "20181005.2028"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "cpputils-cmake"; - rev = "64b2b05eff5398b4cd522e66efaf14553ab18ff4"; - sha256 = "0kmqk0ba9cacss3m34a8sdnmdir4ci7mv3j176ylm5af0x9yqc45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b84a159e97f7161d0705da5dd5e8c34ae5cb848/recipes/cpputils-cmake"; - sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cpputils-cmake"; - license = lib.licenses.free; - }; - }) {}; - cql-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cql-mode"; - ename = "cql-mode"; - version = "20190314.1925"; - src = fetchFromGitHub { - owner = "Yuki-Inoue"; - repo = "cql-mode"; - rev = "d400c046850d3cf404778b2c47d6be4ff84ca04b"; - sha256 = "016fs984fbn9k6q17mpxq8gbpspai71r52da8aq31f3jijxmrh5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1084dd0ec0f2e8fe6fa8e97b322833c14e8e59d1/recipes/cql-mode"; - sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cql-mode"; - license = lib.licenses.free; - }; - }) {}; - cquery = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "cquery"; - ename = "cquery"; - version = "20190117.2142"; - src = fetchFromGitHub { - owner = "cquery-project"; - repo = "emacs-cquery"; - rev = "555e50984ebda177421fdcdc8c76cb29235d9694"; - sha256 = "1d1m1lgc93fkg7dxb8d6ch68vh6w1zp3yy31bv78vaz8siqrmk16"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3cd3bffff0d2564c39735f844f9a02a660272caa/recipes/cquery"; - sha256 = "01mw6aqiazpzcn6h5h5xcnra8a04yg1ibvpfajx70m5iw9f5w6l6"; - name = "recipe"; - }; - packageRequires = [ dash emacs lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/cquery"; - license = lib.licenses.free; - }; - }) {}; - crappy-jsp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crappy-jsp-mode"; - ename = "crappy-jsp-mode"; - version = "20140311.231"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "crappy-jsp-mode"; - rev = "6c45ab92b452411cc0fab9bcee2f456276b4fc40"; - sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/crappy-jsp-mode"; - sha256 = "17m404kdz9avihz52xd7hn5qx06a6k74gmn0gbhly4gl84w3zc6y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/crappy-jsp-mode"; - license = lib.licenses.free; - }; - }) {}; - creamsody-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "creamsody-theme"; - ename = "creamsody-theme"; - version = "20170222.258"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-theme-creamsody"; - rev = "32fa3f4e461da92700523b1b20e7b28974c19a26"; - sha256 = "01q1l8ajw6lpp1bb4yp8r70d86hcl4hy0mz7x1hzqsvb7flhppp0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/488f95b9e425726d641120130d894babcc3b3e85/recipes/creamsody-theme"; - sha256 = "0l3mq43bszxrz0bxmxb76drp4c8721cw8akgk3l5a800wqbfp2l7"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/creamsody-theme"; - license = lib.licenses.free; - }; - }) {}; - creds = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "creds"; - ename = "creds"; - version = "20140510.1006"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "emacs-creds"; - rev = "00ebefd10005c170b790a01380cb6a98f798ce5c"; - sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81b032049ccc3837e8693f010b39716912f76bba/recipes/creds"; - sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/creds"; - license = lib.licenses.free; - }; - }) {}; - creole = callPackage ({ fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , noflet }: - melpaBuild { - pname = "creole"; - ename = "creole"; - version = "20140924.800"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "elwikicreole"; - rev = "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53"; - sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/creole"; - sha256 = "1q1c6f953g39xal1p7rj8dlcx2crk5cz1q07zp8bgp5jx4nd2z9n"; - name = "recipe"; - }; - packageRequires = [ kv noflet ]; - meta = { - homepage = "https://melpa.org/#/creole"; - license = lib.licenses.free; - }; - }) {}; - creole-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "creole-mode"; - ename = "creole-mode"; - version = "20130721.1750"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "creole-mode"; - rev = "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4"; - sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f04f93ab9482dbabfdbe3f0c8186c62a9a80c8b3/recipes/creole-mode"; - sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/creole-mode"; - license = lib.licenses.free; - }; - }) {}; - cricbuzz = callPackage ({ dash - , enlive - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cricbuzz"; - ename = "cricbuzz"; - version = "20180804.1554"; - src = fetchFromGitHub { - owner = "lepisma"; - repo = "cricbuzz.el"; - rev = "0b95d45991bbcd2fa58d96ce921f6a57ba42c153"; - sha256 = "1s77a2lfy7nnaxm3ai9dg8lbdxp0892z4gr0yxqrgzawc4qcbb3x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cricbuzz"; - sha256 = "18nmr7rpbylqgfx5q3ps38wx9q1ndj06msgyjyc8lqpipbsz0pip"; - name = "recipe"; - }; - packageRequires = [ dash enlive f s ]; - meta = { - homepage = "https://melpa.org/#/cricbuzz"; - license = lib.licenses.free; - }; - }) {}; - crm-custom = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crm-custom"; - ename = "crm-custom"; - version = "20160116.1606"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "crm-custom"; - rev = "f1aaccf64306a5f99d9bf7ba815d7ea41c15518d"; - sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e0752ba601a8d518d3c7fb54fd008602e7dc19f/recipes/crm-custom"; - sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/crm-custom"; - license = lib.licenses.free; - }; - }) {}; - crontab-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crontab-mode"; - ename = "crontab-mode"; - version = "20190304.623"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "crontab-mode"; - rev = "090ed61e919df6391df45a7645a0d8d5b0dae1cb"; - sha256 = "1yz9vvh2x6s2y02n1z8aqgb40bxgs2s2mxmy1vmp2piffq81d09y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0831d0f869cad4681b22296225307aa5bf185f3f/recipes/crontab-mode"; - sha256 = "1lwkj5c8435xgqi9d4zgnp9dzi06byibf69fv9p3x79kv565g3gd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/crontab-mode"; - license = lib.licenses.free; - }; - }) {}; - crux = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "crux"; - ename = "crux"; - version = "20181108.27"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "crux"; - rev = "308f17d914e2cd79cbc809de66d02b03ceb82859"; - sha256 = "0rf84finwlvmy0xpgyljjvnrijlmkzjyw9rh97svgxp9c1rzfk0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/575e3442a925500a5806e0b900208c1e6bfd11ae/recipes/crux"; - sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/crux"; - license = lib.licenses.free; - }; - }) {}; - cryptol-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cryptol-mode"; - ename = "cryptol-mode"; - version = "20190531.1351"; - src = fetchFromGitHub { - owner = "thoughtpolice"; - repo = "cryptol-mode"; - rev = "81ebbde83f7cb75b2dfaefc09de6a1703068c769"; - sha256 = "1y24hssckqi8bapm24b6zw7lagdsh3gaacvq5pscgnjbqpk2rlvp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode"; - sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cryptol-mode"; - license = lib.licenses.free; - }; - }) {}; - crystal-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crystal-mode"; - ename = "crystal-mode"; - version = "20190604.554"; - src = fetchFromGitHub { - owner = "crystal-lang-tools"; - repo = "emacs-crystal-mode"; - rev = "34124f546ff5c1136aed95bf0059015f9f6a1d60"; - sha256 = "09cmbw190w6aiwwc2bg349xx6vcv9b9ajw8m70ajb3653qnq3mw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b9b47d7deecf0cf24a42b26d50021cb1219a69/recipes/crystal-mode"; - sha256 = "1fgpz7zab6nc6kvjzjsbvrbg8shf4by0f20cvjvyky8kym72q0hk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/crystal-mode"; - license = lib.licenses.free; - }; - }) {}; - crystal-playground = callPackage ({ crystal-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crystal-playground"; - ename = "crystal-playground"; - version = "20180829.2201"; - src = fetchFromGitHub { - owner = "jasonrobot"; - repo = "crystal-playground"; - rev = "532dc7e4239eb4bdd241bc4347d34760344c1ebb"; - sha256 = "06vrmxikqi36wbnm66r5s5fxhkdlz76fjb3nhlighbqlym4bxpl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e8d3a41e3307f415a144ff55e7a5fa95216cd6c/recipes/crystal-playground"; - sha256 = "0789x443qrvxgrcha6rag11fwyr0aj1ixw6xc0l4d34fsy76ppwh"; - name = "recipe"; - }; - packageRequires = [ crystal-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/crystal-playground"; - license = lib.licenses.free; - }; - }) {}; - csgo-conf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csgo-conf-mode"; - ename = "csgo-conf-mode"; - version = "20161209.819"; - src = fetchFromGitHub { - owner = "wynro"; - repo = "emacs-csgo-conf-mode"; - rev = "df45ca833eb68c394dd03acce5733a33c3b06bf8"; - sha256 = "0bq9dr1zq1lkdy80jqvxpb0igdnz9jqjh7pif3190mh7m46zyr7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2298e3f840da549707ec3270c8303f4f63a674dc/recipes/csgo-conf-mode"; - sha256 = "0djx6jraqlh9da2jqagj72vjnc8n3px2jp23jdy9rk40z10m5sbr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/csgo-conf-mode"; - license = lib.licenses.free; - }; - }) {}; - csharp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csharp-mode"; - ename = "csharp-mode"; - version = "20181011.18"; - src = fetchFromGitHub { - owner = "josteink"; - repo = "csharp-mode"; - rev = "239527c1f27cf5246505f1faf23269487fdbfdd2"; - sha256 = "0ygc8mpsmicsm2j50kg22yllbj5ply56cwx9hvb6cflzmwlmgyvw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44/recipes/csharp-mode"; - sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/csharp-mode"; - license = lib.licenses.free; - }; - }) {}; - csound-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi - , shut-up }: - melpaBuild { - pname = "csound-mode"; - ename = "csound-mode"; - version = "20190321.859"; - src = fetchFromGitHub { - owner = "hlolli"; - repo = "csound-mode"; - rev = "f4bc9236bbc5a696f7ff32d9402749536a332546"; - sha256 = "0ds6cigm3pncsa5blqzfgisjn9v898ayj6nq2va6ssg73k0qfx1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c940d29de11e43b4abf2901c466c94d426a21818/recipes/csound-mode"; - sha256 = "047a78nhkn6qycsz8w9a0r1xyz5wyf4rds3z5yx9sn5wkv54w95d"; - name = "recipe"; - }; - packageRequires = [ emacs multi shut-up ]; - meta = { - homepage = "https://melpa.org/#/csound-mode"; - license = lib.licenses.free; - }; - }) {}; - csproj-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csproj-mode"; - ename = "csproj-mode"; - version = "20190514.1158"; - src = fetchFromGitHub { - owner = "omajid"; - repo = "csproj-mode"; - rev = "889334f8cd08dc79d133149b4504e0e001f5a769"; - sha256 = "0j330rrj6abr7xay1h2kajwa22npij0fdh30fk5z7zgas7jz735h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49823bd653c3599bbc6662c99d0406e9886f1bab/recipes/csproj-mode"; - sha256 = "08w22bfk6fs6cxyqxrcv3314vwmh868200axss5fsdfgbggs4vy1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/csproj-mode"; - license = lib.licenses.free; - }; - }) {}; - css-autoprefixer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "css-autoprefixer"; - ename = "css-autoprefixer"; - version = "20180311.900"; - src = fetchFromGitHub { - owner = "kkweon"; - repo = "emacs-css-autoprefixer"; - rev = "386a5defc8543a3b87820f1761c075c7d1d93b38"; - sha256 = "0ymba9bhzfi7kkrha4d4sn0hrc3sid4b5k8lhakwwdwafhym0jjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/122e3813a5b8a57303345e9cd855f4d85eced6f0/recipes/css-autoprefixer"; - sha256 = "0q40k8jvs4nc57kcljsx5qzylz9ms0kbr3dic3mr3bj0w062b1qg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/css-autoprefixer"; - license = lib.licenses.free; - }; - }) {}; - css-comb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "css-comb"; - ename = "css-comb"; - version = "20160415.2259"; - src = fetchFromGitHub { - owner = "channikhabra"; - repo = "css-comb.el"; - rev = "6fa45e5af8a8bd3af6c1154cde3540e32c4206ee"; - sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0afc24de7f847feaa128168d0fd8b2110242cca6/recipes/css-comb"; - sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/css-comb"; - license = lib.licenses.free; - }; - }) {}; - css-eldoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "css-eldoc"; - ename = "css-eldoc"; - version = "20150124.1923"; - src = fetchFromGitHub { - owner = "zenozeng"; - repo = "css-eldoc"; - rev = "c558ac4c470742c98a37290e6b409db28183df30"; - sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/css-eldoc"; - sha256 = "0k0yzpqwfh5rg8sbv60simdslag514768i0naimm8vyrvv87fzny"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/css-eldoc"; - license = lib.licenses.free; - }; - }) {}; - cssh = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cssh"; - ename = "cssh"; - version = "20150810.1009"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "cssh"; - rev = "2fe2754235225a59b63f08b130cfd4352e2e1c3f"; - sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da3fcf6252f83d80de8a3ec564244e6cd22391eb/recipes/cssh"; - sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cssh"; - license = lib.licenses.free; - }; - }) {}; - csv = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csv"; - ename = "csv"; - version = "20161113.710"; - src = fetchFromGitLab { - owner = "u11"; - repo = "csv.el"; - rev = "aa1dfa1263565d5fac3879c21d8ddf5f8915e411"; - sha256 = "1vmazjrfcsa9aa9aw8bq5sazdhqvhxyj837dyw5lmh8gk7z0xdaa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/233f9de5f65fd8374f2c1912503c30905aa6691d/recipes/csv"; - sha256 = "1rvi5p27lsb284zqgv4cdqkbqc9r92axmvg7sv52rm7qcj8njwqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/csv"; - license = lib.licenses.free; - }; - }) {}; - ctable = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctable"; - ename = "ctable"; - version = "20171005.1711"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-ctable"; - rev = "b8830d1ca95abb100a81bc32011bd17d5ecba000"; - sha256 = "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/ctable"; - sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ctable"; - license = lib.licenses.free; - }; - }) {}; - ctags-update = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctags-update"; - ename = "ctags-update"; - version = "20170728.58"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "ctags-update"; - rev = "783bf91eba1cd27cbb739067a24e15e5e04564e6"; - sha256 = "1navj3cm5gmp0h8wyk281i1gjry1kj0i73wlz1fjwkqm6awxfz4w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5d0c347ff8cf6e0ade80853775fd6b84f387fa5/recipes/ctags-update"; - sha256 = "07548jjpx4var2817y47i6br8iicjlj66n1b33h0av6r1h514nci"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ctags-update"; - license = lib.licenses.free; - }; - }) {}; - ctl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctl-mode"; - ename = "ctl-mode"; - version = "20151202.206"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "emacs-grads"; - rev = "1a13051db21b999c7682a015b33a03096ff9d891"; - sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38d2279fd05bb48f0d0e2276c605cd92892d0196/recipes/ctl-mode"; - sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ctl-mode"; - license = lib.licenses.free; - }; - }) {}; - ctune = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctune"; - ename = "ctune"; - version = "20190527.1725"; - src = fetchFromGitHub { - owner = "maurooaranda"; - repo = "ctune"; - rev = "276257231e5c19fa476e01077611b5bbcec9f852"; - sha256 = "0s9zbgibkfn7yr9dkpbvvprrn2ak62gsfzjmw4qfqgrg4y3s4x7w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/927ecd888bc00abff13f5fc335a88dffc2bf6779/recipes/ctune"; - sha256 = "1ymy508h19w6c7z93nww9fzirzk84w24j3dpbj08d08bifndhj1q"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ctune"; - license = lib.licenses.free; - }; - }) {}; - ctxmenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , popup - , yaxception }: - melpaBuild { - pname = "ctxmenu"; - ename = "ctxmenu"; - version = "20140303.1342"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-ctxmenu"; - rev = "5c2376859562b98c07c985d2b483658e4c0e888e"; - sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6fc4f51bb6ce8fa9e37c0aeb51696b1980aece0c/recipes/ctxmenu"; - sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; - name = "recipe"; - }; - packageRequires = [ log4e popup yaxception ]; - meta = { - homepage = "https://melpa.org/#/ctxmenu"; - license = lib.licenses.free; - }; - }) {}; - cubicaltt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cubicaltt"; - ename = "cubicaltt"; - version = "20171108.602"; - src = fetchFromGitHub { - owner = "mortberg"; - repo = "cubicaltt"; - rev = "a867f3d66172020e30dd0614bd7b50f90b6fddd7"; - sha256 = "1d53i4dscssfmcdspjf692jhsvjfzxb8d6wvs7a4m8f6z31ygkvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1be42b49c206fc4f0df6fb50fed80b3d9b76710b/recipes/cubicaltt"; - sha256 = "1wgy6965cnw201wx4a2pn71sa40mh2712y0d0470klr156krj0n9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/cubicaltt"; - license = lib.licenses.free; - }; - }) {}; - cubicle-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cubicle-mode"; - ename = "cubicle-mode"; - version = "20171009.1257"; - src = fetchFromGitHub { - owner = "cubicle-model-checker"; - repo = "cubicle"; - rev = "9d108b900e0123236b4991c2d06b5061f34feee8"; - sha256 = "1n3x6m19swkq07zah4hh0ni6gx864bq1w0km06nq33x8189zczrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81c29c912b83cbb536d30ba04130b39c0e5e5969/recipes/cubicle-mode"; - sha256 = "0xcmd0s6dfryl1ihfaqq0pfqc906yzzwk3d3nv8g6b6w78pv1lzv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cubicle-mode"; - license = lib.licenses.free; - }; - }) {}; - cucumber-goto-step = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcre2el }: - melpaBuild { - pname = "cucumber-goto-step"; - ename = "cucumber-goto-step"; - version = "20131209.2119"; - src = fetchFromGitHub { - owner = "gstamp"; - repo = "cucumber-goto-step"; - rev = "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa"; - sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d78d7abccfd9bcebf6888032639923327ad25309/recipes/cucumber-goto-step"; - sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8"; - name = "recipe"; - }; - packageRequires = [ pcre2el ]; - meta = { - homepage = "https://melpa.org/#/cucumber-goto-step"; - license = lib.licenses.free; - }; - }) {}; - cuda-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cuda-mode"; - ename = "cuda-mode"; - version = "20151213.1921"; - src = fetchFromGitHub { - owner = "chachi"; - repo = "cuda-mode"; - rev = "9ae9eacfdba3559b5456342d0d03296290df8ff5"; - sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d21cf17a4a9ae391e2e9cf9be3399095fa23ef55/recipes/cuda-mode"; - sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cuda-mode"; - license = lib.licenses.free; - }; - }) {}; - cursor-test = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cursor-test"; - ename = "cursor-test"; - version = "20131207.932"; - src = fetchFromGitHub { - owner = "ainame"; - repo = "cursor-test.el"; - rev = "e09956e048b88fd2ee8dd90b5678baed8b04d31b"; - sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6439f7561cfab4f6f3beb132d2a65e94b3deba9e/recipes/cursor-test"; - sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cursor-test"; - license = lib.licenses.free; - }; - }) {}; - cwl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "cwl-mode"; - ename = "cwl-mode"; - version = "20171205.145"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "cwl-mode"; - rev = "2fa8c8db68a8665ed555126975edd8749bcfc009"; - sha256 = "0zgnnvf8k5zcigykcf6slgcjmwb1l0jdfaqm19r34wp3md8wf0v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2309764cd56d9631dd97981a78b50b9fe793a280/recipes/cwl-mode"; - sha256 = "0x8akxxmphpgsc2m78h6b0fs6vvcfvmi1q2jrz8hwlmai8f7zi9j"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/cwl-mode"; - license = lib.licenses.free; - }; - }) {}; - cyberpunk-2019-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cyberpunk-2019-theme"; - ename = "cyberpunk-2019-theme"; - version = "20190228.653"; - src = fetchFromGitHub { - owner = "the-frey"; - repo = "cyberpunk-2019"; - rev = "77f41d0c15c59e13f11af5d285707dd21e72e342"; - sha256 = "12gray55ifv98ysyqsa51xh4w2yis0gki9blpvcbac02sm5xysgm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1821a436d3d9f7c46cbd198f93951aa35bbf6ad7/recipes/cyberpunk-2019-theme"; - sha256 = "09bg3avrsca308y3g86mrzi6klzr4ky8k5y2nbsmwarrarv29qyy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cyberpunk-2019-theme"; - license = lib.licenses.free; - }; - }) {}; - cyberpunk-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cyberpunk-theme"; - ename = "cyberpunk-theme"; - version = "20190109.1600"; - src = fetchFromGitHub { - owner = "n3mo"; - repo = "cyberpunk-theme.el"; - rev = "eb7b21b5655af9a0fa8c745ee1f16f8e073364e6"; - sha256 = "1si63j3mm36lfhiw5pnlv24ffg4ghicd1q7gi5jl2mp9105vs627"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c632d1e501d48dab54432ab111ce589aa229125/recipes/cyberpunk-theme"; - sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cyberpunk-theme"; - license = lib.licenses.free; - }; - }) {}; - cycbuf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cycbuf"; - ename = "cycbuf"; - version = "20131203.1237"; - src = fetchFromGitHub { - owner = "martinp26"; - repo = "cycbuf"; - rev = "1079b41c3eb27d65b66d4399959bb6253f84858e"; - sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39f1919271df023898e60f5e7635928dc905083f/recipes/cycbuf"; - sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cycbuf"; - license = lib.licenses.free; - }; - }) {}; - cycle-resize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cycle-resize"; - ename = "cycle-resize"; - version = "20160521.857"; - src = fetchFromGitHub { - owner = "pierre-lecocq"; - repo = "cycle-resize"; - rev = "7d255d6fe85f12c967a0f7fcfcf18633be194c88"; - sha256 = "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8806af6662c8250c7533f643fe1c277ff0466651/recipes/cycle-resize"; - sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cycle-resize"; - license = lib.licenses.free; - }; - }) {}; - cycle-themes = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cycle-themes"; - ename = "cycle-themes"; - version = "20150402.2009"; - src = fetchFromGitHub { - owner = "toroidal-code"; - repo = "cycle-themes.el"; - rev = "2660c3178be7b28c2cb5dde2dd70a4bd51dae3a2"; - sha256 = "0wc9wssridy49vshwj7xgrcfmalrv1r9wlr8nvs9d8m3ds39dzh6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f24c358fd616a86f6594001deddee4d62dbb0bc6/recipes/cycle-themes"; - sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cycle-themes"; - license = lib.licenses.free; - }; - }) {}; - cyphejor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cyphejor"; - ename = "cyphejor"; - version = "20181231.2304"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "cyphejor"; - rev = "7b1937abcded165efeabf37d26a7194a21cee3e6"; - sha256 = "163mhk7vqga230dz9aqfm01r85x7j3n9bmxiqiazj6p91zq0sxfs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad7cacfa39d8f85e26372ef21898663aebb68e43/recipes/cyphejor"; - sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cyphejor"; - license = lib.licenses.free; - }; - }) {}; - cypher-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cypher-mode"; - ename = "cypher-mode"; - version = "20151110.342"; - src = fetchFromGitHub { - owner = "fxbois"; - repo = "cypher-mode"; - rev = "ce8543d7877c736c574a17b49874c9dcdc7a06d6"; - sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef558e7425adfe87202475babfbc1a679dc4cde5/recipes/cypher-mode"; - sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cypher-mode"; - license = lib.licenses.free; - }; - }) {}; - cython-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cython-mode"; - ename = "cython-mode"; - version = "20190111.1350"; - src = fetchFromGitHub { - owner = "cython"; - repo = "cython"; - rev = "1c6ab8b7fe1f80e1ffc2c105b8202f1eba230f53"; - sha256 = "1f16ivvpnxmc47v0yblrmva8cpkj4fw3q8ya2hrdmbzbjlzfxlgi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; - sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cython-mode"; - license = lib.licenses.free; - }; - }) {}; - czech-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "czech-holidays"; - ename = "czech-holidays"; - version = "20160113.952"; - src = fetchFromGitHub { - owner = "hydandata"; - repo = "czech-holidays"; - rev = "d19828122cf3322bcf50601cefa4ac385d2d8f82"; - sha256 = "1ykcsfh5pj6b7ywdfggs8iqzfax0fyjnmr0ba76xwsj0vdrk3072"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7224fd77b3d8a37fac2fe0cf832e3487513afd8c/recipes/czech-holidays"; - sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/czech-holidays"; - license = lib.licenses.free; - }; - }) {}; - d-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "d-mode"; - ename = "d-mode"; - version = "20181204.2207"; - src = fetchFromGitHub { - owner = "Emacs-D-Mode-Maintainers"; - repo = "Emacs-D-Mode"; - rev = "b5d936dfd4c1d0b68a0d911aadd4ba25df7af0e4"; - sha256 = "0915kb9jcaixgindhj85fmykkhvj31ckp1yg6746fznwdgfrlifv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode"; - sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/d-mode"; - license = lib.licenses.free; - }; - }) {}; - dactyl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dactyl-mode"; - ename = "dactyl-mode"; - version = "20140906.1025"; - src = fetchFromGitHub { - owner = "luxbock"; - repo = "dactyl-mode"; - rev = "cc55fe6b987271d9647492b8df4c812d884f661f"; - sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72d503380511d2d6580b9522b6e0bd2d800bdebe/recipes/dactyl-mode"; - sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dactyl-mode"; - license = lib.licenses.free; - }; - }) {}; - dad-joke = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dad-joke"; - ename = "dad-joke"; - version = "20170927.2358"; - src = fetchFromGitHub { - owner = "davep"; - repo = "dad-joke.el"; - rev = "bee47e7b746b403228fa7d7361cb095de19ac9ba"; - sha256 = "14snnnjs28jg6k8x6g90m3dbcx10306ipcd256d3l6czk9p17vpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/484d571b2737f7c613816333afdde6460c64e635/recipes/dad-joke"; - sha256 = "1cg8iaq79w5zx1s3dirdl7ymcp162mmsy5c4vly90v20yrijblad"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dad-joke"; - license = lib.licenses.free; - }; - }) {}; - daemons = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "daemons"; - ename = "daemons"; - version = "20190202.728"; - src = fetchFromGitHub { - owner = "cbowdon"; - repo = "daemons.el"; - rev = "fd7925b0c113e5bad2e4692430ce049405794910"; - sha256 = "07l8k41ly92m3wkzlzyb9nmq4pd34xkpn7cjrdap7zfppd3iiq2r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f780485e72ae2885f698fdab0156855f70831f1/recipes/daemons"; - sha256 = "14givkrw9p0m261hawahzi0n8jarapb63kv1s62faq57mqnq23jr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/daemons"; - license = lib.licenses.free; - }; - }) {}; - dakrone-light-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dakrone-light-theme"; - ename = "dakrone-light-theme"; - version = "20170808.1440"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "dakrone-light-theme"; - rev = "06f198dc8b4ca7421990b30a23d89c8e0b8c5de4"; - sha256 = "01vqlsv44h2ah79c8jqv8vkqvgmhqx2w3qbq07l7fx3zkpgjfmpy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a88022a5f68d2fe01e08c2e99cfe380e3697b7/recipes/dakrone-light-theme"; - sha256 = "1njlpvfa4ar14zn51fdmby55vjgfkpskizg5rif2f3zn6y4np2xw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dakrone-light-theme"; - license = lib.licenses.free; - }; - }) {}; - dakrone-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dakrone-theme"; - ename = "dakrone-theme"; - version = "20170801.1233"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "dakrone-theme"; - rev = "232ad1be5f3572dcbdf528f1655109aa355a6937"; - sha256 = "0p51zni42hv090vv6mk9v0v88achmgxlsmlr40y8y6ng57w51r4s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dcc07077b47d7c710c7f2d4919d791ed16ed5b26/recipes/dakrone-theme"; - sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dakrone-theme"; - license = lib.licenses.free; - }; - }) {}; - danneskjold-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "danneskjold-theme"; - ename = "danneskjold-theme"; - version = "20190508.1506"; - src = fetchFromGitHub { - owner = "rails-to-cosmos"; - repo = "danneskjold-theme"; - rev = "b48bc0ef6fff2d41a083006b0db040eb2b2e7a8b"; - sha256 = "0p3bniim9rb3hsnm1ay12kjyh67mvlqswixjp0v2g8q8srmals33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec/recipes/danneskjold-theme"; - sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/danneskjold-theme"; - license = lib.licenses.free; - }; - }) {}; - dante = callPackage ({ company - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lcr - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dante"; - ename = "dante"; - version = "20190502.2345"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "dante"; - rev = "4170ff57f3fd9414915d7a72b805de8727bd81ee"; - sha256 = "0ii3fi8fwnl5q7j7mw165r6sqvyq4g6ymhdlcwb74agkzbssgs87"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante"; - sha256 = "1j0qwjshh2227k63vd06bvrsccymqssx26yfzams1xf7bp6y0krs"; - name = "recipe"; - }; - packageRequires = [ company dash emacs f flycheck haskell-mode lcr s ]; - meta = { - homepage = "https://melpa.org/#/dante"; - license = lib.licenses.free; - }; - }) {}; - dap-mode = callPackage ({ bui - , dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , s - , tree-mode }: - melpaBuild { - pname = "dap-mode"; - ename = "dap-mode"; - version = "20190524.2158"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "dap-mode"; - rev = "3440ea52f9062e2653d190bb1c5db42d5f73ca44"; - sha256 = "1g7z8q1zc1b46khy11x6xv49nhxsvl90s2xarvfpmjvpic76bhn1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/dap-mode"; - sha256 = "041mmla70ld5783gn8g360klk3cw39pir5d41544zf3yssk12qpn"; - name = "recipe"; - }; - packageRequires = [ - bui - dash - dash-functional - emacs - f - lsp-mode - s - tree-mode - ]; - meta = { - homepage = "https://melpa.org/#/dap-mode"; - license = lib.licenses.free; - }; - }) {}; - darcsum = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darcsum"; - ename = "darcsum"; - version = "20190316.1515"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "darcsum"; - rev = "6a8b690539d133c5e3d17cb23fe4365fbb6fb493"; - sha256 = "1ajdm0p8rdyaqy0wwfslb1mqj9b2dpk8xkljjw6ddacph5hflhcm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/darcsum"; - sha256 = "1qr3jh05awxxh2qi1sv542vkryfja44zswa5wxwj7g2dr6ck9jr1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darcsum"; - license = lib.licenses.free; - }; - }) {}; - darcula-theme = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darcula-theme"; - ename = "darcula-theme"; - version = "20171227.1045"; - src = fetchFromGitLab { - owner = "fommil"; - repo = "emacs-darcula-theme"; - rev = "d9b82b58ded9014985be6658f4ab17e26ed9e93e"; - sha256 = "1y8rsc63nl4n43pvn283f1vcpqyjnv6xl60fwyscwrqaz19bsnl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme"; - sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darcula-theme"; - license = lib.licenses.free; - }; - }) {}; - dark-krystal-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dark-krystal-theme"; - ename = "dark-krystal-theme"; - version = "20170808.600"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-dark-krystal-theme"; - rev = "79084b99665dc9ffb0ec62cc092349a5ecebebbc"; - sha256 = "1d3cdsaba71qxdqrbj1jrlq8a0iw3h50l5grcdjvxixdnf5nsa4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/dark-krystal-theme"; - sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dark-krystal-theme"; - license = lib.licenses.free; - }; - }) {}; - dark-mint-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dark-mint-theme"; - ename = "dark-mint-theme"; - version = "20160301.2242"; - src = fetchFromGitHub { - owner = "shaunvxc"; - repo = "dark-mint-theme"; - rev = "c8ad39b7115baf889b54c3e9bffe32daeab93c29"; - sha256 = "1bz7n9ijk69kqc1sv74prm2d74gd4xj0vzkbgbwdsin1llkg00zv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de74e734ae75df051475e60e79d4f5ad5bc128ae/recipes/dark-mint-theme"; - sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dark-mint-theme"; - license = lib.licenses.free; - }; - }) {}; - dark-souls = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dark-souls"; - ename = "dark-souls"; - version = "20140314.428"; - src = fetchFromGitHub { - owner = "tomjakubowski"; - repo = "dark-souls.el"; - rev = "2c9437265b52f966b2fb13a410a12f3b1e167cb7"; - sha256 = "0d4zjbkzjcvlc1jaszicbln0dvwacbj6k1fb1bn34vgbabhckdys"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/535577ce57bd772aca9f66e27485b0f58a7d35c5/recipes/dark-souls"; - sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dark-souls"; - license = lib.licenses.free; - }; - }) {}; - darkburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darkburn-theme"; - ename = "darkburn-theme"; - version = "20170423.952"; - src = fetchFromGitHub { - owner = "gorauskas"; - repo = "darkburn-theme"; - rev = "b59053533246330e9107721da7977a0af312c915"; - sha256 = "1ffmip31dnv3zzh1h9cpchl6lya49zn2j13acx6rj9r01ndlbrar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a04dd517e02bc4b4a62d956aa901a727354202b0/recipes/darkburn-theme"; - sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darkburn-theme"; - license = lib.licenses.free; - }; - }) {}; - darkmine-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darkmine-theme"; - ename = "darkmine-theme"; - version = "20160405.2324"; - src = fetchFromGitHub { - owner = "pierre-lecocq"; - repo = "darkmine-theme"; - rev = "7f7e82ca03bcad52911fa41fb3e204e32d6ee63e"; - sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e527d1335f5fd2aba5b00255a7d69adbc20585ff/recipes/darkmine-theme"; - sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darkmine-theme"; - license = lib.licenses.free; - }; - }) {}; - darkokai-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darkokai-theme"; - ename = "darkokai-theme"; - version = "20190603.1219"; - src = fetchFromGitHub { - owner = "sjrmanning"; - repo = "darkokai"; - rev = "a53815fbfb06604d7f51519c62cc11e507204a70"; - sha256 = "01jd3y3kr4fplvdv32smbaxqa2dafs8vvp967jma7xm7r1frnbdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81387a5a70f7c42fbae16b52db765136795a37e1/recipes/darkokai-theme"; - sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darkokai-theme"; - license = lib.licenses.free; - }; - }) {}; - darktooth-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darktooth-theme"; - ename = "darktooth-theme"; - version = "20190411.1842"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-theme-darktooth"; - rev = "5cc7fbfb08d2f1a33b85eac92b6450407b915119"; - sha256 = "164y8hrdz46gg1b6sfi7gdv7pj54hrin0lcmhxp6gc9x5dg3l354"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme"; - sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/darktooth-theme"; - license = lib.licenses.free; - }; - }) {}; - dart-mode = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dart-mode"; - ename = "dart-mode"; - version = "20190308.1714"; - src = fetchFromGitHub { - owner = "bradyt"; - repo = "dart-mode"; - rev = "d5776f1e9bfeb45eb30723eba3030691a8491545"; - sha256 = "0dlkzfj1bvd62qqfj3wc46gbyg82cw995zsb7jyc8ziz9n1a383z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/dart-mode"; - sha256 = "0zpvp86067a6l63wrpqxsm9fhv3n4ggbq8pg21vgiz54hk4x1xpp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs flycheck s ]; - meta = { - homepage = "https://melpa.org/#/dart-mode"; - license = lib.licenses.free; - }; - }) {}; - dash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash"; - ename = "dash"; - version = "20190424.1104"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "dash.el"; - rev = "258c324d9840901db83b2cabef3fa75bba57c1ba"; - sha256 = "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash"; - sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dash"; - license = lib.licenses.free; - }; - }) {}; - dash-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash-at-point"; - ename = "dash-at-point"; - version = "20180710.656"; - src = fetchFromGitHub { - owner = "stanaka"; - repo = "dash-at-point"; - rev = "4d795a23a8428c421d5107f1b005c9d8e0d1816c"; - sha256 = "09rxyr22qxc9pdrkg0c4smifh2r797ggz5hg74q8j8jybvixsbls"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2b0c544a76802df5ff3b1bf68a0418a653ea98/recipes/dash-at-point"; - sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dash-at-point"; - license = lib.licenses.free; - }; - }) {}; - dash-docs = callPackage ({ async - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash-docs"; - ename = "dash-docs"; - version = "20190516.1002"; - src = fetchFromGitHub { - owner = "gilbertw1"; - repo = "dash-docs"; - rev = "111fd9b97001f1ad887b45e5308a14ddd68ce70a"; - sha256 = "0sckb7z0ylflva212bns7iq9mfnffgjghi0qspsbfwra35zb9xng"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f597ec52f4bf55a748231751b6e51328e8f6f59/recipes/dash-docs"; - sha256 = "0vms4yr67l95rybvavd34a9gm57j7524swlf1c0rj8fff1wrmhn0"; - name = "recipe"; - }; - packageRequires = [ async cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/dash-docs"; - license = lib.licenses.free; - }; - }) {}; - dash-functional = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash-functional"; - ename = "dash-functional"; - version = "20180107.818"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "dash.el"; - rev = "528e5a51f1af668e3075f2beccd2b39785ccb2ba"; - sha256 = "0c65wkyzqsi0jignbhl0j9hh0711069x0l54sqbfb72viy0sppck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional"; - sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/dash-functional"; - license = lib.licenses.free; - }; - }) {}; - dashboard = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , page-break-lines }: - melpaBuild { - pname = "dashboard"; - ename = "dashboard"; - version = "20190604.939"; - src = fetchFromGitHub { - owner = "emacs-dashboard"; - repo = "emacs-dashboard"; - rev = "77e0720c3701cc3f868e701e85b358c0b18dec42"; - sha256 = "141j6xjms8im6bkikh04nq58brdkb7v4fvaz3csjs7c2r087g4x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3c6af6ff5d880e6336f8db32b22b64b182794e/recipes/dashboard"; - sha256 = "19l7mv57ra3i8bz35zfq0wrrp8mk0bzhng6wqpbf9dax4pq3pnp9"; - name = "recipe"; - }; - packageRequires = [ emacs page-break-lines ]; - meta = { - homepage = "https://melpa.org/#/dashboard"; - license = lib.licenses.free; - }; - }) {}; - dashboard-hackernews = callPackage ({ dashboard - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "dashboard-hackernews"; - ename = "dashboard-hackernews"; - version = "20190108.1805"; - src = fetchFromGitHub { - owner = "hyakt"; - repo = "emacs-dashboard-hackernews"; - rev = "b71814716d8f78181b9d1990f06072460de0797e"; - sha256 = "1dvv10xn2mh0nh85cd78y23cn8p9ygdhj4k7xs4fa6r7bhp0xvqm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ba74a9b76458bfd53e9cea7bd704d1488c9c98/recipes/dashboard-hackernews"; - sha256 = "0j5ai05g84cl6dhzw1cjvvhchg0sy7zwv355x87c5mg1kx0mrdpk"; - name = "recipe"; - }; - packageRequires = [ dashboard emacs request ]; - meta = { - homepage = "https://melpa.org/#/dashboard-hackernews"; - license = lib.licenses.free; - }; - }) {}; - dashboard-project-status = callPackage ({ dashboard - , emacs - , fetchFromGitHub - , fetchurl - , git - , lib - , melpaBuild }: - melpaBuild { - pname = "dashboard-project-status"; - ename = "dashboard-project-status"; - version = "20190202.554"; - src = fetchFromGitHub { - owner = "functionreturnfunction"; - repo = "dashboard-project-status"; - rev = "7675c138e9df8fe2c626e7ba9bbb8b6717671a41"; - sha256 = "1sbjrc1l57q2ifmw6pf3n105qk3q7rskqy9811qijpsbcl1m819d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfc05873c6532c866d89c4cc07eb84b447a25c70/recipes/dashboard-project-status"; - sha256 = "1r25xmscz3lrjm6jjix416py26za5l1ck3xa77qbyrr4rf1gsakg"; - name = "recipe"; - }; - packageRequires = [ dashboard emacs git ]; - meta = { - homepage = "https://melpa.org/#/dashboard-project-status"; - license = lib.licenses.free; - }; - }) {}; - date-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "date-at-point"; - ename = "date-at-point"; - version = "20150308.543"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "date-at-point.el"; - rev = "258c0268cc4357640c2af78774ba9667beff28ee"; - sha256 = "0cry52p29lr4lcwvpl96gam85m7d9jkskwmysb71mk6cg57zyjx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6dbeddd236f312fac1d5542dfd2edf81df8fad2/recipes/date-at-point"; - sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/date-at-point"; - license = lib.licenses.free; - }; - }) {}; - date-field = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "date-field"; - ename = "date-field"; - version = "20141128.1705"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-date-field"; - rev = "3b0af9c49293fc4346078ed2e13a6ebf41bbe54e"; - sha256 = "1skvkbbqvwbw58ahdbf2m1z7s0kfi5v7c0lavc9ifrs91pqpqx9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe790729a67d2210cbccefce43805daa20db647d/recipes/date-field"; - sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; - name = "recipe"; - }; - packageRequires = [ dash log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/date-field"; - license = lib.licenses.free; - }; - }) {}; - datetime = callPackage ({ emacs - , extmap - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "datetime"; - ename = "datetime"; - version = "20190404.1137"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "datetime"; - rev = "8c6d6fc991766e6bf9cefc4ea4b04eeae8116a84"; - sha256 = "0c5y304pvns8jhy4fpz4jmbfxdgz8ms04hgrnsb0g168szc9g0s9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/datetime"; - sha256 = "0c000fnqg936dhjw5qij4lydzllw1x1jgnyy960zh6r61pk062xj"; - name = "recipe"; - }; - packageRequires = [ emacs extmap ]; - meta = { - homepage = "https://melpa.org/#/datetime"; - license = lib.licenses.free; - }; - }) {}; - datetime-format = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "datetime-format"; - ename = "datetime-format"; - version = "20160612.1015"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "emacs-datetime"; - rev = "e6427538b547cbe02e1bd6ed4b765c73620bdae8"; - sha256 = "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/datetime-format"; - sha256 = "19qccjz2lzh01glgkixya7bxd6pvyjqgmw8bmqlwag6cb68bwsyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/datetime-format"; - license = lib.licenses.free; - }; - }) {}; - datomic-snippets = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , yasnippet }: - melpaBuild { - pname = "datomic-snippets"; - ename = "datomic-snippets"; - version = "20180817.345"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "datomic-snippets"; - rev = "4a14228840d5252e13d2bf6209670f26345bbb84"; - sha256 = "1nvng479sy7ykwy9a86qq48yzv8n0903g724srhf42v9c81fc9s7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4da8ec133ec5e1204966c1b12c9bc0ca1b50d643/recipes/datomic-snippets"; - sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r"; - name = "recipe"; - }; - packageRequires = [ dash s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/datomic-snippets"; - license = lib.licenses.free; - }; - }) {}; - dayone = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , mustache - , uuid }: - melpaBuild { - pname = "dayone"; - ename = "dayone"; - version = "20160105.440"; - src = fetchFromGitHub { - owner = "mori-dev"; - repo = "emacs-dayone"; - rev = "ab628274f0806451f23bce16f62a6a11cbf91a2b"; - sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7c34ae046b75994cf04d16642bf28d4645d1821/recipes/dayone"; - sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l"; - name = "recipe"; - }; - packageRequires = [ ht mustache uuid ]; - meta = { - homepage = "https://melpa.org/#/dayone"; - license = lib.licenses.free; - }; - }) {}; - db = callPackage ({ fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild }: - melpaBuild { - pname = "db"; - ename = "db"; - version = "20140421.1411"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-db"; - rev = "b3a423fb8e72f9013009cbe033d654df2ce31438"; - sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/79ac40439b65c217e1caaa7175d26556b6a6c889/recipes/db"; - sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n"; - name = "recipe"; - }; - packageRequires = [ kv ]; - meta = { - homepage = "https://melpa.org/#/db"; - license = lib.licenses.free; - }; - }) {}; - db-pg = callPackage ({ db - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pg }: - melpaBuild { - pname = "db-pg"; - ename = "db-pg"; - version = "20130131.1102"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-db-pg"; - rev = "7d5ab86b74b05fe003b3b434d4835f37f3f3eded"; - sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c4eb90ea7b8ed5c529c74c3faeaf3eac3955eb31/recipes/db-pg"; - sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg"; - name = "recipe"; - }; - packageRequires = [ db pg ]; - meta = { - homepage = "https://melpa.org/#/db-pg"; - license = lib.licenses.free; - }; - }) {}; - ddskk = callPackage ({ ccc - , cdb - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ddskk"; - ename = "ddskk"; - version = "20190423.534"; - src = fetchFromGitHub { - owner = "skk-dev"; - repo = "ddskk"; - rev = "3248b05c204d05019210e87ac7730fbbcf72df1d"; - sha256 = "1j2wqks75ds7i22g18bcm9y36l14fiqw35vsks1n6brdvsv3ys91"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6eccccb79881eaa04af3ed6395cd2ab981d9c894/recipes/ddskk"; - sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9"; - name = "recipe"; - }; - packageRequires = [ ccc cdb ]; - meta = { - homepage = "https://melpa.org/#/ddskk"; - license = lib.licenses.free; - }; - }) {}; - deadgrep = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , spinner }: - melpaBuild { - pname = "deadgrep"; - ename = "deadgrep"; - version = "20190516.1459"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "deadgrep"; - rev = "caeb37b8d6ab83f0eba353d6bbb29678190d4419"; - sha256 = "158fqha8nilwfzmw15lcsq8b099j8wclzq303md0j4mfr2q2gfvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93389fae7233b83ea904e17bdaf83f8247cda3d8/recipes/deadgrep"; - sha256 = "01m5ds7lic9g11a5iwzw86k6xcv56wbbzjm1343ckbbi255h9i09"; - name = "recipe"; - }; - packageRequires = [ dash emacs s spinner ]; - meta = { - homepage = "https://melpa.org/#/deadgrep"; - license = lib.licenses.free; - }; - }) {}; - debian-el = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "debian-el"; - ename = "debian-el"; - version = "20181020.813"; - src = fetchgit { - url = "https://salsa.debian.org/emacsen-team/debian-el.git"; - rev = "a499822afc2154ca83edf6a605ed22c5a932fa12"; - sha256 = "0bfgh6v0q93lfd0q628r11jd45cys89z4874a19w61cb0mfpvks0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a381ec81eb160365f478c6a3af638c14558d7d6/recipes/debian-el"; - sha256 = "0x74a4nm2p4w82kzrdqy90969sminsrhdzppld2mg63jg0wxb8ga"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/debian-el"; - license = lib.licenses.free; - }; - }) {}; - debpaste = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "debpaste"; - ename = "debpaste"; - version = "20160113.1547"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "debpaste.el"; - rev = "038f0ff7824f4e3dd455e2232eeca70fa8abcec5"; - sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/debpaste"; - sha256 = "0h3hx3vgdhchmndabmzprddq3bxd80jnv4xvma9v6k1v07bl721v"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/debpaste"; - license = lib.licenses.free; - }; - }) {}; - debug-print = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "debug-print"; - ename = "debug-print"; - version = "20140125.1619"; - src = fetchFromGitHub { - owner = "kenoss"; - repo = "debug-print"; - rev = "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5"; - sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaaa43f6ce7db654b651969797978164143b269/recipes/debug-print"; - sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/debug-print"; - license = lib.licenses.free; - }; - }) {}; - decide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "decide"; - ename = "decide"; - version = "20190201.1337"; - src = fetchFromGitHub { - owner = "lifelike"; - repo = "decide-mode"; - rev = "4bfcc826dd5b1c30caec455d8baa4f363159eac6"; - sha256 = "07rwflgqlsgqrw2v7rbshrbcr1qkgsx59y904jspvj310s8bsczg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6adcd300e2ac2c718989cf855fd7b3eef654df00/recipes/decide"; - sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/decide"; - license = lib.licenses.free; - }; - }) {}; - decl = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "decl"; - ename = "decl"; - version = "20171212.658"; - src = fetchFromGitHub { - owner = "preetpalS"; - repo = "decl.el"; - rev = "f16b96e322c646d6018dfbd3c3ba8b2b75fcb9e1"; - sha256 = "07zg8grnqxg27fpksy8b94ry25ljrkag4ffq15d78k8nqmqmf3b8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ecd46180643a0c493e05ec86fe50bc1e55146/recipes/decl"; - sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/decl"; - license = lib.licenses.free; - }; - }) {}; - dedicated = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dedicated"; - ename = "dedicated"; - version = "20090428.1231"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "dedicated"; - rev = "8275fb672f9cc4ba6682ebda0ef91db827e32992"; - sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/dedicated"; - sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dedicated"; - license = lib.licenses.free; - }; - }) {}; - dedukti-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dedukti-mode"; - ename = "dedukti-mode"; - version = "20171103.512"; - src = fetchFromGitHub { - owner = "rafoo"; - repo = "dedukti-mode"; - rev = "d7c3505a1046187de3c3aeb144455078d514594e"; - sha256 = "1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/767a685fbe8ae86177e90a17dac3815d41d74df4/recipes/dedukti-mode"; - sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dedukti-mode"; - license = lib.licenses.free; - }; - }) {}; - default-text-scale = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "default-text-scale"; - ename = "default-text-scale"; - version = "20190107.1218"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "default-text-scale"; - rev = "f425d3765c4dea3f2e550720278f9d424579ee5d"; - sha256 = "0h42jiwxrxjmk7ccwh3h25n7dy2rq61ncm5wx27jhkncc5jdm4h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2/recipes/default-text-scale"; - sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/default-text-scale"; - license = lib.licenses.free; - }; - }) {}; - deferred = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "deferred"; - ename = "deferred"; - version = "20170901.630"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-deferred"; - rev = "2239671d94b38d92e9b28d4e12fd79814cfb9c16"; - sha256 = "0vz59lm7pfz0gbsgrb44y555js85wbdjn0zm6p8wfqjiqf63ds3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/deferred"; - sha256 = "1i8jfapzmw86iqwhnnlqmcj6zh4hyhizdcwjxcnxdj6kvxmwyysm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/deferred"; - license = lib.licenses.free; - }; - }) {}; - define-word = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "define-word"; - ename = "define-word"; - version = "20190506.825"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "define-word"; - rev = "11bfee628aee082a9a3a2fd5f083cbdb05d5d00a"; - sha256 = "1yrhrvqiyp4cv6bpvdrkc5zfwflb1jx8kmivjkpv6765pnr11zp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word"; - sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/define-word"; - license = lib.licenses.free; - }; - }) {}; - defproject = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "defproject"; - ename = "defproject"; - version = "20151201.1419"; - src = fetchFromGitHub { - owner = "kotfic"; - repo = "defproject"; - rev = "674d48a5e34cb4bba76faa38ee901322ec649086"; - sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86465b351e668d6c19a6fc8e1b1a4aa7904cd139/recipes/defproject"; - sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/defproject"; - license = lib.licenses.free; - }; - }) {}; - defrepeater = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "defrepeater"; - ename = "defrepeater"; - version = "20180829.2110"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "defrepeater.el"; - rev = "62b00ede57d2e115b9ef9f21268c021ae1186873"; - sha256 = "106q2h4djcf1q9v31wmimj59fiqmclgxw13s8zjnhv3sc2m3z1ka"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0d9cf994233ad098826c6933dfd57665044f598/recipes/defrepeater"; - sha256 = "1zlp206dy5qipb7m3m77j4har258rxgwxg5ipflym4jj183maa39"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/defrepeater"; - license = lib.licenses.free; - }; - }) {}; - deft = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "deft"; - ename = "deft"; - version = "20181226.734"; - src = fetchFromGitHub { - owner = "jrblevin"; - repo = "deft"; - rev = "f54e8a65a7e75a029657364055420374df45656d"; - sha256 = "1vas6jgwli0jcxmxmcwvzwv4414q8kkmhqfz5m96r7l4lpgcrhdr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/deft"; - sha256 = "0f6z9hsigbwdsmg0abk1ddl9j19d0rpj4gzkl0d5arcpqbla26hp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/deft"; - license = lib.licenses.free; - }; - }) {}; - delim-kill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "delim-kill"; - ename = "delim-kill"; - version = "20100516.2320"; - src = fetchFromGitHub { - owner = "thomas11"; - repo = "delim-kill"; - rev = "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1"; - sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/delim-kill"; - sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/delim-kill"; - license = lib.licenses.free; - }; - }) {}; - demangle-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "demangle-mode"; - ename = "demangle-mode"; - version = "20190527.2006"; - src = fetchFromGitHub { - owner = "liblit"; - repo = "demangle-mode"; - rev = "06903d731dfde110e10b979dcc7624ef6dbb5ac8"; - sha256 = "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode"; - sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/demangle-mode"; - license = lib.licenses.free; - }; - }) {}; - demo-it = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "demo-it"; - ename = "demo-it"; - version = "20180403.2032"; - src = fetchFromGitHub { - owner = "howardabrams"; - repo = "demo-it"; - rev = "4f74e6f1bb6519587303e20fe59470853b1a0352"; - sha256 = "15j4f7jjjhrcjycxwzqnwqhm3fyvjnisd41k5lw13dnhbmp1gzx6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1dec5877db00c29d81d76be0ee2504399bad9cc4/recipes/demo-it"; - sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/demo-it"; - license = lib.licenses.free; - }; - }) {}; - describe-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yabin }: - melpaBuild { - pname = "describe-number"; - ename = "describe-number"; - version = "20151031.1755"; - src = fetchFromGitHub { - owner = "netromdk"; - repo = "describe-number"; - rev = "40618345a37831804b29589849a785ef5aa5ac24"; - sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ed9063f7e9f540bc90c1df4e3604d4af9bcfe5/recipes/describe-number"; - sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; - name = "recipe"; - }; - packageRequires = [ yabin ]; - meta = { - homepage = "https://melpa.org/#/describe-number"; - license = lib.licenses.free; - }; - }) {}; - desktop-environment = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-environment"; - ename = "desktop-environment"; - version = "20190526.128"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "desktop-environment"; - rev = "284c38fcb5b10746255ee4123eaa549e028df0c8"; - sha256 = "14ija2rrz3zjhjbzxg84j5fq6xph4ah7w9bkqnq37by040cydvhw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe988e0dd4a1272ecf7b2fe758ef0c81e2acad2/recipes/desktop-environment"; - sha256 = "0iai1awpkv4n8k263854mx95c8yh2vvif6z91mgn6hck8774v9zp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/desktop-environment"; - license = lib.licenses.free; - }; - }) {}; - desktop-plus = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-plus"; - ename = "desktop+"; - version = "20170107.1332"; - src = fetchFromGitHub { - owner = "ffevotte"; - repo = "desktop-plus"; - rev = "d26f369bda96860eef18365cdb5c79f39a2c765c"; - sha256 = "19z44rm2071hq3664gngywhr7k4wcbdzbixmwjl2x0sp0bdzg2v6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b009b42c73490d56d4613dcf5a57447fb4ccab4/recipes/desktop+"; - sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/desktop+"; - license = lib.licenses.free; - }; - }) {}; - desktop-registry = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-registry"; - ename = "desktop-registry"; - version = "20140119.1343"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "desktop-registry"; - rev = "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"; - sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/desktop-registry"; - sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/desktop-registry"; - license = lib.licenses.free; - }; - }) {}; - detour = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "detour"; - ename = "detour"; - version = "20181122.1338"; - src = fetchFromGitHub { - owner = "ska2342"; - repo = "detour"; - rev = "f41f17cf1cf4f3db41563ff011786b6567596fb4"; - sha256 = "1mgz2gicp7wm41x8y8q4wwsa92pga67wngpf8473lb2jrzpf78k6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/010af7946b10ded846225a19d375434b5d9427a8/recipes/detour"; - sha256 = "0w63vqlzkvx54y8y71gzzdyxzm4430bqfyapzyrzrsmxh773hnmn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/detour"; - license = lib.licenses.free; - }; - }) {}; - devdocs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "devdocs"; - ename = "devdocs"; - version = "20170731.150"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "DevDocs.el"; - rev = "a2d51e824f0cc48a9dd611cc740bc8b86143e611"; - sha256 = "0nzh7pgvj4cs5d29lrrmbas29xdslgqzsqjmpapzqzbnrgprnbx8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/devdocs"; - sha256 = "14vab71fy5i1ccmzgfdg37lfs1ix3qwhcyk9lvbahcmwnbnimlzm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/devdocs"; - license = lib.licenses.free; - }; - }) {}; - dfmt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dfmt"; - ename = "dfmt"; - version = "20170728.323"; - src = fetchFromGitHub { - owner = "qsimpleq"; - repo = "elisp-dfmt"; - rev = "21b9094e907b7ac53f5ecb4ff4539613a9d12434"; - sha256 = "11r1i8nlz98z49fqb447abg1pv6838q54ly19wyg82k52875ms7m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a343a752d25185b30b10805c4012f3b21a03651e/recipes/dfmt"; - sha256 = "06g9yimw6q4wl2prspr8vjyv2pxk8bb0451wplpp70h5ajfwy3dz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dfmt"; - license = lib.licenses.free; - }; - }) {}; - dhall-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "dhall-mode"; - ename = "dhall-mode"; - version = "20190526.1413"; - src = fetchFromGitHub { - owner = "psibi"; - repo = "dhall-mode"; - rev = "1b71e8e7123647761d8f35916c06b7280b2929ea"; - sha256 = "12xpzaby75fczxj885ij9wgrc9pn05mg5s7abgfr1irvkq7s467n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7ab435077b2f47d75ddc0ff10c64ee2b46044e2/recipes/dhall-mode"; - sha256 = "1zkspjwllcw9k4nlnif6jdwzl08ki39vmx90apw029n87xhvx7mp"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/dhall-mode"; - license = lib.licenses.free; - }; - }) {}; - dianyou = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dianyou"; - ename = "dianyou"; - version = "20190604.515"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "dianyou"; - rev = "1a1fe6da3196f91db7b76b6c552ca4f2629e36bf"; - sha256 = "1bgyq4zrhzlqmfgv3az4csgsrqidlshwjbx4r9l2rydk3k3gl78n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/059b003c74acdfdd917ecb6fecb782a0f54d155b/recipes/dianyou"; - sha256 = "1mz3nvr62gfkhbayw7784c8kn8drbiq9hlqv1g5vd9pdfhxqs8jl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dianyou"; - license = lib.licenses.free; - }; - }) {}; - diary-manager = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diary-manager"; - ename = "diary-manager"; - version = "20181214.1926"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "diary-manager"; - rev = "919f724bb58e36b8626dd8d7c8475f71c0c54443"; - sha256 = "12zg022bhfn4gsclb5wk8wh0bqyy0v5j37369haq6rb5jcc6x5fb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a014f4d862a2480f7edb1266f79ce0801cca13c2/recipes/diary-manager"; - sha256 = "1sk0pvadx4jmv93dj796ysn3jh2wvywayd7dd20v22kdvnlii73d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/diary-manager"; - license = lib.licenses.free; - }; - }) {}; - dic-lookup-w3m = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , stem - , w3m }: - melpaBuild { - pname = "dic-lookup-w3m"; - ename = "dic-lookup-w3m"; - version = "20180526.921"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "dic-lookup-w3m"; - rev = "3254ab10cbf0078c7162557dd1f68dac28459cf9"; - sha256 = "0g8kzaxjka7n9jdldh45m22nizgv0m0v94ns7vmmhf1hpsf3zfxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30de78c9cf83de30093a5647976eeaf552d4b2cb/recipes/dic-lookup-w3m"; - sha256 = "1kwbmzzf8sj4bn5kicmlp2hzv8ydcikwmdy7s40ggkgf1mk9zvqr"; - name = "recipe"; - }; - packageRequires = [ stem w3m ]; - meta = { - homepage = "https://melpa.org/#/dic-lookup-w3m"; - license = lib.licenses.free; - }; - }) {}; - dictcc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "dictcc"; - ename = "dictcc"; - version = "20190118.1202"; - src = fetchFromGitHub { - owner = "cqql"; - repo = "dictcc.el"; - rev = "3244897515db954eafeed9648e7a0011b89c3ce2"; - sha256 = "1nlgz3i8kynhl6d6h5rszja14z5n7ri83mm5ks90nbdhjcqwk3qd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e867df96915a0c4f22fdccd4e2096878895bda6/recipes/dictcc"; - sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/dictcc"; - license = lib.licenses.free; - }; - }) {}; - dictionary = callPackage ({ connection - , fetchFromGitHub - , fetchurl - , lib - , link - , melpaBuild }: - melpaBuild { - pname = "dictionary"; - ename = "dictionary"; - version = "20190403.1218"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "6edc1d0a4156d33c3da0c1649c308b809fda46e1"; - sha256 = "0g95q3yggzxr8d2gjxamfwx8xbzf182naxpb265r7v9awd35bqk5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/dictionary"; - sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; - name = "recipe"; - }; - packageRequires = [ connection link ]; - meta = { - homepage = "https://melpa.org/#/dictionary"; - license = lib.licenses.free; - }; - }) {}; - diff-hl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diff-hl"; - ename = "diff-hl"; - version = "20190223.1533"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "diff-hl"; - rev = "84a5fe1900af2e5cc522f02749804f0d9f094bbf"; - sha256 = "1xlsg728mz3cwhrsqvisa0aidic67nymd9g7h4c1h3q63j39yb2s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/diff-hl"; - sha256 = "135jgjfaiq6kj72ji5k22v4pqc8gjjmcv80r5rkjbjigzlvcvvj2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/diff-hl"; - license = lib.licenses.free; - }; - }) {}; - difflib = callPackage ({ cl-generic - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "difflib"; - ename = "difflib"; - version = "20171227.718"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "difflib.el"; - rev = "b08850251812d71e62fd6956081299590acdf37b"; - sha256 = "03k5iy610f1m2nmkdk69p49fcfqfyxmy3h6fqvqsr2v1hix8i54a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df1924ddff6fd1b5fa32481d3b3d6fbe89a127d3/recipes/difflib"; - sha256 = "07bm5hib3ihrrx0lhfsl6km9gfckl73qd4cb37h93zw0hc9xwhy6"; - name = "recipe"; - }; - packageRequires = [ cl-generic emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/difflib"; - license = lib.licenses.free; - }; - }) {}; - diffscuss-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diffscuss-mode"; - ename = "diffscuss-mode"; - version = "20141014.1657"; - src = fetchFromGitHub { - owner = "tomheon"; - repo = "diffscuss"; - rev = "bbc6dbed4b97d1eb9ae5dae021ed1e066129bd98"; - sha256 = "0ppsgfzmdg0r418n2x0qxwhyqs7hjj8fgazc4xzgs8fsg4j3h7mr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/diffscuss-mode"; - sha256 = "1mycjis38gqwha7jgj05fzv0041ghk6khy5d2dlcyy2nh3bb68rb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diffscuss-mode"; - license = lib.licenses.free; - }; - }) {}; - diffview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diffview"; - ename = "diffview"; - version = "20150928.2211"; - src = fetchFromGitHub { - owner = "mgalgs"; - repo = "diffview-mode"; - rev = "031b70913e755c5e55222680f80185032a7d1728"; - sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea5dd4c9c114618ac20f565c878f509ce8d9872/recipes/diffview"; - sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diffview"; - license = lib.licenses.free; - }; - }) {}; - digistar-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "digistar-mode"; - ename = "digistar-mode"; - version = "20160218.1155"; - src = fetchFromGitHub { - owner = "retroj"; - repo = "digistar-mode"; - rev = "15288b1e1a04b79b5ab7097fdd26d48b2ff41076"; - sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/851fa17152b664df99b80a654e5c055bb5227181/recipes/digistar-mode"; - sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/digistar-mode"; - license = lib.licenses.free; - }; - }) {}; - digit-groups = callPackage ({ dash - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "digit-groups"; - ename = "digit-groups"; - version = "20160816.1926"; - src = fetchhg { - url = "https://bitbucket.com/adamsmd/digit-groups"; - rev = "ee1d6de37260"; - sha256 = "0rkajjlw820gfx1kclkcvdq7milhiid2yzvn9hd275ydskrhhwlp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eea9d435c7c1889b16549a0ef3f66483b2de3605/recipes/digit-groups"; - sha256 = "1wy1hf15qi9v0wz2rykpf40v3g2n4mha6h207m0zn8l8rb79hwjq"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/digit-groups"; - license = lib.licenses.free; - }; - }) {}; - digitalocean = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "digitalocean"; - ename = "digitalocean"; - version = "20180603.225"; - src = fetchFromGitLab { - owner = "olymk2"; - repo = "emacs-digitalocean"; - rev = "1cac663c4bcb7f8325783954df6c0caf3dc20f6e"; - sha256 = "0iinc4c3bpqqwp077437hl4z1ja7fwc1qq2ldbi7xbz4cn819f2l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc81950b42e4fdc9e6710ba1b859f0fba98be3fa/recipes/digitalocean"; - sha256 = "086v4wrzkjgjks6lfp2hn97pcbplxmc7y7bbiriw4gixgqds6yx9"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/digitalocean"; - license = lib.licenses.free; - }; - }) {}; - digitalocean-helm = callPackage ({ digitalocean - , emacs - , fetchFromGitLab - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "digitalocean-helm"; - ename = "digitalocean-helm"; - version = "20180610.46"; - src = fetchFromGitLab { - owner = "olymk2"; - repo = "emacs-digitalocean-helm"; - rev = "b125c9882eded7d73ec109d152b26625f333440b"; - sha256 = "072v1800gjv566fqjxp8dvzkilwhbvl7lc5fqc0mr4xw8lpldkx9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc81950b42e4fdc9e6710ba1b859f0fba98be3fa/recipes/digitalocean-helm"; - sha256 = "0q1ir6i9x1ql5c8vg1bff9px2jpwb0rxfiavk9fj3mqbjdifrz0w"; - name = "recipe"; - }; - packageRequires = [ digitalocean emacs helm ]; - meta = { - homepage = "https://melpa.org/#/digitalocean-helm"; - license = lib.licenses.free; - }; - }) {}; - dim = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dim"; - ename = "dim"; - version = "20160818.249"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "dim.el"; - rev = "110624657fec0c8a7b3589108230e6a635302ae0"; - sha256 = "1qiqkppfpgyqm1z31i956gj96670kjxs7m33knmhngqk7i5yc94i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a740ab40cab3a1890f56df808f41a2d541aa77c/recipes/dim"; - sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dim"; - license = lib.licenses.free; - }; - }) {}; - dim-autoload = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dim-autoload"; - ename = "dim-autoload"; - version = "20180318.1327"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "dim-autoload"; - rev = "2ff7ded0c9f8bb582fb9018bea47ead44d048cf8"; - sha256 = "0lbfgfx3015b1kspqrsnlpvzl7i06yxafj1i2lpcy7ay4fv5rp54"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload"; - sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dim-autoload"; - license = lib.licenses.free; - }; - }) {}; - diminish = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diminish"; - ename = "diminish"; - version = "20170419.1036"; - src = fetchFromGitHub { - owner = "myrjola"; - repo = "diminish.el"; - rev = "d5c61a14e1a5590a65f83c099a5bd42fcadff24d"; - sha256 = "0c0p4b3nfnczmkjx64qz2w9dk0b7srfnhrnd902qn9z55k4n0wg8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1bfb4acb381cada46458cf60eae9b88d007294d5/recipes/diminish"; - sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diminish"; - license = lib.licenses.free; - }; - }) {}; - dimmer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dimmer"; - ename = "dimmer"; - version = "20180217.2011"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "dimmer.el"; - rev = "a418acf718697b5b1824856c9872aa7f4075b96d"; - sha256 = "1rqga5mc2yapxsnk16fcpaj8vjxb6w6mbjxm59vv9l5ddkfagfsf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ae80e9202d69ed3214325dd15c4b2f114263954/recipes/dimmer"; - sha256 = "0w8n5svckk1jp8856pg2gkws9798prqjjkdqf8ili2hjcqnd1a3r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dimmer"; - license = lib.licenses.free; - }; - }) {}; - dionysos = callPackage ({ alert - , cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , libmpdee - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "dionysos"; - ename = "dionysos"; - version = "20160810.356"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "dionysos"; - rev = "98bc789d20e41020d6e62d63d3c78f8032fa4bf2"; - sha256 = "1hma72dyn3w6cwd3vrgg4hdlrxgwqs55cjyxb05vs9csz7r42208"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/890445eca3c555acd2639a6f509c8e83b687f2bd/recipes/dionysos"; - sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib dash libmpdee pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/dionysos"; - license = lib.licenses.free; - }; - }) {}; - dircmp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dircmp"; - ename = "dircmp"; - version = "20141204.956"; - src = fetchFromGitHub { - owner = "matthewlmcclure"; - repo = "dircmp-mode"; - rev = "558ee0b601c2de9d247612085aafe2926f56a09f"; - sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b146db5977003cb48bc37317f3df19b8a8c7fc30/recipes/dircmp"; - sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dircmp"; - license = lib.licenses.free; - }; - }) {}; - dired-atool = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-atool"; - ename = "dired-atool"; - version = "20181228.622"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "dired-atool"; - rev = "09dbb769fe02f546da470369a12468ab4a0cceb2"; - sha256 = "0j2dz4vy4i22185hhlwg2kprpis97xb12qvfdhvdcnz2vwy61sxa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool"; - sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-atool"; - license = lib.licenses.free; - }; - }) {}; - dired-avfs = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-avfs"; - ename = "dired-avfs"; - version = "20161012.404"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "bef0c7eb03474defa02bbba5c15401a766c8ff7c"; - sha256 = "1l7kay58ix9gmn06nws04f642svy0s1zplh86m7ihq4b6jb04hxj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-avfs"; - sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-avfs"; - license = lib.licenses.free; - }; - }) {}; - dired-collapse = callPackage ({ dash - , dired-hacks-utils - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-collapse"; - ename = "dired-collapse"; - version = "20190515.510"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "a9dc5eb34fc96da839f5cbd70eb096758f72b3fe"; - sha256 = "09zv5k9na72r0gsh67mxg8ynrijl4yy53s9w9lymbdxysc4s53qs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6aab23df1451682ff18d9ad02c35cb7ec612bc38/recipes/dired-collapse"; - sha256 = "1k8h5cl8r68rnr1a3jnbc0ydflzm5mad7v7f1q60wks5hv61dsd1"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils f ]; - meta = { - homepage = "https://melpa.org/#/dired-collapse"; - license = lib.licenses.free; - }; - }) {}; - dired-dups = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-dups"; - ename = "dired-dups"; - version = "20130527.1425"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "dired-dups"; - rev = "694ad128c822c59348ced16c4a0c1356d43da47a"; - sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d01ad74959e17b5708ba9fa6a4958d4cda4e232/recipes/dired-dups"; - sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-dups"; - license = lib.licenses.free; - }; - }) {}; - dired-efap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-efap"; - ename = "dired-efap"; - version = "20140122.856"; - src = fetchFromGitHub { - owner = "juan-leon"; - repo = "dired-efap"; - rev = "624757b2e54d9a13e2183118d6c113e37684b90c"; - sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5669ca2adc48f3349eb59276850e6174e37f9de7/recipes/dired-efap"; - sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-efap"; - license = lib.licenses.free; - }; - }) {}; - dired-explorer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-explorer"; - ename = "dired-explorer"; - version = "20180606.1921"; - src = fetchFromGitHub { - owner = "jidaikobo-shibata"; - repo = "dired-explorer"; - rev = "3ade0a31b5340271d05e9bf443f2504960f6c6dd"; - sha256 = "0lbm326na005k3pa11rqq5nbhvm55dydi2a7fzs3bzlqwbx7d6fq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acd40e02185847dfdcd70b3cacea703133e4356d/recipes/dired-explorer"; - sha256 = "12mymmcl663ci543vqzg8jai8kgfbb3gw5wsbcm4ln3j8d5fgzd9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/dired-explorer"; - license = lib.licenses.free; - }; - }) {}; - dired-fdclone = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-fdclone"; - ename = "dired-fdclone"; - version = "20180402.2308"; - src = fetchFromGitHub { - owner = "knu"; - repo = "dired-fdclone.el"; - rev = "903d7a736d240ef7352989a4e5d0ff9129c2ee3c"; - sha256 = "0vkdsm29g1cvvv1j8xgjwr94x20zx8k2wvmncrpakcwq6d47cfxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a0ddc10b11772d72a473e8d24ab4641bf4239a4/recipes/dired-fdclone"; - sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-fdclone"; - license = lib.licenses.free; - }; - }) {}; - dired-filetype-face = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-filetype-face"; - ename = "dired-filetype-face"; - version = "20180907.639"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "dired-filetype-face"; - rev = "7ade7f7e8c2d7518c65f3f0343a10c272da0f47e"; - sha256 = "0s8mqz331iw2bk4xdvj9zljklqj8dxv0yaw100lddg37qmdf7lgl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e6c8015af3d5f013272308a97e089a4e3ca847d/recipes/dired-filetype-face"; - sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-filetype-face"; - license = lib.licenses.free; - }; - }) {}; - dired-filter = callPackage ({ cl-lib ? null - , dash - , dired-hacks-utils - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-filter"; - ename = "dired-filter"; - version = "20190211.1220"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "618b2037a3fc6940894a1030863298c96362c3b8"; - sha256 = "061aadq4k7rfarp2yqzzldldr4k1g7m44jvnbsypddbnwqp6nf5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-filter"; - sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dired-hacks-utils f ]; - meta = { - homepage = "https://melpa.org/#/dired-filter"; - license = lib.licenses.free; - }; - }) {}; - dired-hacks-utils = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-hacks-utils"; - ename = "dired-hacks-utils"; - version = "20190522.250"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "9523083f57c8278e3f52ca63b965249123139cd1"; - sha256 = "1hqk6nipxg0pr0ksgc0rv0s99p5fllqsnfv88zv53g7mqyapx3wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-hacks-utils"; - sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/dired-hacks-utils"; - license = lib.licenses.free; - }; - }) {}; - dired-hide-dotfiles = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-hide-dotfiles"; - ename = "dired-hide-dotfiles"; - version = "20170314.1339"; - src = fetchFromGitHub { - owner = "mattiasb"; - repo = "dired-hide-dotfiles"; - rev = "b715f643ec805b3b8aca334595e6589320f04a49"; - sha256 = "1n6l25lrhp1x8nhc54kqal96wq96kkfyvz5yzvlw1qd3yk4s567i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba64a50f85fdb0ad54149dfed4051b4c1a719cbb/recipes/dired-hide-dotfiles"; - sha256 = "0yy131cvj9a9sz02ari7pzwf22r5y7acyg757h3jvih317v6jyp0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-hide-dotfiles"; - license = lib.licenses.free; - }; - }) {}; - dired-icon = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-icon"; - ename = "dired-icon"; - version = "20170222.2126"; - src = fetchFromGitLab { - owner = "xuhdev"; - repo = "dired-icon"; - rev = "f60e10757a5011235b519231ad35974ff25963ed"; - sha256 = "0r9qmr2l5kjwh1frp0k87nyaf13f7f9fjjf9yf9z92djqapfm9dd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a96249947cba52cd75515b3dc83b0842fedf624/recipes/dired-icon"; - sha256 = "0nyiqcywc1p8kw3psisl4zxwmf2g0x82kanka85zxxdz15s509j1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-icon"; - license = lib.licenses.free; - }; - }) {}; - dired-imenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-imenu"; - ename = "dired-imenu"; - version = "20140109.810"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "dired-imenu"; - rev = "610e21fe0988c85931d34894d3eee2442c79ab0a"; - sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e346de86b7f7fd5dad548f0936cde54ac11e3f79/recipes/dired-imenu"; - sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-imenu"; - license = lib.licenses.free; - }; - }) {}; - dired-k = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-k"; - ename = "dired-k"; - version = "20170313.803"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-dired-k"; - rev = "c50e8f73358060a448bff66db2d330b52bbeffc1"; - sha256 = "14yvsv7cvfviszii0bj0qf094rmnwzssinrqrkpxg4jil2n4bb9d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k"; - sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-k"; - license = lib.licenses.free; - }; - }) {}; - dired-launch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-launch"; - ename = "dired-launch"; - version = "20180607.1141"; - src = fetchFromGitHub { - owner = "thomp"; - repo = "dired-launch"; - rev = "ad45940f76ef2f6c3bb55e998829b311de191dae"; - sha256 = "057nqlvqnq30gxfidmynp33040bgdq4gbwk0qdm294c5ap2af5yj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c9a4945d65aa6afc371c447a572284d38d4d71/recipes/dired-launch"; - sha256 = "0vhf0iai60mp8sp7snishz6nrw0bcriq4cx64f41lk1adjb2mqaw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-launch"; - license = lib.licenses.free; - }; - }) {}; - dired-narrow = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-narrow"; - ename = "dired-narrow"; - version = "20181114.923"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "c7184dc8f6ed3f2330db8d8f21f01c4b08056dd3"; - sha256 = "1i5a6srd3fpqdvvhyv0swybznimx9ilpm3sd76ha3shispyij1x5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8994330f90a925df17ae425ccdc87865df8e19cd/recipes/dired-narrow"; - sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-narrow"; - license = lib.licenses.free; - }; - }) {}; - dired-open = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-open"; - ename = "dired-open"; - version = "20180922.413"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "a45737d3a5aaac6928ebd7af041e5603dffaca64"; - sha256 = "1bhz0x7sa4a56f5ha8h9w36y5pirvzhkhczyfwf4z74j4z5z44sm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-open"; - sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-open"; - license = lib.licenses.free; - }; - }) {}; - dired-quick-sort = callPackage ({ fetchFromGitLab - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-quick-sort"; - ename = "dired-quick-sort"; - version = "20161208.1312"; - src = fetchFromGitLab { - owner = "xuhdev"; - repo = "dired-quick-sort"; - rev = "1845f978d313f750a5b70b832457ed803c4ffbdb"; - sha256 = "014frvpszixn8cx7rdx704glmjbslv3py3kw0pb0xqf50k4scynf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d278178128deb03a7b1d2e586dc38da2c7af857/recipes/dired-quick-sort"; - sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l"; - name = "recipe"; - }; - packageRequires = [ hydra ]; - meta = { - homepage = "https://melpa.org/#/dired-quick-sort"; - license = lib.licenses.free; - }; - }) {}; - dired-rainbow = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-rainbow"; - ename = "dired-rainbow"; - version = "20190522.250"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "9523083f57c8278e3f52ca63b965249123139cd1"; - sha256 = "1hqk6nipxg0pr0ksgc0rv0s99p5fllqsnfv88zv53g7mqyapx3wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/568e524b7bdf91b31655bdbb30fe9481d7a0ffbf/recipes/dired-rainbow"; - sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-rainbow"; - license = lib.licenses.free; - }; - }) {}; - dired-ranger = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-ranger"; - ename = "dired-ranger"; - version = "20180401.1506"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "89af4f12ce4a0692c9c9824eacf56875ca86cb36"; - sha256 = "0nyc17b029ksa6aai5890g6ainncixgig9cnjjp7khcifmrrpw9s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c03f6f8c779c8784f52adb20b266404cb537113a/recipes/dired-ranger"; - sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-ranger"; - license = lib.licenses.free; - }; - }) {}; - dired-recent = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-recent"; - ename = "dired-recent"; - version = "20180921.1538"; - src = fetchFromGitHub { - owner = "Vifon"; - repo = "dired-recent.el"; - rev = "b67f0fd346b03012f3c31d0a979d16290140557b"; - sha256 = "0nnaxynvwz346mr26l1whkd6myynr5fl0mhih3q1bkwsd93s0k4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/dired-recent"; - sha256 = "1qvw7m6wzahc0xmf37cyl9lv1k9442j0kkzx6dl6f0wclw0v6hgs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-recent"; - license = lib.licenses.free; - }; - }) {}; - dired-rifle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-rifle"; - ename = "dired-rifle"; - version = "20181012.1431"; - src = fetchFromGitHub { - owner = "Vifon"; - repo = "dired-rifle.el"; - rev = "a4f7b1e798397688b9c00d3507fcd395ece17a40"; - sha256 = "09jp54drbx1hb4fj6bzh8ava7nk56pp500xsa9712vscg1f38fpz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/dired-rifle"; - sha256 = "1x6i68i7f1c3k0w3w4zph16s046ccajyb2641fx0j8dl5367qgbc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-rifle"; - license = lib.licenses.free; - }; - }) {}; - dired-rmjunk = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-rmjunk"; - ename = "dired-rmjunk"; - version = "20190526.1329"; - src = fetchgit { - url = "https://git.sr.ht/~jakob/dired-rmjunk"; - rev = "6a9fa6a35498e53e8c57282e3b08dedc896d880d"; - sha256 = "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75d501ae9b64d9aa083f43358881a467a7cd2a04/recipes/dired-rmjunk"; - sha256 = "1m07z6gcsd5i1xshgfxqrpcrqpl0ffa9ls2443za5wkgbalhxx47"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-rmjunk"; - license = lib.licenses.free; - }; - }) {}; - dired-rsync = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dired-rsync"; - ename = "dired-rsync"; - version = "20190508.905"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "dired-rsync"; - rev = "d7eb558c4efa73d9e1f50709dbd2374041c0f1a9"; - sha256 = "074xy2wipdn2lvm7kxyf7rpsgp7hc62f7h1n77am7p4i7j5alw1f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce9f41ad832cef527dde97f829a8b8339e6ac48b/recipes/dired-rsync"; - sha256 = "0lykj7nfpaspwn90macvr7iir4jlrx88i0s9spii7iic2fnm51ql"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/dired-rsync"; - license = lib.licenses.free; - }; - }) {}; - dired-sidebar = callPackage ({ dired-subtree - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-sidebar"; - ename = "dired-sidebar"; - version = "20190515.1859"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "dired-sidebar"; - rev = "2c742326a6b7a76e36666586809aaf5efa150b3f"; - sha256 = "0s2d8lirv8s9az8a7g97yzg7na2n1340a8vg6zja315d43qljis9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30e15c8361b01195f198197e704828fbcac0e8d6/recipes/dired-sidebar"; - sha256 = "19a4gsx9wmpc94jd992c7dj5mxfnnij2nc6qnb2lhk8ad69h1lmc"; - name = "recipe"; - }; - packageRequires = [ dired-subtree emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-sidebar"; - license = lib.licenses.free; - }; - }) {}; - dired-single = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-single"; - ename = "dired-single"; - version = "20180823.2012"; - src = fetchFromGitHub { - owner = "crocket"; - repo = "dired-single"; - rev = "b0ccca83df0542c5525c047ae283c0eadf500f5c"; - sha256 = "14q8lp1x1b78ra9mk90n6dyrm1j9ny5pr7valgpkg8agqyqn7xmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41669decbb7ad5c4dbe152a863f16d87e7bba493/recipes/dired-single"; - sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-single"; - license = lib.licenses.free; - }; - }) {}; - dired-subtree = callPackage ({ dash - , dired-hacks-utils - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-subtree"; - ename = "dired-subtree"; - version = "20180922.915"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "dired-hacks"; - rev = "c5e9dcdf2ee6fd5660e2bfbb8c635674053df7c9"; - sha256 = "1qcsklrvs8dajj7nyhd70ql4df3ayjkgxyf8ldm48ajms5qslkfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a947ac9476f10b95a3c153ec784d2a8330dd4c/recipes/dired-subtree"; - sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk"; - name = "recipe"; - }; - packageRequires = [ dash dired-hacks-utils ]; - meta = { - homepage = "https://melpa.org/#/dired-subtree"; - license = lib.licenses.free; - }; - }) {}; - dired-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-toggle"; - ename = "dired-toggle"; - version = "20190515.1804"; - src = fetchFromGitHub { - owner = "fasheng"; - repo = "dired-toggle"; - rev = "5bcdd9f13c0b0149c5125004e93bc2dfd22f3fce"; - sha256 = "0dghbrx364fihzp5r8ar6vxkavd7mn74qjkijy1wvy34vl0b4911"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17ae4c5ff42e0c48e53d93c88853f649f59034e6/recipes/dired-toggle"; - sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-toggle"; - license = lib.licenses.free; - }; - }) {}; - dired-toggle-sudo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-toggle-sudo"; - ename = "dired-toggle-sudo"; - version = "20151109.206"; - src = fetchFromGitHub { - owner = "renard"; - repo = "dired-toggle-sudo"; - rev = "02449dbda4e168f99fe5352c9628df5d39e11483"; - sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5cdee2d52c0c53566fdd77a5d42edf365764acff/recipes/dired-toggle-sudo"; - sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-toggle-sudo"; - license = lib.licenses.free; - }; - }) {}; - diredfl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diredfl"; - ename = "diredfl"; - version = "20180210.1814"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "diredfl"; - rev = "9b2a89951cee8bdf5c0cb67f9c3ad6ac73abf9cb"; - sha256 = "0x4qhxysmcwllkbia6xkfmlpddxhfxxvawywp57zs8c00193nn1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3da86e18d423198766455929da1dcb3a9a3be381/recipes/diredfl"; - sha256 = "0cybq15yq07x2mnrnwapy020d598yymcy8y9wwf1m7f59p3h9hvn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/diredfl"; - license = lib.licenses.free; - }; - }) {}; - diredful = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diredful"; - ename = "diredful"; - version = "20160529.1317"; - src = fetchFromGitHub { - owner = "thamer"; - repo = "diredful"; - rev = "b17b3087e0084a5571a9ac4d47ccfc36d96b109e"; - sha256 = "1d8n8wj5k82a1sfg93kn3ajci804mpp9j206x5f185zd48wb25z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76f3d178e7c3982b53c7ee0096c839397534d732/recipes/diredful"; - sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diredful"; - license = lib.licenses.free; - }; - }) {}; - direnv = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direnv"; - ename = "direnv"; - version = "20190511.1321"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-direnv"; - rev = "468f2fb20d825dd7134e4efbaff3666917cd4ec3"; - sha256 = "005ibyzsx1fdyrl5iyhqpb1bg83mphzahq7zvw58x00syyqi2z49"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv"; - sha256 = "0zzmi5m6fh42kyf8dyjrjyrl03pkbipnh4mnssrhp83ljczxkyhd"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/direnv"; - license = lib.licenses.free; - }; - }) {}; - direx = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direx"; - ename = "direx"; - version = "20170422.627"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "direx-el"; - rev = "a79bfdb5980cf6ed7bfb3b41ddc471a7b6c0ede4"; - sha256 = "0fl9hdnrq54awx43635p6pmc8bqyppa02gs1d76nifi0q4g9v4m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b0903466d63b1c87abc002b0e064e36a8cddd3/recipes/direx"; - sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/direx"; - license = lib.licenses.free; - }; - }) {}; - direx-grep = callPackage ({ direx - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direx-grep"; - ename = "direx-grep"; - version = "20140515.806"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "direx-grep"; - rev = "1109a512a80b2673a70b18b8568514049017faad"; - sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a88a29090a0d6c636f4aeb5214433db66367d9e/recipes/direx-grep"; - sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; - name = "recipe"; - }; - packageRequires = [ direx ]; - meta = { - homepage = "https://melpa.org/#/direx-grep"; - license = lib.licenses.free; - }; - }) {}; - dirtree = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tree-mode - , windata }: - melpaBuild { - pname = "dirtree"; - ename = "dirtree"; - version = "20140129.32"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "dirtree"; - rev = "ba55f1e716e386fdd37cb8e7f48616e405dc7251"; - sha256 = "0abs3r4zzfnf4igiakrv3bpyxz7qlnw26l57rynsk7c3w3s5ya29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/dirtree"; - sha256 = "1fm003rix3sdfx8fq3ab5s8b2q65gbkjsn1j3fg5qmhv56p7lrs9"; - name = "recipe"; - }; - packageRequires = [ tree-mode windata ]; - meta = { - homepage = "https://melpa.org/#/dirtree"; - license = lib.licenses.free; - }; - }) {}; - dirtree-prosjekt = callPackage ({ dirtree - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , prosjekt }: - melpaBuild { - pname = "dirtree-prosjekt"; - ename = "dirtree-prosjekt"; - version = "20140129.104"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "prosjekt"; - rev = "03e06910589ba5cd736868793eb436b3233c6a26"; - sha256 = "06fw9730djlv86jj8nhd1ll9mi4z53qwn6yqpqxciqqlz64pvzid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/dirtree-prosjekt"; - sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk"; - name = "recipe"; - }; - packageRequires = [ dirtree prosjekt ]; - meta = { - homepage = "https://melpa.org/#/dirtree-prosjekt"; - license = lib.licenses.free; - }; - }) {}; - disable-mouse = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "disable-mouse"; - ename = "disable-mouse"; - version = "20181225.1406"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "disable-mouse"; - rev = "236d9b9d03544f92ebf44a2861c469c685857b67"; - sha256 = "0lpmjzwzbpnhkwrwxai0g35mglhbccnlsc18zgf2rfhi8ggfla9b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbbc396373212fdf731e135cde391f27708ff015/recipes/disable-mouse"; - sha256 = "0c0ps39s6wg3grspvgck0cwxnas73nfaahfa87l0mmgsrsvas5m7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/disable-mouse"; - license = lib.licenses.free; - }; - }) {}; - disaster = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "disaster"; - ename = "disaster"; - version = "20171016.1452"; - src = fetchFromGitHub { - owner = "jart"; - repo = "disaster"; - rev = "10a785facc60d89d78e0d5177985ab1af1741bb4"; - sha256 = "0iz43jdkh5qdllqdchliys84gn9bpj6688rpc4jnycp64141m6cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4654b3646b96f967e2c75440e664a417cd0f517/recipes/disaster"; - sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/disaster"; - license = lib.licenses.free; - }; - }) {}; - discourse = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "discourse"; - ename = "discourse"; - version = "20160911.119"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "discourse-api"; - rev = "a86c7e608851e186fe12e892a573994f08c8e65e"; - sha256 = "1p4crd7v94hmqzqh8bc7jx1pfhallmj4kn36f8l22z4r2mkyycxc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5e64fc3fa3fc7d0ac14e7e5d324ee1ca77ea4c3/recipes/discourse"; - sha256 = "0j11pyly7qni3gqgywd9bkzfm1dfvhbfjc7pls9n9s26nbqdzcw9"; - name = "recipe"; - }; - packageRequires = [ cl-lib request s ]; - meta = { - homepage = "https://melpa.org/#/discourse"; - license = lib.licenses.free; - }; - }) {}; - discover = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "discover"; - ename = "discover"; - version = "20140103.1339"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "discover.el"; - rev = "bbfda2b4e429985a8fa7971d264c942767cfa816"; - sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/discover"; - sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/discover"; - license = lib.licenses.free; - }; - }) {}; - discover-clj-refactor = callPackage ({ clj-refactor - , discover - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "discover-clj-refactor"; - ename = "discover-clj-refactor"; - version = "20150328.759"; - src = fetchFromGitHub { - owner = "maio"; - repo = "discover-clj-refactor.el"; - rev = "3fbd5c1162739e606d7cf5d4f5d7426547d99647"; - sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3311371cadf00b00bfbece4e4b2f96c226f0e27d/recipes/discover-clj-refactor"; - sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r"; - name = "recipe"; - }; - packageRequires = [ clj-refactor discover ]; - meta = { - homepage = "https://melpa.org/#/discover-clj-refactor"; - license = lib.licenses.free; - }; - }) {}; - discover-js2-refactor = callPackage ({ discover - , fetchFromGitHub - , fetchurl - , js2-refactor - , lib - , melpaBuild }: - melpaBuild { - pname = "discover-js2-refactor"; - ename = "discover-js2-refactor"; - version = "20140129.752"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "discover-js2-refactor"; - rev = "3812abf61f39f3e73a9f3daefa6fed4f21a429ba"; - sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b84129a8a90f8f66a513c11c299e0acb5f3fbd3a/recipes/discover-js2-refactor"; - sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki"; - name = "recipe"; - }; - packageRequires = [ discover js2-refactor ]; - meta = { - homepage = "https://melpa.org/#/discover-js2-refactor"; - license = lib.licenses.free; - }; - }) {}; - discover-my-major = callPackage ({ fetchgit - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "discover-my-major"; - ename = "discover-my-major"; - version = "20180605.2211"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/discover-my-major.git"; - rev = "66081546eac360c83a9c3270db92a2164288b0d0"; - sha256 = "1v95s15m37785ggs649q5a83jai0bnar1w1hkiaafwbmpzhd7hr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/discover-my-major"; - sha256 = "1b10bwhls5bx83hzhqq1ylc2civ3bsivd6db46f3s5hpgvr4q17n"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/discover-my-major"; - license = lib.licenses.free; - }; - }) {}; - disk = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "disk"; - ename = "disk"; - version = "20171115.2331"; - src = fetchFromGitHub { - owner = "kensanata"; - repo = "disk"; - rev = "283e54e3be7d08f959076240b2ab324e25632137"; - sha256 = "15fkfl9kjlpsg9p5g0xhm384ipvrzclwxvqk8vz1zixq0wam2ajm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e75695594ce17b618ad8786c8a04e283f68b11/recipes/disk"; - sha256 = "1jzkqgjw8xl0jc6ssl5bsdjp2dxw88nss6szvjv7frrhsncaq28h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/disk"; - license = lib.licenses.free; - }; - }) {}; - dispass = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dispass"; - ename = "dispass"; - version = "20140202.731"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "dispass.el"; - rev = "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861"; - sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dispass"; - sha256 = "09c9v41rh63hjpdh377rbfvpial33r41dn5bss3632fi34az5l9n"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/dispass"; - license = lib.licenses.free; - }; - }) {}; - display-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "display-theme"; - ename = "display-theme"; - version = "20140115.756"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "emacs-display-theme"; - rev = "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15"; - sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4dd76f49f1c10656ea0004a654d73666e1d188db/recipes/display-theme"; - sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/display-theme"; - license = lib.licenses.free; - }; - }) {}; - dist-file-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dist-file-mode"; - ename = "dist-file-mode"; - version = "20180829.2118"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "dist-file-mode.el"; - rev = "e1ce8f592bc5d4d86d2f09e334728ac0d524c761"; - sha256 = "09rp83d81y9mm81isrwvacl21vgah7nhi5r4j2xbp13kgdn7my1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd10fbed2810a642600dba9dfe320fa6299e6d34/recipes/dist-file-mode"; - sha256 = "1gbnkb0537gw8flv4gdi4jzb7y9dnbf9cfj2jw8y84axyfzbb4mf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s ]; - meta = { - homepage = "https://melpa.org/#/dist-file-mode"; - license = lib.licenses.free; - }; - }) {}; - distel-completion-lib = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "distel-completion-lib"; - ename = "distel-completion-lib"; - version = "20180827.644"; - src = fetchFromGitHub { - owner = "sebastiw"; - repo = "distel-completion"; - rev = "acc4c0a5521904203d797fe96b08e5fae4233c7e"; - sha256 = "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90fff35dd9709b06802edef89d1fe6a96b7115a6/recipes/distel-completion-lib"; - sha256 = "0b06z3k30b4x5zpzk0jgcs7kcaix64xx81iskm1kys57r3gskzpa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/distel-completion-lib"; - license = lib.licenses.free; - }; - }) {}; - distinguished-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "distinguished-theme"; - ename = "distinguished-theme"; - version = "20151216.1215"; - src = fetchFromGitHub { - owner = "Lokaltog"; - repo = "distinguished-theme"; - rev = "9b1d25ac59465a5016d187ea84b7614c95a29b3b"; - sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d969e91bbba522a31d6ae7a81c7783034c15b9b/recipes/distinguished-theme"; - sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/distinguished-theme"; - license = lib.licenses.free; - }; - }) {}; - ditz-mode = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ditz-mode"; - ename = "ditz-mode"; - version = "20150729.240"; - src = fetchhg { - url = "https://bitbucket.com/zondo/ditz-mode"; - rev = "beac4c1f3b7e"; - sha256 = "1cbsy4lchl41zmyxfq828cjpl3h2dwvn8xf1qgf2lbscdb6cwbwb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02e2a2a25f42929626d7237511136ba6826dad33/recipes/ditz-mode"; - sha256 = "0shzm9l31n4ffjs1d26ykxsycd478lhlpl8xcwzbjryywg4gf5nd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ditz-mode"; - license = lib.licenses.free; - }; - }) {}; - dix = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dix"; - ename = "dix"; - version = "20181210.400"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "dix"; - rev = "b973de948deb7aa2995b1895e1e62bbe3129b5a5"; - sha256 = "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/149eeba213b82aa0bcda1073aaf1aa02c2593f91/recipes/dix"; - sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/dix"; - license = lib.licenses.free; - }; - }) {}; - dix-evil = callPackage ({ dix - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dix-evil"; - ename = "dix-evil"; - version = "20170105.623"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "dix"; - rev = "1cfef0d3376a18c78dd1dfc1ac9ac3ad0e8c4475"; - sha256 = "0p2cvr7mjpag86wacxm6s39y7p118gh2ccqw02jzabwxlfasfbw3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9dcceb57231bf2082154cab394064a59d84d3a5/recipes/dix-evil"; - sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3"; - name = "recipe"; - }; - packageRequires = [ dix evil ]; - meta = { - homepage = "https://melpa.org/#/dix-evil"; - license = lib.licenses.free; - }; - }) {}; - dizzee = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dizzee"; - ename = "dizzee"; - version = "20171201.116"; - src = fetchFromGitHub { - owner = "davidmiller"; - repo = "dizzee"; - rev = "e3cf1c2ea5d0fc00747524b6f3c5b905d0a8c8e1"; - sha256 = "1i32msin8ra963w7af6612d038gxb25m1gj97kbjymjq1r8zbdrv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dizzee"; - sha256 = "14y10k8s65cyn86m1z77817436m89l0xpwd1wr4d7qp3x2mmn215"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dizzee"; - license = lib.licenses.free; - }; - }) {}; - django-commands = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "django-commands"; - ename = "django-commands"; - version = "20190320.22"; - src = fetchFromGitHub { - owner = "muffinmad"; - repo = "emacs-django-commands"; - rev = "1b19436a1160d1552207d4356d5e78793dabe100"; - sha256 = "1zb8mf0dgdr83n61a54m5grhdr6nz75zrgwczpzfl3f66xkvfci9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd217a23a9670c7eb826360b34df1a06ab3e450f/recipes/django-commands"; - sha256 = "17k9bnig2cfnxbbz6k9vdk5k5gzhvn1h5j9wvww7n137c9vv0qmk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/django-commands"; - license = lib.licenses.free; - }; - }) {}; - django-manage = callPackage ({ fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "django-manage"; - ename = "django-manage"; - version = "20160818.1912"; - src = fetchFromGitHub { - owner = "gopar"; - repo = "django-manage"; - rev = "e72b1cf2fdbb5c624d19169176e60467b4918fe2"; - sha256 = "0lyi64dfd2njlnf9dzb8i88rrw930jiq99xfn8zmh87y6qy1j79i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66f88d30a1ab9b7f9281a2b5939c7ab2711b966a/recipes/django-manage"; - sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh"; - name = "recipe"; - }; - packageRequires = [ hydra ]; - meta = { - homepage = "https://melpa.org/#/django-manage"; - license = lib.licenses.free; - }; - }) {}; - django-mode = callPackage ({ fetchFromGitHub - , fetchurl - , helm-make - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "django-mode"; - ename = "django-mode"; - version = "20170522.14"; - src = fetchFromGitHub { - owner = "myfreeweb"; - repo = "django-mode"; - rev = "a71b8dd984e7f724b8321246e5c353a4ae5c986e"; - sha256 = "0xf33ri5phy2mrb1dwvqb8waba33gj9bwmf6jhl6n0ksm43x0z40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-mode"; - sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; - name = "recipe"; - }; - packageRequires = [ helm-make projectile s ]; - meta = { - homepage = "https://melpa.org/#/django-mode"; - license = lib.licenses.free; - }; - }) {}; - django-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "django-snippets"; - ename = "django-snippets"; - version = "20131229.811"; - src = fetchFromGitHub { - owner = "myfreeweb"; - repo = "django-mode"; - rev = "f1e6fea8878bebc9bc0b761376a14cd5c9feda0f"; - sha256 = "16rh2yhpfv0c3arwkcnjz0r2mw3yx7ayys6wkzwgaxvx6nxpa7y1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc46811612ff96cb1e09552b9f095d68528dcb3/recipes/django-snippets"; - sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/django-snippets"; - license = lib.licenses.free; - }; - }) {}; - django-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "django-theme"; - ename = "django-theme"; - version = "20131022.202"; - src = fetchFromGitHub { - owner = "andrzejsliwa"; - repo = "django-theme.el"; - rev = "86c8142b3eb1addd94a43aa6f1d98dab06401af0"; - sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ede3b4fb214b915a8230e7f220ffe71c73ad7c4/recipes/django-theme"; - sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/django-theme"; - license = lib.licenses.free; - }; - }) {}; - djangonaut = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild - , pythonic - , s }: - melpaBuild { - pname = "djangonaut"; - ename = "djangonaut"; - version = "20180727.844"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "djangonaut"; - rev = "487dbd19a312cf5b45183df82d5d57f5c5a403a2"; - sha256 = "1fpbbv5w54r70b1xma36lp3kh5cn184bvq28apll5bd5bclii56y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c1281f59add99abf57bc858d6e0f9b2ae5b3c5c/recipes/djangonaut"; - sha256 = "0038zqazzhxz82q8l1phxc3aiiwmzksz9c15by9v0apzwpmdkj38"; - name = "recipe"; - }; - packageRequires = [ emacs f magit-popup pythonic s ]; - meta = { - homepage = "https://melpa.org/#/djangonaut"; - license = lib.licenses.free; - }; - }) {}; - djinni-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "djinni-mode"; - ename = "djinni-mode"; - version = "20190302.1739"; - src = fetchFromGitHub { - owner = "danielmartin"; - repo = "djinni-mode"; - rev = "f0da31d8f45c4b1b2341cf88ec7f2d2e7d16267f"; - sha256 = "1jfc2n5js596wmpy6g8jyysn9hwf151s952v3ph0wpcisl7wsiyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e88f64e21275c6755f2589d1afa16eb4e575b8/recipes/djinni-mode"; - sha256 = "19222702dr7hfl7ffqp5z4sslg949p88rwvmg2al82i1a0wkgc98"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/djinni-mode"; - license = lib.licenses.free; - }; - }) {}; - dkdo = callPackage ({ dkmisc - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dkdo"; - ename = "dkdo"; - version = "20131110.319"; - src = fetchFromGitHub { - owner = "davidkeegan"; - repo = "dkdo"; - rev = "fd6bb105e8331fafb6385c5238c988c4c5bbe2da"; - sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d4f75f6f6349b81ddbaaf35fb5d7ddeb4cde622/recipes/dkdo"; - sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300"; - name = "recipe"; - }; - packageRequires = [ dkmisc emacs ]; - meta = { - homepage = "https://melpa.org/#/dkdo"; - license = lib.licenses.free; - }; - }) {}; - dkl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dkl"; - ename = "dkl"; - version = "20161004.1707"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "dkl"; - rev = "6b4584f86037bda3383960c678d51f340229fb91"; - sha256 = "1xpidgj5xk0g4ajpglhbhi02s5il8qqcvh2ccf4ac9daa1r34kxp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8bd9cf21473f676aa54e142b6f0bf0427f40d29/recipes/dkl"; - sha256 = "0bcv4ld8bfj2sk3sh4j1m9qqybw3l0a6b3d12qwy8lc3b8197lr0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dkl"; - license = lib.licenses.free; - }; - }) {}; - dklrt = callPackage ({ dkmisc - , emacs - , fetchFromGitHub - , fetchurl - , ledger-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "dklrt"; - ename = "dklrt"; - version = "20131110.541"; - src = fetchFromGitHub { - owner = "davidkeegan"; - repo = "dklrt"; - rev = "4eceed270015b41d24a62a8b71bd239224a63063"; - sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dklrt"; - sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561"; - name = "recipe"; - }; - packageRequires = [ dkmisc emacs ledger-mode ]; - meta = { - homepage = "https://melpa.org/#/dklrt"; - license = lib.licenses.free; - }; - }) {}; - dkmisc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dkmisc"; - ename = "dkmisc"; - version = "20131110.315"; - src = fetchFromGitHub { - owner = "davidkeegan"; - repo = "dkmisc"; - rev = "fe3d49c6f8322b6f89466361acd97585bdfe0608"; - sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71f980fdb2180df2429c898e1507dd3b989a5a2c/recipes/dkmisc"; - sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dkmisc"; - license = lib.licenses.free; - }; - }) {}; - dmenu = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dmenu"; - ename = "dmenu"; - version = "20190329.2010"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "el-dmenu"; - rev = "162f9f513d5dbd5f61f8d7adb48546f646d7d3fe"; - sha256 = "1216ab5n7bmpjxrfj4b13mjq1rh6wsdk1dh8mgqxvwh1mydy5lsa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98bcdd71a160b9c04f83cc5b939031c9e7b5eb59/recipes/dmenu"; - sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/dmenu"; - license = lib.licenses.free; - }; - }) {}; - dna-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dna-mode"; - ename = "dna-mode"; - version = "20170804.114"; - src = fetchFromGitHub { - owner = "jhgorrell"; - repo = "dna-mode-el"; - rev = "471d374de22c33eaddd8e41dd8ae29753fab2f6a"; - sha256 = "05zsaypyavyn7gs0jk63chkxkm2rl4nbrqgv6zxrbqcar7gv86am"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dna-mode"; - sha256 = "06vprwv1v4jzqzi2nj9hbhnypnvqxmixls8yf91hzwlk3fdkdywf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dna-mode"; - license = lib.licenses.free; - }; - }) {}; - docbook-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "docbook-snippets"; - ename = "docbook-snippets"; - version = "20150714.925"; - src = fetchFromGitHub { - owner = "jhradilek"; - repo = "emacs-docbook-snippets"; - rev = "b06297fdec039a541aaa6312cb328a11062cfab4"; - sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07b832b72773ab41f9cbdefabd30dc1aa29d04c5/recipes/docbook-snippets"; - sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/docbook-snippets"; - license = lib.licenses.free; - }; - }) {}; - docean = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "docean"; - ename = "docean"; - version = "20180605.1044"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "docean.el"; - rev = "bbe2298fd21f7876fc2d5c52a69b931ff59df979"; - sha256 = "1fzs6k76nyz2xjvydks6v6d2ib7qqj181s7c8r57w9ylr2zqfacj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4827fa337d7d25f2aaf67aca3081fbdaeacbcbf/recipes/docean"; - sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/docean"; - license = lib.licenses.free; - }; - }) {}; - docker = callPackage ({ dash - , docker-tramp - , emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , magit-popup - , melpaBuild - , s - , tablist }: - melpaBuild { - pname = "docker"; - ename = "docker"; - version = "20190428.251"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "docker.el"; - rev = "dbd89c1cd05f9ec6f1921f8bc85d9411a80412c2"; - sha256 = "1d5x04l4129wjjlzbfmjgw9w6gih28zv8c3q79hihnkpy81xhrnh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker"; - sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; - name = "recipe"; - }; - packageRequires = [ - dash - docker-tramp - emacs - json-mode - magit-popup - s - tablist - ]; - meta = { - homepage = "https://melpa.org/#/docker"; - license = lib.licenses.free; - }; - }) {}; - docker-api = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "docker-api"; - ename = "docker-api"; - version = "20160525.20"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "docker-api.el"; - rev = "206144346b7fa4165223349cfeb64a75d47ddd1b"; - sha256 = "0phmpranrgdi2gi89nxr1ii9xbr7h2ccpx1mkpnfxnjlzkdzq2fb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3924914124370fc028a7b1ecdc154a53e73037a7/recipes/docker-api"; - sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0"; - name = "recipe"; - }; - packageRequires = [ dash request s ]; - meta = { - homepage = "https://melpa.org/#/docker-api"; - license = lib.licenses.free; - }; - }) {}; - docker-cli = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "docker-cli"; - ename = "docker-cli"; - version = "20190524.924"; - src = fetchFromGitHub { - owner = "bosko"; - repo = "docker-cli"; - rev = "328429219574555c5fb831a421b4b5d9a2338561"; - sha256 = "15jsp1jsb13qv394js9pd6407ya7dgqk7blzbnyf9i9abyyr0v67"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5664de22600c428b7931085985e6fe779e8876b2/recipes/docker-cli"; - sha256 = "1pyrnxa9iwzp0a810250xy191xcbaq68c76fc5plh70c37gzribp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/docker-cli"; - license = lib.licenses.free; - }; - }) {}; - docker-compose-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "docker-compose-mode"; - ename = "docker-compose-mode"; - version = "20180324.1052"; - src = fetchFromGitHub { - owner = "meqif"; - repo = "docker-compose-mode"; - rev = "c9f131d2c90d652435d407fd36c40feebfed1dad"; - sha256 = "0d5d46i6hplmy7q2ihbvcrnk9jrwa2mswgbf8yca3m4k44wgk6la"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode"; - sha256 = "1hldddl86h0i1ysxklkr1kyz44lzic1zr68x3vb0mha4n5d6bl5g"; - name = "recipe"; - }; - packageRequires = [ dash emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/docker-compose-mode"; - license = lib.licenses.free; - }; - }) {}; - docker-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "docker-tramp"; - ename = "docker-tramp"; - version = "20170206.1925"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "docker-tramp.el"; - rev = "8e2b671eff7a81af43b76d9dfcf94ddaa8333a23"; - sha256 = "1lgjvrss25d4hwgygr1amsbkh1l4kgpsdjpxxpyfgil1542haan1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker-tramp"; - sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/docker-tramp"; - license = lib.licenses.free; - }; - }) {}; - dockerfile-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dockerfile-mode"; - ename = "dockerfile-mode"; - version = "20190505.1107"; - src = fetchFromGitHub { - owner = "spotify"; - repo = "dockerfile-mode"; - rev = "ed73e82dcc636dad00d1a8c3b32a49136d25ee60"; - sha256 = "0lri2rnx4lr23vqfphkpq39cd4xfgzkvz1xsz7ccdvl4qj0k7fdl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode"; - sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/dockerfile-mode"; - license = lib.licenses.free; - }; - }) {}; - dokuwiki = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "dokuwiki"; - ename = "dokuwiki"; - version = "20180101.1659"; - src = fetchFromGitHub { - owner = "accidentalrebel"; - repo = "emacs-dokuwiki"; - rev = "594c4d4904dcc2796bbbd2c0845d9e7c09ccf6f7"; - sha256 = "0vqx8npw0i02dhw2yb7s4z7njw60r3xyncw4z8l6fj99pp6pfh15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/dokuwiki"; - sha256 = "0d92il37z1m1hgcgb6c6zaifllznzk1na4yv4bfsfqg25l0mid75"; - name = "recipe"; - }; - packageRequires = [ emacs xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/dokuwiki"; - license = lib.licenses.free; - }; - }) {}; - dokuwiki-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dokuwiki-mode"; - ename = "dokuwiki-mode"; - version = "20170223.501"; - src = fetchFromGitHub { - owner = "kai2nenobu"; - repo = "emacs-dokuwiki-mode"; - rev = "e4e116f6fcc373e3f5937c1a7daa5c2c9c6d3fa1"; - sha256 = "0bmcm7lvzm8sg2l1j7bg02jasxb8g81q9ilycblmsl1ckbfwq0yp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/dokuwiki-mode"; - sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dokuwiki-mode"; - license = lib.licenses.free; - }; - }) {}; - dollaro = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dollaro"; - ename = "dollaro"; - version = "20151123.502"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "dollaro"; - rev = "500127f0172ac7a1eec627e026b59136580a74ac"; - sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8195000cffa1913060266b17801eb7c1e472a83/recipes/dollaro"; - sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/dollaro"; - license = lib.licenses.free; - }; - }) {}; - doneburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "doneburn-theme"; - ename = "doneburn-theme"; - version = "20181110.1057"; - src = fetchFromGitHub { - owner = "manuel-uberti"; - repo = "doneburn-theme"; - rev = "9c31dd6d664436df73c776560c7a660041b3a5bf"; - sha256 = "042jfjlhyk2lc4wbqsyvb09q5k3jsxsdi89ymwl59j0mvhxws7lj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fc483d5f487f462567bba22d611f90fc8a1a709/recipes/doneburn-theme"; - sha256 = "0j8fyb6wcjrfhfjp06w0bzp5vrcvydhjwkzg4c4s4j54xaw6laxx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/doneburn-theme"; - license = lib.licenses.free; - }; - }) {}; - doom = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "doom"; - ename = "doom"; - version = "20180301.1508"; - src = fetchFromGitHub { - owner = "kensanata"; - repo = "doom"; - rev = "e59040aefc92dd9b3134eb623624307fb9e4327b"; - sha256 = "14lwq30m0s7pkwkbn6vm5gdlkww7sszc6pdhxyinkhj67b0bxpin"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0960deb3b1d106ad2ffa95a44f34cb9efc026f01/recipes/doom"; - sha256 = "1ji2fdiw5b13n76nv2wvkz6v155b0qgh1rxwmv3m5nnrbmklfjh5"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/doom"; - license = lib.licenses.free; - }; - }) {}; - doom-modeline = callPackage ({ all-the-icons - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , shrink-path }: - melpaBuild { - pname = "doom-modeline"; - ename = "doom-modeline"; - version = "20190606.228"; - src = fetchFromGitHub { - owner = "seagle0128"; - repo = "doom-modeline"; - rev = "94ddb2f68bff53cebdb3a001bde2cdc9975eca33"; - sha256 = "1cv2420qpci4pfiskb7gg5s3gnacwzbpi3dg98wb647yv7jkbgj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f610757f85fb01bd9b1dd212ddbea8f34f3ecd/recipes/doom-modeline"; - sha256 = "0pscrhhgk4wpz1f2r94ficgan4f9blbhqzvav1wjahwp7fn5m29j"; - name = "recipe"; - }; - packageRequires = [ all-the-icons dash emacs shrink-path ]; - meta = { - homepage = "https://melpa.org/#/doom-modeline"; - license = lib.licenses.free; - }; - }) {}; - doom-themes = callPackage ({ all-the-icons - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "doom-themes"; - ename = "doom-themes"; - version = "20190520.2119"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-doom-themes"; - rev = "55c49c8fd6152ebb748e75197c064b6ae7db1a57"; - sha256 = "0pw47is23nvh72bvmh6c3wip8xjrjvjlal9rk39klkf50x52x3qh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes"; - sha256 = "0plqhis9ki3ck1pbv4hiqk4x428fps8qsfx72mamdayyx2nncdrs"; - name = "recipe"; - }; - packageRequires = [ all-the-icons cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/doom-themes"; - license = lib.licenses.free; - }; - }) {}; - dot-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dot-mode"; - ename = "dot-mode"; - version = "20180312.1600"; - src = fetchFromGitHub { - owner = "wyrickre"; - repo = "dot-mode"; - rev = "6ca22b73bcdae2363ee9641b822a60685df16a3e"; - sha256 = "10lmwra48ihxqxyl54m3yn1zy0q5w6cxqd2n5pbs4lva1yck0z4w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dot-mode"; - sha256 = "039ylmbvw0wb3i2w4qn3dhckz7y3swbid4hwjcxljy4szc709p6k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dot-mode"; - license = lib.licenses.free; - }; - }) {}; - dotenv-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dotenv-mode"; - ename = "dotenv-mode"; - version = "20180207.1114"; - src = fetchFromGitHub { - owner = "preetpalS"; - repo = "emacs-dotenv-mode"; - rev = "f4c52bcd5313379b9f2460db7f7a33119dfa96ea"; - sha256 = "1fplkhxnsgdrg10iqsmw162zny2idz4vvv35spsb9j0hsk8imclc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fc022c54b90933e70dcedb6a85167c2d9d7ba79/recipes/dotenv-mode"; - sha256 = "1lwfzfri6vywcjkc9wassrz0rdrg0kvljxsm6b4smlnphp6pdbbs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dotenv-mode"; - license = lib.licenses.free; - }; - }) {}; - dotnet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dotnet"; - ename = "dotnet"; - version = "20190415.537"; - src = fetchFromGitHub { - owner = "julienXX"; - repo = "dotnet.el"; - rev = "932d776ed739d20d57dbd6ba49f61d1b450571fc"; - sha256 = "1h7y9vz64bv4slz9mpd7cjyyaxgqk92jn11y5ycfyncq70wyd3j4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ef473594ec57a747ad7d9d57d7287bcacf4b446/recipes/dotnet"; - sha256 = "06k1ikwg9bis9kk4r41bm0a0d8a31wscqyr6n99d7836p1h4jfki"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dotnet"; - license = lib.licenses.free; - }; - }) {}; - double-saber = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "double-saber"; - ename = "double-saber"; - version = "20190325.1217"; - src = fetchFromGitHub { - owner = "dp12"; - repo = "double-saber"; - rev = "5555dc28cbaa228fa8f9390738a4200e071380b8"; - sha256 = "06ykn84hp4yvf6z2457jqgyck70y30361l8617ilb7g337hk15xl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f5c0195ad9b278a7aaa3fd8e70c0004cc03500/recipes/double-saber"; - sha256 = "0zsmyvlxm3my3xbj7m38539vk2dl7azi1v7jb41kdiavj2cc55zg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/double-saber"; - license = lib.licenses.free; - }; - }) {}; - download-region = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "download-region"; - ename = "download-region"; - version = "20180123.1733"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "download-region"; - rev = "bbba3ecd80818d5d940d41fe89a6e2ec5dd2c53c"; - sha256 = "1cwlbdmdils5rzhjpc3fqjmd3dhalk6i7bxskpahbrr9xxfq0iw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7801d9fac121f213609a802fe9d88bdc5364d1f3/recipes/download-region"; - sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/download-region"; - license = lib.licenses.free; - }; - }) {}; - downplay-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "downplay-mode"; - ename = "downplay-mode"; - version = "20151125.1209"; - src = fetchFromGitHub { - owner = "tobias"; - repo = "downplay-mode"; - rev = "4a2c3addc73c8ca3816345c3c11c08af265baedb"; - sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50d67ea3c4d92b4093373d5e4ff07b7d5a3dc537/recipes/downplay-mode"; - sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/downplay-mode"; - license = lib.licenses.free; - }; - }) {}; - dpaste = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dpaste"; - ename = "dpaste"; - version = "20160303.1312"; - src = fetchFromGitHub { - owner = "gregnewman"; - repo = "dpaste.el"; - rev = "e7a1a18de77f752eb0dbb4b878925f2265538d0b"; - sha256 = "1493fan64lfq2gb9cgr7ja9xfd8jgqfbx9k84iaplavnpmqr5348"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dpaste"; - sha256 = "0wrfy9w0yf5m15vmhg4l880v92cy557g332xniqs77ab0sga4vgc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dpaste"; - license = lib.licenses.free; - }; - }) {}; - dpaste_de = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web }: - melpaBuild { - pname = "dpaste_de"; - ename = "dpaste_de"; - version = "20131015.525"; - src = fetchFromGitHub { - owner = "theju"; - repo = "dpaste_de.el"; - rev = "ab041443884a7a4bfdc81b055688821e8efc9b02"; - sha256 = "0aplwchr6r1nk2hfpqw2qxyp57zzkqydyzpc0mwz88halnkskblz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dpaste_de"; - sha256 = "0022dd8l7jsyl0lv9x6iz882ln71js8brqcbiqz001zv45yrgvy0"; - name = "recipe"; - }; - packageRequires = [ web ]; - meta = { - homepage = "https://melpa.org/#/dpaste_de"; - license = lib.licenses.free; - }; - }) {}; - dpkg-dev-el = callPackage ({ debian-el - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dpkg-dev-el"; - ename = "dpkg-dev-el"; - version = "20181021.1708"; - src = fetchgit { - url = "https://salsa.debian.org/emacsen-team/dpkg-dev-el.git"; - rev = "a80f8ac5d81720cce90cf3bc5fbb45d50b1953d7"; - sha256 = "0358c6gvyb85zr5r79ar3q46c83gz39rawyhgcg1h1hqxgj6a2lx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e057df3608780a6191f761b9a81262c2eaa053c/recipes/dpkg-dev-el"; - sha256 = "1cgfzxlw4m3wsl5fhck08pc2w7fw91mxk58yaprk9lkw4jxd1yjy"; - name = "recipe"; - }; - packageRequires = [ debian-el ]; - meta = { - homepage = "https://melpa.org/#/dpkg-dev-el"; - license = lib.licenses.free; - }; - }) {}; - dr-racket-like-unicode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dr-racket-like-unicode"; - ename = "dr-racket-like-unicode"; - version = "20161021.511"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "dr-racket-like-unicode"; - rev = "4953f1c8a68472e157a0dcd0a7e35a4ec2577133"; - sha256 = "1i7k7d2gnzd2izplhdmjbkcxvkwnc3y3y0hrcp2rq60bjpkcl1gv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e612ede00c4b44ace741d2b6baabc61571af15c/recipes/dr-racket-like-unicode"; - sha256 = "0cqcbn4hmv99d8z03xc0rqw4yh5by6g09y33h75dhl9nh95rybgf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dr-racket-like-unicode"; - license = lib.licenses.free; - }; - }) {}; - dracula-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dracula-theme"; - ename = "dracula-theme"; - version = "20190107.1216"; - src = fetchFromGitHub { - owner = "dracula"; - repo = "emacs"; - rev = "66e429f4d576346661ae3a111bafaa06febc1d94"; - sha256 = "0lyy8vjzzcfcj4hm7scxl4cg4qm67rprzdj7dmyc3907yad4n023"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d63cb8906726f106e65f7d9895b49a38ffebf8d5/recipes/dracula-theme"; - sha256 = "1px162v7h7136rasafq875yzw0h8n6wvzbyh73c3w093kd30bmh8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dracula-theme"; - license = lib.licenses.free; - }; - }) {}; - draft-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "draft-mode"; - ename = "draft-mode"; - version = "20140609.756"; - src = fetchFromGitLab { - owner = "gaudecker"; - repo = "draft-mode"; - rev = "f059c04b044f62aec764c7698adddad301bfe89c"; - sha256 = "01dspkv7g4xmmqgz6f1p190h5p4f4vrw8r9dikrjch02bb76wqir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbfefacda071c0f5ee698a4c345a2d6fea6a0d24/recipes/draft-mode"; - sha256 = "19lq1a3rj6fck3xq2vcz8fk30hpx25kyfz6c7hmq36kx4lv0mjpa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/draft-mode"; - license = lib.licenses.free; - }; - }) {}; - drag-stuff = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drag-stuff"; - ename = "drag-stuff"; - version = "20161107.2349"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "drag-stuff.el"; - rev = "d49fe376d24f0f8ac5ade67b6d7fccc2487c81db"; - sha256 = "1jrr59iazih3imkl9ja1lbni9v3xv6b8gmqs015g2mxhlql35jka"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff"; - sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/drag-stuff"; - license = lib.licenses.free; - }; - }) {}; - drawille = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drawille"; - ename = "drawille"; - version = "20160418.1138"; - src = fetchFromGitHub { - owner = "josuah"; - repo = "drawille-el"; - rev = "d582b455c01432bc80933650c52a1f586bd1b5ad"; - sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/drawille"; - sha256 = "0nkhy00jx06a7899dgyajidah29p9536mvjr7cyqm99ari70m7y9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/drawille"; - license = lib.licenses.free; - }; - }) {}; - drill-instructor-AZIK-force = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "drill-instructor-AZIK-force"; - ename = "drill-instructor-AZIK-force"; - version = "20151122.2114"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "drill-instructor-AZIK-force.el"; - rev = "008cea202dc31d7d6fb1e7d8e6334d516403b7a5"; - sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb5ee8a113b98e8df8368c5e17c6d762decf8f5b/recipes/drill-instructor-AZIK-force"; - sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/drill-instructor-AZIK-force"; - license = lib.licenses.free; - }; - }) {}; - drone = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drone"; - ename = "drone"; - version = "20161106.118"; - src = fetchFromGitHub { - owner = "olymk2"; - repo = "emacs-drone"; - rev = "1d4ee037ad3208847a4235426edf0c4a3e7b1899"; - sha256 = "1dwxgzf32cvfi7b6zw3qzamj82zs2c0ap6i1w0jqqgzmkz20dqvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b62e697798627b07000ac72c19ecd1d89c22229/recipes/drone"; - sha256 = "0wjbmgic715i4nxk90nasfamk04lskl8dll9y5klk32w1lsj546q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/drone"; - license = lib.licenses.free; - }; - }) {}; - dropbox = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , oauth }: - melpaBuild { - pname = "dropbox"; - ename = "dropbox"; - version = "20181208.1448"; - src = fetchFromGitHub { - owner = "pavpanchekha"; - repo = "dropbox.el"; - rev = "9fcb70c3e4e32b1612644d65e3b98f00255a40d4"; - sha256 = "0a26cfv7ayalwgg78jm4r6m2wv1wjqy4s0y1lv6j8zv193mqzgdz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dropbox"; - sha256 = "1dqjsn7wkjjvbwq3kgdd7bvwrirappwnhcwkj2ai19dpx6jd8wym"; - name = "recipe"; - }; - packageRequires = [ json oauth ]; - meta = { - homepage = "https://melpa.org/#/dropbox"; - license = lib.licenses.free; - }; - }) {}; - drupal-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode }: - melpaBuild { - pname = "drupal-mode"; - ename = "drupal-mode"; - version = "20171120.1509"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "drupal-mode"; - rev = "47fda0a38a5b197f4606137d9c3b7d44aaeaa886"; - sha256 = "1rg46prsymxc9lyhk7cbr53089p970mmmybiir2qsyx2s4m6mnfl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13e16af340868048eb1f51f9865dfc707e57abe8/recipes/drupal-mode"; - sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; - name = "recipe"; - }; - packageRequires = [ php-mode ]; - meta = { - homepage = "https://melpa.org/#/drupal-mode"; - license = lib.licenses.free; - }; - }) {}; - drupal-spell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drupal-spell"; - ename = "drupal-spell"; - version = "20130520.955"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "drupal-spell"; - rev = "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae"; - sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb859d9755bde3fd852bc7d08f2fab2429ba31b3/recipes/drupal-spell"; - sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/drupal-spell"; - license = lib.licenses.free; - }; - }) {}; - dsvn = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dsvn"; - ename = "dsvn"; - version = "20190316.1501"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "dsvn"; - rev = "c37d2412ba92aad647bcf5aeb151e620e8069f8d"; - sha256 = "1bv4ivv9j5r0ax4vay1kmwv753y44qj6qprr38yh7ky0fpsml34c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/dsvn"; - sha256 = "189navhhakmkhfc2afsls1jiaxg62wxvpmmn00jlnwlgjm97gdk3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dsvn"; - license = lib.licenses.free; - }; - }) {}; - dtk = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "dtk"; - ename = "dtk"; - version = "20190531.2126"; - src = fetchFromGitHub { - owner = "dtk01"; - repo = "dtk"; - rev = "dd1bda6b63a1679b60fee108cf7b7de7290be986"; - sha256 = "0gfc9sw6fbrwd9yrpg7s5p0wlbnf89klry92g7dq50an035w75gn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39333468fb6e9493deb86511f0032610a412ec8a/recipes/dtk"; - sha256 = "005x3j5q8dhphhh4c48l6qx7qi3jz9k02m86ww1bzwfzji55p9sp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/dtk"; - license = lib.licenses.free; - }; - }) {}; - dtrace-script-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dtrace-script-mode"; - ename = "dtrace-script-mode"; - version = "20150213.2223"; - src = fetchFromGitHub { - owner = "dotemacs"; - repo = "dtrace-script-mode"; - rev = "a92f76c65b9fb64d448e503b4ea7ff06085be8ee"; - sha256 = "0maj816qrrawdpj72hd33qcgl4wrn9cbqz26l4zfb124z1m35yqv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dtrace-script-mode"; - sha256 = "00ar2qahgqpf4an6v9lbzgj73ylbavvigsm8kqdq94ghm4awxi4z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dtrace-script-mode"; - license = lib.licenses.free; - }; - }) {}; - dtrt-indent = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dtrt-indent"; - ename = "dtrt-indent"; - version = "20190128.1301"; - src = fetchFromGitHub { - owner = "jscheid"; - repo = "dtrt-indent"; - rev = "9ab9cb9d7f391fb09f61c9289c51c36374ddbcbb"; - sha256 = "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994/recipes/dtrt-indent"; - sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dtrt-indent"; - license = lib.licenses.free; - }; - }) {}; - dts-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dts-mode"; - ename = "dts-mode"; - version = "20161103.523"; - src = fetchFromGitHub { - owner = "bgamari"; - repo = "dts-mode"; - rev = "9ee0854446dcc6c53d2b8d2941051768dba50344"; - sha256 = "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/864a7ec64c46a0357710bc80ad4880dd35b2fda1/recipes/dts-mode"; - sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dts-mode"; - license = lib.licenses.free; - }; - }) {}; - ducpel = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ducpel"; - ename = "ducpel"; - version = "20140702.454"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "ducpel"; - rev = "2f2ce2df269d99261c808a5c4ebc00d6d2cddabc"; - sha256 = "19a8q9nakjzyzv7aryndifjr9c8jls9a2v7ilfjj8kscwxpjqlzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a/recipes/ducpel"; - sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ducpel"; - license = lib.licenses.free; - }; - }) {}; - dumb-diff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dumb-diff"; - ename = "dumb-diff"; - version = "20171211.1322"; - src = fetchFromGitHub { - owner = "jacktasia"; - repo = "dumb-diff"; - rev = "1a2331d283049b71a07c1b06b1e0627a950d55f4"; - sha256 = "05gmpp4s9y2ql27vb5vpqn3xh35qjfxgq9gzyvg86df43qfl8wvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf7fa0b4235247d82569ed078f92774f10afa45c/recipes/dumb-diff"; - sha256 = "1h1dvxbj85kgi04lxh0bpx81f6sl1fd56lhjmq1cw9biwqw0sm0c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dumb-diff"; - license = lib.licenses.free; - }; - }) {}; - dumb-jump = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , s }: - melpaBuild { - pname = "dumb-jump"; - ename = "dumb-jump"; - version = "20190327.1027"; - src = fetchFromGitHub { - owner = "jacktasia"; - repo = "dumb-jump"; - rev = "6988b21a08b53fbfeaa6e0b0f182524257dec1e4"; - sha256 = "1a0zs58j1027pllssb3pai2654wbvdbf2g0y3dqbg35gfqanaizp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump"; - sha256 = "1j90n8gydsp2v07rysz1k5vf6hspybcl27214sib1iz3hbimid1w"; - name = "recipe"; - }; - packageRequires = [ dash emacs f popup s ]; - meta = { - homepage = "https://melpa.org/#/dumb-jump"; - license = lib.licenses.free; - }; - }) {}; - dummyparens = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dummyparens"; - ename = "dummyparens"; - version = "20141009.324"; - src = fetchFromGitHub { - owner = "snosov1"; - repo = "dummyparens"; - rev = "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89"; - sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1f6199a9afece4d6eb581dc8e513601d55a5833/recipes/dummyparens"; - sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dummyparens"; - license = lib.licenses.free; - }; - }) {}; - dune = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dune"; - ename = "dune"; - version = "20190529.2005"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "dune"; - rev = "060b6acabba7bf0713912afb28e4cdb0461c2199"; - sha256 = "1mw8jspqf4wxawnshkbbqpnxzzdz576wl6mgnzbh6ddxr9pk2z7w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06648d1d37767cbdc7588d7a8f709d679d478a3b/recipes/dune"; - sha256 = "1lqza4fjm9xxmdn8040bvsl467qzjy709dlmiq2241gfhxpmvvr7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dune"; - license = lib.licenses.free; - }; - }) {}; - duplicate-thing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "duplicate-thing"; - ename = "duplicate-thing"; - version = "20181031.800"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "duplicate-thing"; - rev = "9d8fd05e3e5caa35d3f2a0c0032c92f0c0908e21"; - sha256 = "05lflc0r84c95vb81wbn44kh11cbgm42zn3y4ss0ychbf13mzdb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be28db1bfbd663af5b5c24bad50372fddd341982/recipes/duplicate-thing"; - sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/duplicate-thing"; - license = lib.licenses.free; - }; - }) {}; - dut-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dut-mode"; - ename = "dut-mode"; - version = "20170729.1411"; - src = fetchFromGitHub { - owner = "dut-lang"; - repo = "dut-mode"; - rev = "9235c7acaa6690942e9de8b7acd1e4be0c859dc1"; - sha256 = "0fpqsm6y23anyx57gp4c6whzxrn8x03cp76iwx27c4gkq6ph1z8n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf49ceab8b25591fab2ed6574cba0e6634d1539/recipes/dut-mode"; - sha256 = "0hlr5qvqcqdh2k1nyq621z6vq2yiflj4jy0pgg6lbiy3j6819mai"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dut-mode"; - license = lib.licenses.free; - }; - }) {}; - dyalog-mode = callPackage ({ cl-lib ? null - , emacs - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dyalog-mode"; - ename = "dyalog-mode"; - version = "20190416.701"; - src = fetchhg { - url = "https://bitbucket.com/harsman/dyalog-mode"; - rev = "abe3de955fd6"; - sha256 = "06csyjlxfjbhwhiin6ampxsxd6zhkkqxmv9nmmf8ryjlr99prs0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/dyalog-mode"; - sha256 = "0w61inyfvxiyihx5z9fk1ckawcd3cr6xiradbbwzmn25k99gkbgr"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/dyalog-mode"; - license = lib.licenses.free; - }; - }) {}; - dylan-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dylan-mode"; - ename = "dylan-mode"; - version = "20190108.1900"; - src = fetchFromGitHub { - owner = "dylan-lang"; - repo = "dylan-mode"; - rev = "9a6ad5ff83f2dfc25ce3deee9d3ef71ed53964b5"; - sha256 = "1d6krgiabkrj3mryaz79vmiqy0vkr5s8ji34yjd14v73ikzwxwkp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94481ba3ebba6a99f11efab5a33e8bc6ea2d857a/recipes/dylan-mode"; - sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dylan-mode"; - license = lib.licenses.free; - }; - }) {}; - dynamic-fonts = callPackage ({ fetchFromGitHub - , fetchurl - , font-utils - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "dynamic-fonts"; - ename = "dynamic-fonts"; - version = "20140731.526"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "dynamic-fonts"; - rev = "004ee6014dc7dbff8f14d26015c91d9229f6eac0"; - sha256 = "04rz0nqnkv6cjvm1yb83r4nxgnpkzcxxhyxkqwdjhka2c5dbisr4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/dynamic-fonts"; - sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; - name = "recipe"; - }; - packageRequires = [ font-utils pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/dynamic-fonts"; - license = lib.licenses.free; - }; - }) {}; - dynamic-ruler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dynamic-ruler"; - ename = "dynamic-ruler"; - version = "20160602.108"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "dynamic-ruler"; - rev = "c9c0de6fe5721f06b50e01d9b4684b519c71b367"; - sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/926c43867120db429807ff5aaacc8af65a1738c8/recipes/dynamic-ruler"; - sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dynamic-ruler"; - license = lib.licenses.free; - }; - }) {}; - dynamic-spaces = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dynamic-spaces"; - ename = "dynamic-spaces"; - version = "20171027.1151"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "dynamic-spaces"; - rev = "97ae8480c257ba573ca3d06dbf602f9b23c41d38"; - sha256 = "0qs7gqjl6ilwwmd21663345az6766j7h1pv7wvd2kyh24yfs1xkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0b59ce66132cbe2b1f41b665dcb30bdd04bc48b/recipes/dynamic-spaces"; - sha256 = "0l4hwqivzv51j7h5sgd91dxb5slylmrfrvf7r6w0k04bhld6ry0c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dynamic-spaces"; - license = lib.licenses.free; - }; - }) {}; - e2ansi = callPackage ({ face-explorer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2ansi"; - ename = "e2ansi"; - version = "20190517.1202"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "e2ansi"; - rev = "6e1bb4e4e27885d1786db08b091cfa13b184fb54"; - sha256 = "1rbbwz8a6gqyxkkh5fapzlbnny816yzqj4170fzrswhib610mcvz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e/recipes/e2ansi"; - sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94"; - name = "recipe"; - }; - packageRequires = [ face-explorer ]; - meta = { - homepage = "https://melpa.org/#/e2ansi"; - license = lib.licenses.free; - }; - }) {}; - e2wm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , window-layout }: - melpaBuild { - pname = "e2wm"; - ename = "e2wm"; - version = "20170214.1636"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-window-manager"; - rev = "4353d3394c77a49f8f0291c239858c8c5e877549"; - sha256 = "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8da85815c39f58552a968ae68ee07c08c53b0f61/recipes/e2wm"; - sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; - name = "recipe"; - }; - packageRequires = [ window-layout ]; - meta = { - homepage = "https://melpa.org/#/e2wm"; - license = lib.licenses.free; - }; - }) {}; - e2wm-R = callPackage ({ e2wm - , ess - , fetchFromGitHub - , fetchurl - , inlineR - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-R"; - ename = "e2wm-R"; - version = "20151230.126"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "e2wm-R.el"; - rev = "4350601ee1a96bf89777b3f09f1b79b88e2e6e4d"; - sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a3ba9843bdf275815b149e4c4b0a947bbc5e614/recipes/e2wm-R"; - sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; - name = "recipe"; - }; - packageRequires = [ e2wm ess inlineR ]; - meta = { - homepage = "https://melpa.org/#/e2wm-R"; - license = lib.licenses.free; - }; - }) {}; - e2wm-bookmark = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-bookmark"; - ename = "e2wm-bookmark"; - version = "20151122.2121"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "e2wm-bookmark.el"; - rev = "bad816b6d8049984d69bcd277b7d325fb84d55eb"; - sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45488849da42ac775e532f30f588bfabb7af3cae/recipes/e2wm-bookmark"; - sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5"; - name = "recipe"; - }; - packageRequires = [ e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-bookmark"; - license = lib.licenses.free; - }; - }) {}; - e2wm-direx = callPackage ({ direx - , e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-direx"; - ename = "e2wm-direx"; - version = "20170509.601"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-direx"; - rev = "b47f19d15436cc28233a812a1150689f61d11046"; - sha256 = "0lihc02b0792kk61vcmhi0jwb7c4w2hi19g6a0q1598b3rci82nf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8320cf626050cf455c97ef22e7a8ccfb253e3243/recipes/e2wm-direx"; - sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; - name = "recipe"; - }; - packageRequires = [ direx e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-direx"; - license = lib.licenses.free; - }; - }) {}; - e2wm-pkgex4pl = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , plsense-direx }: - melpaBuild { - pname = "e2wm-pkgex4pl"; - ename = "e2wm-pkgex4pl"; - version = "20140525.347"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-pkgex4pl"; - rev = "b72561b75e98961f05544a2159d83592c964ba1e"; - sha256 = "1cx6kdxhq9ybwwvc1vpwcfy08yf1h4xacgimm36kp9xayvxsmq2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f84b421cb1673d2a9fe820cee11dc4a6e72adad/recipes/e2wm-pkgex4pl"; - sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; - name = "recipe"; - }; - packageRequires = [ e2wm plsense-direx ]; - meta = { - homepage = "https://melpa.org/#/e2wm-pkgex4pl"; - license = lib.licenses.free; - }; - }) {}; - e2wm-svg-clock = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , svg-clock }: - melpaBuild { - pname = "e2wm-svg-clock"; - ename = "e2wm-svg-clock"; - version = "20150106.506"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "e2wm-svg-clock.el"; - rev = "d425925e3afffcbe2ff74edc80b714e4319d4c94"; - sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/784f5598910ecf208a68fa97448e148a8ebefa32/recipes/e2wm-svg-clock"; - sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms"; - name = "recipe"; - }; - packageRequires = [ e2wm svg-clock ]; - meta = { - homepage = "https://melpa.org/#/e2wm-svg-clock"; - license = lib.licenses.free; - }; - }) {}; - e2wm-sww = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-sww"; - ename = "e2wm-sww"; - version = "20140524.158"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-sww"; - rev = "db454ac3eddd53a62f2725f6e2d5ac455caf200c"; - sha256 = "1a8z94z0wp9r4kh44bn2m74k866jwq7zvjihxmmzr0rfb85q2d99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc873e8271e9f372e08da5d0e4b77c8ba0e3a8cb/recipes/e2wm-sww"; - sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; - name = "recipe"; - }; - packageRequires = [ e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-sww"; - license = lib.licenses.free; - }; - }) {}; - e2wm-term = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "e2wm-term"; - ename = "e2wm-term"; - version = "20141009.608"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-term"; - rev = "65b5ac88043d5c4048920a048f3599904ca55981"; - sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a800f5af893cb670cedb47e4a723c407be8429/recipes/e2wm-term"; - sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; - name = "recipe"; - }; - packageRequires = [ e2wm log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/e2wm-term"; - license = lib.licenses.free; - }; - }) {}; - eacl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "eacl"; - ename = "eacl"; - version = "20190518.2320"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "eacl"; - rev = "1a32676165c0e63dc85470272efaccd5f497870a"; - sha256 = "0wp0sk10icpjmvzpb7dk2bf633lk4lbl7m09394lhxisl3zqq6cs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl"; - sha256 = "16afsf3diz498jb63q85lm5ifvm487clfl838qzagl1l4aywhlwr"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/eacl"; - license = lib.licenses.free; - }; - }) {}; - easy-after-load = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-after-load"; - ename = "easy-after-load"; - version = "20170817.531"; - src = fetchFromGitHub { - owner = "pd"; - repo = "easy-after-load"; - rev = "29e20145da49ac9ea40463c552130777408040de"; - sha256 = "00xgd39qc760lmxpbggzn98aks5nad08b5ry54pkszjlmh37yqj7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/384ffc463cc6edb4806f8da68bd251e662718e65/recipes/easy-after-load"; - sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/easy-after-load"; - license = lib.licenses.free; - }; - }) {}; - easy-escape = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-escape"; - ename = "easy-escape"; - version = "20161209.744"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "easy-escape"; - rev = "8623aa9d715fe7677ea24d7164ea6e4ecdb3e65b"; - sha256 = "12shxdr03l39vj3grsncym1mv2vn39k58vvhbwc1q591adqhwalz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c39e3b867fa3143e9dc7c2fefa57b5755f70b433/recipes/easy-escape"; - sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/easy-escape"; - license = lib.licenses.free; - }; - }) {}; - easy-hugo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , request }: - melpaBuild { - pname = "easy-hugo"; - ename = "easy-hugo"; - version = "20190505.1813"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-easy-hugo"; - rev = "c80b972faa2c3addc472fe6412ca28dc5583b1d6"; - sha256 = "08lhs0nhd19irssq4w028wyiaf5d2a7pqd1b3hp7rgza411lvwji"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo"; - sha256 = "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g"; - name = "recipe"; - }; - packageRequires = [ emacs popup request ]; - meta = { - homepage = "https://melpa.org/#/easy-hugo"; - license = lib.licenses.free; - }; - }) {}; - easy-jekyll = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "easy-jekyll"; - ename = "easy-jekyll"; - version = "20190424.1529"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-easy-jekyll"; - rev = "6ce93c386ab32f08e23590d71489d8a1bd5a29c5"; - sha256 = "0vf0966apf815j85nlbj74lqk874jwynfwpn1gnc0krkjgprxkjw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll"; - sha256 = "16jj70fr23z5qsaijv4d4xfiiypny2cama8rsaci9fk9haq19lxv"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/easy-jekyll"; - license = lib.licenses.free; - }; - }) {}; - easy-kill = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-kill"; - ename = "easy-kill"; - version = "20181114.1530"; - src = fetchFromGitHub { - owner = "leoliu"; - repo = "easy-kill"; - rev = "2a6309d98aa6b71df6bbbcdf15cab3187c521a6b"; - sha256 = "1j8hl0f52fqb21775xn94sf9g12yqyg6z0ibgmxzmnl02ir4xr86"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d0a74c2a7d8859e9311bc8d71f5e6cf5a8063b6/recipes/easy-kill"; - sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/easy-kill"; - license = lib.licenses.free; - }; - }) {}; - easy-kill-extras = callPackage ({ easy-kill - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-kill-extras"; - ename = "easy-kill-extras"; - version = "20180920.634"; - src = fetchFromGitHub { - owner = "knu"; - repo = "easy-kill-extras.el"; - rev = "b8ce8350cc86e0229f195082557970cd51def960"; - sha256 = "1f8db92zzk8g8yyj0g334mdbgqmzrs8xamm1d24jai1289hm29xa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b55d93f78fefde47a2bd4ebbfd93c028fab1f40/recipes/easy-kill-extras"; - sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; - name = "recipe"; - }; - packageRequires = [ easy-kill ]; - meta = { - homepage = "https://melpa.org/#/easy-kill-extras"; - license = lib.licenses.free; - }; - }) {}; - easy-repeat = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-repeat"; - ename = "easy-repeat"; - version = "20150516.148"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "easy-repeat.el"; - rev = "060f0e6801c82c40c06961dc0528a00e18947a8c"; - sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f5e0d19043f6a24ab4069c9c850e96cbe61a8f/recipes/easy-repeat"; - sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/easy-repeat"; - license = lib.licenses.free; - }; - }) {}; - ebal = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ebal"; - ename = "ebal"; - version = "20171231.2216"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "ebal"; - rev = "3a7a9a66efed30416e2013da80fed2f79b91def1"; - sha256 = "0vxxswbx8l9jcv81akw1bd7ra4k51gjmv79z11fhbzf17n7y910a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal"; - sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/ebal"; - license = lib.licenses.free; - }; - }) {}; - ebf = callPackage ({ cl-lib ? null - , dash - , dash-functional - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ebf"; - ename = "ebf"; - version = "20160211.958"; - src = fetchFromGitHub { - owner = "rexim"; - repo = "ebf"; - rev = "b52dd2fa8c6a4a7acf4d93c16f54fbd9fbe087df"; - sha256 = "1yyx6z251bgvcfi3jzdq4cnmyd8vmz3gffbzii5bdga4ms288j5d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22e2f6383f2a7a01778c0524af19a68af57796ae/recipes/ebf"; - sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dash-functional ]; - meta = { - homepage = "https://melpa.org/#/ebf"; - license = lib.licenses.free; - }; - }) {}; - ebib = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsebib }: - melpaBuild { - pname = "ebib"; - ename = "ebib"; - version = "20190606.109"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "ebib"; - rev = "960862f2a3058f9ca93850a148410d67e3b33ebb"; - sha256 = "089wjdam5mpqyndry0fpnklrs9hya1rph7imma550irkisykma1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib"; - sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; - name = "recipe"; - }; - packageRequires = [ emacs parsebib ]; - meta = { - homepage = "https://melpa.org/#/ebib"; - license = lib.licenses.free; - }; - }) {}; - ecb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ecb"; - ename = "ecb"; - version = "20170728.1221"; - src = fetchFromGitHub { - owner = "ecb-home"; - repo = "ecb"; - rev = "1330a44cf3c171781083b0b926ab7622f64e6e81"; - sha256 = "0nx1blkvnzrxd2l7ckdihm9fvq5vkcghf6qccagkjzk4zbdalz30"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4db5183f35bedbc459843ad9f442f9cb6608c5fc/recipes/ecb"; - sha256 = "0z61p9zgv7gcx04m4jv16a3mn9kjvnw0rdd65kpvbmzkgls0nk8d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ecb"; - license = lib.licenses.free; - }; - }) {}; - eclim = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , popup - , s - , yasnippet }: - melpaBuild { - pname = "eclim"; - ename = "eclim"; - version = "20181108.334"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "23f5b294f833ce58516d7b9ae08a7792d70022a1"; - sha256 = "17q972354nkkynfjmwih4vp7s5dzdvr3nf7ni3ci095lzb0zzf4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/eclim"; - sha256 = "1n60ci6kjmzy2khr3gs7s8gf21j1f9zjaj5a1yy2dyygsarbxw7b"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash json popup s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/eclim"; - license = lib.licenses.free; - }; - }) {}; - eclipse-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eclipse-theme"; - ename = "eclipse-theme"; - version = "20190122.218"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "eclipse-theme"; - rev = "485cc1e7bd7eb6a42c6db803f4170ec4da18fc28"; - sha256 = "0bp9ci7024sdayar2dpmgax200ipxg5wajw3d2vdj3f5v9qcyxsj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81fcf3536ead18a91400f6936b3f789b4b594b9c/recipes/eclipse-theme"; - sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eclipse-theme"; - license = lib.licenses.free; - }; - }) {}; - ecukes = callPackage ({ ansi - , commander - , dash - , espuds - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ecukes"; - ename = "ecukes"; - version = "20171216.408"; - src = fetchFromGitHub { - owner = "ecukes"; - repo = "ecukes"; - rev = "3a77ba9f1064c2bca47b401974c009e65727c46e"; - sha256 = "1isscwz4h3nx62lwfrj899lp2yc27zk1ndgr441d848495ccmshn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/ecukes"; - sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash espuds f s ]; - meta = { - homepage = "https://melpa.org/#/ecukes"; - license = lib.licenses.free; - }; - }) {}; - edbi = callPackage ({ concurrent - , ctable - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi"; - ename = "edbi"; - version = "20160224.1741"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-edbi"; - rev = "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0"; - sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/238a11afa52d2c01d69eb16ffd7d07ccd6dff403/recipes/edbi"; - sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; - name = "recipe"; - }; - packageRequires = [ concurrent ctable epc ]; - meta = { - homepage = "https://melpa.org/#/edbi"; - license = lib.licenses.free; - }; - }) {}; - edbi-database-url = callPackage ({ edbi - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi-database-url"; - ename = "edbi-database-url"; - version = "20160221.1123"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "edbi-database-url"; - rev = "a6e4be7547ee8e0bb43a11ff173d6271b21b5012"; - sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e25bf3d65ef2fb09eb0802cfd3e3faee86a5cfdb/recipes/edbi-database-url"; - sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn"; - name = "recipe"; - }; - packageRequires = [ edbi emacs ]; - meta = { - homepage = "https://melpa.org/#/edbi-database-url"; - license = lib.licenses.free; - }; - }) {}; - edbi-django = callPackage ({ edbi - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic }: - melpaBuild { - pname = "edbi-django"; - ename = "edbi-django"; - version = "20190212.617"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "edbi-django"; - rev = "9b73db66c02a222fc62dc3bc590962f58c5b43d8"; - sha256 = "1yinm4qzwpdmr4a0isbkiw6ny23gllajcppwh7g0d62di3v242dm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10dd853022ab93e345761b04d760b3763f4d2384/recipes/edbi-django"; - sha256 = "02vcbqgkvhlw9msf65777f85c8myxr95g2dz199nlfmz4vpqrkgq"; - name = "recipe"; - }; - packageRequires = [ edbi emacs pythonic ]; - meta = { - homepage = "https://melpa.org/#/edbi-django"; - license = lib.licenses.free; - }; - }) {}; - edbi-minor-mode = callPackage ({ edbi - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi-minor-mode"; - ename = "edbi-minor-mode"; - version = "20160706.747"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "edbi-minor-mode"; - rev = "566a2141a6eb9d9d5d7e1bd7c251d1c5e8f0d2ec"; - sha256 = "1g6mlmrwl8p5ffj9q298vymd9xi2kpp7mhbmz4by4f6a3g831c88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb878b60c7ecbb1e3a47aef1d9765061c510644/recipes/edbi-minor-mode"; - sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; - name = "recipe"; - }; - packageRequires = [ edbi ]; - meta = { - homepage = "https://melpa.org/#/edbi-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - edbi-sqlite = callPackage ({ edbi - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi-sqlite"; - ename = "edbi-sqlite"; - version = "20160221.1123"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "edbi-sqlite"; - rev = "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f"; - sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edbi-sqlite"; - sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y"; - name = "recipe"; - }; - packageRequires = [ edbi emacs ]; - meta = { - homepage = "https://melpa.org/#/edbi-sqlite"; - license = lib.licenses.free; - }; - }) {}; - ede-compdb = callPackage ({ cl-lib ? null - , ede ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , semantic ? null }: - melpaBuild { - pname = "ede-compdb"; - ename = "ede-compdb"; - version = "20150920.1333"; - src = fetchFromGitHub { - owner = "randomphrase"; - repo = "ede-compdb"; - rev = "23c91082270fcef24ea791b848f1604e36888ff0"; - sha256 = "03xphcdw4b6z8i3dgrmq0l8m5nfpsjn0jv0y1rlabrbvxw1gpcqq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b70138b7d82aec2d60f4a7c0cd21e734a1fc52a/recipes/ede-compdb"; - sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ede semantic ]; - meta = { - homepage = "https://melpa.org/#/ede-compdb"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ede-php-autoload"; - ename = "ede-php-autoload"; - version = "20180901.555"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "ede-php-autoload"; - rev = "8a4eeeaa93b8d87b65a107c4ebcbeb14528d9449"; - sha256 = "109cys3d4pfaa2c6gb33p5b40cd6wmisx63w20cxpj86drx8iabf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afc7ddfcf16e92889e54f30599b576a24823f60d/recipes/ede-php-autoload"; - sha256 = "1255a1drpb50650i0yijahbp97chpw89mi9fvdrk3vf64xlysamq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload-composer-installers = callPackage ({ ede-php-autoload - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ede-php-autoload-composer-installers"; - ename = "ede-php-autoload-composer-installers"; - version = "20170221.1226"; - src = fetchFromGitHub { - owner = "xendk"; - repo = "ede-php-autoload-composer-installers"; - rev = "3e2fde975a06757b363e235c67e6341ebe668f60"; - sha256 = "11sjq86nm7yqxi0y5n37c2c3w0p6mc28n85j40qj8nd7b2nb9s3j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e0e9058593b32b8d9fd7873d4698b4dd516930f/recipes/ede-php-autoload-composer-installers"; - sha256 = "0s7dv81niz4h8kj0648x2nbmz47hqxchfs2rjmjpy2lcbifvj268"; - name = "recipe"; - }; - packageRequires = [ ede-php-autoload f s ]; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload-composer-installers"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload-drupal = callPackage ({ ede-php-autoload - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ede-php-autoload-drupal"; - ename = "ede-php-autoload-drupal"; - version = "20170316.1458"; - src = fetchFromGitHub { - owner = "xendk"; - repo = "ede-php-autoload-drupal"; - rev = "54a04241d94fabc4f4d16ae4dc8ba4f0c6e3b435"; - sha256 = "1ckfja95zk4f7fgvycia7nxhxjgz4byrz30ic63f6kcq4dx78scs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/532fec4788350cc11893c32e3895f06510a39d35/recipes/ede-php-autoload-drupal"; - sha256 = "139sr7jy5hb8h5zmw5mw01r0dy7yvbbyaxzj62m1a589n8w6a964"; - name = "recipe"; - }; - packageRequires = [ ede-php-autoload f s ]; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload-drupal"; - license = lib.licenses.free; - }; - }) {}; - edebug-x = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edebug-x"; - ename = "edebug-x"; - version = "20130615.2325"; - src = fetchFromGitHub { - owner = "ScottyB"; - repo = "edebug-x"; - rev = "a2c2c42553d3bcbd5ac11898554865acbed1bc46"; - sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/204e40cd450f4223598be1f385f08ec82b44f70c/recipes/edebug-x"; - sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edebug-x"; - license = lib.licenses.free; - }; - }) {}; - edit-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-at-point"; - ename = "edit-at-point"; - version = "20150716.624"; - src = fetchFromGitHub { - owner = "enoson"; - repo = "edit-at-point.el"; - rev = "3b800c11685102e1eab62ec71c5fc1589ebb81a7"; - sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/edit-at-point"; - sha256 = "1mijasr4ww6vcjfyk7jdv4mh7w2rrspqbbmqayiy2918qg2x01df"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edit-at-point"; - license = lib.licenses.free; - }; - }) {}; - edit-color-stamp = callPackage ({ cl-lib ? null - , es-lib - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-color-stamp"; - ename = "edit-color-stamp"; - version = "20130529.1033"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "edit-color-stamp"; - rev = "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3"; - sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/edit-color-stamp"; - sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8"; - name = "recipe"; - }; - packageRequires = [ cl-lib es-lib ]; - meta = { - homepage = "https://melpa.org/#/edit-color-stamp"; - license = lib.licenses.free; - }; - }) {}; - edit-indirect = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-indirect"; - ename = "edit-indirect"; - version = "20180422.1107"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "edit-indirect"; - rev = "de645d8144e8a08f039a9c88185121ec81d957ef"; - sha256 = "0xg6p3ccch9k920xhhpyhn5mkgc0sfyxsn8l1wsc6vbbp5h7wlad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edit-indirect"; - sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/edit-indirect"; - license = lib.licenses.free; - }; - }) {}; - edit-indirect-region-latex = callPackage ({ edit-indirect - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-indirect-region-latex"; - ename = "edit-indirect-region-latex"; - version = "20161128.2245"; - src = fetchFromGitHub { - owner = "niitsuma"; - repo = "edit-indirect-region-latex"; - rev = "05043f2c0c9838947d3ca4b51b695deb7c47612e"; - sha256 = "0dgac0nk9x4sz4lisxb5badrzpcjqjwgi79hhl1y6mafzm0ncqs2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/edit-indirect-region-latex"; - sha256 = "0ys0fpfk259g14wvg0nnkc3wk1dbjjd2n4a636jblgq63w6g3h79"; - name = "recipe"; - }; - packageRequires = [ edit-indirect emacs ht ]; - meta = { - homepage = "https://melpa.org/#/edit-indirect-region-latex"; - license = lib.licenses.free; - }; - }) {}; - edit-list = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-list"; - ename = "edit-list"; - version = "20100930.743"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "edit-list"; - rev = "f460d3f9e208a4e606fe6ded307f1b011916ca71"; - sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8aa348ce5289a8b1238f186affac1d544af755/recipes/edit-list"; - sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edit-list"; - license = lib.licenses.free; - }; - }) {}; - edit-server = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-server"; - ename = "edit-server"; - version = "20181016.425"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "emacs_chrome"; - rev = "81eb5211f79cf5a2234b7a932f6006d27d506aa5"; - sha256 = "0s30a2rr89qcw798xswmg2nnxhjf2rfl1z474vb37db22qnlnzgz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d98d69008b5ca8b92fa7a6045b9d1af86f269386/recipes/edit-server"; - sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edit-server"; - license = lib.licenses.free; - }; - }) {}; - edit-server-htmlize = callPackage ({ edit-server - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-server-htmlize"; - ename = "edit-server-htmlize"; - version = "20130329.1548"; - src = fetchFromGitHub { - owner = "frobtech"; - repo = "edit-server-htmlize"; - rev = "e7f8dadfabe869c77ca241cd6fbd4c52bd908392"; - sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/219b037401a81ce70bd2106dabffa16d8b0c7cef/recipes/edit-server-htmlize"; - sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj"; - name = "recipe"; - }; - packageRequires = [ edit-server ]; - meta = { - homepage = "https://melpa.org/#/edit-server-htmlize"; - license = lib.licenses.free; - }; - }) {}; - editorconfig = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig"; - ename = "editorconfig"; - version = "20190603.424"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "efc1ff4b1c3422d6e231b1c01138becab4b9eded"; - sha256 = "122h57ccx0dba45a019cmp3797b85s5a60rq6w8ggin3yf623l0m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig"; - sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/editorconfig"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-charset-extras = callPackage ({ editorconfig - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig-charset-extras"; - ename = "editorconfig-charset-extras"; - version = "20180222.2057"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "editorconfig-charset-extras-el"; - rev = "ddf60923c6f4841cb593b2ea04c9c710a01d262f"; - sha256 = "1v5a6s4x7cm6i0bxaqdpsg8vqj479lp5h45glx4ipk0icdq8cvd9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62f27dad806fa135209289933f2131ee4ce8f8bf/recipes/editorconfig-charset-extras"; - sha256 = "15p9qpdwradcnjr0nf0ibhy94yi73l18xz7zxf6khmdirsirpwgh"; - name = "recipe"; - }; - packageRequires = [ editorconfig ]; - meta = { - homepage = "https://melpa.org/#/editorconfig-charset-extras"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-custom-majormode = callPackage ({ editorconfig - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig-custom-majormode"; - ename = "editorconfig-custom-majormode"; - version = "20180815.1944"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "editorconfig-custom-majormode-el"; - rev = "13ad1c83f847bedd4b3a19f9df7fd925853b19de"; - sha256 = "1zagd6cliwm8xyhzfvpi7n7m58k78wv4ihc2snq00v7321jjh9bp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd47bf4630442ad1a941ad432cef64c7746aa71/recipes/editorconfig-custom-majormode"; - sha256 = "0ykvjg3gwxky6w5cm0y5s63q9820b7d25fy9plw8sarxwy2a5lxy"; - name = "recipe"; - }; - packageRequires = [ editorconfig ]; - meta = { - homepage = "https://melpa.org/#/editorconfig-custom-majormode"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-domain-specific = callPackage ({ cl-lib ? null - , editorconfig - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig-domain-specific"; - ename = "editorconfig-domain-specific"; - version = "20180505.224"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "editorconfig-emacs-domain-specific"; - rev = "e9824160fb2e466afa755240ee3ab7cc5657fb04"; - sha256 = "0gkwhvywfpnay7rxb2bmsnywcd89qw710bsp53sk5fvilgfwfpkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/831a7dd7ef853ca44709eabfd48ee97113705319/recipes/editorconfig-domain-specific"; - sha256 = "1rkan6q7z0qfq28zg114iik71nghd7fbs4g8qppzhgr3pwbpn73q"; - name = "recipe"; - }; - packageRequires = [ cl-lib editorconfig ]; - meta = { - homepage = "https://melpa.org/#/editorconfig-domain-specific"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-generate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig-generate"; - ename = "editorconfig-generate"; - version = "20190512.2133"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "editorconfig-generate-el"; - rev = "47a31f928f46d2a0188db8e2cffa5d6354a81573"; - sha256 = "01bv064rzxjpqvcs0x62qfqn51js51wmkbg04v28pvmwlmnigkg0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc1cfe5ce6bc3d247c5b7730ac6cb2d6c6198a0c/recipes/editorconfig-generate"; - sha256 = "1xfm3vnr5ngi1vihs7cack8a6zyipvdq260v43cr0y8dqg3sn89i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/editorconfig-generate"; - license = lib.licenses.free; - }; - }) {}; - edn = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , peg }: - melpaBuild { - pname = "edn"; - ename = "edn"; - version = "20160215.419"; - src = fetchFromGitHub { - owner = "expez"; - repo = "edn.el"; - rev = "be9e32d1b49e35247b263b0243df7cfdc8d413ab"; - sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/305dd770d9db86d5ee602e6bd571b7c4f6c4ddbe/recipes/edn"; - sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs peg ]; - meta = { - homepage = "https://melpa.org/#/edn"; - license = lib.licenses.free; - }; - }) {}; - edts = callPackage ({ auto-complete - , auto-highlight-symbol - , dash - , erlang - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , s }: - melpaBuild { - pname = "edts"; - ename = "edts"; - version = "20171030.9"; - src = fetchFromGitHub { - owner = "tjarvstrand"; - repo = "edts"; - rev = "6ef4bdf571235ee1b078db321402270cabff7fda"; - sha256 = "1nzf8wdv0hs4kp69cy3blwxh18c2bkxr4d4y6ggdp0vmwv41j3zi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/782db7fba2713bfa17d9305ae15b0a9e1985445b/recipes/edts"; - sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; - name = "recipe"; - }; - packageRequires = [ - auto-complete - auto-highlight-symbol - dash - erlang - f - popup - s - ]; - meta = { - homepage = "https://melpa.org/#/edts"; - license = lib.licenses.free; - }; - }) {}; - efire = callPackage ({ circe - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "efire"; - ename = "efire"; - version = "20151009.1331"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "efire"; - rev = "d38dd6dd7974b7cb11bff6fd84846fd01163211a"; - sha256 = "15sc4648lkxsgv2frcfb878z86a7vynixsp1x5i5rg66bd9gzhfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/efire"; - sha256 = "0dhgms6s0c889xx75khn1mqfn8i32z4rjlx2w7i0chm2abxbgd3m"; - name = "recipe"; - }; - packageRequires = [ circe ]; - meta = { - homepage = "https://melpa.org/#/efire"; - license = lib.licenses.free; - }; - }) {}; - eg = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eg"; - ename = "eg"; - version = "20170830.115"; - src = fetchFromGitHub { - owner = "davep"; - repo = "eg.el"; - rev = "1c7f1613d2aaae728ef540305f6ba030616f86bd"; - sha256 = "1g2ha6q9k6dmi63i2p4aypwf5mha699wr7yy5dsck39mqk15hx0f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2b6b92b2a71486f260571885bf149ad6afc551/recipes/eg"; - sha256 = "1ic6qzk0zmay3vvbb8jg35irqkc0k68dmgbq4j9isiawy449zvp7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/eg"; - license = lib.licenses.free; - }; - }) {}; - egg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "egg"; - ename = "egg"; - version = "20181125.2100"; - src = fetchFromGitHub { - owner = "byplayer"; - repo = "egg"; - rev = "00e768a78ac3d25f457eed667d02cac568480bf9"; - sha256 = "1ak23v9gqj6x104mzgihn0hi7w0kr76q1sl929wmbb9h8s3a54q8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1c97870c2641d73685f07a12f010530cc186544/recipes/egg"; - sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/egg"; - license = lib.licenses.free; - }; - }) {}; - egison-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "egison-mode"; - ename = "egison-mode"; - version = "20181109.824"; - src = fetchFromGitHub { - owner = "egison"; - repo = "egison"; - rev = "ddc6d910be421d891efc8c7c033b99b10364c4c3"; - sha256 = "1rw5xjs4hnikj2swskczxn3x31811znsgzj72b975zbmd5vp98kd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/egison-mode"; - sha256 = "0bch4863l9wxrss63fj46gy3nx3hp635709xr4c2arw0j7n82lzd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/egison-mode"; - license = lib.licenses.free; - }; - }) {}; - eglot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flymake ? null - , jsonrpc - , lib - , melpaBuild }: - melpaBuild { - pname = "eglot"; - ename = "eglot"; - version = "20190512.347"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "eglot"; - rev = "5f629ebfb680f43849ca894c7166a2b54ff5ba50"; - sha256 = "0jja8c2f6scy4bb3p79bn3sjkzkz10mmb8aivg9x1ynki96rc2ja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c644530eca56f93d94fac2c9d7663c35c2b8c01/recipes/eglot"; - sha256 = "17w39hcgv4p49g841qaicjdx7xac72yxvsc83jf1rrakg713pj7y"; - name = "recipe"; - }; - packageRequires = [ emacs flymake jsonrpc ]; - meta = { - homepage = "https://melpa.org/#/eglot"; - license = lib.licenses.free; - }; - }) {}; - ego = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , htmlize - , lib - , melpaBuild - , mustache - , org - , simple-httpd }: - melpaBuild { - pname = "ego"; - ename = "ego"; - version = "20180228.1704"; - src = fetchFromGitHub { - owner = "emacs-china"; - repo = "EGO"; - rev = "719809679c1a60887735db41abae53b61f08ef59"; - sha256 = "10f179kl53la4dyikzl1xysccx4gk04skzwaw3w1pgr8f5fjppxc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ego"; - sha256 = "09k33ggc6n7wgykaawbmh6hyrl9dqp0azaq9zcjhjbc88nszj7fj"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht htmlize mustache org simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/ego"; - license = lib.licenses.free; - }; - }) {}; - eide = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eide"; - ename = "eide"; - version = "20190501.1422"; - src = fetchgit { - url = "https://framagit.org/eide/eide.git"; - rev = "0554252de694d01210e40cf071f212b6ca45e88e"; - sha256 = "1ac8408m0rqyhda22b1c6jcn62mrmpvcn5d3nr2miiv7akvykvl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a42244392719c620b47bc43a7a8501dab4b6f74e/recipes/eide"; - sha256 = "1962shxcfn3v1ljann7182ca6ciy5xfbcd6l9l8rc8gikp55qv8m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eide"; - license = lib.licenses.free; - }; - }) {}; - eimp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eimp"; - ename = "eimp"; - version = "20120826.1339"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "eimp"; - rev = "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f"; - sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/eimp"; - sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eimp"; - license = lib.licenses.free; - }; - }) {}; - ein = callPackage ({ auto-complete - , dash - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , polymode - , request - , s - , skewer-mode - , websocket }: - melpaBuild { - pname = "ein"; - ename = "ein"; - version = "20190605.1302"; - src = fetchFromGitHub { - owner = "millejoh"; - repo = "emacs-ipython-notebook"; - rev = "2207014453a739ecffda1075ea101fa21adc3a95"; - sha256 = "07ybpylcbqy12k0xm6xl96mi36p9jhdayds2fzcz90nnd19l1zzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/215e163755fe391ce1f049622e7b9bf9a8aea95a/recipes/ein"; - sha256 = "14blq1cbrp00rq0ilk7z9qppqfj0r4n3jidw3abcpchvh5ln086r"; - name = "recipe"; - }; - packageRequires = [ - auto-complete - dash - deferred - emacs - markdown-mode - polymode - request - s - skewer-mode - websocket - ]; - meta = { - homepage = "https://melpa.org/#/ein"; - license = lib.licenses.free; - }; - }) {}; - ein-mumamo = callPackage ({ ein - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ein-mumamo"; - ename = "ein-mumamo"; - version = "20150301.1628"; - src = fetchFromGitHub { - owner = "millejoh"; - repo = "ein-mumamo"; - rev = "57eb0876ab3fba52c1007ce5793d5319cae629c7"; - sha256 = "1426d8lrkx5kml6m1b3pv4117z34v96d8iq24m1q5w6ar72mspxg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8fcf7f6332f94dc37697f9412c8043da8d4f76/recipes/ein-mumamo"; - sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w"; - name = "recipe"; - }; - packageRequires = [ ein ]; - meta = { - homepage = "https://melpa.org/#/ein-mumamo"; - license = lib.licenses.free; - }; - }) {}; - eink-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eink-theme"; - ename = "eink-theme"; - version = "20190219.58"; - src = fetchFromGitHub { - owner = "maio"; - repo = "eink-emacs"; - rev = "326b07523dcb076d6209cdbc7fdbb73df296dbdb"; - sha256 = "1s5w45p0in2ljrbhc7nsc0ppff5wybzwrwv60z1a6dnd8d679qfj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme"; - sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eink-theme"; - license = lib.licenses.free; - }; - }) {}; - ejc-sql = callPackage ({ auto-complete - , clomacs - , dash - , direx - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , spinner }: - melpaBuild { - pname = "ejc-sql"; - ename = "ejc-sql"; - version = "20190604.944"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "ejc-sql"; - rev = "0d3e0da114b623e537fc076dbd08667f6653bca0"; - sha256 = "1bqirwcjbnc5cq2y4c1s0znc43kpfz7vyqqc7m6s2dgmfv4g52yh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e01655679087504db1206b22435ba8eb7050aa23/recipes/ejc-sql"; - sha256 = "13i55l6hwsxbmdxmvh6aajayivgskw4iagmj9in1qkd9rnrykhn9"; - name = "recipe"; - }; - packageRequires = [ auto-complete clomacs dash direx emacs spinner ]; - meta = { - homepage = "https://melpa.org/#/ejc-sql"; - license = lib.licenses.free; - }; - }) {}; - el-autoyas = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-autoyas"; - ename = "el-autoyas"; - version = "20120918.617"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "el-autoyas.el"; - rev = "bde0251ecb504f585dfa27c205c8e312655310cc"; - sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc4845343dbb8f8294394f6850788e4f1fe6b99b/recipes/el-autoyas"; - sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-autoyas"; - license = lib.licenses.free; - }; - }) {}; - el-fly-indent-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-fly-indent-mode"; - ename = "el-fly-indent-mode"; - version = "20180421.1943"; - src = fetchFromGitHub { - owner = "jiahaowork"; - repo = "el-fly-indent-mode.el"; - rev = "1dd4b907ff4d9581c18b4e38e8719e83ba0dace1"; - sha256 = "15l74s3jissjs7jpdmrgy8ys50b0ir27nm0d25lbs4yxhsmvzq2b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/237311b98eec4b577409f55e16d8e640936d41a2/recipes/el-fly-indent-mode"; - sha256 = "00iqiawbzijm515lswbkzxf1m6ys242xrg6lzf8k40g2ygyd1q1r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/el-fly-indent-mode"; - license = lib.licenses.free; - }; - }) {}; - el-get = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-get"; - ename = "el-get"; - version = "20181005.1925"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "el-get"; - rev = "08005ef89b468aae2269021a82c7edca3dadb438"; - sha256 = "07pljkgg4na929hdw8kaddf3z9a7m0dspmgrdqf1b0mw1xg7cl58"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get"; - sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-get"; - license = lib.licenses.free; - }; - }) {}; - el-init = callPackage ({ anaphora - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-init"; - ename = "el-init"; - version = "20150728.220"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "el-init"; - rev = "25fd21d820bca1cf576b8f70c8d5a3bc76792597"; - sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c18cc62ffaaf839284ed7b261cc6f375fab813/recipes/el-init"; - sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/el-init"; - license = lib.licenses.free; - }; - }) {}; - el-init-viewer = callPackage ({ anaphora - , cl-lib ? null - , ctable - , dash - , el-init - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-init-viewer"; - ename = "el-init-viewer"; - version = "20150303.28"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "el-init-viewer"; - rev = "c40417db7808c8b8c9b2f196a69de5da7eee84a2"; - sha256 = "1dc2dr2s6agchg116189zdw96dwvik9d6dcw06jr5mh2gp4apvpa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f90e6be757783352c4a7732177ff2e2c0a066247/recipes/el-init-viewer"; - sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib ctable dash el-init emacs ]; - meta = { - homepage = "https://melpa.org/#/el-init-viewer"; - license = lib.licenses.free; - }; - }) {}; - el-mock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-mock"; - ename = "el-mock"; - version = "20170824.1254"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "el-mock.el"; - rev = "e65ec012a724d0f2518e6601279a07e34716cc45"; - sha256 = "0iyjcihpd79rz2pzasc5c166py34n1fp66jgbm1dxspsid3cznn7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1989beb927657c0ff7e79fe448f62ac58c11be7/recipes/el-mock"; - sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-mock"; - license = lib.licenses.free; - }; - }) {}; - el-patch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-patch"; - ename = "el-patch"; - version = "20190410.931"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "el-patch"; - rev = "178111f98564551e18948b1f0dc4c539dbda5342"; - sha256 = "0nsfax7rbg740q1mw0lrrk8i385pyxmi41lznish0b6abks385ca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch"; - sha256 = "1imijmsni8c8fxjrzprnanf94c1pma3h5w9p75c4y99l8l3xmj7g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/el-patch"; - license = lib.licenses.free; - }; - }) {}; - el-pocket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web }: - melpaBuild { - pname = "el-pocket"; - ename = "el-pocket"; - version = "20170922.549"; - src = fetchFromGitHub { - owner = "pterygota"; - repo = "el-pocket"; - rev = "a80abfb67efe68ada1d7d0a73aecee57e763baaa"; - sha256 = "0q4nsgqpjmmxml5pcb6im1askk6q7c3ykzv6fgf1w8jgkvdifa6f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef362a76a3881c7596dcc2639df588227b3713c0/recipes/el-pocket"; - sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw"; - name = "recipe"; - }; - packageRequires = [ emacs web ]; - meta = { - homepage = "https://melpa.org/#/el-pocket"; - license = lib.licenses.free; - }; - }) {}; - el-spec = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-spec"; - ename = "el-spec"; - version = "20121018.4"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "el-spec"; - rev = "1dbc465401d4aea5560318c4f13ff30920a0718d"; - sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/407e344bf4e4b3885ebb7df02ebb37feee5e2515/recipes/el-spec"; - sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-spec"; - license = lib.licenses.free; - }; - }) {}; - el-spice = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-spice"; - ename = "el-spice"; - version = "20180128.921"; - src = fetchFromGitHub { - owner = "vedang"; - repo = "el-spice"; - rev = "972dace20ec61cd27b9322432d0c7a688c6f061a"; - sha256 = "1wrb46y4s4v0lwwyriz2qn1j1l804jyb4dmadf462jxln85rml70"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4666eee9f6837d6d9dba77e04aa4c8c4a93b47b5/recipes/el-spice"; - sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-spice"; - license = lib.licenses.free; - }; - }) {}; - el-sprunge = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , web-server }: - melpaBuild { - pname = "el-sprunge"; - ename = "el-sprunge"; - version = "20140106.1739"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "el-sprunge"; - rev = "37855ec60aeb4d565c49a4d711edc7341e9a22cb"; - sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/547209532faf45b35b55350783ccee532ce2bcbb/recipes/el-sprunge"; - sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize web-server ]; - meta = { - homepage = "https://melpa.org/#/el-sprunge"; - license = lib.licenses.free; - }; - }) {}; - el-spy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-spy"; - ename = "el-spy"; - version = "20131226.1208"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "el-spy"; - rev = "b1dead9d1877660856ada22d906ac4e54695aec7"; - sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a90318a38c35e648152ec5fb2dd86c432af9553/recipes/el-spy"; - sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-spy"; - license = lib.licenses.free; - }; - }) {}; - el-x = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-x"; - ename = "el-x"; - version = "20140111.1401"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "el-x"; - rev = "b0b69b182f7a81a550ccf9b3a14d8d91560b4f70"; - sha256 = "1dky0vydwh7l786w7gci4x17kkf6dg8gijmqzl4y0ij9zm9kfxzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0346f6349cf39a0414cd055b06d8ed193f4972d4/recipes/el-x"; - sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-x"; - license = lib.licenses.free; - }; - }) {}; - el2markdown = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el2markdown"; - ename = "el2markdown"; - version = "20170630.1158"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "el2markdown"; - rev = "368d99313683cd943c99feaffca356be60bdb636"; - sha256 = "1h0cr8qcvj9r3acb6bf5nyglvi5gdglwflkfl5jbzp0nm1p9iqcg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/el2markdown"; - sha256 = "1bpfddcvg9wgc5g14clj6wyiw8rsh45rgibvlmyan2m0gmwvmqx6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el2markdown"; - license = lib.licenses.free; - }; - }) {}; - el2org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el2org"; - ename = "el2org"; - version = "20190504.414"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "el2org"; - rev = "fbb2c5bff78564111ff1826976101555314bfc53"; - sha256 = "17d85fdckbzj551j98j0hrhdj0ag8ba2kpk2ix8fmvdnssxdnvm0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/el2org"; - sha256 = "02kyvzpjws2mrp414i4zm4fmrnzgkaax6bnrlyhp17a8aqaggbnh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/el2org"; - license = lib.licenses.free; - }; - }) {}; - elbank = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "elbank"; - ename = "elbank"; - version = "20180316.643"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "elbank"; - rev = "6dbd21e31fdf7cf62491f6d24b8198d4f91a031b"; - sha256 = "1krqvwh6a4cqbqawmydq16ardnn6ddf7wm5605794j145dd2268v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/elbank"; - sha256 = "1i1cdywcbdj9ykfczbagrqdpgf3c88f1kc0mdlj8mzyvjixx7mhk"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/elbank"; - license = lib.licenses.free; - }; - }) {}; - elcontext = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , hydra - , lib - , melpaBuild - , osx-location - , uuidgen }: - melpaBuild { - pname = "elcontext"; - ename = "elcontext"; - version = "20180526.604"; - src = fetchFromGitHub { - owner = "rollacaster"; - repo = "elcontext"; - rev = "f434ffc655e6349a4dd52285ff68a9194bcfc949"; - sha256 = "0gbbnx969asq73ypc5lp4qpi4iwwfzm1mmxb1fdifl2lf18p8qwv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12bcb0bfc89c1f235e4ac5d7e308e41905725dc6/recipes/elcontext"; - sha256 = "1firdsrag7r02qb3kjxc3j8l9psvh117z3qwycazhxdz82z0isw7"; - name = "recipe"; - }; - packageRequires = [ emacs f ht hydra osx-location uuidgen ]; - meta = { - homepage = "https://melpa.org/#/elcontext"; - license = lib.licenses.free; - }; - }) {}; - elcord = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elcord"; - ename = "elcord"; - version = "20190531.1511"; - src = fetchFromGitHub { - owner = "Mstrodl"; - repo = "elcord"; - rev = "0f311c2bcfd65721fe8c0ebec9da344f217d4061"; - sha256 = "06yk9912xkz8sxzph57mzf45934qjcp29x4f844lrhrpmmbmb8xg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf2c52366a8f60b68a33a40ea92cc96e7f0933d2/recipes/elcord"; - sha256 = "0a1f99mahaixx6j3lylc7w2zlq8f614m6xhd0x927afv3a6n50l6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elcord"; - license = lib.licenses.free; - }; - }) {}; - elcouch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , libelcouch - , melpaBuild }: - melpaBuild { - pname = "elcouch"; - ename = "elcouch"; - version = "20180809.236"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "elcouch"; - rev = "1491b04d2aa4a15dd61ef8df1710fd6724f0f384"; - sha256 = "0a72nwy48sh97g75m3paj2h61j4a9jhar6n5jj6n0jk8jdrc0wwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d9a35dd5a272a592d248993ea7e5dda8fdf0ab/recipes/elcouch"; - sha256 = "1dp7chvnz6gadqgyqbvdxpva3hm3sx60izsa690mp2rifjyxgqf1"; - name = "recipe"; - }; - packageRequires = [ emacs json-mode libelcouch ]; - meta = { - homepage = "https://melpa.org/#/elcouch"; - license = lib.licenses.free; - }; - }) {}; - eldoc-box = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eldoc-box"; - ename = "eldoc-box"; - version = "20190529.131"; - src = fetchFromGitHub { - owner = "casouri"; - repo = "eldoc-box"; - rev = "c97fe860fa2a5b957a25219172ab596b2f4fc95b"; - sha256 = "03asvv66i9jwmj5jkspb16d04q8rgkmrf1x9zbpiq12vb0wfbyf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aac2e64f9e0d06b95bdf0dece214263f75470ea8/recipes/eldoc-box"; - sha256 = "11720hi2gvjwc4x2yrxnrhh76wf3sj3yd0vaa3sc22xa5g1wi40r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eldoc-box"; - license = lib.licenses.free; - }; - }) {}; - eldoc-cmake = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eldoc-cmake"; - ename = "eldoc-cmake"; - version = "20190419.1544"; - src = fetchFromGitHub { - owner = "ikirill"; - repo = "eldoc-cmake"; - rev = "4453c03b5c95ff32842f13db2fc317fb0fe2f79e"; - sha256 = "01jhfglj1v4p3qmhiri4k05p0dg10k59pj5608hjls6zsmxf2wbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e19f92097e6003a893907aa46a2df755d2bf0b87/recipes/eldoc-cmake"; - sha256 = "1y47zhxgisvsk0kgvlwrlspmjb2a6wrxwkiahxp9fkdc58r9w7v0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eldoc-cmake"; - license = lib.licenses.free; - }; - }) {}; - eldoc-eval = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eldoc-eval"; - ename = "eldoc-eval"; - version = "20190423.1158"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "eldoc-eval"; - rev = "a67fe3637378dcb6c5f9e140acc8131f0d2346b3"; - sha256 = "0504yyzxp1rk0br6f25395n4aa4w8ixf59vqxxb55a7agxplfpjc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63ba2004d3db4c5a71676dca82ad880328cf6073/recipes/eldoc-eval"; - sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eldoc-eval"; - license = lib.licenses.free; - }; - }) {}; - eldoc-overlay = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , inline-docs - , lib - , melpaBuild - , quick-peek }: - melpaBuild { - pname = "eldoc-overlay"; - ename = "eldoc-overlay"; - version = "20190222.2143"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "eldoc-overlay"; - rev = "cfec077d9a699c88265af2e9480d5e76a3b3f833"; - sha256 = "0c16i6y7675rzif5gj9s6rz3nc59339yp4fn27a56sly42qfnh9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f865b248002d6d3ba9653c2221072a4aa54cd740/recipes/eldoc-overlay"; - sha256 = "0nn6i89xbw8vkd5ybsnc1zpnf3ra4s8pf01jdj2i59ayjs64s28x"; - name = "recipe"; - }; - packageRequires = [ emacs inline-docs quick-peek ]; - meta = { - homepage = "https://melpa.org/#/eldoc-overlay"; - license = lib.licenses.free; - }; - }) {}; - electric-case = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "electric-case"; - ename = "electric-case"; - version = "20150417.412"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "electric-case"; - rev = "984b6a4c6c4cdcefeecb59e941f5f184cc1dedff"; - sha256 = "11rlj132xfrdp9wq0mx0dnza4k5s6ysgqs6nzjvwcw1w7a6jmwa3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/electric-case"; - sha256 = "1ch108ljzg5xkk4pkfpfxm8v2yzqk79q3h2zhzzqhsydq7r07bdn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/electric-case"; - license = lib.licenses.free; - }; - }) {}; - electric-operator = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "electric-operator"; - ename = "electric-operator"; - version = "20190225.2327"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "electric-operator"; - rev = "b6aec9502fffbb7b9459665122ea3908fa70a498"; - sha256 = "0i9rifwkir9hxxw5pqpc8b0libgjf9hz9kdbywqh2pkqjvr2ypyl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/906cdf8647524bb76f644373cf8b65397d9053a5/recipes/electric-operator"; - sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/electric-operator"; - license = lib.licenses.free; - }; - }) {}; - electric-spacing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "electric-spacing"; - ename = "electric-spacing"; - version = "20161209.1157"; - src = fetchFromGitHub { - owner = "xwl"; - repo = "electric-spacing"; - rev = "9d0f8a213133f2619a4e9dfbba3b00d4348c07b0"; - sha256 = "1wzf8q2k2iwnm9b5kj16bwif7g0qc7ll3cjs20gbmcnq5xmhwx9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a78c0044f8b7a0df1af1aba407be4d7865c98c59/recipes/electric-spacing"; - sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/electric-spacing"; - license = lib.licenses.free; - }; - }) {}; - elein = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elein"; - ename = "elein"; - version = "20120120.316"; - src = fetchFromGitHub { - owner = "remvee"; - repo = "elein"; - rev = "d4c0c0491dbb7c90e953d7a16172107c37103605"; - sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elein"; - sha256 = "01y5yrmm3biyrfgnl3qjfpn1xvjk2nabwjr8cls53ds697qpz5x2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elein"; - license = lib.licenses.free; - }; - }) {}; - elf-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elf-mode"; - ename = "elf-mode"; - version = "20161009.48"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "elf-mode"; - rev = "cd280d683cd3341d8bb31af6db7e3b74a133e6ab"; - sha256 = "0cbvjbk2893ag1iy8ggixpirfiyhssm7fii96hb9jqdz874cdl0k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/368d1ff91f310e5ffe68f872ab0a91584a41a66e/recipes/elf-mode"; - sha256 = "0xwpaqg4mc0a0d8a4dxbd1sqzvi01gfhwr75f7i3sjzx0fj8vcwd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elf-mode"; - license = lib.licenses.free; - }; - }) {}; - elfeed = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elfeed"; - ename = "elfeed"; - version = "20190514.1025"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elfeed"; - rev = "fd539da2da94ab4794fd69247ce06deca7aa66bf"; - sha256 = "1awm3n9qyyh0dacrix6rwy0a34llf0ac4v1kysydfh6l3ghbs99k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed"; - sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elfeed"; - license = lib.licenses.free; - }; - }) {}; - elfeed-goodies = callPackage ({ ace-jump-mode - , cl-lib ? null - , elfeed - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , noflet - , popwin - , powerline }: - melpaBuild { - pname = "elfeed-goodies"; - ename = "elfeed-goodies"; - version = "20190128.831"; - src = fetchFromGitHub { - owner = "algernon"; - repo = "elfeed-goodies"; - rev = "95b4ea632fbd5960927952ec8f3394eb88da4752"; - sha256 = "0mfigkp77acqlnkj07vjzbcamwxp37zqxramp1qdf95psnz177q7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ebb8d23961fd9bfe101f7917caa3b405493f31/recipes/elfeed-goodies"; - sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi"; - name = "recipe"; - }; - packageRequires = [ - ace-jump-mode - cl-lib - elfeed - noflet - popwin - powerline - ]; - meta = { - homepage = "https://melpa.org/#/elfeed-goodies"; - license = lib.licenses.free; - }; - }) {}; - elfeed-org = callPackage ({ cl-lib ? null - , dash - , elfeed - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "elfeed-org"; - ename = "elfeed-org"; - version = "20181015.400"; - src = fetchFromGitHub { - owner = "remyhonig"; - repo = "elfeed-org"; - rev = "607b8bf4923a995260a072559b77bee188614a06"; - sha256 = "1m4v5z2ciqlmnr7gfzx6cbi81ck80fvy88fd0lpnhlqj2h9k5pys"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elfeed-org"; - sha256 = "0rnxr2q2ib6xrdx41ams1z2ivw5zhcsmqdylyvbw62h20rlmlgm8"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash elfeed org s ]; - meta = { - homepage = "https://melpa.org/#/elfeed-org"; - license = lib.licenses.free; - }; - }) {}; - elfeed-protocol = callPackage ({ cl-lib ? null - , elfeed - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elfeed-protocol"; - ename = "elfeed-protocol"; - version = "20190312.509"; - src = fetchFromGitHub { - owner = "fasheng"; - repo = "elfeed-protocol"; - rev = "c5faca15ccfe7e03dc4ee1372a07671c20015737"; - sha256 = "1cdg111dgpphlpv2csv9nr5p2zjk3qss7bf0y8485nnzcin4ip9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f1eef8add7cd2cfefe6fad6d8e69d65696e9677/recipes/elfeed-protocol"; - sha256 = "1gd2ny764qsnnqf3j7rbdqhh7hqd5c0fzwxx6wacd0dpbq4w56qi"; - name = "recipe"; - }; - packageRequires = [ cl-lib elfeed emacs ]; - meta = { - homepage = "https://melpa.org/#/elfeed-protocol"; - license = lib.licenses.free; - }; - }) {}; - elfeed-web = callPackage ({ elfeed - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "elfeed-web"; - ename = "elfeed-web"; - version = "20180829.1016"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elfeed"; - rev = "3d1c6ecbe585f9fe6ca5a97a3fc352d68f303f9e"; - sha256 = "1bzpl6lc7kq9bph4bfz1fn19207blrnhjr2g7yinhn0nnnjmxi8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web"; - sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; - name = "recipe"; - }; - packageRequires = [ elfeed emacs simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/elfeed-web"; - license = lib.licenses.free; - }; - }) {}; - elgrep = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elgrep"; - ename = "elgrep"; - version = "20190518.839"; - src = fetchFromGitHub { - owner = "TobiasZawada"; - repo = "elgrep"; - rev = "c2c5858f335ac1d0013dc631e5bc2dc16d9b3198"; - sha256 = "1rlj9cniwk8fzfn1i4apffrikv08r9c2dmwxhqc6nmrhfjr2rf1k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d9ab623b2d634936a79ff6f4b98b31825d44b6d/recipes/elgrep"; - sha256 = "0b8dma52zv57sh1jbrabfy6k5lzixs7f541s8dsqyrg0fzlq460j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elgrep"; - license = lib.licenses.free; - }; - }) {}; - elhome = callPackage ({ fetchFromGitHub - , fetchurl - , initsplit - , lib - , melpaBuild }: - melpaBuild { - pname = "elhome"; - ename = "elhome"; - version = "20161025.1342"; - src = fetchFromGitHub { - owner = "demyanrogozhin"; - repo = "elhome"; - rev = "e789e806469af3e9705f72298683c21f6c3a516d"; - sha256 = "1q9glli1czbfp62aalblaak55j8rj2nl8bm8nifnnb8jrzj1qrn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/527cc08a3424f87fe2e99119b931530840ad07ba/recipes/elhome"; - sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh"; - name = "recipe"; - }; - packageRequires = [ initsplit ]; - meta = { - homepage = "https://melpa.org/#/elhome"; - license = lib.licenses.free; - }; - }) {}; - elisp-def = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elisp-def"; - ename = "elisp-def"; - version = "20180806.23"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "elisp-def"; - rev = "368b04da68783601b52e3169312183381871cf9e"; - sha256 = "0l1kj7xd4332xk821z24c14lhkpcmca5gmivpb8shlk10cvjvxjw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f027b844efdc5946d2ad80d7052a8f3b96aac3d/recipes/elisp-def"; - sha256 = "1y29nsgjv9nb03g0jc5hb1a8k23r54ivdlv9h0a384cig8i91hsz"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/elisp-def"; - license = lib.licenses.free; - }; - }) {}; - elisp-demos = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-demos"; - ename = "elisp-demos"; - version = "20190604.2301"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "elisp-demos"; - rev = "837769d9ab2075a4e1a45506bc2853a845b431c8"; - sha256 = "0ir0ixwqb7i7apaspilf6kavgyvhkvcraa8m6wz16h1slg0j3w2l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1bd1c7a4576d4874a8c5fc8ab2dbc65f0e5bc8c/recipes/elisp-demos"; - sha256 = "1571l826x8ixlqd3nkqgizkzrq37af13ihrm1rvgaf5gl0va9ik8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elisp-demos"; - license = lib.licenses.free; - }; - }) {}; - elisp-depend = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-depend"; - ename = "elisp-depend"; - version = "20190325.414"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "elisp-depend"; - rev = "6679da9a6be5a845bb4804224c8394a9bc62168f"; - sha256 = "09xbrk1li76fwa85kvd5xpr0zswrkh51p7a62sb8g422wpaqxiwx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7ea159f0cc8c6e4b8483401a6e6687ab4ed73b7f/recipes/elisp-depend"; - sha256 = "0zpafwnm52g6v867f1ghfb492nnmm66imcwlhm5v9hhgwy3z17jm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elisp-depend"; - license = lib.licenses.free; - }; - }) {}; - elisp-docstring-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-docstring-mode"; - ename = "elisp-docstring-mode"; - version = "20170304.815"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "elisp-docstring-mode"; - rev = "b135d95b158048927f12184e5cfb8fe01fc44713"; - sha256 = "0jyyvrgnplbsg82miawq4fjzb9ds2wyhpqlllyg0s7q49lwsb2fi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elisp-docstring-mode"; - sha256 = "0mdh3ikn6zfd3fbmifvivqih2fsijvlzalljdvm32crs9cy6fa96"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elisp-docstring-mode"; - license = lib.licenses.free; - }; - }) {}; - elisp-format = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-format"; - ename = "elisp-format"; - version = "20160508.252"; - src = fetchFromGitHub { - owner = "Yuki-Inoue"; - repo = "elisp-format"; - rev = "9fe516d39b349070537099a01fe34e47fbded2c8"; - sha256 = "0dmx5c2lrp8a0836zv4sv1p5h7dnmyyzm45lj3h9rqr1c8l1h7jm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff353f4228529c51577f7104cdf52c677be8a500/recipes/elisp-format"; - sha256 = "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elisp-format"; - license = lib.licenses.free; - }; - }) {}; - elisp-lint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-lint"; - ename = "elisp-lint"; - version = "20180224.1242"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "elisp-lint"; - rev = "04b0d36ec0e4dc1bb54c2bf4c2d16b2af8cf6a39"; - sha256 = "04hxpfgvkh4ivaxqbhnp3j68i1kqzg1v19bssnvcagll2mm4r3xg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61595c78ac7f15eef47bf28636ad796f74741509/recipes/elisp-lint"; - sha256 = "13cxcn0qp63f2nkv37c3w47dby9cqm4l1f8xilgpczdaxd86kd63"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elisp-lint"; - license = lib.licenses.free; - }; - }) {}; - elisp-refs = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild - , s }: - melpaBuild { - pname = "elisp-refs"; - ename = "elisp-refs"; - version = "20190323.631"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "elisp-refs"; - rev = "540daaf50a88ca0e7d7c8d5f09ca383362e67baf"; - sha256 = "1qxnli3nsh5di1rxwrylvv4k818w18rq6dvlmsrkkp08m7byi4fz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/elisp-refs"; - sha256 = "1pj3dm2z6m24179ibl7zhr8lhan2v2rjnm3abfciwp228piz1sfz"; - name = "recipe"; - }; - packageRequires = [ dash loop s ]; - meta = { - homepage = "https://melpa.org/#/elisp-refs"; - license = lib.licenses.free; - }; - }) {}; - elisp-sandbox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-sandbox"; - ename = "elisp-sandbox"; - version = "20131116.1042"; - src = fetchFromGitHub { - owner = "joelmccracken"; - repo = "elisp-sandbox"; - rev = "ddd669266ca36d7e4ebba73eb1ab42523787e042"; - sha256 = "1pwx0cksgf9qyd6nl1540jmp3p0adgz2sk38r5s8gbli3x109hy3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b0e7c52ff8034a1c0d1e5d7bc0c58f166986b28/recipes/elisp-sandbox"; - sha256 = "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elisp-sandbox"; - license = lib.licenses.free; - }; - }) {}; - elisp-slime-nav = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-slime-nav"; - ename = "elisp-slime-nav"; - version = "20160128.1109"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "elisp-slime-nav"; - rev = "0e96d9f1f0d334f09414b509d44d5c000b51f432"; - sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/elisp-slime-nav"; - sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/elisp-slime-nav"; - license = lib.licenses.free; - }; - }) {}; - elixir-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "elixir-mode"; - ename = "elixir-mode"; - version = "20190421.1855"; - src = fetchFromGitHub { - owner = "elixir-editors"; - repo = "emacs-elixir"; - rev = "694d133e847e9a6db6abd1c19850cec6d867ccce"; - sha256 = "0fl3i8cxnrn70l68328jyhabgccmqbislkgp4k4ih5yll3plz31n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/elixir-mode"; - sha256 = "0d25p6sal1qg1xsq5yk343afnrxa0lzpx5gsh72khnx2i8pi40vz"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/elixir-mode"; - license = lib.licenses.free; - }; - }) {}; - elixir-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "elixir-yasnippets"; - ename = "elixir-yasnippets"; - version = "20150417.539"; - src = fetchFromGitHub { - owner = "hisea"; - repo = "elixir-yasnippets"; - rev = "980ca7626c14ef0573bec0035ec7942796062783"; - sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/elixir-yasnippets"; - sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/elixir-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - elm-mode = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , reformatter - , s - , seq }: - melpaBuild { - pname = "elm-mode"; - ename = "elm-mode"; - version = "20190222.1325"; - src = fetchFromGitHub { - owner = "jcollard"; - repo = "elm-mode"; - rev = "b59b66a5369816c3a6d47b3702b9007431b7b4cf"; - sha256 = "13y4xhf4czir4fdl36lk9zhn6292x0lbxhdywpq55fy9ivz4pk6q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode"; - sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; - name = "recipe"; - }; - packageRequires = [ dash emacs f let-alist reformatter s seq ]; - meta = { - homepage = "https://melpa.org/#/elm-mode"; - license = lib.licenses.free; - }; - }) {}; - elm-test-runner = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elm-test-runner"; - ename = "elm-test-runner"; - version = "20190105.1123"; - src = fetchFromGitHub { - owner = "juanedi"; - repo = "elm-test-runner"; - rev = "a31d567a64d86d36e3675347abd696824a731e0c"; - sha256 = "15kgz44ylni4anz461hihrhvg24jvd7jzykqdjacsznyphfv94m9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/064db8f60438927255458a7fbd8ae871f8264d67/recipes/elm-test-runner"; - sha256 = "1axzp93a0xmbprskql4bdfnxnmcpfnq6xf7c4x7cgn5pbd1p6inz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elm-test-runner"; - license = lib.licenses.free; - }; - }) {}; - elm-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "elm-yasnippets"; - ename = "elm-yasnippets"; - version = "20160331.2224"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "elm-yasnippets"; - rev = "45a11a0cef0c36633fb3477d3dc4167e82779ba4"; - sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/340664dd1c57b539de191dd6faa9eb8ed9ae6914/recipes/elm-yasnippets"; - sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/elm-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - elmacro = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elmacro"; - ename = "elmacro"; - version = "20180628.711"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "elmacro"; - rev = "89b9b0feabafd01fee48111d67131c4c9b5fed9a"; - sha256 = "06wkzafh6vbcjf0m3sl253mgcq32p8cdv7vsfmyx51baa36938ha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/566cc5bc0f71c5a4191ad93b917dc268f6e1a2da/recipes/elmacro"; - sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/elmacro"; - license = lib.licenses.free; - }; - }) {}; - elmine = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elmine"; - ename = "elmine"; - version = "20190212.940"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "elmine"; - rev = "2f020e41940b182deeca39786a3092a2d68b5eb7"; - sha256 = "0x2av6zjd4kkyzxm2hcwjx9x8j2fzqg85pka57hqpk2fhfhsmy3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elmine"; - sha256 = "1xkx1wwrzd2dl13z8n4qh3gl202j0i9crab5b3788z8mq0g4v4bn"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/elmine"; - license = lib.licenses.free; - }; - }) {}; - elnode = callPackage ({ creole - , dash - , db - , fakir - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , noflet - , s - , web }: - melpaBuild { - pname = "elnode"; - ename = "elnode"; - version = "20140203.1506"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "elnode"; - rev = "3f2bf225853e40a2a10386ee5ae0bd6ba5d44ce9"; - sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/elnode"; - sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6"; - name = "recipe"; - }; - packageRequires = [ creole dash db fakir kv noflet s web ]; - meta = { - homepage = "https://melpa.org/#/elnode"; - license = lib.licenses.free; - }; - }) {}; - elog = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elog"; - ename = "elog"; - version = "20160724.1555"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "elog"; - rev = "a67237d9813c7591614d95e2ef31cc5e5ed3f31b"; - sha256 = "0alg5nbmq56zsc032pvah92h5fw155fbfjc275k9vbh915hs6y0w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f3d560bf56b1b4e7540dc5ae16258895c106f1f/recipes/elog"; - sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd"; - name = "recipe"; - }; - packageRequires = [ eieio ]; - meta = { - homepage = "https://melpa.org/#/elog"; - license = lib.licenses.free; - }; - }) {}; - elogcat = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elogcat"; - ename = "elogcat"; - version = "20151120.1641"; - src = fetchFromGitHub { - owner = "youngker"; - repo = "elogcat.el"; - rev = "cafe9bd5c0d6561d72066c70a55c246453693efd"; - sha256 = "117vb19z006hjs0717r5l90h4rv6rciw3cijlgg006f4qqj3g9s5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4855c75dc22a7089cf9e4fa80dbe0ccd2830fe83/recipes/elogcat"; - sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/elogcat"; - license = lib.licenses.free; - }; - }) {}; - eloud = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eloud"; - ename = "eloud"; - version = "20160731.857"; - src = fetchFromGitHub { - owner = "smythp"; - repo = "eloud"; - rev = "c1d8274ca207cd270f8ad7f62993bd6df304d561"; - sha256 = "0ng3d82518i0d8dp8719ssinb1g7km18lcs38hzprgqy9ycqc1qb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e80fba9bc541594129756f5c668f3192919bc8/recipes/eloud"; - sha256 = "1h8wd5mfi1cn9bzrckgc5mdrr5jkqsx92ay008p650wvjl689rn2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eloud"; - license = lib.licenses.free; - }; - }) {}; - elpa-audit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-audit"; - ename = "elpa-audit"; - version = "20141023.631"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "elpa-audit"; - rev = "1ca4e6073f8c4cbb41688b69d3b3feaa1a392efc"; - sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elpa-audit"; - sha256 = "18a8n22g53d8fxzr3snb2px28gvxbkx44grrx8lywaprz1f1lwdi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elpa-audit"; - license = lib.licenses.free; - }; - }) {}; - elpa-clone = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-clone"; - ename = "elpa-clone"; - version = "20190109.1540"; - src = fetchFromGitHub { - owner = "dochang"; - repo = "elpa-clone"; - rev = "5dddbab4c27ec6aca541a1f8e9792617f10fc325"; - sha256 = "17lbdgwg97x8q8dbghylr2j0nwb72mpfl679qb0pl9184ih27qfc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11861edd9c7f9deebd44fd1f8ef648e7a04caf2b/recipes/elpa-clone"; - sha256 = "172gpmpwf75y41n3v05l47w34x83vy63bqk97fd8a6b4dkj91lqa"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/elpa-clone"; - license = lib.licenses.free; - }; - }) {}; - elpa-mirror = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-mirror"; - ename = "elpa-mirror"; - version = "20190423.1418"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "elpa-mirror"; - rev = "50b92aae0b4cafc38de9767edad726c3c3915ffc"; - sha256 = "0ryblixg3bv51wagjs67k4hwalfm19vccwqs7q14lwbhv96n99qd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror"; - sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elpa-mirror"; - license = lib.licenses.free; - }; - }) {}; - elpher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpher"; - ename = "elpher"; - version = "20190603.1031"; - src = fetchFromGitHub { - owner = "tgvaughan"; - repo = "elpher"; - rev = "343d06a4080ca8fb67eaa3a0508aa7551b93a164"; - sha256 = "0lbssaaj3fmmppv95gkwf65w5iq6vhqjb28xw854fg8i8maax21d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df2162816fed4d5da7ee5adafbf547eed8815418/recipes/elpher"; - sha256 = "1csy26ra6kgm2rnf1s6bj254r18zkaf6y7kb3rrjm1msw3vjvvr2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elpher"; - license = lib.licenses.free; - }; - }) {}; - elpy = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , find-file-in-project - , highlight-indentation - , lib - , melpaBuild - , pyvenv - , s - , yasnippet }: - melpaBuild { - pname = "elpy"; - ename = "elpy"; - version = "20190523.1546"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "elpy"; - rev = "ef274bbe1d4709d36951a0e5cc5b81bdb6a8be79"; - sha256 = "1szqxs28941frkgqll6pa2fs70a4w6abxqhbh7lzb1qr4zi09fs6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy"; - sha256 = "1ri3dwnkw005plj1g5grmmq9np41sqk4s2v18pwsvr18ysnq6nnr"; - name = "recipe"; - }; - packageRequires = [ - company - emacs - find-file-in-project - highlight-indentation - pyvenv - s - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/elpy"; - license = lib.licenses.free; - }; - }) {}; - elpygen = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "elpygen"; - ename = "elpygen"; - version = "20171225.936"; - src = fetchFromGitHub { - owner = "vkazanov"; - repo = "elpygen"; - rev = "21929c997a05968f9eefe52b85a76ceaab3b0d81"; - sha256 = "093ck4dkdvbgafb1bmkmszg1ba81ns5kjbk2iq2b5p9dvfcjjr3k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e670bd79a85c4e2a9ca3355feb8aaefa709f49cb/recipes/elpygen"; - sha256 = "01fak1dz9mna3p4c2r0scb0j10qk3lvpq270jy6rvzlcbwri4akl"; - name = "recipe"; - }; - packageRequires = [ emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/elpygen"; - license = lib.licenses.free; - }; - }) {}; - elquery = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elquery"; - ename = "elquery"; - version = "20180917.1517"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "elquery"; - rev = "eac429d8550fbf1582c57d5e16fed9f320d6eb30"; - sha256 = "1jkbrv5r5vzqjhadb4dcgks47gaj7aavzdkzc5gjn5zv5fmm1in2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/121f7d2091b83143402b44542db12e8f78275103/recipes/elquery"; - sha256 = "19yik9w4kcj7i9d3bwwdszznwcrh75hxd0540iqk5by861z5f3zr"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/elquery"; - license = lib.licenses.free; - }; - }) {}; - elsa = callPackage ({ cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , trinary }: - melpaBuild { - pname = "elsa"; - ename = "elsa"; - version = "20190331.858"; - src = fetchFromGitHub { - owner = "emacs-elsa"; - repo = "Elsa"; - rev = "118a943c2c447fd0f05cd2cc7ebb5dbcc222be00"; - sha256 = "0c2rbphkzj6cjf4fgy13fim2b8r3zdic3q6pgrymlcm9am0gdkdn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f126c49fe01a1c21aca0f45643d44ecf4c3ad95b/recipes/elsa"; - sha256 = "0g8l61fg9krqakp6fjvm6jr1lss3mll707rknhm5d2grr6ik3lvl"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs f trinary ]; - meta = { - homepage = "https://melpa.org/#/elsa"; - license = lib.licenses.free; - }; - }) {}; - elscreen = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen"; - ename = "elscreen"; - version = "20181008.2151"; - src = fetchFromGitHub { - owner = "knu"; - repo = "elscreen"; - rev = "cc58337faf5ba1eae7e87f75f6ff3758675688f2"; - sha256 = "15kffci7qlhjwz1rlr0zg0z9rq0vlsxy295dvg96wiiz4fvs4jk2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen"; - sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elscreen"; - license = lib.licenses.free; - }; - }) {}; - elscreen-buffer-group = callPackage ({ cl-lib ? null - , elscreen - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-buffer-group"; - ename = "elscreen-buffer-group"; - version = "20181026.2228"; - src = fetchFromGitHub { - owner = "jeffgran"; - repo = "elscreen-buffer-group"; - rev = "cd671c4a86ff6e481d24d060b4069e518940f9c9"; - sha256 = "1nff1frlni7lbxrk26idzxlm0npzrjvfmzsv3y9nwy9v8djsiwy3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6fedb7b6ef58089da4b35ad115f699b4b24ff2/recipes/elscreen-buffer-group"; - sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v"; - name = "recipe"; - }; - packageRequires = [ cl-lib elscreen emacs ]; - meta = { - homepage = "https://melpa.org/#/elscreen-buffer-group"; - license = lib.licenses.free; - }; - }) {}; - elscreen-fr = callPackage ({ elscreen - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "elscreen-fr"; - ename = "elscreen-fr"; - version = "20160920.253"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "elscreen-fr"; - rev = "b9c11f80d277086d5d5bf88623e15fc7adbbbe3c"; - sha256 = "1dz8jqd2agh06hya59vbybrmgyhyz2rk6c9panrm49w37v0bwksb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18730986df5eb9816eec7ad479abe1e338d3c66f/recipes/elscreen-fr"; - sha256 = "1kmga1zz9mb3hxd2sxja2vz45pix5a52yl0g9z4vmak32x9rgqrm"; - name = "recipe"; - }; - packageRequires = [ elscreen seq ]; - meta = { - homepage = "https://melpa.org/#/elscreen-fr"; - license = lib.licenses.free; - }; - }) {}; - elscreen-mew = callPackage ({ elscreen - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-mew"; - ename = "elscreen-mew"; - version = "20160504.1135"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "elscreen-mew"; - rev = "89871fad690ae161dc076e16ef481b1965612077"; - sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47404ea3cfb591b780ca7e31095951a708b0a6b7/recipes/elscreen-mew"; - sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; - name = "recipe"; - }; - packageRequires = [ elscreen ]; - meta = { - homepage = "https://melpa.org/#/elscreen-mew"; - license = lib.licenses.free; - }; - }) {}; - elscreen-multi-term = callPackage ({ elscreen - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi-term }: - melpaBuild { - pname = "elscreen-multi-term"; - ename = "elscreen-multi-term"; - version = "20151021.1933"; - src = fetchFromGitHub { - owner = "wamei"; - repo = "elscreen-multi-term"; - rev = "7b6048a0dd80f69460a62bbc6f1af8856141a5ea"; - sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a24477cf83df7da931fa33c622ef720839529d2/recipes/elscreen-multi-term"; - sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n"; - name = "recipe"; - }; - packageRequires = [ elscreen emacs multi-term ]; - meta = { - homepage = "https://melpa.org/#/elscreen-multi-term"; - license = lib.licenses.free; - }; - }) {}; - elscreen-separate-buffer-list = callPackage ({ elscreen - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-separate-buffer-list"; - ename = "elscreen-separate-buffer-list"; - version = "20161106.1958"; - src = fetchFromGitHub { - owner = "wamei"; - repo = "elscreen-separate-buffer-list"; - rev = "7652d827aa1b8c1b04303c5b4b0bda5e8f85565e"; - sha256 = "1cpmpms3r9lywmxgciz4xq7vjw2c1mxmpd89shssqck16563zwxf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f5e5c8e2cd45a25e47c74bef59b9114aa7685eb/recipes/elscreen-separate-buffer-list"; - sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk"; - name = "recipe"; - }; - packageRequires = [ elscreen emacs ]; - meta = { - homepage = "https://melpa.org/#/elscreen-separate-buffer-list"; - license = lib.licenses.free; - }; - }) {}; - elscreen-tab = callPackage ({ dash - , elscreen - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-tab"; - ename = "elscreen-tab"; - version = "20190203.819"; - src = fetchFromGitHub { - owner = "aki-s"; - repo = "elscreen-tab"; - rev = "29d7a65c3e134dd476049c9aebc8d029238e71f7"; - sha256 = "0303i61m1qg65d3i3hsy7pzdhw0icpx3im99qkfmy6lxi4h9nd0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06a8348c6911936e16a98cf216578ea148e20e5d/recipes/elscreen-tab"; - sha256 = "18krbs462cwi3pf72kn1zf1jf4gv9n3ffdg4v5bgb19i69sq7spi"; - name = "recipe"; - }; - packageRequires = [ dash elscreen emacs ]; - meta = { - homepage = "https://melpa.org/#/elscreen-tab"; - license = lib.licenses.free; - }; - }) {}; - elvish-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elvish-mode"; - ename = "elvish-mode"; - version = "20180809.912"; - src = fetchFromGitHub { - owner = "ALSchwalm"; - repo = "elvish-mode"; - rev = "c3a7e31564256b9755b1ab9fb40d32ad78cd1ad2"; - sha256 = "0dxa8g49fq4h1ab3sawnbgy1fxaxxsdac3l6im34qfw4km8brp9y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc724072702a565af471f9ae523a1e6e48e3f04/recipes/elvish-mode"; - sha256 = "1f5pyadmbh2ldd51srvlhbjq2849f1f0s8qmpjnsz9bc986yga34"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elvish-mode"; - license = lib.licenses.free; - }; - }) {}; - elwm = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elwm"; - ename = "elwm"; - version = "20150817.307"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "elwm"; - rev = "c33b183f006ad476c3a44dab316f580f8b369930"; - sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb45a6141b797243973695be4c0582c9ad6965d/recipes/elwm"; - sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/elwm"; - license = lib.licenses.free; - }; - }) {}; - elx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elx"; - ename = "elx"; - version = "20181111.207"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "elx"; - rev = "c554db7e7f2c0c8a503def7739b8205193ba821f"; - sha256 = "07i739v2w5dbhyfhvfw4phcrdk5sf7ncsd47y8hkf5m4zgw4kw4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/elx"; - sha256 = "008nwa2gn3d2ayr8023pxyvph52gh9m56f77h41hp8hcw6hbdwrz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elx"; - license = lib.licenses.free; - }; - }) {}; - emacs-setup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacs-setup"; - ename = "emacs-setup"; - version = "20120727.726"; - src = fetchFromGitHub { - owner = "echosa"; - repo = "emacs-setup"; - rev = "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2"; - sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abb7101b2d48af56af09d1dc85c540300dba7b3c/recipes/emacs-setup"; - sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacs-setup"; - license = lib.licenses.free; - }; - }) {}; - emacsagist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsagist"; - ename = "emacsagist"; - version = "20140331.1130"; - src = fetchFromGitHub { - owner = "echosa"; - repo = "emacsagist"; - rev = "539b9c4c0652d793391135ba1fc2e503dbb7deba"; - sha256 = "0n5cpmbyf8mhq03ikhzbycjwkxv3fmjwq1a9zvv3z9ik8yxnbw99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07612d46faebb28e1eeb8ddae2ac20e2dc0175f6/recipes/emacsagist"; - sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/emacsagist"; - license = lib.licenses.free; - }; - }) {}; - emacsc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsc"; - ename = "emacsc"; - version = "20161028.1006"; - src = fetchFromGitHub { - owner = "knu"; - repo = "emacsc"; - rev = "421e0c567358769e32f670ae8e949d99abae0c28"; - sha256 = "0zmb1qdbdlrycari1r1g65c9px357wz4f2gvmcacg83504mmf3d8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/emacsc"; - sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacsc"; - license = lib.licenses.free; - }; - }) {}; - emacsist-view = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsist-view"; - ename = "emacsist-view"; - version = "20160426.523"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "emacsist-view"; - rev = "f67761259ed779a9bc95c9a4e0474522990c5c6b"; - sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2157e14d68fa2875c6d5c40c20a39b9a2431c10/recipes/emacsist-view"; - sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacsist-view"; - license = lib.licenses.free; - }; - }) {}; - emacsql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql"; - ename = "emacsql"; - version = "20190310.622"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "5ebd12b6ffaa9fbadefe8518eab07a028bbaf7c1"; - sha256 = "19anva1mcm89hylhdjjjsc3gc32kv2wqp5qs6h7rca059kkqj277"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c3b6175b5c64f03b0b9dfdc10f393081d681309/recipes/emacsql"; - sha256 = "0c2d0kymzr53wh87fq1wy2x5ahfsymz0cw8qbrqx0k613l3mpr38"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/emacsql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-mysql = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-mysql"; - ename = "emacsql-mysql"; - version = "20171218.1827"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "ea613c5191dcaa2583d3f7d5737b31bb88a07ed5"; - sha256 = "1i733wjvpd6lhdnwr8w2k0c8s7v7r9ivsmxxgdndlhdnkm17ca5j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-mysql"; - sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-mysql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-psql = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-psql"; - ename = "emacsql-psql"; - version = "20171218.1827"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "ea613c5191dcaa2583d3f7d5737b31bb88a07ed5"; - sha256 = "1i733wjvpd6lhdnwr8w2k0c8s7v7r9ivsmxxgdndlhdnkm17ca5j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-psql"; - sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-psql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-sqlite = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-sqlite"; - ename = "emacsql-sqlite"; - version = "20190426.1229"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "d5c37d905d133a3887bc582e4a0126671816beaa"; - sha256 = "1v0ynzvzgy7l2dhiz940i6a71v93jfsn2b7k3lhzdrx5s4a56wi5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3cfa28c7314fa57fa9a3aaaadf9ef83f8ae541a9/recipes/emacsql-sqlite"; - sha256 = "1y81nabzzb9f7b8azb9giy23ckywcbrrg4b88gw5qyjizbb3h70x"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-sqlite"; - license = lib.licenses.free; - }; - }) {}; - emacsshot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsshot"; - ename = "emacsshot"; - version = "20190527.343"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "emacsshot"; - rev = "64b7152e84a72b2ebcfd436a974135cf6978ef47"; - sha256 = "1m80804d2ynwdjgxrpbi4y3p0r16a3ihnga8pxhlaxxqnxy7m8b8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efdd85accc6053f92efcbfdb7ddc37b23a07a3b0/recipes/emacsshot"; - sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacsshot"; - license = lib.licenses.free; - }; - }) {}; - emamux = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emamux"; - ename = "emamux"; - version = "20170226.1937"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-emamux"; - rev = "39f57786b2cdd3844888df42d71c7bd251f07158"; - sha256 = "184669qynz1m93s9nv5pdc8m4bnvqa56wz472nsq4xhixz44jjsv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux"; - sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/emamux"; - license = lib.licenses.free; - }; - }) {}; - emamux-ruby-test = callPackage ({ emamux - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "emamux-ruby-test"; - ename = "emamux-ruby-test"; - version = "20130812.939"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emamux-ruby-test"; - rev = "785bfd44d097a46bb2ebe1e62ac7595fd4dc9ab5"; - sha256 = "1gcjki5rcc4gmcq6gcpdvahn4j6f39583jgq8g7ykylfqk2qhrjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f11759710881bdf5a77bd309acb03a6699cc7fd6/recipes/emamux-ruby-test"; - sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm"; - name = "recipe"; - }; - packageRequires = [ emamux projectile ]; - meta = { - homepage = "https://melpa.org/#/emamux-ruby-test"; - license = lib.licenses.free; - }; - }) {}; - emaps = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emaps"; - ename = "emaps"; - version = "20180712.1216"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "emaps"; - rev = "823b8f72e6459c9f1a5dd62451ee4005ef71d955"; - sha256 = "1g9637j8f65q3l6k4aw5p847m891irh74kg3pa2p9w0ppsa6n3jm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4faeda02aabc0b6c5003cdf5d1fdfca0fd71b0d7/recipes/emaps"; - sha256 = "151rh6lyqi0ps2w022shzjj67nkg6y4m1nfj90qyc7jgl64qb9qw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emaps"; - license = lib.licenses.free; - }; - }) {}; - ember-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ember-mode"; - ename = "ember-mode"; - version = "20190403.952"; - src = fetchFromGitHub { - owner = "madnificent"; - repo = "ember-mode"; - rev = "3510afc5023d760a66aef260ba601c15a31dc878"; - sha256 = "06y5nd2fs0xskjxhd1dn4g9y03i7xamv7jiwq8cm0c2mli5pjpr1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ac1eef4ad87b1b6b6d8e63d340ba03dc013425b/recipes/ember-mode"; - sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ember-mode"; - license = lib.licenses.free; - }; - }) {}; - ember-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "ember-yasnippets"; - ename = "ember-yasnippets"; - version = "20160526.958"; - src = fetchFromGitHub { - owner = "ronco"; - repo = "ember-yasnippets.el"; - rev = "3b5bd01569646237bf1b540d097e12f9118b67f4"; - sha256 = "0g7hp1aq0zznbhd234dpbblnagn34fxdasc5v4lfhm5ykw5xyb5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/ember-yasnippets"; - sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ember-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - embrace = callPackage ({ cl-lib ? null - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "embrace"; - ename = "embrace"; - version = "20171031.1133"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "embrace.el"; - rev = "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2"; - sha256 = "1m0qyipkp5ydgcav8d0m58fbj1gilipbj7g8mg40iajr8wfqcjdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8f07e3b5ba4ec4b0b79fba5a2cca5a3986218b6/recipes/embrace"; - sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; - name = "recipe"; - }; - packageRequires = [ cl-lib expand-region ]; - meta = { - homepage = "https://melpa.org/#/embrace"; - license = lib.licenses.free; - }; - }) {}; - emidje = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild - , seq }: - melpaBuild { - pname = "emidje"; - ename = "emidje"; - version = "20190209.926"; - src = fetchFromGitHub { - owner = "nubank"; - repo = "emidje"; - rev = "7e92f053964d925c97dc8cca8d4d70a3030021db"; - sha256 = "0xg2bw9vzwvkx6xh4k2n6qhyhqg5iifl6aa0s7svvdnw35x00hv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d64b3b42b4b9acd3e9d84921df287f3217db83e/recipes/emidje"; - sha256 = "1p2aa4wl2465gm7ljgr5lbvxfgx0g1w1170zdv3596hi07mccabs"; - name = "recipe"; - }; - packageRequires = [ cider emacs magit-popup seq ]; - meta = { - homepage = "https://melpa.org/#/emidje"; - license = lib.licenses.free; - }; - }) {}; - emlib = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emlib"; - ename = "emlib"; - version = "20161126.723"; - src = fetchFromGitHub { - owner = "narendraj9"; - repo = "emlib"; - rev = "dea2af00f551ea580c641d86dd69219f7d4f3685"; - sha256 = "0p52pkq3wvnhg0l7cribhc39zl1cjjxgw9qzpmwd0jw1g1lslwbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46b3738975c8082d9eb6da9fe733edb353aa7069/recipes/emlib"; - sha256 = "02l135v3pqpf6ngfq11h4rc843iwh3dgi4rr3gcc63pjl4ws2w2c"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/emlib"; - license = lib.licenses.free; - }; - }) {}; - emmet-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emmet-mode"; - ename = "emmet-mode"; - version = "20180612.2041"; - src = fetchFromGitHub { - owner = "smihica"; - repo = "emmet-mode"; - rev = "1acb821e0142136344ccf40c1e5fb664d7db2e70"; - sha256 = "1p25h191bm0h5b3w5apg7wks51k7pb7h4dlww4jbl9ri4d33fzcl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/emmet-mode"; - sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emmet-mode"; - license = lib.licenses.free; - }; - }) {}; - emms = callPackage ({ cl-lib ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms"; - ename = "emms"; - version = "20190529.1011"; - src = fetchgit { - url = "https://git.savannah.gnu.org/git/emms.git"; - rev = "f7e27094f09432b40ced77c7163cd29f338b7db6"; - sha256 = "009lba33xk86jpngmx63mgv9im28n1yfbjqzwd60f39hhvbl6mrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms"; - sha256 = "1xpry8h96gvjnc0v8x0vk5dnmlq1r7m3ljpampdwv9pfwl95fh94"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/emms"; - license = lib.licenses.free; - }; - }) {}; - emms-bilibili = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-bilibili"; - ename = "emms-bilibili"; - version = "20180102.2018"; - src = fetchFromGitHub { - owner = "0xDEATHCODE"; - repo = "emms-bilibili"; - rev = "294bca3dfc42fe3a55fb326ab39bc0fcfc8c5090"; - sha256 = "0q8z3q1agwgb3d0kpvac7a98p3q4ljjnv404cf9kihjjfxvh4vm5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/533f96d1e68eda20b2d2e7f8eb3e7fa118904970/recipes/emms-bilibili"; - sha256 = "1mx3fn2x526np8awjn0ydsqh59b4aznf3sig410fbr6wk6pa6y47"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/emms-bilibili"; - license = lib.licenses.free; - }; - }) {}; - emms-info-mediainfo = callPackage ({ emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-info-mediainfo"; - ename = "emms-info-mediainfo"; - version = "20131223.500"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "emms-info-mediainfo"; - rev = "bce16eae9eacd38719fea62a9755225a888da59d"; - sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d08c28c6ff4caf14f0bf4b0f40f16660dac2d5d9/recipes/emms-info-mediainfo"; - sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w"; - name = "recipe"; - }; - packageRequires = [ emms ]; - meta = { - homepage = "https://melpa.org/#/emms-info-mediainfo"; - license = lib.licenses.free; - }; - }) {}; - emms-mark-ext = callPackage ({ emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-mark-ext"; - ename = "emms-mark-ext"; - version = "20130528.2027"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "emms-mark-ext"; - rev = "ec68129e3e9e469e5bf160c6a1b7030e322f3541"; - sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36b7292160d3dab1a684d09c848a6b0f68b31add/recipes/emms-mark-ext"; - sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081"; - name = "recipe"; - }; - packageRequires = [ emms ]; - meta = { - homepage = "https://melpa.org/#/emms-mark-ext"; - license = lib.licenses.free; - }; - }) {}; - emms-mode-line-cycle = callPackage ({ emacs - , emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-mode-line-cycle"; - ename = "emms-mode-line-cycle"; - version = "20160221.320"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "emms-mode-line-cycle"; - rev = "2c2f395e484a1d345050ddd61ff5fab71a92a6bc"; - sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dab676acd774616a32a0373f30647f3cb4522afc/recipes/emms-mode-line-cycle"; - sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; - name = "recipe"; - }; - packageRequires = [ emacs emms ]; - meta = { - homepage = "https://melpa.org/#/emms-mode-line-cycle"; - license = lib.licenses.free; - }; - }) {}; - 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"; - ename = "emms-player-mpv-jp-radios"; - version = "20180325.417"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "emms-player-mpv-jp-radios"; - rev = "f6b37f5878c741124d5fca43c5b80af873541edd"; - sha256 = "1sxzh1bhdwln7kcn07agayyhmgyrbmmhgc3f85336xybc6ljpqs8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09ba6da5057061f055d4a3212d167f9666618d4f/recipes/emms-player-mpv-jp-radios"; - sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs emms emms-player-simple-mpv ]; - meta = { - homepage = "https://melpa.org/#/emms-player-mpv-jp-radios"; - license = lib.licenses.free; - }; - }) {}; - emms-player-simple-mpv = callPackage ({ cl-lib ? null - , emacs - , emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-player-simple-mpv"; - ename = "emms-player-simple-mpv"; - version = "20180316.849"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "emms-player-simple-mpv"; - rev = "101d120ccdee1c2c213fd2f0423c858b21649c00"; - sha256 = "1i6rxkm0ra0jbkkwgkwxg3vk5xfl794h1gkgnlpscynz0v94b6ll"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/emms-player-simple-mpv"; - sha256 = "1lv1rhd5vya068mnnaysfh56raar79hf2g413ysrk3yhyajk6316"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs emms ]; - meta = { - homepage = "https://melpa.org/#/emms-player-simple-mpv"; - license = lib.licenses.free; - }; - }) {}; - emms-soundcloud = callPackage ({ emms - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-soundcloud"; - ename = "emms-soundcloud"; - version = "20131221.345"; - src = fetchFromGitHub { - owner = "osener"; - repo = "emms-soundcloud"; - rev = "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b"; - sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19e423525255371cf479842885eca07e801f6d00/recipes/emms-soundcloud"; - sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi"; - name = "recipe"; - }; - packageRequires = [ emms json ]; - meta = { - homepage = "https://melpa.org/#/emms-soundcloud"; - license = lib.licenses.free; - }; - }) {}; - emms-state = callPackage ({ emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-state"; - ename = "emms-state"; - version = "20160504.105"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "emms-state.el"; - rev = "77930300222333b71eafd495cc1fee3a3585eb23"; - sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2798e22c6ccbadf73e65d8a8d901e47f55cb83/recipes/emms-state"; - sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; - name = "recipe"; - }; - packageRequires = [ emms ]; - meta = { - homepage = "https://melpa.org/#/emms-state"; - license = lib.licenses.free; - }; - }) {}; - emoji-cheat-sheet-plus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-cheat-sheet-plus"; - ename = "emoji-cheat-sheet-plus"; - version = "20150617.631"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "emacs-emoji-cheat-sheet-plus"; - rev = "96a003127d646a2683d81ca906a17eace0a6413e"; - sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ffbfae9577673ef8d50b55624f94288e315deba4/recipes/emoji-cheat-sheet-plus"; - sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/emoji-cheat-sheet-plus"; - license = lib.licenses.free; - }; - }) {}; - emoji-display = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-display"; - ename = "emoji-display"; - version = "20140117.213"; - src = fetchFromGitHub { - owner = "ikazuhiro"; - repo = "emoji-display"; - rev = "bb4217f6400151a9cfa6d4524b8427f01feb5193"; - sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c34abbda5acbd52f4e79ce9f87f9ae0fa1e48d5/recipes/emoji-display"; - sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emoji-display"; - license = lib.licenses.free; - }; - }) {}; - emoji-fontset = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-fontset"; - ename = "emoji-fontset"; - version = "20160726.1224"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emoji-fontset.el"; - rev = "e460c9a08e48ec4103e38a7a04acae20880149a9"; - sha256 = "0xdlqsrwdf0smi5z9rjj46nwrrfpl0gzanf0jmdg8zzn62l6ldck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60df435eb82fcc9a8a02a0a271bb6a2d5a161bc4/recipes/emoji-fontset"; - sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emoji-fontset"; - license = lib.licenses.free; - }; - }) {}; - emoji-recall = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-recall"; - ename = "emoji-recall"; - version = "20160723.1508"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "emoji-recall.el"; - rev = "1c12d18e5592eaa2138dd3034012dced277e6d99"; - sha256 = "0h65sapfa18z7xiyzsdizys204mvkzgmb3fbq75y1ddcrg9q0ikf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f03b34d3e8e5edf9888c71b6e4bd2e1a5aec016/recipes/emoji-recall"; - sha256 = "06cahk2h6q3vlw2p4jmjrpzycxpm884p31yhbp77lagkqhs2fzbk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/emoji-recall"; - license = lib.licenses.free; - }; - }) {}; - emojify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "emojify"; - ename = "emojify"; - version = "20190521.124"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "emacs-emojify"; - rev = "302d16e9bac72faf94984e0c48ecd0e4b8d66738"; - sha256 = "1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify"; - sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; - name = "recipe"; - }; - packageRequires = [ emacs ht seq ]; - meta = { - homepage = "https://melpa.org/#/emojify"; - license = lib.licenses.free; - }; - }) {}; - emojify-logos = callPackage ({ emojify - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emojify-logos"; - ename = "emojify-logos"; - version = "20180814.217"; - src = fetchFromGitHub { - owner = "mxgoldstein"; - repo = "emojify-logos"; - rev = "a3e78bcbdf863092d4c9b026ac08bf7d1c7c0e8b"; - sha256 = "1fhxf3nky9wlcn54q60f9254iawcccsrxw370q7cgpsrl1gj3dgp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/114d5596a7b36f47c150c413c6ecc74de36ca239/recipes/emojify-logos"; - sha256 = "0kgci1svi80xnz44bvh19si8bcjllrkm9rbd8761h77iylkqs3q5"; - name = "recipe"; - }; - packageRequires = [ emojify ]; - meta = { - homepage = "https://melpa.org/#/emojify-logos"; - license = lib.licenses.free; - }; - }) {}; - empos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "empos"; - ename = "empos"; - version = "20151011.1216"; - src = fetchFromGitHub { - owner = "dimalik"; - repo = "empos"; - rev = "7b99ad30e56937adb7e6349777e5a2045597d564"; - sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/461f7849e7be986994dd1e7cf109b66e8c37c719/recipes/empos"; - sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/empos"; - license = lib.licenses.free; - }; - }) {}; - emr = callPackage ({ cl-lib ? null - , clang-format - , dash - , emacs - , fetchFromGitHub - , fetchurl - , iedit - , lib - , list-utils - , melpaBuild - , paredit - , popup - , projectile - , s }: - melpaBuild { - pname = "emr"; - ename = "emr"; - version = "20190414.1325"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "emacs-refactor"; - rev = "73a7b2ea2db4ee6327e788f7462da9e107e5082f"; - sha256 = "0habg2llm7k030bz9syf9b0ilgpk8r1svhbdl6957pdgj8zqj4pn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/emr"; - sha256 = "02a7yzv6vxdazi26wk1ijadrjffd4iaf1abhpv642xib86pgpfd6"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - clang-format - dash - emacs - iedit - list-utils - paredit - popup - projectile - s - ]; - meta = { - homepage = "https://melpa.org/#/emr"; - license = lib.licenses.free; - }; - }) {}; - enclose = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enclose"; - ename = "enclose"; - version = "20121008.914"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "enclose.el"; - rev = "2fff3d4fcc1089f87647042d7164ba04282766ae"; - sha256 = "1x0z3fr8qd1r6wdh7gjbx5fmd7yfmh8mjnp25zkzvgxvdg4gj91l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/enclose"; - sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/enclose"; - license = lib.licenses.free; - }; - }) {}; - encourage-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "encourage-mode"; - ename = "encourage-mode"; - version = "20151128.105"; - src = fetchFromGitHub { - owner = "halbtuerke"; - repo = "encourage-mode.el"; - rev = "ca411e6bfd3d0edffe95852127bd995730b942e3"; - sha256 = "0fvfzm9a25cajxbvvia1dpmiq2nn7qimwsqwcirpwzq9zsn4j7f4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e90146c03a3f85313e3d338c48547ccfb73f605/recipes/encourage-mode"; - sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/encourage-mode"; - license = lib.licenses.free; - }; - }) {}; - engine-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "engine-mode"; - ename = "engine-mode"; - version = "20181222.1227"; - src = fetchFromGitHub { - owner = "hrs"; - repo = "engine-mode"; - rev = "117a9c0cbc1ff8ade7f17cd40d1d2f5eb24f51a3"; - sha256 = "1pm6xi0bcab3mpmvy8g449d5iv8s3cjqqvm2rcnlz1d6223pszh0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode"; - sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/engine-mode"; - license = lib.licenses.free; - }; - }) {}; - enh-ruby-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enh-ruby-mode"; - ename = "enh-ruby-mode"; - version = "20190512.1954"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "enhanced-ruby-mode"; - rev = "f334c42986e93c60fba144d732becfcbdb13bb7d"; - sha256 = "0xfdiajm2blkddxillnvn0mnik2i1q5zwgb5zc60i7p5dg1fj176"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode"; - sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/enh-ruby-mode"; - license = lib.licenses.free; - }; - }) {}; - enlive = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enlive"; - ename = "enlive"; - version = "20170725.717"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "enlive"; - rev = "604a8ca272b6889f114e2b5a13adb5b1dc4bae86"; - sha256 = "1iwfb5hxhnp4rl3rh5yayik0xl2lg82klxkvqf29536pk8ip710m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/388fa2580e687d9608b11cdc069841831b414b29/recipes/enlive"; - sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/enlive"; - license = lib.licenses.free; - }; - }) {}; - eno = callPackage ({ dash - , edit-at-point - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eno"; - ename = "eno"; - version = "20160110.234"; - src = fetchFromGitHub { - owner = "enoson"; - repo = "eno.el"; - rev = "c07674329f66d6b4ea6c3a3944f801ab77ccb7e6"; - sha256 = "0var9h1nslww3zlqbl9mvrkz7c9i2g8ka22mwqc1iv92ka3w0czv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/eno"; - sha256 = "1pcbvka3g32j1a2j7slw4jm80qpsk3ldziy5n4l02xpnqw6iwy6q"; - name = "recipe"; - }; - packageRequires = [ dash edit-at-point ]; - meta = { - homepage = "https://melpa.org/#/eno"; - license = lib.licenses.free; - }; - }) {}; - enotify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enotify"; - ename = "enotify"; - version = "20130407.648"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "enotify"; - rev = "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80"; - sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/enotify"; - sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/enotify"; - license = lib.licenses.free; - }; - }) {}; - ensime = callPackage ({ company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , s - , sbt-mode - , scala-mode - , yasnippet }: - melpaBuild { - pname = "ensime"; - ename = "ensime"; - version = "20180615.630"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "ensime-emacs"; - rev = "34eb11dac3ec9d1c554c2e55bf056ece6983add7"; - sha256 = "0hgbxd538xjzna97843014xkbpgs20nz7xpb6smls7rdxp5a1fpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime"; - sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; - name = "recipe"; - }; - packageRequires = [ - company - dash - popup - s - sbt-mode - scala-mode - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/ensime"; - license = lib.licenses.free; - }; - }) {}; - envdir = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "envdir"; - ename = "envdir"; - version = "20160221.1123"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "envdir-mode"; - rev = "f29346c55ccf11d8c75628edc6d430ed63c36917"; - sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/79c1497f709f6d23e4886359e09ab0456ed61777/recipes/envdir"; - sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/envdir"; - license = lib.licenses.free; - }; - }) {}; - eopengrok = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , s }: - melpaBuild { - pname = "eopengrok"; - ename = "eopengrok"; - version = "20160903.2359"; - src = fetchFromGitHub { - owner = "youngker"; - repo = "eopengrok.el"; - rev = "78f734328aaf19c52720415c037708ece1944c4c"; - sha256 = "1c5kzq3h7gr0459z364dyq5m8vq0ydclw5wphqj9fyg28mxjj6ns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b87ea158a6fdbc6b4e40fd7c0f6814d135f8545/recipes/eopengrok"; - sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash magit s ]; - meta = { - homepage = "https://melpa.org/#/eopengrok"; - license = lib.licenses.free; - }; - }) {}; - epc = callPackage ({ concurrent - , ctable - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epc"; - ename = "epc"; - version = "20140609.2234"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-epc"; - rev = "94cd36a3bec752263ac9b1b3a9dd2def329d2af7"; - sha256 = "0aa3d3k62rq649w57f8gb4jh0gj9h2mv5m66ikp0c35mrk3cpk1m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/epc"; - sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; - name = "recipe"; - }; - packageRequires = [ concurrent ctable ]; - meta = { - homepage = "https://melpa.org/#/epc"; - license = lib.licenses.free; - }; - }) {}; - epic = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild }: - melpaBuild { - pname = "epic"; - ename = "epic"; - version = "20170209.1623"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "epic"; - rev = "a41826c330eb0ea061d58a08cc861b0c4ac8ec4e"; - sha256 = "0mvg52f2y3725hlzqcn2mh8jihnbg68wlqmq951sa3qfma7m40pp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c7162791d560846fe386746c00a9fe88c8007bb/recipes/epic"; - sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf"; - name = "recipe"; - }; - packageRequires = [ htmlize ]; - meta = { - homepage = "https://melpa.org/#/epic"; - license = lib.licenses.free; - }; - }) {}; - epkg = callPackage ({ closql - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epkg"; - ename = "epkg"; - version = "20190505.345"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "epkg"; - rev = "1aaa64402bf91575ee81bf240c4c52320f68088d"; - sha256 = "0ij44yp72y1flcjp2q6yfbrnr4bnzjflgcsksl3djr9nhb73cd5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg"; - sha256 = "0vvkjjaffvwvsvld3c6hwd18icmp2lc7f9yqvclifpadi98dhpww"; - name = "recipe"; - }; - packageRequires = [ closql dash emacs ]; - meta = { - homepage = "https://melpa.org/#/epkg"; - license = lib.licenses.free; - }; - }) {}; - epl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epl"; - ename = "epl"; - version = "20180205.1249"; - src = fetchFromGitHub { - owner = "cask"; - repo = "epl"; - rev = "78ab7a85c08222cd15582a298a364774e3282ce6"; - sha256 = "0ksilx9gzdazngxfni5i632jpb1nprcxplsbhgqirs2xdl53q8v8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6cf24e86d8865bd2e4b405466118de1894851f/recipes/epl"; - sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/epl"; - license = lib.licenses.free; - }; - }) {}; - epm = callPackage ({ emacs - , epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epm"; - ename = "epm"; - version = "20190508.2143"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "epm"; - rev = "6375ddbf93c5f25647f6ebb25b54045b3c93a5be"; - sha256 = "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm"; - sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08"; - name = "recipe"; - }; - packageRequires = [ emacs epl ]; - meta = { - homepage = "https://melpa.org/#/epm"; - license = lib.licenses.free; - }; - }) {}; - epresent = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "epresent"; - ename = "epresent"; - version = "20160410.1901"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "epresent"; - rev = "bc3443879bb0111dcde2abd2f9c578e2cd438186"; - sha256 = "1ws4hjvbwn1nf18qsbq0cl6q0rdk8fy4brrb1mcqfiag9arqmd6b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/150487558ecda0520c637ffed1ffe2fbf2dc5811/recipes/epresent"; - sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/epresent"; - license = lib.licenses.free; - }; - }) {}; - eprime-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eprime-mode"; - ename = "eprime-mode"; - version = "20140513.1116"; - src = fetchFromGitHub { - owner = "AndrewHynes"; - repo = "eprime-mode"; - rev = "a680adedff897a22142d4628af4244a2a3dfca41"; - sha256 = "0a481cr6y70kvxbsdwscv3srmvyvgk43chdzqljhhj4fgk0zsccn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37b4f3dce033fa18d23202ca4c36bc85754d547d/recipes/eprime-mode"; - sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eprime-mode"; - license = lib.licenses.free; - }; - }) {}; - eproject = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "eproject"; - ename = "eproject"; - version = "20180312.942"; - src = fetchFromGitHub { - owner = "jrockway"; - repo = "eproject"; - rev = "068218d2cf2138cb2e8fc29b57e773a0097a7e8b"; - sha256 = "110b8gn47m5kafmvxr8q9zzrj0pdn6ikw9xsx4z1rc58i02jy307"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7e82668617a9b599f8994c720f3f123ba1e008a/recipes/eproject"; - sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/eproject"; - license = lib.licenses.free; - }; - }) {}; - equake = callPackage ({ dash - , emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , tco }: - melpaBuild { - pname = "equake"; - ename = "equake"; - version = "20190527.2131"; - src = fetchFromGitLab { - owner = "emacsomancer"; - repo = "equake"; - rev = "a03c7d942caa43d202bdf99a6845bee1d2d189a1"; - sha256 = "1303nlpzyyy0cka3n546dgk29bxn493fx5hp94qi0rfz5lqnk1q7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a4a0ec11a9c720d7ed90addcb31d0a9d5594f5b/recipes/equake"; - sha256 = "17r10d3acmhixbi24k19rx720qi8ss4v53n107arqmr04rkd1v2y"; - name = "recipe"; - }; - packageRequires = [ dash emacs tco ]; - meta = { - homepage = "https://melpa.org/#/equake"; - license = lib.licenses.free; - }; - }) {}; - erc-colorize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-colorize"; - ename = "erc-colorize"; - version = "20170107.539"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "erc-colorize"; - rev = "d026a016dcb9d63d9ac66d30627a92a8f1681bbd"; - sha256 = "1zzmsrlknrpw26kizd4dm1g604y9nkgh85xal9la70k94qcgv138"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e69214e89ec0e00b36609fce3efe22b5c1add1f9/recipes/erc-colorize"; - sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-colorize"; - license = lib.licenses.free; - }; - }) {}; - erc-crypt = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-crypt"; - ename = "erc-crypt"; - version = "20190318.1650"; - src = fetchFromGitHub { - owner = "atomontage"; - repo = "erc-crypt"; - rev = "043b109409ee5b17bf06956fa46e1beb66d06ca4"; - sha256 = "1k4y203m7d7cbgdyin3yq70ai9yw0rfln2v61xd7xa5zxvgvj2v2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a71b46c0370d2ed25aa3f39983048a04576ad5/recipes/erc-crypt"; - sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/erc-crypt"; - license = lib.licenses.free; - }; - }) {}; - erc-hipchatify = callPackage ({ alert - , emacs - , fetchhg - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "erc-hipchatify"; - ename = "erc-hipchatify"; - version = "20170314.937"; - src = fetchhg { - url = "https://bitbucket.com/seanfarley/erc-hipchatify"; - rev = "a53227513692"; - sha256 = "0av0y65hz7fbiiqzmk5mmw6jv7fivhcd1w3s2xn5y5jpgps56mrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b60e01e7064ce486fdac3d1b39fd4a1296b0dac5/recipes/erc-hipchatify"; - sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; - name = "recipe"; - }; - packageRequires = [ alert emacs request s ]; - meta = { - homepage = "https://melpa.org/#/erc-hipchatify"; - license = lib.licenses.free; - }; - }) {}; - erc-hl-nicks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-hl-nicks"; - ename = "erc-hl-nicks"; - version = "20180415.1246"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "erc-hl-nicks"; - rev = "756c4438a8245ccd3e389bf6c9850ee8453783ec"; - sha256 = "0c82rxpl5v7bbxirf1ksg06xv5xcddh8nkrpj7i6nvfarwdfnk4f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-hl-nicks"; - sha256 = "03hxsknf31vrja2amfa317ig4c34i5jpdq35zczrp00ap0s31nbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-hl-nicks"; - license = lib.licenses.free; - }; - }) {}; - erc-image = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-image"; - ename = "erc-image"; - version = "20180522.724"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "erc-image.el"; - rev = "82fb3871f02e24b1e880770b9a3d187aab43d0f0"; - sha256 = "1q8mkf612fb4fjp8h4kbr107wn083iqfdgv8f80pcmil8y33dw9i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-image"; - sha256 = "1k5llh2jg2wxy9v03qrhwqa6g7apkqiqa47jm24z0ydqinm6zl83"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-image"; - license = lib.licenses.free; - }; - }) {}; - erc-scrolltoplace = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , switch-buffer-functions }: - melpaBuild { - pname = "erc-scrolltoplace"; - ename = "erc-scrolltoplace"; - version = "20180607.2306"; - src = fetchFromGitLab { - owner = "jgkamat"; - repo = "erc-scrolltoplace"; - rev = "feb0fbf1fd4bdf220ae2d31ea7c066d8e62089f9"; - sha256 = "1wb3xm45g77daw2ncs8a8w0m8d2hi591jmzwy5xli1zgrr5mm8h3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/848cb17d871287c401496e4483e400b44696e89d/recipes/erc-scrolltoplace"; - sha256 = "0632i1p26z3f633iinkqka0x2dd55x02xidk9qr66jh0dzfs6q3i"; - name = "recipe"; - }; - packageRequires = [ emacs switch-buffer-functions ]; - meta = { - homepage = "https://melpa.org/#/erc-scrolltoplace"; - license = lib.licenses.free; - }; - }) {}; - erc-social-graph = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-social-graph"; - ename = "erc-social-graph"; - version = "20150508.504"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "erc-social-graph"; - rev = "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0"; - sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f347636c417aaf91728e56fd32313854fde3684/recipes/erc-social-graph"; - sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-social-graph"; - license = lib.licenses.free; - }; - }) {}; - erc-status-sidebar = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "erc-status-sidebar"; - ename = "erc-status-sidebar"; - version = "20171223.1324"; - src = fetchFromGitHub { - owner = "drewbarbs"; - repo = "erc-status-sidebar"; - rev = "48ed93ca8e225b4a212d89ffc01803355f66ee0a"; - sha256 = "1pxs48rsmna177qvglyk32hy3rdfydg0spr4rzkf1gvn169ispss"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29631de8ec4140a8e35cc500902b58115faa3955/recipes/erc-status-sidebar"; - sha256 = "04qh70ih74vbavq7ccwj1ixpd8s3g8rck9bxv6zhm1yv34bslw5d"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/erc-status-sidebar"; - license = lib.licenses.free; - }; - }) {}; - erc-terminal-notifier = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-terminal-notifier"; - ename = "erc-terminal-notifier"; - version = "20140115.224"; - src = fetchFromGitHub { - owner = "julienXX"; - repo = "erc-terminal-notifier.el"; - rev = "a3dacb935845e4a20031212bbd82b2170f68d2a8"; - sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2ba978b1ba63fac3b7f1e9776ddc3b054455ac4/recipes/erc-terminal-notifier"; - sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-terminal-notifier"; - license = lib.licenses.free; - }; - }) {}; - erc-track-score = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-track-score"; - ename = "erc-track-score"; - version = "20130328.515"; - src = fetchFromGitHub { - owner = "jd"; - repo = "erc-track-score.el"; - rev = "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3"; - sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/erc-track-score"; - sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-track-score"; - license = lib.licenses.free; - }; - }) {}; - erc-tweet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-tweet"; - ename = "erc-tweet"; - version = "20150920.558"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "erc-tweet.el"; - rev = "91fed61e139fa788d66a7358f0d50acc896414b8"; - sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-tweet"; - sha256 = "0nmh3r8s69hfmkz0jycn7w2icb5gnw2qbf8xjd52kigkdb2s646c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-tweet"; - license = lib.licenses.free; - }; - }) {}; - erc-twitch = callPackage ({ erc ? null - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-twitch"; - ename = "erc-twitch"; - version = "20170426.2306"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "erc-twitch"; - rev = "53c6af0cb72e56d897d30a40e7e5066668d6b5ec"; - sha256 = "0qirx38czv8m7sgj3rm1zncmyd8z6k4xhd8ixwxl7nigfpqvvv4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46f8640b24bade45cc729eeb370adf959f99526f/recipes/erc-twitch"; - sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; - name = "recipe"; - }; - packageRequires = [ erc json ]; - meta = { - homepage = "https://melpa.org/#/erc-twitch"; - license = lib.licenses.free; - }; - }) {}; - erc-view-log = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-view-log"; - ename = "erc-view-log"; - version = "20140227.1239"; - src = fetchFromGitHub { - owner = "Niluge-KiWi"; - repo = "erc-view-log"; - rev = "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266"; - sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0176d8e26014f7b62d14ac3adffa21a84b5741/recipes/erc-view-log"; - sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-view-log"; - license = lib.licenses.free; - }; - }) {}; - erc-youtube = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-youtube"; - ename = "erc-youtube"; - version = "20150603.1436"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "erc-youtube.el"; - rev = "97054ba8475b442e2aa81e5a291f668b7f28697f"; - sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ee9617a30a8ad1d457a0b0c7f35e6ec1c0bb2/recipes/erc-youtube"; - sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-youtube"; - license = lib.licenses.free; - }; - }) {}; - erc-yt = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-yt"; - ename = "erc-yt"; - version = "20150426.549"; - src = fetchFromGitHub { - owner = "yhvh"; - repo = "erc-yt"; - rev = "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8"; - sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ece0a6185a36d52971c35a35f5aa76ddafec3ced/recipes/erc-yt"; - sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/erc-yt"; - license = lib.licenses.free; - }; - }) {}; - ercn = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ercn"; - ename = "ercn"; - version = "20150523.803"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "ercn"; - rev = "8f2493fb40753b9c3699322c205f4dcf0a5bd67b"; - sha256 = "1hzzfh6fxx03cyb039jbhwdfd0zybfrlaqmcyf14f6dq4d3gvl92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a12f264653d79224adeb5d0ae76518dc408ff1e9/recipes/ercn"; - sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ercn"; - license = lib.licenses.free; - }; - }) {}; - ereader = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , xml-plus }: - melpaBuild { - pname = "ereader"; - ename = "ereader"; - version = "20170809.2201"; - src = fetchFromGitHub { - owner = "bddean"; - repo = "emacs-ereader"; - rev = "f3bbd3f13195f8fba3e3c880aab0e4c60430dcf3"; - sha256 = "18yqqqxsivnq2m8mxz7ifp0bfmn3q9m11w3abryxg2snh4vb5sy6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ereader"; - sha256 = "1ai27lyb9xcmjjcnppzzhb6ilsvq9d9g9z7h79lp7axq761vind4"; - name = "recipe"; - }; - packageRequires = [ dash emacs s xml-plus ]; - meta = { - homepage = "https://melpa.org/#/ereader"; - license = lib.licenses.free; - }; - }) {}; - eredis = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eredis"; - ename = "eredis"; - version = "20181118.1731"; - src = fetchFromGitHub { - owner = "justinhj"; - repo = "eredis"; - rev = "cfbfc25832f6fbc507bdd56b02e3a0b851a3c368"; - sha256 = "1f2f57c0bz3c6p11hr69aar6z5gg33zvfvsm76ma11vx21qilz6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63f06713d06911f836fe2a4bf199b0794ac89cf0/recipes/eredis"; - sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/eredis"; - license = lib.licenses.free; - }; - }) {}; - erefactor = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erefactor"; - ename = "erefactor"; - version = "20160121.159"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-erefactor"; - rev = "bf68085e5635eb94fd85709f8e1355c1f5534745"; - sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18063e16a6f556b1871e1a5b74e353a85a794e63/recipes/erefactor"; - sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/erefactor"; - license = lib.licenses.free; - }; - }) {}; - ergoemacs-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , undo-tree }: - melpaBuild { - pname = "ergoemacs-mode"; - ename = "ergoemacs-mode"; - version = "20190526.2048"; - src = fetchFromGitHub { - owner = "ergoemacs"; - repo = "ergoemacs-mode"; - rev = "7d3656541a00cc04ba4cefa31c0d127adb5a260a"; - sha256 = "1rw237xiw5nz736l5jdmlsa11l14qvzdac0wqymi80a0rfwqikga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode"; - sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs undo-tree ]; - meta = { - homepage = "https://melpa.org/#/ergoemacs-mode"; - license = lib.licenses.free; - }; - }) {}; - ergoemacs-status = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mode-icons - , powerline }: - melpaBuild { - pname = "ergoemacs-status"; - ename = "ergoemacs-status"; - version = "20160317.2238"; - src = fetchFromGitHub { - owner = "ergoemacs"; - repo = "ergoemacs-status"; - rev = "d952cc2361adf6eb4d6af60950ad4ab699c81320"; - sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4af9606cfe09cdd294fae6b4b1f477f7861fdb7/recipes/ergoemacs-status"; - sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb"; - name = "recipe"; - }; - packageRequires = [ mode-icons powerline ]; - meta = { - homepage = "https://melpa.org/#/ergoemacs-status"; - license = lib.licenses.free; - }; - }) {}; - erlang = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erlang"; - ename = "erlang"; - version = "20190404.228"; - src = fetchFromGitHub { - owner = "erlang"; - repo = "otp"; - rev = "e3ca92be9f1945f50ef84631a826b431bad2bfe6"; - sha256 = "14sbwlvn4nb33xrss9x3dn74nkzmr1gss029aycfd8sjclyzv1zn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; - sha256 = "1cs768xxbyrr78ln50k4yknmpbcc1iplws3k07r0gx5f3ca73iaq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/erlang"; - license = lib.licenses.free; - }; - }) {}; - erlstack-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erlstack-mode"; - ename = "erlstack-mode"; - version = "20190204.809"; - src = fetchFromGitHub { - owner = "k32"; - repo = "erlstack-mode"; - rev = "0ab44afa899ee7e52e712e0a1644fb9f4d40d2a6"; - sha256 = "1wnqzj9aycb67h9za2r97f2yflnwdr9qjg1kygr8rawxa1z7lim6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ee61c1c5f116082b37fb13d15052ed9bbbc1dac/recipes/erlstack-mode"; - sha256 = "0b7mj0rs8k3hdv4v3v5vmdqs0y26mss7dzc0sjjxj4d095yddqqf"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/erlstack-mode"; - license = lib.licenses.free; - }; - }) {}; - eros = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eros"; - ename = "eros"; - version = "20180414.2318"; - src = fetchFromGitHub { - owner = "xiongtx"; - repo = "eros"; - rev = "dd8910279226259e100dab798b073a52f9b4233a"; - sha256 = "08chj3a0lw4ygi2sv7wj0i6ihfbi8jhylr8p92inif8b88r6wg3k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eros"; - sha256 = "0l79bn72x5m2lzglrwwngz3hax9pf8wv7ci86y5pkwaa8frxycww"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eros"; - license = lib.licenses.free; - }; - }) {}; - ert-async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ert-async"; - ename = "ert-async"; - version = "20151011.659"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ert-async.el"; - rev = "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526"; - sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ec669e3fc73b0b499b84cec87d0f8621274732e/recipes/ert-async"; - sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ert-async"; - license = lib.licenses.free; - }; - }) {}; - ert-expectations = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ert-expectations"; - ename = "ert-expectations"; - version = "20121009.34"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "ert-expectations"; - rev = "aed70e002c4305b66aed7f6d0d48e9addd2dc1e6"; - sha256 = "0qgi3rj49k0hz4azg7ghcj6385p5s9gakqjhrjnhih7dxvihcgxi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/ert-expectations"; - sha256 = "07mp0azb6wsa1z4s6q8jyh7dpzils0wh2bamfmxzy4gjqjwv8ncn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ert-expectations"; - license = lib.licenses.free; - }; - }) {}; - ert-junit = callPackage ({ emacs - , ert ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ert-junit"; - ename = "ert-junit"; - version = "20181118.1456"; - src = fetchgit { - url = "https://bitbucket.org/olanilsson/ert-junit"; - rev = "b0649e94460aff5176dee5b33f28946bffb602d5"; - sha256 = "0hj85hz4s1q4dalinhgahn8jn97s2pdpv41d9qqbvbdzwhhw2mrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27c627eacab54896a1363dbabc56250a65343dd8/recipes/ert-junit"; - sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; - name = "recipe"; - }; - packageRequires = [ emacs ert ]; - meta = { - homepage = "https://melpa.org/#/ert-junit"; - license = lib.licenses.free; - }; - }) {}; - ert-modeline = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "ert-modeline"; - ename = "ert-modeline"; - version = "20140115.215"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "ert-modeline"; - rev = "7c6340834387f749519616f9601821cb73fd657b"; - sha256 = "08gk47fwd4hvl6gby3nyg3f9wq2l6phkkmq6yl04ff1qbjmvnx0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b3a301889d6eea2470017519b080519efbe1bec/recipes/ert-modeline"; - sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b"; - name = "recipe"; - }; - packageRequires = [ dash emacs projectile s ]; - meta = { - homepage = "https://melpa.org/#/ert-modeline"; - license = lib.licenses.free; - }; - }) {}; - ert-runner = callPackage ({ ansi - , commander - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "ert-runner"; - ename = "ert-runner"; - version = "20180831.445"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ert-runner.el"; - rev = "90b8fdd5970ef76a4649be60003b37f82cdc1a65"; - sha256 = "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1acc68f296e80b6ed99a1783e9f67be54ffac9/recipes/ert-runner"; - sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash f s shut-up ]; - meta = { - homepage = "https://melpa.org/#/ert-runner"; - license = lib.licenses.free; - }; - }) {}; - es-lib = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "es-lib"; - ename = "es-lib"; - version = "20141111.1030"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "es-lib"; - rev = "753b27363e39c10edc9e4e452bdbbbe4d190df4a"; - sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/es-lib"; - sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/es-lib"; - license = lib.licenses.free; - }; - }) {}; - es-mode = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s - , spark }: - melpaBuild { - pname = "es-mode"; - ename = "es-mode"; - version = "20190512.516"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "es-mode"; - rev = "8de1452e1b9181a4f6778c0aaefc011aef58b25d"; - sha256 = "0p9k30a1ar9hpw63cxr46afk7l3b7j79jpgrjcpsicd17rhjbcs8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9912193f73c4beae03b295822bf41cb2298756e2/recipes/es-mode"; - sha256 = "0zp84k5idqkrvc9qci49ains0b86kpk97lk1jcwyj75s4xsfyp1y"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash request s spark ]; - meta = { - homepage = "https://melpa.org/#/es-mode"; - license = lib.licenses.free; - }; - }) {}; - es-windows = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "es-windows"; - ename = "es-windows"; - version = "20140211.104"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "es-windows"; - rev = "7ebe6c6e0831373847d7adbedeaa2e506b54b2af"; - sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/944d4cd54e040d2a58e1778cb282727deee83f92/recipes/es-windows"; - sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/es-windows"; - license = lib.licenses.free; - }; - }) {}; - esa = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esa"; - ename = "esa"; - version = "20180403.825"; - src = fetchFromGitHub { - owner = "nabinno"; - repo = "esa.el"; - rev = "417e0ac55abe9b17e0b7165d0df26bc018aff42e"; - sha256 = "0hib8q9fslvw02i1y19z78fv6yy88q09lhfdfmbdyn6yal21855q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/esa"; - sha256 = "0y4mbq0z6vp0faxq6dq5hhxnsbi685amxqbvpxkxahl1nckp76lb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/esa"; - license = lib.licenses.free; - }; - }) {}; - esh-autosuggest = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esh-autosuggest"; - ename = "esh-autosuggest"; - version = "20190227.2001"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "esh-autosuggest"; - rev = "cdfe38ee16e1e125d37178f11a371ed7560f5b35"; - sha256 = "1pglw16y9a68kdgyb04vl6nr0wynykwdgrkzhcis1xzhdllivkad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc3776068d6928fc1661a27cccaeb8fb85577099/recipes/esh-autosuggest"; - sha256 = "1rcng1dhy4yw95qg909ck33svpdxhv9v5k7226d29gp4y54dwyrx"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/esh-autosuggest"; - license = lib.licenses.free; - }; - }) {}; - esh-buf-stack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esh-buf-stack"; - ename = "esh-buf-stack"; - version = "20140107.218"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "esh-buf-stack"; - rev = "ea5da9ce8566ffe2e013f0e588701cb0825258b6"; - sha256 = "1fllnc9awj24781h527n7b83i232i54ad5a9pczqvdr5s4kn4vfs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61e8f75aa0d5446c61aadc7ac22371e44a3761b8/recipes/esh-buf-stack"; - sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/esh-buf-stack"; - license = lib.licenses.free; - }; - }) {}; - esh-help = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esh-help"; - ename = "esh-help"; - version = "20170829.2111"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "esh-help"; - rev = "8a8a9d4d9852f8bd96da3b94e95ff57097ac8ec6"; - sha256 = "02fybhmqm2qmy5qdig7xvwxazqi499pw32kh5mrsbdr14srg9fhs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab94c66d1ed7cfdbc437ee239984ba70408fd28a/recipes/esh-help"; - sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/esh-help"; - license = lib.licenses.free; - }; - }) {}; - eshell-autojump = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-autojump"; - ename = "eshell-autojump"; - version = "20150927.24"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "eshell-autojump"; - rev = "c6a8b81a16576df9875e721fbbfe6690d04e7e43"; - sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68bd1a8ec9d17eff2d23e15b3686f7c0b8723126/recipes/eshell-autojump"; - sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eshell-autojump"; - license = lib.licenses.free; - }; - }) {}; - eshell-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-bookmark"; - ename = "eshell-bookmark"; - version = "20170922.814"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "eshell-bookmark"; - rev = "deda4b848b2fb979dbe73ead2cb866610e3596ed"; - sha256 = "14dmsnixf9vqdhsixw693sml0fn80zcf0b37z049fb40cmppqxdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7bf4702a907727990fcc676980f2b219e22ab0c/recipes/eshell-bookmark"; - sha256 = "1bybxlq1h5chrjxqjb23kq8dmgw2xrjwkrnvpbphblqzpdy5ck0s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-bookmark"; - license = lib.licenses.free; - }; - }) {}; - eshell-did-you-mean = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-did-you-mean"; - ename = "eshell-did-you-mean"; - version = "20150915.1252"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-did-you-mean"; - rev = "7cb6ef8e2274d0a50a9e114d412307a6543533d5"; - sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7649eca21a21ddbbc7131f29cbbd91a00a84060/recipes/eshell-did-you-mean"; - sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-did-you-mean"; - license = lib.licenses.free; - }; - }) {}; - eshell-fixed-prompt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "eshell-fixed-prompt"; - ename = "eshell-fixed-prompt"; - version = "20190111.1435"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "eshell-fixed-prompt-mode"; - rev = "2c860029354bf1f69edc1f12e4a0d9aeb9054f5d"; - sha256 = "1j1m661rgbfr04357wq2a7vhm04s3vrbw4r6y1k2cx2ap9amkb25"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eshell-fixed-prompt"; - sha256 = "0mhrfxf19p4qqnlnnfc0z70324c7qiiv63riaz4cn5jj1ps3v0iy"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/eshell-fixed-prompt"; - license = lib.licenses.free; - }; - }) {}; - eshell-fringe-status = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-fringe-status"; - ename = "eshell-fringe-status"; - version = "20170117.1516"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "eshell-fringe-status"; - rev = "adc6997c68e39c0d52a2af1b2fd5cf2057783797"; - sha256 = "1cwn4cvjjd4l5kk7s6cxzafjmdv3s7k78i73fvscmsnpwx9p2wj0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9efd9fefab5d449b9f70d9f548aadfea52d66bc0/recipes/eshell-fringe-status"; - sha256 = "1vavidnijxzhr4v39q4bxi645vsfcj6vp0wnlhznpxagshr950lg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eshell-fringe-status"; - license = lib.licenses.free; - }; - }) {}; - eshell-git-prompt = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-git-prompt"; - ename = "eshell-git-prompt"; - version = "20170909.752"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-git-prompt"; - rev = "b6bb2d7bd4e393b4170b29891cfefb72ae020aab"; - sha256 = "02i00an9wa8ns66xq900la68m7pd4hwv95g83cvf22bypivx7p2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5272280b19579c302ba41b53c77e42bc5e8ccbda/recipes/eshell-git-prompt"; - sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-git-prompt"; - license = lib.licenses.free; - }; - }) {}; - eshell-prompt-extras = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-prompt-extras"; - ename = "eshell-prompt-extras"; - version = "20181229.618"; - src = fetchFromGitHub { - owner = "kaihaosw"; - repo = "eshell-prompt-extras"; - rev = "5a328e1b9112c7f31ce2da7cde340f96626546b6"; - sha256 = "0fwlvrzjygs12dcp89wy3rb3wa03mrvbzpmpvmz4x6dfpr7csznk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/eshell-prompt-extras"; - sha256 = "0zkdb9a8dibk832b5hzb6wjich3l0lah5p64805rgd4qskzj10gx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eshell-prompt-extras"; - license = lib.licenses.free; - }; - }) {}; - eshell-toggle = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-toggle"; - ename = "eshell-toggle"; - version = "20190526.752"; - src = fetchFromGitHub { - owner = "4DA"; - repo = "eshell-toggle"; - rev = "2eb91974047f5caf8df3bf3af5014be2cc95ddac"; - sha256 = "1iblhp0jvki2lm1jg1g93r3zvxvpjv3pi0xssivypq3bpy22v6cr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7a3cf4c5ed3bb0995eac9dcce939b518a0ef987/recipes/eshell-toggle"; - sha256 = "06cxjh0cqcafb4skw317f8wria9gv77wbwpc62a276s3zrv961qf"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-toggle"; - license = lib.licenses.free; - }; - }) {}; - eshell-up = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-up"; - ename = "eshell-up"; - version = "20170425.1037"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "eshell-up"; - rev = "b00e447ad7941ab31bcbb6bc0205fd492e887e7d"; - sha256 = "1802887ad7y6m40azfvzz6aapdzkp655jpiryimqd11kwbsinmvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eshell-up"; - sha256 = "1jyaaw950isissjjgqflfn2bllgdfcyphpbi7il06mv9p0dzpwvy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-up"; - license = lib.licenses.free; - }; - }) {}; - eshell-z = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-z"; - ename = "eshell-z"; - version = "20170116.2038"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-z"; - rev = "c9334cbc1552234df3437f35d98e32f4d18446b8"; - sha256 = "1zja4hb2lj4m5w4j9mpc7xyqgg2ivpslllffjsg8x1w8xsxpj8fh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8079cecaa59ad2ef22812960838123effc46a9b3/recipes/eshell-z"; - sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/eshell-z"; - license = lib.licenses.free; - }; - }) {}; - eslint-fix = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eslint-fix"; - ename = "eslint-fix"; - version = "20180514.0"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "eslint-fix"; - rev = "f81f3b47a47460611fbdbdae1d23275ec78f2f8d"; - sha256 = "0k3asz3mdz4nm8lq37x9rgx4wb8hsfyr0hlfyhzwdb10x57jfzns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eslint-fix"; - sha256 = "0ry271jlv95nhdqx6qxmvkpa10lpwkg1q6asnliviwplq2mxw2da"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eslint-fix"; - license = lib.licenses.free; - }; - }) {}; - eslintd-fix = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eslintd-fix"; - ename = "eslintd-fix"; - version = "20180429.755"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "eslintd-fix"; - rev = "90e451af4daa190d6c0e29fb714b0501a7cce89a"; - sha256 = "01jysgdd4im4kf4afzwd4mm8x9vlpibb1w4yi2jvc0hglqddnr2g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c72d2b3ee9b8066d51d09e165e58e9846ca879cc/recipes/eslintd-fix"; - sha256 = "0lv4xpp9bm1yyn9mj7hpgw1v46yyxr0nlwggbav78jbg4v7ai04v"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eslintd-fix"; - license = lib.licenses.free; - }; - }) {}; - esonify = callPackage ({ cl-lib ? null - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esonify"; - ename = "esonify"; - version = "20190110.821"; - src = fetchFromGitHub { - owner = "oflatt"; - repo = "esonify"; - rev = "bdc79d4ab2e3c449b5bef46e5cabc552beeed5c6"; - sha256 = "03xl6a49pg3y1g3dl7fglrn956ynzj2vlviwlv08ngflvbn5shai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a05dadbf515af6202d1cb96d4fdceb07bb7a6da/recipes/esonify"; - sha256 = "0facvhl6p4v1h3magvp6lzahdzbgg7a15hbj9rgfncvfzfjzlq5a"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred ]; - meta = { - homepage = "https://melpa.org/#/esonify"; - license = lib.licenses.free; - }; - }) {}; - espresso-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "espresso-theme"; - ename = "espresso-theme"; - version = "20181025.126"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "espresso-theme"; - rev = "d2fa034eb833bf37cc6842017070725e0da9b046"; - sha256 = "0fds36w6l2aaa88wjkd2ck561i0wwpxgz5ldadhbi5lvfwj9386m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/espresso-theme"; - sha256 = "1njc1ppi1jvb3mdckr19kbk7g0a3dx8j4d6j101ygszzrr24ycmv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/espresso-theme"; - license = lib.licenses.free; - }; - }) {}; - espuds = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "espuds"; - ename = "espuds"; - version = "20160905.600"; - src = fetchFromGitHub { - owner = "ecukes"; - repo = "espuds"; - rev = "ef854367d469c6eff459d24a544addd21a4fbd23"; - sha256 = "024msmnwlnsgqa523s3phxj1g77pyw917gz1fhz56062576nv22q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/espuds"; - sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/espuds"; - license = lib.licenses.free; - }; - }) {}; - espy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "espy"; - ename = "espy"; - version = "20180929.902"; - src = fetchFromGitHub { - owner = "walseb"; - repo = "espy"; - rev = "e5dadc232ad985ede2b7d68a09be4c8014ded56a"; - sha256 = "08crl0q7xc8gx245cfylb3j5xncqviq402gizhv0lb6rs0bpsc4y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/184718ee62f25b2bfed7d5126e02bce3290c50c4/recipes/espy"; - sha256 = "1icyiygw7brn4lrp28szmk4kk94n5q1zlrzrl6z7y0hdhdsjflgg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/espy"; - license = lib.licenses.free; - }; - }) {}; - esqlite = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcsv }: - melpaBuild { - pname = "esqlite"; - ename = "esqlite"; - version = "20151206.406"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-esqlite"; - rev = "fae9826cbc255b0f0686a801288f1441bda5f631"; - sha256 = "0ag444hfrpdrf3lnaz7l2plj392xgh7a2080421z3g0alc74m8h3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite"; - sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh"; - name = "recipe"; - }; - packageRequires = [ pcsv ]; - meta = { - homepage = "https://melpa.org/#/esqlite"; - license = lib.licenses.free; - }; - }) {}; - esqlite-helm = callPackage ({ esqlite - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "esqlite-helm"; - ename = "esqlite-helm"; - version = "20151116.50"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-esqlite"; - rev = "84d5b16198f30949c544affba751ee0d58a000d9"; - sha256 = "0z92205ryab1j2pih89pj82cdgdsz0ddp7wwia8ivxvjpd3jp751"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbec16cd1682ac15a81304f351f9c4e6b3b70fa9/recipes/esqlite-helm"; - sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq"; - name = "recipe"; - }; - packageRequires = [ esqlite helm ]; - meta = { - homepage = "https://melpa.org/#/esqlite-helm"; - license = lib.licenses.free; - }; - }) {}; - ess = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , julia-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ess"; - ename = "ess"; - version = "20190530.747"; - src = fetchFromGitHub { - owner = "emacs-ess"; - repo = "ESS"; - rev = "a715cbbd998d645ec377dc99964cd2b0f14fc192"; - sha256 = "060s331wmdzzvd183jcyzy4frc1jgsiqjz5bpgm8fx4kk42df2ww"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/156a6fa9e6ee16174d215c1dcd524aff847b3bf0/recipes/ess"; - sha256 = "1psqrw9k7d2ha8zid2mkc6bgcyalrm3n53c00g3cgckkbahl7r6n"; - name = "recipe"; - }; - packageRequires = [ emacs julia-mode ]; - meta = { - homepage = "https://melpa.org/#/ess"; - license = lib.licenses.free; - }; - }) {}; - ess-R-data-view = callPackage ({ ctable - , ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "ess-R-data-view"; - ename = "ess-R-data-view"; - version = "20130509.458"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "ess-R-data-view.el"; - rev = "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9"; - sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/492c90bd0ee97c0b895efa0c5e647b2becc6db11/recipes/ess-R-data-view"; - sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; - name = "recipe"; - }; - packageRequires = [ ctable ess popup ]; - meta = { - homepage = "https://melpa.org/#/ess-R-data-view"; - license = lib.licenses.free; - }; - }) {}; - ess-smart-equals = callPackage ({ emacs - , ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ess-smart-equals"; - ename = "ess-smart-equals"; - version = "20190203.2049"; - src = fetchFromGitHub { - owner = "genovese"; - repo = "ess-smart-equals"; - rev = "746cf9e78c3b86cbbf78d69c335a8a4ff3da79d6"; - sha256 = "1by8bzw3yl86mqzh7lwz5dca243n956jnd2rz4vilpgbh5cka2l3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4403cf87e05311d7fe0360f35f9634b9fdfc6f81/recipes/ess-smart-equals"; - sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; - name = "recipe"; - }; - packageRequires = [ emacs ess ]; - meta = { - homepage = "https://melpa.org/#/ess-smart-equals"; - license = lib.licenses.free; - }; - }) {}; - ess-smart-underscore = callPackage ({ ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ess-smart-underscore"; - ename = "ess-smart-underscore"; - version = "20190308.1701"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "ess-smart-underscore.el"; - rev = "aa871c5b0448515db439ea9bed6a8574e82ddb47"; - sha256 = "0knb4zfva2m0vd8awcfy5kyd21rjdhxnc1n74qazr9y82l5w7i9b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4d6166f5c80cf37c79256402fa633ad2274d065/recipes/ess-smart-underscore"; - sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; - name = "recipe"; - }; - packageRequires = [ ess ]; - meta = { - homepage = "https://melpa.org/#/ess-smart-underscore"; - license = lib.licenses.free; - }; - }) {}; - ess-view = callPackage ({ ess - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ess-view"; - ename = "ess-view"; - version = "20181001.1030"; - src = fetchFromGitHub { - owner = "GioBo"; - repo = "ess-view"; - rev = "d4e5a340b7bcc58c434867b97923094bd0680283"; - sha256 = "1yzki5f2k7gmj4m0871h4h46zalv2x71rbpa6glkfx7bm9kyc193"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96960a8799138187b748a47ac007dc25d739fe10/recipes/ess-view"; - sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4"; - name = "recipe"; - }; - packageRequires = [ ess f s ]; - meta = { - homepage = "https://melpa.org/#/ess-view"; - license = lib.licenses.free; - }; - }) {}; - esup = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esup"; - ename = "esup"; - version = "20180726.2042"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "esup"; - rev = "5acb60e8d7a8fef854178f325682765820522b10"; - sha256 = "0bfrnzwf1imxigd7mxisywi54h0jb79488z2hba53yplmvr80p7p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup"; - sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/esup"; - license = lib.licenses.free; - }; - }) {}; - esxml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esxml"; - ename = "esxml"; - version = "20171129.7"; - src = fetchFromGitHub { - owner = "tali713"; - repo = "esxml"; - rev = "5548ceba17deae0c3c6d0092672edc4de3c75ce3"; - sha256 = "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db6556fe1b2403d1bcdade263986fd0faf0d9087/recipes/esxml"; - sha256 = "1375gryii984l33gc8f8yhl3vncjmw1w9k6xpvjgmnpx2fwr1vbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/esxml"; - license = lib.licenses.free; - }; - }) {}; - etable = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , interval-list - , lib - , melpaBuild }: - melpaBuild { - pname = "etable"; - ename = "etable"; - version = "20161028.1309"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "ETable"; - rev = "d502141f0c69bf95256ba5cb9cd15350c7e942d2"; - sha256 = "0k0g58qzkkzall715k0864v3b7p5jnfwxqgmkj087x34frcf388k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/etable"; - sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32"; - name = "recipe"; - }; - packageRequires = [ dash emacs interval-list ]; - meta = { - homepage = "https://melpa.org/#/etable"; - license = lib.licenses.free; - }; - }) {}; - eterm-256color = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "eterm-256color"; - ename = "eterm-256color"; - version = "20190122.2001"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "eterm-256color"; - rev = "0f0dab497239ebedbc9c4a48b3ec8cce4a47e980"; - sha256 = "00ins8n92p5aspr6bjrvn5y5w0ximakk22yklsfmkav4h10al4as"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e556383f7e18c0215111aa720d4653465e91eff6/recipes/eterm-256color"; - sha256 = "1mxc2hqjcj67jq5k4621a7f089qahcqw7f0dzqpaxn7if11w333b"; - name = "recipe"; - }; - packageRequires = [ emacs f xterm-color ]; - meta = { - homepage = "https://melpa.org/#/eterm-256color"; - license = lib.licenses.free; - }; - }) {}; - ethan-wspace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ethan-wspace"; - ename = "ethan-wspace"; - version = "20190522.748"; - src = fetchFromGitHub { - owner = "glasserc"; - repo = "ethan-wspace"; - rev = "0f110fc26b829093c352e8dc9e50ba51a4e483ac"; - sha256 = "1w26cczq58xyzgmpsks11dnl58kvzk0av2y4bg46cgma4fdg9pb1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9454f3a58e3416fa60d8411b0db19c408935408f/recipes/ethan-wspace"; - sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ethan-wspace"; - license = lib.licenses.free; - }; - }) {}; - euslisp-mode = callPackage ({ emacs - , exec-path-from-shell - , fetchFromGitHub - , fetchurl - , helm-ag - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "euslisp-mode"; - ename = "euslisp-mode"; - version = "20170830.1229"; - src = fetchFromGitHub { - owner = "iory"; - repo = "euslisp-mode"; - rev = "db62a2d148482317794727982576494596365a55"; - sha256 = "187ij4s7mzppgmh0ifny70mw8w31nq86rhsrmnflz26iywnkp8x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b04fffe5e52f26e92930a112a64531228f94e340/recipes/euslisp-mode"; - sha256 = "0v92lry9ynkvsvx060njaw1j5lj9sb1i3srs2hfqqwyqni5ldkri"; - name = "recipe"; - }; - packageRequires = [ emacs exec-path-from-shell helm-ag s ]; - meta = { - homepage = "https://melpa.org/#/euslisp-mode"; - license = lib.licenses.free; - }; - }) {}; - eval-expr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eval-expr"; - ename = "eval-expr"; - version = "20120618.2347"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "eval-expr"; - rev = "a0e69e83de41df8dbccefc1962ab4f02206a3328"; - sha256 = "08zw3qrhqmnv2wxmbf74svk2cx5by4831kyw6rx13imkc4x8kngx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f56c5312cc8ffc1a8b31fc342e8e2b8827eff846/recipes/eval-expr"; - sha256 = "0zkphbx7ph4p7qkfxqyr6p8420j9qkvx5wghd1sza6y0kb456872"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eval-expr"; - license = lib.licenses.free; - }; - }) {}; - eval-in-repl = callPackage ({ ace-window - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "eval-in-repl"; - ename = "eval-in-repl"; - version = "20171122.543"; - src = fetchFromGitHub { - owner = "kaz-yos"; - repo = "eval-in-repl"; - rev = "fea05a5b81d74ac53cb2a83aa83a73d9526bcc42"; - sha256 = "0xm1ggdaihy1cyg4b3b9x1n93bp4qiv30p1mfzmmqm6w89z1agf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0bee5fb7a7874dd20babd1de7f216c5bda3e0115/recipes/eval-in-repl"; - sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; - name = "recipe"; - }; - packageRequires = [ ace-window dash paredit ]; - meta = { - homepage = "https://melpa.org/#/eval-in-repl"; - license = lib.licenses.free; - }; - }) {}; - eval-sexp-fu = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eval-sexp-fu"; - ename = "eval-sexp-fu"; - version = "20190109.9"; - src = fetchFromGitHub { - owner = "hchbaw"; - repo = "eval-sexp-fu.el"; - rev = "e1d7165383c941b3f11c2715707adc3d91d129a0"; - sha256 = "01mpnpgmlnfbi2yw9dxz5iw72mw3lk223bj172i4fnx3xdrrxbij"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b1a896521cac1f54f7571ad5837ff215d01044d/recipes/eval-sexp-fu"; - sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/eval-sexp-fu"; - license = lib.licenses.free; - }; - }) {}; - evalator = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "evalator"; - ename = "evalator"; - version = "20160212.1728"; - src = fetchFromGitHub { - owner = "seanirby"; - repo = "evalator"; - rev = "f30da4da48c0b3f3cfa1fc1c7cfdb53ffe79df36"; - sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/544a503d72c0a501f9ca854cd11181a7783294a3/recipes/evalator"; - sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/evalator"; - license = lib.licenses.free; - }; - }) {}; - evalator-clojure = callPackage ({ cider - , evalator - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evalator-clojure"; - ename = "evalator-clojure"; - version = "20160208.1348"; - src = fetchFromGitHub { - owner = "seanirby"; - repo = "evalator-clojure"; - rev = "caa4e0a137bdfada86593128a654e16aa617ad50"; - sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f57089f3e5c8342092128d44451b338af8a769f/recipes/evalator-clojure"; - sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3"; - name = "recipe"; - }; - packageRequires = [ cider evalator ]; - meta = { - homepage = "https://melpa.org/#/evalator-clojure"; - license = lib.licenses.free; - }; - }) {}; - eve-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , polymode }: - melpaBuild { - pname = "eve-mode"; - ename = "eve-mode"; - version = "20170822.1531"; - src = fetchFromGitHub { - owner = "witheve"; - repo = "emacs-eve-mode"; - rev = "a4661114d9c18725691b76321d72167ca5a9070a"; - sha256 = "19s6cid42q0lm2w94a7f6sxvmy3zpjdj5r5dbwcxxp5n3qfs7nip"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0f197adfe64ef88d90d24dfd6532bf52a5bce0d/recipes/eve-mode"; - sha256 = "1ch50bm452g8k1xnqcbpmpwkmg8amzv7bq0hphk3y0kiqkwd1gdh"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode polymode ]; - meta = { - homepage = "https://melpa.org/#/eve-mode"; - license = lib.licenses.free; - }; - }) {}; - evil = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , goto-chg - , lib - , melpaBuild - , undo-tree }: - melpaBuild { - pname = "evil"; - ename = "evil"; - version = "20190222.412"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil"; - rev = "297b8f323754d967beeaed28080311f5afbe25c8"; - sha256 = "047x7q643mw5vxq857zx83k2w0108gj2wii510cn9ixdxkwhc0ya"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad/recipes/evil"; - sha256 = "1d36r6mi5nvrwnk4a9338wmhr72fcbrwj0r8gmvivpjdngjy4k39"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs goto-chg undo-tree ]; - meta = { - homepage = "https://melpa.org/#/evil"; - license = lib.licenses.free; - }; - }) {}; - evil-anzu = callPackage ({ anzu - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-anzu"; - ename = "evil-anzu"; - version = "20170123.2318"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-evil-anzu"; - rev = "565f79ae66fc329ab9e1bf5a89fa0727981ed5cc"; - sha256 = "01gc7bj51w7952aqpb9zw9gqvjy8b8nfmhfpiah2r96gk9b0yn6j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06b0609b56016d938b28d56d9eeb6305116b38af/recipes/evil-anzu"; - sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; - name = "recipe"; - }; - packageRequires = [ anzu evil ]; - meta = { - homepage = "https://melpa.org/#/evil-anzu"; - license = lib.licenses.free; - }; - }) {}; - evil-args = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-args"; - ename = "evil-args"; - version = "20180908.1457"; - src = fetchFromGitHub { - owner = "wcsmith"; - repo = "evil-args"; - rev = "758ad5ae54ad34202064fec192c88151c08cb387"; - sha256 = "0k35glgsirc3cph8v5hhjrqfh4ndwh8a28qbr03y3jl8s453xcj7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0976c82a22f1a8701b9da0b8ba4753ed48191376/recipes/evil-args"; - sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-args"; - license = lib.licenses.free; - }; - }) {}; - evil-avy = callPackage ({ avy - , cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-avy"; - ename = "evil-avy"; - version = "20150908.48"; - src = fetchFromGitHub { - owner = "louy2"; - repo = "evil-avy"; - rev = "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5"; - sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f86bccc9f2190cfa5487cf8e9c9b7938774533ed/recipes/evil-avy"; - sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd"; - name = "recipe"; - }; - packageRequires = [ avy cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-avy"; - license = lib.licenses.free; - }; - }) {}; - evil-better-visual-line = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-better-visual-line"; - ename = "evil-better-visual-line"; - version = "20181026.328"; - src = fetchFromGitHub { - owner = "YourFin"; - repo = "evil-better-visual-line"; - rev = "05e8270ae62e71b652513407c561b136c258f04c"; - sha256 = "1q7jsmk301ncpn18g5qk02ypbxc9irfh30rxi9k2ab8p35j3ml4i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c46640394c29643eea4e59066bab9963db67b8d7/recipes/evil-better-visual-line"; - sha256 = "00l6gd66apf0gphlx5hk9lcl7rmj7ag8kf558psyzcyvhpmff2bq"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-better-visual-line"; - license = lib.licenses.free; - }; - }) {}; - evil-cleverparens = callPackage ({ dash - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit - , smartparens }: - melpaBuild { - pname = "evil-cleverparens"; - ename = "evil-cleverparens"; - version = "20170717.2113"; - src = fetchFromGitHub { - owner = "luxbock"; - repo = "evil-cleverparens"; - rev = "9bce7cc5e2ab80adeafb0f1a579eb27bdb7a8d2f"; - sha256 = "1wplh9lk0cplkpik088lk5am5b8ks0rs8bp3b6wn0bn1r0l3jcxg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3b3637d6527b16ea0d606fd87b01004be446b09/recipes/evil-cleverparens"; - sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799"; - name = "recipe"; - }; - packageRequires = [ dash emacs evil paredit smartparens ]; - meta = { - homepage = "https://melpa.org/#/evil-cleverparens"; - license = lib.licenses.free; - }; - }) {}; - evil-colemak-basics = callPackage ({ emacs - , evil - , evil-snipe - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-colemak-basics"; - ename = "evil-colemak-basics"; - version = "20170425.509"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-colemak-basics"; - rev = "7844079b47f47bb1dc24c885b0ac2e67524fa960"; - sha256 = "0phspmd31pcxana2lp6mqywmghhdpj6ydsrl1bjn4b1gcp1fqsy2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/945417d19faf492fb678aee3ba692d14e7518d85/recipes/evil-colemak-basics"; - sha256 = "1sbbli0hdmpc23f3g5n95svqfdg3rlvf71plyvpv1a6va9jhi83k"; - name = "recipe"; - }; - packageRequires = [ emacs evil evil-snipe ]; - meta = { - homepage = "https://melpa.org/#/evil-colemak-basics"; - license = lib.licenses.free; - }; - }) {}; - evil-colemak-minimal = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-colemak-minimal"; - ename = "evil-colemak-minimal"; - version = "20171006.617"; - src = fetchFromGitHub { - owner = "bmallred"; - repo = "evil-colemak-minimal"; - rev = "6d98b6da60f414524a0d718f76024c26dce742b3"; - sha256 = "0pd05jq4qkw5xx7xqzxzx62fsm77vjz0ry9ayaqgqw5831rbp553"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/828c744062069027f19fe5f2f233179f9149dc16/recipes/evil-colemak-minimal"; - sha256 = "0qi5k17b9k227zz9binbrd22cwmlqxkay98by9yxcbyhl4hjhdyy"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-colemak-minimal"; - license = lib.licenses.free; - }; - }) {}; - evil-collection = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-collection"; - ename = "evil-collection"; - version = "20190605.2304"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-collection"; - rev = "218e6e2e222998b2cc84003f6b98f0a82595754b"; - sha256 = "044q3gabjsxhplhrnwzmkml78vzwc16289zwg0xh713n2b80vdki"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fbc35279115f6fdf1ce7d1ecef3b413c7ca9c4f1/recipes/evil-collection"; - sha256 = "1l6x782ix873n90k9g00i9065h31dnhv07bgzrp28l7y7bivqwl7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-collection"; - license = lib.licenses.free; - }; - }) {}; - evil-commentary = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-commentary"; - ename = "evil-commentary"; - version = "20170413.751"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-commentary"; - rev = "395f91014b69844b81660c155f42eb9b1b3d199d"; - sha256 = "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe5b05152c919d49ddd920b1bd5ffc351141fa0d/recipes/evil-commentary"; - sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-commentary"; - license = lib.licenses.free; - }; - }) {}; - evil-dvorak = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-dvorak"; - ename = "evil-dvorak"; - version = "20160416.1141"; - src = fetchFromGitHub { - owner = "jbranso"; - repo = "evil-dvorak"; - rev = "e7b80077d6f332452049eb3d7ea51f6c8fbf5947"; - sha256 = "1z8wl0ih3b8bahbglp5n1xjws583hkryl034b2a3p11ljq3g2ggl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69abca9985339c59ee0e2334cabf3c99e1ba1349/recipes/evil-dvorak"; - sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-dvorak"; - license = lib.licenses.free; - }; - }) {}; - evil-easymotion = callPackage ({ avy - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-easymotion"; - ename = "evil-easymotion"; - version = "20180113.2254"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "evil-easymotion"; - rev = "79c13ed3bce018ac09d358e642e5bd7025e93603"; - sha256 = "0496dnbciq8gbivihas1y58gwd4nbfz767rr98zpwgkz8l2jvy73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e67955ead0b9d69acab40d66d4e0b821229d635c/recipes/evil-easymotion"; - sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv"; - name = "recipe"; - }; - packageRequires = [ avy cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/evil-easymotion"; - license = lib.licenses.free; - }; - }) {}; - evil-ediff = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-ediff"; - ename = "evil-ediff"; - version = "20170724.1223"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-ediff"; - rev = "67b0e69f65c196eff5b39dacb7a9ec05bb919c74"; - sha256 = "0f8g07fyzyc8pdwizyj62v0dy65ap885asph83529y0j8wnni8ps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3eff8cd4bedff3e2111d96743d94be5053826f1/recipes/evil-ediff"; - sha256 = "0yglhxm670996hd7305q38y5f47y87n75hh0q7qlm2vra2m2wa5s"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-ediff"; - license = lib.licenses.free; - }; - }) {}; - evil-embrace = callPackage ({ emacs - , embrace - , evil-surround - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-embrace"; - ename = "evil-embrace"; - version = "20160519.1129"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "evil-embrace.el"; - rev = "8b2083c514af143f6d2f5d1cb4272c5bfb7437a3"; - sha256 = "1cplq9s3fw8nadcipjrix46jfcjbgg3xhz6d226wcqgmg90aclfn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4886f068766514deab5673b4366d6bdd311e3b6/recipes/evil-embrace"; - sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7"; - name = "recipe"; - }; - packageRequires = [ emacs embrace evil-surround ]; - meta = { - homepage = "https://melpa.org/#/evil-embrace"; - license = lib.licenses.free; - }; - }) {}; - evil-escape = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-escape"; - ename = "evil-escape"; - version = "20180910.534"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-escape"; - rev = "f4e9116bfbaac8c9d210c17ad488e0982291245f"; - sha256 = "1whppnlzkjig1yrz0fjvp8cy86215gjahgh88166nzk95wlc3pvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-escape"; - sha256 = "0jiwsgcqw8m6z4z82gx0m0r0vbvkcxc0czhn4mqjwkhhglwzgi8l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/evil-escape"; - license = lib.licenses.free; - }; - }) {}; - evil-ex-fasd = callPackage ({ emacs - , evil - , fasd - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-ex-fasd"; - ename = "evil-ex-fasd"; - version = "20180902.2312"; - src = fetchFromGitHub { - owner = "yqrashawn"; - repo = "evil-ex-fasd"; - rev = "ed8fbbe23a8a268d9dcbf1a6132e928ba2c655c5"; - sha256 = "0fr57nlg7m65gzhnrwnqi5bgy4vzl0l0mxk63sr3561r8fnm8hbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ebdddebb0272765ebbf72073da8c2158a05f624/recipes/evil-ex-fasd"; - sha256 = "1zljsrpbsimldpc1wviw87vgm6941zz4wy8vhpplwkfbnywiwnp7"; - name = "recipe"; - }; - packageRequires = [ emacs evil fasd ]; - meta = { - homepage = "https://melpa.org/#/evil-ex-fasd"; - license = lib.licenses.free; - }; - }) {}; - evil-ex-shell-command = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-ex-shell-command"; - ename = "evil-ex-shell-command"; - version = "20181225.1826"; - src = fetchFromGitHub { - owner = "yqrashawn"; - repo = "evil-ex-shell-command"; - rev = "a6ca6d27c07f6a0807abfb5b8f8865f1d17f54aa"; - sha256 = "0jx2cj6p8wag7aphbgf3ij5v71prxkbxpfia8nmcpmrpvjqpsb74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4205a35cc0c4518ab1424d91bbc627e8cdae42/recipes/evil-ex-shell-command"; - sha256 = "1lbk31l7g6n6lqm8rvsfqbagqvhkp0s2v6wz8x4fnrjj0ymd4syf"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-ex-shell-command"; - license = lib.licenses.free; - }; - }) {}; - evil-exchange = callPackage ({ cl-lib ? null - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-exchange"; - ename = "evil-exchange"; - version = "20170510.1959"; - src = fetchFromGitHub { - owner = "Dewdrops"; - repo = "evil-exchange"; - rev = "47691537815150715e64e6f6ec79be7746c96120"; - sha256 = "0bjpn4yqig17ddym6wqq5fm1b294q74hzcbj9a6gs97fqiwf88xa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b06397c032d24a8da4074ad97cdb30d0c468e20/recipes/evil-exchange"; - sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r"; - name = "recipe"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "https://melpa.org/#/evil-exchange"; - license = lib.licenses.free; - }; - }) {}; - evil-expat = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-expat"; - ename = "evil-expat"; - version = "20190521.14"; - src = fetchFromGitHub { - owner = "edkolev"; - repo = "evil-expat"; - rev = "f4fcd0aa3edc359adb5c986b5dd9188d220d84e2"; - sha256 = "0872ix682hkdz0k8pn6sb54rqkx00rz5fxpd5j2snx406yagpaxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f08f6396e66479eb9510727968c5bb01ac239476/recipes/evil-expat"; - sha256 = "03niji6wymhlfkvdg90gasccs4683djxcj925c8k0vdgmfr8sx32"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-expat"; - license = lib.licenses.free; - }; - }) {}; - evil-extra-operator = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-extra-operator"; - ename = "evil-extra-operator"; - version = "20161212.2003"; - src = fetchFromGitHub { - owner = "Dewdrops"; - repo = "evil-extra-operator"; - rev = "e16a9b36f9901254da9af8a73871061616410fc3"; - sha256 = "116srvfck3b244shxm9cmw3yvpprjgr840fvcv6jwwpfaphafxw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0b157c3adf8a2899c4dd2ce98e8a81e4f403a3/recipes/evil-extra-operator"; - sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-extra-operator"; - license = lib.licenses.free; - }; - }) {}; - evil-find-char-pinyin = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "evil-find-char-pinyin"; - ename = "evil-find-char-pinyin"; - version = "20160514.1341"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "evil-find-char-pinyin"; - rev = "04e277946d658f1a73c68dcbbadea9c21097a31c"; - sha256 = "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8755d2fca519f23f11c5cbb53443a2ad4340220e/recipes/evil-find-char-pinyin"; - sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79"; - name = "recipe"; - }; - packageRequires = [ evil pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/evil-find-char-pinyin"; - license = lib.licenses.free; - }; - }) {}; - evil-fringe-mark = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , fringe-helper - , goto-chg - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-fringe-mark"; - ename = "evil-fringe-mark"; - version = "20190319.2153"; - src = fetchFromGitHub { - owner = "Andrew-William-Smith"; - repo = "evil-fringe-mark"; - rev = "a1689fddb7ee79aaa720a77aada1208b8afd5c20"; - sha256 = "0pf8bl7bmcn1l0dlxkgbgwb1n2fxpzxwcr4jf06gzyrrmmwah526"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70dcc07c389d5454de64fb08cd666d489d6d5483/recipes/evil-fringe-mark"; - sha256 = "1ahlbp31ll24vzah4bv1xx58gn8y8fsjb0n9a135zwb3fjla9drb"; - name = "recipe"; - }; - packageRequires = [ emacs evil fringe-helper goto-chg ]; - meta = { - homepage = "https://melpa.org/#/evil-fringe-mark"; - license = lib.licenses.free; - }; - }) {}; - evil-god-state = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , god-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-god-state"; - ename = "evil-god-state"; - version = "20141116.1855"; - src = fetchFromGitHub { - owner = "gridaphobe"; - repo = "evil-god-state"; - rev = "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40"; - sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46b8586e9a821efb67539155f783a32867084bfa/recipes/evil-god-state"; - sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf"; - name = "recipe"; - }; - packageRequires = [ evil god-mode ]; - meta = { - homepage = "https://melpa.org/#/evil-god-state"; - license = lib.licenses.free; - }; - }) {}; - evil-goggles = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-goggles"; - ename = "evil-goggles"; - version = "20181123.1146"; - src = fetchFromGitHub { - owner = "edkolev"; - repo = "evil-goggles"; - rev = "78454a7e8bd609edf0d93cb0a7f9ed576dd33546"; - sha256 = "1yn72wmrda670h0bz3gdqh6k44ja60wkk9f4hijh9w1hw0vazk20"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/811b1261705b4c525e165fa9ee23ae191727a623/recipes/evil-goggles"; - sha256 = "151xvawyhcjp98skaif08wbxqaw602f51zgwm604hp25a111qmnq"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-goggles"; - license = lib.licenses.free; - }; - }) {}; - evil-iedit-state = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , iedit - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-iedit-state"; - ename = "evil-iedit-state"; - version = "20180606.2258"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-iedit-state"; - rev = "f75cff4ecbd5beaa9ca64a6c157c4105f078daec"; - sha256 = "0f6m5wi1q6ac9mkvalm62rlnlkjz1c315a4sa93p6iw9x12llkgw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0b6b7d09c023cfe34da65fa1eb8f3fdbe7b1290/recipes/evil-iedit-state"; - sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; - name = "recipe"; - }; - packageRequires = [ evil iedit ]; - meta = { - homepage = "https://melpa.org/#/evil-iedit-state"; - license = lib.licenses.free; - }; - }) {}; - evil-indent-plus = callPackage ({ cl-lib ? null - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-indent-plus"; - ename = "evil-indent-plus"; - version = "20151109.1106"; - src = fetchFromGitHub { - owner = "TheBB"; - repo = "evil-indent-plus"; - rev = "33a8bcac5f90ddee054e64d60c2b68c98c269ffc"; - sha256 = "0v94kn99z6v4aigjgk3l6b6x22bv9fighisbm23b0861kwcns98f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/992ea3d372fa3569ad9f838aa2818eaee8b8033a/recipes/evil-indent-plus"; - sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12"; - name = "recipe"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "https://melpa.org/#/evil-indent-plus"; - license = lib.licenses.free; - }; - }) {}; - evil-indent-textobject = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-indent-textobject"; - ename = "evil-indent-textobject"; - version = "20130831.1519"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "evil-indent-textobject"; - rev = "70a1154a531b7cfdbb9a31d6922482791e20a3a7"; - sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63cfc9c2962780dd5d27da670d5540a0441e7ca2/recipes/evil-indent-textobject"; - sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-indent-textobject"; - license = lib.licenses.free; - }; - }) {}; - evil-leader = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-leader"; - ename = "evil-leader"; - version = "20140606.543"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "evil-leader"; - rev = "39f7014bcf8b36463e0c7512c638bda4bac6c2cf"; - sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-leader"; - sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-leader"; - license = lib.licenses.free; - }; - }) {}; - evil-ledger = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , ledger-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-ledger"; - ename = "evil-ledger"; - version = "20180802.912"; - src = fetchFromGitHub { - owner = "atheriel"; - repo = "evil-ledger"; - rev = "7a9f9f5d39c42fffdba8004f8982642351f2b233"; - sha256 = "010r1qn9l3clqqrlia0y25bqjbrixvf8i409v10yxqb949jvw1vk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/500e99a1b92f0a0c144f843cd7645872034d9fbb/recipes/evil-ledger"; - sha256 = "13idy2kbzhckzfwrjnzjrf8h2881w3v8pmhlcj26xcyf4ch0dq9r"; - name = "recipe"; - }; - packageRequires = [ emacs evil ledger-mode ]; - meta = { - homepage = "https://melpa.org/#/evil-ledger"; - license = lib.licenses.free; - }; - }) {}; - evil-lion = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-lion"; - ename = "evil-lion"; - version = "20170810.2314"; - src = fetchFromGitHub { - owner = "edkolev"; - repo = "evil-lion"; - rev = "aaa3874ad54c31b4322ac5bbc63e331498b11d61"; - sha256 = "1aq3ip93sxk05gfgh2zw6zckmkir0viqaqz674fcmsd2rc2051zn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a7a0691775afec6d2c7be3d6739b55bd1d2053d/recipes/evil-lion"; - sha256 = "1rwmpc5ifblb41c1yhhv26ayff4nk9iza7w0wb5ganny2r82fg2v"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-lion"; - license = lib.licenses.free; - }; - }) {}; - evil-lisp-state = callPackage ({ bind-map - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smartparens }: - melpaBuild { - pname = "evil-lisp-state"; - ename = "evil-lisp-state"; - version = "20160403.1948"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-lisp-state"; - rev = "3c65fecd9917a41eaf6460f22187e2323821f3ce"; - sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-lisp-state"; - sha256 = "16h6zi0kkq2zlrwqiz6avnw2ady3h9gmxyinvk5gbkskxf12d1pz"; - name = "recipe"; - }; - packageRequires = [ bind-map evil smartparens ]; - meta = { - homepage = "https://melpa.org/#/evil-lisp-state"; - license = lib.licenses.free; - }; - }) {}; - evil-lispy = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , hydra - , lib - , lispy - , melpaBuild }: - melpaBuild { - pname = "evil-lispy"; - ename = "evil-lispy"; - version = "20190502.39"; - src = fetchFromGitHub { - owner = "sp3ctum"; - repo = "evil-lispy"; - rev = "ed317f7fccbdbeea8aa04a91b1b1f48a0e2ddc4e"; - sha256 = "0izgd9zwfwykmznv6wjrq9czmjqc1hkw41szrjmrcxy5kbz1p5c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/377d43f3717b8e17c3adce886aaf3e579383ec64/recipes/evil-lispy"; - sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld"; - name = "recipe"; - }; - packageRequires = [ evil hydra lispy ]; - meta = { - homepage = "https://melpa.org/#/evil-lispy"; - license = lib.licenses.free; - }; - }) {}; - evil-magit = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "evil-magit"; - ename = "evil-magit"; - version = "20190224.1228"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-magit"; - rev = "e2fec5877994c0c19f0c25fa01f3d22cb0ab38ba"; - sha256 = "134v7s03jvbhm70mavwab85r09i68g2a5bvriirh0chz1av2y16v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50315ec837d2951bf5b2bb75809a35dd7ffc8fe8/recipes/evil-magit"; - sha256 = "02ncki7qrl22804576h76xl4d5lvvk32lzn9gvxn63hb19r0s980"; - name = "recipe"; - }; - packageRequires = [ evil magit ]; - meta = { - homepage = "https://melpa.org/#/evil-magit"; - license = lib.licenses.free; - }; - }) {}; - evil-mark-replace = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mark-replace"; - ename = "evil-mark-replace"; - version = "20150424.18"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-mark-replace"; - rev = "56cf191724a3e82239ca47a17b071c20aedb0617"; - sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/evil-mark-replace"; - sha256 = "14j2d46288shlixb57nh5vlqdi3aiv20djvcbhiw1cm9ar2c3y4v"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-mark-replace"; - license = lib.licenses.free; - }; - }) {}; - evil-matchit = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-matchit"; - ename = "evil-matchit"; - version = "20190307.213"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-matchit"; - rev = "00ab601346a5646aa6db4935684021ec16650a58"; - sha256 = "14wbsj1fwxz36qdnnf9qr2rz38qm4x3aj265asmvpfizgbm2jd4r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; - sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-matchit"; - license = lib.licenses.free; - }; - }) {}; - evil-mc = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mc"; - ename = "evil-mc"; - version = "20190321.906"; - src = fetchFromGitHub { - owner = "gabesoft"; - repo = "evil-mc"; - rev = "ef22ee1a9d9a82a9b954f27f82ddcb7cb0f634ec"; - sha256 = "026nvajf9wbm47qw1napzsngqjrkq84d052ybhxf30as6pigj36s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96770d778a03ab012fb82a3a0122983db6f9b0c4/recipes/evil-mc"; - sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-mc"; - license = lib.licenses.free; - }; - }) {}; - evil-mc-extras = callPackage ({ cl-lib ? null - , emacs - , evil - , evil-mc - , evil-numbers - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mc-extras"; - ename = "evil-mc-extras"; - version = "20170202.849"; - src = fetchFromGitHub { - owner = "gabesoft"; - repo = "evil-mc-extras"; - rev = "ba3252ae129c3b79aeb70ec3d276cbda32b00421"; - sha256 = "0a7mn1z0db4xi8wclqp41hcbzh017q6pndxr9mrfxb67sqs601id"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7c9aa0f4c17e7f27836e75a0b83c44a68ad744/recipes/evil-mc-extras"; - sha256 = "1px4akqaddqgfd03932d03d3rrvjr5lv5nc94xc448kqcbfn7yjk"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil evil-mc evil-numbers ]; - meta = { - homepage = "https://melpa.org/#/evil-mc-extras"; - license = lib.licenses.free; - }; - }) {}; - evil-mu4e = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mu4e"; - ename = "evil-mu4e"; - version = "20180613.339"; - src = fetchFromGitHub { - owner = "JorisE"; - repo = "evil-mu4e"; - rev = "f4b387ccbd2c49f3bbb5401e93bfcc050ca128ef"; - sha256 = "1fiqx5q0jwh92dxj54wglw91a9pxyb58s8253pb7as9y1iwvyyhq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/332f3f9c6dc106e58345abbc2d8fd99056d518c0/recipes/evil-mu4e"; - sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-mu4e"; - license = lib.licenses.free; - }; - }) {}; - evil-multiedit = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , iedit - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-multiedit"; - ename = "evil-multiedit"; - version = "20190102.2315"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "evil-multiedit"; - rev = "cb35914ffabb4f65d22ab2f812ff6e7622cc5c26"; - sha256 = "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/997f5a6999d1add57fae33ba8eb3e3bc60d7bb56/recipes/evil-multiedit"; - sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil iedit ]; - meta = { - homepage = "https://melpa.org/#/evil-multiedit"; - license = lib.licenses.free; - }; - }) {}; - evil-nerd-commenter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-nerd-commenter"; - ename = "evil-nerd-commenter"; - version = "20190407.128"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-nerd-commenter"; - rev = "acc0f75cde9e4ffd946f7835c3b388fb77f633a7"; - sha256 = "1r8shfdddys9vqvrxf7s6z83ydqx9xhqs9sa7klbsajryqcp50b7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter"; - sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/evil-nerd-commenter"; - license = lib.licenses.free; - }; - }) {}; - evil-nl-break-undo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-nl-break-undo"; - ename = "evil-nl-break-undo"; - version = "20181125.1254"; - src = fetchFromGitHub { - owner = "VanLaser"; - repo = "evil-nl-break-undo"; - rev = "8acaecadd32937f6f1d8c3f8141fcee0de7d324e"; - sha256 = "1155bbp7mais3cf378zxnrxc5qg9qai7rcr7whd0ljf9i4aic0y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a43ea989f52cebadc68c8e9c0f87f8f2e23b0974/recipes/evil-nl-break-undo"; - sha256 = "0q6b459z06h4l47b5lcxlqbksf8sbazkk569r3h2577zpc56prfn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/evil-nl-break-undo"; - license = lib.licenses.free; - }; - }) {}; - evil-numbers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-numbers"; - ename = "evil-numbers"; - version = "20140606.551"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "evil-numbers"; - rev = "8834eb2e8bd93561a706363946701d0d90546a9f"; - sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-numbers"; - sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/evil-numbers"; - license = lib.licenses.free; - }; - }) {}; - evil-opener = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , opener }: - melpaBuild { - pname = "evil-opener"; - ename = "evil-opener"; - version = "20161207.1010"; - src = fetchFromGitHub { - owner = "0robustus1"; - repo = "opener.el"; - rev = "c384f67278046fdcd220275fdd212ab85672cbeb"; - sha256 = "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-opener"; - sha256 = "0cld853pyzlaa306rpypw2wm4953i6y06irlk96bql9aa1zx977g"; - name = "recipe"; - }; - packageRequires = [ evil opener ]; - meta = { - homepage = "https://melpa.org/#/evil-opener"; - license = lib.licenses.free; - }; - }) {}; - evil-org = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-org"; - ename = "evil-org"; - version = "20180323.1606"; - src = fetchFromGitHub { - owner = "Somelauw"; - repo = "evil-org-mode"; - rev = "b6d652a9163d3430a9e0933a554bdbee5244bbf6"; - sha256 = "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1768558ed0a0249421437b66fe45018dd768e637/recipes/evil-org"; - sha256 = "18glpsnpxap4dvnvkl59h9pnwlp20libsfbbkmvrbzsvbdyspg6z"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-org"; - license = lib.licenses.free; - }; - }) {}; - evil-paredit = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "evil-paredit"; - ename = "evil-paredit"; - version = "20150413.1348"; - src = fetchFromGitHub { - owner = "roman"; - repo = "evil-paredit"; - rev = "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f"; - sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88db86e1351410bcff6f3ed80681946afcec9959/recipes/evil-paredit"; - sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy"; - name = "recipe"; - }; - packageRequires = [ evil paredit ]; - meta = { - homepage = "https://melpa.org/#/evil-paredit"; - license = lib.licenses.free; - }; - }) {}; - evil-python-movement = callPackage ({ cl-lib ? null - , dash - , emacs - , evil - , fetchgit - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "evil-python-movement"; - ename = "evil-python-movement"; - version = "20180724.720"; - src = fetchgit { - url = "https://bitbucket.org/FelipeLema/evil-python-movement.el"; - rev = "9936b3b7f8d96415d517c1f3604637889484a637"; - sha256 = "11ivb95ilsw3svpna9n07yf8s9q3w36ia6js2qv6wf0d0dp2xb9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/130e6d17735ff86b962859528d7e50869f683251/recipes/evil-python-movement"; - sha256 = "1qs0z93rpi9dz6hy64816afdr4k5gssyw2dhaxcn152ylg1yzkg3"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs evil s ]; - meta = { - homepage = "https://melpa.org/#/evil-python-movement"; - license = lib.licenses.free; - }; - }) {}; - evil-quickscope = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-quickscope"; - ename = "evil-quickscope"; - version = "20160202.1124"; - src = fetchFromGitHub { - owner = "blorbx"; - repo = "evil-quickscope"; - rev = "37a20e4c56c6058abf186ad4013c155e695e876f"; - sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec118caf243c74d243f533c9e12f7de0d6c43bc4/recipes/evil-quickscope"; - sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-quickscope"; - license = lib.licenses.free; - }; - }) {}; - evil-rails = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile-rails }: - melpaBuild { - pname = "evil-rails"; - ename = "evil-rails"; - version = "20190512.817"; - src = fetchFromGitHub { - owner = "antono"; - repo = "evil-rails"; - rev = "b0f1c5de6720714febeb76c4b569b71bb891938c"; - sha256 = "0mypsbf0mg2b4746r9b9ybj51qkrlxz48lf9g53kzbk3wdf6p5vi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff526fe800b0535067431f1ae78c4a4b5594b23d/recipes/evil-rails"; - sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj"; - name = "recipe"; - }; - packageRequires = [ evil projectile-rails ]; - meta = { - homepage = "https://melpa.org/#/evil-rails"; - license = lib.licenses.free; - }; - }) {}; - evil-replace-with-char = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-replace-with-char"; - ename = "evil-replace-with-char"; - version = "20180324.1506"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "evil-replace-with-char"; - rev = "ed4a12d5bff11163eb03ad2826c52fd30f51a8d3"; - sha256 = "1nhnwl39wsi7akzcjqszxxw2b6j9i5y4qabcd8p387zajjpgscwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ac1b487e0fe193cc46c8b489686972ed6db3973/recipes/evil-replace-with-char"; - sha256 = "0lgazw53j44rc72czwqxs6yaz67l9i1v52wbi7l9w958fnjra84r"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-replace-with-char"; - license = lib.licenses.free; - }; - }) {}; - evil-replace-with-register = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-replace-with-register"; - ename = "evil-replace-with-register"; - version = "20170713.225"; - src = fetchFromGitHub { - owner = "Dewdrops"; - repo = "evil-ReplaceWithRegister"; - rev = "91cc7bf21a94703c441cc9212214075b226b7f67"; - sha256 = "14rpn76qrf287s3y2agmddcxi27r226i53ixjvd694ss039g0r11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bd98aebefc13da5a129d1d3f1c8878e4a70654/recipes/evil-replace-with-register"; - sha256 = "0qyym6vwjs0aqf2p28rh96v30pgxg060pxyij0vrfj469wzmlrj9"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-replace-with-register"; - license = lib.licenses.free; - }; - }) {}; - evil-rsi = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-rsi"; - ename = "evil-rsi"; - version = "20160221.1304"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-rsi"; - rev = "236bf6ed1e2285698db808463e5f2f69f5f5e7c0"; - sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24f438b47e8ede0ef84261424c122d2ac28b90cb/recipes/evil-rsi"; - sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-rsi"; - license = lib.licenses.free; - }; - }) {}; - evil-search-highlight-persist = callPackage ({ fetchFromGitHub - , fetchurl - , highlight - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-search-highlight-persist"; - ename = "evil-search-highlight-persist"; - version = "20170522.2034"; - src = fetchFromGitHub { - owner = "naclander"; - repo = "evil-search-highlight-persist"; - rev = "6e04a8c075f5fd62526d222447048faab8bfa187"; - sha256 = "1ni1bila3kjqrjcn1sm6g6h2cmf1chrh4d8nj4qfjvkb12fkw6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e91974ddb219c88229782b70ade7e14f20c0b5/recipes/evil-search-highlight-persist"; - sha256 = "08l8ymrp9vkpwprq9gp4562yvcnd4hfc3z7n4n5lz7h6ffv3zym3"; - name = "recipe"; - }; - packageRequires = [ highlight ]; - meta = { - homepage = "https://melpa.org/#/evil-search-highlight-persist"; - license = lib.licenses.free; - }; - }) {}; - evil-smartparens = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smartparens }: - melpaBuild { - pname = "evil-smartparens"; - ename = "evil-smartparens"; - version = "20171210.713"; - src = fetchFromGitHub { - owner = "expez"; - repo = "evil-smartparens"; - rev = "026d4a3cfce415a4dfae1457f871b385386e61d3"; - sha256 = "05habba44zls2d20kgzshrq2psagay16cnvcnkqgrbhvj1rxfmrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens"; - sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; - name = "recipe"; - }; - packageRequires = [ emacs evil smartparens ]; - meta = { - homepage = "https://melpa.org/#/evil-smartparens"; - license = lib.licenses.free; - }; - }) {}; - evil-snipe = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-snipe"; - ename = "evil-snipe"; - version = "20180731.1031"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "evil-snipe"; - rev = "8dd076cc56eb9b04494e4e303b86a959b048350b"; - sha256 = "05zlmkyl1gms7pk2izh67j7xk4mb5y94jpyx63lg59yc391p5p07"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6748f3febbe2f098761e967b4dc67791186d0aa7/recipes/evil-snipe"; - sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-snipe"; - license = lib.licenses.free; - }; - }) {}; - evil-space = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-space"; - ename = "evil-space"; - version = "20151208.428"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-space"; - rev = "a9c07284d308425deee134c9d88a2d538dd229e6"; - sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e5a4b9427038f90898ac0e237e71ba7152501f5/recipes/evil-space"; - sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-space"; - license = lib.licenses.free; - }; - }) {}; - evil-string-inflection = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-inflection }: - melpaBuild { - pname = "evil-string-inflection"; - ename = "evil-string-inflection"; - version = "20180313.1055"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "evil-string-inflection"; - rev = "5512db7e0e5fd28c881cc278add50ffae1f121f0"; - sha256 = "1114yacpb0a0lp7kz0lb1mb7s1adhk370i3kj78a911i72c9szi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0720a0f5b775fcee8d1cfa0defe80048e2dd0972/recipes/evil-string-inflection"; - sha256 = "0w9x49c0gmv4waspa9fvbhf2adm19cixkwx7a7la9v4qy7da6akh"; - name = "recipe"; - }; - packageRequires = [ emacs evil string-inflection ]; - meta = { - homepage = "https://melpa.org/#/evil-string-inflection"; - license = lib.licenses.free; - }; - }) {}; - evil-surround = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-surround"; - ename = "evil-surround"; - version = "20190402.2118"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-surround"; - rev = "68f7033322dcba3781dddb48465878e896a9f57b"; - sha256 = "17wxib52qwpfi809lq3c1zsxqprmkk9ghg0q8zc3r7gq2f5d8yy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9dc47a4c837c44429a74fd998fe468c00639f2/recipes/evil-surround"; - sha256 = "0aphv5zinb0lzdx22qbzcr7fn6jbpkdczar7py3df6mzxw5wvcm1"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-surround"; - license = lib.licenses.free; - }; - }) {}; - evil-swap-keys = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-swap-keys"; - ename = "evil-swap-keys"; - version = "20170726.1120"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-swap-keys"; - rev = "56bc201e265a6bd482a7c41a7c81d2238341ef3a"; - sha256 = "0n0hl0plaghz9rjssabxwfzm46kr6564hpfh6hn8lzla4rf1q5zs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2abff8e3d54ac13c4fe90692a56437844accca25/recipes/evil-swap-keys"; - sha256 = "12cx95mjm4ymggidvf41gh3a364z32h655jmhk417v0ga9jk9fv6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/evil-swap-keys"; - license = lib.licenses.free; - }; - }) {}; - evil-tabs = callPackage ({ elscreen - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-tabs"; - ename = "evil-tabs"; - version = "20160217.720"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "evil-tabs"; - rev = "53d3314a810017b6056ab6796aef671f5ea1c063"; - sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61eea3ae1c89163736b806aa8ca4f44d17daaba3/recipes/evil-tabs"; - sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62"; - name = "recipe"; - }; - packageRequires = [ elscreen evil ]; - meta = { - homepage = "https://melpa.org/#/evil-tabs"; - license = lib.licenses.free; - }; - }) {}; - evil-terminal-cursor-changer = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-terminal-cursor-changer"; - ename = "evil-terminal-cursor-changer"; - version = "20170401.142"; - src = fetchFromGitHub { - owner = "7696122"; - repo = "evil-terminal-cursor-changer"; - rev = "b49ca4393d2f3cc6014174950059b36a5cb22949"; - sha256 = "1zra2h0x20whshbc4sfyj6w73jv6ak435mr9n6r6s7brqqqgpa36"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-terminal-cursor-changer"; - sha256 = "16p9a1dybbqr8r717c5ssfd3p5392bqxxzqs4n0xc7v7g8v1m0cd"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-terminal-cursor-changer"; - license = lib.licenses.free; - }; - }) {}; - evil-test-helpers = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-test-helpers"; - ename = "evil-test-helpers"; - version = "20190104.226"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil"; - rev = "3766a521a60e6fb0073220199425de478de759ad"; - sha256 = "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87da8c50f9167ad9c3844b23becb6904f809611d/recipes/evil-test-helpers"; - sha256 = "0l4skyznzgr76z518q22lf90ymlsfcs02w8vqkg8az1nfl3ch7fs"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-test-helpers"; - license = lib.licenses.free; - }; - }) {}; - evil-text-object-python = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-text-object-python"; - ename = "evil-text-object-python"; - version = "20181126.524"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-text-object-python"; - rev = "9a064fe6475429145cbcc3b270fcc963b67adb15"; - sha256 = "074zpm6mmr1wfl6d5xdf8jk1fs4ccpbzf4ahhkwga9g71xiplszv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d0893b07bc4a057561a1c1a85b7520c50f31e12/recipes/evil-text-object-python"; - sha256 = "0jdzs1yn8nrxq890427yjrxdvnzj8jy7bs3jj4w4c0fik26ngqhm"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-text-object-python"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-anyblock = callPackage ({ cl-lib ? null - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-textobj-anyblock"; - ename = "evil-textobj-anyblock"; - version = "20170905.1207"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "evil-textobj-anyblock"; - rev = "ff00980f0634f95bf2ad9956b615a155ea8743be"; - sha256 = "0wn5lp7kh3ip1bmqi12c9ivpjj0x602h8d7ag39qw36smv4jqvnb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36b734960313d4cb484cebaac0f112781436631c/recipes/evil-textobj-anyblock"; - sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; - name = "recipe"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-anyblock"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-column = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "evil-textobj-column"; - ename = "evil-textobj-column"; - version = "20170905.1205"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "evil-textobj-column"; - rev = "835d7036d0bc9a6e44fc9b7c54ccf2a7c01428cd"; - sha256 = "0g9d62sgcpzvhbrdk4hf3phphfss74mjz6xv4wd9895rzjsziwkf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de7d6dc0d9c42a89be2959d015efa30960df2de7/recipes/evil-textobj-column"; - sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h"; - name = "recipe"; - }; - packageRequires = [ emacs evil names ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-column"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-entire = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-textobj-entire"; - ename = "evil-textobj-entire"; - version = "20150422.554"; - src = fetchFromGitHub { - owner = "supermomonga"; - repo = "evil-textobj-entire"; - rev = "5b3a98f3a69edc3a788f539f6ffef4a0ef5e853d"; - sha256 = "0m3krfmc9llpywr0lbya36b2jbnzx1pylvhj0p1ss5rh735m00jy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1da0063a17d53f30e041e08161ad8fbc9942270/recipes/evil-textobj-entire"; - sha256 = "0hkdnkv03b31330pnkijhhbyw00m7bxfvs3cgzfazsvvcsha4gmi"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-entire"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-line = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-textobj-line"; - ename = "evil-textobj-line"; - version = "20150729.822"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "evil-textobj-line"; - rev = "0209f9b84c7e1e1c42e346cdb8c0e36619471e5f"; - sha256 = "0ln72zfrzn1bnv40kyzjchmfv3dgd2wm596lxacd2kygcx4a4gky"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24bf766525ffdaded519ac9f78ae89d8ab5108ef/recipes/evil-textobj-line"; - sha256 = "158w524qzj0f03ihid2fisxyf1g7vwpv3ckfkzi7c2l549jnsdsa"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-line"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-syntax = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "evil-textobj-syntax"; - ename = "evil-textobj-syntax"; - version = "20181210.413"; - src = fetchFromGitHub { - owner = "laishulu"; - repo = "evil-textobj-syntax"; - rev = "2d9ba8c75c754b409aea7469f46a5cfa52a872f3"; - sha256 = "031p5i3274dazp7rz6m5y38shfgszm1clmkcf58qfqlvy978ammc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dba37e5a2ba5ef1f397b37d6845acdc4872e5f2/recipes/evil-textobj-syntax"; - sha256 = "0d0fg71xmbqhx91ljnkxmakcc0qn3341wjjmzax33qilz5syp3m9"; - name = "recipe"; - }; - packageRequires = [ emacs evil names ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-syntax"; - license = lib.licenses.free; - }; - }) {}; - evil-tutor = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-tutor"; - ename = "evil-tutor"; - version = "20150102.2250"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-tutor"; - rev = "79b47a9f444ddaa289c66e8995ee116941429c24"; - sha256 = "11hiaxiqc2f522y7rgfr6bjnmx4nrssq1q9g96w4rsb10627qvsf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b7bfffdc34e181893b8cf4d1cc091f6c3f91126/recipes/evil-tutor"; - sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-tutor"; - license = lib.licenses.free; - }; - }) {}; - evil-tutor-ja = callPackage ({ evil - , evil-tutor - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-tutor-ja"; - ename = "evil-tutor-ja"; - version = "20160916.1832"; - src = fetchFromGitHub { - owner = "kenjimyzk"; - repo = "evil-tutor-ja"; - rev = "06b9ad853a15ce6f2c53c2cf379b9ff358369f2d"; - sha256 = "1cazqdiri2b61fxnkhgksqxp0gb41wzcq8275n779rindkwaf2zk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c98605fd21b38aaa200c6a0ec4c18f8575b0d7a/recipes/evil-tutor-ja"; - sha256 = "1yd8aij9q1jdmb387f1zjiq5mf68jvbgbyp5b49hmag4hw5h7vm2"; - name = "recipe"; - }; - packageRequires = [ evil evil-tutor ]; - meta = { - homepage = "https://melpa.org/#/evil-tutor-ja"; - license = lib.licenses.free; - }; - }) {}; - evil-vimish-fold = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , vimish-fold }: - melpaBuild { - pname = "evil-vimish-fold"; - ename = "evil-vimish-fold"; - version = "20171030.451"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "evil-vimish-fold"; - rev = "4db872d12274fdddf7c6e9d01cf68cbad9cfcf15"; - sha256 = "05phnswbk2r7hdwawzkw6anhkfss9ig8sy469s4vsrqf7cky4gmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd51e24f88ebbbd3fddfc7c6f3b667d5104cf2b/recipes/evil-vimish-fold"; - sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6"; - name = "recipe"; - }; - packageRequires = [ emacs evil vimish-fold ]; - meta = { - homepage = "https://melpa.org/#/evil-vimish-fold"; - license = lib.licenses.free; - }; - }) {}; - evil-visual-mark-mode = callPackage ({ dash - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visual-mark-mode"; - ename = "evil-visual-mark-mode"; - version = "20190116.757"; - src = fetchFromGitHub { - owner = "roman"; - repo = "evil-visual-mark-mode"; - rev = "ac5997971972a9251f140b5542d82790ca4a43b4"; - sha256 = "1gh5614l4zf15109zc64pnnc5rp5ilah9mavgr2rbv2874k3vs4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/293cdd3387f26e4c8f21582d75a194963ac9cff7/recipes/evil-visual-mark-mode"; - sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; - name = "recipe"; - }; - packageRequires = [ dash evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visual-mark-mode"; - license = lib.licenses.free; - }; - }) {}; - evil-visual-replace = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visual-replace"; - ename = "evil-visual-replace"; - version = "20171015.2313"; - src = fetchFromGitHub { - owner = "troyp"; - repo = "evil-visual-replace"; - rev = "163fc827a1ffc106475da470c37fb26f4cc9b008"; - sha256 = "1gfyrq7xfzmzh3x8k5f08n027dlbwi0pkkxf9c39fkxp4jngibsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-visual-replace"; - sha256 = "1dq3bd9aqpk3jq1c9yzlpjyw6mi8l428l111vrmfg156k1w22v01"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visual-replace"; - license = lib.licenses.free; - }; - }) {}; - evil-visualstar = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visualstar"; - ename = "evil-visualstar"; - version = "20160222.1648"; - src = fetchFromGitHub { - owner = "bling"; - repo = "evil-visualstar"; - rev = "06c053d8f7381f91c53311b1234872ca96ced752"; - sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/578d33f3f8e68ef1b3ca3fb8af9b9ff77b649bd3/recipes/evil-visualstar"; - sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visualstar"; - license = lib.licenses.free; - }; - }) {}; - evm = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evm"; - ename = "evm"; - version = "20141007.456"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "evm.el"; - rev = "d0623b2355436a5fd9f7238b419782080c79196b"; - sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbcead697f745d197459f90ee05b172e35af2411/recipes/evm"; - sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; - name = "recipe"; - }; - packageRequires = [ dash f ]; - meta = { - homepage = "https://melpa.org/#/evm"; - license = lib.licenses.free; - }; - }) {}; - ewal = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ewal"; - ename = "ewal"; - version = "20190517.2233"; - src = fetchFromGitLab { - owner = "jjzmajic"; - repo = "ewal"; - rev = "31583d76bbc79bdf856b39510a175b52551b862f"; - sha256 = "0by4cihbrcvp09gan15xs57pvra411n19b8gilqqh1i5fx9c3zq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7f9833a1dda00e12bcf45c7194ebc38e26168b/recipes/ewal"; - sha256 = "19z370w1lk8l26knj6ry3znxcimvkbwd8pm4cg16r9ib5c78zxiq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ewal"; - license = lib.licenses.free; - }; - }) {}; - ewal-evil-cursors = callPackage ({ emacs - , ewal - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ewal-evil-cursors"; - ename = "ewal-evil-cursors"; - version = "20190604.220"; - src = fetchFromGitLab { - owner = "jjzmajic"; - repo = "ewal"; - rev = "81f0da12d0b2d2c27bce635590faa7d0492557ca"; - sha256 = "1d20hvl2zf9r1hjk1sryb8ax0mnl935idqcfwxr75wzm6kgzly30"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7f9833a1dda00e12bcf45c7194ebc38e26168b/recipes/ewal-evil-cursors"; - sha256 = "177f5m1a3cvgjkgqz61w8gz3q272sk2cafq2z29rk88gcfbm2iqc"; - name = "recipe"; - }; - packageRequires = [ emacs ewal ]; - meta = { - homepage = "https://melpa.org/#/ewal-evil-cursors"; - license = lib.licenses.free; - }; - }) {}; - ewal-spacemacs-themes = callPackage ({ emacs - , ewal - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , spacemacs-theme }: - melpaBuild { - pname = "ewal-spacemacs-themes"; - ename = "ewal-spacemacs-themes"; - version = "20190517.2249"; - src = fetchFromGitLab { - owner = "jjzmajic"; - repo = "ewal"; - rev = "0897907340d160212e295665eaf18866b9e2c113"; - sha256 = "0h8g7mklfz9hgcwa7r72qzyw4il7dk36q87nynyx1nq9wafj14qy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5aebe80668479c02a694fef153cea0e9f9ca7eb0/recipes/ewal-spacemacs-themes"; - sha256 = "0a0xpjlw3yfqfn2wcyqzpdisyr5pm1x35k8rpcjhwn5lhh7njlfc"; - name = "recipe"; - }; - packageRequires = [ emacs ewal spacemacs-theme ]; - meta = { - homepage = "https://melpa.org/#/ewal-spacemacs-themes"; - license = lib.licenses.free; - }; - }) {}; - ewmctrl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ewmctrl"; - ename = "ewmctrl"; - version = "20170921.1917"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "ewmctrl"; - rev = "3d0217c4d6cdb5c308b6cb4293574f470d4faacf"; - sha256 = "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2a7679f0961b171bf23080e628ae80f50c446e4/recipes/ewmctrl"; - sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ewmctrl"; - license = lib.licenses.free; - }; - }) {}; - eww-lnum = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eww-lnum"; - ename = "eww-lnum"; - version = "20150102.712"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "eww-lnum"; - rev = "4b0ecec769919ecb05ca4fb15ec51911ba589929"; - sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eww-lnum"; - sha256 = "1hhc6q8zlj335v27j4dq6ms7frqpivfabs9w3vkaly5kjr60fw7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eww-lnum"; - license = lib.licenses.free; - }; - }) {}; - exato = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exato"; - ename = "exato"; - version = "20180305.242"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "exato"; - rev = "39c08f56483243c28a39886a7218039a138e5f63"; - sha256 = "1q0jjaw5k9bql7bk5idin724vbcgx0iwn2dm4mg1c51cczqsd2rg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/939efbcb9b40a2df5ef14e653fb242a8e37c72f9/recipes/exato"; - sha256 = "1h2dd3yhv1n0sznznw8ncx98g53hgi1rg1zkd0nmldih2rd5qisn"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/exato"; - license = lib.licenses.free; - }; - }) {}; - exec-path-from-shell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exec-path-from-shell"; - ename = "exec-path-from-shell"; - version = "20190426.1527"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "exec-path-from-shell"; - rev = "3cfedb8791397ed50ee66bc0a7cbee5b9d78245c"; - sha256 = "1mrwsc12j44q9cv9sjz3hhr7pd4z4vj30ha320zlh7pcacs973js"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/exec-path-from-shell"; - sha256 = "014bfcs7znds4if1njyq4s5zrfnr6b3wj6722b4l5r58gh9mlrr5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/exec-path-from-shell"; - license = lib.licenses.free; - }; - }) {}; - exiftool = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exiftool"; - ename = "exiftool"; - version = "20190520.406"; - src = fetchgit { - url = "https://git.systemreboot.net/exiftool.el/"; - rev = "e043df1bcef40cd5934a74c210e1e35d5eb0e5a6"; - sha256 = "0am4g25mlmm1iqcm2kxzskrzhrm1f09cdwcqmvk4lidid5xcb6xc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4835a76909d020781021e747fbc341111a94dbfa/recipes/exiftool"; - sha256 = "1zvcps64yvz8lsjhi1j0808983fv2s7kx67yjr8ps454mcl8bpab"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/exiftool"; - license = lib.licenses.free; - }; - }) {}; - exotica-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exotica-theme"; - ename = "exotica-theme"; - version = "20180212.1529"; - src = fetchFromGitHub { - owner = "jbharat"; - repo = "exotica-theme"; - rev = "ff3ef4f6fa38c93b99becad977c7810c990a4d2f"; - sha256 = "1kp6q55g3dcya4y79x877vqwxa4z2rkkvhs49pkwr3wljf4af2pd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9182f92dd62e2f1775a76699a6c8f9c3e71e9030/recipes/exotica-theme"; - sha256 = "1fzf1zpllkddkq02hvabbi2bh6rnanlyinb6fjwsyh39wvzhsfhs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/exotica-theme"; - license = lib.licenses.free; - }; - }) {}; - expand-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "expand-line"; - ename = "expand-line"; - version = "20151005.1907"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "expand-line"; - rev = "75a5d0241f35dd0748ab8ecb4ff16891535be372"; - sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/expand-line"; - sha256 = "0bzz7zrpfdxhjxs7nzlmzjb9jfajhxkivzr5sm87mg3zx8b6gjyi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/expand-line"; - license = lib.licenses.free; - }; - }) {}; - expand-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "expand-region"; - ename = "expand-region"; - version = "20190415.2238"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "expand-region.el"; - rev = "1c31447730443d98f90f65dfcb752f347d46ad1b"; - sha256 = "07jm8hm3zsm556l10gw83dw0mpm2d9d8x5blqbdmmp5zsf0y5kqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region"; - sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/expand-region"; - license = lib.licenses.free; - }; - }) {}; - express = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "express"; - ename = "express"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "express"; - rev = "6c301e8a4b6b58a5fe59ba607865238e38cee8fd"; - sha256 = "1nhqaxagg3p26grjzg8089bmwpx2a3bbq1abw40wbqivybl6mgd5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a97f5f81af13c49f5bea31455d7da0bf2c12e4f/recipes/express"; - sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; - name = "recipe"; - }; - packageRequires = [ string-utils ]; - meta = { - homepage = "https://melpa.org/#/express"; - license = lib.licenses.free; - }; - }) {}; - exsqlaim-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "exsqlaim-mode"; - ename = "exsqlaim-mode"; - version = "20170607.303"; - src = fetchFromGitHub { - owner = "ahmadnazir"; - repo = "exsqlaim-mode"; - rev = "a2e0a62ec8b87193d8eaa695774bfd689324b06c"; - sha256 = "1gj1q2h1ja30jizkjql12cxlppj07ykr4wxqca9msy043zdhqnkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f660d7629bc27144c99ebcba45f1b06b14c5745/recipes/exsqlaim-mode"; - sha256 = "0ssn48wcn3x066nsl8y78y57ndasqv5x6ifxbifdxl3f5vjhyvg7"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/exsqlaim-mode"; - license = lib.licenses.free; - }; - }) {}; - extempore-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "extempore-mode"; - ename = "extempore-mode"; - version = "20180104.2221"; - src = fetchFromGitHub { - owner = "extemporelang"; - repo = "extempore-emacs-mode"; - rev = "ae5f40d4b0883a4519e460cd7720e5fcc3a68fa5"; - sha256 = "1f888h7xv6zz6kq38ak1vpwjrjr2sqgwpfxwb9x0ldf3kkx4wf1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bd3e57171f5283604e9375613a7a94416ee99a7/recipes/extempore-mode"; - sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/extempore-mode"; - license = lib.licenses.free; - }; - }) {}; - extend-dnd = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "extend-dnd"; - ename = "extend-dnd"; - version = "20151122.1050"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "extend-dnd"; - rev = "80c966c93b82c9bb5c6225a432557c39144fc602"; - sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2d866ca12cb997b7fad878808c0966f3413b73d/recipes/extend-dnd"; - sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/extend-dnd"; - license = lib.licenses.free; - }; - }) {}; - extmap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "extmap"; - ename = "extmap"; - version = "20181028.945"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "extmap"; - rev = "1139b57d8f4276fe56b8416fdaf4745f2cdfe7c3"; - sha256 = "0jgyscjfparnby0whrmbgvsab2a7qkaqhysmh3s3jh635fndm253"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/extmap"; - sha256 = "0c12gfd3480y4fc22ik02n7h85k6s70i5jv5i872h0yi68cgd01j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/extmap"; - license = lib.licenses.free; - }; - }) {}; - exunit = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "exunit"; - ename = "exunit"; - version = "20190510.2314"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "exunit.el"; - rev = "7aa008cb54e7935183a19d6b81d218de7ec38ca4"; - sha256 = "0zp0sdnrb5mm6k1z6zqs7s042f6n24sg1y0wx6bw35za6r5f36cr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94e4fd4cf58b280d08d22aff4dd9c47201a29e72/recipes/exunit"; - sha256 = "1wyxxy1hd50p17widf31sysp28adr09n8ksyd3hn6pnvyn2m0k81"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/exunit"; - license = lib.licenses.free; - }; - }) {}; - exwm-edit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exwm-edit"; - ename = "exwm-edit"; - version = "20180905.43"; - src = fetchFromGitHub { - owner = "agzam"; - repo = "exwm-edit"; - rev = "961c0f3ea45766b888c73d7353da13d329538034"; - sha256 = "087pk5ckx753qrn6xpka9khhlp7iqlz76w7861x90av2f5cgy6fw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f247915e02e59ebd6a2a219e55870e034d41c938/recipes/exwm-edit"; - sha256 = "0bydkznywma0x293m105amppx4qx1iyjpqdfq6np73176xfy6kc5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/exwm-edit"; - license = lib.licenses.free; - }; - }) {}; - exwm-firefox-core = callPackage ({ emacs - , exwm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exwm-firefox-core"; - ename = "exwm-firefox-core"; - version = "20190402.1425"; - src = fetchFromGitHub { - owner = "walseb"; - repo = "exwm-firefox-core"; - rev = "71539f3fce35095992c4975467e89a7833a2319d"; - sha256 = "0psb180wcn2yg9r75nbpr54npaiqshpjy4hr03jpf2shzr9d9zlq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/745a2b98c48b00cd794dfb97be4072813ee67ada/recipes/exwm-firefox-core"; - sha256 = "1d6j8nrlb7lsyki796vpfidj8y2cz5lnqf8zzfqsbqf92kj5v9zd"; - name = "recipe"; - }; - packageRequires = [ emacs exwm ]; - meta = { - homepage = "https://melpa.org/#/exwm-firefox-core"; - license = lib.licenses.free; - }; - }) {}; - exwm-firefox-evil = callPackage ({ emacs - , evil - , exwm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exwm-firefox-evil"; - ename = "exwm-firefox-evil"; - version = "20190403.1145"; - src = fetchFromGitHub { - owner = "walseb"; - repo = "exwm-firefox-evil"; - rev = "e343ac57c945946c238f2f24fdf810e691c023c4"; - sha256 = "0037fiv0nsid1bh492vmpcz4vi116hbp8c169k8yjalkb9y8sjn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09fa63c7bd639c0b7dda540504c74cdbbe4f9875/recipes/exwm-firefox-evil"; - sha256 = "0wg3jydgj2fi5gxv3kwm1dvpxvc3ypn28kxlzfp801xrrfc241ml"; - name = "recipe"; - }; - packageRequires = [ emacs evil exwm ]; - meta = { - homepage = "https://melpa.org/#/exwm-firefox-evil"; - license = lib.licenses.free; - }; - }) {}; - exwm-surf = callPackage ({ emacs - , exwm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exwm-surf"; - ename = "exwm-surf"; - version = "20171204.340"; - src = fetchFromGitHub { - owner = "ecraven"; - repo = "exwm-surf"; - rev = "6c17e2c1597fe4b7b454a1dac23b9127ac951e94"; - sha256 = "0rb921fq3pyzv0w1s6n0zx4j7cvv68mb50hfa8nqnppz5ii1k0lb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4fc27fae2b58c7af87dadba9217cc05f8ab4890c/recipes/exwm-surf"; - sha256 = "066qbn1w63irh9b03qs0fv77x71cind22kdj6wygaznrpgwr0kny"; - name = "recipe"; - }; - packageRequires = [ emacs exwm ]; - meta = { - homepage = "https://melpa.org/#/exwm-surf"; - license = lib.licenses.free; - }; - }) {}; - exwm-x = callPackage ({ bind-key - , cl-lib ? null - , counsel - , exwm - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , swiper - , switch-window }: - melpaBuild { - pname = "exwm-x"; - ename = "exwm-x"; - version = "20190224.352"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "exwm-x"; - rev = "02ec31cd8996b1b3fe305405fef7334c4d08e72b"; - sha256 = "18cgfnh7bp152gi4zv2skrkjbxs0v2zn6jk35rc48y8nfivps2f4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0e6e23bcffdcd1e17c70599c563609050e5de40/recipes/exwm-x"; - sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3"; - name = "recipe"; - }; - packageRequires = [ - bind-key - cl-lib - counsel - exwm - ivy - swiper - switch-window - ]; - meta = { - homepage = "https://melpa.org/#/exwm-x"; - license = lib.licenses.free; - }; - }) {}; - eyebrowse = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eyebrowse"; - ename = "eyebrowse"; - version = "20190322.233"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "eyebrowse"; - rev = "52e160997a1c4b1d463e8b9cc2ba3e27408c2a89"; - sha256 = "0y2n08ykfc3hga5m969syysa2r4h3d2i1xfi0jjhpw3h7qrisbw8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse"; - sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eyebrowse"; - license = lib.licenses.free; - }; - }) {}; - eyuml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "eyuml"; - ename = "eyuml"; - version = "20141028.1527"; - src = fetchFromGitHub { - owner = "antham"; - repo = "eyuml"; - rev = "2f259c201c6cc63ee608f75cd85c1ae27f9d2532"; - sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b09a8d723e357da67441e65047759ccfa9cb7ef6/recipes/eyuml"; - sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx"; - name = "recipe"; - }; - packageRequires = [ request s ]; - meta = { - homepage = "https://melpa.org/#/eyuml"; - license = lib.licenses.free; - }; - }) {}; - ez-query-replace = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ez-query-replace"; - ename = "ez-query-replace"; - version = "20170814.621"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "ez-query-replace.el"; - rev = "f5dbd2d3e5e62e6b7e7cc1a98fc4d0cd411e5afa"; - sha256 = "14mikpxrsmjwdpya45cf47v2gjwxmql10xjk907x27iqqxmfif74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c40808c7687ace84e4c59bf8c25332c94b6fdd76/recipes/ez-query-replace"; - sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/ez-query-replace"; - license = lib.licenses.free; - }; - }) {}; - eziam-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eziam-theme"; - ename = "eziam-theme"; - version = "20190425.351"; - src = fetchFromGitHub { - owner = "thblt"; - repo = "eziam-theme-emacs"; - rev = "4402f58f6d619571c0960b2be5ce5b61962c1a67"; - sha256 = "0a7jk5k8fhj9klsphyw22khrwb5ns3w85rbzyrdrshhcaqcr88j3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0411583bd4fdbe425eb07de98851136fa1eeb0/recipes/eziam-theme"; - sha256 = "0iz3r4r54ai8y4qhnix291ra7qfmk8dbr06f52pgmz3gzin1cqpb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eziam-theme"; - license = lib.licenses.free; - }; - }) {}; - f = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "f"; - ename = "f"; - version = "20190109.106"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "f.el"; - rev = "8191672377816a1975414cc1f116fd3b94b30bd0"; - sha256 = "1b9wq6r6v44y11ldcj8czmah4ciibkm2261q4z9awd7v7iqlzf07"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/f"; - sha256 = "18qax8i24gpccif4xcxccclpwl00plxjf3zbq9dry37b1r4mj57s"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/f"; - license = lib.licenses.free; - }; - }) {}; - f3 = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "f3"; - ename = "f3"; - version = "20180130.358"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "f3"; - rev = "000009ce4adf7a57eae80512f29c4ec2a1391ce5"; - sha256 = "0q3ylw0i1bg7pzsv4gj72jcfjjfh57vsb3fnfnhhh5i5vladiqsf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b40de62a82d6895a37ff795d56f7d0f783461e6/recipes/f3"; - sha256 = "099wibgp9k6sgglaqigic5ay6qg7aqijnis5crwjl7b81ddqp610"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/f3"; - license = lib.licenses.free; - }; - }) {}; - fabric = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fabric"; - ename = "fabric"; - version = "20171115.2256"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "fabric.el"; - rev = "df79be341d0b34ed23850f9894136092fa5fea8c"; - sha256 = "1mnz81k1jz2sa3zj68ihzgq66l9fcxvzb67ad62p8bvi2aksxx7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83939d2a4d5874244a4916eee9ae6b327af18b5d/recipes/fabric"; - sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fabric"; - license = lib.licenses.free; - }; - }) {}; - face-explorer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "face-explorer"; - ename = "face-explorer"; - version = "20190517.1157"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "face-explorer"; - rev = "ad1300e13e5643e4c246cabfd91f833d39113052"; - sha256 = "0nq36h6kwyi2sv1fklm42spfkllm6jlz0alh2qlpgy4ixq5sp2pv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2370fdf6421dc518337e04bd2453a5f74e2df2b2/recipes/face-explorer"; - sha256 = "1jfidkkizgwhkkrgvrmq5vrx5ir4zjw4zzc2alw9gkjn1ddq22q7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/face-explorer"; - license = lib.licenses.free; - }; - }) {}; - faceup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faceup"; - ename = "faceup"; - version = "20170925.1246"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "faceup"; - rev = "6c92dad56a133e14e7b27831e1bcf9b3a71ff154"; - sha256 = "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a10bf2928b93c3908e89ca8ad9649bb468ebca05/recipes/faceup"; - sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/faceup"; - license = lib.licenses.free; - }; - }) {}; - factlog = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "factlog"; - ename = "factlog"; - version = "20130209.1740"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "factlog"; - rev = "38f78132ae311faffba98ed5dd18d661af68678e"; - sha256 = "06ycj1c8jadkmfknsvk99s6jq3w29psl5z4m9159i6zlzaqm03qm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9075a42edee1ac7de0812d2eefcba5681859eb6e/recipes/factlog"; - sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; - name = "recipe"; - }; - packageRequires = [ deferred ]; - meta = { - homepage = "https://melpa.org/#/factlog"; - license = lib.licenses.free; - }; - }) {}; - faff-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faff-theme"; - ename = "faff-theme"; - version = "20190506.813"; - src = fetchFromGitHub { - owner = "WJCFerguson"; - repo = "emacs-faff-theme"; - rev = "de12f6a11711955fbbcdf7c042459aa2206f8deb"; - sha256 = "193d6s759kmkwfmwc9367grkgf46gm9ppczppcrk2h3alzr1hba6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme"; - sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/faff-theme"; - license = lib.licenses.free; - }; - }) {}; - fakespace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fakespace"; - ename = "fakespace"; - version = "20120817.1706"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elisp-fakespace"; - rev = "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a"; - sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/778dbe1fd1d2ecebb499ad66bc950e586f231c52/recipes/fakespace"; - sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fakespace"; - license = lib.licenses.free; - }; - }) {}; - fakir = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , noflet }: - melpaBuild { - pname = "fakir"; - ename = "fakir"; - version = "20140729.952"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-fakir"; - rev = "1fca406ad7de80fece6319ff75d4230b648534b0"; - sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d0a8abd5fd77a14b957f53b5bc8474403cc1e18f/recipes/fakir"; - sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25"; - name = "recipe"; - }; - packageRequires = [ dash kv noflet ]; - meta = { - homepage = "https://melpa.org/#/fakir"; - license = lib.licenses.free; - }; - }) {}; - fancy-battery = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fancy-battery"; - ename = "fancy-battery"; - version = "20150101.404"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "fancy-battery.el"; - rev = "bcc2d7960ba207b5b4db96fe40f7d72670fdbb68"; - sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eae3af4145c534992d1c1ee5bb6420651c7c5d82/recipes/fancy-battery"; - sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fancy-battery"; - license = lib.licenses.free; - }; - }) {}; - fancy-narrow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fancy-narrow"; - ename = "fancy-narrow"; - version = "20171030.1716"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "fancy-narrow"; - rev = "9f4a587f6a5a387271fb665e13f59d41fd42504c"; - sha256 = "0dl0fc3i8g193adpkr4fb2k151lw9r6gd8p27q9xgmm9brf9jf17"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/fancy-narrow"; - sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fancy-narrow"; - license = lib.licenses.free; - }; - }) {}; - farmhouse-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "farmhouse-theme"; - ename = "farmhouse-theme"; - version = "20160713.1544"; - src = fetchFromGitHub { - owner = "mattly"; - repo = "emacs-farmhouse-theme"; - rev = "7ddc1ff13b4a3d5466bd0d33ecb86100352e83a7"; - sha256 = "09k6agh205kr2lif354m38l3967b0jajm14rgpl7l1vlajh8wzfd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b0d427db8ab66d2fe323366b0837595b3b59afa/recipes/farmhouse-theme"; - sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/farmhouse-theme"; - license = lib.licenses.free; - }; - }) {}; - fasd = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fasd"; - ename = "fasd"; - version = "20180605.2205"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/emacs-fasd.git"; - rev = "020c6a4b5fd1498a84ae142d2e32c7ff678fb029"; - sha256 = "142zq0zz38j3akgc1gipqhgs05krlkig1i97pgzmi4jcqdgm3lx9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/fasd"; - sha256 = "0ssb1bbw3cwd4zdy08a0fymwjwgdnx0kil5x3x1b7k8kan942436"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fasd"; - license = lib.licenses.free; - }; - }) {}; - fastdef = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , w3m }: - melpaBuild { - pname = "fastdef"; - ename = "fastdef"; - version = "20160713.629"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "fastdef"; - rev = "0696f41dc150d35ce31fe8d2ea74f4173818bb55"; - sha256 = "1p5vmbx7zdzxnyjzcp2vxscd3dwf7xk82wk9dfiv99svwqv2ki3w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6effb2fbccc71e8a44c53138e3c21f10dc55fbc/recipes/fastdef"; - sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj"; - name = "recipe"; - }; - packageRequires = [ ivy w3m ]; - meta = { - homepage = "https://melpa.org/#/fastdef"; - license = lib.licenses.free; - }; - }) {}; - fastnav = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fastnav"; - ename = "fastnav"; - version = "20120211.657"; - src = fetchFromGitHub { - owner = "gleber"; - repo = "fastnav.el"; - rev = "1019ba2b61d1a070204099b23da347278a61bc89"; - sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2a7dce6617bf4ed250dba150e6787bf48891c64/recipes/fastnav"; - sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fastnav"; - license = lib.licenses.free; - }; - }) {}; - faust-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faust-mode"; - ename = "faust-mode"; - version = "20180205.126"; - src = fetchFromGitHub { - owner = "rukano"; - repo = "emacs-faust-mode"; - rev = "7c31b22bdbfd2f8c16ec117d2975d56dd61ac15c"; - sha256 = "0a3p69ay88da13cz2cqx00r3qs2swnn7vkcvchcqyrdybfjs7y4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b362e7daeabd07c726ad9770d7d4941dfffd5b19/recipes/faust-mode"; - sha256 = "0l8cbf5i6lv6i5vyqp6ngfmrm2y6z2070b8m10w4376kbbnr266z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/faust-mode"; - license = lib.licenses.free; - }; - }) {}; - faustine = callPackage ({ emacs - , faust-mode - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faustine"; - ename = "faustine"; - version = "20171122.402"; - src = fetchgit { - url = "https://bitbucket.org/yphil/faustine"; - rev = "07a38963111518f86123802f9d477be0d4689a3f"; - sha256 = "0dj35hwkm5v8758c4ssl873vkvplba5apjsh7l23nsmnzdji99zg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/faustine"; - sha256 = "1blmz993xrwkyr7snj7rm07s07imgpdlfqi6wxkm4ns6iwa2q60s"; - name = "recipe"; - }; - packageRequires = [ emacs faust-mode ]; - meta = { - homepage = "https://melpa.org/#/faustine"; - license = lib.licenses.free; - }; - }) {}; - fcitx = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fcitx"; - ename = "fcitx"; - version = "20170913.1900"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "fcitx.el"; - rev = "095332fbeb994c908c533fe2ad068c0728211c3d"; - sha256 = "01sm50rqajylah2hx6n5ig0xmrrhxbamzs4bg97qzxzr4nlnjcaz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx"; - sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fcitx"; - license = lib.licenses.free; - }; - }) {}; - fcopy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fcopy"; - ename = "fcopy"; - version = "20150304.603"; - src = fetchFromGitHub { - owner = "ataka"; - repo = "fcopy"; - rev = "e355f6ec889d8ecbdb096019c2dc660b1cec4941"; - sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9afd35b7c7075bef9ed878b7122ff9783fdd9fd/recipes/fcopy"; - sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fcopy"; - license = lib.licenses.free; - }; - }) {}; - fd-dired = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fd-dired"; - ename = "fd-dired"; - version = "20180731.349"; - src = fetchFromGitHub { - owner = "yqrashawn"; - repo = "fd-dired"; - rev = "a92511929ce0d64d2bc05823920e12f106c4dfc7"; - sha256 = "1l3mc39kb3w9pbc84998rz3g1n0ygr8pg9b9z5cgg638jh2cvzqm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1217e0d4f42df68cc22de9b4f27a36c0377509e3/recipes/fd-dired"; - sha256 = "0g8zvg6b9hcxkmqn254y9khjm7jz2lz4mh7dhsxfcy64inaj0481"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fd-dired"; - license = lib.licenses.free; - }; - }) {}; - feature-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "feature-mode"; - ename = "feature-mode"; - version = "20170907.748"; - src = fetchFromGitHub { - owner = "michaelklishin"; - repo = "cucumber.el"; - rev = "722b352c4f0b800a9356dd369c79612782b3b847"; - sha256 = "0myaddivhvl8x3n2z2vjc6mc2jn1jja67mzwx1jp9gb9p958irk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a70991695f9ff305f12cfa45e0a597f4a782ba3/recipes/feature-mode"; - sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/feature-mode"; - license = lib.licenses.free; - }; - }) {}; - feebleline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "feebleline"; - ename = "feebleline"; - version = "20190402.825"; - src = fetchFromGitHub { - owner = "tautologyclub"; - repo = "feebleline"; - rev = "d1df599254f4c250720ae98dd69dada89535a295"; - sha256 = "10h59zd9hq81dyjw558k417kaqs5m9bhmx8mndcshh4cn1xfp5j3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/782295d8c530878bd0e20cde7e7f7f8f640953dd/recipes/feebleline"; - sha256 = "0c604ahhv9c89r3hj7091zhhfpbykh4c23sn6ymqw4pp0dq4pgkj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/feebleline"; - license = lib.licenses.free; - }; - }) {}; - fennel-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fennel-mode"; - ename = "fennel-mode"; - version = "20190401.1108"; - src = fetchFromGitLab { - owner = "technomancy"; - repo = "fennel-mode"; - rev = "17678a7fc073c64cb0ec78f913154df377a42575"; - sha256 = "0n2vz6vsi380gcgg3ihwjs3z2rc1hb8yh4xlzjwz01dhahj08p1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cda0732050a17b2dc70b80afd6fc6bb9cf8bb60f/recipes/fennel-mode"; - sha256 = "0lg69rjvbg7zl4jxc88m12r4rgv2mg2xdyz591mdmgvxwr2hfrv9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fennel-mode"; - license = lib.licenses.free; - }; - }) {}; - fetch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fetch"; - ename = "fetch"; - version = "20131130.2330"; - src = fetchFromGitHub { - owner = "crshd"; - repo = "fetch.el"; - rev = "3f2793afcbbc32f320e572453166f9354ecc6d06"; - sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e808952551936dd8eaf0158d6ca929d10712dc5/recipes/fetch"; - sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fetch"; - license = lib.licenses.free; - }; - }) {}; - fic-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fic-mode"; - ename = "fic-mode"; - version = "20180603.1335"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "fic-mode"; - rev = "a05fc36ed54ba0c6dc22ac216a6a72cf191ca13d"; - sha256 = "074dfwdir2dx5cpbjk1ac8d3hkjkrylivy7agir5mnmzjm3bs9gw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/fic-mode"; - sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fic-mode"; - license = lib.licenses.free; - }; - }) {}; - fifo-class = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fifo-class"; - ename = "fifo-class"; - version = "20160424.2258"; - src = fetchFromGitHub { - owner = "mola-T"; - repo = "fifo-class"; - rev = "8fe4cf690727f4ac7b67f29c55f845df023c3f21"; - sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b4fa87f7d5592bc264805760d191df2a3539cf1/recipes/fifo-class"; - sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fifo-class"; - license = lib.licenses.free; - }; - }) {}; - figlet = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "figlet"; - ename = "figlet"; - version = "20160218.1437"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/figlet"; - rev = "70ca269d706e"; - sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/figlet"; - sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/figlet"; - license = lib.licenses.free; - }; - }) {}; - filelock = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "filelock"; - ename = "filelock"; - version = "20180524.1515"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "emacs-filelock"; - rev = "17a5ca6e0dee14d2e7d92c84be91143bca9d9663"; - sha256 = "1smiad56626bc7q6vgj5gc710hnx814d4xlpxdlfzqlmj08y9dyk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bda76dfbf37eaa17bebb4b8c34006704862db433/recipes/filelock"; - sha256 = "13ra697y0fhkjwsaqqlphcyfqkaiix5z59qw4q6rgix4k8ypj8db"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/filelock"; - license = lib.licenses.free; - }; - }) {}; - fill-column-indicator = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fill-column-indicator"; - ename = "fill-column-indicator"; - version = "20171209.1124"; - src = fetchFromGitHub { - owner = "alpaker"; - repo = "Fill-Column-Indicator"; - rev = "d2536b1c48f78679e15a2b50cd5d8c0ffde4b155"; - sha256 = "0f8h32n8mnrwijz3lrslbx521f0fkhn24cwd16r8hcjk976l5kbp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ea0c00a7784621fcca0391a9c8ea85e9dd43852/recipes/fill-column-indicator"; - sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fill-column-indicator"; - license = lib.licenses.free; - }; - }) {}; - fill-function-arguments = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fill-function-arguments"; - ename = "fill-function-arguments"; - version = "20180427.1002"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "fill-function-arguments"; - rev = "fcfb2a671adaf04110586aee0c499b1f0056a8e6"; - sha256 = "07d1pi9scqcpqd9s2rifpkh5iyfmisd8rzddbrg99aj1wicg4j33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b78eab67517b19516e5d265018afcbff0acfa9ec/recipes/fill-function-arguments"; - sha256 = "1gigzzz2csl3a55jmjx391a5k3ymixnwpblsn0pfgkkk4p3674q0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fill-function-arguments"; - license = lib.licenses.free; - }; - }) {}; - fillcode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fillcode"; - ename = "fillcode"; - version = "20171029.925"; - src = fetchFromGitHub { - owner = "snarfed"; - repo = "fillcode"; - rev = "d0a9e20f5fcc24a786d09ea19bfb9237681ba823"; - sha256 = "1mf2gfcjaqbw523vkfbzs2nl1y9bn9gbgmbvn2phbyj78gzq18za"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85eb403503aa83799a6072bfe21bf66c8177ca73/recipes/fillcode"; - sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fillcode"; - license = lib.licenses.free; - }; - }) {}; - finalize = callPackage ({ cl-generic - , cl-lib ? null - , eieio ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "finalize"; - ename = "finalize"; - version = "20170418.1245"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elisp-finalize"; - rev = "0f7d47c4d50f1c76fc3b43bfc2d4886dd3e8ca27"; - sha256 = "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b55869b5183644de02687d2e56f9b68854ccda3/recipes/finalize"; - sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; - name = "recipe"; - }; - packageRequires = [ cl-generic cl-lib eieio emacs ]; - meta = { - homepage = "https://melpa.org/#/finalize"; - license = lib.licenses.free; - }; - }) {}; - find-by-pinyin-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "find-by-pinyin-dired"; - ename = "find-by-pinyin-dired"; - version = "20180209.1818"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "find-by-pinyin-dired"; - rev = "3b4781148dddc84a701ad76c0934ed991ecd59d5"; - sha256 = "03fw1si115padxss6zb9fr0dsyq1bxlhxikgh4i5swp4jd4331k5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0aa68b4603bf4071d7d12b40de0138ecab1989d7/recipes/find-by-pinyin-dired"; - sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; - name = "recipe"; - }; - packageRequires = [ pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/find-by-pinyin-dired"; - license = lib.licenses.free; - }; - }) {}; - find-file-in-project = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "find-file-in-project"; - ename = "find-file-in-project"; - version = "20190602.342"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "find-file-in-project"; - rev = "df9a69852c183bbcd5195b7802b4e527e97f4895"; - sha256 = "1hlg5lkn1a81q9gqpv4894lyg45y9mc1ajiy1hlyvwxc9czffkmx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project"; - sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/find-file-in-project"; - license = lib.licenses.free; - }; - }) {}; - find-file-in-repository = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "find-file-in-repository"; - ename = "find-file-in-repository"; - version = "20190404.128"; - src = fetchFromGitHub { - owner = "h"; - repo = "find-file-in-repository"; - rev = "b44d78682082270dc6b59cdc911333d0d3e7edaa"; - sha256 = "1icsxp2b3grvdbv6bh9hpxz1hrqa7vvjzajjwi2knvjbq41d99bn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/find-file-in-repository"; - sha256 = "02rihpfpckppnf5a2zgd5s3dspdhq4mr6qchlrzg2fd4byjxra9s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/find-file-in-repository"; - license = lib.licenses.free; - }; - }) {}; - find-temp-file = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "find-temp-file"; - ename = "find-temp-file"; - version = "20170107.539"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "find-temp-file"; - rev = "513005d19d72d71f34481ee00158dd57bd93206f"; - sha256 = "129jnn16vxmp6r9gx8k4rvv6spag5q0if52b5fhsybicnsl35mrz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c01efd0cb3e3bab4661a358c084b645dc7e31736/recipes/find-temp-file"; - sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/find-temp-file"; - license = lib.licenses.free; - }; - }) {}; - find-things-fast = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "find-things-fast"; - ename = "find-things-fast"; - version = "20150519.1526"; - src = fetchFromGitHub { - owner = "eglaysher"; - repo = "find-things-fast"; - rev = "281dcb5a2e2db1013246dcac5111808352a8ea95"; - sha256 = "0h523dgjicmn4rpbk82ryq3mq5vfl5b50wvn0p2mh74g35mc0zwl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b63336dd150e791f3139d675af735b60054eb2b/recipes/find-things-fast"; - sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/find-things-fast"; - license = lib.licenses.free; - }; - }) {}; - findr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "findr"; - ename = "findr"; - version = "20130127.1232"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "findr"; - rev = "1ddbc0464bb05dcda392b62666ad17239a2152d3"; - sha256 = "0wx4hd4agrfvk0igyash658cbf7v3bv01rlspllsvzr59fl3faqq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/findr"; - sha256 = "0pw72bdpmc0ymlgjmwwrslhynij5a5b9sc3rx6vyprpv1ad4ac2c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/findr"; - license = lib.licenses.free; - }; - }) {}; - fingers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fingers"; - ename = "fingers"; - version = "20160817.129"; - src = fetchFromGitHub { - owner = "fgeller"; - repo = "fingers.el"; - rev = "7de351448a6f5ea7aa7a25db6c90d5138f87eb16"; - sha256 = "1hwlnvry3pl3h2kz0d03d9225gn2dk4x3nhalk8854fr2jflrpqy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2afd4983d1a5820daafb31e96d54b214a79849f/recipes/fingers"; - sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fingers"; - license = lib.licenses.free; - }; - }) {}; - fiplr = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , grizzl - , lib - , melpaBuild }: - melpaBuild { - pname = "fiplr"; - ename = "fiplr"; - version = "20140723.2345"; - src = fetchFromGitHub { - owner = "grizzl"; - repo = "fiplr"; - rev = "bb6b90ba3c558988c195048c4c40140b2ee17530"; - sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/fiplr"; - sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; - name = "recipe"; - }; - packageRequires = [ cl-lib grizzl ]; - meta = { - homepage = "https://melpa.org/#/fiplr"; - license = lib.licenses.free; - }; - }) {}; - firecode-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "firecode-theme"; - ename = "firecode-theme"; - version = "20170808.611"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-firecode-theme"; - rev = "8b7b03ecdd41e70dab145b98906017e1392eaef4"; - sha256 = "1vrpnv7555mbsksflgdkg7hc65fjcyzvzv2261y043rlh2qrn0sy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/firecode-theme"; - sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/firecode-theme"; - license = lib.licenses.free; - }; - }) {}; - firefox-controller = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , moz - , popwin }: - melpaBuild { - pname = "firefox-controller"; - ename = "firefox-controller"; - version = "20160320.1147"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "emacs-firefox-controller"; - rev = "5b1bedec83206f41672b1b65bba859f235bff48b"; - sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a69c20f8dcf73c878f2172dcc9f1796fdc0408/recipes/firefox-controller"; - sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; - name = "recipe"; - }; - packageRequires = [ cl-lib moz popwin ]; - meta = { - homepage = "https://melpa.org/#/firefox-controller"; - license = lib.licenses.free; - }; - }) {}; - fireplace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fireplace"; - ename = "fireplace"; - version = "20181211.1127"; - src = fetchFromGitHub { - owner = "johanvts"; - repo = "emacs-fireplace"; - rev = "571ffa7dd0ce46edca838df74d055aaa83da4d78"; - sha256 = "1iw17rkihsn50p3zljag82v09zyav8bzgfn6mfa267fkf4f1fgjy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609/recipes/fireplace"; - sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fireplace"; - license = lib.licenses.free; - }; - }) {}; - firestarter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "firestarter"; - ename = "firestarter"; - version = "20161219.523"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "firestarter"; - rev = "4d6b106f325ac1802eabce3c8a7cd0a4c7a32864"; - sha256 = "13daz15v0sshl7lxcg1xcbpl64gklgh50pzk0qxmn5ygw7nlifn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b046eb3b63220b937e1b70f633cb5424dc782a1/recipes/firestarter"; - sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/firestarter"; - license = lib.licenses.free; - }; - }) {}; - firrtl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "firrtl-mode"; - ename = "firrtl-mode"; - version = "20190223.1944"; - src = fetchFromGitHub { - owner = "IBM"; - repo = "firrtl-mode"; - rev = "e55c555809037b7aaf2367ad2255f0a27addd23a"; - sha256 = "1nsihyx9znblc4kxyk06r7alhd4wh67312zwp9discgyf4ksm572"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/firrtl-mode"; - sha256 = "19r7wbw9pr05p8fywcnbbpdpklic2vd2bsy80r7xrzgs4fcl12as"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/firrtl-mode"; - license = lib.licenses.free; - }; - }) {}; - fish-completion = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fish-completion"; - ename = "fish-completion"; - version = "20190429.122"; - src = fetchFromGitLab { - owner = "Ambrevar"; - repo = "emacs-fish-completion"; - rev = "e5b9b65a077319dfdb2faca9ef847db3ef55d0db"; - sha256 = "1pjqnbyjmj64q5nwq1mrdxcls4fp5y0b6zqs785i0s6wdvrm4021"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d17ca0213ba5ef9dce92002e281e6f08c3492be/recipes/fish-completion"; - sha256 = "1y7vwh7w0shnrnp8x1m1sa0p7kdyz5mg1mfs263gm38in2biym9i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fish-completion"; - license = lib.licenses.free; - }; - }) {}; - fish-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fish-mode"; - ename = "fish-mode"; - version = "20180826.2003"; - src = fetchFromGitHub { - owner = "wwwjfy"; - repo = "emacs-fish"; - rev = "35fc7c1e243a7410823088a571ecf378e9f3efa6"; - sha256 = "0rn08dm4gn0g0nz080zxm0am1z6hfkinvzqwqszv96qkxy250ghp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efac97c0f54a3300251020c4626056526c18b441/recipes/fish-mode"; - sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fish-mode"; - license = lib.licenses.free; - }; - }) {}; - fix-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-input"; - ename = "fix-input"; - version = "20181231.2308"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "fix-input"; - rev = "02ce45f104284bc9ea7f8e7d1dc73bf9cd3f47d7"; - sha256 = "0xqid3s8q3swc2j4rj94lv8snk898www9ycp5l4264lii2dc7mnm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d31f907997d1d07ec794a4f09824f43818f035c/recipes/fix-input"; - sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fix-input"; - license = lib.licenses.free; - }; - }) {}; - fix-muscle-memory = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-muscle-memory"; - ename = "fix-muscle-memory"; - version = "20160822.2139"; - src = fetchFromGitHub { - owner = "jonnay"; - repo = "fix-muscle-memory"; - rev = "df687aea23c6eac4b751f993893c2fd56e5a8a3b"; - sha256 = "02nl4vz6fnbjc7w1lk1y9z0qw5bsxr407ww0b2wqw6h8spmcpcrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6b0501714a6d82657b88d11e3f79d75eea17d8e/recipes/fix-muscle-memory"; - sha256 = "0qhasnjw0bj5hzw27r8vj6shhwc3zxcp3wmxijh1rpdw4773f7n8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fix-muscle-memory"; - license = lib.licenses.free; - }; - }) {}; - fix-word = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-word"; - ename = "fix-word"; - version = "20190215.1238"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "fix-word"; - rev = "b3b3a3c8e33e425f9a8d0ec653adb6897c8efc03"; - sha256 = "1nw9ih0knaqaban5nqp3anvr37mivylqs8sc8l3v1i9srlqnsj1m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22636390e8a15c09293a1506a901286dd72e565f/recipes/fix-word"; - sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/fix-word"; - license = lib.licenses.free; - }; - }) {}; - fixmee = callPackage ({ back-button - , button-lock - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nav-flash - , smartrep - , string-utils - , tabulated-list ? null }: - melpaBuild { - pname = "fixmee"; - ename = "fixmee"; - version = "20150223.555"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "fixmee"; - rev = "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084"; - sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5d06db82e237e6c6babd92a1fd2b58c29662e4f/recipes/fixmee"; - sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; - name = "recipe"; - }; - packageRequires = [ - back-button - button-lock - nav-flash - smartrep - string-utils - tabulated-list - ]; - meta = { - homepage = "https://melpa.org/#/fixmee"; - license = lib.licenses.free; - }; - }) {}; - flame = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flame"; - ename = "flame"; - version = "20180303.1216"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "flame"; - rev = "2cfb860a483197e92a4c20d7b9b055d586e76fe0"; - sha256 = "1h6mm2zjv03y2d6dv4gq7iaz6r2glgcljzgmi6m4jp6flvyqh09g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7a14c14368de722855286c088020a5657f7cf8b/recipes/flame"; - sha256 = "1br9c48anscq9vbssr0gq8f5kbq755hjaglbljwwh9nd5riycv5v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flame"; - license = lib.licenses.free; - }; - }) {}; - flappymacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flappymacs"; - ename = "flappymacs"; - version = "20171023.304"; - src = fetchFromGitHub { - owner = "taksatou"; - repo = "flappymacs"; - rev = "fac0011983251d5c44f4ed1eacac03f5de3caac4"; - sha256 = "191sdqaljxryslvwjgr38fhgxi0gg7v74m1rqxx3m740wr4qnx7s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a63b22f357b2d08b12fb86c27261ab4d687c5f7f/recipes/flappymacs"; - sha256 = "1rp4r5ldhm8nrj26y1vm5d5fj3kl7v45cj1naxczrqbcgkd0r404"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flappymacs"; - license = lib.licenses.free; - }; - }) {}; - flash-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flash-region"; - ename = "flash-region"; - version = "20130923.1117"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "flash-region"; - rev = "261b3597b23cdd40e5c14262a5687bcc6c1d0901"; - sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf26329a30ec6e39b052e5815d3f113c05e72f84/recipes/flash-region"; - sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flash-region"; - license = lib.licenses.free; - }; - }) {}; - flatland-black-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flatland-black-theme"; - ename = "flatland-black-theme"; - version = "20170808.612"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-flatland-black-theme"; - rev = "348c5d5fe615e6ea13cadc17f046e506e789ce07"; - sha256 = "1g5jqxdk35ahx8qk4vi7whhcpi1qp7rbbjgiih974fs59cg5iki0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/flatland-black-theme"; - sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flatland-black-theme"; - license = lib.licenses.free; - }; - }) {}; - flatland-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flatland-theme"; - ename = "flatland-theme"; - version = "20171113.721"; - src = fetchFromGitHub { - owner = "gchp"; - repo = "flatland-emacs"; - rev = "a98a6f19ad4dff0fa3fad1ea487b7d0ef634a19a"; - sha256 = "02gbzxd1v003aaj5rn3vr00n4390bhdx2jhpa7nb430fg3s1ppdy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a081fd0c5598fdf5bc0ab92f4d009f32132a29e/recipes/flatland-theme"; - sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flatland-theme"; - license = lib.licenses.free; - }; - }) {}; - flatui-dark-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flatui-dark-theme"; - ename = "flatui-dark-theme"; - version = "20170513.722"; - src = fetchFromGitHub { - owner = "theasp"; - repo = "flatui-dark-theme"; - rev = "5b959a9f743f891e4660b1b432086417947872ea"; - sha256 = "0nz4ql7qf49cwsgjb7dg0jhipr5d472r4fddy6fhr1h17s1cd9qy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f9dc5abeb37422c63cac74f9a006d54c4a7c5a5/recipes/flatui-dark-theme"; - sha256 = "1mswmkhi43fm0cmdgf0ywpy9lmapy0syl65kqh68sa3jqbznhm6y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flatui-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - flatui-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flatui-theme"; - ename = "flatui-theme"; - version = "20160618.1827"; - src = fetchFromGitHub { - owner = "john2x"; - repo = "flatui-theme.el"; - rev = "9c15db5526c15c8dba55023f5698372b19c2a780"; - sha256 = "0ybgpnbq3b0ml3lzgkispn667acpjww7z6cr7hgwg3j1zrqpwi75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96dc9a8b1f6e5cdd46fc94fc2979f2a1787f4d21/recipes/flatui-theme"; - sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flatui-theme"; - license = lib.licenses.free; - }; - }) {}; - flex-autopair = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flex-autopair"; - ename = "flex-autopair"; - version = "20120809.518"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "flex-autopair"; - rev = "55d128749cc070551a1624a4508d1c4f6d76f7cf"; - sha256 = "0g9chcqjn2930vrn8af4hwibs4giprgsig9dqprz4c6hya03hlf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flex-autopair"; - sha256 = "0w3l236psqxl7wqdi2aisz8wcv279kw6gdja72viiscrbcm78xh0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flex-autopair"; - license = lib.licenses.free; - }; - }) {}; - flex-compile = callPackage ({ buffer-manage - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flex-compile"; - ename = "flex-compile"; - version = "20181227.2248"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "flex-compile"; - rev = "e91797c2185ed93e64fd5d11ab244d561278c744"; - sha256 = "18nbwidahm2n7fwznk5flxnf7rq77r5649wz45j0g4zvqpi1nwkl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/259caeebc317e81ab9d532a371ea85656c2b1619/recipes/flex-compile"; - sha256 = "1hlh4k7qgln87xajnjjhf1yyg6bgdwd0iczhlfw8gdwfj5xpjd38"; - name = "recipe"; - }; - packageRequires = [ buffer-manage dash emacs ]; - meta = { - homepage = "https://melpa.org/#/flex-compile"; - license = lib.licenses.free; - }; - }) {}; - flex-isearch = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flex-isearch"; - ename = "flex-isearch"; - version = "20170308.1210"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/flex-isearch"; - rev = "8b934ea6f1e4"; - sha256 = "0xbwrzkfv4i91qxs80p0pfjlvj5pyigvidby8m5lammm8idwx9dh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/flex-isearch"; - sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flex-isearch"; - license = lib.licenses.free; - }; - }) {}; - flim = callPackage ({ apel - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flim"; - ename = "flim"; - version = "20190526.334"; - src = fetchFromGitHub { - owner = "wanderlust"; - repo = "flim"; - rev = "e4bd54fd7d335215b54f7ef27ed974c8cd68d472"; - sha256 = "0sl3skyqqzanjrp34hd1rh8wvdgsj2cm7k7hx5kc5ipggp77720r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94faf56ff9bf94f51ef5253e4c4244faec5eecfd/recipes/flim"; - sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc"; - name = "recipe"; - }; - packageRequires = [ apel ]; - meta = { - homepage = "https://melpa.org/#/flim"; - license = lib.licenses.free; - }; - }) {}; - flimenu = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flimenu"; - ename = "flimenu"; - version = "20170417.1847"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "flimenu"; - rev = "9351201d89b05cbdaec312a6ebd7fd10c38d6112"; - sha256 = "1qb08j66a9mvybqhc2vyywwn16w3kkjb06k50rfqf6sbcmndz8va"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ffc67a266de3d58553b27325b7fc6937df425be/recipes/flimenu"; - sha256 = "1xr28kprkq9xwy2f7b3wnjr25a8avm2lfcyi8853jygkm2vmnsx1"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/flimenu"; - license = lib.licenses.free; - }; - }) {}; - fliptext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fliptext"; - ename = "fliptext"; - version = "20171124.1256"; - src = fetchFromGitHub { - owner = "andre-r"; - repo = "fliptext.el"; - rev = "fd821f645ffebae6ae3894afa7ba7fc06f91afc6"; - sha256 = "1jf63kp1myxihv6r13cddxgr8cchxcnnmylj5dx50y42595ia4yh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e36776cbed8eab151f69d0edd5217a7bba7c2451/recipes/fliptext"; - sha256 = "1wbrvqrvrpk2lx7b6y30rrshr7a25b2191bnx4v8lm3cv16gv8p7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fliptext"; - license = lib.licenses.free; - }; - }) {}; - floobits = callPackage ({ fetchFromGitHub - , fetchurl - , highlight - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "floobits"; - ename = "floobits"; - version = "20180731.2224"; - src = fetchFromGitHub { - owner = "Floobits"; - repo = "floobits-emacs"; - rev = "489b294a7f30ecd2af2edc0823dead8102f27af6"; - sha256 = "1pw88qn6s8ln626c8mgxgpfax39h7ww4m930dp7gg4aklxjbspkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits"; - sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; - name = "recipe"; - }; - packageRequires = [ highlight json ]; - meta = { - homepage = "https://melpa.org/#/floobits"; - license = lib.licenses.free; - }; - }) {}; - flow-js2-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flow-minor-mode - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "flow-js2-mode"; - ename = "flow-js2-mode"; - version = "20190214.230"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "flow-js2-mode"; - rev = "ef0211c9b292915ba3773998ca99e25f627aa5af"; - sha256 = "0i35mkc9g3v7cgh30izg9azcvskd4fqxhfblj7sh5br2p1yw8w0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3487c252f013f6937c6731b57f2a9c1e5227a81d/recipes/flow-js2-mode"; - sha256 = "05wx7z5f4mkiab8ahhhr3fi6awmsdl253fwapad5ag3kaimnmxv7"; - name = "recipe"; - }; - packageRequires = [ emacs flow-minor-mode js2-mode ]; - meta = { - homepage = "https://melpa.org/#/flow-js2-mode"; - license = lib.licenses.free; - }; - }) {}; - flow-minor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flow-minor-mode"; - ename = "flow-minor-mode"; - version = "20180315.1124"; - src = fetchFromGitHub { - owner = "an-sh"; - repo = "flow-minor-mode"; - rev = "6c782a3fe3f810484009d87813b88804beafafac"; - sha256 = "1awf44fyjwzlxjavk31lha8iknm8nxr2r6z07sxhzyy23ff127mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66504f789069922ea56f268f4da90fac52b601ff/recipes/flow-minor-mode"; - sha256 = "190dv225sb37jawzrasd7qkbznrmkrdnb90l44il63vrlmjv3r1s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flow-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - flower = callPackage ({ clomacs - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flower"; - ename = "flower"; - version = "20190215.946"; - src = fetchFromGitHub { - owner = "PositiveTechnologies"; - repo = "flower"; - rev = "6ef1affa2d7090714ccc4494823de28cfc11da35"; - sha256 = "1dp3g52j1i49bv802g27b7yszpxz0i28i4j74qp39qlld3k0gys0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8a731715d360aea9af2b898242fd4eee5419d14/recipes/flower"; - sha256 = "1cb9ppgspdrg4yrrlq4sfajpa6s7xiwvdf9b3947rmmxizgqgynd"; - name = "recipe"; - }; - packageRequires = [ clomacs emacs ]; - meta = { - homepage = "https://melpa.org/#/flower"; - license = lib.licenses.free; - }; - }) {}; - flucui-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flucui-themes"; - ename = "flucui-themes"; - version = "20190321.1613"; - src = fetchFromGitHub { - owner = "MetroWind"; - repo = "flucui-theme"; - rev = "921ff298da71366eca3d1e4fc410126d405d5366"; - sha256 = "0gqsr0xsxrbxsdfn3yhf76wxpqp63m1652ryvc2hwskkgj41y3nl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77d06aa7405f0badf5ab425ddeeb7a754c17d2af/recipes/flucui-themes"; - sha256 = "0ki2vxjhccyi6w2y9qj6xbfqgvjd91wqkzn6qq8ig6ggqir7wc6a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flucui-themes"; - license = lib.licenses.free; - }; - }) {}; - flutter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flutter"; - ename = "flutter"; - version = "20190203.2201"; - src = fetchFromGitHub { - owner = "amake"; - repo = "flutter.el"; - rev = "4a59efee1cde408c311ef21c6d3e6fd65868ed42"; - sha256 = "1cn247dq85pkmv4wpv5pkfaizlphlns0nh97fgna2qr9ig3hpn6j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2dc736e396632d7a26c40b6b1de23f41b645722d/recipes/flutter"; - sha256 = "1v8m3rvdivww9bsk52m0ap336ql5zi637byisil4wcivxabc4i94"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flutter"; - license = lib.licenses.free; - }; - }) {}; - fluxus-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , osc }: - melpaBuild { - pname = "fluxus-mode"; - ename = "fluxus-mode"; - version = "20170210.1141"; - src = fetchFromGitHub { - owner = "defaultxr"; - repo = "fluxus-mode"; - rev = "3661d4dfdaf249138e7f215f15f291c9391ede8d"; - sha256 = "1dp974qs80agx9qcq5k5awdsr8p8smv8cdwkjz2d8xfd5wq2vhh9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3396e0da67153ad051b8551bf34630d32f974f4/recipes/fluxus-mode"; - sha256 = "1xn2aw9gxwkmr1miam63lrdx6n0qxsgph3rlaqy9cbs0vkb254an"; - name = "recipe"; - }; - packageRequires = [ emacs osc ]; - meta = { - homepage = "https://melpa.org/#/fluxus-mode"; - license = lib.licenses.free; - }; - }) {}; - flx = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flx"; - ename = "flx"; - version = "20151030.1112"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "flx"; - rev = "7fce6a4cdb65ac1b52e2b409ba548767581ce34c"; - sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx"; - sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/flx"; - license = lib.licenses.free; - }; - }) {}; - flx-ido = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , flx - , lib - , melpaBuild }: - melpaBuild { - pname = "flx-ido"; - ename = "flx-ido"; - version = "20180117.719"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "flx"; - rev = "9c5cb5de0202b4eaac9359c84ca7ce9cbd7ee835"; - sha256 = "0i7pj4l0ilihvkgal8d71idy5jr9zwanzxch350pg4myr6j1hnad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx-ido"; - sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; - name = "recipe"; - }; - packageRequires = [ cl-lib flx ]; - meta = { - homepage = "https://melpa.org/#/flx-ido"; - license = lib.licenses.free; - }; - }) {}; - flx-isearch = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flx - , lib - , melpaBuild }: - melpaBuild { - pname = "flx-isearch"; - ename = "flx-isearch"; - version = "20180102.2114"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "flx-isearch"; - rev = "f132fd6367e369885ab3a865fbfe20eee989bc0b"; - sha256 = "1dcvfl4fyhgw0rhfhixzlzjfr99fisa83f7lmlwzz2zs96myhhkz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2cd1438cc0821b8ae1d01e2a3bc8f07ca8a79134/recipes/flx-isearch"; - sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flx ]; - meta = { - homepage = "https://melpa.org/#/flx-isearch"; - license = lib.licenses.free; - }; - }) {}; - flycheck = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pkg-info - , seq }: - melpaBuild { - pname = "flycheck"; - ename = "flycheck"; - version = "20190503.153"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck"; - rev = "47174a12fd84a685f36019632838c73b4813b66d"; - sha256 = "15ng2pfkl826gfvsdnhapnnm24r8010sixw95ry3azrmjfd2z29b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck"; - sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist pkg-info seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ameba = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ameba"; - ename = "flycheck-ameba"; - version = "20190512.1009"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "ameba.el"; - rev = "b2c115905887ab6f12c08072e370e8ad2194e131"; - sha256 = "0rrinj1w7z4r1zvq1nlnx3nhq3xd5pn06jd3hxrlyg7j11g8vla4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/flycheck-ameba"; - sha256 = "17jfqbzzb1xkz9yx5ww6pykjnixm5w8mvwva1kqbjs4f2bsqbc6p"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ameba"; - license = lib.licenses.free; - }; - }) {}; - flycheck-apertium = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-apertium"; - ename = "flycheck-apertium"; - version = "20181211.238"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "flycheck-apertium"; - rev = "22b60a17836477ac1edd15dc85b14f88ca871ba9"; - sha256 = "0313h4yh85xndzvy3yzznar79ys0ng3rdsz0xa237xqsf71ypg4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6cec0d312f0e86e17829e6fd8f87acabc0174f/recipes/flycheck-apertium"; - sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-apertium"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ats2 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ats2"; - ename = "flycheck-ats2"; - version = "20170225.836"; - src = fetchFromGitHub { - owner = "drvink"; - repo = "flycheck-ats2"; - rev = "9f77add8408462af35bdddf87e37a661880255e3"; - sha256 = "1fv3r49i8dgszaq5rs8dwnwcj6rgx922ww01ikrq3b4c9y17srpz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d3605bdc402e6b13f53910eafb7f1428a5f749f/recipes/flycheck-ats2"; - sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ats2"; - license = lib.licenses.free; - }; - }) {}; - flycheck-bashate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-bashate"; - ename = "flycheck-bashate"; - version = "20160629.2140"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-bashate"; - rev = "d9780b73ee698d6bc001e617b187845cafa3292a"; - sha256 = "1qhvrkhpjs214mc5f6gygwf5hx5gb2jcs46a4b34mqq29rn0j9kc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54fd062e4ad012d846260c96801d3415756ce981/recipes/flycheck-bashate"; - sha256 = "1c8hf4893zb74g61afr02wqhmdaswxr3nwsnzzwmb8nrrygvfa8j"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-bashate"; - license = lib.licenses.free; - }; - }) {}; - flycheck-cask = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-cask"; - ename = "flycheck-cask"; - version = "20160928.226"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-cask"; - rev = "c3a51147eddeb7347de81f6a498fc96538bac499"; - sha256 = "1jw8n6df2hpnjrsqzdd70j0ya3yjzkcy5gm6zx9acqfx88zlgb9m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-cask"; - sha256 = "0d2m7mg91k1nazysayryxagql1vi975n7iv0snknhbw4wisqp82f"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-cask"; - license = lib.licenses.free; - }; - }) {}; - flycheck-checkbashisms = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-checkbashisms"; - ename = "flycheck-checkbashisms"; - version = "20190402.1918"; - src = fetchFromGitHub { - owner = "Gnouc"; - repo = "flycheck-checkbashisms"; - rev = "2e386775f1a0eb5d80e5d70e98474ee32ecafb24"; - sha256 = "1ai4p0s6wh4sp972fxkjlc4mn6ai1zc27zh4vm63rfrayri1g31z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5678ea5aef4dc8a517d6d9381a64f182645d344/recipes/flycheck-checkbashisms"; - sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-checkbashisms"; - license = lib.licenses.free; - }; - }) {}; - flycheck-checkpatch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-checkpatch"; - ename = "flycheck-checkpatch"; - version = "20170217.225"; - src = fetchFromGitHub { - owner = "zpp0"; - repo = "flycheck-checkpatch"; - rev = "6461fc7b0d493eb9863814055f8bce5fa35739de"; - sha256 = "1651xmw01n5h7x81y3cvsamdmb67jcf385ax52dkp8miyq1a090r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/193aaae5640434559cd479df1463ee44eab14d86/recipes/flycheck-checkpatch"; - sha256 = "1apjn26n663rjddv5iagfs65fdf22049ykmzggybbnprvnmasf55"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-checkpatch"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clang-analyzer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clang-analyzer"; - ename = "flycheck-clang-analyzer"; - version = "20180917.725"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-clang-analyzer"; - rev = "5c707505e3ea806fddb54d031ab64351293d7c2d"; - sha256 = "0frbblyibalzskw2kv294yz846g04wlvpyshfwm95vwilv1f305v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8de7b717a1b0caf30f8f29d3e764b4756b93aeff/recipes/flycheck-clang-analyzer"; - sha256 = "0wby4vilvcmmncr6l6abh3v4wznx9m0zbk30vllj8bq98awfcy3a"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clang-analyzer"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clang-tidy = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clang-tidy"; - ename = "flycheck-clang-tidy"; - version = "20171024.108"; - src = fetchFromGitHub { - owner = "ch1bo"; - repo = "flycheck-clang-tidy"; - rev = "b8ebd49693f67e08e420ba847cc88f6721ef9e3e"; - sha256 = "0fnn1baw64f7x1zjb95adryr3mfynbblwppcd6ywh7pk0sq18b80"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a289ac549a7735a12eec85521c32f915b9194b85/recipes/flycheck-clang-tidy"; - sha256 = "0lhf5byydmd380y7qx5x34r0sq7gzrj286pcaxhl388p6j58cb4p"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clang-tidy"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clangcheck = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-clangcheck"; - ename = "flycheck-clangcheck"; - version = "20150712.10"; - src = fetchFromGitHub { - owner = "kumar8600"; - repo = "flycheck-clangcheck"; - rev = "24a9424c484420073a24443a829fd5779752362b"; - sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b42dd133e4fd5579dd1c6cdcbf733571bc890899/recipes/flycheck-clangcheck"; - sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m"; - name = "recipe"; - }; - packageRequires = [ cl-lib flycheck seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clangcheck"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clj-kondo = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clj-kondo"; - ename = "flycheck-clj-kondo"; - version = "20190410.815"; - src = fetchFromGitHub { - owner = "borkdude"; - repo = "flycheck-clj-kondo"; - rev = "1402fb008f10198f09c55869cd713a99c3e72dff"; - sha256 = "0ifkkw7mn83hw4yjx81h519fcabvdk73bavs3pbzck69v6li0mmy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20dca546bbad0fa7b713dc015d1b9a9b7caf5370/recipes/flycheck-clj-kondo"; - sha256 = "0a61jq6g0arrsa97rl3frns8k9l9qxazb96ir99y9kskim4njl6r"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clj-kondo"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clojure = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clojure"; - ename = "flycheck-clojure"; - version = "20180721.712"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "squiggly-clojure"; - rev = "7c856615f91868171af270f4fed08d52988f9596"; - sha256 = "0r2v4gica86z0va5i5xcs5aisi47ywzg2sg6rp7z6yg7aprcnfll"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9c642a234f93ed4cf5edcf27a552a8916984946/recipes/flycheck-clojure"; - sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; - name = "recipe"; - }; - packageRequires = [ cider emacs flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clojure"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clolyze = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clolyze"; - ename = "flycheck-clolyze"; - version = "20190422.1434"; - src = fetchFromGitHub { - owner = "DLaps"; - repo = "flycheck-clolyze"; - rev = "9a3300eac22a7ff96accf37fa2d761c13cc38020"; - sha256 = "1iphw65jn5yfkmxbjhc4igrqypsvfr7bxwxr41fdghsxldswqz9p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69fb1a2c590eb1a9a7cae09a7080b24185e49c74/recipes/flycheck-clolyze"; - sha256 = "1181g7ni0xihq0mbk6g6h7wh31hrg9q2xxsyrg6gb1zf4qqp2zyv"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clolyze"; - license = lib.licenses.free; - }; - }) {}; - flycheck-color-mode-line = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-color-mode-line"; - ename = "flycheck-color-mode-line"; - version = "20171121.2307"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-color-mode-line"; - rev = "cc474804d4e8088a627485faaf4217a5781aec7d"; - sha256 = "0lk8p0wb7g9lvxjv9rl59hd9f0m0ksw9rgspis8qshpz8pj5785f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02b5b60b74581ff0d1815155223e0c6e94a851a1/recipes/flycheck-color-mode-line"; - sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-color-mode-line"; - license = lib.licenses.free; - }; - }) {}; - flycheck-coverity = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-coverity"; - ename = "flycheck-coverity"; - version = "20170703.1759"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-coverity"; - rev = "cb211e3dd50413a5042eb20175be518214591c9d"; - sha256 = "17c5lppa5axw6wga3k8zqmn5f2syadlqbavrqgsi8k8nlcckxy1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55e8df91adbcf8b059096e02aba2781424250381/recipes/flycheck-coverity"; - sha256 = "1knd1sqgjkgb5zs8hgsi6lyvkqmrcrdjgx81f26nhg40qv5m2p5l"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-coverity"; - license = lib.licenses.free; - }; - }) {}; - flycheck-credo = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-credo"; - ename = "flycheck-credo"; - version = "20170526.845"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "flycheck-credo"; - rev = "e88f11ead53805c361ec7706e44c3dfee1daa19f"; - sha256 = "04i7fbqpkjpsfa8vjpkdhg1sj5isczxwncdp4vr9x3vll3svblm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88dfffe034135cc46d661f8173e8b14e0fb7f240/recipes/flycheck-credo"; - sha256 = "0xmnbib7lx6v10pd3pkr69c4jb4sn3nmjk16qzvscwjgf2dypyax"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-credo"; - license = lib.licenses.free; - }; - }) {}; - flycheck-crystal = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-crystal"; - ename = "flycheck-crystal"; - version = "20180626.1942"; - src = fetchFromGitHub { - owner = "crystal-lang-tools"; - repo = "emacs-crystal-mode"; - rev = "ae87526d13be07e6817809ac9795657db0092c9d"; - sha256 = "1skgas1bh05vbncwwcahlr06g05nyn3cjwvfziq501r9b450s7qk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c718f809af30226611358f9aaed7519e52923fd3/recipes/flycheck-crystal"; - sha256 = "04avxav2rayprm09xkphs1ni10j1kk10j7m77afcac0gnma5rwyn"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-crystal"; - license = lib.licenses.free; - }; - }) {}; - flycheck-css-colorguard = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-css-colorguard"; - ename = "flycheck-css-colorguard"; - version = "20161031.422"; - src = fetchFromGitHub { - owner = "Simplify"; - repo = "flycheck-css-colorguard"; - rev = "ae94fa0396acd99f9ec36d9572459df793f37fe8"; - sha256 = "1vy5yjf98b7dk9lniz3rgk33agg8f1x8488lvm28ljdq3jfdgcfw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-css-colorguard"; - sha256 = "16qgn12jdps61mlbvhji5l8qrqigv382wyiv79rj2bwvdzbl653f"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-css-colorguard"; - license = lib.licenses.free; - }; - }) {}; - flycheck-cstyle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-cstyle"; - ename = "flycheck-cstyle"; - version = "20160905.1641"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-cstyle"; - rev = "002699f83253ea8e1a509a9ab6d0fce1a1650f73"; - sha256 = "1qwimdnvwbg365hnwgrrq9h5h1spikma3va5z47rhxbdb21hvyvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5970f4f0967dc3a10dc9554a8f5f06b703872878/recipes/flycheck-cstyle"; - sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-cstyle"; - license = lib.licenses.free; - }; - }) {}; - flycheck-cython = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-cython"; - ename = "flycheck-cython"; - version = "20170724.258"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-flycheck-cython"; - rev = "ecc4454d35ab5317ab66a04406f36f0c1dbc0b76"; - sha256 = "1v17skw0wn7a7nkc1vrs0bbzihnjw0dwvyyd0lydsihzxl5z2r5g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d963eb1b8f8f863b37a96803b00d395e9d85e94/recipes/flycheck-cython"; - sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-cython"; - license = lib.licenses.free; - }; - }) {}; - flycheck-d-unittest = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-d-unittest"; - ename = "flycheck-d-unittest"; - version = "20160521.2117"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-d-unittest"; - rev = "3e614f23cb4a5566fd7988dbcaaf254af81c7718"; - sha256 = "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b86c666ee9b0620390a250dddd42b17cbec2409f/recipes/flycheck-d-unittest"; - sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2"; - name = "recipe"; - }; - packageRequires = [ dash flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-d-unittest"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dedukti = callPackage ({ dedukti-mode - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dedukti"; - ename = "flycheck-dedukti"; - version = "20171103.512"; - src = fetchFromGitHub { - owner = "rafoo"; - repo = "flycheck-dedukti"; - rev = "3dbff5646355f39d57a3ec514f560a6b0082a1cd"; - sha256 = "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/732832e88a65a8866fa3872ff5f29eb8a26438f2/recipes/flycheck-dedukti"; - sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8"; - name = "recipe"; - }; - packageRequires = [ dedukti-mode flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dedukti"; - license = lib.licenses.free; - }; - }) {}; - flycheck-demjsonlint = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-demjsonlint"; - ename = "flycheck-demjsonlint"; - version = "20161114.2318"; - src = fetchFromGitHub { - owner = "uqix"; - repo = "flycheck-demjsonlint"; - rev = "1c433150fdf628dda4c9fad938bf7c79610b4460"; - sha256 = "0kmvwmaxw64xjgchq8szk9mhbi6xp2jhv7qpgqndf4svia4pqws6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/flycheck-demjsonlint"; - sha256 = "0bcfkc9fch1h6gva64j71kb9l8fc9rz6wk0s9w1c1chx1z4nlill"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-demjsonlint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dialyxir = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dialyxir"; - ename = "flycheck-dialyxir"; - version = "20170515.825"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "flycheck-dialyxir"; - rev = "adfb73374cb2bee75724822972f405f2ec371199"; - sha256 = "1kzvq99f052mdj4ml1m6nvxhv0kqqblmpdgnwcm89krf0qfl4gjg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa49551b8f726c235e03ea377bb09a8be37b9f32/recipes/flycheck-dialyxir"; - sha256 = "0pacxidpgwp7wij17c5r0fm5w3nga3lp4mcim365k3y5r4ralc0c"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dialyxir"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dialyzer = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dialyzer"; - ename = "flycheck-dialyzer"; - version = "20160326.730"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-flycheck-dialyzer"; - rev = "a5df0db95ac69f397b5f85d325a6d88cf8974f64"; - sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc84fb9fabfac4c008fe0eecb0b59933bfbf95c6/recipes/flycheck-dialyzer"; - sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dialyzer"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dmd-dub = callPackage ({ f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dmd-dub"; - ename = "flycheck-dmd-dub"; - version = "20180625.935"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "flycheck-dmd-dub"; - rev = "148ea4ba3e4c46c8edc616f947f796e98bcad0de"; - sha256 = "0r33rp34ss7mx32x28p67n5sgnmyr6cmpwpprmlq2s72xpmyx4md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a812594901c1099283bdf51fbea1aa077cfc588d/recipes/flycheck-dmd-dub"; - sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; - name = "recipe"; - }; - packageRequires = [ f flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dmd-dub"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dogma = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dogma"; - ename = "flycheck-dogma"; - version = "20170124.2321"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "flycheck-dogma"; - rev = "7e14207a7da67dc5524a8949cb37a3d11de1db6e"; - sha256 = "1f3wn48am7920s6pm7ds1npfbj1w2pb8k790rl79rvc398g1pyyr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd7601c55206fd0b9b59f98e861c52b9d640278/recipes/flycheck-dogma"; - sha256 = "0mpmmz0ssdd3a4fnqzy5kf9r3ddcs9kcl0chhilkw5k8480j3dcy"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dogma"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dtrace = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dtrace"; - ename = "flycheck-dtrace"; - version = "20180903.930"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "flycheck-dtrace"; - rev = "951fab3a15c11d92b9fac1ea4791a80dfe034a00"; - sha256 = "1qkzir3lzz4lc5kn55qb52cm5y7iy8w1ljq6xxzcjxfbk9980y0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cdcdd10fbcd58a5c67e4d07632212e7dedf42dbe/recipes/flycheck-dtrace"; - sha256 = "14sg7zkq9f5zbcfn8app8m9mdc8cnwcxh7h4glsz32yaqc1dj7h8"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dtrace"; - license = lib.licenses.free; - }; - }) {}; - flycheck-elixir = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-elixir"; - ename = "flycheck-elixir"; - version = "20180809.2342"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-flycheck-elixir"; - rev = "11998d7e3e63a33453e934d25b3673f7c558e579"; - sha256 = "1hdbg0hvb6hwzjma9mxy0h888c8j2z4g38gwixrdixzbw5727r75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da2ab73ab1426f71ea2b2bea2b418941856b3454/recipes/flycheck-elixir"; - sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-elixir"; - license = lib.licenses.free; - }; - }) {}; - flycheck-elm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-elm"; - ename = "flycheck-elm"; - version = "20181106.1746"; - src = fetchFromGitHub { - owner = "bsermons"; - repo = "flycheck-elm"; - rev = "debd0af563cb6c2944367a691c7fa3021d9378c1"; - sha256 = "1vl0lss2n50pz5wscqj6vhjwb4hbg8xx2chh5vafsrnn0a3fryrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78bdcdaa660beda29acecb51761b95d8664d28ac/recipes/flycheck-elm"; - sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-elm"; - license = lib.licenses.free; - }; - }) {}; - flycheck-elsa = callPackage ({ cask - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-elsa"; - ename = "flycheck-elsa"; - version = "20190211.1121"; - src = fetchFromGitHub { - owner = "emacs-elsa"; - repo = "flycheck-elsa"; - rev = "d216bf97e6f4f200354f701fadff669403e18e46"; - sha256 = "1r7xnph5q1si4kp3900nvh1il69nhrb1yfh9h13zwpwfql4add4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a15c49d2fc800a6b69304edd6dbad90aaa5053f/recipes/flycheck-elsa"; - sha256 = "07a07hmy7cibm7263dw4x8kkv17g5hby8isaks7n2814ifblf30r"; - name = "recipe"; - }; - packageRequires = [ cask emacs seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-elsa"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ensime = callPackage ({ emacs - , ensime - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ensime"; - ename = "flycheck-ensime"; - version = "20190212.242"; - src = fetchFromGitHub { - owner = "ncaq"; - repo = "flycheck-ensime"; - rev = "9fe000e7004725bc8c3b7554237d717bca9cd9ac"; - sha256 = "0fl6p2hvcm1f5snx8a82h53kkfnbgycik0d5a7krcjgiby6w7wam"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8d1ef354566c7f337c62accbd1d2f86ffcbd98a/recipes/flycheck-ensime"; - sha256 = "11h7xwm8vwi8nca7yy9q0y30jcj77s07aa45xqz7n8rsqp6wdp3z"; - name = "recipe"; - }; - packageRequires = [ emacs ensime flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ensime"; - license = lib.licenses.free; - }; - }) {}; - flycheck-flawfinder = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-flawfinder"; - ename = "flycheck-flawfinder"; - version = "20170115.1927"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-flawfinder"; - rev = "7d964d38023b088adf3ffc2fddeead81f4491a45"; - sha256 = "0y023brz8adwa6gdaaixk6dnrq4kj2i5h56rj54cxrjkagyklfxl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e67a84d1a8c890ea56bd842549d70d9841d1e7a7/recipes/flycheck-flawfinder"; - sha256 = "1nabj00f5p1klzh6509ywnazxx2m017isdjdzzixg94g5mp0kv5i"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-flawfinder"; - license = lib.licenses.free; - }; - }) {}; - flycheck-flow = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-flow"; - ename = "flycheck-flow"; - version = "20190304.659"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-flycheck-flow"; - rev = "9e8e52cfc98af6a23fd906f9cb5d5d470d8cf82d"; - sha256 = "14qldlisbmxzammr500gyha2hiv2xgyzfc6mysqii06kbcqn1ik1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d18fb21d8ef9b33aa84bc26f5918e636c5771e5/recipes/flycheck-flow"; - sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3"; - name = "recipe"; - }; - packageRequires = [ flycheck json ]; - meta = { - homepage = "https://melpa.org/#/flycheck-flow"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ghcmod = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ghcmod"; - ename = "flycheck-ghcmod"; - version = "20150113.2232"; - src = fetchFromGitHub { - owner = "scturtle"; - repo = "flycheck-ghcmod"; - rev = "6bb7b7d879f05bbae54e99eb04806c877adf3ccc"; - sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ed620e038f361c41115430a1fc119a04cf4f20/recipes/flycheck-ghcmod"; - sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp"; - name = "recipe"; - }; - packageRequires = [ dash flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ghcmod"; - license = lib.licenses.free; - }; - }) {}; - flycheck-golangci-lint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-golangci-lint"; - ename = "flycheck-golangci-lint"; - version = "20190330.712"; - src = fetchFromGitHub { - owner = "weijiangan"; - repo = "flycheck-golangci-lint"; - rev = "8e446c68311048f0b87febf8ef0379e29d358851"; - sha256 = "0xxxqk8ag082nwwq3dvhzvnbgn9c90mbda7qvi2y4qbh1p1nccqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fffbecd6cb43866fc9f37ba2d2c998ef6186c6d5/recipes/flycheck-golangci-lint"; - sha256 = "1vg80q4axbzb147fglli2w19n70bc934hb3hfl1r4shhpbfjlcgj"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-golangci-lint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-gometalinter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-gometalinter"; - ename = "flycheck-gometalinter"; - version = "20180424.241"; - src = fetchFromGitHub { - owner = "favadi"; - repo = "flycheck-gometalinter"; - rev = "422f6e4b77b27fd7370f0c88437ac5072c9d3413"; - sha256 = "16117njpia9046snp1y2yapqmnzgbsan5dvaw3ih5pqmnqjjqdkd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bfe9f2d030c04fb292297eb9226072bfea2ac64/recipes/flycheck-gometalinter"; - sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-gometalinter"; - license = lib.licenses.free; - }; - }) {}; - flycheck-gradle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-gradle"; - ename = "flycheck-gradle"; - version = "20190314.1934"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flycheck-gradle"; - rev = "1ca08bbc343362a923cbdc2010f66e41655e92ab"; - sha256 = "14zvx7f2nszf8p14aibqa4pdg3ly7yw66a58bw2whjw9zfi9rnr0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/382d9afd2bbb0c137719c308a67d185b86d84331/recipes/flycheck-gradle"; - sha256 = "0zd92lx0mqjqwzclvvhfwwahq80qspyv9k7qcxjc0bl3avjk6a47"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-gradle"; - license = lib.licenses.free; - }; - }) {}; - flycheck-grammalecte = callPackage ({ emacs - , fetchgit - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-grammalecte"; - ename = "flycheck-grammalecte"; - version = "20190517.944"; - src = fetchgit { - url = "https://git.deparis.io/flycheck-grammalecte/"; - rev = "8ba9d41dad0c9c96760614ce7594ceb823f560de"; - sha256 = "1l2n3vi7krd61bgwj7dg7qpkccimwfx3m0946fmxgrp0k6q41fn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd82aa0568d998a3d176b5ee47b8a227438ea09/recipes/flycheck-grammalecte"; - sha256 = "0xqg995a42cl6mvmpi68ay56fgs636cbzg65q5si5yc1yzgl74nv"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-grammalecte"; - license = lib.licenses.free; - }; - }) {}; - flycheck-haskell = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-haskell"; - ename = "flycheck-haskell"; - version = "20181207.846"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-haskell"; - rev = "32ddff87165a7d3a35e7318bee997b5b4bd41278"; - sha256 = "10pgsbagq6qj4mshq5sypv0q0khck92b30sc793b4g1pfpsxvgjn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ca601613788ae830655e148a222625035195f55/recipes/flycheck-haskell"; - sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck haskell-mode let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-haskell"; - license = lib.licenses.free; - }; - }) {}; - flycheck-hdevtools = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-hdevtools"; - ename = "flycheck-hdevtools"; - version = "20160926.2"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-hdevtools"; - rev = "53829f0c57800615718cfce27ffa16d8ba286cee"; - sha256 = "1isx9v5xx35pglmhyhpmpg7axw0krmnl0n2qiikf499z7dd35wyn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e210eb2405cc85dd1d03e9119d2249178950398/recipes/flycheck-hdevtools"; - sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; - name = "recipe"; - }; - packageRequires = [ dash flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-hdevtools"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ini-pyinilint = callPackage ({ fetchFromGitLab - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ini-pyinilint"; - ename = "flycheck-ini-pyinilint"; - version = "20190312.1231"; - src = fetchFromGitLab { - owner = "danieljrmay"; - repo = "flycheck-ini-pyinilint"; - rev = "54744a78d06373404933fedc3ca836916e83de51"; - sha256 = "1zdvan6l2s97s7swnccq21z1ja8vl64l757j3hg50ipq8j5yy9dl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a1d0b4be0dd3e238ad2e3a157b11ecc82c0639/recipes/flycheck-ini-pyinilint"; - sha256 = "028ksrlrrsn2wsz7kqf3qk4pp3scs7zvp74c4xj52rm4hh7ycbl7"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ini-pyinilint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-inline = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-inline"; - ename = "flycheck-inline"; - version = "20190320.911"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-inline"; - rev = "cf9eceabff8370f3b834b943a5777b9f914583f9"; - sha256 = "1sk8r90iqxpzrg0lpq4vd8ywdi08i0bbmgdivmr510jw2bpi3wp4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9ecc3a4696d2b3b0f0b8b1ca6e5285380ac046a/recipes/flycheck-inline"; - sha256 = "14ph2f5aj2mpyxbbq4v0rk5zdz7773lf2m83m30h3r1cbh5jmddj"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-inline"; - license = lib.licenses.free; - }; - }) {}; - flycheck-irony = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-irony"; - ename = "flycheck-irony"; - version = "20180604.1452"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "flycheck-irony"; - rev = "42dbecd4a865cabeb301193bb4d660e26ae3befe"; - sha256 = "00ggn7v1nj2zb7rvwmjrhybd1vcp07n74krdy28z9xwh7w59wyq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e367afce9a792c168ef1e7e20cc5903f7b570d8/recipes/flycheck-irony"; - sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck irony ]; - meta = { - homepage = "https://melpa.org/#/flycheck-irony"; - license = lib.licenses.free; - }; - }) {}; - flycheck-jest = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-jest"; - ename = "flycheck-jest"; - version = "20180410.2028"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flycheck-jest"; - rev = "08f27c5ed97c83c445f99fab58f0b6c826f14449"; - sha256 = "1ipr1yyk5vf2i8q7923r18a216sgf759x5f6j5776jcjkhp98c98"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31e2ac9de5f28ee9d847097cdeb60afa99476a51/recipes/flycheck-jest"; - sha256 = "19dg8v0xzni7x6zn472n4ach1c1jv4syzarfi8ba8r6n26vz9ss4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-jest"; - license = lib.licenses.free; - }; - }) {}; - flycheck-joker = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-joker"; - ename = "flycheck-joker"; - version = "20180912.2204"; - src = fetchFromGitHub { - owner = "candid82"; - repo = "flycheck-joker"; - rev = "51e99e697761ee8dab863930910abdba7607c1bd"; - sha256 = "07pxfvnrgp7f3rb27j1zrq04pncvga4291krqqy3dzwazsjplz48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/599bf33a5d4a4a590b355001e532cab4e1ee9ef6/recipes/flycheck-joker"; - sha256 = "0war80zdljpjhfihqrind8471ic7l4z7j74zmrysybxvnd5nr7l3"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-joker"; - license = lib.licenses.free; - }; - }) {}; - flycheck-julia = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-julia"; - ename = "flycheck-julia"; - version = "20170729.1441"; - src = fetchFromGitHub { - owner = "gdkrmr"; - repo = "flycheck-julia"; - rev = "213b60a5a9a1cb7887260e1d159b5bb27167cbb6"; - sha256 = "0wk8mc8j67dmc3mxzrhypgxmyywwrjh5q5llj4m2mgf0j7yp2576"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e964e3c6f737d0102b4fd7440fa9d434e6382bf/recipes/flycheck-julia"; - sha256 = "0340bv0lifs8pajk7gh7rngdjg62vaggn5biyysng642dlg5fwqs"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-julia"; - license = lib.licenses.free; - }; - }) {}; - flycheck-kotlin = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-kotlin"; - ename = "flycheck-kotlin"; - version = "20170122.337"; - src = fetchFromGitHub { - owner = "whirm"; - repo = "flycheck-kotlin"; - rev = "44dfae49a7355232492e17c150b7f80a84835c45"; - sha256 = "1495yxk308d1j3hw8gfdrsg8xs1imzgwfnwadrz9hx36rjd2dhj5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f158727cc8892aadba0a613dd08e65e2fc791b48/recipes/flycheck-kotlin"; - sha256 = "0vh4f3ap1ciddf2fvfnjz668d6spyx49xs2wfp1hrzxn5yqpnra5"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-kotlin"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ledger = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ledger"; - ename = "flycheck-ledger"; - version = "20180818.2021"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flycheck-ledger"; - rev = "8d7f52a4c7f80ca396ef0fc6c7d8e9f005778dfc"; - sha256 = "0m5zhyzrh4lx7vzwdgdwcfkipdvi3y8kavhckbd7vd9zwx539ij1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc715e6849aa5d6017e2478514c4a0d84c7ddbe5/recipes/flycheck-ledger"; - sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ledger"; - license = lib.licenses.free; - }; - }) {}; - flycheck-lilypond = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-lilypond"; - ename = "flycheck-lilypond"; - version = "20171203.532"; - src = fetchFromGitHub { - owner = "hinrik"; - repo = "flycheck-lilypond"; - rev = "d6b2c03e94e0b9b6294d7ad0b2fe4a76907a8aed"; - sha256 = "0vafllj20k8b3z7ybnnpny0dj4xmnr5s69p3krwchs77pi04727h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da99de90193c9ad362afdbbae28dfba52ef3676e/recipes/flycheck-lilypond"; - sha256 = "0yx0jbilr8z58df13wcssp3p95skcvl8mnhhr6lijak44sd7klbf"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-lilypond"; - license = lib.licenses.free; - }; - }) {}; - flycheck-liquidhs = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-liquidhs"; - ename = "flycheck-liquidhs"; - version = "20170412.1626"; - src = fetchFromGitHub { - owner = "ucsd-progsys"; - repo = "flycheck-liquidhs.el"; - rev = "c27252ac24d77f4b6eec76a4ba9cd61761a3fba9"; - sha256 = "1v5s252w2ai0rrci0rkq6wsx110pw8hp60n67990jg6l6lpvir2s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda/recipes/flycheck-liquidhs"; - sha256 = "07dn2ifj49z2jj9zw0f0ydp5rxx9wfmah4fh4vx8slnpjby367yh"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-liquidhs"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mercury = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "flycheck-mercury"; - ename = "flycheck-mercury"; - version = "20181118.1152"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-mercury"; - rev = "b6807a8db70981e21a91a93324c31e49de85c89f"; - sha256 = "15pjqglpcwm4wy0cxk1man3ar0n56qi1bjrr1fxfjq2xwsgsfagh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a775d12d9b9b6f27a44aeffbbb18de46a9e1b532/recipes/flycheck-mercury"; - sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h"; - name = "recipe"; - }; - packageRequires = [ dash flycheck s ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mercury"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mix = callPackage ({ elixir-mode - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-mix"; - ename = "flycheck-mix"; - version = "20190511.1457"; - src = fetchFromGitHub { - owner = "tomekowal"; - repo = "flycheck-mix"; - rev = "0bc301cfb6627e51a83312052641df1844ebce0a"; - sha256 = "1wvlnxr01i1kbvbwh8zi1m4vld2nlw1vnzia6kci425s0wj5w8i5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd2a4d71b7f4c0082b687a23fd367d55186625a9/recipes/flycheck-mix"; - sha256 = "1wp8lp45lc519w3xsws2c91jlbfmc0pc8764kxsifk74akwcizfl"; - name = "recipe"; - }; - packageRequires = [ elixir-mode flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mix"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-mmark"; - ename = "flycheck-mmark"; - version = "20181231.2257"; - src = fetchFromGitHub { - owner = "mmark-md"; - repo = "flycheck-mmark"; - rev = "a11563dcb9ed48f71274e0c6eb9e76b65d44bf40"; - sha256 = "00pg5cds9s82aip9bh9f6qlknzcfdxlj37gi8cffknxxgmvrrjbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2fd10423ab80e32245bb494005c8f87a8987fffb/recipes/flycheck-mmark"; - sha256 = "0lnw7pz40hijcpi9b92vjxvvyh9v50ww2f2r8z9pyhl9mjy2245x"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mmark"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mypy = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-mypy"; - ename = "flycheck-mypy"; - version = "20180907.316"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-flycheck-mypy"; - rev = "6f99166f5229c7b4298cff1818b7eaece1c9c8bd"; - sha256 = "06rdwjljhficbdf74qzlxsy02xhd8msp79fx75nwbxbd84q6dr5w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1f5ad8263ee33b8950ff68e39dca5b1f1748c1b/recipes/flycheck-mypy"; - sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mypy"; - license = lib.licenses.free; - }; - }) {}; - flycheck-nim = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-nim"; - ename = "flycheck-nim"; - version = "20160714.2128"; - src = fetchFromGitHub { - owner = "ALSchwalm"; - repo = "flycheck-nim"; - rev = "6d27349b66e44578851e6148299709d64d2bde41"; - sha256 = "08rjrh7rjx71fsxf931hhfcga7m6a8sd6bvvr4qbsmhldnzd1aa7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68747db46761f28aa2fdf13494d7cecc334cb604/recipes/flycheck-nim"; - sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az"; - name = "recipe"; - }; - packageRequires = [ dash flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-nim"; - license = lib.licenses.free; - }; - }) {}; - flycheck-nimsuggest = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-nimsuggest"; - ename = "flycheck-nimsuggest"; - version = "20171027.1508"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "flycheck-nimsuggest"; - rev = "dc9a5de1cb3ee05db5794d824610959a1f603bc9"; - sha256 = "1bf65hrz0s6f180kn2ir8l5qn7in789w8pyy96b9gqn21z50vb9d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb4170f002dbcd1906e81836f3ce035b1e81c379/recipes/flycheck-nimsuggest"; - sha256 = "099mlzramm6z66zyjb6ypn7qb0hpvwbbgk9ydsanj8sni0dd66hv"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-nimsuggest"; - license = lib.licenses.free; - }; - }) {}; - flycheck-objc-clang = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-objc-clang"; - ename = "flycheck-objc-clang"; - version = "20190421.349"; - src = fetchFromGitHub { - owner = "GyazSquare"; - repo = "flycheck-objc-clang"; - rev = "b46ad43637cebf8467cf596d3e7b5f5d371789e9"; - sha256 = "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ff4412f507371b93cfb85fc744e54110cd87338/recipes/flycheck-objc-clang"; - sha256 = "07mzwd04a69d7xpkjmhfmf95j69h6accnf9bb9br7jb1hi9vdalp"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-objc-clang"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ocaml = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , merlin }: - melpaBuild { - pname = "flycheck-ocaml"; - ename = "flycheck-ocaml"; - version = "20170730.1453"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-ocaml"; - rev = "8707a7bf545a8639a6a5c600a98d9a2ea1487dc9"; - sha256 = "13vzxkjq6v1f1i9zgxgjbwpiba04k9frkcl2wx6a9h3vgd7jyay0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ce9283eb1285953a2578eb7c4d280b4d98c801f/recipes/flycheck-ocaml"; - sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck let-alist merlin ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ocaml"; - license = lib.licenses.free; - }; - }) {}; - flycheck-package = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , package-lint }: - melpaBuild { - pname = "flycheck-package"; - ename = "flycheck-package"; - version = "20161111.1451"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flycheck-package"; - rev = "afe8a49343d90d08ee72ac6f993d424dcc39cc38"; - sha256 = "19pz8h01yacfqsyh5940pam6vigvavsqg6qd84994d7mmzl534qa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17ec69c9f192625e74dfadf03b11d0d7dc575e7/recipes/flycheck-package"; - sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; - name = "recipe"; - }; - packageRequires = [ flycheck package-lint ]; - meta = { - homepage = "https://melpa.org/#/flycheck-package"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pact = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , pact-mode }: - melpaBuild { - pname = "flycheck-pact"; - ename = "flycheck-pact"; - version = "20180920.1352"; - src = fetchFromGitHub { - owner = "kadena-io"; - repo = "flycheck-pact"; - rev = "0e10045064ef89ec8b6f5a473073d47b976a2ca3"; - sha256 = "072jc0vrjg531ydk5bjrjpmbvdk81yw75jqjnvb7alkib6jn5f9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ffc77b2ddcd4f9c27a2306459cf2fcde7880e3e/recipes/flycheck-pact"; - sha256 = "1nxmh6p2id4cxzs7jxdrk88g8qmvk33nbzmrqhm7962iqizlvnrw"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck pact-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pact"; - license = lib.licenses.free; - }; - }) {}; - flycheck-perl6 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-perl6"; - ename = "flycheck-perl6"; - version = "20180509.1501"; - src = fetchFromGitHub { - owner = "hinrik"; - repo = "flycheck-perl6"; - rev = "b804702305d7a6e26f762ff98cfdeec2e9dd4cb7"; - sha256 = "0gys38rlx9lx35bia6nj7kfhz1v5xfrirgf8adwk7b2hfjazrsib"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f6ecdb2ce6bc74a27dca01ab4942778e986ac8f/recipes/flycheck-perl6"; - sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-perl6"; - license = lib.licenses.free; - }; - }) {}; - flycheck-phpstan = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , phpstan }: - melpaBuild { - pname = "flycheck-phpstan"; - ename = "flycheck-phpstan"; - version = "20190227.842"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpstan.el"; - rev = "1151b8d418af532fdf0732b9793b479c64a364e3"; - sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a2b6cc39957e6d7185bd2bdfa3755e5b1f474a6/recipes/flycheck-phpstan"; - sha256 = "1dr0h6cnwxdjmhlackv4gpsljwzs27gk41p8q99r0m44dada9gaf"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck phpstan ]; - meta = { - homepage = "https://melpa.org/#/flycheck-phpstan"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pkg-config = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "flycheck-pkg-config"; - ename = "flycheck-pkg-config"; - version = "20180430.1543"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "flycheck-pkg-config"; - rev = "e72e4c1b8153611ed82695673af84096f4d52795"; - sha256 = "07zyrbib9qzy4kj3p7kljcfi53qhb28nf0sjhhkqzdj09iv2k9wf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b2e88f2f126c9ff8b4261d6adb4c0d8d3049f33/recipes/flycheck-pkg-config"; - sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6"; - name = "recipe"; - }; - packageRequires = [ dash flycheck s ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pkg-config"; - license = lib.licenses.free; - }; - }) {}; - flycheck-plantuml = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , plantuml-mode }: - melpaBuild { - pname = "flycheck-plantuml"; - ename = "flycheck-plantuml"; - version = "20171017.1811"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-plantuml"; - rev = "183be89e1dbba0b38237dd198dff600e0790309d"; - sha256 = "1fbdbpwrlkvbgv693ndr3zamkf3gp28v94jg911fsav8bk08f6pq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/65f050860a0efda8cf472c2945b79a0a57651556/recipes/flycheck-plantuml"; - sha256 = "01l22isiym635471628b951n025ls3lm6gfhfp6f8n8w7v1sb986"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck plantuml-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-plantuml"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pony = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pony"; - ename = "flycheck-pony"; - version = "20190226.1835"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "flycheck-pony"; - rev = "9356cbcd404eaf381ab0c4b0f9c47232f723fa7e"; - sha256 = "1rzz3cl0pxn3hhrkxcdiy17wl4dzbn8kxm3hq90zmhag1gbfy4zz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2bcb82f4ddb92243058c9ab1a67d4f7ef87b155/recipes/flycheck-pony"; - sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pony"; - license = lib.licenses.free; - }; - }) {}; - flycheck-popup-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flycheck-popup-tip"; - ename = "flycheck-popup-tip"; - version = "20170812.1651"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-popup-tip"; - rev = "ef86aad907f27ca076859d8d9416f4f7727619c6"; - sha256 = "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2269ee9532bb092756ae0c0693cb44b73820e8/recipes/flycheck-popup-tip"; - sha256 = "1j8pgljnxcbfh08qpbr9jkw56l7d6k8lmdcsjbi6jd7jmyqbqvnx"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck popup ]; - meta = { - homepage = "https://melpa.org/#/flycheck-popup-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pos-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "flycheck-pos-tip"; - ename = "flycheck-pos-tip"; - version = "20180610.915"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-pos-tip"; - rev = "909113977d37739387c7f099d74a724cfe6efcec"; - sha256 = "0rfbhvl8n656a9d58bjyzki9r3si3ypylbyjn67rnla4jzzi22v8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip"; - sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck pos-tip ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pos-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , posframe }: - melpaBuild { - pname = "flycheck-posframe"; - ename = "flycheck-posframe"; - version = "20190327.411"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "flycheck-posframe"; - rev = "d1591cfaef04c67e1a01a32833f140ab27c33773"; - sha256 = "1c1fxl8l8z5b6k4hb2bk6n6w4diyg9sz04qbqq91qls8rwnnvy0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/124f2a7833e3386a0bf57c8111d782ae7a7ee02e/recipes/flycheck-posframe"; - sha256 = "02ym2isn761w2nsfxiqjh0jk4md9wy3hk9na2aw7pyycm5cgmfwp"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck posframe ]; - meta = { - homepage = "https://melpa.org/#/flycheck-posframe"; - license = lib.licenses.free; - }; - }) {}; - flycheck-prospector = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-prospector"; - ename = "flycheck-prospector"; - version = "20180523.2150"; - src = fetchFromGitHub { - owner = "chocoelho"; - repo = "flycheck-prospector"; - rev = "d5b81adb5c8261b935baf0a614dd4b776280392e"; - sha256 = "1g66gm538dwkvyl5rb199rnp5y8knrr3697m2qi0x0f18l072cg6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45475a408ff287f4f9d2a8bc729b995635579c84/recipes/flycheck-prospector"; - sha256 = "1z028qi40pk7jh0m8w332kr5qi6k6sw1kbymqdxxfakh1976fww9"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-prospector"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pycheckers = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pycheckers"; - ename = "flycheck-pycheckers"; - version = "20190523.1111"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "flycheck-pycheckers"; - rev = "7969168b1367da6c48bf79f59ea0db0240ed66d9"; - sha256 = "0xy0y0ywxfc422k4cdv5phh70fi77f6rn9imdbdkkd64x4lfahqr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers"; - sha256 = "18ski3bp8x33589pc273i5ia3hffvlb4czrd97wkfgr4k59ww6yq"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pycheckers"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pyflakes = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pyflakes"; - ename = "flycheck-pyflakes"; - version = "20170330.1611"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "flycheck-pyflakes"; - rev = "61b045939e3743b2162b7e4e73249c66fc2b8f65"; - sha256 = "03p0666vpprp6ijkvx9ypaw58bdq42gh533270plv2k5l8r22cl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05e6f3041151006e44f91e5bcbaa7be3750fb403/recipes/flycheck-pyflakes"; - sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pyflakes"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pyre = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pyre"; - ename = "flycheck-pyre"; - version = "20190215.422"; - src = fetchFromGitHub { - owner = "linnik"; - repo = "flycheck-pyre"; - rev = "0560122caae207d99d8af1ac2b4e5d6f6a1ce444"; - sha256 = "0f58127197q6yfylz53nigyn7v91pcsdd91ywfgq5lrl0f5fvmdy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aca6199ebfbf93f844c8f7a3db785dec079ef8af/recipes/flycheck-pyre"; - sha256 = "0h7ccxw9ymlmr2vq3p61cbfxfcjs8pzm73654s13c18rbl6dzfxv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pyre"; - license = lib.licenses.free; - }; - }) {}; - flycheck-rtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "flycheck-rtags"; - ename = "flycheck-rtags"; - version = "20180619.124"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "5dbb594a7202c4a2e84329cf821bd28bfbea5ae3"; - sha256 = "0x210bqv7618g85nzjy4x9gy31qcbjgppmk8zbpmqk59f2bp7bac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; - sha256 = "00v6shfs7piqapmyqyi0fk3182rcfa3p8wr2cm5vqlrana13kbw4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck rtags ]; - meta = { - homepage = "https://melpa.org/#/flycheck-rtags"; - license = lib.licenses.free; - }; - }) {}; - flycheck-rust = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-rust"; - ename = "flycheck-rust"; - version = "20190319.846"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-rust"; - rev = "a139cd53c5062697e9ed94ad80b803c37d999600"; - sha256 = "1fh6j5w2387nh2fwwjphkhq17cgj5m2q5k0fhidvgc2w65lzbr1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68d8cdf3d225b13ebbbe5ce81a01366f33266aed/recipes/flycheck-rust"; - sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-rust"; - license = lib.licenses.free; - }; - }) {}; - flycheck-soar = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-soar"; - ename = "flycheck-soar"; - version = "20181106.52"; - src = fetchFromGitHub { - owner = "tszg"; - repo = "flycheck-soar"; - rev = "d2f03a0af9b625a645f3194dc24cfeee94d92760"; - sha256 = "02ll2nw2x45nfmxdj1ps62jr663spy01vy8gfg1qh2rl1pjviwqw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15cae578c5ba5152be0726f046b5f2dc4719a387/recipes/flycheck-soar"; - sha256 = "14xpq3pdfwacmhl9x8fdzcsanpf6zljdzh6gwclw724k720acbdl"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-soar"; - license = lib.licenses.free; - }; - }) {}; - flycheck-stack = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-stack"; - ename = "flycheck-stack"; - version = "20160520.244"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "flycheck-stack"; - rev = "f04235e00998000ee2c305f5a3ee72bb5dbbc926"; - sha256 = "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b77f55989d11d1efacbad0fd3876dd27006f2679/recipes/flycheck-stack"; - sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf"; - name = "recipe"; - }; - packageRequires = [ flycheck haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-stack"; - license = lib.licenses.free; - }; - }) {}; - flycheck-status-emoji = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-status-emoji"; - ename = "flycheck-status-emoji"; - version = "20180330.1625"; - src = fetchFromGitHub { - owner = "liblit"; - repo = "flycheck-status-emoji"; - rev = "61e93ac41847d27b8eea3a334ced2d1783687b77"; - sha256 = "104zz9fihvd5klzdcaxsdmmfp0q5qisq5bbff48rfwdxnlp8dskr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5abd6aaa8d2bf55ae75cd217820763531f91958b/recipes/flycheck-status-emoji"; - sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/flycheck-status-emoji"; - license = lib.licenses.free; - }; - }) {}; - flycheck-swift = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-swift"; - ename = "flycheck-swift"; - version = "20170128.2149"; - src = fetchFromGitHub { - owner = "swift-emacs"; - repo = "flycheck-swift"; - rev = "c6c416a1b7a7d346e5c040e4e4065abc68d3a844"; - sha256 = "0wa60i99jh0dsks30jssg7l17bcmr6jzkwmkjg8brl756p593zp5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd99bea06079c4231363c37e3361bd9e5b1ba490/recipes/flycheck-swift"; - sha256 = "1s6rn4wyz9la6bw228jfxx8dxjyk5hf8r3vbmq0k808p772zki0z"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-swift"; - license = lib.licenses.free; - }; - }) {}; - flycheck-swift3 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-swift3"; - ename = "flycheck-swift3"; - version = "20190420.1810"; - src = fetchFromGitHub { - owner = "GyazSquare"; - repo = "flycheck-swift3"; - rev = "811a765a0106bbdc8d6a721b22a2a97f3527df7c"; - sha256 = "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1fb8c731c118327dc0bbb726e046fec46bcfb82/recipes/flycheck-swift3"; - sha256 = "05yfrn42svcvdkr8mx16ii8llhzn33lxdawksjqiqg671s6fgdpa"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-swift3"; - license = lib.licenses.free; - }; - }) {}; - flycheck-swiftlint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-swiftlint"; - ename = "flycheck-swiftlint"; - version = "20180829.2040"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flycheck-swiftlint"; - rev = "65101873c4c9f8e7eac9471188b161eeddda1555"; - sha256 = "007n0jv5z159pw5bcqcycv6h31rl0z16m22yrhqi94yc14jlw5ma"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e2a979726507e974a0a19dfc2ca6884157025be/recipes/flycheck-swiftlint"; - sha256 = "1nwxv4l3ml9hlc8qf8a8x1bnnvdj80sb8nfbkcfiqwak315wihr4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-swiftlint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-tcl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-tcl"; - ename = "flycheck-tcl"; - version = "20180327.559"; - src = fetchFromGitHub { - owner = "nwidger"; - repo = "flycheck-tcl"; - rev = "7ca23f4673e178b9f5dcc8a82b86cf05b15d7236"; - sha256 = "17mmj0yx7d7cwyq35ll1lw4j0yyha172375apvanrkpgpzjpnvrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fafc86df6c15348711f16302bb86c0ee08c08454/recipes/flycheck-tcl"; - sha256 = "0rmc7rk0n4mgk11jgza1dn1nkjyi7rqs79d3p0cj1081znyj56f3"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-tcl"; - license = lib.licenses.free; - }; - }) {}; - flycheck-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flycheck-tip"; - ename = "flycheck-tip"; - version = "20171020.348"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "flycheck-tip"; - rev = "a8ea6c905e8ad2d0684a17f7e78ba11e8598e85d"; - sha256 = "12igqdgy93s02mv9zik5x98x3dzk654w6j6n2mkbzipfgfwq6nms"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/024f1e588e94014734fa252ee7bdb00b4991ede9/recipes/flycheck-tip"; - sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck popup ]; - meta = { - homepage = "https://melpa.org/#/flycheck-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-title = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-title"; - ename = "flycheck-title"; - version = "20170216.1546"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "flycheck-title"; - rev = "6faea67be8661faf8152217869d16e993cc2bc49"; - sha256 = "08b2cq5bzmq9aa8b8glx5js2nhfpgdsd0r2sgvi0ij937yz8lf37"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2996b70645cd6fd093e3b31b9586ce5acb036cf6/recipes/flycheck-title"; - sha256 = "1cxid9qmzy8pl8qkvr6kgvfqm05pjw8cxpz66x619hbkw2vr7sza"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-title"; - license = lib.licenses.free; - }; - }) {}; - flycheck-vale = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-vale"; - ename = "flycheck-vale"; - version = "20180928.42"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "flycheck-vale"; - rev = "131dacdf55e2b469d64543e4ae373aa93ec40a4f"; - sha256 = "07927h7d8qpf7wi6ish8lh15x414qz4298bik3p7vgls7qr8di4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7693eeb536e601589b49f96d0e2734cd08fad4f2/recipes/flycheck-vale"; - sha256 = "1ny30q81hq62s178rj3jjwsf9f3988dd6pl82r0vq53z3asnsxyd"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/flycheck-vale"; - license = lib.licenses.free; - }; - }) {}; - flycheck-vdm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , vdm-mode }: - melpaBuild { - pname = "flycheck-vdm"; - ename = "flycheck-vdm"; - version = "20190304.39"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "103993147b24325ef68099d087dce9ac501f02f9"; - sha256 = "1amwm9m6d0z5pjkp9ng8xma57058br3fvnhk64placlln6fkajbz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f246b9dcf7915a845b9e2cd44cc1a0833b412c8f/recipes/flycheck-vdm"; - sha256 = "15ng1l8gfp8iz50yb5d39dy57763gd2x8j6z6rz0byiykgxhl9zg"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck vdm-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-vdm"; - license = lib.licenses.free; - }; - }) {}; - flycheck-xcode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-xcode"; - ename = "flycheck-xcode"; - version = "20180121.2251"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flycheck-xcode"; - rev = "6147ab777e2c08e4f5ffdbd85d3013ca700fa835"; - sha256 = "1jwd7xhg7gfjppimf1kxwxwsgzkqc8w86wgp7kqphp79ydd4jgp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc66203fdd1721bf1a6f8dcec51694c57d2e690/recipes/flycheck-xcode"; - sha256 = "0n86hn6rf0mrx1385pwxgkx28xrbnksarlzb07h9d63s0yb5shaa"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-xcode"; - license = lib.licenses.free; - }; - }) {}; - flycheck-yamllint = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-yamllint"; - ename = "flycheck-yamllint"; - version = "20170325.1035"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "flycheck-yamllint"; - rev = "110d310fae409e1869b82c34e60936bd3783dc69"; - sha256 = "0xfmnwmc26wzfw1r4q70yxzm9qqvcpxx953pvssavrxfyg3bdgf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/932ee0a1f13a52d53102b90911da79145208cbb5/recipes/flycheck-yamllint"; - sha256 = "1q2sy0hsbnwdlwq99wk8n5gi9fd8bs4jvi859np8bylbhhb3kj8m"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-yamllint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-yang = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , yang-mode }: - melpaBuild { - pname = "flycheck-yang"; - ename = "flycheck-yang"; - version = "20180312.1131"; - src = fetchFromGitHub { - owner = "andaru"; - repo = "flycheck-yang"; - rev = "47881fc42ef0163c47064b72b5d6dbef4f83d778"; - sha256 = "0bkbl1pas44bl6s3xjdb5zjbd6bmfjk39md5ds1ix4wchnkjm3iy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e58b4f4294d11424918b399898c0044f5b76ab14/recipes/flycheck-yang"; - sha256 = "0agfmirjwlz13aq1jh94agav0y1rxkyhj7mngdgys7mwjxy0ac9h"; - name = "recipe"; - }; - packageRequires = [ flycheck yang-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-yang"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ycmd = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , ycmd }: - melpaBuild { - pname = "flycheck-ycmd"; - ename = "flycheck-ycmd"; - version = "20181015.2318"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "ef87d020d3314efbac2e8925c115d0ac5c128c2a"; - sha256 = "143xc0ji8s3par4jfz8fxwrxqwfhndc1w8vrzpsycxc36mryzy26"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-ycmd"; - sha256 = "114k5y3jy470g5zzhxy03036gcayc08n6g61cidlr2zlyq80glyr"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck let-alist ycmd ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ycmd"; - license = lib.licenses.free; - }; - }) {}; - flymake-coffee = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-coffee"; - ename = "flymake-coffee"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-coffee"; - rev = "dee295acf30820ed15fe0de17137d50bc27fc80c"; - sha256 = "0706jbi3jcmffxmcpvh8w3007q8sh48kgrcjip5c9hhfqpagayld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-coffee"; - sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-coffee"; - license = lib.licenses.free; - }; - }) {}; - flymake-cppcheck = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-cppcheck"; - ename = "flymake-cppcheck"; - version = "20140415.557"; - src = fetchFromGitHub { - owner = "senda-akiha"; - repo = "flymake-cppcheck"; - rev = "9554f504d425a04fa6a875f7e3179bc7cf07dd03"; - sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a83d56c6e150de5d4fdbd89f271f18e5304afd8/recipes/flymake-cppcheck"; - sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-cppcheck"; - license = lib.licenses.free; - }; - }) {}; - flymake-css = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-css"; - ename = "flymake-css"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-css"; - rev = "de090163ba289910ceeb61b13368ce42d0f2dfd8"; - sha256 = "18rqzah8p7mqwkddaav1d4r146amvn8jppazvsvc5vs01syj83m9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-css"; - sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-css"; - license = lib.licenses.free; - }; - }) {}; - flymake-cursor = callPackage ({ fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-cursor"; - ename = "flymake-cursor"; - version = "20120322.1057"; - src = fetchFromGitHub { - owner = "flymake"; - repo = "emacs-flymake-cursor"; - rev = "5cac5045398b1436ceb143d48961b50d38ae1396"; - sha256 = "0xaq8zfd90kqqwg8ik081jblrdyj6p3fh2xpf6a4sdj8826ry93v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a02597edee67c84bef259d7fc5c5b61bd39a5b86/recipes/flymake-cursor"; - sha256 = "0v5abg3h9kmybr0cyr7hqy4rn88h84snzxbsmqcbjw24s10v9p0s"; - name = "recipe"; - }; - packageRequires = [ flymake ]; - meta = { - homepage = "https://melpa.org/#/flymake-cursor"; - license = lib.licenses.free; - }; - }) {}; - flymake-diagnostic-at-point = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flymake-diagnostic-at-point"; - ename = "flymake-diagnostic-at-point"; - version = "20180815.304"; - src = fetchFromGitHub { - owner = "meqif"; - repo = "flymake-diagnostic-at-point"; - rev = "379616b1c6f5ebeaf08fbe54ae765008a78b3be7"; - sha256 = "1wbzrxxz5z1xg2lwmqgglvixxf1xm3gl6mdyj9idsbym05azm3hg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7ae169ca3b59d3b876d52148dac573b7f083ac3/recipes/flymake-diagnostic-at-point"; - sha256 = "0cdxb9w5sq6z6wramj1bss5vwqzxkmdyzb1di39rghyh243cdrzx"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/flymake-diagnostic-at-point"; - license = lib.licenses.free; - }; - }) {}; - flymake-easy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-easy"; - ename = "flymake-easy"; - version = "20140818.55"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-easy"; - rev = "09deafbcb5f094de8465c2bbfe270ba0f517f515"; - sha256 = "1ld0g3hrbplmw3xgg6jg032hncnlxyc3hid4vn38lkcj3y7ls61b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flymake-easy"; - sha256 = "0y7nm2p5x1f0nqfj73zr6xzbpf4wrzx8sn8154yx0qm0qh3id39v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-easy"; - license = lib.licenses.free; - }; - }) {}; - flymake-elixir = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-elixir"; - ename = "flymake-elixir"; - version = "20130810.717"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "flymake-elixir"; - rev = "3810566cffe35d04cc3f01e27fe397d68d52f802"; - sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05dae578f0dd6b5185f666431b3f36aad3aeffa1/recipes/flymake-elixir"; - sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-elixir"; - license = lib.licenses.free; - }; - }) {}; - flymake-eslint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-eslint"; - ename = "flymake-eslint"; - version = "20190520.2111"; - src = fetchFromGitHub { - owner = "orzechowskid"; - repo = "flymake-eslint"; - rev = "d4be92ea779ea333b599fd125817f943a676a63a"; - sha256 = "1x0ipsg0gd5lflx7kyyaz7zv6xnjzmhh1k32f01qr69zarf31nw0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b607c3b859f4564e316532a256a299c73e5f6f0/recipes/flymake-eslint"; - sha256 = "0avirxxgjk3k8hqpnhay83ij7s3xr4ha4wz5lji1zyx6f6im6gyb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-eslint"; - license = lib.licenses.free; - }; - }) {}; - flymake-gjshint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-gjshint"; - ename = "flymake-gjshint"; - version = "20130327.532"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "flymake-gjshint-el"; - rev = "71495ee5303de18293decd57ab9f9abdbaabfa05"; - sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4673825b15519e9eb2204ade5cc045751771c52/recipes/flymake-gjshint"; - sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-gjshint"; - license = lib.licenses.free; - }; - }) {}; - flymake-go = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-go"; - ename = "flymake-go"; - version = "20150714.33"; - src = fetchFromGitHub { - owner = "robert-zaremba"; - repo = "flymake-go"; - rev = "ae83761aa908c1a50ff34af04f00dcc46bca2ce9"; - sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b42b8b34388803439c249f16fdf14257ef182ed6/recipes/flymake-go"; - sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-go"; - license = lib.licenses.free; - }; - }) {}; - flymake-google-cpplint = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-google-cpplint"; - ename = "flymake-google-cpplint"; - version = "20140205.525"; - src = fetchFromGitHub { - owner = "senda-akiha"; - repo = "flymake-google-cpplint"; - rev = "5d36ff947d4cdcc3ac5e7f48e543fe0be949ba72"; - sha256 = "18a7l1wmgxqqzr9mzg5rb9626rwyifmiw34chg9jchfkm8wbz0fv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8e5c2b63e80f0411860fde38bf694df3bfc8f/recipes/flymake-google-cpplint"; - sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-google-cpplint"; - license = lib.licenses.free; - }; - }) {}; - flymake-gradle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-gradle"; - ename = "flymake-gradle"; - version = "20190314.1933"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flymake-gradle"; - rev = "dbedd29b78d4828ef57d4de20867be5df3eaab99"; - sha256 = "0g6h09lz68b4dvqv5sksr7gkab0599fbm07xnc2mk01lzbas43b0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cccc8537324e0faf7fd35325e3ccd3b2e05771a/recipes/flymake-gradle"; - sha256 = "00wpymzw2j2zx37nq8qf77pk04r0hxlmlwykcj6yzq9bfgi75wnf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-gradle"; - license = lib.licenses.free; - }; - }) {}; - flymake-haml = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-haml"; - ename = "flymake-haml"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-haml"; - rev = "22a81e8484734552d461e7ae7305664dc244447e"; - sha256 = "0pgp2gl3wdwrzcik5b5csn4qp8iv6pc51brx8p7jrwn7bz4lkb82"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-haml"; - sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-haml"; - license = lib.licenses.free; - }; - }) {}; - flymake-haskell-multi = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-haskell-multi"; - ename = "flymake-haskell-multi"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-haskell-multi"; - rev = "b564a94312259885b1380272eb867bf52a164020"; - sha256 = "1h21hy5fjwa5qxl31rq3jjp3wwkipdwaliq0ci184rw48kw51xjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd/recipes/flymake-haskell-multi"; - sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-haskell-multi"; - license = lib.licenses.free; - }; - }) {}; - flymake-hlint = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-hlint"; - ename = "flymake-hlint"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-hlint"; - rev = "f910736b26784efc9a2fa29503f45c1f1dd0aa38"; - sha256 = "157f2l6hllwl12h8f502rq2kl33s202k9bcyfy2cmnn6vhky1b8s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17820f32d46e845cc44b237d0bfd5c2d898721de/recipes/flymake-hlint"; - sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-hlint"; - license = lib.licenses.free; - }; - }) {}; - flymake-jshint = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-jshint"; - ename = "flymake-jshint"; - version = "20140319.1500"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "flymake-jshint.el"; - rev = "79dd554c227883c487db38ac111306c8d5382c95"; - sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/144511ce3378b468751b1ee627b77a2d22fe8dfc/recipes/flymake-jshint"; - sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-jshint"; - license = lib.licenses.free; - }; - }) {}; - flymake-jslint = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-jslint"; - ename = "flymake-jslint"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-jslint"; - rev = "8edb82be605542b0ef62d38d818adcdde335eecb"; - sha256 = "0i6bqpbibsbqhpqfy9zl0awiqkmddi3q8xlrslcjd429f0g5f1ad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-jslint"; - sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-jslint"; - license = lib.licenses.free; - }; - }) {}; - flymake-json = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-json"; - ename = "flymake-json"; - version = "20180511.211"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-json"; - rev = "ae58795f948402e987cda4c15f10354f8ec2d0fd"; - sha256 = "1hr35xxj6w34h7xs13n6sxs69j3z3i0r1qim3hgyiym797xjsa0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acb0a4d29159aa6d74f754911f63152dac3425bd/recipes/flymake-json"; - sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-json"; - license = lib.licenses.free; - }; - }) {}; - flymake-ktlint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-ktlint"; - ename = "flymake-ktlint"; - version = "20180830.2046"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flymake-ktlint"; - rev = "bea8bf350802c06756efd4e6dfba65f31dc41d78"; - sha256 = "0sycdd3har8rxg8jm55nl25g8f41y3rsnsn4sblb7pbz5x5i6ixc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b2e630e5e16044fb8ffe251f4fa58fb8f3d6bb9/recipes/flymake-ktlint"; - sha256 = "07v90pkhmrz59m6hf1lzxq4h3kk4qblihw4qgz5phbj4l5pahivd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-ktlint"; - license = lib.licenses.free; - }; - }) {}; - flymake-less = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , less-css-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-less"; - ename = "flymake-less"; - version = "20151110.2338"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-less"; - rev = "32d3c28a9a5c52b82d1741ff9d715013b6498421"; - sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4eae8b7b7d81ebf4d85f38fc3a17b4bc918318/recipes/flymake-less"; - sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; - name = "recipe"; - }; - packageRequires = [ flymake-easy less-css-mode ]; - meta = { - homepage = "https://melpa.org/#/flymake-less"; - license = lib.licenses.free; - }; - }) {}; - flymake-lua = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-lua"; - ename = "flymake-lua"; - version = "20170128.1754"; - src = fetchFromGitHub { - owner = "sroccaserra"; - repo = "flymake-lua"; - rev = "dcc32b62a285215898ae774ba63dbda0656f6f53"; - sha256 = "07my1w3cdj9iq2f9jfh04m5zivig7b97kha3ajjlx9avss976baq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63889df90a8cd4a39871cc43ccc559eff7b8dd5f/recipes/flymake-lua"; - sha256 = "05q6bifr1ywirk6sdn0pr812nlrzsi79bpbgn6ay4jyzmhhfi9z0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-lua"; - license = lib.licenses.free; - }; - }) {}; - flymake-perlcritic = callPackage ({ fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-perlcritic"; - ename = "flymake-perlcritic"; - version = "20120328.114"; - src = fetchFromGitHub { - owner = "flymake"; - repo = "emacs-flymake-perlcritic"; - rev = "0692d6ad5495f6e5438bde0a10345829b8e1def8"; - sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/flymake-perlcritic"; - sha256 = "1i0bc81cby2nsala2mhghzv7clhbf1gpp54vdxiq2wdanqy25vmk"; - name = "recipe"; - }; - packageRequires = [ flymake ]; - meta = { - homepage = "https://melpa.org/#/flymake-perlcritic"; - license = lib.licenses.free; - }; - }) {}; - flymake-php = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-php"; - ename = "flymake-php"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-php"; - rev = "c045d01e002ba5e09b05f40e25bf5068d02126bc"; - sha256 = "03fk8kzlwbs9k91ra91r7djxlpv5mhbha33dnyz50sqwa52cg8ck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-php"; - sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-php"; - license = lib.licenses.free; - }; - }) {}; - flymake-phpcs = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-phpcs"; - ename = "flymake-phpcs"; - version = "20140712.2331"; - src = fetchFromGitHub { - owner = "senda-akiha"; - repo = "flymake-phpcs"; - rev = "a4d383474e055e554aaf1cd617055d5d7181aa50"; - sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e4d444198f593cfb03c7ca84f3e90db13ef5a01/recipes/flymake-phpcs"; - sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-phpcs"; - license = lib.licenses.free; - }; - }) {}; - flymake-puppet = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-puppet"; - ename = "flymake-puppet"; - version = "20170731.2254"; - src = fetchFromGitHub { - owner = "benprew"; - repo = "flymake-puppet"; - rev = "9579e5c736cb890195464fabf51df113313de88d"; - sha256 = "1bk16l8rbvrwmcd0zd2yg8xmfn7b036716niy21wfizmar0pk7p7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/302dbe34e7949da9c65e9c7bf2ab924db91b968f/recipes/flymake-puppet"; - sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-puppet"; - license = lib.licenses.free; - }; - }) {}; - flymake-python-pyflakes = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-python-pyflakes"; - ename = "flymake-python-pyflakes"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-python-pyflakes"; - rev = "1d65c26bf65a5dcbd29fcd967e2feb90e1e7a33d"; - sha256 = "0hsvw6rxg3k1ymrav0bf5q3siqr9v2jp4c4h1f98szrj2lp200fm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49091c0eca4158b80269b6ff5f7f3fc8e981420b/recipes/flymake-python-pyflakes"; - sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-python-pyflakes"; - license = lib.licenses.free; - }; - }) {}; - flymake-racket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-racket"; - ename = "flymake-racket"; - version = "20180911.1809"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "flymake-racket"; - rev = "7900d9c1a34a55ca281cc997e9620f5f31cc098c"; - sha256 = "10iygb5wmdqc2fk398l918bz56myd858h6xvgd8ml1av7v5x3zmp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67f2b469ea8df6d0db6b9ece91f544c0e7dd3ab2/recipes/flymake-racket"; - sha256 = "173dyn8bxggyh0g97gg5f0si3905116i3k6s3islsblgrz00gjcn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-racket"; - license = lib.licenses.free; - }; - }) {}; - flymake-ruby = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-ruby"; - ename = "flymake-ruby"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-ruby"; - rev = "6c320c6fb686c5223bf975cc35178ad6b195e073"; - sha256 = "0hzyxhg6y1rknvgj2ycivwrlrw7fznw9jrin5n9z627mzpjpfcnk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-ruby"; - sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-ruby"; - license = lib.licenses.free; - }; - }) {}; - flymake-rust = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-rust"; - ename = "flymake-rust"; - version = "20170729.1439"; - src = fetchFromGitHub { - owner = "jxs"; - repo = "flymake-rust"; - rev = "2f42d1f2dad73ec9de460eda6176e3ab25c446f0"; - sha256 = "02fgkv9hxwrv8n5h6izb5jyjcpazlf86pjjj4zkv1ycpa6gyzzwn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/flymake-rust"; - sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-rust"; - license = lib.licenses.free; - }; - }) {}; - flymake-sass = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-sass"; - ename = "flymake-sass"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-sass"; - rev = "2de28148e92deb93bff3d55fe14e7c67ac476056"; - sha256 = "05v83l05knqv2inharmhjvzmjskjlany7dnwp5dz44bvy0jhnm39"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-sass"; - sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-sass"; - license = lib.licenses.free; - }; - }) {}; - flymake-shell = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-shell"; - ename = "flymake-shell"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-shell"; - rev = "a16cf453056b9849cc7c912bb127fb0b08fc6dab"; - sha256 = "1ki0zk5ijfkf4blavl62b55jnjzxw2b7blaxg51arpvvbflqmmlh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-shell"; - sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-shell"; - license = lib.licenses.free; - }; - }) {}; - flymake-shellcheck = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-shellcheck"; - ename = "flymake-shellcheck"; - version = "20181213.1624"; - src = fetchFromGitHub { - owner = "federicotdn"; - repo = "flymake-shellcheck"; - rev = "ee240f2177510ffadbb21220e2b2376edff05020"; - sha256 = "1nrpgxwkybz7wd0751j9224fvg0lfmkdxqac39mlbzx8ypk6sy3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8dccb106ff6c9cb4b14440be9026c3e427dddff2/recipes/flymake-shellcheck"; - sha256 = "1gvm4sh1sga3gkkg0zi7ynvp9b09sx16cclj2qzawmgfv2c111vy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-shellcheck"; - license = lib.licenses.free; - }; - }) {}; - flymake-solidity = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-solidity"; - ename = "flymake-solidity"; - version = "20170804.2344"; - src = fetchFromGitHub { - owner = "kootenpv"; - repo = "flymake-solidity"; - rev = "48bfe9525f764d8a68cc0270905dbf45bfd00bb8"; - sha256 = "0v8sf5m0mygqahjyadxgffdf7p59wb0qnghyxajhc69sbg58hnnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b13f57b77f6648336a049a8dda37757d4dafd90/recipes/flymake-solidity"; - sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-solidity"; - license = lib.licenses.free; - }; - }) {}; - flymake-vala = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-vala"; - ename = "flymake-vala"; - version = "20150325.2231"; - src = fetchFromGitHub { - owner = "daniellawrence"; - repo = "flymake-vala"; - rev = "c3674f461fc84fb0300cd3a562fb903a59782745"; - sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flymake-vala"; - sha256 = "1fs4alyf3dckdf1pm6vgh4wjpl22wrlhfx9nv072l0dg48zgyw16"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-vala"; - license = lib.licenses.free; - }; - }) {}; - flymake-vnu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-vnu"; - ename = "flymake-vnu"; - version = "20181127.1816"; - src = fetchFromGitHub { - owner = "theneosloth"; - repo = "flymake-vnu"; - rev = "7c4ab9d12611756ad5a80d866890b2f9b73fb611"; - sha256 = "1jzdypfbvdbm9z6ankl35bzlpf32iymzlvxmdykddzwzbhkj1npf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cfb4c70ebb75088ef6fb39efde91429802b4671/recipes/flymake-vnu"; - sha256 = "05i6sfylg716cr0k0hyvkmag25qcqh51plljv6sw8250fwxwn0xn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-vnu"; - license = lib.licenses.free; - }; - }) {}; - flymake-yaml = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-yaml"; - ename = "flymake-yaml"; - version = "20130423.848"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "flymake-yaml"; - rev = "0dd11eed29fe4054ff5b4e06e2c39b4d925d6aae"; - sha256 = "1z6x4hkawjpch73lz2g4wcab1pbhg43wp8pmfcnnljy6jp3bmy2b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/888bcbcb24866abd990abd5b467461a1e1fc13fa/recipes/flymake-yaml"; - sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-yaml"; - license = lib.licenses.free; - }; - }) {}; - flymd = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymd"; - ename = "flymd"; - version = "20160617.514"; - src = fetchFromGitHub { - owner = "mola-T"; - repo = "flymd"; - rev = "84d5a68bcfed4a295952c33ffcd11e880978d9d7"; - sha256 = "0j2mmr9f0d3zkhb92zc820iw4vkz958rm3ca7l9k3gx37cc4sn2l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07e4121f4cfaf4c33828f84b6b06f9cf2b64a0a2/recipes/flymd"; - sha256 = "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/flymd"; - license = lib.licenses.free; - }; - }) {}; - flyparens = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flyparens"; - ename = "flyparens"; - version = "20140723.1146"; - src = fetchFromGitHub { - owner = "jiyoo"; - repo = "flyparens"; - rev = "af9b8cfd647d0e5f97684d613dc2eea7cfc19398"; - sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c4565ae5b84eb8733cb7fd28cf6a087fd1fedab/recipes/flyparens"; - sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flyparens"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct"; - ename = "flyspell-correct"; - version = "20190408.310"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "a443ba5f9037df1f1fef8a5fa721deafc2427b58"; - sha256 = "1mvhlm0zrq0dxsgsapy0yc128yw2xbjb8lgsnyqhvagqm36rh5fd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa06fbe3bc40ae5e3f6d10dee93a9d49e9288ba5/recipes/flyspell-correct"; - sha256 = "0d2205h234na9s942s83yvkq89l9w9jnl5yfrxkkdiq8pw0dvymd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flyspell-correct"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-helm = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct-helm"; - ename = "flyspell-correct-helm"; - version = "20181205.1132"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "2f5548ded6991b22ad291372640aecaf6eac7a39"; - sha256 = "1xwm0kg3x403x5s2bg9f42qwbc9hq4x7lhqjw95q7jsbq5nq4kiy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-helm"; - sha256 = "18s2bzszy6x31avqg7j2lsll2cf4asb8njwhmx4mm215agack976"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct helm ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-helm"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-ivy = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct-ivy"; - ename = "flyspell-correct-ivy"; - version = "20181205.1132"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "2f5548ded6991b22ad291372640aecaf6eac7a39"; - sha256 = "1xwm0kg3x403x5s2bg9f42qwbc9hq4x7lhqjw95q7jsbq5nq4kiy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-ivy"; - sha256 = "1n5iyab6bj761w6vxncyqvqzwh9k60pzq5f2n00ifrz74pqs537i"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct ivy ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-ivy"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-popup = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flyspell-correct-popup"; - ename = "flyspell-correct-popup"; - version = "20181205.1132"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "2f5548ded6991b22ad291372640aecaf6eac7a39"; - sha256 = "1xwm0kg3x403x5s2bg9f42qwbc9hq4x7lhqjw95q7jsbq5nq4kiy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-popup"; - sha256 = "1fr8ajwldcl58i8xm31dz1mjwbi9f4q8s58x5jrqhqha0x4p4h9l"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct popup ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-popup"; - license = lib.licenses.free; - }; - }) {}; - flyspell-lazy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-lazy"; - ename = "flyspell-lazy"; - version = "20180224.1306"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "flyspell-lazy"; - rev = "3ebf68cc9eb10c972a2de8d7861cbabbbce69570"; - sha256 = "1n67y90vm041mz172gjqypw3b5za5f18sic54h7wz4a9naynwyb6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/flyspell-lazy"; - sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flyspell-lazy"; - license = lib.licenses.free; - }; - }) {}; - flyspell-popup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flyspell-popup"; - ename = "flyspell-popup"; - version = "20170529.115"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "flyspell-popup"; - rev = "29311849bfd253b9b689bf331860b4c4d3bd4dde"; - sha256 = "0x7jilwb0fgzsr7ma59sgd0d4122cl0hwzr28vi3z5s8wdab7nc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/186d00724137c055b521a5f5c54acf71c4b16c32/recipes/flyspell-popup"; - sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/flyspell-popup"; - license = lib.licenses.free; - }; - }) {}; - fm-bookmarks = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fm-bookmarks"; - ename = "fm-bookmarks"; - version = "20170104.916"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "fm-bookmarks.el"; - rev = "11dacfd16a926bfecba96a94c6b13e162c7717f7"; - sha256 = "0is4617ivga8qrw19y7fy883fgczzdxvrl15ja1dydzj2cbn5d97"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca020aff7f19cc150cd6968ae7c441372e240c2/recipes/fm-bookmarks"; - sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/fm-bookmarks"; - license = lib.licenses.free; - }; - }) {}; - fn = callPackage ({ cl-lib ? null - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fn"; - ename = "fn"; - version = "20170209.1804"; - src = fetchFromGitHub { - owner = "troyp"; - repo = "fn.el"; - rev = "fe65dc654d319e6fa9cef4d7eca0f8dd847b6a32"; - sha256 = "1j2rrwizafwramlzrjcsfv8xbz72qmiaa120cb1ri8wp6nyvhys0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d2929604b6dd21d6cf425643927a9c216801dc1/recipes/fn"; - sha256 = "0cb98rxdb6sd0kws6bc4pa536kiyw3yk0hlfqcm3ps81hcgqjhhn"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/fn"; - license = lib.licenses.free; - }; - }) {}; - focus = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "focus"; - ename = "focus"; - version = "20190317.1942"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "Focus"; - rev = "ab42b8779929beeb7878c7fb3d3ccd80d9327c7f"; - sha256 = "079v1syid7h2vr2ya6hs6hl0pgj60qdsw60mqw4cj2zllmkrkwj4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus"; - sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/focus"; - license = lib.licenses.free; - }; - }) {}; - focus-autosave-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "focus-autosave-mode"; - ename = "focus-autosave-mode"; - version = "20160519.1416"; - src = fetchFromGitHub { - owner = "Vifon"; - repo = "focus-autosave-mode.el"; - rev = "e89ed22aa4dfc76e1b844b202aedd468ad58814a"; - sha256 = "1c1mh96kghp5d22assm9kzxlp0cy7bws9yrqwwgaw3d72cba40k3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/focus-autosave-mode"; - sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/focus-autosave-mode"; - license = lib.licenses.free; - }; - }) {}; - foggy-night-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "foggy-night-theme"; - ename = "foggy-night-theme"; - version = "20190123.814"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "foggy-night-theme"; - rev = "14894e06ee5c6e14db36f2cb07387ee971c1736f"; - sha256 = "1rjhb8gjlnw002y8sjn2d976qdsjgvp9hsrlca1h5wmmkfha9knp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/65b3f5959241e601fdf9469e407d153cebcbe24c/recipes/foggy-night-theme"; - sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/foggy-night-theme"; - license = lib.licenses.free; - }; - }) {}; - fold-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-dwim"; - ename = "fold-dwim"; - version = "20140208.837"; - src = fetchFromGitHub { - owner = "emacsattic"; - repo = "fold-dwim"; - rev = "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b"; - sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62064e272a658d998b1ccf13dc3c2e3e454acade/recipes/fold-dwim"; - sha256 = "1k5186s69qahwbzvwq70af3bkcglls9a82c5jw5mdw3ic8k631sh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fold-dwim"; - license = lib.licenses.free; - }; - }) {}; - fold-dwim-org = callPackage ({ fetchFromGitHub - , fetchurl - , fold-dwim - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-dwim-org"; - ename = "fold-dwim-org"; - version = "20131203.551"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "fold-dwim-org"; - rev = "c09bb2b46d65afbd1d0febc6fded7495be7a3037"; - sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97d22d9feaf521ce576b80d2933ecbc166c1dbe7/recipes/fold-dwim-org"; - sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; - name = "recipe"; - }; - packageRequires = [ fold-dwim ]; - meta = { - homepage = "https://melpa.org/#/fold-dwim-org"; - license = lib.licenses.free; - }; - }) {}; - fold-this = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-this"; - ename = "fold-this"; - version = "20190605.1005"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "fold-this.el"; - rev = "59bbba129a5c3b2f179287af7296a20b30f3abfd"; - sha256 = "0n33paj20361xdkpvwysp53bpixkwawiy5xy9fvfjslk5lk4pa61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c/recipes/fold-this"; - sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fold-this"; - license = lib.licenses.free; - }; - }) {}; - folding = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "folding"; - ename = "folding"; - version = "20190524.932"; - src = fetchFromGitHub { - owner = "jaalto"; - repo = "project-emacs--folding-mode"; - rev = "a1361aa154b27bd4db2e1cfe6c3b81b4fc1fdc9a"; - sha256 = "0ghj0nw2zlrppsgl6x2nda9fj4w04rz6647v9823wxhfirrgnd5z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1912296b7879019bea5ba8353d511496e3a9ca2d/recipes/folding"; - sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/folding"; - license = lib.licenses.free; - }; - }) {}; - font-lock-profiler = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "font-lock-profiler"; - ename = "font-lock-profiler"; - version = "20170208.1208"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "font-lock-profiler"; - rev = "6e096458416888a4f63cca0d6bc5965a052753c8"; - sha256 = "186fvyfbakz54fr8j1l7cijvaklw96m1hfbjyw7nha08zc2m1hw5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b372892a29376bc3f0101ea5865efead41e1df26/recipes/font-lock-profiler"; - sha256 = "089r74jgi5gwjk9w1bc600vkj0p5ac84rgcl7aqcpqfbh9ylwcp9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/font-lock-profiler"; - license = lib.licenses.free; - }; - }) {}; - font-lock-studio = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "font-lock-studio"; - ename = "font-lock-studio"; - version = "20170127.1251"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "font-lock-studio"; - rev = "12c35967b31233e06946c70627aa3152dacfe261"; - sha256 = "0q0s6f5vi3sfifj7vq2nnsmgyyivp1sd3idk32858md5ri71qif0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8046fef1ac09cac1113dd5d0a6e1bf8e0c77bb1/recipes/font-lock-studio"; - sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/font-lock-studio"; - license = lib.licenses.free; - }; - }) {}; - font-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "font-utils"; - ename = "font-utils"; - version = "20150806.1051"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "font-utils"; - rev = "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3"; - sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2af0a1644116e89c5a705ffe0885ffe3ee874eaf/recipes/font-utils"; - sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/font-utils"; - license = lib.licenses.free; - }; - }) {}; - fontawesome = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fontawesome"; - ename = "fontawesome"; - version = "20170305.556"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-fontawesome"; - rev = "a743f80bfd53767ca9ee32da34c5ca032172a480"; - sha256 = "1mkyd2bbyd9avw2qaidkzkpv8i7lfiv9189bj49dxklg92823sip"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93b92f10802ceffc353db3d220dccfd47ea7fa41/recipes/fontawesome"; - sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fontawesome"; - license = lib.licenses.free; - }; - }) {}; - fontify-face = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fontify-face"; - ename = "fontify-face"; - version = "20180420.924"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "fontify-face"; - rev = "fc3325c98427523d86f0b411e0515cec51ac3d8a"; - sha256 = "1zfld9a17xhisfwhmfxvx1x63ksl6jg5g99kbivj4nq70sf26dpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72bd6750dd5a7d9ed6e408e690f76c260ffd7d9e/recipes/fontify-face"; - sha256 = "1w7xlkladqkbh7gpnkbi53a7k9p5wzma4y9jgwbc58hng9ggm1k0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fontify-face"; - license = lib.licenses.free; - }; - }) {}; - forecast = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "forecast"; - ename = "forecast"; - version = "20190124.1028"; - src = fetchFromGitHub { - owner = "cadadr"; - repo = "elisp"; - rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4"; - sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/forecast"; - sha256 = "0zng8xdficpfccq484pghzg8yylihcy8aq0vpxd1w6l40m2qf6zn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/forecast"; - license = lib.licenses.free; - }; - }) {}; - foreign-regexp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "foreign-regexp"; - ename = "foreign-regexp"; - version = "20180224.321"; - src = fetchFromGitHub { - owner = "k-talo"; - repo = "foreign-regexp.el"; - rev = "2ec5c44f27c2396ee487aa0ed77ae47d143fa5aa"; - sha256 = "0zww0q8x99sfwzf05pk7blsi3v8xiw4xgmlwnv1qlf2qxjkz1xhb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d05514013948a520cf0dcaf1dc2ef2300dd55e98/recipes/foreign-regexp"; - sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/foreign-regexp"; - license = lib.licenses.free; - }; - }) {}; - foreman-mode = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "foreman-mode"; - ename = "foreman-mode"; - version = "20170725.722"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "foreman-mode"; - rev = "22b3bb13134b617870ed1e888af739f4818be929"; - sha256 = "01qanhif24czcmhpdfkcjs019ss4r79f7y2wfbzmj6w4z7g3rikk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edeeb2b52ac70f8bdad38d3af62a7e434853c504/recipes/foreman-mode"; - sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f s ]; - meta = { - homepage = "https://melpa.org/#/foreman-mode"; - license = lib.licenses.free; - }; - }) {}; - forest-blue-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "forest-blue-theme"; - ename = "forest-blue-theme"; - version = "20160627.142"; - src = fetchFromGitHub { - owner = "olkinn"; - repo = "forest-blue-emacs"; - rev = "58096ce1a25615d2bae806c3775bae3e2775019d"; - sha256 = "1qm74cfnc13wgv0c3657nd3xbgn492r24m5m2i0ipnpq49cddccf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49b8686c31f863dde58d56cddf0baa7757a0c453/recipes/forest-blue-theme"; - sha256 = "1pcpwil883k4n5na7jpq7h8a8gw6mily1cj5n5rf25lqqnsz6fxa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/forest-blue-theme"; - license = lib.licenses.free; - }; - }) {}; - forge = callPackage ({ closql - , dash - , emacs - , emacsql-sqlite - , fetchFromGitHub - , fetchurl - , ghub - , let-alist - , lib - , magit - , markdown-mode - , melpaBuild - , transient }: - melpaBuild { - pname = "forge"; - ename = "forge"; - version = "20190529.113"; - src = fetchFromGitHub { - owner = "magit"; - repo = "forge"; - rev = "0e1ffa3380b4cc0c04a46ab159b377a39eede2c7"; - sha256 = "0hc460w00hp9ifdqka2399a55igx5nnhcdzsybh8jqwaz7vg4wwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58c5ca46286712b2aa43e07bb5dcbc8b5eb321e8/recipes/forge"; - sha256 = "1ykpjgbi2yak9ww54wnm1gxj9zff2ggldg9msg3219r8frzjcnjv"; - name = "recipe"; - }; - packageRequires = [ - closql - dash - emacs - emacsql-sqlite - ghub - let-alist - magit - markdown-mode - transient - ]; - meta = { - homepage = "https://melpa.org/#/forge"; - license = lib.licenses.free; - }; - }) {}; - form-feed = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "form-feed"; - ename = "form-feed"; - version = "20160102.1453"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "form-feed"; - rev = "799ca3e72b20a59a755a094b8cead57f654f3170"; - sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/468503d8103766e8196e977325e3bcb696219f6b/recipes/form-feed"; - sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/form-feed"; - license = lib.licenses.free; - }; - }) {}; - format-all = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "format-all"; - ename = "format-all"; - version = "20190606.153"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-format-all-the-code"; - rev = "f3ed09c430c80d17fcc34f130f32072177f4ef2b"; - sha256 = "0sb3nlwrf8gzj1p7ld1ahsl83d614y4fwy808r1md230g9cmafsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f53143ebd42ef5be793b86d50b23f0a57617d6cc/recipes/format-all"; - sha256 = "1kmnv8ypxvgm3p79cc1wk8032fh7bl1pripys180vw89r2748qs9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/format-all"; - license = lib.licenses.free; - }; - }) {}; - format-sql = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "format-sql"; - ename = "format-sql"; - version = "20150422.633"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "format-sql.el"; - rev = "97f475c245cd6c81a72a265678e2087cee66ac7b"; - sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/085c03104aa5a809a112525547eec51100b6fb09/recipes/format-sql"; - sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/format-sql"; - license = lib.licenses.free; - }; - }) {}; - format-table = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "format-table"; - ename = "format-table"; - version = "20181223.816"; - src = fetchFromGitHub { - owner = "functionreturnfunction"; - repo = "format-table"; - rev = "dfcae3a867e574577fc09a43b045889ff155b58f"; - sha256 = "1z9l1qmv5hw7bgchi5f68nzsz9arjwsazvd6viq6k6jmjzncli6q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e307ead5e8a291cb5dfe316f3b13144e71b6a1b7/recipes/format-table"; - sha256 = "1fwjilx0n9m8q0macq231i73zvridjfgqlhw7d1xblw4qp82rzvp"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/format-table"; - license = lib.licenses.free; - }; - }) {}; - forth-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "forth-mode"; - ename = "forth-mode"; - version = "20170527.1230"; - src = fetchFromGitHub { - owner = "larsbrinkhoff"; - repo = "forth-mode"; - rev = "522256d98d1a909983bcfd3ae20c65226d5929b6"; - sha256 = "110ycl8zkimy2818rhp3hk3mn2y25m695shdsy6dwxnrv90agss6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e46832079ee34c655835f06bf565ad5a5ab48ebd/recipes/forth-mode"; - sha256 = "0j60abi5qyy94f4as90zhmkb12jdirysdbq4ajs5h91vi6gb1g3i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/forth-mode"; - license = lib.licenses.free; - }; - }) {}; - fortpy = callPackage ({ auto-complete - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip - , python-environment }: - melpaBuild { - pname = "fortpy"; - ename = "fortpy"; - version = "20150715.1332"; - src = fetchFromGitHub { - owner = "rosenbrockc"; - repo = "fortpy-el"; - rev = "c614517e9396ef7a78be3b8786fbf303879cf43b"; - sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73b277e19f5f9f6605f3e9b7afac95152dac0599/recipes/fortpy"; - sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj"; - name = "recipe"; - }; - packageRequires = [ auto-complete epc pos-tip python-environment ]; - meta = { - homepage = "https://melpa.org/#/fortpy"; - license = lib.licenses.free; - }; - }) {}; - fortune-cookie = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fortune-cookie"; - ename = "fortune-cookie"; - version = "20181223.42"; - src = fetchFromGitHub { - owner = "andschwa"; - repo = "fortune-cookie"; - rev = "6c1c08f5be83822c0b762872ab25e3dbee96f333"; - sha256 = "0gnidiryappk9naazwv0dd3b1dyd284zkwnhy2b1z3zkc9i7awfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab0d56626c9bf847c693b4d9ddb08acee636054f/recipes/fortune-cookie"; - sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fortune-cookie"; - license = lib.licenses.free; - }; - }) {}; - fraktur-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fraktur-mode"; - ename = "fraktur-mode"; - version = "20160814.1927"; - src = fetchFromGitHub { - owner = "grettke"; - repo = "fraktur-mode"; - rev = "514baf5546aed12a0d9fa0fe66e87cdcc7843b08"; - sha256 = "169d9j7jk3li96fkn2sr257835flkcpml24l4bmzp8j3q57a7wxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/fraktur-mode"; - sha256 = "0hy2cncbgpp7ysp7qwfpj0r075rxrc77bmc70bw7hf8m1xiw124k"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/fraktur-mode"; - license = lib.licenses.free; - }; - }) {}; - frame-local = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frame-local"; - ename = "frame-local"; - version = "20180330.240"; - src = fetchFromGitHub { - owner = "sebastiencs"; - repo = "frame-local"; - rev = "51c0889602626e2dcc6f1c1a812b058bc96df03c"; - sha256 = "1ccq4iw1d4hy3irimci42knh66ix0vfzd3nm2wh63ygiaf1rjakw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/556179857e2b46f5a48b45e1b71cd460ffd9f7d7/recipes/frame-local"; - sha256 = "1lz4xmz67l99xbyg9gvgzl06yqh61xhr29vfhv68kq5pg5m881vs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/frame-local"; - license = lib.licenses.free; - }; - }) {}; - frame-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "frame-mode"; - ename = "frame-mode"; - version = "20190506.2200"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "frame-mode"; - rev = "bec163a7aecae0847817fb0e36413b0ab1e47d1f"; - sha256 = "06q0nc2wavmm9b1mnr4jl3lqia39l5x1hzzymja33rccnqzdmx8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e83da89eeee834cc14c0b128d55ef3634f76fd0/recipes/frame-mode"; - sha256 = "0ch58x07fnsx3v3r9cvcmqrqws121m8achjilhqk988hkg7y47c8"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/frame-mode"; - license = lib.licenses.free; - }; - }) {}; - frame-purpose = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frame-purpose"; - ename = "frame-purpose"; - version = "20190114.603"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "frame-purpose.el"; - rev = "78f978f13589ec5c5370187c008c8aa83e6e71b4"; - sha256 = "0zd981jsbf8fj5a3s7agbg32f6x3s7g87jlz13msgpgmkfhpx3gx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/033bd36a2419f4521944ccbfe8ce1eb56af20472/recipes/frame-purpose"; - sha256 = "0mvzryfakz5g8smsg4ciaa0bs0jp692rnjbahp9vl62ml5dp62fz"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/frame-purpose"; - license = lib.licenses.free; - }; - }) {}; - frame-tag = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frame-tag"; - ename = "frame-tag"; - version = "20170110.1606"; - src = fetchFromGitHub { - owner = "liangzan"; - repo = "frame-tag.el"; - rev = "73d6163568c7d32952175e663318b872f995a4e5"; - sha256 = "1ks8qw1vq30mjp7bpgrk3f11jhm9viibiap6zjk8r5rykjzl1ifv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e69899b53c158903b9b147754021acf1a6136eda/recipes/frame-tag"; - sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/frame-tag"; - license = lib.licenses.free; - }; - }) {}; - frames-only-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "frames-only-mode"; - ename = "frames-only-mode"; - version = "20190524.739"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "frames-only-mode"; - rev = "ce55b3ad3b3cb4c4253a0172bb8e9461814b2d64"; - sha256 = "1sw1s2k4wch32h5r0z6bfyiw4qcwjz93lq36ix17r968r505djc2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e628416ad9420b3ac5bbfacf930a86d98958ac8/recipes/frames-only-mode"; - sha256 = "17p04l16ghz9kk096xk37yjpi4rmla86gp7c8ysjf6q6nyh0608h"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/frames-only-mode"; - license = lib.licenses.free; - }; - }) {}; - frameshot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frameshot"; - ename = "frameshot"; - version = "20181219.1300"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "frameshot"; - rev = "3830aae976603ff4e41e09fdca7554594075694c"; - sha256 = "1sbxr78gl822gl0ky7iz1wb558ch9gp7igg4aq63gjlq6wfx2v93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5cfaa4b5fda97054d45691fad9d79b559f2df14/recipes/frameshot"; - sha256 = "1z5f988m9s25miyxbhaxk6m4af9afvblb2p5mdidva04szjklr70"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/frameshot"; - license = lib.licenses.free; - }; - }) {}; - framesize = callPackage ({ fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild }: - melpaBuild { - pname = "framesize"; - ename = "framesize"; - version = "20131017.1432"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-framesize"; - rev = "f2dbf5d2513b2bc45f2085370a55c1754b6025da"; - sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c53062af16b26b6f64bd63fa62d7e9db264768f3/recipes/framesize"; - sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf"; - name = "recipe"; - }; - packageRequires = [ key-chord ]; - meta = { - homepage = "https://melpa.org/#/framesize"; - license = lib.licenses.free; - }; - }) {}; - frecency = callPackage ({ a - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frecency"; - ename = "frecency"; - version = "20170908.2331"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "frecency.el"; - rev = "132130088ef5695cffed6fcacfa219cb0c389026"; - sha256 = "17s34gaq6jvwr6f4l500xyhv33ykwxiwzsq2rrasgs7l301wqsw0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7a6e855d01e0b1c9a23c006af67c487719c50bd/recipes/frecency"; - sha256 = "033zhzwvh23igfqxbiy68cq6i1wflna19pbg81r0hh9kcfg2afpa"; - name = "recipe"; - }; - packageRequires = [ a dash emacs ]; - meta = { - homepage = "https://melpa.org/#/frecency"; - license = lib.licenses.free; - }; - }) {}; - free-keys = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "free-keys"; - ename = "free-keys"; - version = "20160726.1350"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "free-keys"; - rev = "edfd69dc369b2647447b7c28c7c1163b1ddf45b4"; - sha256 = "0xgifa7s9n882f9ymyyz9gc11xfbj3vfpnxiq1fqfm5hmwx9pwbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55067e899ba618d4394ad9657322c92a667a0774/recipes/free-keys"; - sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/free-keys"; - license = lib.licenses.free; - }; - }) {}; - freeradius-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "freeradius-mode"; - ename = "freeradius-mode"; - version = "20190401.1043"; - src = fetchFromGitHub { - owner = "VersBinarii"; - repo = "freeradius-mode"; - rev = "cf8bf0359cf6c77848facbd24b764b3e111b4c2d"; - sha256 = "0ggkflx4lhyxqr7sgf1f3z0i3glmqyvl4bn16clh9ybl14q22rli"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a93de3f3933441b94303cd6dd25dabbade04dcc5/recipes/freeradius-mode"; - sha256 = "1lk7px2v5rpfg7kakqcsg31pg69pk64x9j0j9bjwpkxc49bnk1w2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/freeradius-mode"; - license = lib.licenses.free; - }; - }) {}; - fringe-current-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fringe-current-line"; - ename = "fringe-current-line"; - version = "20140110.2011"; - src = fetchFromGitHub { - owner = "kyanagi"; - repo = "fringe-current-line"; - rev = "0ef000bac76abae30601222e6f06c7d133ab4942"; - sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaaa6f7f2f753a7c8489415ae406c4169eda9fa8/recipes/fringe-current-line"; - sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fringe-current-line"; - license = lib.licenses.free; - }; - }) {}; - fringe-helper = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fringe-helper"; - ename = "fringe-helper"; - version = "20140620.1409"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "fringe-helper.el"; - rev = "9bc3d3e82c9cc3937aa090248dc4dd2e289fc55c"; - sha256 = "0vqpgvjxh9dqc6is2ai1nrnwhv3fwx5b2nyhq5w3qr056hi995av"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/fringe-helper"; - sha256 = "1i5wra4j0rvrsl9vbg7fzga8cadw43ka2rwdj1m11wq8m3cs8g7m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fringe-helper"; - license = lib.licenses.free; - }; - }) {}; - fsbot-data-browser = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fsbot-data-browser"; - ename = "fsbot-data-browser"; - version = "20160921.833"; - src = fetchFromGitHub { - owner = "Benaiah"; - repo = "fsbot-data-browser"; - rev = "6bca4f7de63e31839d2542f6c678b79931dec344"; - sha256 = "0lvpgfp89sz6f6rn576g1g88s0q3ibj5ghydjwfcg9w6h7vx5b5s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/fsbot-data-browser"; - sha256 = "14d4d8lasvgj520rmqgnzk6mi16znzcdvja9p8164fr9l41wnzgd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fsbot-data-browser"; - license = lib.licenses.free; - }; - }) {}; - fsharp-mode = callPackage ({ company - , company-quickhelp - , dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup - , pos-tip - , s }: - melpaBuild { - pname = "fsharp-mode"; - ename = "fsharp-mode"; - version = "20190304.517"; - src = fetchFromGitHub { - owner = "rneatherway"; - repo = "emacs-fsharp-mode-bin"; - rev = "386994e7d420872a31d7dd2eee9610d8ace98faa"; - sha256 = "15blnkcrsmm6896dpdzcx3xqzxzkc0x8d5bg9b5sw7qca6vnjbqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc45611e2b629d8bc5f74555368f964420b79541/recipes/fsharp-mode"; - sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; - name = "recipe"; - }; - packageRequires = [ - company - company-quickhelp - dash - flycheck - popup - pos-tip - s - ]; - meta = { - homepage = "https://melpa.org/#/fsharp-mode"; - license = lib.licenses.free; - }; - }) {}; - fstar-mode = callPackage ({ company - , company-quickhelp - , dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , quick-peek - , yasnippet }: - melpaBuild { - pname = "fstar-mode"; - ename = "fstar-mode"; - version = "20190513.555"; - src = fetchFromGitHub { - owner = "FStarLang"; - repo = "fstar-mode.el"; - rev = "b2540d287f6ef8036c47cbc80d11a546eee8fc41"; - sha256 = "0m5n55pmji2szq5jg5zrsn6k507w7jya8s0h2y0qiiwk4cgv7693"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode"; - sha256 = "1kwa6gqh91265vpp4gcady2brkizfkfjj0gnya9lar6x7rn4gj7s"; - name = "recipe"; - }; - packageRequires = [ - company - company-quickhelp - dash - emacs - flycheck - quick-peek - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/fstar-mode"; - license = lib.licenses.free; - }; - }) {}; - fuel = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fuel"; - ename = "fuel"; - version = "20190510.1541"; - src = fetchFromGitHub { - owner = "factor"; - repo = "factor"; - rev = "82893dceeef53643e96b73d58d4800273b05da97"; - sha256 = "16yc1p9pvz3x9vs7dyjvx53qq26lpklldfl048x4vzr4gmaj648n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/fuel"; - sha256 = "08hzzg5dhqkl5c5lfhwcwmx8m8z3k1nxshn2wlpqf5gch8f2nj6z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/fuel"; - license = lib.licenses.free; - }; - }) {}; - fuff = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "fuff"; - ename = "fuff"; - version = "20170202.703"; - src = fetchFromGitHub { - owner = "joelmo"; - repo = "fuff"; - rev = "278e849913df87bd8756c59382282d87474802c3"; - sha256 = "12s25c0abvghkhfbxcf77d2dc20y3xn9df7mfk8mkfwnlwdss2ga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d0fc6d19559a9ea1bb7fce0c26a2dd65fc71603/recipes/fuff"; - sha256 = "080a2lz6mv629c68z44qrrww080gy2iggfzajdq54rr8i23y14vf"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/fuff"; - license = lib.licenses.free; - }; - }) {}; - full-ack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "full-ack"; - ename = "full-ack"; - version = "20140223.932"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "full-ack"; - rev = "8345753e9569dabf6426a837f29387557e32f2af"; - sha256 = "0x0c6cvsgzcc6336k9bz7pcjpg6s6w6cjlqbsafdqv8yx5ll59jd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/full-ack"; - sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/full-ack"; - license = lib.licenses.free; - }; - }) {}; - fullframe = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fullframe"; - ename = "fullframe"; - version = "20170816.303"; - src = fetchFromGitHub { - owner = "tomterl"; - repo = "fullframe"; - rev = "d6a5217f7f2a5a5edcb75140f3fa69b3a50f1cdd"; - sha256 = "0m43qnhp6ibsskpjkxc86p3lrjsjc0ndqml3lbd65s79x4x7i3fi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1dc5c39543b65c6bb4150c3690211872c00dc/recipes/fullframe"; - sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/fullframe"; - license = lib.licenses.free; - }; - }) {}; - function-args = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "function-args"; - ename = "function-args"; - version = "20171031.1004"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "function-args"; - rev = "609b25305670fff08d5e357298e7128e4f4e3497"; - sha256 = "1xymwk42n2l7c7iaigz23i4l580qpjgq8nqhgr4mnw6invdsgg2c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80688d85a34b77783140ad2b8a47ef60c762b084/recipes/function-args"; - sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; - name = "recipe"; - }; - packageRequires = [ ivy ]; - meta = { - homepage = "https://melpa.org/#/function-args"; - license = lib.licenses.free; - }; - }) {}; - fuo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fuo"; - ename = "fuo"; - version = "20180314.948"; - src = fetchFromGitHub { - owner = "cosven"; - repo = "emacs-fuo"; - rev = "5318bef9d935b53031e6312652554920def69af2"; - sha256 = "02f4kl1y277pry13hz1jscdh2nrbn3xp7zm1dmqyn8yfhn1s1yx2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25fb625becf7f582d2a8d53726d6f01d9ea89ecc/recipes/fuo"; - sha256 = "02mvgz2cxrdn5kp5dw0c57rl5nfavqli5yqbxczmbsih164ljdxf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fuo"; - license = lib.licenses.free; - }; - }) {}; - furl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "furl"; - ename = "furl"; - version = "20150508.2016"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "furl-el"; - rev = "014438271e0ef27333dfcd599cb247f12a20d870"; - sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/furl"; - sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/furl"; - license = lib.licenses.free; - }; - }) {}; - futhark-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "futhark-mode"; - ename = "futhark-mode"; - version = "20190412.237"; - src = fetchFromGitHub { - owner = "diku-dk"; - repo = "futhark-mode"; - rev = "f8e5a13b39517e62607647422914a63fe60547b2"; - sha256 = "1jahfp38h51synr00iwzs29pxij95hskb3smbi0f0wh0hzrpr81x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97210774b450b7611d2bfdf36e04a425835d86b9/recipes/futhark-mode"; - sha256 = "1sck984a8m0i9n07jnhpnin6k060756g73ix34ghzd65j5f0pvlw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/futhark-mode"; - license = lib.licenses.free; - }; - }) {}; - fuzzy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fuzzy"; - ename = "fuzzy"; - version = "20150729.2037"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "fuzzy-el"; - rev = "534d723ad2e06322ff8d9bd0ba4863d243f698e7"; - sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0197df173fbd7ec1e7e35c47476fcf2aaa483f/recipes/fuzzy"; - sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fuzzy"; - license = lib.licenses.free; - }; - }) {}; - fvwm-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fvwm-mode"; - ename = "fvwm-mode"; - version = "20160411.438"; - src = fetchFromGitHub { - owner = "theBlackDragon"; - repo = "fvwm-mode"; - rev = "6832a1c1f68bf6249c3fd6672ea8e27dc7a5c79e"; - sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac39130f8a031d6fe7df4411a5f94f2cdf652449/recipes/fvwm-mode"; - sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fvwm-mode"; - license = lib.licenses.free; - }; - }) {}; - fwb-cmds = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fwb-cmds"; - ename = "fwb-cmds"; - version = "20180318.1519"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "fwb-cmds"; - rev = "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f"; - sha256 = "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds"; - sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fwb-cmds"; - license = lib.licenses.free; - }; - }) {}; - fxrd-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "fxrd-mode"; - ename = "fxrd-mode"; - version = "20170728.1101"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "fxrd-mode"; - rev = "795b969346982b75e24b5c8619b46197982fbb4d"; - sha256 = "0aha13vqj6ygyr7bflrxll837g4z6wrmrhh5rhcd0vphqg70frgn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/796eb6b2126ec616c0de6af6abb7598900557c12/recipes/fxrd-mode"; - sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/fxrd-mode"; - license = lib.licenses.free; - }; - }) {}; - fyure = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fyure"; - ename = "fyure"; - version = "20130216.514"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "fyure"; - rev = "b6977f1eb148e8b63259f7233b55bb050e44d9b8"; - sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27f4188f460060277ad2f5422bc2bde8e6fd3ff3/recipes/fyure"; - sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fyure"; - license = lib.licenses.free; - }; - }) {}; - fzf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fzf"; - ename = "fzf"; - version = "20180618.1845"; - src = fetchFromGitHub { - owner = "bling"; - repo = "fzf.el"; - rev = "521d18933cb586337c4e34281bdc71ac07202c98"; - sha256 = "0fpzjslbhhwvs4nh5dxj9cyxyiw6n8qmg76mvq73k5mc8pk7d4ir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1671e17c99ef1932c6a2e83fc4fa2e4eb6674bc8/recipes/fzf"; - sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fzf"; - license = lib.licenses.free; - }; - }) {}; - gams-ac = callPackage ({ auto-complete - , emacs - , fetchFromGitHub - , fetchurl - , gams-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "gams-ac"; - ename = "gams-ac"; - version = "20180423.226"; - src = fetchFromGitHub { - owner = "ShiroTakeda"; - repo = "gams-ac"; - rev = "66d04ff36033f54205c19bc1d893e926d4dbf02e"; - sha256 = "1hjbzwgzwqwpyfm8db1r1q14bbk42hrl5469gqfzjq0423wy7szw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca2681b39ac5a985c2f70b4b84ee3c10af1a7ca4/recipes/gams-ac"; - sha256 = "03w9ffscwaaspwxmrqhrfws0qjk3xxzz63k5wkrhx37899w75qha"; - name = "recipe"; - }; - packageRequires = [ auto-complete emacs gams-mode ]; - meta = { - homepage = "https://melpa.org/#/gams-ac"; - license = lib.licenses.free; - }; - }) {}; - gams-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gams-mode"; - ename = "gams-mode"; - version = "20181111.2201"; - src = fetchFromGitHub { - owner = "ShiroTakeda"; - repo = "gams-mode"; - rev = "fd88a310614a7c6e39e45ca65c4273ad90e3b688"; - sha256 = "0bvvar05zqfk1y5nqv1w6ji2mysdx62v7nxajnmbp386ldcjs4bn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode"; - sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gams-mode"; - license = lib.licenses.free; - }; - }) {}; - gandalf-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gandalf-theme"; - ename = "gandalf-theme"; - version = "20130809.247"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "gandalf-theme-emacs"; - rev = "4e472fc851431458537d458d09c1f5895e338536"; - sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4354bbc1ec16783dd286d69fd6e4682ae63e28f9/recipes/gandalf-theme"; - sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gandalf-theme"; - license = lib.licenses.free; - }; - }) {}; - gap-mode = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gap-mode"; - ename = "gap-mode"; - version = "20180808.2145"; - src = fetchhg { - url = "https://bitbucket.com/gvol/gap-mode"; - rev = "00f251070b10"; - sha256 = "0rk5smpzpdqzpmb5cp2l40042i51z3f40fkd3hma40id0ql2gy2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83ec19a4ebac6b2d0fd84939b393848f82620978/recipes/gap-mode"; - sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gap-mode"; - license = lib.licenses.free; - }; - }) {}; - gather = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gather"; - ename = "gather"; - version = "20141230.538"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-gather"; - rev = "8909c886d72a682710bb79ccfcfe4df54a399b7e"; - sha256 = "0nj5fbn22ihfsdlb5bhj0ph71gkhrgfbb3540sx1x35gqfhb6p4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/595e40c7102294684badf86deb72d86bbc3c1426/recipes/gather"; - sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gather"; - license = lib.licenses.free; - }; - }) {}; - gcmh = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gcmh"; - ename = "gcmh"; - version = "20190421.2326"; - src = fetchFromGitLab { - owner = "koral"; - repo = "gcmh"; - rev = "65787bce5e21ee4a376008a67095a395ac9d5fed"; - sha256 = "0bwbgr3xianq4d4c2isqd0rzhsvpc9djzrnac7v6bim867aighz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e478bee9aade9cdac22f9935b937978f3a3e1d3c/recipes/gcmh"; - sha256 = "0h5l02k01dv74n04ybnm1416dfhr5sm3h3maq0pypxqdfz1anhsg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gcmh"; - license = lib.licenses.free; - }; - }) {}; - gdscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gdscript-mode"; - ename = "gdscript-mode"; - version = "20180117.2056"; - src = fetchFromGitHub { - owner = "AdamBark"; - repo = "gdscript-mode"; - rev = "31af5283eaec207bc864022a28e2824132471eaf"; - sha256 = "0f24zsklkhhvj6qdyid2j1qcyhjnncxjma93zhr0klvn5j1z3aar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52f99eafb2e80a7fa13a98add98b03a147f35e8b/recipes/gdscript-mode"; - sha256 = "0v4ab5xxpq1kya2is5qq61fmfgxgvbigyz7wp907z3mc00kg2818"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gdscript-mode"; - license = lib.licenses.free; - }; - }) {}; - geben = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "geben"; - ename = "geben"; - version = "20170801.551"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "geben"; - rev = "ec3f5e9376cf1ea5615990bd8c212543d57f033b"; - sha256 = "0860nnarbm76jp40v7p5d2wdnq12p03paiw17g3h5p27wnaj611d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f8648609e160f7dcefe4a963e8b00475f2fff78/recipes/geben"; - sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/geben"; - license = lib.licenses.free; - }; - }) {}; - geben-helm-projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , geben - , helm-projectile - , lib - , melpaBuild }: - melpaBuild { - pname = "geben-helm-projectile"; - ename = "geben-helm-projectile"; - version = "20160610.1759"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "geben-helm-projectile"; - rev = "14db489efcb20c5aa9102288c94cec3c5a87c35d"; - sha256 = "1nd1jhy393vkn2g65zhygxkpgna0l8gkndxr8jb6qjkkapk58k8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7d28c45304a69e6ca78b3d00df2563171c027ee/recipes/geben-helm-projectile"; - sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r"; - name = "recipe"; - }; - packageRequires = [ emacs geben helm-projectile ]; - meta = { - homepage = "https://melpa.org/#/geben-helm-projectile"; - license = lib.licenses.free; - }; - }) {}; - geeknote = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "geeknote"; - ename = "geeknote"; - version = "20160717.549"; - src = fetchFromGitHub { - owner = "avendael"; - repo = "emacs-geeknote"; - rev = "8ed607c76864afcc9c338972ab093caf4501cbf8"; - sha256 = "1dadsyvkzf0rg6immjdjkb0k7iaqh3hm1w9qhap94j54j7v75w2q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/geeknote"; - sha256 = "03q0ca8m110qw8wczyyx94gwqymwnmamahw30j7fqkq6ry19yqsm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/geeknote"; - license = lib.licenses.free; - }; - }) {}; - geiser = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "geiser"; - ename = "geiser"; - version = "20190514.1743"; - src = fetchFromGitLab { - owner = "jaor"; - repo = "geiser"; - rev = "e60e1c2b1baf8891e1af010af491faf422eacd43"; - sha256 = "1xryyah24jz3fa5sajd0hfpb1sqhkv1ncrjhnkbizmi2lzzljqxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67dc8d6e33f3522043f96761b23ea68c9c27084e/recipes/geiser"; - sha256 = "1g7z6c3lfa7slwrxk7q8awqs39qibcv2kc4c2fwlwvgbcfhkw085"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/geiser"; - license = lib.licenses.free; - }; - }) {}; - general = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "general"; - ename = "general"; - version = "20190420.740"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "general.el"; - rev = "356654668ee4f77aa330398c54b62fb33345fdff"; - sha256 = "171g686ssslkn3yw9c2i4jimkn18qc722660fba4c45l520bv1h5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d86383b443622d78f6d8ff7b8ac74c8d72879d26/recipes/general"; - sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/general"; - license = lib.licenses.free; - }; - }) {}; - genrnc = callPackage ({ concurrent - , deferred - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "genrnc"; - ename = "genrnc"; - version = "20140612.537"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-genrnc"; - rev = "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a"; - sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd2d908ba5fa96d90643091573939e54d9165aaa/recipes/genrnc"; - sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; - name = "recipe"; - }; - packageRequires = [ concurrent deferred log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/genrnc"; - license = lib.licenses.free; - }; - }) {}; - german-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "german-holidays"; - ename = "german-holidays"; - version = "20181212.2244"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "german-holidays"; - rev = "a8462dffccaf2b665f2032e646b5370e993a386a"; - sha256 = "1rf8p42pl7jmmdiibfcamlbr3kg6kslffv8vbpwn20xm2ii13rxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5b3807ff989b13f95e8d6fad2f26a42ff0643c/recipes/german-holidays"; - sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/german-holidays"; - license = lib.licenses.free; - }; - }) {}; - gerrit-download = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "gerrit-download"; - ename = "gerrit-download"; - version = "20150714.708"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "gerrit-download.el"; - rev = "d568acc7c5935188c9bc19ba72719a6092d9f6fd"; - sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18725e799efd1694ff2397b6c877f926ac5f4ce8/recipes/gerrit-download"; - sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/gerrit-download"; - license = lib.licenses.free; - }; - }) {}; - gf = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gf"; - ename = "gf"; - version = "20181028.842"; - src = fetchFromGitHub { - owner = "GrammaticalFramework"; - repo = "gf-emacs-mode"; - rev = "49fa46db67634530499be969ffd3c436a22d4404"; - sha256 = "0q234wzzmq1r53dv7z798liwkcbpnvc8mnxvkyfxd94f6za9ylgz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gf"; - sha256 = "0vk866gy97zk8dbx48azjlpnrnf0snc50zlhbzv1is97d9frjici"; - name = "recipe"; - }; - packageRequires = [ ht s ]; - meta = { - homepage = "https://melpa.org/#/gf"; - license = lib.licenses.free; - }; - }) {}; - ggo-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ggo-mode"; - ename = "ggo-mode"; - version = "20130524.443"; - src = fetchFromGitHub { - owner = "mkjunker"; - repo = "ggo-mode"; - rev = "ea5097f87072309c7b77204888d459d084bf630f"; - sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e055994c3c3042eab11f11ec916ad5b56689809f/recipes/ggo-mode"; - sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ggo-mode"; - license = lib.licenses.free; - }; - }) {}; - ggtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ggtags"; - ename = "ggtags"; - version = "20190320.1508"; - src = fetchFromGitHub { - owner = "leoliu"; - repo = "ggtags"; - rev = "4d9000034d352cd983ae6626f560e434d0b3e9ca"; - sha256 = "1h89prfxdr50drsira3qqvh1mb7v09p4w8jpb7aapq2jl5fl2knc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b158bb1bc2fbe3de61a6b21174eac7b1457edda2/recipes/ggtags"; - sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ggtags"; - license = lib.licenses.free; - }; - }) {}; - gh = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , logito - , marshal - , melpaBuild - , pcache }: - melpaBuild { - pname = "gh"; - ename = "gh"; - version = "20180308.1338"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "gh.el"; - rev = "92418cd1b67ff6e8fb0a64478444975a4b8581a3"; - sha256 = "1vl6wy904jw1mqdic54ssvvbs4xqxhmgacldnfkdkx586vwf0hqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh"; - sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; - name = "recipe"; - }; - packageRequires = [ emacs logito marshal pcache ]; - meta = { - homepage = "https://melpa.org/#/gh"; - license = lib.licenses.free; - }; - }) {}; - gh-md = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gh-md"; - ename = "gh-md"; - version = "20151207.940"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "gh-md.el"; - rev = "693cb0dcadff70e813e1a9d303d227aff7898557"; - sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2794e59d5fea812ce5b376d3d9609f50f6bca40e/recipes/gh-md"; - sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gh-md"; - license = lib.licenses.free; - }; - }) {}; - ghc = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ghc"; - ename = "ghc"; - version = "20180121.418"; - src = fetchFromGitHub { - owner = "DanielG"; - repo = "ghc-mod"; - rev = "39b96c475090f91e4f717197c96e083fdb2ccaf7"; - sha256 = "0f9qzk3czamqjb42xg2bmx70hafza8cn84zylx60bw8yx4i0q7nx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc"; - sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; - name = "recipe"; - }; - packageRequires = [ haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/ghc"; - license = lib.licenses.free; - }; - }) {}; - ghc-imported-from = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ghc-imported-from"; - ename = "ghc-imported-from"; - version = "20141124.1132"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "ghc-imported-from-el"; - rev = "fcff08628a19f5d26151564659218cc677779b79"; - sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ghc-imported-from"; - sha256 = "063kbymk4r1yrg5ks660d2byrnia6gs6nimjzrvqfi2ib1psc7jc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ghc-imported-from"; - license = lib.licenses.free; - }; - }) {}; - ghci-completion = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ghci-completion"; - ename = "ghci-completion"; - version = "20151125.457"; - src = fetchFromGitHub { - owner = "manzyuk"; - repo = "ghci-completion"; - rev = "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5"; - sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/804aa2f9088dfc1b48b59aaa72a61f82fb5be971/recipes/ghci-completion"; - sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ghci-completion"; - license = lib.licenses.free; - }; - }) {}; - gherkin-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gherkin-mode"; - ename = "gherkin-mode"; - version = "20171224.553"; - src = fetchFromGitHub { - owner = "candera"; - repo = "gherkin-mode"; - rev = "0313492e7da152f0aa73ddf96c0287ded8f51253"; - sha256 = "15m9a2dcxgmbj0ni2qcxg3vpxvs50pyjvlacm3xd2xhm9wd484hr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82d80becedead8db441eed6f7856ca64d78815e2/recipes/gherkin-mode"; - sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gherkin-mode"; - license = lib.licenses.free; - }; - }) {}; - ghost-blog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "ghost-blog"; - ename = "ghost-blog"; - version = "20171023.42"; - src = fetchFromGitHub { - owner = "javaguirre"; - repo = "ghost-blog-emacs"; - rev = "71b358643cc9a2db1bf752281ff94aba9b59e4cc"; - sha256 = "1fkh7zslkdi7a4x2xrk73acmigbi7yx9k6iaj75zbjfd49gyqj13"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a906d461bcb2aa07050b72669feb5787414d809/recipes/ghost-blog"; - sha256 = "0c591cx5kkfmhhqh8jall470iicxdv01mm3m13irq5xhmp3i5kjy"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/ghost-blog"; - license = lib.licenses.free; - }; - }) {}; - ghq = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ghq"; - ename = "ghq"; - version = "20160803.857"; - src = fetchFromGitHub { - owner = "rcoedo"; - repo = "emacs-ghq"; - rev = "aae4b8cb22fd6c24d2c9e3962c7e8e9dac6d9825"; - sha256 = "0rh2k93c3a0vl073a3s3a3h6gkw454v1lyd7y8l3pd24vw9hc628"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9daa3b0039f6b296b8176523cffbbe27506bb02/recipes/ghq"; - sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ghq"; - license = lib.licenses.free; - }; - }) {}; - ghub = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , treepy }: - melpaBuild { - pname = "ghub"; - ename = "ghub"; - version = "20190529.338"; - src = fetchFromGitHub { - owner = "magit"; - repo = "ghub"; - rev = "7deb60c402dc2d77b44738417fe247cd4d01e040"; - sha256 = "1ji0nqlvgz7vy488qaqpw3bxpcy0yi1x95jmymcaq7yw35l0dnbk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f403587f77380d1db214aa34933a9b5cce1ef2bd/recipes/ghub"; - sha256 = "15kjyi8ialpr1zjqvw68w9pa5sigcwy2szq21yvcy295z7ylzy4i"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist treepy ]; - meta = { - homepage = "https://melpa.org/#/ghub"; - license = lib.licenses.free; - }; - }) {}; - ghub-plus = callPackage ({ apiwrap - , emacs - , fetchFromGitHub - , fetchurl - , ghub - , lib - , melpaBuild }: - melpaBuild { - pname = "ghub-plus"; - ename = "ghub+"; - version = "20181112.1632"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "ghub-plus"; - rev = "51ebffe549286b3c0b0565a373f44f4d64fc57af"; - sha256 = "11fr6ri95a9wkc0mqrkhjxz1fm2cb52151fc88k73l93mggib3ak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03a412fd25218ff6f302734e078a699ff0234e36/recipes/ghub+"; - sha256 = "0xx7nwmjx3f7z6z164x1lb9arbb3m3d16mpn92v66w572rhbr34n"; - name = "recipe"; - }; - packageRequires = [ apiwrap emacs ghub ]; - meta = { - homepage = "https://melpa.org/#/ghub+"; - license = lib.licenses.free; - }; - }) {}; - gif-screencast = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gif-screencast"; - ename = "gif-screencast"; - version = "20190326.149"; - src = fetchFromGitLab { - owner = "Ambrevar"; - repo = "emacs-gif-screencast"; - rev = "248d1e158405e6cba2c65ecaed40e2c59b089cd8"; - sha256 = "19xqi5mgalnnhb4hw0fh7py2s2dllldx1xxbhwhknkdpifai8hl8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d17ca0213ba5ef9dce92002e281e6f08c3492be/recipes/gif-screencast"; - sha256 = "05l46bsnjdnvcgwx5rc5y7ry9p0hvmkf09rlpalgnrp8qpy8xw0q"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gif-screencast"; - license = lib.licenses.free; - }; - }) {}; - gift-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gift-mode"; - ename = "gift-mode"; - version = "20180530.535"; - src = fetchFromGitHub { - owner = "csrhodes"; - repo = "gift-mode"; - rev = "b0441ae6e02f343be3b611a2d4b40495ecd932f0"; - sha256 = "0dwpmvjsczcdzwhjvpfxrkfha513538z8wq3gr3l1zc1kdggx2bk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c4c9081a60bdbf4e5fe1ccc4809c0f6f396d11e4/recipes/gift-mode"; - sha256 = "0sybrjmcg90cjaax7lzzqvacirn5l23hqy9d843c660fsv98scg1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gift-mode"; - license = lib.licenses.free; - }; - }) {}; - gildas-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "gildas-mode"; - ename = "gildas-mode"; - version = "20181021.2349"; - src = fetchFromGitHub { - owner = "smaret"; - repo = "gildas-mode"; - rev = "d0c9e997e2aa0bcd9b8b7db082d69100448cb1b2"; - sha256 = "11290b6daly9nn73iw0s6386hzjk3q2iywdhiazxscxaxzhx2c8c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f43d3aec955d31023056baba971805f0ebbb6702/recipes/gildas-mode"; - sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/gildas-mode"; - license = lib.licenses.free; - }; - }) {}; - gist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , melpaBuild }: - melpaBuild { - pname = "gist"; - ename = "gist"; - version = "20171127.2006"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "gist.el"; - rev = "b2712a61d04af98a05cc2556d85479803b6626be"; - sha256 = "0zpdh7j0nm9qgzgp55kim04r9hi8cyi3f6kflxrs8srzxwb4gs6k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist"; - sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; - name = "recipe"; - }; - packageRequires = [ emacs gh ]; - meta = { - homepage = "https://melpa.org/#/gist"; - license = lib.licenses.free; - }; - }) {}; - git = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "git"; - ename = "git"; - version = "20140128.241"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "git.el"; - rev = "8b7f1477ef367b5b7de452589dd9a8ab30150d0a"; - sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce19d2716416295966716db47241a0e37b412ab5/recipes/git"; - sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/git"; - license = lib.licenses.free; - }; - }) {}; - git-annex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-annex"; - ename = "git-annex"; - version = "20180427.856"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "git-annex-el"; - rev = "ebdb44aef1883f1b2b8058e05d30fb9315b03707"; - sha256 = "1mzv40gj7k10h7h5s43my8msgzjpj680qprqa9pp8nbyhl49v3wh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c91e16bb9e92db9dc9be6a7af3944c3290d2f14/recipes/git-annex"; - sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-annex"; - license = lib.licenses.free; - }; - }) {}; - git-attr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-attr"; - ename = "git-attr"; - version = "20180925.1303"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "emacs-git-attr"; - rev = "3e43a0cf616b00a4bbd3c6b49fd2397f3103796f"; - sha256 = "1alpr4gnkikwzljz0fdbrx5hs3zy5s2fz7qyxdz0nx9hv8zb5ir5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3417e4bc586df60b5e6239b1f7683b87953f5b7c/recipes/git-attr"; - sha256 = "084l3zdcgy1ka2wq1fz9d6ryhg38gxvr52njlv43gwibzvbqniyi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-attr"; - license = lib.licenses.free; - }; - }) {}; - git-auto-commit-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-auto-commit-mode"; - ename = "git-auto-commit-mode"; - version = "20161229.817"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "git-auto-commit-mode"; - rev = "2c8197e5d7813734d6a49f9b9c0b227b7ae022a8"; - sha256 = "0h8kma09r5fw4b2fbbia5z42x8gg72w6zk39pxnsw876kwa8798f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5660fb76ce93e5fe56227698d079c6994ef3305f/recipes/git-auto-commit-mode"; - sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-auto-commit-mode"; - license = lib.licenses.free; - }; - }) {}; - git-blamed = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-blamed"; - ename = "git-blamed"; - version = "20161028.1226"; - src = fetchFromGitHub { - owner = "tsgates"; - repo = "git-emacs"; - rev = "cef196abf398e2dd11f775d1e6cd8690567408aa"; - sha256 = "1n6x69z1s3hk6m6w8gpmqyrb2cxfzhi9w7q94d46c3z6r75v18vz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87bc01218964a01cfd471ee068ed75976793a568/recipes/git-blamed"; - sha256 = "08az5mwg8kv8xsivs63y4sym54l1n34zc9z6k0iwpfixv9f8bk9p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-blamed"; - license = lib.licenses.free; - }; - }) {}; - git-command = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , term-run - , with-editor }: - melpaBuild { - pname = "git-command"; - ename = "git-command"; - version = "20190310.2211"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "git-command-el"; - rev = "89169f4b8e8d2546cac81d38bf584764e630812e"; - sha256 = "1dgy9c7q0lxx5k5vdjcil6405qjpqpyq3s0ndh8fn6ybbhap9jda"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55d697bc95a7026c7788c13e4765e1b71075e3/recipes/git-command"; - sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; - name = "recipe"; - }; - packageRequires = [ term-run with-editor ]; - meta = { - homepage = "https://melpa.org/#/git-command"; - license = lib.licenses.free; - }; - }) {}; - git-commit = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , with-editor }: - melpaBuild { - pname = "git-commit"; - ename = "git-commit"; - version = "20190501.1123"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = "65bae41baad0138fc8859742b1fd1899edc8468a"; - sha256 = "086g5wxk5rriqyjhyyc385xmm5c2a9x0srxxixfrjh1jk7bxf2dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; - sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; - name = "recipe"; - }; - packageRequires = [ dash emacs with-editor ]; - meta = { - homepage = "https://melpa.org/#/git-commit"; - license = lib.licenses.free; - }; - }) {}; - git-commit-insert-issue = callPackage ({ bitbucket - , fetchFromGitLab - , fetchurl - , github-issues - , gitlab - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "git-commit-insert-issue"; - ename = "git-commit-insert-issue"; - version = "20171102.1141"; - src = fetchFromGitLab { - owner = "emacs-stuff"; - repo = "git-commit-insert-issue"; - rev = "f986923b04b587206ce7ee8e0c456768600e8be7"; - sha256 = "1gffjf6byasisa9jdcv9n4n5zqalvzfsxv7z75zl0g3ph7wc7bbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/git-commit-insert-issue"; - sha256 = "0xhlchr7dbm0hp4cjba3x1fdf7lnfc97id327i2fqgkdc4yn9fax"; - name = "recipe"; - }; - packageRequires = [ bitbucket github-issues gitlab projectile s ]; - meta = { - homepage = "https://melpa.org/#/git-commit-insert-issue"; - license = lib.licenses.free; - }; - }) {}; - git-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-dwim"; - ename = "git-dwim"; - version = "20170126.414"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "emacs-git-dwim"; - rev = "485c732130686c2f28a026e385366006435394b9"; - sha256 = "0rcrsjx4ifa9y3rd5l4498kvqkh58zx21gl7mqp053jdsqqq1yrx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/git-dwim"; - sha256 = "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-dwim"; - license = lib.licenses.free; - }; - }) {}; - git-gutter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter"; - ename = "git-gutter"; - version = "20161105.656"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-gutter"; - rev = "00c05264af046b5ce248e5b0bc42f117d9c27a09"; - sha256 = "1c7byzv27sqcal0z7113s1897prxhynk6y89mq1fjlxmr0g20vzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter"; - sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-gutter"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-fringe = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , fringe-helper - , git-gutter - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-fringe"; - ename = "git-gutter-fringe"; - version = "20170112.2133"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-gutter-fringe"; - rev = "16226caab44174301f1659f7bf8cc67a76153445"; - sha256 = "1y77gjl0yznamdj0f55d418zb75k22izisjg7ikvrfsl2yfqf3pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter-fringe"; - sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; - meta = { - homepage = "https://melpa.org/#/git-gutter-fringe"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-fringe-plus = callPackage ({ fetchFromGitHub - , fetchurl - , fringe-helper - , git-gutter-plus - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-fringe-plus"; - ename = "git-gutter-fringe+"; - version = "20140729.403"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "git-gutter-fringe-plus"; - rev = "3857d486e5b3eca9281fba1c76756cb39a9f9866"; - sha256 = "19sz3gaffirr95n4a8jag9wsqa86fpdn13k685lxrv5317h8iqfh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad46c349d13f7d40db706b487319ede40b96b09c/recipes/git-gutter-fringe+"; - sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; - name = "recipe"; - }; - packageRequires = [ fringe-helper git-gutter-plus ]; - meta = { - homepage = "https://melpa.org/#/git-gutter-fringe+"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-plus = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , git-commit - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-plus"; - ename = "git-gutter+"; - version = "20151204.923"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "git-gutter-plus"; - rev = "b7726997806d9a2da9fe84ff00ecf21d62b6f975"; - sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2db25d23c2a1a4f38867aac25d687a150e95c2b/recipes/git-gutter+"; - sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; - name = "recipe"; - }; - packageRequires = [ dash git-commit ]; - meta = { - homepage = "https://melpa.org/#/git-gutter+"; - license = lib.licenses.free; - }; - }) {}; - git-identity = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "git-identity"; - ename = "git-identity"; - version = "20190424.447"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "git-identity.el"; - rev = "d20f6178a8818dcd6c5911d9cbf98934823e619e"; - sha256 = "0gaxm9l93vg4azj6sb650dq1l3nslnk62qvsgv0iw10k8azxy8d8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebad3a7a81fbf0293ac04ba319929c8b24bb98f5/recipes/git-identity"; - sha256 = "0kmpm5zp2x60r68in94x2bazq4wxx95n6zfc6mwiq8ln8m0164j0"; - name = "recipe"; - }; - packageRequires = [ dash emacs f hydra ]; - meta = { - homepage = "https://melpa.org/#/git-identity"; - license = lib.licenses.free; - }; - }) {}; - git-io = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-io"; - ename = "git-io"; - version = "20180317.1052"; - src = fetchFromGitHub { - owner = "tejasbubane"; - repo = "emacs-git-io"; - rev = "48753acba73b48b997bb678fb5e2a938ae63b5d6"; - sha256 = "1zw24j6l0ap761q1knxjaxzdfz11kmfq29aag5av4n87m86rxzr8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a713197f227e3c43de3609dd505cf7cd226d94b9/recipes/git-io"; - sha256 = "1acwc9iqchvlvx98fxh4xf3xphv0xzrnxpv8kkl8qaly41izfj0v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-io"; - license = lib.licenses.free; - }; - }) {}; - git-lens = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-lens"; - ename = "git-lens"; - version = "20190319.642"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "git-lens"; - rev = "f6cc0a37c9c5c422c49c32650e70bc4721707985"; - sha256 = "05bkpg7xz8644np9imsj5ms821sbsb784ap5fjdnnn69kllz0d33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/git-lens"; - sha256 = "02a393b5y4vpmf9ixgyi3a4gbzk4146zql827ljlav3j0434ssw2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-lens"; - license = lib.licenses.free; - }; - }) {}; - git-link = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-link"; - ename = "git-link"; - version = "20190309.1526"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "git-link"; - rev = "1dbabfed4c5c3c5ac6ffa9035a9c3d4c6cc7f885"; - sha256 = "1b115d5rsb9m8lqjplg3qp0bxfc5cij5fgp0j21zspqwqvj7h0hq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1385443585e628e3d4efb3badb7611e9d653e0c9/recipes/git-link"; - sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-link"; - license = lib.licenses.free; - }; - }) {}; - git-messenger = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "git-messenger"; - ename = "git-messenger"; - version = "20170101.2040"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-messenger"; - rev = "bb838c62662dbc3bed2a8aae5f622fbd8f45dd08"; - sha256 = "0w866cjzaqllf5xjs77mfsj1lw3ll4j5z770cndbkyfbmcwpama0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e791293133f30e5d96c4b29e972f9016c06c476d/recipes/git-messenger"; - sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/git-messenger"; - license = lib.licenses.free; - }; - }) {}; - git-msg-prefix = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "git-msg-prefix"; - ename = "git-msg-prefix"; - version = "20180118.646"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "git-msg-prefix.el"; - rev = "c6acf10b014607f1541a398206208e568a4714e4"; - sha256 = "1jpak1ji63xxpivyjxi0wicw66zbyxdc725nbg8dbf5n3h9v80bk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd37811d17beaa54e08eb4968791da960d37b391/recipes/git-msg-prefix"; - sha256 = "0vicaj91yhbzda76wrwmbfby2ikaja52bcm923jx8brjh1wd99wr"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/git-msg-prefix"; - license = lib.licenses.free; - }; - }) {}; - git-ps1-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-ps1-mode"; - ename = "git-ps1-mode"; - version = "20181114.1949"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "git-ps1-mode-el"; - rev = "b9188e26a64fa6f8678da6cbf5e3e865065f4f04"; - sha256 = "0l9y6x53li7fqfrwb4037psn92xciylanj0fmmy8jy6n51dlzxyn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea177b5ea168828881bd8dcd29ef6b4cb81317f0/recipes/git-ps1-mode"; - sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-ps1-mode"; - license = lib.licenses.free; - }; - }) {}; - git-time-metric = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-time-metric"; - ename = "git-time-metric"; - version = "20181116.1211"; - src = fetchFromGitHub { - owner = "c301"; - repo = "gtm-emacs-plugin"; - rev = "287108ed1d6885dc795eb3bad4476aa08c626186"; - sha256 = "0cq4jn2vvcm8hyzmmnnvbmffygxnnv0v71kqlgjm8lcil0xsf84d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6f8839be619d3eeb6ab83b630441bf8c0ca024/recipes/git-time-metric"; - sha256 = "1lwpj3z1i532v59vcpkcp1bkad7i2gmlk2yspjhvyvsgp1slsxl1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-time-metric"; - license = lib.licenses.free; - }; - }) {}; - git-timemachine = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , transient }: - melpaBuild { - pname = "git-timemachine"; - ename = "git-timemachine"; - version = "20190317.847"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "git-timemachine"; - rev = "b97f93d66cffcd69281346845d3a1e32197eda29"; - sha256 = "08zsn3lsnnf01wkv5ls38jga02s5dnf0j3gigy4qd6im3j3d04m1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/git-timemachine"; - sha256 = "06xdzic7j3d3pqgwxp1q6fs8sf3mi02a9phjvhk90kyvbr8h94ck"; - name = "recipe"; - }; - packageRequires = [ emacs transient ]; - meta = { - homepage = "https://melpa.org/#/git-timemachine"; - license = lib.licenses.free; - }; - }) {}; - git-wip-timemachine = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "git-wip-timemachine"; - ename = "git-wip-timemachine"; - version = "20150408.306"; - src = fetchFromGitHub { - owner = "itsjeyd"; - repo = "git-wip-timemachine"; - rev = "1ce257e6c25117b01f1b899aca21e07eae084d40"; - sha256 = "116zn8hs1igfdlhga4pav9kq6znl1bk7shbmkck7jvhb2prmqjqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81b5dd5765f52efdb88fdc14f48af641a18b3dcb/recipes/git-wip-timemachine"; - sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/git-wip-timemachine"; - license = lib.licenses.free; - }; - }) {}; - gitattributes-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitattributes-mode"; - ename = "gitattributes-mode"; - version = "20180318.1256"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "95ad581ae2aeba87b418ae9554eb326cdba9837d"; - sha256 = "15irwyc0fmp0k5dag1n07xa8ka7n84drbrg2savslvb9m71011dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode"; - sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitattributes-mode"; - license = lib.licenses.free; - }; - }) {}; - gitconfig = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitconfig"; - ename = "gitconfig"; - version = "20130718.235"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "gitconfig.el"; - rev = "6c313a39e20702ddcebc12d146f69db1ce668901"; - sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gitconfig"; - sha256 = "0lqm04nfhhhsdagrjnnagkpg7vpswd8lkd3l52lmpdh0fy16kgrf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitconfig"; - license = lib.licenses.free; - }; - }) {}; - gitconfig-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitconfig-mode"; - ename = "gitconfig-mode"; - version = "20180318.1256"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "ae6e897c06d3ff609a65a3ac2500d21ccc888822"; - sha256 = "111pm9wwq8p3wiqgap7gyi20say3daadlaxgq2v3mwxyax8fyx34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode"; - sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitconfig-mode"; - license = lib.licenses.free; - }; - }) {}; - github-browse-file = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-browse-file"; - ename = "github-browse-file"; - version = "20160205.627"; - src = fetchFromGitHub { - owner = "osener"; - repo = "github-browse-file"; - rev = "177667b8dac640f3dabacc4395e09451c5e88c53"; - sha256 = "01vw0nvbhnk9mni3wsm3jf9lqca9x4kn1xfpviqfkciwln7hblqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bca60348fc5e2ad55663e69b8690093cf861ca/recipes/github-browse-file"; - sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/github-browse-file"; - license = lib.licenses.free; - }; - }) {}; - github-clone = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "github-clone"; - ename = "github-clone"; - version = "20160622.2010"; - src = fetchFromGitHub { - owner = "dgtized"; - repo = "github-clone.el"; - rev = "467b40ca60a6c26257466ebc43c74414df7f19cc"; - sha256 = "1gdx9sl509vn4bagqg8vi1wvj1h3ryfvd5ggs2mv9rry6x9dg823"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba11d6a5cc2fbc76037687c842f90dc815a6468e/recipes/github-clone"; - sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; - name = "recipe"; - }; - packageRequires = [ emacs gh magit ]; - meta = { - homepage = "https://melpa.org/#/github-clone"; - license = lib.licenses.free; - }; - }) {}; - github-elpa = callPackage ({ commander - , fetchFromGitHub - , fetchurl - , git - , lib - , melpaBuild - , package-build }: - melpaBuild { - pname = "github-elpa"; - ename = "github-elpa"; - version = "20180831.111"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "github-elpa"; - rev = "cbde5bc239687e07347cecf46ba5aa31948ebe1d"; - sha256 = "1d7a9mp2kpcw1gvn9j3k8p0896i07m53xkbcx1vbg013w8kpwpak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81ec06e370f51b750ba3313b661d7386710cffb0/recipes/github-elpa"; - sha256 = "1981dnz49l5r4qsn49i4dhy6x4ln0haff6gl2zx0p5p0zfkzbi7x"; - name = "recipe"; - }; - packageRequires = [ commander git package-build ]; - meta = { - homepage = "https://melpa.org/#/github-elpa"; - license = lib.licenses.free; - }; - }) {}; - github-explorer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "github-explorer"; - ename = "github-explorer"; - version = "20190420.2210"; - src = fetchFromGitHub { - owner = "TxGVNN"; - repo = "github-explorer"; - rev = "3a67835b24366c64deb2aa33626330742895bb0c"; - sha256 = "1yvdm7kiyiv79kysafjz8w2i66kqf1a98cwwyfykni4zj09hysi2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e224d2272892fb6751a093b0306f399057e6098a/recipes/github-explorer"; - sha256 = "0s7k9wspdmvgmyd5sws3asp3kjp5a4nnzvbyn6jp8bcwd7girmr0"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/github-explorer"; - license = lib.licenses.free; - }; - }) {}; - github-issues = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-issues"; - ename = "github-issues"; - version = "20160616.1141"; - src = fetchFromGitHub { - owner = "inkel"; - repo = "github-issues.el"; - rev = "816f7712b0eb05bffec0add3507302862d2629c4"; - sha256 = "1x6jbnx9lwgy64nl9lpp01xcj9cbx5fq435iwhiarjdsm4kvixb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f761e76236e9372d5fae6b5c5dcb1992c5d64d37/recipes/github-issues"; - sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/github-issues"; - license = lib.licenses.free; - }; - }) {}; - github-modern-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-modern-theme"; - ename = "github-modern-theme"; - version = "20171109.451"; - src = fetchFromGitHub { - owner = "philiparvidsson"; - repo = "GitHub-Modern-Theme-for-Emacs"; - rev = "a7e7b8e5e9c122138e79e837caf9b7299e748d44"; - sha256 = "0agfy3wiznb2ksfa00g7066mb0vps4g74mj6nl9wkvx847dzg34h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/github-modern-theme"; - sha256 = "07xv4psw34mrpb1f5fsvj8vcm9k3xlm43zxr6qmj00p46b35z25r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/github-modern-theme"; - license = lib.licenses.free; - }; - }) {}; - github-notifier = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-notifier"; - ename = "github-notifier"; - version = "20180420.2016"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "github-notifier.el"; - rev = "274f3812926ea371346f639fcee98066f6e8c96f"; - sha256 = "1qv66sdi8zm8nv1xc32lsmm2bgkxf03hb8sfz59mbvzhy6r7dxin"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c09f4e7e8a84a241881d214e8359f8a50ab14ddf/recipes/github-notifier"; - sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/github-notifier"; - license = lib.licenses.free; - }; - }) {}; - github-pullrequest = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , request }: - melpaBuild { - pname = "github-pullrequest"; - ename = "github-pullrequest"; - version = "20170115.2216"; - src = fetchFromGitHub { - owner = "jakoblind"; - repo = "github-pullrequest"; - rev = "471816e09d1e140a0975911fe020c6c659f71209"; - sha256 = "0y7i2zgln3mjj8sm8r4fi67izzyqdxfzj71m2q43dzr8rkrby0qc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/github-pullrequest"; - sha256 = "1p5mwpl59iwd1aqczf1b5shcpzhlqwrcy2vp46c276mhqx15r8fr"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit request ]; - meta = { - homepage = "https://melpa.org/#/github-pullrequest"; - license = lib.licenses.free; - }; - }) {}; - github-review = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ghub - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "github-review"; - ename = "github-review"; - version = "20190327.32"; - src = fetchFromGitHub { - owner = "charignon"; - repo = "github-review"; - rev = "9c3ffe30fba5d02e9951e76d1a5be2ed046663da"; - sha256 = "078rv6f2p3wrznhgvmkhd071bwy72007f5l2m2a0r1k2i3vbfaja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b57420d20c799c0472dae4ab7e017d53dafb262/recipes/github-review"; - sha256 = "1vh24bmvafv9px80gwgcgk7d9z6pjxaadzz7fba8r3m3fzhv4v58"; - name = "recipe"; - }; - packageRequires = [ dash emacs ghub s ]; - meta = { - homepage = "https://melpa.org/#/github-review"; - license = lib.licenses.free; - }; - }) {}; - github-search = callPackage ({ fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "github-search"; - ename = "github-search"; - version = "20170823.2023"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "github-search"; - rev = "c5fa1d9f8f9bcf201fa31478a6f5e02ed5ac086b"; - sha256 = "1v9kswj65sdb90lr4a2xqai55kyp3jp46nksikxx9m243nxdsh9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/733a808400858513137e0e3d7d38b5b25e8ddc5a/recipes/github-search"; - sha256 = "1pwrzbbwnq0il5494561fyvkr0vmm5jqlvpffgkk28c54vs7ms0b"; - name = "recipe"; - }; - packageRequires = [ gh magit ]; - meta = { - homepage = "https://melpa.org/#/github-search"; - license = lib.licenses.free; - }; - }) {}; - github-stars = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ghub - , lib - , melpaBuild }: - melpaBuild { - pname = "github-stars"; - ename = "github-stars"; - version = "20190517.619"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "github-stars.el"; - rev = "bb79c80574cfff865342b6e262f2c9762edb4c15"; - sha256 = "03lx8ndhikl2frdblbi3fsaz6xzfay6w2ngl1z0ib85wca55lzqp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58df7d536f9711e10ecaa6e0a37b9ad255e8fca5/recipes/github-stars"; - sha256 = "1vljmrjid5xxmq5yfmsaq09js7zd75nmm4gd0kwm3lf71pb3lp6f"; - name = "recipe"; - }; - packageRequires = [ emacs ghub ]; - meta = { - homepage = "https://melpa.org/#/github-stars"; - license = lib.licenses.free; - }; - }) {}; - github-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-theme"; - ename = "github-theme"; - version = "20170630.1501"; - src = fetchFromGitHub { - owner = "philiparvidsson"; - repo = "GitHub-Theme-for-Emacs"; - rev = "29f00a51d949a248a5f6355a97131e216747c797"; - sha256 = "16ldfz1k0hxc1b785gzrf70hg0q88ijjxp39hb62iax1k1aw9vlw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/github-theme"; - sha256 = "132jahd8vvhzhhkm71dzq6x46wmaakbbxg9s7r9779bfwbrms9j9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/github-theme"; - license = lib.licenses.free; - }; - }) {}; - gitignore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitignore-mode"; - ename = "gitignore-mode"; - version = "20180318.1256"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "ae6e897c06d3ff609a65a3ac2500d21ccc888822"; - sha256 = "111pm9wwq8p3wiqgap7gyi20say3daadlaxgq2v3mwxyax8fyx34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode"; - sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitignore-mode"; - license = lib.licenses.free; - }; - }) {}; - gitignore-templates = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitignore-templates"; - ename = "gitignore-templates"; - version = "20180327.626"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "gitignore-templates.el"; - rev = "2b729c6b76ec940e15c1599a0105149c2e1f4b17"; - sha256 = "14zsqp128x48d304racw25f1vdi20fadagfqswa5l3rklb0ilbsb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c9aa71eac2e68eb1925ed00a2c659c4375bd39c/recipes/gitignore-templates"; - sha256 = "17zx52pmpd4yqlnj39v7ym728i710mdl0by3lc8zk6ljfz77933w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gitignore-templates"; - license = lib.licenses.free; - }; - }) {}; - gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "gitlab"; - ename = "gitlab"; - version = "20180312.947"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "68318aca3206d50701039c9aae39734ca29a49f9"; - sha256 = "0arsjdn0anp7pacwxd3cw4db8a7pgzjlnwav1l3maaz1176h4lpb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/gitlab"; - sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/gitlab"; - license = lib.licenses.free; - }; - }) {}; - gitlab-ci-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "gitlab-ci-mode"; - ename = "gitlab-ci-mode"; - version = "20190425.1358"; - src = fetchFromGitLab { - owner = "joewreschnig"; - repo = "gitlab-ci-mode"; - rev = "dac4e5125c78aa3ae12d2e35a66196d709676236"; - sha256 = "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode"; - sha256 = "1jg6ihrgccrcwg30ysyqw9k7rmvfmsrp70skr2057hfamvccwn4f"; - name = "recipe"; - }; - 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"; - ename = "gitlab-ci-mode-flycheck"; - version = "20190323.1129"; - src = fetchFromGitLab { - owner = "joewreschnig"; - repo = "gitlab-ci-mode-flycheck"; - rev = "eba81cfb7224fd1fa4e4da90d11729cc7ea12f72"; - sha256 = "1w1simnlffg56j79gal1qf1nlav9f8fmr2zfswfrmcv6cac6fhj9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode-flycheck"; - sha256 = "19ixd60yynsvmaj7mkppp6k73793x794vrnhx3hh6n7dap1rsjdh"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck gitlab-ci-mode ]; - meta = { - homepage = "https://melpa.org/#/gitlab-ci-mode-flycheck"; - license = lib.licenses.free; - }; - }) {}; - gitolite-clone = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "gitolite-clone"; - ename = "gitolite-clone"; - version = "20160609.1655"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "gitolite-clone"; - rev = "d8a4c2875c984e51137c980b5773f42703602721"; - sha256 = "11i9hxj76869w1z9xn7wq370v56hx5hm4d7msn4zgp64glpa66j9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gitolite-clone"; - sha256 = "0mv2bdfqqq47wgikkm5kwpr8gajylf1yzk2j6cxljz09amgq6c8q"; - name = "recipe"; - }; - packageRequires = [ dash emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/gitolite-clone"; - license = lib.licenses.free; - }; - }) {}; - gitpatch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitpatch"; - ename = "gitpatch"; - version = "20170721.2110"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "gitpatch"; - rev = "577d5adf65c8133caa325c10e89e1e2fc323c907"; - sha256 = "1jj12pjwza6cq8a3kr8nqnmm3vxs0wam8h983irry4xr4ifywsn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gitpatch"; - sha256 = "0qaswkk06z24v40nkjkv7f6gfv0dlsjd6wchkn0ppqw95883vhv1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gitpatch"; - license = lib.licenses.free; - }; - }) {}; - gitter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "gitter"; - ename = "gitter"; - version = "20180122.56"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "gitter.el"; - rev = "11cb9b4b45f67bdc24f055a9bfac21d2bd19ea1a"; - sha256 = "14ri86kxqz9qfhcr0bkgfyggy4bgg9imk9akhw6dfzqkl90gn2gy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8076c3b4d60e4c505bb6f4e426ecc4f69d74684/recipes/gitter"; - sha256 = "1ad5abqgfh6x2fcqbbdvgbg8xin69j0h93z7bav1hs3jla7mgwnv"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/gitter"; - license = lib.licenses.free; - }; - }) {}; - gl-conf-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gl-conf-mode"; - ename = "gl-conf-mode"; - version = "20170714.610"; - src = fetchFromGitHub { - owner = "llloret"; - repo = "gitolite-emacs"; - rev = "9136a9b737e0a5b6471a91571d104c487c43f35b"; - sha256 = "0wls3sfplrf7wkg7g7fxx4s87cvm3p7myxw6k91np6pbfh8p0s9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3117e62d429e44506f7d82fc64252d41bc1a4b6/recipes/gl-conf-mode"; - sha256 = "0lf8xmq309aqyf16ymqlr8gj2qawlsqagbdndj0kgj72dnnw4cfm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gl-conf-mode"; - license = lib.licenses.free; - }; - }) {}; - glsl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "glsl-mode"; - ename = "glsl-mode"; - version = "20190513.1845"; - src = fetchFromGitHub { - owner = "jimhourihan"; - repo = "glsl-mode"; - rev = "eaea63a45d0dcb04ddbf069b4bcfd99f10919e44"; - sha256 = "0fb6as099y1k8inc39n8hkmb63j1l4sd5q9cbyqz4shfczma3546"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c416822d54df436f29dcf9a5f26398685fdc17a2/recipes/glsl-mode"; - sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/glsl-mode"; - license = lib.licenses.free; - }; - }) {}; - gmail-message-mode = callPackage ({ fetchFromGitHub - , fetchurl - , ham-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "gmail-message-mode"; - ename = "gmail-message-mode"; - version = "20160627.1147"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "gmail-mode"; - rev = "ec36672a9dc93c09ebe2f77597b498d11883d008"; - sha256 = "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/gmail-message-mode"; - sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; - name = "recipe"; - }; - packageRequires = [ ham-mode ]; - meta = { - homepage = "https://melpa.org/#/gmail-message-mode"; - license = lib.licenses.free; - }; - }) {}; - gmail2bbdb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gmail2bbdb"; - ename = "gmail2bbdb"; - version = "20170423.444"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "gmail2bbdb"; - rev = "a84fa385cfaec7fc5f1518c368e52722da139f99"; - sha256 = "1qbf3r8a66xlrbni3hv5q5b5v3izis5aid06228rfpc2hwa97hr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb3c88b20a7614504165cd5fb459b0a9d5c73f60/recipes/gmail2bbdb"; - sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gmail2bbdb"; - license = lib.licenses.free; - }; - }) {}; - gmpl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gmpl-mode"; - ename = "gmpl-mode"; - version = "20171031.1354"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "gmpl-mode"; - rev = "c5d362169819ee8b8e8954145daee7e260c54921"; - sha256 = "00p2z6kbyc0bas21d1zygx7z49w6mf22y9kf1rcm9gqsnnadb4j9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c89a523f87db358c477e5840b0e043e9f253e640/recipes/gmpl-mode"; - sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gmpl-mode"; - license = lib.licenses.free; - }; - }) {}; - gn-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gn-mode"; - ename = "gn-mode"; - version = "20190428.1112"; - src = fetchFromGitHub { - owner = "lashtear"; - repo = "gn-mode"; - rev = "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2"; - sha256 = "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c6c27bce3d0aaf7e3791299a527d5f1fd69653/recipes/gn-mode"; - sha256 = "1rn4xa1am1yd9k2hpi5b0zhs3pgq4hnhgxdgs258cmhszm8c6ii2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/gn-mode"; - license = lib.licenses.free; - }; - }) {}; - gnome-calendar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnome-calendar"; - ename = "gnome-calendar"; - version = "20161110.456"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "gnome-calendar.el"; - rev = "668591bec95c23934c5e1ef100cec4824e7cb25d"; - sha256 = "01dgv24snakxr7smkza6334wr74q74g0mrkzd93xwdxrm5k68ahg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e497668d65f0eabd15e39b7492adb395a5a8e75/recipes/gnome-calendar"; - sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnome-calendar"; - license = lib.licenses.free; - }; - }) {}; - gnomenm = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gnomenm"; - ename = "gnomenm"; - version = "20150316.1218"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-nm"; - rev = "9065cda44ffc9e06239b8189a0154d31314c3b4d"; - sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd98221d3498528efb0f2d943102d32ebd7b34b3/recipes/gnomenm"; - sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm"; - name = "recipe"; - }; - packageRequires = [ dash kv s ]; - meta = { - homepage = "https://melpa.org/#/gnomenm"; - license = lib.licenses.free; - }; - }) {}; - gntp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gntp"; - ename = "gntp"; - version = "20141024.1950"; - src = fetchFromGitHub { - owner = "tekai"; - repo = "gntp.el"; - rev = "767571135e2c0985944017dc59b0be79af222ef5"; - sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c69a148d3b72d1be6ea10100a8e0cbbd918baa9c/recipes/gntp"; - sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gntp"; - license = lib.licenses.free; - }; - }) {}; - gnu-apl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnu-apl-mode"; - ename = "gnu-apl-mode"; - version = "20181217.54"; - src = fetchFromGitHub { - owner = "lokedhs"; - repo = "gnu-apl-mode"; - rev = "3b5b13abeb424e8ed399379fdefc168422664def"; - sha256 = "0nhbfzfwl44ffvhzrnkjxaxz2nfrp1a7zcy6fg6cm13c2z40jslp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/369a55301bba0c4f7ce27f6e141944a523beaa0f/recipes/gnu-apl-mode"; - sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gnu-apl-mode"; - license = lib.licenses.free; - }; - }) {}; - gnuplot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnuplot"; - ename = "gnuplot"; - version = "20141231.1337"; - src = fetchFromGitHub { - owner = "bruceravel"; - repo = "gnuplot-mode"; - rev = "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9"; - sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78be03893e4b0502ce999375e5630d32bda56ac1/recipes/gnuplot"; - sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnuplot"; - license = lib.licenses.free; - }; - }) {}; - gnuplot-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnuplot-mode"; - ename = "gnuplot-mode"; - version = "20171013.916"; - src = fetchFromGitHub { - owner = "mkmcc"; - repo = "gnuplot-mode"; - rev = "601f6392986f0cba332c87678d31ae0d0a496ce7"; - sha256 = "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba/recipes/gnuplot-mode"; - sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnuplot-mode"; - license = lib.licenses.free; - }; - }) {}; - gnus-alias = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-alias"; - ename = "gnus-alias"; - version = "20150315.1742"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "gnus-alias"; - rev = "9447d3ccb4c0e75d0468899cccff7aa249657bac"; - sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6176257e00ca09e79fdff03c6dd450af8eb83666/recipes/gnus-alias"; - sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnus-alias"; - license = lib.licenses.free; - }; - }) {}; - gnus-desktop-notify = callPackage ({ fetchFromGitLab - , fetchurl - , gnus ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-desktop-notify"; - ename = "gnus-desktop-notify"; - version = "20180623.838"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "gnus-desktop-notify.el"; - rev = "44ebe0241a19f4052cd427dff408206542aa3c8f"; - sha256 = "1fqkclbddwfqywvkrb7l2cpibapxrk82ikdpbxapj09iwyn3ijlz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/gnus-desktop-notify"; - sha256 = "1cfcmmq0ywgp41g0rf8s5fabh3yqbv9iacxi7v74kqh59bqdnz3x"; - name = "recipe"; - }; - packageRequires = [ gnus ]; - meta = { - homepage = "https://melpa.org/#/gnus-desktop-notify"; - license = lib.licenses.free; - }; - }) {}; - gnus-recent = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-recent"; - ename = "gnus-recent"; - version = "20190423.446"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "gnus-recent"; - rev = "d9375cfad0054a05c910c1210f0f37aa601aebba"; - sha256 = "19ggfisfxq2bk62axdi0nipwxymrvnnvmijcrwc9yglbnhiigdb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b80d94cf1a8b8e2d4da5d45f65231aa4884a3a0/recipes/gnus-recent"; - sha256 = "14xac6bmn61bk0h6dby14111iijz0j254v4mh77lf0ydbz6wxjf1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gnus-recent"; - license = lib.licenses.free; - }; - }) {}; - gnus-select-account = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-select-account"; - ename = "gnus-select-account"; - version = "20170721.2211"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "gnus-select-account"; - rev = "ddc8c135eeaf90f5b6692a033af2badae36e68ce"; - sha256 = "0csq8cqv028g3mrvk88l0nlj3dk5fh67c10hdjwvxbf7winv0391"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gnus-select-account"; - sha256 = "1yini6kif7vp5msmhnnpfkab5m5px8y4wgvc0f0k79kdd17gvpsx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnus-select-account"; - license = lib.licenses.free; - }; - }) {}; - gnus-summary-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-summary-ext"; - ename = "gnus-summary-ext"; - version = "20180113.516"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "gnus-summary-ext"; - rev = "025fd853fe9280ae696a89ec2c2cac9befd010aa"; - sha256 = "07ww2nc03daz70f2ajw7b2gin22xa306001zclhrxkm1cpjif2fi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca4a905b5f81991074c7d3e41d4422c7e6713d5/recipes/gnus-summary-ext"; - sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnus-summary-ext"; - license = lib.licenses.free; - }; - }) {}; - gnus-summary-repo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-summary-repo"; - ename = "gnus-summary-repo"; - version = "20190510.1052"; - src = fetchFromGitHub { - owner = "TxGVNN"; - repo = "gnus-summary-repo"; - rev = "4787825eec56c4e90a746e98ab38ba44b6e1b2e1"; - sha256 = "1nx742xg0c6vwc7zgaqbhf2xajby0i3b2xq46ldw96bkvwizry4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0decb1e7d7fd32dc4ed7e07c751621eea0af0ab5/recipes/gnus-summary-repo"; - sha256 = "0lwdhymayqs1cx76lnral2cs5dhrxwzlpc1ivchbyr1pj9x2nj6w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gnus-summary-repo"; - license = lib.licenses.free; - }; - }) {}; - gnus-x-gm-raw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "gnus-x-gm-raw"; - ename = "gnus-x-gm-raw"; - version = "20140610.31"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "gnus-x-gm-raw"; - rev = "c2c8c5e94ac94f4c40e023452119c088ac59eac9"; - sha256 = "0gf418ri69yzi9cbxdyna9kxjsniyw72xix2r94m439k1axpwa3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/263b87e40e32421ae56a99971a7e1baca0484778/recipes/gnus-x-gm-raw"; - sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/gnus-x-gm-raw"; - license = lib.licenses.free; - }; - }) {}; - go = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go"; - ename = "go"; - version = "20161110.1849"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "el-go"; - rev = "ff45fb44d9cb6579d8511d8b6156ed0b34d5ac97"; - sha256 = "14av8zcxp9r4ka0h9x73i6gzwbf231wqkin65va3agrzwaf8swz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go"; - sha256 = "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/go"; - license = lib.licenses.free; - }; - }) {}; - go-add-tags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "go-add-tags"; - ename = "go-add-tags"; - version = "20161123.427"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-add-tags"; - rev = "54879945e46a0884c5f93d7fd6c866a9cdf401ac"; - sha256 = "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55d3b893bd68d3d2d86ecdbb4ed442edd256516a/recipes/go-add-tags"; - sha256 = "0nvas44rsvqzk2ay5bhzkbrnzql13vnxq9pk4lp4mvp86dda9qim"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/go-add-tags"; - license = lib.licenses.free; - }; - }) {}; - go-autocomplete = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-autocomplete"; - ename = "go-autocomplete"; - version = "20150903.1940"; - src = fetchFromGitHub { - owner = "mdempsky"; - repo = "gocode"; - rev = "ccbc3bda7debb16fa6672e719f8f74fa2523c321"; - sha256 = "0gshb5d20v342disc290pry8i6p60srl2ip186kb4sk692lk0ily"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3/recipes/go-autocomplete"; - sha256 = "15ns1zzw6kblcbih7dmjvk1p0f6f3p2wpgx4gnd9ax0fcj65ghwi"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/go-autocomplete"; - license = lib.licenses.free; - }; - }) {}; - go-complete = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-complete"; - ename = "go-complete"; - version = "20190408.2216"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "go-complete"; - rev = "056294014f37a1004958ec17ebd6748deed63502"; - sha256 = "021mc1lq4xvmj8dvnpr6hhfs08cd0r07d520h498b345y6a6ihdg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4df81abbf3b16f06fa327c1626bef1245ea77758/recipes/go-complete"; - sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4"; - name = "recipe"; - }; - packageRequires = [ cl-lib go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-complete"; - license = lib.licenses.free; - }; - }) {}; - go-direx = callPackage ({ cl-lib ? null - , direx - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-direx"; - ename = "go-direx"; - version = "20150315.1843"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-direx"; - rev = "aecb9fef4d56d04d230d37c75c260c8392b5ad9f"; - sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/032c0c3cd04f36f1bc66bb7d9d789d354c620a09/recipes/go-direx"; - sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; - name = "recipe"; - }; - packageRequires = [ cl-lib direx ]; - meta = { - homepage = "https://melpa.org/#/go-direx"; - license = lib.licenses.free; - }; - }) {}; - go-dlv = callPackage ({ fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-dlv"; - ename = "go-dlv"; - version = "20190413.923"; - src = fetchFromGitHub { - owner = "benma"; - repo = "go-dlv.el"; - rev = "df03ade331d8fb46acc57ef358e696bc36129e04"; - sha256 = "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/go-dlv"; - sha256 = "0lb5v9pmd6m8nvk4c9gcda5dmshrf5812gg1arq5p2g0nzg32mm8"; - name = "recipe"; - }; - packageRequires = [ go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-dlv"; - license = lib.licenses.free; - }; - }) {}; - go-eldoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-eldoc"; - ename = "go-eldoc"; - version = "20170305.627"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-eldoc"; - rev = "cbbd2ea1e94a36004432a9ac61414cb5a95a39bd"; - sha256 = "1029qg6ida3cw4ynxll6ykpnqkpbrbrx12nnzcplhc25vqpz7hik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ce1190db06cc214746215dd27648eded5fe5140/recipes/go-eldoc"; - sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-eldoc"; - license = lib.licenses.free; - }; - }) {}; - go-errcheck = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-errcheck"; - ename = "go-errcheck"; - version = "20160722.1743"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-errcheck.el"; - rev = "9db21eccecedc2490793f176246094167164af31"; - sha256 = "1ngzgkmcbk6qa3p97hch75k446h15515arsdfv7mqb4m5va6429h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c874f608a55cafcc6e57ca2c80bdae6b1c2e47e9/recipes/go-errcheck"; - sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-errcheck"; - license = lib.licenses.free; - }; - }) {}; - go-fill-struct = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-fill-struct"; - ename = "go-fill-struct"; - version = "20171224.1931"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "go-fill-struct"; - rev = "a613d0b378473eef39e8fd5724abe790aea84321"; - sha256 = "16bgfykvqc61hlx1hj55z15y83zgpavhb853sblds75m8w7mndqg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c03d2382efd20e248b27b5505cdeed67d000f73/recipes/go-fill-struct"; - sha256 = "19xxqb836saxigvwdqf4xv0y9zrl7csv97x0facgyjyiqmwhx3x7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/go-fill-struct"; - license = lib.licenses.free; - }; - }) {}; - go-gen-test = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "go-gen-test"; - ename = "go-gen-test"; - version = "20171022.2058"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "go-gen-test"; - rev = "44c202ac97e728e93a35cee028a0ea8dd6e4292c"; - sha256 = "1vi5xsf0xbcbvapi20hsjangwyp38cbgi8kiccpmingnq2kp8ghs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0861c126161a2674f0e115eac6f948490b142b44/recipes/go-gen-test"; - sha256 = "1pj8n8xj9ccq9ips4wy4v6hdxxgwv11pwi671l6jjrig38v13dzr"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/go-gen-test"; - license = lib.licenses.free; - }; - }) {}; - go-gopath = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-gopath"; - ename = "go-gopath"; - version = "20160705.334"; - src = fetchFromGitHub { - owner = "iced"; - repo = "go-gopath"; - rev = "5172fc53f21edbf9347d5ee7d1d745da1ec88a15"; - sha256 = "0gqb3k33y42gchc89rw3k1pvb7ai9ka50ljfd4avk31fdpr4dln5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ca8d10b10b015c5bdafe1dbc8e53eb4c0d26d9c/recipes/go-gopath"; - sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/go-gopath"; - license = lib.licenses.free; - }; - }) {}; - go-guru = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-guru"; - ename = "go-guru"; - version = "20181011.2030"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "120fb911f1d8038f828da85eed8aaad977dabd8c"; - sha256 = "18qx1mf4fgrzm8g89c4y7zvwl3djrbbkhar242zl5ab5218dsp0s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-guru"; - sha256 = "01f0gz65z8d0iv8k49xl2sp6q4qnsvwhd4g8fb2irp7iclb0xmvk"; - name = "recipe"; - }; - packageRequires = [ cl-lib go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-guru"; - license = lib.licenses.free; - }; - }) {}; - go-imenu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-imenu"; - ename = "go-imenu"; - version = "20181029.329"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "go-imenu.el"; - rev = "00bb69c1c71453f43ab2d6622a74e3c8e6b454b9"; - sha256 = "1bwcsph6ywnqf2dbzh82vzw7m6g5qyxzjln8n3470h06iv7jhic2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d602b6071787018e3e0a68b4852eb978b34acbea/recipes/go-imenu"; - sha256 = "0s8rc7rkqlywrhnm2h8yygn87jhjc492wmsvnr1rxl62wf5cijms"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/go-imenu"; - license = lib.licenses.free; - }; - }) {}; - go-impl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-impl"; - ename = "go-impl"; - version = "20170125.752"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-impl"; - rev = "69f0d0ef05771487e15abec500cd06befd171abf"; - sha256 = "1rmik6g3l9q1bqavmqx1fhcadz4pwswgfnkbaxl6c5b6g2sl26iq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl"; - sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-impl"; - license = lib.licenses.free; - }; - }) {}; - go-imports = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-imports"; - ename = "go-imports"; - version = "20180709.2228"; - src = fetchFromGitHub { - owner = "yasushi-saito"; - repo = "go-imports"; - rev = "d9950309c868aa46c45f8671413e53f97dc7fe0b"; - sha256 = "1nq0s6zkk87jggj91iza9ap255i8r1c8ahb1118s25pvb5gcfnfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4118ebf0db84cc047fab311c789bfbffd6eb2d92/recipes/go-imports"; - sha256 = "0xxlh4rmyvfxiynsdqng6wd3js7h3azhb8ii0ch7n0hhqkcnda4x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-imports"; - license = lib.licenses.free; - }; - }) {}; - go-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-mode"; - ename = "go-mode"; - version = "20181011.2029"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "be9186c658c33e2cfd09e8808e578d525dcbf2a2"; - sha256 = "086qj1rmfkk7x0a1p76z33rycgrcawmyg7h3k9j978v4k1xa5xnf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-mode"; - sha256 = "0ghqm4lbkfla79plqiyb1lzf5kbz0380h9vf8px15zal00xrv0bl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-mode"; - license = lib.licenses.free; - }; - }) {}; - go-playground = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , gotest - , lib - , melpaBuild }: - melpaBuild { - pname = "go-playground"; - ename = "go-playground"; - version = "20181103.1146"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "go-playground"; - rev = "790562506dc941648d7a54fd21677871942251e4"; - sha256 = "06aaxx7qk1g7sk80rr3jgz6qrqlh5zlf57h9di740645kmyr6vkd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/900aabb7bc2350698f8740d72a5fad69c9219c33/recipes/go-playground"; - sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode gotest ]; - meta = { - homepage = "https://melpa.org/#/go-playground"; - license = lib.licenses.free; - }; - }) {}; - go-playground-cli = callPackage ({ cl-lib ? null - , deferred - , emacs - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , names - , request - , s }: - melpaBuild { - pname = "go-playground-cli"; - ename = "go-playground-cli"; - version = "20160503.214"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "emacs-go-playground"; - rev = "60beebd98e3930641d41cee0189c579626f223bc"; - sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3af0a72ee1222c133ccfd76f004a346fd6110eee/recipes/go-playground-cli"; - sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred emacs f let-alist names request s ]; - meta = { - homepage = "https://melpa.org/#/go-playground-cli"; - license = lib.licenses.free; - }; - }) {}; - go-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , go-eldoc - , go-guru - , go-mode - , go-rename - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "go-projectile"; - ename = "go-projectile"; - version = "20181023.1444"; - src = fetchFromGitHub { - owner = "dougm"; - repo = "go-projectile"; - rev = "7910884b4de560f3fc70b53752f658ef9cdc02cd"; - sha256 = "03bh8k95qrc3q1sja05bbv3jszh6rgdv56jpi8g06yxk53457a1n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3559a179be2a5cda71ee0a5a18bead4b3a1a8138/recipes/go-projectile"; - sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml"; - name = "recipe"; - }; - packageRequires = [ go-eldoc go-guru go-mode go-rename projectile ]; - meta = { - homepage = "https://melpa.org/#/go-projectile"; - license = lib.licenses.free; - }; - }) {}; - go-rename = callPackage ({ fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-rename"; - ename = "go-rename"; - version = "20180626.2348"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "da55ef1ad3a4802f7d056d3065f6962db3d6fd14"; - sha256 = "1mphf9msxc24q2i0ghcgd0ah6r0x6svxak6kn9is7x0kbfiy9226"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d806abe90da9a8951fdb0c31e2167bde13183c5c/recipes/go-rename"; - sha256 = "1cd2nfgwnqzylbry11ahahdip8w66w5hnrndrs65ip10s08w2xki"; - name = "recipe"; - }; - packageRequires = [ go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-rename"; - license = lib.licenses.free; - }; - }) {}; - go-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-scratch"; - ename = "go-scratch"; - version = "20150809.2140"; - src = fetchFromGitHub { - owner = "shosti"; - repo = "go-scratch.el"; - rev = "3f68cbcce04f59eb8e83af109164731ec0454be0"; - sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1713e6f02f8908b828ac2722a3185ea7cceb0609/recipes/go-scratch"; - sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-scratch"; - license = lib.licenses.free; - }; - }) {}; - go-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "go-snippets"; - ename = "go-snippets"; - version = "20180112.2211"; - src = fetchFromGitHub { - owner = "toumorokoshi"; - repo = "go-snippets"; - rev = "d437df148879566ffe7f2e503a3cf2602aa9fb28"; - sha256 = "0rs2yj9bh0snf13hfj9bvyawl16j8416naz6h52l21q72ymd4b0k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca9f3022e7f4d5391be394cd56f6db75c9cff3b6/recipes/go-snippets"; - sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/go-snippets"; - license = lib.licenses.free; - }; - }) {}; - go-stacktracer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-stacktracer"; - ename = "go-stacktracer"; - version = "20150430.1442"; - src = fetchFromGitHub { - owner = "samertm"; - repo = "go-stacktracer.el"; - rev = "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976"; - sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/401996c585d2ccf97add1bc420250d96188b651a/recipes/go-stacktracer"; - sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-stacktracer"; - license = lib.licenses.free; - }; - }) {}; - go-tag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-tag"; - ename = "go-tag"; - version = "20180226.2011"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "emacs-go-tag"; - rev = "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40"; - sha256 = "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4cd3fd8fb0707912e205b9d71789ea8126c442/recipes/go-tag"; - sha256 = "18ff41i0gr708fl4gzzspf9cc09nv4wy21wsn609yhwlh7w0vs1f"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-tag"; - license = lib.licenses.free; - }; - }) {}; - gobgen = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gobgen"; - ename = "gobgen"; - version = "20161020.823"; - src = fetchFromGitHub { - owner = "gergelypolonkai"; - repo = "gobgen.el"; - rev = "ed2c2b0d217deae293096f3cf14aa492791ddd4f"; - sha256 = "1isda941gzrl9r2xxaxbsqjxq146cmnhl04m634m8m0q2d751pwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c9fed22bb8dbfb359e4fdb0d802ed4b5781f50d/recipes/gobgen"; - sha256 = "0fb0q9x7wj8gs1iyr87q1vpxmfa2d43zy6cgxpzmv2wc26x96vi7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gobgen"; - license = lib.licenses.free; - }; - }) {}; - god-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "god-mode"; - ename = "god-mode"; - version = "20180117.334"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "god-mode"; - rev = "344167ed9b4c212273dd056e7481cf1373b461d0"; - sha256 = "0y7phh7amrdphv9dkf0304z2knyas745ir59ybngh1a55dfc2mf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2dff8dc08583048f9b7b4cb6d8f05a18dd4e8b42/recipes/god-mode"; - sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/god-mode"; - license = lib.licenses.free; - }; - }) {}; - godoctor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "godoctor"; - ename = "godoctor"; - version = "20180710.1452"; - src = fetchFromGitHub { - owner = "microamp"; - repo = "godoctor.el"; - rev = "4b45ff3d0572f0e84056e4c3ba91fcc178199859"; - sha256 = "12gga1ghc54r6f2adyaq30hm2yxspvgg54zd4k82c3d6cj51qwci"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0e23e1362ff7d477ad9ce6cfff694db989dfb87b/recipes/godoctor"; - sha256 = "0k734hry9npsr6zhsplcvmcjqw6jdf79pv4k9dw0xvd598hkpazz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/godoctor"; - license = lib.licenses.free; - }; - }) {}; - gold-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sws-mode }: - melpaBuild { - pname = "gold-mode"; - ename = "gold-mode"; - version = "20140606.1906"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "gold-mode-el"; - rev = "6d3aa59602b1b835495271c8c9741ac344c2eab1"; - sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1991b63067c581c7576df4b69b509ab5a44d5a/recipes/gold-mode"; - sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf"; - name = "recipe"; - }; - packageRequires = [ sws-mode ]; - meta = { - homepage = "https://melpa.org/#/gold-mode"; - license = lib.licenses.free; - }; - }) {}; - golden-ratio = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "golden-ratio"; - ename = "golden-ratio"; - version = "20150819.420"; - src = fetchFromGitHub { - owner = "roman"; - repo = "golden-ratio.el"; - rev = "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae"; - sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e87b2af052d0406431957d75aa3717899bdbc8ae/recipes/golden-ratio"; - sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/golden-ratio"; - license = lib.licenses.free; - }; - }) {}; - golden-ratio-scroll-screen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "golden-ratio-scroll-screen"; - ename = "golden-ratio-scroll-screen"; - version = "20170223.1829"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "golden-ratio-scroll-screen"; - rev = "0428fbe020ddb90811f2932e661796f667bf4ac5"; - sha256 = "1v4rz5ddd0x7szk9pz5hrxp25xqdf6gngrm8y2cf8xgyvrlscyba"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af044c4a28149362347c2477f0d8d0f8d1dc8c0d/recipes/golden-ratio-scroll-screen"; - sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/golden-ratio-scroll-screen"; - license = lib.licenses.free; - }; - }) {}; - goldendict = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goldendict"; - ename = "goldendict"; - version = "20180121.120"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "goldendict.el"; - rev = "1aac19daaec811deb9afe45eea4929309c09ac8b"; - sha256 = "1il432f6ayj2whl4s804n5wykgs51jhbx4xkcbfgqra58cbjrjhi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af87026905478d9134a4a036e792f6afd9c10768/recipes/goldendict"; - sha256 = "0zvrlz169pg9bj1bmks4lh5zn8cygqzwiyzg49na2a7wf2sk9m1f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/goldendict"; - license = lib.licenses.free; - }; - }) {}; - golint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "golint"; - ename = "golint"; - version = "20180221.1215"; - src = fetchFromGitHub { - owner = "golang"; - repo = "lint"; - rev = "0562613f16a6ec439a4a68e817e69e0f7c405c87"; - sha256 = "1lhzas39dkf38965ibrxdfdh7gxsjiyzqas7h51zr5fdx6cyjwnf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34f22d829257456abbc020c006b92da9c7a7860e/recipes/golint"; - sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/golint"; - license = lib.licenses.free; - }; - }) {}; - gom-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gom-mode"; - ename = "gom-mode"; - version = "20131007.1953"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-gom-mode"; - rev = "972e33df1d38ff323bc97de87477305826013701"; - sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1e5f505e048b36c12de36b23b779beeaefc45f/recipes/gom-mode"; - sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gom-mode"; - license = lib.licenses.free; - }; - }) {}; - google = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google"; - ename = "google"; - version = "20140416.1048"; - src = fetchFromGitHub { - owner = "hober"; - repo = "google-el"; - rev = "3b3189a8b201c8d36fed6e61496274e530dd40bd"; - sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45237d37da807559498bb958184e05109f880070/recipes/google"; - sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/google"; - license = lib.licenses.free; - }; - }) {}; - google-c-style = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-c-style"; - ename = "google-c-style"; - version = "20180130.936"; - src = fetchFromGitHub { - owner = "google"; - repo = "styleguide"; - rev = "505ba68c74eb97e6966f60907ce893001bedc706"; - sha256 = "0277vsj0shrlgb96zgy8lln55l2klzkk6h28g4srbpgkwz5xxsx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/google-c-style"; - sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/google-c-style"; - license = lib.licenses.free; - }; - }) {}; - google-contacts = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , oauth2 }: - melpaBuild { - pname = "google-contacts"; - ename = "google-contacts"; - version = "20180919.614"; - src = fetchFromGitHub { - owner = "jd"; - repo = "google-contacts.el"; - rev = "2273582713712a58e71156a8a29972d42e8e690e"; - sha256 = "1iw5khd3mcgq7vmpm2xw1s713glc8c569n4mgrmmggg73sjnj4kf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-contacts"; - sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn"; - name = "recipe"; - }; - packageRequires = [ cl-lib oauth2 ]; - meta = { - homepage = "https://melpa.org/#/google-contacts"; - license = lib.licenses.free; - }; - }) {}; - google-maps = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-maps"; - ename = "google-maps"; - version = "20181121.732"; - src = fetchFromGitHub { - owner = "jd"; - repo = "google-maps.el"; - rev = "2eb16ff609f5a9f8d02c15238a111fbb7db6c146"; - sha256 = "1bl0dnksbf14d0xcnvdy9qpvzc5c8jwkxpmfvgayj6djikxnw2md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-maps"; - sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/google-maps"; - license = lib.licenses.free; - }; - }) {}; - google-this = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-this"; - ename = "google-this"; - version = "20170810.515"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "emacs-google-this"; - rev = "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84"; - sha256 = "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this"; - sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/google-this"; - license = lib.licenses.free; - }; - }) {}; - google-translate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-translate"; - ename = "google-translate"; - version = "20190206.429"; - src = fetchFromGitHub { - owner = "atykhonov"; - repo = "google-translate"; - rev = "bf119aac424994d2aa91fce9630adc01ed0ea617"; - sha256 = "05ljjw7kbnszygw3w085kv57swfiiqxri2b5xvsf5dw3pc3g7j3c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3c275e59cbfe6e40f9cd4c470fc66544c9a6d21/recipes/google-translate"; - sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/google-translate"; - license = lib.licenses.free; - }; - }) {}; - goose-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goose-theme"; - ename = "goose-theme"; - version = "20160828.545"; - src = fetchFromGitHub { - owner = "tokenrove"; - repo = "goose-theme"; - rev = "acd017b50ab25a75fd1331eb3de66467e2042e9c"; - sha256 = "1mmdvjsgnwgs6akhyj96fgj30mz53djdq85dl5q4cmiznlbma7hy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23a52e068ec0e6d457402254727673ea02bd407/recipes/goose-theme"; - sha256 = "1nw948js678xc5vgrpdkykpcbn1b1id4k1clf87vfv7y5zssvd0x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/goose-theme"; - license = lib.licenses.free; - }; - }) {}; - gopher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , w3m }: - melpaBuild { - pname = "gopher"; - ename = "gopher"; - version = "20190512.651"; - src = fetchFromGitHub { - owner = "msnyder-info"; - repo = "gopher.el"; - rev = "6f4accac226698b22e8388e41ad5723b12553dde"; - sha256 = "02093q9dwbqjyq47j05cmxmw12690f4qqpwsj7qnqz15m9n4b6xc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c01e1c5009e8a4fefe5169c8e97ead53f8f6621/recipes/gopher"; - sha256 = "01b1mr8nn5yrq65y067slc7mvxigansbim0nha41ckyrkh8mw4fs"; - name = "recipe"; - }; - packageRequires = [ emacs w3m ]; - meta = { - homepage = "https://melpa.org/#/gopher"; - license = lib.licenses.free; - }; - }) {}; - gore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "gore-mode"; - ename = "gore-mode"; - version = "20151123.1127"; - src = fetchFromGitHub { - owner = "sergey-pashaev"; - repo = "gore-mode"; - rev = "94d7f3e99104e06167967c98fdc201049c433c2d"; - sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de09fcf14f778efe4247a93fb887b77050258f39/recipes/gore-mode"; - sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3"; - name = "recipe"; - }; - packageRequires = [ go-mode ]; - meta = { - homepage = "https://melpa.org/#/gore-mode"; - license = lib.licenses.free; - }; - }) {}; - gorepl-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gorepl-mode"; - ename = "gorepl-mode"; - version = "20170905.245"; - src = fetchFromGitHub { - owner = "manute"; - repo = "gorepl-mode"; - rev = "bbd27f6a0a77f484e2a3f082d70dc69da63ae52a"; - sha256 = "01lqirxgw7svxy1fdv49mvcbhpslf64in6c4dk36b8xhngyqbilf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gorepl-mode"; - sha256 = "0xcjjh9hf3pv5jgv089c6bb00s215fc9qwn72fav1xbm5f49nkaq"; - name = "recipe"; - }; - packageRequires = [ emacs f hydra s ]; - meta = { - homepage = "https://melpa.org/#/gorepl-mode"; - license = lib.licenses.free; - }; - }) {}; - gotest = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gotest"; - ename = "gotest"; - version = "20180617.633"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "gotest.el"; - rev = "4b21b86c07a1597e5e3ca795603787906695ee1b"; - sha256 = "1s1m7r74h2qa10z11xcrsv9ivfn9xc6bbzcxy41whdjp46m65qjm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest"; - sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; - name = "recipe"; - }; - packageRequires = [ emacs f go-mode s ]; - meta = { - homepage = "https://melpa.org/#/gotest"; - license = lib.licenses.free; - }; - }) {}; - gotham-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gotham-theme"; - ename = "gotham-theme"; - version = "20171013.1216"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "gotham-theme"; - rev = "5e97554d1f9639698faedb0660e63694be33bd84"; - sha256 = "18x0b2qmyzf9sddsv9ps1059pi4ndzq44rm4yl87slq03y75nxi9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b388de872be397864a1217a330ba80437c287c0/recipes/gotham-theme"; - sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gotham-theme"; - license = lib.licenses.free; - }; - }) {}; - goto-char-preview = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-char-preview"; - ename = "goto-char-preview"; - version = "20190418.129"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "goto-char-preview"; - rev = "5ff31c670fa050ad44dbf3f2edacc877ec9ba6f4"; - sha256 = "12pixfgjyf7shl8mmcfyfq8ma292r3ajhicy2f54hdjjn017h8hj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b856d9304ba8814050634db54c8abb88e5dce772/recipes/goto-char-preview"; - sha256 = "1h9lq9ka469day511nnv566kggja23pa8zhqxa805p6lp7132b4d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/goto-char-preview"; - license = lib.licenses.free; - }; - }) {}; - goto-chg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , undo-tree }: - melpaBuild { - pname = "goto-chg"; - ename = "goto-chg"; - version = "20190110.1314"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "goto-chg"; - rev = "1829a13026c597e358f716d2c7793202458120b5"; - sha256 = "1y603maw9xwdj3qiarmf1bp13461f9f5ackzicsbynl0i9la3qki"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf1fc176430fe3ab55ce537a0efc59780bb812be/recipes/goto-chg"; - sha256 = "1yd4jq4zql4av9nr1sdk4nsnnk54c3brgjhpczndy1ipiaxlnydy"; - name = "recipe"; - }; - packageRequires = [ undo-tree ]; - meta = { - homepage = "https://melpa.org/#/goto-chg"; - license = lib.licenses.free; - }; - }) {}; - goto-gem = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "goto-gem"; - ename = "goto-gem"; - version = "20140729.1145"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "goto-gem"; - rev = "e3206f11f48bb7e798514a4ca2c2f60649613e5e"; - sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/goto-gem"; - sha256 = "0i79z1isdbnqmz5rlqjjys68l27nl90m1gzks4f9d6dsgfryhgwx"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/goto-gem"; - license = lib.licenses.free; - }; - }) {}; - goto-last-change = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-last-change"; - ename = "goto-last-change"; - version = "20150109.1023"; - src = fetchFromGitHub { - owner = "camdez"; - repo = "goto-last-change.el"; - rev = "58b0928bc255b47aad318cd183a5dce8f62199cc"; - sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d68945f5845e5e44fb6c11726a56acd4dc56e101/recipes/goto-last-change"; - sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/goto-last-change"; - license = lib.licenses.free; - }; - }) {}; - goto-last-point = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-last-point"; - ename = "goto-last-point"; - version = "20190525.1155"; - src = fetchFromGitHub { - owner = "manuel-uberti"; - repo = "goto-last-point"; - rev = "031570d2e778db46e5a2b7d440bcd15c8307eb69"; - sha256 = "0v80fk7k1jl6388fidsnbi4c6yjapskv03pgd87j8dkxmdn19spa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20148869e301d236bbf335e8545131488ad57f27/recipes/goto-last-point"; - sha256 = "0lns0w7zvi8afsr64kcyn68arrjf7bqmpadw12zj100nnnvs40lh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/goto-last-point"; - license = lib.licenses.free; - }; - }) {}; - goto-line-preview = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-line-preview"; - ename = "goto-line-preview"; - version = "20190307.2336"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "goto-line-preview"; - rev = "1e361d8c0b9596154db579e6ae5edbd51e12eedc"; - sha256 = "16zil8kjv7lfmy11g88p1cm24j9db319fgkwzsgf2vzp1m15l0pc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/goto-line-preview"; - sha256 = "1id3msndzav59ljwdp7xnh0glbzc8d12phpywlb89h5nclj0rzsl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/goto-line-preview"; - license = lib.licenses.free; - }; - }) {}; - govc = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , magit-popup - , melpaBuild - , s }: - melpaBuild { - pname = "govc"; - ename = "govc"; - version = "20180524.1323"; - src = fetchFromGitHub { - owner = "vmware"; - repo = "govmomi"; - rev = "e3a01f9611c32b2362366434bcd671516e78955d"; - sha256 = "0cicd4m8ll7y1n0c97drmvmqwsqaspwpzc6nfp73f887m8ff1xis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; - sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; - name = "recipe"; - }; - packageRequires = [ dash emacs json-mode magit-popup s ]; - meta = { - homepage = "https://melpa.org/#/govc"; - license = lib.licenses.free; - }; - }) {}; - govet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "govet"; - ename = "govet"; - version = "20170808.1024"; - src = fetchFromGitHub { - owner = "meshelton"; - repo = "govet"; - rev = "1b8c044aa856f4b62a682bc57494af19d22a6053"; - sha256 = "1d0gd4awkkfsppqv7367bn5h8k8dlyvrg9cbvsn6mqn5j93mr3fx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e4a5f5031c76056d8f1b64b27a39a512c7c59cd/recipes/govet"; - sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/govet"; - license = lib.licenses.free; - }; - }) {}; - gpastel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gpastel"; - ename = "gpastel"; - version = "20181229.604"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "gpastel"; - rev = "8a5522b274f79d55d7c9a0b2aaf062526f9253c7"; - sha256 = "01pnnqcxni55xr7r2lxcnsqiszm2w5iwnjcwp748p1faq6ywhi19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b70e05ff0a074f9e2f1373e8495dc8df462deea/recipes/gpastel"; - sha256 = "0mjy4n26s89b481dby018l80glgfwfaacihmd7vhh2c75ns671a6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gpastel"; - license = lib.licenses.free; - }; - }) {}; - grab-mac-link = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grab-mac-link"; - ename = "grab-mac-link"; - version = "20190419.607"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "grab-mac-link.el"; - rev = "b52d29cd78a60cfe874667a8987ed10e8eb0f172"; - sha256 = "15qznll0358cgqb9m9hpr2if2rsskr29mpsg7h32xb6njqnn741m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link"; - sha256 = "1a4wyvx1mlgnd45nn99lwy3vaiwhi1nrphfln86pb6z939dxakj3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/grab-mac-link"; - license = lib.licenses.free; - }; - }) {}; - grab-x-link = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grab-x-link"; - ename = "grab-x-link"; - version = "20180205.346"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "grab-x-link"; - rev = "d19f0c0da0ddc55005a4c1cdc2b8c5de8bea1e8c"; - sha256 = "1l9jg2w8ym169b5dhg3k5vksbmicg4n1a55x7ddjysf8n887cpid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64d4d4e6f9d6a3ea670757f248afd355baf1d933/recipes/grab-x-link"; - sha256 = "1kni49n1v716w4hjfm49mk25jshfc6idpby0k58qvngbfqk3kzy5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/grab-x-link"; - license = lib.licenses.free; - }; - }) {}; - gradle-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gradle-mode"; - ename = "gradle-mode"; - version = "20150313.1205"; - src = fetchFromGitHub { - owner = "jacobono"; - repo = "emacs-gradle-mode"; - rev = "579de06674551919cddac9cfe42129f4fb0155c9"; - sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/771cc597daebf9b4aa308f8b350af91a515b44c9/recipes/gradle-mode"; - sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/gradle-mode"; - license = lib.licenses.free; - }; - }) {}; - grails = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grails"; - ename = "grails"; - version = "20160416.2336"; - src = fetchFromGitHub { - owner = "lifeisfoo"; - repo = "emacs-grails"; - rev = "fa638abe5c37f3f8af4fcd32f212453185ce50b1"; - sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be0196207245ea9d23fda09121d624db9ea6d83d/recipes/grails"; - sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/grails"; - license = lib.licenses.free; - }; - }) {}; - grails-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grails-mode"; - ename = "grails-mode"; - version = "20160504.211"; - src = fetchFromGitHub { - owner = "Groovy-Emacs-Modes"; - repo = "groovy-emacs-modes"; - rev = "50801257d376fd7383ddf9c19ff567183c24ad0b"; - sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode"; - sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grails-mode"; - license = lib.licenses.free; - }; - }) {}; - grails-projectile-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "grails-projectile-mode"; - ename = "grails-projectile-mode"; - version = "20160327.624"; - src = fetchFromGitHub { - owner = "yveszoundi"; - repo = "grails-projectile-mode"; - rev = "8efca50ce92b556fe9d467b157d7aec635bcc017"; - sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35d49029c1f665ad40e543040d98d5a770bfea96/recipes/grails-projectile-mode"; - sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs projectile ]; - meta = { - homepage = "https://melpa.org/#/grails-projectile-mode"; - license = lib.licenses.free; - }; - }) {}; - grandshell-theme = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grandshell-theme"; - ename = "grandshell-theme"; - version = "20180605.2217"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/grandshell-theme.git"; - rev = "0ed8e4273607dd4fcaa742b4097259233b09eda6"; - sha256 = "04vx5p1ffln5b9rxgfi15q735plxcjvskby3c5k4slgwf4p91bpq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/grandshell-theme"; - sha256 = "1r0r0r0g116f4jp3rip8mjqqgdam4h5dr5qvdglr9xpirfcw6wq3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grandshell-theme"; - license = lib.licenses.free; - }; - }) {}; - graphene = callPackage ({ company - , dash - , exec-path-from-shell - , fetchFromGitHub - , fetchurl - , flycheck - , graphene-meta-theme - , ido-completing-read-plus - , lib - , melpaBuild - , ppd-sr-speedbar - , smartparens - , smex - , sr-speedbar - , web-mode }: - melpaBuild { - pname = "graphene"; - ename = "graphene"; - version = "20180529.412"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "graphene"; - rev = "cc8477fcfb7771ea4e5bbaf3c01f9e679234c1c1"; - sha256 = "0j0igcmfl61c4pakqmyxpwr4kjar9i81vkl84rw19phc7k9497nb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; - sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; - name = "recipe"; - }; - packageRequires = [ - company - dash - exec-path-from-shell - flycheck - graphene-meta-theme - ido-completing-read-plus - ppd-sr-speedbar - smartparens - smex - sr-speedbar - web-mode - ]; - meta = { - homepage = "https://melpa.org/#/graphene"; - license = lib.licenses.free; - }; - }) {}; - graphene-meta-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphene-meta-theme"; - ename = "graphene-meta-theme"; - version = "20161204.807"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "graphene-meta-theme"; - rev = "62cc73fee31f1bd9474027b83a249feee050271e"; - sha256 = "1ydl6dlg5z4infq8j09izwgs6n97yza6nbq5rs1xfv00zd9gr63c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44af719ede73c9fe7787272d7868587ce8966e3d/recipes/graphene-meta-theme"; - sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/graphene-meta-theme"; - license = lib.licenses.free; - }; - }) {}; - graphql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphql"; - ename = "graphql"; - version = "20180911.1731"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "graphql.el"; - rev = "672dd9ebd7e67d8089388b0c484cd650e76565f3"; - sha256 = "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e801ae56f11b64a5a3e52cf1a6c152940ab8c97/recipes/graphql"; - sha256 = "139fng2psn535ymqa7c6hm1r7ja1gs5mdvb487jj6fh0bl9wq8la"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/graphql"; - license = lib.licenses.free; - }; - }) {}; - graphql-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphql-mode"; - ename = "graphql-mode"; - version = "20190503.422"; - src = fetchFromGitHub { - owner = "davazp"; - repo = "graphql-mode"; - rev = "74ee772a62103fe3ec4f291854a0604dd3f5bb9e"; - sha256 = "050p8ig92sl82hrlwdiz91igzpd4bp793l942pr71vrr23fahra1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3850073e6706d4d8151bc6ab12963a19deae8be9/recipes/graphql-mode"; - sha256 = "074dc8fgbrikb5inv837n9bpmz1ami7aaxsqcci1f94x3iw8i74i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/graphql-mode"; - license = lib.licenses.free; - }; - }) {}; - graphviz-dot-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphviz-dot-mode"; - ename = "graphviz-dot-mode"; - version = "20181117.2151"; - src = fetchFromGitHub { - owner = "ppareit"; - repo = "graphviz-dot-mode"; - rev = "243de72e09ddd5cdc4863613af8b749827a5e1cd"; - sha256 = "10ss7mhlkqvxh7y2w7njzh3hiz3r7y49a3q9j41bwipia4yzq4n5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e2f1e66b33fd95142be4622c996911e38d56281/recipes/graphviz-dot-mode"; - sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/graphviz-dot-mode"; - license = lib.licenses.free; - }; - }) {}; - grapnel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grapnel"; - ename = "grapnel"; - version = "20131001.834"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "grapnel"; - rev = "7387234eb3f0285a490fddb1e06a4bf029719fb7"; - sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd482e4b2c45921b81c5fb3dfce53acfec3c3093/recipes/grapnel"; - sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grapnel"; - license = lib.licenses.free; - }; - }) {}; - grass-mode = callPackage ({ cl-lib ? null - , dash - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grass-mode"; - ename = "grass-mode"; - version = "20170503.800"; - src = fetchhg { - url = "https://bitbucket.com/tws/grass-mode.el"; - rev = "1ae8eae88117"; - sha256 = "1sl3d5759fjm98pb50ykz2c05czb2298ipccwj2qz2hdzq63hfv8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/grass-mode"; - sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/grass-mode"; - license = lib.licenses.free; - }; - }) {}; - grayscale-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grayscale-theme"; - ename = "grayscale-theme"; - version = "20171005.102"; - src = fetchFromGitHub { - owner = "belak"; - repo = "emacs-grayscale-theme"; - rev = "917d63c0effc8459502a41e0cad5822d2b200499"; - sha256 = "0vkv34aslcw2fl9yx8j6094s8j5mgpqrwvyf07a1d16rixncffpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2993881c7285cfbfc590b4118db46bfd435817bc/recipes/grayscale-theme"; - sha256 = "0jbzb1zxv5mg3pivii31d4kz75igm339nw4cmx9kgzia9zal5f1r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grayscale-theme"; - license = lib.licenses.free; - }; - }) {}; - greek-polytonic = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "greek-polytonic"; - ename = "greek-polytonic"; - version = "20190303.558"; - src = fetchFromGitHub { - owner = "jhanschoo"; - repo = "greek-polytonic"; - rev = "114cba0f57cc077871693c799b807df2292341ec"; - sha256 = "09prvjnhvirip6s0rlsp7pyyaj9xswvvjskxb2977ymki8ijxmqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0e6206be0e6f416c59323cf10bf052882863f3/recipes/greek-polytonic"; - sha256 = "0rp5iwiznp95r8srxvq72hna2hgcqj4q1dvg2ma86cqzgqwr4xnw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/greek-polytonic"; - license = lib.licenses.free; - }; - }) {}; - green-is-the-new-black-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "green-is-the-new-black-theme"; - ename = "green-is-the-new-black-theme"; - version = "20190313.1205"; - src = fetchFromGitHub { - owner = "fredcamps"; - repo = "green-is-the-new-black-emacs"; - rev = "65a2b7e7cc6497fbc851319225842a1624bfecc5"; - sha256 = "1jlmrakj8kf7n2zzmrsacrmvlcwfl27a4zwrvigw28z13z7g5a3g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e42528d5677fd90515cad47266c07ea3d4363fb/recipes/green-is-the-new-black-theme"; - sha256 = "03q0vj409icmawffy2kd9yl04r453q80cy1p9y4i3xk368z0362g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/green-is-the-new-black-theme"; - license = lib.licenses.free; - }; - }) {}; - green-phosphor-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "green-phosphor-theme"; - ename = "green-phosphor-theme"; - version = "20150515.747"; - src = fetchFromGitHub { - owner = "aalpern"; - repo = "emacs-color-theme-green-phosphor"; - rev = "5549781559ff5daa85c1d6c635c94524c1c5f644"; - sha256 = "0rzbq3vxx8ymgb73smlbjlsffrrrmwp266q93wv6k08h5laj9vwr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6770f5d800232c152833d32efb814005e65ffc6/recipes/green-phosphor-theme"; - sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/green-phosphor-theme"; - license = lib.licenses.free; - }; - }) {}; - green-screen-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "green-screen-theme"; - ename = "green-screen-theme"; - version = "20180816.802"; - src = fetchFromGitHub { - owner = "rbanffy"; - repo = "green-screen-emacs"; - rev = "774e8f6c033786406267f71ec07319d906a30b75"; - sha256 = "0f12lqgfi1vlhq8p5ia04vlmvmyb4f40q7dm2nbh5y8r6k89hisg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/821744ca106f1b74941524782e4581fc93800fed/recipes/green-screen-theme"; - sha256 = "0a45xcl74kp3v39bl169sq46mqxiwvvis6jzwcy6yrl2vqqi4mab"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/green-screen-theme"; - license = lib.licenses.free; - }; - }) {}; - gregorio-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gregorio-mode"; - ename = "gregorio-mode"; - version = "20170705.751"; - src = fetchFromGitHub { - owner = "jsrjenkins"; - repo = "gregorio-mode"; - rev = "2b45f91246286abc449cb71f28583403181051c2"; - sha256 = "1g9x21nmzbm4sqybx5k4pgbjd9x0g27ngwczagplvjzsq9qzv7y6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34cdc536cd0509c5a151c16f44f4db2c5b44365f/recipes/gregorio-mode"; - sha256 = "1x3z4gc88h13miz72a597lz9hcn2lxps9jvldl2j62s6nvr88pff"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gregorio-mode"; - license = lib.licenses.free; - }; - }) {}; - grep-a-lot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grep-a-lot"; - ename = "grep-a-lot"; - version = "20131006.647"; - src = fetchFromGitHub { - owner = "ZungBang"; - repo = "emacs-grep-a-lot"; - rev = "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad"; - sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/grep-a-lot"; - sha256 = "1cbl4gl91dx73q3i2glsivfxd8jkanrcrzy35zf6rb7raj7rc1bw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grep-a-lot"; - license = lib.licenses.free; - }; - }) {}; - grep-context = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grep-context"; - ename = "grep-context"; - version = "20181002.954"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "grep-context"; - rev = "5a4e3efdf775755c1bbefcfe4b461c1166d81d7d"; - sha256 = "00q7l4a3c0ay6g5ff9bfa2qgkiswsyh4s6pqnpg0zpzhvv5710f5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41dbaf627ae4ef86c222d2b6b5d3523fdb9a4637/recipes/grep-context"; - sha256 = "175s9asbnk2wlgpzc5izcd3vlfvdj064n38myy9qf4awn12c2y1g"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/grep-context"; - license = lib.licenses.free; - }; - }) {}; - greymatters-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "greymatters-theme"; - ename = "greymatters-theme"; - version = "20150621.423"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "greymatters-theme"; - rev = "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1"; - sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d13621f3033b180d06852d90bd3ebe03276031f5/recipes/greymatters-theme"; - sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/greymatters-theme"; - license = lib.licenses.free; - }; - }) {}; - grin = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grin"; - ename = "grin"; - version = "20110805.2358"; - src = fetchhg { - url = "https://bitbucket.com/dariusp686/emacs-grin"; - rev = "f541aa22da52"; - sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/grin"; - sha256 = "0rak710fp9c7wx39qn4dc9d0xfjr5w7hwklxh99v1x1ihkla9378"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grin"; - license = lib.licenses.free; - }; - }) {}; - grizzl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grizzl"; - ename = "grizzl"; - version = "20160818.37"; - src = fetchFromGitHub { - owner = "grizzl"; - repo = "grizzl"; - rev = "d554d93afa8519ee3a41340ec8aa6b4555065446"; - sha256 = "0ks47pb71ywfxv3jsx8kwb7mgl1xj4fxny3764hfdsgwv1aw0r4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/grizzl"; - sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/grizzl"; - license = lib.licenses.free; - }; - }) {}; - groovy-imports = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "groovy-imports"; - ename = "groovy-imports"; - version = "20161003.151"; - src = fetchFromGitHub { - owner = "mbezjak"; - repo = "emacs-groovy-imports"; - rev = "e56d7dda617555ec6205644d32ffddf2e1fa43d9"; - sha256 = "060zxl2y4p50g5fwgplgx07h5akfplp49rkv5cx09rqlcyzqhqwa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b18a6842805856062e9452dc32bf0fd458f7d51a/recipes/groovy-imports"; - sha256 = "09yjkwsm192lgala1pvxw47id4j7362sl3j1hn9ald2m8m3ddyfs"; - name = "recipe"; - }; - packageRequires = [ emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/groovy-imports"; - license = lib.licenses.free; - }; - }) {}; - groovy-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "groovy-mode"; - ename = "groovy-mode"; - version = "20190407.1614"; - src = fetchFromGitHub { - owner = "Groovy-Emacs-Modes"; - repo = "groovy-emacs-modes"; - rev = "aa531c659758b896ff8fbd307080ce0d1d04ebfb"; - sha256 = "0jcqldpgx9b0xsvxvj7lgqrb39cwn7adggrlxfcm0pgc40dpfwb4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode"; - sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/groovy-mode"; - license = lib.licenses.free; - }; - }) {}; - gruber-darker-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gruber-darker-theme"; - ename = "gruber-darker-theme"; - version = "20180529.12"; - src = fetchFromGitHub { - owner = "rexim"; - repo = "gruber-darker-theme"; - rev = "c7687ec0511941db1371dcd70b31061d74aa5668"; - sha256 = "1dn4vb07wrnc6w94563isx8jfv6vbpp04kh0jfqjmc7nbmyzpaf2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87ade74553c04cb9dcfe16d03f263cc6f1fed046/recipes/gruber-darker-theme"; - sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gruber-darker-theme"; - license = lib.licenses.free; - }; - }) {}; - grunt = callPackage ({ ansi-color ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grunt"; - ename = "grunt"; - version = "20160316.828"; - src = fetchFromGitHub { - owner = "gempesaw"; - repo = "grunt.el"; - rev = "4c269e2738658643ec2ed9ef61a2a3d71b08d304"; - sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/grunt"; - sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; - name = "recipe"; - }; - packageRequires = [ ansi-color dash emacs ]; - meta = { - homepage = "https://melpa.org/#/grunt"; - license = lib.licenses.free; - }; - }) {}; - gruvbox-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gruvbox-theme"; - ename = "gruvbox-theme"; - version = "20190424.2322"; - src = fetchFromGitHub { - owner = "greduan"; - repo = "emacs-theme-gruvbox"; - rev = "69a6ddf6c7e8c84174b94900ba71ddd08ec0237f"; - sha256 = "00qq92gp1g55pzm97rh7k0dgxy44pxziridl8kqm4rbpi31r7k9p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gruvbox-theme"; - sha256 = "12z89fjfqcp9rx2f2x9wcffgxxv3kjn1dabyk0cjf286hgvmgz88"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/gruvbox-theme"; - license = lib.licenses.free; - }; - }) {}; - gs-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gs-mode"; - ename = "gs-mode"; - version = "20151202.206"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "emacs-grads"; - rev = "1a13051db21b999c7682a015b33a03096ff9d891"; - sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc1aa5335810e3d6572ebe9cd8949932b74d0f46/recipes/gs-mode"; - sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gs-mode"; - license = lib.licenses.free; - }; - }) {}; - gscholar-bibtex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gscholar-bibtex"; - ename = "gscholar-bibtex"; - version = "20190129.2155"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "gscholar-bibtex"; - rev = "3b651e3de116860eb1f1aef9b547a561784871fe"; - sha256 = "0wwjz4k1hsc1z489ygz4kh3dh23d7pnkgg2js07as7038hmhkjcb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fa546d3dce59b07a623ee83e3befe139dc10481/recipes/gscholar-bibtex"; - sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gscholar-bibtex"; - license = lib.licenses.free; - }; - }) {}; - gsettings = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , gvariant - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gsettings"; - ename = "gsettings"; - version = "20190513.303"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-gsettings"; - rev = "4d42b0d98ad9c62cec27cfdc662a93a0e84f4afb"; - sha256 = "0kb68zij131696z53rmdlqmxic4cyipsb377l05sc8zx80z9pgqy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebdd0285684c712748d6353bd2a4774bd97dd521/recipes/gsettings"; - sha256 = "168zq3gp874k66jv8k78i6b1cb9042763aj9wpmcs9bz437hhw32"; - name = "recipe"; - }; - packageRequires = [ dash emacs gvariant s ]; - meta = { - homepage = "https://melpa.org/#/gsettings"; - license = lib.licenses.free; - }; - }) {}; - gtk-pomodoro-indicator = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gtk-pomodoro-indicator"; - ename = "gtk-pomodoro-indicator"; - version = "20171230.840"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "gtk-pomodoro-indicator"; - rev = "eb59b229de0dde307b20654075a9bbac69899a66"; - sha256 = "0dmaazcscg9mdsmij26873af5jl2np4q9xf2klw1jmcl61wzggb0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a58f1acaafc459e055d751acdb68427e4b11275e/recipes/gtk-pomodoro-indicator"; - sha256 = "1lkz1bk3zl51jdgp7pg6sr57drdwz8mlvl9ryky3iv73kr5i0q6c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gtk-pomodoro-indicator"; - license = lib.licenses.free; - }; - }) {}; - guess-language = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "guess-language"; - ename = "guess-language"; - version = "20190325.736"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "guess-language.el"; - rev = "e64d88f287a547198e4c96e2fff543e103f2b456"; - sha256 = "0dmbr7gylnc1dsjaldfw51nmli66lizs1w5a8p1zacpf7w5kf7x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e78cb707943fcaaba0414d7af2af717efce84d0/recipes/guess-language"; - sha256 = "1p8j18hskvsv4pn3cal5s91l19hgshq8hpclmp84z9hlnj9g9fpm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/guess-language"; - license = lib.licenses.free; - }; - }) {}; - guide-key = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin - , s }: - melpaBuild { - pname = "guide-key"; - ename = "guide-key"; - version = "20150107.2235"; - src = fetchFromGitHub { - owner = "kai2nenobu"; - repo = "guide-key"; - rev = "9236d287a7272e307fb941237390a96037c8c0a2"; - sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/490b81308ae8132d8c3fd8c3951be88159719172/recipes/guide-key"; - sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; - name = "recipe"; - }; - packageRequires = [ dash popwin s ]; - meta = { - homepage = "https://melpa.org/#/guide-key"; - license = lib.licenses.free; - }; - }) {}; - guide-key-tip = callPackage ({ fetchFromGitHub - , fetchurl - , guide-key - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "guide-key-tip"; - ename = "guide-key-tip"; - version = "20161011.123"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "guide-key-tip"; - rev = "02c5d4b0b65f3e91be5a47f0ff1ae5e86e00c64e"; - sha256 = "1xkrfjmhprnj8i39a85wfcs5whm93fw8l57c606wdhiwqj719ciz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f23db7563654ab58632d56e3b01d2f78276fc3e/recipes/guide-key-tip"; - sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; - name = "recipe"; - }; - packageRequires = [ guide-key pos-tip ]; - meta = { - homepage = "https://melpa.org/#/guide-key-tip"; - license = lib.licenses.free; - }; - }) {}; - guix = callPackage ({ bui - , dash - , edit-indirect - , emacs - , fetchFromGitHub - , fetchurl - , geiser - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "guix"; - ename = "guix"; - version = "20190507.1011"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "guix.el"; - rev = "11e0dbf6491300d250efb3dc09d634b01e86b35b"; - sha256 = "0j60v0h850cwxik1mhlnmqms47dkkqcnfx53qs66hi1zyp7pax5z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3d8c73e8a946b8265487a0825d615d80aa3337d/recipes/guix"; - sha256 = "0h4jwc4h2jv09c6rngb614fc39qfy04rmvqrn1l54hn28s6q7sk9"; - name = "recipe"; - }; - packageRequires = [ bui dash edit-indirect emacs geiser magit-popup ]; - meta = { - homepage = "https://melpa.org/#/guix"; - license = lib.licenses.free; - }; - }) {}; - gulp-task-runner = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gulp-task-runner"; - ename = "gulp-task-runner"; - version = "20170718.1341"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "gulp-task-runner"; - rev = "877990e956b1d71e2d9c7c3e5a129ad199b9debb"; - sha256 = "13qy4x4ap43qm5w2vrsy6w01z2s2kymfr9qvlj2yri4xk3r4vrps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34a2bede5ea70cf9df623c32e789d78205f9ebb0/recipes/gulp-task-runner"; - sha256 = "0211mws99bc9ipg7r3qqm1n7gszvwil31psinf0250wliyppjij7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gulp-task-runner"; - license = lib.licenses.free; - }; - }) {}; - guru-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "guru-mode"; - ename = "guru-mode"; - version = "20170730.31"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "guru-mode"; - rev = "c180e05ebc1484764aad245c85b69de779826e4e"; - sha256 = "0qb6yr6vbic0rh8ayrpbz5byq7jxmwm1fc9l4alpz7dhyb11z07v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e60af6ccb902d8ef00cfecbb13cafebbe3b00d89/recipes/guru-mode"; - sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/guru-mode"; - license = lib.licenses.free; - }; - }) {}; - gvariant = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsec }: - melpaBuild { - pname = "gvariant"; - ename = "gvariant"; - version = "20190513.305"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-gvariant"; - rev = "824e162b9b4e5aefc38850fad6dfaf1b4527599b"; - sha256 = "07mxqr5wsbkhprg38lvgzba7r96b315dvsnvv9hb8cnxy5b94d7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a616ac75f77b1e61e1386bd905b6bcf3d8aaa3f/recipes/gvariant"; - sha256 = "1ycrnfq60z9fycgqmp1y8jna0l0c2b6mlg6ggimb0rml1ili6npm"; - name = "recipe"; - }; - packageRequires = [ emacs parsec ]; - meta = { - homepage = "https://melpa.org/#/gvariant"; - license = lib.licenses.free; - }; - }) {}; - gvpr-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gvpr-mode"; - ename = "gvpr-mode"; - version = "20131208.918"; - src = fetchFromGitHub { - owner = "rodw"; - repo = "gvpr-lib"; - rev = "1fb539b8227200f75d7eeb9706a236f805159a63"; - sha256 = "18902m92yyw4mqr5x3gzpqw13lykwv7llbqvck0kipyp3fpjjn7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab25afcf4232082dc0e48706734f141a308912a7/recipes/gvpr-mode"; - sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gvpr-mode"; - license = lib.licenses.free; - }; - }) {}; - gxref = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gxref"; - ename = "gxref"; - version = "20170411.1053"; - src = fetchFromGitHub { - owner = "dedi"; - repo = "gxref"; - rev = "380b02c3c3c2586c828456716eef6a6392bb043b"; - sha256 = "1c5j28rwqx53qdsqglif8yblhm2bwm4qzpl2dg0l0g3pr8pk8zjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/429b9150d4054fcadab8c5ca3b688921eeb19b78/recipes/gxref"; - sha256 = "06qlfjclfx00m8pr7lk6baim3vjk5i0m75i1p4aihp2vflvgjaby"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gxref"; - license = lib.licenses.free; - }; - }) {}; - habamax-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "habamax-theme"; - ename = "habamax-theme"; - version = "20181001.150"; - src = fetchFromGitHub { - owner = "habamax"; - repo = "habamax-theme"; - rev = "6e86a1b23b6e2aaf40d4374b5673da00a28be447"; - sha256 = "0k96mdxg28bbm14d6rdlin8l4c75i9wicj3mxrd0bys0shxl9jm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77386484ad0b31c2818fae52cd312821c4632cb8/recipes/habamax-theme"; - sha256 = "1rmir9gc1niwkshxg1826nkh8xxmpim5pbhp61wx1m273lfn2h69"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/habamax-theme"; - license = lib.licenses.free; - }; - }) {}; - habitica = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "habitica"; - ename = "habitica"; - version = "20190401.2121"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "emacs-habitica"; - rev = "4f708d0fc0564fa3b624452b9f24ba4a6eeae181"; - sha256 = "1g0flh50j2gzx3414id758klvrxgdk5p26hpxdab46f8kvjylgip"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf9543db3564f4806440ed8c5c30fecbbc625fa1/recipes/habitica"; - sha256 = "0g7rb8ip5d6xvlsfk8cvf81hgzlq5p4kw9pkisjq9ri8mvkfmxf3"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/habitica"; - license = lib.licenses.free; - }; - }) {}; - hack-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hack-mode"; - ename = "hack-mode"; - version = "20190514.835"; - src = fetchFromGitHub { - owner = "hhvm"; - repo = "hack-mode"; - rev = "17be6b0e986f591eba1e2afee327b48ca9e62f95"; - sha256 = "0ddfjd47irdn6j8aalh9avv7vvi0mi5c80gaxdhrzxb5v5zfjbaa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27e238e5d2aaca810fd3fb6836ca49c9fa07cc87/recipes/hack-mode"; - sha256 = "1zs7p6fczj526wz9kvyhmxqkgrkfkkrvm9ma4cg349sfpjpxwkbl"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/hack-mode"; - license = lib.licenses.free; - }; - }) {}; - hack-time-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hack-time-mode"; - ename = "hack-time-mode"; - version = "20190529.155"; - src = fetchFromGitLab { - owner = "marcowahl"; - repo = "hack-time-mode"; - rev = "df8e86ab04beb655bf5b3860f8bea41cf1fbc3eb"; - sha256 = "1n4kirb65r4s8k2kiga857fk8zylk14ibq0k2vdx5b8axbz71ggh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6481dc9f487c5677f2baf1bffdf8f2297185345e/recipes/hack-time-mode"; - sha256 = "0vz72ykl679a69sb0r2h9ymcr3xms7bij1w6vxndlfw5v9hg3hk5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hack-time-mode"; - license = lib.licenses.free; - }; - }) {}; - hacker-typer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hacker-typer"; - ename = "hacker-typer"; - version = "20170206.720"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "emacs-hacker-typer"; - rev = "d5a23714a4ccc5071580622f278597d5973f40bd"; - sha256 = "13wp7cg9d9ij44inxxyk1knczglxrbfaq50wyhc4x5zfhz5yw7wx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/hacker-typer"; - sha256 = "0vf18hylhszvplam6c4yynr53zc3n816p9k36gywm6awwblfpyfb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hacker-typer"; - license = lib.licenses.free; - }; - }) {}; - hackernews = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hackernews"; - ename = "hackernews"; - version = "20190529.420"; - src = fetchFromGitHub { - owner = "clarete"; - repo = "hackernews.el"; - rev = "2362d7b00e59da7caddc8c0adc24dccb42fddef9"; - sha256 = "1hcc5b173yzcvvd2ls3jxrmsw2w9bi21m9hcpcirkn0nh93ywadv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c43a342e47e5ede468bcf51a60d4dea3926f51bd/recipes/hackernews"; - sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hackernews"; - license = lib.licenses.free; - }; - }) {}; - hal-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hal-mode"; - ename = "hal-mode"; - version = "20160704.1046"; - src = fetchFromGitHub { - owner = "machinekoder"; - repo = "hal-mode"; - rev = "cd2f66f219ee520198d4586fb6b169cef7ad3f21"; - sha256 = "0xibwmngijq0wv9hkahs5nh02qj3ma0bkczl07hx8wnl6j27f0nj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/hal-mode"; - sha256 = "0nlan5f3llhn04p86a6l47dl9g83a51wzrchs2q8rvfcy4161nn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hal-mode"; - license = lib.licenses.free; - }; - }) {}; - ham-mode = callPackage ({ fetchFromGitHub - , fetchurl - , html-to-markdown - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "ham-mode"; - ename = "ham-mode"; - version = "20150811.606"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "ham-mode"; - rev = "3a141986a21c2aa6eefb428983352abb8b7907d2"; - sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/ham-mode"; - sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; - name = "recipe"; - }; - packageRequires = [ html-to-markdown markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/ham-mode"; - license = lib.licenses.free; - }; - }) {}; - hamburg-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hamburg-theme"; - ename = "hamburg-theme"; - version = "20160122.2340"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "hamburg-theme"; - rev = "a05bf090e0c57c34cc59e301f95d9961280db244"; - sha256 = "1k0z2x95lb4in325nsyl1r75m4px61wp077ak2asmp0i2p8g34g7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/465ac6063c4f91652e59a8bbb493897109791728/recipes/hamburg-theme"; - sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hamburg-theme"; - license = lib.licenses.free; - }; - }) {}; - hamburger-menu = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hamburger-menu"; - ename = "hamburger-menu"; - version = "20160825.1331"; - src = fetchFromGitLab { - owner = "iain"; - repo = "hamburger-menu-mode"; - rev = "cfeff6e0dd80bf89ed671af9de3dac2e7f90b619"; - sha256 = "05skvms2lz3fsgzg873nk887flr6ga5h8bkhrf6qawaj26naj6i9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8017730403cc0e613e3939017f85074753c3778/recipes/hamburger-menu"; - sha256 = "0ws9729i51arjqwpiywcpb7y3c5sm3c9wrq8q0k0m9hpq8h11wdb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hamburger-menu"; - license = lib.licenses.free; - }; - }) {}; - haml-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haml-mode"; - ename = "haml-mode"; - version = "20190219.1302"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "haml-mode"; - rev = "bf5b6c11b1206759d2b28af48765e04882dd1fc4"; - sha256 = "1zh19b9az4ql87vjmjm0j7y6c4ir6w3rh0n4sxzqqpnv8xpd4b44"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/haml-mode"; - sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/haml-mode"; - license = lib.licenses.free; - }; - }) {}; - hamlet-mode = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hamlet-mode"; - ename = "hamlet-mode"; - version = "20131207.2324"; - src = fetchFromGitHub { - owner = "lightquake"; - repo = "hamlet-mode"; - rev = "7362b955e556a3d007fa06945a27e5b99349527d"; - sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/hamlet-mode"; - sha256 = "16cyfzv2yrf249jklxdahfmsy8rg6hargjpafy4fz4a532fcbw81"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/hamlet-mode"; - license = lib.licenses.free; - }; - }) {}; - handlebars-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "handlebars-mode"; - ename = "handlebars-mode"; - version = "20150211.949"; - src = fetchFromGitHub { - owner = "danielevans"; - repo = "handlebars-mode"; - rev = "81f6b73fea8f397807781a1b51568397af21a6ef"; - sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/handlebars-mode"; - sha256 = "0wizasjihnabnqzn1226vh4gb571rs7s86bffhvkfvbk95zkiafq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/handlebars-mode"; - license = lib.licenses.free; - }; - }) {}; - handlebars-sgml-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "handlebars-sgml-mode"; - ename = "handlebars-sgml-mode"; - version = "20130623.1633"; - src = fetchFromGitHub { - owner = "jacott"; - repo = "handlebars-sgml-mode"; - rev = "005282c33dfb6dbd2cfd46a4147d261504e8323c"; - sha256 = "1vx9lxwhj7n928ddzj9vzy8mw0fj7vgzx477x8ay79rhpvs8v122"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87aec68ed80545a61ad46b71e7bd9dbfc7634108/recipes/handlebars-sgml-mode"; - sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/handlebars-sgml-mode"; - license = lib.licenses.free; - }; - }) {}; - handoff = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "handoff"; - ename = "handoff"; - version = "20150916.2300"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "handoff.el"; - rev = "75dc7a7e352f38679f65d0ca80ad158798e168bd"; - sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbdb89413b3f5de680e3f9fa625039c73a377e97/recipes/handoff"; - sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/handoff"; - license = lib.licenses.free; - }; - }) {}; - hardcore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hardcore-mode"; - ename = "hardcore-mode"; - version = "20151113.2301"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "hardcore-mode.el"; - rev = "b1dda19692b4a7a58a689e81784a9b35be39e70d"; - sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b929b3343cd5925944665e4e09b4524bca873c95/recipes/hardcore-mode"; - sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hardcore-mode"; - license = lib.licenses.free; - }; - }) {}; - hardhat = callPackage ({ fetchFromGitHub - , fetchurl - , ignoramus - , lib - , melpaBuild }: - melpaBuild { - pname = "hardhat"; - ename = "hardhat"; - version = "20160414.713"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "hardhat"; - rev = "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e"; - sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/hardhat"; - sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; - name = "recipe"; - }; - packageRequires = [ ignoramus ]; - meta = { - homepage = "https://melpa.org/#/hardhat"; - license = lib.licenses.free; - }; - }) {}; - harvest = callPackage ({ fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , s - , swiper }: - melpaBuild { - pname = "harvest"; - ename = "harvest"; - version = "20170822.1046"; - src = fetchFromGitHub { - owner = "kostajh"; - repo = "harvest.el"; - rev = "7acbc0564b250521b67131ee2a0a92720239454f"; - sha256 = "0wzv67kkfyaw19ddw0ra45p6rja6bk6d1xi3ak5lkyzvgqvylr3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c97d3f653057eab35c612109792884334be556fe/recipes/harvest"; - sha256 = "1r6brld6iq03wsr1b3jhdkxwrcxa6g6fwa1jiy1kgjsr9dq1m51c"; - name = "recipe"; - }; - packageRequires = [ hydra s swiper ]; - meta = { - homepage = "https://melpa.org/#/harvest"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs"; - ename = "haskell-emacs"; - version = "20160904.1326"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "a2c6a079175904689eed7c6c200754bfa85d1ed9"; - sha256 = "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs"; - sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/haskell-emacs"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs-base = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-emacs - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs-base"; - ename = "haskell-emacs-base"; - version = "20150714.859"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "7f91f65254902b8ff04fdb679bc569b2f6a51637"; - sha256 = "17i9l6wgrvmp31ca4xrax31f7bjnn0vn2figycxhfaq9f6vxgkkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-base"; - sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; - name = "recipe"; - }; - packageRequires = [ haskell-emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-emacs-base"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs-text = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-emacs - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs-text"; - ename = "haskell-emacs-text"; - version = "20150713.716"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "cc240612740fc3fd6e3c3d8cdfe486a89954f5d1"; - sha256 = "09g6b1ad7qi9k58ymgmssgapwapxcwf30qhmfl2w8sl045ngzlkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-text"; - sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; - name = "recipe"; - }; - packageRequires = [ haskell-emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-emacs-text"; - license = lib.licenses.free; - }; - }) {}; - haskell-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-mode"; - ename = "haskell-mode"; - version = "20190525.1919"; - src = fetchFromGitHub { - owner = "haskell"; - repo = "haskell-mode"; - rev = "aa382235ee3349e28fdb5096e462d394ef0cb00b"; - sha256 = "0jra8gy7i5m9fnrl8jvmyswipmk3kkhzhf3nkqwkg04n6ykd64gj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode"; - sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-mode"; - license = lib.licenses.free; - }; - }) {}; - haskell-snippets = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "haskell-snippets"; - ename = "haskell-snippets"; - version = "20160918.1722"; - src = fetchFromGitHub { - owner = "haskell"; - repo = "haskell-snippets"; - rev = "07b0f460b946fd1be26c29652cb0468b47782f3a"; - sha256 = "0a7y3awi9hcyahggf0ghsdwvsmrhr9yq634wy9lkqjzrm2hqj0ci"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5534e58ea66fd90ba4a69262f0b303c7fb85af4/recipes/haskell-snippets"; - sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; - name = "recipe"; - }; - packageRequires = [ cl-lib yasnippet ]; - meta = { - homepage = "https://melpa.org/#/haskell-snippets"; - license = lib.licenses.free; - }; - }) {}; - haskell-tab-indent = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-tab-indent"; - ename = "haskell-tab-indent"; - version = "20170701.258"; - src = fetchgit { - url = "https://git.spwhitton.name/haskell-tab-indent"; - rev = "b4cb851aef96c42ec7b3cc37b6fdd867fe5a0853"; - sha256 = "1ah1xagfzsbsgggva621p95qgd0bnsn733gb0ap4p4kgi5hwdqll"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/371f9f45e441cdf4e95557d1e9692619fab3024a/recipes/haskell-tab-indent"; - sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/haskell-tab-indent"; - license = lib.licenses.free; - }; - }) {}; - hasklig-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hasklig-mode"; - ename = "hasklig-mode"; - version = "20181110.1059"; - src = fetchFromGitHub { - owner = "minad"; - repo = "hasklig-mode"; - rev = "386c098c93a744f6b30ad937d193eebf0fd79e1b"; - sha256 = "0m1cn59fzsfqc6j1892yaaddh6g6mwiqnp1ssxhic5fcm2xk00rz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15a60278102de9e078b613456126945737718ce9/recipes/hasklig-mode"; - sha256 = "0gz0k9ahk0jpdp893ckbby9ilkac1zp95kpfqdnpfy0a036xfwm7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hasklig-mode"; - license = lib.licenses.free; - }; - }) {}; - hasky-extensions = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hasky-extensions"; - ename = "hasky-extensions"; - version = "20190204.1216"; - src = fetchFromGitHub { - owner = "hasky-mode"; - repo = "hasky-extensions"; - rev = "eb1437f815bd93946ecf707e8d24dc704c273586"; - sha256 = "1r8xbfxjig2qgkvfd2yy1b5vpn1l49h504b0zbdir9hkipwzmls9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3f73e3df8476fa231d04211866671dd74911603/recipes/hasky-extensions"; - sha256 = "0ymigba1d0qkrk3ccd3cx754safzmx1v5d13976571rszgmkvr15"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/hasky-extensions"; - license = lib.licenses.free; - }; - }) {}; - hasky-stack = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "hasky-stack"; - ename = "hasky-stack"; - version = "20190304.1448"; - src = fetchFromGitHub { - owner = "hasky-mode"; - repo = "hasky-stack"; - rev = "a3176aece9a9ab0a36ae795965f83f4c1fa243bf"; - sha256 = "1j9cvy95wnmssg68y7hcjr0fh117ix1ypa0k7rxqn84na7hyhdpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack"; - sha256 = "08ds0v5p829s47lbhibswnbn1aqfnwf6xx7p5bc5062wxdvqahw8"; - name = "recipe"; - }; - packageRequires = [ emacs f magit-popup ]; - meta = { - homepage = "https://melpa.org/#/hasky-stack"; - license = lib.licenses.free; - }; - }) {}; - haste = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "haste"; - ename = "haste"; - version = "20141030.1334"; - src = fetchFromGitHub { - owner = "rlister"; - repo = "emacs-haste-client"; - rev = "f1099c6296fc9575675e281402b89854739114bb"; - sha256 = "1a6almgsh93jzi5h59mmrlwcz805j3fnr8vrcfxnirxpr39159sq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haste"; - sha256 = "175kprxqbpmssjxavcm7lyzg1cwsxkrfg9pc72vgqyfmcmjyk34c"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/haste"; - license = lib.licenses.free; - }; - }) {}; - haxe-imports = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "haxe-imports"; - ename = "haxe-imports"; - version = "20170330.1604"; - src = fetchFromGitHub { - owner = "accidentalrebel"; - repo = "emacs-haxe-imports"; - rev = "a4ab31759bd237e78c055dda73e808a4ee1b5fde"; - sha256 = "1x721jwdngahdmj0799ayg91kqxf6jv627b766bbq2hmagsf9si4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db7d2b08e914aab7719c6d3a951b142ec7252f34/recipes/haxe-imports"; - sha256 = "10xh57ir49f18pzw9ihpwffchm1mba0ck1zdqsfllh3p5gry1msg"; - name = "recipe"; - }; - packageRequires = [ emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/haxe-imports"; - license = lib.licenses.free; - }; - }) {}; - haxe-mode = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haxe-mode"; - ename = "haxe-mode"; - version = "20131004.142"; - src = fetchhg { - url = "https://bitbucket.com/jpsecher/haxe-mode"; - rev = "850f29d9f70e"; - sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haxe-mode"; - sha256 = "07krrpi636dadgyxxhh5037kq527wpnszbl22lk6i5fcxqidcnw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/haxe-mode"; - license = lib.licenses.free; - }; - }) {}; - haxor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haxor-mode"; - ename = "haxor-mode"; - version = "20160618.429"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "haxor-mode"; - rev = "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91"; - sha256 = "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haxor-mode"; - sha256 = "0ss0kkwjyc7z7vcb89qr02p70c6m2jarr34mxmdv6ipwil58jj1s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/haxor-mode"; - license = lib.licenses.free; - }; - }) {}; - hayoo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "hayoo"; - ename = "hayoo"; - version = "20140831.521"; - src = fetchFromGitHub { - owner = "benma"; - repo = "hayoo.el"; - rev = "3ca2fb0c4d5f337d0410c21b2702dd147014e984"; - sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01c1b96a4d076323264b2762d2c5a61680e21cff/recipes/hayoo"; - sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9"; - name = "recipe"; - }; - packageRequires = [ emacs json ]; - meta = { - homepage = "https://melpa.org/#/hayoo"; - license = lib.licenses.free; - }; - }) {}; - hc-zenburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hc-zenburn-theme"; - ename = "hc-zenburn-theme"; - version = "20150928.933"; - src = fetchFromGitHub { - owner = "edran"; - repo = "hc-zenburn-emacs"; - rev = "fd0024a5191cdce204d91c8f1db99ba31640f6e9"; - sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01ccd40bd5fc2699a4756ebf503ac50f562cf600/recipes/hc-zenburn-theme"; - sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hc-zenburn-theme"; - license = lib.licenses.free; - }; - }) {}; - hcl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hcl-mode"; - ename = "hcl-mode"; - version = "20170107.27"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-hcl-mode"; - rev = "f940f425bcdb4111d69f5fbf79f0b1c98848c5b6"; - sha256 = "06mdz9fnqkaxf4036ad1f6pr3km2vaz52rbpkjwk8bsqvzbya98i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66b441525dc300b364d9be0358ae1e0fa2a8b4fe/recipes/hcl-mode"; - sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hcl-mode"; - license = lib.licenses.free; - }; - }) {}; - headlong = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "headlong"; - ename = "headlong"; - version = "20150417.826"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "headlong"; - rev = "f6830f87f236eee88263cb6976125f72422abe72"; - sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/826e9a8221d9378dd3b9fcc16ce5f50fd6ed2dce/recipes/headlong"; - sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/headlong"; - license = lib.licenses.free; - }; - }) {}; - heaven-and-hell = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "heaven-and-hell"; - ename = "heaven-and-hell"; - version = "20180421.221"; - src = fetchFromGitHub { - owner = "valignatev"; - repo = "heaven-and-hell"; - rev = "c2af013e0def7d3234e0eb2fb66a0a2374d5a7f2"; - sha256 = "08n7sr0l4di1c4zgfa17i3x43451sd60z70pjka8rmznys766lsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/685edd63bf65520be304cbd564db7f5974fc5ae1/recipes/heaven-and-hell"; - sha256 = "19r0p78r9c78ly8awkgc33xa5b75zkkrb5kwvxbagirxdgkjv74r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/heaven-and-hell"; - license = lib.licenses.free; - }; - }) {}; - helm = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "helm"; - ename = "helm"; - version = "20190605.2306"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm"; - rev = "03f56db7c60c312920ac02f2dfafc40f27b44d0e"; - sha256 = "1ych6d54zafxffba61msyra3ffqwyzpfz31p57gqcqaxnq9d80hz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; - sha256 = "03la01d0syikjgsjq0krlp3p894djwfxqfmd2srddwks7ish6xjf"; - name = "recipe"; - }; - packageRequires = [ async emacs helm-core popup ]; - meta = { - homepage = "https://melpa.org/#/helm"; - license = lib.licenses.free; - }; - }) {}; - helm-R = callPackage ({ ess - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-R"; - ename = "helm-R"; - version = "20120819.1714"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "helm-R.el"; - rev = "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2"; - sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-R"; - sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1"; - name = "recipe"; - }; - packageRequires = [ ess helm ]; - meta = { - homepage = "https://melpa.org/#/helm-R"; - license = lib.licenses.free; - }; - }) {}; - helm-ack = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ack"; - ename = "helm-ack"; - version = "20141030.526"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ack"; - rev = "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118"; - sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/258d447778525c26c65a5819ba1edc00e2bb65e5/recipes/helm-ack"; - sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ack"; - license = lib.licenses.free; - }; - }) {}; - helm-ad = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ad"; - ename = "helm-ad"; - version = "20151209.215"; - src = fetchFromGitHub { - owner = "tnoda"; - repo = "helm-ad"; - rev = "8ac044705d8620ee354a9cfa8cc1b865e83c0d55"; - sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b44ec4e059ab830a3708697fa95fada5f6a30a91/recipes/helm-ad"; - sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi"; - name = "recipe"; - }; - packageRequires = [ dash helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ad"; - license = lib.licenses.free; - }; - }) {}; - helm-addressbook = callPackage ({ addressbook-bookmark - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-addressbook"; - ename = "helm-addressbook"; - version = "20170903.28"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-addressbook"; - rev = "62497f72d46afd3a9f9f94b27d062a82fb232de4"; - sha256 = "1lmq7j19qv3pabs5arapx3lv2xhf0sgn4b2hl0l0kzph52fvics7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bb805b0f2d2055aa4e88bd41239d75ec34f5785/recipes/helm-addressbook"; - sha256 = "1d8byi6sr5gz1rx3kglnkp47sn9dqdd83s12d84wyay06ix3cqqi"; - name = "recipe"; - }; - packageRequires = [ addressbook-bookmark cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-addressbook"; - license = lib.licenses.free; - }; - }) {}; - helm-ag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ag"; - ename = "helm-ag"; - version = "20170209.745"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ag"; - rev = "39ed137823665fca2fa5b215f7c3e8701173f7b7"; - sha256 = "0a6yls52pkqsaj6s5nsi70kzpvssdvb87bfnp8gp26q2y3syx4ni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-ag"; - sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ag"; - license = lib.licenses.free; - }; - }) {}; - helm-ag-r = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ag-r"; - ename = "helm-ag-r"; - version = "20131123.731"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "helm-ag-r"; - rev = "67de4ebafe9b088db950eefa5ef590a6d78b4ac8"; - sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6aa1cf029db913dafb561e4c8ccc1ca9099524de/recipes/helm-ag-r"; - sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ag-r"; - license = lib.licenses.free; - }; - }) {}; - helm-aws = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-aws"; - ename = "helm-aws"; - version = "20180514.332"; - src = fetchFromGitHub { - owner = "istib"; - repo = "helm-aws"; - rev = "b36c744b3f00f458635a91d1f5158fccbb5baef6"; - sha256 = "11683s12dabgi9j6cyx0i147pgz4jdd240xviry7w3cxgarqki8y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/421182006b8af17dae8b5ad453cc11e2d990a053/recipes/helm-aws"; - sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-aws"; - license = lib.licenses.free; - }; - }) {}; - helm-backup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-backup"; - ename = "helm-backup"; - version = "20180910.2314"; - src = fetchFromGitHub { - owner = "antham"; - repo = "helm-backup"; - rev = "691fe542f38fc7c8cca409997f6a0ff5d76ad6c2"; - sha256 = "0zi1md5f1haqcrclqfk4ilvr6hbm389kl3ajnyx230rq22vmb9ca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e6eba7b201e91211e43c39e501f6066f0afeb8b/recipes/helm-backup"; - sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-backup"; - license = lib.licenses.free; - }; - }) {}; - helm-bbdb = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bbdb"; - ename = "helm-bbdb"; - version = "20180505.808"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-bbdb"; - rev = "db286b0ee0ea18142f7d005e465832bb755bb0cb"; - sha256 = "193xkwdhl3k0ka7qs9pd92mx0ild7dv11lmgydkpx8w1rcd20yyx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7025c319fcabc64576c0c6554d0d572cef697693/recipes/helm-bbdb"; - sha256 = "1wlacbfs23shvyaq616r1p84h8321zz1k5nzir5qg8nr6lssi8vp"; - name = "recipe"; - }; - packageRequires = [ bbdb helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bbdb"; - license = lib.licenses.free; - }; - }) {}; - helm-bibtex = callPackage ({ biblio - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , parsebib - , s }: - melpaBuild { - pname = "helm-bibtex"; - ename = "helm-bibtex"; - version = "20190430.1118"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "helm-bibtex"; - rev = "e1391a4be629b506f06d678bcdfd17d290904482"; - sha256 = "11922djfvz32h6bv8gdzhpm7ddxw5gsdphjvjxa7cr2zj7x9nhx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex"; - sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z"; - name = "recipe"; - }; - packageRequires = [ biblio cl-lib dash f helm parsebib s ]; - meta = { - homepage = "https://melpa.org/#/helm-bibtex"; - license = lib.licenses.free; - }; - }) {}; - helm-bibtexkey = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bibtexkey"; - ename = "helm-bibtexkey"; - version = "20140214.704"; - src = fetchFromGitHub { - owner = "kenbeese"; - repo = "helm-bibtexkey"; - rev = "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f"; - sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d35a2e5cb5232d16d5c98168706d8b6426fcfb44/recipes/helm-bibtexkey"; - sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bibtexkey"; - license = lib.licenses.free; - }; - }) {}; - helm-bind-key = callPackage ({ bind-key - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bind-key"; - ename = "helm-bind-key"; - version = "20141108.2115"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "helm-bind-key.el"; - rev = "9da6ad8b7530e72fb4ac67be8c6a482898dddc25"; - sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ae8bfd320cdef6c65da2a00439f8108d7ffa7ce/recipes/helm-bind-key"; - sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid"; - name = "recipe"; - }; - packageRequires = [ bind-key helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bind-key"; - license = lib.licenses.free; - }; - }) {}; - helm-bitbucket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bitbucket"; - ename = "helm-bitbucket"; - version = "20190422.402"; - src = fetchFromGitHub { - owner = "dragonwasrobot"; - repo = "helm-bitbucket"; - rev = "632495036c4a6ac30e408fc74ee9f209fd5ac429"; - sha256 = "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8df73e21dee5144147f9432efe95ee576ac5f435/recipes/helm-bitbucket"; - sha256 = "19bflbnavkwipf7mcrkg3i64iz50jmzm64nl7y1ka349mpy5sm04"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-bitbucket"; - license = lib.licenses.free; - }; - }) {}; - helm-bm = callPackage ({ bm - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-bm"; - ename = "helm-bm"; - version = "20160321.631"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-bm"; - rev = "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7"; - sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/115033d7b02d3ca42902195de933f62c5f927ae4/recipes/helm-bm"; - sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; - name = "recipe"; - }; - packageRequires = [ bm cl-lib helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-bm"; - license = lib.licenses.free; - }; - }) {}; - helm-books = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-books"; - ename = "helm-books"; - version = "20170324.2331"; - src = fetchFromGitHub { - owner = "grugrut"; - repo = "helm-books"; - rev = "6735e1787f99b5ef77b276fa5c43e565b4d3e792"; - sha256 = "0gsa0qf88x4rgkzhgp4dr19l772fla3gd6854z4gwpn0s52rl7h7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acba3db40f37e74e1bf9e30f2abed431c259ff50/recipes/helm-books"; - sha256 = "0xh53vji7nsnpi0b38cjh97x26ryxk61mj7bd6m63qwh8dyhs3yx"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-books"; - license = lib.licenses.free; - }; - }) {}; - helm-bundle-show = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bundle-show"; - ename = "helm-bundle-show"; - version = "20190526.701"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-bundle-show"; - rev = "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f"; - sha256 = "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show"; - sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bundle-show"; - license = lib.licenses.free; - }; - }) {}; - helm-c-moccur = callPackage ({ color-moccur - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-c-moccur"; - ename = "helm-c-moccur"; - version = "20151230.124"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "helm-c-moccur.el"; - rev = "b0a906f85fa352db091f88b91a9c510de607dfe9"; - sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/462a43341a5811822928bcac331d617a38b52e8a/recipes/helm-c-moccur"; - sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b"; - name = "recipe"; - }; - packageRequires = [ color-moccur helm ]; - meta = { - homepage = "https://melpa.org/#/helm-c-moccur"; - license = lib.licenses.free; - }; - }) {}; - helm-c-yasnippet = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "helm-c-yasnippet"; - ename = "helm-c-yasnippet"; - version = "20170128.742"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-c-yasnippet"; - rev = "65ca732b510bfc31636708aebcfe4d2d845b59b0"; - sha256 = "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2fc20598a2cd22efb212ba43159c6728f0249e5e/recipes/helm-c-yasnippet"; - sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm yasnippet ]; - meta = { - homepage = "https://melpa.org/#/helm-c-yasnippet"; - license = lib.licenses.free; - }; - }) {}; - helm-catkin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "helm-catkin"; - ename = "helm-catkin"; - version = "20190425.820"; - src = fetchFromGitHub { - owner = "gollth"; - repo = "helm-catkin"; - rev = "a3422346eb46e66a947a75f9e1b9975a672036be"; - sha256 = "0d6g1nkaly9ss1h3i7qq3igzsfllw0zwkz5374pvmq53p3nk20r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6e88d2a2fc07c8d25f4e1d973147805522a3261/recipes/helm-catkin"; - sha256 = "1yr62riiva55c341s9x0fn9wdrv1j05s9a82xm2925jsyh5xzaxy"; - name = "recipe"; - }; - packageRequires = [ emacs helm xterm-color ]; - meta = { - homepage = "https://melpa.org/#/helm-catkin"; - license = lib.licenses.free; - }; - }) {}; - helm-charinfo = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-charinfo"; - ename = "helm-charinfo"; - version = "20170810.531"; - src = fetchFromGitHub { - owner = "mandoku"; - repo = "helm-charinfo"; - rev = "91798a49dc115342a7e01e48b264e9a0bf5ea414"; - sha256 = "1ifj6zz5k7qjalg06fvfc7rdmlha0n9hll2hiq7mrcj7lfac6jga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6667774bba495c45703ef75261f1f14d89684e3a/recipes/helm-charinfo"; - sha256 = "04k6crcwhv2k69f5w75g0dg0f5qsbhyxl93qzxxdb5bnr56ad7f6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-charinfo"; - license = lib.licenses.free; - }; - }) {}; - helm-chrome = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-chrome"; - ename = "helm-chrome"; - version = "20160718.2220"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "helm-chrome"; - rev = "fd630ace4b4b4f33355a973743bbfe0c90ce4830"; - sha256 = "0r8s85fs5lnwdn377z5zgi3d090k2n1mgiyxwgy49i8yirssgz51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6ca33fe8ec8a0af8fb166451050f5502838deb/recipes/helm-chrome"; - sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-chrome"; - license = lib.licenses.free; - }; - }) {}; - helm-chronos = callPackage ({ chronos - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-chronos"; - ename = "helm-chronos"; - version = "20150528.1336"; - src = fetchFromGitHub { - owner = "dxknight"; - repo = "helm-chronos"; - rev = "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef"; - sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6f5eef6ac62ed8d035f4dd272695655d00a4180/recipes/helm-chronos"; - sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3"; - name = "recipe"; - }; - packageRequires = [ chronos helm ]; - meta = { - homepage = "https://melpa.org/#/helm-chronos"; - license = lib.licenses.free; - }; - }) {}; - helm-cider = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-cider"; - ename = "helm-cider"; - version = "20180306.2058"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "helm-cider"; - rev = "9363cc537f06233345aa3af5cd46aa5681ad607b"; - sha256 = "0vfn4smqba1vsshz48ggkj8gs94la0sxb1sq4shrb41qj2x3dci7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-cider"; - sha256 = "0ykhrvh6mix55sv4j8q6614sibksdlwaks736maamqwl3wk6826x"; - name = "recipe"; - }; - packageRequires = [ cider emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-cider"; - license = lib.licenses.free; - }; - }) {}; - helm-cider-history = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-cider-history"; - ename = "helm-cider-history"; - version = "20150719.1420"; - src = fetchFromGitHub { - owner = "Kungi"; - repo = "helm-cider-history"; - rev = "c391fcb2e162a02001605a0b9449783575a831fd"; - sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31a9c900d57f2eeed4f0101af73f8a59c20e9a99/recipes/helm-cider-history"; - sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h"; - name = "recipe"; - }; - packageRequires = [ cider helm ]; - meta = { - homepage = "https://melpa.org/#/helm-cider-history"; - license = lib.licenses.free; - }; - }) {}; - helm-circe = callPackage ({ circe - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-circe"; - ename = "helm-circe"; - version = "20160206.2252"; - src = fetchFromGitHub { - owner = "lesharris"; - repo = "helm-circe"; - rev = "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a"; - sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-circe"; - sha256 = "07559rg55b0glxiw787xmvxrhms14jz21bvprc5n24b4j827g9xw"; - name = "recipe"; - }; - packageRequires = [ circe cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-circe"; - license = lib.licenses.free; - }; - }) {}; - helm-clojuredocs = callPackage ({ edn - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-clojuredocs"; - ename = "helm-clojuredocs"; - version = "20160405.23"; - src = fetchFromGitHub { - owner = "mbuczko"; - repo = "helm-clojuredocs"; - rev = "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea"; - sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/adb117e04c158b1c77a8c1174329477d7eaca838/recipes/helm-clojuredocs"; - sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk"; - name = "recipe"; - }; - packageRequires = [ edn helm ]; - meta = { - homepage = "https://melpa.org/#/helm-clojuredocs"; - license = lib.licenses.free; - }; - }) {}; - helm-cmd-t = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-cmd-t"; - ename = "helm-cmd-t"; - version = "20170125.659"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-cmd-t"; - rev = "7fa3d4a9f7271512e54c5de999079b27c9eec6bf"; - sha256 = "06jdvkgnmwrgsdh9y2bwzdng7hy4331v3lh11jvdy4704w4khmak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-cmd-t"; - sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/helm-cmd-t"; - license = lib.licenses.free; - }; - }) {}; - helm-codesearch = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-codesearch"; - ename = "helm-codesearch"; - version = "20190412.453"; - src = fetchFromGitHub { - owner = "youngker"; - repo = "helm-codesearch.el"; - rev = "72f1d1de746115ab7e861178b49fa3c0b6b58d90"; - sha256 = "1qxpx8jmkvg59k4rx99bn9asnh4nl5rwkjvbhprdlqaicglm153q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a992824e46a4170e2f0915f7a507fcb8a9ef0a6/recipes/helm-codesearch"; - sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-codesearch"; - license = lib.licenses.free; - }; - }) {}; - helm-commandlinefu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , json ? null - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-commandlinefu"; - ename = "helm-commandlinefu"; - version = "20150610.2245"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-commandlinefu"; - rev = "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d"; - sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7eaf1e41ef2fa90b6bb6a80891ef1bf52ef1029b/recipes/helm-commandlinefu"; - sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; - name = "recipe"; - }; - packageRequires = [ emacs helm json let-alist ]; - meta = { - homepage = "https://melpa.org/#/helm-commandlinefu"; - license = lib.licenses.free; - }; - }) {}; - helm-company = callPackage ({ company - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-company"; - ename = "helm-company"; - version = "20190522.2018"; - src = fetchFromGitHub { - owner = "Sodel-the-Vociferous"; - repo = "helm-company"; - rev = "6995b79bdfce73e398d0185eba135f1e74cf37c2"; - sha256 = "09jg4b7bbz5y7nrqlka3vb58s4rszl0ih4x61j724ksl637xrw66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8acf7420f2ac8a36474594bc34316f187b43d771/recipes/helm-company"; - sha256 = "1wl1mzm1h9ig351y77yascdv4z0cka1gayi8cnnlayk763is7q34"; - name = "recipe"; - }; - packageRequires = [ company helm ]; - meta = { - homepage = "https://melpa.org/#/helm-company"; - license = lib.licenses.free; - }; - }) {}; - helm-core = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-core"; - ename = "helm-core"; - version = "20190601.2326"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm"; - rev = "a70de280eb6ea870697f6686f79a27872a8b5483"; - sha256 = "04v9sv8c79vr4fqg9r66wy8ifdri33j0bs6z5s7kmgq02ygfiwm4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; - sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/helm-core"; - license = lib.licenses.free; - }; - }) {}; - helm-cscope = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , xcscope }: - melpaBuild { - pname = "helm-cscope"; - ename = "helm-cscope"; - version = "20190510.1751"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "helm-cscope.el"; - rev = "e91171032d7f0744dd210f69008b08024a7e5b1a"; - sha256 = "0k6xb6vs90nirphfjw5gfhr718cgg4nnzz3h1iqzd40606qcdpf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2e3460df1ec750053bc8402ad6eb822c10c697/recipes/helm-cscope"; - sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm xcscope ]; - meta = { - homepage = "https://melpa.org/#/helm-cscope"; - license = lib.licenses.free; - }; - }) {}; - helm-css-scss = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-css-scss"; - ename = "helm-css-scss"; - version = "20140626.1725"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "helm-css-scss"; - rev = "363d5ebe9ecf8fab8422b83a414d054c3eff79fa"; - sha256 = "1wwkcjw7q660a7v7f6qr6hr5blharyylr5ddfz013xa3lnzy72cv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b985973ff12135f893e6d2742223725c2143720/recipes/helm-css-scss"; - sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-css-scss"; - license = lib.licenses.free; - }; - }) {}; - helm-ctest = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-ctest"; - ename = "helm-ctest"; - version = "20180821.305"; - src = fetchFromGitHub { - owner = "danlamanna"; - repo = "helm-ctest"; - rev = "0c73689692a290f56080e95325c15362e90d529b"; - sha256 = "143vyd64w3gycc68jcsji474nz2ggda58hgwq6hyiwb7s0gm1gd3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc85ff5554df10fc2066eec4d90de3b25536923/recipes/helm-ctest"; - sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; - name = "recipe"; - }; - packageRequires = [ dash helm-core s ]; - meta = { - homepage = "https://melpa.org/#/helm-ctest"; - license = lib.licenses.free; - }; - }) {}; - helm-dash = callPackage ({ cl-lib ? null - , dash-docs - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dash"; - ename = "helm-dash"; - version = "20190527.418"; - src = fetchFromGitHub { - owner = "areina"; - repo = "helm-dash"; - rev = "6c76c794fec95586028633f24773451812af5df4"; - sha256 = "0ajkflf6fzpxxgv2nzpxnc1d2rp32ba1lz9x4s2bini71krai88s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dash"; - sha256 = "032hwwq4r72grzls5ww7bjyj39c82wkcgf3k7myfcrqd3lgblrwb"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash-docs emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dash"; - license = lib.licenses.free; - }; - }) {}; - helm-descbinds = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-descbinds"; - ename = "helm-descbinds"; - version = "20190501.235"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-descbinds"; - rev = "b72515982396b6e336ad7beb6767e95a80fca192"; - sha256 = "1bp2n32lvb1fhnwzk8s782i928m8mklv77jz5rq0ag1q7y740r31"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/447610a05422cd2f35399e43d98bf46410ff0408/recipes/helm-descbinds"; - sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-descbinds"; - license = lib.licenses.free; - }; - }) {}; - helm-describe-modes = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-describe-modes"; - ename = "helm-describe-modes"; - version = "20160211.2118"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-describe-modes"; - rev = "d2253c7c2bf4f28b9ff8a2d281bd7527c0106527"; - sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23f0b2025073850c477ba4646c3821b3c7de6c42/recipes/helm-describe-modes"; - sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-describe-modes"; - license = lib.licenses.free; - }; - }) {}; - helm-dictionary = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dictionary"; - ename = "helm-dictionary"; - version = "20160817.1333"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-dictionary"; - rev = "805ce850d4cbe811227d9c9b16cc51f652198f3f"; - sha256 = "0ambb6i8ipz5y0mnc8jd07j3iiwb7ah87pw8x8pi3phv1r80l0k1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8cc457b06ce271f7c19729cde7728286bb85528/recipes/helm-dictionary"; - sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dictionary"; - license = lib.licenses.free; - }; - }) {}; - helm-directory = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-directory"; - ename = "helm-directory"; - version = "20170705.2102"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-helm-directory"; - rev = "caa013b820b5263bf1c6446debfea0766dae8ab8"; - sha256 = "15ljhz7cik7qzbh69l28c9mcvls5zgk42lp5bm9kl9fg6m6aasvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c066d6f285ab6d572dab4549781101547cb704/recipes/helm-directory"; - sha256 = "01c5a08v6rd867kdyrfwdvj05z4srzj9g6xy4scirlbwbff0q76n"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-directory"; - license = lib.licenses.free; - }; - }) {}; - helm-dired-history = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dired-history"; - ename = "helm-dired-history"; - version = "20170524.346"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "helm-dired-history"; - rev = "281523f9fc46cf00fafd670ba5cd16552a607212"; - sha256 = "1bqavj5ljr350dckyf39i9plkb0rbhyd17ka94n2g6daapgpq0x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dired-history"; - sha256 = "0qciafa42rbw0dxgkp5mbbwbrcziswmwdj2lszm0px1bip4x7yb8"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dired-history"; - license = lib.licenses.free; - }; - }) {}; - helm-dired-recent-dirs = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dired-recent-dirs"; - ename = "helm-dired-recent-dirs"; - version = "20131228.614"; - src = fetchFromGitHub { - owner = "yynozk"; - repo = "helm-dired-recent-dirs"; - rev = "3bcd125b44f5a707588ae3868777d91192351523"; - sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/helm-dired-recent-dirs"; - sha256 = "1rm47if91hk6hi4xil9vb6rs415s5kvhwc6zkrmcvay9hiw9vrpw"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dired-recent-dirs"; - license = lib.licenses.free; - }; - }) {}; - helm-dirset = callPackage ({ cl-lib ? null - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-dirset"; - ename = "helm-dirset"; - version = "20151208.1612"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "helm-dirset"; - rev = "eb30810cd26e1ee73d84a863e6b2667700e9aead"; - sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dirset"; - sha256 = "1bwgv1pm047xafidq23mdqj3sdc5bvqlw74s80dj88ybp3vrpvlk"; - name = "recipe"; - }; - packageRequires = [ cl-lib f helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-dirset"; - license = lib.licenses.free; - }; - }) {}; - helm-elscreen = callPackage ({ cl-lib ? null - , elscreen - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-elscreen"; - ename = "helm-elscreen"; - version = "20170709.214"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-elscreen"; - rev = "b8212866939dc4a1e1dc23ad572407b688e130e3"; - sha256 = "0gy6lbdngiwfl9vfw32clagbmv70f93slc9zkm3dz3mca37435kz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe42a7fe2dc051c6c49aa75bce89bfe1b5fdbbb/recipes/helm-elscreen"; - sha256 = "186k66kf2ak2ihha39989cz1aarqrvbgp213y1fwh9qsn1kxclnd"; - name = "recipe"; - }; - packageRequires = [ cl-lib elscreen emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-elscreen"; - license = lib.licenses.free; - }; - }) {}; - helm-emmet = callPackage ({ emmet-mode - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-emmet"; - ename = "helm-emmet"; - version = "20160713.531"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-emmet"; - rev = "f0364e736b10cf44232053a78de04133a88185ae"; - sha256 = "1zl6vhzbf29864q97q5v7c318x36y1a4cjm0i7kgj3hc6qla5j88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acbc5e9fab159ad2d63b10c0fa6ac18636bb2379/recipes/helm-emmet"; - sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03"; - name = "recipe"; - }; - packageRequires = [ emmet-mode helm ]; - meta = { - homepage = "https://melpa.org/#/helm-emmet"; - license = lib.licenses.free; - }; - }) {}; - helm-emms = callPackage ({ cl-lib ? null - , emacs - , emms - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-emms"; - ename = "helm-emms"; - version = "20190422.822"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-emms"; - rev = "89ec04e6548f16c5848cc49ad506e0561cea87ab"; - sha256 = "0cn1amwgf5nm73yjxnhjsl6dvfcvh8qb2j2rhsyd6i8kzzkyplf2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db836b671705607f6cd9bce8229884b1f29b4a76/recipes/helm-emms"; - sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs emms helm ]; - meta = { - homepage = "https://melpa.org/#/helm-emms"; - license = lib.licenses.free; - }; - }) {}; - helm-etags-plus = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-etags-plus"; - ename = "helm-etags-plus"; - version = "20170113.614"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "helm-etags-plus"; - rev = "dd13aa768e7edc5809c8b5c52daa108eceb7d3f1"; - sha256 = "08yzs82bqj4j7k4hp4hh53ip5p8bh6325j4lg73hh6zsy0jpb9sh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5d0c347ff8cf6e0ade80853775fd6b84f387fa5/recipes/helm-etags-plus"; - sha256 = "0lw21yp1q6iggzlb1dks3p6qdfppnqf50f3rijjs18lisp4izp99"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-etags-plus"; - license = lib.licenses.free; - }; - }) {}; - helm-eww = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "helm-eww"; - ename = "helm-eww"; - version = "20190315.207"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-eww"; - rev = "76ba59fda8dd6f32a1bc7c6df0b43c6f76169911"; - sha256 = "0hpq1h0p69c9k6hkd2mjpprx213sc5475q7pr2zpmwrjdzgcv70z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/455a32c1d4642dc6752408c4f5055f5f4d1288eb/recipes/helm-eww"; - sha256 = "0pl8s7jmk1kak13bal43kp2awjji9lgr3npq9m09zms121rh709w"; - name = "recipe"; - }; - packageRequires = [ emacs helm seq ]; - meta = { - homepage = "https://melpa.org/#/helm-eww"; - license = lib.licenses.free; - }; - }) {}; - helm-ext = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ext"; - ename = "helm-ext"; - version = "20180525.2050"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "helm-ext"; - rev = "90b788aced21ec467a234b6b77b5a6ebae6de75f"; - sha256 = "11a27556slh95snzqyvy0rlf6p7f51nx8rxglnv0d34529h72508"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee74cb0aa3445bc9ae4226c2043ee4de3ac6cd3/recipes/helm-ext"; - sha256 = "0la2i0b7nialib4wq26cxcak8nq1jzavsw8f0mvbavsb7hfwkpgw"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ext"; - license = lib.licenses.free; - }; - }) {}; - helm-exwm = callPackage ({ emacs - , exwm - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-exwm"; - ename = "helm-exwm"; - version = "20180827.137"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-exwm"; - rev = "e21c6ffabadd2fe8d6c7805b6027cc59a6f914e9"; - sha256 = "11fyqk3h9cqynifc2zzqn0czrcj082wkdg1qhbj97nl4gcj787rl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ecdf9e00cf19fabbeade12a66d66cd010561366/recipes/helm-exwm"; - sha256 = "0g15c4bg794vqigafl9g2w85jbs1lbw9qplaf8ffx0az4qwhnvqz"; - name = "recipe"; - }; - packageRequires = [ emacs exwm helm ]; - meta = { - homepage = "https://melpa.org/#/helm-exwm"; - license = lib.licenses.free; - }; - }) {}; - helm-filesets = callPackage ({ fetchFromGitHub - , fetchurl - , filesets-plus - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-filesets"; - ename = "helm-filesets"; - version = "20140929.1135"; - src = fetchFromGitHub { - owner = "gcla"; - repo = "helm-filesets"; - rev = "b352910af4c3099267a8aa0169c7f743b35bb1fa"; - sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71c0d98ede6119e838e3db146dea5c16d8ba8ed8/recipes/helm-filesets"; - sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f"; - name = "recipe"; - }; - packageRequires = [ filesets-plus helm ]; - meta = { - homepage = "https://melpa.org/#/helm-filesets"; - license = lib.licenses.free; - }; - }) {}; - helm-firefox = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-firefox"; - ename = "helm-firefox"; - version = "20161202.517"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-firefox"; - rev = "294850c4ce16ae25f2214f863cee0118add60974"; - sha256 = "1kaa58xlnr82qsvdzn8sxk5kkd2lxqnvfciyw7kfi2fdrl6nr4pf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/257e452d37768d2f3a6e0a5ccd062d128b2bc867/recipes/helm-firefox"; - sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-firefox"; - license = lib.licenses.free; - }; - }) {}; - helm-flx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flx - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-flx"; - ename = "helm-flx"; - version = "20180102.2116"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "helm-flx"; - rev = "6640fac5cb16bee73c95b8ed1248a4e5e113690e"; - sha256 = "1fh1dy6xpc476hs87mn9fwxhxi97h7clfnnm7dxb7hg43xmgsjjs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1418d260f34d698cec611978001c7fd1d1a8a89/recipes/helm-flx"; - sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq"; - name = "recipe"; - }; - packageRequires = [ emacs flx helm ]; - meta = { - homepage = "https://melpa.org/#/helm-flx"; - license = lib.licenses.free; - }; - }) {}; - helm-flycheck = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-flycheck"; - ename = "helm-flycheck"; - version = "20160710.129"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-flycheck"; - rev = "a15e62a6432c165c4f2c17388686873383400d7d"; - sha256 = "0q9yksx66ry4x3vkcyyj437il225s2ad5h6vkxpyz04p62g3ysnx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cce1662d4ca7b7d868685084294d22ebf6c39e9/recipes/helm-flycheck"; - sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; - name = "recipe"; - }; - packageRequires = [ dash flycheck helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-flycheck"; - license = lib.licenses.free; - }; - }) {}; - helm-flymake = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-flymake"; - ename = "helm-flymake"; - version = "20160609.1702"; - src = fetchFromGitHub { - owner = "tam17aki"; - repo = "helm-flymake"; - rev = "72cf18a1a1f843db9bb5d58301739ea9ccb1655b"; - sha256 = "05wpclg4ibp0ida692m3s8nknx4aizfcdgxgfzlwczgdgw0922kn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8547036dceaa466957f4c5a07eb0461f313b924/recipes/helm-flymake"; - sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-flymake"; - license = lib.licenses.free; - }; - }) {}; - helm-flyspell = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-flyspell"; - ename = "helm-flyspell"; - version = "20170210.1101"; - src = fetchFromGitHub { - owner = "pronobis"; - repo = "helm-flyspell"; - rev = "8d4d947c687cb650cb149aa2271ad5201ea92594"; - sha256 = "0q0xcgg8w9rrlsrrnk0l7qd8q7jc6x1agm2i769j21wpyfv1nbns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c5b91762d47a4d3024f1ed7f19666c6f2d5ce5/recipes/helm-flyspell"; - sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-flyspell"; - license = lib.licenses.free; - }; - }) {}; - helm-frame = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-frame"; - ename = "helm-frame"; - version = "20170515.1250"; - src = fetchFromGitLab { - owner = "chee"; - repo = "helm-frame"; - rev = "389e6461a423d649b7062ba99a2234bef7770059"; - sha256 = "1z7iwgl1v8nkwyz3h610l97amgq9slrfxxiicsnigc9vgsqlh987"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/febb2599e50518dadb30088bc9576aea2af092a7/recipes/helm-frame"; - sha256 = "18wbwm4r3ra9214whhdbxnjrxzra4pn12wqgq5lxli1khylihm3i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/helm-frame"; - license = lib.licenses.free; - }; - }) {}; - helm-fuzzier = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-fuzzier"; - ename = "helm-fuzzier"; - version = "20160605.1445"; - src = fetchFromGitHub { - owner = "EphramPerdition"; - repo = "helm-fuzzier"; - rev = "8798dcf3583b863df5b9dea7fe3b0179ba1c35bc"; - sha256 = "1250mh0ydap0sifcyrgs32dnr6c8d723v4c55yvwm23dzvzwycp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51dc6f01e0e5ee0593bea6616894bc0163878cd0/recipes/helm-fuzzier"; - sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-fuzzier"; - license = lib.licenses.free; - }; - }) {}; - helm-fuzzy-find = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-fuzzy-find"; - ename = "helm-fuzzy-find"; - version = "20171105.2000"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-fuzzy-find"; - rev = "de2abbf7ca13609587325bacd4a1ed4376b5c927"; - sha256 = "1dacvnkqqiax02c627z9qi61iyqgr0j3qqmjp29h0v494czvrdbs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34f76bb377ed31aa42663858c407cc5476e6fe1f/recipes/helm-fuzzy-find"; - sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-fuzzy-find"; - license = lib.licenses.free; - }; - }) {}; - helm-ghc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , ghc - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ghc"; - ename = "helm-ghc"; - version = "20141105.659"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "helm-ghc"; - rev = "3947bfd6b5a05074e776f0b51f414f1a5a724888"; - sha256 = "0j8mbn33rv4jky9zh1hgw8da8wgs2760057mx8rv5x6i1qcm3bqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-ghc"; - sha256 = "0bv0sfpya1jyay9p80lv0w6h9kdp96r8lnp6nj15w660p1b51c0d"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ghc helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ghc"; - license = lib.licenses.free; - }; - }) {}; - helm-ghq = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ghq"; - ename = "helm-ghq"; - version = "20190526.709"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-ghq"; - rev = "d0d6aa0f407388e7012f0443df8ae657ece01779"; - sha256 = "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq"; - sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ghq"; - license = lib.licenses.free; - }; - }) {}; - helm-ghs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ghs"; - ename = "helm-ghs"; - version = "20170714.2241"; - src = fetchFromGitHub { - owner = "iory"; - repo = "emacs-helm-ghs"; - rev = "f9d4ab80e8a33b21cd635285289ec5779bbe629f"; - sha256 = "0f7wsln7z2dhqn334pjk6hrj36gvx39vg19g8ds9sj9dq9djlf27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8d37030806905344a2ca56bfc469f5a238cd69/recipes/helm-ghs"; - sha256 = "0bzy2vr2h9c886cm4gd161n7laym952bzy5fhcibafhzm4abl4sh"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ghs"; - license = lib.licenses.free; - }; - }) {}; - helm-git = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-git"; - ename = "helm-git"; - version = "20120630.1403"; - src = fetchFromGitHub { - owner = "maio"; - repo = "helm-git"; - rev = "5b4a6eb7a97b2583236a1f919b75249957918e29"; - sha256 = "1z5q47sly41amjiq5wcvdxf8slhl8wd24crgzpbn6m3lw2jk420r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/707696fbec477027e675ff01c502e0b81096025c/recipes/helm-git"; - sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/helm-git"; - license = lib.licenses.free; - }; - }) {}; - helm-git-files = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-git-files"; - ename = "helm-git-files"; - version = "20141212.517"; - src = fetchFromGitHub { - owner = "kenbeese"; - repo = "helm-git-files"; - rev = "43193960774069369ac6964bbf7c026900206fa8"; - sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23bfa0b94f242f9da06366b4aefdf6ece72561e7/recipes/helm-git-files"; - sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-git-files"; - license = lib.licenses.free; - }; - }) {}; - helm-git-grep = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-git-grep"; - ename = "helm-git-grep"; - version = "20170614.711"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-git-grep"; - rev = "744cea07dba6e6a5effbdba83f1b786c78fd86d3"; - sha256 = "172m7wbgx9qnv9n1slbzpd9j24p6blddik49z6bq3zdg1vlnf3dv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/338d28c3fe201a7b2f15793be6d540f44819f4d8/recipes/helm-git-grep"; - sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-git-grep"; - license = lib.licenses.free; - }; - }) {}; - helm-github-stars = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-github-stars"; - ename = "helm-github-stars"; - version = "20190428.347"; - src = fetchFromGitHub { - owner = "Sliim"; - repo = "helm-github-stars"; - rev = "c891690218b0d8b957ea6cb45b1b6cffd15a6950"; - sha256 = "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars"; - sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-github-stars"; - license = lib.licenses.free; - }; - }) {}; - helm-gitignore = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , gitignore-mode - , helm - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "helm-gitignore"; - ename = "helm-gitignore"; - version = "20170210.1608"; - src = fetchFromGitHub { - owner = "jupl"; - repo = "helm-gitignore"; - rev = "2a2e7da7855a6db0ab3bb6a6a087863d7abd4391"; - sha256 = "07770qhy56cf5l69mk6aq882sryjbfjd05kdk78v65mgmlwv806a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3146b9309e8cbe464330dcd1f5b8a9fd8788ad6f/recipes/helm-gitignore"; - sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6"; - name = "recipe"; - }; - packageRequires = [ cl-lib gitignore-mode helm request ]; - meta = { - homepage = "https://melpa.org/#/helm-gitignore"; - license = lib.licenses.free; - }; - }) {}; - helm-gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , gitlab - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-gitlab"; - ename = "helm-gitlab"; - version = "20180312.947"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "68318aca3206d50701039c9aae39734ca29a49f9"; - sha256 = "0arsjdn0anp7pacwxd3cw4db8a7pgzjlnwav1l3maaz1176h4lpb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/helm-gitlab"; - sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; - name = "recipe"; - }; - packageRequires = [ dash gitlab helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-gitlab"; - license = lib.licenses.free; - }; - }) {}; - helm-go-package = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , go-mode - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-go-package"; - ename = "helm-go-package"; - version = "20161102.1853"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-go-package"; - rev = "bf741f4a455fcb129c1a9dcec710a52621f9719d"; - sha256 = "0g7i8lnjav9730zsz12181v9xi9rcvdyhs9vzch01dksixq10hvi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/449d272b94c189176305ca17652d76adac087ce5/recipes/helm-go-package"; - sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; - name = "recipe"; - }; - packageRequires = [ deferred emacs go-mode helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-go-package"; - license = lib.licenses.free; - }; - }) {}; - helm-google = callPackage ({ fetchgit - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-google"; - ename = "helm-google"; - version = "20180605.2220"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/helm-google.git"; - rev = "48e91a73d5f48c39d7a219022a24440cff548e1a"; - sha256 = "05xj6bkr330glh56n8c63297zqh1cmlhxlyxpr04srjraifyzba1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/helm-google"; - sha256 = "0hv7wfrahjn8j4914dp2p4fl2cj85pmxnyxf5cnmv6p97yis0ham"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-google"; - license = lib.licenses.free; - }; - }) {}; - helm-grepint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-grepint"; - ename = "helm-grepint"; - version = "20161001.713"; - src = fetchFromGitHub { - owner = "kopoli"; - repo = "helm-grepint"; - rev = "a62ca27515ff6a366b89b420500eb16d380cc653"; - sha256 = "1v87v6a34zv998z1dwwcqx49476pvy9g5zml7w5vzfkms0l8l28w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26446d6a2215bfa622d86837b30f2754dd25eb4c/recipes/helm-grepint"; - sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-grepint"; - license = lib.licenses.free; - }; - }) {}; - helm-growthforecast = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-growthforecast"; - ename = "helm-growthforecast"; - version = "20140119.1944"; - src = fetchFromGitHub { - owner = "daichirata"; - repo = "helm-growthforecast"; - rev = "0f94ac090d6c354058ad89a86e5c18385c136d9b"; - sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d92e66cad586d4dc6b1de12d1b41b818b5232c2/recipes/helm-growthforecast"; - sha256 = "1qlyp263rl0892hr53kgc16jlx3jylw2pplbzlx05a60k5348jjv"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-growthforecast"; - license = lib.licenses.free; - }; - }) {}; - helm-gtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-gtags"; - ename = "helm-gtags"; - version = "20170115.2129"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-gtags"; - rev = "108e93d0d099ebb7b98847388f368311cf177033"; - sha256 = "0hfshcnzrrvf08yw4xz5c93g9pw6bvjp2bmv0s6acrsjqgwhx158"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-gtags"; - sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-gtags"; - license = lib.licenses.free; - }; - }) {}; - helm-hatena-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hatena-bookmark"; - ename = "helm-hatena-bookmark"; - version = "20190526.712"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-hatena-bookmark"; - rev = "70b08add4f42ad430441399d266f47773f18835a"; - sha256 = "007ghf8ac104ifm4idc60zy2rn310kncbcv0qg4wr9djl65n2m95"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark"; - sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-hatena-bookmark"; - license = lib.licenses.free; - }; - }) {}; - helm-hayoo = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-mode - , helm - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hayoo"; - ename = "helm-hayoo"; - version = "20151013.2351"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "helm-hayoo"; - rev = "dd4c0c8c87521026edf1b808c4de01fa19b7c693"; - sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-hayoo"; - sha256 = "06nbilb6vfa8959ss5d06zbcwqxlbyi3cb5jnbdag0jnpxvv1hqb"; - name = "recipe"; - }; - packageRequires = [ haskell-mode helm json ]; - meta = { - homepage = "https://melpa.org/#/helm-hayoo"; - license = lib.licenses.free; - }; - }) {}; - helm-helm-commands = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-helm-commands"; - ename = "helm-helm-commands"; - version = "20130902.1048"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "helm-helm-commands"; - rev = "1c37bb0d4cda6877162603cd1ddc9f596a7a5cb9"; - sha256 = "0c31qr8lk58w86n5iisx0vpd19y44vmqg7xnpjh6mnz102xif7rn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bd33d5d5c8653df5373984d01c3ec87b30c51b/recipes/helm-helm-commands"; - sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-helm-commands"; - license = lib.licenses.free; - }; - }) {}; - helm-hoogle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hoogle"; - ename = "helm-hoogle"; - version = "20161026.2234"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "helm-hoogle"; - rev = "73969a9d46d2121a849a01a9f7ed3636d01f7bbc"; - sha256 = "043bddm6lldl6wkifr1plqip7laai771z1a1l0x2h35l3g8c64h0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ccc21c2acc76a6794aee94902b1bc4c14119901/recipes/helm-hoogle"; - sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-hoogle"; - license = lib.licenses.free; - }; - }) {}; - helm-hunks = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hunks"; - ename = "helm-hunks"; - version = "20171217.1133"; - src = fetchFromGitHub { - owner = "torgeir"; - repo = "helm-hunks.el"; - rev = "6392bf716f618eac23ce81140aceb0dfacb9c6d0"; - sha256 = "1ih2pgyhshv8nl7hhchd4h0pbjgj45irp5dy1fq2gy05v4rn7wi4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d61cbe53ad42f2405a66de9f551f5b870a60709f/recipes/helm-hunks"; - sha256 = "1fhb9sf7fpz3f3ylc906w5xa4zzfr0gix6m7zc4c8qmz33zbhbp5"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-hunks"; - license = lib.licenses.free; - }; - }) {}; - helm-idris = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , idris-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-idris"; - ename = "helm-idris"; - version = "20141202.957"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "helm-idris"; - rev = "a2f45d6817974f318b55ad9b7fd19d5df132d47e"; - sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-idris"; - sha256 = "04f1963ksbjdza1syajb5vkwwsc9gzk0az6c1m1zgvsianrq4rd9"; - name = "recipe"; - }; - packageRequires = [ helm idris-mode ]; - meta = { - homepage = "https://melpa.org/#/helm-idris"; - license = lib.licenses.free; - }; - }) {}; - helm-img = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-img"; - ename = "helm-img"; - version = "20151224.1521"; - src = fetchFromGitHub { - owner = "l3msh0"; - repo = "helm-img"; - rev = "aa3f8a5dce8d0413bf07584f07153a39015c2bfc"; - sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0ea97a55f8f4183d375424c94705f372189d6ed/recipes/helm-img"; - sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-img"; - license = lib.licenses.free; - }; - }) {}; - helm-img-tiqav = callPackage ({ fetchFromGitHub - , fetchurl - , helm-img - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-img-tiqav"; - ename = "helm-img-tiqav"; - version = "20151224.1522"; - src = fetchFromGitHub { - owner = "l3msh0"; - repo = "helm-img-tiqav"; - rev = "33a7e9508bc8f37d53320b56c92b53d321a57bb0"; - sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6a948f91dc58ce565e54967ab75fe572f37f616/recipes/helm-img-tiqav"; - sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0"; - name = "recipe"; - }; - packageRequires = [ helm-img ]; - meta = { - homepage = "https://melpa.org/#/helm-img-tiqav"; - license = lib.licenses.free; - }; - }) {}; - helm-ispell = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ispell"; - ename = "helm-ispell"; - version = "20151231.53"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ispell"; - rev = "cb735695ab3a0e66c123c2f3f3e8911fb1c2d5fc"; - sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edc42b26027dcd7daf0d6f2bd19ca4736fc12d6d/recipes/helm-ispell"; - sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-ispell"; - license = lib.licenses.free; - }; - }) {}; - helm-itunes = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-itunes"; - ename = "helm-itunes"; - version = "20151012.2348"; - src = fetchFromGitHub { - owner = "anschwa"; - repo = "helm-itunes"; - rev = "966de755a5aadbe02311a6cef77bd4790e84c263"; - sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-itunes"; - sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-itunes"; - license = lib.licenses.free; - }; - }) {}; - helm-j-cheatsheet = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-j-cheatsheet"; - ename = "helm-j-cheatsheet"; - version = "20170217.29"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "helm-j-cheatsheet"; - rev = "6c47e7162b9ba2de4b41221d01180146973d860b"; - sha256 = "0ayv6aqmwjy95gc9cpyx0s71486rvlmn04iwgfn43mr192c38y9p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/681b43eb224942155b97181bbb78bcd295347d04/recipes/helm-j-cheatsheet"; - sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-j-cheatsheet"; - license = lib.licenses.free; - }; - }) {}; - helm-jira = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-jira"; - ename = "helm-jira"; - version = "20180802.115"; - src = fetchFromGitHub { - owner = "DeX3"; - repo = "helm-jira"; - rev = "75d6ed5bd7a041fa8c1adb21cbbbe57b5a7c7cc7"; - sha256 = "08cczc4jnkdgvzs0s3wq2dqmhnsvyhpl65dydmi7pmayl7zg6jir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b91a22c2117403e278a8116ea1180bed736ae1e3/recipes/helm-jira"; - sha256 = "1fb2hk97zlr30gzln8b5x7xc3v119ki8kbiyh7shxnaqx7dy1ihs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-jira"; - license = lib.licenses.free; - }; - }) {}; - helm-js-codemod = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , js-codemod - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-js-codemod"; - ename = "helm-js-codemod"; - version = "20171106.244"; - src = fetchFromGitHub { - owner = "torgeir"; - repo = "helm-js-codemod.el"; - rev = "18503d94e64418e8ea5c5854f197ae9f3009cdbf"; - sha256 = "0d5fsvfa017gda0jryjdvva1q04nry6grc1433gvgrqqp6vxayxc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd005bfb170df2f0c992043130a5e9588dcf4d77/recipes/helm-js-codemod"; - sha256 = "1m07xh97fjyah8di363yalg9f5g5rfr3k5mbjql3n67lfwgxrz94"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core js-codemod ]; - meta = { - homepage = "https://melpa.org/#/helm-js-codemod"; - license = lib.licenses.free; - }; - }) {}; - helm-jstack = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-jstack"; - ename = "helm-jstack"; - version = "20150602.2122"; - src = fetchFromGitHub { - owner = "raghavgautam"; - repo = "helm-jstack"; - rev = "aab0fd9f14794ae3a6e7cfbe7f6a81842ce4c23b"; - sha256 = "133fgmhh5phxssagriw1jsi48va4kyphwbcrha7pfnkmrmr1dgqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a92ffbc4de86248729773dd8729e6487bf56fbb0/recipes/helm-jstack"; - sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-jstack"; - license = lib.licenses.free; - }; - }) {}; - helm-kythe = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-kythe"; - ename = "helm-kythe"; - version = "20170709.26"; - src = fetchFromGitHub { - owner = "MaskRay"; - repo = "emacs-helm-kythe"; - rev = "eabbef4948f8ec7c7b2fac498e9145dfdb10ca82"; - sha256 = "1ws7vl0pvznmxb7yj77kfv4l52xkzblhsl68lfkf9cdxcj9g6177"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1a6d0b08ad750a0e44ebdf76109d29ab226bd3/recipes/helm-kythe"; - sha256 = "1yybpic3jzp3yy8xlfdn2jj12h087vn0lj3mqx6xxj2nxd9q4949"; - name = "recipe"; - }; - packageRequires = [ dash emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-kythe"; - license = lib.licenses.free; - }; - }) {}; - helm-lastpass = callPackage ({ csv - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-lastpass"; - ename = "helm-lastpass"; - version = "20180722.106"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-lastpass"; - rev = "82e1ffb6ae77d9d9e29c398eb013cd20ce963f77"; - sha256 = "0pri9zsjg0zii7dpsr56dy5204q0mld5wi22iay3kqpiyxghhssv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a39f1b0a5b22e91eb9e298949def6c29e7bc5755/recipes/helm-lastpass"; - sha256 = "0zgq3szds5l3ah39wiacqcc1j0dlbhwm0cjx64j28jx93300kx57"; - name = "recipe"; - }; - packageRequires = [ csv emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-lastpass"; - license = lib.licenses.free; - }; - }) {}; - helm-lean = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lean-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-lean"; - ename = "helm-lean"; - version = "20171102.754"; - src = fetchFromGitHub { - owner = "leanprover"; - repo = "lean-mode"; - rev = "c0af876c967fc969d67c467bc6767210d19c5d87"; - sha256 = "04qzck156wb2bvrb8adbn7rx2v0bsjcirlbx4ajajjsqy858ayn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/helm-lean"; - sha256 = "0j5ax14lhlyd9mpqk1jwh7nfp090kj71r045v2qjfaw2fa23b7si"; - name = "recipe"; - }; - packageRequires = [ dash emacs helm lean-mode ]; - meta = { - homepage = "https://melpa.org/#/helm-lean"; - license = lib.licenses.free; - }; - }) {}; - helm-lib-babel = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-lib-babel"; - ename = "helm-lib-babel"; - version = "20180510.624"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "helm-lib-babel"; - rev = "41bc0cdea8a604c6c8dc83ed5066644d33688fad"; - sha256 = "1jrpaip5v9kzk0rf8wivsq8irdfd39svxd7p3v80cwgrrl7546xj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6718da5d8849a8c3ec17188b89a1273cf963047/recipes/helm-lib-babel"; - sha256 = "0ddj6xrhz4n0npplkjmblqb43jnd6fmr4i4vv1cigrgb7zj6bjx4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-lib-babel"; - license = lib.licenses.free; - }; - }) {}; - helm-lines = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-lines"; - ename = "helm-lines"; - version = "20180601.1333"; - src = fetchFromGitHub { - owner = "torgeir"; - repo = "helm-lines.el"; - rev = "3bfe15a60c6405682085ab289de3eb364624c4e9"; - sha256 = "1fi0khqx35v48s14jr59jp06bpnhx9dy2rdasj2wn1a34jwgd49i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0aee0be5f388a6d778cb22ce5ad930d21c6f521/recipes/helm-lines"; - sha256 = "110y0vdmab4zr3ab6cpf93b6iidxhanq4rh1cfrzqjf7a7xik78h"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-lines"; - license = lib.licenses.free; - }; - }) {}; - helm-lobsters = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-lobsters"; - ename = "helm-lobsters"; - version = "20150213.746"; - src = fetchFromGitHub { - owner = "julienXX"; - repo = "helm-lobste.rs"; - rev = "4121b232aeded2f82ad2c8a85c7dda17ef9d97bb"; - sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6247e3786131e5b2a7824804e49927ed65d266d5/recipes/helm-lobsters"; - sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-lobsters"; - license = lib.licenses.free; - }; - }) {}; - helm-ls-git = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ls-git"; - ename = "helm-ls-git"; - version = "20190104.2322"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-ls-git"; - rev = "0702bc1950f26358c1a024bdbb2d0b1d7dcd2e51"; - sha256 = "0ndgnnsknan2f5jy1aiwcll1kxqyzcjc9kh6vkyd8d4dw7rskldg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git"; - sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ls-git"; - license = lib.licenses.free; - }; - }) {}; - helm-ls-hg = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ls-hg"; - ename = "helm-ls-hg"; - version = "20150908.2243"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-ls-hg"; - rev = "61b91a22fcfb62d0fc56e361ec01ce96973c7165"; - sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03a22c9ec281330c4603aec6feb04cf580dee340/recipes/helm-ls-hg"; - sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ls-hg"; - license = lib.licenses.free; - }; - }) {}; - helm-ls-svn = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ls-svn"; - ename = "helm-ls-svn"; - version = "20190316.1503"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "helm-ls-svn"; - rev = "a6043e1187282f649e2cb9f0e722a42daf41294b"; - sha256 = "0jh3q2nx3hn6v1qvip5sbfsvf9zy74ppn1rl037d0hlssh6qir9j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/helm-ls-svn"; - sha256 = "10rbplwagmwp8lvhandzlinnzl1vcsvdlnjk9jpj3nw42x9wahx4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ls-svn"; - license = lib.licenses.free; - }; - }) {}; - helm-lsp = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "helm-lsp"; - ename = "helm-lsp"; - version = "20190422.2248"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "helm-lsp"; - rev = "3a58ca4cfd94b9ab1e15e819d3b16ef568e8889b"; - sha256 = "0wh5zai3s17ss2q8wcdd6d87hv1h3nbyrxxs4js9cas8m6y2ssjv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/helm-lsp"; - sha256 = "0hzwz243n45xcm3rnzmd6z8zrqy9660fy0l8mb940960cjzsxf3m"; - name = "recipe"; - }; - packageRequires = [ dash emacs helm lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/helm-lsp"; - license = lib.licenses.free; - }; - }) {}; - helm-lxc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , lxc-tramp - , melpaBuild }: - melpaBuild { - pname = "helm-lxc"; - ename = "helm-lxc"; - version = "20190116.1250"; - src = fetchFromGitHub { - owner = "montag451"; - repo = "helm-lxc"; - rev = "6f11ea39c48816215fbd2df6c4bdaa90241aeac7"; - sha256 = "19f2jbjid1kfnqyqz9jnzy3blp5is23r14ss9iaky4wwb4gs0847"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a7717154a657bb7c27b25579ea2c1b31b5c0b5f/recipes/helm-lxc"; - sha256 = "0mhxbs99isbvls34g0415iy3fry7kanala6624gp5l5isbmn95rm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm lxc-tramp ]; - meta = { - homepage = "https://melpa.org/#/helm-lxc"; - license = lib.licenses.free; - }; - }) {}; - helm-make = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-make"; - ename = "helm-make"; - version = "20190518.1246"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "helm-make"; - rev = "8eabcaf29102f5ab07543f627af5d75178c86d10"; - sha256 = "0akyr99fkp3j2yipxik9fdsycd35jd6xb7q716k6ngwaa5gf2qka"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make"; - sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/helm-make"; - license = lib.licenses.free; - }; - }) {}; - helm-migemo = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "helm-migemo"; - ename = "helm-migemo"; - version = "20151009.2056"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-migemo"; - rev = "66c6a19d07c6a385daefd2090d0709d26b608b4e"; - sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-migemo"; - sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm-core migemo ]; - meta = { - homepage = "https://melpa.org/#/helm-migemo"; - license = lib.licenses.free; - }; - }) {}; - helm-mode-manager = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-mode-manager"; - ename = "helm-mode-manager"; - version = "20151124.138"; - src = fetchFromGitHub { - owner = "istib"; - repo = "helm-mode-manager"; - rev = "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc"; - sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-mode-manager"; - sha256 = "04yhqbb9cliv1922b0abpc1wrladvhyfmwn8ifqfkzaks4067rhl"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-mode-manager"; - license = lib.licenses.free; - }; - }) {}; - helm-mt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , multi-term }: - melpaBuild { - pname = "helm-mt"; - ename = "helm-mt"; - version = "20160917.2152"; - src = fetchFromGitHub { - owner = "dfdeshom"; - repo = "helm-mt"; - rev = "d2bff4100118483bc398c56d0ff095294209265b"; - sha256 = "1wci63y0vjvrvrylkhhrz8p9q0ml6la5cpj4rx5cwin9rkmislm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e726bf0b9b3f371b21f1f0d75175e0dda62f6fb0/recipes/helm-mt"; - sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm multi-term ]; - meta = { - homepage = "https://melpa.org/#/helm-mt"; - license = lib.licenses.free; - }; - }) {}; - helm-mu = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-mu"; - ename = "helm-mu"; - version = "20190410.1018"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-mu"; - rev = "7793d96694505380c470cb7b31b4bd8a2781e529"; - sha256 = "01410wi46ljpy1040wk9dp2k21nyhc3k6kwxpy35874bqhqn5r3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63ee2e2aa622c96993c1b705d0fd223d6b36fd0f/recipes/helm-mu"; - sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-mu"; - license = lib.licenses.free; - }; - }) {}; - helm-navi = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , navi-mode - , s }: - melpaBuild { - pname = "helm-navi"; - ename = "helm-navi"; - version = "20181225.1629"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-navi"; - rev = "3b9abcc39ce7c657bc2dcc054b850dc2a7cf0448"; - sha256 = "1kxv8qx7s51fnzrslwqrgayqvyq30ycnb84p5qy7jf0rf69hxxjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5ffbc25c0eb30b9c96594d50f47cd0383aa8ebc/recipes/helm-navi"; - sha256 = "0v3amm15pwja2y7zg92hsfhp3scmswwl0q0slg33g11rvj26iiks"; - name = "recipe"; - }; - packageRequires = [ emacs helm navi-mode s ]; - meta = { - homepage = "https://melpa.org/#/helm-navi"; - license = lib.licenses.free; - }; - }) {}; - helm-nixos-options = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , nixos-options }: - melpaBuild { - pname = "helm-nixos-options"; - ename = "helm-nixos-options"; - version = "20151013.1609"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "f7709bb007ebafb4d6b32778c7764e2c44e0420d"; - sha256 = "1q7z9rdd00c562qbr51xy3qrqfj7wm4ycysx5fiasjisqa9vphkv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/helm-nixos-options"; - sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; - name = "recipe"; - }; - packageRequires = [ helm nixos-options ]; - meta = { - homepage = "https://melpa.org/#/helm-nixos-options"; - license = lib.licenses.free; - }; - }) {}; - helm-notmuch = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , notmuch }: - melpaBuild { - pname = "helm-notmuch"; - ename = "helm-notmuch"; - version = "20190320.348"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-notmuch"; - rev = "97a01497e079a7b6505987e9feba6b603bbec288"; - sha256 = "1k038dbdpaa411gl4071x19fklhnizhr346plxw23lsnxir9dhqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98667b3aa43d3e0f6174eeef82acaf71d7019aac/recipes/helm-notmuch"; - sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0"; - name = "recipe"; - }; - packageRequires = [ helm notmuch ]; - meta = { - homepage = "https://melpa.org/#/helm-notmuch"; - license = lib.licenses.free; - }; - }) {}; - helm-open-github = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-open-github"; - ename = "helm-open-github"; - version = "20170219.1759"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-open-github"; - rev = "2f03d97552a1233db7694116d5f80ecde7612756"; - sha256 = "1nzi2m23mqvxkpa7wsd2j0rwvlv5pj0mcaz2ypgfd023k2vh9is1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-open-github"; - sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; - name = "recipe"; - }; - packageRequires = [ emacs gh helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-open-github"; - license = lib.licenses.free; - }; - }) {}; - helm-org-rifle = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-org-rifle"; - ename = "helm-org-rifle"; - version = "20181216.329"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "helm-org-rifle"; - rev = "23f4ae05f5a9d1894f4afdb9ef774c342eb7e787"; - sha256 = "040jmacydgp56gd48ddfn1yk8bsdaawhdkpb0nr898q0bkk5arzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; - sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; - name = "recipe"; - }; - packageRequires = [ dash emacs f helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-org-rifle"; - license = lib.licenses.free; - }; - }) {}; - helm-orgcard = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-orgcard"; - ename = "helm-orgcard"; - version = "20151001.824"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-orgcard"; - rev = "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d"; - sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-orgcard"; - sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-orgcard"; - license = lib.licenses.free; - }; - }) {}; - helm-pages = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pages"; - ename = "helm-pages"; - version = "20161120.1826"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "helm-pages"; - rev = "51dcb9374d1df9feaae85e60cfb39b970554ecba"; - sha256 = "0znmj13nshzspysnzrn2x6k9fym21n9ywkpjibljy0s05m36nbs5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a33cb19b6e71240896bbe5da07ab25f2ee11f0b/recipes/helm-pages"; - sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-pages"; - license = lib.licenses.free; - }; - }) {}; - helm-pass = callPackage ({ auth-source-pass - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , password-store }: - melpaBuild { - pname = "helm-pass"; - ename = "helm-pass"; - version = "20190315.635"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-pass"; - rev = "ed5798f2d83937575e8f23fde33323bca9e85131"; - sha256 = "0vglaknmir3yv4iwibwn8r40ran8d04gcyp99hx73ldmf3zqpnxv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a34e0ab66491540dd0c5b62c7f60684056b16d5/recipes/helm-pass"; - sha256 = "153cj58x2xcmjs2n4fl1jsv8zir4z9jwg1w00ghv70k5j3rwsjkp"; - name = "recipe"; - }; - packageRequires = [ auth-source-pass emacs helm password-store ]; - meta = { - homepage = "https://melpa.org/#/helm-pass"; - license = lib.licenses.free; - }; - }) {}; - helm-perldoc = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-perldoc"; - ename = "helm-perldoc"; - version = "20160917.2256"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-perldoc"; - rev = "1979f9f67814c11ec9498502237c89a5e1153100"; - sha256 = "0fvjw8sqnwnjx978y7fghvgp5dznx31hx0pjp4iih01xa1hcwbnc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-perldoc"; - sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; - name = "recipe"; - }; - packageRequires = [ deferred emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-perldoc"; - license = lib.licenses.free; - }; - }) {}; - helm-perspeen = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , perspeen }: - melpaBuild { - pname = "helm-perspeen"; - ename = "helm-perspeen"; - version = "20170228.545"; - src = fetchFromGitHub { - owner = "jimo1001"; - repo = "helm-perspeen"; - rev = "7fe2922d85608bfa9e18269fc44181428b8849ff"; - sha256 = "1m89c95vzmhsvrg5g7ixz5a5ckw2n983x58cwh8rkmaklavacgsy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee26a57aacbd571da0cfaca2c31eec6ea86a543/recipes/helm-perspeen"; - sha256 = "07cnsfhph807fqyai3by2c5ml9a40gxkq280f27disf8sc45rg1y"; - name = "recipe"; - }; - packageRequires = [ helm perspeen ]; - meta = { - homepage = "https://melpa.org/#/helm-perspeen"; - license = lib.licenses.free; - }; - }) {}; - helm-phpunit = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , phpunit }: - melpaBuild { - pname = "helm-phpunit"; - ename = "helm-phpunit"; - version = "20160513.153"; - src = fetchFromGitHub { - owner = "eric-hansen"; - repo = "helm-phpunit"; - rev = "739f26204ad2ba76c25f45e8eab1e5216f7c3518"; - sha256 = "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96470d7190199bfb13dd54e7e8f5ea50cf0a5039/recipes/helm-phpunit"; - sha256 = "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6"; - name = "recipe"; - }; - packageRequires = [ helm phpunit ]; - meta = { - homepage = "https://melpa.org/#/helm-phpunit"; - license = lib.licenses.free; - }; - }) {}; - helm-posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , posframe }: - melpaBuild { - pname = "helm-posframe"; - ename = "helm-posframe"; - version = "20180610.1048"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "helm-posframe"; - rev = "d28f96ea92ee9393658901bb552723db10f40dc3"; - sha256 = "1ycf5m06n32axqpm2vkvszff6gxdps1y8gm46682nf8mk2i3xa6f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a99c37bc50c371aae8ccc27de8120d4773981cf7/recipes/helm-posframe"; - sha256 = "16mhi17kl3cgwk7ymzg8crakwrwrzsg5p9ijgrdawa7px2z9ym78"; - name = "recipe"; - }; - packageRequires = [ emacs helm posframe ]; - meta = { - homepage = "https://melpa.org/#/helm-posframe"; - license = lib.licenses.free; - }; - }) {}; - helm-proc = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-proc"; - ename = "helm-proc"; - version = "20161005.2005"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "helm-proc"; - rev = "576d31c2d74ba3897d56e2acd2b0993f52c2547c"; - sha256 = "11xahzybwh02ds19y6h5hbpqdj278kcb4239vyykdl3wx8p048a7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-proc"; - sha256 = "11mh8ny8mhdmp16s21vy9yyql56zxcgmj2aapqs5jy4yad5q62rz"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-proc"; - license = lib.licenses.free; - }; - }) {}; - helm-project-persist = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , project-persist }: - melpaBuild { - pname = "helm-project-persist"; - ename = "helm-project-persist"; - version = "20151210.743"; - src = fetchFromGitHub { - owner = "Sliim"; - repo = "helm-project-persist"; - rev = "357950fbac18090985a750e40d5d8b10ee9dcd53"; - sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98780edaf8b1d97aec9e25d07d93289c90fd5069/recipes/helm-project-persist"; - sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; - name = "recipe"; - }; - packageRequires = [ helm project-persist ]; - meta = { - homepage = "https://melpa.org/#/helm-project-persist"; - license = lib.licenses.free; - }; - }) {}; - helm-projectile = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "helm-projectile"; - ename = "helm-projectile"; - version = "20190408.808"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "helm-projectile"; - rev = "38d72b6b661234088bae9f3c2b3c18228a3c0564"; - sha256 = "1n6x0is8nlf9ikgabz7889q5g7rikqs5292lvb1kvkb2rvbaa65g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/helm-projectile"; - sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm projectile ]; - meta = { - homepage = "https://melpa.org/#/helm-projectile"; - license = lib.licenses.free; - }; - }) {}; - helm-prosjekt = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , prosjekt }: - melpaBuild { - pname = "helm-prosjekt"; - ename = "helm-prosjekt"; - version = "20140128.2317"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "prosjekt"; - rev = "f94f970c2d375e0973b66ba99b29c7aa42fd550f"; - sha256 = "1kfifsqxybvrff6mwifjp0igbad11winsks05l8k661blsh7m5ir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/helm-prosjekt"; - sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm"; - name = "recipe"; - }; - packageRequires = [ helm prosjekt ]; - meta = { - homepage = "https://melpa.org/#/helm-prosjekt"; - license = lib.licenses.free; - }; - }) {}; - helm-pt = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pt"; - ename = "helm-pt"; - version = "20160214.1542"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "helm-pt"; - rev = "8acc52911dad1ed0c3975f134a468762afe0b76b"; - sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/helm-pt"; - sha256 = "1pvipzjw9h668jkbwwkmphvp806fs9q4mb2v2bjxpb0f3kn2qk3n"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-pt"; - license = lib.licenses.free; - }; - }) {}; - helm-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , window-purpose }: - melpaBuild { - pname = "helm-purpose"; - ename = "helm-purpose"; - version = "20170114.836"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "helm-purpose"; - rev = "9ff4c21c1e9ebc7afb851b738f815df7343bb287"; - sha256 = "1xh6v5xlf1prgk6mrvkc6qa0r0bz74s5f4z3dl7d00chsi7i2m5v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-purpose"; - sha256 = "16c9if636v7l8z5df011vdj4a3ci5kf3rdfk4g9hdbbl639yca79"; - name = "recipe"; - }; - packageRequires = [ emacs helm window-purpose ]; - meta = { - homepage = "https://melpa.org/#/helm-purpose"; - license = lib.licenses.free; - }; - }) {}; - helm-pydoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pydoc"; - ename = "helm-pydoc"; - version = "20160917.2242"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-pydoc"; - rev = "85480a29b56dacde425655bc8f5a597c785afdf5"; - sha256 = "1wrs2d84xzjnsmw255bmnd1wcpwd36m0vyni48aa7661d4dh10x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-pydoc"; - sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-pydoc"; - license = lib.licenses.free; - }; - }) {}; - helm-qiita = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-qiita"; - ename = "helm-qiita"; - version = "20190526.659"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-qiita"; - rev = "5f82010c595f8e122aa3f68148ba8d8ccb1333d8"; - sha256 = "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita"; - sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-qiita"; - license = lib.licenses.free; - }; - }) {}; - helm-rage = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-rage"; - ename = "helm-rage"; - version = "20180118.732"; - src = fetchFromGitHub { - owner = "bomgar"; - repo = "helm-rage"; - rev = "5d0aefb53d859186181d4bdcfeff7d315339c7b8"; - sha256 = "0msj3rrv9bwhhwz7r1ayr6qvnxjsq7374j0xfhqbrx49pix4qf3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84f831fdc5a0e90c23ac11c79f193f4d3c1ebb04/recipes/helm-rage"; - sha256 = "02pdmkzwnqhf1r0v7b498z5b2il3ng75ykdwgmwd60k6hiygj70x"; - name = "recipe"; - }; - packageRequires = [ dash emacs helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-rage"; - license = lib.licenses.free; - }; - }) {}; - helm-rails = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , inflections - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rails"; - ename = "helm-rails"; - version = "20130424.819"; - src = fetchFromGitHub { - owner = "asok"; - repo = "helm-rails"; - rev = "723c2a27f3843570ec1039e3c526953e48b4ed40"; - sha256 = "1gpy6jc932p4yiyglnwylriw3jk2f4bs7rrxbwc0z9xzjzzn4qnz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3af52fd266364a81ff42eb6d08389fa549bd6c2c/recipes/helm-rails"; - sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6"; - name = "recipe"; - }; - packageRequires = [ helm inflections ]; - meta = { - homepage = "https://melpa.org/#/helm-rails"; - license = lib.licenses.free; - }; - }) {}; - helm-rb = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , helm-ag-r - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rb"; - ename = "helm-rb"; - version = "20131123.839"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "helm-rb"; - rev = "4949d646420a9849af234dacdd8eb34a77c662fd"; - sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7ba8e94755f5a96881bbf4c4ffbff67bec9b804a/recipes/helm-rb"; - sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr"; - name = "recipe"; - }; - packageRequires = [ helm helm-ag-r ]; - meta = { - homepage = "https://melpa.org/#/helm-rb"; - license = lib.licenses.free; - }; - }) {}; - helm-rdefs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rdefs"; - ename = "helm-rdefs"; - version = "20161129.2136"; - src = fetchFromGitHub { - owner = "saidie"; - repo = "emacs-helm-rdefs"; - rev = "cd3a6b3af3015ee58ef30cb7c81c79ebe5fc867b"; - sha256 = "0ji7ak9pkmw0wxzmw5a1amvn3pkj90v9jv1yi12w388njxn7qsvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1c7a20847513dc1153d54a3a700bc120f71dc6b/recipes/helm-rdefs"; - sha256 = "0z3nrqrz63j9nxkbxdsjj3z8zhsqlik28iry3j1plgsxq1mhrn0y"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rdefs"; - license = lib.licenses.free; - }; - }) {}; - helm-recoll = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-recoll"; - ename = "helm-recoll"; - version = "20160731.221"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-recoll"; - rev = "cc4c4fa9c8f4f99383647baa8512b60523dc8b36"; - sha256 = "1ic2k8ls084yn9h96pk8815wlvxkwwdq75zhm1ls197pkbw7gh7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a0d168f96470753c22b92ad863be98d8c421ccd/recipes/helm-recoll"; - sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-recoll"; - license = lib.licenses.free; - }; - }) {}; - helm-rg = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rg"; - ename = "helm-rg"; - version = "20190130.934"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "helm-rg"; - rev = "2cac4b6f9ab16962d63003c3f8b07e4d4f9899db"; - sha256 = "18nvndrqshvl79awixvsc9d7xi8npbyr10d7clbr0y2l405bwx4j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/958fbafdcb214f1ec89fd0d84c6600c89890e0cf/recipes/helm-rg"; - sha256 = "0gfq59540q9s6mr04q7dz638zqmqbqmbl1qaczddgmjn4vyjmf7v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rg"; - license = lib.licenses.free; - }; - }) {}; - helm-rhythmbox = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rhythmbox"; - ename = "helm-rhythmbox"; - version = "20160524.458"; - src = fetchFromGitHub { - owner = "mrBliss"; - repo = "helm-rhythmbox"; - rev = "c92e1ded34ddd4e62e7e9a558259c232e05193fa"; - sha256 = "1ng73dmligj38xbfdfr8sb69czppks7wfvh5q5xcm2pha828kcwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a81c43958308ad8035a9d0b2422fd094adc72f0/recipes/helm-rhythmbox"; - sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rhythmbox"; - license = lib.licenses.free; - }; - }) {}; - helm-robe = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-robe"; - ename = "helm-robe"; - version = "20151208.1955"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-robe"; - rev = "7348d0bc0251b51979554ea678b970fd01c0efe9"; - sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7018f57f6f0e4bd71e172ae23c050b44276581b/recipes/helm-robe"; - sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-robe"; - license = lib.licenses.free; - }; - }) {}; - helm-ros = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "helm-ros"; - ename = "helm-ros"; - version = "20160812.1052"; - src = fetchFromGitHub { - owner = "davidlandry93"; - repo = "helm-ros"; - rev = "92b0b215f6a017f0f57f1af15466cc0b2a5a0135"; - sha256 = "1fgph8wsm2nakn53zj19r59mirzn25r601rljmdv2xpw5h3axywg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9ddf53b4060c33550a445f877aef37dffaeb7e/recipes/helm-ros"; - sha256 = "1q9qqjchkj6anikaamhw998f5aaampc1z7085v9pigg3x11vv9fm"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm xterm-color ]; - meta = { - homepage = "https://melpa.org/#/helm-ros"; - license = lib.licenses.free; - }; - }) {}; - helm-rtags = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "helm-rtags"; - ename = "helm-rtags"; - version = "20170812.2111"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "ccba23e842a43e8079e22c2fc93d022ac40dedaf"; - sha256 = "091gh5mmgz357mz0jpmbzzrsy04bjczac02i94jxf49p6yw9v4ga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; - sha256 = "1vv6wnniplyls344qzgcf1ivv25c8qilax6sbhvsf46lvrwnr48n"; - name = "recipe"; - }; - packageRequires = [ helm rtags ]; - meta = { - homepage = "https://melpa.org/#/helm-rtags"; - license = lib.licenses.free; - }; - }) {}; - helm-rubygems-local = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rubygems-local"; - ename = "helm-rubygems-local"; - version = "20130711.1811"; - src = fetchFromGitHub { - owner = "hadashiA"; - repo = "helm-rubygems-local"; - rev = "289cb33d41c703af9791d6da46b55f070013c2e3"; - sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/helm-rubygems-local"; - sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rubygems-local"; - license = lib.licenses.free; - }; - }) {}; - helm-rubygems-org = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rubygems-org"; - ename = "helm-rubygems-org"; - version = "20140826.456"; - src = fetchFromGitHub { - owner = "neomantic"; - repo = "helm-rubygems-org"; - rev = "6aaed984f698cbdf9f9aceb0221404563e28764d"; - sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/655be547d57d358eff968f42c13dcf4371529a72/recipes/helm-rubygems-org"; - sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rubygems-org"; - license = lib.licenses.free; - }; - }) {}; - helm-safari = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-safari"; - ename = "helm-safari"; - version = "20160403.2024"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-safari"; - rev = "664c7f4488829228eed7e90cd53002e14bec555b"; - sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/553e27a3523ade9dc4951086d9340e8240d5d943/recipes/helm-safari"; - sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-safari"; - license = lib.licenses.free; - }; - }) {}; - helm-sage = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , sage-shell-mode }: - melpaBuild { - pname = "helm-sage"; - ename = "helm-sage"; - version = "20160514.45"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "helm-sage"; - rev = "f14e9281d8f2162df7d8f9c2ad9ad1248a24803b"; - sha256 = "0padb6mncgc52wib3dgvdc9r4dp591gf8nblbfnsnxx4zjrcwawb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09760a7f7b3cff6551c394fc7b2298567ca88eb0/recipes/helm-sage"; - sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/helm-sage"; - license = lib.licenses.free; - }; - }) {}; - helm-selected = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , selected }: - melpaBuild { - pname = "helm-selected"; - ename = "helm-selected"; - version = "20171222.1810"; - src = fetchFromGitHub { - owner = "takaxp"; - repo = "helm-selected"; - rev = "d2609cdfce14052ab2d9c23761d4fe56966a8ed1"; - sha256 = "0nbfs5s6lshxib6kp20dzh1qbmq079hwcqwi1n61ank22qa9qw5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc087661e614d9f30c23fe4a65c020bd3656a29/recipes/helm-selected"; - sha256 = "0ksyh0r59y4abwls6v6v519yxmcjnaryfnxlam48fqqfrsxv1j0h"; - name = "recipe"; - }; - packageRequires = [ emacs helm selected ]; - meta = { - homepage = "https://melpa.org/#/helm-selected"; - license = lib.licenses.free; - }; - }) {}; - helm-sheet = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-sheet"; - ename = "helm-sheet"; - version = "20130630.539"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-sheet"; - rev = "d360b68d0ddb09aa1854e7b2f3cb39caeee26463"; - sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/010c5c5e6ad6e7b05e63936079229739963bf970/recipes/helm-sheet"; - sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-sheet"; - license = lib.licenses.free; - }; - }) {}; - helm-slime = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "helm-slime"; - ename = "helm-slime"; - version = "20190315.212"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-slime"; - rev = "ebe80eebd1dfba1f1c837876c8f73cefc8c4db87"; - sha256 = "1qhb9446rpj17pm0hi3miy5gs5k3ld43bq29kzy0y26bf7ivfcjv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c35d43a7a8219de4a7f675147f598966aaecb9db/recipes/helm-slime"; - sha256 = "0qv4c1dd28zqbjxpshga967szrh75a4k51n4x86xkbax7ycca4hh"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm-core slime ]; - meta = { - homepage = "https://melpa.org/#/helm-slime"; - license = lib.licenses.free; - }; - }) {}; - helm-smex = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , smex }: - melpaBuild { - pname = "helm-smex"; - ename = "helm-smex"; - version = "20171004.1308"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "helm-smex"; - rev = "2269375dfa452b88b5170d1a5d5849ebb2c1e413"; - sha256 = "0n2ki7g0hygsq4bi5zkhp3v772ld7niiajfznxmv11dgn949a52s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85568bd732da952053148e07b95e53f7caf5f62c/recipes/helm-smex"; - sha256 = "02jvq2hyq4wwc9v8gaxr9vkjldc60khdbjf71p8w2iny5w3k0jbj"; - name = "recipe"; - }; - packageRequires = [ emacs helm smex ]; - meta = { - homepage = "https://melpa.org/#/helm-smex"; - license = lib.licenses.free; - }; - }) {}; - helm-spaces = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , spaces }: - melpaBuild { - pname = "helm-spaces"; - ename = "helm-spaces"; - version = "20161001.709"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-spaces"; - rev = "877e2b5178926308d6a7c2a37477bb12c33a96d4"; - sha256 = "1cz8aw6zprzfalagma7jmbycwll2chk2l4n5hkgqyhakdfm2ryzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ffb50643223b68a62fab348cd5aba24ce92e6/recipes/helm-spaces"; - sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; - name = "recipe"; - }; - packageRequires = [ helm-core spaces ]; - meta = { - homepage = "https://melpa.org/#/helm-spaces"; - license = lib.licenses.free; - }; - }) {}; - helm-spotify = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , multi }: - melpaBuild { - pname = "helm-spotify"; - ename = "helm-spotify"; - version = "20160905.1447"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "helm-spotify"; - rev = "f7a62d1ff88e3127de9be7cd3e818b0a92268ab3"; - sha256 = "0q3h84zj63b1rnlvmsznrpmvvf0qbic5yb9xkdjcz4jz4h8p3h1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1bf9eda57cba4742656f37a621b6d394483ff638/recipes/helm-spotify"; - sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf"; - name = "recipe"; - }; - packageRequires = [ helm multi ]; - meta = { - homepage = "https://melpa.org/#/helm-spotify"; - license = lib.licenses.free; - }; - }) {}; - helm-spotify-plus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , multi }: - melpaBuild { - pname = "helm-spotify-plus"; - ename = "helm-spotify-plus"; - version = "20181229.345"; - src = fetchFromGitHub { - owner = "wandersoncferreira"; - repo = "helm-spotify-plus"; - rev = "8404541463a398007c7a38a28df10d89f3ef9668"; - sha256 = "0mqyzac48pmmazxb9vl9b5jymr53blzlmjbkmdsxnmk6gml27acr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/306aa9fd29f1495eef71476dfcba3b494223b0a9/recipes/helm-spotify-plus"; - sha256 = "1f39g2kgx4jr7ahhhswkrj0m5rbsykvkgh00d7jy8czpp8r4dl20"; - name = "recipe"; - }; - packageRequires = [ emacs helm multi ]; - meta = { - homepage = "https://melpa.org/#/helm-spotify-plus"; - license = lib.licenses.free; - }; - }) {}; - helm-sql-connect = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-sql-connect"; - ename = "helm-sql-connect"; - version = "20170319.551"; - src = fetchFromGitHub { - owner = "eric-hansen"; - repo = "helm-sql-connect"; - rev = "5aead55b6f8636140945714d8c332b287ab9ef10"; - sha256 = "037gri2r9y135av8gbgi9d8k90qs8jlax0bimzcbwdkyhibhzrcp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58347c583dcf4a915c1af1262a5348755f28fe03/recipes/helm-sql-connect"; - sha256 = "1av42580c68iq694yr532hhcq0jn7m58x3cib4ix5c8b4ljvnnvd"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-sql-connect"; - license = lib.licenses.free; - }; - }) {}; - helm-swoop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-swoop"; - ename = "helm-swoop"; - version = "20180215.354"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "helm-swoop"; - rev = "c66336b8245ddc51c4206f19c119f1081920985c"; - sha256 = "0b23j1bkpg4pm310hqdhgnl4mxsj05gpl08b6kb2ja4fzrg6adsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-swoop"; - sha256 = "1b3nyh4h5kcvwam539va4gzxa3rl4a0rdcriif21yq340yifjbdx"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-swoop"; - license = lib.licenses.free; - }; - }) {}; - helm-system-packages = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "helm-system-packages"; - ename = "helm-system-packages"; - version = "20190325.315"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-system-packages"; - rev = "9e43d446bbf2dd00dfda1d4aef2501fb2400bb1d"; - sha256 = "1rijsmqg5hfrrrkcc9nyy2smw6jnkxhqd9yqpd3rywj7dvb40blc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c46cfb0fcda0500e15d04106150a072a1a75ccc/recipes/helm-system-packages"; - sha256 = "01mndx2zzh7r7gmpn6gd1vy1w3l6dnhvgn7n2p39viji1r8b39s4"; - name = "recipe"; - }; - packageRequires = [ emacs helm seq ]; - meta = { - homepage = "https://melpa.org/#/helm-system-packages"; - license = lib.licenses.free; - }; - }) {}; - helm-systemd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , with-editor }: - melpaBuild { - pname = "helm-systemd"; - ename = "helm-systemd"; - version = "20180130.2034"; - src = fetchFromGitHub { - owner = "Lompik"; - repo = "helm-systemd"; - rev = "96f5cd3ee3412539c2f8d145201f47c4f8e53b4f"; - sha256 = "0wyabh76q2lighd7qxpkzp35fkblxlz8g7p4lpgfwvjid0ixmnvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/helm-systemd"; - sha256 = "1m1by9i37ban3zkznyamp5vxizj8zsz06fdscdhmky1grf6ri4r8"; - name = "recipe"; - }; - packageRequires = [ emacs helm with-editor ]; - meta = { - homepage = "https://melpa.org/#/helm-systemd"; - license = lib.licenses.free; - }; - }) {}; - helm-tail = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-tail"; - ename = "helm-tail"; - version = "20181123.2039"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "helm-tail"; - rev = "1f5a6355aa3bdb00b9b0bc93db29c17f0d6701e3"; - sha256 = "1ad0khw26m22xpdv0iyg5gac92i8m455sznsfh16vxaa98gq0c4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74b235c2ecf8c8f8206670bca3b915deb4b77c2b/recipes/helm-tail"; - sha256 = "0sw97fzpnrk335l3vjaj3nw87cajhzwsjsxx16r0x6npbiv51wd4"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-tail"; - license = lib.licenses.free; - }; - }) {}; - helm-taskswitch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-taskswitch"; - ename = "helm-taskswitch"; - version = "20190304.614"; - src = fetchFromGitHub { - owner = "bdc34"; - repo = "helm-taskswitch"; - rev = "00fe3a1f535dc63ec8ad1a46739f08c27fc5087c"; - sha256 = "1y8nmh4aq450xqvc69zcr23gahzk3d6z4y0vpd73m0mys1rmvrng"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3602b1f7b9a75cc82c4bde9ea12b2509465db30f/recipes/helm-taskswitch"; - sha256 = "01yvdbwlixif670f4lffpsk9kvlhgrmh95jw0vc568x0bd3j2a02"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-taskswitch"; - license = lib.licenses.free; - }; - }) {}; - helm-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-themes"; - ename = "helm-themes"; - version = "20160917.2245"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-themes"; - rev = "1160af42590b0d845a55e65e1e782d9e4027fd6e"; - sha256 = "0856h8rnbgrxp3v3jpfmwq7kcdm1ymd4gcfvh0h27mk05113vz53"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-themes"; - sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-themes"; - license = lib.licenses.free; - }; - }) {}; - helm-tramp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-tramp"; - ename = "helm-tramp"; - version = "20190524.149"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-helm-tramp"; - rev = "af5bd50b955e385bc447080e720ffc85ed0b286b"; - sha256 = "0s6zasnk9kwpiw3446n0jn7xi5v6w7asdpzx5aqh85karrb7bbq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-tramp"; - sha256 = "0wqnabaywkhj1fnc3wpx7czrqbja1hsqwcpixmvv0fyrflmza517"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-tramp"; - license = lib.licenses.free; - }; - }) {}; - helm-unicode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-unicode"; - ename = "helm-unicode"; - version = "20180608.707"; - src = fetchFromGitHub { - owner = "bomgar"; - repo = "helm-unicode"; - rev = "b7092ed6a7191805651efae40947e4781c453211"; - sha256 = "15qn5xynah23dfz3mdw5jabv9qfs2hjdjgn3ifmqn3r6sgd8hcjn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f720b9f9b667bf9ff3080938beab36aa0036dc92/recipes/helm-unicode"; - sha256 = "1j95qy2zwdb46dl30ankfx7013l0akc61m14s473j93w320j5224"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-unicode"; - license = lib.licenses.free; - }; - }) {}; - helm-w32-launcher = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-w32-launcher"; - ename = "helm-w32-launcher"; - version = "20141223.1214"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "helm-w32-launcher"; - rev = "3e59ad62b89dd21d334af0203d445a83eb25dc5b"; - sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa678329a5081e1affa460c00239dabfd1b9dd82/recipes/helm-w32-launcher"; - sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-w32-launcher"; - license = lib.licenses.free; - }; - }) {}; - helm-w3m = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , w3m }: - melpaBuild { - pname = "helm-w3m"; - ename = "helm-w3m"; - version = "20181029.26"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-w3m"; - rev = "c15d926631198d6d759ec8881837bcca5a64963b"; - sha256 = "0qaqcwhwmckfmg3axiad35azn0l74k1niw4ix0v1bn2vqrxanqcw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f683fc9c7990e9ecb8a94808a7d03eb90c5569b1/recipes/helm-w3m"; - sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm w3m ]; - meta = { - homepage = "https://melpa.org/#/helm-w3m"; - license = lib.licenses.free; - }; - }) {}; - helm-wordnet = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-wordnet"; - ename = "helm-wordnet"; - version = "20160128.707"; - src = fetchFromGitHub { - owner = "raghavgautam"; - repo = "helm-wordnet"; - rev = "a36dbc6fcb570b812870bc1e190f203e0a0042fc"; - sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11626120951afc589beac4cf5a0f49bffa752349/recipes/helm-wordnet"; - sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-wordnet"; - license = lib.licenses.free; - }; - }) {}; - helm-xcdoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-xcdoc"; - ename = "helm-xcdoc"; - version = "20160116.218"; - src = fetchFromGitHub { - owner = "fujimisakari"; - repo = "emacs-helm-xcdoc"; - rev = "a85612149a6d8e18ab309b3db2d222ce39c42049"; - sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3352ce89039fb48827b74f22fcf543722a27738/recipes/helm-xcdoc"; - sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-xcdoc"; - license = lib.licenses.free; - }; - }) {}; - helm-xref = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-xref"; - ename = "helm-xref"; - version = "20190524.243"; - src = fetchFromGitHub { - owner = "brotzeit"; - repo = "helm-xref"; - rev = "d2744e6626fa40c9ef3c8537f858995e00f74e45"; - sha256 = "1nfir7b7zqf0bprlap03iy68dzcfzs8b5p1f6sywf6az3l1h3swc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/helm-xref"; - sha256 = "1wyh25gxqgsc151bv4j5l050z1cz0n3yq174m62ihi1fy1pkra4l"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-xref"; - license = lib.licenses.free; - }; - }) {}; - helm-youtube = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "helm-youtube"; - ename = "helm-youtube"; - version = "20190101.933"; - src = fetchFromGitHub { - owner = "maximus12793"; - repo = "helm-youtube"; - rev = "e7272f1648c7fa836ea5ac1a61770b4931ab4709"; - sha256 = "062i1gkwa1rmxaw5mf20vc3nqsj6g6hfbggcglgd3wfn9rckvlqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7537f732091b96b6c1b96c0174895278eba6776a/recipes/helm-youtube"; - sha256 = "1qal5q83p06ghn482rflcfklr17mir582r0mvchxabb5ql60dy0b"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm request ]; - meta = { - homepage = "https://melpa.org/#/helm-youtube"; - license = lib.licenses.free; - }; - }) {}; - helm-z = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-z"; - ename = "helm-z"; - version = "20171203.1925"; - src = fetchFromGitHub { - owner = "yynozk"; - repo = "helm-z"; - rev = "37212220bebea8b9c238cb1bbacd8332b7f26c03"; - sha256 = "1vz958yiva01yl1qj2pz84savcx8jgkvbywhcp4c3a8x3fikf0yl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48c9b83fff8fc428d9d1ecf0005d47f2adb8cb00/recipes/helm-z"; - sha256 = "1m268zsr4z7a9l5wj0i8qpimv0kyl8glgm0yb3f08959538nlmd1"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-z"; - license = lib.licenses.free; - }; - }) {}; - helm-zhihu-daily = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-zhihu-daily"; - ename = "helm-zhihu-daily"; - version = "20160625.445"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-zhihu-daily"; - rev = "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7"; - sha256 = "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27246ec2bad3c85f8bb76aa26ebcd800edfe0d70/recipes/helm-zhihu-daily"; - sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-zhihu-daily"; - license = lib.licenses.free; - }; - }) {}; - help-find-org-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "help-find-org-mode"; - ename = "help-find-org-mode"; - version = "20181203.1834"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "help-find-org-mode"; - rev = "c6fa2c8a8e9381572190010a9fa01f2be78f2790"; - sha256 = "1szjqaw31r5070wpbj5rcai124c66bs32x35w1hsxyvzs5k85wg9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/572003398d1bba572fa9f6332b25ade9306bf718/recipes/help-find-org-mode"; - sha256 = "149rd61bcvgrwhnhlqriw6fn6fr4pwr4ynmj2bwcp558nwf0py0b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/help-find-org-mode"; - license = lib.licenses.free; - }; - }) {}; - helpful = callPackage ({ dash - , dash-functional - , elisp-refs - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helpful"; - ename = "helpful"; - version = "20190528.1416"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "helpful"; - rev = "897feba75ded5c93dcfc3d950319cf19c03252db"; - sha256 = "1l5hgl7b3c23kwxd1b99wn8b545l3szjc0c72643wnd86i91m557"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful"; - sha256 = "17w9j5v1r2c8ka1fpzbr295cgnsbiw8fxlslh4zbjqzaazamchn2"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional elisp-refs emacs f s ]; - meta = { - homepage = "https://melpa.org/#/helpful"; - license = lib.licenses.free; - }; - }) {}; - hemera-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hemera-theme"; - ename = "hemera-theme"; - version = "20180916.224"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "emacs-hemera-theme"; - rev = "b67c902b210b37b00cac68726822404543147ba8"; - sha256 = "1q31kz5p97pby26lyb6r0jfcx5pdyax3sfba4lp8dzmxpisz2g2p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/hemera-theme"; - sha256 = "00d8dmmn7mhzj6ai0qgdkj4hy1qpdcyiriky97prydibjvljq239"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hemera-theme"; - license = lib.licenses.free; - }; - }) {}; - hemisu-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hemisu-theme"; - ename = "hemisu-theme"; - version = "20130508.1144"; - src = fetchFromGitHub { - owner = "andrzejsliwa"; - repo = "hemisu-theme"; - rev = "ae593ac58e6bffef97467259c1d1472840385e84"; - sha256 = "0vjc6aalwplz9sm9nqca7d07ypijjp366vdzg7gqyfzsvdhr1s0v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb4dd85ccbd2c8936e59ca5c5e6234290b8bdf1b/recipes/hemisu-theme"; - sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hemisu-theme"; - license = lib.licenses.free; - }; - }) {}; - heroku = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "heroku"; - ename = "heroku"; - version = "20120629.1113"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "heroku.el"; - rev = "92af1c073b593c4def99c8777c869992aa4d0b3a"; - sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/heroku"; - sha256 = "1wavsymviybfcmwdfrffbkdwbiydggx55jqg6ql79wf9bx7agacp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/heroku"; - license = lib.licenses.free; - }; - }) {}; - heroku-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "heroku-theme"; - ename = "heroku-theme"; - version = "20150522.1919"; - src = fetchFromGitHub { - owner = "jonathanchu"; - repo = "heroku-theme"; - rev = "7c1e80f8b5087c37008fec687070344638cd4752"; - sha256 = "05h4q7gykh18v9pn9zjhgrzjwbn21z58a2mrifmis3bpwa5zypvd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/348f0e7aec86c3efd87ab06849a5f1ce90ba23e2/recipes/heroku-theme"; - sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/heroku-theme"; - license = lib.licenses.free; - }; - }) {}; - hexo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hexo"; - ename = "hexo"; - version = "20180814.1919"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "hexo.el"; - rev = "6bca18f911f6b2cd5c055ed73ddec98c385f9f86"; - sha256 = "1zawz3nry832rhx80hyfqfs0gfw3hyrn96060zj3n75avx13rr8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/21de1b7db0fa4af4fc0014207d41893a0713d738/recipes/hexo"; - sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hexo"; - license = lib.licenses.free; - }; - }) {}; - hfst-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hfst-mode"; - ename = "hfst-mode"; - version = "20160708.502"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "hfst-mode"; - rev = "ac1bb9dd92545d3e7fdc05c83996c227cc15c6b8"; - sha256 = "0zsz8542kh51clzy8j7g29bwm8zcnfxm9sjzh3xjpqk2ziqf4ii6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e324bb114997f9cc57d76d8a66fec4ff4d1d71fe/recipes/hfst-mode"; - sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hfst-mode"; - license = lib.licenses.free; - }; - }) {}; - hgignore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hgignore-mode"; - ename = "hgignore-mode"; - version = "20160430.1707"; - src = fetchFromGitHub { - owner = "omajid"; - repo = "hgignore-mode"; - rev = "7aa9f3b8a9c610dbd80b952061b40194e1d9c5bd"; - sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3e325c84d0a30789fab7e897b4fe5040c5093ba/recipes/hgignore-mode"; - sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hgignore-mode"; - license = lib.licenses.free; - }; - }) {}; - hgrc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hgrc-mode"; - ename = "hgrc-mode"; - version = "20150409.1343"; - src = fetchFromGitHub { - owner = "omajid"; - repo = "hgrc-mode"; - rev = "314e8320b82cc1ce74b1bd372f296252e7a23090"; - sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31a24d95efce2f04f0b555ed16b8d3d5a3aa255a/recipes/hgrc-mode"; - sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hgrc-mode"; - license = lib.licenses.free; - }; - }) {}; - hi2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hi2"; - ename = "hi2"; - version = "20141005.1231"; - src = fetchFromGitHub { - owner = "nilcons"; - repo = "hi2"; - rev = "c9d199727b5cdcb9e36a972b38131ce4611fd6c8"; - sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba880f0130707098e5b648f74d14e151b0110e4e/recipes/hi2"; - sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hi2"; - license = lib.licenses.free; - }; - }) {}; - hide-lines = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hide-lines"; - ename = "hide-lines"; - version = "20151127.1040"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "hide-lines"; - rev = "331122bf19361130351cfe55968c2a7820329eb3"; - sha256 = "183l0sx8zn3jv1fqa3xj7a6fd792sp50jyhm50j3hy7c54m4capf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/hide-lines"; - sha256 = "18h5ygi6idpb5wjlmjjvjmwcw7xiljkfxdvq7pm8wnw75p705x4d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hide-lines"; - license = lib.licenses.free; - }; - }) {}; - hide-mode-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hide-mode-line"; - ename = "hide-mode-line"; - version = "20180302.1110"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-hide-mode-line"; - rev = "86b9057391edad75467261c2e579603567e608f9"; - sha256 = "0qmjmwhmlm008r22n2mv7lir4v1lpfz1c3yvqlwjgv0glbyvqd88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2af28365f9fbc6ae71043a67966490c5d18a6095/recipes/hide-mode-line"; - sha256 = "0yl6aicpib5h1ckqi3gyilh2nwvp8gf1017n1w1755j01gw1p9hl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hide-mode-line"; - license = lib.licenses.free; - }; - }) {}; - hideshow-org = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hideshow-org"; - ename = "hideshow-org"; - version = "20120223.1450"; - src = fetchFromGitHub { - owner = "shanecelis"; - repo = "hideshow-org"; - rev = "16419e52e6cdd2f46f755144c0ab11ce00d1a626"; - sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3de48eee24a5cca9c8b7dba2d6d01dfbc679d8d6/recipes/hideshow-org"; - sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hideshow-org"; - license = lib.licenses.free; - }; - }) {}; - hierarchy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hierarchy"; - ename = "hierarchy"; - version = "20190425.142"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "hierarchy"; - rev = "a5bc6bf2e1bbd48cc17c508043134f24abb41944"; - sha256 = "18y5xj8j07hca7qk5ygxqpiybv58qf4c85hqw52a59fkn0vvdbhg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7aea238a2d14e9f58c0474251984b6c617b6854d/recipes/hierarchy"; - sha256 = "0fh1a590pdq21b4mwh9wrfsmm2lw2faw18r35cdzy8fgyf89yimp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hierarchy"; - license = lib.licenses.free; - }; - }) {}; - highlight = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight"; - ename = "highlight"; - version = "20181002.451"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/highlight.el.git"; - rev = "ea733e17884aeae19172407e20559fc693fdd3a7"; - sha256 = "13ajbhpwvdmk0mzaffj45gxqmq13b57d81iqdpg9q2l2wjk95jq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/highlight"; - sha256 = "11icn6f46synw6xvs2a266g43fvpnz8i7d7dyr0iywzjpbpyhsd2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight"; - license = lib.licenses.free; - }; - }) {}; - highlight-blocks = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-blocks"; - ename = "highlight-blocks"; - version = "20190318.857"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-blocks"; - rev = "33cf3d36662faa36c86c8d53e4d5a3922efa3eb8"; - sha256 = "04v5y04v4n06ig8zld6axrxpz07s70sn5ckxcy8gnz5qm0zvr7mx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaf524488c408483ea8f2c3a71174b1b5fc3f5da/recipes/highlight-blocks"; - sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-blocks"; - license = lib.licenses.free; - }; - }) {}; - highlight-context-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-context-line"; - ename = "highlight-context-line"; - version = "20181122.1403"; - src = fetchFromGitHub { - owner = "ska2342"; - repo = "highlight-context-line"; - rev = "c3257c0ca9dba76167bbd7e0718a65ecd26ef26f"; - sha256 = "10mv1hd33msafp3r62p9zhwivy0l876ci9xjh7nqc9621qxxd5rw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00df721571ff67fe158251fa843c8f515ded3469/recipes/highlight-context-line"; - sha256 = "0zmqcfsr2j0m2l76c8h6lmdqwrd1b38gi6yp5sdib0m4vj9d0pnd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-context-line"; - license = lib.licenses.free; - }; - }) {}; - highlight-defined = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-defined"; - ename = "highlight-defined"; - version = "20181106.918"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-defined"; - rev = "8e05be23e555ab05edc6fb188f5ce28ef495c946"; - sha256 = "1xqs8shzka47ns4a60ba2i2kgjcq9vl9w1518ffhb4x2x41lr4ri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/highlight-defined"; - sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-defined"; - license = lib.licenses.free; - }; - }) {}; - highlight-doxygen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-doxygen"; - ename = "highlight-doxygen"; - version = "20180829.1118"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "highlight-doxygen"; - rev = "53f2250018725fa19548e1771ee79fcc23641694"; - sha256 = "0l6zh5cmp771h30i16bv3qvcq40pz9fxn3j7a8yx708vanb4d7kc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0153353e5abfa7513e74485049eaa384aaddbd58/recipes/highlight-doxygen"; - sha256 = "0jkzf2mqn7y465c77vglaj3mr0cpfy2z810mywd1q21d71lsqmbl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-doxygen"; - license = lib.licenses.free; - }; - }) {}; - highlight-escape-sequences = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-escape-sequences"; - ename = "highlight-escape-sequences"; - version = "20171117.437"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "highlight-escape-sequences"; - rev = "08d846a7aa748209d65fecead2b6a766c3e5cb41"; - sha256 = "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd087f2c5a9524986b0f2c7fd7efd1f296363101/recipes/highlight-escape-sequences"; - sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-escape-sequences"; - license = lib.licenses.free; - }; - }) {}; - highlight-function-calls = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-function-calls"; - ename = "highlight-function-calls"; - version = "20170907.2200"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "highlight-function-calls"; - rev = "f7a1eaf95fc64cc0db4d0567f9ff79ec4ae04787"; - sha256 = "1gbj1awjp69352a5p49ldimvij5mj8cngjp2sh45qw1cm5dpq653"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d1eed3f9af218d21ea8db37ee91888e23e59bd5/recipes/highlight-function-calls"; - sha256 = "0wmxijkhx74da3ygnvzsdvbh2iii4f7424wmm01b5skbr7qva690"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-function-calls"; - license = lib.licenses.free; - }; - }) {}; - highlight-indent-guides = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-indent-guides"; - ename = "highlight-indent-guides"; - version = "20190107.1603"; - src = fetchFromGitHub { - owner = "DarthFennec"; - repo = "highlight-indent-guides"; - rev = "0b10f38c54ffc099861ce8463e16a1b07ddbb203"; - sha256 = "0fa41y9gdci60417zksj9bgjx1knwh781i3dfphkgr7qbx25iky7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8acca65a5c134d4405900a43b422c4f4e18b586/recipes/highlight-indent-guides"; - sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-indent-guides"; - license = lib.licenses.free; - }; - }) {}; - highlight-indentation = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-indentation"; - ename = "highlight-indentation"; - version = "20181204.39"; - src = fetchFromGitHub { - owner = "antonj"; - repo = "Highlight-Indentation-for-Emacs"; - rev = "d03803f2c06749c430443a3d24e039cbafc9c58f"; - sha256 = "1jq0gf4kcx9hvrw40rnw5c2qynjpjw1vsjbi2i4lqjbsnfnxn4wz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c443de5088410c0fe1b1c18f664b33ad259277/recipes/highlight-indentation"; - sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-indentation"; - license = lib.licenses.free; - }; - }) {}; - highlight-leading-spaces = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-leading-spaces"; - ename = "highlight-leading-spaces"; - version = "20151216.422"; - src = fetchFromGitHub { - owner = "mrBliss"; - repo = "highlight-leading-spaces"; - rev = "840db19d863dd97993fd9f893f5be501627b6354"; - sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74a4af76be764896cef169e24994630498cf19c1/recipes/highlight-leading-spaces"; - sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-leading-spaces"; - license = lib.licenses.free; - }; - }) {}; - highlight-numbers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parent-mode }: - melpaBuild { - pname = "highlight-numbers"; - ename = "highlight-numbers"; - version = "20181013.1044"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-numbers"; - rev = "8b4744c7f46c72b1d3d599d4fb75ef8183dee307"; - sha256 = "075ip8h7bdin0yvvhn5nkwnz58arlaw1imr866ghp12q5rl4shmc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/882e3a4877ddd22cc52f56f0ce3d55b6e4831c7a/recipes/highlight-numbers"; - sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; - name = "recipe"; - }; - packageRequires = [ emacs parent-mode ]; - meta = { - homepage = "https://melpa.org/#/highlight-numbers"; - license = lib.licenses.free; - }; - }) {}; - highlight-operators = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-operators"; - ename = "highlight-operators"; - version = "20170213.1420"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/highlight-operators"; - rev = "3938e88e78c5"; - sha256 = "1h5whrc1iphzq0g8x9mmkhjkbmbdg9i9bvr1y8zrwrs8za8k127y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7bd74b7a3484e437c6db4f18613744ebae030f5/recipes/highlight-operators"; - sha256 = "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-operators"; - license = lib.licenses.free; - }; - }) {}; - highlight-parentheses = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-parentheses"; - ename = "highlight-parentheses"; - version = "20180704.402"; - src = fetchFromGitHub { - owner = "tsdh"; - repo = "highlight-parentheses.el"; - rev = "f0bd58c8dadd2db703b7bfd09e911b5fda05b3df"; - sha256 = "14jzh0vr2sig2ql1iq2x7svvk8ayvy9ahz04y407f53h70ifbmdl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/highlight-parentheses"; - sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-parentheses"; - license = lib.licenses.free; - }; - }) {}; - highlight-quoted = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-quoted"; - ename = "highlight-quoted"; - version = "20140916.1122"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-quoted"; - rev = "ec9108486cf7f21f9a0b13f81369849b3b525f1f"; - sha256 = "0vqkadhzszlxiqb4ysr7p86hhmi4z1j95llxa680xn6md8x2sj8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93b5ba18e4bc31ca60aee9cb4674586cd8523bcf/recipes/highlight-quoted"; - sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-quoted"; - license = lib.licenses.free; - }; - }) {}; - highlight-refontification = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-refontification"; - ename = "highlight-refontification"; - version = "20170211.1224"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "highlight-refontification"; - rev = "32632897d88c4611fadb08517ca00ef5cbc989b6"; - sha256 = "1k6af947h70ivkj31mk3nv2vkxlfpqvpwq8za53n2l7adsjdlf73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c59f2b5cf1594248e8365b6ce3324f493c5647/recipes/highlight-refontification"; - sha256 = "0cm9p4d7yhkz5a88m0y4646a6b9lb2ha7q12fcrdikyckpmbkqss"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-refontification"; - license = lib.licenses.free; - }; - }) {}; - highlight-stages = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-stages"; - ename = "highlight-stages"; - version = "20161212.657"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "highlight-stages"; - rev = "87c476f8ca0474912af41680a8de243c0c8d5b46"; - sha256 = "1s7hxv4vpbrpk4makdjn3589flddgfy35scyd3kac629fbqiiz79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46884aa6588f55d6f688477a5e9f528f57673131/recipes/highlight-stages"; - sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-stages"; - license = lib.licenses.free; - }; - }) {}; - highlight-symbol = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-symbol"; - ename = "highlight-symbol"; - version = "20160102.1209"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "highlight-symbol.el"; - rev = "7a789c779648c55b16e43278e51be5898c121b3a"; - sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/highlight-symbol"; - sha256 = "01zw7xrkpgc89m55d60dx3s3kjajh5c164f64s2fzrgl9xj92h0r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-symbol"; - license = lib.licenses.free; - }; - }) {}; - highlight-thing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-thing"; - ename = "highlight-thing"; - version = "20181229.501"; - src = fetchFromGitHub { - owner = "fgeller"; - repo = "highlight-thing.el"; - rev = "361a3301ba37663c8e27ba75d2743a2501f4b8b9"; - sha256 = "07ywg6idbwm91wbzpdp57w3n84pbbjyzmf5gp3m7qvm2h0xxv9av"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84b6cb403ff9a588771d051e472596f4e3cc974d/recipes/highlight-thing"; - sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-thing"; - license = lib.licenses.free; - }; - }) {}; - highlight-unique-symbol = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-unique-symbol"; - ename = "highlight-unique-symbol"; - version = "20130611.2242"; - src = fetchFromGitHub { - owner = "hitode909"; - repo = "emacs-highlight-unique-symbol"; - rev = "d760015b4a5ce31d6da5a30890b599a8e1312be5"; - sha256 = "1sib511n4plbipl4mgjq6vshf03q4h50kga7lyj1qrwf32yxxf10"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78b7caccef56cd2f1a9d8001417af52cc06d6573/recipes/highlight-unique-symbol"; - sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx"; - name = "recipe"; - }; - packageRequires = [ deferred ]; - meta = { - homepage = "https://melpa.org/#/highlight-unique-symbol"; - license = lib.licenses.free; - }; - }) {}; - highlight2clipboard = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight2clipboard"; - ename = "highlight2clipboard"; - version = "20151020.1140"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "highlight2clipboard"; - rev = "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15"; - sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87afa08061dc406528e7666cd4ee16995839b2d9/recipes/highlight2clipboard"; - sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0"; - name = "recipe"; - }; - packageRequires = [ htmlize ]; - meta = { - homepage = "https://melpa.org/#/highlight2clipboard"; - license = lib.licenses.free; - }; - }) {}; - hindent = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hindent"; - ename = "hindent"; - version = "20180518.202"; - src = fetchFromGitHub { - owner = "commercialhaskell"; - repo = "hindent"; - rev = "dc47d8b98ebd6ee7fdd7de5f75e65e5b5eedf72f"; - sha256 = "0xp3mpiyrc6886bi9rih4vbmsar56h8i5sapigd3gn2pv2v688bc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/hindent"; - sha256 = "0az2zhdi73sa3h1q1c0bayqdk22a7ngrvsg9fr8b0i39sn3w8y07"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/hindent"; - license = lib.licenses.free; - }; - }) {}; - hippie-exp-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hippie-exp-ext"; - ename = "hippie-exp-ext"; - version = "20160502.1626"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "hippie-exp-ext"; - rev = "4eda13f90da51ab217d024701f4c30f91ffcb90e"; - sha256 = "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/hippie-exp-ext"; - sha256 = "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hippie-exp-ext"; - license = lib.licenses.free; - }; - }) {}; - hippie-expand-slime = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hippie-expand-slime"; - ename = "hippie-expand-slime"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "hippie-expand-slime"; - rev = "39bbae94896a62854d31754debdfae71d35fec62"; - sha256 = "1l2j5k4jk8jpm1vdf0z5zwa287859afsgd3gda778sdsiy38l6r7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hippie-expand-slime"; - sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hippie-expand-slime"; - license = lib.licenses.free; - }; - }) {}; - hippie-namespace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hippie-namespace"; - ename = "hippie-namespace"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "hippie-namespace"; - rev = "107d927634032062483e83c6de9b7698b64809d1"; - sha256 = "0lyw9llblicc9fs1y6n5l5wsh7va5dzm684q0n48aaqy3d1kvdpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/hippie-namespace"; - sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hippie-namespace"; - license = lib.licenses.free; - }; - }) {}; - historian = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "historian"; - ename = "historian"; - version = "20190110.1913"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "historian.el"; - rev = "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a"; - sha256 = "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f16dacf64c52767c0c8aef653ac5d1a7a3bd0883/recipes/historian"; - sha256 = "00cghcyb3liz2prgygjwsw82d9h70zjddnbf7dvglmj7ph9wn9ab"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/historian"; - license = lib.licenses.free; - }; - }) {}; - history = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "history"; - ename = "history"; - version = "20160821.902"; - src = fetchFromGitHub { - owner = "boyw165"; - repo = "history"; - rev = "5317663fb45bbd5e96d258cb0807dcc266ce67ff"; - sha256 = "1ghbpfmmp5p0wvivd79165dx5kia8qkmac3a6asg2d6l1h9y58n1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f51d4cc6521546c99197adeb35459fcd53bd67d4/recipes/history"; - sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/history"; - license = lib.licenses.free; - }; - }) {}; - historyf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "historyf"; - ename = "historyf"; - version = "20151123.1759"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-historyf"; - rev = "64ab6c9d2cd6dec6982622bf675326e011373cd2"; - sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a67279875c19475433fa13625c95ee5855962a59/recipes/historyf"; - sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/historyf"; - license = lib.licenses.free; - }; - }) {}; - hive = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sql ? null }: - melpaBuild { - pname = "hive"; - ename = "hive"; - version = "20131217.712"; - src = fetchFromGitHub { - owner = "r0man"; - repo = "hive-el"; - rev = "131f2816a0cf4d1fee44198ca305e6e2d1cab750"; - sha256 = "1hz1j1jv86k80g8safyy7h40j94xhczxmq6kz70cb1czn5df0zlh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b167265dff60950823a5e98a299462b2b535b9a9/recipes/hive"; - sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya"; - name = "recipe"; - }; - packageRequires = [ sql ]; - meta = { - homepage = "https://melpa.org/#/hive"; - license = lib.licenses.free; - }; - }) {}; - hiwin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hiwin"; - ename = "hiwin"; - version = "20150825.127"; - src = fetchFromGitHub { - owner = "yoshida-mediba"; - repo = "hiwin-mode"; - rev = "6ee8ed051405653bd9b7332d7e9fbb591d954051"; - sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f050fd2b1038dce05a1302d3670933546f86525/recipes/hiwin"; - sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hiwin"; - license = lib.licenses.free; - }; - }) {}; - hl-anything = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-anything"; - ename = "hl-anything"; - version = "20160422.1008"; - src = fetchFromGitHub { - owner = "hl-anything"; - repo = "hl-anything-emacs"; - rev = "c2e50f91a05d6c43e8a1c169f709cd1f23e47b0a"; - sha256 = "1i93zh2ivm1xd6f13wp9fidn94rjnlx89xcgkz95lpiv90icqm3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f38d26ede4e2e1d495a02c68e3b5041702b032e8/recipes/hl-anything"; - sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-anything"; - license = lib.licenses.free; - }; - }) {}; - hl-block-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-block-mode"; - ename = "hl-block-mode"; - version = "20190519.1730"; - src = fetchFromGitHub { - owner = "ideasman42"; - repo = "emacs-hl-block-mode"; - rev = "3bd2b55a629cb687def06f950639382b2d960ce0"; - sha256 = "0pjhf4kzhf639pbm0fpf4sa1jsgd8sk1d4kwylnbvc82n1v03y3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2fbba8cc73a5d567b525ce2c0a15f35379f29e8/recipes/hl-block-mode"; - sha256 = "16z49k1rn8n1f64fidff0jyhn3h4pmklys9plr96nbd4lvm80msj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-block-mode"; - license = lib.licenses.free; - }; - }) {}; - hl-fill-column = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "hl-fill-column"; - ename = "hl-fill-column"; - version = "20190605.721"; - src = fetchFromGitHub { - owner = "laishulu"; - repo = "hl-fill-column"; - rev = "c96eb14298afa85e9eca84b9c148c3d0c2b270f0"; - sha256 = "1cs3ibsn77xwyj53rwpg3vyc7c5h76jfy4j1cbjq6iczzh8kndmi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68c40d7b6af664e01083b78c60b6a8e66b278a4e/recipes/hl-fill-column"; - sha256 = "1kv77zfz1rd60cajjgljn8b04j6szqwwc3ialfxf6wdzh1w28jd3"; - name = "recipe"; - }; - packageRequires = [ emacs names ]; - meta = { - homepage = "https://melpa.org/#/hl-fill-column"; - license = lib.licenses.free; - }; - }) {}; - hl-indent = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-indent"; - ename = "hl-indent"; - version = "20170429.1404"; - src = fetchFromGitHub { - owner = "ikirill"; - repo = "hl-indent"; - rev = "bdb2e0177a7c8b29af26998e688b856adc6ded93"; - sha256 = "0fwb64ja5ij97308pnd7g6l5mascavcp7jcar8igxv9yyqnw6pfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3aa6ce8f3d1349e28dd9dea8396c38257e3cea2f/recipes/hl-indent"; - sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-indent"; - license = lib.licenses.free; - }; - }) {}; - hl-sentence = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-sentence"; - ename = "hl-sentence"; - version = "20171018.819"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "hl-sentence"; - rev = "86ae38d3103bd20da5485cbdd59dfbd396c45ee4"; - sha256 = "1rzc74ckj06qs8kq2bd1cgqvgjd2qc3zxmk7bvgg6dy2m9nj52cm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hl-sentence"; - sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hl-sentence"; - license = lib.licenses.free; - }; - }) {}; - hl-todo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-todo"; - ename = "hl-todo"; - version = "20190415.1600"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "hl-todo"; - rev = "487d349b7b8d6738223d5dd10957dd10b45eb9f3"; - sha256 = "07xcc04ivpl5sbgb55qz84mz6wa500h0awzw1zq1ba5mfjjq8hls"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo"; - sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-todo"; - license = lib.licenses.free; - }; - }) {}; - hledger-mode = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "hledger-mode"; - ename = "hledger-mode"; - version = "20190222.801"; - src = fetchFromGitHub { - owner = "narendraj9"; - repo = "hledger-mode"; - rev = "096fdbded583ee1d99719633222baa46231d85f6"; - sha256 = "1zf9d2z53c8n2mral05l55bd28y8xvrixvz4k2dw6zckxlhnfmiv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/hledger-mode"; - sha256 = "15s8rqc94z70jzv13961nvcm9a9qadq04pf0m6xrzf8qqk71zn52"; - name = "recipe"; - }; - packageRequires = [ async emacs htmlize popup ]; - meta = { - homepage = "https://melpa.org/#/hledger-mode"; - license = lib.licenses.free; - }; - }) {}; - hlint-refactor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hlint-refactor"; - ename = "hlint-refactor"; - version = "20190115.100"; - src = fetchFromGitHub { - owner = "mpickering"; - repo = "hlint-refactor-mode"; - rev = "c4307f86aad6d02e32e9b30cb6edc115584c791c"; - sha256 = "1c71w9s34n0i7mm4njchxn6s3ri1y6mh3akgbg4nq41d42h8iap3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/384ffc463cc6edb4806f8da68bd251e662718e65/recipes/hlint-refactor"; - sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hlint-refactor"; - license = lib.licenses.free; - }; - }) {}; - hlinum = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hlinum"; - ename = "hlinum"; - version = "20180421.2112"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "hlinum-mode"; - rev = "f17360fe93de6df99a05b4b64b0a1ca4ee45abb6"; - sha256 = "01sfba4sd3mjc7bs1y4qdzryfawg1xzg3hbwy9afwfaz0w5czni8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41bca7b89a7ce52d4c9381b9a4046b7103996c4f/recipes/hlinum"; - sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/hlinum"; - license = lib.licenses.free; - }; - }) {}; - hmac = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hmac"; - ename = "hmac"; - version = "20180429.1310"; - src = fetchFromGitHub { - owner = "grimnebulin"; - repo = "emacs-hmac"; - rev = "30132cd3fee7d3d91a9f04709d49ca0dcb96d565"; - sha256 = "0l4msj1i8amcn10dk1shcyh6hn49iphma1q03kp2h84ga79xdpi3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cabf363dbdfc87f29ab3dcf63bfe39b9e0920f7/recipes/hmac"; - sha256 = "0am8pbjwf43nvhqa2mppdgiyd7kil7jxnaq7hhi5214bsrqgxk31"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/hmac"; - license = lib.licenses.free; - }; - }) {}; - hoa-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hoa-mode"; - ename = "hoa-mode"; - version = "20151203.850"; - src = fetchgit { - url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git"; - rev = "3c608e15b655d2375c5f81323ac561c7848dc029"; - sha256 = "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8b91f35d06f9e7e17c9aaf2fb9ee43a77257113/recipes/hoa-mode"; - sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hoa-mode"; - license = lib.licenses.free; - }; - }) {}; - hoa-pp-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "hoa-pp-mode"; - ename = "hoa-pp-mode"; - version = "20151027.36"; - src = fetchFromGitHub { - owner = "hoaproject"; - repo = "Contributions-Emacs-Pp"; - rev = "a72104a191214fba502653643a0d166a8f5341d9"; - sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0d707dad9dc86bb3d6a829a60e21e92a5f3160/recipes/hoa-pp-mode"; - sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; - name = "recipe"; - }; - packageRequires = [ emacs names ]; - meta = { - homepage = "https://melpa.org/#/hoa-pp-mode"; - license = lib.licenses.free; - }; - }) {}; - holiday-pascha-etc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "holiday-pascha-etc"; - ename = "holiday-pascha-etc"; - version = "20160821.1758"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "holiday-pascha-etc"; - rev = "eb198656f63cb8679fb0e3a8248782df071a0f3c"; - sha256 = "1dd0k7r5kx15sph12vzakhq27zh7vy9r541qdp8w5051k6apw3pw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4108926b1fee78e54c9fa68445c7a2b1b20404ea/recipes/holiday-pascha-etc"; - sha256 = "0v2mhga1db6qy1160i730pzzrzisvhl3fjkazj4cjbkpjlshfc5j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/holiday-pascha-etc"; - license = lib.licenses.free; - }; - }) {}; - home-end = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , keypress-multi-event - , lib - , melpaBuild }: - melpaBuild { - pname = "home-end"; - ename = "home-end"; - version = "20180817.155"; - src = fetchFromGitHub { - owner = "Boruch-Baum"; - repo = "emacs-home-end"; - rev = "211914c5e7b25f35f02626575a9b10536f81ba1d"; - sha256 = "1ppjm0sb4svarnqcv6j581sqnjjsps27ghx63759v9wkylqyi995"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f67c9cf33e0f11a9bd6e1521af86d180177111c4/recipes/home-end"; - sha256 = "0xnpb0n4kd7b0m80g2a88ylfk5gbvkcgwb78nig98dmgjg48z2ly"; - name = "recipe"; - }; - packageRequires = [ emacs keypress-multi-event ]; - meta = { - homepage = "https://melpa.org/#/home-end"; - license = lib.licenses.free; - }; - }) {}; - homebrew-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "homebrew-mode"; - ename = "homebrew-mode"; - version = "20160615.620"; - src = fetchFromGitHub { - owner = "dunn"; - repo = "homebrew-mode"; - rev = "d422307aee2f897d1a92e3b959c3214bc54cbe38"; - sha256 = "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e4007f6d15574098722fb427b6a9903f77afb21/recipes/homebrew-mode"; - sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; - name = "recipe"; - }; - packageRequires = [ dash emacs inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/homebrew-mode"; - license = lib.licenses.free; - }; - }) {}; - honcho = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sudo-edit }: - melpaBuild { - pname = "honcho"; - ename = "honcho"; - version = "20180706.1724"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "honcho.el"; - rev = "f6a89a27e255b3ecb1f0b13058933558b1f0c6fb"; - sha256 = "06q0rw1vc3h1jd7q544csqn6mkfzcqmdlcr7pcrs7y2jsgb01k4s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76487b6776d148325c0200d2f788815f115feac9/recipes/honcho"; - sha256 = "1ywx67dmvackfx19p4fvrb8mm27a7pri3m3bwr2acwd29lrrid2x"; - name = "recipe"; - }; - 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"; - ename = "hookify"; - version = "20141216.1409"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "hookify"; - rev = "e76127230716f7fab6662410c03c3872d17a172b"; - sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa04ccd0ac05beed5de8d51ed96ccbf0071fdea1/recipes/hookify"; - sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/hookify"; - license = lib.licenses.free; - }; - }) {}; - horoscope = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "horoscope"; - ename = "horoscope"; - version = "20180408.2341"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "horoscope.el"; - rev = "f4c683e991adce0a8f9023f15050f306f9b9a9ed"; - sha256 = "17k4j4q19l4ahxlzzic1jlbbh7l378j9vgnrcrvpm0lxa9ipclk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/180248c19160940a208b32fa7a9660a838f68de5/recipes/horoscope"; - sha256 = "1y2nzhdl7ghi5l3iyzb04xics7gr5981jmb5z5y8y1z04xhqpfs6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/horoscope"; - license = lib.licenses.free; - }; - }) {}; - hound = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "hound"; - ename = "hound"; - version = "20170627.1259"; - src = fetchFromGitHub { - owner = "ryoung786"; - repo = "hound.el"; - rev = "0c5a250ef82870dca737a429b6e9b9db93874ed3"; - sha256 = "0kf2nhp5k3gk82ad1k9qi4aysqhw36x4mcdhg6kjckmcakfjw3g6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90cfc34eb4e8be7bf887533b85feba91131a435b/recipes/hound"; - sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; - name = "recipe"; - }; - packageRequires = [ cl-lib request ]; - meta = { - homepage = "https://melpa.org/#/hound"; - license = lib.licenses.free; - }; - }) {}; - howdoi = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "howdoi"; - ename = "howdoi"; - version = "20150203.1643"; - src = fetchFromGitHub { - owner = "atykhonov"; - repo = "emacs-howdoi"; - rev = "5fbf7069ee160c597a328e5ce5fb32920e1ca88f"; - sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d08f4d6c8bdf16f47d2474f92273fd214179cb18/recipes/howdoi"; - sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/howdoi"; - license = lib.licenses.free; - }; - }) {}; - howm = callPackage ({ cl-lib ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "howm"; - ename = "howm"; - version = "20180929.514"; - src = fetchgit { - url = "https://scm.osdn.net/gitroot/howm/howm.git"; - rev = "f707233a99f425d67ddb86b197edeaa3f03a280d"; - sha256 = "1k1fv6yyydxcv8rm5f3cyly0fl0vmxgqxdk9wnakabcb14d32ws4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0099a1f9b0efb3fc3a1420cfe71a647ec6458998/recipes/howm"; - sha256 = "07wx3wmc51vm42s81km5sdbm600ax2pv83xg0116xsyn05za3bfn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/howm"; - license = lib.licenses.free; - }; - }) {}; - hsluv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "hsluv"; - ename = "hsluv"; - version = "20181127.406"; - src = fetchFromGitHub { - owner = "hsluv"; - repo = "hsluv-emacs"; - rev = "bc6e27d25b62f5a2f79836a32e8de6125f4d1564"; - sha256 = "08jkba7z0w1ma9j2y93aic3sbgnzxyyiradk69qylnl60q4xnx19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b74189f827ed54760c758f0364e573809ab32a22/recipes/hsluv"; - sha256 = "1g7g8434q2a4vpzxa4y5vrplzjali89px3gr8vhzfhscxg6mdcki"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/hsluv"; - license = lib.licenses.free; - }; - }) {}; - ht = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ht"; - ename = "ht"; - version = "20190404.502"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "ht.el"; - rev = "095fde55294bd20dc7f46d614e1b0504e3830cfa"; - sha256 = "1kfxcvrn8z87g99cihpkzriylzivnvf25ffqpyb9f2f0ri7xk1y5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c7589bca1c1dfcc0fe76779f6847fda946ab981/recipes/ht"; - sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ht"; - license = lib.licenses.free; - }; - }) {}; - html-check-frag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "html-check-frag"; - ename = "html-check-frag"; - version = "20160130.2135"; - src = fetchFromGitHub { - owner = "TobiasZawada"; - repo = "html-check-frag"; - rev = "feb89765eafd69dfcf07afeebded8985dc456e7c"; - sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a53c9877f6f4c4e72c565fb8bd7cbe81ddbc565c/recipes/html-check-frag"; - sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/html-check-frag"; - license = lib.licenses.free; - }; - }) {}; - html-script-src = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "html-script-src"; - ename = "html-script-src"; - version = "20120403.1115"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "html-script-src.el"; - rev = "0efeed7ab948e48128e6f1a7ddff17ef2951e1c2"; - sha256 = "11zffiy5s0zqwi8hxwa87j2k8n2lm54v8knnbwa5zafhqpb53znm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/html-script-src"; - sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/html-script-src"; - license = lib.licenses.free; - }; - }) {}; - html-to-hiccup = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "html-to-hiccup"; - ename = "html-to-hiccup"; - version = "20161028.701"; - src = fetchFromGitHub { - owner = "plexus"; - repo = "html-to-hiccup"; - rev = "99217a5058626d253ed8ada51a7642071fe54ba5"; - sha256 = "1cvlh1iqjdmgwbw254g0rfdshsj7dhqjjp56gwqhn2fqkga44a7i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/html-to-hiccup"; - sha256 = "0gyghgdil14i4p0yv5mb6la1ajzf8xcgdm1si5i5w7cn72vfapmz"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/html-to-hiccup"; - license = lib.licenses.free; - }; - }) {}; - html-to-markdown = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "html-to-markdown"; - ename = "html-to-markdown"; - version = "20151105.40"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "html-to-markdown"; - rev = "60c5498c801be186478cf7c05be05b4430c4a144"; - sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/html-to-markdown"; - sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/html-to-markdown"; - license = lib.licenses.free; - }; - }) {}; - html2org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "html2org"; - ename = "html2org"; - version = "20170417.2201"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "html2org.el"; - rev = "6904aed40259ad8afccff079ebd8a07bff319ebc"; - sha256 = "0dryk622fz0yj939pbs0fbb9i4m8qjnmkcxjsssws8f90plk06af"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/771e6604edc90182697bbd4827c8c46c34b48289/recipes/html2org"; - sha256 = "1lj4dwmjkc43dfmsc7z4nvydmmf6wrk5v9ms23zf0llnk9h3hvnk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/html2org"; - license = lib.licenses.free; - }; - }) {}; - htmlize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "htmlize"; - ename = "htmlize"; - version = "20180923.1129"; - src = fetchFromGitHub { - owner = "hniksic"; - repo = "emacs-htmlize"; - rev = "8db0aa6aab77475a732b7363f0d57bd3933c18fd"; - sha256 = "19hwcqla1mnp5k8mll4in1pimqpa8zmqd8yfmxkikldmwwsilaq0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/075aa00a0757c6cd1ad392f0300bf5f1b937648d/recipes/htmlize"; - sha256 = "16nvvsi4nxi0zzk5a6mwmp43p0ls20zdx9r18mxz6bsaw6jangh2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/htmlize"; - license = lib.licenses.free; - }; - }) {}; - htmltagwrap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "htmltagwrap"; - ename = "htmltagwrap"; - version = "20190516.2211"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "htmltagwrap"; - rev = "3260d9267b51019328c30a6317f28e4a2dd7d522"; - sha256 = "15rfg4z8lhwadgnr58r3skmzmkxs5phnqr1ap4bjd9pq618amdbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/htmltagwrap"; - sha256 = "19vav9mpqfg6x017b2f4fkhixfw9fslhs03n780qq2n79abp77n9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/htmltagwrap"; - license = lib.licenses.free; - }; - }) {}; - http = callPackage ({ edit-indirect - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "http"; - ename = "http"; - version = "20181008.1421"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "http.el"; - rev = "1bbfff5994e16ffc185c4ac28d792cb040da3351"; - sha256 = "0bs2l487mn8zkx3h7zgynm5cq54w8wlr150izaxynqddcpkrr44h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7c63aaf27240706d84e464881d40cfb7cbe9ee3/recipes/http"; - sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm"; - name = "recipe"; - }; - packageRequires = [ edit-indirect emacs request ]; - meta = { - homepage = "https://melpa.org/#/http"; - license = lib.licenses.free; - }; - }) {}; - http-post-simple = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "http-post-simple"; - ename = "http-post-simple"; - version = "20170715.240"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "http-post-simple"; - rev = "f53697fca278c741051aeb668b00466b5e0fd3fe"; - sha256 = "0krdbvvvzn323vx554yw7947nddl3icfjk4wf5kfx7fim5v3mdn6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/http-post-simple"; - sha256 = "0z3zphaqywbm7vn2g1f7fkrdamgsc26i8zydm9y53v9z9fmzch5s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/http-post-simple"; - license = lib.licenses.free; - }; - }) {}; - http-twiddle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "http-twiddle"; - ename = "http-twiddle"; - version = "20160801.1211"; - src = fetchFromGitHub { - owner = "hassy"; - repo = "http-twiddle"; - rev = "46da2dbc40209925aa88ab19014ca982bcf9ac70"; - sha256 = "03fdpl64lgwlz8yc29ia9scbh0s5xh7g7jbyfvvp6hcy2f0yiyx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/http-twiddle"; - sha256 = "1d8xnwhb8lp4p4xnnkryx5c6isd8ckalp0smx66lbi1pa4g6iqsh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/http-twiddle"; - license = lib.licenses.free; - }; - }) {}; - httpcode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "httpcode"; - ename = "httpcode"; - version = "20121001.2045"; - src = fetchFromGitHub { - owner = "rspivak"; - repo = "httpcode.el"; - rev = "a45e735082b09477cd704a99294d336cdbeb12ba"; - sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/906da23e26d44f8c71ba57ab59bb089caea673a9/recipes/httpcode"; - sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/httpcode"; - license = lib.licenses.free; - }; - }) {}; - httprepl = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "httprepl"; - ename = "httprepl"; - version = "20141101.1034"; - src = fetchFromGitHub { - owner = "gregsexton"; - repo = "httprepl.el"; - rev = "cfa3693267a8ed1c96a86a126823f37dbfe077d8"; - sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c49824f6e2dc2f3482e607c2d3a1e2d7685bf688/recipes/httprepl"; - sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/httprepl"; - license = lib.licenses.free; - }; - }) {}; - hugsql-ghosts = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hugsql-ghosts"; - ename = "hugsql-ghosts"; - version = "20180425.429"; - src = fetchFromGitHub { - owner = "rkaercher"; - repo = "hugsql-ghosts"; - rev = "f3ebc60c66204ad39058cb84eb4bd5facce091df"; - sha256 = "0pcr39x8yxl5aa0sz20gw20ixz5imw5m19bzhzbzyn7slr65hlqn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/969fd5e51bf93b5eff6919956c43c041a3b24d1e/recipes/hugsql-ghosts"; - sha256 = "1v1iypis5iyimdr9796qpqw0qmhzijap0nbr0mhhyp4001kakkwz"; - name = "recipe"; - }; - packageRequires = [ cider dash s ]; - meta = { - homepage = "https://melpa.org/#/hugsql-ghosts"; - license = lib.licenses.free; - }; - }) {}; - hungarian-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hungarian-holidays"; - ename = "hungarian-holidays"; - version = "20161020.438"; - src = fetchFromGitHub { - owner = "gergelypolonkai"; - repo = "hungarian-holidays"; - rev = "653108769279499d84a79267c90e640d98823872"; - sha256 = "0jjparw5axydjf2lj8asccmksbbj9zgdiv2kc211h122q5712gvm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c2dc20ce4b878a32c540744016a40f6cc2a657a/recipes/hungarian-holidays"; - sha256 = "1bdl0ynlni1i19hq4h48k8j9b2davv2kfgrpd2mrl2xqmjvhm1m2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hungarian-holidays"; - license = lib.licenses.free; - }; - }) {}; - hungry-delete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hungry-delete"; - ename = "hungry-delete"; - version = "20170411.1802"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "hungry-delete"; - rev = "0434458d3f6b2b585f332271feaa054bf4ec96d7"; - sha256 = "04g8gdfqpzdhxf5rnl2k49f2klmzxwys79aib7xs30i0n8c8qb7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e33960d9b7e24f830ebe4e5a26a562422d52fe97/recipes/hungry-delete"; - sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hungry-delete"; - license = lib.licenses.free; - }; - }) {}; - hy-mode = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hy-mode"; - ename = "hy-mode"; - version = "20190605.1426"; - src = fetchFromGitHub { - owner = "hylang"; - repo = "hy-mode"; - rev = "b8e67643b209661f82e1f8aa0dc24d8d486f3d5c"; - sha256 = "0qn51lqv91rld0gzfrhimfqvb751gf7mnbd026c14cfjg7gmal5i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9ab5cf16b61bb27559cd8ec5cf665a5aab2154/recipes/hy-mode"; - sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs s ]; - meta = { - homepage = "https://melpa.org/#/hy-mode"; - license = lib.licenses.free; - }; - }) {}; - hyai = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hyai"; - ename = "hyai"; - version = "20170301.647"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "hyai"; - rev = "e9a7e945fed12d8e664e898cf8b434b0376d5d80"; - sha256 = "1sbn4h74crawdy8yjdjklxh1q6js5y9ip5qxf6dfi85h82qizpa8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd9bd1cfd2f3b760b664a4677b0e4e617cbdfa6/recipes/hyai"; - sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/hyai"; - license = lib.licenses.free; - }; - }) {}; - hydandata-light-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hydandata-light-theme"; - ename = "hydandata-light-theme"; - version = "20160815.2118"; - src = fetchFromGitHub { - owner = "hydandata"; - repo = "hydandata-light-theme"; - rev = "169c0d9ab1272b0f4a1f29eb5f1cd5ffb2365e1e"; - sha256 = "19q63kg1higqxf26bhwnqwvqxpayjq2j24yi54b1wkvwbv5f28nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/413c617f15947782891159a240e0c9014f1f7d11/recipes/hydandata-light-theme"; - sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hydandata-light-theme"; - license = lib.licenses.free; - }; - }) {}; - hyde = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hyde"; - ename = "hyde"; - version = "20160507.2008"; - src = fetchFromGitHub { - owner = "nibrahim"; - repo = "Hyde"; - rev = "a8cd6ed00ecd8d7de0ded2f4867015b412b15b76"; - sha256 = "14sk9gai7sscvwgbl7y3dzz8fdhrqynilscmdimlncpm15w56m6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151f5c1097e5020dbc13e41f2657aae781c5942b/recipes/hyde"; - sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hyde"; - license = lib.licenses.free; - }; - }) {}; - hydra = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , lv - , melpaBuild }: - melpaBuild { - pname = "hydra"; - ename = "hydra"; - version = "20190525.117"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "hydra"; - rev = "a2bb124a3f2e57c032fc264bcd08219fa3d513d9"; - sha256 = "0wshlb3cz2l8idjwz881mvq96yik64gsxn87msayxb32xblvlcpf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82d9e1bfd501ed2d1cd11319c5e1eb17482e8922/recipes/hydra"; - sha256 = "1s1hj70jjbira054q8ly1pcr0818hh91qnhj0zwbv7milmvv2wwd"; - name = "recipe"; - }; - packageRequires = [ cl-lib lv ]; - meta = { - homepage = "https://melpa.org/#/hydra"; - license = lib.licenses.free; - }; - }) {}; - hyperspace = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hyperspace"; - ename = "hyperspace"; - version = "20190601.1258"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "hyperspace-el"; - rev = "685c799abe28583769f59d3fd730da883107c5f8"; - sha256 = "0iyy6lxf94w0w63yl2wzwxfvk9jqlh5gygadi9lf7nj3paqdp0x4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0696a12acba676015640de63fc6e011128bca71c/recipes/hyperspace"; - sha256 = "0ya41c9bxvspj81n5209p9b4c9p1i6jcp710n9i9jawpahwpqlkw"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/hyperspace"; - license = lib.licenses.free; - }; - }) {}; - i2b2-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "i2b2-mode"; - ename = "i2b2-mode"; - version = "20140709.1804"; - src = fetchFromGitHub { - owner = "danlamanna"; - repo = "i2b2-mode"; - rev = "db10efcfc8bed369a516bbf7526ede41f98cb95a"; - sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/i2b2-mode"; - sha256 = "1jnlisdnp9sz54p444vlq00y3080i4ljcvclri9fy382g1s5ags5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/i2b2-mode"; - license = lib.licenses.free; - }; - }) {}; - i3wm = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "i3wm"; - ename = "i3wm"; - version = "20170822.738"; - src = fetchgit { - url = "https://git.flintfam.org/swf-projects/emacs-i3.git"; - rev = "71391dc61063fee77ad174f3b2ca25c60b41009e"; - sha256 = "16rwqfg517ask3y6mqxw689w8xx4i51nq8js5wnzbz9a55aj776n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e12638554a13ef49ab24da08fe20ed2a53dbd11/recipes/i3wm"; - sha256 = "11246d71g82iv9zrd44013zwkmnf32m1x8zbrbb656dnzx7ps4rl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/i3wm"; - license = lib.licenses.free; - }; - }) {}; - ialign = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ialign"; - ename = "ialign"; - version = "20181202.346"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "interactive-align"; - rev = "e1308c8f6aea05ad6dbcaa33b9bee4eb7e05ee39"; - sha256 = "0b7a2z4v1nyyaw0lvql9xrakpsi1a6kflqr74k56ndm3ivmqwx09"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/072f1f7ce17e2972863bce10af9c52b3c6502eab/recipes/ialign"; - sha256 = "070a0fa2vbdfvbnpbzv4z0c7311lf8sy2zw2ifn9k548n4l8k62j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ialign"; - license = lib.licenses.free; - }; - }) {}; - iasm-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iasm-mode"; - ename = "iasm-mode"; - version = "20171023.722"; - src = fetchFromGitHub { - owner = "RAttab"; - repo = "iasm-mode"; - rev = "abbec7f308f9ce97beeb57e459fff35f559b4c18"; - sha256 = "0hvpcckhlxab5f7w4s6iw5lhdbjrqn0l8gayg1w42rn6gssr3rap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c230ec10eb62d1b3f6df10c05c5dbc2e25d4507/recipes/iasm-mode"; - sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iasm-mode"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-git = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-git"; - ename = "ibuffer-git"; - version = "20110508.31"; - src = fetchFromGitHub { - owner = "jrockway"; - repo = "ibuffer-git"; - rev = "d326319c05ddb8280885b31f9094040c1b365876"; - sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d341da1b9bac782c75ab931fd53a9525a85c702e/recipes/ibuffer-git"; - sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ibuffer-git"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-project = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-project"; - ename = "ibuffer-project"; - version = "20181216.1325"; - src = fetchFromGitHub { - owner = "muffinmad"; - repo = "emacs-ibuffer-project"; - rev = "7424e71062f2cb969c3e9951203022414dea37fb"; - sha256 = "02rr81ddpand0hb3yaskklhpknnqfjkcqaa2w77xi4xlzjdima01"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/895d692a678322e2d082ead155b679fa24a3a82d/recipes/ibuffer-project"; - sha256 = "14lpjf9lsjzvkbp5ai95ymgl6h8waq80623hnamg6mv83vg7w135"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-project"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "ibuffer-projectile"; - ename = "ibuffer-projectile"; - version = "20181201.1952"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ibuffer-projectile"; - rev = "76496214144687cee0b5139be2e61b1e400cac87"; - sha256 = "0vv9xwb1qd5x8zhqmmsn1nrpd11cql9hxb7483nsdhcfwl4apqav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile"; - sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; - name = "recipe"; - }; - packageRequires = [ emacs projectile ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-projectile"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-rcirc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-rcirc"; - ename = "ibuffer-rcirc"; - version = "20150215.1318"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "ibuffer-rcirc"; - rev = "8a4409b1c679d65c819dee4085faf929840e79f8"; - sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8bcf68d54fce13fcb0fb0ae0b6aa975e8127a1f/recipes/ibuffer-rcirc"; - sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-rcirc"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-sidebar = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-sidebar"; - ename = "ibuffer-sidebar"; - version = "20180218.1731"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "ibuffer-sidebar"; - rev = "b18a8ca0fac9cbfb6e99bcccc2cea488d5876add"; - sha256 = "1vvzmx4wi0bscig0aqrs9rmxw6mnyyqcxg3mi8mr52j43p1kdmr3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19c7c36af8e30b9a9ccc4afda2a7b7e39e8d32ff/recipes/ibuffer-sidebar"; - sha256 = "0rzdybkqaf8r6v19isgw4wv0mwdqxvf55gq1ig4shscjc7ys22wp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-sidebar"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-tramp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-tramp"; - ename = "ibuffer-tramp"; - version = "20151118.939"; - src = fetchFromGitHub { - owner = "svend"; - repo = "ibuffer-tramp"; - rev = "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4"; - sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a7449b15cb2a89cf06ea3de2cfdc6bc387db3b/recipes/ibuffer-tramp"; - sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ibuffer-tramp"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-vc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-vc"; - ename = "ibuffer-vc"; - version = "20181225.1427"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ibuffer-vc"; - rev = "64cb03887bcae6127e80f0d9342c33206e21d2d2"; - sha256 = "1ayqa7l5ny7g01pb3917w2phnsdfw69scw3lk6bpa773pq00n2vi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ibuffer-vc"; - sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-vc"; - license = lib.licenses.free; - }; - }) {}; - id-manager = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "id-manager"; - ename = "id-manager"; - version = "20170320.546"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-id-manager"; - rev = "14ebc35db298aac4dedc8aa188bc46bacab81f3b"; - sha256 = "0k9b12gzvjw06y5ycjkigkj8vcmj4rz57d4hyzip27g1v93vvimc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64a61b3801a0cafec87b1875eaec5950746f716d/recipes/id-manager"; - sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/id-manager"; - license = lib.licenses.free; - }; - }) {}; - idea-darkula-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idea-darkula-theme"; - ename = "idea-darkula-theme"; - version = "20160416.1603"; - src = fetchFromGitHub { - owner = "fourier"; - repo = "idea-darkula-theme"; - rev = "52602d9b91883e1f297d000951aeed48bf60176e"; - sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abf27cce70443010f996b5577d71fe78f7eab6fb/recipes/idea-darkula-theme"; - sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/idea-darkula-theme"; - license = lib.licenses.free; - }; - }) {}; - identica-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "identica-mode"; - ename = "identica-mode"; - version = "20130204.1453"; - src = fetchFromGitHub { - owner = "gabrielsaldana"; - repo = "Emacs-Identica-mode"; - rev = "cf9183ee11ac922e85c7c908f04e2d00b03111b3"; - sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/812b7c1fbc435f0530b7f66a1e65f62f5f00da01/recipes/identica-mode"; - sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/identica-mode"; - license = lib.licenses.free; - }; - }) {}; - idle-highlight-in-visible-buffers-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-highlight-in-visible-buffers-mode"; - ename = "idle-highlight-in-visible-buffers-mode"; - version = "20181027.831"; - src = fetchFromGitHub { - owner = "ignacy"; - repo = "idle-highlight-in-visible-buffers-mode"; - rev = "8d8de309d5bd4b035c01bf7f0cfc6e079c79d898"; - sha256 = "194r7f4ngwx03n74rs26hqn9wypn9idjizvmffpsjpxfr7wr9z7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5a533be3b8dea556438d93ac48853dd3a9690f1/recipes/idle-highlight-in-visible-buffers-mode"; - sha256 = "0kv06qlv1zp5hwaya0l90z6d5lhxcg69qac6x24ky6kf97vcdq72"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-highlight-in-visible-buffers-mode"; - license = lib.licenses.free; - }; - }) {}; - idle-highlight-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-highlight-mode"; - ename = "idle-highlight-mode"; - version = "20120920.948"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "idle-highlight-mode"; - rev = "c466f2a9e291f9da1167dc879577b2e1a7880482"; - sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/idle-highlight-mode"; - sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-highlight-mode"; - license = lib.licenses.free; - }; - }) {}; - idle-org-agenda = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-org-agenda"; - ename = "idle-org-agenda"; - version = "20190106.1044"; - src = fetchFromGitHub { - owner = "enisozgen"; - repo = "idle-org-agenda"; - rev = "bfdf1b4f4096acdd081b3549d6b838f4ca4f7d0d"; - sha256 = "0rv8nhd2mgdbmziz49lm4hcbfyhk1wb5k0l9zsyrgn50rs32akhp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de55ad7d9b8b3bed6a646f526a7b20c272eb4e26/recipes/idle-org-agenda"; - sha256 = "12g18gqwb520iqvs4v6jv0fjxsa3m6an1lq13saa4gwqixja1rrv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-org-agenda"; - license = lib.licenses.free; - }; - }) {}; - idle-require = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-require"; - ename = "idle-require"; - version = "20090715.1503"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "idle-require.el"; - rev = "33592bb098223b4432d7a35a1d65ab83f47c1ec1"; - sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/idle-require"; - sha256 = "03z8d06ifzaf81h8b3h16ab69cp3ssky3my07spy81rbhbjl5nn3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-require"; - license = lib.licenses.free; - }; - }) {}; - ido-at-point = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-at-point"; - ename = "ido-at-point"; - version = "20151021.57"; - src = fetchFromGitHub { - owner = "katspaugh"; - repo = "ido-at-point"; - rev = "6b267f202dc3d3d924c904fbd894e9a209f231de"; - sha256 = "1bj8k5fq6x3s5qmr02bnkcls7sndmg4wjjjrsd3fr6yl8c4jcy3k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ffbfa66c4284a134265efc606fdc7652b0a7f75/recipes/ido-at-point"; - sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-at-point"; - license = lib.licenses.free; - }; - }) {}; - ido-clever-match = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-clever-match"; - ename = "ido-clever-match"; - version = "20151011.1026"; - src = fetchFromGitHub { - owner = "Bogdanp"; - repo = "ido-clever-match"; - rev = "f173473e99c8b0756f12e4cc8f67e68fa59eadd3"; - sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/add68b4815cdfe83402b217595a4a46068f83a2a/recipes/ido-clever-match"; - sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-clever-match"; - license = lib.licenses.free; - }; - }) {}; - ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-complete-space-or-hyphen"; - ename = "ido-complete-space-or-hyphen"; - version = "20180928.1850"; - src = fetchFromGitHub { - owner = "doitian"; - repo = "ido-complete-space-or-hyphen"; - rev = "ed60ebed113e4e1552efeab0c416f7c88428268e"; - sha256 = "15h0alwi7qfqyi7w7gdl06ykxvafbx1p4614rg81kmzgs4dpqgy3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59e11094068d3a0c0e4edc1f82158c43d3b15e0e/recipes/ido-complete-space-or-hyphen"; - sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-complete-space-or-hyphen"; - license = lib.licenses.free; - }; - }) {}; - ido-completing-read-plus = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize - , s }: - melpaBuild { - pname = "ido-completing-read-plus"; - ename = "ido-completing-read+"; - version = "20190502.1420"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "ido-completing-read-plus"; - rev = "0e58f9271e7785d88ed90ca3ea0d7634abf4fb14"; - sha256 = "0qpidk9l2bf34vxai2iwsafx8y1crcg1675mhn159z3dpgaz53wf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-completing-read+"; - sha256 = "0rxdv3cd0bg0p8c1bck5vichdq941dki934k23qf5p6cfgw8gw4z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs memoize s ]; - meta = { - homepage = "https://melpa.org/#/ido-completing-read+"; - license = lib.licenses.free; - }; - }) {}; - ido-describe-bindings = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-describe-bindings"; - ename = "ido-describe-bindings"; - version = "20161023.402"; - src = fetchFromGitHub { - owner = "danil"; - repo = "ido-describe-bindings"; - rev = "a142ff1c33df23ed9665497d0dcae2943b3c706a"; - sha256 = "0967709jyp9s04i6gi90axgqzhz03cdf1j1w39yrkds6q1b6v7jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31b8e255630f1348a5b5730f7b624ad550d219ad/recipes/ido-describe-bindings"; - sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ido-describe-bindings"; - license = lib.licenses.free; - }; - }) {}; - ido-exit-target = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-exit-target"; - ename = "ido-exit-target"; - version = "20170717.1151"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "ido-exit-target"; - rev = "e56fc6928649c87ccf39d56d84ab53ebaced1f73"; - sha256 = "1a1bcvmihf22kr8rpv6kyp4b7x79hla5qdys48d6kl06m53gyckp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b815e7492eb0bd39c5d1be5a95784f9fe5612b62/recipes/ido-exit-target"; - sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-exit-target"; - license = lib.licenses.free; - }; - }) {}; - ido-flex-with-migemo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flx-ido - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "ido-flex-with-migemo"; - ename = "ido-flex-with-migemo"; - version = "20190407.2050"; - src = fetchFromGitHub { - owner = "ROCKTAKEY"; - repo = "ido-flex-with-migemo"; - rev = "aa93aa05947eb6c106bb9523ff3163b8574c4eac"; - sha256 = "0k6zidi0ch4z9fg74k968pz7r0hzj56kccbf48k0is0fnzl4isxq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1647d1ae7400ddbc8367c355ade16b5c360b42fc/recipes/ido-flex-with-migemo"; - sha256 = "1w8f1r17l4r7w5bacckv9zfl9qynv2ivsw639rzr5acg2ndxagv7"; - name = "recipe"; - }; - packageRequires = [ emacs flx-ido migemo ]; - meta = { - homepage = "https://melpa.org/#/ido-flex-with-migemo"; - license = lib.licenses.free; - }; - }) {}; - ido-gnus = callPackage ({ fetchFromGitHub - , fetchurl - , gnus ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-gnus"; - ename = "ido-gnus"; - version = "20140216.846"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "ido-gnus"; - rev = "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089"; - sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c5cd46d72a3f99ef1344b5f1156f5bf7a5b9adc/recipes/ido-gnus"; - sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg"; - name = "recipe"; - }; - packageRequires = [ gnus ]; - meta = { - homepage = "https://melpa.org/#/ido-gnus"; - license = lib.licenses.free; - }; - }) {}; - ido-grid-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-grid-mode"; - ename = "ido-grid-mode"; - version = "20160122.339"; - src = fetchFromGitHub { - owner = "larkery"; - repo = "ido-grid-mode.el"; - rev = "7cfca3988a6dc3ad18e28abe114218095ff2366f"; - sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ido-grid-mode"; - sha256 = "0sq1d2fwvv247rr9lqg9x87d5h910k5ifqr9cjyskc74mvhrcsr3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-grid-mode"; - license = lib.licenses.free; - }; - }) {}; - ido-hacks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-hacks"; - ename = "ido-hacks"; - version = "20190206.1353"; - src = fetchFromGitHub { - owner = "scottjad"; - repo = "ido-hacks"; - rev = "d2153a3e8d23436ee07ecae2a106f434361a10c5"; - sha256 = "0rq5jmij691cccv4x8h8aiclnzx04v08axgz30prp6p71dxlrdms"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac3074d28e76133835366273219e180c6e75b18/recipes/ido-hacks"; - sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-hacks"; - license = lib.licenses.free; - }; - }) {}; - ido-load-library = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "ido-load-library"; - ename = "ido-load-library"; - version = "20140611.900"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ido-load-library"; - rev = "f439559721c5fecb2572dcaf3e357c5d94a20f4a"; - sha256 = "1cmq6kpsh5ngiib67a0vsvhlyl0qy29zxcq03bpcbpm76sv7nc0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/ido-load-library"; - sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/ido-load-library"; - license = lib.licenses.free; - }; - }) {}; - ido-migemo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "ido-migemo"; - ename = "ido-migemo"; - version = "20150921.1544"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "ido-migemo.el"; - rev = "eec329e315c4782ab966f162a6c91fd3a01ef358"; - sha256 = "1d7jrfs9vihsi88a0aa139xsad00w5rmzh54s3qp8ismljn8dlql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8550601b8989f9838dfa7848977b2509b8e16175/recipes/ido-migemo"; - sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi"; - name = "recipe"; - }; - packageRequires = [ migemo ]; - meta = { - homepage = "https://melpa.org/#/ido-migemo"; - license = lib.licenses.free; - }; - }) {}; - ido-occasional = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-occasional"; - ename = "ido-occasional"; - version = "20150214.448"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ido-occasional"; - rev = "d405f1795e1e0c63be411ee2825184738d29c33a"; - sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed49d07aa36dfc742ca3fbfa83a6d624bf2fa525/recipes/ido-occasional"; - sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-occasional"; - license = lib.licenses.free; - }; - }) {}; - ido-occur = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-occur"; - ename = "ido-occur"; - version = "20160820.740"; - src = fetchFromGitHub { - owner = "danil"; - repo = "ido-occur"; - rev = "b0e67fe4835c162cbcf8a982bdf377955b9ac5ae"; - sha256 = "13f21vx3q1qbnl13n3lx1rnr8dhq3zwch22pvy53h8q6sdf7r73a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a576d8569bf82be01e7d50defcc99a90aab1436/recipes/ido-occur"; - sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ido-occur"; - license = lib.licenses.free; - }; - }) {}; - ido-select-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-select-window"; - ename = "ido-select-window"; - version = "20131220.1247"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "ido-select-window"; - rev = "946db3db7a3fec582cc1a0097877f1250303b53a"; - sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/775c8361322c2ba9026130dd60083e0255170b8f/recipes/ido-select-window"; - sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-select-window"; - license = lib.licenses.free; - }; - }) {}; - ido-skk = callPackage ({ ddskk - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-skk"; - ename = "ido-skk"; - version = "20151111.150"; - src = fetchFromGitHub { - owner = "tsukimizake"; - repo = "ido-skk"; - rev = "89a2e62799bff2841ff634517c86084c4ce69246"; - sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6da9bd69a646a8edfaf9dc7f2e31e5f057f44b6b/recipes/ido-skk"; - sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw"; - name = "recipe"; - }; - packageRequires = [ ddskk emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-skk"; - license = lib.licenses.free; - }; - }) {}; - ido-sort-mtime = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-sort-mtime"; - ename = "ido-sort-mtime"; - version = "20171121.59"; - src = fetchFromGitHub { - owner = "pkkm"; - repo = "ido-sort-mtime"; - rev = "f638ff0c922af862f5211779f2311a27fde428eb"; - sha256 = "0isy3rmw69664fsypg58rs42ql43drf27l90yvplnbcqd7nnnb21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36d2f7f1bb0d0694a25c1e83340781e08bee814b/recipes/ido-sort-mtime"; - sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-sort-mtime"; - license = lib.licenses.free; - }; - }) {}; - ido-springboard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-springboard"; - ename = "ido-springboard"; - version = "20170105.2355"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "springboard"; - rev = "263a8cd4582c81bfc29d7db37d5267e2488b148c"; - sha256 = "14mbmkqnw2kkzcb8f9z1g3c8f8f9lca3zb6f3q8jk9dsyp9vh81z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/409d847fb464a320e626fae56521a81a8e862a3e/recipes/ido-springboard"; - sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-springboard"; - license = lib.licenses.free; - }; - }) {}; - ido-vertical-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-vertical-mode"; - ename = "ido-vertical-mode"; - version = "20180618.1401"; - src = fetchFromGitHub { - owner = "creichert"; - repo = "ido-vertical-mode.el"; - rev = "16c4c1a112796ee0bcf401ea39d3e2643a89feaf"; - sha256 = "10cfm765qwba0bnablwy8c4mjxvb1lwm89d16svwhp1pn20an6a8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4bbd212ea4606b9871cf583d06b5cee2f6ce0a9/recipes/ido-vertical-mode"; - sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-vertical-mode"; - license = lib.licenses.free; - }; - }) {}; - ido-yes-or-no = callPackage ({ fetchFromGitHub - , fetchurl - , ido-completing-read-plus - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-yes-or-no"; - ename = "ido-yes-or-no"; - version = "20161108.1551"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "ido-yes-or-no"; - rev = "8953eadaaa7811ebc66d8a9eb7ac43f38913ab59"; - sha256 = "0pi5kak267v571j5y0khz1s0nlxyp9jrsbh09dk3j6a44d2iyypl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e575f46b8597a34523df6b6a75da5a640f4c5a2e/recipes/ido-yes-or-no"; - sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; - name = "recipe"; - }; - packageRequires = [ ido-completing-read-plus ]; - meta = { - homepage = "https://melpa.org/#/ido-yes-or-no"; - license = lib.licenses.free; - }; - }) {}; - idomenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idomenu"; - ename = "idomenu"; - version = "20141123.1320"; - src = fetchFromGitHub { - owner = "birkenfeld"; - repo = "idomenu"; - rev = "4b0152d606360c70204fb4c27f68de79ca885386"; - sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f856045bc5ab2aee4dd4ad9806917e27e56ec64c/recipes/idomenu"; - sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idomenu"; - license = lib.licenses.free; - }; - }) {}; - idris-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , prop-menu }: - melpaBuild { - pname = "idris-mode"; - ename = "idris-mode"; - version = "20190427.839"; - src = fetchFromGitHub { - owner = "idris-hackers"; - repo = "idris-mode"; - rev = "acc8835449475d7cd205aba213fdd3d41c38ba40"; - sha256 = "0n9xbknc68id0mf8hbfmawi8qpvrs47ix807sk9ffv2g3ik32kk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode"; - sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs prop-menu ]; - meta = { - homepage = "https://melpa.org/#/idris-mode"; - license = lib.licenses.free; - }; - }) {}; - ids-edit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ids-edit"; - ename = "ids-edit"; - version = "20170818.802"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "ids-edit"; - rev = "8562a6cbfb3f2d44bc6f62ab15081a80f8fee502"; - sha256 = "10h64c5n9piq9ly7ipqq33ji8x8vwh9j1h7r05yab8a2sn0h8587"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ids-edit"; - sha256 = "1n4gpcl3qj65cmaq9cdljsmrf84570z4chfvga6slsqjz5him8d1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ids-edit"; - license = lib.licenses.free; - }; - }) {}; - iedit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iedit"; - ename = "iedit"; - version = "20190419.103"; - src = fetchFromGitHub { - owner = "victorhge"; - repo = "iedit"; - rev = "e2c100cdd67b7d82835d281ac2cd1bf4f374bc8f"; - sha256 = "0wr3w2id95wx2rma8n1ifjrv9rx37ly26ijc5zi58id0yrip3hnc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/iedit"; - sha256 = "0bh8ir6kspxjsvjww5y3b5hl3flbm2cc77jh8vnnva3z086f18mh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iedit"; - license = lib.licenses.free; - }; - }) {}; - ietf-docs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ietf-docs"; - ename = "ietf-docs"; - version = "20190420.151"; - src = fetchFromGitHub { - owner = "choppsv1"; - repo = "ietf-docs"; - rev = "ae157549eae5ec78dcbf215c2f48cb662b73abd0"; - sha256 = "050c6fpf41xzx5kdpqcpa2rb0fk1a3h3009fdz77v0dp3bxv3a5d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cedfdfe2c282d0484ea8239726f46a4861ef07ea/recipes/ietf-docs"; - sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ietf-docs"; - license = lib.licenses.free; - }; - }) {}; - iflipb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iflipb"; - ename = "iflipb"; - version = "20190427.1109"; - src = fetchFromGitHub { - owner = "jrosdahl"; - repo = "iflipb"; - rev = "47d310a4576ae2195777d755cf86d5ea7525ef74"; - sha256 = "0s35iiki06302q7bn2p5gdfv03y7w3d8rkk84hxr5azwhw1v2hcg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb"; - sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iflipb"; - license = lib.licenses.free; - }; - }) {}; - ignoramus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ignoramus"; - ename = "ignoramus"; - version = "20160414.709"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ignoramus"; - rev = "b37dc7c07edd9d152436f9019c14df158b599be3"; - sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac5439afe2f9a902e615f0cf919ef7138559c0f0/recipes/ignoramus"; - sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ignoramus"; - license = lib.licenses.free; - }; - }) {}; - igv = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "igv"; - ename = "igv"; - version = "20141210.427"; - src = fetchgit { - url = "https://bitbucket.org/sbarbit/eigv"; - rev = "47ac6ceede252f451348a2c696398c0cb5279555"; - sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/igv"; - sha256 = "0vjqdyj9j26y0hhzmip6lpwc8g1c9vnmgya1p7v77bkgdicgl659"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/igv"; - license = lib.licenses.free; - }; - }) {}; - image-archive = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-archive"; - ename = "image-archive"; - version = "20150620.1832"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-image-archive"; - rev = "4cf0edabfd6a4da2ffb920ff1e5009a002fc1e53"; - sha256 = "0k5iv2s33d6yj7bb9m7xskd52cfs0bkrq3g1qkby17drd29iwdhv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17464f31b07f64da0e9db187cd6f5facee3ad7ce/recipes/image-archive"; - sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/image-archive"; - license = lib.licenses.free; - }; - }) {}; - image-dired-plus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-dired-plus"; - ename = "image-dired+"; - version = "20150429.2244"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-image-diredx"; - rev = "b68094625d963056ad64e0e44af0e2266b2eadc7"; - sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98f83f450804f1dc496a7bda17818cdae3f52151/recipes/image-dired+"; - sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/image-dired+"; - license = lib.licenses.free; - }; - }) {}; - image-plus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-plus"; - ename = "image+"; - version = "20150707.916"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-imagex"; - rev = "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc"; - sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02d7400477a993b7a3cae327501dbf8db97dfa28/recipes/image+"; - sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/image+"; - license = lib.licenses.free; - }; - }) {}; - imakado = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imakado"; - ename = "imakado"; - version = "20141024.223"; - src = fetchFromGitHub { - owner = "imakado"; - repo = "emacs-imakado"; - rev = "00a1e7eea2cb9e9066343a23927d6c747707902f"; - sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca131089c823065852f58347a88bd49217a22072/recipes/imakado"; - sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/imakado"; - license = lib.licenses.free; - }; - }) {}; - imake = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imake"; - ename = "imake"; - version = "20180318.1559"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "imake"; - rev = "7df5fb9684a0288313ef5f64594078d477105959"; - sha256 = "0xc19ir5ak1bfq0ag48ql5rj58zd565csgxhpa30s9lvvkc8kvr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28de8f7f5302b27c7c6600ad65a998119518be43/recipes/imake"; - sha256 = "0j732fi6999n9990w4l28raw140fvqfbynyh4x65yilhw95r7c34"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/imake"; - license = lib.licenses.free; - }; - }) {}; - imapfilter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imapfilter"; - ename = "imapfilter"; - version = "20180318.1327"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "imapfilter"; - rev = "5e842a8c60ba98f344edf1b1e65f5a480ed938ed"; - sha256 = "16k7cxzdjbblzckp5qppw1ga0rzdh3ww2ni7ry1h43p9cfna0kcx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter"; - sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/imapfilter"; - license = lib.licenses.free; - }; - }) {}; - imenu-anywhere = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenu-anywhere"; - ename = "imenu-anywhere"; - version = "20190512.1239"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "imenu-anywhere"; - rev = "88b0e120284058b32252e4b0ed1a07c9fe44092f"; - sha256 = "1w0n4hx29zc6n06qfq3ryc4dcfmk7wx3lw083yv7fi12hjj255vm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/imenu-anywhere"; - sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/imenu-anywhere"; - license = lib.licenses.free; - }; - }) {}; - imenu-list = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenu-list"; - ename = "imenu-list"; - version = "20190115.1330"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "imenu-list"; - rev = "46008738f8fef578a763c308cf6695e5b4d4aa77"; - sha256 = "14l3yw9y1nk103s7z5i1fmd6kvlb2p6ayi6sf9l1x1ydg9glrpl8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86dea881a5b2d0458449f08b82c2614ad9abd068/recipes/imenu-list"; - sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/imenu-list"; - license = lib.licenses.free; - }; - }) {}; - imenus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenus"; - ename = "imenus"; - version = "20180505.1017"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "imenus.el"; - rev = "149cfa579ee231014d3341a0e05add69759757a5"; - sha256 = "00licvs457wzqq06a8cx7vw22kyqky20i7yq7a2nzf3cfl7vaya7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc571105a8d7e2ea85391812f1fa639787fa7563/recipes/imenus"; - sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/imenus"; - license = lib.licenses.free; - }; - }) {}; - imgbb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "imgbb"; - ename = "imgbb"; - version = "20180609.949"; - src = fetchFromGitHub { - owner = "ecraven"; - repo = "imgbb.el"; - rev = "a524a46263835aa474f908827ebab4e8fa586001"; - sha256 = "1fhhpz29x9vkhzms2qkxblic96kqzg0rqsxj71vgz6fpwdb4f9gy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89d363862890aa7f25db1a5fc5e209bccbadf0bf/recipes/imgbb"; - sha256 = "0p29pasq0f0b5x7yig4g4n1k0y82aiapxazz359pm7n4kjy2s6qp"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/imgbb"; - license = lib.licenses.free; - }; - }) {}; - immaterial-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "immaterial-theme"; - ename = "immaterial-theme"; - version = "20190412.415"; - src = fetchFromGitHub { - owner = "petergardfjall"; - repo = "emacs-immaterial-theme"; - rev = "176178a57c5b342b04bebd3107c29c6d12086cf5"; - sha256 = "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a95d88bb00b1313da82929bc2733d726d2041d7/recipes/immaterial-theme"; - sha256 = "15gwqjfpls7lqc37s70vnhycnry5g9grn6shk2wpijrxfnmyqjhj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/immaterial-theme"; - license = lib.licenses.free; - }; - }) {}; - immortal-scratch = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "immortal-scratch"; - ename = "immortal-scratch"; - version = "20160517.1418"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/immortal-scratch"; - rev = "b354aba33d91"; - sha256 = "1mx9f8pwnbrm6q9ngdyv64aqkw1izj83m0mf7zqlpww7yfhv1q9b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f9f4a59d88106ddfee740653abd28e305f6dfe0/recipes/immortal-scratch"; - sha256 = "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/immortal-scratch"; - license = lib.licenses.free; - }; - }) {}; - immutant-server = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "immutant-server"; - ename = "immutant-server"; - version = "20140311.1508"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "immutant-server.el"; - rev = "2a21e65588acb6a976f2998e30b21fdabdba4dbb"; - sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e906492f9982e2cebd1e4838d7b7c81a295efa/recipes/immutant-server"; - sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/immutant-server"; - license = lib.licenses.free; - }; - }) {}; - impatient-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "impatient-mode"; - ename = "impatient-mode"; - version = "20181002.531"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "impatient-mode"; - rev = "96f6a05f8de74e19d570217fe83f0734623ddb0c"; - sha256 = "1qddy3b3fmxgkpl10p0hvmgrzhkrxyxg72sxxg5ndfwvjpf2rf91"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaa64c4d43139075d77f4518de94bcbe475d21fc/recipes/impatient-mode"; - sha256 = "07z5ds3zgzkxvxwaalp9i5x2rl5sq4jjk8ygk1rfmsl52l5y1z6j"; - name = "recipe"; - }; - packageRequires = [ cl-lib htmlize simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/impatient-mode"; - license = lib.licenses.free; - }; - }) {}; - import-js = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , grizzl - , lib - , melpaBuild }: - melpaBuild { - pname = "import-js"; - ename = "import-js"; - version = "20180709.1133"; - src = fetchFromGitHub { - owner = "Galooshi"; - repo = "emacs-import-js"; - rev = "fb1f167e33c388b09a2afd32fbda90a67bfb2e40"; - sha256 = "0if117lia2ykd6ai0cf5z4ddhsm9icijigwbrn079v7m9s8yl43p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/import-js"; - sha256 = "00b2qv1y8879cf8ayplmwqd36w7sppx57myi2wjhy9i2rnvdbmgn"; - name = "recipe"; - }; - packageRequires = [ emacs grizzl ]; - meta = { - homepage = "https://melpa.org/#/import-js"; - license = lib.licenses.free; - }; - }) {}; - import-popwin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "import-popwin"; - ename = "import-popwin"; - version = "20170218.607"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-import-popwin"; - rev = "bb05a9e226f8c63fe7b18a3e92010357049ab5ba"; - sha256 = "0jjm214zfq2kk8vzf67vala46lbbkjyms7qm27qv3yhcbc7ricvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6f0629515f36e2e98839a6894ca8c0f58862dc2/recipes/import-popwin"; - sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; - name = "recipe"; - }; - packageRequires = [ emacs popwin ]; - meta = { - homepage = "https://melpa.org/#/import-popwin"; - license = lib.licenses.free; - }; - }) {}; - importmagic = callPackage ({ emacs - , epc - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "importmagic"; - ename = "importmagic"; - version = "20180519.2003"; - src = fetchFromGitHub { - owner = "anachronic"; - repo = "importmagic.el"; - rev = "e32ee9f6a5eef937b76eba82fdae8bae85d18088"; - sha256 = "09jq913vhqndqkck1wyp37r15pnz747rgaxivlrjgp9xd3zzpz1s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/importmagic"; - sha256 = "1kpmgpll0zz3zlr3q863v1fq6wmwdwx7mn676x0r7g4iy1bdslmv"; - name = "recipe"; - }; - packageRequires = [ emacs epc f ]; - meta = { - homepage = "https://melpa.org/#/importmagic"; - license = lib.licenses.free; - }; - }) {}; - indent-guide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indent-guide"; - ename = "indent-guide"; - version = "20170221.327"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "indent-guide"; - rev = "b6eb32b1ea150e54e491f1eed3b598990c4bd631"; - sha256 = "096x6fyl8cy62kbsglbhkyx45qr7a9wsmnihi8nj80d43qyzcjc2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d7110054801e3af5e5ef710a29f73116a2bc746/recipes/indent-guide"; - sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/indent-guide"; - license = lib.licenses.free; - }; - }) {}; - indent-info = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indent-info"; - ename = "indent-info"; - version = "20180423.1212"; - src = fetchFromGitHub { - owner = "terlar"; - repo = "indent-info.el"; - rev = "d218b4cb3726476caee91db6f6c920856ab992bc"; - sha256 = "0z427rvvhw5raql5391sajm4rk1n2y8khsy2wqr7r66fdv5hg2mg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1274c0d871c51e358b3de577372dae8e3a04ead0/recipes/indent-info"; - sha256 = "0fa6p5fvyxib1iz025kqak7navb11jlfxw5x2jr47180vv9a1373"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/indent-info"; - license = lib.licenses.free; - }; - }) {}; - indent-tools = callPackage ({ fetchFromGitLab - , fetchurl - , hydra - , lib - , melpaBuild - , s - , yafolding }: - melpaBuild { - pname = "indent-tools"; - ename = "indent-tools"; - version = "20180124.408"; - src = fetchFromGitLab { - owner = "emacs-stuff"; - repo = "indent-tools"; - rev = "b650b2ca82ccd9ccb4f3142afa0da4737ddd364f"; - sha256 = "01xkkrdfn3c8ivs2wc3ck2278m75gq73wv59fchb6gw1a9d6xj7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/indent-tools"; - sha256 = "12rawl9qaihgyascy53yxpkknp95wh8fiqygb5cgl7d761qizvp6"; - name = "recipe"; - }; - packageRequires = [ hydra s yafolding ]; - meta = { - homepage = "https://melpa.org/#/indent-tools"; - license = lib.licenses.free; - }; - }) {}; - indian-ext = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indian-ext"; - ename = "indian-ext"; - version = "20190424.847"; - src = fetchFromGitHub { - owner = "paddymcall"; - repo = "indian-ext"; - rev = "a5450fe467393194bc2458c0d5e0a06c91bf117a"; - sha256 = "0phbs9cx73vg9k9gp60vhlrn065skpva6gx0abp0g6rbzys2qx0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04e29d1a745d46ff32ccd9ee787ce1fe92786ec6/recipes/indian-ext"; - sha256 = "07mny5rd2bmj1v260zfs4imp795lw4gnwr06pcx0s1ml2km1a2k2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/indian-ext"; - license = lib.licenses.free; - }; - }) {}; - indicators = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indicators"; - ename = "indicators"; - version = "20161211.326"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "indicators.el"; - rev = "f62a1201f21453e3aca93f48483e65ae8251432e"; - sha256 = "0n933jigp0awba2hxg3kwscmfmmqn3jwbrxcw3vw9aj0a5rg5bq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72c96bad0d0b5a4f738fd1b2afe5d302eded440d/recipes/indicators"; - sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/indicators"; - license = lib.licenses.free; - }; - }) {}; - indium = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , js2-refactor - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "indium"; - ename = "indium"; - version = "20190517.26"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "Indium"; - rev = "3ab9cd7d841ab3722bb041109064d2f85b2bb7bd"; - sha256 = "1w9h20rnfysc2caz9cy3s7q38x6b8lgag5r9wc03h0rn0qz7fq7q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4292058cc6e31cabc0de575134427bce7fcef541/recipes/indium"; - sha256 = "024ljx7v8xahmr8jm41fiy8i5jbg48ybqp5n67k4jwg819cz8wvl"; - name = "recipe"; - }; - packageRequires = [ company emacs js2-mode js2-refactor seq ]; - meta = { - homepage = "https://melpa.org/#/indium"; - license = lib.licenses.free; - }; - }) {}; - indy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indy"; - ename = "indy"; - version = "20150610.1006"; - src = fetchFromGitHub { - owner = "kwrooijen"; - repo = "indy"; - rev = "faff56fda87bafed6a1e79dc3426800f256ed1a1"; - sha256 = "1p694bcg4g7qzngak6nshcrrnf7mxb8j2cf9yskcznwri1s064dd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/indy"; - sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/indy"; - license = lib.licenses.free; - }; - }) {}; - inf-clojure = callPackage ({ clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-clojure"; - ename = "inf-clojure"; - version = "20190531.811"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "inf-clojure"; - rev = "0fc23509a1e66bcc3e694066f5067fdbd7b7961d"; - sha256 = "0w42ms5p5f1f7ir745srj73pj9jy1rfkbh3nf85ms05jgrs10fw9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure"; - sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; - name = "recipe"; - }; - packageRequires = [ clojure-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/inf-clojure"; - license = lib.licenses.free; - }; - }) {}; - inf-crystal = callPackage ({ crystal-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-crystal"; - ename = "inf-crystal"; - version = "20180118.1811"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "inf-crystal.el"; - rev = "dd5c85e621976ea09b602182a15396e3b510ec63"; - sha256 = "0yw2p13iah9alqq684cy410xph2a83lqs5401j0fah0qkgnjv6mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff84c742eebb84577f362b2739f4bcf1434d58ac/recipes/inf-crystal"; - sha256 = "09ssq7i5c2fxxbrsp3nn1f1ah1yv2nb19n5s1iqyykkk316k2q26"; - name = "recipe"; - }; - packageRequires = [ crystal-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/inf-crystal"; - license = lib.licenses.free; - }; - }) {}; - inf-mongo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-mongo"; - ename = "inf-mongo"; - version = "20180408.638"; - src = fetchFromGitHub { - owner = "endofunky"; - repo = "inf-mongo"; - rev = "2e498d1c88bd1904eeec18ed06b1a0cf8bdc2a92"; - sha256 = "1m6skisj6r3fbxadpwwgf3a3934b2qvwb7zj975qksxq56ij0wkq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/inf-mongo"; - sha256 = "0f12yb3dgkjnpr4d36jwfnncqzz7kl3bnnrmjw7hv223p2ryzwpx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inf-mongo"; - license = lib.licenses.free; - }; - }) {}; - inf-ruby = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-ruby"; - ename = "inf-ruby"; - version = "20190219.347"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "inf-ruby"; - rev = "ca10d72e0c64fb7947246c77a409a5443f1f4ba0"; - sha256 = "0m2cavxg8ksji56vj87gwr9r23rk0w3mbafq86kq88ljhb1fbpx3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/inf-ruby"; - sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inf-ruby"; - license = lib.licenses.free; - }; - }) {}; - inflections = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inflections"; - ename = "inflections"; - version = "20170913.216"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "jump.el"; - rev = "e4f1372cf22e811faca52fc86bdd5d817498a4d8"; - sha256 = "0354b64drvv8v5g13xy5nc1klwx4hldz1b5mf1frhna7h2dqz0j9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/392c7616d27bf12b29ef3c2ea71e42ffaea81cc6/recipes/inflections"; - sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/inflections"; - license = lib.licenses.free; - }; - }) {}; - info-beamer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "info-beamer"; - ename = "info-beamer"; - version = "20180604.1422"; - src = fetchFromGitHub { - owner = "dakra"; - repo = "info-beamer.el"; - rev = "af443795af20481af91ac54a489b20f6a9d90b0a"; - sha256 = "0r938pp10szrqiv37ryzfir4h5pg68farm56cpnh9hh8cnix6nrh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9da9aac33df6e53a8cbabcffd8e3a363298b9f3/recipes/info-beamer"; - sha256 = "0jlwvn96diwnngjbabq6wzp5q6rvmwa6p36d80nv8r7x7ch0740q"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/info-beamer"; - license = lib.licenses.free; - }; - }) {}; - info-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "info-buffer"; - ename = "info-buffer"; - version = "20170112.622"; - src = fetchFromGitHub { - owner = "llvilanova"; - repo = "info-buffer"; - rev = "d35dad6e766c6e2ddb8dc6acb4ce5b6e10fbcaa7"; - sha256 = "0czkp7cf7qmdm1jdn67gxyxz8b4qj2kby8if50d450xqwbx0da7x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c44a1d69725b687444329d8af43c9799112b407/recipes/info-buffer"; - sha256 = "1vkgkwgwym0j5xip7mai11anlpa2h7vd5m9i1xga1b23hcs9r1w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/info-buffer"; - license = lib.licenses.free; - }; - }) {}; - info-colors = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "info-colors"; - ename = "info-colors"; - version = "20180205.350"; - src = fetchFromGitHub { - owner = "ubolonton"; - repo = "info-colors"; - rev = "a8ebb7b8efa314c08ea8110d8b1876afb562bb45"; - sha256 = "0wvyf2w5s184kwacs6lbpjryx6hziayvdrl3crxir8gmg2kcv07m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d671ae8dc27439eea427e1848fc11c96ec5aee64/recipes/info-colors"; - sha256 = "1mbabrfdy9xn7lpqivqm8prp83qmdv5r0acijwvxqd3a52aadc2x"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/info-colors"; - license = lib.licenses.free; - }; - }) {}; - inherit-local = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inherit-local"; - ename = "inherit-local"; - version = "20170409.949"; - src = fetchFromGitHub { - owner = "shlevy"; - repo = "inherit-local"; - rev = "b1f4ff9c41f9d64e4adaf5adcc280b82f084cdc7"; - sha256 = "1fargashyqn4ga420k3ikc1akf7mw3zcarpg24gh2591p4swa0ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08b978724ff26b3ea7a134d307d888c80e2a92a9/recipes/inherit-local"; - sha256 = "1v3q3s6qq64k1f4ck6rfgsy1arnf9cxg2kw6d1ahfrwr4ixsqm87"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/inherit-local"; - license = lib.licenses.free; - }; - }) {}; - ini-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ini-mode"; - ename = "ini-mode"; - version = "20170424.209"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "ini-mode"; - rev = "2194cfa2fd13196a37350ec20b3f00dcf6162b7c"; - sha256 = "0s3dcqywrbggrcn9j5nibhcl4xbnhdndz5sibcp26qswd18jyrdk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/000cca577d000bafe7bf5711d0bfe7593fb6975a/recipes/ini-mode"; - sha256 = "0f6fbmg4wmlzghcibfbcx3z124b2017rhsasi5smgx9i2vkydzrm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ini-mode"; - license = lib.licenses.free; - }; - }) {}; - init-loader = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "init-loader"; - ename = "init-loader"; - version = "20160528.615"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "init-loader"; - rev = "287da99eadfa3dd85492506db43d68324069b593"; - sha256 = "03a655qzcwizv9hvfcp47466axsrq0h049fdd79xk6zmans5s6fj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e46e6ec79ff4c76fc85e13321e6dabd5797c5f45/recipes/init-loader"; - sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/init-loader"; - license = lib.licenses.free; - }; - }) {}; - init-open-recentf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "init-open-recentf"; - ename = "init-open-recentf"; - version = "20161206.645"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "init-open-recentf.el"; - rev = "5b0e1053bb4b3fa755d3b2e4f3edf0c16b8eacfe"; - sha256 = "1y6avl71lmbj5f0wprkkw5f252jhcf3nihbr460wlp3nlvhsxgan"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4db8b6eced50726c788d7343137f6b4558575abf/recipes/init-open-recentf"; - sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/init-open-recentf"; - license = lib.licenses.free; - }; - }) {}; - initsplit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "initsplit"; - ename = "initsplit"; - version = "20160919.1118"; - src = fetchFromGitHub { - owner = "dabrahams"; - repo = "initsplit"; - rev = "c941d436eb2b10b01c76a582c5a2b23fb30751aa"; - sha256 = "0vz0pfm2m3v0zk65b4ikk6yfpk282nzbm99fbzj8w76yfg240dfn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a908c8fad08cd4d7dbb586570d0f0b384bf9071/recipes/initsplit"; - sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/initsplit"; - license = lib.licenses.free; - }; - }) {}; - ink-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ink-mode"; - ename = "ink-mode"; - version = "20160814.416"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "ink-mode"; - rev = "e35f26abbaf8ea23c5aa0a0c7ef15334cdfb7b48"; - sha256 = "0ixqgk101gnm2q6f2bjk2pnqlrj41krqz56lss6fmf81xhxavmpp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ink-mode"; - sha256 = "02q95xay6z56i4l0j24dszxnfpjbxijlj4150nsadbv55m7nnjcf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ink-mode"; - license = lib.licenses.free; - }; - }) {}; - inkpot-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inkpot-theme"; - ename = "inkpot-theme"; - version = "20181118.2306"; - src = fetchFromGitHub { - owner = "ideasman42"; - repo = "emacs-inkpot-theme"; - rev = "054c125b49247a08af5a391992817776fd0e8af6"; - sha256 = "06g4xsirag4gjd9khii4yhca29g5z9507lyyxxk35k36ckarg07i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd3e02aaf8865d8038b9c590c8545e7a1b21d620/recipes/inkpot-theme"; - sha256 = "1m3iygb8vbqcnsxsnwr7g2mq1n2a9r7qxp3pgm1fpwz1lngvaagf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inkpot-theme"; - license = lib.licenses.free; - }; - }) {}; - inline-crypt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inline-crypt"; - ename = "inline-crypt"; - version = "20170824.200"; - src = fetchFromGitHub { - owner = "Sodel-the-Vociferous"; - repo = "inline-crypt-el"; - rev = "af4981c613bfd355d5ef34da1995a8384f167fd9"; - sha256 = "119ns1a0v222wyysrf07cx94adrm26fhci530gnfc6xy5vaf24k7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b04fffe5e52f26e92930a112a64531228f94e340/recipes/inline-crypt"; - sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inline-crypt"; - license = lib.licenses.free; - }; - }) {}; - inline-docs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inline-docs"; - ename = "inline-docs"; - version = "20170522.2150"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "inline-docs.el"; - rev = "b57f1681be6147f999cdc12abff414a0442e8897"; - sha256 = "0ji8qgscs4fxp2i29l3v8z9y6i2glga6bysbcsn855pqsn00xkcv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/inline-docs"; - sha256 = "1imjcx4qgrs5llindgmnvkb73fagnlxfg04s72kckgcy47c4352p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/inline-docs"; - license = lib.licenses.free; - }; - }) {}; - inlineR = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inlineR"; - ename = "inlineR"; - version = "20120520.732"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "inlineR.el"; - rev = "29357186beca825e3d0451b700ec09b9ed65e37b"; - sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a7228e5f23a4e66f4510b2f6fc41c36aa791991/recipes/inlineR"; - sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inlineR"; - license = lib.licenses.free; - }; - }) {}; - insert-shebang = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "insert-shebang"; - ename = "insert-shebang"; - version = "20180403.514"; - src = fetchFromGitHub { - owner = "psachin"; - repo = "insert-shebang"; - rev = "7bfea92ba1dae9d13d442e2f84f9fb6c05a0a9bd"; - sha256 = "01f2p58qsny7p9l6vrra0i2m2g1k05p39m0bzi906zm5awx7l0rr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c257f4f5011cd7d0b2a5ef3adf13f9871bf0be92/recipes/insert-shebang"; - sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/insert-shebang"; - license = lib.licenses.free; - }; - }) {}; - insfactor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "insfactor"; - ename = "insfactor"; - version = "20141116.1602"; - src = fetchFromGitHub { - owner = "duelinmarkers"; - repo = "insfactor.el"; - rev = "7ef5446cebb08a17d4106d2e6f3c053e49e1e829"; - sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a76a6498c2a0b0d471d3df7ae3d510d027f08c/recipes/insfactor"; - sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/insfactor"; - license = lib.licenses.free; - }; - }) {}; - instapaper = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "instapaper"; - ename = "instapaper"; - version = "20130104.621"; - src = fetchhg { - url = "https://bitbucket.com/jfm/emacs-instapaper"; - rev = "8daa0058ede7"; - sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/instapaper"; - sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/instapaper"; - license = lib.licenses.free; - }; - }) {}; - intel-hex-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "intel-hex-mode"; - ename = "intel-hex-mode"; - version = "20180422.1731"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "intel-hex-mode"; - rev = "e83c94e1c31a8435a88b3ae395f2bc842ef83217"; - sha256 = "0jpc6wh3agdh38wdjr1x880iiaj6698nr8dkgx114fsfj1la6f7v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1bf82134671b1383f5f4d4a3c180081bea66814/recipes/intel-hex-mode"; - sha256 = "02ffbrkr3zajqhrxc3grmqm632ji4fmgnfabn42islpcfq12q3i4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/intel-hex-mode"; - license = lib.licenses.free; - }; - }) {}; - intellij-theme = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "intellij-theme"; - ename = "intellij-theme"; - version = "20171017.715"; - src = fetchFromGitLab { - owner = "fommil"; - repo = "emacs-intellij-theme"; - rev = "1bbfff8e6742d18e9b77ed796f44da3b7bd10606"; - sha256 = "0ml1gi2cn6h3xm5c78vxwv327r0rgimia1vqqi9jb09yb6lckbgj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cfe86071b2e84929476a771da99341f4a73cfd06/recipes/intellij-theme"; - sha256 = "1g8cninmq840sl8fmhq2hcsmz7nccbjmprzcl8w1zdavfp86b97g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/intellij-theme"; - license = lib.licenses.free; - }; - }) {}; - interaction-log = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "interaction-log"; - ename = "interaction-log"; - version = "20160305.501"; - src = fetchFromGitHub { - owner = "michael-heerdegen"; - repo = "interaction-log.el"; - rev = "0f2d773269d1f7b93c9281226719113f5410cbd0"; - sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b72951c339c601350a7f10aee05a7fb94bac37ea/recipes/interaction-log"; - sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/interaction-log"; - license = lib.licenses.free; - }; - }) {}; - interleave = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "interleave"; - ename = "interleave"; - version = "20171003.2324"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "interleave"; - rev = "87549df30cbc681baf86b238bd14c7cf7ec11fc4"; - sha256 = "07430hsyq9q90rjzxq7ifq4mlfc8k8b7l6b31s7xk1xm2snbky6b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2/recipes/interleave"; - sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/interleave"; - license = lib.licenses.free; - }; - }) {}; - intero = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "intero"; - ename = "intero"; - version = "20190530.608"; - src = fetchFromGitHub { - owner = "commercialhaskell"; - repo = "intero"; - rev = "188211d1238a108ea47ab93216d0ae9c4a426dee"; - sha256 = "0y00iwd7vv14jzlfq733gld22rbz8xqzcgrzj21np6nhkrfxyjlx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; - sha256 = "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99"; - name = "recipe"; - }; - packageRequires = [ company emacs flycheck haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/intero"; - license = lib.licenses.free; - }; - }) {}; - interval-list = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "interval-list"; - ename = "interval-list"; - version = "20150327.1018"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "interval-list"; - rev = "38af7ecf0a493ad8f487074938a2a115f3531177"; - sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afee0fed80f4fa444116b12653c034d760f5f1fb/recipes/interval-list"; - sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/interval-list"; - license = lib.licenses.free; - }; - }) {}; - interval-tree = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "interval-tree"; - ename = "interval-tree"; - version = "20130325.707"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "interval-tree"; - rev = "301302f480617091cf3ab6989caac385d52543dc"; - sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca0f4b62aee7ff7c4457da29fd25860a5c768319/recipes/interval-tree"; - sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/interval-tree"; - license = lib.licenses.free; - }; - }) {}; - inverse-acme-theme = callPackage ({ autothemer - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inverse-acme-theme"; - ename = "inverse-acme-theme"; - version = "20170822.1954"; - src = fetchFromGitHub { - owner = "dcjohnson"; - repo = "inverse-acme-theme"; - rev = "74d6f3e2f6534371509dd2d77006435156c276d6"; - sha256 = "15fk60ky8kbj665yjylmgc4nn4qsk57fvarqzwv3fns64yfshkv3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1c44dbc8d3ca29d8715af755b845af7236e95406/recipes/inverse-acme-theme"; - sha256 = "03g6h8dpn42qnr593ryhj22lj1h2nx4rdr1knhkvxygfv3c4lgh5"; - name = "recipe"; - }; - packageRequires = [ autothemer cl-lib ]; - meta = { - homepage = "https://melpa.org/#/inverse-acme-theme"; - license = lib.licenses.free; - }; - }) {}; - io-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "io-mode"; - ename = "io-mode"; - version = "20161004.56"; - src = fetchFromGitHub { - owner = "superbobry"; - repo = "io-mode"; - rev = "fd65ae769093defcf554d6d637eba6e6dfc29f56"; - sha256 = "1x3j4asbczfr9vrqd7bms57ngqzaik73sm2njcgjshf9c3js3aa9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29ac993c86f992a452784c75c1511d15c4718c91/recipes/io-mode"; - sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/io-mode"; - license = lib.licenses.free; - }; - }) {}; - io-mode-inf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "io-mode-inf"; - ename = "io-mode-inf"; - version = "20140128.1134"; - src = fetchFromGitHub { - owner = "slackorama"; - repo = "io-emacs"; - rev = "6dd2bac3fd87484bb7d97e135b06c29d70b444b6"; - sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df121fc9f71af1d060c83555ec611c422cbe8d0d/recipes/io-mode-inf"; - sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/io-mode-inf"; - license = lib.licenses.free; - }; - }) {}; - ioccur = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ioccur"; - ename = "ioccur"; - version = "20130821.2248"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "ioccur"; - rev = "2e4f83ba72bc7d0225606176de2ef7a970ca301c"; - sha256 = "111rrn1l2k40bfpcf6d9n06vhlhxhv3718kgd40ksrqz97pzq0dx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/308c27227795560adf8c979ba1d046286549843d/recipes/ioccur"; - sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ioccur"; - license = lib.licenses.free; - }; - }) {}; - iodine-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iodine-theme"; - ename = "iodine-theme"; - version = "20151031.939"; - src = fetchFromGitHub { - owner = "srdja"; - repo = "iodine-theme"; - rev = "02fb780e1d8d8a6b9c709bfac399abe1665c6999"; - sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6893ce6309f1e3b3457c99e84611044e653b827a/recipes/iodine-theme"; - sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/iodine-theme"; - license = lib.licenses.free; - }; - }) {}; - ipcalc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ipcalc"; - ename = "ipcalc"; - version = "20170926.105"; - src = fetchFromGitHub { - owner = "dotemacs"; - repo = "ipcalc.el"; - rev = "2720f7e3e662e04e195f8338b81a499cf321296a"; - sha256 = "1kmqbb9ca3sca59462ha21grbgxkl4wynz2lr4yqb4qk7cijgd6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ipcalc"; - sha256 = "0hw5g30pnqwzvbhf6kggyj6wij5iw7d8jgmr88pyw63kxach8vkv"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ipcalc"; - license = lib.licenses.free; - }; - }) {}; - iplayer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iplayer"; - ename = "iplayer"; - version = "20161120.1320"; - src = fetchFromGitHub { - owner = "csrhodes"; - repo = "iplayer-el"; - rev = "b788fffa4b36bbd558047ffa6be51b1f0f462f23"; - sha256 = "0x82mxbc6f5azzg7c4zrxz1q763k8i3y1kfb79xfspb2i64dgg5g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a97667365f1c30f53a6aeeb7b909a78888eb1/recipes/iplayer"; - sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iplayer"; - license = lib.licenses.free; - }; - }) {}; - ipretty = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ipretty"; - ename = "ipretty"; - version = "20180605.2222"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/ipretty.git"; - rev = "042f5cc4e6f81d59115e8335c582bb5c571c2585"; - sha256 = "0vk8k4zfqa0869fg1kzbzzgz65xg7six5m4jm8088pb2nvfn1lrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/ipretty"; - sha256 = "0nlp7xmgqsipdq8xjld0xpw3q3qlxm31r2k52hxs32rx044y6c71"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ipretty"; - license = lib.licenses.free; - }; - }) {}; - ipython-shell-send = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ipython-shell-send"; - ename = "ipython-shell-send"; - version = "20190220.1446"; - src = fetchFromGitHub { - owner = "jackkamm"; - repo = "ipython-shell-send-el"; - rev = "0faed86faff02a361f23ce5fc923d0e9b09bb2da"; - sha256 = "1nx92rmxgrxy9hfi7f2ny3q4zqrzy6jalr85lall7r74aifprrkv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d3513d38f94de4d86124b5d5a33be8d5f0bfa43/recipes/ipython-shell-send"; - sha256 = "07im2f3890yxpcy4qz1bihi68aslam7qir4vqf05bhqlgaqzamv8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ipython-shell-send"; - license = lib.licenses.free; - }; - }) {}; - iqa = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iqa"; - ename = "iqa"; - version = "20181024.1553"; - src = fetchFromGitHub { - owner = "a13"; - repo = "iqa.el"; - rev = "b45614f5204ed851de0abe93907aa94de5e37379"; - sha256 = "11wrmiwlp91x59cn9k2j2pqgvzbrnzvf81dqgm9l5ph5fym0jqsd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9bd2e952d98f7ac2dc823581b07b65e951e9e45/recipes/iqa"; - sha256 = "02yrkizk4ssip44s6r62finsrf45hxj9cpil1xrvh8g4jbsmfsw4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/iqa"; - license = lib.licenses.free; - }; - }) {}; - ir-black-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ir-black-theme"; - ename = "ir-black-theme"; - version = "20130302.2355"; - src = fetchFromGitHub { - owner = "jmdeldin"; - repo = "ir-black-theme.el"; - rev = "ee6078bc67cbc15184e64e0f1fc8542d4079d55f"; - sha256 = "0yha2623zfy9q97y48v6fgg20ghig9zdlv80s30iqj9lwaf3v2md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e725582bc322d03c9dca2b22e8606444fd8753c/recipes/ir-black-theme"; - sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ir-black-theme"; - license = lib.licenses.free; - }; - }) {}; - iregister = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iregister"; - ename = "iregister"; - version = "20150515.1407"; - src = fetchFromGitHub { - owner = "atykhonov"; - repo = "iregister.el"; - rev = "6a48c66187289de5f300492be11c83e98410c018"; - sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a12a51873444b84765758e18c9cf24d85a200e44/recipes/iregister"; - sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iregister"; - license = lib.licenses.free; - }; - }) {}; - irony = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "irony"; - ename = "irony"; - version = "20190516.1648"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "irony-mode"; - rev = "c3ae899b61124a747ebafc705086345e460ac08e"; - sha256 = "06ld83vzyklfmrfi6pp893mvlnhacv9if75c9pbipjvy6nwfb63r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony"; - sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; - name = "recipe"; - }; - packageRequires = [ cl-lib json ]; - meta = { - homepage = "https://melpa.org/#/irony"; - license = lib.licenses.free; - }; - }) {}; - irony-eldoc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "irony-eldoc"; - ename = "irony-eldoc"; - version = "20170502.1208"; - src = fetchFromGitHub { - owner = "ikirill"; - repo = "irony-eldoc"; - rev = "0df5831eaae264a25422b061eb2792aadde8b3f2"; - sha256 = "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc42459d5c1671bd478d781339f2572b3de2e7d0/recipes/irony-eldoc"; - sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs irony ]; - meta = { - homepage = "https://melpa.org/#/irony-eldoc"; - license = lib.licenses.free; - }; - }) {}; - isearch-dabbrev = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isearch-dabbrev"; - ename = "isearch-dabbrev"; - version = "20141223.2222"; - src = fetchFromGitHub { - owner = "Dewdrops"; - repo = "isearch-dabbrev"; - rev = "1efe7abba4923015cbc2462395deaec5446a9cc8"; - sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9dfc7c1112bac8744910c58f77a98a901fd8065/recipes/isearch-dabbrev"; - sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/isearch-dabbrev"; - license = lib.licenses.free; - }; - }) {}; - isearch-project = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isearch-project"; - ename = "isearch-project"; - version = "20190505.119"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "isearch-project"; - rev = "462b8100451b947367aed2970c2669ea6d15edbd"; - sha256 = "0b8ncpi6kps7fx3fmgfwd2czaal52laf2k6pn46yh110sz6dl30m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4f0a2f3080e9f4db82fb2bb9279418e4b9a7e2/recipes/isearch-project"; - sha256 = "0f6f3lm5p4h8z9bnhbl27pzgwdjj58pp8lsvc5dic0yzykx7j2y8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/isearch-project"; - license = lib.licenses.free; - }; - }) {}; - isearch-symbol-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isearch-symbol-at-point"; - ename = "isearch-symbol-at-point"; - version = "20130728.1521"; - src = fetchFromGitHub { - owner = "re5et"; - repo = "isearch-symbol-at-point"; - rev = "51a1029bec1ec414885f9edb7e5947603dffdab2"; - sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5733de00a1800645674e83c5e21c80f2890c4e7c/recipes/isearch-symbol-at-point"; - sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/isearch-symbol-at-point"; - license = lib.licenses.free; - }; - }) {}; - isend-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isend-mode"; - ename = "isend-mode"; - version = "20190201.32"; - src = fetchFromGitHub { - owner = "ffevotte"; - repo = "isend-mode.el"; - rev = "94184d5eb4a7f96e60351d2580eb0d20f22ab72d"; - sha256 = "1wn7ji76pp2xpfh4yiayll5b0wlfxkb11bgk24hpx22bhjnw3ivj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ef6e4dab78a4c333647a85ed07a81da8083ec0c/recipes/isend-mode"; - sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/isend-mode"; - license = lib.licenses.free; - }; - }) {}; - isgd = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isgd"; - ename = "isgd"; - version = "20150414.236"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "isgd.el"; - rev = "764306dadd5a9213799081a48aba22f7c75cca9a"; - sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ff75b269fd57c5822277b9ed850c69b626f1a5/recipes/isgd"; - sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/isgd"; - license = lib.licenses.free; - }; - }) {}; - isolate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isolate"; - ename = "isolate"; - version = "20190205.1929"; - src = fetchFromGitHub { - owner = "casouri"; - repo = "isolate"; - rev = "3bb82f52b0df39c9b57fb68ba622b2906d0eecff"; - sha256 = "00h9d6d6l8cxih8ix6kckc6dhzmq9hbfmgfmfpmf6f67c4ikcv8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8091f8d72c24a103f6dcaadc18bbec745c1c3d3/recipes/isolate"; - sha256 = "1ldyvw01nq2ynxaaqmw9ihk9kwfss9rqpaydn9f41bqj15xrypjc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/isolate"; - license = lib.licenses.free; - }; - }) {}; - isortify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic }: - melpaBuild { - pname = "isortify"; - ename = "isortify"; - version = "20190315.1304"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "isortify"; - rev = "4d8ecfcadf58ea51368e66ecf6f2a95a95953fcf"; - sha256 = "0gslib1r9d9dqd9r89dfg8npkybjw2bjdrbs0z2qcnfa82x4fq4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d4ad18492e7f4a56a1515873bc0b66fa49829bb/recipes/isortify"; - sha256 = "0nlpjd6mrhv8iccdny0x5lb41dpyp6l7kiax4xqra0rb2vq0chcs"; - name = "recipe"; - }; - packageRequires = [ emacs pythonic ]; - meta = { - homepage = "https://melpa.org/#/isortify"; - license = lib.licenses.free; - }; - }) {}; - iss-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iss-mode"; - ename = "iss-mode"; - version = "20141001.1213"; - src = fetchFromGitHub { - owner = "rasmus-toftdahl-olesen"; - repo = "iss-mode"; - rev = "3b517aff31529bab33f8d7b562bd17aff0107fd1"; - sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ecc9f618b9f065f593b91c1c1221a550ab752bae/recipes/iss-mode"; - sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iss-mode"; - license = lib.licenses.free; - }; - }) {}; - itail = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "itail"; - ename = "itail"; - version = "20171112.4"; - src = fetchFromGitHub { - owner = "re5et"; - repo = "itail"; - rev = "6e43c20da03be3b9c6ece93b7dc3495975ec1888"; - sha256 = "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b810bf1deeb79064144d8b684fab336686018ef/recipes/itail"; - sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/itail"; - license = lib.licenses.free; - }; - }) {}; - itasca = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "itasca"; - ename = "itasca"; - version = "20170601.922"; - src = fetchFromGitHub { - owner = "jkfurtney"; - repo = "itasca-emacs"; - rev = "3d15dd1b70d6db69b0f4758a3e28b8b506cc84ca"; - sha256 = "0mfcl7ka7r5mx52xvf13i3799ddkdi9sq2q4p2rkgb96r37ia221"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/itasca"; - sha256 = "0j0lvs9x2j3z5yyhbgmymccswi40vv1gz3sl56bl857m1hlxzshz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/itasca"; - license = lib.licenses.free; - }; - }) {}; - iter2 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iter2"; - ename = "iter2"; - version = "20190113.624"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "iter2"; - rev = "fc1fcea5379bc7728a25dd81546886213e3db6fa"; - sha256 = "1gvm5gfgmcw4mibi8899x9ry1zqm3ij6yl0dnmdqmv9dbv1zlqp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d94316660051ee0ba0c12e380e6203986440368f/recipes/iter2"; - sha256 = "0kl3z2wwpvk2ddsb3798g41pv0xycsf9dclhv00snpzsr61d9v65"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/iter2"; - license = lib.licenses.free; - }; - }) {}; - iterator = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iterator"; - ename = "iterator"; - version = "20170207.38"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "iterator"; - rev = "9da54f9aed945b46866782cdf962c9e530419297"; - sha256 = "0r50hdyr9s18p7ggiyv36g011jgg47bgszvjgcmpp23rz131mxyw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66aa4c3b43083a0098ee3163005dcc36d7251146/recipes/iterator"; - sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/iterator"; - license = lib.licenses.free; - }; - }) {}; - ivariants = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivs-edit - , lib - , melpaBuild }: - melpaBuild { - pname = "ivariants"; - ename = "ivariants"; - version = "20170822.1924"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "emacs-ivariants"; - rev = "ca0b74d32b5d2d77a45cc6ad6edc00be0ee85284"; - sha256 = "16hygfx9gla6yhc3kaiy4m6g910m1hak3v86fnpf12kzvjjs9zfx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ivariants"; - sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw"; - name = "recipe"; - }; - packageRequires = [ emacs ivs-edit ]; - meta = { - homepage = "https://melpa.org/#/ivariants"; - license = lib.licenses.free; - }; - }) {}; - ivs-edit = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ivs-edit"; - ename = "ivs-edit"; - version = "20170818.741"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "ivs-edit"; - rev = "5db39c234aa7393b591168a4fd0a9a4cbbca347d"; - sha256 = "1sdl83cf87zbv0ynvb6qlgbpm4d3dqhdn84jhhs5j247r5qzhmz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ivs-edit"; - sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/ivs-edit"; - license = lib.licenses.free; - }; - }) {}; - ivy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy"; - ename = "ivy"; - version = "20190605.537"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "ef6d3dbe0fbc797e622fb7b5dd5f290ed3cc5ca7"; - sha256 = "1r4j9xvm1gdqbnylpgjl7bx1ssnhjpxkljia4av24qm9rf7ki0vf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; - sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ivy"; - license = lib.licenses.free; - }; - }) {}; - ivy-bibtex = callPackage ({ biblio - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsebib - , s - , swiper }: - melpaBuild { - pname = "ivy-bibtex"; - ename = "ivy-bibtex"; - version = "20190430.1118"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "helm-bibtex"; - rev = "e1391a4be629b506f06d678bcdfd17d290904482"; - sha256 = "11922djfvz32h6bv8gdzhpm7ddxw5gsdphjvjxa7cr2zj7x9nhx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex"; - sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2"; - name = "recipe"; - }; - packageRequires = [ biblio cl-lib dash f parsebib s swiper ]; - meta = { - homepage = "https://melpa.org/#/ivy-bibtex"; - license = lib.licenses.free; - }; - }) {}; - ivy-dired-history = callPackage ({ cl-lib ? null - , counsel - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-dired-history"; - ename = "ivy-dired-history"; - version = "20170625.2256"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "ivy-dired-history"; - rev = "c9c67ea1ee5e68443f0e6006ba162d6c8d868b69"; - sha256 = "1lim9zi57w011df5zppb18yjkaxkgfy796pc6i01p4dl32x0rpfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad37f6b04ff45fbffeadefc94db16baa27bcc2ac/recipes/ivy-dired-history"; - sha256 = "1vj073k5m0l8rx9iiisikzl053ad9mlhvbk30f5zmw9sw7b9blyl"; - name = "recipe"; - }; - packageRequires = [ cl-lib counsel ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-dired-history"; - license = lib.licenses.free; - }; - }) {}; - ivy-erlang-complete = callPackage ({ async - , counsel - , emacs - , erlang - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-erlang-complete"; - ename = "ivy-erlang-complete"; - version = "20190406.1036"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "ivy-erlang-complete"; - rev = "f3a7088ba62746932ac0084e254e4235b93febcc"; - sha256 = "0sdxcx1ihb51khi5chdm80mzwh8ygfs86pndgh5gq8dzbqpi2ax4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac1b9e350d3f066e4e56202ebb443134d5fc3669/recipes/ivy-erlang-complete"; - sha256 = "00fqjgrhvcn3ibpgiy4b0sr4x9p6ym5r1rvi4rdzsw2i3nxmgf3a"; - name = "recipe"; - }; - packageRequires = [ async counsel emacs erlang ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-erlang-complete"; - license = lib.licenses.free; - }; - }) {}; - ivy-explorer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-explorer"; - ename = "ivy-explorer"; - version = "20190318.908"; - src = fetchFromGitHub { - owner = "clemera"; - repo = "ivy-explorer"; - rev = "5bf3b915bdb78f58fc657e616262d967266a4500"; - sha256 = "1nfabcphfsbza4zrw4f23ajv6bh4jrma0k9ygphv7pzg7hc48jf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b590a6e0d11fda3d93e4d92f847138f8968b332/recipes/ivy-explorer"; - sha256 = "088ciy051b3kcd6anm66fnkg510c72hrfgdbgdf4mb9z4d9bk056"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-explorer"; - license = lib.licenses.free; - }; - }) {}; - ivy-feedwrangler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-feedwrangler"; - ename = "ivy-feedwrangler"; - version = "20180618.822"; - src = fetchFromGitHub { - owner = "asimpson"; - repo = "ivy-feedwrangler"; - rev = "051eac49cae32b16fab2e06ff0115cd8fb5dc499"; - sha256 = "1irp76kbg8d7wmgvfjbb4c3wmd29bdrl503jkq4w52fl57g94cvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf1c112939545f6d157111eabcb573738b09ef7c/recipes/ivy-feedwrangler"; - sha256 = "1mxm37biix8c0s32gfv4pidffvlgdz5i9325zk71fhgfzqwkf5vx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ivy-feedwrangler"; - license = lib.licenses.free; - }; - }) {}; - ivy-gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , gitlab - , ivy - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ivy-gitlab"; - ename = "ivy-gitlab"; - version = "20181228.26"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "8c2324c02119500f094c2f92dfaba4c9977ce1ba"; - sha256 = "056c4fb5sj2y4h94klx2g24n1g3qdi7ifzs8ksw5v6hcj9lrkb1n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35d4d4f22e4c567954287b2a1cabcb595497095a/recipes/ivy-gitlab"; - sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y"; - name = "recipe"; - }; - packageRequires = [ dash gitlab ivy s ]; - meta = { - homepage = "https://melpa.org/#/ivy-gitlab"; - license = lib.licenses.free; - }; - }) {}; - ivy-historian = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flx - , historian - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-historian"; - ename = "ivy-historian"; - version = "20190110.1913"; - src = fetchFromGitHub { - owner = "PythonNut"; - repo = "historian.el"; - rev = "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a"; - sha256 = "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb79cbc9af6cd443b9de97817d24bcc9050d5940/recipes/ivy-historian"; - sha256 = "0yzq3rr51q5d64pfc7x5jszz77x6nwpbjj0g74x5ga3bsw3i67d9"; - name = "recipe"; - }; - packageRequires = [ emacs flx historian ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-historian"; - license = lib.licenses.free; - }; - }) {}; - ivy-hydra = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-hydra"; - ename = "ivy-hydra"; - version = "20190328.845"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "c56ad2a551d8915525201590ef38a658bbeeb54b"; - sha256 = "0fmi5dk30xa6ra6br09abxhvha8rx9l28qkajfj5namk5id3s388"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; - sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx"; - name = "recipe"; - }; - packageRequires = [ emacs hydra ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-hydra"; - license = lib.licenses.free; - }; - }) {}; - ivy-lobsters = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-lobsters"; - ename = "ivy-lobsters"; - version = "20171202.1241"; - src = fetchFromGitHub { - owner = "julienXX"; - repo = "ivy-lobsters"; - rev = "4364df4b3685fd1b50865ac9360fb948c0288dd1"; - sha256 = "1cfcy2ks0kb04crwlfp02052zcwg384cgz7xjyafwqynm77d35l0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9774fbf133ce8db3ce996b1a40c586309a2fec6/recipes/ivy-lobsters"; - sha256 = "1g8bwlh4nls21k16r1pmqmb633j19h3jnjbfl2vixyrh2na8ff1w"; - name = "recipe"; - }; - packageRequires = [ cl-lib ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-lobsters"; - license = lib.licenses.free; - }; - }) {}; - ivy-mpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , libmpdel - , melpaBuild - , mpdel }: - melpaBuild { - pname = "ivy-mpdel"; - ename = "ivy-mpdel"; - version = "20190428.220"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "ivy-mpdel"; - rev = "a42dcc943914c71975c115195d38c739f25e475c"; - sha256 = "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel"; - sha256 = "1v9xiy4bs7r24li6fwi5dfqav8dfr3dy0xhj3wnzvcgwxp5ji56r"; - name = "recipe"; - }; - packageRequires = [ emacs ivy libmpdel mpdel ]; - meta = { - homepage = "https://melpa.org/#/ivy-mpdel"; - license = lib.licenses.free; - }; - }) {}; - ivy-omni-org = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-omni-org"; - ename = "ivy-omni-org"; - version = "20190420.538"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "ivy-omni-org"; - rev = "7e51f8a1643d44eb930e1a04f11eb381ac6b8d92"; - sha256 = "06jfg12afcn3kpd7l0ymp72pbpc5059rvqbpmzpjbr0yswxwzmq4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4eaad7323462d6c7fd343ede0d2df8c67885e542/recipes/ivy-omni-org"; - sha256 = "1mxdglp0frplv75bik2fl2ybbl0yqfd5r70alcgx1zmba18kaj20"; - name = "recipe"; - }; - packageRequires = [ dash emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-omni-org"; - license = lib.licenses.free; - }; - }) {}; - ivy-pages = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-pages"; - ename = "ivy-pages"; - version = "20160728.1220"; - src = fetchFromGitHub { - owner = "igorepst"; - repo = "ivy-pages"; - rev = "428a901f94c9625c8407fd2bf76f9d7714d40d87"; - sha256 = "11lcv8dqlmfqvhn7n3wfp9idr5hf30312p213y5pvs4m70lbc9k2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93f1183beb74aa4a96de8cd043a2a8eefdd7ad7e/recipes/ivy-pages"; - sha256 = "0zz8nbjma8r6r7xxbg7xfz13202d77k1ybzpib41slmljzh7xgwv"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-pages"; - license = lib.licenses.free; - }; - }) {}; - ivy-pass = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , password-store }: - melpaBuild { - pname = "ivy-pass"; - ename = "ivy-pass"; - version = "20170812.1255"; - src = fetchFromGitHub { - owner = "ecraven"; - repo = "ivy-pass"; - rev = "5b523de1151f2109fdd6a8114d0af12eef83d3c5"; - sha256 = "18crb4zh2pjf0cmv3b913m9vfng27girjwfqc3mk7vqd1r5a49yk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bfef855e071442d2b9d1e0ce9b5706937bffc53/recipes/ivy-pass"; - sha256 = "1sb29q22fsjqfxqznf73xcqhzy132bjd45w7r27sfmf825vcysci"; - name = "recipe"; - }; - packageRequires = [ emacs ivy password-store ]; - meta = { - homepage = "https://melpa.org/#/ivy-pass"; - license = lib.licenses.free; - }; - }) {}; - ivy-phpunit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , phpunit }: - melpaBuild { - pname = "ivy-phpunit"; - ename = "ivy-phpunit"; - version = "20180219.115"; - src = fetchFromGitHub { - owner = "12pt"; - repo = "ivy-phpunit"; - rev = "ffedb0138d36564e8e36a28fd9bc71ea8944681f"; - sha256 = "0kf1k3jqg2r20x985h6brg92sg7y47c5vkfjky8xp11gqyqw47bi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93822c5588f81683e3d43f690785b80c207d331d/recipes/ivy-phpunit"; - sha256 = "1spvcf41lvjdmiwp6058wrpp0hfg1cjld6b7zm28m2ys6mn35ycs"; - name = "recipe"; - }; - packageRequires = [ emacs ivy phpunit ]; - meta = { - homepage = "https://melpa.org/#/ivy-phpunit"; - license = lib.licenses.free; - }; - }) {}; - ivy-posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , posframe }: - melpaBuild { - pname = "ivy-posframe"; - ename = "ivy-posframe"; - version = "20190605.1738"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "ivy-posframe"; - rev = "f5da408348f577c4828f61ccc7e02c123fd4a1df"; - sha256 = "13yn9xdv638xlfv2wxnmslc7x6k6082ibaa3vrwdf0c0jx9qv7yd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e7c6f7ca439683abf11dcaa38672ac139c0da4f/recipes/ivy-posframe"; - sha256 = "1sv4xvdvb1g8g5m4f1f159lxbxaz96drsmvhh0k43hp1dh3bhj3b"; - name = "recipe"; - }; - packageRequires = [ emacs ivy posframe ]; - meta = { - homepage = "https://melpa.org/#/ivy-posframe"; - license = lib.licenses.free; - }; - }) {}; - ivy-prescient = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , prescient }: - melpaBuild { - pname = "ivy-prescient"; - ename = "ivy-prescient"; - version = "20190523.1034"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "ae414dde56f3430867faf41c04e4c3df75f9c960"; - sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a92495d09689932ab9f0b716078ceeeb9cc154e0/recipes/ivy-prescient"; - sha256 = "017ibpbj390q5d051k3wn50774wvcixzbwikvi5ifzqkhgixqk9c"; - name = "recipe"; - }; - packageRequires = [ emacs ivy prescient ]; - meta = { - homepage = "https://melpa.org/#/ivy-prescient"; - license = lib.licenses.free; - }; - }) {}; - ivy-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , window-purpose }: - melpaBuild { - pname = "ivy-purpose"; - ename = "ivy-purpose"; - version = "20160724.303"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "ivy-purpose"; - rev = "0495f2f3aed64d7e0028125e76a9a68f8fc4107e"; - sha256 = "1hiw7mnrr0cnnp0a2mh837pzdaknadwv0sk82vya6blx0a7m691g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1fa2a37a1a6492eddf638216acec4b9d54d3498d/recipes/ivy-purpose"; - sha256 = "0c5n7x3sa57wslwnldvc0i315xhyi1zndyhr07rzka1rhj8v1c4v"; - name = "recipe"; - }; - packageRequires = [ emacs ivy window-purpose ]; - meta = { - homepage = "https://melpa.org/#/ivy-purpose"; - license = lib.licenses.free; - }; - }) {}; - ivy-rich = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-rich"; - ename = "ivy-rich"; - version = "20190603.1719"; - src = fetchFromGitHub { - owner = "Yevgnen"; - repo = "ivy-rich"; - rev = "f6bfa293c6df0b43cc411876b665816ec3f03d08"; - sha256 = "1s8nwwb1z6lkc58g02pi8w99qms948k8d02lw8k8cq47dw87i219"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/ivy-rich"; - sha256 = "1il1lhxxg694j9w65qwzjm4p4l3q1h1hfndybj6z1cb72ijw27fr"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-rich"; - license = lib.licenses.free; - }; - }) {}; - ivy-rtags = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "ivy-rtags"; - ename = "ivy-rtags"; - version = "20170522.2154"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "7e6b6f21935eedbe4678ba91c5531ac162b51a5a"; - sha256 = "12629d1s8rplhjh17n3bmgnkpscq4gljgyl84j8qyhh40dwq1qk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; - sha256 = "18f0jak643dd8lmx701wgk95miajabd8190ls35831slr28lqxsq"; - name = "recipe"; - }; - packageRequires = [ ivy rtags ]; - meta = { - homepage = "https://melpa.org/#/ivy-rtags"; - license = lib.licenses.free; - }; - }) {}; - ivy-todo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-todo"; - ename = "ivy-todo"; - version = "20171208.809"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "ivy-todo"; - rev = "964e347cea1a6097854d7113f5b07f6c5ef81df0"; - sha256 = "07208qdk1a77dgh9qmpn164x5mgkzvprsdvb7y35ax12r2q541b8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ivy-todo"; - sha256 = "06mn430zkisnqrmad81gn88pl7lz0m8rm1yvpngpakwwnhwm0q96"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-todo"; - license = lib.licenses.free; - }; - }) {}; - ivy-xcdoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-xcdoc"; - ename = "ivy-xcdoc"; - version = "20160917.355"; - src = fetchFromGitHub { - owner = "hex2010"; - repo = "emacs-ivy-xcdoc"; - rev = "fbf264b0746182567b17fd7409fff8eed3658c71"; - sha256 = "1y55p3qaz054lxb7q8vq00h3spyfbc9xnilm26b4vcps5y0limp6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2fd855c098ca65293d84c3b526b0c39f7b07ade/recipes/ivy-xcdoc"; - sha256 = "1my45325ys2m2l5y8pmi5jnbplqm16b1n7zll37163vv16zwnd53"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-xcdoc"; - license = lib.licenses.free; - }; - }) {}; - ivy-xref = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-xref"; - ename = "ivy-xref"; - version = "20180821.511"; - src = fetchFromGitHub { - owner = "alexmurray"; - repo = "ivy-xref"; - rev = "61864f82e554121be0a26ba0a1d8f48b669dd5f0"; - sha256 = "0cgl8lzw0rzswqsl8wk6b39bm2781mwvz3qwm06r2n3kjy7c79b4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4cd8724e8a4119b61950a97b88219bf56ce3945/recipes/ivy-xref"; - sha256 = "1p5a0x83b0bc7b654j1d207s7vifffgwmp26pya2mz0czd68ywy8"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-xref"; - license = lib.licenses.free; - }; - }) {}; - ivy-yasnippet = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "ivy-yasnippet"; - ename = "ivy-yasnippet"; - version = "20181002.955"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "ivy-yasnippet"; - rev = "32580b4fd23ebf9ca7dde96704f7d53df6e253cd"; - sha256 = "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c76857d716afab46f5efe46e353935921d5f217/recipes/ivy-yasnippet"; - sha256 = "180q6hrsnkssbf9x9bj74dyy26kym4akbsjlj81x4193nnmc5w67"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ivy yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ivy-yasnippet"; - license = lib.licenses.free; - }; - }) {}; - ivy-ycmd = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , ycmd }: - melpaBuild { - pname = "ivy-ycmd"; - ename = "ivy-ycmd"; - version = "20180909.525"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ivy-ycmd"; - rev = "25bfee8f676e4ecbb645e4f30b47083410a00c58"; - sha256 = "1ywrkx8ddncy4qhv5gh4qf1cpapyvny42i51p91j9ip7xmihy6lm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22e925d1b66f53d25eb1b3a2746dea82e8555783/recipes/ivy-ycmd"; - sha256 = "0vlf75qv9m84gx83rxz0acnlx5lspq92d94q82ba2p4cc6yjyvj3"; - name = "recipe"; - }; - packageRequires = [ dash emacs ivy ycmd ]; - meta = { - homepage = "https://melpa.org/#/ivy-ycmd"; - license = lib.licenses.free; - }; - }) {}; - ivy-youtube = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "ivy-youtube"; - ename = "ivy-youtube"; - version = "20181126.239"; - src = fetchFromGitHub { - owner = "squiter"; - repo = "ivy-youtube"; - rev = "849b6db7ef02b080a86c1b887488e2935c31059a"; - sha256 = "0f90dq8qhmsnm2hvnvzyb20nq0vmgnqzqa693scq69dv5rdjgwyj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ivy-youtube"; - sha256 = "1masw9qc33valx55klfhzx0bg1hfazmn5yd9wh12q2gjsz8nxyw4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ivy request ]; - meta = { - homepage = "https://melpa.org/#/ivy-youtube"; - license = lib.licenses.free; - }; - }) {}; - ix = callPackage ({ fetchFromGitHub - , fetchurl - , grapnel - , lib - , melpaBuild }: - melpaBuild { - pname = "ix"; - ename = "ix"; - version = "20131027.929"; - src = fetchFromGitHub { - owner = "theanalyst"; - repo = "ix.el"; - rev = "47632caf925fbb3cc8633834d2d619032d039336"; - sha256 = "1j6axmi6fxcl2ja4660ygxchggm2dzjngi0k3g6pimawykvgxs3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a9d68fcf5bddbf07909b77682474dc592077051/recipes/ix"; - sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; - name = "recipe"; - }; - packageRequires = [ grapnel ]; - meta = { - homepage = "https://melpa.org/#/ix"; - license = lib.licenses.free; - }; - }) {}; - iy-go-to-char = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iy-go-to-char"; - ename = "iy-go-to-char"; - version = "20141029.846"; - src = fetchFromGitHub { - owner = "doitian"; - repo = "iy-go-to-char"; - rev = "11b2a90d10e29151d18f8997f804b745b710b040"; - sha256 = "1jgs41mf3nizjiiq64gzymjvd559mffr1agj9hvq0x42a3dwfc81"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/iy-go-to-char"; - sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iy-go-to-char"; - license = lib.licenses.free; - }; - }) {}; - j-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "j-mode"; - ename = "j-mode"; - version = "20171224.1056"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "j-mode"; - rev = "e8725ac8af95498faabb2ca3ab3bd809a8f148e6"; - sha256 = "0icrwny3cif0iwgyf9i25sj9i5gy056cn9ic2wwwbzqjqb4xg6dd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/410134ab2145adad3648b1024bfe4f6801df82c9/recipes/j-mode"; - sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/j-mode"; - license = lib.licenses.free; - }; - }) {}; - jabber = callPackage ({ fetchgit - , fetchurl - , fsm - , lib - , melpaBuild - , srv }: - melpaBuild { - pname = "jabber"; - ename = "jabber"; - version = "20180927.1625"; - src = fetchgit { - url = "https://github.com/legoscia/emacs-jabber.git"; - rev = "fff33826f42e040dad7ef64ea312d85215d3b0a1"; - sha256 = "1fif38qhiaxskfmqin82n9334bzrkgd1h5ip1djcm571i670gj74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7dbf3c2ffee5a4d71466ce037c618e0434a346/recipes/jabber"; - sha256 = "04d2jdzs3c790ms70px8xvyip1liqvd3jy2mbs8qqbwyiccb74xx"; - name = "recipe"; - }; - packageRequires = [ fsm srv ]; - meta = { - homepage = "https://melpa.org/#/jabber"; - license = lib.licenses.free; - }; - }) {}; - jabber-otr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , jabber - , lib - , melpaBuild }: - melpaBuild { - pname = "jabber-otr"; - ename = "jabber-otr"; - version = "20150918.444"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "emacs-jabber-otr"; - rev = "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0"; - sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9219f685c18c8e799cae3dc43cc1c740c0f67733/recipes/jabber-otr"; - sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0"; - name = "recipe"; - }; - packageRequires = [ emacs jabber ]; - meta = { - homepage = "https://melpa.org/#/jabber-otr"; - license = lib.licenses.free; - }; - }) {}; - jack-connect = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jack-connect"; - ename = "jack-connect"; - version = "20190311.1220"; - src = fetchgit { - url = "https://bitbucket.org/sbarbit/jack-connect"; - rev = "3be5f03ba39ffab65e974cf1624cf38588639dcb"; - sha256 = "1lb7z060jrbr0ijzif5p3qg70lg21h1a6jyzyfqfhwf2iwa3mkcj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0f5c5f8051f3046baebb08f41b0ca0bf0d73c85/recipes/jack-connect"; - sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jack-connect"; - license = lib.licenses.free; - }; - }) {}; - jade-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jade-mode"; - ename = "jade-mode"; - version = "20160525.741"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "4dbde92542fc7ad61df38776980905a4721d642e"; - sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/jade-mode"; - sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jade-mode"; - license = lib.licenses.free; - }; - }) {}; - jammer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jammer"; - ename = "jammer"; - version = "20160310.59"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "jammer"; - rev = "48aa795df6df7ae6484518bcd0398293ca49d7c6"; - sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb82a6e936e2d5d1dd5930b600ede52dac3ceb33/recipes/jammer"; - sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jammer"; - license = lib.licenses.free; - }; - }) {}; - janet-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "janet-mode"; - ename = "janet-mode"; - version = "20190604.2143"; - src = fetchFromGitHub { - owner = "ALSchwalm"; - repo = "janet-mode"; - rev = "d5555cc83c1893a1c0ea04d48857d5e71b138c06"; - sha256 = "1lzs5zh4ipvyxi5vzbcpxrdjrrb0vddbcajzcbsi0784cs3ndzkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c94abb076bf1f3fd6654cc1857b7b3cfe5bf5e58/recipes/janet-mode"; - sha256 = "1kr5ldrgqrl0hfpkf6x5a0kr0l4psykw771n5dx6ably6mnlpphh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/janet-mode"; - license = lib.licenses.free; - }; - }) {}; - japanese-holidays = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "japanese-holidays"; - ename = "japanese-holidays"; - version = "20190317.520"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "japanese-holidays"; - rev = "f04662cf1e96a2ef9fd7be43e9723fe355025d50"; - sha256 = "0zlmr48wpccd1y5xxyzfrc1n7g7j3pjnhx7v0ms57plk9wbz1yp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80088028a1322e99e5fc50bebe08fcb6d1a2a44d/recipes/japanese-holidays"; - sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/japanese-holidays"; - license = lib.licenses.free; - }; - }) {}; - japanlaw = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "japanlaw"; - ename = "japanlaw"; - version = "20160614.2343"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "japanlaw.el"; - rev = "db8825309bec3eb8c89ff29bad4ecd2f54bbef81"; - sha256 = "04hrfqbl88dqpgbqby6708q5ghgkyfgkl4awbd5dfzzs9nfbmmyk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6192e1db76f017c3b1315453144cffc47cdd495d/recipes/japanlaw"; - sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/japanlaw"; - license = lib.licenses.free; - }; - }) {}; - jape-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jape-mode"; - ename = "jape-mode"; - version = "20140903.806"; - src = fetchFromGitHub { - owner = "tanzoniteblack"; - repo = "jape-mode"; - rev = "27dbebc4de93eb887038fda7a11671349efe8dbb"; - sha256 = "0bnh5jvqjwrd5wqh1gvbx2z7sjczf8cvah9y58c2v68ia5drxb3z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b034024bd31c4be96c478a951b0ef63d8f89a1b7/recipes/jape-mode"; - sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jape-mode"; - license = lib.licenses.free; - }; - }) {}; - jar-manifest-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jar-manifest-mode"; - ename = "jar-manifest-mode"; - version = "20160430.1726"; - src = fetchFromGitHub { - owner = "omajid"; - repo = "jar-manifest-mode"; - rev = "270dae14c481300f75ed96dad3a5ae42ca928a1d"; - sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed68a9120d4f1e2895606938d1a117fb01abd1bc/recipes/jar-manifest-mode"; - sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jar-manifest-mode"; - license = lib.licenses.free; - }; - }) {}; - jasminejs-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jasminejs-mode"; - ename = "jasminejs-mode"; - version = "20150526.1705"; - src = fetchFromGitHub { - owner = "stoltene2"; - repo = "jasminejs-mode"; - rev = "23637d6718423d376eebbdaa4d6d914c7cab26ed"; - sha256 = "1p31x23cc1xjziydbphfh4pbv43703x2x0i2kz7a8c6hvka07lym"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e58e8c102f6110f9a8bda47a4601197db47e743/recipes/jasminejs-mode"; - sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jasminejs-mode"; - license = lib.licenses.free; - }; - }) {}; - jastadd-ast-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jastadd-ast-mode"; - ename = "jastadd-ast-mode"; - version = "20161219.126"; - src = fetchFromGitHub { - owner = "rudi"; - repo = "jastadd-ast-mode"; - rev = "a29fdb470cbf0a398164950a3b0d2217de48e0c0"; - sha256 = "01fv0ixkshy7i6wzcgq6xvijvh3n402vyhmh3qzjwi9p0vxvdyxv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/32d59dd9e796438f1752d36a30d4e062abbb6dd1/recipes/jastadd-ast-mode"; - sha256 = "1cwqxzmqx5wxaax12rq0hy0whpaivqncykym43p3an2sl9s6ngva"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jastadd-ast-mode"; - license = lib.licenses.free; - }; - }) {}; - java-imports = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "java-imports"; - ename = "java-imports"; - version = "20170913.710"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "emacs-java-imports"; - rev = "e96ff44ed48b362ab6227b8b802b84d84f78bcaa"; - sha256 = "0nryawj8v6gj6hnb81yf6966kjnydcz49zsg2k355gldryqf4v5p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f6f4e4c14c422c2066f2200bb9b8f35e2ecc896/recipes/java-imports"; - sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; - name = "recipe"; - }; - packageRequires = [ emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/java-imports"; - license = lib.licenses.free; - }; - }) {}; - java-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "java-snippets"; - ename = "java-snippets"; - version = "20160626.1952"; - src = fetchFromGitHub { - owner = "nekop"; - repo = "yasnippet-java-mode"; - rev = "738523debb1018439bda0ce70e00248154a600ac"; - sha256 = "0k9iq8f5ngx80r965hc9bzmaa7y4vwn4vx10v1v9f46h48kmsg0q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec561bb8ee3d6df0d493c20497dd8c5897bf1e5e/recipes/java-snippets"; - sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/java-snippets"; - license = lib.licenses.free; - }; - }) {}; - javadoc-lookup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "javadoc-lookup"; - ename = "javadoc-lookup"; - version = "20160213.1631"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "javadoc-lookup"; - rev = "507a2dd443d60b537b8f779c1847e2cd0ccd1382"; - sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d7d5f55c7d90181cc4eff68bb472f772f070a93/recipes/javadoc-lookup"; - sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/javadoc-lookup"; - license = lib.licenses.free; - }; - }) {}; - javap-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "javap-mode"; - ename = "javap-mode"; - version = "20120223.1408"; - src = fetchFromGitHub { - owner = "hiredman"; - repo = "javap-mode"; - rev = "864c1130e204b2072e1d19cd027b6fce8ebe6629"; - sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/009ce356c410d980613f21fa7c9f1c97ee9af76f/recipes/javap-mode"; - sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/javap-mode"; - license = lib.licenses.free; - }; - }) {}; - jaword = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tinysegmenter }: - melpaBuild { - pname = "jaword"; - ename = "jaword"; - version = "20170425.2327"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "jaword"; - rev = "a084558075f8892d61214aa21ff3663dd466cf4c"; - sha256 = "0vjim6a9hy6bkbiaggdljlkbga2gpyv89zrla8sdgw8s2yh8m8bl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00fe123ddc7fbcb9fd2b97e8a9fc8a8c5fabbf7f/recipes/jaword"; - sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d"; - name = "recipe"; - }; - packageRequires = [ tinysegmenter ]; - meta = { - homepage = "https://melpa.org/#/jaword"; - license = lib.licenses.free; - }; - }) {}; - jazz-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jazz-theme"; - ename = "jazz-theme"; - version = "20170411.711"; - src = fetchFromGitHub { - owner = "donderom"; - repo = "jazz-theme"; - rev = "b1cb78a97cc4050f19d88a89e455c3e52d98240e"; - sha256 = "0q9gfa40qh9wypvzg3xrv4kh6l51az9swb39133961dc8zrrrinm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da25345df9d8d567541ed6b0ec832310cde67115/recipes/jazz-theme"; - sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jazz-theme"; - license = lib.licenses.free; - }; - }) {}; - jbeans-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jbeans-theme"; - ename = "jbeans-theme"; - version = "20180309.825"; - src = fetchFromGitHub { - owner = "synic"; - repo = "jbeans-emacs"; - rev = "3caa95998d8492a2ca6c17971de499ca15609871"; - sha256 = "0k8bd5j09753czl55dcwijs4j1vxir4zwcwlgsxli4b4f8sl2z8r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6dd4bd78795ec7509d8744fec1e80426ce0557ec/recipes/jbeans-theme"; - sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jbeans-theme"; - license = lib.licenses.free; - }; - }) {}; - jdecomp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jdecomp"; - ename = "jdecomp"; - version = "20170224.1400"; - src = fetchFromGitHub { - owner = "xiongtx"; - repo = "jdecomp"; - rev = "692866abc83deedce62be8d6040cf24dda7fb7a8"; - sha256 = "00l6mc643na97jrb0k595kwmfg8wc7m5iqjd9l9vvf3dal6389b8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jdecomp"; - sha256 = "1vgjmz7rxvgy9lprzr5b018lzqy3h0zg8913la1bzgwlm3mr68y5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jdecomp"; - license = lib.licenses.free; - }; - }) {}; - jdee = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , memoize - , s }: - melpaBuild { - pname = "jdee"; - ename = "jdee"; - version = "20190418.926"; - src = fetchFromGitHub { - owner = "jdee-emacs"; - repo = "jdee"; - rev = "b9ce633d68ece00dac03d3eeddc4477de53e5e38"; - sha256 = "0gwcl9c0y2s9xyrajwrwiaklfd8as9hmmq0lbrd7fy4q0l0vpr98"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6d2c98f3bf2075e33d95c7befe205df802e798d/recipes/jdee"; - sha256 = "15n76w0ygjmsa2bym59bkmbbh0kpqx6nacp4zz32hlg48kgz1dx4"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck memoize s ]; - meta = { - homepage = "https://melpa.org/#/jdee"; - license = lib.licenses.free; - }; - }) {}; - jedi = callPackage ({ auto-complete - , emacs - , fetchFromGitHub - , fetchurl - , jedi-core - , lib - , melpaBuild }: - melpaBuild { - pname = "jedi"; - ename = "jedi"; - version = "20160425.2156"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-jedi"; - rev = "1521c525483263b7241c4881b15299b38700070c"; - sha256 = "1xj6rswsnicwcgcqid4qji1x4yhdhrgvvjdd3jhb4z8mfahpnpp6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi"; - sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; - name = "recipe"; - }; - packageRequires = [ auto-complete emacs jedi-core ]; - meta = { - homepage = "https://melpa.org/#/jedi"; - license = lib.licenses.free; - }; - }) {}; - jedi-core = callPackage ({ cl-lib ? null - , emacs - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , python-environment }: - melpaBuild { - pname = "jedi-core"; - ename = "jedi-core"; - version = "20181206.1601"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-jedi"; - rev = "615544c6ca81bbc53140aefe345e2120110c1660"; - sha256 = "0lc8p7xswsm5kir2paw3l65psq9fz4xd81r9ip3d7hsyab4jnvvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi-core"; - sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs epc python-environment ]; - meta = { - homepage = "https://melpa.org/#/jedi-core"; - license = lib.licenses.free; - }; - }) {}; - jedi-direx = callPackage ({ direx - , fetchFromGitHub - , fetchurl - , jedi - , lib - , melpaBuild }: - melpaBuild { - pname = "jedi-direx"; - ename = "jedi-direx"; - version = "20140310.236"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-jedi-direx"; - rev = "7a2e677400717ed12b959cb5988e7b3fb1c12117"; - sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a058c3007e63b2b651689fd17c789f7d69348f83/recipes/jedi-direx"; - sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1"; - name = "recipe"; - }; - packageRequires = [ direx jedi ]; - meta = { - homepage = "https://melpa.org/#/jedi-direx"; - license = lib.licenses.free; - }; - }) {}; - jekyll-modes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "jekyll-modes"; - ename = "jekyll-modes"; - version = "20141117.514"; - src = fetchFromGitHub { - owner = "fred-o"; - repo = "jekyll-modes"; - rev = "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c"; - sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6667529d56dc35c5c56e4b4a4d1f06b6172df677/recipes/jekyll-modes"; - sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si"; - name = "recipe"; - }; - packageRequires = [ polymode ]; - meta = { - homepage = "https://melpa.org/#/jekyll-modes"; - license = lib.licenses.free; - }; - }) {}; - jemdoc-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jemdoc-mode"; - ename = "jemdoc-mode"; - version = "20170704.1327"; - src = fetchFromGitHub { - owner = "drdv"; - repo = "jemdoc-mode"; - rev = "529b4d4681e1198b9892f340fdd6c3f1592a047a"; - sha256 = "1f8nn8mv18q3x3k32i6kjis9f3g1ybdjcfaw8hywqwy6k8dr734m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49a8c0f885df0b91d758b4d7c92bd67368da8a56/recipes/jemdoc-mode"; - sha256 = "1bl8a9fcilrqjzh92q7nvd16pxjiwmbnj157q2bx36y7bxm60acv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jemdoc-mode"; - license = lib.licenses.free; - }; - }) {}; - jenkins = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "jenkins"; - ename = "jenkins"; - version = "20190520.2100"; - src = fetchFromGitHub { - owner = "rmuslimov"; - repo = "jenkins.el"; - rev = "9c7b9d4cb39eff7d6ac4d0cbd5ebc103dc86cac2"; - sha256 = "1s49xmpc975q1ffb5c7cjrcwpa4a7kcakri26f5vqy3hn1h0c2v7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed2da33db5eaea1a37f86057da174a45cd37ea5/recipes/jenkins"; - sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s"; - name = "recipe"; - }; - packageRequires = [ dash emacs json ]; - meta = { - homepage = "https://melpa.org/#/jenkins"; - license = lib.licenses.free; - }; - }) {}; - jenkins-watch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jenkins-watch"; - ename = "jenkins-watch"; - version = "20121004.1626"; - src = fetchFromGitHub { - owner = "ataylor284"; - repo = "jenkins-watch"; - rev = "37b84dfbd98240a57ff798e1ff8bc7dba2913577"; - sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jenkins-watch"; - sha256 = "1mdmh62rq3b8p23xgaf4i0kzpgq3ldljdxsnk07wa8bp3p7jxvgs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jenkins-watch"; - license = lib.licenses.free; - }; - }) {}; - jest = callPackage ({ cl-lib ? null - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , magit-popup - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "jest"; - ename = "jest"; - version = "20181215.2059"; - src = fetchFromGitHub { - owner = "emiller88"; - repo = "emacs-jest"; - rev = "b753aa69511ac1219c39ea1584dd1571b55a221e"; - sha256 = "0csf6ld88b8722j6favx19ilsfc0mc56k6kmv6d2nixj1xl0pl27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a656c058c423ea6396b831d45c6dbb9bce6c4881/recipes/jest"; - sha256 = "10xsqcjskh2s6mlh07vf10whaas3aqm18hk3w309r3n1qmqihf75"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - dash-functional - emacs - js2-mode - magit-popup - projectile - s - ]; - meta = { - homepage = "https://melpa.org/#/jest"; - license = lib.licenses.free; - }; - }) {}; - jetbrains = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jetbrains"; - ename = "jetbrains"; - version = "20180228.2102"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "jetbrains.el"; - rev = "56f71a17d455581c10d48f6dbb31d9e2126227bf"; - sha256 = "0v948k7xjm66px20ad331pskc7svpcrcffh3hbkjsksd4k0pggds"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00dd4626e261d9831fc62d866d50b7257ee418c4/recipes/jetbrains"; - sha256 = "0254dkzf2x5dj3j549xjash0lsadkn0bdcyjkjlrv8hqvdr1f1m7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/jetbrains"; - license = lib.licenses.free; - }; - }) {}; - jg-quicknav = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "jg-quicknav"; - ename = "jg-quicknav"; - version = "20170808.1830"; - src = fetchFromGitHub { - owner = "jeffgran"; - repo = "jg-quicknav"; - rev = "c8d53e774d63e68a944092c08a026b57da741038"; - sha256 = "0rdrryfppgj5smrds5gyyhc4z8x36aq3gxdpckq80rbl4s729chy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/jg-quicknav"; - sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/jg-quicknav"; - license = lib.licenses.free; - }; - }) {}; - jinja2-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jinja2-mode"; - ename = "jinja2-mode"; - version = "20141128.207"; - src = fetchFromGitHub { - owner = "paradoxxxzero"; - repo = "jinja2-mode"; - rev = "cfaa7bbe7bb290cc500440124ce89686f3e26f86"; - sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b79196cf0dc0b436ff75eabea369a62f92825d9f/recipes/jinja2-mode"; - sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jinja2-mode"; - license = lib.licenses.free; - }; - }) {}; - jira-markup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jira-markup-mode"; - ename = "jira-markup-mode"; - version = "20150601.1409"; - src = fetchFromGitHub { - owner = "mnuessler"; - repo = "jira-markup-mode"; - rev = "53bf083fdbece483f1351f32085b424b38c4c1f2"; - sha256 = "1lqk7x7h8n6xvqzfwjh220gprk5jfi8f87z6afps9rib2scz7kbh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e0349bff91ed27ad14dfc12178719453a8df55/recipes/jira-markup-mode"; - sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jira-markup-mode"; - license = lib.licenses.free; - }; - }) {}; - jist = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , magit - , melpaBuild - , request - , seq }: - melpaBuild { - pname = "jist"; - ename = "jist"; - version = "20161229.921"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "jist.el"; - rev = "ec4b27eb4051f0084cb3b1e4f19fab9e2db77665"; - sha256 = "163zip2fhyn41wmwhyrx8przcq2qmlq841b6hpm9lw8mm3wfnqbq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/898bfa0b315240ef9335fde24ff0386a4c6c6595/recipes/jist"; - sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist magit request seq ]; - meta = { - homepage = "https://melpa.org/#/jist"; - license = lib.licenses.free; - }; - }) {}; - jknav = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jknav"; - ename = "jknav"; - version = "20121006.1325"; - src = fetchFromGitHub { - owner = "aculich"; - repo = "jknav.el"; - rev = "861245715c728503dad6573278fdd75c271dbf8b"; - sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3673aebf53a7a3d54aee4e979b9dc7e37842f4db/recipes/jknav"; - sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jknav"; - license = lib.licenses.free; - }; - }) {}; - jonprl-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "jonprl-mode"; - ename = "jonprl-mode"; - version = "20160818.1759"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "jonprl-mode"; - rev = "6059bb64891fae45827174e044d6a87ac07172d8"; - sha256 = "0v4xiq3xf7c52rmyymw8a4ws85ij0xy7pr7625gf15359cs5chs9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d26b6aea2b0567b971c4f013b58b598e9eb76af6/recipes/jonprl-mode"; - sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/jonprl-mode"; - license = lib.licenses.free; - }; - }) {}; - jpop = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jpop"; - ename = "jpop"; - version = "20170410.550"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "jpop.el"; - rev = "7628b03260be96576b34459d45959ee77d8b2110"; - sha256 = "1x7qha7xyn2j225h7axhskngc8icjhgm3f451iq3qysj22q8g4d6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a52a3cf909d12201196b92685435f9fa338b7ba/recipes/jpop"; - sha256 = "00chh1aqnkkkhdp44sapdjx37cbn92g42wapdq7kcl8v1v0xmnjr"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/jpop"; - license = lib.licenses.free; - }; - }) {}; - jq-format = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "jq-format"; - ename = "jq-format"; - version = "20190428.734"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-jq-format"; - rev = "47e1c5adb89b37b4d53fe01302d8c675913c20e7"; - sha256 = "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce800af0c5dd7f1e4ab7ade92a863ce500c12fce/recipes/jq-format"; - sha256 = "1ljbpgcs1s1if9s5c10k12f23rad7172k7y3s38ipn7vl7wmarw0"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/jq-format"; - license = lib.licenses.free; - }; - }) {}; - jq-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jq-mode"; - ename = "jq-mode"; - version = "20181103.558"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "jq-mode"; - rev = "d6bbd83baf0746f22564f7ae92db44e06da6e08c"; - sha256 = "1sk603258gvnfrvl641xfmgapg67z44wnlx6qba73wn3f2055765"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/318705966e26e58f87b53c115c519db95874ac1c/recipes/jq-mode"; - sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jq-mode"; - license = lib.licenses.free; - }; - }) {}; - jquery-doc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jquery-doc"; - ename = "jquery-doc"; - version = "20150812.58"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "jquery-doc.el"; - rev = "24032284919b942ec27707d929bdd8bf48420062"; - sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/504d8cfac08f3fcd856610bc2caeb4d4178aeedf/recipes/jquery-doc"; - sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jquery-doc"; - license = lib.licenses.free; - }; - }) {}; - js-auto-beautify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-beautify - , web-mode }: - melpaBuild { - pname = "js-auto-beautify"; - ename = "js-auto-beautify"; - version = "20161030.2209"; - src = fetchFromGitHub { - owner = "Qquanwei"; - repo = "auto-beautify.el"; - rev = "6bc9fef474197ca1722cb1e9051b270f80cdd7cc"; - sha256 = "1jj4zbdw76ir7zigdhad4qdw1cabbql71847bzkqh6zzjwpg9h3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/js-auto-beautify"; - sha256 = "0hpp6im24xy4g5l1n9kvpmpj26rnxxnf4snf7xgh5gxx6wsiicy1"; - name = "recipe"; - }; - packageRequires = [ web-beautify web-mode ]; - meta = { - homepage = "https://melpa.org/#/js-auto-beautify"; - license = lib.licenses.free; - }; - }) {}; - js-auto-format-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-auto-format-mode"; - ename = "js-auto-format-mode"; - version = "20180807.652"; - src = fetchFromGitHub { - owner = "ybiquitous"; - repo = "js-auto-format-mode"; - rev = "59caa137c4beec4dec4a7d7ebf8bcb6af44d72f0"; - sha256 = "10xxg8lc4g9wdl4lz7kx6la23agpbq4ls1mn5d4y364j8nfcxf9g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d3be16771b5b5fde639da3ee97890620354ee7a/recipes/js-auto-format-mode"; - sha256 = "1gxf7xz1j3ga2pk5w8cgny7l8kid59zap2a97lhb50w1qczfqqzs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/js-auto-format-mode"; - license = lib.licenses.free; - }; - }) {}; - js-codemod = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-codemod"; - ename = "js-codemod"; - version = "20171104.454"; - src = fetchFromGitHub { - owner = "torgeir"; - repo = "js-codemod.el"; - rev = "014e56c846487d1eeaf8a91dd503b9d96eb1510a"; - sha256 = "0s07ypjlqsx2pgq89wmr69w9p7ybc62abqp53kzf5gmdl6fdzgxq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81670a2467fa846a3f0e6c81e870e8ae140dd54e/recipes/js-codemod"; - sha256 = "1m5wbyx12sc5qwbrh948ikskck10p6j05ahrrvmmflvfb3q4vpcj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/js-codemod"; - license = lib.licenses.free; - }; - }) {}; - js-comint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-comint"; - ename = "js-comint"; - version = "20190605.1706"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "js-comint"; - rev = "ab8953bdf0176b1fadd7a3bb621f848ec5dc1f0c"; - sha256 = "0li5za8zamwpr6cdz4b171wa0njana0ddmclrkbw1imkarb4yhp5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint"; - sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/js-comint"; - license = lib.licenses.free; - }; - }) {}; - js-doc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-doc"; - ename = "js-doc"; - version = "20160714.2134"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "js-doc"; - rev = "f0606e89d5aa89146f96edb38cf69af0068a9d1e"; - sha256 = "1ffayl6hca9zanbznh6rkql7fbr53id1lyrj2vllx8zakfac4dyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5621f60b3f580db652c347719d004d7168944caa/recipes/js-doc"; - sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/js-doc"; - license = lib.licenses.free; - }; - }) {}; - js-format = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "js-format"; - ename = "js-format"; - version = "20170118.1702"; - src = fetchFromGitHub { - owner = "futurist"; - repo = "js-format.el"; - rev = "544bda9be72b74ec2d442543ba60cff727d96669"; - sha256 = "18wr2z2w2fqgy51f5m5izrnywarxn6w4qs04lsgbwlsc6ahpwwpf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6deaa93f7deaba9f5f36f1963522b6dc5c673a/recipes/js-format"; - sha256 = "112zqb3q1gjlaa9zkmhx7vamh0g97dwp9j55215i1sx66lmp18iq"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/js-format"; - license = lib.licenses.free; - }; - }) {}; - js-import = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "js-import"; - ename = "js-import"; - version = "20190218.519"; - src = fetchFromGitHub { - owner = "jakoblind"; - repo = "js-import"; - rev = "2ab3b120cc94ebf4bee2d959c8869440bc4c7484"; - sha256 = "1fv8lpjanyn6chf502lz0j438hfxhqz1b0z2kxsd4jgy20ixchmg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/js-import"; - sha256 = "0r653ls1a4kr7i7249afgfj7vz365gadfm8bc1vmqfabxn8mysd4"; - name = "recipe"; - }; - packageRequires = [ dash emacs f projectile ]; - meta = { - homepage = "https://melpa.org/#/js-import"; - license = lib.licenses.free; - }; - }) {}; - js2-closure = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-closure"; - ename = "js2-closure"; - version = "20170816.1218"; - src = fetchFromGitHub { - owner = "jart"; - repo = "js2-closure"; - rev = "74a75f001a8bc2b9c02b9e8b4557f7ee3c5f84fb"; - sha256 = "1gapx656s4ngy8s8y1p56xxnclwf4qqg83l3jizknxky7yhayyl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61bf3e70ae38a78184f0b373ff6f0db234f51cb2/recipes/js2-closure"; - sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; - name = "recipe"; - }; - packageRequires = [ js2-mode ]; - meta = { - homepage = "https://melpa.org/#/js2-closure"; - license = lib.licenses.free; - }; - }) {}; - js2-highlight-vars = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-highlight-vars"; - ename = "js2-highlight-vars"; - version = "20170418.1129"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "js2-highlight-vars.el"; - rev = "e3bb177e50f76b272e8073a94d4f46be6512a163"; - sha256 = "0yy8sqkn6c7r377qr2id4z550vw1x70xjd4i7yg0g1rj7q1kg98l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f4a7c90be2e032277ae87b8de36d2e3f6146f09/recipes/js2-highlight-vars"; - sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/js2-highlight-vars"; - license = lib.licenses.free; - }; - }) {}; - js2-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-mode"; - ename = "js2-mode"; - version = "20190420.1544"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "js2-mode"; - rev = "ae9fea81cf9ed80f403c161fde4d8aff1ceb3769"; - sha256 = "0fwkn7dki487c2qbj022p4pqa2xlqjkj8jz1hf7wjzii0x33qrs1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; - sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/js2-mode"; - license = lib.licenses.free; - }; - }) {}; - js2-refactor = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , multiple-cursors - , s - , yasnippet }: - melpaBuild { - pname = "js2-refactor"; - ename = "js2-refactor"; - version = "20180502.342"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "js2-refactor.el"; - rev = "186e1abf8c818623e1eef8bb07509d2ea11367b8"; - sha256 = "1g877cxvmv29089m0phh551clpz995ja9585nvwiycdzc7w2mqga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8935264dfea9bacc89fef312215624d1ad9fc437/recipes/js2-refactor"; - sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; - name = "recipe"; - }; - packageRequires = [ dash js2-mode multiple-cursors s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/js2-refactor"; - license = lib.licenses.free; - }; - }) {}; - js3-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js3-mode"; - ename = "js3-mode"; - version = "20160515.850"; - src = fetchFromGitHub { - owner = "thomblake"; - repo = "js3-mode"; - rev = "7fceb21ec56aac7af4b189bb0c0d0cf620327f5a"; - sha256 = "18c0s3i21b77pi5y86zi7jg9pwxc0h5dzznjiyrig0jab0cksln5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/805a7c7fee2bafd8785813963bf91ac1ca417fd1/recipes/js3-mode"; - sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/js3-mode"; - license = lib.licenses.free; - }; - }) {}; - jscs = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jscs"; - ename = "jscs"; - version = "20151015.1049"; - src = fetchFromGitHub { - owner = "papaeye"; - repo = "emacs-jscs"; - rev = "9d39d0f2355e69a020bf76242504f3a33e013ccf"; - sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f59d039a199ff93d7280669511a752f12a74f0bd/recipes/jscs"; - sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/jscs"; - license = lib.licenses.free; - }; - }) {}; - jsfmt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsfmt"; - ename = "jsfmt"; - version = "20180920.308"; - src = fetchFromGitHub { - owner = "brettlangdon"; - repo = "jsfmt.el"; - rev = "ca141a135c7700eaedef92561d334e1fb7dc28a1"; - sha256 = "13b2y6q6hqgdf32vyph407jlgki8xf5kflqz8zi0hcrmb8wkrd5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ddc99843dec18a295dfc36e7b429f0e1ab7fb71/recipes/jsfmt"; - sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jsfmt"; - license = lib.licenses.free; - }; - }) {}; - json-mode = callPackage ({ fetchFromGitHub - , fetchurl - , json-reformat - , json-snatcher - , lib - , melpaBuild }: - melpaBuild { - pname = "json-mode"; - ename = "json-mode"; - version = "20190122.2022"; - src = fetchFromGitHub { - owner = "joshwnj"; - repo = "json-mode"; - rev = "0e819e519ae17a2686e0881c4ca51fa873fa9b83"; - sha256 = "0m4i6b5qmakdc0h8npsyajdp06jq03cb1c5rkj6x0khnjw9fv2fl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6/recipes/json-mode"; - sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; - name = "recipe"; - }; - packageRequires = [ json-reformat json-snatcher ]; - meta = { - homepage = "https://melpa.org/#/json-mode"; - license = lib.licenses.free; - }; - }) {}; - json-navigator = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , lib - , melpaBuild }: - melpaBuild { - pname = "json-navigator"; - ename = "json-navigator"; - version = "20190131.231"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "json-navigator"; - rev = "f4cde60c4203fc70cc7ff22ed1d6579159ce2598"; - sha256 = "0xrjbx6rkm8a6pmzhdph0r6l468hj827dvvq2hxhcm8v5gk6m690"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62d4d68bd473652b80988a68250e9190b886ad6e/recipes/json-navigator"; - sha256 = "0yfl31cg0mkgsbpgx00m9h2cxnhsavcf7zlspb0qr4g2zq6ya1wx"; - name = "recipe"; - }; - packageRequires = [ emacs hierarchy ]; - meta = { - homepage = "https://melpa.org/#/json-navigator"; - license = lib.licenses.free; - }; - }) {}; - json-reformat = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "json-reformat"; - ename = "json-reformat"; - version = "20160212.53"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "json-reformat"; - rev = "24c2bf3c41897b5cf1398dcaedfec88526308bf4"; - sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c7976237f327fdfa58eea26ac8679f40ef3163/recipes/json-reformat"; - sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/json-reformat"; - license = lib.licenses.free; - }; - }) {}; - json-rpc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "json-rpc"; - ename = "json-rpc"; - version = "20180104.728"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elisp-json-rpc"; - rev = "0992ae71964055230aa5d4d934a1b93b5dfd7eb4"; - sha256 = "0nfccwxss3dz1ig6i3dig703xpsy90m7i96bm3pysrw2jfp4by9s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82c6b97cdfe2970f028a00146b01e5734710291b/recipes/json-rpc"; - sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/json-rpc"; - license = lib.licenses.free; - }; - }) {}; - json-snatcher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "json-snatcher"; - ename = "json-snatcher"; - version = "20150511.2047"; - src = fetchFromGitHub { - owner = "Sterlingg"; - repo = "json-snatcher"; - rev = "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c"; - sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/990de179e20c169aa02ffec42c89f18ce02239c8/recipes/json-snatcher"; - sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/json-snatcher"; - license = lib.licenses.free; - }; - }) {}; - jsonnet-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsonnet-mode"; - ename = "jsonnet-mode"; - version = "20181211.1053"; - src = fetchFromGitHub { - owner = "mgyucht"; - repo = "jsonnet-mode"; - rev = "2b90b4e12a11c42df0f1e5db327a50555b6ff023"; - sha256 = "0j1dggxq1rm47cbi7khask40sj1wrcd0jki4m7j15qaxw7ryihhm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba17372732723f73e8eeb6e7c47abc0edeb20da4/recipes/jsonnet-mode"; - sha256 = "1aadys887szlc924qr645lby9f8vzvxkwhq6byhppk1b01h911ia"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jsonnet-mode"; - license = lib.licenses.free; - }; - }) {}; - jss = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "jss"; - ename = "jss"; - version = "20130508.723"; - src = fetchFromGitHub { - owner = "segv"; - repo = "jss"; - rev = "41749257aecf13c7bd6ed489b5ab3304d06e40bc"; - sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3dc3607f512df378ba141327802820da4991a97/recipes/jss"; - sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode websocket ]; - meta = { - homepage = "https://melpa.org/#/jss"; - license = lib.licenses.free; - }; - }) {}; - jst = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "jst"; - ename = "jst"; - version = "20150604.438"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "jst-mode"; - rev = "865ff97449a4cbbcb40d38b4908cf4d7b22a5108"; - sha256 = "066ql5czrzikznlx7vww6m8h0pfkixfm8qnydfwpfndcqq6ypd90"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/jst"; - sha256 = "1kxf8ckhsh0sgc4xqkkyh7ghk17farqqz35ibvmyrkl9s19ydj1q"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pcache s ]; - meta = { - homepage = "https://melpa.org/#/jst"; - license = lib.licenses.free; - }; - }) {}; - jsx-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsx-mode"; - ename = "jsx-mode"; - version = "20130908.1024"; - src = fetchFromGitHub { - owner = "jsx"; - repo = "jsx-mode.el"; - rev = "3a0d688f0f93cbb4596e562e596f7736a0926160"; - sha256 = "1kldk8i3galix9nbrcn92a8j942nx6nwzihl8w17lh8v95d51rhn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7dea24e922f18c1f7e1b97da07ba2e4f33170557/recipes/jsx-mode"; - sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jsx-mode"; - license = lib.licenses.free; - }; - }) {}; - jtags = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jtags"; - ename = "jtags"; - version = "20160211.1229"; - src = fetchgit { - url = "https://git.code.sf.net/p/jtags/code"; - rev = "f7d29e1635ef7ee4ee2cdb8f1f6ab83e1015c84a"; - sha256 = "029arf0m39rrb3x81hpd3ljwd4ki37hwa4n38hynn8lfmwrrdy2x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/jtags"; - sha256 = "1f3dw9fr31lcqmida14d9rsvy1r1b5d6ihqwdj9hbx5kv7d8jyj7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jtags"; - license = lib.licenses.free; - }; - }) {}; - julia-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "julia-mode"; - ename = "julia-mode"; - version = "20190407.1419"; - src = fetchFromGitHub { - owner = "JuliaEditorSupport"; - repo = "julia-emacs"; - rev = "8449c95a05ab5d75a48192c2da7f0e7f4d16714c"; - sha256 = "02v1hw7h460ypwn45n3jv6d06jcsg2hm5l764ay22116znvaz9n7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/julia-mode"; - sha256 = "1f26j3nxspwrvnsk3kmam8rw4jwikwmi9a5zwsx9aa1rrasg58w3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/julia-mode"; - license = lib.licenses.free; - }; - }) {}; - julia-repl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "julia-repl"; - ename = "julia-repl"; - version = "20190420.755"; - src = fetchFromGitHub { - owner = "tpapp"; - repo = "julia-repl"; - rev = "6eb58ef8b2e922e042fb0aee399547291fce06a4"; - sha256 = "05siwlyafga6ihksmd4v7dlhn1c3f6vg4ns255apm7vnmfryzvkf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a2a494969a9caf2f4513b12504379c9685047dc/recipes/julia-repl"; - sha256 = "1k8a54s7g64zasmmnywygr0ra3s3din5mkqb7b5van2l0d4hcmzn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/julia-repl"; - license = lib.licenses.free; - }; - }) {}; - julia-shell = callPackage ({ fetchFromGitHub - , fetchurl - , julia-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "julia-shell"; - ename = "julia-shell"; - version = "20161125.1110"; - src = fetchFromGitHub { - owner = "dennisog"; - repo = "julia-shell-mode"; - rev = "583a0b2ca20461ab4356929fd0f2212c22341b69"; - sha256 = "182r7x7w3xnx7c54izz3rlz0khcwh7v21m89qpq99f9dvcs6273k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a812c6a8498949d8bd9828a95433c539da87c1c8/recipes/julia-shell"; - sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410"; - name = "recipe"; - }; - packageRequires = [ julia-mode ]; - meta = { - homepage = "https://melpa.org/#/julia-shell"; - license = lib.licenses.free; - }; - }) {}; - jumblr = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "jumblr"; - ename = "jumblr"; - version = "20170727.1343"; - src = fetchFromGitHub { - owner = "mkmcc"; - repo = "jumblr"; - rev = "34533dfb9db8538c005f4eaffafeff7ed193729f"; - sha256 = "0nn2m27c70nykin4iakrna0c61qd1hr09czrfmfpk06k70iifjky"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b47000c35a181c03263e85e8955eb4b4c9e69e4d/recipes/jumblr"; - sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/jumblr"; - license = lib.licenses.free; - }; - }) {}; - jump = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , findr - , inflections - , lib - , melpaBuild }: - melpaBuild { - pname = "jump"; - ename = "jump"; - version = "20161126.1728"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "jump.el"; - rev = "9519c675e8a650f6afade7d870e925d0fb50f112"; - sha256 = "1bm1mgd632gq3cl4zrq66vnqq9ynvc01iy6szp464ccnm3cmqdzr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c791aebccc08b770b3969ce5d2e82cbe26f80e/recipes/jump"; - sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; - name = "recipe"; - }; - packageRequires = [ cl-lib findr inflections ]; - meta = { - homepage = "https://melpa.org/#/jump"; - license = lib.licenses.free; - }; - }) {}; - jump-char = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jump-char"; - ename = "jump-char"; - version = "20180601.648"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "jump-char"; - rev = "1e31a3c687f2b3c71bbfab881c6d75915534bb9e"; - sha256 = "1nzln2l6sy67qz30107sgyhhfacy85im9vdlbv1hp4fzdmxxkx84"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jump-char"; - sha256 = "1r6d1vhm87zafi7rr7z8jwyz3yy7i7s4774n84jsql24j1rzzwd4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jump-char"; - license = lib.licenses.free; - }; - }) {}; - jump-to-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jump-to-line"; - ename = "jump-to-line"; - version = "20130122.853"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "jump-to-line"; - rev = "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8"; - sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b6c700a28b65cbbad36a9bbaf88cc36c8191eb0/recipes/jump-to-line"; - sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jump-to-line"; - license = lib.licenses.free; - }; - }) {}; - jump-tree = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jump-tree"; - ename = "jump-tree"; - version = "20171014.851"; - src = fetchFromGitHub { - owner = "yangwen0228"; - repo = "jump-tree"; - rev = "282267dc6305889e31d46b405b7ad4dfe5923b66"; - sha256 = "0r6cwpks4aylndvq5lcny3799fag05zm36gd11043wca7sgr90fz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe6b08848929c83e3cdea623b331176c0f20cbe9/recipes/jump-tree"; - sha256 = "1gknpwd1vjpd1jqpi2axhyi6sg4clarr32rfrfz6hi6kmzr848mj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jump-tree"; - license = lib.licenses.free; - }; - }) {}; - jumplist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jumplist"; - ename = "jumplist"; - version = "20151119.1945"; - src = fetchFromGitHub { - owner = "ganmacs"; - repo = "jumplist"; - rev = "c482d137d95bc5e1bcd790cdbde25b7f729b2502"; - sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2b7c688b881615c5f0b00f3879b9469d380a4e6/recipes/jumplist"; - sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/jumplist"; - license = lib.licenses.free; - }; - }) {}; - jupyter = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , simple-httpd - , websocket - , zmq }: - melpaBuild { - pname = "jupyter"; - ename = "jupyter"; - version = "20190601.2319"; - src = fetchFromGitHub { - owner = "dzop"; - repo = "emacs-jupyter"; - rev = "932baad3792b5ba5d701974ae008d5d8d6e22726"; - sha256 = "0a4lxwiaybq89zg7np5x364wbvxwhyvmwjbbang4sgs403in8734"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a63a933e193a52e60950331ec982c5f5cdfaa5d9/recipes/jupyter"; - sha256 = "0p83mkvip1gn5ag2j6s68wzfgg2sf15iyxh7ylads3yw44h26wvi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs simple-httpd websocket zmq ]; - meta = { - homepage = "https://melpa.org/#/jupyter"; - license = lib.licenses.free; - }; - }) {}; - jvm-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jvm-mode"; - ename = "jvm-mode"; - version = "20150422.8"; - src = fetchFromGitHub { - owner = "martintrojer"; - repo = "jvm-mode.el"; - rev = "3355dbaf5b0185aadfbad24160399abb32c5bea0"; - sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdb7d7d7b955405eb6357277b5d049df8aa85ce/recipes/jvm-mode"; - sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/jvm-mode"; - license = lib.licenses.free; - }; - }) {}; - k8s-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "k8s-mode"; - ename = "k8s-mode"; - version = "20181230.2341"; - src = fetchFromGitHub { - owner = "TxGVNN"; - repo = "emacs-k8s-mode"; - rev = "bd435186d807dc20e40cb72abf57542a3ddcc9c9"; - sha256 = "06hxs2syashv0r4d6w8v8p7pzab3cxwf3ymx5lrpicq5zjc3x3h5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44085c3f730315a5fc2a9a003ffa16d5df9f9a52/recipes/k8s-mode"; - sha256 = "14m4s0l61a2h38pdq6iczva24cl3mqdkw99k1q0drisdrvy57f33"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/k8s-mode"; - license = lib.licenses.free; - }; - }) {}; - kaesar = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar"; - ename = "kaesar"; - version = "20160128.208"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "d087075cb1a46c2c85cd075220e09b2eaef9b86e"; - sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar"; - sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/kaesar"; - license = lib.licenses.free; - }; - }) {}; - kaesar-file = callPackage ({ fetchFromGitHub - , fetchurl - , kaesar - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar-file"; - ename = "kaesar-file"; - version = "20160128.208"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "d087075cb1a46c2c85cd075220e09b2eaef9b86e"; - sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-file"; - sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; - name = "recipe"; - }; - packageRequires = [ kaesar ]; - meta = { - homepage = "https://melpa.org/#/kaesar-file"; - license = lib.licenses.free; - }; - }) {}; - kaesar-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , kaesar - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar-mode"; - ename = "kaesar-mode"; - version = "20160128.208"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "d087075cb1a46c2c85cd075220e09b2eaef9b86e"; - sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-mode"; - sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; - name = "recipe"; - }; - packageRequires = [ cl-lib kaesar ]; - meta = { - homepage = "https://melpa.org/#/kaesar-mode"; - license = lib.licenses.free; - }; - }) {}; - kakapo-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kakapo-mode"; - ename = "kakapo-mode"; - version = "20171003.2151"; - src = fetchFromGitHub { - owner = "listx"; - repo = "kakapo-mode"; - rev = "67d516138172fd60782df94454b3d0bd247e84f3"; - sha256 = "0r2n410arr48skcwm39c6mjhzsia117lb8xd7pc4854y0rbrvrvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a43f0f1f6a0773240a51d379ec786c20a9389e7b/recipes/kakapo-mode"; - sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/kakapo-mode"; - license = lib.licenses.free; - }; - }) {}; - kakoune = callPackage ({ emacs - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors - , ryo-modal }: - melpaBuild { - pname = "kakoune"; - ename = "kakoune"; - version = "20190601.1638"; - src = fetchFromGitHub { - owner = "jmorag"; - repo = "kakoune.el"; - rev = "50488df2eeb6e8bfe72cfad4de24060819b148eb"; - sha256 = "0ym3hbiwjraqsk3clcrkllr7jlj5zqsbxqq94ds2vj0x3f9i81fq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7e554f20c378aabd9736fdd606e513d2cbf951f/recipes/kakoune"; - sha256 = "0ps904m3vb2v5jykc6mk9cb974imiac0pw6b7q1p9x5swk8h4jh5"; - name = "recipe"; - }; - packageRequires = [ emacs expand-region multiple-cursors ryo-modal ]; - meta = { - homepage = "https://melpa.org/#/kakoune"; - license = lib.licenses.free; - }; - }) {}; - kaleidoscope = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kaleidoscope"; - ename = "kaleidoscope"; - version = "20170808.117"; - src = fetchFromGitHub { - owner = "algernon"; - repo = "kaleidoscope.el"; - rev = "b89a243f6024099192f1bc38d8a54e3e7a654090"; - sha256 = "154myfd3nag9nhpc3lrhq13191q7a9bzi0ml8a3k0fwy1810yi29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/148d47626879be1608f35827ef82a28274ff4de3/recipes/kaleidoscope"; - sha256 = "0nfz207rzpnni7jyzvdvz5lr0zcpzy278a86821cmw8d5l81a3yp"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/kaleidoscope"; - license = lib.licenses.free; - }; - }) {}; - kaleidoscope-evil-state-flash = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , kaleidoscope - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kaleidoscope-evil-state-flash"; - ename = "kaleidoscope-evil-state-flash"; - version = "20170728.320"; - src = fetchFromGitHub { - owner = "algernon"; - repo = "kaleidoscope.el"; - rev = "5b88327350c3d6375ef1d43fb31342eaabd88fdc"; - sha256 = "1rbifir3rpp6i7il13b9yawkwllr2ima1d9rsff46n6h2920d5x1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/148d47626879be1608f35827ef82a28274ff4de3/recipes/kaleidoscope-evil-state-flash"; - sha256 = "17a4nmdi6h0z4va3kiw4ivaywiisblz6cicypk9d3g9sl92drcvq"; - name = "recipe"; - }; - packageRequires = [ evil kaleidoscope s ]; - meta = { - homepage = "https://melpa.org/#/kaleidoscope-evil-state-flash"; - license = lib.licenses.free; - }; - }) {}; - kanban = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kanban"; - ename = "kanban"; - version = "20170418.110"; - src = fetchhg { - url = "https://bitbucket.com/ArneBab/kanban.el"; - rev = "dd11d722b20a"; - sha256 = "07g0spi9jf48vap76f9rgl61sg3jqy03qdxnmchzwlia8wvcsscb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kanban"; - sha256 = "1j4qv3xcg0gk07yx3b4kayiy1n3w8yq1r78h07613iljx2ny91fz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kanban"; - license = lib.licenses.free; - }; - }) {}; - kanji-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kanji-mode"; - ename = "kanji-mode"; - version = "20160826.439"; - src = fetchFromGitHub { - owner = "wsgac"; - repo = "kanji-mode"; - rev = "5e9d5b72468ece11cfb81b729be6babf63ede425"; - sha256 = "1zh7klqaza840q5f44zzh1wrnd6sqa2k93z3dgx3yhhsxfd1dxvy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9f1fb16f2f7f677d0817fd63633dd071ba2cf12/recipes/kanji-mode"; - sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kanji-mode"; - license = lib.licenses.free; - }; - }) {}; - kaolin-themes = callPackage ({ autothemer - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kaolin-themes"; - ename = "kaolin-themes"; - version = "20190605.851"; - src = fetchFromGitHub { - owner = "ogdenwebb"; - repo = "emacs-kaolin-themes"; - rev = "2008e48bd5c31bae55fc03556768d19dd6dc159f"; - sha256 = "1h92s4dd64plg0i2qg5pvdilwxik5anhn6lmy2jvjf2vx8p35zr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes"; - sha256 = "1pd2v54d578f1wbwvqzplkdz1qvy8w8s6na511b0v5y9sksgm2xw"; - name = "recipe"; - }; - packageRequires = [ autothemer cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kaolin-themes"; - license = lib.licenses.free; - }; - }) {}; - kaomoji = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "kaomoji"; - ename = "kaomoji"; - version = "20171226.2040"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "kaomoji.el"; - rev = "90a1490743b2a30762f5454c9d9309018eff83dd"; - sha256 = "1jc796nyrck3k50x6jb1wsaawk396y4gk87gkwb8yd5qks7ci35q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/140c65cb3cdf6c197b085ccf8ba079e1efd15f38/recipes/kaomoji"; - sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/kaomoji"; - license = lib.licenses.free; - }; - }) {}; - kapacitor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "kapacitor"; - ename = "kapacitor"; - version = "20190414.1208"; - src = fetchFromGitHub { - owner = "Manoj321"; - repo = "kapacitor-el"; - rev = "e3300d8b4017a2f66b0d929cb85bcc7ee2612072"; - sha256 = "05vrfii2n2g2q60dzgw23ck6gxxm3d7fsabi4z0g3k9gc6wrsl5l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db1f8cfcda2fa2b9be74a6cd9f95608e8b3f50bb/recipes/kapacitor"; - sha256 = "108b3y71p7s3lcwbqxp7hy2l304yj4hxm2nq8iv7ljr8av1q7kn6"; - name = "recipe"; - }; - packageRequires = [ emacs magit magit-popup ]; - meta = { - homepage = "https://melpa.org/#/kapacitor"; - license = lib.licenses.free; - }; - }) {}; - karma = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "karma"; - ename = "karma"; - version = "20160220.445"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "karma.el"; - rev = "31d3e7708246183d7ed0686be92bf23140af348c"; - sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/681e12556c3ab3e2a8376d5c7c33ee5a213de650/recipes/karma"; - sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/karma"; - license = lib.licenses.free; - }; - }) {}; - kdeconnect = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kdeconnect"; - ename = "kdeconnect"; - version = "20180126.1540"; - src = fetchFromGitHub { - owner = "carldotac"; - repo = "kdeconnect.el"; - rev = "ca0cbf9a628ba7b519b43fa85e0d988ca26bf853"; - sha256 = "07aqzfg2nn35bkikrmk1lszqkc6h8vn2551m22mwc19lmdx94p2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c363866d30fb86ae636d30def8c3847711ada762/recipes/kdeconnect"; - sha256 = "1bcwpnwmm1l2jzc5znw8z6f5knysinidsbm12v4r1j8v6v80ydw6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kdeconnect"; - license = lib.licenses.free; - }; - }) {}; - kerl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kerl"; - ename = "kerl"; - version = "20150424.1305"; - src = fetchFromGitHub { - owner = "correl"; - repo = "kerl.el"; - rev = "1732ee26213f021bf040919c45ad276aafcaae14"; - sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/166afdc776689b0da93576dbeaa71ff6dfb627db/recipes/kerl"; - sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kerl"; - license = lib.licenses.free; - }; - }) {}; - key-chord = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-chord"; - ename = "key-chord"; - version = "20160227.438"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "key-chord"; - rev = "72443e9ff3c4f1c3ccaced3130236801efde3d83"; - sha256 = "15jfpysyydcvqlvdannxg2s4bh4i9z6i950fad1qlq43jfmq7k55"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/key-chord"; - sha256 = "1g0jqmnn575h5n4figxbc5xs76zl8b1cdqa6wbi3d1p2rn3g8scr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/key-chord"; - license = lib.licenses.free; - }; - }) {}; - key-combo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-combo"; - ename = "key-combo"; - version = "20150324.739"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "key-combo"; - rev = "09a917bdfd3b309b4b3cbe3b11212e1ae6fab38d"; - sha256 = "0af0yzw95624s0wwh1rw9q7djwwhw6mrk9zhzj66cir555lsshlz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/99b422ef5f7b9dda894207e3133791fb9963a092/recipes/key-combo"; - sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/key-combo"; - license = lib.licenses.free; - }; - }) {}; - key-intercept = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-intercept"; - ename = "key-intercept"; - version = "20140210.2349"; - src = fetchFromGitHub { - owner = "tarao"; - repo = "key-intercept-el"; - rev = "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2"; - sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/key-intercept"; - sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/key-intercept"; - license = lib.licenses.free; - }; - }) {}; - key-leap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-leap"; - ename = "key-leap"; - version = "20160831.747"; - src = fetchFromGitHub { - owner = "MartinRykfors"; - repo = "key-leap"; - rev = "b3f6ef15c8a13870475d5af159fa24b30f97dea0"; - sha256 = "1f2k7jpxfvjirxzjc5c4s4lpg1hdgw8k7lfchx362jqijny1ipfp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b56e18063e6292bb2aca2acc7077b32f3d62262/recipes/key-leap"; - sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/key-leap"; - license = lib.licenses.free; - }; - }) {}; - key-quiz = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-quiz"; - ename = "key-quiz"; - version = "20190604.2138"; - src = fetchFromGitHub { - owner = "federicotdn"; - repo = "key-quiz"; - rev = "8cab861e28dd2c956acdba2632f78a58a85b7c70"; - sha256 = "01f0jyz2v1aiy79jhdnaw3n1a0dmj8p9z6zgz28xbap44zyh3v1b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e87df606bf768e3a731234c444077a11601ecc4a/recipes/key-quiz"; - sha256 = "0zcs4nm9jis60ghm0xi84yc945xm45n0q1xp8ic1ix48wf7jq7a0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/key-quiz"; - license = lib.licenses.free; - }; - }) {}; - key-seq = callPackage ({ fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild }: - melpaBuild { - pname = "key-seq"; - ename = "key-seq"; - version = "20150907.56"; - src = fetchFromGitHub { - owner = "vlevit"; - repo = "key-seq.el"; - rev = "e29b083a6427d061638749194fc249ef69ad2cc0"; - sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d54ab1b6973a44362e50559dd91344d0b17f513/recipes/key-seq"; - sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; - name = "recipe"; - }; - packageRequires = [ key-chord ]; - meta = { - homepage = "https://melpa.org/#/key-seq"; - license = lib.licenses.free; - }; - }) {}; - keycast = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keycast"; - ename = "keycast"; - version = "20190316.1835"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keycast"; - rev = "fe416461b15543138ad4fef8ef5e2c364a6b5b2c"; - sha256 = "15q2kc7mlmr856ldh6bkba26zq8fwia26cv1gsqwj3jmhml6mlq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaf62c586818f2493667ad6ec8877234a58da53/recipes/keycast"; - sha256 = "19qq5y1zjp3029kfq0c59xl9xnxqmdn2pd04sblznchcr9jdy5id"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/keycast"; - license = lib.licenses.free; - }; - }) {}; - keychain-environment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keychain-environment"; - ename = "keychain-environment"; - version = "20180318.1523"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keychain-environment"; - rev = "d3643196de6dc79ea77f9f4805028350fd76100b"; - sha256 = "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment"; - sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keychain-environment"; - license = lib.licenses.free; - }; - }) {}; - keydef = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keydef"; - ename = "keydef"; - version = "20090428.1231"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "keydef"; - rev = "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0"; - sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/keydef"; - sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keydef"; - license = lib.licenses.free; - }; - }) {}; - keyfreq = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyfreq"; - ename = "keyfreq"; - version = "20160516.716"; - src = fetchFromGitHub { - owner = "dacap"; - repo = "keyfreq"; - rev = "9c665c8c219d18866403897936427bb408e3d6b9"; - sha256 = "1dhdk4f6q340n0r9n8jld2n2fykp7m40x23n7sw4wpm8g151gxin"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7157bad0f3039321b5b279a88e7e4fce895543/recipes/keyfreq"; - sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/keyfreq"; - license = lib.licenses.free; - }; - }) {}; - keymap-utils = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keymap-utils"; - ename = "keymap-utils"; - version = "20180318.1537"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keymap-utils"; - rev = "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7"; - sha256 = "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils"; - sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/keymap-utils"; - license = lib.licenses.free; - }; - }) {}; - keypress-multi-event = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keypress-multi-event"; - ename = "keypress-multi-event"; - version = "20190108.2130"; - src = fetchFromGitHub { - owner = "Boruch-Baum"; - repo = "emacs-keypress-multi-event"; - rev = "9de65a27e10d8ae47aa6d28c02c3eb82ee8c0b2e"; - sha256 = "1ybbayxfix63rwc8p5kl4wxxlk6vg53abw40fqrlkbc6qrr7nm5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd02baaf1d49d55b066695d8fa9887c454bb1750/recipes/keypress-multi-event"; - sha256 = "07va7w6vgjf6jqrfzpsq8732b8aka07g29h661yh1xn4x6464hyp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/keypress-multi-event"; - license = lib.licenses.free; - }; - }) {}; - keyset = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyset"; - ename = "keyset"; - version = "20150219.2130"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "keyset"; - rev = "c6b375fbe8035fde593d1d96895eb6e3f111d379"; - sha256 = "1vdlx8p0s0zh7sxawd7hfcb66aqap9wdcl1z5ilidnbba4if212g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bad8a1f1b94fbfbde5d8035f7e22431e64a9eec/recipes/keyset"; - sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/keyset"; - license = lib.licenses.free; - }; - }) {}; - keystore-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , origami - , s - , seq }: - melpaBuild { - pname = "keystore-mode"; - ename = "keystore-mode"; - version = "20190409.1246"; - src = fetchFromGitHub { - owner = "peterpaul"; - repo = "keystore-mode"; - rev = "43bd5926348298d077c7221f37902c990df3f951"; - sha256 = "06cznkqkm04zz5lqfb514aqvsr2p13arzysixv0ss0bqpvdq7cv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7870d808fc19096ed6ecde5e9297b28254466210/recipes/keystore-mode"; - sha256 = "1r1my7jgjv2zvkhdwd8ml6489x48gzanz4lvdiw5m2hymb53fdg6"; - name = "recipe"; - }; - packageRequires = [ emacs origami s seq ]; - meta = { - homepage = "https://melpa.org/#/keystore-mode"; - license = lib.licenses.free; - }; - }) {}; - keyswap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyswap"; - ename = "keyswap"; - version = "20160813.257"; - src = fetchFromGitHub { - owner = "hardenedapple"; - repo = "keyswap.el"; - rev = "cd682a7c4a8d64d6bae6a005db5045232e5e7b95"; - sha256 = "191i2b2xx6180sly0dd6b1z6npsrzjqhxrbak9wm6yblx7alsgn2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed8303f5009604ae3d83769063d38749e37fc5d8/recipes/keyswap"; - sha256 = "0ck9w2jr4vdk3yjlcdzblsbgw5w5x1cxbx7h1am5vkr6fhxh2hdi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/keyswap"; - license = lib.licenses.free; - }; - }) {}; - keyword-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyword-search"; - ename = "keyword-search"; - version = "20180424.402"; - src = fetchFromGitHub { - owner = "keyword-search"; - repo = "keyword-search"; - rev = "f8475ecaddb8804a9be6bee47678207c86ac8dee"; - sha256 = "1ymqnpm9his2bkchq23vwazprwyw0d2sdgza7zjxvs3q0f4nj0vx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ecdc51938f2300bf005e2d1b1819e0fa59e0bd7/recipes/keyword-search"; - sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keyword-search"; - license = lib.licenses.free; - }; - }) {}; - kfg = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kfg"; - ename = "kfg"; - version = "20140908.2238"; - src = fetchFromGitHub { - owner = "czipperz"; - repo = "kfg"; - rev = "ffc35b77f227d4c64a1271ec30d31333ffeb0013"; - sha256 = "0y8s2zfz1r1nfwkkfyxc3vfmlagp9wg8i3zpyj3jcifilxq6i63v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2990f45632697ce23e7cd9db807d8ae2d3bf61d2/recipes/kfg"; - sha256 = "0kj79wwj2ih2ba57y3hl2l9pwjpsqns5waa8vi5g7agmqva0mh5b"; - name = "recipe"; - }; - packageRequires = [ f ]; - meta = { - homepage = "https://melpa.org/#/kfg"; - license = lib.licenses.free; - }; - }) {}; - kibit-helper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kibit-helper"; - ename = "kibit-helper"; - version = "20150508.833"; - src = fetchFromGitHub { - owner = "brunchboy"; - repo = "kibit-helper"; - rev = "ec5f154db3bb0c838e86f527353f08644cede926"; - sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fee551ca9ed226f1285dffe87027e1e1047f65/recipes/kibit-helper"; - sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/kibit-helper"; - license = lib.licenses.free; - }; - }) {}; - kill-or-bury-alive = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kill-or-bury-alive"; - ename = "kill-or-bury-alive"; - version = "20181231.2304"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "kill-or-bury-alive"; - rev = "e4a3c0f75c966826092b83e1fff5a3bc8ba55572"; - sha256 = "1zi471b2clkaz19qkn9p0qgrjvaxxxzdm7hqqicjfv5fmgpydk9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25016ed09b6333bd79b989a8f6b7b03cd92e08b3/recipes/kill-or-bury-alive"; - sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kill-or-bury-alive"; - license = lib.licenses.free; - }; - }) {}; - kill-ring-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kill-ring-search"; - ename = "kill-ring-search"; - version = "20140422.855"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "kill-ring-search.el"; - rev = "23535b4a01a1cb1574604e36c49614e84e85c883"; - sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kill-ring-search"; - sha256 = "1jggi6r5j2dr9y17v4cyskc0wydfdpqgp1pib5dr2kg6n6w0s5xl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kill-ring-search"; - license = lib.licenses.free; - }; - }) {}; - killer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "killer"; - ename = "killer"; - version = "20190127.1610"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "killer"; - rev = "ace0547944933440384ceeb5876b1f68c082d540"; - sha256 = "06nzxd9nc1d569354xj7w88i0y5l99pyag691aribsh771rxbfz4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8c3ec8fa272273128134dea96c0c999a524549/recipes/killer"; - sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/killer"; - license = lib.licenses.free; - }; - }) {}; - kite = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "kite"; - ename = "kite"; - version = "20130201.1138"; - src = fetchFromGitHub { - owner = "jscheid"; - repo = "kite"; - rev = "7ed74d1147a6ddd152d3da65dc30df3517d53144"; - sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kite"; - sha256 = "17bpk9ycx2xkwm3j1dxi5216lbzf5lgnscs8i4y0pkpicdn0wyr6"; - name = "recipe"; - }; - packageRequires = [ json websocket ]; - meta = { - homepage = "https://melpa.org/#/kite"; - license = lib.licenses.free; - }; - }) {}; - kite-mini = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "kite-mini"; - ename = "kite-mini"; - version = "20160508.406"; - src = fetchFromGitHub { - owner = "tungd"; - repo = "kite-mini.el"; - rev = "48734092e735033ad7664a9933acd4556e095f79"; - sha256 = "0ralsdjzj09g6nsa04jvyyzr6cgsi0d7gi1ji77f52m31dl0b8cw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9b76d0ee09efc6652d0541cf72c9623760dda66/recipes/kite-mini"; - sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh"; - name = "recipe"; - }; - packageRequires = [ dash websocket ]; - meta = { - homepage = "https://melpa.org/#/kite-mini"; - license = lib.licenses.free; - }; - }) {}; - kivy-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kivy-mode"; - ename = "kivy-mode"; - version = "20180702.1329"; - src = fetchFromGitHub { - owner = "kivy"; - repo = "kivy"; - rev = "3e57ac0b07385384619a8042dafcab89cc10da57"; - sha256 = "1pm0660x688rpgns9jpzg1y08pavp65dazm1aznkvpnvdhy2zs93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; - sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kivy-mode"; - license = lib.licenses.free; - }; - }) {}; - kiwix = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kiwix"; - ename = "kiwix"; - version = "20190324.2052"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "kiwix.el"; - rev = "c662f3dc5d924a4b64b7af4af28f15f27b7cea1e"; - sha256 = "0i11sfnqvjqqb625cgfzibs6yszx891y4dy7fd6wzmdpclcyzr8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kiwix"; - sha256 = "0x5ld557kxzx5s8ziy5axgvm1fxlq81l9gvinfgs8f257vjlki07"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kiwix"; - license = lib.licenses.free; - }; - }) {}; - kixtart-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kixtart-mode"; - ename = "kixtart-mode"; - version = "20150611.904"; - src = fetchFromGitHub { - owner = "ryrun"; - repo = "kixtart-mode"; - rev = "1c2356797e7b766bbaaa2b341176a8b10499cd79"; - sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/672cfc166209b6c2ffcb0e549fd2416be7212a5a/recipes/kixtart-mode"; - sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/kixtart-mode"; - license = lib.licenses.free; - }; - }) {}; - klere-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "klere-theme"; - ename = "klere-theme"; - version = "20180415.1123"; - src = fetchFromGitHub { - owner = "WammKD"; - repo = "emacs-klere-theme"; - rev = "8e389530dd783dcaab2365e0970181c72d782efb"; - sha256 = "1217yr4qpax4snzyi64wzcr13qjnmd0dcqw7ch3vniqn48vnla92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07a3e348d69738ae59fce3570a61b0cdc565fdb8/recipes/klere-theme"; - sha256 = "1lgvk6q2853rpk15i91zf917r8wmrb7bnagp4x02fws49x83hqrs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/klere-theme"; - license = lib.licenses.free; - }; - }) {}; - know-your-http-well = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "know-your-http-well"; - ename = "know-your-http-well"; - version = "20160208.1504"; - src = fetchFromGitHub { - owner = "for-GET"; - repo = "know-your-http-well"; - rev = "ab8cf84ad8031ff85b983c528ebb7117dc784aad"; - sha256 = "19qky551arnb7gl7w0yp54kkdls03m9wn9bxnr7hm5nv1bml2y64"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ab50ae6278022281b2b7297c086089e5e669c7a/recipes/know-your-http-well"; - sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/know-your-http-well"; - license = lib.licenses.free; - }; - }) {}; - kodi-remote = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , json ? null - , let-alist - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "kodi-remote"; - ename = "kodi-remote"; - version = "20190322.1303"; - src = fetchFromGitHub { - owner = "spiderbit"; - repo = "kodi-remote.el"; - rev = "861d81af05b061e1343124753d8493e5a21baf7b"; - sha256 = "1cb1s3ksscva8fw1ss8z6nc530g00njrs2kk3flqisnc41l6njsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08f06dd824e67250afafdecc25128ba794ca971f/recipes/kodi-remote"; - sha256 = "0f3n7b3plsw28xpz07lf5pv71b6s2xjhq2h23gpyg0r69v99chh5"; - name = "recipe"; - }; - packageRequires = [ cl-lib json let-alist request ]; - meta = { - homepage = "https://melpa.org/#/kodi-remote"; - license = lib.licenses.free; - }; - }) {}; - kolon-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kolon-mode"; - ename = "kolon-mode"; - version = "20140122.334"; - src = fetchFromGitHub { - owner = "samvtran"; - repo = "kolon-mode"; - rev = "5af0955e280ae991862189ebecd3937c5fc8fb9f"; - sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b18f38d291303ff362e11ca711bb00bf411e2180/recipes/kolon-mode"; - sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kolon-mode"; - license = lib.licenses.free; - }; - }) {}; - kooten-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kooten-theme"; - ename = "kooten-theme"; - version = "20161023.205"; - src = fetchFromGitHub { - owner = "kootenpv"; - repo = "emacs-kooten-theme"; - rev = "d10197b4dd7af02cd14aeab2573c273a294798c3"; - sha256 = "1vc97d3i7jh4fbpan7lfnmsm32c4gwgrg11j2vq7z3rwm42wkkyr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kooten-theme"; - sha256 = "1zhrjli65pn5nshz8pqn5vbsndzk2h8mhbcldq9k0mc7ki2rrdlv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/kooten-theme"; - license = lib.licenses.free; - }; - }) {}; - korean-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "korean-holidays"; - ename = "korean-holidays"; - version = "20190102.758"; - src = fetchFromGitHub { - owner = "tttuuu888"; - repo = "korean-holidays"; - rev = "3f90ed86f46f8e5533f23baa40e2513ac497ca2b"; - sha256 = "0y88b4mr73qcshr87750jkjzz1mc2wwra6ca3y8spv4qc6cadwls"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/korean-holidays"; - sha256 = "1yf0z9vpiwhlsnyb0fy9wf5rz6f2fzzign96zgj0zd5hwmznbmyr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/korean-holidays"; - license = lib.licenses.free; - }; - }) {}; - kosmos-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kosmos-theme"; - ename = "kosmos-theme"; - version = "20170502.1150"; - src = fetchFromGitHub { - owner = "habamax"; - repo = "kosmos-theme"; - rev = "616456d2376a75dc31190ad65137d179fbad4336"; - sha256 = "193zwgwfnj0lyk0msa16y0dfg7asp953p3jm56d9wdacggbcraj9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kosmos-theme"; - sha256 = "0vj1z69hz0j7kxnzj13c4vck1qj5j1glr9lymk5ns2v8l56gakwb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/kosmos-theme"; - license = lib.licenses.free; - }; - }) {}; - kotlin-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kotlin-mode"; - ename = "kotlin-mode"; - version = "20190116.1255"; - src = fetchFromGitHub { - owner = "Emacs-Kotlin-Mode-Maintainers"; - repo = "kotlin-mode"; - rev = "0e542ae2f78420618df8b0123dfe168a37dce333"; - sha256 = "1rv3vxw3dx477sapfd0hj3pkl3x0sihdsyl671azbcr02z67xl6p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f2560e913b215821221c96069a1385fe4e19c3e/recipes/kotlin-mode"; - sha256 = "08jn8r4nhhlck0f7n5agibwh049rigdiy12lpmijbwk1zmcvsqws"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/kotlin-mode"; - license = lib.licenses.free; - }; - }) {}; - kpm-list = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kpm-list"; - ename = "kpm-list"; - version = "20170924.652"; - src = fetchFromGitHub { - owner = "KMahoney"; - repo = "kpm-list"; - rev = "e0f5112e5ce8ec1b603f4428fa51681c68bb28f5"; - sha256 = "1achcr3v0d85narnxqpbfxy9qfk537kl83wiq5lyfy3lwqqf7dmp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b7065d016e2da49277b165edf565bef5819d483/recipes/kpm-list"; - sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kpm-list"; - license = lib.licenses.free; - }; - }) {}; - kroman = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kroman"; - ename = "kroman"; - version = "20150827.1640"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "kroman-el"; - rev = "431144a3cd629a2812a668a29ad85182368dc9b0"; - sha256 = "0miywc3vfqi3hjb7lk8baz1y2nbp9phjjxclqriyqra4gw4n0vhc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/kroman"; - sha256 = "0rcy3343pmlqzqzhmz2c3r0b44pn8fsyp39mvn9nmdnaxsn6q3k8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kroman"; - license = lib.licenses.free; - }; - }) {}; - ksp-cfg-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ksp-cfg-mode"; - ename = "ksp-cfg-mode"; - version = "20190414.1648"; - src = fetchFromGitHub { - owner = "lashtear"; - repo = "ksp-cfg-mode"; - rev = "faec8bd8456c67276d065eb68c88a30efcef59ef"; - sha256 = "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode"; - sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ksp-cfg-mode"; - license = lib.licenses.free; - }; - }) {}; - kubel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "kubel"; - ename = "kubel"; - version = "20190314.1007"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "kubel"; - rev = "b8e1c67635dadaec3a289fa28111f6fcb817ef10"; - sha256 = "1dk44xq1bwlji48bbw1l4i4mqszsp1shfmmfs4q6gxyjs0hzbwpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1c7ff1c44946f232730066d6c8c25d5b41ffda7/recipes/kubel"; - sha256 = "1rm85bwpsqj600jvri508nn5i17ynyd84aanf8cqqxk5d2wf9x1n"; - name = "recipe"; - }; - packageRequires = [ emacs magit-popup ]; - meta = { - homepage = "https://melpa.org/#/kubel"; - license = lib.licenses.free; - }; - }) {}; - kubernetes = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "kubernetes"; - ename = "kubernetes"; - version = "20190604.1834"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "kubernetes-el"; - rev = "95d5c934f2955388bdd2f568b8e5c706ce15c21b"; - sha256 = "1kahnk2cy96zpxb35vj7f9zanb1nm79p3wxgq4cwgmi6h6gj0arq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16850227ea48f6f38102b9cdf80e0758766a24d2/recipes/kubernetes"; - sha256 = "06357a8y3rpvid03r9vhmjgq97hmiah5g8gff32dij9424vidil9"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit magit-popup ]; - meta = { - homepage = "https://melpa.org/#/kubernetes"; - license = lib.licenses.free; - }; - }) {}; - kubernetes-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , kubernetes - , lib - , melpaBuild }: - melpaBuild { - pname = "kubernetes-evil"; - ename = "kubernetes-evil"; - version = "20171122.1819"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "kubernetes-el"; - rev = "d4ce5eb5da1ea0879b7d3266d97aecc8aee2807c"; - sha256 = "1asjmxw24bvaapjaljj37pv9cbvqqw7577q1mds4lnicvnbdsxzi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16850227ea48f6f38102b9cdf80e0758766a24d2/recipes/kubernetes-evil"; - sha256 = "12ygfs6g9aivf2ws3lxwjm5xnd2kidhli889icpygd5v7gnk9pg8"; - name = "recipe"; - }; - packageRequires = [ evil kubernetes ]; - meta = { - homepage = "https://melpa.org/#/kubernetes-evil"; - license = lib.licenses.free; - }; - }) {}; - kubernetes-helm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "kubernetes-helm"; - ename = "kubernetes-helm"; - version = "20190131.1920"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "kubernetes-helm"; - rev = "1d50cb87600630e02bd52894a480627630084636"; - sha256 = "03z0mqg4lyvcnb33c1s3z9l0m47c1ahf45vaz80nh5sz3b4maii3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/269c73e26b3d0cc51bbac8b63bb3782f7428ab40/recipes/kubernetes-helm"; - sha256 = "0rik7qz5m2hxylmdsjdnrlj52sm7c669milxxp5i1a1c44621xa6"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/kubernetes-helm"; - license = lib.licenses.free; - }; - }) {}; - kubernetes-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kubernetes-tramp"; - ename = "kubernetes-tramp"; - version = "20181228.122"; - src = fetchFromGitHub { - owner = "gruggiero"; - repo = "kubernetes-tramp"; - rev = "8713571b66940f8f3f496b55baa23cdf1df7a869"; - sha256 = "05xbpdgxglqw7s2chay32s5kmglpd446dg3vh02d1462lh474snf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ea4b15e64a9dc33b9977650488693cacadd1ab1/recipes/kubernetes-tramp"; - sha256 = "15nlx3w2v0gky0zgbx7n0w1mdr6yaj4dh028ay2k19wg8wbsckjq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kubernetes-tramp"; - license = lib.licenses.free; - }; - }) {}; - kurecolor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kurecolor"; - ename = "kurecolor"; - version = "20180401.521"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "kurecolor"; - rev = "a27153f6a01f38226920772dc4917b73166da5e6"; - sha256 = "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor"; - sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/kurecolor"; - license = lib.licenses.free; - }; - }) {}; - kv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kv"; - ename = "kv"; - version = "20140108.734"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-kv"; - rev = "721148475bce38a70e0b678ba8aa923652e8900e"; - sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kv"; - sha256 = "0c10r7mhg517p62lc87ccqypsjrm28xh3bgv4f01fnx569jqgzgp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kv"; - license = lib.licenses.free; - }; - }) {}; - kwin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kwin"; - ename = "kwin"; - version = "20150308.1112"; - src = fetchFromGitHub { - owner = "reactormonk"; - repo = "kwin-minor-mode"; - rev = "d4f8f3593598b71ee596e0a87b2c1d6a912a9566"; - sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04e6d622a1f1cb765c33297a99f06ed513985498/recipes/kwin"; - sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kwin"; - license = lib.licenses.free; - }; - }) {}; - lab-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lab-themes"; - ename = "lab-themes"; - version = "20190320.1127"; - src = fetchFromGitHub { - owner = "MetroWind"; - repo = "lab-theme"; - rev = "06b55ef3d82a8ad23189caf8de76ef81fc0aba31"; - sha256 = "0dgs2gp5q3hfp8j1gbdkf26jwjjw04ggx34zrv35wg8yr26ah440"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5817cb4cb3a573f93bacfb8ef340bef0e1c5df4/recipes/lab-themes"; - sha256 = "10gvrrbqp6rxc9kwk8315pa1ldmja42vwr31xskjaq0l4fd28kx0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lab-themes"; - license = lib.licenses.free; - }; - }) {}; - labburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "labburn-theme"; - ename = "labburn-theme"; - version = "20170502.207"; - src = fetchFromGitHub { - owner = "ksjogo"; - repo = "labburn-theme"; - rev = "e95334acd8a73fbe8e156f70e047014a87e92e66"; - sha256 = "0ai8gr4an4d44lgin7kdzydn2d0a98jb8mv0n9b93bq160lbmkwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bfc9870fbe61f58f107b72fd7f16efba22c902/recipes/labburn-theme"; - sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/labburn-theme"; - license = lib.licenses.free; - }; - }) {}; - lammps-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lammps-mode"; - ename = "lammps-mode"; - version = "20180801.619"; - src = fetchFromGitHub { - owner = "HaoZeke"; - repo = "lammps-mode"; - rev = "a5b68d7a59975770b56ee8f6e66fa4f703a72ffe"; - sha256 = "1ma33bszv7d6am47n5r74ja4ks7n46m8xfkkr3vcqymlfhbdpq73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f5471a8e17977c17ad84b12a77fe80f37eda25e/recipes/lammps-mode"; - sha256 = "06i48pxp9vq4z7hffna0cndr6iblapim169659pmhidbc4pp7bm4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lammps-mode"; - license = lib.licenses.free; - }; - }) {}; - lang-refactor-perl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lang-refactor-perl"; - ename = "lang-refactor-perl"; - version = "20131122.1327"; - src = fetchFromGitHub { - owner = "jplindstrom"; - repo = "emacs-lang-refactor-perl"; - rev = "691bd69639de6b7af357e3b7143563ececd9c497"; - sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6bbbf89b71364720dd39e2cf902271108151b5ca/recipes/lang-refactor-perl"; - sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lang-refactor-perl"; - license = lib.licenses.free; - }; - }) {}; - langdoc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "langdoc"; - ename = "langdoc"; - version = "20150217.2245"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "langdoc"; - rev = "2c7223bacb116992d700ecb19a60df5c09c63424"; - sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/defe78f12dbd7137bed7b1a309caa579e220f7dc/recipes/langdoc"; - sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/langdoc"; - license = lib.licenses.free; - }; - }) {}; - langtool = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "langtool"; - ename = "langtool"; - version = "20190303.1427"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-langtool"; - rev = "81f2b8a07b29bbdd558db4b68dd904f4c0eb10a4"; - sha256 = "01w765n5bib060f0hci34f0vchf90b4r8gr1ng2c4yx20dvdjnqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/503845e79e67c921f1fde31447f3dd4da2b6f993/recipes/langtool"; - sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/langtool"; - license = lib.licenses.free; - }; - }) {}; - language-detection = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "language-detection"; - ename = "language-detection"; - version = "20161123.1013"; - src = fetchFromGitHub { - owner = "andreasjansson"; - repo = "language-detection.el"; - rev = "38f5d294870678efc6ccf94ce6e8175a58f93025"; - sha256 = "0jm3ybi353kjffvgy489b5x1yd8vi2vxdmn32z4c42zrnmg5a6lv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed2b68d0a11e5db0e7f2f5cbb2eb93c298bcb765/recipes/language-detection"; - sha256 = "1c613dj6j05idqyjd6ix7llw04d0327aicac04cicrb006km3r51"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/language-detection"; - license = lib.licenses.free; - }; - }) {}; - language-id = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "language-id"; - ename = "language-id"; - version = "20190207.257"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-language-id"; - rev = "9145c75eaa41a7a9deda928f704b99db056d3e9d"; - sha256 = "10dwrb610jdal6ifpj34mmy8qqbca2sgfmvn4p4qpcc967sv4f1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d03af6375bc7ba4612c43dea805d7f392f046f87/recipes/language-id"; - sha256 = "0p7hg005bmzy38sv2881fq1x2i7yjdhfjbki4y2av485c418rqz8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/language-id"; - license = lib.licenses.free; - }; - }) {}; - lastpass = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "lastpass"; - ename = "lastpass"; - version = "20171208.216"; - src = fetchFromGitHub { - owner = "storvik"; - repo = "emacs-lastpass"; - rev = "a4529ce70b8187ed9ac4972997df152af58ef2eb"; - sha256 = "1h4h7swww2is7qblqi5r1vh26a9lfl52c0yq7rgwd1pqclffgc8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46e5e8735baab7728bddce2693cea6bcee0e6360/recipes/lastpass"; - sha256 = "0x4c9c110nqv3v6kzcxdg9a9zcg7yn1hj6ffgrbsd8c3wbrdxrlj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs seq ]; - meta = { - homepage = "https://melpa.org/#/lastpass"; - license = lib.licenses.free; - }; - }) {}; - latex-extra = callPackage ({ auctex - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-extra"; - ename = "latex-extra"; - version = "20170816.1847"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "latex-extra"; - rev = "82d99b8b0c2db20e5270749582e03bcc2443ffb5"; - sha256 = "15m7zvdhg5z7d8alrw66p703wdp5r57lxrgq3zz7xc4hscwghlb1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/latex-extra"; - sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; - name = "recipe"; - }; - packageRequires = [ auctex cl-lib ]; - meta = { - homepage = "https://melpa.org/#/latex-extra"; - license = lib.licenses.free; - }; - }) {}; - latex-math-preview = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-math-preview"; - ename = "latex-math-preview"; - version = "20190123.2"; - src = fetchFromGitLab { - owner = "latex-math-preview"; - repo = "latex-math-preview"; - rev = "90fd86da2d9514882146a5db40cb916fc533cf55"; - sha256 = "063vnjhnxm2z9shkdv1j8kwyf37syczfkzxzh5z7w7aidvx55jzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e413b7684e9199510b00035825aa861d670e072/recipes/latex-math-preview"; - sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-math-preview"; - license = lib.licenses.free; - }; - }) {}; - latex-pretty-symbols = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-pretty-symbols"; - ename = "latex-pretty-symbols"; - version = "20151112.244"; - src = fetchhg { - url = "https://bitbucket.com/mortiferus/latex-pretty-symbols.el"; - rev = "ef4ea64c09ea"; - sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/latex-pretty-symbols"; - sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-pretty-symbols"; - license = lib.licenses.free; - }; - }) {}; - latex-preview-pane = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-preview-pane"; - ename = "latex-preview-pane"; - version = "20181008.1122"; - src = fetchFromGitHub { - owner = "jsinglet"; - repo = "latex-preview-pane"; - rev = "5297668a89996b50b2b62f99cba01cc544dbed2e"; - sha256 = "1m4f5p53275k8i9p0y105kkrp9nx1bwn6726my9s5dwnjhr5dnp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3227f2e35d701915a8d3479d20581dcbe3a778/recipes/latex-preview-pane"; - sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-preview-pane"; - license = lib.licenses.free; - }; - }) {}; - latex-unicode-math-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-unicode-math-mode"; - ename = "latex-unicode-math-mode"; - version = "20170123.1016"; - src = fetchFromGitHub { - owner = "Christoph-D"; - repo = "latex-unicode-math-mode"; - rev = "e8931e68214ca94e6a04080ebc629693d5881884"; - sha256 = "049lpqnyjz0x2dp7rzk9gwbf5s28s33vxxk5lfhax6kaizlxkaq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c021dfad8928c1a352e0ef5526eefa6c0a9cb37/recipes/latex-unicode-math-mode"; - sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-unicode-math-mode"; - license = lib.licenses.free; - }; - }) {}; - latexdiff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latexdiff"; - ename = "latexdiff"; - version = "20180521.1532"; - src = fetchFromGitHub { - owner = "galaunay"; - repo = "latexdiff.el"; - rev = "024ee7a4fd235695dacd9f53594fef3d79bee88b"; - sha256 = "17xpkbrwfck0m6zp5d1b9b4slkgyvm8d92nzilb4s1rf9nqf9mvw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d164cf118a2c928c04e4d5cbfd47ac732e626fe0/recipes/latexdiff"; - sha256 = "002frvk31q3plrqa6lldadchck51bch4n126y5l33fyfs0ipspfa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/latexdiff"; - license = lib.licenses.free; - }; - }) {}; - launch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "launch"; - ename = "launch"; - version = "20130619.1504"; - src = fetchFromGitHub { - owner = "sfllaw"; - repo = "emacs-launch"; - rev = "e7c3b573fc05fe4d3d322389079909311542e799"; - sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e46ed1761fa2e69f0dc2f58e422ea1de8a8cb49/recipes/launch"; - sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/launch"; - license = lib.licenses.free; - }; - }) {}; - launch-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "launch-mode"; - ename = "launch-mode"; - version = "20170105.2112"; - src = fetchFromGitHub { - owner = "iory"; - repo = "launch-mode"; - rev = "25ebd4ba77afcbe729901eb74923dbe9ae81c313"; - sha256 = "1pjb4gwzkk6djzyfqqxf6y5xvrsh4bi5ijg60zrdlnhivggnfbvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/876755fff14914b10a26d15f0c7ff32be7c51aa3/recipes/launch-mode"; - sha256 = "1za0h16z84ls7da17qzqady0simzy5pk1mlw3mb0nhlg2cfmn060"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/launch-mode"; - license = lib.licenses.free; - }; - }) {}; - launchctl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "launchctl"; - ename = "launchctl"; - version = "20150518.609"; - src = fetchFromGitHub { - owner = "pekingduck"; - repo = "launchctl-el"; - rev = "79842d30134a2f8838ffb909e87f6200ea148428"; - sha256 = "18fmgvfhv3kz1bpf9icipsmq9ifahhplv9q1b3rw8bbjcl5jrnb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66d0d8c6f7cb66e56328a9cfe9cdef6dffc3c1be/recipes/launchctl"; - sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/launchctl"; - license = lib.licenses.free; - }; - }) {}; - lavender-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lavender-theme"; - ename = "lavender-theme"; - version = "20170808.613"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-lavender-theme"; - rev = "ef5e959b95d7fb8152137bc186c4c24e986c1e3c"; - sha256 = "0pbpns387fmalkakbdl2q7d2y720m7ai7mnydsinjwlkdrshvj4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/lavender-theme"; - sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lavender-theme"; - license = lib.licenses.free; - }; - }) {}; - lcb-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lcb-mode"; - ename = "lcb-mode"; - version = "20160815.2240"; - src = fetchFromGitHub { - owner = "peter-b"; - repo = "lcb-mode"; - rev = "e5b0b6ca6c5feeb2502d66a760ddf5bb590d04c4"; - sha256 = "0i58qz4l5rzwp9kx4r9f818ly21ys71zh1zjxppp220p3yydljfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd1380a9ba363f62f297e3ab2995341258b51fd1/recipes/lcb-mode"; - sha256 = "184vd5ll0ms2lspzv8zz2zbairsr8i9p3gs28hrnnwm6mrpx4n18"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lcb-mode"; - license = lib.licenses.free; - }; - }) {}; - lcr = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lcr"; - ename = "lcr"; - version = "20180902.1219"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "lcr"; - rev = "c14f40692292d59156c7632dbdd2867c086aa75f"; - sha256 = "0mc55icihxqpf8b05990q1lc2nj2792wcgyr73xsiqx0963sjaj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29374d3da932675b7b3e28ab8906690dad9c9cbe/recipes/lcr"; - sha256 = "07syirjlrw8g95zk273953mnmg9x4bv8jpyvvzghhin4saiiiw3k"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/lcr"; - license = lib.licenses.free; - }; - }) {}; - lean-mode = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "lean-mode"; - ename = "lean-mode"; - version = "20180906.945"; - src = fetchFromGitHub { - owner = "leanprover"; - repo = "lean-mode"; - rev = "a9912c73387aa69183e12e4a5335128a7965c420"; - sha256 = "1w0cmircqnbi0qyi6sl3nnshjy2fdgaav88lj30g3qmnyiac1dnz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde/recipes/lean-mode"; - sha256 = "0rdraxsirkrzbinjwg4qam15iy3qiixqgwsckngzw8d9a4s9l6sj"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f flycheck s ]; - meta = { - homepage = "https://melpa.org/#/lean-mode"; - license = lib.licenses.free; - }; - }) {}; - leanote = callPackage ({ async - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pcache - , request - , s }: - melpaBuild { - pname = "leanote"; - ename = "leanote"; - version = "20161222.1739"; - src = fetchFromGitHub { - owner = "aborn"; - repo = "leanote-emacs"; - rev = "d499e7b59bb1f1a2fabc0e4c26fb101ed62ebc7b"; - sha256 = "1lg4zml26q97bx9jrmjikhnm3d74b12q2li5h8gpxx9m35wc360c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b00b806ae4562ca5a74f41c12ef35bfa597bcfa8/recipes/leanote"; - sha256 = "1xnfv7bpkw3ir402962zbp856d56nas098nkf7bamnsnax6kkqw7"; - name = "recipe"; - }; - packageRequires = [ async cl-lib emacs let-alist pcache request s ]; - meta = { - homepage = "https://melpa.org/#/leanote"; - license = lib.licenses.free; - }; - }) {}; - ledger-import = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ledger-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ledger-import"; - ename = "ledger-import"; - version = "20190501.2156"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "ledger-import"; - rev = "6911708e373e2cbdb3868df7711ef07925ed36bf"; - sha256 = "15vz5fy5yr4m3b77nikqln3y5bihjdmrzgxbp56hz83dqkkcnc4l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a1e2a9546b8b40f5f880197cb8166a6a715451f/recipes/ledger-import"; - sha256 = "1lcibmjk2d49vsa89wri7bbf695mjq2ikddz3nlzb6ljywsnqzm4"; - name = "recipe"; - }; - packageRequires = [ emacs ledger-mode ]; - meta = { - homepage = "https://melpa.org/#/ledger-import"; - license = lib.licenses.free; - }; - }) {}; - ledger-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ledger-mode"; - ename = "ledger-mode"; - version = "20190605.1535"; - src = fetchFromGitHub { - owner = "ledger"; - repo = "ledger-mode"; - rev = "3fe6662d562c70e8440ba108b18b95b0e84928be"; - sha256 = "0ah89dbssgp53y9sm9iwkwbdwh5kma3pazq2hz6f35hqmxfw3v3r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1549048b6f57fbe9d1f7fcda74b78a7294327b7b/recipes/ledger-mode"; - sha256 = "10asbcb5syv3b75bngsab3c84dp2xmc0q7s29im6kf4mzv5zcfcf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ledger-mode"; - license = lib.licenses.free; - }; - }) {}; - leerzeichen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "leerzeichen"; - ename = "leerzeichen"; - version = "20170422.613"; - src = fetchFromGitHub { - owner = "fgeller"; - repo = "leerzeichen.el"; - rev = "5acf9855ecb2b2cd5da4402bb48df149e7525cc5"; - sha256 = "1bx4pv51a9x8f51pjrms8jkfrpa3glwkh308svz05gnyi2g0r8hw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5de7033e75bc28de6e50b2146511cdaac4542ad6/recipes/leerzeichen"; - sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/leerzeichen"; - license = lib.licenses.free; - }; - }) {}; - leetcode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , graphql - , lib - , melpaBuild - , request-deferred - , spinner }: - melpaBuild { - pname = "leetcode"; - ename = "leetcode"; - version = "20190505.914"; - src = fetchFromGitHub { - owner = "kaiwk"; - repo = "leetcode.el"; - rev = "7bfa00954a5fcaf05b753c656c0b4c35ed73daf2"; - sha256 = "1z7k2sbx8lpwj61wqlj0037h457fgfbg697zfyakvbkvlw4aqlr6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f35b9b63f3f04dfca7c5fe62d3530b47006d8f/recipes/leetcode"; - sha256 = "094klmrh2adj9fcpykswdbbxm714cfws1lqgz64b7gdf82m5nm8x"; - name = "recipe"; - }; - packageRequires = [ dash emacs graphql request-deferred spinner ]; - meta = { - homepage = "https://melpa.org/#/leetcode"; - license = lib.licenses.free; - }; - }) {}; - legalese = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "legalese"; - ename = "legalese"; - version = "20150820.1024"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "legalese"; - rev = "ec23e69d18329456beed9546a1d6c72f96db91cf"; - sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/legalese"; - sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/legalese"; - license = lib.licenses.free; - }; - }) {}; - lemon-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lemon-mode"; - ename = "lemon-mode"; - version = "20130216.504"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "lemon-mode"; - rev = "155bfced6c9afc8072a0133d3d1baa54c6d67430"; - sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6163d4cf36031349480039b82de8cdc75c2db169/recipes/lemon-mode"; - sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lemon-mode"; - license = lib.licenses.free; - }; - }) {}; - lenlen-theme = callPackage ({ color-theme-solarized - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lenlen-theme"; - ename = "lenlen-theme"; - version = "20170328.1945"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "lenlen-theme"; - rev = "3af764f0b381bdbf04b1a9064695abbe7916bbc3"; - sha256 = "1zlgb3s7gdh0ypsjw4ck7ai6hqf54cakd1walj8qqhia23g76mxq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/lenlen-theme"; - sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9"; - name = "recipe"; - }; - packageRequires = [ color-theme-solarized ]; - meta = { - homepage = "https://melpa.org/#/lenlen-theme"; - license = lib.licenses.free; - }; - }) {}; - lentic = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , m-buffer - , melpaBuild - , s }: - melpaBuild { - pname = "lentic"; - ename = "lentic"; - version = "20190102.1324"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "lentic"; - rev = "90fb12acdfe9d6ace2c52c7557c91a66ce1448b5"; - sha256 = "09llb5cwmj5a934z2fn39yh7h5p26hcjpyjbxjn00x0hhqnw31v2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbb6f9cc3c1040b80fbf3f2df2ac2c3c8d18b6b1/recipes/lentic"; - sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; - name = "recipe"; - }; - packageRequires = [ dash emacs f m-buffer s ]; - meta = { - homepage = "https://melpa.org/#/lentic"; - license = lib.licenses.free; - }; - }) {}; - lentic-server = callPackage ({ fetchFromGitHub - , fetchurl - , lentic - , lib - , melpaBuild - , web-server }: - melpaBuild { - pname = "lentic-server"; - ename = "lentic-server"; - version = "20160717.1352"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "lentic-server"; - rev = "8e809fafbb27a98f815b544d9d9ee15843eb6a36"; - sha256 = "1wc1c6hqhbb5x4fi7lp30bsrfww9g12c41lphswy92qzlij4zbww"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10b8cc0b4612d7d02be3a74c21b762cbf7613bd6/recipes/lentic-server"; - sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56"; - name = "recipe"; - }; - packageRequires = [ lentic web-server ]; - meta = { - homepage = "https://melpa.org/#/lentic-server"; - license = lib.licenses.free; - }; - }) {}; - less-css-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "less-css-mode"; - ename = "less-css-mode"; - version = "20160930.2153"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "less-css-mode"; - rev = "59bf174c4e9f053ec2a7ef8c8a8198490390f6fb"; - sha256 = "1rkjamdy2a80w439vb2hhr7vqjj47wi2azlr7yq2xdz9851xsx9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/less-css-mode"; - sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/less-css-mode"; - license = lib.licenses.free; - }; - }) {}; - letcheck = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "letcheck"; - ename = "letcheck"; - version = "20160202.1148"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "letcheck"; - rev = "edf188ca2f85349e971b83f164c6484264e79426"; - sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a0937f704e33bbb9ea8f101cd87c44e8050afb/recipes/letcheck"; - sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/letcheck"; - license = lib.licenses.free; - }; - }) {}; - letterbox-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "letterbox-mode"; - ename = "letterbox-mode"; - version = "20170701.1825"; - src = fetchFromGitHub { - owner = "pacha64"; - repo = "letterbox-mode"; - rev = "88c67a51d67216d569a28e8423200883fde096dd"; - sha256 = "1xzzfr525pn2mj7x6xnvccxhls79bfpi5mqhl9ivisnlgj1bvdjw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1512e20962ea354e4311c0a2696a22576a099ba9/recipes/letterbox-mode"; - sha256 = "117dj5xzf6givwjyqsciz6axhlcj7xbx0zj91ximm81kb5fswgda"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/letterbox-mode"; - license = lib.licenses.free; - }; - }) {}; - leuven-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "leuven-theme"; - ename = "leuven-theme"; - version = "20190308.734"; - src = fetchFromGitHub { - owner = "fniessen"; - repo = "emacs-leuven-theme"; - rev = "916c0f3b562b5b0e4f4294b83decda941fb183b1"; - sha256 = "1garn9rkn1jmv1w329qdw0mbn11j467kfp64902ncajl3590x2ly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc/recipes/leuven-theme"; - sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/leuven-theme"; - license = lib.licenses.free; - }; - }) {}; - levenshtein = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "levenshtein"; - ename = "levenshtein"; - version = "20090830.340"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "levenshtein"; - rev = "070925197ebf6b704e6e00c4f2d2ec783f3df38c"; - sha256 = "1w6rhp723kn1ns7r0gcblp5q8bvncicnjjsgdangbib1a4l2xw79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/levenshtein"; - sha256 = "1vdbgzs7gfy89a1dzf6z5l3f5jmly1i8lb2fqi2d08qyl5rhb8bl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/levenshtein"; - license = lib.licenses.free; - }; - }) {}; - lexbind-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lexbind-mode"; - ename = "lexbind-mode"; - version = "20141027.729"; - src = fetchFromGitHub { - owner = "spacebat"; - repo = "lexbind-mode"; - rev = "fa0a6848c1cfd3fbf45db43dc2deef16377d887d"; - sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a493e642cc90bbe1c70a2d918793f0734464c9/recipes/lexbind-mode"; - sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lexbind-mode"; - license = lib.licenses.free; - }; - }) {}; - lfe-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lfe-mode"; - ename = "lfe-mode"; - version = "20170121.454"; - src = fetchFromGitHub { - owner = "rvirding"; - repo = "lfe"; - rev = "70579b69e44147f1b74f619dd9dbaed572d8f9d6"; - sha256 = "1p9a3d1jqm0kqn074f3fh1v4xp1f1jzwihv395bk6yxlhagk9anb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode"; - sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lfe-mode"; - license = lib.licenses.free; - }; - }) {}; - libelcouch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "libelcouch"; - ename = "libelcouch"; - version = "20180604.53"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "libelcouch"; - rev = "1396144ebbb9790d4c744db0d4aacc0211b8e8e6"; - sha256 = "1r0wrqiqar3jw5xbp1qv7kj7m1fdzciyy9690hwiq99dcm8nlri3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/209d5c507cfe42b152c21a4534c3ba549186420f/recipes/libelcouch"; - sha256 = "1zfjyfyjd59z0ns32v2b0r5g9ypjxrlmkx3djmxsmzd4an8ciq3p"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/libelcouch"; - license = lib.licenses.free; - }; - }) {}; - libgit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "libgit"; - ename = "libgit"; - version = "20190419.523"; - src = fetchFromGitHub { - owner = "magit"; - repo = "libegit2"; - rev = "d506a754e26ca42c028bf33315a4e227bbcba148"; - sha256 = "0ajw02213a88gkcqafy8v8872q9b6g920dbjgfm4knndw4ywsrp6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/993a5abe3a9e8b160f0d68283eeca6af033abc79/recipes/libgit"; - sha256 = "05yys8cjli2zhmhdh9w5qz287ibzplqabx5vyyjv9rpk6wgzkzik"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/libgit"; - license = lib.licenses.free; - }; - }) {}; - libmpdee = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "libmpdee"; - ename = "libmpdee"; - version = "20160117.1501"; - src = fetchFromGitHub { - owner = "andyetitmoves"; - repo = "libmpdee"; - rev = "a6ca3b7d6687f3ba60996b9b5044ad1d3b228290"; - sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc91db6f80463a1baea9759f9863b551ae21e180/recipes/libmpdee"; - sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/libmpdee"; - license = lib.licenses.free; - }; - }) {}; - libmpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "libmpdel"; - ename = "libmpdel"; - version = "20190426.2228"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "libmpdel"; - rev = "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe"; - sha256 = "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel"; - sha256 = "0qi9g3czwzi9hhp7gjczpzjx9vgzz52xi91332l0sxcxmwbawjp1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/libmpdel"; - license = lib.licenses.free; - }; - }) {}; - lice = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lice"; - ename = "lice"; - version = "20170220.143"; - src = fetchFromGitHub { - owner = "buzztaiki"; - repo = "lice-el"; - rev = "4339929927c62bd636f89bb39ea999d18d269250"; - sha256 = "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2508699ebfc846742940c5e4356b095b540e2405/recipes/lice"; - sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lice"; - license = lib.licenses.free; - }; - }) {}; - light-soap-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "light-soap-theme"; - ename = "light-soap-theme"; - version = "20150607.745"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "light-soap-theme"; - rev = "76a787bd40c6b567ae68ced7f5d9f9f10725e00d"; - sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/053be1123bb934d80b4d6db0e7e39b59771be035/recipes/light-soap-theme"; - sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/light-soap-theme"; - license = lib.licenses.free; - }; - }) {}; - line-reminder = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "line-reminder"; - ename = "line-reminder"; - version = "20190516.2225"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "line-reminder"; - rev = "9ba13659dd831e7c62230baadb079ecc370a8aa9"; - sha256 = "0vibay4ia6jxjas7a2if20w72dpmb3k3pr4n6msxy3fzl8dz2qxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/line-reminder"; - sha256 = "0cm9cv7ak1ibm68d2xrz26smh80g79dxjlwxj5qd9zc3yjyksdvi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/line-reminder"; - license = lib.licenses.free; - }; - }) {}; - line-up-words = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "line-up-words"; - ename = "line-up-words"; - version = "20180219.224"; - src = fetchFromGitHub { - owner = "janestreet"; - repo = "line-up-words"; - rev = "2c236f5772e18d0e50d7ca2eee7eebbe356d9b60"; - sha256 = "0sazx4a6hn0z7318mdc80z87n5ix4hhyyh4p4f37pv5p9q6y8sd2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28ac7764a19fee2e1e2a89d95569815f1940c5e4/recipes/line-up-words"; - sha256 = "0agsrrkwwfmbiy4z3g4hkrpfr3nqgd5lwfn18qrdxynijd5rqs79"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/line-up-words"; - license = lib.licenses.free; - }; - }) {}; - lines-at-once = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lines-at-once"; - ename = "lines-at-once"; - version = "20180421.1947"; - src = fetchFromGitHub { - owner = "jiahaowork"; - repo = "lines-at-once.el"; - rev = "a018ba90549384d52ec58c2685fd14a0f65252be"; - sha256 = "0bwc4d2gnfhaqzn455nzrvd9lys7z7ay2v1hxgwp99ndqq93ws6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/513d0f0c6976f685fc0df6b6bb0da3162f58f537/recipes/lines-at-once"; - sha256 = "1hiij6i47i9px82ll87dvx5pgp5jzz8qis7hdm8n6hd3c9rnabma"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lines-at-once"; - license = lib.licenses.free; - }; - }) {}; - lingr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lingr"; - ename = "lingr"; - version = "20100807.1031"; - src = fetchFromGitHub { - owner = "lugecy"; - repo = "lingr-el"; - rev = "4215a8704492d3c860097cbe2649936c22c196df"; - sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5d29710ab17b1a98f9b559344e4dd40a2b9c08/recipes/lingr"; - sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lingr"; - license = lib.licenses.free; - }; - }) {}; - linguistic = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linguistic"; - ename = "linguistic"; - version = "20181129.1316"; - src = fetchFromGitHub { - owner = "andcarnivorous"; - repo = "linguistic"; - rev = "23e47e98cdb09ee61883669b6d8a11bf6449862c"; - sha256 = "1bz2w43v1w5xlkbmhmb423nisyhja6qkgwhl68r5vjxqj1gxn2xj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aedc03a846b873edf2426c422abb8c75732158f8/recipes/linguistic"; - sha256 = "0yhyrr7yknvky6fb6js0lfxbl13i6a218kya7cpj2dpzdckcbhca"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linguistic"; - license = lib.licenses.free; - }; - }) {}; - link = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "link"; - ename = "link"; - version = "20140717.2029"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "a5619fb275520d699eaae214e41ebcfde23c17f3"; - sha256 = "176w46j3m343vlkjn9jyaaz3ikzdzxffrvhalgc76ydw9wyivbf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/link"; - sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/link"; - license = lib.licenses.free; - }; - }) {}; - link-hint = callPackage ({ avy - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "link-hint"; - ename = "link-hint"; - version = "20190312.1604"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "link-hint.el"; - rev = "d74a483652486260c052941fedeadddb1ea71f88"; - sha256 = "0dghxd165fbds6czy9bfwpid3i4irgp3q08n9mg57sfifi0cmij0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d24b48fe0bc127ae6ac4084be8059aacb8445afd/recipes/link-hint"; - sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; - name = "recipe"; - }; - packageRequires = [ avy cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/link-hint"; - license = lib.licenses.free; - }; - }) {}; - linphone = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linphone"; - ename = "linphone"; - version = "20130524.409"; - src = fetchFromGitHub { - owner = "zabbal"; - repo = "emacs-linphone"; - rev = "99af3db941b7f4e5272bb48bff96c1ce4ceac302"; - sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0ea68b186c813faceb6fc663633cb81df666f0e/recipes/linphone"; - sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linphone"; - license = lib.licenses.free; - }; - }) {}; - linum-off = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linum-off"; - ename = "linum-off"; - version = "20160217.1337"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "linum-off"; - rev = "3e37baaad27d27e405f8dfe01d4ab9cd5b591353"; - sha256 = "1hyy6d9ybdv9r6bibiylw66a8w4dmlvsj5gfkp37vsp5xj66f2iz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3774ed0cf6fb8c6d08553dc709c7e76a745b2e0/recipes/linum-off"; - sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linum-off"; - license = lib.licenses.free; - }; - }) {}; - linum-relative = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linum-relative"; - ename = "linum-relative"; - version = "20180124.247"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "linum-relative"; - rev = "c74a6981b688a5e1e6b8e0809363963ff558ce4d"; - sha256 = "0svxi1l3s4rg1k1apfw25gzi127rsks56b5yfg79a48b5rf1xmkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97ae01be4892a7c35aa0f82213433a2944041d87/recipes/linum-relative"; - sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linum-relative"; - license = lib.licenses.free; - }; - }) {}; - liquid-types = callPackage ({ button-lock - , dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , flycheck-liquidhs - , lib - , melpaBuild - , popup - , pos-tip }: - melpaBuild { - pname = "liquid-types"; - ename = "liquid-types"; - version = "20151201.2335"; - src = fetchFromGitHub { - owner = "ucsd-progsys"; - repo = "liquid-types.el"; - rev = "cc4bacbbf204ef9cf0756f78dfebee2c6ae14d7b"; - sha256 = "06rnma2xj2vnbvy1bnls59cagk6qsf862bj1zp6xbmpr1a5l9m4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda/recipes/liquid-types"; - sha256 = "1g7zyak69l4lcsq952j2jy692xxnill9nqb1xfa17yzp547cgvf2"; - name = "recipe"; - }; - packageRequires = [ - button-lock - dash - emacs - flycheck - flycheck-liquidhs - popup - pos-tip - ]; - meta = { - homepage = "https://melpa.org/#/liquid-types"; - license = lib.licenses.free; - }; - }) {}; - liso-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "liso-theme"; - ename = "liso-theme"; - version = "20160410.1329"; - src = fetchFromGitHub { - owner = "caisah"; - repo = "liso-theme"; - rev = "844688245eb860d23043455e165ee24503454c81"; - sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27b849f3a41a5ae3d497cef02a95c92fd479b93b/recipes/liso-theme"; - sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/liso-theme"; - license = lib.licenses.free; - }; - }) {}; - lisp-extra-font-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lisp-extra-font-lock"; - ename = "lisp-extra-font-lock"; - version = "20181008.1221"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "lisp-extra-font-lock"; - rev = "4605eccbe1a7fcbd3cacf5b71249435413b4db4f"; - sha256 = "152vcp3mdlv33jf5va4rinl1d0k960gnfhbrqqrafazgx9j3ya8w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13e01d4faf9ecb4dde8b6eb4acdb0e48e3e5b6ea/recipes/lisp-extra-font-lock"; - sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lisp-extra-font-lock"; - license = lib.licenses.free; - }; - }) {}; - lispxmp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lispxmp"; - ename = "lispxmp"; - version = "20170925.1723"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "lispxmp"; - rev = "7ad077b4ee91ce8a42f84eeddb9fc7ea4eac7814"; - sha256 = "1156jynii783v9sjj3a7s20ysa26mqaq22zk5nbia949hwbibx16"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/lispxmp"; - sha256 = "1a641v5cx4wy2v8a2swxzn1y9cz4g2bp4mn9q290n3ifpn5356dl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lispxmp"; - license = lib.licenses.free; - }; - }) {}; - lispy = callPackage ({ ace-window - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , iedit - , lib - , melpaBuild - , swiper - , zoutline }: - melpaBuild { - pname = "lispy"; - ename = "lispy"; - version = "20190528.206"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "lispy"; - rev = "73fd06518e6a023c9d58562f3d8016f8862bb161"; - sha256 = "0maxwmp3kxx9wlc9h4c1gl862q1a5vi284xddb7kdl74mjk2kdmr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; - sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; - name = "recipe"; - }; - packageRequires = [ ace-window emacs hydra iedit swiper zoutline ]; - meta = { - homepage = "https://melpa.org/#/lispy"; - license = lib.licenses.free; - }; - }) {}; - lispyscript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lispyscript-mode"; - ename = "lispyscript-mode"; - version = "20170720.1217"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "lispyscript-mode"; - rev = "def632e3335b0c481fbcf5a17f18b0a8c58dd12f"; - sha256 = "042nndsrv7kyq20v3lahrpr0x89xyayvhx59i0hx6pvkc9wgk5b6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf912fa20edc9cff12645381b303e37f2de14976/recipes/lispyscript-mode"; - sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lispyscript-mode"; - license = lib.licenses.free; - }; - }) {}; - lispyville = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , lispy - , melpaBuild }: - melpaBuild { - pname = "lispyville"; - ename = "lispyville"; - version = "20181217.647"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "lispyville"; - rev = "d28b937f0cabd8ce61e2020fe9a733ca80d82c74"; - sha256 = "0f6srwj1qqkfkbmp5n5pjvi6gm7b7xav05p5hrs2i83rjrakzzqx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d96d3603dc328467fcce29d3ac1b0a02833d51/recipes/lispyville"; - sha256 = "1pj41pd51x399gmy0j3qn9hr3ayw31pcg0h9pzbviqpnwmv2in6b"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil lispy ]; - meta = { - homepage = "https://melpa.org/#/lispyville"; - license = lib.licenses.free; - }; - }) {}; - list-environment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "list-environment"; - ename = "list-environment"; - version = "20151226.1856"; - src = fetchFromGitHub { - owner = "dgtized"; - repo = "list-environment.el"; - rev = "b7ca30b05905047be2e55199a6475f8d98ce318b"; - sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/696cd1647731eb1a22afb95f558c96a1b4aa5121/recipes/list-environment"; - sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/list-environment"; - license = lib.licenses.free; - }; - }) {}; - list-packages-ext = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , persistent-soft - , s }: - melpaBuild { - pname = "list-packages-ext"; - ename = "list-packages-ext"; - version = "20151115.916"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "list-packages-ext"; - rev = "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a"; - sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71c217d98c6967d979f57f89ca26200304b0fc37/recipes/list-packages-ext"; - sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; - name = "recipe"; - }; - packageRequires = [ ht persistent-soft s ]; - meta = { - homepage = "https://melpa.org/#/list-packages-ext"; - license = lib.licenses.free; - }; - }) {}; - list-unicode-display = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "list-unicode-display"; - ename = "list-unicode-display"; - version = "20181121.1516"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "list-unicode-display"; - rev = "62fbf84dbf0b9a4cbbbeede69d5392fe2774391b"; - sha256 = "0397inzyqssy8j1yz1j5mgjnwyx559f82hy4w8kz1hv3mhih8lp0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8e2a974a56665b97d7622b0428994edadc88a0/recipes/list-unicode-display"; - sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/list-unicode-display"; - license = lib.licenses.free; - }; - }) {}; - list-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "list-utils"; - ename = "list-utils"; - version = "20160414.702"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "list-utils"; - rev = "acf18aca1131a90f8d673974673e3c5d8fdc6a86"; - sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9fcd716cbb9f5a4de82a49e57bcb20c483d05f6/recipes/list-utils"; - sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/list-utils"; - license = lib.licenses.free; - }; - }) {}; - lit-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lit-mode"; - ename = "lit-mode"; - version = "20141123.936"; - src = fetchFromGitHub { - owner = "HectorAE"; - repo = "lit-mode"; - rev = "bfecbe898223393f34340ca379977be753ee497a"; - sha256 = "1sjyb5v3s9z128ifjqx7a1dsgds2iz185y82581qxakl7ylmn15k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a6a1c79c9bba7b17c150ea0663bc61936f15d83/recipes/lit-mode"; - sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lit-mode"; - license = lib.licenses.free; - }; - }) {}; - litable = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "litable"; - ename = "litable"; - version = "20160922.859"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "litable"; - rev = "4a57d7aeddca76448e4df2a46b42d49253e5e625"; - sha256 = "1zryrc0d2avb27w6a6yzqcc73rsr2rp795vi10qhb04ixda4a8w4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74f2190b653907985e49a96ded986ab11b4946d7/recipes/litable"; - sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/litable"; - license = lib.licenses.free; - }; - }) {}; - litecoin-ticker = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "litecoin-ticker"; - ename = "litecoin-ticker"; - version = "20160611.1711"; - src = fetchFromGitHub { - owner = "llcc"; - repo = "btcbox-ticker"; - rev = "3d8047c736e4ee0b8638953f8cc63eaefad34106"; - sha256 = "03iggfi3r5xjh9yhhpr1pgyayriycyybf8qnrhqkqcamh77kq21f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4976446a8ae40980d502186615902fc05c15ec7c/recipes/litecoin-ticker"; - sha256 = "14pjizgdckqhm31ihbz35j8g95jdpmf1rd4l5zz38fyx12zbcpx5"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/litecoin-ticker"; - license = lib.licenses.free; - }; - }) {}; - literal-string = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "literal-string"; - ename = "literal-string"; - version = "20170301.730"; - src = fetchFromGitHub { - owner = "joodie"; - repo = "literal-string-mode"; - rev = "2ca4fc08b8e19e6183b1f1db747bb0a4aa4f98eb"; - sha256 = "0wcz0lid05gnlmxpxm4ckw07cnxwjkyw6960nq7pylbjpg76g5ng"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6519bb53f409eeb0d557809b338849e473c193c4/recipes/literal-string"; - sha256 = "0ylv9dpw17w272f92vn5cldklyz1d8daihi1fsh5ylvxqpinyrkn"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/literal-string"; - license = lib.licenses.free; - }; - }) {}; - literate-coffee-mode = callPackage ({ coffee-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "literate-coffee-mode"; - ename = "literate-coffee-mode"; - version = "20170211.715"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-literate-coffee-mode"; - rev = "ef34c3a5b813ef078d44c29887761950ab6821c7"; - sha256 = "1bkpwl4fpyrxs941pp68pfk30ffi9v09h5dsamaqmlm43vchcspi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/literate-coffee-mode"; - sha256 = "18fdgay7xfgza75z3xma666f414m9dn7d50w94wzzmv7ja74sp64"; - name = "recipe"; - }; - packageRequires = [ coffee-mode ]; - meta = { - homepage = "https://melpa.org/#/literate-coffee-mode"; - license = lib.licenses.free; - }; - }) {}; - literate-elisp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "literate-elisp"; - ename = "literate-elisp"; - version = "20190109.521"; - src = fetchFromGitHub { - owner = "jingtaozf"; - repo = "literate-elisp"; - rev = "0724b62d98cb9d9c7f3d171c322a1059648746f5"; - sha256 = "0nnfp8rj4avn462w3fwln8c7sai3psz7kp97r3iyq4v9wavgdni2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd4c1c4da2a5571babda9a29a56b8972ad0687c0/recipes/literate-elisp"; - sha256 = "10vc3m54jp2wqjrmn9plq6lb5zfiy6jy0acpp09q3z325z0sql9j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/literate-elisp"; - license = lib.licenses.free; - }; - }) {}; - literate-starter-kit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "literate-starter-kit"; - ename = "literate-starter-kit"; - version = "20150730.1154"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "emacs24-starter-kit"; - rev = "6dce1d01781966c14558aa553cfc85008c06e115"; - sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/812860589cd92759fd2ae02d27f287de88f26863/recipes/literate-starter-kit"; - sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/literate-starter-kit"; - license = lib.licenses.free; - }; - }) {}; - live-code-talks = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , narrowed-page-navigation }: - melpaBuild { - pname = "live-code-talks"; - ename = "live-code-talks"; - version = "20180907.947"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "live-code-talks"; - rev = "97f16a9ee4e6ff3e0f9291eaead772c66e3e12ae"; - sha256 = "1clcm1yps38wdyj415hh7bl20fcpfin92hh5njsldqbvgcpndaqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/live-code-talks"; - sha256 = "1ji4lww71dqxnn5c9inix8xqcmgc76wbps0ylxhhgs44ki4hlyrm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs narrowed-page-navigation ]; - meta = { - homepage = "https://melpa.org/#/live-code-talks"; - license = lib.licenses.free; - }; - }) {}; - live-preview = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "live-preview"; - ename = "live-preview"; - version = "20190415.1514"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-live-preview"; - rev = "0229cc4b352204d9e24a0f5a062f0212b5344c58"; - sha256 = "13rhi83ahqklsr2jnmfdvs3rzrizgbw8hs2i6rf2wfq90srd1m39"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4f928dd7c043fba36a48f0bb31693f0ec67d3ec/recipes/live-preview"; - sha256 = "17sayv5l3ihhs370c1qg6377rkph0ailkh1ara1xpj40ljjf158j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/live-preview"; - license = lib.licenses.free; - }; - }) {}; - live-py-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "live-py-mode"; - ename = "live-py-mode"; - version = "20190601.1757"; - src = fetchFromGitHub { - owner = "donkirkby"; - repo = "live-py-plugin"; - rev = "cc7ca67d2d87dc14edcb624a4872188b333ed84c"; - sha256 = "11mmq49l7a0538f5wxvx3phhq3glig4wz4ag3zicjc56sghsx8l8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode"; - sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/live-py-mode"; - license = lib.licenses.free; - }; - }) {}; - lively = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lively"; - ename = "lively"; - version = "20171005.54"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "lively"; - rev = "348675828c6a81bfa1ac311ca465aad813542c1b"; - sha256 = "1j8w63hhk1wcxcfqz0wimqijp7p1m8a2n947gwqv8nk1wm40aqg3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e4b01286dbc84f01b43955b693ca08e675ffa07/recipes/lively"; - sha256 = "1q8cbl3sr3dpvzk57985giy4xmz4lvg94jcw7shbhz1v9q05dr5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lively"; - license = lib.licenses.free; - }; - }) {}; - livereload = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "livereload"; - ename = "livereload"; - version = "20170628.2350"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "emacs-livereload"; - rev = "1e501d7e46dbd476c2c7cc9d20b5ac9d41fb1955"; - sha256 = "1z1v2panxrqpam5ysnilx83y6b4dwxmxqhmbgjwfyd1bdmr4iya4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/330731804c442226fa2faaa3da408e9253a1c051/recipes/livereload"; - sha256 = "1z0dbg82l6znz1b03v19a8fnq6b1smikpvaplpxlgny82xrs9als"; - name = "recipe"; - }; - packageRequires = [ emacs websocket ]; - meta = { - homepage = "https://melpa.org/#/livereload"; - license = lib.licenses.free; - }; - }) {}; - livescript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "livescript-mode"; - ename = "livescript-mode"; - version = "20140612.2121"; - src = fetchFromGitHub { - owner = "yhisamatsu"; - repo = "livescript-mode"; - rev = "90a918d9686e256e6d4d439cc20f24dad8d3b804"; - sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1727cd154c841219b1dff1c8714cb09692e2730f/recipes/livescript-mode"; - sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/livescript-mode"; - license = lib.licenses.free; - }; - }) {}; - livid-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , skewer-mode }: - melpaBuild { - pname = "livid-mode"; - ename = "livid-mode"; - version = "20131116.544"; - src = fetchFromGitHub { - owner = "pandeiro"; - repo = "livid-mode"; - rev = "dfe5212fa64738bc4138bfebf349fbc8bc237c26"; - sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b14068485afbd888bf0d124aea089fe5fbd5038c/recipes/livid-mode"; - sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d"; - name = "recipe"; - }; - packageRequires = [ s skewer-mode ]; - meta = { - homepage = "https://melpa.org/#/livid-mode"; - license = lib.licenses.free; - }; - }) {}; - lms = callPackage ({ emacs - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lms"; - ename = "lms"; - version = "20181216.1446"; - src = fetchhg { - url = "https://bitbucket.com/inigoserna/lms.el"; - rev = "38302acf2aa3"; - sha256 = "0da14qr7lgkfxksnhf37ss5w6wxkw9qv5hvxk7z76jyzwqdc6w4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8be8497494b8543a8257c9ea92444baf7674951/recipes/lms"; - sha256 = "1ckrh6qbh5y2y3yzl2iyq8nqlpy4qp6vzc72ijcgayvcflb01vr1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lms"; - license = lib.licenses.free; - }; - }) {}; - load-bash-alias = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "load-bash-alias"; - ename = "load-bash-alias"; - version = "20181220.955"; - src = fetchFromGitHub { - owner = "daviderestivo"; - repo = "load-bash-alias"; - rev = "50df445bace7896318f10c58d26b673635704215"; - sha256 = "0m84ylx4j4bp898xc43yrkrk3csr2ppv3c51nirx5gdc5hnhykxj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/063fa99446bb54fadbbad1af90427462afe8bd8d/recipes/load-bash-alias"; - sha256 = "1maq7wykhn3cvxl8fiws3d2d63zlkzgpd3d9jz3rhyi9rcjcjzak"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/load-bash-alias"; - license = lib.licenses.free; - }; - }) {}; - load-env-vars = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "load-env-vars"; - ename = "load-env-vars"; - version = "20180511.1510"; - src = fetchFromGitHub { - owner = "diasjorge"; - repo = "emacs-load-env-vars"; - rev = "5da97fabb4d36a00a29c40375fce9c16d8005ab3"; - sha256 = "16xvcb0pq0a6c331grcdak7h8xmns752cz1dbvssm44xfv2cqjqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93835267005c49095a02fc1688b2b449f5acfb86/recipes/load-env-vars"; - sha256 = "0yc05qqhbva2zn2rrl4spp38jxblk4gh64q9fd7mgl7i50f2kk00"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/load-env-vars"; - license = lib.licenses.free; - }; - }) {}; - load-relative = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "load-relative"; - ename = "load-relative"; - version = "20190601.521"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-load-relative"; - rev = "dbcd7cbcca6503ef93f4b8d19bf7a9efd7f6bf9b"; - sha256 = "010f2mhvlzkxarw298850khqc6srzb01l2vay0jsp46dh3jfmdhf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative"; - sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/load-relative"; - license = lib.licenses.free; - }; - }) {}; - load-theme-buffer-local = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "load-theme-buffer-local"; - ename = "load-theme-buffer-local"; - version = "20120702.1336"; - src = fetchFromGitHub { - owner = "vic"; - repo = "color-theme-buffer-local"; - rev = "bc221a88aefec5bdc137b5d5e449e1f1e55ce901"; - sha256 = "0yhydmzllwygv6l9vyv23jr5rf2mx1fm7y1jv92dn43ys53bv3sb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/load-theme-buffer-local"; - sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/load-theme-buffer-local"; - license = lib.licenses.free; - }; - }) {}; - loc-changes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "loc-changes"; - ename = "loc-changes"; - version = "20160801.1008"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-loc-changes"; - rev = "4d1dcdf7631c23b1259ad4f72bf9686cf95fb46c"; - sha256 = "0a81933l3rrsbi9vkvfb1g94vkhl5n3fkffpy4icis97q7qh08mc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ce68d573d19f26ecfd190f8e6cd1f384ca3e8a/recipes/loc-changes"; - sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/loc-changes"; - license = lib.licenses.free; - }; - }) {}; - loccur = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "loccur"; - ename = "loccur"; - version = "20181203.1238"; - src = fetchFromGitHub { - owner = "fourier"; - repo = "loccur"; - rev = "194d70e6be82c4622b7460ca46ced38109ac0507"; - sha256 = "136ixa0w94imwacdjispcn81v5i7pb0qqzy6bzgjw2cr9z9539bx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72550b043794331e85bc4b124f6d8ab70d969eff/recipes/loccur"; - sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/loccur"; - license = lib.licenses.free; - }; - }) {}; - lockfile-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lockfile-mode"; - ename = "lockfile-mode"; - version = "20170624.2207"; - src = fetchFromGitHub { - owner = "preetpalS"; - repo = "emacs-lockfile-mode"; - rev = "496b6035716df0582f879f9488f296947cabead2"; - sha256 = "0sm73w2in65kdb68m9w3jrr5pa392x75bv063r8cdhy868031l49"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12a383eb6c29acb007dae9dc777ace3ba84edac9/recipes/lockfile-mode"; - sha256 = "13nr983xldja8m02a1rdnyqxc8g045hxjh6649wmqmqk4mk0m310"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lockfile-mode"; - license = lib.licenses.free; - }; - }) {}; - lodgeit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lodgeit"; - ename = "lodgeit"; - version = "20150312.649"; - src = fetchFromGitHub { - owner = "ionrock"; - repo = "lodgeit-el"; - rev = "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c"; - sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c82e72535aefade20e23e38931ca573e3459401e/recipes/lodgeit"; - sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lodgeit"; - license = lib.licenses.free; - }; - }) {}; - log4e = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "log4e"; - ename = "log4e"; - version = "20170401.604"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "log4e"; - rev = "34309972ad02abcebbcff6b1682731978aef030c"; - sha256 = "12zk40gqrh86m50y777kprkwz75vbcm0q1a9narzcs2lnpwc8g4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d0e451c5a8eb25db95990b058964a9acea4b89/recipes/log4e"; - sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/log4e"; - license = lib.licenses.free; - }; - }) {}; - log4j-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "log4j-mode"; - ename = "log4j-mode"; - version = "20160108.1118"; - src = fetchgit { - url = "https://git.code.sf.net/p/log4j-mode/code"; - rev = "a278948ea07ef8f4fdb6d389345a68b50de14fae"; - sha256 = "0fa2k0c0pp55crz358aw6b26q3mgw6lik498vy8p95vmcy6lb9v3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/log4j-mode"; - sha256 = "0311jb47fjji8dqy98anr487f7vnvi85p4mn5ymqvxs5c6972gms"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/log4j-mode"; - license = lib.licenses.free; - }; - }) {}; - logalimacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , popwin - , stem }: - melpaBuild { - pname = "logalimacs"; - ename = "logalimacs"; - version = "20131021.1129"; - src = fetchFromGitHub { - owner = "logaling"; - repo = "logalimacs"; - rev = "8286e39502250fc6c3c6656a7f46a8eee8e9a713"; - sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9833a5ca4d455f1d33b9367860e2051d60662f/recipes/logalimacs"; - sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; - name = "recipe"; - }; - packageRequires = [ popup popwin stem ]; - meta = { - homepage = "https://melpa.org/#/logalimacs"; - license = lib.licenses.free; - }; - }) {}; - logito = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logito"; - ename = "logito"; - version = "20120225.1255"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "logito"; - rev = "824acb89d2cc18cb47281a4fbddd81ad244a2052"; - sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/logito"; - sha256 = "0xi7zbxpialsn4pknj8aqmkbiwwsbapwynrrjb8avhli2hd4s3fl"; - name = "recipe"; - }; - packageRequires = [ eieio ]; - meta = { - homepage = "https://melpa.org/#/logito"; - license = lib.licenses.free; - }; - }) {}; - lognav-mode = callPackage ({ emacs - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lognav-mode"; - ename = "lognav-mode"; - version = "20190217.832"; - src = fetchhg { - url = "https://bitbucket.com/ellisvelo/lognav-mode"; - rev = "bec9f3eba66e"; - sha256 = "19axhlcny5i4hfrhxivalxrhpghy2czj92cflq0gb5b6ar6zgkyg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad86b93f4982a0c6291c771e12c8f42ace3b88f9/recipes/lognav-mode"; - sha256 = "1941scifg3nn7gmnki3sa9zvwsbb84w5lw2xjmdx0sh8rbxaw8gb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lognav-mode"; - license = lib.licenses.free; - }; - }) {}; - logpad = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logpad"; - ename = "logpad"; - version = "20180607.1215"; - src = fetchhg { - url = "https://bitbucket.com/tux_/logpad.el"; - rev = "506ace0e996f"; - sha256 = "0z9dq37hsrzjkd3pynqmm8gbiv1sbqnjxlqkyq6lpps5fd9n5vsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5148207367bf236223e952a1e4fd600f90571b5e/recipes/logpad"; - sha256 = "1r688z3y98wnr15fg6zzcs4c4yw0l6ygah07gjhblj8b7q7i2qgg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/logpad"; - license = lib.licenses.free; - }; - }) {}; - logstash-conf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logstash-conf"; - ename = "logstash-conf"; - version = "20170524.1229"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "logstash-conf.el"; - rev = "4e127f9aec190786613445aa88efa307ff7c6748"; - sha256 = "119yb1wk1n5ycfzgpffcwy7yx8ar8k1gza0gvbq3r61ha5a9qijs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/logstash-conf"; - sha256 = "0djf2kl6jypxlfss4x8ij670v733vid1vbyg6yd96pc9781v3zrm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/logstash-conf"; - license = lib.licenses.free; - }; - }) {}; - logview = callPackage ({ datetime - , emacs - , extmap - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logview"; - ename = "logview"; - version = "20181027.1057"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "logview"; - rev = "bd662d467dbd7c93cfe1e3058e4f11c49314fd6a"; - sha256 = "03s4q5xdz84cjn4qkfhsc3l9y3v5avrl2i5dby4bgsg2zj7n7f73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview"; - sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; - name = "recipe"; - }; - packageRequires = [ datetime emacs extmap ]; - meta = { - homepage = "https://melpa.org/#/logview"; - license = lib.licenses.free; - }; - }) {}; - lolcat = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lolcat"; - ename = "lolcat"; - version = "20190527.445"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "lolcat.el"; - rev = "4855e587a3b9681c077dac4b9f166dd860f439a4"; - sha256 = "0nbrc3wjmmy70ggwmzagkh5j1my7x6y67fyqgddkdrbnw543gly0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38e720f524b23b5742764186a695d143f983e179/recipes/lolcat"; - sha256 = "044y0s1wiwjwfw58nhx5zvrli527nim3d81dix2h60d8qwx0566a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lolcat"; - license = lib.licenses.free; - }; - }) {}; - lolcode-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lolcode-mode"; - ename = "lolcode-mode"; - version = "20111002.147"; - src = fetchFromGitHub { - owner = "bodil"; - repo = "lolcode-mode"; - rev = "280a47e0bf02ee3abc7c5b6b14345056f41981f9"; - sha256 = "1j51h2j0n6mkglalrp1mirpc1v7mgrfxfd1k43rhzg800rb4ahhr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/572d31a0bd8627d8b5f6bab021c953a1fee31d2c/recipes/lolcode-mode"; - sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lolcode-mode"; - license = lib.licenses.free; - }; - }) {}; - look-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , look-mode - , melpaBuild }: - melpaBuild { - pname = "look-dired"; - ename = "look-dired"; - version = "20160729.1623"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "look-dired"; - rev = "9bfa4e5e6f3810705b6426c88493ea0bf6b15640"; - sha256 = "1yagp35ylznrh3a5ahpzrrxi6ma69ppwqsab3cwss54bi4f02ihn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef66b97b2e9034cb0c62dd1e37b2577ffef60834/recipes/look-dired"; - sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd"; - name = "recipe"; - }; - packageRequires = [ look-mode ]; - meta = { - homepage = "https://melpa.org/#/look-dired"; - license = lib.licenses.free; - }; - }) {}; - look-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "look-mode"; - ename = "look-mode"; - version = "20151211.1026"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "look-mode"; - rev = "d65f75e8ea24eff2ac31c53b4835b45127eedd56"; - sha256 = "1adzlviy928wsqx9fvxi71rwv89zyydqmf5g0wrlx66r0ksw3793"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/look-mode"; - sha256 = "0nhhz5s423g4kqqh0vy8k0696r0myhjfv84p2vciliky9gv1wkig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/look-mode"; - license = lib.licenses.free; - }; - }) {}; - loop = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "loop"; - ename = "loop"; - version = "20160813.707"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "loop.el"; - rev = "0ce77271d56b0fcdba4b3b38fed526081cd1f674"; - sha256 = "0l0k2plgmfnqcy1ilk20755n5xk480p15mzqc247ipr0ldr9ajxr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba481ca96469b3bd518e4fd8f24947338c8af014/recipes/loop"; - sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/loop"; - license = lib.licenses.free; - }; - }) {}; - lorem-ipsum = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lorem-ipsum"; - ename = "lorem-ipsum"; - version = "20140911.1408"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "emacs-lorem-ipsum"; - rev = "893a27505734a1497b79bc26e0736a78221b35d9"; - sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c09f9b82430992d119d9148314c758f067832cd/recipes/lorem-ipsum"; - sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lorem-ipsum"; - license = lib.licenses.free; - }; - }) {}; - love-minor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lua-mode - , melpaBuild }: - melpaBuild { - pname = "love-minor-mode"; - ename = "love-minor-mode"; - version = "20170726.2236"; - src = fetchFromGitHub { - owner = "ejmr"; - repo = "love-minor-mode"; - rev = "3ca8f3405338f2d6f4fbcdd5e89342a46378543a"; - sha256 = "1hwm7yxbwvb27pa35cgcxyjfjdjhk2a33i417q2akc7vppdbcmzh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f224c4c7519b3668b1270c957227e486896b7b6/recipes/love-minor-mode"; - sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; - name = "recipe"; - }; - packageRequires = [ lua-mode ]; - meta = { - homepage = "https://melpa.org/#/love-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - lsp-elixir = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-elixir"; - ename = "lsp-elixir"; - version = "20190105.1259"; - src = fetchFromGitHub { - owner = "elixir-lsp"; - repo = "lsp-elixir.el"; - rev = "9fd091c092144a09c0df2d477257c1f4c37bb985"; - sha256 = "0m5hxlx0cnx4rdcz5chxqp074z9h1wj1nvg8dzmilsnmg3kmsshx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c875a05e68d09ecf37f7e13149f2624c70164ea3/recipes/lsp-elixir"; - sha256 = "0mimb67swcq2yis0s6w2bkk7sgqv7lyvz1hrh48h2q6qr3ywmq0n"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-elixir"; - license = lib.licenses.free; - }; - }) {}; - lsp-haskell = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-haskell"; - ename = "lsp-haskell"; - version = "20190602.125"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-haskell"; - rev = "8f2dbb6e827b1adce6360c56f795f29ecff1d7f6"; - sha256 = "00j6d5rpsi7h5jz54zpjmbpg38fda4xy67xc4x67r834493ldzlq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-haskell"; - sha256 = "0pdcxnfp8ng24bfk695wpx5wcdqnjrjsfpks0xicih3mcdm1x9l8"; - name = "recipe"; - }; - packageRequires = [ haskell-mode lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-haskell"; - license = lib.licenses.free; - }; - }) {}; - lsp-intellij = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-intellij"; - ename = "lsp-intellij"; - version = "20180831.1351"; - src = fetchFromGitHub { - owner = "Ruin0x11"; - repo = "lsp-intellij"; - rev = "cf30f0ac63bd0140e758840b8ab070e8313697b2"; - sha256 = "0ghw2as9fbnfhrr1nbqk97jcl7yb451xpmfbksxh7mvjm3lhmyvz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d72cbb85fe4e0c6bea9a704dc1545f88efa56d2/recipes/lsp-intellij"; - sha256 = "0l2ffxqsdzvddypdl3w9rd7qxy2kzw2iwfkr2w7czglyfbnyyg2b"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-intellij"; - license = lib.licenses.free; - }; - }) {}; - lsp-java = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , lsp-mode - , markdown-mode - , melpaBuild - , request }: - melpaBuild { - pname = "lsp-java"; - ename = "lsp-java"; - version = "20190604.902"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-java"; - rev = "15024929dd2ea6aa6d302eaf5e5b31cb4b7b0458"; - sha256 = "0ps8hvjy7kv1bbnpbmymn4aid27965jjl5s324vi5qav08qidpq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c03cb07862c5f35487fb4fb3cc44623774724717/recipes/lsp-java"; - sha256 = "0rrl9mh25w1avvyww840d3yh8nw0shirspxl2nxqwwdaymbkg2wr"; - name = "recipe"; - }; - packageRequires = [ - dash - dash-functional - emacs - f - ht - lsp-mode - markdown-mode - request - ]; - meta = { - homepage = "https://melpa.org/#/lsp-java"; - license = lib.licenses.free; - }; - }) {}; - lsp-javacomp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , s }: - melpaBuild { - pname = "lsp-javacomp"; - ename = "lsp-javacomp"; - version = "20190124.955"; - src = fetchFromGitHub { - owner = "tigersoldier"; - repo = "lsp-javacomp"; - rev = "82aa4ad6ca03a74565c35e855b318b1887bcd89b"; - sha256 = "0r0ig73hsa0gyx8s6hr1mbdgf9m1n2zh2v7yhq3405l4if08s5m6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b8a1c034554579a7e271409fa72020cfe441f68/recipes/lsp-javacomp"; - sha256 = "1gp8dlcpik2lmpicccq2kya498pmw9m8vz9m1fbd725p7wk58fhi"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode s ]; - meta = { - homepage = "https://melpa.org/#/lsp-javacomp"; - license = lib.licenses.free; - }; - }) {}; - lsp-mode = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , markdown-mode - , melpaBuild - , spinner }: - melpaBuild { - pname = "lsp-mode"; - ename = "lsp-mode"; - version = "20190606.48"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-mode"; - rev = "25ef48875326c073e2d46d0a4b38617331fc3898"; - sha256 = "1rx10z3id8ln8jmq2akp0jwjbzijf94qkwwwz1ga7mp5p2cz5xar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode"; - sha256 = "0cklwllqxzsvs4wvvvsc1pqpmp9w99m8wimpby6v6wlijfg6y1m9"; - name = "recipe"; - }; - packageRequires = [ - dash - dash-functional - emacs - f - ht - markdown-mode - spinner - ]; - meta = { - homepage = "https://melpa.org/#/lsp-mode"; - license = lib.licenses.free; - }; - }) {}; - lsp-origami = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , origami }: - melpaBuild { - pname = "lsp-origami"; - ename = "lsp-origami"; - version = "20190331.1023"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-origami"; - rev = "a7fb34006bb857577d0ded48a961a86a0d71b3b5"; - sha256 = "1pgzvqwfygh6rb0i2q743bd1hjsc0g2fmm3i6w0nswhxxav59ak3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68b7cf8ce2eb256db9affb2126e895aa5ad1db15/recipes/lsp-origami"; - sha256 = "0pzccbglwwv73x3iyfidiwhwfs1dd9krvyjyqkbl5w734z3aaqqk"; - name = "recipe"; - }; - packageRequires = [ lsp-mode origami ]; - meta = { - homepage = "https://melpa.org/#/lsp-origami"; - license = lib.licenses.free; - }; - }) {}; - lsp-p4 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-p4"; - ename = "lsp-p4"; - version = "20190127.249"; - src = fetchFromGitHub { - owner = "dmakarov"; - repo = "p4ls"; - rev = "084e33a5782f9153502d9b03e63d9cbbe81cdaeb"; - sha256 = "0id3rw2p35cs7ax85590qs16zybgrjcapsnly5ifzjk0a5k7548c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53f0da8b3d2903adeffdbc3d8df7d630bfd9ff71/recipes/lsp-p4"; - sha256 = "0cd3n17lqwz08zfkm9g5cr1cj2asznlbhxrym2a7b7shdmn3yx5f"; - name = "recipe"; - }; - packageRequires = [ lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-p4"; - license = lib.licenses.free; - }; - }) {}; - lsp-pyre = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-pyre"; - ename = "lsp-pyre"; - version = "20190405.2035"; - src = fetchFromGitHub { - owner = "jra3"; - repo = "lsp-pyre"; - rev = "e177b8f5efd1a955b5753aeb5d1894e6d21be35a"; - sha256 = "0g9vijpq7n38b7rvgbshh4s46m1387d7k2lcvy4md17sak5ivxrg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b243c6ab0a441531e02dc8fdd88c023ba505d25/recipes/lsp-pyre"; - sha256 = "1v8yx062cv5wmpg3lalah5cy8hvhslvyrd4f3185gmc0ynz71fpi"; - name = "recipe"; - }; - packageRequires = [ lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-pyre"; - license = lib.licenses.free; - }; - }) {}; - lsp-python-ms = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , lsp-mode - , melpaBuild - , python ? null }: - melpaBuild { - pname = "lsp-python-ms"; - ename = "lsp-python-ms"; - version = "20190421.1632"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-python-ms"; - rev = "427891baef868c22ae1c5702c657c41d23655e91"; - sha256 = "1mx913q5mgrfifd6bskjg5a66mn9474fwbf73d95db1s3ydfpimy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd67aefa5a6df2d1388a7516e529e388615c8fe0/recipes/lsp-python-ms"; - sha256 = "1aifydzz7jv3bf9qfxj37isq40wirfgvd9h40cb5c9wq4v44j8ps"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json lsp-mode python ]; - meta = { - homepage = "https://melpa.org/#/lsp-python-ms"; - license = lib.licenses.free; - }; - }) {}; - lsp-scala = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , sbt-mode }: - melpaBuild { - pname = "lsp-scala"; - ename = "lsp-scala"; - version = "20190604.537"; - src = fetchFromGitHub { - owner = "rossabaker"; - repo = "lsp-scala"; - rev = "6d15f76f8f5267cbed6d64d583a9fc551d889f64"; - sha256 = "115amdnvq0righ0ifqr64hxac05jhgpy31cx0bdmd2za9s5qpgg0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd494da0c0c2e2e58afc26d8e79aeeea41c6ee09/recipes/lsp-scala"; - sha256 = "1r8ha0q9gphcs6ihqswgvbhs9b6v6n1pvlqxwjnjwpdhsr5fsw1p"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode sbt-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-scala"; - license = lib.licenses.free; - }; - }) {}; - lsp-sourcekit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-sourcekit"; - ename = "lsp-sourcekit"; - version = "20181216.650"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-sourcekit"; - rev = "99cac71aba68b2ae85c9295d71dda8bc513a85e2"; - sha256 = "0z2yj04if4dhqq2c7am5kzdapaj4l3k0blmy1cp55pr0fkhn8mpj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1e15078916dc053ca2413a6afae51df22321e9e/recipes/lsp-sourcekit"; - sha256 = "1n3lkpyk2mb8a5qc2h00d6dgbp4ws8pwzqljplnnm35sqg6an76k"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-sourcekit"; - license = lib.licenses.free; - }; - }) {}; - lsp-treemacs = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , lsp-mode - , melpaBuild - , treemacs }: - melpaBuild { - pname = "lsp-treemacs"; - ename = "lsp-treemacs"; - version = "20190529.1226"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-treemacs"; - rev = "1eb072aef80de74063e8da513e4a09abc304476c"; - sha256 = "0c6xik4ywybg6vkhbhhwkh332wml400w581cg432ba3vlrk9rlhs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9996b16461fe7c16b315ef30aa6b75c724f8fef/recipes/lsp-treemacs"; - sha256 = "1lgpph7mp4mhvg47fnl7janw2nh8wv1bwap69spgc3qprwbg2hd1"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f ht lsp-mode treemacs ]; - meta = { - homepage = "https://melpa.org/#/lsp-treemacs"; - license = lib.licenses.free; - }; - }) {}; - lsp-ui = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-ui"; - ename = "lsp-ui"; - version = "20190523.821"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-ui"; - rev = "3ccc3e3386732c3ee22c151e6b5215a0e4c99173"; - sha256 = "1k51lwrd3qy1d0afszg1i041cm8a3pz4qqdj7561sncy8m0szrwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7c78c9b07ede9949d14df74b188d4c1a3365196/recipes/lsp-ui"; - sha256 = "0fylav8b54g020z039zm1mx26d257715bfn9nnpw9i0b97539lqi"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs lsp-mode markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-ui"; - license = lib.licenses.free; - }; - }) {}; - lua-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lua-mode"; - ename = "lua-mode"; - version = "20190113.250"; - src = fetchFromGitHub { - owner = "immerrr"; - repo = "lua-mode"; - rev = "95c64bb5634035630e8c59d10d4a1d1003265743"; - sha256 = "0cawb544qylifkvqads307n0nfqg7lvyphqbpbzr2xvr5iyi4901"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/lua-mode"; - sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lua-mode"; - license = lib.licenses.free; - }; - }) {}; - luarocks = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "luarocks"; - ename = "luarocks"; - version = "20170430.1605"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "luarocks.el"; - rev = "cee27ba0716edf338077387969883226dd2b7484"; - sha256 = "0rdsjmmi95agb859997qdhbk0dns2jyx2mlg8rync58wna70nmbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5abd2b52a071ab206d40057dc85c891183204ea/recipes/luarocks"; - sha256 = "05srrk9gmv1vhq7m5bjhh2hl2siis04j15b31x0sgknxh3ybr33x"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/luarocks"; - license = lib.licenses.free; - }; - }) {}; - lush-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lush-theme"; - ename = "lush-theme"; - version = "20180816.1500"; - src = fetchFromGitHub { - owner = "andre-richter"; - repo = "emacs-lush-theme"; - rev = "7cfc993709d712f75c51b505078608c9e1c11466"; - sha256 = "0v17srm3l8p556d4j5im2bn7brxv7v0g2crlm4gb8x1cwjrbajzf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b29b2f36852e711ce3520d71e83921a1dcb9ccf/recipes/lush-theme"; - sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lush-theme"; - license = lib.licenses.free; - }; - }) {}; - lusty-explorer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lusty-explorer"; - ename = "lusty-explorer"; - version = "20180628.646"; - src = fetchFromGitHub { - owner = "sjbach"; - repo = "lusty-emacs"; - rev = "fc4b2f0f8a07db107234490fdfbf72f8b76a6643"; - sha256 = "014fivh9shi7p3x31bl22x48agrgygp0pf2lgzzflrxcynmprbnp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efedaa3b1de5f6406c7dcd842eee42eefaf8ab50/recipes/lusty-explorer"; - sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lusty-explorer"; - license = lib.licenses.free; - }; - }) {}; - lv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lv"; - ename = "lv"; - version = "20181110.940"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "hydra"; - rev = "5c5b9ca3262594c92f8f73c98db5ed0f1efd0319"; - sha256 = "0dvh4sg1s76jy41vsy6dh3a4b8vr5msldnyssmqzdqwrsw64hl6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5114349617617673d5055fe28cb8f8c86cf41f83/recipes/lv"; - sha256 = "1lkm40rwpj9hmckng9bz5g4jbx9g9i3wlqgl6rq0m6i14syr69v4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lv"; - license = lib.licenses.free; - }; - }) {}; - lxc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lxc"; - ename = "lxc"; - version = "20140410.1322"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-lxc"; - rev = "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835"; - sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c16c08c388e3280f617d0768bc1cd75c5897768/recipes/lxc"; - sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lxc"; - license = lib.licenses.free; - }; - }) {}; - lxc-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lxc-tramp"; - ename = "lxc-tramp"; - version = "20180523.1324"; - src = fetchFromGitHub { - owner = "montag451"; - repo = "lxc-tramp"; - rev = "1aab85fef50df2067902bff13e1bac5e6366908b"; - sha256 = "066qwyk38r42xriifg1ik2f0am0m57wlfrk5278sycr8vbag6fc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2464020a5b3d89bddcd122cad81fed84ded9b117/recipes/lxc-tramp"; - sha256 = "0rksh7k30kh3i23c98qinffz2zj6h1bshaw994hwy8qwgm38vx61"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/lxc-tramp"; - license = lib.licenses.free; - }; - }) {}; - lxd-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lxd-tramp"; - ename = "lxd-tramp"; - version = "20181022.1707"; - src = fetchFromGitHub { - owner = "onixie"; - repo = "lxd-tramp"; - rev = "f335c76245f62b02cf67a9376eca6f3863c8a75a"; - sha256 = "0byhafxcc4qw08b16fd00nkyqz1jmq7js0l5q4lda4xdpfgl1a65"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7778f5961eaaa356e5e383ef2323c5713e5bf2/recipes/lxd-tramp"; - sha256 = "0i611z4pksrf4zf0h8wnradqbcad5f43dq8bg3dsik0jdcjlvg5p"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/lxd-tramp"; - license = lib.licenses.free; - }; - }) {}; - lyrics = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "lyrics"; - ename = "lyrics"; - version = "20180812.1141"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "lyrics.el"; - rev = "d0b920be634a5be81ad49418cfaada0f0a57d6cd"; - sha256 = "0926avnlxi8qkr1faplk1aj4lji0ixa4lv81badi5zsmpyyrwmm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b04c8f3dfa9fc07cc0ff3df5c4069f864b6db92e/recipes/lyrics"; - sha256 = "0kj8v8cg4yqnz0v1nhq41jxjgd4ivqd6lsr1v5cqhg4m0r7f2nzc"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/lyrics"; - license = lib.licenses.free; - }; - }) {}; - m-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "m-buffer"; - ename = "m-buffer"; - version = "20170407.1441"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "m-buffer-el"; - rev = "6eb1d2535a82707a83733173bc400a0d8e520c80"; - sha256 = "1sx76i59razwccvn6x7rx5a124bfyjw9fcbxf4gj7nsg33qiq809"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c34d02682e87c9978a3583bd903dcac5da5b41d5/recipes/m-buffer"; - sha256 = "17smq7wlidsls870hla5b94xq2pwk24b88jvrbbcqw6f5z3ypf94"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/m-buffer"; - license = lib.licenses.free; - }; - }) {}; - mac-pseudo-daemon = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mac-pseudo-daemon"; - ename = "mac-pseudo-daemon"; - version = "20170728.1240"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "mac-pseudo-daemon"; - rev = "d235680a72677f11925b912428ad1a57b664e3e8"; - sha256 = "0gqknrwhfzr7cf5pgs33a5xh79y0yzxghs6wsvavvqkmf4cvck40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/mac-pseudo-daemon"; - sha256 = "12fwrcnwzsfms42rzv4wif5yzx3gnsz8yzdcgkpl37kkx85iy8v0"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/mac-pseudo-daemon"; - license = lib.licenses.free; - }; - }) {}; - maces-game = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "maces-game"; - ename = "maces-game"; - version = "20170903.851"; - src = fetchFromGitHub { - owner = "pawelbx"; - repo = "maces-game"; - rev = "6a067422d305ac51612842930ed6686dc615ffec"; - sha256 = "07pl2y4qlpcn9ap2vp1gpvdqh4l05gb7pp11c1krlaxybhwdcqjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9f33b926ecec48a43ba4f0484c687a7349ce50/recipes/maces-game"; - sha256 = "0wz91dsa0w4xlkl5lbdr8k4pgkgalsqcy27sd0i8xswq3wwiy0ip"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/maces-game"; - license = lib.licenses.free; - }; - }) {}; - macro-math = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "macro-math"; - ename = "macro-math"; - version = "20130328.904"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "macro-math.el"; - rev = "216e59371e9ee39c34117ba79b9acd78bb415750"; - sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/macro-math"; - sha256 = "072ycszl4cjc9nvv4axsgyfzz9djpgh4y1xqfr1nxi41nsdfc9kn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/macro-math"; - license = lib.licenses.free; - }; - }) {}; - macrostep = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "macrostep"; - ename = "macrostep"; - version = "20161120.1306"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "macrostep"; - rev = "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267"; - sha256 = "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/macrostep"; - sha256 = "1h1gag21x05a14j0wbg0lg502fq2hbqfhjlg05kysw9f870whfq2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/macrostep"; - license = lib.licenses.free; - }; - }) {}; - madhat2r-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "madhat2r-theme"; - ename = "madhat2r-theme"; - version = "20170202.1630"; - src = fetchFromGitHub { - owner = "madhat2r"; - repo = "madhat2r-theme"; - rev = "6b387f09de055cfcc15d74981cd4f32f8f9a7323"; - sha256 = "1nnjdqqbarzv62ic3ddc2z9wmh93zjia4nvfjmji8213dngrrf88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44a382a388821908306c0b8350fba91218515e1b/recipes/madhat2r-theme"; - sha256 = "0y588skd6c2ykyp54d38ibwrqglnaanr15d45d51cvcvp9k7x508"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/madhat2r-theme"; - license = lib.licenses.free; - }; - }) {}; - mag-menu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , splitter }: - melpaBuild { - pname = "mag-menu"; - ename = "mag-menu"; - version = "20150505.1150"; - src = fetchFromGitHub { - owner = "chumpage"; - repo = "mag-menu"; - rev = "9b9277021cd09fb1dba64b1d2a00705d20914bd6"; - sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00043412ffa4e434de9679204b9b3d2602e76ae0/recipes/mag-menu"; - sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2"; - name = "recipe"; - }; - packageRequires = [ splitter ]; - meta = { - homepage = "https://melpa.org/#/mag-menu"; - license = lib.licenses.free; - }; - }) {}; - magic-filetype = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "magic-filetype"; - ename = "magic-filetype"; - version = "20180219.752"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "magic-filetype.el"; - rev = "019494add5ff02dd36cb3f500142fc51125522cc"; - sha256 = "1hw77d4wgqrms8rvkv3xd50v4y9qjvm7cpz5rkgmvizs34pjqy22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/magic-filetype"; - sha256 = "0f0j8fgh2gpkarz9308pns0d89wc2dchyim6hbixkdpqzg9gskc3"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/magic-filetype"; - license = lib.licenses.free; - }; - }) {}; - magic-latex-buffer = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "magic-latex-buffer"; - ename = "magic-latex-buffer"; - version = "20170530.1705"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "magic-latex-buffer"; - rev = "f1172ea243ff74b2013215b906eb8c0066497384"; - sha256 = "0rsq79sbf24cvdib283ddc2vg37sjyh3h0d1siki86psyg1mgaz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07e240ebe71d389d314c4a27bbcfe1f88b215c3b/recipes/magic-latex-buffer"; - sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/magic-latex-buffer"; - license = lib.licenses.free; - }; - }) {}; - magik-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "magik-mode"; - ename = "magik-mode"; - version = "20190527.656"; - src = fetchFromGitHub { - owner = "roadrunner1776"; - repo = "magik"; - rev = "cbe399fb9df03f93e9c426dcbd5de4f10c0694b4"; - sha256 = "1lv7v3ahqb9flb8kwn09z6gl6fjn4gikcn5bjkd94p15kbdl5lc0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/291cce8e8e3475348b446ba38833eb1e37d4db65/recipes/magik-mode"; - sha256 = "1d6n7mpwavrajcgai6j0y5khhgc4jaag1ig1xx8w04mr48xrjxqk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/magik-mode"; - license = lib.licenses.free; - }; - }) {}; - magit = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , git-commit - , lib - , melpaBuild - , transient - , with-editor }: - melpaBuild { - pname = "magit"; - ename = "magit"; - version = "20190605.717"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = "0fb3f3e74d331e29ce272586a61042744fabfe1f"; - sha256 = "1xgndzw46ya5kan08fasqf0zanc7dax5mm03946hc7pypibp5a8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f963950d69a944443d9b6a1658799f7860d0f93/recipes/magit"; - sha256 = "13fipghvlzbx2d4dwxmm1hhnnd28davdp8rjqhq8g4g0lcn3h8b1"; - name = "recipe"; - }; - packageRequires = [ async dash emacs git-commit transient with-editor ]; - meta = { - homepage = "https://melpa.org/#/magit"; - license = lib.licenses.free; - }; - }) {}; - magit-annex = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-annex"; - ename = "magit-annex"; - version = "20190420.1941"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-annex"; - rev = "c8648ebe70898cd3d62599643ad191c3a9b9831a"; - sha256 = "1kjxsmkhvwjcqbbmw9128qhnrnvvl8q0nfys5n358ckzyxf6a5ph"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex"; - sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; - name = "recipe"; - }; - packageRequires = [ cl-lib magit ]; - meta = { - homepage = "https://melpa.org/#/magit-annex"; - license = lib.licenses.free; - }; - }) {}; - magit-diff-flycheck = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , magit - , melpaBuild - , seq }: - melpaBuild { - pname = "magit-diff-flycheck"; - ename = "magit-diff-flycheck"; - version = "20190523.2251"; - src = fetchFromGitHub { - owner = "ragone"; - repo = "magit-diff-flycheck"; - rev = "ad58efa312d708f25661dfcc2a7f83a833cca328"; - sha256 = "0h0bg8vm8rf4rppx2gpxjcklnjfnbxv0c5n8fia2a3f9qaz4m0as"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5d28982425519157a6116c077fbc4be7cfa53be/recipes/magit-diff-flycheck"; - sha256 = "1gnjvhxy48ah84cglq6653wgb07g0gry0672334ad3cwc5b45kdk"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck magit seq ]; - meta = { - homepage = "https://melpa.org/#/magit-diff-flycheck"; - license = lib.licenses.free; - }; - }) {}; - magit-filenotify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-filenotify"; - ename = "magit-filenotify"; - version = "20151116.1540"; - src = fetchFromGitHub { - owner = "ruediger"; - repo = "magit-filenotify"; - rev = "c0865b3c41af20b6cd89de23d3b0beb54c8401a4"; - sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca5541d2ce3553e9ade2c1ec1c0d78103dfd0c4d/recipes/magit-filenotify"; - sha256 = "1ihk5yi6psqkccpi2bq2h70kn7k874zl7wcinjaq21lirk4z7bvn"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-filenotify"; - license = lib.licenses.free; - }; - }) {}; - magit-find-file = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-find-file"; - ename = "magit-find-file"; - version = "20150702.130"; - src = fetchFromGitHub { - owner = "bradwright"; - repo = "magit-find-file.el"; - rev = "035da838b1a19e7a5ee135b4ca8475f4e235b61e"; - sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/magit-find-file"; - sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; - name = "recipe"; - }; - packageRequires = [ dash magit ]; - meta = { - homepage = "https://melpa.org/#/magit-find-file"; - license = lib.licenses.free; - }; - }) {}; - magit-gerrit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-gerrit"; - ename = "magit-gerrit"; - version = "20160226.130"; - src = fetchFromGitHub { - owner = "terranpro"; - repo = "magit-gerrit"; - rev = "ece6f369694aca17f3ac166ed2801b432acfe20d"; - sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7cc000debed666ad6800e31c114eedb7384317c/recipes/magit-gerrit"; - sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; - name = "recipe"; - }; - packageRequires = [ magit ]; - meta = { - homepage = "https://melpa.org/#/magit-gerrit"; - license = lib.licenses.free; - }; - }) {}; - magit-gh-pulls = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "magit-gh-pulls"; - ename = "magit-gh-pulls"; - version = "20180716.936"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "magit-gh-pulls"; - rev = "6949e973f3e951cb0bfe75d889e0fcccc33ba733"; - sha256 = "0djr5lkv2wjs2c4dvb41xjkpjk9w6q888r4dlgw9w35z7h30b5vi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b54fe4f51820c2f707e1f5d8a1128fff19a319c/recipes/magit-gh-pulls"; - sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; - name = "recipe"; - }; - packageRequires = [ emacs gh magit pcache s ]; - meta = { - homepage = "https://melpa.org/#/magit-gh-pulls"; - license = lib.licenses.free; - }; - }) {}; - magit-gitflow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , magit - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "magit-gitflow"; - ename = "magit-gitflow"; - version = "20170929.124"; - src = fetchFromGitHub { - owner = "jtatarik"; - repo = "magit-gitflow"; - rev = "cc41b561ec6eea947fe9a176349fb4f771ed865b"; - sha256 = "0jz69wrrzvqadaphmjrr146nzvmphsbl7rmc3ccnpw1gw6gnz81f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfaeb33dec2c75d21733b6e51d063664c6544e4d/recipes/magit-gitflow"; - sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; - name = "recipe"; - }; - packageRequires = [ magit magit-popup ]; - meta = { - homepage = "https://melpa.org/#/magit-gitflow"; - license = lib.licenses.free; - }; - }) {}; - magit-imerge = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-imerge"; - ename = "magit-imerge"; - version = "20190218.2153"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-imerge"; - rev = "54f2e25eb5f9e9763a60808ecfc1edef7f276ce0"; - sha256 = "0i16s3kc5k1sr2fgq72n0nmrwqphrg5zppmvri653120nga7b5lx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c/recipes/magit-imerge"; - sha256 = "0rycmbsi2s7rjqfpcv794vhkybav7d8ikzdaxai36szxpg9pzhj4"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-imerge"; - license = lib.licenses.free; - }; - }) {}; - magit-lfs = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-lfs"; - ename = "magit-lfs"; - version = "20190504.1209"; - src = fetchFromGitHub { - owner = "Ailrun"; - repo = "magit-lfs"; - rev = "eb5042d1c484acaae5d0787b29da5e010473bc5a"; - sha256 = "1hpbnd0w05s0ihzpn37swhb1465h3lz3vnzzqy4w1gya5v94mcn7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/magit-lfs"; - sha256 = "1xc32f2k3dwpqncnrr3xyr2963ywa0006z3c01nypxgs1xkfsbdx"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-lfs"; - license = lib.licenses.free; - }; - }) {}; - magit-libgit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , libgit - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-libgit"; - ename = "magit-libgit"; - version = "20190419.845"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = "68840e6da97fd35ac41c6f007c1c22dde62a7a6a"; - sha256 = "17wx7bd6hvdi4pwpv9pzixffcyidyw3s0b9wpg3ipl3lkwyzngya"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0580362be495894c61b99b7efb4cfa435cc0dd72/recipes/magit-libgit"; - sha256 = "0fi3w2f79qn3hf5rw5jp8128xbk5r0xwwwb56zcjn2na02dynfb1"; - name = "recipe"; - }; - packageRequires = [ emacs libgit magit ]; - meta = { - homepage = "https://melpa.org/#/magit-libgit"; - license = lib.licenses.free; - }; - }) {}; - magit-org-todos = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-org-todos"; - ename = "magit-org-todos"; - version = "20180709.1250"; - src = fetchFromGitHub { - owner = "danielma"; - repo = "magit-org-todos.el"; - rev = "9ffa3efb098434d837cab4bacd1601fdfc6fe999"; - sha256 = "0kxz5q8q5np4zm1ls4hx1h53vlnhj0mnmbq12p5nzk5zcxycbcpz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84480cad490cab2f087a484ed7b9d3d3064bbd29/recipes/magit-org-todos"; - sha256 = "0yywgzm2jzvsccm9h0a0s1q8fag9dfajnznwk6iqz5pywq5mxijr"; - name = "recipe"; - }; - 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"; - ename = "magit-p4"; - version = "20170414.546"; - src = fetchFromGitHub { - owner = "qoocku"; - repo = "magit-p4"; - rev = "ef23e89dc504970e78ac9b158731a3eda7d6d7ee"; - sha256 = "1gld0x4y4jshyfr0q8k5icjpgmfrbcfir13sysgzqjz9ssyn2bi5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/440d47ca465845eaa601ca8a6e4b15fc197e522b/recipes/magit-p4"; - sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069"; - name = "recipe"; - }; - packageRequires = [ cl-lib magit magit-popup p4 ]; - meta = { - homepage = "https://melpa.org/#/magit-p4"; - license = lib.licenses.free; - }; - }) {}; - magit-popup = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "magit-popup"; - ename = "magit-popup"; - version = "20190223.1434"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-popup"; - rev = "4250c3a606011e3ff2477e3b5bbde2b493f3c85c"; - sha256 = "073x1yf96b623yphylnf0ysannr91vawzgjdv1smkcrgd4451hr3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0263ca6aea7bf6eae26a637454affbda6bd106df/recipes/magit-popup"; - sha256 = "1pv5slspcfmi10bnnw6acpijn7vkn2h9iqww3w641v41d3p37jmv"; - name = "recipe"; - }; - packageRequires = [ async dash emacs ]; - meta = { - homepage = "https://melpa.org/#/magit-popup"; - license = lib.licenses.free; - }; - }) {}; - magit-rbr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-rbr"; - ename = "magit-rbr"; - version = "20181009.1316"; - src = fetchFromGitHub { - owner = "fanatoly"; - repo = "magit-rbr"; - rev = "029203b3e48537205052a058e964f058cd802c3c"; - sha256 = "1z48m0al8bb4ppic483jvika9q47c67g7fazk25431sr5rv9h4d2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10427817a1fc2fa8aaf11897719cbb851d9e4b15/recipes/magit-rbr"; - sha256 = "086vb7xrgyrazc3a7bpyhy219szvrvl59l8wlqakimx0mav7qipr"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-rbr"; - license = lib.licenses.free; - }; - }) {}; - magit-reviewboard = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , request - , s }: - melpaBuild { - pname = "magit-reviewboard"; - ename = "magit-reviewboard"; - version = "20190211.1444"; - src = fetchFromGitHub { - owner = "jtamagnan"; - repo = "magit-reviewboard"; - rev = "f3d5ed914243e3930f9c06f59021305e7e43e67d"; - sha256 = "0xlhy328h2wxklpy71dhy1fk7zv6hs2v4jrl1mm9x5mnrbrdfvxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3715fa1df69350205e4269b7090c46b343d8bf0/recipes/magit-reviewboard"; - sha256 = "1sxqij3370vn6ap52lf4hdlcxfj9mj17sb5r4kk5msjbw3bzdmzr"; - name = "recipe"; - }; - packageRequires = [ emacs magit request s ]; - meta = { - homepage = "https://melpa.org/#/magit-reviewboard"; - license = lib.licenses.free; - }; - }) {}; - magit-stgit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "magit-stgit"; - ename = "magit-stgit"; - version = "20190313.455"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "magit-stgit"; - rev = "d1ba02851071326bc2d58dd8e95093c666e3ceb8"; - sha256 = "00xrqcv3h5qbvi4klv23fdf2kcgfrzb2r77qmjilv5wsy6dlw71h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72a38bbc5bba53dfb971f17213287caf0d190db0/recipes/magit-stgit"; - sha256 = "1spli6yq258zwx95y16s27hr7hlc2h0kc9mjnvjjl13y2l6shm0i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/magit-stgit"; - license = lib.licenses.free; - }; - }) {}; - magit-svn = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-svn"; - ename = "magit-svn"; - version = "20190324.759"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "magit-svn"; - rev = "f7dad9b0f6b81b23550ea5cca0f3219f184b746c"; - sha256 = "1dpljj5l0jf28xsynj9wsgbn6wh6llx0wxvigrv37ccvrz4k2fgg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1ff188d509aec104e9d21a640cf5bc3addedf00/recipes/magit-svn"; - sha256 = "1dww5fc5phai3wk9lp85h6y08ai3vxgggsqj78a3mlcn2adwwc01"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-svn"; - license = lib.licenses.free; - }; - }) {}; - magit-tbdiff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-tbdiff"; - ename = "magit-tbdiff"; - version = "20190506.1936"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-tbdiff"; - rev = "fcde2e718974acb2b8905b623e0eca74c58b6b0f"; - sha256 = "0ks2fyiwxg4zqhplbysb9wv82nrd72ihqi911hf7m48a72w7assx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad97eea866c8732e3adc17551d37a6d1ae511e6c/recipes/magit-tbdiff"; - sha256 = "1wydmw4f1072k8frk8mi8aaky7dndinq8n7kn10q583bjlxgw80r"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-tbdiff"; - license = lib.licenses.free; - }; - }) {}; - magit-todos = callPackage ({ async - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , hl-todo - , lib - , magit - , melpaBuild - , pcre2el - , s }: - melpaBuild { - pname = "magit-todos"; - ename = "magit-todos"; - version = "20190508.57"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "magit-todos"; - rev = "6d590872dab914908b539c54da2c68dc75491e93"; - sha256 = "01z90l079j6pxnxsr4kwf0wr7hw4ssnrngxndv7lg2ra8i5a1qpv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4544ab55d2c8b8c3b7eb739b9fb90ebb246d68b/recipes/magit-todos"; - sha256 = "0vqmbw0qj8a5wf4ig9hgc0v3l1agdkvgprzjv178hs00297br2s8"; - name = "recipe"; - }; - packageRequires = [ async dash emacs f hl-todo magit pcre2el s ]; - meta = { - homepage = "https://melpa.org/#/magit-todos"; - license = lib.licenses.free; - }; - }) {}; - magit-topgit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-topgit"; - ename = "magit-topgit"; - version = "20160313.1254"; - src = fetchFromGitHub { - owner = "greenrd"; - repo = "magit-topgit"; - rev = "243fdfa7ce62dce4efd01b6b818a2791868db2f0"; - sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/magit-topgit"; - sha256 = "1194hdcphir4cmvzg9cxrjiyg70hr9zmml2rljih94vl7zrw7335"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-topgit"; - license = lib.licenses.free; - }; - }) {}; - magithub = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ghub-plus - , git-commit - , lib - , magit - , markdown-mode - , melpaBuild - , s }: - melpaBuild { - pname = "magithub"; - ename = "magithub"; - version = "20190512.1616"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "magithub"; - rev = "9fb9c653d0dad3da7ccff3ae321fa6e54c08f41b"; - sha256 = "047dyiysdhf81qfcmmaxzixgxy35fjm9wyhwwv9630s5b83fh094"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e555b46f5de7591aa8e10a7cf67421e26a676db8/recipes/magithub"; - sha256 = "11par5rncsa866gazdw98d4902rvyjnnwbiwpndlyh06ak0lryab"; - name = "recipe"; - }; - packageRequires = [ emacs ghub-plus git-commit magit markdown-mode s ]; - meta = { - homepage = "https://melpa.org/#/magithub"; - license = lib.licenses.free; - }; - }) {}; - magma-mode = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "magma-mode"; - ename = "magma-mode"; - version = "20181205.908"; - src = fetchFromGitHub { - owner = "ThibautVerron"; - repo = "magma-mode"; - rev = "bded7fd29722dcfd451422530877067915fd7c80"; - sha256 = "0x858v67kjpqbijlg2fbs4qj0g92b3d6f3rjphzcm8776shwp6ry"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59764a0aab7c3f32b5a872a3d10a7e144f273a7e/recipes/magma-mode"; - sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f ]; - meta = { - homepage = "https://melpa.org/#/magma-mode"; - license = lib.licenses.free; - }; - }) {}; - magnatune = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "magnatune"; - ename = "magnatune"; - version = "20151030.1235"; - src = fetchFromGitHub { - owner = "eikek"; - repo = "magnatune.el"; - rev = "605b01505ba30589c77ebb4c96834b5072ccbdd4"; - sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6dfd5ae62718a32f8c5af4048af06cb53961d7df/recipes/magnatune"; - sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/magnatune"; - license = lib.licenses.free; - }; - }) {}; - majapahit-theme = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "majapahit-theme"; - ename = "majapahit-theme"; - version = "20160817.1148"; - src = fetchFromGitLab { - owner = "franksn"; - repo = "majapahit-theme"; - rev = "77c96df7619666b2102d90d452eeadf04adc89a6"; - sha256 = "0wnhfdk2zwxqfh8d74xmszqgibcgxiq825pq8381zg4nkz5cckfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b793878de4107bb646652d09d8799aef8b97e8/recipes/majapahit-theme"; - sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/majapahit-theme"; - license = lib.licenses.free; - }; - }) {}; - major-mode-hydra = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pretty-hydra }: - melpaBuild { - pname = "major-mode-hydra"; - ename = "major-mode-hydra"; - version = "20190226.1946"; - src = fetchFromGitHub { - owner = "jerrypnz"; - repo = "major-mode-hydra.el"; - rev = "2142be970874c679300e539a1d9d0f048eb72a7f"; - sha256 = "00hxv2nlzz4kgyzrldhqfnvnrhdcb82lm90xdbvn059f1v1zihn3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865917fcc75c4118afc89b8bcc20ebdb6302f15d/recipes/major-mode-hydra"; - sha256 = "0654wnsw38sca97kvp8p3k1h6r91iqs873gcjaaxd7a96sisvafd"; - name = "recipe"; - }; - packageRequires = [ dash emacs pretty-hydra ]; - meta = { - homepage = "https://melpa.org/#/major-mode-hydra"; - license = lib.licenses.free; - }; - }) {}; - major-mode-icons = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "major-mode-icons"; - ename = "major-mode-icons"; - version = "20170228.2314"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "major-mode-icons"; - rev = "e6117a236b2ad52e948576550b183053321dfc91"; - sha256 = "0gpp9x23qz7ll8d7hlbvynv891hw907k38i7v0b08s8zh1ilvnwa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f551bec8bdc5dee4b31edea0c2f92b3c77ec56/recipes/major-mode-icons"; - sha256 = "02p5h9q2j7z3wcmvkbqbbzzk3lyfdq43psppy9x9ypic9fij8j95"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs powerline ]; - meta = { - homepage = "https://melpa.org/#/major-mode-icons"; - license = lib.licenses.free; - }; - }) {}; - make-color = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "make-color"; - ename = "make-color"; - version = "20140625.450"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "make-color.el"; - rev = "a1b34e95ccd3ebee4fba1489ab613d0b3078026d"; - sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb765469c65589ae9d7dbc420a8edcf44c3be5d1/recipes/make-color"; - sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/make-color"; - license = lib.licenses.free; - }; - }) {}; - make-it-so = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "make-it-so"; - ename = "make-it-so"; - version = "20180128.1307"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "make-it-so"; - rev = "bc3b01d6b9ed6ff66ebbd524234f9d6df60dd4be"; - sha256 = "0833bzlscpnkvjnrg3g54yr246afbjwri8n5wxk8drnsq6acvd8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aad592089ed2200e2f8c5191e8adeac1db4bce54/recipes/make-it-so"; - sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73"; - name = "recipe"; - }; - packageRequires = [ emacs swiper ]; - meta = { - homepage = "https://melpa.org/#/make-it-so"; - license = lib.licenses.free; - }; - }) {}; - makefile-executor = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "makefile-executor"; - ename = "makefile-executor"; - version = "20180720.132"; - src = fetchFromGitHub { - owner = "thiderman"; - repo = "makefile-executor.el"; - rev = "9a7d78f814a4b372d8f8179819cb1b37b83b1973"; - sha256 = "1sw8zqxzrcxs4v211bmlxz5xfrpckrawnbhf1fiji0971cv3hx0r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08f8b4d680e4907dbd8ea46a75d98aa0e93c2bb9/recipes/makefile-executor"; - sha256 = "0889rq2a7ks2ynyq91xsa2kpzgd72kzbjxx0b34w8faknpj3b6hi"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/makefile-executor"; - license = lib.licenses.free; - }; - }) {}; - makey = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "makey"; - ename = "makey"; - version = "20131231.630"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "makey"; - rev = "a61781e69d3b451551e269446e1c5f624ab81137"; - sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/makey"; - sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/makey"; - license = lib.licenses.free; - }; - }) {}; - malinka = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , rtags - , s }: - melpaBuild { - pname = "malinka"; - ename = "malinka"; - version = "20171202.221"; - src = fetchFromGitHub { - owner = "LefterisJP"; - repo = "malinka"; - rev = "e3dc5b0703a5954057110b82cb397a990ace23e6"; - sha256 = "0ljv6p1ln4mji4xh2q8w9rah6das4wvvp0pmaj2a2156lx2q3q54"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/malinka"; - sha256 = "1zmnlgy9k1s1s2wgkhlwfsnknmhggy0rx3l495a5x1kqsx6i0c9y"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f projectile rtags s ]; - meta = { - homepage = "https://melpa.org/#/malinka"; - license = lib.licenses.free; - }; - }) {}; - mallard-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mallard-mode"; - ename = "mallard-mode"; - version = "20131203.2025"; - src = fetchFromGitHub { - owner = "jhradilek"; - repo = "emacs-mallard-mode"; - rev = "0a4cfede57bc31134495804ce513cc106de8de3c"; - sha256 = "1dxhn9m2d5zjcpsqn004z9g7sw5pzgh18aik53y6hqsnvc2ph8r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19c5543664ca685a70e53baa1357842e83cbf8f7/recipes/mallard-mode"; - sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mallard-mode"; - license = lib.licenses.free; - }; - }) {}; - mallard-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , mallard-mode - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "mallard-snippets"; - ename = "mallard-snippets"; - version = "20131023.1151"; - src = fetchFromGitHub { - owner = "jhradilek"; - repo = "emacs-mallard-snippets"; - rev = "35b7d0558da14fcffd51863f623806216a0093ce"; - sha256 = "0b4g1h2kw00arpm816j7aa3cx10k9rwf5pxy57icjybj4b30irqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a31a6ac93a864cb5212c925fdfb0961d36b24a/recipes/mallard-snippets"; - sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8"; - name = "recipe"; - }; - packageRequires = [ mallard-mode yasnippet ]; - meta = { - homepage = "https://melpa.org/#/mallard-snippets"; - license = lib.licenses.free; - }; - }) {}; - malyon = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "malyon"; - ename = "malyon"; - version = "20161208.1325"; - src = fetchFromGitHub { - owner = "speedenator"; - repo = "malyon"; - rev = "0d9882650720b4a791556f5e2d917388965d6fc0"; - sha256 = "0an1yvp0p624rxd8n5phiwvznw35ripqhlwzwyv2bw7lc1rscllr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54b3785cfcdb3b54307f60ee634a101e8bcd9989/recipes/malyon"; - sha256 = "050kj4c1vp9f3fiskf8hld7w46092n4jipdga226x97igx575g3r"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/malyon"; - license = lib.licenses.free; - }; - }) {}; - man-commands = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "man-commands"; - ename = "man-commands"; - version = "20151221.1421"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "man-commands"; - rev = "f4ba0c3790855d7544dff92d470d212f24de1d9d"; - sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cefd80c8f65e1577ba36ea665b36c3a3d4032b4b/recipes/man-commands"; - sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/man-commands"; - license = lib.licenses.free; - }; - }) {}; - manage-minor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "manage-minor-mode"; - ename = "manage-minor-mode"; - version = "20140310.900"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "manage-minor-mode"; - rev = "a62d044455a022a12749a33e70dff7b2ec8e3561"; - sha256 = "0iq573daxcfpgw6mjhb7ayn95g5p8ayyqs9r1rljdzff35jyfkpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/manage-minor-mode"; - sha256 = "0ljdca9b08dw0kx679jmq0wc484xcpbmzwx8zkncw642pnbj9q0j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/manage-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - mandm-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mandm-theme"; - ename = "mandm-theme"; - version = "20180915.1240"; - src = fetchFromGitHub { - owner = "choppsv1"; - repo = "emacs-mandm-theme"; - rev = "b560aa0129c55a2f4fcc5e67a7d6c66ee4dc3124"; - sha256 = "17af3bs55c6bxf1izvfgg0kag5az64ncbabgbh6ry14nv3r9lwy6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mandm-theme"; - sha256 = "0mvzn29ljd3az6axyqq88vkkf1vpcvslc1svlnbyrpdfinphd0mx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mandm-theme"; - license = lib.licenses.free; - }; - }) {}; - mandoku = callPackage ({ fetchFromGitHub - , fetchurl - , git - , github-clone - , lib - , magit - , melpaBuild - , org }: - melpaBuild { - pname = "mandoku"; - ename = "mandoku"; - version = "20180403.406"; - src = fetchFromGitHub { - owner = "mandoku"; - repo = "mandoku"; - rev = "e3b7678762e9824861b1ce775a94b05b096164f5"; - sha256 = "119q1f3xv024q9inw20c3xb194mgn11igs3x7pqdfapyinrzz6p0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912/recipes/mandoku"; - sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv"; - name = "recipe"; - }; - packageRequires = [ git github-clone magit org ]; - meta = { - homepage = "https://melpa.org/#/mandoku"; - license = lib.licenses.free; - }; - }) {}; - mandoku-tls = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , github-clone - , helm - , helm-charinfo - , hydra - , lib - , mandoku - , melpaBuild - , org }: - melpaBuild { - pname = "mandoku-tls"; - ename = "mandoku-tls"; - version = "20171117.1840"; - src = fetchFromGitHub { - owner = "mandoku"; - repo = "mandoku-tls"; - rev = "ffeebf5bd451ac1806ddfe1744fbbd036a56f902"; - sha256 = "16399qifjj4hnfw4a62jwxfwnc7k8lmiy3bz8iwzlc91jjic7zdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c97d3f653057eab35c612109792884334be556fe/recipes/mandoku-tls"; - sha256 = "0zny1l548rvjsbbzj47wysz6gk1sqxvpj215r3w84vw5dyrn78bz"; - name = "recipe"; - }; - packageRequires = [ - emacs - github-clone - helm - helm-charinfo - hydra - mandoku - org - ]; - meta = { - homepage = "https://melpa.org/#/mandoku-tls"; - license = lib.licenses.free; - }; - }) {}; - map-progress = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "map-progress"; - ename = "map-progress"; - version = "20190127.1616"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "map-progress"; - rev = "1fb916159cd054c233ce3c80d9d01adfae640297"; - sha256 = "1hbk35l9aljp4jqg8cv67q6b2jbcx0g665j90fygxqibrf6r52a8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed3335eaf0be7368059bcdb52c46f5e47c0c1a5/recipes/map-progress"; - sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/map-progress"; - license = lib.licenses.free; - }; - }) {}; - map-regexp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "map-regexp"; - ename = "map-regexp"; - version = "20190127.1618"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "map-regexp"; - rev = "ae2d1c22f786ad987aef3e319925e80160a887a0"; - sha256 = "1ybhizafdhzm7fg8s6gm13fbrz1vnrc7ifq8gvrrm89wl3qi5z7f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/927314443ecc00d94e7125de669e82832c5a125c/recipes/map-regexp"; - sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/map-regexp"; - license = lib.licenses.free; - }; - }) {}; - marcopolo = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "marcopolo"; - ename = "marcopolo"; - version = "20160421.304"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "marcopolo"; - rev = "85db828f2bb4346a811b3326349b1c6d0aae4601"; - sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/936a1cff601594575c5b550c5eb16e7dafc8a5ab/recipes/marcopolo"; - sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/marcopolo"; - license = lib.licenses.free; - }; - }) {}; - mark-multiple = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mark-multiple"; - ename = "mark-multiple"; - version = "20121118.754"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "mark-multiple.el"; - rev = "f6a53c7c5283d640ae718f4548b0fda78877a375"; - sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7efe1814aa552d44c3db2cd7304569f2aae66287/recipes/mark-multiple"; - sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mark-multiple"; - license = lib.licenses.free; - }; - }) {}; - mark-tools = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mark-tools"; - ename = "mark-tools"; - version = "20130614.325"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "emacs-mark-tools"; - rev = "a11b61effa90bd0abc876d12573674d36fc17f0c"; - sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ca36020392807aca9658d13481868d8b6c23d51/recipes/mark-tools"; - sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mark-tools"; - license = lib.licenses.free; - }; - }) {}; - markdown-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markdown-mode"; - ename = "markdown-mode"; - version = "20190304.1919"; - src = fetchFromGitHub { - owner = "jrblevin"; - repo = "markdown-mode"; - rev = "115f77df9755c6a453f3e5d9623ff885d207ea82"; - sha256 = "0a26gz2m5v0jkawlqb723yiqsns4sg7inalr8fk1x08khnckkzyz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode"; - sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/markdown-mode"; - license = lib.licenses.free; - }; - }) {}; - markdown-mode-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "markdown-mode-plus"; - ename = "markdown-mode+"; - version = "20170320.1404"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "markdown-mode-plus"; - rev = "411d079f4430a33c34ec0bbcb1535fe1145a2509"; - sha256 = "0427cxvykmz8kz1gnn27yc9c4z8djyy6m9qz6wbd4np1cgqlmly2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/markdown-mode+"; - sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/markdown-mode+"; - license = lib.licenses.free; - }; - }) {}; - markdown-preview-eww = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markdown-preview-eww"; - ename = "markdown-preview-eww"; - version = "20160111.702"; - src = fetchFromGitHub { - owner = "niku"; - repo = "markdown-preview-eww"; - rev = "5853f836425c877c8a956501f0adda137ef1d3b7"; - sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9b3ad97a193c41068ca184b4835fa7a7a0ebc9c/recipes/markdown-preview-eww"; - sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/markdown-preview-eww"; - license = lib.licenses.free; - }; - }) {}; - markdown-preview-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , web-server - , websocket }: - melpaBuild { - pname = "markdown-preview-mode"; - ename = "markdown-preview-mode"; - version = "20181213.539"; - src = fetchFromGitHub { - owner = "ancane"; - repo = "markdown-preview-mode"; - rev = "f98d9114ca87e3e8e5ce70e601d13061eda15415"; - sha256 = "1d1id99gagymvzdfa1mwqh8y3szm8ii47rpijkfi1qnifjg5jaq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3c5d222cf0d7eca6a4e3eb914907f8ca58e40f0/recipes/markdown-preview-mode"; - sha256 = "1cam5wfxca91q3i1kl0qbdvnfy62hr5ksargi4430kgaz34bcbyn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs markdown-mode web-server websocket ]; - meta = { - homepage = "https://melpa.org/#/markdown-preview-mode"; - license = lib.licenses.free; - }; - }) {}; - markdown-toc = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , s }: - melpaBuild { - pname = "markdown-toc"; - ename = "markdown-toc"; - version = "20170711.1249"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "markdown-toc"; - rev = "7038f4f6d5c2bc7e4aea89699a607ac2b7dd16a8"; - sha256 = "1kvf30ib1kxp29k1xwixkq6l4jjr3q3g1wpvh9yfzk5ld97zmry1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4db1e90be8e34d5ad0c898be10dfa5cd95ccb921/recipes/markdown-toc"; - sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; - name = "recipe"; - }; - packageRequires = [ dash markdown-mode s ]; - meta = { - homepage = "https://melpa.org/#/markdown-toc"; - license = lib.licenses.free; - }; - }) {}; - markdownfmt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markdownfmt"; - ename = "markdownfmt"; - version = "20160609.541"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-markdownfmt"; - rev = "af83cd00fafcaa837ffdb50d1fa2b0ac952f16c0"; - sha256 = "1alkjvs21wlai742qgcm0bgf3z3c0f10xgalz48gi4vmwn6in7r7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16cee5fe003e3afc7daf6858ed83843b52e44901/recipes/markdownfmt"; - sha256 = "1wzsw90z988bm94cw4jw5gzjcicgiz4qgn1nsdm8nim9rp43bj17"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/markdownfmt"; - license = lib.licenses.free; - }; - }) {}; - markless = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markless"; - ename = "markless"; - version = "20190306.202"; - src = fetchFromGitHub { - owner = "shirakumo"; - repo = "markless.el"; - rev = "78632f86e3b5a1e3d74b2ab86f4c95b10e5eae94"; - sha256 = "1hmf5qlxpli61a9pwg09hbsdn1lg4l8czvrvw09js3vrbv7xh3ds"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5542e142d47f6f52839a44b8ee16327f88869f50/recipes/markless"; - sha256 = "1a5kp46xj4b5kgcypacxcwhjjwi4m7f6shdda8l8my3s3x8ji5bj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/markless"; - license = lib.licenses.free; - }; - }) {}; - markup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markup"; - ename = "markup"; - version = "20170420.429"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "markup.el"; - rev = "876da2d3f23473475bb0fd0a1480ae11d2671291"; - sha256 = "0rggadka5aqgrik3qky6s75s5yb5bfj6fcpxjz1iyrwi0fka0akd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a75c955ad6b2f68b8933329e545625d948f6f8f4/recipes/markup"; - sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/markup"; - license = lib.licenses.free; - }; - }) {}; - markup-faces = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markup-faces"; - ename = "markup-faces"; - version = "20141110.17"; - src = fetchFromGitHub { - owner = "sensorflo"; - repo = "markup-faces"; - rev = "98a807ed82473eb41c6a201ed7ef816d6bcd67b0"; - sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/markup-faces"; - sha256 = "06fawlv4ih2lsmk7x6h9p5rppl8vw2w3nvlss95kb8fj5fwf7mw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/markup-faces"; - license = lib.licenses.free; - }; - }) {}; - marmalade-client = callPackage ({ fetchFromGitHub - , fetchurl - , gh - , kv - , lib - , melpaBuild - , web }: - melpaBuild { - pname = "marmalade-client"; - ename = "marmalade-client"; - version = "20141231.1207"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-marmalade-upload"; - rev = "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a"; - sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/834d6d8444169e1e9b66c963a4c2e03ff658e154/recipes/marmalade-client"; - sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq"; - name = "recipe"; - }; - packageRequires = [ gh kv web ]; - meta = { - homepage = "https://melpa.org/#/marmalade-client"; - license = lib.licenses.free; - }; - }) {}; - marshal = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , ht - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "marshal"; - ename = "marshal"; - version = "20180124.439"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "marshal.el"; - rev = "f038689cbd5b3680b80b44edd0c7a63ca3038e26"; - sha256 = "1n79im1r7h1ilvppn9alqwl96zhyxbm5hk7kbmqh022dggw0cx15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/203f2061c5c7d4aefab3175de5e0538f12158ee3/recipes/marshal"; - sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; - name = "recipe"; - }; - packageRequires = [ eieio ht json ]; - meta = { - homepage = "https://melpa.org/#/marshal"; - license = lib.licenses.free; - }; - }) {}; - maruo-macro-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "maruo-macro-mode"; - ename = "maruo-macro-mode"; - version = "20160616.649"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "maruo-macro-mode.el"; - rev = "8fc9a38ad051eafa8eb94038711acc52c5d1d8d5"; - sha256 = "0r005yap50jf6b5jc7314ds17g1nn2irn1agidi74fbrwfbndxgm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c17243b6c62e179aefc25d5f2ca43e5f6c66c1/recipes/maruo-macro-mode"; - sha256 = "1h7pclpqkkgi8z9yp5n79ffna809yf336bz6082l541xc06pmvcv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/maruo-macro-mode"; - license = lib.licenses.free; - }; - }) {}; - mastodon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mastodon"; - ename = "mastodon"; - version = "20190304.1944"; - src = fetchFromGitHub { - owner = "jdenen"; - repo = "mastodon.el"; - rev = "5095797ef32b922d2a624fa6beb970b5e9cf5ca0"; - sha256 = "0hwax6y9dghqwsbnb6f1bnc7gh8xsh5cvcnayk2sn49x8b0zi5h1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/809d963b69b154325faaf61e54ca87b94c1c9a90/recipes/mastodon"; - sha256 = "1bsyf4j6zs9gin0k7p22yv5gaqd6m3vdc2fiagfbs7gxsmhb6p4i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mastodon"; - license = lib.licenses.free; - }; - }) {}; - material-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "material-theme"; - ename = "material-theme"; - version = "20171123.1040"; - src = fetchFromGitHub { - owner = "cpaulik"; - repo = "emacs-material-theme"; - rev = "c59b4874914b5b28068be25292690325f19739dd"; - sha256 = "1sp2h2n0ihp0r6q7c1861awg7rqh6bcxz4hgnny1gj5vjz9h7rch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d31ababaa50061e767605c979a3f327a654e564b/recipes/material-theme"; - sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/material-theme"; - license = lib.licenses.free; - }; - }) {}; - math-symbol-lists = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "math-symbol-lists"; - ename = "math-symbol-lists"; - version = "20190605.1358"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "math-symbol-lists"; - rev = "dc7531cff0c845d5470a50c24d5d7309b2ced7eb"; - sha256 = "094m21i9rns6m59cmhxcivxxafbg52w8f8na4y3v47aq67zmhhqm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists"; - sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/math-symbol-lists"; - license = lib.licenses.free; - }; - }) {}; - math-symbols = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "math-symbols"; - ename = "math-symbols"; - version = "20170818.759"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "math-symbols"; - rev = "3f8b466f002e1b28ddbe9a6f236c9a1352adb17d"; - sha256 = "0r63acgicb43p05gsiz98m7077sj72c1miz18fi8qbzi02p9qjr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7b0799bddbbbecd12bc1589b56a6250acf76407/recipes/math-symbols"; - sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/math-symbols"; - license = lib.licenses.free; - }; - }) {}; - matlab-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "matlab-mode"; - ename = "matlab-mode"; - version = "20180928.826"; - src = fetchgit { - url = "https://git.code.sf.net/p/matlab-emacs/src"; - rev = "3fbca4259b2584bde08df07ba51944d7e3e2b4f4"; - sha256 = "1diqx2k16iyj5a7kcc58kyl6mzw05cyq6ia4z3fciz716gkspgpi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f78cff288077e04f8c9e4c2e5be9f3c33d8ff49/recipes/matlab-mode"; - sha256 = "1q3sdmahf915ix4lrv65cxsfh6hrs91c8pmyixbqmbhifqi33d0q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/matlab-mode"; - license = lib.licenses.free; - }; - }) {}; - maude-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "maude-mode"; - ename = "maude-mode"; - version = "20160222.807"; - src = fetchFromGitHub { - owner = "rudi"; - repo = "maude-mode"; - rev = "c9543bb8a172fa77af592388e7f520a4a6d38987"; - sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c33b8bd62391767a63f57786750e38cbc262bda/recipes/maude-mode"; - sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/maude-mode"; - license = lib.licenses.free; - }; - }) {}; - maven-test-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "maven-test-mode"; - ename = "maven-test-mode"; - version = "20141219.2157"; - src = fetchFromGitHub { - owner = "rranelli"; - repo = "maven-test-mode"; - rev = "a19151861df2ad8ae4880a2e7c86ddf848cb569a"; - sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc7f677c53431542cb8d7c95666d021dead2b98/recipes/maven-test-mode"; - sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/maven-test-mode"; - license = lib.licenses.free; - }; - }) {}; - maxframe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "maxframe"; - ename = "maxframe"; - version = "20170120.905"; - src = fetchFromGitHub { - owner = "rmm5t"; - repo = "maxframe.el"; - rev = "13bda6dd9f1d96aa4b9dd9957a26cefd399a7772"; - sha256 = "0kh8yk1py9zg62zfl289hszhq3kl3mqmjk6z5vqkw3mcik4lm69g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/maxframe"; - sha256 = "1lxj60qcvv8vakdq79k1brzv3ki74kajrx8620dzx76bnfkryxk8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/maxframe"; - license = lib.licenses.free; - }; - }) {}; - mb-url = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mb-url"; - ename = "mb-url"; - version = "20181225.924"; - src = fetchFromGitHub { - owner = "dochang"; - repo = "mb-url"; - rev = "23078f2e59808890268401f294d860ba51bc71d9"; - sha256 = "07b9w9vd22ma4s3qhplmg84sylihz920byyi9qa7dwj7b59d4avf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd9a8ff6e094b061a7b9d790df1fd4086c5d0a9d/recipes/mb-url"; - sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/mb-url"; - license = lib.licenses.free; - }; - }) {}; - mbe = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mbe"; - ename = "mbe"; - version = "20151126.334"; - src = fetchFromGitHub { - owner = "ijp"; - repo = "mbe.el"; - rev = "bb10aa8f26bb7e9b1d5746934c94edb00402940c"; - sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a8a16e485d608dbd59151d77e252048a49f9d25/recipes/mbe"; - sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mbe"; - license = lib.licenses.free; - }; - }) {}; - mbo70s-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mbo70s-theme"; - ename = "mbo70s-theme"; - version = "20170808.615"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-mbo70s-theme"; - rev = "bed3db8965708ed4e9482b224a9b084765c052f2"; - sha256 = "19hha9xwfqvdgsws69x0mcm93yfllp44hdl1xw9zlhj8f4ihizh5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8d0c1050b3319e136fe75903ae3612a52790189/recipes/mbo70s-theme"; - sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mbo70s-theme"; - license = lib.licenses.free; - }; - }) {}; - mbsync = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mbsync"; - ename = "mbsync"; - version = "20181001.2340"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "mbsync-el"; - rev = "f549eccde6033449d24cd5b6148599484850c403"; - sha256 = "1pdj41rq3pq4jdb5pma5j495xj7w7jgn8pnz1z1zwg75pn7ydfp0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ef6ffa53bb0ce2ba796555e39f59534fc134aa5/recipes/mbsync"; - sha256 = "1q5g76mspi24zwbs7h4m8bmkhab4drskha4d9b516w1f1cyg6hb6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mbsync"; - license = lib.licenses.free; - }; - }) {}; - mc-extras = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "mc-extras"; - ename = "mc-extras"; - version = "20181109.935"; - src = fetchFromGitHub { - owner = "knu"; - repo = "mc-extras.el"; - rev = "053abc52181b8718559d7361a587bbb795faf164"; - sha256 = "16y48qrd20m20vypvys5jp4v4gc1qrqlkm75s1pk1r68i9zrw481"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12747bb8603ebc09ce0873f3317a99e34d818313/recipes/mc-extras"; - sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; - name = "recipe"; - }; - packageRequires = [ multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/mc-extras"; - license = lib.licenses.free; - }; - }) {}; - md-readme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "md-readme"; - ename = "md-readme"; - version = "20160811.946"; - src = fetchFromGitHub { - owner = "thomas11"; - repo = "md-readme"; - rev = "bf818dd847c8b06b3b5100c5d3cf24cf96662528"; - sha256 = "0gyjadkv572v3zilxivbiz28pvqh0jmi5bh5la1hyim0qnxymli8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5408d7c12c189d2b5ab9fbb02276de334851e3c8/recipes/md-readme"; - sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/md-readme"; - license = lib.licenses.free; - }; - }) {}; - md4rd = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , lib - , melpaBuild - , request - , s - , tree-mode }: - melpaBuild { - pname = "md4rd"; - ename = "md4rd"; - version = "20190312.1940"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "md4rd"; - rev = "443c8059af4925d11c93a1293663165c52472f08"; - sha256 = "1n6g6k4adzkkn1g7z4j27s35xy12c1fg2r08gv345ddr3wplq4ri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48d4a3b3337e16e68631409d1de0ce67ae22b837/recipes/md4rd"; - sha256 = "0ayr5qw0cz7bd46djfhm8slr2kfgssi5bsnzqcasr8n4lyg9jvfc"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs hierarchy request s tree-mode ]; - meta = { - homepage = "https://melpa.org/#/md4rd"; - license = lib.licenses.free; - }; - }) {}; - mediawiki = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mediawiki"; - ename = "mediawiki"; - version = "20170812.2255"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "mediawiki-el"; - rev = "8473e12d1839f5287a4227586bf117dad820f867"; - sha256 = "03rpj3yrk3i1l9yjnamnx38idn6y4zi9zg53bc83sx3g2b4m5v04"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865e0ba1dbace58784181d214000d090478173bd/recipes/mediawiki"; - sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mediawiki"; - license = lib.licenses.free; - }; - }) {}; - meghanada = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "meghanada"; - ename = "meghanada"; - version = "20190525.2248"; - src = fetchFromGitHub { - owner = "mopemope"; - repo = "meghanada-emacs"; - rev = "24813cf364f1c857c2ee412d0a088f0ceff53842"; - sha256 = "1ripap7is2amk3i2mavwiiv5mfsx9k3gxpy9nyaz58pzgvyjqplc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada"; - sha256 = "10f1fxma3lqcyv78i0p9mjpi79jfjd5lq5q60ylpxqp18nrql1s4"; - name = "recipe"; - }; - packageRequires = [ company emacs flycheck yasnippet ]; - meta = { - homepage = "https://melpa.org/#/meghanada"; - license = lib.licenses.free; - }; - }) {}; - melancholy-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "melancholy-theme"; - ename = "melancholy-theme"; - version = "20190503.1920"; - src = fetchFromGitHub { - owner = "techquila"; - repo = "melancholy-theme"; - rev = "37e7f9a83995d9a53cd4343843139660fa0ca59d"; - sha256 = "0yjfmb1wcg2dvr76r58fg2a1s2g2zw3ijkjjaa6mpf0h4ymyx2s3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8f708d1300d401697c099709718fcb70d5db1f/recipes/melancholy-theme"; - sha256 = "1wihbv44234lwsgp5w4hmmi3pgxbcfjvs1nclv0yg600z9s8sn8w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/melancholy-theme"; - license = lib.licenses.free; - }; - }) {}; - mellow-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mellow-theme"; - ename = "mellow-theme"; - version = "20170808.617"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-mellow-theme"; - rev = "2bdf18f05f5212b6f269d9a94afe2cf201766891"; - sha256 = "0cj9lkqgiaq1s2k9ky93jgv5pfbmjznsd54r3iqkiy1zshpkir68"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mellow-theme"; - sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mellow-theme"; - license = lib.licenses.free; - }; - }) {}; - melpa-upstream-visit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "melpa-upstream-visit"; - ename = "melpa-upstream-visit"; - version = "20130720.333"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "melpa-upstream-visit"; - rev = "7310c74fdead3c0f86ad6eff76cf989e63f70f66"; - sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c110538a1ae2419505ea8f144ef7de2d67cad568/recipes/melpa-upstream-visit"; - sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/melpa-upstream-visit"; - license = lib.licenses.free; - }; - }) {}; - memoize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "memoize"; - ename = "memoize"; - version = "20180614.1230"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-memoize"; - rev = "9a561268ffb550b257a08710489a95cd087998b6"; - sha256 = "1hsw7pjdy3mksg343v400068b6x7s45gzg0l74h5i4nq8bacv8km"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cc9be5bbcff04de5e6d3bb8c47d202fd350989b/recipes/memoize"; - sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/memoize"; - license = lib.licenses.free; - }; - }) {}; - memolist = callPackage ({ ag - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "memolist"; - ename = "memolist"; - version = "20150804.1021"; - src = fetchFromGitHub { - owner = "mikanfactory"; - repo = "memolist.el"; - rev = "60c296e202a71e9dcf1c3936d47b5c4b95c5839f"; - sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/memolist"; - sha256 = "0nvp38qbzcl6dcayjndw32d3r9h8vf2n29i678s1yr280ll8xw6w"; - name = "recipe"; - }; - packageRequires = [ ag markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/memolist"; - license = lib.licenses.free; - }; - }) {}; - mentor = callPackage ({ async - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq - , xml-rpc }: - melpaBuild { - pname = "mentor"; - ename = "mentor"; - version = "20190511.938"; - src = fetchFromGitHub { - owner = "skangas"; - repo = "mentor"; - rev = "b5e441b7dc077d5532a3818b5441e52baefad839"; - sha256 = "1xrhg1jwmzlcqdk2w92s7ghbma1pfzjc48akl3d2cixxz3ha2ca2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083de4bd25b6b013a31b9d5ecdffad139a4ba91e/recipes/mentor"; - sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; - name = "recipe"; - }; - packageRequires = [ async cl-lib seq xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/mentor"; - license = lib.licenses.free; - }; - }) {}; - merlin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "merlin"; - ename = "merlin"; - version = "20190531.249"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "merlin"; - rev = "800c793870c7ff3b00a6817ab16b03628c6495eb"; - sha256 = "0yx92lybw685ay5qd8jpdxwfdjmhhbrpkpi94gysq9bmh0kqhixr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9338298a79b7f2d654df90b0f553aeed1428de13/recipes/merlin"; - sha256 = "0r4wc5ann6239bagj364yyzw4y3lcpkl5nnn0vmx4hgkwdg509fn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/merlin"; - license = lib.licenses.free; - }; - }) {}; - merlin-eldoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , merlin }: - melpaBuild { - pname = "merlin-eldoc"; - ename = "merlin-eldoc"; - version = "20190314.106"; - src = fetchFromGitHub { - owner = "Khady"; - repo = "merlin-eldoc"; - rev = "09760346e34ac22f2b55f43f0e36a2865c3b8026"; - sha256 = "12bba6f6qxi6azlafzhymqyaf57qi479n34crixmk8v69ivdch8y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/merlin-eldoc"; - sha256 = "0bx383nxd97as0d362n1jn62k2rypxvxhcjasgwf0cr8vxr244fp"; - name = "recipe"; - }; - packageRequires = [ emacs merlin ]; - meta = { - homepage = "https://melpa.org/#/merlin-eldoc"; - license = lib.licenses.free; - }; - }) {}; - mermaid-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mermaid-mode"; - ename = "mermaid-mode"; - version = "20190503.1026"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "mermaid-mode"; - rev = "70545a46f114c4d2295ef86c5f5983bb8b2ae177"; - sha256 = "1hc7ryz9jzpny6lr40fdpxj88ai5833ifsca3xzqh0agifv394xp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8729575400003db47638b4c45c425608e15c333d/recipes/mermaid-mode"; - sha256 = "1r9dv10p2bahygz1f151bp481289b184d80jbh575pdmlxkqd79f"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/mermaid-mode"; - license = lib.licenses.free; - }; - }) {}; - meson-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "meson-mode"; - ename = "meson-mode"; - version = "20181115.1325"; - src = fetchFromGitHub { - owner = "wentasah"; - repo = "meson-mode"; - rev = "b507a87455af906e6c49aa4af70eba5b1d1af9ef"; - sha256 = "046kf04vqq1wf9ncxq40fcjcgl18hk4vii5wl3m08rpvdwbnmfwr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4702a31ffd6b9c34f96d151f2611a1bfb25baa88/recipes/meson-mode"; - sha256 = "16yg217ghx6pvlxha2swznkg12c2a9hhyi0hnsbqdj2ijcdzca80"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/meson-mode"; - license = lib.licenses.free; - }; - }) {}; - messages-are-flowing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "messages-are-flowing"; - ename = "messages-are-flowing"; - version = "20170218.1720"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "messages-are-flowing"; - rev = "649061753b67b24c54a2eaadc8b3218cafae7376"; - sha256 = "01y9cx5d5sqgvg97dzrnyi7m3yp0q3hm2yqcgknkp111afcgiwm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/messages-are-flowing"; - sha256 = "0v74b7cjj87kncndxfpfs6dcc4jcl18wpbirffl7dw6mac2anw6m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/messages-are-flowing"; - license = lib.licenses.free; - }; - }) {}; - meta-presenter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "meta-presenter"; - ename = "meta-presenter"; - version = "20190414.1020"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "meta-presenter"; - rev = "704a2e0f2a3e6bb72578e00eccb772dfcf0670fc"; - sha256 = "1hka4c87zdgqjawlmsfd7wi6rbc03qfp996ydrj84kz8saq7gf89"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b73e9424515b3ddea220b786e91c57ee22bed87f/recipes/meta-presenter"; - sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/meta-presenter"; - license = lib.licenses.free; - }; - }) {}; - metalheart-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "metalheart-theme"; - ename = "metalheart-theme"; - version = "20160709.2341"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "MetalHeart-Emacs"; - rev = "ec98ea2c11dc1213dae8cbe1fe0cee73ca138bb2"; - sha256 = "0pc86qh74i6vr0ap2j2sn4nl2c0vv15m4m1myyjmggfxx2f27nnc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/204dd67b24bf4f2305a14efb925c8fe004026694/recipes/metalheart-theme"; - sha256 = "1xqql1mcwp52plm1gp6q4m9zij2w360y15lnjsz9xgjqvslr7gy5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/metalheart-theme"; - license = lib.licenses.free; - }; - }) {}; - metamorph = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "metamorph"; - ename = "metamorph"; - version = "20180930.1328"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "metamorph"; - rev = "d9dc7037b7eed7b3fe85ea50e91f332e3f831514"; - sha256 = "1zprgjh1wyqbpy1qvng57r6jm10k6vffpb6znm47fm8xx1h0s8k4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/741982c7ce83a77d0b43d196eeac6e949dc5fd81/recipes/metamorph"; - sha256 = "0mqzqwwzb4x2j6jh6acx5ni9z5k56586jv4n88d3fi4vry9k4mv3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/metamorph"; - license = lib.licenses.free; - }; - }) {}; - metascript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "metascript-mode"; - ename = "metascript-mode"; - version = "20150708.1757"; - src = fetchFromGitHub { - owner = "metascript"; - repo = "metascript-mode"; - rev = "edb361c7b0e5de231e5334a17b90652fb1df78f9"; - sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90c03167b5fb4f4edc8a76240b3668203261bc58/recipes/metascript-mode"; - sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/metascript-mode"; - license = lib.licenses.free; - }; - }) {}; - metaweblog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "metaweblog"; - ename = "metaweblog"; - version = "20190211.1838"; - src = fetchFromGitHub { - owner = "org2blog"; - repo = "metaweblog"; - rev = "844c8b5b4483fa75378c4bec526d63cae0b211d9"; - sha256 = "0rxqkj7r38vr4qjnc2dric9sjdjm6vgnv0c9vfcb29v17hkg3aah"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/metaweblog"; - sha256 = "0qgmcvq1fhgljia9ncjgvgrv0mzih0l9mglwbwcszn613wmx8bkg"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/metaweblog"; - license = lib.licenses.free; - }; - }) {}; - mew = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mew"; - ename = "mew"; - version = "20190414.2038"; - src = fetchFromGitHub { - owner = "kazu-yamamoto"; - repo = "Mew"; - rev = "70d6da044a4f6ac8e40e489d4963b8a3d530b8a9"; - sha256 = "0j569nski5f3z26qa1scpzbsx3xdvmw9sxhm1m9wj3ac5kvgk9hn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew"; - sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mew"; - license = lib.licenses.free; - }; - }) {}; - mexican-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mexican-holidays"; - ename = "mexican-holidays"; - version = "20190505.1945"; - src = fetchFromGitHub { - owner = "sggutier"; - repo = "mexican-holidays"; - rev = "663633be1d693f6081d7d000e05d15ddbf71aa10"; - sha256 = "09b0292d87xm5mrhfhv7j11ljl4j9hv8h5dibzrrlh1b3vsg2xkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/mexican-holidays"; - sha256 = "0an6kkr2vwkqc9219rgn74683h7f4cmd1g74lirn0qhqcfcb5yrc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mexican-holidays"; - license = lib.licenses.free; - }; - }) {}; - mgmtconfig-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mgmtconfig-mode"; - ename = "mgmtconfig-mode"; - version = "20190324.1208"; - src = fetchFromGitHub { - owner = "purpleidea"; - repo = "mgmt"; - rev = "07f542b4d753fe2f182b5e139450217a633491f8"; - sha256 = "0nbj3fh3wsl9065mad04c7avc2pq4lqrdng1xkwdng6l361f2wak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf3dd70ae73c2b049e201a3547bbeb9bb117983/recipes/mgmtconfig-mode"; - sha256 = "0bdjaqfk68av4lfc4cpacrl2mxvimplfkbadi9l6wb65vlqz6sil"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mgmtconfig-mode"; - license = lib.licenses.free; - }; - }) {}; - mhc = callPackage ({ calfw - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mhc"; - ename = "mhc"; - version = "20190505.2333"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "mhc"; - rev = "88b5f938e57c28e9e2db202770f952fc0ecba945"; - sha256 = "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc"; - sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; - name = "recipe"; - }; - packageRequires = [ calfw ]; - meta = { - homepage = "https://melpa.org/#/mhc"; - license = lib.licenses.free; - }; - }) {}; - mic-paren = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mic-paren"; - ename = "mic-paren"; - version = "20170731.1207"; - src = fetchFromGitHub { - owner = "emacsattic"; - repo = "mic-paren"; - rev = "d0410c7d805c9aaf51a1bcefaaef092bed5824c4"; - sha256 = "0f24ibzgra94bwal8b0dpjxa11n42gkmanqswfnjhlvx052v9dxr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0e54eac31fbbce9a778fb654f07e11aaaa46ca/recipes/mic-paren"; - sha256 = "17j0b8jyr0zx6zds2dz5fzvarm2wh8l5hxds2s90kh5z0kk23r07"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mic-paren"; - license = lib.licenses.free; - }; - }) {}; - micgoline = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "micgoline"; - ename = "micgoline"; - version = "20160414.2026"; - src = fetchFromGitHub { - owner = "yzprofile"; - repo = "micgoline"; - rev = "e3e2effe4846175a3b52b4092c0c134ced5978d8"; - sha256 = "1cmpvg4x812hsl764zaq96y8jvjp99nljp552bbx52lbbnb1w5nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2219768cf62b52bcbe73cec291eb74c3fedcc862/recipes/micgoline"; - sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i"; - name = "recipe"; - }; - packageRequires = [ emacs powerline ]; - meta = { - homepage = "https://melpa.org/#/micgoline"; - license = lib.licenses.free; - }; - }) {}; - midje-mode = callPackage ({ cider - , clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "midje-mode"; - ename = "midje-mode"; - version = "20170808.2103"; - src = fetchFromGitHub { - owner = "dnaumov"; - repo = "midje-mode"; - rev = "10ad5b6084cd03d5cd268b486a7c3c246d85535f"; - sha256 = "0nag9ks7qbg40h9z954v42x8zi65wbgfhviwvxvb2bmbzv4m4pbs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/midje-mode"; - sha256 = "16g57mwkm3ypnyqniy1lj9nfn5wj7cyndb5fhl3fym773ywn6hip"; - name = "recipe"; - }; - packageRequires = [ cider clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/midje-mode"; - license = lib.licenses.free; - }; - }) {}; - migemo = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "migemo"; - ename = "migemo"; - version = "20190111.2116"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "migemo"; - rev = "09936ee27a5f3678fdf57b8a0faaa0ff150435cc"; - sha256 = "0wfik7y3ybh4yrrlpydawx5zw0syv7wm7b1mckz2rbv3d863z0n5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2424b0328a0198a03359455abdb3024a8067c857/recipes/migemo"; - sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/migemo"; - license = lib.licenses.free; - }; - }) {}; - milkode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "milkode"; - ename = "milkode"; - version = "20140926.2229"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "emacs-milkode"; - rev = "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513"; - sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29fffbec2d3067c046c456602779af8c04bf898f/recipes/milkode"; - sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/milkode"; - license = lib.licenses.free; - }; - }) {}; - minesweeper = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minesweeper"; - ename = "minesweeper"; - version = "20150413.2222"; - src = fetchhg { - url = "https://bitbucket.com/zck/minesweeper.el"; - rev = "d29af12fc611"; - sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/minesweeper"; - sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minesweeper"; - license = lib.licenses.free; - }; - }) {}; - mingus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , libmpdee - , melpaBuild }: - melpaBuild { - pname = "mingus"; - ename = "mingus"; - version = "20190106.643"; - src = fetchFromGitHub { - owner = "pft"; - repo = "mingus"; - rev = "4223be618f57f10f18114a74393a71955b568884"; - sha256 = "14i06i999wfpr0a0lvhnh6g4mm5xmawscjd9d7ibc055h94h3i2a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6699927f1ded5c97f2ce1861f8e54a5453264cca/recipes/mingus"; - sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi"; - name = "recipe"; - }; - packageRequires = [ libmpdee ]; - meta = { - homepage = "https://melpa.org/#/mingus"; - license = lib.licenses.free; - }; - }) {}; - mini-header-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mini-header-line"; - ename = "mini-header-line"; - version = "20170621.521"; - src = fetchFromGitHub { - owner = "ksjogo"; - repo = "mini-header-line"; - rev = "73b6724e0a26c4528d93768191c8aa59e6bce2e5"; - sha256 = "187xynmpgkx498an246ywrqdhyyp2ag1l7yxnm0x0rbfgw67q5j1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/122db5436ff9061713c0d3d8f44c47494067843e/recipes/mini-header-line"; - sha256 = "1yg8i7gsmiv8zwl1wqvgrh2xl2hm5nn3q11rz4hpyxw26355i817"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mini-header-line"; - license = lib.licenses.free; - }; - }) {}; - minibuf-isearch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minibuf-isearch"; - ename = "minibuf-isearch"; - version = "20151226.1143"; - src = fetchFromGitHub { - owner = "knagano"; - repo = "minibuf-isearch"; - rev = "2846c6ac369ee623dad4cd3c8a7a6d9078965516"; - sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfd2f3f6a2dbd251c321738a4efaacc2200164b/recipes/minibuf-isearch"; - sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minibuf-isearch"; - license = lib.licenses.free; - }; - }) {}; - minibuffer-complete-cycle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minibuffer-complete-cycle"; - ename = "minibuffer-complete-cycle"; - version = "20130813.945"; - src = fetchFromGitHub { - owner = "knu"; - repo = "minibuffer-complete-cycle"; - rev = "3df80135887d0169e02294a948711f6dfeca4a6f"; - sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afac2cf41fe57efa8d313fdbab0b0b795ec144e4/recipes/minibuffer-complete-cycle"; - sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minibuffer-complete-cycle"; - license = lib.licenses.free; - }; - }) {}; - minibuffer-cua = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minibuffer-cua"; - ename = "minibuffer-cua"; - version = "20130906.434"; - src = fetchFromGitHub { - owner = "knu"; - repo = "minibuffer-cua.el"; - rev = "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7"; - sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3b0f1f260b02c14da4d584b6af08b2fa3adf39c/recipes/minibuffer-cua"; - sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minibuffer-cua"; - license = lib.licenses.free; - }; - }) {}; - miniedit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "miniedit"; - ename = "miniedit"; - version = "20100419.1045"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "miniedit"; - rev = "e12bf659c3eb92dd8a4cb77642dc0865c54667a3"; - sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/miniedit"; - sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/miniedit"; - license = lib.licenses.free; - }; - }) {}; - minimal-session-saver = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minimal-session-saver"; - ename = "minimal-session-saver"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "minimal-session-saver"; - rev = "ac42b6835f777a8a7e04599d8f20ec650997ba96"; - sha256 = "0n2drkqnd02d7n5f4qlxlzlh4gkdi33w4hprndpw15gyny2i8x29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/minimal-session-saver"; - sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minimal-session-saver"; - license = lib.licenses.free; - }; - }) {}; - minimal-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minimal-theme"; - ename = "minimal-theme"; - version = "20190113.1332"; - src = fetchFromGitHub { - owner = "anler"; - repo = "minimal-theme"; - rev = "063b4d8ca33d55d04c341f0b2b777ec241a3e201"; - sha256 = "0lvg7iym6sxhgl4ab9a6x8c2mh2d32vkf0033bs3vphx657gra6l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/minimal-theme"; - sha256 = "01dar95l7wjjqhbsknvsfbpvv41ka7iqd1fssckz18lgfqpb54bs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minimal-theme"; - license = lib.licenses.free; - }; - }) {}; - minions = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minions"; - ename = "minions"; - version = "20181030.1401"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "minions"; - rev = "d36d2445420460c81bcd4822d0bfcbafaec2c682"; - sha256 = "0q2y37zfxlbfvgdn70ikg3abp8vljna4ir9nyqlz1awmz5i1c43s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/769a2167d7f6dfdbbfda058ddea036f80b97d230/recipes/minions"; - sha256 = "0ximlj93yp6646bh99r2vnayk15ky26sibrmrqqysfw1pzs4a940"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/minions"; - license = lib.licenses.free; - }; - }) {}; - minitest = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minitest"; - ename = "minitest"; - version = "20160628.1120"; - src = fetchFromGitHub { - owner = "arthurnn"; - repo = "minitest-emacs"; - rev = "2997ba81456f2a0f3e25b6555b491586865ebb61"; - sha256 = "10f1caszcas39g8kz0hfx1gq1jbpcnb5wwd1c262l9lwvla85nyl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41b2e55c0fe48267dc4f55924c782c6f934d8ca4/recipes/minitest"; - sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/minitest"; - license = lib.licenses.free; - }; - }) {}; - minizinc-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minizinc-mode"; - ename = "minizinc-mode"; - version = "20180201.650"; - src = fetchFromGitHub { - owner = "m00nlight"; - repo = "minizinc-mode"; - rev = "2512521ba7f8e263a06db88df663fc6b3cca7e16"; - sha256 = "1yrawvvn3ndzzrllh408v4a5n0y0n5p1jczdm9r8pbxqgyknbk1n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc86b4ba54fca6f1ebf1ae3557fe564e05c1e382/recipes/minizinc-mode"; - sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/minizinc-mode"; - license = lib.licenses.free; - }; - }) {}; - minor-mode-hack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minor-mode-hack"; - ename = "minor-mode-hack"; - version = "20170925.1734"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "minor-mode-hack"; - rev = "c3aa957602c924c01fe07d48d191b8616fb3696a"; - sha256 = "0lmcf7mv2sk33ajngxasc7kmf5qf17fccijllm3yr0lqdnxbx0pa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/minor-mode-hack"; - sha256 = "07ga48xvbi641i053bykv9v4wxhka6jhhg76b1ll24rys02az526"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minor-mode-hack"; - license = lib.licenses.free; - }; - }) {}; - mip-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mip-mode"; - ename = "mip-mode"; - version = "20151126.2217"; - src = fetchFromGitLab { - owner = "gaudecker"; - repo = "mip-mode"; - rev = "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c"; - sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbfefacda071c0f5ee698a4c345a2d6fea6a0d24/recipes/mip-mode"; - sha256 = "0jr8lzs1qzp2ki7xmm5vrdc6vmzagy8zsil0217vyl89pdfmxnyr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mip-mode"; - license = lib.licenses.free; - }; - }) {}; - mips-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mips-mode"; - ename = "mips-mode"; - version = "20180502.757"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-mips-mode"; - rev = "75152fc78baa762af4f83602f6cb3c8b9bcebca3"; - sha256 = "1bk1jfqwwrq3jr6zasyjaz16rjjqbihrn7kakgfk3szv6grvsd7p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/024a76b83efce47271bcb0ce3bde01b88349f391/recipes/mips-mode"; - sha256 = "0gg18v80lbndi2yyr5nl37mz0zpamwv9ha4clajkf0bc0vplxkj7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mips-mode"; - license = lib.licenses.free; - }; - }) {}; - mixed-pitch = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mixed-pitch"; - ename = "mixed-pitch"; - version = "20190307.1410"; - src = fetchFromGitLab { - owner = "jabranham"; - repo = "mixed-pitch"; - rev = "15bb9ec6d8be0812a46917205be6c3a1c78f68ff"; - sha256 = "1458sy5b6bis1i0k23jdqk6hfqg0ghk637r3ajql2g19ym48rf58"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d3c7af03e0bca3f834c32827cbcca29e29ef4db/recipes/mixed-pitch"; - sha256 = "1gda4jl946qlbf8rqm0mk493kwy8yqldr21cr583l6b6gl1nb4qf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mixed-pitch"; - license = lib.licenses.free; - }; - }) {}; - mkdown = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "mkdown"; - ename = "mkdown"; - version = "20140517.718"; - src = fetchFromGitHub { - owner = "ajtulloch"; - repo = "mkdown.el"; - rev = "8e23de82719af6c5b53b52b3308a02b3a1fb872e"; - sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mkdown"; - sha256 = "034bwwgh0w1dwawdx2nwn4d6wj65i58aqlvi60kflijfn8l3inr3"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/mkdown"; - license = lib.licenses.free; - }; - }) {}; - mmm-jinja2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode }: - melpaBuild { - pname = "mmm-jinja2"; - ename = "mmm-jinja2"; - version = "20170313.720"; - src = fetchFromGitHub { - owner = "glynnforrest"; - repo = "mmm-jinja2"; - rev = "c8cb763174fa2fb61b9a0e5e0ff8cb0210f8492f"; - sha256 = "0big2i3bg4cm14f68ncaiz2h6dk6zqiisrz4l0bv10q9kaa9q2sj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/721b9a6f16fb8efd4d339ac7953cc07d7a234b53/recipes/mmm-jinja2"; - sha256 = "0zg4psrgikb8644x3vmsns0id71ni9fcpm591zn16b4j64llvgsi"; - name = "recipe"; - }; - packageRequires = [ mmm-mode ]; - meta = { - homepage = "https://melpa.org/#/mmm-jinja2"; - license = lib.licenses.free; - }; - }) {}; - mmm-mako = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild - , mmm-mode }: - melpaBuild { - pname = "mmm-mako"; - ename = "mmm-mako"; - version = "20121019.2351"; - src = fetchhg { - url = "https://bitbucket.com/pjenvey/mmm-mako"; - rev = "5c9ff92137b5"; - sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/mmm-mako"; - sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; - name = "recipe"; - }; - packageRequires = [ mmm-mode ]; - meta = { - homepage = "https://melpa.org/#/mmm-mako"; - license = lib.licenses.free; - }; - }) {}; - mmt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mmt"; - ename = "mmt"; - version = "20181231.2307"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "mmt"; - rev = "db0f27b10bba0b26cdd208e9f6467bf455021e48"; - sha256 = "09imvxvbz57vfk9m1ljz81srllfr97p0k8n753g3qxs7p1ipaji5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1137bb53ecd92b1a8537abcd2635602c5ab3277/recipes/mmt"; - sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mmt"; - license = lib.licenses.free; - }; - }) {}; - mo-git-blame = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mo-git-blame"; - ename = "mo-git-blame"; - version = "20160129.959"; - src = fetchFromGitLab { - owner = "mbunkus"; - repo = "mo-git-blame"; - rev = "254a675eb794cdbbdef9fa2b4b7bb510b70089c0"; - sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a784f931849ca836557390999b179ef9f6e775f3/recipes/mo-git-blame"; - sha256 = "14ngwwgzrnnysq1k1k681b5i06ad8r3phhgpvn5alp2fj3il03l3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mo-git-blame"; - license = lib.licenses.free; - }; - }) {}; - mo-vi-ment-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mo-vi-ment-mode"; - ename = "mo-vi-ment-mode"; - version = "20181216.1806"; - src = fetchFromGitHub { - owner = "AjayMT"; - repo = "mo-vi-ment"; - rev = "e8b525ffc5faa31d36ecc5496b40f0f5c3603c08"; - sha256 = "16ic8yhjfk0ijlcw7a270p7953w750qza3xdbf4vygkiqqkxiv84"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85487df36bab0a4d2ea034dbe01c8f095a7efddc/recipes/mo-vi-ment-mode"; - sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mo-vi-ment-mode"; - license = lib.licenses.free; - }; - }) {}; - mobdebug-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lua-mode - , melpaBuild }: - melpaBuild { - pname = "mobdebug-mode"; - ename = "mobdebug-mode"; - version = "20140109.1946"; - src = fetchFromGitHub { - owner = "deftsp"; - repo = "mobdebug-mode"; - rev = "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da"; - sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25a48680d9f0d2b86ee64cc2415626a5283136a8/recipes/mobdebug-mode"; - sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8"; - name = "recipe"; - }; - packageRequires = [ emacs lua-mode ]; - meta = { - homepage = "https://melpa.org/#/mobdebug-mode"; - license = lib.licenses.free; - }; - }) {}; - mocha = callPackage ({ f - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "mocha"; - ename = "mocha"; - version = "20180321.1622"; - src = fetchFromGitHub { - owner = "scottaj"; - repo = "mocha.el"; - rev = "33e1b521a8a8d0225df353b51f1e8a4588ee32d0"; - sha256 = "1ln6wz452sfxy7ii211ha9p0n3pygxyzyk0raczfla3ln8dh989q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha"; - sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; - name = "recipe"; - }; - packageRequires = [ f js2-mode ]; - meta = { - homepage = "https://melpa.org/#/mocha"; - license = lib.licenses.free; - }; - }) {}; - mocha-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "mocha-snippets"; - ename = "mocha-snippets"; - version = "20190417.1231"; - src = fetchFromGitHub { - owner = "cowboyd"; - repo = "mocha-snippets.el"; - rev = "361a3809f755577406e109b9e44d473dfa7c08e0"; - sha256 = "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93c472e3d7f318373342907ca7253253ef12dab8/recipes/mocha-snippets"; - sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/mocha-snippets"; - license = lib.licenses.free; - }; - }) {}; - mocker = callPackage ({ eieio ? null - , el-x - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mocker"; - ename = "mocker"; - version = "20150916.1854"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "mocker.el"; - rev = "55b078b53ea49e48bd1821d96f0fb86f794fdc6c"; - sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16a4fe34a6f354d396c24ff13e15157510202259/recipes/mocker"; - sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; - name = "recipe"; - }; - packageRequires = [ eieio el-x ]; - meta = { - homepage = "https://melpa.org/#/mocker"; - license = lib.licenses.free; - }; - }) {}; - modalka = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "modalka"; - ename = "modalka"; - version = "20181231.2300"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "modalka"; - rev = "6f07d94f9315d8f25adcfd69f8416780d96626af"; - sha256 = "1avjspidddrsqg16ah6gk4vc728xfnczpcr1a45sq34jnw9wpi8q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa0a02da851a603b81e183f461da55bf4c71f0e9/recipes/modalka"; - sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/modalka"; - license = lib.licenses.free; - }; - }) {}; - mode-icons = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-icons"; - ename = "mode-icons"; - version = "20190520.2247"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "mode-icons"; - rev = "33aad72386952308c69bb98956b6735b23628501"; - sha256 = "17xbqwdk5kl3z9yr684xmq3d7gapwpzlia4yxcx1d3dz80wprmhm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mode-icons"; - sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mode-icons"; - license = lib.licenses.free; - }; - }) {}; - mode-line-bell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-line-bell"; - ename = "mode-line-bell"; - version = "20181028.2216"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "mode-line-bell"; - rev = "4985ba42f5a19f46ddbf9b3622453a9694995ce5"; - sha256 = "13n3di05lgqfm4f8krn3p36yika5znhymp5vr2d747x54hqmgh7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26f19808655b0242a1e9e5e5d41f7f794542e243/recipes/mode-line-bell"; - sha256 = "1ri771hb91b7hd203f8zp83h5hcndh8ccc1y8shhqmak6a6l04wk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mode-line-bell"; - license = lib.licenses.free; - }; - }) {}; - mode-line-debug = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-line-debug"; - ename = "mode-line-debug"; - version = "20180318.1525"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "mode-line-debug"; - rev = "a0fcc394b07d2414bd6f722da10f1c7567333f6b"; - sha256 = "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug"; - sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mode-line-debug"; - license = lib.licenses.free; - }; - }) {}; - modern-cpp-font-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "modern-cpp-font-lock"; - ename = "modern-cpp-font-lock"; - version = "20190331.828"; - src = fetchFromGitHub { - owner = "ludwigpacifici"; - repo = "modern-cpp-font-lock"; - rev = "02f104701bc34c146d22e3143ae59ef362999098"; - sha256 = "14vxxvvm12jnq4llb759h8y4w3cv71d3xic1mbp0jmyd0j4dkqzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bfc2386049adfe7a8e20da9b69fb73d6cb71387/recipes/modern-cpp-font-lock"; - sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/modern-cpp-font-lock"; - license = lib.licenses.free; - }; - }) {}; - modtime-skip-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "modtime-skip-mode"; - ename = "modtime-skip-mode"; - version = "20140128.1401"; - src = fetchFromGitHub { - owner = "jordonbiondo"; - repo = "modtime-skip-mode"; - rev = "c0e49523aa26b2263a8693691ac775988015f592"; - sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/486a675ca4898f99133bc18202e123fb58af54c0/recipes/modtime-skip-mode"; - sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/modtime-skip-mode"; - license = lib.licenses.free; - }; - }) {}; - moe-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moe-theme"; - ename = "moe-theme"; - version = "20180616.1900"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "moe-theme.el"; - rev = "ee6d7a1c84ac7a11fcc82dfc3b174eee1c8461fa"; - sha256 = "1g0hzivvqxijbmnnw8ivdlr1z90brnfp555hg6h7hhsh0b6v0arl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4efefd7edacf90620436ad4ef9ceb470618a8018/recipes/moe-theme"; - sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/moe-theme"; - license = lib.licenses.free; - }; - }) {}; - molecule = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "molecule"; - ename = "molecule"; - version = "20180527.43"; - src = fetchgit { - url = "https://git.daemons.it/drymer/molecule.el/"; - rev = "2ef72b81d9aa24ea782b71a061a3abdad6cae162"; - sha256 = "0fn16jlpdfy35mz0n27bzdiwgvv8l9nfxf8j4pypgpqarnxzpsgc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7421b67dc51abf13bb028e467bb4c83f857a342e/recipes/molecule"; - sha256 = "0kdwmn4gb382igy979y7x2fdqcnfxlb4dvqvm6w7ghs564grzgj4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/molecule"; - license = lib.licenses.free; - }; - }) {}; - molokai-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "molokai-theme"; - ename = "molokai-theme"; - version = "20151016.845"; - src = fetchFromGitHub { - owner = "alloy-d"; - repo = "color-theme-molokai"; - rev = "04a44f21184b6a26caae4f2c92db9019d883309c"; - sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1fdc89f0c52231f238096a1d42c2c330cb50d2c/recipes/molokai-theme"; - sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/molokai-theme"; - license = lib.licenses.free; - }; - }) {}; - mongo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mongo"; - ename = "mongo"; - version = "20150315.519"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "mongo-el"; - rev = "595529ddd70ecb9fab8b11daad2c3929941099d6"; - sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mongo"; - sha256 = "0jb5m611m7w26wgfwijgy0dn65s7p1y6fdcfpfgpxa7j5vrcxasc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mongo"; - license = lib.licenses.free; - }; - }) {}; - monitor = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monitor"; - ename = "monitor"; - version = "20161018.444"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "monitor"; - rev = "63f4643a0ee81616dbb692b8b03bae21df2283e2"; - sha256 = "1hl7nzxvjwv9kknyjikkbxw1gbi5kx4hkkq7sw6jnj06192n93yg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9df614e8e7b9dfdbd7eec552a2b13e0f5acfc22/recipes/monitor"; - sha256 = "11n4nv6vkjw434yrwqjw20229m2sxqxxdp7sg99gzrd5gjyab643"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/monitor"; - license = lib.licenses.free; - }; - }) {}; - monky = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monky"; - ename = "monky"; - version = "20190502.717"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "monky"; - rev = "df63632ad58704f6ee85dfcb275bbcc5e1edfbae"; - sha256 = "09fi8fxyl50fr8wdd61wacfn3xishcrsff3dag99qdbvbxakp46m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky"; - sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monky"; - license = lib.licenses.free; - }; - }) {}; - monochrome-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monochrome-theme"; - ename = "monochrome-theme"; - version = "20140326.350"; - src = fetchFromGitHub { - owner = "fxn"; - repo = "monochrome-theme.el"; - rev = "9cf993670c9e8d198f41d840216e13280585b3e1"; - sha256 = "0x6k0lxhp6y32ws54fgb71j3vfkn864iswhxs0ygg7n1nrkz1ipq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/monochrome-theme"; - sha256 = "0cq2clliwcwnn1spz1w6y5qw1lgqznw212rcc4q6f1kslq0jyk5x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monochrome-theme"; - license = lib.licenses.free; - }; - }) {}; - monokai-alt-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monokai-alt-theme"; - ename = "monokai-alt-theme"; - version = "20170630.1348"; - src = fetchFromGitHub { - owner = "dawidof"; - repo = "emacs-monokai-theme"; - rev = "f342b6afc31f929be0626eca2d696ee9fab78011"; - sha256 = "1lgsqrwf21b0rh4x8nmj08a46ld7dkq4jhwxi1fi7a9xhmi2yd4i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ff05515c2f3bd80cb8d7de9afc8fd983e62ad91/recipes/monokai-alt-theme"; - sha256 = "135bli9vhgl898526q6znjvck356bja1ylsfi95d9445jd136c4v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/monokai-alt-theme"; - license = lib.licenses.free; - }; - }) {}; - monokai-pro-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monokai-pro-theme"; - ename = "monokai-pro-theme"; - version = "20190425.1603"; - src = fetchFromGitHub { - owner = "belak"; - repo = "emacs-monokai-pro-theme"; - rev = "747556c0cb38993c83ea8b6665869f42249d885a"; - sha256 = "1xfc3v1bwxpn3j42h6b1vy6knjrlmskq95c9vgdlia9ffz5pg7r3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d5fbd76a40d84dd2d91a1022f59c15e6db6b90a/recipes/monokai-pro-theme"; - sha256 = "05ya47cmry2fprssjx3adwij9zd218rcnikpw9hximwlklmzjvb3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monokai-pro-theme"; - license = lib.licenses.free; - }; - }) {}; - monokai-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monokai-theme"; - ename = "monokai-theme"; - version = "20180730.629"; - src = fetchFromGitHub { - owner = "oneKelvinSmith"; - repo = "monokai-emacs"; - rev = "f4ef092129f4a35edaee0a9b2219c17e86309730"; - sha256 = "1dshz153y25pmff0pn2rsvgxsv0jv0pjn5cpzvr5x11b65ijwshy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme"; - sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monokai-theme"; - license = lib.licenses.free; - }; - }) {}; - monotropic-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monotropic-theme"; - ename = "monotropic-theme"; - version = "20181015.530"; - src = fetchFromGitHub { - owner = "caffo"; - repo = "monotropic-theme"; - rev = "36df566aa8225e303f6c9d90c00740dd678a415e"; - sha256 = "05n8s3719f6yrh4fi5xyzzlhpsgpbc60mmfmzycxlb4sinq9bfks"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38222d109ece0030b0bfafb242aa100694b2bfcf/recipes/monotropic-theme"; - sha256 = "129yqjh4gaab1kjijzkzbw50alzdiwmpv9cl3lsy04m8zk02shl8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/monotropic-theme"; - license = lib.licenses.free; - }; - }) {}; - monroe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monroe"; - ename = "monroe"; - version = "20190109.547"; - src = fetchFromGitHub { - owner = "sanel"; - repo = "monroe"; - rev = "2f472fdc09c1b36c291ddb5ed9aecc331fd7e082"; - sha256 = "1g9v7z2bk2vcknpff31y9pf6cw8xrb5hxsh8cjci7i5w2abp7qbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/590e5e784c5a1c12a241d90c9a0794d2737a61ef/recipes/monroe"; - sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monroe"; - license = lib.licenses.free; - }; - }) {}; - mood-line = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mood-line"; - ename = "mood-line"; - version = "20190606.247"; - src = fetchFromGitLab { - owner = "jessieh"; - repo = "mood-line"; - rev = "670f2c0c39e72fed57be2bd65325a65bca166396"; - sha256 = "18jwca84c72jahmx7lwilnihrlw6s6ni5d7qkj8n6q7ibka3cffv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b10524f105943648ecf52f007f363b7b5534865e/recipes/mood-line"; - sha256 = "0wj8rdgsqsdd2ps3w7sj8a7yhhz0iczwgnalalzws42x8s9yn4j0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mood-line"; - license = lib.licenses.free; - }; - }) {}; - mood-one-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mood-one-theme"; - ename = "mood-one-theme"; - version = "20190422.1424"; - src = fetchFromGitLab { - owner = "jessieh"; - repo = "mood-one-theme"; - rev = "bd41e991e2280102d538eccc508d6a4bb6a651ca"; - sha256 = "0h90z0l9968mpi7qbwjjp5jq41kxjfjcr2ydfadsry5zj1pzk95i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44fbe8c54e4052e6c38849a12425db8f7c04fcc1/recipes/mood-one-theme"; - sha256 = "1ar3vsc0d838m2k54f4v8a4mc0g21qa9rmgr2wb763vb7vpcznmi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mood-one-theme"; - license = lib.licenses.free; - }; - }) {}; - moody = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moody"; - ename = "moody"; - version = "20190203.947"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "moody"; - rev = "e0975e844876f0962b2e9481c26739397bd23541"; - sha256 = "0jci21ycsyf1mblcv8vbii4wisw1zcs15q5xwld7ai24kgj70269"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63521fe6a1e540544a07231cc94144439e8caea7/recipes/moody"; - sha256 = "095241sjw330fb5lk48aa4zx8xbzk8s4ml22n6a8bzr99nkhn5jy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/moody"; - license = lib.licenses.free; - }; - }) {}; - moom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moom"; - ename = "moom"; - version = "20180909.2138"; - src = fetchFromGitHub { - owner = "takaxp"; - repo = "moom"; - rev = "a8820f19a8168ab395ba835872606280ad96916d"; - sha256 = "1lpkmbabw9n50hf7yr6n4aim8x0km1wa15mpf7mv9w91ca2blg5d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c55081230ee02346ed02e0ab19ee2302e7b9ffa7/recipes/moom"; - sha256 = "11l4yc8fhxsrsjfksqj4cxr13jln0khhd2dn09i94n71dx7lybh1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/moom"; - license = lib.licenses.free; - }; - }) {}; - moonscript = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moonscript"; - ename = "moonscript"; - version = "20170831.1526"; - src = fetchFromGitHub { - owner = "k2052"; - repo = "moonscript-mode"; - rev = "56f90471e2ced2b0a177aed4d8c2f854797e9cc7"; - sha256 = "1v2phdpfngrb01x4qygpfgxdzpgvbprki2kbmpc83vlqxlmkvvjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3046afee95277024830d7d372f2f1c84a0adcb00/recipes/moonscript"; - sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/moonscript"; - license = lib.licenses.free; - }; - }) {}; - morganey-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "morganey-mode"; - ename = "morganey-mode"; - version = "20170118.134"; - src = fetchFromGitHub { - owner = "morganey-lang"; - repo = "morganey-mode"; - rev = "7e33f1be486f58dfcf02adcbf82ccac47f69bd9b"; - sha256 = "1ic3m71ilclrvshc6lasbb1s7ifhjp10iwy0zbjbhfy27n05g3z1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/morganey-mode"; - sha256 = "18cbmx8lnypgxkisxa3lrh88v8l9k0q8fnai5ps8ngvfgz42rlqp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/morganey-mode"; - license = lib.licenses.free; - }; - }) {}; - morlock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "morlock"; - ename = "morlock"; - version = "20180318.1323"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "morlock"; - rev = "5fd655ba3050981ab8059bcddf5b19c21f9ceea1"; - sha256 = "0bgrqydh9bb059j6b6y86xn6qdq85y0radsi1zq20p5xmrsgivbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock"; - sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/morlock"; - license = lib.licenses.free; - }; - }) {}; - mosey = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mosey"; - ename = "mosey"; - version = "20180614.949"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "mosey.el"; - rev = "2e3ac9d334fa2937ed5267193dfd25d8e1f14dc2"; - sha256 = "1yxy6m5igvsy37vn93ijs0b479v50vsnsyp8zi548iy2ribr0qr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76a9a43eea68db9f82c07677235c481a6f243aa2/recipes/mosey"; - sha256 = "0zprzr5aqv77kmg1ki9w6fw1nc2ap6yqjl4ak05a1i9cq8g6nf3m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mosey"; - license = lib.licenses.free; - }; - }) {}; - mote-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "mote-mode"; - ename = "mote-mode"; - version = "20160122.1629"; - src = fetchFromGitHub { - owner = "inkel"; - repo = "mote-mode"; - rev = "666c6641addbd3b337a7aa01fd2742ded2f41b83"; - sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mote-mode"; - sha256 = "0ccsyl0wvf0nbsw57sxad7w0c0i5al5s5mjrjjq8bnfh4dyj2x0y"; - name = "recipe"; - }; - packageRequires = [ ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/mote-mode"; - license = lib.licenses.free; - }; - }) {}; - motion-mode = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-cursor - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "motion-mode"; - ename = "motion-mode"; - version = "20140919.1856"; - src = fetchFromGitHub { - owner = "ainame"; - repo = "motion-mode"; - rev = "4c94180e3ecea611a61240a0c0cd48f1032c4a55"; - sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e3a2091a73c7d725c929313290566f5ca19404/recipes/motion-mode"; - sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0"; - name = "recipe"; - }; - packageRequires = [ flymake-cursor flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/motion-mode"; - license = lib.licenses.free; - }; - }) {}; - mouse-slider-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mouse-slider-mode"; - ename = "mouse-slider-mode"; - version = "20161021.1214"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "mouse-slider-mode"; - rev = "b3c19cd231edecce76787c5a9bbe5e4046d91f88"; - sha256 = "1qkbrwicp3gaknnmfrajf1qdyhj5s0c09cx62869rp2721p8rqaw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8fa747999bb928c3836400a43d8ab63939381673/recipes/mouse-slider-mode"; - sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mouse-slider-mode"; - license = lib.licenses.free; - }; - }) {}; - move-dup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "move-dup"; - ename = "move-dup"; - version = "20190408.546"; - src = fetchFromGitHub { - owner = "wyuenho"; - repo = "move-dup"; - rev = "19f1c075d939084279b190c38412b4cfda96840d"; - sha256 = "0rb9x00dygf0v5xk6gljdn0lvkgzyl129b5i4jpxz0ylccckd0xn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ea1f7f015a366192492981ff75672fc363c6c18/recipes/move-dup"; - sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/move-dup"; - license = lib.licenses.free; - }; - }) {}; - move-text = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "move-text"; - ename = "move-text"; - version = "20170908.2030"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "move-text"; - rev = "daaa5c3e01d1b88f4eea8e1421acd2453c2df350"; - sha256 = "1hm2j28vf7zh5h552wszawxsp2c4jwpc33017ld1vc9qcccp3895"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82bfd0f41e42eed1d4c2361ec1d1685edebbac1b/recipes/move-text"; - sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/move-text"; - license = lib.licenses.free; - }; - }) {}; - mowedline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mowedline"; - ename = "mowedline"; - version = "20161121.1835"; - src = fetchFromGitHub { - owner = "retroj"; - repo = "mowedline"; - rev = "bde4de0a4e1404127b0a48897d8cd1d1cb8a263d"; - sha256 = "0wwl9f01b9sgs8n19a4i7h08xaf6zdljf2plbdpyy4gzi2iiqcc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline"; - sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mowedline"; - license = lib.licenses.free; - }; - }) {}; - moz = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moz"; - ename = "moz"; - version = "20150805.1006"; - src = fetchFromGitHub { - owner = "bard"; - repo = "mozrepl"; - rev = "2209e126b509b9a4d0800b1c7f9623e8d2b4345b"; - sha256 = "18b214667b4hr76dd09kbjb3acsnr9n5aik49ji1v50k78aaswvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6839c5e52364fb32f6d8a351e5c2f21fbd6669a1/recipes/moz"; - sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/moz"; - license = lib.licenses.free; - }; - }) {}; - moz-controller = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , moz }: - melpaBuild { - pname = "moz-controller"; - ename = "moz-controller"; - version = "20151208.1806"; - src = fetchFromGitHub { - owner = "RenWenshan"; - repo = "emacs-moz-controller"; - rev = "46f665c03574fa922de767fc29795e0db4a7c5c6"; - sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcc20337594a76a547f696adece121ae592c6917/recipes/moz-controller"; - sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; - name = "recipe"; - }; - packageRequires = [ moz ]; - meta = { - homepage = "https://melpa.org/#/moz-controller"; - license = lib.licenses.free; - }; - }) {}; - mozc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mozc"; - ename = "mozc"; - version = "20180101.0"; - src = fetchFromGitHub { - owner = "google"; - repo = "mozc"; - rev = "f5ddd0e06f5d94ecc626b38797c982e8598d18e0"; - sha256 = "03ccc2v80033av5a5gq7w90rpk851idfg28979hjq8qfzsizx7x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c/recipes/mozc"; - sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mozc"; - license = lib.licenses.free; - }; - }) {}; - mozc-im = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc }: - melpaBuild { - pname = "mozc-im"; - ename = "mozc-im"; - version = "20160411.1722"; - src = fetchFromGitHub { - owner = "d5884"; - repo = "mozc-im"; - rev = "df614a1076c28a11551fb3e822868bae47e855a5"; - sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b651b7f1c15b44577b3c2b7493264ed802cf073/recipes/mozc-im"; - sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10"; - name = "recipe"; - }; - packageRequires = [ mozc ]; - meta = { - homepage = "https://melpa.org/#/mozc-im"; - license = lib.licenses.free; - }; - }) {}; - mozc-popup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc - , popup }: - melpaBuild { - pname = "mozc-popup"; - ename = "mozc-popup"; - version = "20150223.1634"; - src = fetchFromGitHub { - owner = "d5884"; - repo = "mozc-popup"; - rev = "f0684b875a7427ec08f8df13939a486e5d5cf420"; - sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49bdcf035b9f885a689b9dc21817aecdcd09768b/recipes/mozc-popup"; - sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687"; - name = "recipe"; - }; - packageRequires = [ mozc popup ]; - meta = { - homepage = "https://melpa.org/#/mozc-popup"; - license = lib.licenses.free; - }; - }) {}; - mozc-temp = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc }: - melpaBuild { - pname = "mozc-temp"; - ename = "mozc-temp"; - version = "20160228.40"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "mozc-temp"; - rev = "7f5dd5fc8ceeca9b1822f7e056a4be67e2e74959"; - sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0c77275d759bf73df11fa151b4e737d7cb15adf/recipes/mozc-temp"; - sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; - name = "recipe"; - }; - packageRequires = [ dash emacs mozc ]; - meta = { - homepage = "https://melpa.org/#/mozc-temp"; - license = lib.licenses.free; - }; - }) {}; - mpages = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mpages"; - ename = "mpages"; - version = "20150710.704"; - src = fetchFromGitHub { - owner = "slevin"; - repo = "mpages"; - rev = "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f"; - sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b535c2862c4fad568324466883f23ba9f39e787f/recipes/mpages"; - sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mpages"; - license = lib.licenses.free; - }; - }) {}; - mpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , libmpdel - , melpaBuild }: - melpaBuild { - pname = "mpdel"; - ename = "mpdel"; - version = "20190428.218"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "mpdel"; - rev = "a2da2f2fe2357641909514da788f7c6cbe5801f4"; - sha256 = "0pyyvbzskr44dxbmlp3y0r6s459fd51cvwjmnjaqxfxflr5v891g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel"; - sha256 = "1py6zk16yl7pyql2qxzd770clzszw7c769hw70n963kns1qmpif8"; - name = "recipe"; - }; - 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"; - ename = "mpmc-queue"; - version = "20180303.1229"; - src = fetchFromGitHub { - owner = "smizoe"; - repo = "mpmc-queue"; - rev = "df07d6bef7468edb1d73ef73b8331b94d0e5d0ca"; - sha256 = "17817l3afghg9z8jxkj61yg85plmr74ki3wf4hz685llx8fr69w0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30511f1e5eaf45b5f43fbacdd6c7254cb39b1d2c/recipes/mpmc-queue"; - sha256 = "08jcmhfl87nsg6zgv582yfs152bqihbcssh085gxxqn2x99li354"; - name = "recipe"; - }; - 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 - , org }: - melpaBuild { - pname = "mpv"; - ename = "mpv"; - version = "20180602.314"; - src = fetchFromGitHub { - owner = "kljohann"; - repo = "mpv.el"; - rev = "9dedf3b7c1bfd778284df7f394207ce0447ea7aa"; - sha256 = "15z62wi47pwvkbh4qgvz06yk4cyy570pjz1276sd9frdwgd4kc19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2392c1d1042ac6a42bbf9aa7e394c03e178829d0/recipes/mpv"; - sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json org ]; - meta = { - homepage = "https://melpa.org/#/mpv"; - license = lib.licenses.free; - }; - }) {}; - mqr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mqr"; - ename = "mqr"; - version = "20180527.504"; - src = fetchFromGitHub { - owner = "calancha"; - repo = "multi-replace"; - rev = "4ade19d4620b8b61340290bf63fa56d5e493859f"; - sha256 = "0pkxmv0rla9f2ly9fq3i3mrsa2q8rsrs4pk6w7wpi3v5fbj1jmd6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0023747e8173fab8e88143ee95a31540a079c6bf/recipes/mqr"; - sha256 = "1nw713sha29q1zgsxxfrkggkrk6q8vvk9sdi1s539r8h35bc3jx0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mqr"; - license = lib.licenses.free; - }; - }) {}; - mqtt-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mqtt-mode"; - ename = "mqtt-mode"; - version = "20180605.1031"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "mqtt-mode"; - rev = "36d1d4296d79e17b8f35e8e14f2708980eb502db"; - sha256 = "1116xvwpavg7icm263s0clgxhw3qqm4aqiw4ky94w9a8ydazx51l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b85c84ff9523026620e5b3cf864bbc7b9f81d57a/recipes/mqtt-mode"; - sha256 = "1zbnhd65c9wz9yr29j37c8z7vz3axpfwkzx0z8xjplp40mafpz1z"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/mqtt-mode"; - license = lib.licenses.free; - }; - }) {}; - ms-python = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "ms-python"; - ename = "ms-python"; - version = "20190412.2216"; - src = fetchFromGitHub { - owner = "xhcoding"; - repo = "ms-python"; - rev = "d95ac8f1633764cdb4bb43bf44c2eb6b225f9f93"; - sha256 = "0z1i556y51fhy2c6n6zdmwzbl7czp99v1szaxhb53z96s0d4nqmc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6373142d80e84db8dec47abd0cdc562352b16681/recipes/ms-python"; - sha256 = "1zws8vsxmiwiy4ndxlnl8hn98gfkhf50w7mvq9plr4z6z1adzdi0"; - name = "recipe"; - }; - packageRequires = [ emacs lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/ms-python"; - license = lib.licenses.free; - }; - }) {}; - msvc = callPackage ({ ac-clang - , cedet ? null - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "msvc"; - ename = "msvc"; - version = "20190426.345"; - src = fetchFromGitHub { - owner = "yaruopooner"; - repo = "msvc"; - rev = "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06"; - sha256 = "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc"; - sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; - name = "recipe"; - }; - packageRequires = [ ac-clang cedet cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/msvc"; - license = lib.licenses.free; - }; - }) {}; - mtg-deck-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mtg-deck-mode"; - ename = "mtg-deck-mode"; - version = "20180613.1310"; - src = fetchFromGitHub { - owner = "mattiasb"; - repo = "mtg-deck-mode"; - rev = "8265b8ed17fcd4406760c19aa6ee9c76068b1ab0"; - sha256 = "04qdcqpkic2nhqy6nf15j3zp5hmrfzs2kndvmg5v4vjac2vfmzfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/425fa66cffe7bfda71de4ff2b49e951456bdeae1/recipes/mtg-deck-mode"; - sha256 = "07hszf33nawhp218f90qr4s713yyjdd7zzkq0s8q0fb6aai5iiih"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mtg-deck-mode"; - license = lib.licenses.free; - }; - }) {}; - mu-cite = callPackage ({ fetchFromGitHub - , fetchurl - , flim - , lib - , melpaBuild }: - melpaBuild { - pname = "mu-cite"; - ename = "mu-cite"; - version = "20160130.300"; - src = fetchFromGitHub { - owner = "ksato9700"; - repo = "mu-cite"; - rev = "aea3c2d01eb3284d5e0124059d368e8c6b6ffddc"; - sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a80bc6e626f4bc6edfe6560833d12d31ecfd7a51/recipes/mu-cite"; - sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q"; - name = "recipe"; - }; - packageRequires = [ flim ]; - meta = { - homepage = "https://melpa.org/#/mu-cite"; - license = lib.licenses.free; - }; - }) {}; - mu2tex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu2tex"; - ename = "mu2tex"; - version = "20190519.2203"; - src = fetchFromGitHub { - owner = "cdominik"; - repo = "mu2tex"; - rev = "bfd1d72d52139e58d8a74a72a680773f3403bfd1"; - sha256 = "1f1yqlg9iynkq4mmwgr87fv02d5bcza3nhdbid4w6jlgqyxzwvi6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e55964077f23a9d3ec4b53cb5add6d7166f385e0/recipes/mu2tex"; - sha256 = "1h146xscvlkjgp4wqw11cb1z6gjr1s0ysamcz4ii5gfv82rrjgyc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mu2tex"; - license = lib.licenses.free; - }; - }) {}; - mu4e-alert = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mu4e-alert"; - ename = "mu4e-alert"; - version = "20190417.2258"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "mu4e-alert"; - rev = "91f0657c5b245a9de57aa38391221fb5d141d9bd"; - sha256 = "0qr5ww2xj8dibglh175qcq4bdgzs8lylv28hkbijykjshr3pkzn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mu4e-alert"; - sha256 = "0b74ky51nx75vcrrbabr5cj2cx4yax5kgaq479hjp5yc5mq2q46r"; - name = "recipe"; - }; - packageRequires = [ alert emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/mu4e-alert"; - license = lib.licenses.free; - }; - }) {}; - mu4e-conversation = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-conversation"; - ename = "mu4e-conversation"; - version = "20190305.836"; - src = fetchFromGitLab { - owner = "ambrevar"; - repo = "mu4e-conversation"; - rev = "fc3c9d3aca3cfae87001f95d505fab4fed597df0"; - sha256 = "06br06ld9brvki53jrw2zsarz1fnr4ajd7va9yb6y3sphphz0vc6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7638aecc7a2cd4b1646c6e32fe83e18ef212bbaa/recipes/mu4e-conversation"; - sha256 = "16vhjaxjhshw7ch9ihk35r99549xlbmvybwjx0p9mzyqi30dn3s6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mu4e-conversation"; - license = lib.licenses.free; - }; - }) {}; - mu4e-jump-to-list = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-jump-to-list"; - ename = "mu4e-jump-to-list"; - version = "20190419.742"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "mu4e-jump-to-list.el"; - rev = "358bba003543b49ffa266e503e54aebd0ebe614b"; - sha256 = "00y9nap61q1z2cdql4k9g7fgi2gdgd9iy5s5lzrd9a4agbx6r7sv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/mu4e-jump-to-list"; - sha256 = "0yl1vi62pjgklwa7ifvr35fciiqqc5zkrc0m4yxjiv0c0dn50b7n"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mu4e-jump-to-list"; - license = lib.licenses.free; - }; - }) {}; - mu4e-maildirs-extension = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-maildirs-extension"; - ename = "mu4e-maildirs-extension"; - version = "20180606.112"; - src = fetchFromGitHub { - owner = "agpchil"; - repo = "mu4e-maildirs-extension"; - rev = "3ef4c48516be66e73d24fe764aadbcfc126b7964"; - sha256 = "04nf947sxkir3gni67jc5djhywkmay1l8cqkicayimrh3vd5cy05"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mu4e-maildirs-extension"; - sha256 = "0bisxm0rph5q1p3zjr7vyyr0jqr3ihs6ihiwyfr8d3dvba1zhffc"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/mu4e-maildirs-extension"; - license = lib.licenses.free; - }; - }) {}; - mu4e-overview = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-overview"; - ename = "mu4e-overview"; - version = "20190420.2312"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "mu4e-overview"; - rev = "eb2d1e39c77c4725a8ee36dc68917aaf7b717b46"; - sha256 = "08mchv8q8q3mnpm69vc888jlv4iik4vlkxqpmkrsgimq1gyb80pj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec240f0f9bc43c5abca557607b0b89a24696744e/recipes/mu4e-overview"; - sha256 = "076lpfj6zrg2ivgbslg9whm4mci278kg45a3km7iadilwipiaxsk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mu4e-overview"; - license = lib.licenses.free; - }; - }) {}; - mu4e-query-fragments = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-query-fragments"; - ename = "mu4e-query-fragments"; - version = "20170923.622"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "mu4e-query-fragments.el"; - rev = "5f2b195dad2d74f38ff35b93edea5dd133112012"; - sha256 = "0frq485lghpzpzcrpw7f4vmc39nx1ph1dp0i0l8hb6h8rl1n4r7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/mu4e-query-fragments"; - sha256 = "1gckwfgw7jvr6dbikcmy07i07wjhlvq66swhac2laaj6w567vc7w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mu4e-query-fragments"; - license = lib.licenses.free; - }; - }) {}; - muban = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "muban"; - ename = "muban"; - version = "20180415.519"; - src = fetchFromGitHub { - owner = "jiahaowork"; - repo = "muban.el"; - rev = "c134c46e60be1fb3e9a08dba3d07346855e0fcc2"; - sha256 = "1xlkzvfbzhhpmzz008ad4l9sxdvda2cxhq6grn84pcfh5g2ccn2c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3576c6b7d79ce6d4df40ce83400fa2468f8fbcdf/recipes/muban"; - sha256 = "1njphxx6sgw952p7v2qkbjwa8sb2mwrxrzv35bzp0d4c84ny2sa0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/muban"; - license = lib.licenses.free; - }; - }) {}; - multi = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi"; - ename = "multi"; - version = "20131013.844"; - src = fetchFromGitHub { - owner = "kurisuwhyte"; - repo = "emacs-multi"; - rev = "884203b11fdac8374ec644cca975469aab263404"; - sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9fea5cf529bcdf412af2926e55b8d77edc07eca/recipes/multi"; - sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/multi"; - license = lib.licenses.free; - }; - }) {}; - multi-compile = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi-compile"; - ename = "multi-compile"; - version = "20160306.1423"; - src = fetchFromGitHub { - owner = "ReanGD"; - repo = "emacs-multi-compile"; - rev = "bd0331854774e7a269ce8a7dd49580cd397c0ec2"; - sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b312434c6c8e23ded2b74bf8f144ad0b3170adae/recipes/multi-compile"; - sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/multi-compile"; - license = lib.licenses.free; - }; - }) {}; - multi-line = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "multi-line"; - ename = "multi-line"; - version = "20170821.1926"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "multi-line"; - rev = "d3ce76b6aec62f96ef2c0409d8262fd39e67dccc"; - sha256 = "0kysz7l18z3fkzygpdnqf2ancixrwyzh6n49jgk0c50lhhqj324x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8eee6798a0ba71d437a1cbf82e360a5b60eafb/recipes/multi-line"; - sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s shut-up ]; - meta = { - homepage = "https://melpa.org/#/multi-line"; - license = lib.licenses.free; - }; - }) {}; - multi-project = callPackage ({ emacs - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi-project"; - ename = "multi-project"; - version = "20190217.832"; - src = fetchhg { - url = "https://bitbucket.com/ellisvelo/multi-project"; - rev = "13bd84412236"; - sha256 = "1i97m9iyslg34vbg2aqjy4hzad78qsi0jjkh83xgrdn0hax2x9wy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/multi-project"; - sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/multi-project"; - license = lib.licenses.free; - }; - }) {}; - multi-run = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , window-layout }: - melpaBuild { - pname = "multi-run"; - ename = "multi-run"; - version = "20190507.1649"; - src = fetchFromGitHub { - owner = "sagarjha"; - repo = "multi-run"; - rev = "c6256b0cc2876c29faf381d8324b31b911045a27"; - sha256 = "07nd7lwrnz9j54hq33c8ii1pipd472qfsdifg6fid7kca0rychif"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e05ad99477bb97343232ded7083fddb810ae1781/recipes/multi-run"; - sha256 = "1iv4a49czdjl0slp8590f1ya0vm8g2ycnkwrdpqi3b55haaqp91h"; - name = "recipe"; - }; - 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"; - ename = "multi-term"; - version = "20160619.233"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "multi-term"; - rev = "f954e4e18b0a035151d34852387e724d87a3316f"; - sha256 = "00cz3q654vpmijbqxp8c6nkxqj9zx1hjr3552l0adk3fbg6qpmcq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/multi-term"; - sha256 = "16idk4nd7qpyrvyspbrdl8gdfaclng6ny0xigk6fqdv352djalal"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multi-term"; - license = lib.licenses.free; - }; - }) {}; - multi-web-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi-web-mode"; - ename = "multi-web-mode"; - version = "20130823.2054"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "multi-web-mode"; - rev = "ad1c8d1c870334052d244c7ae3636cb7b9357b7c"; - sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/multi-web-mode"; - sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multi-web-mode"; - license = lib.licenses.free; - }; - }) {}; - multicolumn = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multicolumn"; - ename = "multicolumn"; - version = "20150202.1451"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "multicolumn"; - rev = "c7a3afecd470859b2e60aa7c554d6e4d436df7fa"; - sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f37a999b0583a0ebc842c2f9fad8d08cb6c9dabf/recipes/multicolumn"; - sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multicolumn"; - license = lib.licenses.free; - }; - }) {}; - multifiles = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multifiles"; - ename = "multifiles"; - version = "20130615.1433"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "multifiles.el"; - rev = "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897"; - sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/multifiles"; - sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multifiles"; - license = lib.licenses.free; - }; - }) {}; - multiple-cursors = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multiple-cursors"; - ename = "multiple-cursors"; - version = "20190317.511"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "multiple-cursors.el"; - rev = "fc6a6a74626b8458f2a36d802165a7f74114fafd"; - sha256 = "0rya3zdbs9z8f8pqr1nbsri30m76iyr5fbi0wvh0y1xyr93y33j3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors"; - sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/multiple-cursors"; - license = lib.licenses.free; - }; - }) {}; - multitran = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multitran"; - ename = "multitran"; - version = "20190402.1304"; - src = fetchFromGitHub { - owner = "zevlg"; - repo = "multitran.el"; - rev = "a0521a3455f95638ab4c37ac112026928eab09a2"; - sha256 = "0i7wy3g229yssf0n75cch4d3sk73br7673razws5dzrwhmmvi3nb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d665759fa6491b77103920a75c18a561f6800c1c/recipes/multitran"; - sha256 = "0nxrzzlinl5310zfrb4z5j0553cmg11m9y2gaf990j61afaw8f32"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/multitran"; - license = lib.licenses.free; - }; - }) {}; - mustache = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mustache"; - ename = "mustache"; - version = "20170923.533"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "mustache.el"; - rev = "5e39654b933a18131146a0f3b3e3dc55c5058124"; - sha256 = "0ilsdrvqy9zn0yb1c8zh1zidag32rfb9xhm43qpfcg6n5w6c7r82"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1bcf9599ca6d2c29333071a80f96808d4ab52e2/recipes/mustache"; - sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; - name = "recipe"; - }; - packageRequires = [ dash ht s ]; - meta = { - homepage = "https://melpa.org/#/mustache"; - license = lib.licenses.free; - }; - }) {}; - mustache-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mustache-mode"; - ename = "mustache-mode"; - version = "20141024.732"; - src = fetchFromGitHub { - owner = "mustache"; - repo = "emacs"; - rev = "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f"; - sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mustache-mode"; - sha256 = "1xmqh663r5i42a586xn0wzw6h1jkvhbnw5iwvjv96w452slhkr36"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mustache-mode"; - license = lib.licenses.free; - }; - }) {}; - mustang-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mustang-theme"; - ename = "mustang-theme"; - version = "20170719.246"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "mustang-theme"; - rev = "dda6d04803f1c9b196b620ef564e7768fee15de2"; - sha256 = "0pg3iay0iinf361v4ay8kizdxs5rm23ir556cwwgz3m3gbs0mgsh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ed3691edd1cba6abc0c30d2aab732e2ba51bf00/recipes/mustang-theme"; - sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mustang-theme"; - license = lib.licenses.free; - }; - }) {}; - mustard-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mustard-theme"; - ename = "mustard-theme"; - version = "20170808.619"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-mustard-theme"; - rev = "3b15d992c79590d7ea2503004e2a863b57e274b5"; - sha256 = "01ak4ayk46jqawlbb9cqliiqhnn68cq27kryamibdpds8sq0ch83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/mustard-theme"; - sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mustard-theme"; - license = lib.licenses.free; - }; - }) {}; - mutant = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mutant"; - ename = "mutant"; - version = "20160124.553"; - src = fetchFromGitHub { - owner = "p-lambert"; - repo = "mutant.el"; - rev = "aff50603a70a110f4ecd7142963ef719e8c11c06"; - sha256 = "1faqbkff0v6pigsnnq2dxnzdra8q62cvlxigscwalwxd27bbz548"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fc72d1f18eba7501a040d450a85d8dee4e3070f/recipes/mutant"; - sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/mutant"; - license = lib.licenses.free; - }; - }) {}; - mutt-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mutt-mode"; - ename = "mutt-mode"; - version = "20190302.715"; - src = fetchFromGitLab { - owner = "flexw"; - repo = "mutt-mode"; - rev = "92763c5ff9abbf4ef91ce15fa7cc6b23da1cfa2d"; - sha256 = "0n04500kr4d3qg6g98nzmdjcdy7qqs5r7f9cbi50r15jr9ihsjvx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d9da58f247dee4f06cbcf6ed532134bc474d309/recipes/mutt-mode"; - sha256 = "0k1r2lsh8s054aapyf7diki00sxf1wdm01cavlqxbvv3zg2gym8d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mutt-mode"; - license = lib.licenses.free; - }; - }) {}; - mvn = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mvn"; - ename = "mvn"; - version = "20181002.917"; - src = fetchFromGitHub { - owner = "apg"; - repo = "mvn-el"; - rev = "ffa40235b7dabb6c6c165f64f32a963cde8031f0"; - sha256 = "0ximk0aan7jqn5x7fk4pj35bxhi6zaspvyxrmac9kxaiz8znwffr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/mvn"; - sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mvn"; - license = lib.licenses.free; - }; - }) {}; - mw-thesaurus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mw-thesaurus"; - ename = "mw-thesaurus"; - version = "20180628.2225"; - src = fetchFromGitHub { - owner = "agzam"; - repo = "mw-thesaurus.el"; - rev = "b3f8c3aae2b68a4e6cc054c6c99d3b3135e781d1"; - sha256 = "01ljvhx2g4i5vgzwibdgp5jl37s01m0j4sfaw7bbsm8nag0h4aw5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53e4a552b8a7527433b11c377e1257fabceb8049/recipes/mw-thesaurus"; - sha256 = "10v3a09sz31ndj0ldpz0c3s45s62gyvdw0iq0c0dkg4da2rvicww"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mw-thesaurus"; - license = lib.licenses.free; - }; - }) {}; - mwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mwim"; - ename = "mwim"; - version = "20181110.1100"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "mwim.el"; - rev = "b4f3edb4c0fb8f8b71cecbf8095c2c25a8ffbf85"; - sha256 = "0l3k611gp9g2x2vfmh92wnhnda81dslpwwpb8mxmzk308man77ya"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72/recipes/mwim"; - sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mwim"; - license = lib.licenses.free; - }; - }) {}; - mxf-view = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mxf-view"; - ename = "mxf-view"; - version = "20180501.40"; - src = fetchFromGitHub { - owner = "t-suwa"; - repo = "mxf-view"; - rev = "c4825f35fad81c4624a2fcaea95cc605addf5cbc"; - sha256 = "0ci1kdc7qs04yny6sxhbncb3d4gzcsdhk2w51phpb8m2rilm0xgl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/mxf-view"; - sha256 = "1a8hlp0r04p1cww3dmsqdxlm3ll522wjb0rnmj80d7mqizkbf52p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mxf-view"; - license = lib.licenses.free; - }; - }) {}; - myanmar-input-methods = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "myanmar-input-methods"; - ename = "myanmar-input-methods"; - version = "20160106.737"; - src = fetchFromGitHub { - owner = "yelinkyaw"; - repo = "emacs-myanmar-input-methods"; - rev = "9d4e0d6358c61bde7a2274e430ef71683faea32e"; - sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76093af2bba82159784994ec9e17a69cd22bf868/recipes/myanmar-input-methods"; - sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/myanmar-input-methods"; - license = lib.licenses.free; - }; - }) {}; - mykie = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mykie"; - ename = "mykie"; - version = "20150808.1505"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "mykie-el"; - rev = "91f222b4f2b2b4285b0bc306905eb960826a67ed"; - sha256 = "0x8pvcai8gvxwp2r2x4szh2xzk1mxjsh3698pc4l1cm7d8yrvwk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e10504a19e052c080be2ccc9b1b8fd2e73a852e0/recipes/mykie"; - sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mykie"; - license = lib.licenses.free; - }; - }) {}; - mynt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , virtualenvwrapper }: - melpaBuild { - pname = "mynt-mode"; - ename = "mynt-mode"; - version = "20150512.1349"; - src = fetchFromGitHub { - owner = "crshd"; - repo = "mynt-mode"; - rev = "23d4489167bfa899634548cb41ed32fdeb3600c9"; - sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22eaeb5041155d56483d2ac6b32098456411442b/recipes/mynt-mode"; - sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b"; - name = "recipe"; - }; - packageRequires = [ virtualenvwrapper ]; - meta = { - homepage = "https://melpa.org/#/mynt-mode"; - license = lib.licenses.free; - }; - }) {}; - mysql-to-org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mysql-to-org"; - ename = "mysql-to-org"; - version = "20181012.1334"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "mysql-to-org-mode"; - rev = "a8a0c15b04c9a9e9d936908731bf43e6faf81fa8"; - sha256 = "0qi2q3ggq7fjwxl8ir6dbysfm31dzvcsp0nhm6xrk8gv6xfsyvlh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mysql-to-org"; - sha256 = "0jjdv6ywdn1618l36bw3xa3mdgg3rc8r0rdv9xdqx8mmg648a7gj"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/mysql-to-org"; - license = lib.licenses.free; - }; - }) {}; - mysql2sqlite = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mysql2sqlite"; - ename = "mysql2sqlite"; - version = "20170725.1516"; - src = fetchFromGitHub { - owner = "echosa"; - repo = "emacs-mysql2sqlite"; - rev = "8e6e74451c942e2e92f90dc13222b95a7dbb285e"; - sha256 = "18jriaj391n4wr0qiva68jf482yx9v9l4xagbzl9vw125lszkngb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9841d3cfd1ee954eb0ab9b2ca3a3f605eb0fd22a/recipes/mysql2sqlite"; - sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mysql2sqlite"; - license = lib.licenses.free; - }; - }) {}; - myterminal-controls = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "myterminal-controls"; - ename = "myterminal-controls"; - version = "20190425.2121"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "myterminal-controls"; - rev = "733cdd7ab4f172b6dca09720fc5ae7dbc248c822"; - sha256 = "1z89d3dx77c4v1zz4ngn689ay6m2x04jznnbc6bdqsaanz9znwlz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a82a45d9fcafea0795f832bce1bdd7bc83667e2/recipes/myterminal-controls"; - sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/myterminal-controls"; - license = lib.licenses.free; - }; - }) {}; - n4js = callPackage ({ cypher-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "n4js"; - ename = "n4js"; - version = "20150713.1931"; - src = fetchFromGitHub { - owner = "tmtxt"; - repo = "n4js.el"; - rev = "3991ed8975151d5e8d568e952362df810f7ffab7"; - sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82157dfd975635c49ef75eae83e2bdf5fe4ae5c2/recipes/n4js"; - sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m"; - name = "recipe"; - }; - packageRequires = [ cypher-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/n4js"; - license = lib.licenses.free; - }; - }) {}; - name-this-color = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "name-this-color"; - ename = "name-this-color"; - version = "20151014.1330"; - src = fetchFromGitHub { - owner = "knl"; - repo = "name-this-color.el"; - rev = "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa"; - sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/name-this-color"; - sha256 = "15x3dp135p45gv4qn4ll3pd6zqi4glcpv6fzvjxnx0dcval9z4d8"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/name-this-color"; - license = lib.licenses.free; - }; - }) {}; - named-timer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "named-timer"; - ename = "named-timer"; - version = "20181120.1424"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "emacs-named-timer"; - rev = "670b81e3eddef2e7353a4eedc9553a85306445db"; - sha256 = "1inbizxlfgndwxsn8cwnpf4vm42rby7pkjqxyzl7ldq4qln7q8v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e8248bab40fddc97fe48dbd103bc2aa51eb287f/recipes/named-timer"; - sha256 = "1k2gkm193fh02vsj8h9kn0y1azispcz1b3ywwmb3cbif51l956g3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/named-timer"; - license = lib.licenses.free; - }; - }) {}; - nameframe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nameframe"; - ename = "nameframe"; - version = "20171106.1656"; - src = fetchFromGitHub { - owner = "john2x"; - repo = "nameframe"; - rev = "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8"; - sha256 = "1ivklkz3j722wg038bh3hmycp9j64zjrig49vl42mkj6d3ggwilg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd314150b3f8ce529a2ae39a71e03bebedfdc6b9/recipes/nameframe"; - sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nameframe"; - license = lib.licenses.free; - }; - }) {}; - nameframe-perspective = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nameframe - , perspective }: - melpaBuild { - pname = "nameframe-perspective"; - ename = "nameframe-perspective"; - version = "20170405.1819"; - src = fetchFromGitHub { - owner = "john2x"; - repo = "nameframe"; - rev = "d14186e99fa800d293e8e3072ba26f383c6624c6"; - sha256 = "0aibzwp39lxafag0vpa36xp8md7nhvgibj1nklzhga2d9nq9l4km"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2543af5579d37a3eb52e6fea41da315f5590331e/recipes/nameframe-perspective"; - sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x"; - name = "recipe"; - }; - packageRequires = [ nameframe perspective ]; - meta = { - homepage = "https://melpa.org/#/nameframe-perspective"; - license = lib.licenses.free; - }; - }) {}; - nameframe-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nameframe - , projectile }: - melpaBuild { - pname = "nameframe-projectile"; - ename = "nameframe-projectile"; - version = "20160927.2103"; - src = fetchFromGitHub { - owner = "john2x"; - repo = "nameframe"; - rev = "696223c61ca8e8f5cc557d2c198801a2f3c32ad3"; - sha256 = "14zrxv0x7p7rfrwdk02kzgvg8n594ij47yrr0c8q7b6vckhrz4gw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc17af8ff1694120d12a0cdbfccec78834810acd/recipes/nameframe-projectile"; - sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k"; - name = "recipe"; - }; - packageRequires = [ nameframe projectile ]; - meta = { - homepage = "https://melpa.org/#/nameframe-projectile"; - license = lib.licenses.free; - }; - }) {}; - nameless = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nameless"; - ename = "nameless"; - version = "20190429.502"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "Nameless"; - rev = "a3a1ce3ec0c5724bcbfe553d831bd4f6b3fe863a"; - sha256 = "0pxfn81bc8smik0qksfjbrdjkzy0cbjzbc3ik47zl2i9blmx5krv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e4ee4dae5f32a8d445dc0cc2455c1f7075c9b3d/recipes/nameless"; - sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nameless"; - license = lib.licenses.free; - }; - }) {}; - names = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "names"; - ename = "names"; - version = "20180321.455"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "names"; - rev = "d8baba5360e5253938a25d3e005455b6d2d86971"; - sha256 = "11wyha2q8y7bzqq3jrzix8n97ywvsibvddrahqcps1a1yqk4hzfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/names"; - sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/names"; - license = lib.licenses.free; - }; - }) {}; - namespaces = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "namespaces"; - ename = "namespaces"; - version = "20130326.1550"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "elisp-namespaces"; - rev = "3d02525d9b9a5ae6e7be3adefd880121436e6270"; - sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de404e9ad3d1e27af24e868e84218d872d5fc795/recipes/namespaces"; - sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/namespaces"; - license = lib.licenses.free; - }; - }) {}; - nand2tetris = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nand2tetris"; - ename = "nand2tetris"; - version = "20171201.1013"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "nand2tetris.el"; - rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01"; - sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris"; - sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nand2tetris"; - license = lib.licenses.free; - }; - }) {}; - nand2tetris-assembler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nand2tetris }: - melpaBuild { - pname = "nand2tetris-assembler"; - ename = "nand2tetris-assembler"; - version = "20171201.1013"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "nand2tetris.el"; - rev = "fe37ee41367ceff6f7d7a472a5f80cf1285e1e01"; - sha256 = "0g1gwayas7claa9cn3mv8dnlz46n78014qxb2ix25428dnsrridy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90421372b3f60b59762279ac805c61a984606d11/recipes/nand2tetris-assembler"; - sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy"; - name = "recipe"; - }; - packageRequires = [ nand2tetris ]; - meta = { - homepage = "https://melpa.org/#/nand2tetris-assembler"; - license = lib.licenses.free; - }; - }) {}; - nanowrimo = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nanowrimo"; - ename = "nanowrimo"; - version = "20151104.1828"; - src = fetchhg { - url = "https://bitbucket.com/gvol/nanowrimo.el"; - rev = "25e2ca20ed34"; - sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/nanowrimo"; - sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nanowrimo"; - license = lib.licenses.free; - }; - }) {}; - naquadah-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "naquadah-theme"; - ename = "naquadah-theme"; - version = "20190225.627"; - src = fetchFromGitHub { - owner = "jd"; - repo = "naquadah-theme"; - rev = "430c3b7bd51922cb616b3f60301f4e2604816ed8"; - sha256 = "0z2dn05xgbdfw6rwgsq31rm5dr098dk411qk83fbx2bkdxxfr60w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/naquadah-theme"; - sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/naquadah-theme"; - license = lib.licenses.free; - }; - }) {}; - narrow-reindent = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "narrow-reindent"; - ename = "narrow-reindent"; - version = "20150722.1206"; - src = fetchFromGitHub { - owner = "emallson"; - repo = "narrow-reindent.el"; - rev = "87466aac4dbeb79597124dd077bf5c704872fd3d"; - sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73c7f01a009dc7ac1b9da8ce41859695a97b7878/recipes/narrow-reindent"; - sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/narrow-reindent"; - license = lib.licenses.free; - }; - }) {}; - narrowed-page-navigation = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "narrowed-page-navigation"; - ename = "narrowed-page-navigation"; - version = "20150108.2119"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "narrowed-page-navigation"; - rev = "b215adbac4873f56fbab65772062f0f5be8058a1"; - sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e37e993fec280428f094b6c8ec418fe5ba8c6d49/recipes/narrowed-page-navigation"; - sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/narrowed-page-navigation"; - license = lib.licenses.free; - }; - }) {}; - nash-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nash-mode"; - ename = "nash-mode"; - version = "20160830.512"; - src = fetchFromGitHub { - owner = "tiago4orion"; - repo = "nash-mode.el"; - rev = "bb7ae728a16812a0ef506483b877f6221c92ca9c"; - sha256 = "1n4dxbd388ibghismc5d1nkvxwxdi4r415prsaa3qad8l9s4ivwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8bd080c81b163a6ddcfffc710316b9711935b4a/recipes/nash-mode"; - sha256 = "1d6nfxn7fc2qv78bf5277sdwfqflag2gihgic8vxrbjlpnizxn1p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nash-mode"; - license = lib.licenses.free; - }; - }) {}; - nasm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nasm-mode"; - ename = "nasm-mode"; - version = "20190409.2042"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "nasm-mode"; - rev = "65ca6546fc395711fac5b3b4299e76c2303d43a8"; - sha256 = "00rv6m004hcsn71hv3p3rxmrpwajdy02qpi2ymhxx2w3r49ba562"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e/recipes/nasm-mode"; - sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nasm-mode"; - license = lib.licenses.free; - }; - }) {}; - nav = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nav"; - ename = "nav"; - version = "20120507.7"; - src = fetchFromGitHub { - owner = "ijt"; - repo = "emacs-nav"; - rev = "c5eb234c063f435dbdcd1f8bdc46cfc68c973ebe"; - sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/nav"; - sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nav"; - license = lib.licenses.free; - }; - }) {}; - nav-flash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nav-flash"; - ename = "nav-flash"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "nav-flash"; - rev = "26b8c0d23e2d460f3ce06cb5df8a5e219c20da8b"; - sha256 = "0xnvl851h1g1d4h0qa218a4a23bpadbiwx6lgx94gvwcylnbl722"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/nav-flash"; - sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nav-flash"; - license = lib.licenses.free; - }; - }) {}; - navi-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , outorg - , outshine }: - melpaBuild { - pname = "navi-mode"; - ename = "navi-mode"; - version = "20190101.1723"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "navi"; - rev = "d3b66180e93e009c1bae352a7e74edf58f81487e"; - sha256 = "1dcvvkl6cm3f81l6abnzbwnbc7rymchp2dlswsmmykxyrxsabfdk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/navi-mode"; - sha256 = "0pc52iq8lng2g0vpnrhdfxmibc1dx9ksmrjg0303as1yv41fnc69"; - name = "recipe"; - }; - packageRequires = [ outorg outshine ]; - meta = { - homepage = "https://melpa.org/#/navi-mode"; - license = lib.licenses.free; - }; - }) {}; - navi2ch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "navi2ch"; - ename = "navi2ch"; - version = "20150329.1916"; - src = fetchFromGitHub { - owner = "naota"; - repo = "navi2ch"; - rev = "faebfd15184de9df6903eae436dafb52c38ee86e"; - sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36bea1eca58de15d6106cbd293d941d12ee3d21c/recipes/navi2ch"; - sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/navi2ch"; - license = lib.licenses.free; - }; - }) {}; - navorski = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi-term - , s }: - melpaBuild { - pname = "navorski"; - ename = "navorski"; - version = "20141203.1024"; - src = fetchFromGitHub { - owner = "roman"; - repo = "navorski.el"; - rev = "698c1c62da70164aebe9a7a5d034778fbc30ea5b"; - sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9246cef94029d2da2211345c076ed55deb91e8fa/recipes/navorski"; - sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; - name = "recipe"; - }; - packageRequires = [ dash multi-term s ]; - meta = { - homepage = "https://melpa.org/#/navorski"; - license = lib.licenses.free; - }; - }) {}; - ncl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ncl-mode"; - ename = "ncl-mode"; - version = "20180128.2303"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "ncl-mode"; - rev = "602292712a9e6b7e7c25155978999e77d06b7338"; - sha256 = "0sv44hn2ylick7ywpcbij8h2vxdj06zridjdmcfgpv5d090dbl9n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2eea3936b8a3a7546450d1d7399e0f86d855fefd/recipes/ncl-mode"; - sha256 = "1niy0w24q6q6j7s0l9fcaqai7zz2gg1qlk2s9sxb8j79jc41y47k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ncl-mode"; - license = lib.licenses.free; - }; - }) {}; - nclip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nclip"; - ename = "nclip"; - version = "20130617.1315"; - src = fetchFromGitHub { - owner = "maio"; - repo = "nclip.el"; - rev = "af88e38b1f04be02bf2e57affc662dbd0f828e67"; - sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f03f254afbe561e0a6dd6c287dcc137da05376cd/recipes/nclip"; - sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nclip"; - license = lib.licenses.free; - }; - }) {}; - neato-graph-bar = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "neato-graph-bar"; - ename = "neato-graph-bar"; - version = "20181130.849"; - src = fetchFromGitLab { - owner = "RobertCochran"; - repo = "neato-graph-bar"; - rev = "a7ae35afd67911e8924f36e646bce0d3e3c1bbe6"; - sha256 = "0sx2m2j00xhcb8l7fw595zsn9wjhcj4xb163rjqd3d1wjrk6fpn8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49c5bd4e1506a28ada9856e5f70e520890123d16/recipes/neato-graph-bar"; - sha256 = "1p4jmla75ny443cv7djk3nvl3ikchllnsivxx9yds14ynk4jxhgb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/neato-graph-bar"; - license = lib.licenses.free; - }; - }) {}; - nemerle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nemerle"; - ename = "nemerle"; - version = "20161029.1323"; - src = fetchFromGitHub { - owner = "rsdn"; - repo = "nemerle"; - rev = "8818c5af5598e16ea59189e1e3245f0a3d7c78f0"; - sha256 = "1ky63jyxdz1m6fcz3phi87mwc0ha6bn2fpg4lcdzp0w8cp8rc8ad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nemerle"; - sha256 = "1rbalq3s2inwz9cf6bfmnxgqd9ylba3crflfjs6b4mnp33z4swny"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nemerle"; - license = lib.licenses.free; - }; - }) {}; - neon-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "neon-mode"; - ename = "neon-mode"; - version = "20180406.456"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "neon-mode"; - rev = "99d15e46beaf1e7d71e39a00cce810df1f33229d"; - sha256 = "07vsi07m5q070fvkqhz32qa2y7dgnyi1kggairimbiwbn98bh642"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6b2a4898bf21413c4d9e6714af129bbb0a23e1a/recipes/neon-mode"; - sha256 = "0kgyc0rkxvvks5ykizfv82f2cx7ck17sk63plj7bld6khlcgv0y6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/neon-mode"; - license = lib.licenses.free; - }; - }) {}; - neotree = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "neotree"; - ename = "neotree"; - version = "20181121.1226"; - src = fetchFromGitHub { - owner = "jaypei"; - repo = "emacs-neotree"; - rev = "c2420a4b344a9337760981c451783f0ff9df8bbf"; - sha256 = "1wfx37kvsfwrql8zs2739nx7wb51m26vwlcz1jygbrb62n6wq14k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9caf2e12762d334563496d2c75fae6c74cfe5c1c/recipes/neotree"; - sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/neotree"; - license = lib.licenses.free; - }; - }) {}; - nerdtab = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nerdtab"; - ename = "nerdtab"; - version = "20180810.2039"; - src = fetchFromGitHub { - owner = "casouri"; - repo = "nerdtab"; - rev = "601d531fa3748db733fbdff157a0f1cdf8a66416"; - sha256 = "0l9pbgpp90rhji42zmcn8rlp6pnhkplnpn8w6xflw51iwhdkm1rb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59bc273db1d34997ea5d51cc6adc33ec785bc7f3/recipes/nerdtab"; - sha256 = "0q7dyqxq058195pgb1pjy27gcrr96096xcvvrapkarym7jsa2wy3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nerdtab"; - license = lib.licenses.free; - }; - }) {}; - netease-music = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "netease-music"; - ename = "netease-music"; - version = "20181028.554"; - src = fetchFromGitHub { - owner = "nicehiro"; - repo = "netease-music"; - rev = "31c31cff44d2889c0456ac11d5d38227f15f03b6"; - sha256 = "0fwph4vyp0w4ir2g9bvvmspsgwpl9wqpn43x36y8ihgb3n32wcw8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca3d4a8f8d9080e26a8fe2c38c0001d5cfc3c88c/recipes/netease-music"; - sha256 = "1vb81f1l45v6rny91rcqvnhzqh5ybdr0r39yrcaih8zhvamk685z"; - name = "recipe"; - }; - packageRequires = [ emacs names ]; - meta = { - homepage = "https://melpa.org/#/netease-music"; - license = lib.licenses.free; - }; - }) {}; - netherlands-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "netherlands-holidays"; - ename = "netherlands-holidays"; - version = "20150202.817"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "netherlands-holidays"; - rev = "26236178cdd650df9958bf5a086e184096559f00"; - sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abdbce47cb5c623696b5d6fcb3bef2d995d90195/recipes/netherlands-holidays"; - sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/netherlands-holidays"; - license = lib.licenses.free; - }; - }) {}; - netrunner = callPackage ({ company - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "netrunner"; - ename = "netrunner"; - version = "20160910.1632"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "netrunner"; - rev = "c64672992175c8c1073c0f56c2e471839db71a0f"; - sha256 = "1jj8qsq4xa93h3srskhw1l6igzf9jhwl8hfa73zvqr8dhqhp149k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a8b1d8c31383b6ec3788ad6c9adf0117190484c9/recipes/netrunner"; - sha256 = "1lk5acbv1fw7q9jwpk0l5hqb9wnscg2kj3qn6b4pwn9ggf8axkpv"; - name = "recipe"; - }; - packageRequires = [ company helm popup ]; - meta = { - homepage = "https://melpa.org/#/netrunner"; - license = lib.licenses.free; - }; - }) {}; - network-watch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "network-watch"; - ename = "network-watch"; - version = "20171123.346"; - src = fetchFromGitHub { - owner = "jamiguet"; - repo = "network-watch"; - rev = "d80b38dbec79f813c3949a8df8fb5f58d48b60ee"; - sha256 = "1c8qbigdj61dqzkf03y6fzywykqgim6zpfmva8631q5ygnhsrnp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e129679b3e2074af3e3de1b2ccce53a2fa5e9f65/recipes/network-watch"; - sha256 = "0y3vjrh9vlfg44c01ylkszisliwfy5zb8c5z3qrmf3yj4q096f42"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/network-watch"; - license = lib.licenses.free; - }; - }) {}; - never-comment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "never-comment"; - ename = "never-comment"; - version = "20140104.1407"; - src = fetchFromGitHub { - owner = "To1ne"; - repo = "never-comment"; - rev = "1996d003cad6bccf1475f7845d79efacbc7cd673"; - sha256 = "16q90lbgdh9iz3njakgip20mhc8dmd0zjsvk02zsc5q5n9c7rs8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3f8e712c10d63fea009951d7916fe376267cbe/recipes/never-comment"; - sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/never-comment"; - license = lib.licenses.free; - }; - }) {}; - newlisp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "newlisp-mode"; - ename = "newlisp-mode"; - version = "20160226.745"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "newlisp-mode"; - rev = "ac23be40c81a360988ab803d365f1510733f6db4"; - sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5c79c56bddfeb498d28f2575184434fbb93465d/recipes/newlisp-mode"; - sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/newlisp-mode"; - license = lib.licenses.free; - }; - }) {}; - nexus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nexus"; - ename = "nexus"; - version = "20140114.505"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "emacs-nexus"; - rev = "c46f499951b90839aa8683779fe43d8f01672a60"; - sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80d3665e9a31aa3098df456dbeb07043054e42f5/recipes/nexus"; - sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nexus"; - license = lib.licenses.free; - }; - }) {}; - ng2-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , typescript-mode }: - melpaBuild { - pname = "ng2-mode"; - ename = "ng2-mode"; - version = "20190524.1212"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "ng2-mode"; - rev = "52fdfe27247548b46f6171eebaf887a90dd67463"; - sha256 = "1g8za385clky1waba4ggi5bl2q4h26gz00lkzghn3zvxg5nbh47d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a856ecd8aca2d9232bb20fa7019de9e1dbbb19f4/recipes/ng2-mode"; - sha256 = "0sr4yh5nkgqb1qciq9mzzhr64350bi2wjm6z9d616nkjw72saz1r"; - name = "recipe"; - }; - packageRequires = [ typescript-mode ]; - meta = { - homepage = "https://melpa.org/#/ng2-mode"; - license = lib.licenses.free; - }; - }) {}; - nginx-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nginx-mode"; - ename = "nginx-mode"; - version = "20170611.2137"; - src = fetchFromGitHub { - owner = "ajc"; - repo = "nginx-mode"; - rev = "a2bab83c2eb233d57d76b236e7c141c2ccc97005"; - sha256 = "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/nginx-mode"; - sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nginx-mode"; - license = lib.licenses.free; - }; - }) {}; - niceify-info = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "niceify-info"; - ename = "niceify-info"; - version = "20160416.544"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "niceify-info.el"; - rev = "66b45916f1994e16ee023d29fa7cf8fec48078f1"; - sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2a923da7363d904eb848eb335736974e05dba1/recipes/niceify-info"; - sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/niceify-info"; - license = lib.licenses.free; - }; - }) {}; - niconama = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "niconama"; - ename = "niconama"; - version = "20170910.801"; - src = fetchFromGitHub { - owner = "NOBUTOKA"; - repo = "niconama.el"; - rev = "96e7553e50e6bf7b58aac50f52c9b0b8edb41c56"; - sha256 = "1gihjzwl6309vgav5z7jzi8jb7is8vx8lr23kb6h373gwws4bi10"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad8e7189e9c4c5d86cef268f45be0dda2d702805/recipes/niconama"; - sha256 = "1v4cvcxrl254jhfl1q5ld0gn4598fcvv0pfhilh2jy76w5acqx81"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/niconama"; - license = lib.licenses.free; - }; - }) {}; - night-owl-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "night-owl-theme"; - ename = "night-owl-theme"; - version = "20180630.1431"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "night-owl-emacs"; - rev = "deecfd6f47f0802ed760e0b5843fb3cc6f723fd1"; - sha256 = "1mr0dr5yba6nkaki914yiaxa7b1yqw1p0dm9a75mvkzwra6fcljh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77fe194a0e58bdb9789c85f3c50895eb886b4016/recipes/night-owl-theme"; - sha256 = "121jc59ry60h1ml1vxx4a6l4a6jcxk7fc4wz32fqv5pr03rzgs7h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/night-owl-theme"; - license = lib.licenses.free; - }; - }) {}; - nikola = callPackage ({ async - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nikola"; - ename = "nikola"; - version = "20170703.1321"; - src = fetchgit { - url = "https://git.daemons.it/drymer/nikola.el/"; - rev = "964715ac30943c9d6976999cad208dc60d09def0"; - sha256 = "0b0bpw9r2xi1avzq76pl58bbk1shb57d3bmzd9d53d07gj5c9399"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ef4f7c2f1c48edd7b4a6fdcda51908d216c631c/recipes/nikola"; - sha256 = "1d0a80y910klayb9jf0ahn5lj9l6xdhwcp2in3ridmqislavrcnv"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/nikola"; - license = lib.licenses.free; - }; - }) {}; - nim-mode = callPackage ({ commenter - , emacs - , epc - , fetchFromGitHub - , fetchurl - , flycheck-nimsuggest - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "nim-mode"; - ename = "nim-mode"; - version = "20190503.327"; - src = fetchFromGitHub { - owner = "nim-lang"; - repo = "nim-mode"; - rev = "f5143f7861c686b8ae13371084eef2d3be3d687e"; - sha256 = "0ndb9i6h425bniy8fynisdzvp4bjw61kxv9hlffck1hkb1sc94rm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ccb5f24b9d55c77eaa7952a9e6a2e0ed7be24/recipes/nim-mode"; - sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; - name = "recipe"; - }; - packageRequires = [ commenter emacs epc flycheck-nimsuggest let-alist ]; - meta = { - homepage = "https://melpa.org/#/nim-mode"; - license = lib.licenses.free; - }; - }) {}; - nimbus-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nimbus-theme"; - ename = "nimbus-theme"; - version = "20190513.356"; - src = fetchFromGitHub { - owner = "m-cat"; - repo = "nimbus-theme"; - rev = "ebf4b464912093f6554ab47d9e99b5f1bd537e2f"; - sha256 = "1al9l85mn0jz1l1sp4ws1xgmmzml8yfr60na3azss6fhhgrvc9dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc0e6b456b76e2379c64a86ad844362c58146dc6/recipes/nimbus-theme"; - sha256 = "1hy4rc1v5wg7n6nazdq09gadirb0qvn887mmdavwjnnac45xyi18"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nimbus-theme"; - license = lib.licenses.free; - }; - }) {}; - ninja-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ninja-mode"; - ename = "ninja-mode"; - version = "20181024.739"; - src = fetchFromGitHub { - owner = "ninja-build"; - repo = "ninja"; - rev = "d2045dedc39885e702176b2b5e05bc77024ae3aa"; - sha256 = "0jmvjpq7fabb0bjdd4dncb1vdfizya0rjs57d6wvgc8hbgfjsvj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/ninja-mode"; - sha256 = "1v6wy9qllbxl37fp9h47000lwp557qss6fdjb3a1f20msg8f70av"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ninja-mode"; - license = lib.licenses.free; - }; - }) {}; - nix-buffer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nix-buffer"; - ename = "nix-buffer"; - version = "20180212.718"; - src = fetchFromGitHub { - owner = "shlevy"; - repo = "nix-buffer"; - rev = "db57cda36e7477bdc7ef5a136357b971b1d4d099"; - sha256 = "0b01b4l9c70sad5r5py5hvg7s6k6idwwp0pv3rn8rj0fq5wlyixj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08b978724ff26b3ea7a134d307d888c80e2a92a9/recipes/nix-buffer"; - sha256 = "1fjkf88345v9l2v2mk8a057mw0p0rckf6rjf00y5464dyhh58vcd"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/nix-buffer"; - license = lib.licenses.free; - }; - }) {}; - nix-haskell-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild - , nix-mode }: - melpaBuild { - pname = "nix-haskell-mode"; - ename = "nix-haskell-mode"; - version = "20190525.1350"; - src = fetchFromGitHub { - owner = "matthewbauer"; - repo = "nix-haskell-mode"; - rev = "bb132b3c83552370e52bae57a126427cbc53cd09"; - sha256 = "0fiqs2hix38g2cr3rrzqj37x1qp4pw85lyqqrl9775iliyr1np2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aeb879e2e8b017d3e1ccdc8d19f17d09b2ad5f1b/recipes/nix-haskell-mode"; - sha256 = "1rygqmq01p27gbda6hgnzisng7xqf63x462a3x31ym67ivxsyqz3"; - name = "recipe"; - }; - packageRequires = [ emacs haskell-mode nix-mode ]; - meta = { - homepage = "https://melpa.org/#/nix-haskell-mode"; - license = lib.licenses.free; - }; - }) {}; - nix-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nix-mode"; - ename = "nix-mode"; - version = "20190119.125"; - src = fetchFromGitHub { - owner = "NixOS"; - repo = "nix-mode"; - rev = "1e53bed4d47c526c71113569f592c82845a17784"; - sha256 = "172s5lxlns633gbi6sq6iws269chalh5k501n3wffp5i3b2xzdyq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1870d786dbfac3b14386c8030e06f2d13ab9da6/recipes/nix-mode"; - sha256 = "10f3ly4860lkxzykw4fbvhn3i0c2hgj77jfjbhlk2c1jz9x4yyy5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nix-mode"; - license = lib.licenses.free; - }; - }) {}; - nix-sandbox = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "nix-sandbox"; - ename = "nix-sandbox"; - version = "20171004.1006"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "7007363e773a419203a69798fb0e0731b2eb0f73"; - sha256 = "00hv8fhyahkdh1vfy1qkahqvsik6d81c7mqh4gjiqxrmb2l1vbcb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66be755a6566e8c0cfb5aafa50de29b434023c7a/recipes/nix-sandbox"; - sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/nix-sandbox"; - license = lib.licenses.free; - }; - }) {}; - nix-update = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nix-update"; - ename = "nix-update"; - version = "20190124.1135"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "nix-update-el"; - rev = "fc6c39c2da3fcfa62f4796816c084a6389c8b6e7"; - sha256 = "01cpl4w49m5dfkx7l8g1q183s341iz6vkjv2q4fbx93avd7msjgi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c59e828d4cad3d75344b34b9666349250e53b6ea/recipes/nix-update"; - sha256 = "0if83pvjvr0347301j553bsxrrxniyykq20457cdkzlvva52c0b3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nix-update"; - license = lib.licenses.free; - }; - }) {}; - nixos-options = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nixos-options"; - ename = "nixos-options"; - version = "20160209.1041"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "045825c2e1cf0a4fb0a472e72c1dae8f55202cef"; - sha256 = "12zwaiyr1n37zwrmyr3m8kn2302abyagj5dzmbr1wvbf3ihkxmxd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/nixos-options"; - sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nixos-options"; - license = lib.licenses.free; - }; - }) {}; - nlinum-hl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nlinum }: - melpaBuild { - pname = "nlinum-hl"; - ename = "nlinum-hl"; - version = "20190301.1317"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-nlinum-hl"; - rev = "dc6b365a58e06c7d637a76a31c71a40b20da8b56"; - sha256 = "1fvvyc77iggil9mzy8hd4vx8xw96bkfx6pmlb9ami428qp8r45g7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b13a886535a5c33fe389a6b616988b7377249625/recipes/nlinum-hl"; - sha256 = "17lcp1ira7yhch9npg9sf3npwg06yh9zyhg0lnb22xg09lbndj0x"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs nlinum ]; - meta = { - homepage = "https://melpa.org/#/nlinum-hl"; - license = lib.licenses.free; - }; - }) {}; - nlinum-relative = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nlinum }: - melpaBuild { - pname = "nlinum-relative"; - ename = "nlinum-relative"; - version = "20160526.8"; - src = fetchFromGitHub { - owner = "CodeFalling"; - repo = "nlinum-relative"; - rev = "5b9950c97ba79a6f0683e38b13da23f39e01031c"; - sha256 = "0h00ghr5sipayfxz7ykzy7bg1p1vkbwxl5xch3x0h8j2cp1dqc3d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb418a464b112f9bb1bbd050e9602b60c0fcce1c/recipes/nlinum-relative"; - sha256 = "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4"; - name = "recipe"; - }; - packageRequires = [ emacs nlinum ]; - meta = { - homepage = "https://melpa.org/#/nlinum-relative"; - license = lib.licenses.free; - }; - }) {}; - nm = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , notmuch - , peg }: - melpaBuild { - pname = "nm"; - ename = "nm"; - version = "20151110.1110"; - src = fetchFromGitHub { - owner = "tjim"; - repo = "nevermore"; - rev = "5a3f29174b3a4b2b2e7a700a862f3b16a942687e"; - sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cdad6565e83dd79db538d3b6a45e932864246da2/recipes/nm"; - sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw"; - name = "recipe"; - }; - packageRequires = [ company emacs notmuch peg ]; - meta = { - homepage = "https://melpa.org/#/nm"; - license = lib.licenses.free; - }; - }) {}; - nnir-est = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nnir-est"; - ename = "nnir-est"; - version = "20180710.1403"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "nnir-est"; - rev = "6d0d5c8e33f4e4ccbc22350324c0990d2676fb5a"; - sha256 = "1xmv2mddhvcvnyndpyv42gl8zn5dx7lvd03pl43bjp38srn4aj6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/nnir-est"; - sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nnir-est"; - license = lib.licenses.free; - }; - }) {}; - no-emoji = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "no-emoji"; - ename = "no-emoji"; - version = "20180515.1137"; - src = fetchFromGitHub { - owner = "ecraven"; - repo = "no-emoji"; - rev = "ebceeab50dbfe4d60235180a57633745dbc18c77"; - sha256 = "19wni50073dwspppx0xlryagg2fgg0jiz5kqf1b1wmaq8xn5b8r9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af6b04c1f95468254f2cf361964df9fd25d23586/recipes/no-emoji"; - sha256 = "1lr6bzjxwn3yzw0mq36h2k2h8bqb1ngin42swhv022yx6a022zn2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/no-emoji"; - license = lib.licenses.free; - }; - }) {}; - no-littering = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "no-littering"; - ename = "no-littering"; - version = "20190409.454"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "no-littering"; - rev = "99ae007ead688689b5b25a9482f98ec67663bb61"; - sha256 = "0sg4qh9a6k1m24qamsf7ldpghjcawbdgh114gy08jnw478nf05kv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering"; - sha256 = "15w784ir48v8biiaar8ip19s9y3wn5831m815kcw02mgzy3bfjmh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/no-littering"; - license = lib.licenses.free; - }; - }) {}; - noaa = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "noaa"; - ename = "noaa"; - version = "20190202.834"; - src = fetchFromGitHub { - owner = "thomp"; - repo = "noaa"; - rev = "532eb14328027ee29e124768feec23a8ef7ee798"; - sha256 = "1qc9im01fw7k9907a9d2a87hndyyn3sk1kw31cylsvrzsb7ss9f9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1272203f85375e50d951451bd5fd3baffd57bbfa/recipes/noaa"; - sha256 = "11hzpmgapmf6dc5imvj5jvzcy7hfddyz74lqmrq8128i72q1sj0v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs request ]; - meta = { - homepage = "https://melpa.org/#/noaa"; - license = lib.licenses.free; - }; - }) {}; - noccur = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noccur"; - ename = "noccur"; - version = "20150514.1420"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "noccur.el"; - rev = "ff2a76883c43b283a08680733ec3ad403a1b1827"; - sha256 = "0y18hpwgzvm1i9yb3b6fxpbh3fmzkmyldq4as65i5s8n66i7mr6j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41f15b8298390310e95cbe137ea1516c0be10b94/recipes/noccur"; - sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/noccur"; - license = lib.licenses.free; - }; - }) {}; - nocomments-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nocomments-mode"; - ename = "nocomments-mode"; - version = "20170213.1237"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "nocomments-mode"; - rev = "5a41a20cc44dfe4a9ea584354ed6dbc15dd92f46"; - sha256 = "0jwwnypa0lx812p3dqqn9c05g27qavnvr23pzphydx9i15nz80g0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d88074771b581d21f48b707f93949f7224a28633/recipes/nocomments-mode"; - sha256 = "1qhalhs29fb3kv5ckk8ny9fbqn2c4r4lwnc566j3bb1caqf2j7g0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nocomments-mode"; - license = lib.licenses.free; - }; - }) {}; - noctilux-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noctilux-theme"; - ename = "noctilux-theme"; - version = "20161113.642"; - src = fetchFromGitHub { - owner = "sjrmanning"; - repo = "noctilux-theme"; - rev = "a3265a1be7f4d73f44acce6d968ca6f7add1f2ca"; - sha256 = "12xx0v8d97kjvlkj0ii78vxxvzgmcfc4hzv4yvxymg50rsy0zzqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0a18df34c105da8c5710643cd8027402bb07c95/recipes/noctilux-theme"; - sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/noctilux-theme"; - license = lib.licenses.free; - }; - }) {}; - node-resolver = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "node-resolver"; - ename = "node-resolver"; - version = "20140930.1023"; - src = fetchFromGitHub { - owner = "meandavejustice"; - repo = "node-resolver.el"; - rev = "ef9d0486907a746a80b02ffc6208a09c168a9f7c"; - sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60537705dc922bd50220d378a2992cf36464eb0c/recipes/node-resolver"; - sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/node-resolver"; - license = lib.licenses.free; - }; - }) {}; - nodejs-repl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nodejs-repl"; - ename = "nodejs-repl"; - version = "20181024.954"; - src = fetchFromGitHub { - owner = "abicky"; - repo = "nodejs-repl.el"; - rev = "d518947584c8041a36ffa103e2d487d852cd12ee"; - sha256 = "05ccv87rnw7fss3lib8m9sywjrj6n92fnd7mmhmjh27g2klqc83z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl"; - sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nodejs-repl"; - license = lib.licenses.free; - }; - }) {}; - nodemcu-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nodemcu-mode"; - ename = "nodemcu-mode"; - version = "20180501.1525"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "nodemcu-mode"; - rev = "8effd9f3df40b6b92a2f05e4d54750b624afc4a7"; - sha256 = "1s19sshsm4cdx8kj5prmsq8ryz4843xcqmdayvlfl99jxsp9j4pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a414f8b30954a50d74e4ae42abcf436cfca8d2b4/recipes/nodemcu-mode"; - sha256 = "0xx5dys8vifgaf3hb4q762xhhn1jybc4xwajqj98iban4nrakb3a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nodemcu-mode"; - license = lib.licenses.free; - }; - }) {}; - nodenv = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nodenv"; - ename = "nodenv"; - version = "20181023.843"; - src = fetchFromGitHub { - owner = "twlz0ne"; - repo = "nodenv.el"; - rev = "832fb0cbac4513edde7ebd6d1ab971c54313be36"; - sha256 = "0hn29y8gv9y9646yacnhirx2iz1z7h0p3wrzjn5axbhw0y382qhq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/272df58a1112c8c082c740d54bd37469af513d4a/recipes/nodenv"; - sha256 = "15wqlpswp4m19widnls21rm5n0ijfhmw3vyx0ch5k2bhi4a5rip6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nodenv"; - license = lib.licenses.free; - }; - }) {}; - noflet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noflet"; - ename = "noflet"; - version = "20141102.654"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-noflet"; - rev = "7ae84dc3257637af7334101456dafe1759c6b68a"; - sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df33a7230e0e4a67ce75e5cce6a436e2a0d205e8/recipes/noflet"; - sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/noflet"; - license = lib.licenses.free; - }; - }) {}; - nofrils-acme-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nofrils-acme-theme"; - ename = "nofrils-acme-theme"; - version = "20180620.548"; - src = fetchFromGitLab { - owner = "esessoms"; - repo = "nofrils-theme"; - rev = "98ad7bfaff1d85b33dc162645670285b067c6f92"; - sha256 = "0f8s7mhcs1ym4an8d4dabfvhin30xs2d0c5gv875hsgz8p3asgxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c59ddaa5e41d3c25c446b1ed1905d7f88b448e0a/recipes/nofrils-acme-theme"; - sha256 = "01xqsn8whczv34lfa9vbm5rpvrvsrlpav8pzng10jvax1a9wdp3a"; - name = "recipe"; - }; - 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"; - ename = "nord-theme"; - version = "20190508.2352"; - src = fetchFromGitHub { - owner = "arcticicestudio"; - repo = "nord-emacs"; - rev = "9ed7b9c2d1bb68ae86d06f97d215d2883e4ff0d2"; - sha256 = "1i5z50xdn1qbfvy394j35d5bahsay56ngj2nxl4vlf88pdh0w0a8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31cb60069825abe3998c8b43bc9177b39a7f3659/recipes/nord-theme"; - sha256 = "0p4fqg4i2ayimd8kxsqnb1xkapzhhxf7szxi1skva4dcym3z67cc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nord-theme"; - license = lib.licenses.free; - }; - }) {}; - nordless-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nordless-theme"; - ename = "nordless-theme"; - version = "20180613.50"; - src = fetchFromGitHub { - owner = "lthms"; - repo = "nordless-theme.el"; - rev = "e4da9d2465a123ea28e33a507cc7ab69692cde86"; - sha256 = "172ww1amlvd17f9qr69a17ksk0i8zpfma0arkygmf8n951zkqv8d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3de9da6cb8c1a75ff1d41a69e156c21be00713b6/recipes/nordless-theme"; - sha256 = "1ylvqh5hf7asdx2mn57fsaa7ncfgfzq1ss50k9665k32zvv3zksx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nordless-theme"; - license = lib.licenses.free; - }; - }) {}; - northcode-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "northcode-theme"; - ename = "northcode-theme"; - version = "20180423.949"; - src = fetchFromGitHub { - owner = "Northcode"; - repo = "northcode-theme.el"; - rev = "4d3750461ba25ec45321318b5f1af4e8fdf16147"; - sha256 = "1yin5i38jdp47k6b7mc0jkv9ihl8nk5rpqin4qmwbhb871zxn7ma"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25dcd4dd8189ad0fbf6c31874daa618bf1957863/recipes/northcode-theme"; - sha256 = "0x4dryx174kcjzm11z9q5qqlzr1c9zr0p32zwgbvgypgnvjy6i4g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/northcode-theme"; - license = lib.licenses.free; - }; - }) {}; - nose = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nose"; - ename = "nose"; - version = "20140520.948"; - src = fetchhg { - url = "https://bitbucket.com/durin42/nosemacs"; - rev = "194d7789bf79"; - sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nose"; - sha256 = "1xdqsxq06x2m9rcfn1qh89g0mz1rvzl246d3sfmciwcyl932x682"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nose"; - license = lib.licenses.free; - }; - }) {}; - notmuch = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "notmuch"; - ename = "notmuch"; - version = "20190525.902"; - src = fetchgit { - url = "https://git.notmuchmail.org/git/notmuch"; - rev = "9300defd64acf68b8e6fa6fbd89b8050168bb63d"; - sha256 = "09myljmmrcr4f6a93zwi8k39nndw2fmpj3g2jk2bl3ddql8x0gvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d05fbde3aabfec4efdd19a33fd2b1297905acb5a/recipes/notmuch"; - sha256 = "0pznpl0aqybdg4b2qypq6k4jac64sssqhgz6rvk9g2nkqhkds1x7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/notmuch"; - license = lib.licenses.free; - }; - }) {}; - notmuch-labeler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , notmuch }: - melpaBuild { - pname = "notmuch-labeler"; - ename = "notmuch-labeler"; - version = "20131230.919"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "notmuch-labeler"; - rev = "d65d1129555d368243df4770ecc1e7ccb88efc58"; - sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e9940e66bbf70ec868dbdaaeaa1fbd4f076a2e1/recipes/notmuch-labeler"; - sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; - name = "recipe"; - }; - packageRequires = [ notmuch ]; - meta = { - homepage = "https://melpa.org/#/notmuch-labeler"; - license = lib.licenses.free; - }; - }) {}; - nov = callPackage ({ dash - , emacs - , esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nov"; - ename = "nov"; - version = "20190115.1054"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "nov.el"; - rev = "b720d91ca3b0a0fcb5387428716ea57f652c75b3"; - sha256 = "0yp8i4gnw4h2557793pjvxqwn8cjrzz0z5y21w8r8ffmw24x51if"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf543955ba2d5d0074fa2a5ba176f9415f6e006d/recipes/nov"; - sha256 = "0hlcncpdazi4rn5yxd0zq85v7gpjhw7a6dl2i99zf4ymsan97lhq"; - name = "recipe"; - }; - packageRequires = [ dash emacs esxml ]; - meta = { - homepage = "https://melpa.org/#/nov"; - license = lib.licenses.free; - }; - }) {}; - nova-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nova-theme"; - ename = "nova-theme"; - version = "20190520.932"; - src = fetchFromGitHub { - owner = "muirmanders"; - repo = "emacs-nova-theme"; - rev = "7f7d6568f9d0d49600b03b74ad0f8ae3121fab8c"; - sha256 = "1jvrcdknirr4f85r75waajkp00bm51573a3vbydsvlkjm27698hk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16457166c17fb1cc074a34c61e52ebc285c0eacc/recipes/nova-theme"; - sha256 = "1d2271qd5z48x71pxjg4lngsc5ddw5iqh496p04f63sm08cgaky4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nova-theme"; - license = lib.licenses.free; - }; - }) {}; - noxml-fold = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noxml-fold"; - ename = "noxml-fold"; - version = "20170823.657"; - src = fetchFromGitHub { - owner = "paddymcall"; - repo = "noXML-fold"; - rev = "46c7f6a008672213238a9f8d7a416ce80916aa62"; - sha256 = "0axr7n4wdrd009lz6sg4y9ggf4f5svgrsclwhs0hyn2ld34rvrax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13d2af88b292293cb5ab50819c63acfe936630c8/recipes/noxml-fold"; - sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/noxml-fold"; - license = lib.licenses.free; - }; - }) {}; - npm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "npm-mode"; - ename = "npm-mode"; - version = "20180720.1001"; - src = fetchFromGitHub { - owner = "mojochao"; - repo = "npm-mode"; - rev = "4f4b9fc2c07290ae87f65179df95be5221e76bf2"; - sha256 = "01dnyra7j72v7alalx5gk4mkq6gddvr66facpsq1dpvi2h4d8cky"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22dd6b2f8a94f56a61f4b70bd7e44b1bcf96eb18/recipes/npm-mode"; - sha256 = "1aym4jfr6im6hdc5d7995q6myhgig286fk9hpaxdf418h1s17rqr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/npm-mode"; - license = lib.licenses.free; - }; - }) {}; - nrepl-eval-sexp-fu = callPackage ({ fetchFromGitHub - , fetchurl - , highlight - , lib - , melpaBuild - , smartparens - , thingatpt ? null }: - melpaBuild { - pname = "nrepl-eval-sexp-fu"; - ename = "nrepl-eval-sexp-fu"; - version = "20140311.341"; - src = fetchFromGitHub { - owner = "samaaron"; - repo = "nrepl-eval-sexp-fu"; - rev = "3a24b7d4bca13e87c987a4ddd212da914ff59191"; - sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nrepl-eval-sexp-fu"; - sha256 = "1mz7a6aa4x23khlfqhhn9ycs3yxg44h5cckg4v4rc6lbif1jzzf8"; - name = "recipe"; - }; - packageRequires = [ highlight smartparens thingatpt ]; - meta = { - homepage = "https://melpa.org/#/nrepl-eval-sexp-fu"; - license = lib.licenses.free; - }; - }) {}; - nrepl-sync = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nrepl-sync"; - ename = "nrepl-sync"; - version = "20140807.854"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "lein-sync"; - rev = "9506238562c2e0c0df744e0d81edff4c74322a7d"; - sha256 = "1si5pfczk3iypdx2ydhirznx2hvp6r7sq2hy64gn3mn4r68svlfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2059ab6f2a3adc5af4f0876546e344e806e22ee5/recipes/nrepl-sync"; - sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; - name = "recipe"; - }; - packageRequires = [ cider ]; - meta = { - homepage = "https://melpa.org/#/nrepl-sync"; - license = lib.licenses.free; - }; - }) {}; - ns-auto-titlebar = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ns-auto-titlebar"; - ename = "ns-auto-titlebar"; - version = "20181022.1454"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ns-auto-titlebar"; - rev = "b16092e8058af63ad2bc222f166b0aa3cb66bf9d"; - sha256 = "0m1ih8ca4702zrkhl3zdvwbci96wyjlxhpfx95w372k25rca87dq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d22ebb5ef16df0c56d6031cb1c7f312dca514482/recipes/ns-auto-titlebar"; - sha256 = "1wk4y2jwl65z18cv57m8zkcg31wp9by74z2zvccxzl7mwlhy7kqg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ns-auto-titlebar"; - license = lib.licenses.free; - }; - }) {}; - nsis-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nsis-mode"; - ename = "nsis-mode"; - version = "20180718.2008"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "nsis-mode"; - rev = "a49f5dbc8a5e60d3bbb803582efb5468bbbe7507"; - sha256 = "05c8dhys08xmd53ya0633c1lhki5mraz0hqizwz2s5511anj417d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9b169a80c7afdeb0c6e17cd289114b5d3d97266/recipes/nsis-mode"; - sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nsis-mode"; - license = lib.licenses.free; - }; - }) {}; - nswbuff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nswbuff"; - ename = "nswbuff"; - version = "20190320.40"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "nswbuff"; - rev = "362da7f3687e2eb5bb11667347de85f4a9d002bc"; - sha256 = "0l2xfz8z5qd4hz3kv6zn7h6qq3narkilri8a071y1n8j31jps4ma"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0f7e952f3fbec691df51d19224f701e6530f16e/recipes/nswbuff"; - sha256 = "1fq2dp9jlhfl9rqw6ldh0xnm0hx9ama2wf87s51qgqxxdn9ngk8x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nswbuff"; - license = lib.licenses.free; - }; - }) {}; - nu-mode = callPackage ({ ace-window - , avy - , fetchFromGitHub - , fetchurl - , lib - , lv - , melpaBuild - , transpose-frame - , undo-tree - , which-key }: - melpaBuild { - pname = "nu-mode"; - ename = "nu-mode"; - version = "20190404.1332"; - src = fetchFromGitHub { - owner = "pyluyten"; - repo = "emacs-nu"; - rev = "d5fb4d26d1b0bb383ea2827cc5af5dfb2a269d2b"; - sha256 = "0nd7ypin9kl784iqffznld6kknghdjywqnjw5nwinfgkwhcrjpdd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/230d5f8fdd965a24b8ff3cc94acf378d04815fca/recipes/nu-mode"; - sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn"; - name = "recipe"; - }; - packageRequires = [ - ace-window - avy - lv - transpose-frame - undo-tree - which-key - ]; - meta = { - homepage = "https://melpa.org/#/nu-mode"; - license = lib.licenses.free; - }; - }) {}; - nubox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nubox"; - ename = "nubox"; - version = "20170619.210"; - src = fetchFromGitHub { - owner = "martijnat"; - repo = "nubox"; - rev = "84aa965f0cb4bde293237e4cc586643d1f662f83"; - sha256 = "0i1x0sd61c8k4q9ijgxyz21gvj1gah273990qfjzj9a25r4hzvlj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/725948568b8a067762b63475bc400f089f478a36/recipes/nubox"; - sha256 = "0snzfsd765i363ykdhqkn65lqy97c79d20lalszrwcl2snm96n1f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nubox"; - license = lib.licenses.free; - }; - }) {}; - number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "number"; - ename = "number"; - version = "20170901.612"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "number"; - rev = "bbc278d34dbcca83e70e3be855ec98b23debfb99"; - sha256 = "0a1r352zs58mdwkq58561qxrz3m5rwk3xqcaaqhkxc0h9jqs4a9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49d56b297ab729695249143dd65d3c67543cfcc6/recipes/number"; - sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/number"; - license = lib.licenses.free; - }; - }) {}; - number-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "number-lock"; - ename = "number-lock"; - version = "20160829.1900"; - src = fetchFromGitHub { - owner = "Liu233w"; - repo = "number-lock.el"; - rev = "1ac1b1a269128ddac820df7d45a8d0c703e9c05c"; - sha256 = "11pqm2f8bx3m9mnvpjbvq8vd8sym7zpq7n0y4lbkybiyxswjrv5q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c107adabe2e4c5b35ebb6b21db076cdea0e9c24/recipes/number-lock"; - sha256 = "13xqn4bcjm01zl0rgbwzad58x35230lm2qiipbyqkh2ma0a9pqn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/number-lock"; - license = lib.licenses.free; - }; - }) {}; - numbers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "numbers"; - ename = "numbers"; - version = "20170802.434"; - src = fetchFromGitHub { - owner = "davep"; - repo = "numbers.el"; - rev = "dd02508b788a13b7d4dbcc4923fa23134b783ab3"; - sha256 = "0bgha85j5f9lpk1h3siiw28v5sy6z52n7d7xi3m301r9hdlccc39"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c77353d3a2b0d360bb28e528ef2707227081c72/recipes/numbers"; - sha256 = "02cx19fi34yvc0icajnwrmb8lr2g8y08kis08v9xxalfxz06kb3h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/numbers"; - license = lib.licenses.free; - }; - }) {}; - nummm-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nummm-mode"; - ename = "nummm-mode"; - version = "20131117.214"; - src = fetchFromGitHub { - owner = "agpchil"; - repo = "nummm-mode"; - rev = "73b1aa8643d86197c82cd28acdaefcb48a1e0abe"; - sha256 = "1022dchkh0hbhsqds6zncfayjgq5zg2x2r5gklr0nyx8j2qd8g7j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nummm-mode"; - sha256 = "1gdq00f3x0rxxj917x9381v2x7cl9yabj7559zr5vj1clwza8jn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nummm-mode"; - license = lib.licenses.free; - }; - }) {}; - nv-delete-back = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nv-delete-back"; - ename = "nv-delete-back"; - version = "20170224.449"; - src = fetchFromGitLab { - owner = "nivaca"; - repo = "nv-delete-back"; - rev = "44d506105989873dc1725e0cfc675925b35c9c98"; - sha256 = "0lgz0sknnrxmc7iy4lniday1nwpz4q841c3w2hm72aiwn5z21h22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7542fa39060b507a6f455225367e45e89d3e2f92/recipes/nv-delete-back"; - sha256 = "13izzym4alda05k7ra67lyjx6dx23fjqz2dqk7mrzhik9x552hsr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nv-delete-back"; - license = lib.licenses.free; - }; - }) {}; - nvm = callPackage ({ dash - , dash-functional - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "nvm"; - ename = "nvm"; - version = "20190601.113"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "nvm.el"; - rev = "4aeb672d543ce2372dcca289719092aa4c38a6cd"; - sha256 = "0phillz5dxpvhsi9rlah4988ksx2rcgagfw5iqf5lmfn7kp4604p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nvm"; - sha256 = "0md1ybc2r2fxykwk21acjhdzy2kw326bdwa1d15c6f48lknzvg4w"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional f s ]; - meta = { - homepage = "https://melpa.org/#/nvm"; - license = lib.licenses.free; - }; - }) {}; - nyan-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nyan-mode"; - ename = "nyan-mode"; - version = "20170423.40"; - src = fetchFromGitHub { - owner = "TeMPOraL"; - repo = "nyan-mode"; - rev = "4195cd368aca8f05a71cbff4e60cfa9dde10319a"; - sha256 = "1bnfxw6cnhsqill3n32j9bc6adl437ia9ivbwvwjpz1ay928yxm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d8c3000df5f2ee2493a54dee6f9b65008add753/recipes/nyan-mode"; - sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nyan-mode"; - license = lib.licenses.free; - }; - }) {}; - nyx-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nyx-theme"; - ename = "nyx-theme"; - version = "20170910.607"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "emacs-nyx-theme"; - rev = "afe2b8c3b5421b4c292d182dcf77079b278e93d8"; - sha256 = "1qamw4x3yrygy8qkicy6smxksnsfkkp76hlnivswh7dm3fr23v6m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/nyx-theme"; - sha256 = "11629h7jfnq2sahwiiqx01qpv3xb0iqvcqm5k9w1zhg01jhjfmw2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nyx-theme"; - license = lib.licenses.free; - }; - }) {}; - nz-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nz-holidays"; - ename = "nz-holidays"; - version = "20190415.3"; - src = fetchFromGitHub { - owner = "techquila"; - repo = "nz-holidays"; - rev = "afc875cf40789fa45a4a811685b0a7c4f239392f"; - sha256 = "1bk00pv7ylbrmf42papp6z2bhnp5fbnd4wy3gdzd18j7f2g0196v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4dfbe628247fc73d9a0963b7e9b92b07854817c9/recipes/nz-holidays"; - sha256 = "0h6dnwpinm3bxir1l69ggf483gjfglpi46z3ffiac3yl3h00j5m6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nz-holidays"; - license = lib.licenses.free; - }; - }) {}; - o-blog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "o-blog"; - ename = "o-blog"; - version = "20151202.1539"; - src = fetchFromGitHub { - owner = "renard"; - repo = "o-blog"; - rev = "e466c59478feddc8126c43c1b98550474af484c0"; - sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f24e70260f46445b119817bc1326f29b367c4b/recipes/o-blog"; - sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/o-blog"; - license = lib.licenses.free; - }; - }) {}; - oauth = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "oauth"; - ename = "oauth"; - version = "20130127.1751"; - src = fetchFromGitHub { - owner = "psanford"; - repo = "emacs-oauth"; - rev = "ee4744ad76a1560281b0c4944575a3bd598c6458"; - sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/oauth"; - sha256 = "0vgxvscb9cr07g3lzpi269kamgzhpac6dir1rlr4qd2wdv0nifl9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/oauth"; - license = lib.licenses.free; - }; - }) {}; - ob-ammonite = callPackage ({ ammonite-term-repl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , xterm-color }: - melpaBuild { - pname = "ob-ammonite"; - ename = "ob-ammonite"; - version = "20190604.651"; - src = fetchFromGitHub { - owner = "zwild"; - repo = "ob-ammonite"; - rev = "e9d431acc014fb064d77fab0201c626126e7922c"; - sha256 = "1cmpczl9p8ig1ql85kqhshzd64rc8xjpq0qgx0jq9yk4syaayk4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/508358506a6994baf120be2acba86762f5727c6c/recipes/ob-ammonite"; - sha256 = "0wr7p3sfn9m8vz87lzas943zcm8vkzgfki9pbs3rh3fxvdc197lb"; - name = "recipe"; - }; - packageRequires = [ ammonite-term-repl s xterm-color ]; - meta = { - homepage = "https://melpa.org/#/ob-ammonite"; - license = lib.licenses.free; - }; - }) {}; - ob-applescript = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-applescript"; - ename = "ob-applescript"; - version = "20160914.1327"; - src = fetchFromGitHub { - owner = "stig"; - repo = "ob-applescript.el"; - rev = "b5c2966b3bab37a3b1f4e9c663d11da8ef9956ec"; - sha256 = "0asab7zppxj9dm20f8i273lr8z19lcrjri7v9gmw1jjn0cshfgjm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23b075774be913539c3f057dcb7f24fbc05c37a4/recipes/ob-applescript"; - sha256 = "1gk8cgscj9wbl5k8ahh1a61p271xpk5vk2w64a8y3njnwrwxm9jc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-applescript"; - license = lib.licenses.free; - }; - }) {}; - ob-async = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-async"; - ename = "ob-async"; - version = "20190219.2310"; - src = fetchFromGitHub { - owner = "astahlman"; - repo = "ob-async"; - rev = "73e57a9297849bb50336799ae7858777b6b386ee"; - sha256 = "1g2agc6qwklg5cxfgm28fc5swlw54sn66lqk7q0hjn1gdq9rdqdm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ob-async"; - sha256 = "0k7kv71nnibp53lav774c61w9pzhq8qvch9rvpyyrwbyd67ninl8"; - name = "recipe"; - }; - packageRequires = [ async dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/ob-async"; - license = lib.licenses.free; - }; - }) {}; - ob-axiom = callPackage ({ axiom-environment - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-axiom"; - ename = "ob-axiom"; - version = "20190223.431"; - src = fetchgit { - url = "https://bitbucket.org/pdo/axiom-environment"; - rev = "3fde83f160e785fe4647ddb849df3cc64b23d27c"; - sha256 = "0n102k1zch706kls2s196fcc84pjsc0mnhasb5vi27bhk229x8q5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/ob-axiom"; - sha256 = "17qh4hsr3aw4d0p81px3qcbax6dv2zjhyn5n9pxqwcp2skm5vff5"; - name = "recipe"; - }; - packageRequires = [ axiom-environment emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-axiom"; - license = lib.licenses.free; - }; - }) {}; - ob-blockdiag = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-blockdiag"; - ename = "ob-blockdiag"; - version = "20170727.1801"; - src = fetchFromGitHub { - owner = "corpix"; - repo = "ob-blockdiag.el"; - rev = "634fcf64a4ae735afe7001d865b03f5d71e23046"; - sha256 = "0xr3bv4wxz13b1grfyl2qnrszzab3n9735za837nf4lxh527ksaj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/261b77a3fd07644d1c250b16857de70cc1bbf478/recipes/ob-blockdiag"; - sha256 = "1lmawbgrlp6qd7p664jcl98y1xd2yqw9np6j52bh9i6s3cz6628g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-blockdiag"; - license = lib.licenses.free; - }; - }) {}; - ob-browser = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-browser"; - ename = "ob-browser"; - version = "20170720.1218"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "ob-browser"; - rev = "a347d9df1c87b7eb660be8723982c7ad2563631a"; - sha256 = "0q2amf2kh2gkn65132q9nvn87pws5mmnr3wm1ajk23c01kcjf29c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c51529213c15d42a7a7b76771f07dd73c036a51f/recipes/ob-browser"; - sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-browser"; - license = lib.licenses.free; - }; - }) {}; - ob-cfengine3 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-cfengine3"; - ename = "ob-cfengine3"; - version = "20190520.1229"; - src = fetchFromGitHub { - owner = "nickanderson"; - repo = "ob-cfengine3"; - rev = "e95f01b34011ff0ab94dedae2fb68efef236985b"; - sha256 = "0c7ylvisizafza118dswvwyzmr85r0q9lsf1skvhsgvc53gvjf1b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d068233c438e76cbcc6e9a97cbec9b2550a18ed6/recipes/ob-cfengine3"; - sha256 = "1pp3mykc5k629qlqixpl2900m1j604xpp6agrngwagsvf7qkhnvl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-cfengine3"; - license = lib.licenses.free; - }; - }) {}; - ob-clojurescript = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-clojurescript"; - ename = "ob-clojurescript"; - version = "20180406.1128"; - src = fetchFromGitLab { - owner = "statonjr"; - repo = "ob-clojurescript"; - rev = "17ee1558aa94c7b0246fd03f684884122806cfe7"; - sha256 = "1an4m7mpr345xw4fanyf2vznxm1dxbv35987caq1wq9039mzfaxr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9ccc0d2d034944cb9688d5e184fa5df95f6b31/recipes/ob-clojurescript"; - sha256 = "0h4qjz65k8m1ms7adrm5ypmjcjxx1nws1jmda88c4jjwjyz40jjf"; - name = "recipe"; - }; - 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"; - ename = "ob-coffee"; - version = "20170725.724"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-coffee"; - rev = "7f0b330273e8af7777de87a75fe52a89798e4548"; - sha256 = "1w3fw3ka46d7vcsdq03l0wlviwsk52asfjiy9zfk4qabhpqwj9mz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23d7f1d021b07053acb57e2668ece0eaed0f817/recipes/ob-coffee"; - sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-coffee"; - license = lib.licenses.free; - }; - }) {}; - ob-coffeescript = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-coffeescript"; - ename = "ob-coffeescript"; - version = "20180125.2319"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "ob-coffeescript"; - rev = "5a5bb04aea9c2a6eab5b05f90f5c7cb6de7b4261"; - sha256 = "0yy20w1127xmz0mx2swbr294vg0jh8g0ibj5bpdf55xwdnv6im2l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba1a808c77653bac1948d6c44bd1db09301ffeff/recipes/ob-coffeescript"; - sha256 = "05q1wnabw52kd3fpcpinpxs9z6xmi4n1p19jbcz0bgjpnw05s27p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-coffeescript"; - license = lib.licenses.free; - }; - }) {}; - ob-crystal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-crystal"; - ename = "ob-crystal"; - version = "20180125.2318"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "ob-crystal"; - rev = "b3bb27a21a4cefef3f5aeef52718b694bd51245b"; - sha256 = "0clrvk2vz1ag93rlmsc0dd0pgxb4x22935v51jqjkp2gw3n50kxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a7d43199a83ab6f672aaa69ef4e158c868f180/recipes/ob-crystal"; - sha256 = "11mk2spwlddbrvcimhzw43b6d3gxzmi8br58bily1x4qkvl6zy4n"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-crystal"; - license = lib.licenses.free; - }; - }) {}; - ob-cypher = callPackage ({ cypher-mode - , dash - , dash-functional - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ob-cypher"; - ename = "ob-cypher"; - version = "20170725.720"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-cypher"; - rev = "114bdf6db20ee0ade060bb5df379ddee48ff4f26"; - sha256 = "142d91jvf7nr7q2sj61njy5hv6ljhsq2qkvkdbkfqj07rgpwfgn3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc05c833f64e7974cf5a2ad60a053a04267251cb/recipes/ob-cypher"; - sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3"; - name = "recipe"; - }; - packageRequires = [ cypher-mode dash dash-functional s ]; - meta = { - homepage = "https://melpa.org/#/ob-cypher"; - license = lib.licenses.free; - }; - }) {}; - ob-dao = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-dao"; - ename = "ob-dao"; - version = "20170816.858"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "ob-dao"; - rev = "8c62bd800b1f572860e30be4b72c71fa415a2e31"; - sha256 = "12pxn04qn24grinbybaj03qimg6vc1n2cbs9bh94s9zcyg2wv982"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6284c73f1d0797fa2ed4d9a11d3198076cc5fff9/recipes/ob-dao"; - sha256 = "0nj1qyac0lj5ljrqfqi9g2z0d7z5yihajkvjhlx5kg9zs3lgs5rs"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-dao"; - license = lib.licenses.free; - }; - }) {}; - ob-dart = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-dart"; - ename = "ob-dart"; - version = "20170106.824"; - src = fetchFromGitHub { - owner = "mzimmerm"; - repo = "ob-dart"; - rev = "2e463d83a3fe1c9c86f2040e0d22c06dfa49ecbf"; - sha256 = "0qkyyrrgs0yyqzq6ks1xcb8iwm1qfxwan1n8ichmrsbhwsc05jd3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3219b9623587365f56e9eeb4bd97f3dc449a11/recipes/ob-dart"; - sha256 = "1lqi4pazkjcxvmm2bdpd9vcakmdclkamb69xwxdl44p68wsq2gn8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-dart"; - license = lib.licenses.free; - }; - }) {}; - ob-diagrams = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-diagrams"; - ename = "ob-diagrams"; - version = "20160407.537"; - src = fetchFromGitHub { - owner = "bergey"; - repo = "org-babel-diagrams"; - rev = "be45815f5596d181592fae709096b7b5f4a71992"; - sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fbb31def39fef108ecf7be105a901abfa6845f76/recipes/ob-diagrams"; - sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-diagrams"; - license = lib.licenses.free; - }; - }) {}; - ob-elixir = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-elixir"; - ename = "ob-elixir"; - version = "20170725.719"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-elixir"; - rev = "8990a8178b2f7bd93504a9ab136622aab6e82e32"; - sha256 = "19awvfbjsnd5la14ad8cfd20pdwwlf3d2wxmz7kz6x6rf48x38za"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/287e4758f6f1df0152d68577abd91478c4a3f4ab/recipes/ob-elixir"; - sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-elixir"; - license = lib.licenses.free; - }; - }) {}; - ob-elvish = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-elvish"; - ename = "ob-elvish"; - version = "20180427.1200"; - src = fetchFromGitHub { - owner = "zzamboni"; - repo = "ob-elvish"; - rev = "369181ceae1190bf971c71aebf9fc6133bd98c39"; - sha256 = "170bw9qryhzjzmyi84qc1jkzy1y7i8sjz6vmvyfc264ia4j51m9w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90e979025f56061bc960f630945b09320a3dd28e/recipes/ob-elvish"; - sha256 = "1rpn3dabwgray1w55jib4ixr3l1afz9j7nyn0ha2r602hs02x1ya"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-elvish"; - license = lib.licenses.free; - }; - }) {}; - ob-fsharp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , fsharp-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-fsharp"; - ename = "ob-fsharp"; - version = "20170618.729"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "ob-fsharp"; - rev = "65ec2b626ac55313d8a04e746940370f615fed1e"; - sha256 = "12k6z3zsh8av3avhl2a62v475bpxpcdy56v8i248bv1wgd3ma2mi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89bc8c5fe6db0573109e82b3d1350d33d6d8aff5/recipes/ob-fsharp"; - sha256 = "1b9052lvr03vyizkjz3qsa8cw3pjml4kb3yy13jwh09jz5q87qbf"; - name = "recipe"; - }; - packageRequires = [ emacs fsharp-mode ]; - meta = { - homepage = "https://melpa.org/#/ob-fsharp"; - license = lib.licenses.free; - }; - }) {}; - ob-go = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-go"; - ename = "ob-go"; - version = "20190201.1240"; - src = fetchFromGitHub { - owner = "pope"; - repo = "ob-go"; - rev = "2067ed55f4c1d33a43cb3f6948609d240a8915f5"; - sha256 = "069w9dymiv97cvlpzabf193nyw174r38lz5j11x23x956ladvpbw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3afb687d6d3d1e52336ca9a7343278a9f37c3d54/recipes/ob-go"; - sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-go"; - license = lib.licenses.free; - }; - }) {}; - ob-html-chrome = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ob-html-chrome"; - ename = "ob-html-chrome"; - version = "20181219.242"; - src = fetchFromGitHub { - owner = "nikclayton"; - repo = "ob-html-chrome"; - rev = "7af6e4a24ed0aaf67751bdf752c7ca0ba02bb8d4"; - sha256 = "0h33y11921ajw60b4hqpg0nvdvx3w3cia90wf53c5zg2bckcrfjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac4380b5ea63c5296e517fccafa4d6a69dc73d0d/recipes/ob-html-chrome"; - sha256 = "1z3bi5i9n6dqvarl32syb6y36px3pf0pppqxn02rrx1rwvg81iql"; - name = "recipe"; - }; - packageRequires = [ emacs f s ]; - meta = { - homepage = "https://melpa.org/#/ob-html-chrome"; - license = lib.licenses.free; - }; - }) {}; - ob-http = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ob-http"; - ename = "ob-http"; - version = "20180707.748"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-http"; - rev = "b1428ea2a63bcb510e7382a1bf5fe82b19c104a7"; - sha256 = "11fx9c94xxhl09nj9z5b5v6sm0xwkqawgjnnm7bg56vvj495n6h7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/950b02f76a04f453992b8720032e8c4cec9a039a/recipes/ob-http"; - sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/ob-http"; - license = lib.licenses.free; - }; - }) {}; - ob-hy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-hy"; - ename = "ob-hy"; - version = "20180701.2240"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "ob-hy"; - rev = "a42ecaf440adc03e279afe43ee5ef6093ddd542a"; - sha256 = "0kv92r6j0dcqcg1s0g4iq1xvanscg6crwniysbrq6ifvmc4lvfdj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12a7a7dba169010a3a047f961010236a203c16c2/recipes/ob-hy"; - sha256 = "18a8fpda0f28wxmjprhd9dmz7bpk1j3iayl20lqffrcal6m4f1h7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-hy"; - license = lib.licenses.free; - }; - }) {}; - ob-ipython = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ob-ipython"; - ename = "ob-ipython"; - version = "20180224.153"; - src = fetchFromGitHub { - owner = "gregsexton"; - repo = "ob-ipython"; - rev = "7147455230841744fb5b95dcbe03320313a77124"; - sha256 = "1a10fc2jk37ni5sjjvf87s5nyaz2a6h2mlj5dxh4dhv5sd3bb85p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/557c36e86844c211f2d2ee097ce51ee9db92ea8b/recipes/ob-ipython"; - sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f s ]; - meta = { - homepage = "https://melpa.org/#/ob-ipython"; - license = lib.licenses.free; - }; - }) {}; - ob-kotlin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-kotlin"; - ename = "ob-kotlin"; - version = "20180823.621"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-kotlin"; - rev = "b817ffb7fd03a25897eb2aba24af2035bbe3cfa8"; - sha256 = "1w31cj1wbblm9raav4kxbykf124k6rvn0ryxfn6myvv1x900w02a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7aa74d349eb55aafddfc4327b6160ae2da80d689/recipes/ob-kotlin"; - sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-kotlin"; - license = lib.licenses.free; - }; - }) {}; - ob-lfe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-lfe"; - ename = "ob-lfe"; - version = "20170725.720"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-lfe"; - rev = "f7780f58e650b4d29dfd834c662b1d354b620a8e"; - sha256 = "1ricvb2wxsmsd4jr0301pk30mswx41msy07fjgwhsq8dimxzmngp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d595d3b93e6b25ece1cdffc9d1502e8a868eb538/recipes/ob-lfe"; - sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-lfe"; - license = lib.licenses.free; - }; - }) {}; - ob-mermaid = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-mermaid"; - ename = "ob-mermaid"; - version = "20180522.959"; - src = fetchFromGitHub { - owner = "arnm"; - repo = "ob-mermaid"; - rev = "7f7fb533babc0b783c20e82527ddc7f0ebfbb629"; - sha256 = "0cllrjbbcqgr8qm9n8w7bmvgh2xvrrl3gqjmws3rsn0k7biq3kz5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4df483806a4caaeb99fdac42f83bfe648d2e4165/recipes/ob-mermaid"; - sha256 = "0fp57m80ksnb6zs1gndwsqhrphkv9lfysq0h7h8g3parizh2idzs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-mermaid"; - license = lib.licenses.free; - }; - }) {}; - ob-ml-marklogic = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-ml-marklogic"; - ename = "ob-ml-marklogic"; - version = "20190312.614"; - src = fetchFromGitHub { - owner = "ndw"; - repo = "ob-ml-marklogic"; - rev = "d5660ad14f29e17cd26ae92eeb585b24030e9570"; - sha256 = "1aqllsn965km3796q92w3a3z92hkpm5i0l6p4fm3va9xq7j79cyc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edce412552d4798450493e0a3dbe768f38f77cc7/recipes/ob-ml-marklogic"; - sha256 = "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-ml-marklogic"; - license = lib.licenses.free; - }; - }) {}; - ob-mongo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-mongo"; - ename = "ob-mongo"; - version = "20170720.1219"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "ob-mongo"; - rev = "371bf19c7c10eab2f86424f8db8ab685997eb5aa"; - sha256 = "02k4gvh1nqhn0h36h77vvms7xwwak8rdddibbidsrwwspbr4qr1s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e020ea3ef89a3787d498c2f698c82c5073c9ee32/recipes/ob-mongo"; - sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-mongo"; - license = lib.licenses.free; - }; - }) {}; - ob-nim = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-nim"; - ename = "ob-nim"; - version = "20170809.1130"; - src = fetchFromGitHub { - owner = "Lompik"; - repo = "ob-nim"; - rev = "742b6b1fccdb245807b540f41f7f422b27f36230"; - sha256 = "0qnx9b40y1vxb7wsznnn29chl80fwlh42g2gm9l1p8jvli3jm2wp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/ob-nim"; - sha256 = "0j8mk12d29jyhhj4dlc0jykqmqy8g0yrbv7f2sqig83wj531bwza"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ob-nim"; - license = lib.licenses.free; - }; - }) {}; - ob-prolog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-prolog"; - ename = "ob-prolog"; - version = "20190410.1430"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "ob-prolog"; - rev = "149abd3832fc5a6a1cb01a586a1622a8f25887dc"; - sha256 = "033pqfm3hj2585ibmqjhf7s1imckf615s6zg38jsq21wxv5fx8nc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog"; - sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-prolog"; - license = lib.licenses.free; - }; - }) {}; - ob-restclient = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "ob-restclient"; - ename = "ob-restclient"; - version = "20190519.445"; - src = fetchFromGitHub { - owner = "alf"; - repo = "ob-restclient.el"; - rev = "fab4559d07993ce554ab6b06b50f4b445b36716c"; - sha256 = "11mr4dkh3v8ynr3k83ms61cyw9bqqcj5j4yi37q9qgaidc3dg2sp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28c1d3af3f8b2f598b80b03b64de5d15cbb3f13d/recipes/ob-restclient"; - sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk"; - name = "recipe"; - }; - packageRequires = [ restclient ]; - meta = { - homepage = "https://melpa.org/#/ob-restclient"; - license = lib.licenses.free; - }; - }) {}; - ob-rust = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-rust"; - ename = "ob-rust"; - version = "20180911.835"; - src = fetchFromGitHub { - owner = "micanzhang"; - repo = "ob-rust"; - rev = "f57b489d931d6a7f9ca2b688af3352fd706f5f6b"; - sha256 = "1fsvfy2yr22mhjkdn0bv3n3i8039a5gw5rs1cq41msv8ghb2cp0i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/843affc2fd481647c5377bf9a96b636b39718034/recipes/ob-rust"; - sha256 = "1syzwh399wcwqhg1f3fvl12978dr574wji7cknqvll3hyh0zwd65"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-rust"; - license = lib.licenses.free; - }; - }) {}; - ob-sagemath = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , sage-shell-mode }: - melpaBuild { - pname = "ob-sagemath"; - ename = "ob-sagemath"; - version = "20170130.1833"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "ob-sagemath"; - rev = "1d99614509624d7bfd457325ca52f3bf1059f4d5"; - sha256 = "11qsh0lfb1kqiz0cfx7acfpyw0a90bh7r86a4h31d4xl1xfq94sx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc074af316a09906a26ad957a56e3dc272cd813b/recipes/ob-sagemath"; - sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; - name = "recipe"; - }; - packageRequires = [ emacs s sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/ob-sagemath"; - license = lib.licenses.free; - }; - }) {}; - ob-sml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sml-mode }: - melpaBuild { - pname = "ob-sml"; - ename = "ob-sml"; - version = "20130829.1143"; - src = fetchFromGitHub { - owner = "swannodette"; - repo = "ob-sml"; - rev = "958165c92b6cff6cada5c85c8ae5887806b8451b"; - sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1b0fbe1198fa624771c2f61249db502de57942a/recipes/ob-sml"; - sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; - name = "recipe"; - }; - packageRequires = [ sml-mode ]; - meta = { - homepage = "https://melpa.org/#/ob-sml"; - license = lib.licenses.free; - }; - }) {}; - ob-sql-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-sql-mode"; - ename = "ob-sql-mode"; - version = "20190421.839"; - src = fetchFromGitHub { - owner = "nikclayton"; - repo = "ob-sql-mode"; - rev = "b31a016585324ad91f1742ff6205bcb76f3ece6e"; - sha256 = "1k2cfxaq38wv8s2x1c52v0bw55c12n399614l0dx1aqy2wh1afgi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ob-sql-mode"; - sha256 = "143agagkmwqwdqc0mbdsqp6v02y12q437v4x6dlh81yihif56rdk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-sql-mode"; - license = lib.licenses.free; - }; - }) {}; - ob-swift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-swift"; - ename = "ob-swift"; - version = "20170921.625"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-swift"; - rev = "ed478ddbbe41ce5373efde06b4dd0c3663c9055f"; - sha256 = "1vwg10d33mwb32bpdbpghfihy3ryiqbc4yydpb5hfv3v5k83vs0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b401383966398d3223032c59baa920ce594e5fef/recipes/ob-swift"; - sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ob-swift"; - license = lib.licenses.free; - }; - }) {}; - ob-tmux = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "ob-tmux"; - ename = "ob-tmux"; - version = "20180831.317"; - src = fetchFromGitHub { - owner = "ahendriksen"; - repo = "ob-tmux"; - rev = "73bed0ebad27f0ad57ea67582494543eb2fab73d"; - sha256 = "0wgfjm3xf4wz8kfxnijfmgkifp6f6fwk5y31vdwadkjjggbhp0pk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3f47fbfe745972e690e8028f893bb38ba30978d/recipes/ob-tmux"; - sha256 = "12c0m2xxd75lbc98h7cwprmdn823mh2ii59pxr6fgnq7araqkz20"; - name = "recipe"; - }; - packageRequires = [ emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/ob-tmux"; - license = lib.licenses.free; - }; - }) {}; - ob-translate = callPackage ({ fetchFromGitHub - , fetchurl - , google-translate - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-translate"; - ename = "ob-translate"; - version = "20170720.1219"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "ob-translate"; - rev = "9d9054a51bafd5a29a8135964069b4fa3a80b169"; - sha256 = "143dq3wp3h1zzk8ihj8yjw9ydqnf48q7y8yxxa0ly7f2v1li84bc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d89e4006afc51bd44e23f87a1d1ef1140489ab3/recipes/ob-translate"; - sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; - name = "recipe"; - }; - packageRequires = [ google-translate org ]; - meta = { - homepage = "https://melpa.org/#/ob-translate"; - license = lib.licenses.free; - }; - }) {}; - ob-typescript = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-typescript"; - ename = "ob-typescript"; - version = "20150804.530"; - src = fetchFromGitHub { - owner = "lurdan"; - repo = "ob-typescript"; - rev = "9dcbd226cbfb75e790dd9de91d9401dde85a889a"; - sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11733cd33add89b541dcc1f90a732833861b10d9/recipes/ob-typescript"; - sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ob-typescript"; - license = lib.licenses.free; - }; - }) {}; - ob-uart = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-uart"; - ename = "ob-uart"; - version = "20170521.158"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "ob-uart"; - rev = "90daeac90a9e75c20cdcf71234c67b812110c50e"; - sha256 = "1syxxq411izmyfrhlywasax7n5c3yjy487mvfdjzjg8csmmk0m9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5334f1a48b8ea6b7a660db27910769093c76113d/recipes/ob-uart"; - sha256 = "1dkbyk8da0zw784dgwi8njnz304s54341dyfzvlb0lhcn41dmkz7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-uart"; - license = lib.licenses.free; - }; - }) {}; - oberon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "oberon"; - ename = "oberon"; - version = "20120715.209"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "oberon"; - rev = "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3"; - sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/oberon"; - sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/oberon"; - license = lib.licenses.free; - }; - }) {}; - obfusurl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "obfusurl"; - ename = "obfusurl"; - version = "20170809.824"; - src = fetchFromGitHub { - owner = "davep"; - repo = "obfusurl.el"; - rev = "7a5a41905000ce2ec1fd72509a5567e5fd9f47e5"; - sha256 = "0jbrxlpx0cxg8jzqrssk3y3ab7v62ymi6ys24542a8vpk522vqxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fe11682cb06b26775a52c81b6a1258b74b4d0/recipes/obfusurl"; - sha256 = "0xx2zsjbkd17iy7xzqc66f9xgc97f9js3nz656yhmmxakjk2krra"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/obfusurl"; - license = lib.licenses.free; - }; - }) {}; - objc-font-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "objc-font-lock"; - ename = "objc-font-lock"; - version = "20141021.1122"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "objc-font-lock"; - rev = "34b457d577f97ca94b8792d025f9a909c7610612"; - sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6f93d328e137d2ca069328932b60c3bf60b0a4e/recipes/objc-font-lock"; - sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/objc-font-lock"; - license = lib.licenses.free; - }; - }) {}; - objed = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "objed"; - ename = "objed"; - version = "20190530.736"; - src = fetchFromGitHub { - owner = "clemera"; - repo = "objed"; - rev = "70cf23ee694651e9b6feada6e380318e519b649b"; - sha256 = "080nlv4hdhmk791g6r15p04prgmhqyzdrphaiz5mj1zdws2yjhmb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4abc6d927a2bf238d23256adcc9f09a751c90374/recipes/objed"; - sha256 = "0iqvwa664fzklajqgnss7igjh7jr9v9i8dp9acm42g8ingp9zf7b"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/objed"; - license = lib.licenses.free; - }; - }) {}; - obsidian-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "obsidian-theme"; - ename = "obsidian-theme"; - version = "20170719.248"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "obsidian-theme"; - rev = "f45efb2ebe9942466c1db6abbe2d0e6847b785ea"; - sha256 = "1d36mdq8b1q1x84a2nb93bwnzlpdldiafh7q7qfjjm9dsgbij73b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e90227252eb69d3eac81f5a6bd5e3a582d33f335/recipes/obsidian-theme"; - sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/obsidian-theme"; - license = lib.licenses.free; - }; - }) {}; - occidental-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "occidental-theme"; - ename = "occidental-theme"; - version = "20130312.1258"; - src = fetchFromGitHub { - owner = "olcai"; - repo = "occidental-theme"; - rev = "fd2db7256d4f78c43d99c3cddb1c39106d479816"; - sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/736fd0b7865cc800800fa6467019a365ddf1c412/recipes/occidental-theme"; - sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/occidental-theme"; - license = lib.licenses.free; - }; - }) {}; - occur-context-resize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "occur-context-resize"; - ename = "occur-context-resize"; - version = "20170904.1609"; - src = fetchFromGitHub { - owner = "dgtized"; - repo = "occur-context-resize.el"; - rev = "cdee5a631ceed9337579d4090e0acf8140747f80"; - sha256 = "0h7ypw45h5rcbwx4c4mn2ps9hp84dpjp3iay2nc9zaavv05n7ysa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2425d82b365784b17ab56af5f77c6095664c784/recipes/occur-context-resize"; - sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/occur-context-resize"; - license = lib.licenses.free; - }; - }) {}; - occur-x = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "occur-x"; - ename = "occur-x"; - version = "20130610.643"; - src = fetchFromGitHub { - owner = "juan-leon"; - repo = "occur-x"; - rev = "352f5fab207d8a1d3dd048073ff127a83e97c82b"; - sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/occur-x"; - sha256 = "04nydxp4syd0chfnfrz8v1vkx2qasfh86b98qv8719cily1jw76p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/occur-x"; - license = lib.licenses.free; - }; - }) {}; - oceanic-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "oceanic-theme"; - ename = "oceanic-theme"; - version = "20161015.119"; - src = fetchFromGitHub { - owner = "terry3"; - repo = "oceanic-theme"; - rev = "00288f6a5245eb001dc123e36af1820eb3cbe985"; - sha256 = "00qij2h9kha557b3d69a8z3a3jsl8h4iwygxmr4h3i1w63nvy165"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d85588df4e2057ef1c822ff177572054ed979b/recipes/oceanic-theme"; - sha256 = "1i69dy9hfqwfyiykvnqzkqim0lv1p5z5fjsdk84068si4b029gzv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/oceanic-theme"; - license = lib.licenses.free; - }; - }) {}; - ocodo-svg-modelines = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , svg-mode-line-themes }: - melpaBuild { - pname = "ocodo-svg-modelines"; - ename = "ocodo-svg-modelines"; - version = "20150516.719"; - src = fetchFromGitHub { - owner = "ocodo"; - repo = "ocodo-svg-modelines"; - rev = "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018"; - sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b9651865f4f8009c9b31fa1e5561de97a5ad8de/recipes/ocodo-svg-modelines"; - sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; - name = "recipe"; - }; - packageRequires = [ svg-mode-line-themes ]; - meta = { - homepage = "https://melpa.org/#/ocodo-svg-modelines"; - license = lib.licenses.free; - }; - }) {}; - ocp-indent = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ocp-indent"; - ename = "ocp-indent"; - version = "20180417.849"; - src = fetchFromGitHub { - owner = "OCamlPro"; - repo = "ocp-indent"; - rev = "b15fd7585b42f89d745fad69ed1f2b70ecb8757d"; - sha256 = "0aszx9kxfbrlg0amsl3j3kdwn6n0a5fl33kvl8rgyv543p2jcx8f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1af061328b15360ed25a232cc6b8fbce4a7b098/recipes/ocp-indent"; - sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ocp-indent"; - license = lib.licenses.free; - }; - }) {}; - octicons = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "octicons"; - ename = "octicons"; - version = "20151031.2040"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-octicons"; - rev = "229286a6166dba8ddabc8c4d338798c6cd3cf67d"; - sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c62867eae1a254eb5fe820d4387dd4e8a0ff9be2/recipes/octicons"; - sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/octicons"; - license = lib.licenses.free; - }; - }) {}; - octo-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "octo-mode"; - ename = "octo-mode"; - version = "20161008.529"; - src = fetchFromGitHub { - owner = "cryon"; - repo = "octo-mode"; - rev = "4b2ed4a61674f73a6ccd390b5ae123474bd0c977"; - sha256 = "1jkmf3j7wmv3b3ngi9fky1d94h4501lz5jcbn6xa3cb477j5nzj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/899ec190515d33f706e5279c8e3628514f733a12/recipes/octo-mode"; - sha256 = "1xvpykdrkmxlk302kbqycasrq89f72xvhqlm14qrcd2lqnwhbi07"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/octo-mode"; - license = lib.licenses.free; - }; - }) {}; - octopress = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "octopress"; - ename = "octopress"; - version = "20190122.1707"; - src = fetchFromGitHub { - owner = "aaronbieber"; - repo = "octopress.el"; - rev = "f2c92d5420f14fc9167c7de1873836510e652de2"; - sha256 = "0s5sv685h350zky46fr95bs1w814g8ksjndxwmgarldklxilsyji"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7205d3d43797755077f19f57f531b4b39e77bae3/recipes/octopress"; - sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/octopress"; - license = lib.licenses.free; - }; - }) {}; - oer-reveal = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org-re-reveal }: - melpaBuild { - pname = "oer-reveal"; - ename = "oer-reveal"; - version = "20190525.911"; - src = fetchFromGitLab { - owner = "oer"; - repo = "oer-reveal"; - rev = "061ca951e33513da88ad9e99c56e1c99999bbcfd"; - sha256 = "04bns9jqw4pjc6xf3rg7yl8ifi1ra4r9qdpg96fglaslhva5ib4j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5982e377cd4cc2e72bfe4650c473c9f6b71085e3/recipes/oer-reveal"; - sha256 = "1j43in64p0janfr48v2llh888c337cv66yl6xswidnqysndfg6pg"; - name = "recipe"; - }; - packageRequires = [ emacs org-re-reveal ]; - meta = { - homepage = "https://melpa.org/#/oer-reveal"; - license = lib.licenses.free; - }; - }) {}; - offlineimap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "offlineimap"; - ename = "offlineimap"; - version = "20150916.458"; - src = fetchFromGitHub { - owner = "jd"; - repo = "offlineimap.el"; - rev = "cc3e067e6237a1eb7b21c575a41683b1febb47f1"; - sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/offlineimap"; - sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/offlineimap"; - license = lib.licenses.free; - }; - }) {}; - old-norse-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "old-norse-input"; - ename = "old-norse-input"; - version = "20170816.1142"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "emacs-old-norse-input"; - rev = "c2e21ee72c3768e9152aff6baf12a19cde1d0c53"; - sha256 = "0zybr1v91884p4ncrpr962pr02qsns6hf7kc4c5gyad8sg4pbvxh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84780a6ebd1b2294b86ae8c6df5bd6521cf4e85a/recipes/old-norse-input"; - sha256 = "1g00h6ykf61ckr6f3r17j72w3h04p5q65aa3rhr5llk3jk1wv331"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/old-norse-input"; - license = lib.licenses.free; - }; - }) {}; - oldlace-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "oldlace-theme"; - ename = "oldlace-theme"; - version = "20150705.600"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "oldlace-theme"; - rev = "9ecbef999b63021c967846a3c80b3fbfc81f1290"; - sha256 = "1kn25kamsb0s0cdg8mggi8rc7qgz4x6m3w6s42jvqybv41zhv50x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6b11187b012744771380dfabab607cf7e073c45/recipes/oldlace-theme"; - sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/oldlace-theme"; - license = lib.licenses.free; - }; - }) {}; - om-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "om-mode"; - ename = "om-mode"; - version = "20140915.1410"; - src = fetchFromGitHub { - owner = "danielsz"; - repo = "om-mode"; - rev = "5a6b380f8d1293a865d8a37aa4816d7412c512ce"; - sha256 = "1wbnmg2lfv5xqgwj3axgwkccxmx0i202nf2nnfglg10hffy67rcm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/om-mode"; - sha256 = "0bnlnxmzch9j39l8sf85npi89xlnkcnkmy4fihmwhrm86mnmayrb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/om-mode"; - license = lib.licenses.free; - }; - }) {}; - omni-kill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "omni-kill"; - ename = "omni-kill"; - version = "20171016.1440"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-kill.el"; - rev = "904549c8fd6ac3cf22b5d7111ca8944e179cffea"; - sha256 = "1mlnh5pdqdv1qb8jvi0wvkgbpy74zq807gmp04bp6cpxdns9j63f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c24df34d2fa5d908223379e909148423ba327ae2/recipes/omni-kill"; - sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/omni-kill"; - license = lib.licenses.free; - }; - }) {}; - omni-log = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "omni-log"; - ename = "omni-log"; - version = "20170930.535"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-log.el"; - rev = "e32bee893359476da9771871e342b70d6a03c671"; - sha256 = "1dzg3sb2zb7cwjl6lyxmh3j4s64dld987p9vw86hfisp2ccxxk2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47bb19bb7b4713c3fd82c1035a2fe66588c069e3/recipes/omni-log"; - sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/omni-log"; - license = lib.licenses.free; - }; - }) {}; - omni-quotes = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , omni-log - , s }: - melpaBuild { - pname = "omni-quotes"; - ename = "omni-quotes"; - version = "20170425.1132"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-quotes.el"; - rev = "454116c1dd6581baaeefd6b9310b1b6b7a5c36d0"; - sha256 = "1h8lrpi5wizi5vncdz83cxlx7c71xw3sw89sfg462zfbz2sq8afl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3402524f79381c99fdeb81a6a5a9241c918811be/recipes/omni-quotes"; - sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; - name = "recipe"; - }; - packageRequires = [ dash f ht omni-log s ]; - meta = { - homepage = "https://melpa.org/#/omni-quotes"; - license = lib.licenses.free; - }; - }) {}; - omni-scratch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "omni-scratch"; - ename = "omni-scratch"; - version = "20171009.1451"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-scratch.el"; - rev = "636374c59c7d33c2f72c97ad8ba9fb4854f2324d"; - sha256 = "0w62bk2m0gs4b605s691z4iap9baz1z6c8z4v9vb05917qlsx5xb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ba3e128a7fe4476d82266506b18ba9984c37944/recipes/omni-scratch"; - sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/omni-scratch"; - license = lib.licenses.free; - }; - }) {}; - omni-tags = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcre2el }: - melpaBuild { - pname = "omni-tags"; - ename = "omni-tags"; - version = "20170426.1409"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-tags.el"; - rev = "8f0f6c302fab900b7681e5c039f90850cbbabd33"; - sha256 = "0cqj4h4bdhmb0r6f2xx9g6cs3599m4j3snkrvsgddaq8c6mg47w0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c77e57f41484c08cae9f47c4379d1752ccf43ce2/recipes/omni-tags"; - sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; - name = "recipe"; - }; - packageRequires = [ cl-lib pcre2el ]; - meta = { - homepage = "https://melpa.org/#/omni-tags"; - license = lib.licenses.free; - }; - }) {}; - omnibox = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , frame-local - , lib - , melpaBuild }: - melpaBuild { - pname = "omnibox"; - ename = "omnibox"; - version = "20180422.1749"; - src = fetchFromGitHub { - owner = "sebastiencs"; - repo = "omnibox"; - rev = "8ee75c71c20c438ebc43ba24ef6f543633d118f3"; - sha256 = "19d7djf942dagxsz0c0lnfra4fk09qm6grkc0nihpsw4afjbj01a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf274ff47f167edd214e667249356de281522802/recipes/omnibox"; - sha256 = "05jc9hhr3gnjfyjpdx79ij9b5qwfrsmdf8h2s5ldxbw82q8a0z02"; - name = "recipe"; - }; - packageRequires = [ dash emacs frame-local ]; - meta = { - homepage = "https://melpa.org/#/omnibox"; - license = lib.licenses.free; - }; - }) {}; - omnisharp = callPackage ({ auto-complete - , cl-lib ? null - , csharp-mode - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup - , s }: - melpaBuild { - pname = "omnisharp"; - ename = "omnisharp"; - version = "20190526.531"; - src = fetchFromGitHub { - owner = "OmniSharp"; - repo = "omnisharp-emacs"; - rev = "9c0bc9de44e71184e3b23cce62d70db43cf616e7"; - sha256 = "1wx6k30f10hqbfzl31gi28w4j1mgviwl23ny6dq8mnh4pcgjijyq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; - sha256 = "0gh0wwdpdx2cjf95pcagj52inf7mrmiq7x8p0x5c7lvl4pfzhh87"; - name = "recipe"; - }; - packageRequires = [ - auto-complete - cl-lib - csharp-mode - dash - emacs - f - flycheck - popup - s - ]; - meta = { - homepage = "https://melpa.org/#/omnisharp"; - license = lib.licenses.free; - }; - }) {}; - omtose-phellack-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "omtose-phellack-theme"; - ename = "omtose-phellack-theme"; - version = "20161111.1320"; - src = fetchFromGitHub { - owner = "franksn"; - repo = "omtose-phellack-theme"; - rev = "66f99633e199e65bd28641626435e8e59246529a"; - sha256 = "0imf2pcf93srm473nvaksw5pw5i4caqxb6aqfbq6xww8gdbqfazy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/478b1e07ed9010408c12598640ec8d154f9eb18d/recipes/omtose-phellack-theme"; - sha256 = "0aj0sw611w13xryn762ws63dfalczxixa5rv3skglmfy9axg3v3b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/omtose-phellack-theme"; - license = lib.licenses.free; - }; - }) {}; - on-parens = callPackage ({ dash - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smartparens }: - melpaBuild { - pname = "on-parens"; - ename = "on-parens"; - version = "20180202.1441"; - src = fetchFromGitHub { - owner = "willghatch"; - repo = "emacs-on-parens"; - rev = "7a41bc02bcffd265f8a69ed4b4e0df3c3009aaa4"; - sha256 = "0pkc05plbjqfxrw54amlm6pzg9gcsz0nvqzprplr6rhh7ss419zn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ea1eb5eb5a40e95ba06b0a4ac89ad8843c9cc2c/recipes/on-parens"; - sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab"; - name = "recipe"; - }; - packageRequires = [ dash emacs evil smartparens ]; - meta = { - homepage = "https://melpa.org/#/on-parens"; - license = lib.licenses.free; - }; - }) {}; - on-screen = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "on-screen"; - ename = "on-screen"; - version = "20160302.150"; - src = fetchFromGitHub { - owner = "michael-heerdegen"; - repo = "on-screen.el"; - rev = "206468aa4de299ad26c2db12b757f5ad7290912f"; - sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/628f43fdfdb41174800fb8171e71134c27730f6f/recipes/on-screen"; - sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/on-screen"; - license = lib.licenses.free; - }; - }) {}; - one-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "one-themes"; - ename = "one-themes"; - version = "20190424.40"; - src = fetchFromGitHub { - owner = "balajisivaraman"; - repo = "emacs-one-themes"; - rev = "e62e4ebef7ef8ccb1e90781d613638d30cf24d7a"; - sha256 = "13vjlgac3ikd5xr6cjqb3aaj8qr201lc3ndvwhj3k617474312jh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/504fb2fa2fe17eb008f7e9b8f7fb394f4a3ebd28/recipes/one-themes"; - sha256 = "11c6py5vani2cv4qjvizlzz9xvr5v57qxy1chcxy2lq3jlz1q5w0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/one-themes"; - license = lib.licenses.free; - }; - }) {}; - one-time-pad-encrypt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "one-time-pad-encrypt"; - ename = "one-time-pad-encrypt"; - version = "20160329.813"; - src = fetchFromGitHub { - owner = "garvinguan"; - repo = "emacs-one-time-pad"; - rev = "87cc1f124024ce3d277299ca0ac703f182937d9f"; - sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/one-time-pad-encrypt"; - sha256 = "0xl74vxq9dzl84b6wsw8flykxcsxggpd4s47a2ph3irr64mbbgq5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/one-time-pad-encrypt"; - license = lib.licenses.free; - }; - }) {}; - opam = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "opam"; - ename = "opam"; - version = "20150719.520"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "opam.el"; - rev = "4d589de5765728f56af7078fae328b6792de8600"; - sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4e2076ebaefe7e241607ff6920fe243d10ccd0/recipes/opam"; - sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/opam"; - license = lib.licenses.free; - }; - }) {}; - open-in-msvs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "open-in-msvs"; - ename = "open-in-msvs"; - version = "20170123.1428"; - src = fetchFromGitHub { - owner = "evgeny-panasyuk"; - repo = "open-in-msvs.el"; - rev = "e0d071c83188ad5db8f3297d6ce784b4ed554a04"; - sha256 = "0aiccdcll5zjy11fandd9bvld8p8srmhrh3waqc33yp4x8pjkjpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09a462fac31a7ceda4ee84a8550ff1db6d11140f/recipes/open-in-msvs"; - sha256 = "0cng0brxjdriyhwsbn85pfrgqg56chzk24lvkx91rzgz15fbpnv5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/open-in-msvs"; - license = lib.licenses.free; - }; - }) {}; - open-junk-file = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "open-junk-file"; - ename = "open-junk-file"; - version = "20161210.314"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "open-junk-file"; - rev = "558bec7372b0fed4c4cb6074ab906535fae615bd"; - sha256 = "0kcgkxn5v9bsbkcvpjxjqhj1w3c29bfb33bmiw32gzbfphmrvhh1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/open-junk-file"; - sha256 = "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/open-junk-file"; - license = lib.licenses.free; - }; - }) {}; - opencc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "opencc"; - ename = "opencc"; - version = "20170722.116"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "emacs-opencc"; - rev = "959d9ffbae095752182026e3bd9b8fd61178c39f"; - sha256 = "0qym9xxjsn4ally7qlfffin7rybdz3w5z4gw1cw2j6ragwcm6w8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc5476b3670a9f5c3d3682c2e7852fc6c5fe60/recipes/opencc"; - sha256 = "1dd62x0h3imil4g3psndxykp45jf83fm4afxcvvyayj45z099f4r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/opencc"; - license = lib.licenses.free; - }; - }) {}; - opencl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "opencl-mode"; - ename = "opencl-mode"; - version = "20170816.549"; - src = fetchFromGitHub { - owner = "salmanebah"; - repo = "opencl-mode"; - rev = "6e69434d0fa6e11a542acad370611bba18d3bc5c"; - sha256 = "00vhmbfh51mncx5xnzv96kbb5r6r27xw6xwvi7gf454zbvcibrws"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d97575fdae88d55b55686aa6814f858813cad171/recipes/opencl-mode"; - sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/opencl-mode"; - license = lib.licenses.free; - }; - }) {}; - opener = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "opener"; - ename = "opener"; - version = "20161207.1010"; - src = fetchFromGitHub { - owner = "0robustus1"; - repo = "opener.el"; - rev = "ab75048b1073fb1b1452dabae94ab55e0cfb57c4"; - sha256 = "00kh8m23jzwb0wipwjdm2wad08xqrlcg00vzc4vzijgrapz0da3h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5a448f1936f46176bc2462eb03955a0c19efb9e/recipes/opener"; - sha256 = "0fhny4m7x19wnlnr19s4rkl04dkx95yppd51jzrkr96xiznw97s7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/opener"; - license = lib.licenses.free; - }; - }) {}; - opensource = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "opensource"; - ename = "opensource"; - version = "20160926.916"; - src = fetchFromGitHub { - owner = "OpenSourceOrg"; - repo = "el-opensourceorg"; - rev = "42742d5f1b9590acff7f05ee0094e3a80f4f7171"; - sha256 = "0z92l9d3q12qlf18v7w8qjiw0ciha9l1nvxr0zmik5ck87qk4vmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec4255a403e912a14a7013ea96f554d3588dfc30/recipes/opensource"; - sha256 = "17gi20s2vi7m75qqaff907x1g8ja5ny90klldpqmj258m2j6a6my"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/opensource"; - license = lib.licenses.free; - }; - }) {}; - openstack-cgit-browse-file = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "openstack-cgit-browse-file"; - ename = "openstack-cgit-browse-file"; - version = "20130819.227"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "openstack-cgit-browse-file"; - rev = "244219288b9aef41155044697bb114b7af83ab8f"; - sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd7035e1ea63d7d8378f8bfda6a5402a5b6bb9e4/recipes/openstack-cgit-browse-file"; - sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/openstack-cgit-browse-file"; - license = lib.licenses.free; - }; - }) {}; - openwith = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "openwith"; - ename = "openwith"; - version = "20120531.1436"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/openwith"; - rev = "aeb78782ec87"; - sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/openwith"; - sha256 = "0l3grbnn349cv26ap2phlmp2h94s68gqznh5zdqwc2cp7lf699sx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/openwith"; - license = lib.licenses.free; - }; - }) {}; - operate-on-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "operate-on-number"; - ename = "operate-on-number"; - version = "20150706.2323"; - src = fetchFromGitHub { - owner = "knu"; - repo = "operate-on-number.el"; - rev = "ceb3be565a29326c1098244fac0c50606723a56e"; - sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aec74eff8ca3d5e381d7a6d61c73f1a0716f1c60/recipes/operate-on-number"; - sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/operate-on-number"; - license = lib.licenses.free; - }; - }) {}; - orca = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orca"; - ename = "orca"; - version = "20171030.1216"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "orca"; - rev = "5e1744afb793dda744ddc6fe342144b5e90bea08"; - sha256 = "0gqgs3rmdzm5vqk8azgzwannxjifvrf5fj40n543d0066c2dfsfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4d9cf89c58a9b36b7c2a42de2aecb3b60001908/recipes/orca"; - sha256 = "012ndbrgm58r09snhvi476rw0lq4m913y0slc0cxb688p9wgz5w3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/orca"; - license = lib.licenses.free; - }; - }) {}; - ordinal = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ordinal"; - ename = "ordinal"; - version = "20190104.621"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "ordinal.el"; - rev = "bfad160d7c4b6faecfe5ac986bb4858cf7149b59"; - sha256 = "1zmsac4jg3yvr3n7pkz8fhpgw9b6lqm9zcq3xh8zmb1x4ckf33z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea3dd6fe4cacc229dd1371cb66dd1cfd07321bf4/recipes/ordinal"; - sha256 = "19s27mv7kqcg9qxa844al7q1hk0qbiqh93g1n54r3b6s980dlgcv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ordinal"; - license = lib.licenses.free; - }; - }) {}; - org-ac = callPackage ({ auto-complete-pcmp - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "org-ac"; - ename = "org-ac"; - version = "20170401.607"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-ac"; - rev = "41e3ef8e4039619d0370c23c66730b3b2e9e32ed"; - sha256 = "1l3fn8vjdqq7rrn1b7l2i238bhjni13mg9v25dydin0sfb697abk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/adf598f8dae69ff286ae78d353a2a5d4363b4480/recipes/org-ac"; - sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; - name = "recipe"; - }; - packageRequires = [ auto-complete-pcmp log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/org-ac"; - license = lib.licenses.free; - }; - }) {}; - org-agenda-property = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-agenda-property"; - ename = "org-agenda-property"; - version = "20140626.1416"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "org-agenda-property"; - rev = "01afb36072eb27846eb09310dfca7991dbae831e"; - sha256 = "1f98adm1vgc43q2k63ggddsbz4329h4m5zpnzkv9lqszbjwdaq5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/org-agenda-property"; - sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-agenda-property"; - license = lib.licenses.free; - }; - }) {}; - org-alert = callPackage ({ alert - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org-alert"; - ename = "org-alert"; - version = "20180523.1833"; - src = fetchFromGitHub { - owner = "spegoraro"; - repo = "org-alert"; - rev = "f87bff4acbd839acb4d2245b56b2c3d21f950911"; - sha256 = "05xhp1ggpcgd48vcrxf9l43aasxfjw1ypgzpq3gp7031x83m9rr6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org-alert"; - sha256 = "01bb0s22wa14lyr9wi58cvk4b03xqq268y3dvxbrhymw1ld97zk2"; - name = "recipe"; - }; - packageRequires = [ alert dash s ]; - meta = { - homepage = "https://melpa.org/#/org-alert"; - license = lib.licenses.free; - }; - }) {}; - org-attach-screenshot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-attach-screenshot"; - ename = "org-attach-screenshot"; - version = "20180419.2225"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "org-screenshot"; - rev = "6b1edbd2384191122a30788ac72f2233c2df0294"; - sha256 = "0vyxpc28b9b0cn02a9p48q6iy61qw7gj7gzk37ijdmzg8dzy6hxv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f545cd8d1da39e7fbd61020e178de30053ba774b/recipes/org-attach-screenshot"; - sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-attach-screenshot"; - license = lib.licenses.free; - }; - }) {}; - org-autolist = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-autolist"; - ename = "org-autolist"; - version = "20170924.1201"; - src = fetchFromGitHub { - owner = "calvinwyoung"; - repo = "org-autolist"; - rev = "c82d1e83e982b5f0c106b8800e5b0cfd5f73fdc1"; - sha256 = "0ykiafbdjb2iy0s1gr6l51gddjbk08iwj4v13hgm8b675bl0cw56"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca8e2cdb282674b20881bf6b4fc49af42a5d09a7/recipes/org-autolist"; - sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-autolist"; - license = lib.licenses.free; - }; - }) {}; - org-babel-eval-in-repl = callPackage ({ emacs - , ess - , eval-in-repl - , fetchFromGitHub - , fetchurl - , lib - , matlab-mode - , melpaBuild }: - melpaBuild { - pname = "org-babel-eval-in-repl"; - ename = "org-babel-eval-in-repl"; - version = "20170511.514"; - src = fetchFromGitHub { - owner = "diadochos"; - repo = "org-babel-eval-in-repl"; - rev = "bfa72c582ac1531ad42aba23e2b1267ab68e31f6"; - sha256 = "1jm56zxa99s163jv02vhfrshmykvld7girq7gmj1x60g3wjzhn5k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-babel-eval-in-repl"; - sha256 = "0brqp0w9s28ibws4idlm1rw09lsfa98l5wbpwm64rvlixhs6zlnx"; - name = "recipe"; - }; - packageRequires = [ emacs ess eval-in-repl matlab-mode ]; - meta = { - homepage = "https://melpa.org/#/org-babel-eval-in-repl"; - license = lib.licenses.free; - }; - }) {}; - org-beautify-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-beautify-theme"; - ename = "org-beautify-theme"; - version = "20170908.1518"; - src = fetchFromGitHub { - owner = "jonnay"; - repo = "org-beautify-theme"; - rev = "df6a1114fda313e1689363e196c8284fbe2a2738"; - sha256 = "1lkz7736swimad12khwbbqc4gxjydgr1k45p4mx03s25pv1w920y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f55f1ee9890f720e058401a052e14c7411252967/recipes/org-beautify-theme"; - sha256 = "0rrlyn61xh3szw8aihxpbmg809xx5ac66xqzj895dn1raz129h2w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-beautify-theme"; - license = lib.licenses.free; - }; - }) {}; - org-board = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-board"; - ename = "org-board"; - version = "20190203.624"; - src = fetchFromGitHub { - owner = "scallywag"; - repo = "org-board"; - rev = "4fe9c9d67b5649c317df32fb027d5b61c37c15f3"; - sha256 = "1crr5rag71sgzddpmrxiqkal5csc19bkbfrsqrq3a7r1d91bb7y5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8063ee17586d9b1e7415f7b924239826b81ab08/recipes/org-board"; - sha256 = "00jsrxc8f85cvrh7364n7337frdj12yknlfp28fhdgk2ph6d7bp4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-board"; - license = lib.licenses.free; - }; - }) {}; - org-bookmark-heading = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-bookmark-heading"; - ename = "org-bookmark-heading"; - version = "20180904.1009"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-bookmark-heading"; - rev = "eba5ef7a3c992c4a9da86f64d12fca0c1158208a"; - sha256 = "1amq48yldydg9prcxvxn5yi0k8xk87h1azscr9hh9phnll2yys1d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaadbd149399c6e3c48ac5cbeedeb29a3f5791f1/recipes/org-bookmark-heading"; - sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/org-bookmark-heading"; - license = lib.licenses.free; - }; - }) {}; - org-brain = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-brain"; - ename = "org-brain"; - version = "20190604.1318"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "org-brain"; - rev = "20720b84395d396ee466aaa7e338fda510cf0783"; - sha256 = "0sgd6ghsdch7zxlgck5a8008420fa42x4dszxlhlq65gaw9jdn4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47480fbae06e4110d50bc89db7df05fa80afc7d3/recipes/org-brain"; - sha256 = "0c05c6lbr740nnjp9p34padrbrc3q1x2pgylkyhsxadm4mfsvj0c"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-brain"; - license = lib.licenses.free; - }; - }) {}; - org-bullets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-bullets"; - ename = "org-bullets"; - version = "20180208.1543"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "org-bullets"; - rev = "b56f2e3812626f2c4ac1686073d102c71f4a8513"; - sha256 = "0a0dml6y49n3469vrfpgci40k4xxlk0q4kh2b27shjb440wrmv4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe60fc3c60d87b5fd7aa24e858c79753d5f7d2f6/recipes/org-bullets"; - sha256 = "0yrfgd6r71rng3qipp3y9i5mpm6510k4xsfgyidcn25v27fysk3v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-bullets"; - license = lib.licenses.free; - }; - }) {}; - org-caldav = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-caldav"; - ename = "org-caldav"; - version = "20180403.1336"; - src = fetchFromGitHub { - owner = "dengste"; - repo = "org-caldav"; - rev = "8d3492c27a09f437d2d94f2736c56d7652e87aa0"; - sha256 = "19q83xgbdabkidx26xvff1x7kixk2wllplnwfsy7kggdj9wqpm9l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-caldav"; - sha256 = "1wzb5garpxg8p7zaqp6z5q0l2x8n9m7fjg5xy3vg9878njnqr9kc"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-caldav"; - license = lib.licenses.free; - }; - }) {}; - org-capture-pop-frame = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-capture-pop-frame"; - ename = "org-capture-pop-frame"; - version = "20160518.308"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "org-capture-pop-frame"; - rev = "b16fd712de62cf0d1f9befd03be6ab5983cb3301"; - sha256 = "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/org-capture-pop-frame"; - sha256 = "1k0njip25527nkn8w11yl7dbk3zv9p9lhx0a9xx293havjxygvyi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-capture-pop-frame"; - license = lib.licenses.free; - }; - }) {}; - org-category-capture = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-category-capture"; - ename = "org-category-capture"; - version = "20180531.1942"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "e57023c0e33e4a0f848fcfec1902e13e6a92f711"; - sha256 = "03svxxx6jh0c5517yvp7g5lfvjn3n4r169j589iii0fcjp4qri3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-category-capture"; - sha256 = "0l5n71h9lc8q9k0sb5ghzwb81lah4l1ykc06shfl9zw5lqqvahav"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-category-capture"; - license = lib.licenses.free; - }; - }) {}; - org-chef = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-chef"; - ename = "org-chef"; - version = "20190528.510"; - src = fetchFromGitHub { - owner = "Chobbes"; - repo = "org-chef"; - rev = "e1ccda68d146349fae1a2072c932a4ff5078f495"; - sha256 = "0qirp3pbp7knrv9m7g7z7qgpqx4pgfyd1b58gv4xjmqjw6p5kmi8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23b9e64887a290fca7c7ab2718f627f8d728575f/recipes/org-chef"; - sha256 = "1xzbdrv5z31lxnzzgbp50l10lzlvx6j7kc7ssg76fma49wfpnra5"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-chef"; - license = lib.licenses.free; - }; - }) {}; - org-cliplink = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-cliplink"; - ename = "org-cliplink"; - version = "20190518.712"; - src = fetchFromGitHub { - owner = "rexim"; - repo = "org-cliplink"; - rev = "e03aa07fef350cfeb6374c669d1cd80eeb1a0f26"; - sha256 = "05yrvz25c6d6j2631yc8rdw0vl247mbdj2jcl4z8imy9mj5bklx9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7ddb13c59441fdf4eb1ba3816e147279dea7d429/recipes/org-cliplink"; - sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-cliplink"; - license = lib.licenses.free; - }; - }) {}; - org-clock-convenience = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-clock-convenience"; - ename = "org-clock-convenience"; - version = "20190130.810"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "org-clock-convenience"; - rev = "7d14699a15ad6c5b9a63246a11188c77f8800e94"; - sha256 = "05r6jgh8ys4ihpns7g64n4zbnvyy5fvndf9v7zinq2nk6grb393q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ed929181cdd28886ca598a0c387a31d239b2e/recipes/org-clock-convenience"; - sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-clock-convenience"; - license = lib.licenses.free; - }; - }) {}; - org-clock-csv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-clock-csv"; - ename = "org-clock-csv"; - version = "20190418.805"; - src = fetchFromGitHub { - owner = "atheriel"; - repo = "org-clock-csv"; - rev = "e2fbaa1ad1a1be40fceecde603a600b292b76acc"; - sha256 = "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e023cb898699f76f6c3d9ffe8162aacfc6a8c34f/recipes/org-clock-csv"; - sha256 = "02spjrzdf1kmvyvqkzg7nnmq9kqv75zwxn5ifqmg0f7a1gw28f0l"; - name = "recipe"; - }; - packageRequires = [ org s ]; - meta = { - homepage = "https://melpa.org/#/org-clock-csv"; - license = lib.licenses.free; - }; - }) {}; - org-clock-split = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-clock-split"; - ename = "org-clock-split"; - version = "20180909.1347"; - src = fetchFromGitHub { - owner = "justintaft"; - repo = "org-clock-split"; - rev = "b2f1497b62e7f4a767be02e249e4ac95d4f8f21c"; - sha256 = "099jxkyx7ikfqz99sx632a6c0mc630qkix3c307sm7y317jcdz8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc8517485e39093a3be387213f766d1df7d50061/recipes/org-clock-split"; - sha256 = "1ihqp4ilz4a3qs2lrc3j0lqkjh782510m2nbzba89pasgl4c4jhw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-clock-split"; - license = lib.licenses.free; - }; - }) {}; - org-clock-today = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-clock-today"; - ename = "org-clock-today"; - version = "20161014.220"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "org-clock-today-mode"; - rev = "02b8fd541a01040405a9a1400c46dcb68b7c2a3a"; - sha256 = "1gbkrgbpsrwkjd199giffim8jvx1n4dqrsyk53sz1swj9dlhxgp9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-clock-today"; - sha256 = "1x9hplz9w2kpa239rz6y02hsl4fgzxlkwr9hhwjy12x1f88x0k73"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-clock-today"; - license = lib.licenses.free; - }; - }) {}; - org-commentary = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-commentary"; - ename = "org-commentary"; - version = "20160801.2337"; - src = fetchFromGitHub { - owner = "smaximov"; - repo = "org-commentary"; - rev = "821ccb994811359c42f4e3d459e0e88849d42b75"; - sha256 = "0ixhyn8s7l2caq0qpv9zlq9fzm3z8b81755c3yffnk5camnij6py"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e0a40d9ea5849b9c22378a84ac8122e4eb2737d/recipes/org-commentary"; - sha256 = "0ym1rq2zhyhc6hkk40wsa9jni2h1z5dkaisldqzg8ggl7iv3v4fx"; - name = "recipe"; - }; - packageRequires = [ dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-commentary"; - license = lib.licenses.free; - }; - }) {}; - org-context = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-context"; - ename = "org-context"; - version = "20170107.537"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "org-context"; - rev = "a3b4a4ce6d15e3c2d45eb5dcb78bea81913f3e21"; - sha256 = "18swz38q8z1nga6l8f1l27b7ba3y5y3ikk0baplmich3hxav58xj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f33b6157eb172719a56c3e86233708b1e545e451/recipes/org-context"; - sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-context"; - license = lib.licenses.free; - }; - }) {}; - org-cua-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-cua-dwim"; - ename = "org-cua-dwim"; - version = "20120202.2134"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "org-cua-dwim.el"; - rev = "a55d6c7009fc0b22f1110c07de629acc955c85e4"; - sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-cua-dwim"; - sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-cua-dwim"; - license = lib.licenses.free; - }; - }) {}; - org-d20 = callPackage ({ dash - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "org-d20"; - ename = "org-d20"; - version = "20190415.1310"; - src = fetchgit { - url = "https://git.spwhitton.name/org-d20"; - rev = "e0fb2c04a55c55cbf59a85a0b2e23ef18370ca61"; - sha256 = "1q5s2gj1968z23qf7ds2ychvvnzmlayh1v16krf0lf3zj7a3k20s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98bf91038196dfb59c491c9ed96c6b6a0cb311a9/recipes/org-d20"; - sha256 = "158n900ifb1mfckd0gjmb9gpzibh8a2x56flbn2r035gcdbb7wc5"; - name = "recipe"; - }; - packageRequires = [ dash emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/org-d20"; - license = lib.licenses.free; - }; - }) {}; - org-dashboard = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-dashboard"; - ename = "org-dashboard"; - version = "20171223.1124"; - src = fetchFromGitHub { - owner = "bard"; - repo = "org-dashboard"; - rev = "02c0699771d199075a286e4502340ca6e7c9e831"; - sha256 = "0zi23xgv5fq827dljhzp6m2v7ggr3pdw3fpgq8515gs9q4f12v1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11ce0ba772672d9cbae5713ebaf3798eec5fdb3c/recipes/org-dashboard"; - sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-dashboard"; - license = lib.licenses.free; - }; - }) {}; - org-doing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-doing"; - ename = "org-doing"; - version = "20161017.920"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "org-doing"; - rev = "4819e75c827c2115bd28f3b3148d846aa64ccd9b"; - sha256 = "0pb7ljysh8ap572f9y813js6lvvac4kjky2a5r39hv28px33hmx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org-doing"; - sha256 = "10vg0wl8dsy12r51178qi4rzi94img692z5x3zv8dxa29lmn26xs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-doing"; - license = lib.licenses.free; - }; - }) {}; - org-dotemacs = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-dotemacs"; - ename = "org-dotemacs"; - version = "20190116.1355"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "org-dotemacs"; - rev = "5f504f36af6bcb9dbe9869c7ed54851d3db742e7"; - sha256 = "0pxphad9qxssqxr50g0mf20b7247xjp9a6fmb494bj8yv6wnn9m9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1847184312c8c95e7e81e5b3b73e5621cc2509/recipes/org-dotemacs"; - sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/org-dotemacs"; - license = lib.licenses.free; - }; - }) {}; - org-download = callPackage ({ async - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-download"; - ename = "org-download"; - version = "20190604.640"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "org-download"; - rev = "ac72bf8fce3e855da60687027b6b8601cf1de480"; - sha256 = "0ax5wd44765wnwabkam1g2r62gq8crx2qq733s2mg1z72cfvwxqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download"; - sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; - name = "recipe"; - }; - packageRequires = [ async ]; - meta = { - homepage = "https://melpa.org/#/org-download"; - license = lib.licenses.free; - }; - }) {}; - org-dp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-dp"; - ename = "org-dp"; - version = "20180311.123"; - src = fetchFromGitHub { - owner = "tj64"; - repo = "org-dp"; - rev = "334fefd06eb925c86b1642787b2a088aa0932bab"; - sha256 = "0cjx9428ypadvrlbfnfj6zwnfhdcay82q2f9x8v5gaffa6wrr7j3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f337375082da316ed07b8ce9c775b484b8cdbf6/recipes/org-dp"; - sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-dp"; - license = lib.licenses.free; - }; - }) {}; - org-drill-table = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-drill-table"; - ename = "org-drill-table"; - version = "20180115.209"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "org-drill-table"; - rev = "e4c4c1b0a17f51cb8de67eafe06a6bffc754f525"; - sha256 = "1nzn890z30l062flbnww9f3nq7wm5x5146rh76az8h7jm6vigvca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3347da186765877826b224e1f5d1b585ebd3692c/recipes/org-drill-table"; - sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs org s ]; - meta = { - homepage = "https://melpa.org/#/org-drill-table"; - license = lib.licenses.free; - }; - }) {}; - org-dropbox = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "org-dropbox"; - ename = "org-dropbox"; - version = "20150113.2109"; - src = fetchFromGitHub { - owner = "heikkil"; - repo = "org-dropbox"; - rev = "2dc677a770c9e82f928ad8e97a7707eb368e58ed"; - sha256 = "1ldyxxlgfm2zskjr06b5kppq560cy75ic2dh9si09hrsw3qj0m4s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd613fbe42c41b125a25dfa0206666446dc5fa40/recipes/org-dropbox"; - sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln"; - name = "recipe"; - }; - packageRequires = [ dash emacs names ]; - meta = { - homepage = "https://melpa.org/#/org-dropbox"; - license = lib.licenses.free; - }; - }) {}; - org-easy-img-insert = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-easy-img-insert"; - ename = "org-easy-img-insert"; - version = "20160915.1308"; - src = fetchFromGitHub { - owner = "tashrifsanil"; - repo = "org-easy-img-insert"; - rev = "3efb4d70e5a39bfbf7ee4c4033cc61afa89430dd"; - sha256 = "1nijybb8dc251n187ljwffw3hxppb7nhb0lhc7jx4fyymg3r27l3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/512db70609fc451972405acb4b186a9b3c6944fa/recipes/org-easy-img-insert"; - sha256 = "0gpb9f66gn8dbhwrlw7z2a5rpphbh1fv845wz8yy4v7nv2j3sf54"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-easy-img-insert"; - license = lib.licenses.free; - }; - }) {}; - org-edit-latex = callPackage ({ auctex - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-edit-latex"; - ename = "org-edit-latex"; - version = "20170908.822"; - src = fetchFromGitHub { - owner = "et2010"; - repo = "org-edit-latex"; - rev = "ecd91601cb6f3aa79d055bde99bfec6d2b335952"; - sha256 = "0m2smwn18zvq5sg5p6j15vf6s1y9lzzrl088ziv9725wil5jwkly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-edit-latex"; - sha256 = "0nkiz4682qgk5dy4if3gij98738482ys8zwm8yx834za38xxbwry"; - name = "recipe"; - }; - packageRequires = [ auctex emacs ]; - meta = { - homepage = "https://melpa.org/#/org-edit-latex"; - license = lib.licenses.free; - }; - }) {}; - org-ehtml = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-server }: - melpaBuild { - pname = "org-ehtml"; - ename = "org-ehtml"; - version = "20150506.1658"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "org-ehtml"; - rev = "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0"; - sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f68028b3f4d2455da6d657e90abcab6181db284/recipes/org-ehtml"; - sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw"; - name = "recipe"; - }; - packageRequires = [ emacs web-server ]; - meta = { - homepage = "https://melpa.org/#/org-ehtml"; - license = lib.licenses.free; - }; - }) {}; - org-elisp-help = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-elisp-help"; - ename = "org-elisp-help"; - version = "20161121.1655"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "org-elisp-help"; - rev = "3e33ab1a2933dd7f2782ef91d667a37f12d633ab"; - sha256 = "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help"; - sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/org-elisp-help"; - license = lib.licenses.free; - }; - }) {}; - org-emms = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-emms"; - ename = "org-emms"; - version = "20181010.414"; - src = fetchFromGitLab { - owner = "jagrg"; - repo = "org-emms"; - rev = "07a8917f3d628c32e5de1dbd118ac08203772533"; - sha256 = "1sqsm5sv311xfdk4f4rsnvprdf2v2vm7l1b3vqi7pc0g8adlnw1d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4fa5c221790acca40316510fd495951f418c8e15/recipes/org-emms"; - sha256 = "0g7d2y1dgy2hgiwaxz9crxf3nv8aqzxhyf2jmnmhphdv2s9ipvjw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-emms"; - license = lib.licenses.free; - }; - }) {}; - org-evil = callPackage ({ dash - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , monitor - , org }: - melpaBuild { - pname = "org-evil"; - ename = "org-evil"; - version = "20180620.817"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "org-evil"; - rev = "3b4620edc606412ef75c0b5aa637af22486eb126"; - sha256 = "0aqya9l9s55h5wd728iz15f53p5xajrfk8pn9gjxnw0i8m4d09sd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17a4772d409aa5dbda5fb84d86c237fd2653c70b/recipes/org-evil"; - sha256 = "0wvd201k9b9ghg39rwbah6rw8b7hyyd27vvqjynjwbk3v8rp5zyn"; - name = "recipe"; - }; - packageRequires = [ dash evil monitor org ]; - meta = { - homepage = "https://melpa.org/#/org-evil"; - license = lib.licenses.free; - }; - }) {}; - org-fancy-priorities = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-fancy-priorities"; - ename = "org-fancy-priorities"; - version = "20180328.1631"; - src = fetchFromGitHub { - owner = "harrybournis"; - repo = "org-fancy-priorities"; - rev = "fc09edc9b139e82395982d08db2825702045cb85"; - sha256 = "0pzqbszjm24c8gfcczcmn242ipprsqi7pmys65bqgz63iypfxpcw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/712902ae1cf967ceb2052266ed3244e92998f8a7/recipes/org-fancy-priorities"; - sha256 = "13rljgi5fbzlc16cxqj49yg47a5qpyxzj0lswhdyhgzncp1fyq7p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-fancy-priorities"; - license = lib.licenses.free; - }; - }) {}; - org-gcal = callPackage ({ alert - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , request-deferred }: - melpaBuild { - pname = "org-gcal"; - ename = "org-gcal"; - version = "20190401.1041"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "org-gcal.el"; - rev = "3874040bd86050db60b982bb62acafb69b6a4d9b"; - sha256 = "1dffrws0rvxvsg9jqjx239zxssd6sskqv3x58mm5vvhna423cm67"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d97c701819ea8deaa8a9664db1f391200ee52c4f/recipes/org-gcal"; - sha256 = "014h67ba0cwi4i1llngypscyvyrm74ljh067i3iapx5a18q7xw5v"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib emacs org request-deferred ]; - meta = { - homepage = "https://melpa.org/#/org-gcal"; - license = lib.licenses.free; - }; - }) {}; - org-gnome = callPackage ({ alert - , fetchFromGitHub - , fetchurl - , gnome-calendar - , lib - , melpaBuild - , telepathy }: - melpaBuild { - pname = "org-gnome"; - ename = "org-gnome"; - version = "20150614.757"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "org-gnome.el"; - rev = "1012d47886cfd30eed25b73d9f18e475e0155f88"; - sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f7ebd2d2312954d098fe4afd07c3d02b4df475d/recipes/org-gnome"; - sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; - name = "recipe"; - }; - packageRequires = [ alert gnome-calendar telepathy ]; - meta = { - homepage = "https://melpa.org/#/org-gnome"; - license = lib.licenses.free; - }; - }) {}; - org-grep = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-grep"; - ename = "org-grep"; - version = "20151202.429"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "org-grep"; - rev = "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684"; - sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed0682fb9130a62e628d4e64747bb9c70456681/recipes/org-grep"; - sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-grep"; - license = lib.licenses.free; - }; - }) {}; - org-if = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-if"; - ename = "org-if"; - version = "20150920.813"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "org-if"; - rev = "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8"; - sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09df84b60c46678ad40d8dabc08fcfe518f5ad79/recipes/org-if"; - sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-if"; - license = lib.licenses.free; - }; - }) {}; - org-index = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-index"; - ename = "org-index"; - version = "20190330.35"; - src = fetchFromGitHub { - owner = "marcIhm"; - repo = "org-index"; - rev = "4b6f5f743bcdba14e2c2fd71a32caa21b11ef739"; - sha256 = "08a9wj77bhi6y19xnvibcz7x5wbg8ismfppzxz45kmydniwzpli9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/org-index"; - sha256 = "092q92hwvknwm3v2shp8dm59qdamfivx9z9v23msysy7x2mhg98f"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-index"; - license = lib.licenses.free; - }; - }) {}; - org-iv = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , impatient-mode - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-iv"; - ename = "org-iv"; - version = "20171001.322"; - src = fetchFromGitHub { - owner = "kuangdash"; - repo = "org-iv"; - rev = "7f2bb1b32647655fd9d6684f6f09dcc66b61b0cd"; - sha256 = "0s3fi8sk7jm5vr0fz20fbygm4alhpirv0j20jfi1pab14yhhf34h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7db0c34f0f6fb9c3b9e581a74304cc9a26ed342/recipes/org-iv"; - sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx"; - name = "recipe"; - }; - packageRequires = [ cl-lib impatient-mode org ]; - meta = { - homepage = "https://melpa.org/#/org-iv"; - license = lib.licenses.free; - }; - }) {}; - org-jira = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "org-jira"; - ename = "org-jira"; - version = "20190502.637"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "org-jira"; - rev = "883501bf57ee99d9add9c6eac47c79d372c0f61e"; - sha256 = "0vfkr9cppagqvacl8cwpkzp62igf9rwzs5nwc2rk3g014wylp6s6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0a2fae6eecb6b4b36fe97ad99691e2c5456586f/recipes/org-jira"; - sha256 = "1sbypbz00ki222zpm47yplyprx7h2q076b3l07qfilk0sr8kf4ql"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs request s ]; - meta = { - homepage = "https://melpa.org/#/org-jira"; - license = lib.licenses.free; - }; - }) {}; - org-journal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-journal"; - ename = "org-journal"; - version = "20190517.743"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "org-journal"; - rev = "529993646e2c399dd169ce11c0e37f35d2c7e39d"; - sha256 = "0bzbhsicfgnfn1kzaqpwhby6yvayr253n5gx2z8ccc8v6qqdvxdh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal"; - sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-journal"; - license = lib.licenses.free; - }; - }) {}; - org-journal-list = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-journal-list"; - ename = "org-journal-list"; - version = "20190221.1252"; - src = fetchFromGitHub { - owner = "huytd"; - repo = "org-journal-list"; - rev = "2b26d00181bb49bff64b31ad020490acd1b6ae02"; - sha256 = "0bcj9b7c4pyyvxlgnysl5lhs9ndp60xwizd85zrkd2mh2m8sbq9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c0186e507b6b309a35abb076988da740cee8f84/recipes/org-journal-list"; - sha256 = "1aw6pf747n3z00xg8viakckm0bb6m9hnrkxphhhsfvqqgwfpzkb9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-journal-list"; - license = lib.licenses.free; - }; - }) {}; - org-kanban = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-kanban"; - ename = "org-kanban"; - version = "20190527.2207"; - src = fetchFromGitHub { - owner = "gizmomogwai"; - repo = "org-kanban"; - rev = "dcf5e8c0a2d82bc4101c03ba21a2d38b406ea00b"; - sha256 = "02n5753kqvb6ankqrynrlalik5r9g367rg4yzmf8mhx52x1h5va4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9f3a10c126fa43a6fa60ee7f8e50c7a9661dbc1/recipes/org-kanban"; - sha256 = "1flgqa2pwzw6b2zm3j09i9bvz1i8k03mbwj6l75yrk29lh4njq41"; - name = "recipe"; - }; - packageRequires = [ dash emacs org s ]; - meta = { - homepage = "https://melpa.org/#/org-kanban"; - license = lib.licenses.free; - }; - }) {}; - org-kindle = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "org-kindle"; - ename = "org-kindle"; - version = "20190314.2139"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "org-kindle"; - rev = "612a2894bbbff8a6cf54709d591fee86005755de"; - sha256 = "1h3pbjiy5v8lp3p6dry4jk3pvdp7hpkc517d3w9ldhz6nmaiccgg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29d08205620d51d4d76e3a4a6124884b5a6b9db7/recipes/org-kindle"; - sha256 = "17sxvyh3z5pn2353iz2v6xjxp98yxwd4n7wkqsa9nwihsw5mmrrw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs seq ]; - meta = { - homepage = "https://melpa.org/#/org-kindle"; - license = lib.licenses.free; - }; - }) {}; - org-link-minor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-link-minor-mode"; - ename = "org-link-minor-mode"; - version = "20170805.1152"; - src = fetchFromGitHub { - owner = "seanohalpin"; - repo = "org-link-minor-mode"; - rev = "7b92df60f3fee7f609d649d80ef243b45771ebea"; - sha256 = "1lz7qj57s391ssawmccvhgxv1w99fj1m9rg3g4pymdl3sgdcz4g4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1d2add7baf96c9a18671766d61c8aa028756796/recipes/org-link-minor-mode"; - sha256 = "1akb670mzzhmldw2202x3k6b7vwfcn0rs55znpxsrc4iqihdgka3"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-link-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - org-link-travis = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-link-travis"; - ename = "org-link-travis"; - version = "20140405.1627"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-link-travis"; - rev = "596615ad8373d9090bd4138da683524f0ad0bda5"; - sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52c7f9539630e5ac7748fe36fd27c3486649ab74/recipes/org-link-travis"; - sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-link-travis"; - license = lib.licenses.free; - }; - }) {}; - org-linkany = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "org-linkany"; - ename = "org-linkany"; - version = "20160206.2011"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-linkany"; - rev = "8cfe2f1a46e6654a79f56505349d1396263cecb3"; - sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df82cf95e34775b22da0a8bb29750f603c58f259/recipes/org-linkany"; - sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/org-linkany"; - license = lib.licenses.free; - }; - }) {}; - org-listcruncher = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "org-listcruncher"; - ename = "org-listcruncher"; - version = "20180814.2303"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "org-listcruncher"; - rev = "daa948f54631dda96ed83a2c63265e176b177ff3"; - sha256 = "0r6gmadd20w3giw40973kyl83954pdmhslxagn6vafh1ygg9vi83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5bed5078a3e56a825be61d158ca8321763b92f7c/recipes/org-listcruncher"; - sha256 = "05vi7a03gj1waaqcjnkgpij4r45r2087xg7kgfs6ki8zhsyws23q"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs seq ]; - meta = { - homepage = "https://melpa.org/#/org-listcruncher"; - license = lib.licenses.free; - }; - }) {}; - org-make-toc = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-make-toc"; - ename = "org-make-toc"; - version = "20190103.2112"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-make-toc"; - rev = "9adeaf9da23fd3f7600821526f7e41f4ed17dd4a"; - sha256 = "122fvv6waq70qcccgwnmyfmci48k8zc7vzmagadypmw8grgdjdx2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df87749128bcfd27ca93a65084a2e88cd9ed5c3f/recipes/org-make-toc"; - sha256 = "0xaw3d1axvln4pr7p0jnqf0j6fd1g6cra1gykvf6y12zx02xkchh"; - name = "recipe"; - }; - packageRequires = [ dash emacs org s ]; - meta = { - homepage = "https://melpa.org/#/org-make-toc"; - license = lib.licenses.free; - }; - }) {}; - org-mime = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-mime"; - ename = "org-mime"; - version = "20190513.637"; - src = fetchFromGitHub { - owner = "org-mime"; - repo = "org-mime"; - rev = "f8eac8ccdec2ebf1dec87d4f5f01b4b53f86c67c"; - sha256 = "0gjdhhri2fm93phvv3fnw6iz5agpafryacj521j80jf1dmj2bj5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime"; - sha256 = "14154pajl2bbawdd8iqfwgc67pcjp2lxl6f92c62nwq12wkcnny6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/org-mime"; - license = lib.licenses.free; - }; - }) {}; - org-mind-map = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-mind-map"; - ename = "org-mind-map"; - version = "20180826.1640"; - src = fetchFromGitHub { - owner = "theodorewiles"; - repo = "org-mind-map"; - rev = "41df4b2e30455494f1848b4e06cc9208aa9e902b"; - sha256 = "0y0yjb0w6s5yxklcxkmylmw031plxhl9dvachx325mb9qcwskycp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c8683ee547a6a99f8d258561c3ae157b1f427f2/recipes/org-mind-map"; - sha256 = "07wffzf4dzfj8bplwhr9yscm6l9wbz8y01j0jc8cw943z5b8pdgs"; - name = "recipe"; - }; - packageRequires = [ dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-mind-map"; - license = lib.licenses.free; - }; - }) {}; - org-mobile-sync = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-mobile-sync"; - ename = "org-mobile-sync"; - version = "20180605.2224"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/org-mobile-sync.git"; - rev = "06764b943a528827df1e2acc6bc7806cc2c1351f"; - sha256 = "0qdgs965ppihsz2ihyykdinr4n7nbb89d384z7kn985b17263lvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/org-mobile-sync"; - sha256 = "152mswykbz3m9w1grpsvb6wi9rg1vf3clnrl8qy6v911c0hy1s9c"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-mobile-sync"; - license = lib.licenses.free; - }; - }) {}; - org-mru-clock = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-mru-clock"; - ename = "org-mru-clock"; - version = "20190602.1108"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-mru-clock"; - rev = "a816e173ee22ff96f0fef6c54316e2583192af32"; - sha256 = "09zcnvz4mgw1lak5vnpa9b4r4gpskviyl2jwpjqmwqgvjhw31g0v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b36bf1c1faa4d7e38254416a293e56af96214136/recipes/org-mru-clock"; - sha256 = "1arww5x6vdyyn1bwxry91w88phbr9l6nk8xxrw40iqmmbhggahgm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-mru-clock"; - license = lib.licenses.free; - }; - }) {}; - org-msg = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild }: - melpaBuild { - pname = "org-msg"; - ename = "org-msg"; - version = "20181111.1015"; - src = fetchFromGitHub { - owner = "jeremy-compostella"; - repo = "org-msg"; - rev = "9c9ae7b37dc1404ff6d4de4b543ae01dd1562914"; - sha256 = "1gbjinnrn1y5506xjp8nmr15gh6pgwnwq1g8q30xmb3dbrrc43hx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6aec5f72baa870fe57df0fd366696329651a221f/recipes/org-msg"; - sha256 = "0pznyvjks4ga204nv9v1rn7y7ixki437gknp2h854kpf6pdlb2jy"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize ]; - meta = { - homepage = "https://melpa.org/#/org-msg"; - license = lib.licenses.free; - }; - }) {}; - org-multiple-keymap = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-multiple-keymap"; - ename = "org-multiple-keymap"; - version = "20150328.1806"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "org-multiple-keymap.el"; - rev = "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8"; - sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a22beed723d149282e70e3411b79e8ce9f5ab2b/recipes/org-multiple-keymap"; - sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-multiple-keymap"; - license = lib.licenses.free; - }; - }) {}; - org-notebook = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-notebook"; - ename = "org-notebook"; - version = "20170321.2152"; - src = fetchFromGitHub { - owner = "Rahi374"; - repo = "org-notebook"; - rev = "d90c4aeca2442161e6dd89de175561af85aace03"; - sha256 = "15hf0x0v4fz6gxj8qx9pfm6xic7qni33nn4ga6cxbdgpwgyr61wz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04149b1f158e857ea824fe120372ac52a000adcf/recipes/org-notebook"; - sha256 = "045xqmrik1s83chl7l7fnlav2p76xrfj21kacpjj215saz1f8nld"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-notebook"; - license = lib.licenses.free; - }; - }) {}; - org-noter = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-noter"; - ename = "org-noter"; - version = "20190502.725"; - src = fetchFromGitHub { - owner = "weirdNox"; - repo = "org-noter"; - rev = "920798e2a977ca74b77cf728ee40bb48450f941b"; - sha256 = "1sx4pf5hwbq7r967zigzq3jhhisd3x9pf3nmp7iickyd1jcg3qbv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2bc0d95dc2744277d6acbba1f7483b4c14d75c/recipes/org-noter"; - sha256 = "0vsc2b1yz9lw0zv1vnm722pl35kxpwhcdi7h6mijhnw8vv7rhixf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-noter"; - license = lib.licenses.free; - }; - }) {}; - org-octopress = callPackage ({ ctable - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , orglue }: - melpaBuild { - pname = "org-octopress"; - ename = "org-octopress"; - version = "20170820.2115"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "org-octopress"; - rev = "38598ef98d04076a8eb78d549907ddfde8d3a652"; - sha256 = "0bmj5wkwidj1v3b8ipligr0nkfdaxm82717nz8fqidz967q4xbk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fba6c3c645ba903f636814b5a2bb1baca0b5283b/recipes/org-octopress"; - sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw"; - name = "recipe"; - }; - packageRequires = [ ctable org orglue ]; - meta = { - homepage = "https://melpa.org/#/org-octopress"; - license = lib.licenses.free; - }; - }) {}; - org-onenote = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , oauth2 - , org - , request }: - melpaBuild { - pname = "org-onenote"; - ename = "org-onenote"; - version = "20171007.2200"; - src = fetchFromGitHub { - owner = "ifree"; - repo = "org-onenote"; - rev = "5ce5cf4edb143180e0b185ac26826d39ae5bc929"; - sha256 = "1jlnnb04ichcl155lklvjw91l8j1dvg77bv1815chak226aq4xqj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7705ee9a8733733664b6214bf4eec15d640c6895/recipes/org-onenote"; - sha256 = "0qgmizzryb6747yd80d3nic3546f4h8vjd6c30jr99vv2ildjsfk"; - name = "recipe"; - }; - packageRequires = [ oauth2 org request ]; - meta = { - homepage = "https://melpa.org/#/org-onenote"; - license = lib.licenses.free; - }; - }) {}; - org-outline-numbering = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org - , ov }: - melpaBuild { - pname = "org-outline-numbering"; - ename = "org-outline-numbering"; - version = "20180705.801"; - src = fetchFromGitLab { - owner = "andersjohansson"; - repo = "org-outline-numbering"; - rev = "b95b6a7ed9289637cb512232470633b330ca9713"; - sha256 = "03x3n2ywgk2x7slpzy26bw3l9l000pd964z0yifvf9fqhpbk5d0r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6dbd71c2176c1160e8418631d69f4bcba75845fd/recipes/org-outline-numbering"; - sha256 = "131cpvfsiv92bbicq5n7dlr6k643sk7xw31xs0lwmw4pxq44m8sg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ov ]; - meta = { - homepage = "https://melpa.org/#/org-outline-numbering"; - license = lib.licenses.free; - }; - }) {}; - org-outlook = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-outlook"; - ename = "org-outlook"; - version = "20160705.638"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "org-outlook.el"; - rev = "ec32d8d9d8ffd17e6de4de0b52fc3f5ad9b4cc0d"; - sha256 = "1la7g9qzn8wbfzc2zd6gddi1zl145b35311l66sjyffidmhgfw8d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/804a4b6802d2cf53e5415d956f0b4772853f4c69/recipes/org-outlook"; - sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-outlook"; - license = lib.licenses.free; - }; - }) {}; - org-page = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , git - , ht - , htmlize - , lib - , melpaBuild - , mustache - , org - , simple-httpd }: - melpaBuild { - pname = "org-page"; - ename = "org-page"; - version = "20170806.1924"; - src = fetchFromGitHub { - owner = "kelvinh"; - repo = "org-page"; - rev = "50430ababf73a2d090881a952e9770badaf7478b"; - sha256 = "1xph0pdcbzlxfnbhhad2jgkznrl2vs76yl3jd29ny4xsl0n3gglw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/872f163d4da58760009001472e2240f00d4d2d89/recipes/org-page"; - sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - git - ht - htmlize - mustache - org - simple-httpd - ]; - meta = { - homepage = "https://melpa.org/#/org-page"; - license = lib.licenses.free; - }; - }) {}; - org-parser = callPackage ({ dash - , emacs - , fetchhg - , fetchurl - , ht - , lib - , melpaBuild }: - melpaBuild { - pname = "org-parser"; - ename = "org-parser"; - version = "20190206.2121"; - src = fetchhg { - url = "https://bitbucket.com/zck/org-parser.el"; - rev = "8610aef8dc87"; - sha256 = "0vqh37y2b0dc8p9c04ici1h9n9ghd1jizcr1c2zvp75cyqsz09wv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28d55005cbce276cda21021a8d9368568cb4bcc6/recipes/org-parser"; - sha256 = "06yb78mf486b986dhvqg3avflfyi271vykyars465qpk0v8ahq8h"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht ]; - meta = { - homepage = "https://melpa.org/#/org-parser"; - license = lib.licenses.free; - }; - }) {}; - org-password-manager = callPackage ({ dash - , fetchgit - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-password-manager"; - ename = "org-password-manager"; - version = "20180227.1010"; - src = fetchgit { - url = "https://github.com/leafac/org-password-manager"; - rev = "4b30a36e71182553a02e4dd415369290d98ec03a"; - sha256 = "1a6i3g032c5xzsnaf7rprn22kk68y1ay3w21p3q52p3lvlzhnfis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fba84d698f7d16ffc0dc16618efcd1cdc0b39d79/recipes/org-password-manager"; - sha256 = "0wxvl6ypgn6ky1z3dh33ya3rh73znkh5f8qhqwfmwp7hy2mbl4la"; - name = "recipe"; - }; - packageRequires = [ dash org s ]; - meta = { - homepage = "https://melpa.org/#/org-password-manager"; - license = lib.licenses.free; - }; - }) {}; - org-pdfview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , pdf-tools }: - melpaBuild { - pname = "org-pdfview"; - ename = "org-pdfview"; - version = "20180225.206"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "org-pdfview"; - rev = "09ef4bf8ff8319c1ac78046c7e6b89f6a0beb82c"; - sha256 = "15zxdq6f6w3l8pzg3b58cj37z61dx106jwslpqni71m8wczdqkz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-pdfview"; - sha256 = "1qhlmzf2ffcrjnx4yghv7n6rsry8bcwnkw489spgraq9vxvqklah"; - name = "recipe"; - }; - packageRequires = [ org pdf-tools ]; - meta = { - homepage = "https://melpa.org/#/org-pdfview"; - license = lib.licenses.free; - }; - }) {}; - org-pivotal = callPackage ({ a - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "org-pivotal"; - ename = "org-pivotal"; - version = "20181216.636"; - src = fetchFromGitHub { - owner = "org-pivotal"; - repo = "org-pivotal"; - rev = "d18e91a9f4480b0b25c1b6283ff6522e15276d62"; - sha256 = "1f1n461h8wa7rx3z728dws0sfkgdvww3jjwq120q0dfyjibcfjri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1257d38bbd3a9944135b000e962f30ab28f5464/recipes/org-pivotal"; - sha256 = "1gv4968akh2wx92d7q1i1mpl9ndygkq8ssdwg6cf19wp8mk18088"; - name = "recipe"; - }; - packageRequires = [ a dash dash-functional emacs request ]; - meta = { - homepage = "https://melpa.org/#/org-pivotal"; - license = lib.licenses.free; - }; - }) {}; - org-pomodoro = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-pomodoro"; - ename = "org-pomodoro"; - version = "20190530.745"; - src = fetchFromGitHub { - owner = "lolownia"; - repo = "org-pomodoro"; - rev = "aa07c11318f91219336197e62c47bc7a3d090479"; - sha256 = "0nbprh2nhnmb7ngp9ndr6zr37ashcsvpi5slv7a37x1dl7j6w1k4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro"; - sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-pomodoro"; - license = lib.licenses.free; - }; - }) {}; - org-present = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-present"; - ename = "org-present"; - version = "20180303.1530"; - src = fetchFromGitHub { - owner = "rlister"; - repo = "org-present"; - rev = "d13acd70eff6a1608bc991920232146a0de76b21"; - sha256 = "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aba18f15fbaab115456e6afc9433074558a379f5/recipes/org-present"; - sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-present"; - license = lib.licenses.free; - }; - }) {}; - org-present-remote = callPackage ({ elnode - , emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org-present }: - melpaBuild { - pname = "org-present-remote"; - ename = "org-present-remote"; - version = "20181001.1441"; - src = fetchFromGitLab { - owner = "duncan-bayne"; - repo = "org-present-remote"; - rev = "aca889be14400d68fb6b86bb89702942883e06b9"; - sha256 = "0xmsaza4i702hvm49kg8hh871isr4j5ra8w3yc27n2447jlsniif"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66b092084565634cac8dd07b7b1694d0ddb236ba/recipes/org-present-remote"; - sha256 = "06xxxa8hxfxx47bs6wxi8nbgqc8nm82c3h0yv1ddlm35qfscggks"; - name = "recipe"; - }; - packageRequires = [ elnode emacs org-present ]; - meta = { - homepage = "https://melpa.org/#/org-present-remote"; - license = lib.licenses.free; - }; - }) {}; - org-pretty-tags = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-pretty-tags"; - ename = "org-pretty-tags"; - version = "20190527.155"; - src = fetchFromGitLab { - owner = "marcowahl"; - repo = "org-pretty-tags"; - rev = "9cc14f19bffd6efc733f6b1ab43198659c61a7ef"; - sha256 = "1dxf3kgcbysb150j0jpsbs94vb8qy34pmdpd5ds2wgsjpvzxqy28"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ad60399420764d4ef5d6acddae9241205937e78/recipes/org-pretty-tags"; - sha256 = "19cxfjl6c0yhsc7kfjd6imckcvzdsaws3yd1s3nazhnkm3kan3h4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-pretty-tags"; - license = lib.licenses.free; - }; - }) {}; - org-preview-html = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-preview-html"; - ename = "org-preview-html"; - version = "20180624.2319"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "org-preview-html"; - rev = "8ba7ecd7ac624f33b3e2395f477bbff4f1ec4efe"; - sha256 = "1h46v0ckhfzv3fixcfxk7pkmh56c5lana8kpwiknm447q1wmlbx4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-preview-html"; - sha256 = "1dnr046mk5ngmic2yqcmrnn7pzrrx3sg22rk2pc3vgdxs8bhvhf9"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-preview-html"; - license = lib.licenses.free; - }; - }) {}; - org-projectile = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org-category-capture - , projectile - , s }: - melpaBuild { - pname = "org-projectile"; - ename = "org-projectile"; - version = "20190130.639"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "0291ef425c96d02d634fc7e199146d7c3da0455b"; - sha256 = "0ljpvykz9s92j9ixkxbwxj5lw0prslmq3ipw0plgzzz3rvf4j75a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d7a7ab98f364d3d5e93f83f0cb3d80a95f28689/recipes/org-projectile"; - sha256 = "0xdkd5pkyi6yfqi4przgp5mpklyxfxv0cww285zdlh00rzl935cw"; - name = "recipe"; - }; - packageRequires = [ dash emacs org-category-capture projectile s ]; - meta = { - homepage = "https://melpa.org/#/org-projectile"; - license = lib.licenses.free; - }; - }) {}; - org-projectile-helm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , org-projectile }: - melpaBuild { - pname = "org-projectile-helm"; - ename = "org-projectile-helm"; - version = "20180601.1122"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "674e3cdda4a3ea4bdcc369dae032d49dfb5c5765"; - sha256 = "02ia5i8aal9gck248v6kqzffsp09mmf4cispdbhqkp83mz96bxdn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-projectile-helm"; - sha256 = "0x79j5yr9wsgzjf1dpp7d4xiji8hgyhr79vb973an5z2r02vnaf4"; - name = "recipe"; - }; - packageRequires = [ emacs helm org-projectile ]; - meta = { - homepage = "https://melpa.org/#/org-projectile-helm"; - license = lib.licenses.free; - }; - }) {}; - org-protocol-jekyll = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-protocol-jekyll"; - ename = "org-protocol-jekyll"; - version = "20170328.939"; - src = fetchFromGitHub { - owner = "vonavi"; - repo = "org-protocol-jekyll"; - rev = "dec064a42d6dfe81dfde7ba59ece5ca103ac6334"; - sha256 = "1pgc0lfbz6q2x8b5qkk766i5qylql4p0ng732rcqr7rzg6j31gm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1ee7c75da91fcf303ea89d148a05ac1e58e23e/recipes/org-protocol-jekyll"; - sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-protocol-jekyll"; - license = lib.licenses.free; - }; - }) {}; - org-radiobutton = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-radiobutton"; - ename = "org-radiobutton"; - version = "20180612.328"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "org-radiobutton"; - rev = "4182aafbe5ae1bdfb0b07efa435bdba8bbd7199d"; - sha256 = "0jm5ijs4pjzvlzpqk3k9qqcvaza2lmz2c0fcxf1g357v643bmaj4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/105043d8cfcb62ed89ddf9870f615519e6f415e7/recipes/org-radiobutton"; - sha256 = "16ly42iyfh7d34yz4bvdpj3zrlwkw3kmh82gwr25a05mlsdc1d93"; - name = "recipe"; - }; - 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"; - ename = "org-random-todo"; - version = "20190214.1257"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-random-todo"; - rev = "4f7677af740e8f3f7cfaf630ae2e594a125af760"; - sha256 = "1xk4vp2138p58jdxn51vnmpnij5bzc2jbpq7y8avdcv0p7618fdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80fad6244ea3e5bdf7f448c9f62374fae45bae78/recipes/org-random-todo"; - sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; - name = "recipe"; - }; - packageRequires = [ alert emacs ]; - meta = { - homepage = "https://melpa.org/#/org-random-todo"; - license = lib.licenses.free; - }; - }) {}; - org-randomnote = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-randomnote"; - ename = "org-randomnote"; - version = "20190403.933"; - src = fetchFromGitHub { - owner = "mwfogleman"; - repo = "org-randomnote"; - rev = "f35a9d948751ad409aa057bfb68f1d008fdf9442"; - sha256 = "01nf3h5sg74lph1hjj7q77pxn6xxv4zq9cjnd97a7bfbpilq86a0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d92cb392b23701948176ba12516df5ae6608e950/recipes/org-randomnote"; - sha256 = "06i42ig7icap1i1mqzv5cqwhnmsrzpjmjbjjn49nv26ljr3mjw0b"; - name = "recipe"; - }; - packageRequires = [ dash f org ]; - meta = { - homepage = "https://melpa.org/#/org-randomnote"; - license = lib.licenses.free; - }; - }) {}; - org-re-reveal = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , htmlize - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-re-reveal"; - ename = "org-re-reveal"; - version = "20190518.0"; - src = fetchFromGitLab { - owner = "oer"; - repo = "org-re-reveal"; - rev = "9d4a1bee112db8007c0e0a1fcb6be725f787a79a"; - sha256 = "1pq3ynp441j1vhac0cz98r2riqw2187vdwc33hz92924kly66m9h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3e6c90a6b9004fbf0fbc08556f8effbcde8b468/recipes/org-re-reveal"; - sha256 = "05p8iml0fapi4yf7ky45kf7m0ksz917lxg7c4pdd9hjkjmz29xn9"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize org ]; - meta = { - homepage = "https://melpa.org/#/org-re-reveal"; - license = lib.licenses.free; - }; - }) {}; - org-re-reveal-ref = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org-re-reveal - , org-ref }: - melpaBuild { - pname = "org-re-reveal-ref"; - ename = "org-re-reveal-ref"; - version = "20190301.704"; - src = fetchFromGitLab { - owner = "oer"; - repo = "org-re-reveal-ref"; - rev = "7b13e1ab54eecebd92e73bf52a0d504816e5702d"; - sha256 = "0na74q70zn8zh22vc7r3d7r8pnv2610pg28chdvbrn92l0m8i1fw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/391ef29288507aa2b0ad5d568419b66e5a883b2f/recipes/org-re-reveal-ref"; - sha256 = "0dd5b4g8ih98ma25jwlvdwgfadc75qcxr9zm74x5r6pr87amcb7n"; - name = "recipe"; - }; - packageRequires = [ emacs org-re-reveal org-ref ]; - meta = { - homepage = "https://melpa.org/#/org-re-reveal-ref"; - license = lib.licenses.free; - }; - }) {}; - org-recent-headings = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , frecency - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-recent-headings"; - ename = "org-recent-headings"; - version = "20190115.740"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-recent-headings"; - rev = "01633b51ac3958b41cc6c79e6d3714047a91c1e9"; - sha256 = "0gsrzmg3mssh9s28yjm9m866fnhm1pcligssz1q6brga6dm6f2yy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/668b79c179cbdb77c4049e7c620433255f63d808/recipes/org-recent-headings"; - sha256 = "0b51pyxdk8fdbksx7h1c88sw1liwng8wkjfb1q7w7lglw6f8sjsa"; - name = "recipe"; - }; - packageRequires = [ dash emacs frecency org ]; - meta = { - homepage = "https://melpa.org/#/org-recent-headings"; - license = lib.licenses.free; - }; - }) {}; - org-recur = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-recur"; - ename = "org-recur"; - version = "20190304.235"; - src = fetchFromGitHub { - owner = "m-cat"; - repo = "org-recur"; - rev = "28abdfcfdbcda36702ce568ccd8a5f3e40797d16"; - sha256 = "0gk54251dh73srgxcfqq49q2daf5mp63lzl9c876wcixk5g6qmj6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbdf8c9a3c7c289ce13542a12769a7f3d7f53d72/recipes/org-recur"; - sha256 = "0qlpwia2dg4l00jahc3si0mi27gv6zlvkbdx0rq37dh61dabgkiq"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-recur"; - license = lib.licenses.free; - }; - }) {}; - org-redmine = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-redmine"; - ename = "org-redmine"; - version = "20160711.414"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "org-redmine"; - rev = "a526c3ac802634486bf10de9c2283ccb1a30ec8d"; - sha256 = "04lfnyq6d86wa3acvjd4w2wvh538z9crsgsg4rgpyahklc5vm01f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/017a9dd8029d083ca0c1307f2b83be187c7615e5/recipes/org-redmine"; - sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-redmine"; - license = lib.licenses.free; - }; - }) {}; - 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"; - ename = "org-ref"; - version = "20190604.848"; - src = fetchFromGitHub { - owner = "jkitchin"; - repo = "org-ref"; - rev = "e95f3434a5c5a298321d2c6898a72337a8079781"; - sha256 = "1l5zvys4i91jl5z46b11j3xc9015d1cj57ilzxa693pbckln173f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref"; - sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; - name = "recipe"; - }; - packageRequires = [ - dash - emacs - f - helm - helm-bibtex - htmlize - hydra - ivy - key-chord - pdf-tools - s - ]; - meta = { - homepage = "https://melpa.org/#/org-ref"; - license = lib.licenses.free; - }; - }) {}; - org-repo-todo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-repo-todo"; - ename = "org-repo-todo"; - version = "20171227.1719"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "org-repo-todo"; - rev = "f73ebd91399c5760ad52c6ad9033de1066042003"; - sha256 = "0c74zwmac8x1y8jimdx473v0falpky2kfig8pnaxavz415gb315q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17b602004628e17dae0f46f2b33be0afb05f729/recipes/org-repo-todo"; - sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-repo-todo"; - license = lib.licenses.free; - }; - }) {}; - org-reverse-datetree = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-reverse-datetree"; - ename = "org-reverse-datetree"; - version = "20190527.740"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "org-reverse-datetree"; - rev = "4ad43bb2895c2ec99e6b2338aceb4c18387f03b4"; - sha256 = "0ga0bggn1552qnj7vrhxr6q6lma725cbb4mh9rn1nj2xn0yn2qal"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a08612af18bb620955f7b5450eba3f44cdb60673/recipes/org-reverse-datetree"; - sha256 = "0fiwba8hh9617d1zqvxxz2l8p2iq56lkv5c16q7prc69m0s5zhjb"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/org-reverse-datetree"; - license = lib.licenses.free; - }; - }) {}; - org-review = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-review"; - ename = "org-review"; - version = "20160906.2237"; - src = fetchFromGitHub { - owner = "brabalan"; - repo = "org-review"; - rev = "44773bbd9868bb3ddca27cd35d2fc54139a70ab5"; - sha256 = "1iqcxdni680pgl9azi7khx2ns3mh8sgpbq1mcc4ivxkbwrb93crb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-review"; - sha256 = "1v7p7pmrjjyj0my9xw55gsn9vvr9aq5x53x13nmspvqg47z6bd98"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-review"; - license = lib.licenses.free; - }; - }) {}; - org-rich-yank = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-rich-yank"; - ename = "org-rich-yank"; - version = "20181120.554"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-rich-yank"; - rev = "d2f350c5296cf05d6c84b02762ba44f09a02b4e3"; - sha256 = "0gxb0fnh5gxjmld0hnk5hli0cvdd8gjd27m30bk2b80kwldxlq1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1261823d88459b6ac42d6c55c157a326173663df/recipes/org-rich-yank"; - sha256 = "1v0sc90g5sl6b9ylxbk2y8s3pvxkf4v7k2rkzpgpbp4nrq0miy4y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-rich-yank"; - license = lib.licenses.free; - }; - }) {}; - org-rtm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rtm }: - melpaBuild { - pname = "org-rtm"; - ename = "org-rtm"; - version = "20160214.436"; - src = fetchFromGitHub { - owner = "pmiddend"; - repo = "org-rtm"; - rev = "adc42ad1fbe92ab447ccc9553780f4456f2508d2"; - sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-rtm"; - sha256 = "1hdcwmiv2qivdr2g78xz9fl38wn45vj0bn55dbsdj3qx7k7wgfx6"; - name = "recipe"; - }; - packageRequires = [ rtm ]; - meta = { - homepage = "https://melpa.org/#/org-rtm"; - license = lib.licenses.free; - }; - }) {}; - org-seek = callPackage ({ ag - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-seek"; - ename = "org-seek"; - version = "20161216.2102"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "org-seek.el"; - rev = "1f51e6634e3b9a6a29d335d0d14370a6ffef2265"; - sha256 = "0aq3af6fd16lm9iirzya6hmc8g48kfp8pc4dx51mgb5d6jjiizkv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-seek"; - sha256 = "04ay4abm03kn15cn45ldrzh2rw6gr6ia3qrj7hn5crd75ppwvln7"; - name = "recipe"; - }; - packageRequires = [ ag emacs ]; - meta = { - homepage = "https://melpa.org/#/org-seek"; - license = lib.licenses.free; - }; - }) {}; - org-snooze = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-snooze"; - ename = "org-snooze"; - version = "20181229.624"; - src = fetchFromGitHub { - owner = "xueeinstein"; - repo = "org-snooze.el"; - rev = "8799adc14a20f3489063d279ff69312de3180bf9"; - sha256 = "0ni5vm6b8c09ybn9rg3smdsxq1mxyqvndi00wn718my7939g82kb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd04816fb53fe01fa9924ec928c1dd41f2219d6a/recipes/org-snooze"; - sha256 = "00iwjj249vzqnfvbmlzrjig1sfhzbpv9kcpz95i3ir1w1qhw5119"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-snooze"; - license = lib.licenses.free; - }; - }) {}; - org-sql = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-sql"; - ename = "org-sql"; - version = "20190529.1959"; - src = fetchFromGitHub { - owner = "ndwarshuis"; - repo = "org-sql"; - rev = "1fc730deb82471b4235f931e808d8610a18be2dd"; - sha256 = "1nwlxh6c8gds2alclmlbsx834qmw4chgjlwqmmrwxaxpwapr0s8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/012573a35a302e9bb6f127cf28ac04f93796400e/recipes/org-sql"; - sha256 = "15alnx74pmr6jc2yx2c1dbpk0fbdzil8bffj7cfj7ywj2xadmzpg"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/org-sql"; - license = lib.licenses.free; - }; - }) {}; - org-starter = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-starter"; - ename = "org-starter"; - version = "20190604.507"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "org-starter"; - rev = "726e402fcf3357ee6ae077dc5507c7b71a872f24"; - sha256 = "0s8nv6qjd9vmxp8qsvsl3bsd2ppjs9mg8acqnv27zra1algzfg0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bdd9c835184ef1a6fabfaf7adb56a51514b75ea/recipes/org-starter"; - sha256 = "0vb11g5lvkvazrdzgdjvl8w7y5rr5nppg6685gq9pl6hw3sda0bs"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/org-starter"; - license = lib.licenses.free; - }; - }) {}; - org-static-blog = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-static-blog"; - ename = "org-static-blog"; - version = "20190527.2157"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "org-static-blog"; - rev = "53d53b6d02c2369654196c230056630cb21bd8d8"; - sha256 = "06zdyinl00xy59khab0r7454bmlchyc755k953lxv1sfhqmnb2r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0768d41a3de625c04ac8644ef2e05f17ee99908/recipes/org-static-blog"; - sha256 = "07vh2k7cj0cs1yzfmrrz9p03x5mbfh0bigbl93s72h1wf7i05rkw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-static-blog"; - license = lib.licenses.free; - }; - }) {}; - org-sticky-header = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-sticky-header"; - ename = "org-sticky-header"; - version = "20190406.1613"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-sticky-header"; - rev = "2847035ec559a46bd7b555f220f819c88371d538"; - sha256 = "0g6hdg11jzzpw7h0f6p795l5aj6pag2nhhfbx90cg28j61d28vwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9a600bd156eb766ba5ce37e16f3e8253f37ee8/recipes/org-sticky-header"; - sha256 = "0ign3vjckmxp7n3625wb53qlch07c3s4l67jsvk38dhhcsg1rhnj"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-sticky-header"; - license = lib.licenses.free; - }; - }) {}; - org-super-agenda = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-super-agenda"; - ename = "org-super-agenda"; - version = "20190314.2321"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-super-agenda"; - rev = "eaad1198590de9346ccf374ae835c76667e5c653"; - sha256 = "03grvmqrpnpw47pbanr6cs3h8bygijwf0bin7j1q622fi16x3bx6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd27b2df7594a867529de4b84c8107f82dabe2e9/recipes/org-super-agenda"; - sha256 = "1h3kqvpjq2w0n8qiqwb8wcpdy2g4ac7j6kin0943g7p5gm5yf0ra"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht org s ]; - meta = { - homepage = "https://melpa.org/#/org-super-agenda"; - license = lib.licenses.free; - }; - }) {}; - org-sync = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-sync"; - ename = "org-sync"; - version = "20181203.1623"; - src = fetchFromGitHub { - owner = "arbox"; - repo = "org-sync"; - rev = "e34a385fa9e658c8341a0a6e6bc3472d4d536bb8"; - sha256 = "1xk0wqr66wjh00wgbr4f0q02zchmzdgpz2inz316zfjm4cik8y5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/923ddbaf1a158caac5e666a396a8dc66969d204a/recipes/org-sync"; - sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-sync"; - license = lib.licenses.free; - }; - }) {}; - org-sync-snippets = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-sync-snippets"; - ename = "org-sync-snippets"; - version = "20190318.1044"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "org-sync-snippets"; - rev = "50cefe5a37196ed1af3d330d6871c3b37fa90d41"; - sha256 = "13d1adymxn3b579syyaszgg98h3kh3hwn97pdfzghfli1cd9fb9y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96aff3f39adfa0c68aca8ff8d3b11fbfd889327e/recipes/org-sync-snippets"; - sha256 = "0kv15zqva2cgx7jscp02x9gx20b5ckf525h546hyca86vfaakfbp"; - name = "recipe"; - }; - packageRequires = [ emacs f org ]; - meta = { - homepage = "https://melpa.org/#/org-sync-snippets"; - license = lib.licenses.free; - }; - }) {}; - org-table-comment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-table-comment"; - ename = "org-table-comment"; - version = "20120209.1051"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "org-table-comment.el"; - rev = "33b9966c33ecbc3e27cca67c2f2cdea04364d74e"; - sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c1f08c41969bc8a7104fb914564b4f6cab667e2/recipes/org-table-comment"; - sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-table-comment"; - license = lib.licenses.free; - }; - }) {}; - org-table-sticky-header = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-table-sticky-header"; - ename = "org-table-sticky-header"; - version = "20170408.1814"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "org-table-sticky-header"; - rev = "93dc69efc00ac9fd3cc2ece5100f51df33ec7d8b"; - sha256 = "0d9d9sxak6kvqbb91h65ahw272d7dfxpgjw6zbs472xb6di1r6pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5dd0e18bf4c3f3263eff8aff6d7c743a554243b5/recipes/org-table-sticky-header"; - sha256 = "1rk41279rcsdma39zpr1ka5p47gh1d0969wahd0jbm5xlmx5gz2m"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-table-sticky-header"; - license = lib.licenses.free; - }; - }) {}; - org-tfl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-tfl"; - ename = "org-tfl"; - version = "20170923.518"; - src = fetchFromGitHub { - owner = "storax"; - repo = "org-tfl"; - rev = "f0d7d39106a1de5457f5160cddd98ab892b61066"; - sha256 = "1rwdibiq0w4nzccmvdkpwnmfga70y35lfg2xlkqxd02x7bfl7j3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl"; - sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-tfl"; - license = lib.licenses.free; - }; - }) {}; - org-themis = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-themis"; - ename = "org-themis"; - version = "20160121.2004"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "org-themis"; - rev = "78aadbbe22b1993be5c4accd0d3f91a4e85c9a3c"; - sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60e0efe4f201ed96e90c437e3e7205e0344d4676/recipes/org-themis"; - sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-themis"; - license = lib.licenses.free; - }; - }) {}; - org-time-budgets = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-time-budgets"; - ename = "org-time-budgets"; - version = "20151111.1"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "org-time-budgets"; - rev = "530dd4ce72f94a86db28b3e19c164e64df2a29ab"; - sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/776b58b433ab7dde5870300d288c3e6734fc32c0/recipes/org-time-budgets"; - sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-time-budgets"; - license = lib.licenses.free; - }; - }) {}; - org-timeline = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-timeline"; - ename = "org-timeline"; - version = "20190213.1106"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "org-timeline"; - rev = "aed995c1db6c8bfd9db0a75a978f5e261aab38e5"; - sha256 = "1jz44lag1j4rawqjpcgb9zrs88vfi7vjgdh756hs2ln7i1cnvgh5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/298bd714f6cefd83d594b0eea731a01fb2faf1ad/recipes/org-timeline"; - sha256 = "0zlhjzjc7jwqh6wcys17hraz76n2hnjwffis02x71maclrf2cfdd"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/org-timeline"; - license = lib.licenses.free; - }; - }) {}; - org-toodledo = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred }: - melpaBuild { - pname = "org-toodledo"; - ename = "org-toodledo"; - version = "20150301.313"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "org-toodledo"; - rev = "01b53b637f304b89cd3bf2d29009b5ed6ad9466d"; - sha256 = "1c6kc79f6qkg7dl40mzmhcjph29i8frcfvfcvz4b155ilxwzr0z4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4956fb6c5f1076a02f07d0f953e846fee39bfaa6/recipes/org-toodledo"; - sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request-deferred ]; - meta = { - homepage = "https://melpa.org/#/org-toodledo"; - license = lib.licenses.free; - }; - }) {}; - org-tracktable = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-tracktable"; - ename = "org-tracktable"; - version = "20161118.529"; - src = fetchFromGitHub { - owner = "tty-tourist"; - repo = "org-tracktable"; - rev = "8e0e60a582a034bd66d5efb72d513140b7d4d90a"; - sha256 = "1aq7qv5jyc2x2a4iphnzmmsvak6dbi7nwdcf3m8nly8w75vrl5lj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57263d996e321f842d0741898370390146606c63/recipes/org-tracktable"; - sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/org-tracktable"; - license = lib.licenses.free; - }; - }) {}; - org-transform-tree-table = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org-transform-tree-table"; - ename = "org-transform-tree-table"; - version = "20150110.633"; - src = fetchFromGitHub { - owner = "jplindstrom"; - repo = "emacs-org-transform-tree-table"; - rev = "0a9bf07f01bc5fc3b349aff64e83999a8de83b52"; - sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afca0e652a993848610606866609edbf2f5f76ae/recipes/org-transform-tree-table"; - sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/org-transform-tree-table"; - license = lib.licenses.free; - }; - }) {}; - org-tree-slide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-tree-slide"; - ename = "org-tree-slide"; - version = "20181226.147"; - src = fetchFromGitHub { - owner = "takaxp"; - repo = "org-tree-slide"; - rev = "603a383117b8c19004baeecfe34837e20568fdbd"; - sha256 = "0c6q2pdsq2dn66b3ghbz8p85qnaklq1pjyj6gja32w040nnzs413"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6160c259bc4bbcf3b98c220222430f798ee6463f/recipes/org-tree-slide"; - sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-tree-slide"; - license = lib.licenses.free; - }; - }) {}; - org-trello = callPackage ({ dash - , dash-functional - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred - , s }: - melpaBuild { - pname = "org-trello"; - ename = "org-trello"; - version = "20190304.100"; - src = fetchFromGitHub { - owner = "org-trello"; - repo = "org-trello"; - rev = "f02e92f5d7be03289f774875fc4e6877fe7b1aaa"; - sha256 = "0c0f6wf7d86nq3kwvjr429ddxz3q3aylm2apahw19hxx212vipb3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello"; - sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional deferred request-deferred s ]; - meta = { - homepage = "https://melpa.org/#/org-trello"; - license = lib.licenses.free; - }; - }) {}; - org-variable-pitch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-variable-pitch"; - ename = "org-variable-pitch"; - version = "20190409.1115"; - src = fetchFromGitHub { - owner = "cadadr"; - repo = "elisp"; - rev = "a2bf11f6dd8c990c50929759c7b6ccdb4af78cd4"; - sha256 = "1qqr2vd4yz413cvqfb4sk6rv8990nhcz5cr59va8zcz5d7gdzv2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9632b7e98772b584d6420f8d0f9652d67118e05e/recipes/org-variable-pitch"; - sha256 = "1xci5zq1bpwnm3adlcsxzpskxywzalb1n3n14lvf787f77ib602c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-variable-pitch"; - license = lib.licenses.free; - }; - }) {}; - org-vcard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-vcard"; - ename = "org-vcard"; - version = "20170929.410"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "org-vcard"; - rev = "dbe266b79df4fb31f1766010322bf4e383ce1c03"; - sha256 = "1rcqcgxvjshbz3n1p376h618xapj03n6m7b3cxgv9gnryviyr6ax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df860814a09c376c9a6a2c5e7f528bbae29810b2/recipes/org-vcard"; - sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-vcard"; - license = lib.licenses.free; - }; - }) {}; - org-wc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-wc"; - ename = "org-wc"; - version = "20180609.1953"; - src = fetchFromGitHub { - owner = "tesujimath"; - repo = "org-wc"; - rev = "0716c1e8276f6953e139e357e97566e792c8be19"; - sha256 = "0wx4z6y3wn6948bz2pgrpffd4jzwgplvjkh0rnra4gihrapg1bv8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/852e0a5cee285cc9b5e2cd9e18061fc0fe91d5a6/recipes/org-wc"; - sha256 = "1yk2py4bzm2yr8vw6rbgl2hfpd21hf4fga0d5q6y779631klp6wl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-wc"; - license = lib.licenses.free; - }; - }) {}; - org-web-tools = callPackage ({ dash - , emacs - , esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , request - , s }: - melpaBuild { - pname = "org-web-tools"; - ename = "org-web-tools"; - version = "20190115.952"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-web-tools"; - rev = "d98fe92f71705662a9c56ad01f04ddf23ac7cb19"; - sha256 = "0igninqrb9l54g0fqfcp9h30k5xgc1amz522fwmx78fpr3rw258b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f082bfb480649d21f586b7eb331c19d57e7a84cf/recipes/org-web-tools"; - sha256 = "19zpspap85fjqg5a20ps34rcigb0ws986pj6dzd7xik8s6ia29s7"; - name = "recipe"; - }; - packageRequires = [ dash emacs esxml org request s ]; - meta = { - homepage = "https://melpa.org/#/org-web-tools"; - license = lib.licenses.free; - }; - }) {}; - org-wild-notifier = callPackage ({ alert - , async - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-wild-notifier"; - ename = "org-wild-notifier"; - version = "20190312.1013"; - src = fetchFromGitHub { - owner = "akhramov"; - repo = "org-wild-notifier.el"; - rev = "db143f812ed65f5ab6c75d0d686b73da20300b32"; - sha256 = "17p2r8y6ihl51i6r1gh0lfxyqnsfx0098ylzx7i0fb8slffjbk2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/114552a24f73f13b253e3db4885039b680f6ef33/recipes/org-wild-notifier"; - sha256 = "1lmpa614jnkpmfg3m1d2wjn9w0zig3gwd02n3dyjn23n71fiyhkp"; - name = "recipe"; - }; - packageRequires = [ alert async dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/org-wild-notifier"; - license = lib.licenses.free; - }; - }) {}; - org-wunderlist = callPackage ({ alert - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , request-deferred - , s }: - melpaBuild { - pname = "org-wunderlist"; - ename = "org-wunderlist"; - version = "20150817.1913"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "org-wunderlist.el"; - rev = "18565a018364db123dd0785c3c459a33ac458a2c"; - sha256 = "1yyhh9ys67cg3y64vwi5nsl4vz793lkl4gpbv6jar8j5ryfg0z5w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44019e5d9e3d0f3e2cf76fa5828e1f953fd5e60b/recipes/org-wunderlist"; - sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib emacs org request-deferred s ]; - meta = { - homepage = "https://melpa.org/#/org-wunderlist"; - license = lib.licenses.free; - }; - }) {}; - org2blog = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , hydra - , lib - , melpaBuild - , metaweblog - , org - , xml-rpc }: - melpaBuild { - pname = "org2blog"; - ename = "org2blog"; - version = "20190308.2042"; - src = fetchFromGitHub { - owner = "org2blog"; - repo = "org2blog"; - rev = "bd6dd6b1b3ce57a72e7c229d3f035fc7c0d3860b"; - sha256 = "0c7viqq8cxkd6xxbvq53dbp1slsjjxs2fb2lyi3njfg18v5c6fks"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org2blog"; - sha256 = "15nr6f45z0i265llf8xs87958l5hvafh518k0s7jan7x1l6w5q33"; - name = "recipe"; - }; - packageRequires = [ htmlize hydra metaweblog org xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/org2blog"; - license = lib.licenses.free; - }; - }) {}; - org2ctex = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org2ctex"; - ename = "org2ctex"; - version = "20181011.1851"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "org2ctex"; - rev = "2143992462594ce63733305f75f7c7d08123710a"; - sha256 = "0xrg66yx4xrmkswbapaz21q4i6qm2199zvxqvgaxd8qyk19fc46c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f77fe537ca8ee2ddb6e3efe71f3b3c560c52c7d/recipes/org2ctex"; - sha256 = "0049zf3ls7vbbcz1hdwai57ih9gppk2j0gzwijzwkb23ccwaf64a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org2ctex"; - license = lib.licenses.free; - }; - }) {}; - org2elcomment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org2elcomment"; - ename = "org2elcomment"; - version = "20170324.245"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "org2elcomment"; - rev = "c88a75d9587c484ead18f7adf08592b09c1cceb0"; - sha256 = "19r7rxnd2cl0vc8bbf86mh5b779pl5z917657ymlc74bqq140m3x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8af13650de8b4a814832638d4182bf8ce576244c/recipes/org2elcomment"; - sha256 = "0jv8sskw55rzxw578l6nm4arsycrw1si80ds7gr8i0x352fdydyp"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org2elcomment"; - license = lib.licenses.free; - }; - }) {}; - org2issue = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , melpaBuild - , org - , ox-gfm - , s }: - melpaBuild { - pname = "org2issue"; - ename = "org2issue"; - version = "20190531.241"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "org2issue"; - rev = "910b98c858762fd14b11d261626c5e979dde0833"; - sha256 = "0xgrrbkfqkhj15n7mbmh61g8i535ykhxh5y71054p3kikgnrh290"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad1759854c3bd302aa353dea92cf462e981aff2f/recipes/org2issue"; - sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz"; - name = "recipe"; - }; - packageRequires = [ emacs gh org ox-gfm s ]; - meta = { - homepage = "https://melpa.org/#/org2issue"; - license = lib.licenses.free; - }; - }) {}; - org2jekyll = callPackage ({ dash-functional - , deferred - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org2jekyll"; - ename = "org2jekyll"; - version = "20170225.115"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "org2jekyll"; - rev = "52a19a5d372116262b9d613f4ec8490a3b49e329"; - sha256 = "14ld8ip487282if2sil96lfg5wx7632kg71sxhafygphbdl9vxd4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48a1e5bd5e338bd3593f004f95b6fbb12595bfb7/recipes/org2jekyll"; - sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; - name = "recipe"; - }; - packageRequires = [ dash-functional deferred kv s ]; - meta = { - homepage = "https://melpa.org/#/org2jekyll"; - license = lib.licenses.free; - }; - }) {}; - org2web = callPackage ({ cl-lib ? null - , dash - , el2org - , fetchFromGitHub - , fetchurl - , ht - , htmlize - , lib - , melpaBuild - , mustache - , org - , simple-httpd }: - melpaBuild { - pname = "org2web"; - ename = "org2web"; - version = "20171005.1617"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "org2web"; - rev = "5243b399927a4c474bb3b8d1c8a00799df1f27d7"; - sha256 = "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2864959163442165b9b1cd5471dc2649508decde/recipes/org2web"; - sha256 = "0lcqf0pgkd7jilasw1485fy45k269jxvyl7hl7qrcs94s6fy2vaf"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - el2org - ht - htmlize - mustache - org - simple-httpd - ]; - meta = { - homepage = "https://melpa.org/#/org2web"; - license = lib.licenses.free; - }; - }) {}; - organic-green-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "organic-green-theme"; - ename = "organic-green-theme"; - version = "20180522.920"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "organic-green-theme"; - rev = "200ac4a636eeb6faf1793d1937e62a343debc437"; - sha256 = "18a04grh4k9npf566xki9fiivy5qvpvv5v8mpj66wfx919fwa44c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9383ef5f0372724b34f4bb9173ef8ccbb773e19e/recipes/organic-green-theme"; - sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/organic-green-theme"; - license = lib.licenses.free; - }; - }) {}; - organize-imports-java = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "organize-imports-java"; - ename = "organize-imports-java"; - version = "20190516.2126"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "organize-imports-java"; - rev = "92989a7bf02340f8c65e1e69263c9c8ffc5afbeb"; - sha256 = "1pr4zbv2k0rjljppv0kiq37h0s62pzyvqypxagmjdfkhkn7jssvr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/organize-imports-java"; - sha256 = "1n91qd9il2sq5wkcc2ag8mvgr1jkgwygrw9kpq7j16qch420i3fj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/organize-imports-java"; - license = lib.licenses.free; - }; - }) {}; - orgbox = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "orgbox"; - ename = "orgbox"; - version = "20180826.1918"; - src = fetchFromGitHub { - owner = "yasuhito"; - repo = "orgbox"; - rev = "609e5e37348815ec3ba53ab6d643e38b0cc4fe17"; - sha256 = "0kg5ns87p8v6vsb7abgqcfnzi55fbgi7b5dj98hrvnlkv4sqz7pc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1948eca5a18f35b61b9a0baf532753fd105ba3a/recipes/orgbox"; - sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/orgbox"; - license = lib.licenses.free; - }; - }) {}; - orgit = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , org }: - melpaBuild { - pname = "orgit"; - ename = "orgit"; - version = "20190417.1024"; - src = fetchFromGitHub { - owner = "magit"; - repo = "orgit"; - rev = "a2d39370409b70dfe543329befbc876dd24832bd"; - sha256 = "0lxp74ncl75czmgy09lirng96ai1ykpw22q61wc655nsr5qqxrba"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit"; - sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit org ]; - meta = { - homepage = "https://melpa.org/#/orgit"; - license = lib.licenses.free; - }; - }) {}; - orglink = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "orglink"; - ename = "orglink"; - version = "20180318.1323"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "orglink"; - rev = "82ea67b7f1bf10627759044acb74828f66a85a83"; - sha256 = "0zqbz1idj73wz3kljkkzl7mvalk73j7xpl3di6mb16ylscg9sraw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink"; - sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; - name = "recipe"; - }; - packageRequires = [ dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/orglink"; - license = lib.licenses.free; - }; - }) {}; - orglue = callPackage ({ epic - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "orglue"; - ename = "orglue"; - version = "20171220.426"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "orglue"; - rev = "ae2a45c19b52e45db7891093a3ff17ba2e51c507"; - sha256 = "0h3b37wz4hlk022c0sq7c9p5z3v4n6cljhy8g1qjhnxac8y7mkr0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/orglue"; - sha256 = "1kj62y3cf3as2d5s207s6kg5alm09jmw0aag1z6lblrjlzbi1p2j"; - name = "recipe"; - }; - packageRequires = [ epic org ]; - meta = { - homepage = "https://melpa.org/#/orglue"; - license = lib.licenses.free; - }; - }) {}; - orgnav = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "orgnav"; - ename = "orgnav"; - version = "20170608.1013"; - src = fetchFromGitHub { - owner = "facetframer"; - repo = "orgnav"; - rev = "9e2cac9c1a67af5f0080e60022e821bf7b70312d"; - sha256 = "0764dg3dcsdy4i6syv9aqqmr47civn9dl3638g4lsqdikghw7lvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a41436df126d7ef2c0a8b56d90afb942fe47dc59/recipes/orgnav"; - sha256 = "0z04n5rzv5c0lvn658nrfj6rg3a31n369h5rjgi5bap06qm427ix"; - name = "recipe"; - }; - packageRequires = [ dash emacs helm s ]; - meta = { - homepage = "https://melpa.org/#/orgnav"; - license = lib.licenses.free; - }; - }) {}; - orgtbl-aggregate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orgtbl-aggregate"; - ename = "orgtbl-aggregate"; - version = "20180731.1454"; - src = fetchFromGitHub { - owner = "tbanel"; - repo = "orgaggregate"; - rev = "1079dfc3ca0f86fef6ca3e251f3829e031aef8c4"; - sha256 = "17acwy9x23xh2fb3xhy5w3lz6ssnrv5nf33zsqadra9y1cxs9fcc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf64b53c9d49718a8ffc39b14c90539b36840280/recipes/orgtbl-aggregate"; - sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/orgtbl-aggregate"; - license = lib.licenses.free; - }; - }) {}; - orgtbl-ascii-plot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orgtbl-ascii-plot"; - ename = "orgtbl-ascii-plot"; - version = "20151215.1351"; - src = fetchFromGitHub { - owner = "tbanel"; - repo = "orgtblasciiplot"; - rev = "cd91f6ae26a7402e192a1f4fd6248f5797edf19e"; - sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/21b02596ac4b48e592ebe966475b164866bb9d6e/recipes/orgtbl-ascii-plot"; - sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/orgtbl-ascii-plot"; - license = lib.licenses.free; - }; - }) {}; - orgtbl-join = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orgtbl-join"; - ename = "orgtbl-join"; - version = "20150121.1446"; - src = fetchFromGitHub { - owner = "tbanel"; - repo = "orgtbljoin"; - rev = "863f0bde0aa226ecc6d000d9bcb1424be407dfb0"; - sha256 = "0issbnl13lkfg3w0ia42mrjyvl8sl2blnmv2kazyd0lzkcfy1kap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e43ae8aaa54113f53b51aea3fb2656d608d1032c/recipes/orgtbl-join"; - sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/orgtbl-join"; - license = lib.licenses.free; - }; - }) {}; - orgtbl-show-header = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orgtbl-show-header"; - ename = "orgtbl-show-header"; - version = "20141023.137"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "orgtbl-show-header"; - rev = "2f13391f56cf94f8fe1dc79d6eccb662198f9b69"; - sha256 = "0s3pf18n7vh67am1pjaa22gh645088dbz2rgxixr9avpfyalaycj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c5ea906b1d642405ca532d89dbb32cf79f53582/recipes/orgtbl-show-header"; - sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/orgtbl-show-header"; - license = lib.licenses.free; - }; - }) {}; - origami = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "origami"; - ename = "origami"; - version = "20180101.753"; - src = fetchFromGitHub { - owner = "gregsexton"; - repo = "origami.el"; - rev = "1f38085c8f9af7842765ed63f7d6dfe4dab59366"; - sha256 = "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b816be227dfc7330292a50346c4bb37394d3e998/recipes/origami"; - sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/origami"; - license = lib.licenses.free; - }; - }) {}; - osx-browse = callPackage ({ browse-url-dwim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "osx-browse"; - ename = "osx-browse"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "osx-browse"; - rev = "838b81625853e04919fbb56fd21f387762b2e3f5"; - sha256 = "0c1jh9396bwgs3n7yh9lvyj464x66r4b40c8zm9sv73c6g80m77q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/osx-browse"; - sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; - name = "recipe"; - }; - packageRequires = [ browse-url-dwim string-utils ]; - meta = { - homepage = "https://melpa.org/#/osx-browse"; - license = lib.licenses.free; - }; - }) {}; - osx-clipboard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-clipboard"; - ename = "osx-clipboard"; - version = "20141012.17"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "osx-clipboard-mode"; - rev = "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d"; - sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71b85cd2b2122a2742f919d10bfcb054b681e61e/recipes/osx-clipboard"; - sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-clipboard"; - license = lib.licenses.free; - }; - }) {}; - osx-dictionary = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-dictionary"; - ename = "osx-dictionary"; - version = "20171026.34"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "osx-dictionary.el"; - rev = "b16630ecf69f87ac873486d8b9c8c03e6c9ea7fa"; - sha256 = "06qsg8hlw1b725pzpsg5f194pxqcg1pjncsi8j0815yrlzfcg6sp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary"; - sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/osx-dictionary"; - license = lib.licenses.free; - }; - }) {}; - osx-lib = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-lib"; - ename = "osx-lib"; - version = "20160919.1700"; - src = fetchFromGitHub { - owner = "raghavgautam"; - repo = "osx-lib"; - rev = "fdbbb41e07ba64d6a09b54bd142a7c7b83bfd09f"; - sha256 = "0n03yca62znrri1pg0cl4xzm4lkmdqyf1p9sm1vfjwlwxk552z5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b42ae666e3511752f5138927e7bf7965bd9f7ee5/recipes/osx-lib"; - sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/osx-lib"; - license = lib.licenses.free; - }; - }) {}; - osx-location = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-location"; - ename = "osx-location"; - version = "20150613.217"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "osx-location"; - rev = "110aee945b53ea550e4debe69bf3c077d940ec8c"; - sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8673dafb02a8d70c278bfd2c063f40992defe3a3/recipes/osx-location"; - sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-location"; - license = lib.licenses.free; - }; - }) {}; - osx-org-clock-menubar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-org-clock-menubar"; - ename = "osx-org-clock-menubar"; - version = "20150205.1311"; - src = fetchFromGitHub { - owner = "jordonbiondo"; - repo = "osx-org-clock-menubar"; - rev = "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3"; - sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cade09308a6b8c998800f2ad2592ad6ea79f65ca/recipes/osx-org-clock-menubar"; - sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-org-clock-menubar"; - license = lib.licenses.free; - }; - }) {}; - osx-pseudo-daemon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-pseudo-daemon"; - ename = "osx-pseudo-daemon"; - version = "20170721.2307"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "mac-pseudo-daemon"; - rev = "0358b3acd932082082971c489012bf139f5860dc"; - sha256 = "1scdqy8g8dx3qzii70p3m2gddqqy7dkv63p8nfkp7vw1y5m19426"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/osx-pseudo-daemon"; - sha256 = "1sch7bb8hl96fji2ayw2ah5cjgsga08wj44vddjxskyway8ykf0z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-pseudo-daemon"; - license = lib.licenses.free; - }; - }) {}; - osx-trash = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-trash"; - ename = "osx-trash"; - version = "20160520.600"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "osx-trash.el"; - rev = "0f1dc052d0a750b8c75f14530a4897f5d4324b4e"; - sha256 = "0f4md49175iyrgzv4pijf7qbxyddcm2yscrrlh91pg410la7fysk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f4c86e5b86df6c5c2c484f041fa3e434bbfbbb1/recipes/osx-trash"; - sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/osx-trash"; - license = lib.licenses.free; - }; - }) {}; - otama = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "otama"; - ename = "otama"; - version = "20160404.332"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "otama"; - rev = "b69e0740846ace7885b0c0717f7abe8d0419eefd"; - sha256 = "0javkbzsc4bbx121awbn35fb6lyvhskkkh9jb0byd51gpvg74g1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53b1eaef5c8b408eb8fff838af1e0249c4fe9444/recipes/otama"; - sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/otama"; - license = lib.licenses.free; - }; - }) {}; - other-emacs-eval = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "other-emacs-eval"; - ename = "other-emacs-eval"; - version = "20180408.648"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "other-emacs-eval"; - rev = "8ace5acafef65daabf0c6619eff60733d7f5d792"; - sha256 = "1pry1xw2p01b18ks5n0xs895qqqci7v2nrwjiil2vr3m1ys92ymc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75b6391726b0d5069e036930c2c5fa177c4e3422/recipes/other-emacs-eval"; - sha256 = "07sr5bb6x9w450cvfg32darg6jlwg11n7c1qhhk0ijcrnlsm09n7"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/other-emacs-eval"; - license = lib.licenses.free; - }; - }) {}; - outline-magic = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outline-magic"; - ename = "outline-magic"; - version = "20180619.1119"; - src = fetchFromGitHub { - owner = "tj64"; - repo = "outline-magic"; - rev = "2a5f07417b696cf7541d435c43bafcc64817636b"; - sha256 = "1iyslhk2zvhn4ip27apkjzkqw56lfakp2jzwz106jm45f3kllpc8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a98ad2ef680eef541ee82e8a65ed73e524df98a1/recipes/outline-magic"; - sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/outline-magic"; - license = lib.licenses.free; - }; - }) {}; - outline-minor-faces = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outline-minor-faces"; - ename = "outline-minor-faces"; - version = "20181122.321"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "outline-minor-faces"; - rev = "8788f3e6f922f54b4eccfb80e4c246203a7e81c3"; - sha256 = "1ms4mgh8jlvyhdsx5166jqfjdx6rqfbhaqzfrzplgcn6v37097l4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f252e45e8bd6e8af1267755d108f378a974ddaf1/recipes/outline-minor-faces"; - sha256 = "1728imdqmmfqw5f67w8xsailn2b09y4xgdr769pd6kx8z6lsi8zb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outline-minor-faces"; - license = lib.licenses.free; - }; - }) {}; - outline-toc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outline-toc"; - ename = "outline-toc"; - version = "20170730.430"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "outline-toc.el"; - rev = "31f04bea19cfcfb01a94d1fd2b72391cb02b7463"; - sha256 = "1pqz2ynw51n3f7d9hknz80d42017lccsggkg13zqmn51wkjpc48j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64b07ee55e87c4a1125ce18a8ae0a44661380ffe/recipes/outline-toc"; - sha256 = "13hy9ahla68qcbfbm7b5d0yy774qfc3byb6pn9c66k2wg4xh6pxb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/outline-toc"; - license = lib.licenses.free; - }; - }) {}; - outlined-elisp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outlined-elisp-mode"; - ename = "outlined-elisp-mode"; - version = "20131108.327"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "outlined-elisp-mode"; - rev = "c16cb02b540448919ad148f2be6a41523ee5489c"; - sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae918c301e1c0ae39574ae76d70059718724293b/recipes/outlined-elisp-mode"; - sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/outlined-elisp-mode"; - license = lib.licenses.free; - }; - }) {}; - outlook = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outlook"; - ename = "outlook"; - version = "20180428.730"; - src = fetchFromGitHub { - owner = "asavonic"; - repo = "outlook.el"; - rev = "b6a7a06b996d84647e8024412876e9e76ca884e4"; - sha256 = "0qyrpki1m4j0m32iadg58rjfy589lpig0547bhxzh51x4smkazhx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5ce3e6800213b117578a1022f25407f2ec1604f/recipes/outlook"; - sha256 = "0yq9zl7dr8kkm4rps5np4dwvjfhzsxq9wd1af7zwcmms4l3qry6k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outlook"; - license = lib.licenses.free; - }; - }) {}; - outorg = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outorg"; - ename = "outorg"; - version = "20181224.121"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "outorg"; - rev = "91065d2c1700e8da0ca360373391f1d8741128e6"; - sha256 = "1dqkyw3ll370j23r2yz51yc973a8ky5prmfgl79idv4rjzc5g72q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/outorg"; - sha256 = "10jh64d1nalfig69nnsib46915jinv37lvmxa0aj91zymq2szdm9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outorg"; - license = lib.licenses.free; - }; - }) {}; - outrespace = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outrespace"; - ename = "outrespace"; - version = "20180711.732"; - src = fetchFromGitHub { - owner = "articuluxe"; - repo = "outrespace"; - rev = "7dafed7e1cabf4a0bb55e5c6465e83796e3fdabe"; - sha256 = "0xdaaxvamjjghidxir1hpagrglxws646avl4d196g4z9y479wdyg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2659a78181b8fe98ca4a80c75ec8c9b6dff44bb5/recipes/outrespace"; - sha256 = "13xasp9vjb3n0smdhrh9pq1yhhrg3p6z14fmlvf6xqip52rx89hl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outrespace"; - license = lib.licenses.free; - }; - }) {}; - outshine = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , outorg }: - melpaBuild { - pname = "outshine"; - ename = "outshine"; - version = "20190313.453"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "outshine"; - rev = "210cc88bf9ee2fca2a283e4de89d4abe849d706b"; - sha256 = "0wi5kjsi3mbj4h64m09dgyzn67dmbxvrlib7vnc6p3qacqmzlmn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/outshine"; - sha256 = "1qqmvs17hq5s047nqplg4sa09xg5ck6zwqyg91xmbh71bx80v28v"; - name = "recipe"; - }; - packageRequires = [ cl-lib outorg ]; - meta = { - homepage = "https://melpa.org/#/outshine"; - license = lib.licenses.free; - }; - }) {}; - ov = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ov"; - ename = "ov"; - version = "20150311.2228"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "ov.el"; - rev = "4e1c254d74bc1773c92f1613c3865cdcb4bc7095"; - sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18d8a10ba3018cb61924af3a1682b82f543f2d98/recipes/ov"; - sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ov"; - license = lib.licenses.free; - }; - }) {}; - overcast-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "overcast-theme"; - ename = "overcast-theme"; - version = "20190326.946"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "overcast-theme"; - rev = "769078cb4a6ea87a31fcea0218c06e1ec689b97c"; - sha256 = "044g4y8ykh41b3ybxsgsrqvnkq8i1q8q8livh64b2qqrrjzq6mxg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d86691c61fc880954a05502a6474cc2fa0d0a43b/recipes/overcast-theme"; - sha256 = "1v8hdnvc4pfmadkvdm6b8z0cy20pminvhjdlr13q5m9immr88a4r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/overcast-theme"; - license = lib.licenses.free; - }; - }) {}; - overseer = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "overseer"; - ename = "overseer"; - version = "20180225.2219"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "overseer.el"; - rev = "02d49f582e80e36b4334c9187801c5ecfb027789"; - sha256 = "0q4ai7ividy8xv09s342y49s97ismhfdfsjk70zif60fp0ajfzfn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/overseer"; - sha256 = "0zbh0j21h6wsqnqvnzai6y6rpccdciksb7g64qw7fx0cpg5x2ms8"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pkg-info ]; - meta = { - homepage = "https://melpa.org/#/overseer"; - license = lib.licenses.free; - }; - }) {}; - ovpn-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ovpn-mode"; - ename = "ovpn-mode"; - version = "20190421.2048"; - src = fetchFromGitHub { - owner = "anticomputer"; - repo = "ovpn-mode"; - rev = "8d26902ea61c59e716147a7113493f110abdf635"; - sha256 = "04935x2acqh75snfcr0gz3k654qw619x7i89gqzs22liabll81s7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16430ce0597c18925d7fdf83acfca996e8ad6457/recipes/ovpn-mode"; - sha256 = "1p0gk3yiq7srpjcqhy0h2402m9ijb3nl9yz2lhnxvc41n9fj65gd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ovpn-mode"; - license = lib.licenses.free; - }; - }) {}; - owdriver = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , smartrep - , yaxception }: - melpaBuild { - pname = "owdriver"; - ename = "owdriver"; - version = "20170401.612"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "owdriver"; - rev = "d934f182bafe29aa16c173440eff3fef08b0ec10"; - sha256 = "0yy5sah7vcjxcik3sp2cxp9gvcryyzw799h8zf4wbvjxv74kd17c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3f9c1bb19345c6027a945e7f265632da1a391cb/recipes/owdriver"; - sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; - name = "recipe"; - }; - packageRequires = [ log4e smartrep yaxception ]; - meta = { - homepage = "https://melpa.org/#/owdriver"; - license = lib.licenses.free; - }; - }) {}; - ox-asciidoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-asciidoc"; - ename = "ox-asciidoc"; - version = "20181229.2220"; - src = fetchFromGitHub { - owner = "yashi"; - repo = "org-asciidoc"; - rev = "e931362e641f97d17dc738d22bb461e54045786d"; - sha256 = "045kci7xvlp0kg8gmplnybc7ydv66hkl88dxgd113ac7ipf9zir7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b268064f09ae5c3d15064b7d197c7af767fb278/recipes/ox-asciidoc"; - sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-asciidoc"; - license = lib.licenses.free; - }; - }) {}; - ox-bibtex-chinese = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-bibtex-chinese"; - ename = "ox-bibtex-chinese"; - version = "20170722.2009"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "ox-bibtex-chinese"; - rev = "2ad2364399229144110db7ef6365ad0461d6a38c"; - sha256 = "06lp56na1fv87296hhaxgb6gfnzln39p4v245gfxhk0k27589vxj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c09c708c4372451502923cd3cb756f4f98ba97b/recipes/ox-bibtex-chinese"; - sha256 = "0f3xigrkhc86vv23f76fdd4rjsspsd2ck5c65biq2ds247f4gm61"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ox-bibtex-chinese"; - license = lib.licenses.free; - }; - }) {}; - ox-clip = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-clip"; - ename = "ox-clip"; - version = "20180305.1940"; - src = fetchFromGitHub { - owner = "jkitchin"; - repo = "ox-clip"; - rev = "594c90953a91948505bb394350adf110e041f19a"; - sha256 = "1alm6hh7qg8sv50cm5p03icx47za2g7b2nvbwzx6kxkrgmgqfq6c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d9ae1e58a1f214a9b88627a2d3254ce7de50740/recipes/ox-clip"; - sha256 = "1sm0ivd8rypnl0z901anjsnbfjwhxqcaagqav82ybdb1z6x1qicv"; - name = "recipe"; - }; - packageRequires = [ htmlize org ]; - meta = { - homepage = "https://melpa.org/#/ox-clip"; - license = lib.licenses.free; - }; - }) {}; - ox-epub = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-epub"; - ename = "ox-epub"; - version = "20181101.1154"; - src = fetchFromGitHub { - owner = "ofosos"; - repo = "ox-epub"; - rev = "a66eeb00daa01ad403ac1a1db953ddbf9054be07"; - sha256 = "0ws2dpybrafck07q12w0avxglwr7crf4xcqxqnp48sj993v2qggx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3ac31dfef00e83fa6b716ea006f35afb5dc6cd5/recipes/ox-epub"; - sha256 = "15q6vsmgv76c0qfdxa3prqvgmr6n7k4rd4bpi05574ibi23y0ynh"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-epub"; - license = lib.licenses.free; - }; - }) {}; - ox-gfm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-gfm"; - ename = "ox-gfm"; - version = "20170628.1402"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "ox-gfm"; - rev = "99f93011b069e02b37c9660b8fcb45dab086a07f"; - sha256 = "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10e90430f29ce213fe57c507f06371ea0b29b66b/recipes/ox-gfm"; - sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ox-gfm"; - license = lib.licenses.free; - }; - }) {}; - ox-html5slide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-html5slide"; - ename = "ox-html5slide"; - version = "20131227.2206"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "org-html5slide"; - rev = "4703dfbd9d79161509def673d2c1e118d722a58f"; - sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7a7fd72c9bbb5d90e0e096b791971f2b64b8463/recipes/ox-html5slide"; - sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-html5slide"; - license = lib.licenses.free; - }; - }) {}; - ox-hugo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-hugo"; - ename = "ox-hugo"; - version = "20190602.1941"; - src = fetchFromGitHub { - owner = "kaushalmodi"; - repo = "ox-hugo"; - rev = "5be9bae6fe0d6aa7cd6c8e158c34e4a90d6e6e36"; - sha256 = "155a6wady9gq36hm62ximj2fw1bx7m8k68aim1w9kbf7da80qwaa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e1240bb7b5bb8773f804b987901566a20e3e8a9/recipes/ox-hugo"; - sha256 = "1niarxj2y4a14lrv2nqcc36msw7k61h8fbjpcdrfbaw3n0kchd40"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-hugo"; - license = lib.licenses.free; - }; - }) {}; - ox-impress-js = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-impress-js"; - ename = "ox-impress-js"; - version = "20150412.1016"; - src = fetchFromGitHub { - owner = "kinjo"; - repo = "org-impress-js.el"; - rev = "91c6d2af6af308ade352a03355c4fb551b238c6b"; - sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5e79b4b897daca80f26440107abaddf0a480db9/recipes/ox-impress-js"; - sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-impress-js"; - license = lib.licenses.free; - }; - }) {}; - ox-ioslide = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , makey - , melpaBuild - , org }: - melpaBuild { - pname = "ox-ioslide"; - ename = "ox-ioslide"; - version = "20161015.638"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "org-ioslide"; - rev = "6555680be5364c8ddd2bf446865cb1a82adb6b9e"; - sha256 = "05d1bykgj454g0vq2k2sd36pd9hmcwr9a8033dagkqc625h7wj4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b960abca4d642c47e640300876eefee1851e6b86/recipes/ox-ioslide"; - sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f makey org ]; - meta = { - homepage = "https://melpa.org/#/ox-ioslide"; - license = lib.licenses.free; - }; - }) {}; - ox-jekyll-md = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-jekyll-md"; - ename = "ox-jekyll-md"; - version = "20180831.1032"; - src = fetchFromGitHub { - owner = "gonsie"; - repo = "ox-jekyll-md"; - rev = "f997f41d89afd2360973ef8118b5221f17bba757"; - sha256 = "1padg3nq2fn7f5x96z19iqmknk5z3aa8yyipz0v3bdv0a3iqngli"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e7ddae7938158d9da24bee861a88d4875235269/recipes/ox-jekyll-md"; - sha256 = "0lfnrikrismcd2zyfb0sf3pwwx12cyki7kzs2mjlswq3sap8w544"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ox-jekyll-md"; - license = lib.licenses.free; - }; - }) {}; - ox-jira = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-jira"; - ename = "ox-jira"; - version = "20171001.216"; - src = fetchFromGitHub { - owner = "stig"; - repo = "ox-jira.el"; - rev = "23565783ca66e2aafc2aa03796e09dde4ae11c1a"; - sha256 = "169v87xmdr41f0wyjpq4wzmr1kfb8gf6x67c24v9dbb7bldynl2g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8a77d9c903acd6d7fdcb53f63384144e85589c9/recipes/ox-jira"; - sha256 = "088ks14d7slgs2qsqp1kkxvqzzhdkwphdvpg27ix686dz1krxxib"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-jira"; - license = lib.licenses.free; - }; - }) {}; - ox-mdx-deck = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ox-hugo }: - melpaBuild { - pname = "ox-mdx-deck"; - ename = "ox-mdx-deck"; - version = "20181115.1047"; - src = fetchFromGitHub { - owner = "WolfeCub"; - repo = "ox-mdx-deck"; - rev = "f3dbc35870b69a5d8971b1647da8c5468f520c5d"; - sha256 = "0v82d3ylmrh6pbha4kxs3lif40jfa3sd0adqarmz7yyqccv9ixkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1a86dfe682f65daf529f9f62dd494fd860be9/recipes/ox-mdx-deck"; - sha256 = "1k41sbqcfrj485ps11f6xdb1kxp7kh22k0zhn9vrjb5mxwdilfyl"; - name = "recipe"; - }; - packageRequires = [ emacs ox-hugo ]; - meta = { - homepage = "https://melpa.org/#/ox-mdx-deck"; - license = lib.licenses.free; - }; - }) {}; - ox-mediawiki = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ox-mediawiki"; - ename = "ox-mediawiki"; - version = "20180105.1354"; - src = fetchFromGitHub { - owner = "tomalexander"; - repo = "orgmode-mediawiki"; - rev = "a9327150293e370e500ba55bddfe5fc435c6bf9b"; - sha256 = "0dsq86hli24imdkgsf45asx23kriw9di3d0cf5z8axfpkcbkn770"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24244d146306ce965df382c8958c7574c74313f2/recipes/ox-mediawiki"; - sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/ox-mediawiki"; - license = lib.licenses.free; - }; - }) {}; - ox-minutes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-minutes"; - ename = "ox-minutes"; - version = "20180202.934"; - src = fetchFromGitHub { - owner = "kaushalmodi"; - repo = "ox-minutes"; - rev = "27c29f3fdb9181322ae56f8bace8d95e621230e5"; - sha256 = "10rw12gmg3d6fvkqijmjnk5bdpigvm8fy34435mwg7raw0gmlq75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/162d0dacbb7252508147edb52fe33b1927a6bd69/recipes/ox-minutes"; - sha256 = "13rwcp0k9h7l5g8xw2s2r1xhsmkibhfqyq6hlicvddv232g724sj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ox-minutes"; - license = lib.licenses.free; - }; - }) {}; - ox-nikola = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , ox-rst }: - melpaBuild { - pname = "ox-nikola"; - ename = "ox-nikola"; - version = "20151114.316"; - src = fetchFromGitHub { - owner = "msnoigrs"; - repo = "ox-nikola"; - rev = "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48"; - sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e3fa1b0728ad3058376800ec5e2e9e3847c1d2f/recipes/ox-nikola"; - sha256 = "13k5wggz8bhnfgpsc09jnisk7xdb226d6imp7v6vmd1ax9m2xb0w"; - name = "recipe"; - }; - packageRequires = [ emacs org ox-rst ]; - meta = { - homepage = "https://melpa.org/#/ox-nikola"; - license = lib.licenses.free; - }; - }) {}; - ox-pandoc = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-pandoc"; - ename = "ox-pandoc"; - version = "20180510.638"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "ox-pandoc"; - rev = "aa37dc7e94213d4ebedb85c384c1ba35007da18e"; - sha256 = "0iibxplgdp34bpq1yll2gmqjd8d8lnqn4mqjvx6cdf0y438yr4jz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ox-pandoc"; - sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ht org ]; - meta = { - homepage = "https://melpa.org/#/ox-pandoc"; - license = lib.licenses.free; - }; - }) {}; - ox-pukiwiki = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-pukiwiki"; - ename = "ox-pukiwiki"; - version = "20150124.916"; - src = fetchFromGitHub { - owner = "yashi"; - repo = "org-pukiwiki"; - rev = "b53920abf698fa6682623d671108393e92c68bd7"; - sha256 = "031xl8wry4frbc3d5d0nq7bca6y4plij9v8v8p8rg5ms3sh2fhjq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd4043336e54c6ae3976068a1af5cfe58713e408/recipes/ox-pukiwiki"; - sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-pukiwiki"; - license = lib.licenses.free; - }; - }) {}; - ox-qmd = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-qmd"; - ename = "ox-qmd"; - version = "20170402.957"; - src = fetchFromGitHub { - owner = "0x60df"; - repo = "ox-qmd"; - rev = "3a24c7a0b3ec80e494b977e14a3dfb94c9f1d8ec"; - sha256 = "030nay81c49ings96akzzy108a6agg91rvpmg0pf05qmjysfysmf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e71826e8a8c30b0eb535cce7a379740011b79534/recipes/ox-qmd"; - sha256 = "1i2kdpp6prgphc1l42nz7q6vdfsbcn2vvlf10s7dfhhr8jzcyyy7"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-qmd"; - license = lib.licenses.free; - }; - }) {}; - ox-reveal = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-reveal"; - ename = "ox-reveal"; - version = "20180721.2003"; - src = fetchFromGitHub { - owner = "yjwen"; - repo = "org-reveal"; - rev = "1cdd088ec5fab631c564dca7f9f74fd3e9b7d4d4"; - sha256 = "1vjxjadq2i74p96y9jxnqj1yb86fsgxzmn7bjgnb88ay6nvc1l72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2f267bb13a2fe5e1af49fd70d831a07d83b7d5/recipes/ox-reveal"; - sha256 = "1lsq9xx95nhz1914wx7781fajfs84m27iwv980hqq29lyn2lzbl6"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-reveal"; - license = lib.licenses.free; - }; - }) {}; - ox-rfc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-rfc"; - ename = "ox-rfc"; - version = "20190429.433"; - src = fetchFromGitHub { - owner = "choppsv1"; - repo = "org-rfc-export"; - rev = "4cac33c387bc10e32f18940298aa5095d060ed3e"; - sha256 = "0y442swdsh8fl3471bz9276r2srv6dp7j12y09s82xx5nm668nmb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3f49159d6a379bf435e2af8920176fd84693a60/recipes/ox-rfc"; - sha256 = "0vqh923223rmhy39p4lwmdv6azba7cddkc1zi5pp3zpcijmhxzk4"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-rfc"; - license = lib.licenses.free; - }; - }) {}; - ox-rst = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-rst"; - ename = "ox-rst"; - version = "20180314.1713"; - src = fetchFromGitHub { - owner = "msnoigrs"; - repo = "ox-rst"; - rev = "a74b60883b0d844c80efb364dac1560b85f2548f"; - sha256 = "0smgz2q7bjj2svx1gdr187m58yxq1hs878bciz9h6jcp03a9sb61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85770d6e235217e98dda9d8b9f027a4ba3ebba96/recipes/ox-rst"; - sha256 = "0447q0gvasii57rp391la9prz0w228jnzgi59s785vzswdryww0n"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-rst"; - license = lib.licenses.free; - }; - }) {}; - ox-slack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , ox-gfm }: - melpaBuild { - pname = "ox-slack"; - ename = "ox-slack"; - version = "20181119.331"; - src = fetchFromGitHub { - owner = "titaniumbones"; - repo = "ox-slack"; - rev = "96d90914e6df1a0141657fc51f1dc5bb8f1da6bd"; - sha256 = "1cda5c35wm7aqyj7yj80wkwb79dgzlzis1dlpysdxv30ahcf4w8p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55fda67a19f8799f00c8304a14ab88dde236aa48/recipes/ox-slack"; - sha256 = "0ggw64lx93crfzm1sfwqhsfhaprkbyrjay88nyn43frf7c5l4a63"; - name = "recipe"; - }; - packageRequires = [ org ox-gfm ]; - meta = { - homepage = "https://melpa.org/#/ox-slack"; - license = lib.licenses.free; - }; - }) {}; - ox-slimhtml = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-slimhtml"; - ename = "ox-slimhtml"; - version = "20181219.50"; - src = fetchFromGitHub { - owner = "balddotcat"; - repo = "ox-slimhtml"; - rev = "a764ef64235845e4f5cfd73244d6cf1e7fee903b"; - sha256 = "14h0kks7i2k53fwbsqb4giafacm58inppqpr5mbj904cy146g29f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6fae8e3c4abd37a651d4cbdb337a74f1a7c7366a/recipes/ox-slimhtml"; - sha256 = "16jrw8n26iy69ibr29bp3pqp4lm66alihks37qipd2g5grqqfdnd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ox-slimhtml"; - license = lib.licenses.free; - }; - }) {}; - ox-spectacle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-spectacle"; - ename = "ox-spectacle"; - version = "20181211.153"; - src = fetchFromGitHub { - owner = "lorniu"; - repo = "ox-spectacle"; - rev = "9d3ec9a6326289074d8620e97d65e3105307ff51"; - sha256 = "1gm8wwpsq10cfppzl104g3x2g9bha1209p2n8mj9azv71b9mszqx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f441e1b3ee30065f8a68c9b0b45d9db0cac8a289/recipes/ox-spectacle"; - sha256 = "1nf4765dihlcjbifhb9dinqin27ivqj2s8wzh1hj4vc3n8mdx5pr"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-spectacle"; - license = lib.licenses.free; - }; - }) {}; - ox-textile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-textile"; - ename = "ox-textile"; - version = "20180502.247"; - src = fetchFromGitHub { - owner = "yashi"; - repo = "org-textile"; - rev = "b179abaa6616604c6efe32cb509e62ad46e7374e"; - sha256 = "1hwrnnrhrdp5cjn81wipzi5j8zr82kpwlvr6hna2cj2zr3r7a6m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02a68a7a99ecce8f1afa03e72ff1f636edaf5868/recipes/ox-textile"; - sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-textile"; - license = lib.licenses.free; - }; - }) {}; - ox-tiddly = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-tiddly"; - ename = "ox-tiddly"; - version = "20180626.1352"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "org8-wikiexporters"; - rev = "21317d7e963f79e7b883962ca097eab049115799"; - sha256 = "1s5s2h3kpsx5cn1lqzsn9h2w7zlcgh51d679lyy45f9szm26hn3y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ox-tiddly"; - sha256 = "1rpbnz152af588r8kafqpg9aq3ngwjfkrsjqk6w90l5rh280yi39"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/ox-tiddly"; - license = lib.licenses.free; - }; - }) {}; - ox-trac = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-trac"; - ename = "ox-trac"; - version = "20171026.1123"; - src = fetchFromGitHub { - owner = "JalapenoGremlin"; - repo = "ox-trac"; - rev = "5ac6c81bbc18db6c17e267d6399778c3fb5bf1ee"; - sha256 = "1bg8bis4ykyq3iy6x93wksyigwg7jyzphlhfvvvqk093sp15fgd9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b73753ef9229d0fdfbe237acc63126f1786a494/recipes/ox-trac"; - sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/ox-trac"; - license = lib.licenses.free; - }; - }) {}; - ox-tufte = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-tufte"; - ename = "ox-tufte"; - version = "20160926.907"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "ox-tufte"; - rev = "ca1b16eb91b25bb4f05e58e9b6692e8486c8c619"; - sha256 = "0vyb1ilkywdhjx0j8hq1h993jh6ylwshmqiaa04fq4kbk9yqvspf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0e1592b788ef7218cfb4b3da8599b6cd23eef357/recipes/ox-tufte"; - sha256 = "15b7aml9nl1kh8gbc086nb155f5mzlh8dmq41zi9frn6gskzjnfk"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-tufte"; - license = lib.licenses.free; - }; - }) {}; - ox-twbs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-twbs"; - ename = "ox-twbs"; - version = "20161103.1316"; - src = fetchFromGitHub { - owner = "marsmining"; - repo = "ox-twbs"; - rev = "2414e6b1de7deb6dd2ae79a7be633fdccb9c2f28"; - sha256 = "0kd45p8y7ykadmai4jn1x1pgpafyqggwb1ccbjzalxw4k9wmd45f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ox-twbs"; - sha256 = "050rv270jlkc1v7wp47cv9cwr9pz3n840dd4jxxhfs6s47b9ln73"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ox-twbs"; - license = lib.licenses.free; - }; - }) {}; - ox-twiki = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-twiki"; - ename = "ox-twiki"; - version = "20170803.1339"; - src = fetchFromGitHub { - owner = "dfeich"; - repo = "org8-wikiexporters"; - rev = "970bb8ed0e4c4426c37a929b1fe08f944c1cf74f"; - sha256 = "14k9jsz7vkjqxn2xpj71qg54w0laqr99178bzsmbapkfp5yxrib5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/084da2cc725cc23b02657e7adb14ec31532ad25a/recipes/ox-twiki"; - sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/ox-twiki"; - license = lib.licenses.free; - }; - }) {}; - ox-wk = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-wk"; - ename = "ox-wk"; - version = "20190526.324"; - src = fetchFromGitHub { - owner = "w-vi"; - repo = "ox-wk.el"; - rev = "3da2213be1874d9d3e8a9337b09003d9c102b943"; - sha256 = "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0947993df2d9bee493c2c25760f1ac5bcc1136ac/recipes/ox-wk"; - sha256 = "0rb4xkkqb65ly01lb1gl3gyz4yj9hzv4ydbdzsbvmpj0hrdw5nv3"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-wk"; - license = lib.licenses.free; - }; - }) {}; - p4 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "p4"; - ename = "p4"; - version = "20150721.1237"; - src = fetchFromGitHub { - owner = "gareth-rees"; - repo = "p4.el"; - rev = "eff047caa75dbe4965defca9d1212454cdb755d5"; - sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7e2fa7af647e0dbf5ade5c32d1984b133156b6f/recipes/p4"; - sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/p4"; - license = lib.licenses.free; - }; - }) {}; - pabbrev = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pabbrev"; - ename = "pabbrev"; - version = "20160320.1401"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "pabbrev"; - rev = "56400d5d256b42ffe45c229ea9827f026b650cf5"; - sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c032b0d126e0196b4526ee04f5103582610681ea/recipes/pabbrev"; - sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pabbrev"; - license = lib.licenses.free; - }; - }) {}; - pacfiles-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pacfiles-mode"; - ename = "pacfiles-mode"; - version = "20181028.1044"; - src = fetchFromGitHub { - owner = "UndeadKernel"; - repo = "pacfiles-mode"; - rev = "ff58f387e0f85ca20c4c9f119bf13303bf8b5a76"; - sha256 = "1my9qhnla61wgrhf0izjx0kyjrxwyz3cfh3xp80mmnxhxrrf21kl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bec20443188d9218235c4b31840544a7b1e0690d/recipes/pacfiles-mode"; - sha256 = "08yc3w7zvckg8s1g707hvbbkvi2k52jrk2iwlj0sk22ih3q3yaa9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pacfiles-mode"; - license = lib.licenses.free; - }; - }) {}; - pack = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pack"; - ename = "pack"; - version = "20190312.249"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "pack-el"; - rev = "6a41f8db54e0cf0e6b1219bd6745a7c09c7bd6b3"; - sha256 = "0vha9kbdak14p96m43h9qcp9fxqsbsx9lj0qj48rh8wp97nczi3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96f55c1f15ca24134da378a1ea31f7bb31c84ea9/recipes/pack"; - sha256 = "0lwdhfrpqwpqqg3yhcyj11jv2mm8k9k54qdxlhdi8sxj1fdxmanw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pack"; - license = lib.licenses.free; - }; - }) {}; - package-build = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-build"; - ename = "package-build"; - version = "20190313.2140"; - src = fetchFromGitHub { - owner = "melpa"; - repo = "package-build"; - rev = "d023f14b78feddf890cb7e1ded47704c9e2b0303"; - sha256 = "16zrgg2jxnsmiza448067nggbdy78xgn90cz2mcvxqnpvgkrc1kz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/948fb86b710aafe6bc71f95554655dfdfcab0cca/recipes/package-build"; - sha256 = "0kr82j9rbvmapsph0jdxy24p0b8mcnj01sg1myywf428nf30cgbh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/package-build"; - license = lib.licenses.free; - }; - }) {}; - package-filter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-filter"; - ename = "package-filter"; - version = "20161121.2319"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "package-filter"; - rev = "c8e2531227c02c4c5e9d593f2cdb6a4ab4a6849b"; - sha256 = "001h92jchz6x6pm8bj90law0yzc5xd84f703z7fcwan4k0g1iwl7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89312eaf69f3d7ac46647255c847fcb45415e78d/recipes/package-filter"; - sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/package-filter"; - license = lib.licenses.free; - }; - }) {}; - package-lint = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-lint"; - ename = "package-lint"; - version = "20190519.352"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "package-lint"; - rev = "152492f8325451f002c5090b837f7abcf5861e8b"; - sha256 = "02lmc1np5vs4rdsazbazxry2ighhww7w5r0k60jxbwd2yar6hibp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbfb0250a58b2e31c32ff1496ed66a3c5439bd67/recipes/package-lint"; - sha256 = "05akg9cgcqbgja966iv2j878y14d5wvky6m9clkfbw5wyg66xpr0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/package-lint"; - license = lib.licenses.free; - }; - }) {}; - package-lint-flymake = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , package-lint }: - melpaBuild { - pname = "package-lint-flymake"; - ename = "package-lint-flymake"; - version = "20181117.56"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "package-lint"; - rev = "83f34f747a13633c92210e6110e3c5377397761c"; - sha256 = "0mljhvc03a8fj3zn5rz8i3mfcb8vd4xfaxmb7m7h9gr8ap3lwz7g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbfb0250a58b2e31c32ff1496ed66a3c5439bd67/recipes/package-lint-flymake"; - sha256 = "076v3xvbxym7dwwl95j8kynj9kj2xw3gzq6qv6qkm0xls7df4yjz"; - name = "recipe"; - }; - packageRequires = [ emacs package-lint ]; - meta = { - homepage = "https://melpa.org/#/package-lint-flymake"; - license = lib.licenses.free; - }; - }) {}; - package-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-plus"; - ename = "package+"; - version = "20170815.1956"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "package"; - rev = "09f37a21256223a770d3b6a6174cb7da427720c3"; - sha256 = "149ba7nq380azi4rypvk0xqdv3bin2sqvab9q1kcwg3kidhspx8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49cfbbc4535aa7e175aa819d67b8aa52a6f94384/recipes/package+"; - sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/package+"; - license = lib.licenses.free; - }; - }) {}; - package-safe-delete = callPackage ({ emacs - , epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-safe-delete"; - ename = "package-safe-delete"; - version = "20150116.807"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "package-safe-delete"; - rev = "138171e4fc03c0ef05a8260cbb5cd2e114c1c194"; - sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61b961211276bd95655b6a0967eda5037a3d240b/recipes/package-safe-delete"; - sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; - name = "recipe"; - }; - packageRequires = [ emacs epl ]; - meta = { - homepage = "https://melpa.org/#/package-safe-delete"; - license = lib.licenses.free; - }; - }) {}; - package-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , restart-emacs }: - melpaBuild { - pname = "package-utils"; - ename = "package-utils"; - version = "20180514.715"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "package-utils"; - rev = "5621b95c56b55499f0463fd8b29501da25d861bd"; - sha256 = "1mhsf0l0253d9b7n3c68mw5kwnsk7wf217y7m2fiybh51bdgjfnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils"; - sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; - name = "recipe"; - }; - packageRequires = [ restart-emacs ]; - meta = { - homepage = "https://melpa.org/#/package-utils"; - license = lib.licenses.free; - }; - }) {}; - packed = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "packed"; - ename = "packed"; - version = "20180318.1029"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "packed"; - rev = "788ea94bff319d6a776954c32cff1de8b400f051"; - sha256 = "1sga68hf6zf5j8sb56zqy35p5gn6x7c12m6h8q1gzazfy7xz57p0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/packed"; - sha256 = "103z6fas2fkvlhvwbv1rl6jcij5pfsv5vlqqsb4dkq1b0s7k11jd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/packed"; - license = lib.licenses.free; - }; - }) {}; - pacmacs = callPackage ({ cl-lib ? null - , dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pacmacs"; - ename = "pacmacs"; - version = "20160131.32"; - src = fetchFromGitHub { - owner = "codingteam"; - repo = "pacmacs.el"; - rev = "d813e9c62c2540fe619234824fc60e128c786442"; - sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52ce427e046267655dd9f836e57176d59f23e601/recipes/pacmacs"; - sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dash-functional emacs f ]; - meta = { - homepage = "https://melpa.org/#/pacmacs"; - license = lib.licenses.free; - }; - }) {}; - pact-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pact-mode"; - ename = "pact-mode"; - version = "20180905.947"; - src = fetchFromGitHub { - owner = "kadena-io"; - repo = "pact-mode"; - rev = "5f401b282e2f8f897fd67e882312875f967be4d6"; - sha256 = "1nqr7jw2anyicr9pxypsmqqwzjn9qnn770gsmdz6r2xam55j81vg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8e11b488c937ac9290f2e6acde92a87024a9012/recipes/pact-mode"; - sha256 = "1awmczhz4cl2vxrn0h1wqkrhy1n9p4j3ayksvgifr4cfhqlsxk6v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pact-mode"; - license = lib.licenses.free; - }; - }) {}; - paganini-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paganini-theme"; - ename = "paganini-theme"; - version = "20180815.1221"; - src = fetchFromGitHub { - owner = "onurtemizkan"; - repo = "paganini"; - rev = "255c5a2a8abee9c5935465ec42b9c3604c178c3c"; - sha256 = "0qhmj8dyy722ds8cmwghhxknwwis1w64wix2hdmzs21c5pa5hgkw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6fbb609b411df4fe6f66a7afe27eda7d297f140/recipes/paganini-theme"; - sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/paganini-theme"; - license = lib.licenses.free; - }; - }) {}; - page-break-lines = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "page-break-lines"; - ename = "page-break-lines"; - version = "20190519.1538"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "page-break-lines"; - rev = "6f19d894bda6a981c10a58df5e23419f4d2ba353"; - sha256 = "0b9jlqf5hk5m5zywwfcgxjb88aqhij73fxwkp16psfm4bv0zy78p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/page-break-lines"; - sha256 = "0i5kx191wnq9763jyqxbyh33hvdaqbd98a1rhgqd97zhvg0hslz1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/page-break-lines"; - license = lib.licenses.free; - }; - }) {}; - pager = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pager"; - ename = "pager"; - version = "20151201.1720"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "pager"; - rev = "5c791ed23f1136e04040d6f4bc9b4ca5b6dc919f"; - sha256 = "198zlh7zrql1185b9qjim44a09kbbgs9zyahak9nhv1gxqn7mrdf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pager"; - sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pager"; - license = lib.licenses.free; - }; - }) {}; - pager-default-keybindings = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pager }: - melpaBuild { - pname = "pager-default-keybindings"; - ename = "pager-default-keybindings"; - version = "20130719.1357"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "pager-default-keybindings"; - rev = "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3"; - sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87faee8c9820dd47feccdfbce7fd57dbe2800405/recipes/pager-default-keybindings"; - sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci"; - name = "recipe"; - }; - packageRequires = [ pager ]; - meta = { - homepage = "https://melpa.org/#/pager-default-keybindings"; - license = lib.licenses.free; - }; - }) {}; - palimpsest = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "palimpsest"; - ename = "palimpsest"; - version = "20170119.1232"; - src = fetchFromGitHub { - owner = "danielsz"; - repo = "Palimpsest"; - rev = "168839453e25f8ff7f1b28170909e5428c8fe5f8"; - sha256 = "0j6cn0bc4vxvviawmkgkzdrmf3j5rbl8f7dkzvv6k1hislzhzpsb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14f6d011a0314637a2f4c1b00efa4912e67b7fa4/recipes/palimpsest"; - sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/palimpsest"; - license = lib.licenses.free; - }; - }) {}; - pallet = callPackage ({ cask - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pallet"; - ename = "pallet"; - version = "20150512.2"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "pallet"; - rev = "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501"; - sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf977287e9bd668efbd972c9937906384ee832c6/recipes/pallet"; - sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; - name = "recipe"; - }; - packageRequires = [ cask dash f s ]; - meta = { - homepage = "https://melpa.org/#/pallet"; - license = lib.licenses.free; - }; - }) {}; - pamparam = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , lib - , lispy - , melpaBuild - , worf }: - melpaBuild { - pname = "pamparam"; - ename = "pamparam"; - version = "20190122.612"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "pamparam"; - rev = "3593cea568da1b479e408180a75890e53d047429"; - sha256 = "0ayvkzxwncx9gqw9j0c06fy9x2i5fs9nbc77fprxcifiz7kl3x9s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03de45e491e970cc5733950a825b98545b5ac24b/recipes/pamparam"; - sha256 = "01n35a3fnwbb7w2qpk8b5f9wwmr6d5jcjzcv6gnc1768a43p9yzf"; - name = "recipe"; - }; - packageRequires = [ emacs hydra lispy worf ]; - meta = { - homepage = "https://melpa.org/#/pamparam"; - license = lib.licenses.free; - }; - }) {}; - panda = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "panda"; - ename = "panda"; - version = "20190604.1507"; - src = fetchFromGitHub { - owner = "sebasmonia"; - repo = "panda"; - rev = "85a8552e1131442afdf6354e67d79bf5bdb3a469"; - sha256 = "1yxdij2iaxzwbvrj7x0kxyxh3md99d8mb5mb9w7rxk7bfsx4cnn1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69800de45dda180450ed9d47a24181b659d9d1ae/recipes/panda"; - sha256 = "04app7ni9q04v7pi1ppi5qgx5klcpawflmbsj58y33gz29di1zjk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/panda"; - license = lib.licenses.free; - }; - }) {}; - panda-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "panda-theme"; - ename = "panda-theme"; - version = "20181128.938"; - src = fetchFromGitHub { - owner = "jamiecollinson"; - repo = "emacs-panda-theme"; - rev = "60aa47c7a930377807da0d601351ad91e8ca446a"; - sha256 = "169khnipnxv0y412wc2r5nsh9d9zwpdyip0l9ayyzb19zdjl1l47"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a90ca1275ceab8e1ea4fdfa9049fbd24a5fd0bf5/recipes/panda-theme"; - sha256 = "1q3zp331hz8l54p8ym9jrs4f36aj15r8aka6bqqnalnk237xqxl7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/panda-theme"; - license = lib.licenses.free; - }; - }) {}; - pandoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pandoc"; - ename = "pandoc"; - version = "20161128.357"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "pandoc.el"; - rev = "198d262d09e30448f1672338b0b5a81cf75e1eaa"; - sha256 = "0njc6xlwa8hihyqrk0hs12sb6rs7jma2wpjfr8xsj9p8jld4y359"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c21ff09d67fad2658e0de08bc2edb7588c504a/recipes/pandoc"; - sha256 = "0x81anxam7agr2v2zqgc331zs5s5zxcw54kzpanndda23n51h5cc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pandoc"; - license = lib.licenses.free; - }; - }) {}; - pandoc-mode = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "pandoc-mode"; - ename = "pandoc-mode"; - version = "20190211.1312"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "pandoc-mode"; - rev = "d135bb5b8874f1b16c053215ecb29e22f0f79657"; - sha256 = "1gmw78vjl82xlb4ajfiaf4q6hg35xadhjcvy7kyzr0kzs1zkkk4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode"; - sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; - name = "recipe"; - }; - packageRequires = [ dash hydra ]; - meta = { - homepage = "https://melpa.org/#/pandoc-mode"; - license = lib.licenses.free; - }; - }) {}; - pangu-spacing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pangu-spacing"; - ename = "pangu-spacing"; - version = "20190421.2214"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "pangu-spacing"; - rev = "3a741c1b669c7194fb766b784c10d52a8de9b87f"; - sha256 = "12980pwsk4pvvya2x9nbwzkyxy75qfqzs0jxl4jdblgrhh104bs0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6/recipes/pangu-spacing"; - sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pangu-spacing"; - license = lib.licenses.free; - }; - }) {}; - paper-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paper-theme"; - ename = "paper-theme"; - version = "20190124.1028"; - src = fetchFromGitHub { - owner = "cadadr"; - repo = "elisp"; - rev = "b19b37be332bada6b18d4d895edf6ce78ab420c4"; - sha256 = "0i97l8fdrjjb6dzfcqgss5yj4ibkiaxnj32sm6nyr2s7bijkvi4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7ea18a56370348715dec91f75adc162c800dd10/recipes/paper-theme"; - sha256 = "1ph6c6g907cnxzl74byc754119qia8rs8y7wvaj8i6q3fz2658zr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/paper-theme"; - license = lib.licenses.free; - }; - }) {}; - paperless = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "paperless"; - ename = "paperless"; - version = "20180224.445"; - src = fetchFromGitHub { - owner = "atgreen"; - repo = "paperless"; - rev = "04d98b13f591206429a9192c1804b7a2fd6287cb"; - sha256 = "1vk20vdcfjng3p3srf140k85lm8pqp41mfnwnahxm32bi0dx6hl3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/500be17952ffb6b8d1e524b5b3d316878202fabc/recipes/paperless"; - sha256 = "182arnx2fz0dww6bvg6m70a1picqd3czmzwv92x0rb4ghwrnq2dq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/paperless"; - license = lib.licenses.free; - }; - }) {}; - paradox = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , let-alist - , lib - , melpaBuild - , seq - , spinner }: - melpaBuild { - pname = "paradox"; - ename = "paradox"; - version = "20190429.457"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "paradox"; - rev = "906cf2a944c3ef0cd7bf08dc76ec5049e461f5d6"; - sha256 = "0rx9xys7xk769p1sn1h37lyn09jflgffnh9p7n9flky17vdr70mk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox"; - sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; - name = "recipe"; - }; - packageRequires = [ emacs hydra let-alist seq spinner ]; - meta = { - homepage = "https://melpa.org/#/paradox"; - license = lib.licenses.free; - }; - }) {}; - parchment-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parchment-theme"; - ename = "parchment-theme"; - version = "20190603.1212"; - src = fetchFromGitHub { - owner = "ajgrf"; - repo = "parchment"; - rev = "d3cbff72e39d0351e6f701b1b5cae7e79da853a5"; - sha256 = "1z5iqc10p24qglrzqy1qmsrnbbzd4zdz64jr1vk5zin9248ql1ry"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2302f512053b22e5abbd6a654cf94e4d5c7f5ca/recipes/parchment-theme"; - sha256 = "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parchment-theme"; - license = lib.licenses.free; - }; - }) {}; - paredit = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paredit"; - ename = "paredit"; - version = "20171126.1805"; - src = fetchgit { - url = "https://mumble.net/~campbell/git/paredit.git"; - rev = "acbe10fdd85d2e91831adf70b6a828bc7e900da0"; - sha256 = "1c7ag0cvd6rl5fsj3dpfcjpyb8xjd26d864z98a74cirn8pc8f7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/paredit"; - sha256 = "01qh8kfb5hyfi0jfl1kq3inkyzr0rf3wncmzgxlkfdc8zlq4v653"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/paredit"; - license = lib.licenses.free; - }; - }) {}; - paredit-everywhere = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "paredit-everywhere"; - ename = "paredit-everywhere"; - version = "20180506.149"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "paredit-everywhere"; - rev = "653d7a58fb370d5f7df367464d8d05e23a70b29d"; - sha256 = "0q6a3cvanjh3j0kdpqa812yql2axgga45g6nljvxijm8i9ba2hqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/593890222d074c6a308eb1b809077c6861e1af30/recipes/paredit-everywhere"; - sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; - name = "recipe"; - }; - packageRequires = [ paredit ]; - meta = { - homepage = "https://melpa.org/#/paredit-everywhere"; - license = lib.licenses.free; - }; - }) {}; - paredit-menu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "paredit-menu"; - ename = "paredit-menu"; - version = "20160128.933"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "paredit-menu"; - rev = "cc0ae85bd819f9ebfa4f2a419ab3b2d70e39c9c8"; - sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a6379588b373fca2769b8761de4ba13545c082c/recipes/paredit-menu"; - sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p"; - name = "recipe"; - }; - packageRequires = [ paredit ]; - meta = { - homepage = "https://melpa.org/#/paredit-menu"; - license = lib.licenses.free; - }; - }) {}; - paren-completer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paren-completer"; - ename = "paren-completer"; - version = "20160501.352"; - src = fetchFromGitHub { - owner = "MatthewBregg"; - repo = "paren-completer"; - rev = "74183a8e13fa1266271bdcbcb4bfb29a4f915f0a"; - sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/paren-completer"; - sha256 = "1k71nmsf155b4pvzcsymsc1bn42h9apypapkvc1kxyr6zm29zcr4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/paren-completer"; - license = lib.licenses.free; - }; - }) {}; - paren-face = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paren-face"; - ename = "paren-face"; - version = "20180318.1325"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "paren-face"; - rev = "42b2141b5427bc78d640229821b2b8053e6743d2"; - sha256 = "1f1srk4100rsc7i6257q460g4ykmqx4fwrpgb57dlp83d3342c6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face"; - sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/paren-face"; - license = lib.licenses.free; - }; - }) {}; - parent-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parent-mode"; - ename = "parent-mode"; - version = "20150824.1600"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "parent-mode"; - rev = "db692cf08deff2f0e973e6e86e26662b44813d1b"; - sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9736d8f6c3065c46b8c4e0056e9d592d3ec973e9/recipes/parent-mode"; - sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/parent-mode"; - license = lib.licenses.free; - }; - }) {}; - parinfer = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parinfer"; - ename = "parinfer"; - version = "20180904.144"; - src = fetchFromGitHub { - owner = "DogLooksGood"; - repo = "parinfer-mode"; - rev = "a7c041454e05ec2b88333a73e72debaa671ed596"; - sha256 = "14ld7r2867aqa1rzk75bzf6qivqd1va4ilawggnxbbx5j2d82r1d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/470ab2b5cceef23692523b4668b15a0775a0a5ba/recipes/parinfer"; - sha256 = "05w4w7j6xyj19dm63073amd4n7fw4zm3qnn4x02fk2011iw8fq7i"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/parinfer"; - license = lib.licenses.free; - }; - }) {}; - parrot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parrot"; - ename = "parrot"; - version = "20190311.1625"; - src = fetchFromGitHub { - owner = "dp12"; - repo = "parrot"; - rev = "4d77eafc6bfacfe45dae805ceca101331d3d08d0"; - sha256 = "0lqcw0scn2jcs15vybd1x7k7hiykrcsvimqj58s45m2pnaia57ql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b393ffb9b7691e8fc99bee5fc676463038a68d/recipes/parrot"; - sha256 = "0m67b80vc3qivcxs4w6fpzdg6h9d8s75251rlhnbc0xp7271zgnk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parrot"; - license = lib.licenses.free; - }; - }) {}; - parse-csv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parse-csv"; - ename = "parse-csv"; - version = "20160512.1023"; - src = fetchFromGitHub { - owner = "mrc"; - repo = "el-csv"; - rev = "96bef1ffbc89ea12d13311c9fa239c5c3e864890"; - sha256 = "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/010a182f7424928036231774c2fe17b857e3ca40/recipes/parse-csv"; - sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/parse-csv"; - license = lib.licenses.free; - }; - }) {}; - parsebib = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parsebib"; - ename = "parsebib"; - version = "20181219.128"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "parsebib"; - rev = "9a5f1730b8ef1fb6c29262a8ba79f8136e5548d4"; - sha256 = "1d9x57njgl16yyjmscmai5ml9wrqfh35ilcz2s674s8fa4krqw72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c39633957475dcd6a033760ba20a957716cce59c/recipes/parsebib"; - sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parsebib"; - license = lib.licenses.free; - }; - }) {}; - parsec = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parsec"; - ename = "parsec"; - version = "20180729.1716"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "parsec.el"; - rev = "2cbbbc2254aa7bcaa4fb5e07c8c1bf2f381dba26"; - sha256 = "1g1s8s45g3kkbi3h7w0pmadmzdswb64mkdvdpg2lihg341kx37gm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/248aaf5ff9c98cd3e439d0a26611cdefe6b6c32a/recipes/parsec"; - sha256 = "1p3364sv5r868xjj1411xqj4acxqmbzcdl900sd03585ql5wbypj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/parsec"; - license = lib.licenses.free; - }; - }) {}; - parseclj = callPackage ({ a - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parseclj"; - ename = "parseclj"; - version = "20190531.11"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "parseclj"; - rev = "b34d3e13a249d4b92f1a008cdc1df20a92f866c5"; - sha256 = "1bnlqkmpqpnmmsyhx49mryhkrkaq6v68x7a4kg2pn19ycf9xz6ds"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a977779a7ee49f57b849b14e581210a7f47d61/recipes/parseclj"; - sha256 = "077qigx0qyjyvm3437ffnv05rmnpqxvpxf69yyfdgnay1xclv172"; - name = "recipe"; - }; - packageRequires = [ a emacs ]; - meta = { - homepage = "https://melpa.org/#/parseclj"; - license = lib.licenses.free; - }; - }) {}; - parseedn = callPackage ({ a - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parseclj }: - melpaBuild { - pname = "parseedn"; - ename = "parseedn"; - version = "20190331.358"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "parseedn"; - rev = "8f0582da3f1dbce24e93aee7ca26eefea6053f43"; - sha256 = "0lfs8pbqb30iw3zbz0f1lz4g4ryqf737vz1pf01wdf6kwy6qdrf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/462a022a83186b8c70e888cc8df42601777504dd/recipes/parseedn"; - sha256 = "0lb0qkvsga90ysa3a1pn8ydf108lsq2azxzzm7xvxbgk0d1xzhjp"; - name = "recipe"; - }; - packageRequires = [ a emacs parseclj ]; - meta = { - homepage = "https://melpa.org/#/parseedn"; - license = lib.licenses.free; - }; - }) {}; - pasp-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pasp-mode"; - ename = "pasp-mode"; - version = "20180404.1000"; - src = fetchFromGitHub { - owner = "santifa"; - repo = "pasp-mode"; - rev = "59385eb0e8ebcfc8c11dd811fb145d4b0fa3cc92"; - sha256 = "1ar4vws3izzmir7m870mccci620ns3c5j26dcmwaxavhgw45wcmf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3c1bbfc6b3a60f8bb4f0ee77ec4108e9d3f458b/recipes/pasp-mode"; - sha256 = "0aix8siyd5yhgxq94k1sl64a9q2xlfrz6cj9y5mcqhb6qjgmrnva"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pasp-mode"; - license = lib.licenses.free; - }; - }) {}; - pass = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store - , password-store-otp }: - melpaBuild { - pname = "pass"; - ename = "pass"; - version = "20190102.511"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "pass"; - rev = "cd79375005a1c1d8b45d38fefa91eef0bd23182c"; - sha256 = "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass"; - sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; - name = "recipe"; - }; - packageRequires = [ emacs f password-store password-store-otp ]; - meta = { - homepage = "https://melpa.org/#/pass"; - license = lib.licenses.free; - }; - }) {}; - passmm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store }: - melpaBuild { - pname = "passmm"; - ename = "passmm"; - version = "20181130.812"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "passmm"; - rev = "b25a92048c788a8477cc5ffe14c0c4a4df19d79a"; - sha256 = "1jg2rs010fmw10ld0bfl6x7af3v9yqfy9ga5ixmam3qpilc8c4fw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ae2a1e10375f9cd55d19502c9740b2737eba209/recipes/passmm"; - sha256 = "0p6qps9ww7s6w5x7p6ha26xj540pk4bjkr629lcicrvnfr5jsg4b"; - name = "recipe"; - }; - packageRequires = [ emacs password-store ]; - meta = { - homepage = "https://melpa.org/#/passmm"; - license = lib.licenses.free; - }; - }) {}; - passthword = callPackage ({ cl-lib ? null - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "passthword"; - ename = "passthword"; - version = "20141201.123"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "passthword"; - rev = "30bace842eaaa6b48cb2251fb84868ebca0467d6"; - sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/passthword"; - sha256 = "19zv80kidb6a3985n3zij507hvffcxhcvlfxd01gwx64wvfc0c3c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/passthword"; - license = lib.licenses.free; - }; - }) {}; - password-generator = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "password-generator"; - ename = "password-generator"; - version = "20150222.1240"; - src = fetchFromGitHub { - owner = "zargener"; - repo = "emacs-password-genarator"; - rev = "c8193d5e963bda0a2f8e51fd4a94dcf37c76f282"; - sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/password-generator"; - sha256 = "1ziiz4x4slfadlm7fjpmwvq4a9fi3ird74b6v5na499ylqnzrl59"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/password-generator"; - license = lib.licenses.free; - }; - }) {}; - password-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "password-mode"; - ename = "password-mode"; - version = "20170411.2329"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "password-mode"; - rev = "ed764a4ec1011526457c71b7c37fa9a659a866ab"; - sha256 = "102zydbkr2zrr7w0j11n7pivnsdmq3c6lykf3qc84jifp7j58pgr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28dafa392a378e7de2c6992fe17b33f6379dc6b8/recipes/password-mode"; - sha256 = "1rxh6jg99qxagc6i2xgvswvw93h4ma7j8lhjr4ln44vbgyhzph11"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/password-mode"; - license = lib.licenses.free; - }; - }) {}; - password-store = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , with-editor }: - melpaBuild { - pname = "password-store"; - ename = "password-store"; - version = "20190425.1942"; - src = fetchFromGitHub { - owner = "zx2c4"; - repo = "password-store"; - rev = "0ee5ab3c5267faeafe6f95271ad7d5c59e15c90f"; - sha256 = "1hs714w1sscxg6l6rrm0syjxb7bmcbij2p16j08hhcxvk4vy6rhk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/207f8ec84572176749d328cb2bbc4e87c36f202c/recipes/password-store"; - sha256 = "03r8j14l12yc42b51fzvn1jh8j85nyl1rg6c80r0a7ihwkj27jv6"; - name = "recipe"; - }; - packageRequires = [ emacs f s with-editor ]; - meta = { - homepage = "https://melpa.org/#/password-store"; - license = lib.licenses.free; - }; - }) {}; - password-store-otp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store - , s }: - melpaBuild { - pname = "password-store-otp"; - ename = "password-store-otp"; - version = "20180814.2310"; - src = fetchFromGitHub { - owner = "volrath"; - repo = "password-store-otp.el"; - rev = "1819cd88463cd98a5be9a63273b09202dc2bba63"; - sha256 = "1p53bpwbkjfq4b7znqy0283f7rv7hj4lpcrd9vcvwby6vz4312j7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc89d02554a6ff150ad42634879073892f3e88be/recipes/password-store-otp"; - sha256 = "0m3n4gjf6hmcs2kg80h1whzbl74zsj79ihliyqfcdfc4v31m32sg"; - name = "recipe"; - }; - packageRequires = [ emacs password-store s ]; - meta = { - homepage = "https://melpa.org/#/password-store-otp"; - license = lib.licenses.free; - }; - }) {}; - password-vault = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "password-vault"; - ename = "password-vault"; - version = "20160126.1020"; - src = fetchFromGitHub { - owner = "PuercoPop"; - repo = "password-vault"; - rev = "dc56e6c2f5da66f1ab63736cecf08fb2c6c2b30f"; - sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71ad3fa96afa18b5002faf9272732c7d09826493/recipes/password-vault"; - sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/password-vault"; - license = lib.licenses.free; - }; - }) {}; - paste-of-code = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "paste-of-code"; - ename = "paste-of-code"; - version = "20170709.1655"; - src = fetchFromGitHub { - owner = "spebern"; - repo = "paste-of-code.el"; - rev = "92d258e8ec98598d847ecab82903f9224c7c2050"; - sha256 = "1bf2d0i726psjwnqdp0w4h0qk7fnwcbwf1a66q7p8vczavqygfan"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b29a5101bb6fc01b8b6e1b798ce6f73bc6d34944/recipes/paste-of-code"; - sha256 = "0wjcchpp1689arfz6s7gfq4bxn0svz6qj5azvjwwsyzais1bicdi"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/paste-of-code"; - license = lib.licenses.free; - }; - }) {}; - pastebin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pastebin"; - ename = "pastebin"; - version = "20101125.1202"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "elpastebin"; - rev = "8e9a829298ce0f747ab80758aa26caeb2af6cb30"; - sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/pastebin"; - sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pastebin"; - license = lib.licenses.free; - }; - }) {}; - pastehub = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pastehub"; - ename = "pastehub"; - version = "20140614.2320"; - src = fetchFromGitHub { - owner = "kiyoka"; - repo = "pastehub"; - rev = "3cc5dcb87104f3b4320a6d7fa20fa7340e6b7026"; - sha256 = "0wbb5689n9k351gf3s9mqr3bi00lpajk0h1k9gx1b2mdbb7lq7xd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8645a9880c586ef2ad16f3a4e61ba76176c224/recipes/pastehub"; - sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pastehub"; - license = lib.licenses.free; - }; - }) {}; - pastelmac-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pastelmac-theme"; - ename = "pastelmac-theme"; - version = "20151030.1936"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "pastelmac-theme-el"; - rev = "bead21741e3f46f6506e8aef4469d4240a819389"; - sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/pastelmac-theme"; - sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pastelmac-theme"; - license = lib.licenses.free; - }; - }) {}; - pastery = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "pastery"; - ename = "pastery"; - version = "20171113.1949"; - src = fetchFromGitHub { - owner = "diasbruno"; - repo = "pastery.el"; - rev = "4493be98b743b4d062cb4e00760125e394a55022"; - sha256 = "0bmm18d84lrkclg4md46k1ma03w7a97s10hrvjcm9yj8xbrjqqsc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6058218450071db0af9a5b8ce8ec09a735c4ab66/recipes/pastery"; - sha256 = "006qawjc86spbbs2pxvhg9w94rcsxap577cndqwaiw1k0cc8vkhp"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/pastery"; - license = lib.licenses.free; - }; - }) {}; - path-headerline-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "path-headerline-mode"; - ename = "path-headerline-mode"; - version = "20140423.632"; - src = fetchFromGitHub { - owner = "7696122"; - repo = "path-headerline-mode"; - rev = "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69"; - sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/path-headerline-mode"; - sha256 = "0yw2i3cp20v8nd2wj1rs1qad8abghzzasf2sjyla90q06wlna98w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/path-headerline-mode"; - license = lib.licenses.free; - }; - }) {}; - path-helper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "path-helper"; - ename = "path-helper"; - version = "20181208.1429"; - src = fetchFromGitHub { - owner = "arouanet"; - repo = "path-helper"; - rev = "34538affb3f341b3c56a875bb094ddb2b859a8ef"; - sha256 = "0qzsalbxksb44f0x7fndl2qyp1yf575qs56skfzmpnpa82dck88g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a70b1a41e45d215be27d392429dcd4f82904295f/recipes/path-helper"; - sha256 = "0fff3l88jgflqpxlcfxfyp2prc2ichajvm7c8i19qhvw70sbasny"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/path-helper"; - license = lib.licenses.free; - }; - }) {}; - pathify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pathify"; - ename = "pathify"; - version = "20160423.146"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "pathify.el"; - rev = "335332a900717ae01bde5ccb8f3dc97a5350f123"; - sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/459460c977b9cf033e22937899ad380e01efcf11/recipes/pathify"; - sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pathify"; - license = lib.licenses.free; - }; - }) {}; - paxedit = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "paxedit"; - ename = "paxedit"; - version = "20160730.1027"; - src = fetchFromGitHub { - owner = "promethial"; - repo = "paxedit"; - rev = "48df0a26285f68cd20ea64368e7bf2a5fbf13135"; - sha256 = "0z32lb2s943vk9fincsifdrjqmk7ks2skpzr6g4s3gd40sz5imfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/106b272c2f0741d21d31a0ddfa4f521c575559c1/recipes/paxedit"; - sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; - name = "recipe"; - }; - packageRequires = [ cl-lib paredit ]; - meta = { - homepage = "https://melpa.org/#/paxedit"; - license = lib.licenses.free; - }; - }) {}; - pbcopy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pbcopy"; - ename = "pbcopy"; - version = "20150224.2059"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "pbcopy.el"; - rev = "338f7245746b5de1bb96c5cc2b32bfd9b5d83272"; - sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bbde7950ad5b3b801ca6a2a27c0f5294c8b7746/recipes/pbcopy"; - sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pbcopy"; - license = lib.licenses.free; - }; - }) {}; - pc-bufsw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pc-bufsw"; - ename = "pc-bufsw"; - version = "20181221.56"; - src = fetchFromGitHub { - owner = "ibukanov"; - repo = "pc-bufsw"; - rev = "762d47b2f278c072643cf2a1ddc785516483d74a"; - sha256 = "1by9p0j6c21y04cc4ls7f87gks631lv1mxk0aqhh41rml5kj4l22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2bbd34d673935846c286e73a1e2efaa00ab01a/recipes/pc-bufsw"; - sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pc-bufsw"; - license = lib.licenses.free; - }; - }) {}; - pcache = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcache"; - ename = "pcache"; - version = "20170105.1414"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "pcache"; - rev = "025ef2411fa1bf82a9ac61dfdb7bd4cedaf2d740"; - sha256 = "1jkdyacpcvbsm1g2rjpnk6hfr01r3j5ibgh09441scz41v6xk248"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pcache"; - sha256 = "0wwx20x6gzlli3hh4zd9pfv2cmqfm38xbl9p4vsgy08q1rm5agva"; - name = "recipe"; - }; - packageRequires = [ eieio ]; - meta = { - homepage = "https://melpa.org/#/pcache"; - license = lib.licenses.free; - }; - }) {}; - pcap-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcap-mode"; - ename = "pcap-mode"; - version = "20161025.748"; - src = fetchFromGitHub { - owner = "orgcandman"; - repo = "pcap-mode"; - rev = "52780669af0ade136f84d73f21b4dbb7ab655416"; - sha256 = "1v218cjs0qy3ac0rbzm22y1x388nxnf0pslh9jrvlymkn227pjs8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44f4cb526556a4b58b7e67314002e73413a59a76/recipes/pcap-mode"; - sha256 = "1p6lnr7yr8i3yp63xc8r1hnx8a4v0mz1s7q89zxx7aprk7i9kpv6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pcap-mode"; - license = lib.licenses.free; - }; - }) {}; - pcmpl-args = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcmpl-args"; - ename = "pcmpl-args"; - version = "20190223.813"; - src = fetchFromGitHub { - owner = "JonWaltman"; - repo = "pcmpl-args.el"; - rev = "7bc360c2e5f84e2fc4024a9783c164b4df174acb"; - sha256 = "1gigcf9xh8a4478wr35smglz1csxamnjs82kqb45kbl9cndsz22s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pcmpl-args"; - sha256 = "10mgci1rk6sr7wk46mnp5l37v3qxdc6yy5zfvy9mzwzh3va1pw31"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pcmpl-args"; - license = lib.licenses.free; - }; - }) {}; - pcmpl-git = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcmpl-git"; - ename = "pcmpl-git"; - version = "20170120.1659"; - src = fetchFromGitHub { - owner = "leoliu"; - repo = "pcmpl-git-el"; - rev = "9472ac70baeda025ef7becd1cf141d72aec93f32"; - sha256 = "17y3rdp7fgyg4i9hwyzgpv1d19i5c6rqdf1gm5bdm2csk12vfg9n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a51c16bed8d0a2fecad0ae9580d58cd44cc8930/recipes/pcmpl-git"; - sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pcmpl-git"; - license = lib.licenses.free; - }; - }) {}; - pcmpl-homebrew = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcmpl-homebrew"; - ename = "pcmpl-homebrew"; - version = "20190212.1918"; - src = fetchFromGitHub { - owner = "kaihaosw"; - repo = "pcmpl-homebrew"; - rev = "bebc91c1a0392173f2d1ca2127da137565d79b4d"; - sha256 = "11f5xmdlym32j00rkqgwzcnawqwx5i2j7f92n3133r1f7w4gkvix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pcmpl-homebrew"; - sha256 = "1mfkg9i2hqq8mkhnc8yzc9br9wlhjv17vdvjzwhkybcbmhqf2qkm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pcmpl-homebrew"; - license = lib.licenses.free; - }; - }) {}; - pcmpl-pip = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "pcmpl-pip"; - ename = "pcmpl-pip"; - version = "20181229.620"; - src = fetchFromGitHub { - owner = "kaihaosw"; - repo = "pcmpl-pip"; - rev = "ebb672d4494f876f611639e65df4e28e566c06b5"; - sha256 = "0m0x41ymjqax7y7cy6ssgnrl708vr7xazac3nyznwfdsls1mzmbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pcmpl-pip"; - sha256 = "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778"; - name = "recipe"; - }; - packageRequires = [ f s seq ]; - meta = { - homepage = "https://melpa.org/#/pcmpl-pip"; - license = lib.licenses.free; - }; - }) {}; - pcomplete-extension = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcomplete-extension"; - ename = "pcomplete-extension"; - version = "20180706.2155"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "pcomplete-extension"; - rev = "bb941272b54f49f780819f7ce4fd2c802de9a0da"; - sha256 = "0bwbxnnw760i6mi7h9pyx3gaasrcja7dj3bfrlia07gw8jgl81ad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb8a938418f84a5b0ede92e84a516f38e4b1011/recipes/pcomplete-extension"; - sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pcomplete-extension"; - license = lib.licenses.free; - }; - }) {}; - pcre2el = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcre2el"; - ename = "pcre2el"; - version = "20161120.1303"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "pcre2el"; - rev = "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d"; - sha256 = "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b/recipes/pcre2el"; - sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pcre2el"; - license = lib.licenses.free; - }; - }) {}; - pcsv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcsv"; - ename = "pcsv"; - version = "20150220.331"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-pcsv"; - rev = "798e0933f8d0818beb17aebf3b1056bbf74e03d0"; - sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80ffaf99b2a4566a3f9d0309cd7b63f563f3826e/recipes/pcsv"; - sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pcsv"; - license = lib.licenses.free; - }; - }) {}; - pdb-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pdb-mode"; - ename = "pdb-mode"; - version = "20150128.951"; - src = fetchFromGitHub { - owner = "sixpi"; - repo = "pdb-mode"; - rev = "855fb18ebb73b5df30c8d7677c2bcd0f361b138a"; - sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6aee132aa24322fe1ac88ae17ee6e77ae1ec8d11/recipes/pdb-mode"; - sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pdb-mode"; - license = lib.licenses.free; - }; - }) {}; - pdf-tools = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , tablist }: - melpaBuild { - pname = "pdf-tools"; - ename = "pdf-tools"; - version = "20190413.1318"; - src = fetchFromGitHub { - owner = "politza"; - repo = "pdf-tools"; - rev = "d780b82a5ea5eb64140a3a68fa278f877771a1fc"; - sha256 = "1kv8lvwwjkgglb6qx1xvxq5xk95wl44x3sw84jpqjya3p0xx75yc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools"; - sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist tablist ]; - meta = { - homepage = "https://melpa.org/#/pdf-tools"; - license = lib.licenses.free; - }; - }) {}; - pdf-view-restore = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pdf-tools }: - melpaBuild { - pname = "pdf-view-restore"; - ename = "pdf-view-restore"; - version = "20190423.925"; - src = fetchFromGitHub { - owner = "007kevin"; - repo = "pdf-view-restore"; - rev = "12d9734d2133dead548497193016c86ab28e9477"; - sha256 = "1z5483jclfn1xrcdrvrw2c94fpnb1skv6c2ppi3w5nj4myny6nsv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66f0d3e9c7eea64f23191a3f7ac05158e3ae68bc/recipes/pdf-view-restore"; - sha256 = "1n3l7iyv5w937n0ihng8mzkaz09ngwclg5fv2s576d36b6jwm2k8"; - name = "recipe"; - }; - packageRequires = [ emacs pdf-tools ]; - meta = { - homepage = "https://melpa.org/#/pdf-view-restore"; - license = lib.licenses.free; - }; - }) {}; - pdfgrep = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pdfgrep"; - ename = "pdfgrep"; - version = "20181007.1028"; - src = fetchFromGitHub { - owner = "jeremy-compostella"; - repo = "pdfgrep"; - rev = "e251cd5c88a4ba5cb69008ba412d329f4d59e1d2"; - sha256 = "0fy6h8ys490kw63l9jigsa0cf1psybyd9gcljpddnjd3nhkdwikw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55b0c24f883fe589d1159ce3845cf250a0f47feb/recipes/pdfgrep"; - sha256 = "0q511l57xv1s6z496jrlz6j2nf0fync0dlbm4r800p49lbh4abl3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pdfgrep"; - license = lib.licenses.free; - }; - }) {}; - peacock-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "peacock-theme"; - ename = "peacock-theme"; - version = "20170808.620"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-peacock-theme"; - rev = "9e46fbfb562b6e26c6e3d6d618b044b3694da4c8"; - sha256 = "0w4dzdsv2cdldss5jwmdbjb5a62k5j1szwdim4gv8ldifhj7fy22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/peacock-theme"; - sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/peacock-theme"; - license = lib.licenses.free; - }; - }) {}; - peek-mode = callPackage ({ elnode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "peek-mode"; - ename = "peek-mode"; - version = "20130620.1246"; - src = fetchFromGitHub { - owner = "erikriverson"; - repo = "peek-mode"; - rev = "55a7dd011375330c7d57322257a5167516702c71"; - sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08384964d8c1f5f60c84c044d26a79105973ab21/recipes/peek-mode"; - sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4"; - name = "recipe"; - }; - packageRequires = [ elnode ]; - meta = { - homepage = "https://melpa.org/#/peek-mode"; - license = lib.licenses.free; - }; - }) {}; - peep-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "peep-dired"; - ename = "peep-dired"; - version = "20160321.1537"; - src = fetchFromGitHub { - owner = "asok"; - repo = "peep-dired"; - rev = "12d7e52cd5ae29fd828db0bf1fbf648020077145"; - sha256 = "159yc9fcpywqhy92kn7i7aid30j3bzybfdz9kxb643026v30nhxq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8e06a916ac18053e34821673d1cf7936b15c2ac/recipes/peep-dired"; - sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/peep-dired"; - license = lib.licenses.free; - }; - }) {}; - peg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "peg"; - ename = "peg"; - version = "20150707.2341"; - src = fetchFromGitHub { - owner = "ellerh"; - repo = "peg.el"; - rev = "081efeca91d790c7fbc90871ac22c40935f4833b"; - sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b9b55a02e903ae7e75f8b636fdb1cf907c5db7c/recipes/peg"; - sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/peg"; - license = lib.licenses.free; - }; - }) {}; - pelican-mode = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pelican-mode"; - ename = "pelican-mode"; - version = "20190124.1536"; - src = fetchgit { - url = "https://git.korewanetadesu.com/pelican-mode.git"; - rev = "a69934885c7a3b303049e2418333b3915b8f8fb8"; - sha256 = "0wxmm9x07f0g31k68pfkds7m8d2jivcnc5m6a3dxfhygz20wc5n4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aede5994c2e76c7fd860661c1e3252fb741f9228/recipes/pelican-mode"; - sha256 = "0z6w5j3qwb58pndqbmpsvy1l77w9jv90bss9qq9hicil8nlk4pvi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pelican-mode"; - license = lib.licenses.free; - }; - }) {}; - pepita = callPackage ({ csv - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pepita"; - ename = "pepita"; - version = "20190604.1025"; - src = fetchFromGitHub { - owner = "sebasmonia"; - repo = "pepita"; - rev = "3378b4557a3b359fb1cc7eeff97cf94f352ae1cf"; - sha256 = "1m8n491hdzz4y0b5iv8n374gn0i9x6jsix5il4962q8bajjl3slv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9a393b11eaa29dbd0bf966fa0ab290b08ac7f39/recipes/pepita"; - sha256 = "0xyy137hl8g74grhj8ipij4c80xrga1afjvzz5hf8hpx4zqbljpx"; - name = "recipe"; - }; - packageRequires = [ csv emacs ]; - meta = { - homepage = "https://melpa.org/#/pepita"; - license = lib.licenses.free; - }; - }) {}; - per-buffer-theme = callPackage ({ cl-lib ? null - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "per-buffer-theme"; - ename = "per-buffer-theme"; - version = "20160318.1501"; - src = fetchhg { - url = "https://bitbucket.com/inigoserna/per-buffer-theme.el"; - rev = "9e6200da91b3"; - sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/per-buffer-theme"; - sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/per-buffer-theme"; - license = lib.licenses.free; - }; - }) {}; - perfect-margin = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "perfect-margin"; - ename = "perfect-margin"; - version = "20190425.1945"; - src = fetchFromGitHub { - owner = "mpwang"; - repo = "perfect-margin"; - rev = "a64336810929ecf801a4b65bb722e401e2cccf09"; - sha256 = "13bl84g66hd1x6d3dhbzl4jd6hk1srxmzm4z34w75q00ap7qhyzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b8cd6a81d46da6beff2754f69b1d74ff9cc1d49/recipes/perfect-margin"; - sha256 = "0bn9bjz1bbl07z3wzhjplp0n5zla3yqc8phr3maap6mch3q0jc1y"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/perfect-margin"; - license = lib.licenses.free; - }; - }) {}; - perl6-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "perl6-mode"; - ename = "perl6-mode"; - version = "20180619.459"; - src = fetchFromGitHub { - owner = "perl6"; - repo = "perl6-mode"; - rev = "4ad9987e2576ab2f17cc7090ce35d347167449bb"; - sha256 = "0578mgy1pdiz19kam7n6cp98kbq8vmn2q6xc8qsjvzma3rfdsmgv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e912dccdee12f745272d26ea10d5f106a27cabc/recipes/perl6-mode"; - sha256 = "0r5q2nggb9kbjcdfv81d7sm41jqz040j9z52fnck4b9mlz2dy6d0"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/perl6-mode"; - license = lib.licenses.free; - }; - }) {}; - perlbrew = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "perlbrew"; - ename = "perlbrew"; - version = "20161108.2309"; - src = fetchFromGitHub { - owner = "kentaro"; - repo = "perlbrew.el"; - rev = "3a3406c3307c92aa30f9400d430925c434a3b6f0"; - sha256 = "0kxz8ljc7w69ywp0bb15010sgrr13i1p05hcvhfr9c35l0n62r6p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24bd9c2cd848f5003a244a7127e8fc5ef46bdca4/recipes/perlbrew"; - sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/perlbrew"; - license = lib.licenses.free; - }; - }) {}; - persistent-overlays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "persistent-overlays"; - ename = "persistent-overlays"; - version = "20161127.2300"; - src = fetchFromGitHub { - owner = "mneilly"; - repo = "Emacs-Persistent-Overlays"; - rev = "f563c8b966edc78c9d806661c4eb80e4781c4eab"; - sha256 = "0csllpkpjf4csw3zfaw8k05jg078najfmjz6pz1jcl6b4sxjdfqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3673c87c5ca883b4f713efeae912c3ad991c667/recipes/persistent-overlays"; - sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/persistent-overlays"; - license = lib.licenses.free; - }; - }) {}; - persistent-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "persistent-scratch"; - ename = "persistent-scratch"; - version = "20190128.1043"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "persistent-scratch"; - rev = "71371a7ce9846754276350fd577dc7543eb52878"; - sha256 = "0n638krbrs2hx97cgkb5nc0fbrd8wsbmb7mz3ym5mx5pvdyxnlgv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e32702bfa15490b692d5db59e22d2c07b292d1/recipes/persistent-scratch"; - sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/persistent-scratch"; - license = lib.licenses.free; - }; - }) {}; - persistent-soft = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache }: - melpaBuild { - pname = "persistent-soft"; - ename = "persistent-soft"; - version = "20150223.1053"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "persistent-soft"; - rev = "a1e0ddf2a12a6f18cab565dee250f070384cbe02"; - sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/persistent-soft"; - sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; - name = "recipe"; - }; - packageRequires = [ list-utils pcache ]; - meta = { - homepage = "https://melpa.org/#/persistent-soft"; - license = lib.licenses.free; - }; - }) {}; - persp-fr = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , persp-mode }: - melpaBuild { - pname = "persp-fr"; - ename = "persp-fr"; - version = "20180801.27"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "persp-fr"; - rev = "3f536440b120499464106fd25f182d7580192870"; - sha256 = "0bnplxv6igry7ak3wvn2b88zm4aarv35z4z5q38x52k4zac94rl8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e09213dddf003a1275eafb767431a507ecf7639/recipes/persp-fr"; - sha256 = "0p4379yr1b32l8ghq1axyb8qhp28gnq5qxxvbk3mdzgbwwj8y4b2"; - name = "recipe"; - }; - packageRequires = [ dash emacs persp-mode ]; - meta = { - homepage = "https://melpa.org/#/persp-fr"; - license = lib.licenses.free; - }; - }) {}; - persp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "persp-mode"; - ename = "persp-mode"; - version = "20190511.702"; - src = fetchFromGitHub { - owner = "Bad-ptr"; - repo = "persp-mode.el"; - rev = "e330e6240bbb82589077f30472b05b95d1ff430d"; - sha256 = "0gy0h9mrgig0d2gjs2z949ld1ccgfhmp0dfd8g33g2kxgzp7wnv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode"; - sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/persp-mode"; - license = lib.licenses.free; - }; - }) {}; - persp-mode-projectile-bridge = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , persp-mode - , projectile }: - melpaBuild { - pname = "persp-mode-projectile-bridge"; - ename = "persp-mode-projectile-bridge"; - version = "20170315.420"; - src = fetchFromGitHub { - owner = "Bad-ptr"; - repo = "persp-mode-projectile-bridge.el"; - rev = "f6453cd7b8b4352c06e771706f2c5b7e2cdff1ce"; - sha256 = "1gyfn2fhx3bqzr9m1r4b8nyak8pmpcgj7yz2bagnjs21vfngr18c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c049b0067b70577511114dc8abac0a00a9e0588/recipes/persp-mode-projectile-bridge"; - sha256 = "169mpikixa33ljmh2n9sm186yibrik3f5p8m1hcisnzdsc3wgxmp"; - name = "recipe"; - }; - packageRequires = [ cl-lib persp-mode projectile ]; - meta = { - homepage = "https://melpa.org/#/persp-mode-projectile-bridge"; - license = lib.licenses.free; - }; - }) {}; - persp-projectile = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , perspective - , projectile }: - melpaBuild { - pname = "persp-projectile"; - ename = "persp-projectile"; - version = "20180616.1244"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "persp-projectile"; - rev = "3a79cb26e290b478e83aa7795146fb1759092d14"; - sha256 = "17i1srw1k771i3a5wlydbyasyd9z39ryf48mxfs0dsbx1zjbj0pg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/persp-projectile"; - sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; - name = "recipe"; - }; - packageRequires = [ cl-lib perspective projectile ]; - meta = { - homepage = "https://melpa.org/#/persp-projectile"; - license = lib.licenses.free; - }; - }) {}; - perspective = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "perspective"; - ename = "perspective"; - version = "20181119.1714"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "perspective-el"; - rev = "2c8cf56d170c3eb1fcc1a8fe41026b780e0ffead"; - sha256 = "0xlib2f8fjmwk8r0p6r8y5ni687xmixqp9s40rgxc15ikin54hhf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/perspective"; - sha256 = "021ax1c2ys82dcjs5jl7b4nb83n6gax2imnpm030rcbihjl1lzm7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/perspective"; - license = lib.licenses.free; - }; - }) {}; - perspeen = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "perspeen"; - ename = "perspeen"; - version = "20171203.221"; - src = fetchFromGitHub { - owner = "seudut"; - repo = "perspeen"; - rev = "edb70c530bda50ff3d1756e32a703d5fef5e5480"; - sha256 = "12h0kj96s4h8z4kqalp7hccnlnqn5lrax3df75gz16pskx2dwxqr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/perspeen"; - sha256 = "0kwmllas9vnppsfaviy58d0nk4hmlqp566mfr4l53x46sybv1y04"; - name = "recipe"; - }; - packageRequires = [ emacs powerline ]; - meta = { - homepage = "https://melpa.org/#/perspeen"; - license = lib.licenses.free; - }; - }) {}; - pfuture = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pfuture"; - ename = "pfuture"; - version = "20190505.306"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "pfuture"; - rev = "263227534e8bb98aedce18698c34db9fd4d6500b"; - sha256 = "13r1f741rk5k35s413iyh1kng20zmp29qr4bzlxg8wjl7d8q6da2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb70c9f56a58b5c7a2e8b69b191aa2fc7c9bcc8/recipes/pfuture"; - sha256 = "15fr9wkpv8v1p22wz7hsyihq7f807ck105c2crfs8y7capfvs53s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pfuture"; - license = lib.licenses.free; - }; - }) {}; - pg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pg"; - ename = "pg"; - version = "20130731.1442"; - src = fetchFromGitHub { - owner = "cbbrowne"; - repo = "pg.el"; - rev = "4f6516ec3946d95dcef49abb6703cc89ecb5183d"; - sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4d1bb21948da2b283a3a9d89d9e3aed11afa13/recipes/pg"; - sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pg"; - license = lib.licenses.free; - }; - }) {}; - pgdevenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pgdevenv"; - ename = "pgdevenv"; - version = "20150105.1436"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "pgdevenv-el"; - rev = "7f1d5bc734750aca98cf67a9491cdbd5615fd132"; - sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73ae474fc4792b2c322a0d2b5fd5b7cfe8c2fd05/recipes/pgdevenv"; - sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pgdevenv"; - license = lib.licenses.free; - }; - }) {}; - ph = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ph"; - ename = "ph"; - version = "20161029.822"; - src = fetchFromGitHub { - owner = "gromnitsky"; - repo = "ph"; - rev = "a66e38637d1898b2ec31ee611033ac3f295fd97f"; - sha256 = "10xznvjszn0smn6wf84rykkkiqyzv7xf7fjjyklhll7zphg714mw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f62ca074ca2df780ab32aac50b2b828ee6a9934c/recipes/ph"; - sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ph"; - license = lib.licenses.free; - }; - }) {}; - phabricator = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "phabricator"; - ename = "phabricator"; - version = "20160510.725"; - src = fetchFromGitHub { - owner = "ajtulloch"; - repo = "phabricator.el"; - rev = "d09d6f059aea92d3b11c68664a5e80c901182ab8"; - sha256 = "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/829010a578f34f0f2dfb36a0de01547c2950bb65/recipes/phabricator"; - sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c"; - name = "recipe"; - }; - packageRequires = [ dash emacs f projectile s ]; - meta = { - homepage = "https://melpa.org/#/phabricator"; - license = lib.licenses.free; - }; - }) {}; - phan = callPackage ({ composer - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phan"; - ename = "phan"; - version = "20190520.1903"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phan.el"; - rev = "82c2d962cd5cab647e8f2f5636bc83511ea40cb4"; - sha256 = "1bypr6d85xr623bqq9j4hl2q4jiw8hyjhx1mp7q4jcm7pibkbjci"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/phan"; - sha256 = "17ar6nxy0plx5li49kgf4f0h99wwmnnp5kwmpf34jg9ygyhaglvb"; - name = "recipe"; - }; - packageRequires = [ composer emacs f ]; - meta = { - homepage = "https://melpa.org/#/phan"; - license = lib.licenses.free; - }; - }) {}; - phi-autopair = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "phi-autopair"; - ename = "phi-autopair"; - version = "20170216.1953"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-autopair"; - rev = "3c7556779c3a53b045f5df33ae2a0c67469cbf60"; - sha256 = "16gh2r1mhmirbq20kklym4l60rfcfn8dsj0vv3hx3fj8q81h8qc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f26b586c0126699f3de65bf38dfbf9c4c0149c15/recipes/phi-autopair"; - sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4"; - name = "recipe"; - }; - packageRequires = [ paredit ]; - meta = { - homepage = "https://melpa.org/#/phi-autopair"; - license = lib.licenses.free; - }; - }) {}; - phi-grep = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phi-grep"; - ename = "phi-grep"; - version = "20170606.107"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-grep"; - rev = "ab9bd8d25e751a9cbfa108b49839293230b6e8b5"; - sha256 = "0p1i07dgaic0jnwdsnvsnib2913r9w8j98d1p5rx8db2nabjmzc0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/992655fa4bd209abdf1149572e95f853e595125e/recipes/phi-grep"; - sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/phi-grep"; - license = lib.licenses.free; - }; - }) {}; - phi-rectangle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phi-rectangle"; - ename = "phi-rectangle"; - version = "20151207.2254"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-rectangle"; - rev = "0c12716afc71d803d1f39417469521dc465762d9"; - sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/phi-rectangle"; - sha256 = "111fqqa7h5cajq92sbiqhavm25l5bcapxhfh38y7irq4mv08xifw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/phi-rectangle"; - license = lib.licenses.free; - }; - }) {}; - phi-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phi-search"; - ename = "phi-search"; - version = "20180321.1829"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-search"; - rev = "9a089b8271cb1cff9640848850298c9ec855286c"; - sha256 = "1gr5plcbrfdc4pglfj905s89hf8x0kc083h30wcnd81bnw9jwz1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0274300c33f19ca6f868e1d570ffee513dbdf7/recipes/phi-search"; - sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/phi-search"; - license = lib.licenses.free; - }; - }) {}; - phi-search-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , phi-search }: - melpaBuild { - pname = "phi-search-dired"; - ename = "phi-search-dired"; - version = "20150405.14"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-search-dired"; - rev = "162a5e4507c72512affae22744bb606a906d4193"; - sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57c6dd518648f23927c5e6424210c157ed3cfd95/recipes/phi-search-dired"; - sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p"; - name = "recipe"; - }; - packageRequires = [ phi-search ]; - meta = { - homepage = "https://melpa.org/#/phi-search-dired"; - license = lib.licenses.free; - }; - }) {}; - phi-search-mc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors - , phi-search }: - melpaBuild { - pname = "phi-search-mc"; - ename = "phi-search-mc"; - version = "20160324.803"; - src = fetchFromGitHub { - owner = "knu"; - repo = "phi-search-mc.el"; - rev = "7aa671910f766437089aec26c3aa7814222d1356"; - sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83cf3fa3736eb2583dcf6bca16b9acb89e3408a3/recipes/phi-search-mc"; - sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; - name = "recipe"; - }; - packageRequires = [ multiple-cursors phi-search ]; - meta = { - homepage = "https://melpa.org/#/phi-search-mc"; - license = lib.licenses.free; - }; - }) {}; - phi-search-migemo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , migemo - , phi-search }: - melpaBuild { - pname = "phi-search-migemo"; - ename = "phi-search-migemo"; - version = "20170618.221"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-search-migemo"; - rev = "723b584d386639d59298d872ad7a035d3f8008b0"; - sha256 = "01j3fpn44vgj8fq4smay1qd3wnh321v5pkgm9vkhpryj1v1g7am1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b78e07146a4e954e050349a1798ac46ecba10bab/recipes/phi-search-migemo"; - sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6"; - name = "recipe"; - }; - packageRequires = [ migemo phi-search ]; - meta = { - homepage = "https://melpa.org/#/phi-search-migemo"; - license = lib.licenses.free; - }; - }) {}; - phoenix-dark-mono-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phoenix-dark-mono-theme"; - ename = "phoenix-dark-mono-theme"; - version = "20170729.706"; - src = fetchFromGitHub { - owner = "j0ni"; - repo = "phoenix-dark-mono"; - rev = "a54f515d162148bcb38676980bc2316adb3d7b8b"; - sha256 = "1zr334qsjrajd2vrrlc1rfm4b4kdw15jfh5d102vj5bp7z7ajhb4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-mono-theme"; - sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/phoenix-dark-mono-theme"; - license = lib.licenses.free; - }; - }) {}; - phoenix-dark-pink-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phoenix-dark-pink-theme"; - ename = "phoenix-dark-pink-theme"; - version = "20170729.703"; - src = fetchFromGitHub { - owner = "j0ni"; - repo = "phoenix-dark-pink"; - rev = "4defbb76b00c1a29f060813898578152d6be623d"; - sha256 = "03d7ak4ia3fifp0c8fm4qdydizsfsxvcvbzwfxlsk66s28p5wglc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87e3b036fbcc96b047bbb141345a7b51f19d6951/recipes/phoenix-dark-pink-theme"; - sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/phoenix-dark-pink-theme"; - license = lib.licenses.free; - }; - }) {}; - php-auto-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , yasnippet }: - melpaBuild { - pname = "php-auto-yasnippets"; - ename = "php-auto-yasnippets"; - version = "20170330.1814"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-auto-yasnippets"; - rev = "03e1f0899c081813901ac15c2f7a675a37cca9f5"; - sha256 = "0d7y6njsd1s2r5df2k8wvvwgxpwwyaqkhdd2b3p1php8rrbj3mg8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28b2d8802f98e339ff01ecf9733b71b6c631123e/recipes/php-auto-yasnippets"; - sha256 = "047i51ks2nn7ydrx2hjx9qvsh3lxnyxp8a6c3h3nb1acy84f5bd1"; - name = "recipe"; - }; - packageRequires = [ php-mode yasnippet ]; - meta = { - homepage = "https://melpa.org/#/php-auto-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - php-boris = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-boris"; - ename = "php-boris"; - version = "20130527.121"; - src = fetchFromGitHub { - owner = "tomterl"; - repo = "php-boris"; - rev = "4bb7e4d34d9906ddce688205eb24cafe634c6d06"; - sha256 = "1pya68rbn3bs67nn0mprjx2w759byqmixylcvl25v8f645nmxd0r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/php-boris"; - sha256 = "0kklwk8b98czsg567vgzzdfnv76yn1id3ah2q2qqdhaky1yzw7ak"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/php-boris"; - license = lib.licenses.free; - }; - }) {}; - php-boris-minor-mode = callPackage ({ fetchgit - , fetchurl - , highlight - , lib - , melpaBuild - , php-boris }: - melpaBuild { - pname = "php-boris-minor-mode"; - ename = "php-boris-minor-mode"; - version = "20140209.1035"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/php-boris-minor-mode.git"; - rev = "8648eba604e4ff82ef6594a2c5ee4cb4825e6235"; - sha256 = "00lmvsmh053zhdv56vkcxc4dpzrlx6jyck87vq8vjbj8q9nmkf23"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/php-boris-minor-mode"; - sha256 = "06nzdvzjp6ywq0jf0v0cmcv77wj1vyas2r10kmxd45rzw12hqjd9"; - name = "recipe"; - }; - packageRequires = [ highlight php-boris ]; - meta = { - homepage = "https://melpa.org/#/php-boris-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - php-cs-fixer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-cs-fixer"; - ename = "php-cs-fixer"; - version = "20190207.326"; - src = fetchFromGitHub { - owner = "OVYA"; - repo = "php-cs-fixer"; - rev = "6540006710daf2b2d47576968ea826a83a40a6bf"; - sha256 = "089x26akvkfm772v8n3x3l5wpkhvlgad2byrcbh0a1vyhnjb2fvd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3631c4b81c1784995ae9e74d832e301d79214e2/recipes/php-cs-fixer"; - sha256 = "1xvz6v1fwngi2rizrx5sf0wrs4cy8rb13467r26k8hb7z8h1rqmf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/php-cs-fixer"; - license = lib.licenses.free; - }; - }) {}; - php-eldoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-eldoc"; - ename = "php-eldoc"; - version = "20140202.1141"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "php-eldoc"; - rev = "df05064146b884d9081e10657e32dc480f070cfe"; - sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7af452f42847a947e87edd6aa559f807d08920c1/recipes/php-eldoc"; - sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/php-eldoc"; - license = lib.licenses.free; - }; - }) {}; - php-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-mode"; - ename = "php-mode"; - version = "20190530.1210"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-mode"; - rev = "c53e0c1ec154fcfe6e5db56d1513d503a62e0355"; - sha256 = "1gg156pj51wp61y42844667xy75ds3wh6qjasj55b9wci5l1hv04"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e41dc09413eaa93704e7d9f55bd2bd01f658806/recipes/php-mode"; - sha256 = "1gqmcynz2wx09xjnk70db1a2pbnrh1vfm5vd6mks1s10y59bh0zq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/php-mode"; - license = lib.licenses.free; - }; - }) {}; - php-refactor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-refactor-mode"; - ename = "php-refactor-mode"; - version = "20171123.2235"; - src = fetchFromGitHub { - owner = "keelerm84"; - repo = "php-refactor-mode.el"; - rev = "d06dabd9ca743a04067e02282b69d7b7467fb4b7"; - sha256 = "1mdbv079xj0a506hcq99bd8cdpwgq6anhqfkfwm56b3cn7g54qkr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad4a9bb43e131e2eb0d8b09b13245bc268c524a5/recipes/php-refactor-mode"; - sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/php-refactor-mode"; - license = lib.licenses.free; - }; - }) {}; - php-runtime = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "php-runtime"; - ename = "php-runtime"; - version = "20181212.1025"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-runtime.el"; - rev = "017e0e70f07d6b25e37d5c5f4d271a914b677631"; - sha256 = "1c74xd6p3hfanpd4920agvnar9rjbyvz33kwrzw9vywzrs68ncvh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/615c9ac208d8c20082a8ac83e49e93d99e2cbc89/recipes/php-runtime"; - sha256 = "0dvnwajrjsgyqzglzpkx9vwx3f55mrag6dsbdjqc9vvpvxhmgfwb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/php-runtime"; - license = lib.licenses.free; - }; - }) {}; - php-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , s }: - melpaBuild { - pname = "php-scratch"; - ename = "php-scratch"; - version = "20161103.1517"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "php-scratch"; - rev = "3aa66d1d53b84b779374edff7a7e6b5f2cd7575d"; - sha256 = "0iyb4y0wrd1yqm56p37riw6nwvrlcgxj1x0nhw8304p8hv76mzdi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/php-scratch"; - sha256 = "0sl9cccp4xjsidiyjf3sca8wlch3zd23zyac21xys11xm3rjxh9r"; - name = "recipe"; - }; - packageRequires = [ emacs php-mode s ]; - meta = { - homepage = "https://melpa.org/#/php-scratch"; - license = lib.licenses.free; - }; - }) {}; - phpactor = callPackage ({ cl-lib ? null - , composer - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-runtime }: - melpaBuild { - pname = "phpactor"; - ename = "phpactor"; - version = "20190531.800"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpactor.el"; - rev = "f5df770f70a509f1ec2861512c38845ec1490277"; - sha256 = "0y1f8c6wnqci9vi85q4c7nzkmmfsd46fbwq7dl88ymw3fz03pnzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d67b98ecd541c227c011615f67d7a0890f5e1af3/recipes/phpactor"; - sha256 = "0w2iszi74y3s6rcn6p2ic545cg319y4jpy83npbh5m98y8jma84m"; - name = "recipe"; - }; - packageRequires = [ cl-lib composer emacs f php-runtime ]; - meta = { - homepage = "https://melpa.org/#/phpactor"; - license = lib.licenses.free; - }; - }) {}; - phpcbf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "phpcbf"; - ename = "phpcbf"; - version = "20181227.2023"; - src = fetchFromGitHub { - owner = "nishimaki10"; - repo = "emacs-phpcbf"; - rev = "fb0bc6073a57126cf1a8404723aa0a715dd761aa"; - sha256 = "0k2wl137nippcfx3g35kfprz2fiv8rbbi7dcpxciwnbqmn6ry7rf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77ef54e3fb2715a081786dc54f99ae74def5c77c/recipes/phpcbf"; - sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/phpcbf"; - license = lib.licenses.free; - }; - }) {}; - phpstan = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phpstan"; - ename = "phpstan"; - version = "20190227.842"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpstan.el"; - rev = "1151b8d418af532fdf0732b9793b479c64a364e3"; - sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/43808f57146a395b92ed498803fa948a33e5f3c2/recipes/phpstan"; - sha256 = "1nx9d4mhxhvbgrxawkpkw03b75bg1xpli1x83g2bhs8ar8lypjik"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/phpstan"; - license = lib.licenses.free; - }; - }) {}; - phpt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , polymode }: - melpaBuild { - pname = "phpt-mode"; - ename = "phpt-mode"; - version = "20190512.1109"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpt-mode"; - rev = "deb386f1a81003074c476f15e1975d445ff6df01"; - sha256 = "0wv1q44f5hmpsrjvjb5y8c1gnjkazdghmgbzw6l30i3j3z36fy60"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59a0e7aabf45c98b1ecf9db49f6420a6e051733b/recipes/phpt-mode"; - sha256 = "1isq3l6qhya5vafmcqbda7r0irdmgvmlmdg98n7h8yck5imi78yf"; - name = "recipe"; - }; - packageRequires = [ emacs php-mode polymode ]; - meta = { - homepage = "https://melpa.org/#/phpt-mode"; - license = lib.licenses.free; - }; - }) {}; - phpunit = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "phpunit"; - ename = "phpunit"; - version = "20180829.738"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "phpunit.el"; - rev = "fe6bc91c3bd8b329c6d26ad883a025f06b5121ee"; - sha256 = "1silbfmv85r73pbc7f5cm4znc6644ngihfnhibk1fgp9j0rf7ahc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/phpunit"; - sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/phpunit"; - license = lib.licenses.free; - }; - }) {}; - pianobar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pianobar"; - ename = "pianobar"; - version = "20180416.1804"; - src = fetchFromGitHub { - owner = "agrif"; - repo = "pianobar.el"; - rev = "3154c4cb7401017fd441fcd6a7a0b669a4406882"; - sha256 = "0dy51pi85i8ag47zmnhppllsbmxd0bp704azffddkg36pjh4inxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5659b4c7be20572aabe75caba866301393db012/recipes/pianobar"; - sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pianobar"; - license = lib.licenses.free; - }; - }) {}; - pickle = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pickle"; - ename = "pickle"; - version = "20190122.948"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "pickle-mode"; - rev = "0d0b1925b7b79e2c80a1877351e3c6ce52935c4b"; - sha256 = "0hbymja9109fzw34ra5iyxvhfv0x8ffr8sayqihdfmrs2ymh045z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4cb71882f074d3fef1f5a7b504dafcb6adff8ed4/recipes/pickle"; - sha256 = "0fryzmrs6bn6r590qp08jyzx9g6jakf1pahxhcfglsv9k3jbfp13"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pickle"; - license = lib.licenses.free; - }; - }) {}; - picolisp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "picolisp-mode"; - ename = "picolisp-mode"; - version = "20190104.2320"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "picolisp-mode"; - rev = "39e54f31b5d10483aac2765bf5cc4ad92f9e4467"; - sha256 = "054hmmpcxg56r9qhk006mm7y6b2bb6pjxk48fbynhbwmhwnn79ps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe116998dadeef6e61c0791efb396f9b8befa5d6/recipes/picolisp-mode"; - sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/picolisp-mode"; - license = lib.licenses.free; - }; - }) {}; - picpocket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "picpocket"; - ename = "picpocket"; - version = "20180914.1119"; - src = fetchFromGitHub { - owner = "johanclaesson"; - repo = "picpocket"; - rev = "f0f9947a097b2a02901d6d0bb427c7a6e02f2af7"; - sha256 = "0fnafiax2xb97vkvr8fd2x3rpnw72661k0p163mkvp1zp59zy6is"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e88dc89311d4bfe82dc15f22b84c4b76abb3fd69/recipes/picpocket"; - sha256 = "0p2mrjcd8ig0h7dk0zvyfma4nnfk2ic6gp2dwfqyqq6irb010f45"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/picpocket"; - license = lib.licenses.free; - }; - }) {}; - pig-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pig-mode"; - ename = "pig-mode"; - version = "20180520.700"; - src = fetchFromGitHub { - owner = "motus"; - repo = "pig-mode"; - rev = "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959"; - sha256 = "1vwnybyrzk8nw2cs27yrsipxb6hmx7cs5d60yf00h0wiv3l6v3rr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-mode"; - sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pig-mode"; - license = lib.licenses.free; - }; - }) {}; - pig-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "pig-snippets"; - ename = "pig-snippets"; - version = "20130912.2324"; - src = fetchFromGitHub { - owner = "motus"; - repo = "pig-mode"; - rev = "69ca24cb756dd516828e284e33274145eba21183"; - sha256 = "1b1wibla851f7mra0jf13xhil1xw4s0m2l53f1s2h36468wb24y1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0d7c07d28e2f229b281201a781ebaceed6465ed/recipes/pig-snippets"; - sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/pig-snippets"; - license = lib.licenses.free; - }; - }) {}; - pillar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "pillar"; - ename = "pillar"; - version = "20141112.1011"; - src = fetchFromGitHub { - owner = "pillar-markup"; - repo = "pillar-mode"; - rev = "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909"; - sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bff55f1182f3bd0bc8a8773921f703168d87de21/recipes/pillar"; - sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/pillar"; - license = lib.licenses.free; - }; - }) {}; - pinboard-api = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinboard-api"; - ename = "pinboard-api"; - version = "20140324.448"; - src = fetchFromGitHub { - owner = "danieroux"; - repo = "pinboard-api-el"; - rev = "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4"; - sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a13787abe600b6f6355a475af573efa0064bf6f/recipes/pinboard-api"; - sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pinboard-api"; - license = lib.licenses.free; - }; - }) {}; - pinboard-popular = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild }: - melpaBuild { - pname = "pinboard-popular"; - ename = "pinboard-popular"; - version = "20180511.1026"; - src = fetchFromGitHub { - owner = "asimpson"; - repo = "pinboard-popular"; - rev = "c0bc76cd35f8ecf34723c64a702b82eec2751318"; - sha256 = "1msvb5r6ixd886plpbss62q2nwrrsb6271bi922vlhr817lhsain"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/094f63e451622571aac832b14221a0d5a96de9c5/recipes/pinboard-popular"; - sha256 = "0d9ng4mclnb9yfzh8wzz03fbhfxayns0dg31bdixkwvy2vk00rkf"; - name = "recipe"; - }; - packageRequires = [ loop ]; - meta = { - homepage = "https://melpa.org/#/pinboard-popular"; - license = lib.licenses.free; - }; - }) {}; - pine-script-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pine-script-mode"; - ename = "pine-script-mode"; - version = "20181109.1751"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "pine-script-mode"; - rev = "9176de41a5c80f7b56e41fb7a9ba7350885a2512"; - sha256 = "1kxdrqa420zbl73jlakilvn1ja83vfqnhqdirgfvp23z4xhcddq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/287b781147fe41089fa8c76570bc30539e43e5bc/recipes/pine-script-mode"; - sha256 = "0ihijbcx7m4vhxr1fnfkwjdk6ka1mqzxb8z164yh8yn73qs0saiq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pine-script-mode"; - license = lib.licenses.free; - }; - }) {}; - pinot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinot"; - ename = "pinot"; - version = "20140211.1226"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-pinot-search"; - rev = "67fda555a155b22bb2ce44ba618b4bd6fc5f144a"; - sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f75cd89811b4bb668c1e7a93246b93fbcf5d9c47/recipes/pinot"; - sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pinot"; - license = lib.licenses.free; - }; - }) {}; - pinyin = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinyin"; - ename = "pinyin"; - version = "20180620.541"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "pinyin.el"; - rev = "80b588cbf97973973fce4d720df3cf41306df2e4"; - sha256 = "1crd90f1b603k5k9qsdbi2zdkyhqcim8xk5mqw5w20mxrf39y36n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b16f0f7f86021bb0bece6c90878b0dba1657107f/recipes/pinyin"; - sha256 = "1afgz62zpar6d65q4h12s7ijhhl2r2vlrnk79vsjrl560jh7hgfm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pinyin"; - license = lib.licenses.free; - }; - }) {}; - pinyin-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "pinyin-search"; - ename = "pinyin-search"; - version = "20160514.2058"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "pinyin-search.el"; - rev = "2e877a76851009d41bde66eb33182a03a7f04262"; - sha256 = "0bp4raxqv34jyg3yvdcsh9lav28x376gngm9nn8vjgmq9wggzf3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03da6f02778f7fae77a00cdc420cfbafead6dec4/recipes/pinyin-search"; - sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; - name = "recipe"; - }; - packageRequires = [ pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/pinyin-search"; - license = lib.licenses.free; - }; - }) {}; - pinyinlib = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinyinlib"; - ename = "pinyinlib"; - version = "20170827.1442"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "pinyinlib.el"; - rev = "45f05d3dbb4fe957f7ab332ca6f94675848b6aa3"; - sha256 = "0pmgb4y06dbffs4442aa92vn8ydwl45zqwzxzwhk6md1318fppvd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4aa27985dcfaf24f1863667b89e13df4710546f/recipes/pinyinlib"; - sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pinyinlib"; - license = lib.licenses.free; - }; - }) {}; - pip-requirements = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pip-requirements"; - ename = "pip-requirements"; - version = "20181027.929"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "pip-requirements.el"; - rev = "216cd1690f80cc965d4ae47b8753fc185f778ff6"; - sha256 = "0da3q0n5nn0l96kk49kanw5knx3jmga439zbmiii76na16bg5y3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5eaf6987f92070ccc33d3e28c6bb2b96f72ba1aa/recipes/pip-requirements"; - sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/pip-requirements"; - license = lib.licenses.free; - }; - }) {}; - pipenv = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyvenv - , s }: - melpaBuild { - pname = "pipenv"; - ename = "pipenv"; - version = "20190522.103"; - src = fetchFromGitHub { - owner = "pwalsh"; - repo = "pipenv.el"; - rev = "03edaaa44a5a4212d2e5a14e3ae6303189d76703"; - sha256 = "04y6p8gd20xhn7qkz2gp94yxizwl67yhi7qs0x6c8nrxpqd1y5y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d46738976f5dfaf899ee778b1ba6dcee455fd271/recipes/pipenv"; - sha256 = "110ddg6yjglp49rgn1ck41rl97q92nm6zx86mxjmcqq35cxmc6g1"; - name = "recipe"; - }; - packageRequires = [ emacs f pyvenv s ]; - meta = { - homepage = "https://melpa.org/#/pipenv"; - license = lib.licenses.free; - }; - }) {}; - pippel = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pippel"; - ename = "pippel"; - version = "20180710.156"; - src = fetchFromGitHub { - owner = "brotzeit"; - repo = "pippel"; - rev = "21a5200e8e5ccaa1911abb4ebf090b76ca839756"; - sha256 = "1amqjm6kn1xda058kdwq3xgk7raz6y9iw0mzrac78sgf57qaczyb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1796688ed0d6957557d960ca28e450f9bcb6cf/recipes/pippel"; - sha256 = "1li4h0dff1n7njy2lk3d50ndrlw84fphmdg16j0srkbgy7xz90yn"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/pippel"; - license = lib.licenses.free; - }; - }) {}; - pivotal-tracker = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pivotal-tracker"; - ename = "pivotal-tracker"; - version = "20170720.816"; - src = fetchFromGitHub { - owner = "jxa"; - repo = "pivotal-tracker"; - rev = "0311d117037c74512149a4a78b269c2e46d7dfba"; - sha256 = "0g3xzh8jr9lbg6h2hk81cdyxkxx3l79qhxrp4g34rc0dml79rzf9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pivotal-tracker"; - sha256 = "0yiyz11sd25ybgr2qmg62qqmcz96va1pq3q866cqmpl38xn7znpj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pivotal-tracker"; - license = lib.licenses.free; - }; - }) {}; - pixie-mode = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , inf-clojure - , lib - , melpaBuild }: - melpaBuild { - pname = "pixie-mode"; - ename = "pixie-mode"; - version = "20180625.2241"; - src = fetchFromGitHub { - owner = "johnwalker"; - repo = "pixie-mode"; - rev = "a40c2632cfbe948852a5cdcfd44e6a65db11834d"; - sha256 = "11c5gv88chh7sg2i0rzisbad0mkq1zc7dyi5md8hdi5gqm68704g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a57300bfdae57c9996db0411d56a5fc7b35778c3/recipes/pixie-mode"; - sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8"; - name = "recipe"; - }; - packageRequires = [ clojure-mode inf-clojure ]; - meta = { - homepage = "https://melpa.org/#/pixie-mode"; - license = lib.licenses.free; - }; - }) {}; - pixiv-novel-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pixiv-novel-mode"; - ename = "pixiv-novel-mode"; - version = "20160220.621"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "pixiv-novel-mode.el"; - rev = "0d1ca524d92b91f20a7105402a773bc21779b434"; - sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92092c1c13c37520f98b952d40745aa062f062c1/recipes/pixiv-novel-mode"; - sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pixiv-novel-mode"; - license = lib.licenses.free; - }; - }) {}; - pkg-info = callPackage ({ epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pkg-info"; - ename = "pkg-info"; - version = "20150517.443"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "pkg-info.el"; - rev = "4dbe328c9eced79e0004e3fdcd7bfb997a928be5"; - sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pkg-info"; - sha256 = "1k23hmpcq534060qcxbrv4g6bw9nzcbjg192mbdp20kwidw7p81n"; - name = "recipe"; - }; - packageRequires = [ epl ]; - meta = { - homepage = "https://melpa.org/#/pkg-info"; - license = lib.licenses.free; - }; - }) {}; - pkgbuild-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pkgbuild-mode"; - ename = "pkgbuild-mode"; - version = "20181216.531"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "pkgbuild-mode"; - rev = "e30e37730b5f30bc0dd5b9328fbf4cb3e6f46fdd"; - sha256 = "1ijx067hlbr4yz9b9h58pwlqd4rgjgm27f5s1f9f3rwb249s36s1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/pkgbuild-mode"; - sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pkgbuild-mode"; - license = lib.licenses.free; - }; - }) {}; - plain-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plain-theme"; - ename = "plain-theme"; - version = "20171123.2010"; - src = fetchFromGitLab { - owner = "yegortimoshenko"; - repo = "plain-theme"; - rev = "2609a811335d58cfb73a65d6307c156fe09037d3"; - sha256 = "0g5vl4xigdm2pn2mnkwgj1kxdjr66w7ynr77bchy3ij6qvzdzkqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b147fb05a1b4296e1b85d31ba018d132a5bb5ed2/recipes/plain-theme"; - sha256 = "10qq7cy6hqh6c8qi796y9lk4wyyjbhdn1pvkcw3g29cfh857x50m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plain-theme"; - license = lib.licenses.free; - }; - }) {}; - plan9-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plan9-theme"; - ename = "plan9-theme"; - version = "20180804.741"; - src = fetchFromGitHub { - owner = "john2x"; - repo = "plan9-theme.el"; - rev = "4c1050b8ed42e0f99ef64c77ec370a786bd0003c"; - sha256 = "1l2bgdip617zkd9470rja1qyijpc896dvmc6dgclvaz1ajgjwa9j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc4c2bafaa09e38edd485a9091db689fbda2fe6/recipes/plan9-theme"; - sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/plan9-theme"; - license = lib.licenses.free; - }; - }) {}; - planet-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "planet-theme"; - ename = "planet-theme"; - version = "20161030.1917"; - src = fetchFromGitHub { - owner = "cmack"; - repo = "emacs-planet-theme"; - rev = "b0a310ff36565fe22224c407cf59569986698a32"; - sha256 = "1xdj59skmldq5dnarirhwq4qycipas86nbyqwl8zsv0bh20nl1rs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/planet-theme"; - sha256 = "1hr5m08qn51r9804jd0k95ryz3frzkk1dp6wpybil6bf67a2l5lr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/planet-theme"; - license = lib.licenses.free; - }; - }) {}; - plantuml-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plantuml-mode"; - ename = "plantuml-mode"; - version = "20190531.153"; - src = fetchFromGitHub { - owner = "skuro"; - repo = "plantuml-mode"; - rev = "27d48942a6bde22386694d87ec1b263a9f210d3a"; - sha256 = "1nv1bjqdcqhpx37l3ir28n7iqn97papxr9719l849cnxq81g1v2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38e74bb9923044323f34473a5b13867fe39bed25/recipes/plantuml-mode"; - sha256 = "03srbg34512vxcqn95q4r7h2aqbqq0sd5c9ffnbx2a75vsblqc6h"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/plantuml-mode"; - license = lib.licenses.free; - }; - }) {}; - plaster = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plaster"; - ename = "plaster"; - version = "20180127.1250"; - src = fetchFromGitHub { - owner = "Shirakumo"; - repo = "plaster"; - rev = "11eb23920410818fe444887b97ad4c8722d66c85"; - sha256 = "0lqz8m8a2ahvgm0i9cz0j4bisi34czc4s29z70p5p6rdg4g21fk1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e363cffa021e649c052f38cedb7cc01dbe9e24a/recipes/plaster"; - sha256 = "0vfixc0f5n4flsmdf1iqlbx03yv28w3nqm1ycz2fx6p5jvhkvfqk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plaster"; - license = lib.licenses.free; - }; - }) {}; - platformio-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "platformio-mode"; - ename = "platformio-mode"; - version = "20161210.539"; - src = fetchFromGitHub { - owner = "ZachMassia"; - repo = "PlatformIO-Mode"; - rev = "1466aed132a77f48fcb31938d64abb1a1e58ec42"; - sha256 = "1lfkp7df8as9gspynkyhz4dbm95kbngyba1ymg6ql67adyv79v1i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/platformio-mode"; - sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; - name = "recipe"; - }; - packageRequires = [ projectile ]; - meta = { - homepage = "https://melpa.org/#/platformio-mode"; - license = lib.licenses.free; - }; - }) {}; - play-crystal = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "play-crystal"; - ename = "play-crystal"; - version = "20180114.224"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "play-crystal.el"; - rev = "86b54346e7c832c14f8e5654a462f6490a6b11d7"; - sha256 = "0kvkr24f8r21pahm2lsvbr9bg53770wxwpdfmmjljs2zmgxf2c40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92715977136afa731e85e894542dc88b664b3304/recipes/play-crystal"; - sha256 = "1jqf36b1mhyf4j7fs386g6isy09q7k8zwdc4rb34mhjg1a56gcnf"; - name = "recipe"; - }; - packageRequires = [ dash emacs request ]; - meta = { - homepage = "https://melpa.org/#/play-crystal"; - license = lib.licenses.free; - }; - }) {}; - play-routes-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "play-routes-mode"; - ename = "play-routes-mode"; - version = "20170426.33"; - src = fetchFromGitHub { - owner = "brocode"; - repo = "play-routes-mode"; - rev = "ef8230932f7bb96643febbd6872c522932f9571a"; - sha256 = "1wv4wnkcdlq5qvxr55wgs6dc64m69r0niz0r5h2ch9d5nclmvbkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/740cef8687232eb0e2186e8df956c2d4f39575cf/recipes/play-routes-mode"; - sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/play-routes-mode"; - license = lib.licenses.free; - }; - }) {}; - playerctl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "playerctl"; - ename = "playerctl"; - version = "20180301.554"; - src = fetchFromGitHub { - owner = "thomasluquet"; - repo = "playerctl.el"; - rev = "c75358240a9bc234f31fc3e652929b103b1238b9"; - sha256 = "1yf66kw967xminfwzzdfzimh1313m3lm946bmcdl1zb8db0fcrdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6db0d82c2eef7c5bef5f9f2c15969da4c404b62d/recipes/playerctl"; - sha256 = "1pix3hcsg6ymzajiixwcq4v3clvadpkl0rhplkhachv6wmci327x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/playerctl"; - license = lib.licenses.free; - }; - }) {}; - playground = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "playground"; - ename = "playground"; - version = "20180623.2026"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "emacs-playground"; - rev = "85ab8ce4b574254eead623a3553082a9e6e655af"; - sha256 = "0m780v6h3mjib5hmmv3afjnmh562v5c13l6vam4nnhj4qrq33ri8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f062a74fe1746129879ad19c1735621f58509d33/recipes/playground"; - sha256 = "1xjmxkl8h4l87fvv1sr478r6mkmy9gkzw2fxmzqn5fcsahzkyg4d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/playground"; - license = lib.licenses.free; - }; - }) {}; - plenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plenv"; - ename = "plenv"; - version = "20130706.2316"; - src = fetchFromGitHub { - owner = "karupanerura"; - repo = "plenv.el"; - rev = "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2"; - sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0819979b9567ac5fab9ed6821eba8fe7ee6a299/recipes/plenv"; - sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/plenv"; - license = lib.licenses.free; - }; - }) {}; - plim-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plim-mode"; - ename = "plim-mode"; - version = "20140812.1713"; - src = fetchFromGitHub { - owner = "dongweiming"; - repo = "plim-mode"; - rev = "98cd6d11b7ff3ee7b6cb8845f143b5a692a3e6e8"; - sha256 = "1mcd6c3kgq9a5mv9c9di042vqicjp16nm9i6kz0p8ij3hk2ib22i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/plim-mode"; - sha256 = "1nrqw5dvb3j5x3wkpsjbpv1d2s367icq9j4h1xv1cahfsn8nn4m9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/plim-mode"; - license = lib.licenses.free; - }; - }) {}; - plsense = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "plsense"; - ename = "plsense"; - version = "20151104.645"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-plsense"; - rev = "d50f9dccc98f42bdb42f1d1c8142246e03879218"; - sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb1025f146514e9c142cd96cac9f2989d6d1a8c5/recipes/plsense"; - sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/plsense"; - license = lib.licenses.free; - }; - }) {}; - plsense-direx = callPackage ({ direx - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , plsense - , yaxception }: - melpaBuild { - pname = "plsense-direx"; - ename = "plsense-direx"; - version = "20140520.1308"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "plsense-direx"; - rev = "8a2f465264c74e04524cc789cdad0190ace43f6c"; - sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/65fb1d8b4ed12f097958842d1b00dcdf3660b184/recipes/plsense-direx"; - sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; - name = "recipe"; - }; - packageRequires = [ direx log4e plsense yaxception ]; - meta = { - homepage = "https://melpa.org/#/plsense-direx"; - license = lib.licenses.free; - }; - }) {}; - plur = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plur"; - ename = "plur"; - version = "20160504.224"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "plur"; - rev = "5bdd3b9a2f0624414bd596e798644713cd1545f0"; - sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38f6f53fcd1186efd5e6752166da4e23b712cdb1/recipes/plur"; - sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plur"; - license = lib.licenses.free; - }; - }) {}; - pmdm = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pmdm"; - ename = "pmdm"; - version = "20151109.1036"; - src = fetchhg { - url = "https://bitbucket.com/inigoserna/pmdm.el"; - rev = "f50a54774156"; - sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pmdm"; - sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pmdm"; - license = lib.licenses.free; - }; - }) {}; - po-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "po-mode"; - ename = "po-mode"; - version = "20190511.842"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "po-mode"; - rev = "1916142f6a817c733d5ec37e3b4fbae3da67e499"; - sha256 = "0nvpr5ry86by1dm7mp2w5p534qg4c9dpdich3x13gbbp9vazc7h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38e855cde9264bff67016d23e7e5e00f113c55bf/recipes/po-mode"; - sha256 = "1w06i709bb04pziygdn7y47gcci7gybg0p7ncdsm07d0w7q14v2z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/po-mode"; - license = lib.licenses.free; - }; - }) {}; - pocket-api = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "pocket-api"; - ename = "pocket-api"; - version = "20180402.1809"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "pocket-api.el"; - rev = "3eb9430b9db90bc02e736e433eb86389f7655189"; - sha256 = "0k6a9zzdi02g677cc699llk04i06yb7ddnlnmxndap5jszfyqwfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04e3be76aef4d1b6d5bb3eda533b5deffcc8a5bc/recipes/pocket-api"; - sha256 = "1f5j491wbqgbx6zlb0zdajca5il0628vr9a38y0n3x0h69wm0cx5"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/pocket-api"; - license = lib.licenses.free; - }; - }) {}; - pocket-lib = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "pocket-lib"; - ename = "pocket-lib"; - version = "20180711.1723"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "pocket-lib.el"; - rev = "8dd89153472d2e49bf9a3b3507b93c2acf0b44ac"; - sha256 = "05wyi3mj8mhswdajyng10r0z6ai2y9gh888x8bskdvxdnd772glk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71f17ce28f4fc8c2c100848be8aec15526ef8697/recipes/pocket-lib"; - sha256 = "0v619blifmvm36dr773wjf35fjji4dj3pyck9nkz0m8zmpz0fg78"; - name = "recipe"; - }; - packageRequires = [ dash emacs kv request s ]; - meta = { - homepage = "https://melpa.org/#/pocket-lib"; - license = lib.licenses.free; - }; - }) {}; - pocket-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pocket-api }: - melpaBuild { - pname = "pocket-mode"; - ename = "pocket-mode"; - version = "20171201.515"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "pocket-mode"; - rev = "229de7d35b7e5605797591c46aa8200d7efc363c"; - sha256 = "0j3axac4lp7p00a7mf7frryqg1y3jwqaw0s475gz606642vg9l45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6aa3d04058bfc0bc1da3393d17429d517275e97c/recipes/pocket-mode"; - sha256 = "04zxll5yg021m13vr54w2pnrmqb87ykdbpa8nx2wn9myg2rywh0v"; - name = "recipe"; - }; - packageRequires = [ emacs pocket-api ]; - meta = { - homepage = "https://melpa.org/#/pocket-mode"; - license = lib.licenses.free; - }; - }) {}; - pocket-reader = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , kv - , lib - , melpaBuild - , org-web-tools - , ov - , pocket-lib - , rainbow-identifiers - , s }: - melpaBuild { - pname = "pocket-reader"; - ename = "pocket-reader"; - version = "20181219.130"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "pocket-reader.el"; - rev = "a7f080ec3e9522f942166de61b24a375b8f1c2bb"; - sha256 = "0l7dln7qcrgzm73vk7jp8wr2kibg18973xmdzyyc162hdnlbrpb0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/835a7bf2f72987183e9d15ada7ae747fb5715c11/recipes/pocket-reader"; - sha256 = "0gcgmz4mhjgvqbh2gmv8v09sy80cnfccjym455m0fbl31b8dczhf"; - name = "recipe"; - }; - packageRequires = [ - dash - emacs - ht - kv - org-web-tools - ov - pocket-lib - rainbow-identifiers - s - ]; - meta = { - homepage = "https://melpa.org/#/pocket-reader"; - license = lib.licenses.free; - }; - }) {}; - podcaster = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "podcaster"; - ename = "podcaster"; - version = "20161020.835"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "podcaster"; - rev = "9854517025deb5d556168a68955fb7b662239f5c"; - sha256 = "06ag0idz7cf6i9kg7kqr03js9b6cw6my1jzd1x3wkgazx5slqk4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2649dc294f40d00f3bf1b1cf09879c2ef0d3e43b/recipes/podcaster"; - sha256 = "1kzac0mhg8dk2vfk29ns36jl8vwg6ghbdb3n6kqfzci5ygn96yib"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/podcaster"; - license = lib.licenses.free; - }; - }) {}; - poe-lootfilter-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "poe-lootfilter-mode"; - ename = "poe-lootfilter-mode"; - version = "20190330.417"; - src = fetchFromGitHub { - owner = "jdodds"; - repo = "poe-lootfilter-mode"; - rev = "5ef06684cb2b17b090ee1f303c2b789fa71bc106"; - sha256 = "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/006f39eaf8a87822fe8becab1da2822ff6fc2beb/recipes/poe-lootfilter-mode"; - sha256 = "0iw3a2lf0mnv3lamphy458nfyjjm1yvln1syfad49av3karca05z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/poe-lootfilter-mode"; - license = lib.licenses.free; - }; - }) {}; - poet-client = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "poet-client"; - ename = "poet-client"; - version = "20190123.2254"; - src = fetchFromGitHub { - owner = "wailo"; - repo = "emacs-poet"; - rev = "bca73c57f1daa33eec7763adcbc9733f65f9864d"; - sha256 = "129xc278kryh097y4jxqkzbsw6y39b8yxxq5sp7y0a1cm10gwdwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0b003773edaa728ed49f0de2ca64a00cb60d13a/recipes/poet-client"; - sha256 = "11yj57915ly8j2byp5c395lip73iv1chrzxdlxilhnll1brvmaw0"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/poet-client"; - license = lib.licenses.free; - }; - }) {}; - poet-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "poet-theme"; - ename = "poet-theme"; - version = "20190127.1420"; - src = fetchFromGitHub { - owner = "kunalb"; - repo = "poet"; - rev = "e16d47de40c9ec434adb8b861223f0bf95495240"; - sha256 = "1nf34m5agygd93q45bsi3zxbzf9jyz11hncwyi6q8mnanxr2imfa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/40bbe29dee56f7989d8e87c03f4842e2b191acc3/recipes/poet-theme"; - sha256 = "0pllyp4spj30g6ihzc91hzvnrvcg2zb49adj8wcmbzvq3hxnvls1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/poet-theme"; - license = lib.licenses.free; - }; - }) {}; - point-pos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "point-pos"; - ename = "point-pos"; - version = "20170421.932"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "point-pos.el"; - rev = "f4126b64567a81e7f22058f09d56c63b2ff06632"; - sha256 = "1sbwz9kxvnd5r24q9x6bhcjajjnm2z8q6khgqs4gl4ycs60kn0s6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23a1e835155fba51f595c10c46487a4c269f43ff/recipes/point-pos"; - sha256 = "1zv6hx8i8jwq52j4la1ff0ar0bpbs2pb4gcsh9hypghba11gnync"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/point-pos"; - license = lib.licenses.free; - }; - }) {}; - point-stack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "point-stack"; - ename = "point-stack"; - version = "20170808.958"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "point-stack"; - rev = "76e17311e3a810314c7d31ac46dc55450ff30fa2"; - sha256 = "1sp3djnyg3f5ci43m4pi0f6clblrz5lrnzc415r87csbavqqgv2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb3c9e6b3c583f098f75462b4d48cd137a1bcb76/recipes/point-stack"; - sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/point-stack"; - license = lib.licenses.free; - }; - }) {}; - pointback = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pointback"; - ename = "pointback"; - version = "20100210.752"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "pointback"; - rev = "e3a02c1784d81b5a1d2477338d049af581ed19f8"; - sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/pointback"; - sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pointback"; - license = lib.licenses.free; - }; - }) {}; - pollen-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pollen-mode"; - ename = "pollen-mode"; - version = "20190309.2138"; - src = fetchFromGitHub { - owner = "lijunsong"; - repo = "pollen-mode"; - rev = "819edf830e9519f8ca57e9cef31211e3f444d11a"; - sha256 = "0c06kfbyk2g0kxwlh6g3r7ij06ip6x9ni0bin24drwr0qj2vis2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97bda0616abe3bb632fc4231e5317d9472dfd14f/recipes/pollen-mode"; - sha256 = "1kskvdh6rczlki724h5xym8s4iychqzm0i82qdj87x1cg1kx9i85"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pollen-mode"; - license = lib.licenses.free; - }; - }) {}; - poly-R = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , poly-markdown - , poly-noweb - , polymode }: - melpaBuild { - pname = "poly-R"; - ename = "poly-R"; - version = "20190605.1403"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-R"; - rev = "0443c89b4d2bc2ed235a0c017109c2dbd342aa02"; - sha256 = "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-R"; - sha256 = "1v2was6pdynwm22b4n2hkwyrr0c0iir9kp1wz4hjab8haqxz68ii"; - name = "recipe"; - }; - packageRequires = [ emacs poly-markdown poly-noweb polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-R"; - license = lib.licenses.free; - }; - }) {}; - poly-ansible = callPackage ({ ansible - , ansible-doc - , fetchFromGitLab - , fetchurl - , jinja2-mode - , lib - , melpaBuild - , polymode - , yaml-mode }: - melpaBuild { - pname = "poly-ansible"; - ename = "poly-ansible"; - version = "20181222.717"; - src = fetchFromGitLab { - owner = "mavit"; - repo = "poly-ansible"; - rev = "2cb970a0e27b41ae85bc51d24ef36fa2c7b34bbc"; - sha256 = "04vf6zgcra47j3phxbb43q5sa5ldavnbiwwdlw1xipg44991j6md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d8beef5daa1804f68c30138cb03b5085a282c34/recipes/poly-ansible"; - sha256 = "158z3nbqgrh71myyp4l263lw1gn4iiwxv8pl7fdlyp80hz5zs60y"; - name = "recipe"; - }; - packageRequires = [ - ansible - ansible-doc - jinja2-mode - polymode - yaml-mode - ]; - meta = { - homepage = "https://melpa.org/#/poly-ansible"; - license = lib.licenses.free; - }; - }) {}; - poly-erb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-erb"; - ename = "poly-erb"; - version = "20190605.1402"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-erb"; - rev = "304204f415b9e46ee36b64531b7d170540828335"; - sha256 = "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-erb"; - sha256 = "01c1z2jll497k1y8835pp54n121y0gkyz1pdxcdjjqv7ia8jwfyy"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-erb"; - license = lib.licenses.free; - }; - }) {}; - poly-markdown = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-markdown"; - ename = "poly-markdown"; - version = "20190605.1402"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-markdown"; - rev = "b0de1a9f3e4d7191b1b23b65ebf03dd0ac007afc"; - sha256 = "0b6wlmhrpcw9g8rbw7q7k5fr2lgcp1rpy7d9p9f0gzn52yvcr4dr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-markdown"; - sha256 = "0pxai5x2vz6j742s3bpcy82dxja6441fsgclhz1hbv2ykazbm141"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-markdown"; - license = lib.licenses.free; - }; - }) {}; - poly-noweb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-noweb"; - ename = "poly-noweb"; - version = "20190605.1402"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-noweb"; - rev = "4e65cb22d6bca901021205257f867f868989c665"; - sha256 = "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-noweb"; - sha256 = "1692js29wdjpxvcbcaxysbsq6pxdqr38frqf88ksldlz35cmy62b"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-noweb"; - license = lib.licenses.free; - }; - }) {}; - poly-org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-org"; - ename = "poly-org"; - version = "20190605.1403"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-org"; - rev = "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f"; - sha256 = "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-org"; - sha256 = "1xrhdjmz3p5d3sgbfpmf6wksa1cpxqhy1wg17b5x8ah4w4yhpdca"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-org"; - license = lib.licenses.free; - }; - }) {}; - poly-rst = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-rst"; - ename = "poly-rst"; - version = "20190605.1403"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-rst"; - rev = "1a7d38e1c1d35cf64e4dad408db486a8e1931e61"; - sha256 = "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3fb89f58903245a8df75060ddd695a05cedb322/recipes/poly-rst"; - sha256 = "08sdnjb5zvlynyxkmajn1j9gnjdjj81ycid9ziydvrb7hb88x2m4"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-rst"; - license = lib.licenses.free; - }; - }) {}; - poly-ruby = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-ruby"; - ename = "poly-ruby"; - version = "20180905.229"; - src = fetchFromGitHub { - owner = "knu"; - repo = "poly-ruby.el"; - rev = "794ebb926ace23e9c1398da934701951432dcea2"; - sha256 = "1ffm81hg1gah7hb9x556hda5g4j3gk4c986q9gaacvfizqak3gyy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68213703359324d09553a2164f1f6ecca7c16854/recipes/poly-ruby"; - sha256 = "0d8s6bl5ynx0r5cwvfkd52rksiq5kdyrgbxds56r8ls6cfkwqngg"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-ruby"; - license = lib.licenses.free; - }; - }) {}; - poly-slim = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode - , slim-mode }: - melpaBuild { - pname = "poly-slim"; - ename = "poly-slim"; - version = "20190605.1403"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-slim"; - rev = "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d"; - sha256 = "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-slim"; - sha256 = "15nh0d8y79rwc24akxfpf346jypadfgjjn6vlgaj6xjnj7wsp7ax"; - name = "recipe"; - }; - packageRequires = [ emacs polymode slim-mode ]; - meta = { - homepage = "https://melpa.org/#/poly-slim"; - license = lib.licenses.free; - }; - }) {}; - polymode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "polymode"; - ename = "polymode"; - version = "20190605.1359"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "polymode"; - rev = "82a0c3d71cc02e32a347033b3f42afeac4e43f66"; - sha256 = "04v0gnzfsjb50bgly6kvpryx8cyzwjaq2llw4qv9ijw1l6ixmq3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/polymode"; - sha256 = "15i9masklpy4iwskc7dzqjhb430ggn0496z4wb1zjj0b9xx4wj66"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/polymode"; - license = lib.licenses.free; - }; - }) {}; - pomidor = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pomidor"; - ename = "pomidor"; - version = "20190523.714"; - src = fetchFromGitHub { - owner = "TatriX"; - repo = "pomidor"; - rev = "590e64d316d9210bd00cb4eb39d2f07ddc16809a"; - sha256 = "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor"; - sha256 = "0pdzipyza98dhnz6am8lrmz8fh3p1c21v2mhs56fb9lwyvcgv8fi"; - name = "recipe"; - }; - packageRequires = [ alert emacs ]; - meta = { - homepage = "https://melpa.org/#/pomidor"; - license = lib.licenses.free; - }; - }) {}; - pomodoro = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pomodoro"; - ename = "pomodoro"; - version = "20190201.1352"; - src = fetchFromGitHub { - owner = "baudtack"; - repo = "pomodoro.el"; - rev = "6cd665ceeaca1f70954aa4caef6f085179f94c69"; - sha256 = "08z2nja3bhjgg6k7bb0cr8v02y8gaxkmxmfcvvgiixw3kfrnkpwn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b5c2c50eb87952d01c1b338b7d3e4b3a4546555/recipes/pomodoro"; - sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pomodoro"; - license = lib.licenses.free; - }; - }) {}; - pony-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pony-mode"; - ename = "pony-mode"; - version = "20170807.822"; - src = fetchFromGitHub { - owner = "davidmiller"; - repo = "pony-mode"; - rev = "760684d30b6c234d1b88c9a4673a808f36f7f341"; - sha256 = "1y4gxn25i2nszdhqq8jxf9h65mqfgcwbypx5p4wkan5i1v2i3yr1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1fd64317610fb6ef5b14e8bf15e727680d5ff09/recipes/pony-mode"; - sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pony-mode"; - license = lib.licenses.free; - }; - }) {}; - pony-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "pony-snippets"; - ename = "pony-snippets"; - version = "20160204.2011"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "pony-snippets"; - rev = "a6615ab0693f17fc47ec45753202010238157810"; - sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pony-snippets"; - sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/pony-snippets"; - license = lib.licenses.free; - }; - }) {}; - ponylang-mode = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ponylang-mode"; - ename = "ponylang-mode"; - version = "20180804.821"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "ponylang-mode"; - rev = "963abdcdb398b71fb13a4f7d2ffde23eb20e2a23"; - sha256 = "1h0y6x4h7higwdq569h2lk0iddd23c3csqjk7y5phvc0lq812xs0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d51adec3c6519d6ffe9b3f7f8a86b4dbc2c9817/recipes/ponylang-mode"; - sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ponylang-mode"; - license = lib.licenses.free; - }; - }) {}; - pophint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "pophint"; - ename = "pophint"; - version = "20170917.1948"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-pophint"; - rev = "909025c5a871ca4b9ec7aed7f1a27c819a94dba1"; - sha256 = "0qbb36qijkzbzxlmqsvvddm7x2gk9rkafnyjbkxsl76rz1ajy6nz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0055c2887acbbd8a2803bf3f81ac2cc444cc805a/recipes/pophint"; - sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/pophint"; - license = lib.licenses.free; - }; - }) {}; - poporg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "poporg"; - ename = "poporg"; - version = "20170403.51"; - src = fetchFromGitHub { - owner = "QBobWatson"; - repo = "poporg"; - rev = "2c58d68c81ecca4140bf179f19ed153ec804b65a"; - sha256 = "1ymqhy0sqd54z154s3cm6q1m4xnr9wkx9dl5f93845k11ay3kvln"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63502ec265a66d3f72ef93a2f6e7c2e517ff98a3/recipes/poporg"; - sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/poporg"; - license = lib.licenses.free; - }; - }) {}; - popup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "popup"; - ename = "popup"; - version = "20160709.729"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "popup-el"; - rev = "e452399db8bb0a8906c627f598eb8f0dcfca5572"; - sha256 = "07jcpdjk33nw82wx872fp2dph025kb0szfnbgc2xs56i11141371"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/popup"; - sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/popup"; - license = lib.licenses.free; - }; - }) {}; - popup-complete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "popup-complete"; - ename = "popup-complete"; - version = "20141108.1908"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-popup-complete"; - rev = "e362d4a005b36646ffbaa6be604e9e31bc406ca9"; - sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b43b85f90c476a3b88f94927a7db90bdc72cd171/recipes/popup-complete"; - sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/popup-complete"; - license = lib.licenses.free; - }; - }) {}; - popup-edit-menu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "popup-edit-menu"; - ename = "popup-edit-menu"; - version = "20170404.725"; - src = fetchFromGitHub { - owner = "debugfan"; - repo = "popup-edit-menu"; - rev = "925600a6e29183841199e866cf55e566a6a1b002"; - sha256 = "1dd0ss7cjdjs3c7vkq8p874408iysih80brc8vlfh1f43cnc5v92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e824ae5bd9214f8de210059f8145f13a4e62e8a1/recipes/popup-edit-menu"; - sha256 = "1mqni09l1xfxv4g64hskpsla41r5d2xfbw81ncbszwqzlln6k5bf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/popup-edit-menu"; - license = lib.licenses.free; - }; - }) {}; - popup-imenu = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flx-ido - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "popup-imenu"; - ename = "popup-imenu"; - version = "20170326.340"; - src = fetchFromGitHub { - owner = "ancane"; - repo = "popup-imenu"; - rev = "c5e2e69adbd3a630e4cb750965a1aee8c10c1f09"; - sha256 = "0vn0jli0ya7xnapifkgzynbnh3rpnzb82j5k9bla2j4miqfc6cg8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca5d65d6a9c7ef3fa2684271fe087dc132d3a61/recipes/popup-imenu"; - sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; - name = "recipe"; - }; - packageRequires = [ dash flx-ido popup ]; - meta = { - homepage = "https://melpa.org/#/popup-imenu"; - license = lib.licenses.free; - }; - }) {}; - popup-kill-ring = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , pos-tip }: - melpaBuild { - pname = "popup-kill-ring"; - ename = "popup-kill-ring"; - version = "20131020.1154"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "popup-kill-ring"; - rev = "dc50b62ae8b7c2675dde96bb410d9bf0e8643f6a"; - sha256 = "0bpnsc4agy6mcnc79d9a6gi79jiiqrhf3a55pw0p4z16m86vwyqr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b745b067e5d68467b89e0dbade7a9a76de2946c/recipes/popup-kill-ring"; - sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip"; - name = "recipe"; - }; - packageRequires = [ popup pos-tip ]; - meta = { - homepage = "https://melpa.org/#/popup-kill-ring"; - license = lib.licenses.free; - }; - }) {}; - popup-switcher = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "popup-switcher"; - ename = "popup-switcher"; - version = "20171205.51"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "popup-switcher"; - rev = "f5788a31918e37bb5c04139048c667bcec9f1b62"; - sha256 = "0gfi8dlgynciv3q5a208c7gd66g2r99b3zn0i31ibpppjqy2vcsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7d1897c4c4a6f4b4527279e6dad976219d7b78/recipes/popup-switcher"; - sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1"; - name = "recipe"; - }; - packageRequires = [ cl-lib popup ]; - meta = { - homepage = "https://melpa.org/#/popup-switcher"; - license = lib.licenses.free; - }; - }) {}; - popwin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "popwin"; - ename = "popwin"; - version = "20150315.600"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "popwin-el"; - rev = "95dea14c60019d6cccf9a3b33e0dec4e1f22c304"; - sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3d6a8b734e0820fd904c215a83fe5519496dc3/recipes/popwin"; - sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/popwin"; - license = lib.licenses.free; - }; - }) {}; - portage-navi = callPackage ({ concurrent - , ctable - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "portage-navi"; - ename = "portage-navi"; - version = "20141208.555"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-portage-navi"; - rev = "8016c3e99fe6cef101d479a3d69185796b22ca2f"; - sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a467702b3ac3c8bdc723262e6919f67fd71d524/recipes/portage-navi"; - sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg"; - name = "recipe"; - }; - packageRequires = [ concurrent ctable ]; - meta = { - homepage = "https://melpa.org/#/portage-navi"; - license = lib.licenses.free; - }; - }) {}; - pos-tip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pos-tip"; - ename = "pos-tip"; - version = "20150318.813"; - src = fetchFromGitHub { - owner = "pitkali"; - repo = "pos-tip"; - rev = "051e08fec5cf30b7574bdf439f79fef7d42d689d"; - sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/306e9978d2a071548cc9d8c531a1ce6c6c6b99aa/recipes/pos-tip"; - sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pos-tip"; - license = lib.licenses.free; - }; - }) {}; - posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "posframe"; - ename = "posframe"; - version = "20190605.2006"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "posframe"; - rev = "e9547ab066da28a89daa3efe3301a36f3faaf6fc"; - sha256 = "0w2vavml94gyrp10j6i44fgp1a59wnx6zhkp8cyfxyw0vjv44vcz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa3488f2ede1201faf4a147313456ed90271f050/recipes/posframe"; - sha256 = "02chwkc7gn7fxaaxsz9msmrhrd62bji5hhb71kdm019x8d84z06w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/posframe"; - license = lib.licenses.free; - }; - }) {}; - postcss-sorting = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "postcss-sorting"; - ename = "postcss-sorting"; - version = "20180211.156"; - src = fetchFromGitHub { - owner = "P233"; - repo = "postcss-sorting.el"; - rev = "deb0c935d2904c11a965758a9aee5a0e905f21fc"; - sha256 = "03kng7i09px5vizvmmrar7rj3bk27y43bi8hlzxax0ja27k0c66c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fae97430f211786f615f7450936f823e2a04ec4/recipes/postcss-sorting"; - sha256 = "0730b2wddal15yi4k6wzhv9xv1k40iwrn3mivg9bkxabh3mgrl10"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/postcss-sorting"; - license = lib.licenses.free; - }; - }) {}; - pov-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pov-mode"; - ename = "pov-mode"; - version = "20161114.2343"; - src = fetchFromGitHub { - owner = "melmothx"; - repo = "pov-mode"; - rev = "9fc1db3aab7c27155674dd1a87ec62606035d074"; - sha256 = "1399fxivy15y2k4vp7vqqgsi8l1mzxc8aa2mf2x1hksgiyq60acp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89d6b4a3d7a5f3cc93e9d13d4c174b5d7de7bad1/recipes/pov-mode"; - sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pov-mode"; - license = lib.licenses.free; - }; - }) {}; - pow = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pow"; - ename = "pow"; - version = "20140420.106"; - src = fetchFromGitHub { - owner = "yukihr"; - repo = "emacs-pow"; - rev = "782532d5d3582fe8fd67014507b20077f3f2d292"; - sha256 = "0d87h67qk7jw4fpq3kzzsh5v1k2nhrz6yfl1hzi7hqm5mdvnbfc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pow"; - sha256 = "13f3pk52f9lkkl3zi6448j9b39kn6ny9vmnlsvhwa6s0vaz8f220"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pow"; - license = lib.licenses.free; - }; - }) {}; - powerline = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "powerline"; - ename = "powerline"; - version = "20190322.1913"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "powerline"; - rev = "6ef4a06c3c583045accbc957b6f449b7c0c57cd8"; - sha256 = "1ybm5y03if4wbzhx5p05wwgf2d8l2c4vwi22d0ygvlwrzfk8n5dl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline"; - sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/powerline"; - license = lib.licenses.free; - }; - }) {}; - powerline-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "powerline-evil"; - ename = "powerline-evil"; - version = "20190602.2040"; - src = fetchFromGitHub { - owner = "johnson-christopher"; - repo = "powerline-evil"; - rev = "b77e2cf571e9990734f2b30d826f3a362b559fd1"; - sha256 = "1hs9jvl5lmfwr9k6qcnxjhd61zsmzq53ania1w5616gqa4qnjzhn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1a92c8b5b92269773d314aa6cec4f0057291a68/recipes/powerline-evil"; - sha256 = "1x5hvnjdrpn3c8z6m7xfk30qd5y58p3jcyqr48qx91d0109gk342"; - name = "recipe"; - }; - packageRequires = [ evil powerline ]; - meta = { - homepage = "https://melpa.org/#/powerline-evil"; - license = lib.licenses.free; - }; - }) {}; - powershell = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "powershell"; - ename = "powershell"; - version = "20190421.1338"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "powershell.el"; - rev = "87826777bd3ebd53740be99b4546bfc11ccc625d"; - sha256 = "038pcb7hv05yja9fvrmps6vh096a5rrdmyx9l8nisxqnsqf97ghv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7002c50f2734675134791916aa9d8b82b4582fcb/recipes/powershell"; - sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/powershell"; - license = lib.licenses.free; - }; - }) {}; - powerthesaurus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "powerthesaurus"; - ename = "powerthesaurus"; - version = "20180719.208"; - src = fetchFromGitHub { - owner = "SavchenkoValeriy"; - repo = "emacs-powerthesaurus"; - rev = "ab39b050e801934872f3dcaa60b50b0d30ecf367"; - sha256 = "0l4rny6ssa5wmksc0g1qnyfj15qlffavflm2adcqywr660d93pq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04a7e6d2292e933e0318296107774e1248888f3c/recipes/powerthesaurus"; - sha256 = "011kl3n1hfmz844w198gvh5anjyqj0m4pvryahslc0r1zavik7ni"; - name = "recipe"; - }; - packageRequires = [ emacs request s ]; - meta = { - homepage = "https://melpa.org/#/powerthesaurus"; - license = lib.licenses.free; - }; - }) {}; - ppd-sr-speedbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , project-persist-drawer - , sr-speedbar }: - melpaBuild { - pname = "ppd-sr-speedbar"; - ename = "ppd-sr-speedbar"; - version = "20151108.424"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "ppd-sr-speedbar"; - rev = "19d3e924407f40a6bb38c8fe427a159af755adce"; - sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f930f54048d06f6a97824b66fbb74649eed40b54/recipes/ppd-sr-speedbar"; - sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; - name = "recipe"; - }; - packageRequires = [ project-persist-drawer sr-speedbar ]; - meta = { - homepage = "https://melpa.org/#/ppd-sr-speedbar"; - license = lib.licenses.free; - }; - }) {}; - prassee-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prassee-theme"; - ename = "prassee-theme"; - version = "20180709.304"; - src = fetchFromGitHub { - owner = "prassee"; - repo = "prassee-emacs-theme"; - rev = "81126f69cdbaab836c00ae7a49aaf89d4229fde1"; - sha256 = "18yqsl8jsi3zxfcigvm6fjcx84hzb8b3j7ihiyzqmdhmvma3i08y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15425b576045af1c508912e2091daf475b80b429/recipes/prassee-theme"; - sha256 = "1j0817hxxri6mq9pplgwf5jp2dagk6hay7g1a1lgz4qgkf5jnshs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/prassee-theme"; - license = lib.licenses.free; - }; - }) {}; - preproc-font-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "preproc-font-lock"; - ename = "preproc-font-lock"; - version = "20151107.1218"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "preproc-font-lock"; - rev = "565fda9f5fdeb0598986174a07e9fb09f7604397"; - sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/582692267795c91bb7f2ec3bffc2b9c2be9f2a32/recipes/preproc-font-lock"; - sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/preproc-font-lock"; - license = lib.licenses.free; - }; - }) {}; - prescient = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prescient"; - ename = "prescient"; - version = "20190529.913"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "1964f605f1f1e50c64a33aa3910cde7a23b45afc"; - sha256 = "02q57qvw29ckrc53g5s9jicgxj87my30pk2iv8a865rvwbqqzs45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec02349e31531c347e4a43fbde56ae4386898cc6/recipes/prescient"; - sha256 = "04js3hblavfrc6kqp942x5yjdl3ndazf3n64p83423ldsmhbip6s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/prescient"; - license = lib.licenses.free; - }; - }) {}; - preseed-generic-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "preseed-generic-mode"; - ename = "preseed-generic-mode"; - version = "20180209.2100"; - src = fetchFromGitHub { - owner = "suntong"; - repo = "preseed-generic-mode"; - rev = "3aa8806c4a659064baa01751400c53fbaf847f66"; - sha256 = "02yb5xkgwqxpwghhjmxf2gx0faifi04w2jd8cvfsiwzwqmqyhmv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/preseed-generic-mode"; - sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/preseed-generic-mode"; - license = lib.licenses.free; - }; - }) {}; - presentation = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "presentation"; - ename = "presentation"; - version = "20180426.1924"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-presentation-mode"; - rev = "b1948e6d8b37b6df9290d77d181e1b1d58dd33c0"; - sha256 = "0wm7rg7gvyngps3b7agpyhhbi2r7z0n5x8wxzahl8l1bm820y8jk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/747afd0339215528bf104f778a13edacbac510b7/recipes/presentation"; - sha256 = "0zdpfvg6kbvi6b4lb7vbdjrkgk0j1q6gzyd0s2b0603fnyy4sqdg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/presentation"; - license = lib.licenses.free; - }; - }) {}; - prettier-js = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prettier-js"; - ename = "prettier-js"; - version = "20180108.2326"; - src = fetchFromGitHub { - owner = "prettier"; - repo = "prettier-emacs"; - rev = "0e8b95c4e5898a03e85dbc555c37b4f968292aec"; - sha256 = "0l8i0fbwwyhllkpk8xd6w5gcv65z4ja1ygf6slh5sd1g0ixh29md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/968ac7bb98b385f8542dc150486982c0ded73187/recipes/prettier-js"; - sha256 = "0mf66sdsdbhf76pwkjkfjsnh26g4j3zb4y1qrbxc9jcvymccb3yq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prettier-js"; - license = lib.licenses.free; - }; - }) {}; - prettify-greek = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prettify-greek"; - ename = "prettify-greek"; - version = "20160603.208"; - src = fetchFromGitLab { - owner = "fommil"; - repo = "emacs-prettify-greek"; - rev = "698d07a6ffe85f6fb53f3bfec4f49380c25cfd90"; - sha256 = "0g2bxa7mwfkc8navbi2w28rd4f4zqphxi13kwmd2p83g3wavd99v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/prettify-greek"; - sha256 = "1izl6r6i3zbhd7r7lz2k42yyz6qcng11wfmb7lx4883dj00flsl7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prettify-greek"; - license = lib.licenses.free; - }; - }) {}; - pretty-hydra = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pretty-hydra"; - ename = "pretty-hydra"; - version = "20190530.1353"; - src = fetchFromGitHub { - owner = "jerrypnz"; - repo = "major-mode-hydra.el"; - rev = "a93eb369e0ffd553f1fe9da2cdb7cee2edd02206"; - sha256 = "1sr4zhsjz83qq0cvzawhfpl5jgg4x1jxhhn01inz3v2030raf9gp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865917fcc75c4118afc89b8bcc20ebdb6302f15d/recipes/pretty-hydra"; - sha256 = "0gp4cbffpa17svs7fzxighyly7c8brsn3avv3hqvd590kkz3fkri"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs hydra s ]; - meta = { - homepage = "https://melpa.org/#/pretty-hydra"; - license = lib.licenses.free; - }; - }) {}; - pretty-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pretty-mode"; - ename = "pretty-mode"; - version = "20190209.1302"; - src = fetchFromGitHub { - owner = "pretty-mode"; - repo = "pretty-mode"; - rev = "26119b4e28e294980bd16564a13c73dc963b98cc"; - sha256 = "08sr73469zh0cn14lf3w2x4n7yf203pgr4hs3a218a5n51dksla3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pretty-mode"; - sha256 = "0zm6azbl70qmq2ybi576wfs3mx0ny54mf97b94ac501miv4fv0mq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pretty-mode"; - license = lib.licenses.free; - }; - }) {}; - pretty-sha-path = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pretty-sha-path"; - ename = "pretty-sha-path"; - version = "20141105.1026"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "pretty-sha-path.el"; - rev = "beea38bdf34ed27059d6484e1e2a337a27e1f7ce"; - sha256 = "1hfk3j69r0xva1c7v72vc2hhksdjia7vmxfx82j6j0jfpn6163f1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6520d692662aaf92023623273597d966ca3cba9d/recipes/pretty-sha-path"; - sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pretty-sha-path"; - license = lib.licenses.free; - }; - }) {}; - pretty-symbols = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pretty-symbols"; - ename = "pretty-symbols"; - version = "20140814.259"; - src = fetchFromGitHub { - owner = "drothlis"; - repo = "pretty-symbols"; - rev = "ab82b3fba129fae14e4031eb7fd648c1a92d0e71"; - sha256 = "12ny0lpqhj7g1hmj3y6012zz7145xx6ivgg381d4lc8791j35djd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed01ef6333e4558877b0e357ff8bf601fb88b757/recipes/pretty-symbols"; - sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pretty-symbols"; - license = lib.licenses.free; - }; - }) {}; - private = callPackage ({ aes - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "private"; - ename = "private"; - version = "20150121.1757"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "private"; - rev = "f57f1c2f6bfe900bd40b252688df4c6ed6a5f44b"; - sha256 = "0720vrb9nwy4c069fk7adw5f50g9dji1wra9s3jwazr8jn45k0mn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/private"; - sha256 = "1mvma2xgjy9vkh468x80xlri6qfr7d494la1j6r1clkjsn5kg7hr"; - name = "recipe"; - }; - packageRequires = [ aes ]; - meta = { - homepage = "https://melpa.org/#/private"; - license = lib.licenses.free; - }; - }) {}; - private-diary = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "private-diary"; - ename = "private-diary"; - version = "20151216.857"; - src = fetchFromGitHub { - owner = "cacology"; - repo = "private-diary"; - rev = "5b1aeb22f22447fd35e1c107b6db44a7b27b8a42"; - sha256 = "14g1hi9m91lb23jf4475pcdnb97fxrm52zblxag628nik3gp7qpb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef39950941c522e64ea991c9eeecfb5f6f18f6a2/recipes/private-diary"; - sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/private-diary"; - license = lib.licenses.free; - }; - }) {}; - proc-net = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "proc-net"; - ename = "proc-net"; - version = "20130321.1712"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-proc-net"; - rev = "00bfc92a381787ec387974ed17070118ced6d9ad"; - sha256 = "1df4kpr298hkii3rhx341qqnc9g4nq5vna6w687knzibbm0iixga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a518f37260084fa7e9221e9189aedc09a951f6d/recipes/proc-net"; - sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/proc-net"; - license = lib.licenses.free; - }; - }) {}; - processing-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "processing-mode"; - ename = "processing-mode"; - version = "20171022.1602"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "processing2-emacs"; - rev = "448aba82970c98322629eaf2746e73be6c30c98e"; - sha256 = "1fv74k37yyrh6jzasgqj88lrbq152gs9gpbjpxn7fz424c38gq2q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-mode"; - sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/processing-mode"; - license = lib.licenses.free; - }; - }) {}; - processing-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "processing-snippets"; - ename = "processing-snippets"; - version = "20140426.728"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "processing2-emacs"; - rev = "6175b8eef76369c4b1b8608b8df9a37f14b1be5c"; - sha256 = "1mjzn8mynagck6fcw499gxzs1xm7gfqamlmgyqiy58wjni2xllr6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-snippets"; - sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/processing-snippets"; - license = lib.licenses.free; - }; - }) {}; - prodigy = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "prodigy"; - ename = "prodigy"; - version = "20180511.238"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "prodigy.el"; - rev = "701dccaa56de9e6a330c05bde33bce4f3b3d6a97"; - sha256 = "1vyvxawlayp2nra0q83146q2nzv8qwn5a4nj0sx1jc90a0a83vgj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/prodigy"; - sha256 = "0lfxb80jqjnzssjs6l511jcsmhkpzb5rh5czrb16dkqcz0cl5b2p"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/prodigy"; - license = lib.licenses.free; - }; - }) {}; - professional-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "professional-theme"; - ename = "professional-theme"; - version = "20150315.400"; - src = fetchFromGitHub { - owner = "juanjux"; - repo = "emacs-professional-theme"; - rev = "0927d1474049a193f9f366bde5eb1887b9ba20ed"; - sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb79514b2afada80da82762890242de5ad88d8de/recipes/professional-theme"; - sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/professional-theme"; - license = lib.licenses.free; - }; - }) {}; - prog-fill = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prog-fill"; - ename = "prog-fill"; - version = "20180606.1832"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "prog-fill"; - rev = "3fbf7da6dd826e95c9077d659566ee29814a31d8"; - sha256 = "167is1hbv3nsskz26g9q3zdndqsw9d3rwhbasj0r7a3wabpr8j4r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d680ed481688c9899adb28fbd9a22a17fa8943/recipes/prog-fill"; - sha256 = "0wnqzkzhaywcyw93z86pngpycsrd1mi79psmck6qbhms1aia79p3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/prog-fill"; - license = lib.licenses.free; - }; - }) {}; - prognth = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prognth"; - ename = "prognth"; - version = "20130920.1059"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "prognth"; - rev = "2f1ca4d34b1fd581163e1df122c85418137e8e62"; - sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db6d52b92317aa5ad5024131b62edb5f91f50033/recipes/prognth"; - sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prognth"; - license = lib.licenses.free; - }; - }) {}; - programmer-dvorak = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "programmer-dvorak"; - ename = "programmer-dvorak"; - version = "20150426.1837"; - src = fetchFromGitHub { - owner = "yangchenyun"; - repo = "programmer-dvorak"; - rev = "c35d5e3b8b53c1e9341957b5d5db40387ba0c8ee"; - sha256 = "1y2n11d1kbpgb4jivvgd1j4gz409jfrg0kxfa04nx1b0nx4f3gd6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89b0f4b5838aa3d4572ca91fe60cf28664368cb6/recipes/programmer-dvorak"; - sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/programmer-dvorak"; - license = lib.licenses.free; - }; - }) {}; - project-abbrev = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-abbrev"; - ename = "project-abbrev"; - version = "20190516.2221"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "project-abbrev"; - rev = "b94f829bb24570782b9f6bbcfdec4b391091b778"; - sha256 = "0lkliz9hycag1gf5hxvh7mrgl5my2vbkn52g4pkh2x7hsdkxhxjy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/project-abbrev"; - sha256 = "12d0w3b9fh7hdi1qwm13s535k574xfh3ck48zpsv3jlxr59q5bqw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/project-abbrev"; - license = lib.licenses.free; - }; - }) {}; - project-explorer = callPackage ({ cl-lib ? null - , emacs - , es-lib - , es-windows - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-explorer"; - ename = "project-explorer"; - version = "20150503.1714"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "project-explorer"; - rev = "589a09008706f5f4ef91393dc4306eede0d15ca9"; - sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2e5d686b8a18c7a17965ff6c5af8f5817b7ab31/recipes/project-explorer"; - sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs es-lib es-windows ]; - meta = { - homepage = "https://melpa.org/#/project-explorer"; - license = lib.licenses.free; - }; - }) {}; - project-persist = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-persist"; - ename = "project-persist"; - version = "20180906.602"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "project-persist"; - rev = "26d9435bef44da2a1b0892eba822f9f487b98eec"; - sha256 = "0ja2pnbw11a2gwywfyfbdpk8rkm8imy04wkshpnlh0nwn7lf0clm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd81d1f8a30ed951ed94b9a4db13a2f7735ea878/recipes/project-persist"; - sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/project-persist"; - license = lib.licenses.free; - }; - }) {}; - project-persist-drawer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , project-persist }: - melpaBuild { - pname = "project-persist-drawer"; - ename = "project-persist-drawer"; - version = "20151108.422"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "project-persist-drawer"; - rev = "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626"; - sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23084af52d2243016eee73a5ee0cd3e945eec71d/recipes/project-persist-drawer"; - sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; - name = "recipe"; - }; - packageRequires = [ project-persist ]; - meta = { - homepage = "https://melpa.org/#/project-persist-drawer"; - license = lib.licenses.free; - }; - }) {}; - project-root = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-root"; - ename = "project-root"; - version = "20110206.1230"; - src = fetchhg { - url = "https://bitbucket.com/piranha/project-root"; - rev = "843ca1f4ab2b"; - sha256 = "0nw02f5lmbqdfnw93d3383sdxx1d31szk23zvjlrmmdwv2124281"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/project-root"; - sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/project-root"; - license = lib.licenses.free; - }; - }) {}; - project-shells = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "project-shells"; - ename = "project-shells"; - version = "20171107.51"; - src = fetchFromGitHub { - owner = "hying-caritas"; - repo = "project-shells"; - rev = "d9401de750e444697c2eb9de1ff79f2a2eba4af8"; - sha256 = "1x16l0gijirmj667s8l87nizsiww2wzjka9ydl4yxzchl7a486cp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/becf54de5ae9582d7c76382dff16d40b04b1a464/recipes/project-shells"; - sha256 = "0mhifxcpgsfwrhbs7axg6ja4klgzzy9pc0nqa7w3qg45xgi9s4m8"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/project-shells"; - license = lib.licenses.free; - }; - }) {}; - projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "projectile"; - ename = "projectile"; - version = "20190603.2330"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "projectile"; - rev = "fd85829ef2bdb8b2c183ea1b3ccfd50925824d78"; - sha256 = "0kf5izn62c647y9axhchjcc1s40h0khk5ry0jpb3p32lv71b4xvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile"; - sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/projectile"; - license = lib.licenses.free; - }; - }) {}; - projectile-codesearch = callPackage ({ codesearch - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "projectile-codesearch"; - ename = "projectile-codesearch"; - version = "20180508.822"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-codesearch"; - rev = "e40efc62e9333db0593bd81b5c78d08b19bfb193"; - sha256 = "04xivg6f19mlpsv77jwasg4ii9vlv8amblm03siwhx53ib9wlcyc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b1b1d3e356c6b9bffdcf98848918efe2fdfa8c7/recipes/projectile-codesearch"; - sha256 = "1457dhmpgrq1qafr3v4ccw26ix10m60c5vlrpyqsfz8vh8lv0bb8"; - name = "recipe"; - }; - packageRequires = [ codesearch projectile ]; - meta = { - homepage = "https://melpa.org/#/projectile-codesearch"; - license = lib.licenses.free; - }; - }) {}; - projectile-direnv = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "projectile-direnv"; - ename = "projectile-direnv"; - version = "20160305.1738"; - src = fetchFromGitHub { - owner = "christianromney"; - repo = "projectile-direnv"; - rev = "250a902585acb611e10cf0f0248a84416df01522"; - sha256 = "1yzq7zsm76p6gcgq3hz9bg3pgdj709gxx6jzp24mszkfb87jiw79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/602485c251bc573e855dfd33e4e94052afbab93f/recipes/projectile-direnv"; - sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh"; - name = "recipe"; - }; - packageRequires = [ dash emacs projectile s ]; - meta = { - homepage = "https://melpa.org/#/projectile-direnv"; - license = lib.licenses.free; - }; - }) {}; - projectile-git-autofetch = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "projectile-git-autofetch"; - ename = "projectile-git-autofetch"; - version = "20190417.1259"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "projectile-git-autofetch"; - rev = "8d8d090fdff42671e9926f095deb3448d24730b1"; - sha256 = "1x1x1hn8k6hpj1vljbgmgznvgnky75xg4scy5y57k937pvkmyg6j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fdfdeb69fd78fc1bb2c62392f860a8c434f1762/recipes/projectile-git-autofetch"; - sha256 = "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n"; - name = "recipe"; - }; - packageRequires = [ alert emacs projectile ]; - meta = { - homepage = "https://melpa.org/#/projectile-git-autofetch"; - license = lib.licenses.free; - }; - }) {}; - projectile-hanami = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild - , projectile - , rake }: - melpaBuild { - pname = "projectile-hanami"; - ename = "projectile-hanami"; - version = "20160505.611"; - src = fetchFromGitHub { - owner = "avdgaag"; - repo = "projectile-hanami"; - rev = "b1da03d14b96972b6d369ed6dde40f65b4a2ca41"; - sha256 = "1jsp2ca07w1y0v7zrx47yj0apqmkzx5577labp3ndd751x21bvnj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c0123322baee1e96afd055de3f44827574d2b5f/recipes/projectile-hanami"; - sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a"; - name = "recipe"; - }; - packageRequires = [ emacs inf-ruby projectile rake ]; - meta = { - homepage = "https://melpa.org/#/projectile-hanami"; - license = lib.licenses.free; - }; - }) {}; - projectile-rails = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , inf-ruby - , inflections - , lib - , melpaBuild - , projectile - , rake }: - melpaBuild { - pname = "projectile-rails"; - ename = "projectile-rails"; - version = "20190421.1201"; - src = fetchFromGitHub { - owner = "asok"; - repo = "projectile-rails"; - rev = "3f8226c1136bd91bc919dce27cf952742aa254d0"; - sha256 = "14cr1sgl2ln7xq25740fmggdiza2i791v9yafrdf2m6rhx50zksr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; - sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; - name = "recipe"; - }; - packageRequires = [ emacs f inf-ruby inflections projectile rake ]; - meta = { - homepage = "https://melpa.org/#/projectile-rails"; - license = lib.licenses.free; - }; - }) {}; - projectile-ripgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , ripgrep }: - melpaBuild { - pname = "projectile-ripgrep"; - ename = "projectile-ripgrep"; - version = "20180914.800"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "ripgrep.el"; - rev = "93eca9138f6d6eea1af92f476c797ce19fa573d9"; - sha256 = "0b1pa7srl1qmxaylv6iqy7rn4ajv9l87agpjrni01al01z6jfk1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep"; - sha256 = "1iczizyayql40wcljvpc1mvfvn9r28b1dkrkcmdxif732gd01jjg"; - name = "recipe"; - }; - packageRequires = [ projectile ripgrep ]; - meta = { - homepage = "https://melpa.org/#/projectile-ripgrep"; - license = lib.licenses.free; - }; - }) {}; - projectile-sift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , sift }: - melpaBuild { - pname = "projectile-sift"; - ename = "projectile-sift"; - version = "20160107.215"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "sift.el"; - rev = "8c3f3d14a351a2394027d72ee0599aa73b9f0d13"; - sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/projectile-sift"; - sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; - name = "recipe"; - }; - packageRequires = [ projectile sift ]; - meta = { - homepage = "https://melpa.org/#/projectile-sift"; - license = lib.licenses.free; - }; - }) {}; - projectile-speedbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , sr-speedbar }: - melpaBuild { - pname = "projectile-speedbar"; - ename = "projectile-speedbar"; - version = "20170516.1943"; - src = fetchFromGitHub { - owner = "anshulverma"; - repo = "projectile-speedbar"; - rev = "dcab13db72c2084edbebe808e35f1126fe0b3bcd"; - sha256 = "106a4y5r1adjpbnjn734s7d910r6akhjlyjpd6bnczjhp357wyc7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8cb5a175258404c347ffa30fca002504467a0/recipes/projectile-speedbar"; - sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp"; - name = "recipe"; - }; - packageRequires = [ projectile sr-speedbar ]; - meta = { - homepage = "https://melpa.org/#/projectile-speedbar"; - license = lib.licenses.free; - }; - }) {}; - projectile-trailblazer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , inf-ruby - , inflections - , lib - , melpaBuild - , projectile - , rake }: - melpaBuild { - pname = "projectile-trailblazer"; - ename = "projectile-trailblazer"; - version = "20170928.924"; - src = fetchFromGitHub { - owner = "micdahl"; - repo = "projectile-trailblazer"; - rev = "79299498d74876f2ac3fe8075716b39a5bdd04cd"; - sha256 = "1lkj9jdr3g7nl80fxvic6g5cn7vbkyxys7m3kcmd6xa9mq7nvci4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9c6f2f92ff99e7a3241003dc396f978f3916c8a/recipes/projectile-trailblazer"; - sha256 = "18cijb5c1ym5kn2g2apbijbfd3aqhrraki8vv9bk8rvi7wmm6qj4"; - name = "recipe"; - }; - packageRequires = [ emacs f inf-ruby inflections projectile rake ]; - meta = { - homepage = "https://melpa.org/#/projectile-trailblazer"; - license = lib.licenses.free; - }; - }) {}; - projectile-variable = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "projectile-variable"; - ename = "projectile-variable"; - version = "20170208.918"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "projectile-variable"; - rev = "8d348ac70bdd6dc320c13a12941b32b38140e264"; - sha256 = "0l38nldx6lwjb7mxixykiyj10xwb35249dxfg0k2wkmb2vy1fkxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/projectile-variable"; - sha256 = "15qc5n91nxyfvb100iyihfmrdr57qgw6098yv3nfqgw3zx1qchdw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/projectile-variable"; - license = lib.licenses.free; - }; - }) {}; - projector = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "projector"; - ename = "projector"; - version = "20190107.1325"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "projector.el"; - rev = "b7ee3f78e54525c969316c3c717ec3b83f074b00"; - sha256 = "09c8cfpz4i4vs7b0q4srg52spjwc1carr8n52xggk6dc5gbrg5wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/420ffea4549f59677a16c1ee89c77b866487e302/recipes/projector"; - sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib projectile ]; - meta = { - homepage = "https://melpa.org/#/projector"; - license = lib.licenses.free; - }; - }) {}; - projekt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "projekt"; - ename = "projekt"; - version = "20150324.148"; - src = fetchFromGitHub { - owner = "tekai"; - repo = "projekt"; - rev = "a65e554e5d8b0def08c5d06f3fe34fec40bebd83"; - sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a854ed4fef114861bcc7814cd064c16d3c074c/recipes/projekt"; - sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/projekt"; - license = lib.licenses.free; - }; - }) {}; - projmake-mode = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , indicators - , lib - , melpaBuild }: - melpaBuild { - pname = "projmake-mode"; - ename = "projmake-mode"; - version = "20161031.1015"; - src = fetchFromGitHub { - owner = "ericbmerritt"; - repo = "projmake-mode"; - rev = "a897701f7e8f8cc11459ed44eb0e454db2a460c1"; - sha256 = "0las0xl4af6sn5pbllq16abw2hj1kswwpkyi6lf31sbwr5wnq4qb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df23138073d2416fa6522beca86b7a62eb4d42e3/recipes/projmake-mode"; - sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882"; - name = "recipe"; - }; - packageRequires = [ dash indicators ]; - meta = { - homepage = "https://melpa.org/#/projmake-mode"; - license = lib.licenses.free; - }; - }) {}; - promise = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "promise"; - ename = "promise"; - version = "20190414.2350"; - src = fetchFromGitHub { - owner = "chuntaro"; - repo = "emacs-promise"; - rev = "7ac038c9ef96f07b14919dd2ae648dce82324510"; - sha256 = "0vj4ykfs4xd9711gsslplxk93iq0nw2w5kx27prqdlf5vx8jv3mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3eaf5ac668008759677b9cc6f11406abd573012a/recipes/promise"; - sha256 = "1y1v3ikcmh9yp5fdwagcjg755bgkyqk714lb6s1hb2606m3ia03s"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/promise"; - license = lib.licenses.free; - }; - }) {}; - prompt-text = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prompt-text"; - ename = "prompt-text"; - version = "20190407.2010"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "prompt-text-el"; - rev = "b842bf13c53d0a2bd2bc7a00d37cc713d69fa9e9"; - sha256 = "016gs6llc5p0p0sxn0syyq9ra8bkhvfx5x37a1fy0nkhv8jg33dv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061/recipes/prompt-text"; - sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prompt-text"; - license = lib.licenses.free; - }; - }) {}; - prompts = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prompts"; - ename = "prompts"; - version = "20160916.341"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "prompts.el"; - rev = "1cd5e732ff2a86b47836eb7252e5b59cd4b6ab26"; - sha256 = "10y8x54p64zs1jlq4nf1kixpb42078n2gdf9s62b1siyb1vhl581"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2395402e72d9b0f7ce2ca5fcb4497919f90a8fe2/recipes/prompts"; - sha256 = "1fz5sbc45jiq64y89lm8nj6lsanq3lzyjzahxzrgqvr7655pphzm"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/prompts"; - license = lib.licenses.free; - }; - }) {}; - proof-general = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "proof-general"; - ename = "proof-general"; - version = "20190531.1518"; - src = fetchFromGitHub { - owner = "ProofGeneral"; - repo = "PG"; - rev = "9ebfbb6abbd5480b434ceadebec824d7c8804e73"; - sha256 = "1p7i3ms6lny3yr7wrdpazchxryai329vx43qgvbqdrh51kdxyfvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/135c8f2a04739145b500b8742a697907e398d270/recipes/proof-general"; - sha256 = "10zif9ax4d3m8sa9y2xqz7g24xa2r3m2x5l0zqa06wm4afq29p87"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/proof-general"; - license = lib.licenses.free; - }; - }) {}; - prop-menu = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prop-menu"; - ename = "prop-menu"; - version = "20150728.418"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "prop-menu-el"; - rev = "50b102c1c0935fd3e0c465feed7f27d66b21cdf3"; - sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d3a013cc9c489987fe689c8d73bbaa3445bdeb3/recipes/prop-menu"; - sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/prop-menu"; - license = lib.licenses.free; - }; - }) {}; - propfont-mixed = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "propfont-mixed"; - ename = "propfont-mixed"; - version = "20150113.1411"; - src = fetchFromGitHub { - owner = "ikirill"; - repo = "propfont-mixed"; - rev = "0b461ef4754a469610dba71874a34b6da42176bf"; - sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ccb401b60cb1128ba50a5afecd97feca6d00d7a/recipes/propfont-mixed"; - sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/propfont-mixed"; - license = lib.licenses.free; - }; - }) {}; - proportional = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "proportional"; - ename = "proportional"; - version = "20171025.1637"; - src = fetchFromGitHub { - owner = "ksjogo"; - repo = "proportional"; - rev = "f671ffe8fd803e2fc462e2e1844aeeab1a13918e"; - sha256 = "02sbrcb9c27djk64xv41vii6pbw83b6iljrd66w4ad9hgz2pkxzk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0a7f061df4cce44e5fe98f6e1c31bec4a7338f/recipes/proportional"; - sha256 = "022lhbslzd67wyah8r0gl73vzxgjjwia08l3ssdd08jj3p56m3wx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/proportional"; - license = lib.licenses.free; - }; - }) {}; - prosjekt = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prosjekt"; - ename = "prosjekt"; - version = "20151127.616"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "prosjekt"; - rev = "a864a8be5842223043702395f311e3350c28e9db"; - sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d359ec827573dd8c871c4f23df5d1737f1830e7/recipes/prosjekt"; - sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/prosjekt"; - license = lib.licenses.free; - }; - }) {}; - protobuf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "protobuf-mode"; - ename = "protobuf-mode"; - version = "20170526.950"; - src = fetchFromGitHub { - owner = "google"; - repo = "protobuf"; - rev = "4674cc7c073f1b8d5efd2a42ffcf3ca30a907bfe"; - sha256 = "0sspwvwxyqq9aibf3piv6cp5vb28w2fnfk6x7wkmaiy7a4gcklcv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; - sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/protobuf-mode"; - license = lib.licenses.free; - }; - }) {}; - protocols = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "protocols"; - ename = "protocols"; - version = "20170802.432"; - src = fetchFromGitHub { - owner = "davep"; - repo = "protocols.el"; - rev = "d0f7c4acb05465f1a0d4be54363bbd2802647e77"; - sha256 = "1xg3pwsnzn795bz299x273ral2jrz2v3p9r6gjm4dcx5pm3348mj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c9a75671a00e9196d00b08911232aac87fd8c83/recipes/protocols"; - sha256 = "1wg3qh8a1ms82lkzz4i1bk787147a8agcj8rszj1zfvwg0ckqq1a"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/protocols"; - license = lib.licenses.free; - }; - }) {}; - proxy-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "proxy-mode"; - ename = "proxy-mode"; - version = "20190129.1608"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "proxy-mode"; - rev = "a6c55e97dbe4ec4df9dc21d234cabe806dce3a29"; - sha256 = "13xa19k0xyqq03ypih0lrkm97l2c5zha8mwl264h9vamn81i8vm2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25224d3bcdb625314e931d5acc22f60c7192a84b/recipes/proxy-mode"; - sha256 = "0ldjfmxn8k8bzvdrlsfpijsmgn754aza54by5d59k7a1xn6d37mp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/proxy-mode"; - license = lib.licenses.free; - }; - }) {}; - psc-ide = callPackage ({ company - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "psc-ide"; - ename = "psc-ide"; - version = "20190326.1410"; - src = fetchFromGitHub { - owner = "purescript-emacs"; - repo = "psc-ide-emacs"; - rev = "a10cc85565f330ee277698b27f3f715fef2e1ce2"; - sha256 = "1nj8g31zys86p2kb1yrx9w0657qg3ckz5awfwz5wd5w1axxigk23"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9eb5ff1de1d207317df052ecbd65dbe0f8766f5d/recipes/psc-ide"; - sha256 = "0gvq4cmmnbh4afzhmpqmizlvyr2fmd88jwdcac3w4b25fvhzr8hp"; - name = "recipe"; - }; - packageRequires = [ - company - dash - dash-functional - emacs - flycheck - let-alist - s - seq - ]; - meta = { - homepage = "https://melpa.org/#/psc-ide"; - license = lib.licenses.free; - }; - }) {}; - psci = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , purescript-mode }: - melpaBuild { - pname = "psci"; - ename = "psci"; - version = "20190307.1624"; - src = fetchFromGitHub { - owner = "purescript-emacs"; - repo = "emacs-psci"; - rev = "3c10918a3a1d1dc613c222801deb465d4fbb2143"; - sha256 = "14dj7jsyamkr05dqqlks8p12nb94gw0pj4dmnh1p771020b8drw0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3451719ce5096383db082917716a5ed8346fc186/recipes/psci"; - sha256 = "1iwkr58b910vrwwxyk00psy74vp201vmm3b0cm4k5fh3glr31vp9"; - name = "recipe"; - }; - packageRequires = [ dash emacs purescript-mode ]; - meta = { - homepage = "https://melpa.org/#/psci"; - license = lib.licenses.free; - }; - }) {}; - psession = callPackage ({ async - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "psession"; - ename = "psession"; - version = "20190502.1138"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "psession"; - rev = "2557ca67a7a81f5270fb98a0b0a92838d09343b8"; - sha256 = "0wspxsis3p2zm1f0wfxmi4dpyswcip6jzx2jcan7j2mqiwld6l33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession"; - sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; - name = "recipe"; - }; - packageRequires = [ async cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/psession"; - license = lib.licenses.free; - }; - }) {}; - psysh = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "psysh"; - ename = "psysh"; - version = "20181128.922"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "psysh.el"; - rev = "4709a57cdcf7103c4a606be89849ea3ead2d38a5"; - sha256 = "1apf6mnqp9bg5dfykgvsn02z0xpyx6k34sd2pvicicig7w09kzvb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/psysh"; - sha256 = "00rzfw8nlbcmfbjnzbfl08136dhgvrrn9g1s9l623xgpbcay63sg"; - name = "recipe"; - }; - packageRequires = [ emacs f s ]; - meta = { - homepage = "https://melpa.org/#/psysh"; - license = lib.licenses.free; - }; - }) {}; - pt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pt"; - ename = "pt"; - version = "20161226.1159"; - src = fetchFromGitHub { - owner = "bling"; - repo = "pt.el"; - rev = "6d99b2aaded3ece3db19a20f4b8f1d4abe382622"; - sha256 = "1vi97hgwrf7n8vsbkvvhn398m20755jnbbbz4kxgqfmcgpimc8nc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34c51783af154f203489f5f7df7012ca61932caa/recipes/pt"; - sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pt"; - license = lib.licenses.free; - }; - }) {}; - pubmed = callPackage ({ deferred - , emacs - , esxml - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pubmed"; - ename = "pubmed"; - version = "20190502.1421"; - src = fetchFromGitLab { - owner = "fvdbeek"; - repo = "emacs-pubmed"; - rev = "67fbb6e8834feda85e8301adc5c17d9e38395d6a"; - sha256 = "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee84560c15e7389e902fb4a4c548c08be231de82/recipes/pubmed"; - sha256 = "048kh442dnzgwz4wml2a5griav8zyrfzn5b43n9ky84pm7lgcxp3"; - name = "recipe"; - }; - packageRequires = [ deferred emacs esxml s ]; - meta = { - homepage = "https://melpa.org/#/pubmed"; - license = lib.licenses.free; - }; - }) {}; - pug-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pug-mode"; - ename = "pug-mode"; - version = "20180513.1426"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-pug-mode"; - rev = "8739fe5b5ff83a53cfb233263e85346562e58f1d"; - sha256 = "16whqy3plqarlvmifakgc7a8fjp4gv7hchzgspnvgjadqk3h0ik0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3710aac9f3df3a23238af1f969c462b3692f260/recipes/pug-mode"; - sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pug-mode"; - license = lib.licenses.free; - }; - }) {}; - pulseaudio-control = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pulseaudio-control"; - ename = "pulseaudio-control"; - version = "20190419.2241"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "pulseaudio-control"; - rev = "552206807c9af6ec150540bbdda5d08393196e0a"; - sha256 = "1bb14xcglvamvlqsx3dz75zq5ws17774g32484x5ksfpajpibwas"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7964f226e12c3a27ff856e28f4b030ebf304aea2/recipes/pulseaudio-control"; - sha256 = "1vdhg85lbdx7sj1xg2vhhfmhrrp5q2x560agnsb0gxi2akp6z9r0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pulseaudio-control"; - license = lib.licenses.free; - }; - }) {}; - punctuality-logger = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "punctuality-logger"; - ename = "punctuality-logger"; - version = "20141120.1231"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "punctuality-logger"; - rev = "d76c5d5589a4f8a94cc5537686d9a3b46ea7cc59"; - sha256 = "03872n1v5qqqblviq9sf2ml6ibs50mcjrh0i35sb0m7l202nh52b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/punctuality-logger"; - sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/punctuality-logger"; - license = lib.licenses.free; - }; - }) {}; - pungi = callPackage ({ fetchFromGitHub - , fetchurl - , jedi - , lib - , melpaBuild - , pyvenv }: - melpaBuild { - pname = "pungi"; - ename = "pungi"; - version = "20150222.446"; - src = fetchFromGitHub { - owner = "mgrbyte"; - repo = "pungi"; - rev = "41c9f8b7795e083bfd63ba0d06c789c250998723"; - sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d504c6028c029268d380c0eac25b1c4886aa6e98/recipes/pungi"; - sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; - name = "recipe"; - }; - packageRequires = [ jedi pyvenv ]; - meta = { - homepage = "https://melpa.org/#/pungi"; - license = lib.licenses.free; - }; - }) {}; - punpun-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "punpun-theme"; - ename = "punpun-theme"; - version = "20161103.147"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "punpun-theme"; - rev = "cce8b10b2df6f9187a9eaa0c3f21ff0dda175968"; - sha256 = "1iz1qc9bphl2y2z7abc33fvyaccj733drkl7nzbr1jlpbknkmk2k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77a9edbb36dc9474adb23d356e6c596789aab2a2/recipes/punpun-theme"; - sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/punpun-theme"; - license = lib.licenses.free; - }; - }) {}; - puppet-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "puppet-mode"; - ename = "puppet-mode"; - version = "20180813.1247"; - src = fetchFromGitHub { - owner = "voxpupuli"; - repo = "puppet-mode"; - rev = "7dee1b5a5debac6e56f9107492a413b6c0edb94d"; - sha256 = "01isn90h50p5c6cgzwhb1jq8yacj0fxw9ppfqrnynckg6ydpvg74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1de94f0ab39ab18dfd0b050e337f502d894fb3ad/recipes/puppet-mode"; - sha256 = "1qn71j6fkwnrsq1s6fhfcxhic3rbspg5cy9n7jv451ji7ywyhakf"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/puppet-mode"; - license = lib.licenses.free; - }; - }) {}; - purescript-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "purescript-mode"; - ename = "purescript-mode"; - version = "20190522.1530"; - src = fetchFromGitHub { - owner = "purescript-emacs"; - repo = "purescript-mode"; - rev = "8db1d0243c03da31adac4d7c5287407a4df6aff2"; - sha256 = "07z5m8h5a1dhqlzf8wqyxqw2mz3kxzjfpb0p7az3bhs3xsxq6q1q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55462ed7e9bf353f26c5315015436b2a1b37f9bc/recipes/purescript-mode"; - sha256 = "1g30xbv3xvv52r873465a2lp6fnws9q8dz277697qm0mgxkpimbp"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/purescript-mode"; - license = lib.licenses.free; - }; - }) {}; - purp-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "purp-theme"; - ename = "purp-theme"; - version = "20181211.1102"; - src = fetchFromGitHub { - owner = "gnuvince"; - repo = "purp"; - rev = "4f5a95b132779f5219f7dc6bd6a412b7de1d8d1b"; - sha256 = "1cbnw3fj5hy4wjkwrzikjpg1mk3dj9ic0bhdiyv9d6sv26d5f1sz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e731ed27d812d822ebb1dbd639441ce59c4ecf7/recipes/purp-theme"; - sha256 = "1ni8nnyfg4g49fw5m4pxa8fr147pyyvqa5gmydggv5r1xmldgsli"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/purp-theme"; - license = lib.licenses.free; - }; - }) {}; - purple-haze-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "purple-haze-theme"; - ename = "purple-haze-theme"; - version = "20141014.1929"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-purple-haze-theme"; - rev = "3e245cbef7cd09e6b3ee124963e372a04e9a6485"; - sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/purple-haze-theme"; - sha256 = "1rvfpm3zkhdv3ikc8pqqngf9pi0niwyi52pg8dq8i056nwc5bk9z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/purple-haze-theme"; - license = lib.licenses.free; - }; - }) {}; - purty-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "purty-mode"; - ename = "purty-mode"; - version = "20131004.1559"; - src = fetchFromGitHub { - owner = "jcatw"; - repo = "purty-mode"; - rev = "ad48149bfd0c765796a728b22d679e03fc124328"; - sha256 = "1gx2c94bq34d2zjdr9mbnafq6alzz8vrlj5pskm15p225s85a2q3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/purty-mode"; - sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/purty-mode"; - license = lib.licenses.free; - }; - }) {}; - pushbullet = callPackage ({ fetchFromGitHub - , fetchurl - , grapnel - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "pushbullet"; - ename = "pushbullet"; - version = "20140809.532"; - src = fetchFromGitHub { - owner = "theanalyst"; - repo = "revolver"; - rev = "73c59a0f1dc04875b3e5a2c8afbc26c32128e445"; - sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2649d60dd1ed3b3171ff1448b89967c5f7759a0/recipes/pushbullet"; - sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; - name = "recipe"; - }; - packageRequires = [ grapnel json ]; - meta = { - homepage = "https://melpa.org/#/pushbullet"; - license = lib.licenses.free; - }; - }) {}; - pushover = callPackage ({ cl-lib ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pushover"; - ename = "pushover"; - version = "20170818.1403"; - src = fetchgit { - url = "https://git.flintfam.org/swf-projects/emacs-pushover.git"; - rev = "bbe3ac8df3c532a72da4552615af960b8a577588"; - sha256 = "187bisngi37n66ik2dq7rg4hy4nlxl9pifqgqq08kf9238y8hd11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9553cd029bc0733c89d2c790cb173d9668a9eba/recipes/pushover"; - sha256 = "0im5bf2r69s2jb6scm8xdk63y1xi5zm4kg9ghfixlvyvipfli4kl"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/pushover"; - license = lib.licenses.free; - }; - }) {}; - px = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "px"; - ename = "px"; - version = "20170317.1630"; - src = fetchFromGitHub { - owner = "aaptel"; - repo = "preview-latex"; - rev = "0c52f7933eab3ca1642ab0df151db9950430c9e2"; - sha256 = "0f741a2gpc2mdl85ivbiskga620b6ci2x0dwjs7m8c1vk6xrxbpi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/326fc9b057a5016248ac36ca166e9a38f13babf6/recipes/px"; - sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/px"; - license = lib.licenses.free; - }; - }) {}; - py-autopep8 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-autopep8"; - ename = "py-autopep8"; - version = "20160925.352"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-autopep8.el"; - rev = "68e12d8788c91c7ec53a68acf1d23adb2ffa4788"; - sha256 = "16fmym6hvi2lx0mmbrrhld1vzki5iqfqx2m0xa9021gjjzb33lw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c400e0f3cfe70821e621fe85d239b4f6596d5171/recipes/py-autopep8"; - sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-autopep8"; - license = lib.licenses.free; - }; - }) {}; - py-gnitset = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-gnitset"; - ename = "py-gnitset"; - version = "20170821.1032"; - src = fetchFromGitHub { - owner = "quodlibetor"; - repo = "py-gnitset"; - rev = "1e993cc29cbc31e06fe1e335dec198e21972fa55"; - sha256 = "1hslq2bdk95cgza9qbskxf942ckhjb4bqi6nrhbmlnm9agmjqm59"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/py-gnitset"; - sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-gnitset"; - license = lib.licenses.free; - }; - }) {}; - py-import-check = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-import-check"; - ename = "py-import-check"; - version = "20130802.411"; - src = fetchFromGitHub { - owner = "psibi"; - repo = "emacs-py-import-check"; - rev = "38ad91e67047bd37231497d11d409d064d510f98"; - sha256 = "1irdc740za4vb1ixnp2j33m8xwknybdg5szj1pgy28r72w4lipfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abe81fe96790ceebcf0951595644ea6a82613890/recipes/py-import-check"; - sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-import-check"; - license = lib.licenses.free; - }; - }) {}; - py-isort = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-isort"; - ename = "py-isort"; - version = "20160925.318"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-isort.el"; - rev = "e67306f459c47c53a65604e4eea88a3914596560"; - sha256 = "08i55gv392wc12x8v3dca0dmz8a8p9ljsqhyajsb6qv1k120wqhx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44377d11da07b49c8dc6887c948cc5ddfc065bd2/recipes/py-isort"; - sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-isort"; - license = lib.licenses.free; - }; - }) {}; - py-smart-operator = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "py-smart-operator"; - ename = "py-smart-operator"; - version = "20170531.509"; - src = fetchFromGitHub { - owner = "rmuslimov"; - repo = "py-smart-operator"; - rev = "0c8a66faca4b35158d0b5885472cb75286039167"; - sha256 = "09pmkp24s7nwh6p4pzsjp1z65ksi9n3n2xv7d3igpa86l8qgcm2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7491a1825b7aaa5f76aafadb8f04721ab1b1cfe/recipes/py-smart-operator"; - sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/py-smart-operator"; - license = lib.licenses.free; - }; - }) {}; - py-test = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-test"; - ename = "py-test"; - version = "20151116.2222"; - src = fetchFromGitHub { - owner = "Bogdanp"; - repo = "py-test.el"; - rev = "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf"; - sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84690ba6b033027772c20bf20432427b32d3231a/recipes/py-test"; - sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/py-test"; - license = lib.licenses.free; - }; - }) {}; - py-yapf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-yapf"; - ename = "py-yapf"; - version = "20160925.422"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-yapf.el"; - rev = "a878304202ad827a1f3de3dce1badd9ca8731146"; - sha256 = "1mmzqdigxx46my0h9497l25cjydy3vykg6slxkch4dzvhhlbap48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3306c6906d4b21868b9407de27fbebdaed3d00d5/recipes/py-yapf"; - sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-yapf"; - license = lib.licenses.free; - }; - }) {}; - pycarddavel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "pycarddavel"; - ename = "pycarddavel"; - version = "20150831.516"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "pycarddavel"; - rev = "6ead921066fa0156f20155b7126e5875ce11c328"; - sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b3d2cd943f26dcff322efb16d55dd3bd71dea07/recipes/pycarddavel"; - sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/pycarddavel"; - license = lib.licenses.free; - }; - }) {}; - pycoverage = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pycoverage"; - ename = "pycoverage"; - version = "20160324.1812"; - src = fetchFromGitHub { - owner = "mattharrison"; - repo = "pycoverage.el"; - rev = "dbc152a807efcaac4e50bedb64c026674009a279"; - sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb0310bbe8427abdcba2b30414ec26475b0b7440/recipes/pycoverage"; - sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pycoverage"; - license = lib.licenses.free; - }; - }) {}; - pydoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pydoc"; - ename = "pydoc"; - version = "20181024.1751"; - src = fetchFromGitHub { - owner = "statmobile"; - repo = "pydoc"; - rev = "abb948e27efaf2452f339c62cd99a1c69930bbfe"; - sha256 = "1da08x2hjjd9d832fwrd4rbd3h6f7m031kkxh53v9xdavkp0xqf1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4988a66040ddf659492bdb0ae2b9617c342c69/recipes/pydoc"; - sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pydoc"; - license = lib.licenses.free; - }; - }) {}; - pydoc-info = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pydoc-info"; - ename = "pydoc-info"; - version = "20110301.34"; - src = fetchhg { - url = "https://bitbucket.com/jonwaltman/pydoc-info"; - rev = "151d877c8fb8"; - sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/pydoc-info"; - sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pydoc-info"; - license = lib.licenses.free; - }; - }) {}; - pyenv-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic }: - melpaBuild { - pname = "pyenv-mode"; - ename = "pyenv-mode"; - version = "20170801.1648"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "pyenv-mode"; - rev = "215b7f0ed3847e0c844adbff7d9b19057aa7c820"; - sha256 = "0wb9xgpp9bc045kkw0jg14qnxa1y7ydsv1zw4nmy0mw7acxpcjgn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/pyenv-mode"; - sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; - name = "recipe"; - }; - packageRequires = [ pythonic ]; - meta = { - homepage = "https://melpa.org/#/pyenv-mode"; - license = lib.licenses.free; - }; - }) {}; - pyenv-mode-auto = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyenv-mode - , s }: - melpaBuild { - pname = "pyenv-mode-auto"; - ename = "pyenv-mode-auto"; - version = "20180620.552"; - src = fetchFromGitHub { - owner = "ssbb"; - repo = "pyenv-mode-auto"; - rev = "b6eef88ad89865a7e0ec8bae8c6ce8239cb649c6"; - sha256 = "1gz7145jnjcky1751pqrlhh3pq02ybsmz49ngx4ip2589nry7iyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3fcb707356bd16fd0b573c176023534cd69d0d7/recipes/pyenv-mode-auto"; - sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd"; - name = "recipe"; - }; - packageRequires = [ f pyenv-mode s ]; - meta = { - homepage = "https://melpa.org/#/pyenv-mode-auto"; - license = lib.licenses.free; - }; - }) {}; - pyfmt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyfmt"; - ename = "pyfmt"; - version = "20150521.1356"; - src = fetchFromGitHub { - owner = "aheaume"; - repo = "pyfmt.el"; - rev = "3022283c1ae7da1b6a983fedc90179670725f8d0"; - sha256 = "0p0hjac9qk809ygmg566avv4fkljfnrn7rk1pxh61dsj7al6kzzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68d477025ae5af50bf8f7b37f2adfa9159502e13/recipes/pyfmt"; - sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pyfmt"; - license = lib.licenses.free; - }; - }) {}; - pygen = callPackage ({ dash - , elpy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , python-mode }: - melpaBuild { - pname = "pygen"; - ename = "pygen"; - version = "20161120.2106"; - src = fetchFromGitHub { - owner = "JackCrawley"; - repo = "pygen"; - rev = "3a5d1d1a0640865b15be05cd1eeb33bb4793b622"; - sha256 = "0fzpvdwb7hhmfmjxzvap8413bc81lrx8r3ij3yasqaxyqw3a6vy1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e761724e52de6fa4d92950751953645dd439d340/recipes/pygen"; - sha256 = "1ivg7a1ghg0bvz3idz7dzy5yb0ln3b2j7dfizg2g0fi4iwvc4czz"; - name = "recipe"; - }; - packageRequires = [ dash elpy python-mode ]; - meta = { - homepage = "https://melpa.org/#/pygen"; - license = lib.licenses.free; - }; - }) {}; - pyim = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , pyim-basedict }: - melpaBuild { - pname = "pyim"; - ename = "pyim"; - version = "20190530.1831"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim"; - rev = "50e2b0d825dde89639fe1257fad8c9bf450b2c7f"; - sha256 = "1gf0cix5gc20ab9rsvj13rdnvcsqsjkbaql7xbv5lyl555dlbpn7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim"; - sha256 = "1ly4xhfr3irlrwvv20j3kyz98g7barridi9n8jppc0brh2dlv98j"; - name = "recipe"; - }; - packageRequires = [ async emacs popup pyim-basedict ]; - meta = { - homepage = "https://melpa.org/#/pyim"; - license = lib.licenses.free; - }; - }) {}; - pyim-basedict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyim-basedict"; - ename = "pyim-basedict"; - version = "20170726.1959"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim-basedict"; - rev = "3196cb210e056702c5a4ea1dac1d8e1e27740fab"; - sha256 = "03jbjc5a1h22vpcybg0gmbyibaa85w2ml1pjk646qb28ljywd5aw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim-basedict"; - sha256 = "1y8cmccli3im5bvws2h582z7k4nj6p8brgypl8h09y3na6yjy2z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pyim-basedict"; - license = lib.licenses.free; - }; - }) {}; - pyim-cangjie5dict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyim }: - melpaBuild { - pname = "pyim-cangjie5dict"; - ename = "pyim-cangjie5dict"; - version = "20170729.1946"; - src = fetchFromGitHub { - owner = "HesperusArcher"; - repo = "pyim-cangjie5dict"; - rev = "c8618590780b818db1a67a29bc47c5d25903517a"; - sha256 = "0p49h2kn8wy3b51zahzyc1cy24h3b44cg5yjpmv4w23dhsr4zlz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/pyim-cangjie5dict"; - sha256 = "1l2k8kfnfciacp1zps8j1g6ijzv1k3g9198079l8c8xlw789irlv"; - name = "recipe"; - }; - packageRequires = [ pyim ]; - meta = { - homepage = "https://melpa.org/#/pyim-cangjie5dict"; - license = lib.licenses.free; - }; - }) {}; - pyim-wbdict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyim }: - melpaBuild { - pname = "pyim-wbdict"; - ename = "pyim-wbdict"; - version = "20190201.1500"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim-wbdict"; - rev = "9799b689643052078f53d69342a82315251490f4"; - sha256 = "1rqlckmlmwmnqvk8bbcyvwr54p6x9b1fph5f17anzlvwffdjsw5c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab1cb8bc623d1f12f78fa42ce8b16514e5b07c51/recipes/pyim-wbdict"; - sha256 = "1s0i9xcnpy8kxqhsv7rqxabv5vnxsciyng398mn32mknib03315i"; - name = "recipe"; - }; - packageRequires = [ pyim ]; - meta = { - homepage = "https://melpa.org/#/pyim-wbdict"; - license = lib.licenses.free; - }; - }) {}; - pyimport = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "pyimport"; - ename = "pyimport"; - version = "20180308.952"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "pyimport"; - rev = "a6f63cf7ed93f0c0f7c207e6595813966f8852b9"; - sha256 = "1q5gqhvh4zq5dy8vns694warcz48j1hdnxg16sjck4gsi9xivbvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc39b06cee37814960ef31c6a2056261b802fb/recipes/pyimport"; - sha256 = "1qwigplawknykw1kbm5babyyknzn43ddhbdpahvzh4wy3kycn6n8"; - name = "recipe"; - }; - packageRequires = [ dash s shut-up ]; - meta = { - homepage = "https://melpa.org/#/pyimport"; - license = lib.licenses.free; - }; - }) {}; - pyimpsort = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyimpsort"; - ename = "pyimpsort"; - version = "20160129.2053"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "pyimpsort.el"; - rev = "d5c61d70896b642646dfd3c809c06174ae086c1a"; - sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97eb7c0934298d393910419fd55d7d5f1b0cfc38/recipes/pyimpsort"; - sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pyimpsort"; - license = lib.licenses.free; - }; - }) {}; - pylint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pylint"; - ename = "pylint"; - version = "20170402.555"; - src = fetchFromGitHub { - owner = "PyCQA"; - repo = "pylint"; - rev = "c812c59b31ba0b3f45c4bef6d4d93f561f79949d"; - sha256 = "1234ms5brqvx468hqpslzg4nsj42g9vjza2rp5msn15nj7cdhbxj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a073c91d6f4d31b82f6bfee785044c4e3ae96d3f/recipes/pylint"; - sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pylint"; - license = lib.licenses.free; - }; - }) {}; - pynt = callPackage ({ deferred - , ein - , emacs - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pynt"; - ename = "pynt"; - version = "20180710.26"; - src = fetchFromGitHub { - owner = "ebanner"; - repo = "pynt"; - rev = "963c43cfdb5deea7daedc269aafa79192d853154"; - sha256 = "167hw8flq5fgxf4wzsdx07a1jgp8qg11lraj7g09ds2wrlh9awid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdb297084188a957a46dcd036e65d9d893044bea/recipes/pynt"; - sha256 = "07c0zc68r3pskn3bac3a8x5nrsykl90a1h22865g3i5vil76vvg3"; - name = "recipe"; - }; - packageRequires = [ deferred ein emacs epc ]; - meta = { - homepage = "https://melpa.org/#/pynt"; - license = lib.licenses.free; - }; - }) {}; - pyramid = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic - , tablist }: - melpaBuild { - pname = "pyramid"; - ename = "pyramid"; - version = "20181212.404"; - src = fetchFromGitHub { - owner = "dakra"; - repo = "pyramid.el"; - rev = "277f7c623f489fd31c56d6e131c5481a71b6a926"; - sha256 = "1xpb08m5zjyxpq45mmhfysxgaga2xj9r6nw6zs2rx0zkv6qjklnr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f786a47c2a6243c693163680146606c71502d0be/recipes/pyramid"; - sha256 = "149p9k6wjlgamm3vrkkcdj4fqhdfsskv1jqflp1bccfkgqpi5096"; - name = "recipe"; - }; - packageRequires = [ emacs pythonic tablist ]; - meta = { - homepage = "https://melpa.org/#/pyramid"; - license = lib.licenses.free; - }; - }) {}; - pytest = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pytest"; - ename = "pytest"; - version = "20181005.824"; - src = fetchFromGitHub { - owner = "ionrock"; - repo = "pytest-el"; - rev = "1bfa7549001e61ecd59cd6eae7c6656a924d1ba4"; - sha256 = "1ry0czn0qjjiw75v47jamxbfzh70jxai6lvf3pp5v87wp1xhnznh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/33a854a27adbaf57d344340199f90d52747b8450/recipes/pytest"; - sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/pytest"; - license = lib.licenses.free; - }; - }) {}; - pytest-pdb-break = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pytest-pdb-break"; - ename = "pytest-pdb-break"; - version = "20190307.2255"; - src = fetchFromGitHub { - owner = "poppyschmo"; - repo = "pytest-pdb-break"; - rev = "9966507e1a3f2c4a5249ee96a93790cca82d91c5"; - sha256 = "1is1v28bqk43dqmhjggxlfxz3l7va4686k8y2hxmhrl80hg54182"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ed7d5d5e81818dad55edda73fbeca8c5021b932/recipes/pytest-pdb-break"; - sha256 = "0dxn53y9zjlip0bjynjql984wrf39pmg5fsx1qgsrj1bw78xqw26"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pytest-pdb-break"; - license = lib.licenses.free; - }; - }) {}; - python-cell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-cell"; - ename = "python-cell"; - version = "20190217.1023"; - src = fetchFromGitHub { - owner = "thisch"; - repo = "python-cell.el"; - rev = "665725446b194dbaaff9645dd880524368dd710a"; - sha256 = "1rjh16jacp98i0l78ij5lfp5f0b42qhfzms2x8zwr9j2aj1csy2h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0549866c5e96f673ec9dec298e7ff9d5779d443b/recipes/python-cell"; - sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-cell"; - license = lib.licenses.free; - }; - }) {}; - python-django = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-django"; - ename = "python-django"; - version = "20150821.2104"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "python-django.el"; - rev = "fc54ad74f0309670359b939f64d0f1fff68aeac4"; - sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29b2cd21e7b504222aed92ec062402f3e2a818fc/recipes/python-django"; - sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-django"; - license = lib.licenses.free; - }; - }) {}; - python-docstring = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-docstring"; - ename = "python-docstring"; - version = "20170508.156"; - src = fetchFromGitHub { - owner = "glyph"; - repo = "python-docstring-mode"; - rev = "d35d2e0fbe468743c19a870fec7b28a7e725790d"; - sha256 = "11y208svg5nxw8k7cbgd2iydng40gwpr85bdnxkywd910sac5p7b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e159e59ba0b60326cca0e1ea68fac4b85d54cd24/recipes/python-docstring"; - sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-docstring"; - license = lib.licenses.free; - }; - }) {}; - python-environment = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-environment"; - ename = "python-environment"; - version = "20150310.153"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-python-environment"; - rev = "401006584e32864a10c69d29f14414828909362e"; - sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/283155ad56cd8eda416c83a9b7f8d43d4d1570c2/recipes/python-environment"; - sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; - name = "recipe"; - }; - packageRequires = [ deferred ]; - meta = { - homepage = "https://melpa.org/#/python-environment"; - license = lib.licenses.free; - }; - }) {}; - python-info = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-info"; - ename = "python-info"; - version = "20151228.1052"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "python-info"; - rev = "306f15441b54b25757cdfd3b327b84024ea21ed7"; - sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a30746451ec5ffab250e160c1d5bd29b8dc6b54/recipes/python-info"; - sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-info"; - license = lib.licenses.free; - }; - }) {}; - python-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-mode"; - ename = "python-mode"; - version = "20190503.938"; - src = fetchFromGitLab { - owner = "python-mode-devs"; - repo = "python-mode"; - rev = "9ba43eaac8200e73fbd4cf938ecece4b8bfadaa0"; - sha256 = "0rdv5zs15rl7d6lla3k1wh4c1icxrbn6pbd9jqrrm96a5q8hm8v9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode"; - sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-mode"; - license = lib.licenses.free; - }; - }) {}; - python-pytest = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "python-pytest"; - ename = "python-pytest"; - version = "20180725.446"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-python-pytest"; - rev = "09ad688df207ee9b02c990d3897a9e2841931d97"; - sha256 = "18v7kxdhrayxg2pgbysm0y47xpdvwa15fmazpkfg0q8dfp2j3022"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d95442748827911e082a55f4fd7c348a3757e274/recipes/python-pytest"; - sha256 = "0n97akqq7dss7rsww311ljh9w1hyc4j64wjmpxjlc9lg5aqwjbh4"; - name = "recipe"; - }; - packageRequires = [ - dash - dash-functional - emacs - magit-popup - projectile - s - ]; - meta = { - homepage = "https://melpa.org/#/python-pytest"; - license = lib.licenses.free; - }; - }) {}; - python-switch-quotes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-switch-quotes"; - ename = "python-switch-quotes"; - version = "20161228.9"; - src = fetchFromGitHub { - owner = "werehuman"; - repo = "python-switch-quotes"; - rev = "93f1e9b40e061a6cea480139e8b1362b6404abd0"; - sha256 = "1x04hnf3m8cgqp0i566q4n7kh59cayzfxka3g07kv0h543xbys4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d99fbd3d0c486bf89c9c0937e2ebf378be39293f/recipes/python-switch-quotes"; - sha256 = "1wc27q9ac8p7c5mfk3kznbmdd5ds4ray0csgba79n19g152y5jjc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/python-switch-quotes"; - license = lib.licenses.free; - }; - }) {}; - python-test = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-test"; - ename = "python-test"; - version = "20181017.1729"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "python-test.el"; - rev = "f899975b133539e19ba822e4b0bfd1a28572967e"; - sha256 = "0ww0qf9hsd8j31dc0p3fmsiqsir3mqbd4pwv4i29qidmbgrk3cv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea68b3aa9c057e81a3e90a359a38ac16cb26c2f/recipes/python-test"; - sha256 = "16grx9xzl48dcwflfmv64wigyxlw495a6q01b1ynkqj5sjdl3fkn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/python-test"; - license = lib.licenses.free; - }; - }) {}; - python-x = callPackage ({ cl-lib ? null - , fetchFromGitLab - , fetchurl - , folding - , lib - , melpaBuild - , python ? null }: - melpaBuild { - pname = "python-x"; - ename = "python-x"; - version = "20180802.1042"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "python-x.el"; - rev = "74d8c7eb824846de94705b1e74ee03ef109868d1"; - sha256 = "00vy3qqkg3zzvjk1cmkl72nmvjdhrccybd36ggnzszq73szcl7n2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/python-x"; - sha256 = "03px1z27yhvc9084h9j2p0khvhkwmfxdskf0ndvz79ywp6nl7mb6"; - name = "recipe"; - }; - packageRequires = [ cl-lib folding python ]; - meta = { - homepage = "https://melpa.org/#/python-x"; - license = lib.licenses.free; - }; - }) {}; - pythonic = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pythonic"; - ename = "pythonic"; - version = "20190214.1016"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "pythonic"; - rev = "16c16202b76d33edd6a95814b2a9c298437f9832"; - sha256 = "1j8jslc0p85kl1fgl108ccvavqcvjda7hsc4ks9avill18w3dm5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5589c55d459f15717914061d0f0f4caa32caa13c/recipes/pythonic"; - sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; - name = "recipe"; - }; - packageRequires = [ emacs f s ]; - meta = { - homepage = "https://melpa.org/#/pythonic"; - license = lib.licenses.free; - }; - }) {}; - pyvenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyvenv"; - ename = "pyvenv"; - version = "20181228.922"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "pyvenv"; - rev = "fa6a028349733b0ecb407c4cfb3a715b71931eec"; - sha256 = "1x052fsavb94x3scpqd6n9spqgzaahzbdxhg4qa5sy6hqsabn6zh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv"; - sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pyvenv"; - license = lib.licenses.free; - }; - }) {}; - q-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "q-mode"; - ename = "q-mode"; - version = "20181216.947"; - src = fetchFromGitHub { - owner = "psaris"; - repo = "q-mode"; - rev = "7a13fb68a0ad3d843c8cdc188cf0adb9723f42f7"; - sha256 = "0di229ma7jr9jcck36qjrzilkbp428kkx53qs6c9xw9jhv6yklbz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fff65433eff01d6239809df4c047f0e4349cc4a9/recipes/q-mode"; - sha256 = "1vv3hynd6k050nxln83l703ymzyh1kl69cdy4yabdvmkqw4gbshz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/q-mode"; - license = lib.licenses.free; - }; - }) {}; - qiita = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "qiita"; - ename = "qiita"; - version = "20140118.44"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "qiita-el"; - rev = "d38988863a17a6fa8af617349b033c53b7634a83"; - sha256 = "0m3sr3csab80y408y5rm2ph379n5g5sv08wr32arfh815x3ql0wk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8065a58e297c50c031de97d2d80bce5857bd803/recipes/qiita"; - sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; - name = "recipe"; - }; - packageRequires = [ helm markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/qiita"; - license = lib.licenses.free; - }; - }) {}; - ql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ql"; - ename = "ql"; - version = "20180418.1320"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "ql-el"; - rev = "d976414ba6aa576ad524b5ee5bfa620efd072258"; - sha256 = "138h4ndnzpphsmi4b8yw53mxc3rnqrj1c3jp8njx5pkmiqkp1q00"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/475bd8fd66c6d5b5c7e74aa2c4e094d313cc8303/recipes/ql"; - sha256 = "0wxjblqacs5nx2hyh7r6rlv1yngbhn6phn5rni4dw2dms98zj34z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ql"; - license = lib.licenses.free; - }; - }) {}; - qml-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "qml-mode"; - ename = "qml-mode"; - version = "20161015.1731"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "qml-mode"; - rev = "6c5f33ba88ae010bf201a80ee8095e20a724558c"; - sha256 = "1sncsvzjfgmhp4m8w5jd4y51k24n2jfpgvrkd64wlhhzbj3wb947"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3abc88ddbb6b8ecafa45e75ceba9a1294ad88d4/recipes/qml-mode"; - sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/qml-mode"; - license = lib.licenses.free; - }; - }) {}; - qt-pro-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "qt-pro-mode"; - ename = "qt-pro-mode"; - version = "20170604.1141"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "qt-pro-mode"; - rev = "1e0052fcfb89c15cb47714c1546d4e8ec6e01ae6"; - sha256 = "11bwxq4nwfbnlk4clg0m8jh2xz0ldv4ggyaw645sy7hprvwkp8y4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9af710be77ccde8ffa5f22168d2c8a06b73dd6a/recipes/qt-pro-mode"; - sha256 = "1k3ph9bqvvg6i6n623qrwdpsffs8w9rv9nihmlggb4w30dwqc9nf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/qt-pro-mode"; - license = lib.licenses.free; - }; - }) {}; - quack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quack"; - ename = "quack"; - version = "20181106.501"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "quack"; - rev = "2146805ce2b5a9b155d73929986f11e713787e26"; - sha256 = "005wkji4wjqqilgmqy81rjqr8zx4gl39mari2ahvr9mfps2ypmjz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa58bf19d4b65ec785677a36709794ae5aebded4/recipes/quack"; - sha256 = "18f3py9vr08589g9kvbcn2nvpd074rx45ni9k66cwl3hjb3hdkg5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quack"; - license = lib.licenses.free; - }; - }) {}; - quasi-monochrome-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quasi-monochrome-theme"; - ename = "quasi-monochrome-theme"; - version = "20181213.27"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-quasi-monochrome"; - rev = "68060dbbc0bbfe4924387392874186c5a29bb434"; - sha256 = "0zp2xr0bjfqrpb0bqczzick1vvbjmipjavrdi70kw6a9caynvq22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9c8498e4bcca19c4c24b2fd0db035c3da477e2a/recipes/quasi-monochrome-theme"; - sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quasi-monochrome-theme"; - license = lib.licenses.free; - }; - }) {}; - quelpa = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quelpa"; - ename = "quelpa"; - version = "20190217.450"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/quelpa.git"; - rev = "716048b5ee048797551a59a4bd121026486db214"; - sha256 = "05926kvgp7mbdmwlfn2sdqzxg0b5nxr41m08p8mywfwjqjvnsvw8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a496196d405c152600d44ef4aa28557f489c542c/recipes/quelpa"; - sha256 = "0qm4dxwlvaka6j8ismb4lhar4dzlhpvjsx6524w15ilcbdbyqqjl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quelpa"; - license = lib.licenses.free; - }; - }) {}; - quelpa-use-package = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild - , quelpa - , use-package }: - melpaBuild { - pname = "quelpa-use-package"; - ename = "quelpa-use-package"; - version = "20190210.1038"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/quelpa-use-package.git"; - rev = "6f3cc87caa6cb8795079c5cab3c6665970859098"; - sha256 = "129pigh1njn50s1lq81blcn54bkb6hwrlxg0sk7m1zsf6rybw0rf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a496196d405c152600d44ef4aa28557f489c542c/recipes/quelpa-use-package"; - sha256 = "1rdhnv7iz9clcy68j1gqv8cwq70ip4w12179v553lyikk9icrpp8"; - name = "recipe"; - }; - packageRequires = [ emacs quelpa use-package ]; - meta = { - homepage = "https://melpa.org/#/quelpa-use-package"; - license = lib.licenses.free; - }; - }) {}; - quick-buffer-switch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quick-buffer-switch"; - ename = "quick-buffer-switch"; - version = "20151007.1508"; - src = fetchFromGitHub { - owner = "renard"; - repo = "quick-buffer-switch"; - rev = "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b"; - sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30f167afc241f3ec24c092f2f06dbabd4dd11bcc/recipes/quick-buffer-switch"; - sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quick-buffer-switch"; - license = lib.licenses.free; - }; - }) {}; - quick-peek = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quick-peek"; - ename = "quick-peek"; - version = "20190208.715"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "quick-peek"; - rev = "fd8a6c81422932539d221f39f18c90f2811f2dd9"; - sha256 = "18jr3syd7jd809qq1j61zwaaclmqn24qyb0mv0q8sj6ac4vzl1c3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68f59a3048ec6196b138b6584a22ce70baa38284/recipes/quick-peek"; - sha256 = "0ivg6v9c535bw2bv636wmkd4sy037j55054bfm31wvvxk99bndwq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quick-peek"; - license = lib.licenses.free; - }; - }) {}; - quick-preview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quick-preview"; - ename = "quick-preview"; - version = "20150828.2139"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "quick-preview.el"; - rev = "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35"; - sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98270840568fa1fca2d92f26108444fb24609e83/recipes/quick-preview"; - sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quick-preview"; - license = lib.licenses.free; - }; - }) {}; - quick-shell-keybind = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quick-shell-keybind"; - ename = "quick-shell-keybind"; - version = "20171022.2313"; - src = fetchFromGitHub { - owner = "eyeinsky"; - repo = "quick-shell-keybind"; - rev = "5f4541a5a5554d108bf16b5fd1713e962161ca1b"; - sha256 = "19hqywwf80q6ay886xmcjjpr4pghkw78hzdg0mrpkpkqn2vj06gk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9bf4d78da24d88476545f97b2af0527dde73600/recipes/quick-shell-keybind"; - sha256 = "1f66wk2m0yykcbq6qbalgscpq8s53qshyyqdnimlmdi0g0glif1b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quick-shell-keybind"; - license = lib.licenses.free; - }; - }) {}; - quickref = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "quickref"; - ename = "quickref"; - version = "20170817.532"; - src = fetchFromGitHub { - owner = "pd"; - repo = "quickref.el"; - rev = "f368c8b8219bb90498c5ab84e26f00eedaa234cf"; - sha256 = "0nalnfb816qk1dfxjk9j8r5lvzv2k4jf747xdjbj2mcvv07g2jd2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/quickref"; - sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/quickref"; - license = lib.licenses.free; - }; - }) {}; - quickrun = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quickrun"; - ename = "quickrun"; - version = "20170222.1715"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-quickrun"; - rev = "55bbe5d54b80206ea5a60bf2f58eb6368b2c8201"; - sha256 = "1skbd5q99d9rwfi954r9p7b7nhwcfijq30z0fpdhbi1iiabf7vqz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/quickrun"; - sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quickrun"; - license = lib.licenses.free; - }; - }) {}; - quiet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quiet"; - ename = "quiet"; - version = "20160508.556"; - src = fetchFromGitHub { - owner = "zzkt"; - repo = "quiet"; - rev = "6f20309f99e26fcae2601d1544b342f044e54baf"; - sha256 = "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/443425d9e4412a1e3e8117f97c255c8420223542/recipes/quiet"; - sha256 = "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quiet"; - license = lib.licenses.free; - }; - }) {}; - quilt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quilt"; - ename = "quilt"; - version = "20190303.2140"; - src = fetchFromGitHub { - owner = "jstranik"; - repo = "emacs-quilt"; - rev = "161ce2d8ba225bccef0ea8ae4937251b8ccaa892"; - sha256 = "0r9j71rc2jcwfr6yqg8qx4fwypqg1d7p31af258ixygs3qy69x14"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28ad2d71574c1995287371cfd73648871b9271f0/recipes/quilt"; - sha256 = "0fgni5khjbxy28i2vdwhcvs0z0yx43ll0c4s8br4w7q9s0nlcvmv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quilt"; - license = lib.licenses.free; - }; - }) {}; - quiz = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quiz"; - ename = "quiz"; - version = "20190525.506"; - src = fetchFromGitHub { - owner = "davep"; - repo = "quiz.el"; - rev = "570bf53926d89282cdb9653bd5aa8fe968f92bbd"; - sha256 = "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23d547c0d69d8f5d1e9983e3669a63dffaede2b3/recipes/quiz"; - sha256 = "0pcjfhk109ifi834jw8lndwhpfcv764wym1dhiqhp5qd2vf431kg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/quiz"; - license = lib.licenses.free; - }; - }) {}; - r-autoyas = callPackage ({ ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "r-autoyas"; - ename = "r-autoyas"; - version = "20140101.710"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "r-autoyas.el"; - rev = "d321a7da0ef2e94668d53e0807277da7b70ea678"; - sha256 = "1m4iwza0dvwzqfapwpsrbphgnxbv5vhw8ar332pj8i16vh3h0fry"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a095d3a687055c6ac43a4338826542d14a25127/recipes/r-autoyas"; - sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; - name = "recipe"; - }; - packageRequires = [ ess yasnippet ]; - meta = { - homepage = "https://melpa.org/#/r-autoyas"; - license = lib.licenses.free; - }; - }) {}; - racer = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip - , rust-mode - , s }: - melpaBuild { - pname = "racer"; - ename = "racer"; - version = "20190524.1950"; - src = fetchFromGitHub { - owner = "racer-rust"; - repo = "emacs-racer"; - rev = "f9fc3e9847210867f4a621ceeddcb1724cc0001b"; - sha256 = "1basr4b7nv525yiq1hrncxiglhzbcxhgq5pnq53d23fv63cn994p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer"; - sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pos-tip rust-mode s ]; - meta = { - homepage = "https://melpa.org/#/racer"; - license = lib.licenses.free; - }; - }) {}; - racket-mode = callPackage ({ emacs - , faceup - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "racket-mode"; - ename = "racket-mode"; - version = "20190603.1849"; - src = fetchFromGitHub { - owner = "greghendershott"; - repo = "racket-mode"; - rev = "efba679bdb9d024c36024945da4518663f6f8f15"; - sha256 = "0h4g45ixdl0x1izpac99amz63c9sb4i45k7qwr0m4kk6jly0c5hd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9af8dea03aba378f21c6109faf48278b4d2bf59f/recipes/racket-mode"; - sha256 = "0cmlz314w5227br0vns5d7jhpspv1byzalgzv8f9v2qjyvk6jvsn"; - name = "recipe"; - }; - packageRequires = [ emacs faceup ]; - meta = { - homepage = "https://melpa.org/#/racket-mode"; - license = lib.licenses.free; - }; - }) {}; - rails-log-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rails-log-mode"; - ename = "rails-log-mode"; - version = "20140407.2125"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "rails-log-mode"; - rev = "ff440003ad7d47cb0ac3300f2a632f4cfd36a446"; - sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7ebbf4364759c8e38d550e66fd0ce193f4214e15/recipes/rails-log-mode"; - sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rails-log-mode"; - license = lib.licenses.free; - }; - }) {}; - railscasts-reloaded-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "railscasts-reloaded-theme"; - ename = "railscasts-reloaded-theme"; - version = "20190307.2359"; - src = fetchFromGitHub { - owner = "thegeorgeous"; - repo = "railscasts-reloaded-theme"; - rev = "c6a1cf13a164f22b026b0959527c3b98c2b1aa49"; - sha256 = "00clkjrp2nfchhznilxjb56bcdv1an50cawnz6747ck22x0ycbfn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9817851bd06cbae30fb8f429401f1bbc0dc7be09/recipes/railscasts-reloaded-theme"; - sha256 = "1iy30mnm3s7p7qigrm3lvv7xjgwvinwg6yg0hry2aifwn88cnwmz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/railscasts-reloaded-theme"; - license = lib.licenses.free; - }; - }) {}; - railscasts-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "railscasts-theme"; - ename = "railscasts-theme"; - version = "20150219.725"; - src = fetchFromGitHub { - owner = "mikenichols"; - repo = "railscasts-theme"; - rev = "1340c3f6c2717761cab95617cf8dcbd962b1095b"; - sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0366a9844f6c28dfc3d5ba26201865921981574/recipes/railscasts-theme"; - sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/railscasts-theme"; - license = lib.licenses.free; - }; - }) {}; - rainbow-blocks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-blocks"; - ename = "rainbow-blocks"; - version = "20171025.738"; - src = fetchFromGitHub { - owner = "istib"; - repo = "rainbow-blocks"; - rev = "dd435d7bb34ff6f162a5f315df308b90b7e9f842"; - sha256 = "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rainbow-blocks"; - sha256 = "1zf1z1hnp8q0s9za7nnpq83isbpmz26l8hxafz0h0b5dz1w2vlvs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rainbow-blocks"; - license = lib.licenses.free; - }; - }) {}; - rainbow-delimiters = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-delimiters"; - ename = "rainbow-delimiters"; - version = "20170929.432"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "rainbow-delimiters"; - rev = "19b93892afa0494ba749c2ca9c154e04447ad778"; - sha256 = "0c2a8pbhzzy0bxx8gxz320r106k69hvwkn43j06i6sidbgjwh786"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2cf11dbff76f0e3581b865f48bb44a307aa7f23/recipes/rainbow-delimiters"; - sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rainbow-delimiters"; - license = lib.licenses.free; - }; - }) {}; - rainbow-identifiers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-identifiers"; - ename = "rainbow-identifiers"; - version = "20141102.726"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "rainbow-identifiers"; - rev = "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e"; - sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/975aadd9fe1faf9ad617ba6200ca77185b87e7c0/recipes/rainbow-identifiers"; - sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rainbow-identifiers"; - license = lib.licenses.free; - }; - }) {}; - rake = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rake"; - ename = "rake"; - version = "20180212.208"; - src = fetchFromGitHub { - owner = "asok"; - repo = "rake"; - rev = "9c204334b03b4e899fadae6e59c20cf105404128"; - sha256 = "09k2fqkmqr6g19rvqr5x2kpj1cn3wkncxg50hz02vmsrbgmzmnja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake"; - sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f ]; - meta = { - homepage = "https://melpa.org/#/rake"; - license = lib.licenses.free; - }; - }) {}; - rally-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "rally-mode"; - ename = "rally-mode"; - version = "20161113.1954"; - src = fetchFromGitHub { - owner = "seanleblanc"; - repo = "rally-mode"; - rev = "0f5e09a6abe2de7613f174b4f54863df93343134"; - sha256 = "1vrsv8ph1v853ii0i3q889xlwxnjdqz4bs3ipi502rjx6g7y5gdz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0914825c6d5ad26d2a8035fc33ad98df42df3c53/recipes/rally-mode"; - sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1"; - name = "recipe"; - }; - packageRequires = [ popwin ]; - meta = { - homepage = "https://melpa.org/#/rally-mode"; - license = lib.licenses.free; - }; - }) {}; - rand-theme = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rand-theme"; - ename = "rand-theme"; - version = "20151219.1535"; - src = fetchFromGitHub { - owner = "gopar"; - repo = "rand-theme"; - rev = "65a00e5c5150f857aa96803b68f50bc8da0215b7"; - sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rand-theme"; - sha256 = "0c2xs99jgrhk6f1s6pls8pigg6qwcr4imnwdlngwzr0jz8jhqvxa"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rand-theme"; - license = lib.licenses.free; - }; - }) {}; - random-splash-image = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "random-splash-image"; - ename = "random-splash-image"; - version = "20151002.1830"; - src = fetchFromGitHub { - owner = "kakakaya"; - repo = "random-splash-image"; - rev = "907e2db5ceff781ac7f4dbdd65fe71736c36aa22"; - sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bfbfe83143299b86f867c4d7faf6a0d7a070e1e/recipes/random-splash-image"; - sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/random-splash-image"; - license = lib.licenses.free; - }; - }) {}; - ranger = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ranger"; - ename = "ranger"; - version = "20190411.2324"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "ranger.el"; - rev = "53096cd1296aaae4308e62b52de01d487a353271"; - sha256 = "1s8inrf9vjf7550jhn03zha85pmn46mvdxz3dmx2vfb184hv46cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger"; - sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ranger"; - license = lib.licenses.free; - }; - }) {}; - rase = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rase"; - ename = "rase"; - version = "20120928.1345"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "rase"; - rev = "59b5f7e8102570b65040e8d55781c7ea28de7338"; - sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/334419debe065c34665bb0207574d1d4dfb9e8ae/recipes/rase"; - sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rase"; - license = lib.licenses.free; - }; - }) {}; - rats = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "rats"; - ename = "rats"; - version = "20170818.313"; - src = fetchFromGitHub { - owner = "ane"; - repo = "rats.el"; - rev = "a6d55aebcc54f669c6c6ffedf84364c4097903cc"; - sha256 = "0cskw05jb7wckhfs2qs9pn5icxa93ay2mw2i1brsmdd0igz34lg3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a62cbae1b2d9af2322bb6a27949de8c8bfddc2b7/recipes/rats"; - sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; - name = "recipe"; - }; - packageRequires = [ cl-lib go-mode s ]; - meta = { - homepage = "https://melpa.org/#/rats"; - license = lib.licenses.free; - }; - }) {}; - rbenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rbenv"; - ename = "rbenv"; - version = "20141119.2349"; - src = fetchFromGitHub { - owner = "senny"; - repo = "rbenv.el"; - rev = "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1"; - sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rbenv"; - sha256 = "1skh1v8dgwl1f9m3pmy2s3rnzp8n3cydi3579fgjv4mzi81k3d5q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rbenv"; - license = lib.licenses.free; - }; - }) {}; - rbt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , popup }: - melpaBuild { - pname = "rbt"; - ename = "rbt"; - version = "20170202.1502"; - src = fetchFromGitHub { - owner = "joeheyming"; - repo = "rbt.el"; - rev = "32bfba9062a014e375451cf4203c29535b5efc1e"; - sha256 = "0jzhyf42m9gqcnsz9gxc9wk8bbb9a7fj78swwyj0wqn9jm8jxbra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7241985be1e8a26a454b8136a537040b7ae801/recipes/rbt"; - sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm"; - name = "recipe"; - }; - packageRequires = [ magit popup ]; - meta = { - homepage = "https://melpa.org/#/rbt"; - license = lib.licenses.free; - }; - }) {}; - rc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rc-mode"; - ename = "rc-mode"; - version = "20160913.1218"; - src = fetchFromGitHub { - owner = "mrhmouse"; - repo = "rc-mode.el"; - rev = "fe2e0570bf9c19a292e16b18fd4b0a256df5d93f"; - sha256 = "0skjg3l3ss8nlrpnpjjflmf7wjib4jfarkmx4438nc6vm6553fmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8062b2e5b2744a6e614b389cca7e7f21b582f6f/recipes/rc-mode"; - sha256 = "0p77mckw8jyxcwspj1ffm8mz0k01ddm67hh9j8rw812wddwnj7qf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rc-mode"; - license = lib.licenses.free; - }; - }) {}; - rcirc-alert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-alert"; - ename = "rcirc-alert"; - version = "20141127.247"; - src = fetchFromGitHub { - owner = "csantosb"; - repo = "rcirc-alert"; - rev = "0adf8ff9c47023fec578f678424be62b0f49057f"; - sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/735aa2256660efffdaf6ecbd61a3e2818a48327f/recipes/rcirc-alert"; - sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rcirc-alert"; - license = lib.licenses.free; - }; - }) {}; - rcirc-alertify = callPackage ({ alert - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-alertify"; - ename = "rcirc-alertify"; - version = "20140406.1819"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "rcirc-alertify"; - rev = "ea5cafc55893f375eccbe013d12dbaa94bf6e259"; - sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1559b0e19e571c83c25ac7104e269ebc42d8f14/recipes/rcirc-alertify"; - sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws"; - name = "recipe"; - }; - packageRequires = [ alert ]; - meta = { - homepage = "https://melpa.org/#/rcirc-alertify"; - license = lib.licenses.free; - }; - }) {}; - rcirc-groups = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-groups"; - ename = "rcirc-groups"; - version = "20170731.1401"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "rcirc-groups"; - rev = "b68ece9d219b909244d4e3c0d8bf6a746d6fead7"; - sha256 = "196x3qg22rhh917diml1q0hszqrqwg0klzp96q1c7c744mlq82fx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35b9c9e877c686df0ac9f96855d733a240063829/recipes/rcirc-groups"; - sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rcirc-groups"; - license = lib.licenses.free; - }; - }) {}; - rcirc-notify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-notify"; - ename = "rcirc-notify"; - version = "20150219.1404"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "rcirc-notify"; - rev = "841a7b5a6cdb0c11a812df924d2c6a7d364fd455"; - sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/009e2db47c9fe730fff1dc807e52c86b3ab26446/recipes/rcirc-notify"; - sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rcirc-notify"; - license = lib.licenses.free; - }; - }) {}; - rcirc-styles = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-styles"; - ename = "rcirc-styles"; - version = "20160206.1850"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "rcirc-styles.el"; - rev = "f313bf6a7470bed314b27c7a40558cb787d7bc67"; - sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10771a996c8a9dc1eb211cddff53db7b2b01e00b/recipes/rcirc-styles"; - sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rcirc-styles"; - license = lib.licenses.free; - }; - }) {}; - rdf-prefix = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rdf-prefix"; - ename = "rdf-prefix"; - version = "20190511.512"; - src = fetchFromGitHub { - owner = "simenheg"; - repo = "rdf-prefix"; - rev = "6daf675d96aa4a0bc78adc93560b791a77651b22"; - sha256 = "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix"; - sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rdf-prefix"; - license = lib.licenses.free; - }; - }) {}; - rdp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rdp"; - ename = "rdp"; - version = "20120928.1854"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "rdp"; - rev = "b620192afada04aec33b38cc130fef0765f41ca9"; - sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2dd8ef80d344c9801f7d0a26b0e3ea33a53bf89/recipes/rdp"; - sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rdp"; - license = lib.licenses.free; - }; - }) {}; - rdxmk = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rdxmk"; - ename = "rdxmk"; - version = "20170629.1834"; - src = fetchFromGitHub { - owner = "jsalzbergedu"; - repo = "rdxmk"; - rev = "e78749fb29738365ffa4d863ffabeb969ebb0bcf"; - sha256 = "0gwlqjk84ih89c2ckx0rrw07jgwd32wfwj4mibchdrn0ai891md0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db54339795e0519f154328e54d47a7a0c80afc71/recipes/rdxmk"; - sha256 = "14iavsgqp28y2ykgly8x69sny34r32dl4bpb47m921vk5n4y6zky"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rdxmk"; - license = lib.licenses.free; - }; - }) {}; - react-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "react-snippets"; - ename = "react-snippets"; - version = "20181002.346"; - src = fetchFromGitHub { - owner = "johnmastro"; - repo = "react-snippets.el"; - rev = "87ccb640d265fe799583ab55605b84d113223694"; - sha256 = "0zs78mn37ngy86blmp2xfy7jr5p0s6r0qq6z3z924amrhy5bwdqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3720192fdfa45f9b83259ab39356f469c5ac85b4/recipes/react-snippets"; - sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/react-snippets"; - license = lib.licenses.free; - }; - }) {}; - read-aloud = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "read-aloud"; - ename = "read-aloud"; - version = "20160922.2200"; - src = fetchFromGitHub { - owner = "gromnitsky"; - repo = "read-aloud.el"; - rev = "d5f80ab72054a957aed25224639c1779cae5f4d1"; - sha256 = "1hbb6diz96jabajxrnancjfpyd9div8vzbwys1f5bddi9z8l2jyy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20452bf3112276a7e1c880bfab259150fc70b47a/recipes/read-aloud"; - sha256 = "01fd87k50x71w8qypbi7llgyc1xnmyxifxh4ni9pgbx2ryn72lzv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/read-aloud"; - license = lib.licenses.free; - }; - }) {}; - readability = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , oauth - , ov }: - melpaBuild { - pname = "readability"; - ename = "readability"; - version = "20140715.1727"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "emacs-readability"; - rev = "3329d7c77d010c8fa92215cd2b7cd891eb2f68c7"; - sha256 = "0s226fqhc9y1s49l5y01mlxxz3ah4k3payy4jdgnd8r03rb3gia7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eed9bcb1aa238746c9a9f6ecba9dd61b83d8b612/recipes/readability"; - sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv"; - name = "recipe"; - }; - packageRequires = [ emacs oauth ov ]; - meta = { - homepage = "https://melpa.org/#/readability"; - license = lib.licenses.free; - }; - }) {}; - readline-complete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "readline-complete"; - ename = "readline-complete"; - version = "20150708.737"; - src = fetchFromGitHub { - owner = "monsanto"; - repo = "readline-complete.el"; - rev = "30c020c37b2741160cc37e656e13c85d826a0ebf"; - sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cf3b56dae7669b34df9d2abe2d78164cbf064c9/recipes/readline-complete"; - sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/readline-complete"; - license = lib.licenses.free; - }; - }) {}; - real-auto-save = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "real-auto-save"; - ename = "real-auto-save"; - version = "20190224.646"; - src = fetchFromGitHub { - owner = "ChillarAnand"; - repo = "real-auto-save"; - rev = "824ad04121493723b08838c8b96559947dca7ed9"; - sha256 = "1szpjv04rp9x9ph44a5s56a2y96z5x474bccsjnmn6yhingh5qik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/real-auto-save"; - sha256 = "1li0b2d93ffxjq4jdyzyvjdy5h7q5xllys0w4748d2bhr8q35p3w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/real-auto-save"; - license = lib.licenses.free; - }; - }) {}; - realgud = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , loc-changes - , melpaBuild - , test-simple }: - melpaBuild { - pname = "realgud"; - ename = "realgud"; - version = "20190603.1457"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud"; - rev = "593ccf1347f823559011112ace1f5c4e2a11ce65"; - sha256 = "1b4x7ymnsv39isn5j8gw8xvcdr75amg66s8iyirlcwgbyzil3y8f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a21be3673962d5706f12efa5179a5426bdce82b/recipes/realgud"; - sha256 = "14n6d3jfhpa29nf4ywdg3aw4i51lfkr99b4z8q4833pmpz1jbq2c"; - name = "recipe"; - }; - packageRequires = [ emacs load-relative loc-changes test-simple ]; - meta = { - homepage = "https://melpa.org/#/realgud"; - license = lib.licenses.free; - }; - }) {}; - realgud-byebug = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-byebug"; - ename = "realgud-byebug"; - version = "20190520.440"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-byebug"; - rev = "f8f20b92c6b13f75cc9797921c0e28d3def48b1c"; - sha256 = "1f6g5ajimha2n45dykc2vrpdd25ylwrn98fijj3i9m8n0f7jyjrn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-byebug"; - sha256 = "1akv9raa6yb5h4lsvz7mxlnd9l7adg2rpgw7ski6036n6facn18a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-byebug"; - license = lib.licenses.free; - }; - }) {}; - realgud-ipdb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-ipdb"; - ename = "realgud-ipdb"; - version = "20190603.1909"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-ipdb"; - rev = "3642767a286e0542bf03cbb240cf47b2a89ad3f5"; - sha256 = "1lgqh80w4ksa4a3zyxdz812jn0yg5xn1z5z0c23sf5vqzzxkzx7h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8182de5fceca3fc517a21abdb8d6e9c860e041b/recipes/realgud-ipdb"; - sha256 = "134b1n2fci0z85cyvqjq3i5wb3pm110src87la6kq2pin1nrdkcm"; - name = "recipe"; - }; - packageRequires = [ emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-ipdb"; - license = lib.licenses.free; - }; - }) {}; - realgud-jdb = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-jdb"; - ename = "realgud-jdb"; - version = "20190524.2057"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-jdb"; - rev = "5e3211a17a8282d2d0027e73149e01034082bc41"; - sha256 = "0d2qkzm09dxv9969xc74b5vvygn2kn0qxwl2y4pjjwhn4mw6gc37"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f03a731e4fbf2099b1ba0902ef514fd8c930d30/recipes/realgud-jdb"; - sha256 = "02vlzv8lvm4vcw5c3ajn8lb499jdsrlg92kwib1hjwb2smjkb6ba"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-jdb"; - license = lib.licenses.free; - }; - }) {}; - realgud-lldb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-lldb"; - ename = "realgud-lldb"; - version = "20190604.2"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-lldb"; - rev = "f2f77d6ddfa42430ead400eaf81c605c3a04dead"; - sha256 = "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e40b575cc22fa7b4773cf617862495e93565e4/recipes/realgud-lldb"; - sha256 = "1l43h14a42cpgjcmbhk9vkk87z4ap9rdz7jrz8id666qxbza5xzg"; - name = "recipe"; - }; - packageRequires = [ emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-lldb"; - license = lib.licenses.free; - }; - }) {}; - realgud-node-debug = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-node-debug"; - ename = "realgud-node-debug"; - version = "20190525.934"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-node-debug"; - rev = "72e786359ce9dace1796b0d81a00e9340e9c90ad"; - sha256 = "1zn465bikzv1aizjjcnzsx105pdwwarqmd1fij82rhrspc8p8zis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50a3644b62f61622169c1aa109db80b1f53d3d8a/recipes/realgud-node-debug"; - sha256 = "0mw2sl9g8j08v40g5x2ai52i5ljvbxvcq37jwaz7vwdkafpnfyis"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-node-debug"; - license = lib.licenses.free; - }; - }) {}; - realgud-node-inspect = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-node-inspect"; - ename = "realgud-node-inspect"; - version = "20190523.551"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-node-inspect"; - rev = "e0f18442d759b8ce4479c01e090975b62270257d"; - sha256 = "1w4jxz2lc2ia9zy9cx1kwvjsn5z53wnkybn9j80ijly431m4hlxg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88388c61c0402534ccf9751b3cec318b62d72655/recipes/realgud-node-inspect"; - sha256 = "1mfhvhww0w7mksfmgfjd2s8wa10k7q2sqm6s55nm71jyx5h48k07"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-node-inspect"; - license = lib.licenses.free; - }; - }) {}; - realgud-old-debuggers = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-old-debuggers"; - ename = "realgud-old-debuggers"; - version = "20190520.450"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-old-debuggers"; - rev = "0fad38283e885c452160232e01adf3f6ae51983b"; - sha256 = "01x819j80yc5ybwaz5xglibv88r2aah5gqxwi1q9azd6f70zanvi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-old-debuggers"; - sha256 = "14kig9yxss9nfc0cc54ph80pbdrmh1mdazypiwxbnj2nk1dk3qsv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-old-debuggers"; - license = lib.licenses.free; - }; - }) {}; - realgud-pry = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-pry"; - ename = "realgud-pry"; - version = "20190520.439"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-pry"; - rev = "9f6151bde12d9b3a5d3f3ff18368c2ba4b2c44d3"; - sha256 = "0spy9j93j8gf5qpc3l2r934nsgqzwgzsswb2zr2z0f3l06yxbqs6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-pry"; - sha256 = "1f8qap30r26gg33i76474zk6fs3r9qjf7jrxpm4xwpbjraggqy3z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-pry"; - license = lib.licenses.free; - }; - }) {}; - realgud-rdb2 = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-rdb2"; - ename = "realgud-rdb2"; - version = "20190520.446"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-ruby-debugger2"; - rev = "3594aa74f7afda3c3251bb2af7fe0e8ec6d621ae"; - sha256 = "1nalr0yd1wvqdf81nidxmh9fr3ncqdjb706p6832fsmbpk7r9haw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/realgud-rdb2"; - sha256 = "16pk034g26xnbsz0w9z8p76jiaraz8lvbf5hf0mmg1f5f4xlinz7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-rdb2"; - license = lib.licenses.free; - }; - }) {}; - realgud-trepan-ni = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-trepan-ni"; - ename = "realgud-trepan-ni"; - version = "20190528.1511"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-trepan-ni"; - rev = "4cd936edcc89324a819b21aa1afd331c02e6bd3e"; - sha256 = "0h0d8566km6v7rgiqx54lwazwwl929npxicg8dx8qw12q13vkk31"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2464e03d11cd660c3c9c760e16b90911151cf184/recipes/realgud-trepan-ni"; - sha256 = "1p7sn1swmdyyzaaa5xza70md4pl2p15swyh7y3fbmpp35nabv9zi"; - name = "recipe"; - }; - packageRequires = [ emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-trepan-ni"; - license = lib.licenses.free; - }; - }) {}; - reason-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reason-mode"; - ename = "reason-mode"; - version = "20190210.941"; - src = fetchFromGitHub { - owner = "reasonml-editor"; - repo = "reason-mode"; - rev = "8eabf39fe84280e0753c1c0c4b8ecb7b8f94f68f"; - sha256 = "1hbz3bzlb0r0ss5vl8ahl9x2vp049agms8hxwma0ycs6ai1ygcn1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9f1a18c13601f3a4fd7b1bbfe7d5da07746e492/recipes/reason-mode"; - sha256 = "07sirgj8bs9yv7pbx1lahwslvjd2aadkzkz7lsyw6xflj5fxpggr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reason-mode"; - license = lib.licenses.free; - }; - }) {}; - reazon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reazon"; - ename = "reazon"; - version = "20180921.737"; - src = fetchFromGitHub { - owner = "nickdrozd"; - repo = "reazon"; - rev = "020be6467a83957adcbdcb192b61f2c76a94079b"; - sha256 = "18la2g0srybr10vm1dajgbxi67j1l0cs08mr696hxb6m558yxdv5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77020b6ea36a4115bdddbc9599fe4f4193ecc29d/recipes/reazon"; - sha256 = "1lymdc1lnwr7s8s15mnjcavxdyqncy2rkfdj571lf1a37y52jcj1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reazon"; - license = lib.licenses.free; - }; - }) {}; - rebecca-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rebecca-theme"; - ename = "rebecca-theme"; - version = "20180324.121"; - src = fetchFromGitHub { - owner = "vic"; - repo = "rebecca-theme"; - rev = "1fe3662d1b02caea96e9a780252b2c45f7a49b1d"; - sha256 = "0qcfnc9slhm4y2bpld0ckbv3wijr9y7h6555sy23z3dlmz7xs1wm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f40f30113c7dabd76a2d0e52898e6d6be69a35/recipes/rebecca-theme"; - sha256 = "1m72jqyqx18i1vpj07v3vkbi0di9dks5sz46wb2h0f23xqyx00md"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rebecca-theme"; - license = lib.licenses.free; - }; - }) {}; - rebox2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rebox2"; - ename = "rebox2"; - version = "20121113.500"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "rebox2"; - rev = "00634eca420cc48657b81e40e599ff8548083985"; - sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9132290886694bd551681e32af26e9f4ebae57/recipes/rebox2"; - sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rebox2"; - license = lib.licenses.free; - }; - }) {}; - recentf-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recentf-ext"; - ename = "recentf-ext"; - version = "20170925.1735"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "recentf-ext"; - rev = "450de5f8544ed6414e88d4924d7daa5caa55b7fe"; - sha256 = "1jylpqgngbl594a1qvd305m9lda48cib4dsasimdqxp20d4c56iy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/recentf-ext"; - sha256 = "122kns45l75cdwxbfjznks3kvm5jc89ik714ij2qx14qyik0xmni"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/recentf-ext"; - license = lib.licenses.free; - }; - }) {}; - recentf-remove-sudo-tramp-prefix = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recentf-remove-sudo-tramp-prefix"; - ename = "recentf-remove-sudo-tramp-prefix"; - version = "20180204.2156"; - src = fetchFromGitHub { - owner = "ncaq"; - repo = "recentf-remove-sudo-tramp-prefix"; - rev = "6d23ebc3f52b0a66236c171c45cc77a4d3aba541"; - sha256 = "0rzs9fmy1iqips6px0v57wnplbxmm3sbnk6xcszwhkwwp563hk32"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf1761715ee4917ba0823adbda03859d5b8131a/recipes/recentf-remove-sudo-tramp-prefix"; - sha256 = "01kdpx7kqd39a5hjym5plcj5d8szzghigq9mq186mggayg8q44cr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/recentf-remove-sudo-tramp-prefix"; - license = lib.licenses.free; - }; - }) {}; - recently = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recently"; - ename = "recently"; - version = "20190317.534"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "recently-el"; - rev = "7b5d1128becb387d759a3a95f6afb9ef54be792a"; - sha256 = "0wghawh47jd2j5s77h1b69fg5njff1yccx1xpvwmlj6ssh3p38xp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8d1628e1787cba10fc612f3351e4085e9a3153/recipes/recently"; - sha256 = "1928v1897l1n42zrzqfwkq6nckf9y822qcwy99294rq0b4z83kxs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/recently"; - license = lib.licenses.free; - }; - }) {}; - recompile-on-save = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recompile-on-save"; - ename = "recompile-on-save"; - version = "20151126.646"; - src = fetchFromGitHub { - owner = "maio"; - repo = "recompile-on-save.el"; - rev = "92e11446869d878803d4f3dec5d2101380c12bb2"; - sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77805a854da76b105bd7589fd0960b1ef8868b8b/recipes/recompile-on-save"; - sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/recompile-on-save"; - license = lib.licenses.free; - }; - }) {}; - recover-buffers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recover-buffers"; - ename = "recover-buffers"; - version = "20171008.2137"; - src = fetchFromGitHub { - owner = "tripleee"; - repo = "recover-buffers"; - rev = "81a5cb53099955ebc2a411a44cba5a394ee3f2d1"; - sha256 = "07dfdvz5rn5l13xdycd7h75zaq0pw2afb9n1yiq01fqk6gvrhc5b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/43b33cfb794c35de78fde6eabb71ffe01049d23d/recipes/recover-buffers"; - sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/recover-buffers"; - license = lib.licenses.free; - }; - }) {}; - rect-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rect-plus"; - ename = "rect+"; - version = "20150620.1744"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-rectplus"; - rev = "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc"; - sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8c1cd81f0e764a7cfc2f3f96574898ff414beb4/recipes/rect+"; - sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rect+"; - license = lib.licenses.free; - }; - }) {}; - rectangle-utils = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rectangle-utils"; - ename = "rectangle-utils"; - version = "20190411.1057"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "rectangle-utils"; - rev = "46f7e73340fee40c1ab9a4e766a08ae3fce83ebe"; - sha256 = "0dcga10lg2bl1p259s78jib7pd03v183hima8aksfr0c84s438yq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1852b75c82822e97c39b7c7caeb2a32246171be4/recipes/rectangle-utils"; - sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/rectangle-utils"; - license = lib.licenses.free; - }; - }) {}; - recursive-narrow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recursive-narrow"; - ename = "recursive-narrow"; - version = "20190306.721"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "recursive-narrow"; - rev = "5e3e2067d5a148d7e64e64e0355d3b6860e4c259"; - sha256 = "1dxghz1fb2l7y7qphqk0kk732vazlk1n1fl6dlqhqhccj450h2qa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/recursive-narrow"; - sha256 = "15pzwxzyc3dl81v27gk7a4866cxbhzpmmcmfi9n4vrrxmf61h905"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/recursive-narrow"; - license = lib.licenses.free; - }; - }) {}; - redis = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redis"; - ename = "redis"; - version = "20150531.1248"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "redis.el"; - rev = "2c33f3397bc14e7a8192867b55920492d4eead8c"; - sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10fbb970956ee19d812c17900f3c01c5fee0c3f2/recipes/redis"; - sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/redis"; - license = lib.licenses.free; - }; - }) {}; - redpen-paragraph = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "redpen-paragraph"; - ename = "redpen-paragraph"; - version = "20160625.350"; - src = fetchFromGitHub { - owner = "karronoli"; - repo = "redpen-paragraph.el"; - rev = "770ffb34b04bfa0ea8484fa1506e96c530168e13"; - sha256 = "0cqln3d8yp9fdam984bwnngjl0hjnwi7yhcggdkjwribhr79cxhl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e6b187bfc14f3affbe2d8d1cb854abe69deb15b/recipes/redpen-paragraph"; - sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/redpen-paragraph"; - license = lib.licenses.free; - }; - }) {}; - redprl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redprl"; - ename = "redprl"; - version = "20180418.734"; - src = fetchFromGitHub { - owner = "RedPRL"; - repo = "sml-redprl"; - rev = "4abdbdeda4604ff30ce19c0df3f43e34faf60bd7"; - sha256 = "0m6ck4x16b9qnd33dcw5zvygwgcqzwqydrvcw0gfyfypfcw13qwb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; - sha256 = "1zinzs3vzf2alsnxf5k71i7lp90fm26wv4y20ci52n0hnh5nz861"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/redprl"; - license = lib.licenses.free; - }; - }) {}; - redshank = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "redshank"; - ename = "redshank"; - version = "20180729.2107"; - src = fetchFromGitHub { - owner = "emacsattic"; - repo = "redshank"; - rev = "d059c5841044aa163664f8bf87c1d981bf0a04fe"; - sha256 = "1545z1dd85zg8sg2r5r5gdnmgxbxwjvl5xklx5nvpd0gbxlwbpqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2677a5cf74ebace6510517f47eaa43b35f736683/recipes/redshank"; - sha256 = "0p18rkn09qb4ssr6jix13kqc3jld407qr2z2k8z78i3xy4bfzr5f"; - name = "recipe"; - }; - packageRequires = [ paredit ]; - meta = { - homepage = "https://melpa.org/#/redshank"; - license = lib.licenses.free; - }; - }) {}; - redtick = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redtick"; - ename = "redtick"; - version = "20180424.1436"; - src = fetchFromGitHub { - owner = "ferfebles"; - repo = "redtick"; - rev = "0faa6b7b479fae39f5d4632f0cbbef0f2917780e"; - sha256 = "12wsczhz03vjfvck20jg9xi2mgiihq2d4cnkj6r95jkja0ds7brh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3187bd436541e2a5c2b28de67c62f5d5165af737/recipes/redtick"; - sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/redtick"; - license = lib.licenses.free; - }; - }) {}; - redtt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redtt"; - ename = "redtt"; - version = "20181120.1621"; - src = fetchFromGitHub { - owner = "RedPRL"; - repo = "redtt"; - rev = "c95d1a0787fb92eb011df690b4bdc1029a611c0b"; - sha256 = "1l9agj28ik4b57rxai1jp23bc4l832m72znkqacch0gvxx553q2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8db65908885f753bf65849b89ebabe0c4df664f9/recipes/redtt"; - sha256 = "0gnqik2p2rb8c1mp3vrz1xf7z89xfcx5pi4lqsdnwjhxjh2534zk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/redtt"; - license = lib.licenses.free; - }; - }) {}; - refine = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , list-utils - , loop - , melpaBuild - , s }: - melpaBuild { - pname = "refine"; - ename = "refine"; - version = "20180315.1528"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "refine"; - rev = "0a99439a0b4ed6f79b9a240ea1270140a9e328bc"; - sha256 = "1scw449mbmr70kb0r2ymhph9j0s5ym77ijp5fpwph9bri46cad3g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b111879ea0685cda88c758b270304d9e913c1391/recipes/refine"; - sha256 = "1sk6rsd92pix7k8snnqm3hsimjzaihzjgac0g5h3a2zm9dabf4py"; - name = "recipe"; - }; - packageRequires = [ dash emacs list-utils loop s ]; - meta = { - homepage = "https://melpa.org/#/refine"; - license = lib.licenses.free; - }; - }) {}; - reformatter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reformatter"; - ename = "reformatter"; - version = "20190529.1538"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "reformatter.el"; - rev = "b29fdd346d0d06bef4cafc75adbde51a46392e90"; - sha256 = "0ahi9z3qpbg9zcb1fzbxqd6gb8ip44zdf9assimch7yklg5ph2ca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58de8cf8864867f7b3969f3a048a4844837078b4/recipes/reformatter"; - sha256 = "0z4wa0bmhz55c54vx7qxkl9x7ix20mmgygv91sqll68l10g63l0c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reformatter"; - license = lib.licenses.free; - }; - }) {}; - regex-dsl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "regex-dsl"; - ename = "regex-dsl"; - version = "20100124.228"; - src = fetchFromGitHub { - owner = "alk"; - repo = "elisp-regex-dsl"; - rev = "c9d9ce30669e3c4ccfa6030eb4a080083451ac71"; - sha256 = "11lrgygmwgc93av33md601alqr7ffh5ga0r60lvkl3rgwgnxz7iw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/regex-dsl"; - sha256 = "0c9mxsvmx6mgpq838qnjjr7ra4hafikv7hq4nfab7zw9mxrcr2f9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/regex-dsl"; - license = lib.licenses.free; - }; - }) {}; - regex-tool = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "regex-tool"; - ename = "regex-tool"; - version = "20170104.1118"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "regex-tool"; - rev = "0b4a0111143c88ef94bec56624cb2e00c1a054e6"; - sha256 = "03qm8s7nqsj0pjnnb0p84gk7hvad4bywn3rhr3ibzj6hxqvppbqj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/regex-tool"; - sha256 = "1s4clmy5r7w6aj2bh2vf2fmbcwnainzidj28mf3kc34x3qhybngq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/regex-tool"; - license = lib.licenses.free; - }; - }) {}; - region-bindings-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "region-bindings-mode"; - ename = "region-bindings-mode"; - version = "20140407.1514"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "region-bindings-mode"; - rev = "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc"; - sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/faba50ed3e8c22991bcb8968880f79fad1748705/recipes/region-bindings-mode"; - sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/region-bindings-mode"; - license = lib.licenses.free; - }; - }) {}; - region-convert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "region-convert"; - ename = "region-convert"; - version = "20181220.2128"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "region-convert.el"; - rev = "173c86b4b3fc187d54bcd85b4d7df27a5ee24965"; - sha256 = "1paljjwr6sfl835m24vj2j4x3zdh3whwayj6dvyfarbhhcwbwphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/region-convert"; - sha256 = "16i1b83jms7djkyb3n0crfxgpz05m68f4nrlvzxjj7fb56mvf9j7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/region-convert"; - license = lib.licenses.free; - }; - }) {}; - region-state = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "region-state"; - ename = "region-state"; - version = "20181205.946"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "region-state.el"; - rev = "f9e3926036a7c261b20bad9bf46f68ead8c15024"; - sha256 = "1wb46m7qdhbjkgzwf6yg0hsjh44dq8sa1w99k7czy1yq2i2mz1k6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/716e82eb4ca0845f59a743556b37be8a1ecb29af/recipes/region-state"; - sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/region-state"; - license = lib.licenses.free; - }; - }) {}; - register-channel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "register-channel"; - ename = "register-channel"; - version = "20180926.1649"; - src = fetchFromGitHub { - owner = "YangZhao11"; - repo = "register-channel"; - rev = "9272923757402d177a0b2deab1d9c3c74601c48e"; - sha256 = "0k9qgrbzbxx4sjffnr02qx5wm71i3m61w7mh2j4hq9jf8k6nbkq4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad44618ac36e96d04f5c44c77637ea6229e61b4c/recipes/register-channel"; - sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/register-channel"; - license = lib.licenses.free; - }; - }) {}; - related = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "related"; - ename = "related"; - version = "20190327.324"; - src = fetchFromGitHub { - owner = "julien-montmartin"; - repo = "related"; - rev = "546c7e811b290470288b617f2c27106bd83ccd33"; - sha256 = "0kn07wgnz5bkkq66qfq16rvw9l7zgh0hzrsa705j1zbd6vc3wygs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/555932a7b9cf11b50a61c2a9dd2636fd6844fac8/recipes/related"; - sha256 = "08cfr5qbm1h5j4v3vf3kjjwb9nxsrk74lx9gi1icdhqw631h3yxf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/related"; - license = lib.licenses.free; - }; - }) {}; - relative-buffers = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "relative-buffers"; - ename = "relative-buffers"; - version = "20160221.1123"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "relative-buffers"; - rev = "88c24259ed62b85adff6850e34bbbe844caddccf"; - sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab22cea99fbee937bbd6e8fbc8bd27967aeaa8a5/recipes/relative-buffers"; - sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f s ]; - meta = { - homepage = "https://melpa.org/#/relative-buffers"; - license = lib.licenses.free; - }; - }) {}; - relax = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "relax"; - ename = "relax"; - version = "20131029.1434"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "relax.el"; - rev = "6e33892623ab87833082262321dc8e1977209626"; - sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67247451b39461db4a5fcff3827a09f53f9fc8ec/recipes/relax"; - sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/relax"; - license = lib.licenses.free; - }; - }) {}; - remark-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "remark-mode"; - ename = "remark-mode"; - version = "20171217.2356"; - src = fetchFromGitHub { - owner = "torgeir"; - repo = "remark-mode.el"; - rev = "e8a95f25d865d6165a7fdb1cadf5e6f0bb5ee73b"; - sha256 = "01qdaby7mn5d8y95wcbqzwzcbjmf2329g6yjbvmdd1gn6s7qzs0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/161a45835a153c6ac81b99311482f5dd36507da1/recipes/remark-mode"; - sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/remark-mode"; - license = lib.licenses.free; - }; - }) {}; - remember-last-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "remember-last-theme"; - ename = "remember-last-theme"; - version = "20170619.1433"; - src = fetchFromGitHub { - owner = "anler"; - repo = "remember-last-theme"; - rev = "57e8e2a475ea89316dbb5c4d2ea047f56a2cbcdf"; - sha256 = "0sb110rb6pnjnvyqn0kji19bhbn8mk4x32yps00aq2g2v9pc1jzr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26edcdddaf8dc8c9a18d6b007e0d49d04fe4ccca/recipes/remember-last-theme"; - sha256 = "0pw36f9mchkl1qhaii39zd0vwrydjlijzanv706ai2bl8r7l0ppy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/remember-last-theme"; - license = lib.licenses.free; - }; - }) {}; - renpy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "renpy"; - ename = "renpy"; - version = "20190419.1049"; - src = fetchFromGitHub { - owner = "billywade"; - repo = "renpy-mode"; - rev = "943e1af71d23128ff100d41d178ccffe28f97944"; - sha256 = "1l2dglkbpb3d6c6cnifhngcjc4yy726mq6yic8x9409c6r0apn2n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc928aed12275dc3780d7d8acc6ceca0f69ef63f/recipes/renpy"; - sha256 = "1xfk3j13wzgxg56izbwad0kw4izg0hdzkh7h7cfdmdf4v6mxc7f0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/renpy"; - license = lib.licenses.free; - }; - }) {}; - repeatable-motion = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "repeatable-motion"; - ename = "repeatable-motion"; - version = "20170620.1148"; - src = fetchFromGitHub { - owner = "willghatch"; - repo = "emacs-repeatable-motion"; - rev = "77aa35b27c8a76dc8deef87c9f71ef7e6fd289ee"; - sha256 = "0pm9z0w402430j66167s1az37jxw89sck1b7lm9gjnc3gslh0lpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd56ebaea098715b9c201f07e6196c38977f8e3/recipes/repeatable-motion"; - sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/repeatable-motion"; - license = lib.licenses.free; - }; - }) {}; - repeater = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "repeater"; - ename = "repeater"; - version = "20180418.512"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "repeater"; - rev = "854b874542b186b2408cbc58ad0591fe8eb70b6c"; - sha256 = "0cx6b8l9ssf56fz8xjsmbyhy8mdcj8l0rvsdx37qk86xq4nlz74p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10e6c57937b7540f1fbf920765a63292784433ed/recipes/repeater"; - sha256 = "07fq3d6w5ns5ryv4vd23iww2bz34f62syzbg8y643kdd0kp1m772"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/repeater"; - license = lib.licenses.free; - }; - }) {}; - repl-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , fullframe - , lib - , melpaBuild }: - melpaBuild { - pname = "repl-toggle"; - ename = "repl-toggle"; - version = "20190430.13"; - src = fetchFromGitHub { - owner = "tomterl"; - repo = "repl-toggle"; - rev = "a36caac7649fbffbe30f7b06541c9efd723563fc"; - sha256 = "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/repl-toggle"; - sha256 = "16k9fk1nl2llk9qli52kiirlx9rlz8yhjh3cy6v5y2b3k0y1cf0b"; - name = "recipe"; - }; - packageRequires = [ fullframe ]; - meta = { - homepage = "https://melpa.org/#/repl-toggle"; - license = lib.licenses.free; - }; - }) {}; - replace-from-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "replace-from-region"; - ename = "replace-from-region"; - version = "20170227.1516"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "replace-from-region"; - rev = "dc9318b9b2822da7b00ecc34d1dc965c8f96c9bb"; - sha256 = "05l0wn1gqw2sbl65s1m7afmg3b1ps2qgqqrjkl9r2i26p95kqlq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/replace-from-region"; - sha256 = "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/replace-from-region"; - license = lib.licenses.free; - }; - }) {}; - replace-pairs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "replace-pairs"; - ename = "replace-pairs"; - version = "20160207.451"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "replace-pairs"; - rev = "ef6f2719aab7714f6cb209fd3dd6d2e720681b3c"; - sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c578f574bc13edf45330a2836c02dece163688d/recipes/replace-pairs"; - sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/replace-pairs"; - license = lib.licenses.free; - }; - }) {}; - replace-symbol = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "replace-symbol"; - ename = "replace-symbol"; - version = "20160517.1712"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "replace-symbol-el"; - rev = "baf949e528aee1881f455f9c84e67718bedcb3f6"; - sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/377b6ff2b785f6d87adf1e23a5b0ce02881fc5c9/recipes/replace-symbol"; - sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/replace-symbol"; - license = lib.licenses.free; - }; - }) {}; - replace-with-inflections = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , inflections - , lib - , melpaBuild - , string-inflection }: - melpaBuild { - pname = "replace-with-inflections"; - ename = "replace-with-inflections"; - version = "20180830.2335"; - src = fetchFromGitHub { - owner = "knu"; - repo = "replace-with-inflections.el"; - rev = "d9201e047856492f282da65459b28aba25998dbb"; - sha256 = "09yvn489z33hww7mi1flh344faxrpbkzqhm0i6xb2rridcj7acqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7892eb506b8f4260bde4be2805bf3b2d594ab640/recipes/replace-with-inflections"; - sha256 = "1pqpin5ipm3g74zjh1kh6s1gh0aan6202p0y2q00d4ywbz9kn5s0"; - name = "recipe"; - }; - packageRequires = [ cl-lib inflections string-inflection ]; - meta = { - homepage = "https://melpa.org/#/replace-with-inflections"; - license = lib.licenses.free; - }; - }) {}; - repo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "repo"; - ename = "repo"; - version = "20190326.944"; - src = fetchFromGitHub { - owner = "canatella"; - repo = "repo-el"; - rev = "c53c06169dec4e556982fb06ca780ca4708dc436"; - sha256 = "1brsc8k590qc4x93qydiq8ylq26zbdv8565fz194zpik9d239mja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1729d4ea9498549fff3594b971fcde5f81592f84/recipes/repo"; - sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/repo"; - license = lib.licenses.free; - }; - }) {}; - req-package = callPackage ({ dash - , fetchFromGitLab - , fetchurl - , ht - , lib - , log4e - , melpaBuild - , use-package }: - melpaBuild { - pname = "req-package"; - ename = "req-package"; - version = "20180121.2100"; - src = fetchFromGitLab { - owner = "edvorg"; - repo = "req-package"; - rev = "0c0ac7451149dac6bfda2adfe959d1df1c273de6"; - sha256 = "0sx3kw1gpliifbc0gh2z1lvig68v3gwqjbj0izgn77js8kqxad84"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa5bc1909f807ec03ad441d78013ba8626cd410a/recipes/req-package"; - sha256 = "1zjhc6f9qcb3j72k1llp6vym25lxnvq1jgqgmnrjxxwc4fhxx595"; - name = "recipe"; - }; - packageRequires = [ dash ht log4e use-package ]; - meta = { - homepage = "https://melpa.org/#/req-package"; - license = lib.licenses.free; - }; - }) {}; - request = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "request"; - ename = "request"; - version = "20181129.338"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-request"; - rev = "b929e7c7b877b074f9ce582999bb6e196e0f745d"; - sha256 = "1xzar6mgchrq9q7sj4q9cch5sharxfj85sffhcgza7fz0vl5b0hc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request"; - sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/request"; - license = lib.licenses.free; - }; - }) {}; - request-deferred = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "request-deferred"; - ename = "request-deferred"; - version = "20181128.1917"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-request"; - rev = "a8d8d0714612d3b45188c6cd4237e091cc6d1366"; - sha256 = "1rar2b781gr8sb34n638a31f4pg5xh64xkmamvdr37i8wrr9i4cy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request-deferred"; - sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; - name = "recipe"; - }; - packageRequires = [ deferred request ]; - meta = { - homepage = "https://melpa.org/#/request-deferred"; - license = lib.licenses.free; - }; - }) {}; - requirejs = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , popup - , s - , yasnippet }: - melpaBuild { - pname = "requirejs"; - ename = "requirejs"; - version = "20151203.2319"; - src = fetchFromGitHub { - owner = "joeheyming"; - repo = "requirejs-emacs"; - rev = "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1"; - sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6a710c0d5ab34c52498c4154deebb779052aa01/recipes/requirejs"; - sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; - name = "recipe"; - }; - packageRequires = [ cl-lib js2-mode popup s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/requirejs"; - license = lib.licenses.free; - }; - }) {}; - requirejs-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "requirejs-mode"; - ename = "requirejs-mode"; - version = "20130215.1304"; - src = fetchFromGitHub { - owner = "moricard"; - repo = "requirejs-mode"; - rev = "011849043098b6c4f27571625ae19071b53b8824"; - sha256 = "1dhhwz3910lcyabmpm14ky61dhgj4hvdv87k2nnzm73iwxl876ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/requirejs-mode"; - sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/requirejs-mode"; - license = lib.licenses.free; - }; - }) {}; - resize-window = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "resize-window"; - ename = "resize-window"; - version = "20180917.2238"; - src = fetchFromGitHub { - owner = "dpsutton"; - repo = "resize-window"; - rev = "09dc5968f1c988c51fcd6ea5d68bb38b7541eb66"; - sha256 = "02hzn0r9bzpmhjij1fvj6q3qvha8rwyn53m4yw995bg9xk32c0hj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/601a8d8f9046db6c4d50af983a11fa2501304028/recipes/resize-window"; - sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/resize-window"; - license = lib.licenses.free; - }; - }) {}; - restart-emacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "restart-emacs"; - ename = "restart-emacs"; - version = "20180601.331"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "restart-emacs"; - rev = "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9"; - sha256 = "02x1a85k7r95z8091zgjiaj9nf0zvx1jy4xvl3hr12qbnrx1wfav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9faeb6d910d686cbcafe7d12e0bcf62a85689bd/recipes/restart-emacs"; - sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/restart-emacs"; - license = lib.licenses.free; - }; - }) {}; - restclient = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "restclient"; - ename = "restclient"; - version = "20190502.1514"; - src = fetchFromGitHub { - owner = "pashky"; - repo = "restclient.el"; - rev = "422ee8d8b077dffe65706a0f027ed700b84746bc"; - sha256 = "067nin7vxkdpffxa0q61ybv7szihhvpdinivmci9qkbb86rs9kkz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient"; - sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/restclient"; - license = lib.licenses.free; - }; - }) {}; - restclient-helm = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "restclient-helm"; - ename = "restclient-helm"; - version = "20170314.854"; - src = fetchFromGitHub { - owner = "pashky"; - repo = "restclient.el"; - rev = "af7420085dd67ed08d199a2402e8ff3e996c3029"; - sha256 = "04c1b0xvhrsxb4r98qvvasn1nbkl4ddinip2rplilacywjy26rsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59303304fe1f724596245556dd90f6afffba425d/recipes/restclient-helm"; - sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j"; - name = "recipe"; - }; - packageRequires = [ helm restclient ]; - meta = { - homepage = "https://melpa.org/#/restclient-helm"; - license = lib.licenses.free; - }; - }) {}; - restclient-test = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "restclient-test"; - ename = "restclient-test"; - version = "20180106.1246"; - src = fetchFromGitHub { - owner = "simenheg"; - repo = "restclient-test.el"; - rev = "4518561bc9661fedacb6fb352e9677207f45c418"; - sha256 = "0hbilpn77w0vykga9p4dkwaygipyna7mwn24y2kwfcahcr39pqjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82e3078fc1f96d276fd288c3d7b91df5df4717a6/recipes/restclient-test"; - sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39"; - name = "recipe"; - }; - packageRequires = [ emacs restclient ]; - meta = { - homepage = "https://melpa.org/#/restclient-test"; - license = lib.licenses.free; - }; - }) {}; - reveal-in-osx-finder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reveal-in-osx-finder"; - ename = "reveal-in-osx-finder"; - version = "20150802.957"; - src = fetchFromGitHub { - owner = "kaz-yos"; - repo = "reveal-in-osx-finder"; - rev = "5710e5936e47139a610ec9a06899f72e77ddc7bc"; - sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bf40285279b761b0efd6bc8542ae9aad4b329e1/recipes/reveal-in-osx-finder"; - sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/reveal-in-osx-finder"; - license = lib.licenses.free; - }; - }) {}; - reverse-im = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reverse-im"; - ename = "reverse-im"; - version = "20190428.1011"; - src = fetchFromGitHub { - owner = "a13"; - repo = "reverse-im.el"; - rev = "e30815653aa81eac097f27be14886806d9df4ea4"; - sha256 = "0i34q5bj5y0xnvc8d82w5vpfscl1nvqv584sd9kqpi81gy3qphrw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f282ebbed8ad01b63b0e708ab273db51bf65fdbb/recipes/reverse-im"; - sha256 = "0c0dxxpa2s6gvhi14zfb0rnb4i7jaqw627a7ngm5fzyh0r9himcf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reverse-im"; - license = lib.licenses.free; - }; - }) {}; - reverse-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reverse-theme"; - ename = "reverse-theme"; - version = "20141204.1745"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-reverse-theme"; - rev = "13d0821a4ec5ece7e6a81f50d2a1a7e7ad21394d"; - sha256 = "1sfl0rm4sxjkcjki0hmkkcicr24qr2q7gmficg9bi5q6vlrid1pn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/reverse-theme"; - sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/reverse-theme"; - license = lib.licenses.free; - }; - }) {}; - review-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "review-mode"; - ename = "review-mode"; - version = "20181213.1915"; - src = fetchFromGitHub { - owner = "kmuto"; - repo = "review-el"; - rev = "978be7337628c746f2cb237094c65187a11d7682"; - sha256 = "07zli33hfdz0h4b491dl664gv7naky8db3kajxb3ncbizx99dz9m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2f9e2667389577d0703874ca69ebe4800ae3e01/recipes/review-mode"; - sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/review-mode"; - license = lib.licenses.free; - }; - }) {}; - reykjavik-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reykjavik-theme"; - ename = "reykjavik-theme"; - version = "20180823.844"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "reykjavik-theme"; - rev = "2cd0043ae6d046f812a95bb26398ea23141beccc"; - sha256 = "0rk0fw5b1lz7if779h3bngc86iix8v9k8bz3zw8icwfwmjsgg1fh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10bf153e2b84050304ba2532f5eb41c7a4e7632f/recipes/reykjavik-theme"; - sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reykjavik-theme"; - license = lib.licenses.free; - }; - }) {}; - rfc-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "rfc-mode"; - ename = "rfc-mode"; - version = "20190525.1210"; - src = fetchFromGitHub { - owner = "galdor"; - repo = "rfc-mode"; - rev = "5cdf7172e307c0e23bb5342c61263d4439292ede"; - sha256 = "091yqk257z19rs9mcy6b52ll87s85s7fbsd235kzqmacfcqyjsmi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a61d769cf7c61619a594337fe8a12ccc6a6fd6e/recipes/rfc-mode"; - sha256 = "0z7krcfdyr8hblz8dc7apqlpn6sj2zwrjw4wh86js8vf7fiv8svy"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/rfc-mode"; - license = lib.licenses.free; - }; - }) {}; - rg = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , wgrep }: - melpaBuild { - pname = "rg"; - ename = "rg"; - version = "20190403.833"; - src = fetchFromGitHub { - owner = "dajva"; - repo = "rg.el"; - rev = "acd8be6a1ee129fe8b3802bfcffe9b56bfa72320"; - sha256 = "0av0dipf6jjqhixzv7gnf1w8rlncgpwcxr3jn9lidx9acr8yprwa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ce1f721867383a841957370946f283f996fa76f/recipes/rg"; - sha256 = "0i78qvqdznh1z3b0mnzihv07j8b9r86dc1lsa1qlzacv6a2i9sbm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s wgrep ]; - meta = { - homepage = "https://melpa.org/#/rg"; - license = lib.licenses.free; - }; - }) {}; - rhtml-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rhtml-mode"; - ename = "rhtml-mode"; - version = "20130422.611"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "rhtml"; - rev = "a6d71b38a3db867ccf82999c99805db1a3a33c33"; - sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9e14e9d8df9c2ce13e290a5f3d3bf9b247037f4/recipes/rhtml-mode"; - sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rhtml-mode"; - license = lib.licenses.free; - }; - }) {}; - rib-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rib-mode"; - ename = "rib-mode"; - version = "20170726.748"; - src = fetchFromGitHub { - owner = "blezek"; - repo = "rib-mode"; - rev = "97470158784c3c212e22e2c20b8471ee65ba59af"; - sha256 = "0hln0hympmxmsci82ivc2rw289j1bmgdxns96m1ng1bl668bwag7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c38c18f3eb75d559752fcd9956464fef890be728/recipes/rib-mode"; - sha256 = "0qgbzrwbbgg4mzjb7yw85qs83b6hpldazip1cigywr46w7f81587"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rib-mode"; - license = lib.licenses.free; - }; - }) {}; - rich-minority = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rich-minority"; - ename = "rich-minority"; - version = "20190419.436"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "rich-minority"; - rev = "a03e693f6f9232cf75363aaaf1cb041f21675c19"; - sha256 = "0nr5lazllp5qphllnmwrwiywkc5zd3a51ciwb8k0h8zw5axhp0v7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority"; - sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rich-minority"; - license = lib.licenses.free; - }; - }) {}; - right-click-context = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ordinal - , popup }: - melpaBuild { - pname = "right-click-context"; - ename = "right-click-context"; - version = "20190528.1132"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "right-click-context"; - rev = "4b1a2cd2b3eaea2393d3696a36da8f42e386c23d"; - sha256 = "1y0sa1k8pc8g6mzsqv3n34v2ziyvlr6l74409kh8673lp5r7cx1f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/right-click-context"; - sha256 = "189nkxkc7lr2fm5qgmylmz6xv6mpphslj4fgpmr8ynnx9z3nxms2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ordinal popup ]; - meta = { - homepage = "https://melpa.org/#/right-click-context"; - license = lib.licenses.free; - }; - }) {}; - rigid-tabs = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rigid-tabs"; - ename = "rigid-tabs"; - version = "20170903.859"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "rigid-tabs.el"; - rev = "d48ba58acbe8934700cd23db2acb574b09306238"; - sha256 = "03dmyn5lnw0mj4ymgyxz6gksl2byw31plxn61qcggkj6gk8g500d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/rigid-tabs"; - sha256 = "0623hhhykrxq702871s5p4vddkvx7jpj6hg5q0c9jkbvflz9n9y8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rigid-tabs"; - license = lib.licenses.free; - }; - }) {}; - rimero-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rimero-theme"; - ename = "rimero-theme"; - version = "20180901.648"; - src = fetchFromGitHub { - owner = "yveszoundi"; - repo = "emacs-rimero-theme"; - rev = "a2e706c2b34f749019979a133f08a2d94a1104b3"; - sha256 = "1kcvvaizggzi7s3dlh611bkirdf6y89kzddc273drdks705s01wh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6d07b0c021001195e6e0951c890566a5a784ce1/recipes/rimero-theme"; - sha256 = "0jbknrp9hc8s956cy2gqffxnx0fgnhmjqp2i4vyp0ywh45wrls5r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rimero-theme"; - license = lib.licenses.free; - }; - }) {}; - rinari = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , jump - , lib - , melpaBuild - , ruby-compilation - , ruby-mode ? null }: - melpaBuild { - pname = "rinari"; - ename = "rinari"; - version = "20150708.2340"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "rinari"; - rev = "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4"; - sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b243a909faa71e14ee7ca4f307df8e8136e5d7c/recipes/rinari"; - sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; - name = "recipe"; - }; - packageRequires = [ inf-ruby jump ruby-compilation ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/rinari"; - license = lib.licenses.free; - }; - }) {}; - rings = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rings"; - ename = "rings"; - version = "20160531.1327"; - src = fetchFromGitHub { - owner = "konr"; - repo = "rings"; - rev = "3590b222eb80652cbd27866f066bd3571d86edfc"; - sha256 = "01mfiyq4cr2qdmvaxid8a094p20w97n2nsiy9vyng77vcmv36sd5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/113118947e33ab0c8004dbe9b188eba2ea282356/recipes/rings"; - sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rings"; - license = lib.licenses.free; - }; - }) {}; - ripgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ripgrep"; - ename = "ripgrep"; - version = "20190215.41"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "ripgrep.el"; - rev = "40e871dcc4519a70981e9f28acea304692a60978"; - sha256 = "0snn12iibz5frsx6yk6c31hb8knvsd568ghw9jjka5vxdjzap7p9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep"; - sha256 = "1j9c3mhcyhs4xf44z6fnlvmb81pps25bp43gdqvp0954i068mgah"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ripgrep"; - license = lib.licenses.free; - }; - }) {}; - riscv-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "riscv-mode"; - ename = "riscv-mode"; - version = "20170804.821"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "riscv-mode"; - rev = "99febf97d1fa9441e8dada94fe30c2aa439c9749"; - sha256 = "119p926ypz525xdh82m2d1saky1qh5va224fxyqisfbwfrc17arh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0853b4b678be7d1906a2f7946bfa1072590faf72/recipes/riscv-mode"; - sha256 = "0496b7xwshmk3gv6s5hggbm9qd60a05racj3xcsxwqzak359lk2b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/riscv-mode"; - license = lib.licenses.free; - }; - }) {}; - rjsx-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "rjsx-mode"; - ename = "rjsx-mode"; - version = "20190311.1817"; - src = fetchFromGitHub { - owner = "felipeochoa"; - repo = "rjsx-mode"; - rev = "03dd8d1683501e81b58674d64c3032b7b718402c"; - sha256 = "1kc44g9f38klpjklmz9n50a28nqv7prz6ck6ghdr6bnj1s98pb8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b83be7efdef2457e1320fe3dec46484fbd20263c/recipes/rjsx-mode"; - sha256 = "0w3ij8k8058pfw443chm1kn30ia0f5rfbg03w9ddw86xb3wa2q0b"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/rjsx-mode"; - license = lib.licenses.free; - }; - }) {}; - rmsbolt = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rmsbolt"; - ename = "rmsbolt"; - version = "20190507.2309"; - src = fetchFromGitLab { - owner = "jgkamat"; - repo = "rmsbolt"; - rev = "fcefc0509dd0a4ec2e02020c83e1c4a1101ef903"; - sha256 = "1zbpp4ilf9kvjnxc0cgs90l02lmpp6pa905cahi441l2pn71kbld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/798e7978f3ee32b3667956da8dc2dc7f005b6996/recipes/rmsbolt"; - sha256 = "0mgzc4q9mmnqjafp2i9qp0plc7qnh4kmkgjs1c7frk9x07navscf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rmsbolt"; - license = lib.licenses.free; - }; - }) {}; - robe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "robe"; - ename = "robe"; - version = "20190520.1758"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "robe"; - rev = "8190cb7c7beb8385dd3abf6ea357f33d8981ae8a"; - sha256 = "1lqckmfxm2csh0as22bwf4rvbn5rwqry18xx9m5nfhfl57360q75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe"; - sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; - name = "recipe"; - }; - packageRequires = [ emacs inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/robe"; - license = lib.licenses.free; - }; - }) {}; - robots-txt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "robots-txt-mode"; - ename = "robots-txt-mode"; - version = "20180919.841"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "robots-txt-mode"; - rev = "f8fc7ee50a3d5d7a2838772ed298fb69b9051c5c"; - sha256 = "11qyzsfp2kmi6sd24m30y537mic9xg7y29npninrjihr6k9rw3a2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/robots-txt-mode"; - sha256 = "00hxz4mygcxg7d8m2i4cm0bl82v3hw8wb4m8vv7g7fqkjp32c9qc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/robots-txt-mode"; - license = lib.licenses.free; - }; - }) {}; - roguel-ike = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "roguel-ike"; - ename = "roguel-ike"; - version = "20160119.1902"; - src = fetchFromGitHub { - owner = "stevenremot"; - repo = "roguel-ike"; - rev = "706dcb0687e8016d7d776f9d9e5ace9fdbbca43c"; - sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2db1979e039e466268ca7c264988792d3046e19a/recipes/roguel-ike"; - sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/roguel-ike"; - license = lib.licenses.free; - }; - }) {}; - rope-read-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rope-read-mode"; - ename = "rope-read-mode"; - version = "20190527.327"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "rope-read-mode"; - rev = "ba7cb7e046a2353ae43c2c69fbe7dd2e703e0a20"; - sha256 = "0vf6w4g1mcv4wf53zfmgcaaz0im09pa2pl8jmkf7dj34djlk4iw9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14a674559aa485e92357a8b941304ae8167b9c3e/recipes/rope-read-mode"; - sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rope-read-mode"; - license = lib.licenses.free; - }; - }) {}; - ros = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ros"; - ename = "ros"; - version = "20190602.809"; - src = fetchFromGitHub { - owner = "DerBeutlin"; - repo = "ros.el"; - rev = "b5deea437bf8999907e381d3b16f8b0ec0185045"; - sha256 = "0clvj1n9ib50spfbz6ph59kznz665vwv6h1dniisfp2fdw3l8i3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7df44ae0ba89a2c4089a39b212784a6a359f1521/recipes/ros"; - sha256 = "1frlg1zn9ip2s3ija20rkmf880smk01jz6jclqkygx6kd4fsbi9m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ros"; - license = lib.licenses.free; - }; - }) {}; - rotate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rotate"; - ename = "rotate"; - version = "20160909.136"; - src = fetchFromGitHub { - owner = "daichirata"; - repo = "emacs-rotate"; - rev = "eb177ec2aba1a358aa757720a9a4c8d8ce4856e8"; - sha256 = "1v8m08hrj3g1vcyhjmkh6wsiczrvjq0v90nqb5y3hy3l40pkag5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d92e66cad586d4dc6b1de12d1b41b818b5232c2/recipes/rotate"; - sha256 = "11a0svvfq29cb4630jq0hz19xk9jfhfjnssm7vg0dnlzpxqi3vif"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rotate"; - license = lib.licenses.free; - }; - }) {}; - roy-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "roy-mode"; - ename = "roy-mode"; - version = "20121208.358"; - src = fetchFromGitHub { - owner = "folone"; - repo = "roy-mode"; - rev = "e1a4fb5ec0f46e82f569865ca47042ba5934e425"; - sha256 = "1m19hjgh9s21qknb1278pf6gw77a747siy04qdznj4519j12wjjg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/roy-mode"; - sha256 = "1r49c1v0xjkrpxmq0k2l2nrx95n06b7hbpmr1n7nkil2bxdq275i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/roy-mode"; - license = lib.licenses.free; - }; - }) {}; - rpm-spec-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rpm-spec-mode"; - ename = "rpm-spec-mode"; - version = "20160710.436"; - src = fetchFromGitHub { - owner = "stigbjorlykke"; - repo = "rpm-spec-mode"; - rev = "c1c38050c48ea330c7cea632b8785d66daeefb2b"; - sha256 = "0427kcvf2ljhzwxskn3jzk0ncrl3f9zcz2sm83d9pmhh5jax2gch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb7e188fffda3d4e42690511775e5e32a11e1b34/recipes/rpm-spec-mode"; - sha256 = "1ygk0pdhq1hvgzd173h79lxb04b9lmvq4hi70qf9244bqbm0m182"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rpm-spec-mode"; - license = lib.licenses.free; - }; - }) {}; - rpn-calc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "rpn-calc"; - ename = "rpn-calc"; - version = "20181121.354"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "rpn-calc"; - rev = "27279f89c80eb3f28ff9f981eff06502056943e2"; - sha256 = "0klzhscdvzwpcrfkq2v28in5fv01zqabgxdrziyhj666sly1scjq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47d5b3c931cdbc2351e01d15e2b98c78081c9506/recipes/rpn-calc"; - sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/rpn-calc"; - license = lib.licenses.free; - }; - }) {}; - rsense = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rsense"; - ename = "rsense"; - version = "20100510.2105"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "rsense"; - rev = "fbcfc00402742b0d8744a9bfd1bcdd869f4fb923"; - sha256 = "178rnmhj3987dscsjkg5qcsw92s3b5rv51s0j7qcavx254h7xdf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2149ce3baef9ac01d5b2e8b1a933a3e1206015f/recipes/rsense"; - sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rsense"; - license = lib.licenses.free; - }; - }) {}; - rspec-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "rspec-mode"; - ename = "rspec-mode"; - version = "20190326.722"; - src = fetchFromGitHub { - owner = "pezra"; - repo = "rspec-mode"; - rev = "3285c225d0ed99b2dd91ae9e65b2c961082b03e5"; - sha256 = "1s5yj4n8qd3ypm505573s4gs63s5kmir4wphknn7hwsa1qxxzp55"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd83e61b10da20198de990aa081b47d3b0b44d43/recipes/rspec-mode"; - sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; - name = "recipe"; - }; - packageRequires = [ cl-lib ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/rspec-mode"; - license = lib.licenses.free; - }; - }) {}; - rtags = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rtags"; - ename = "rtags"; - version = "20190410.915"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "de17d52cb18ca2228d04a9dc8b1c0ed04009d9e7"; - sha256 = "0z42fm77135vsjszmvr0f3fq0gnvb17cnwafaz8cyqbz6ya0770c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; - sha256 = "0s5m4zjvnc1k4gkkizbs4ysvzzbfh45717pksg9bnyzwx5lcw5yd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rtags"; - license = lib.licenses.free; - }; - }) {}; - rtm = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rtm"; - ename = "rtm"; - version = "20180329.808"; - src = fetchFromGitHub { - owner = "pmiddend"; - repo = "emacs-rtm"; - rev = "3e3d09387cb84801343ecca8fb02e82f213e7bbe"; - sha256 = "0cc07lhh27i1ra4alrwb6w322ddi6hw0498nkzf388arhn10h3wv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rtm"; - sha256 = "1bwbaps76pawz73fs7nzkvbii9d57zmfdccpm18dwn6phaqxbhyc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rtm"; - license = lib.licenses.free; - }; - }) {}; - rubik = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubik"; - ename = "rubik"; - version = "20180222.1214"; - src = fetchFromGitHub { - owner = "Kurvivor19"; - repo = "rubik-mode"; - rev = "c8dab1726463dbc9042a0b00186e4a8df02eb868"; - sha256 = "13razzmk70h5sd69ms0a3ljr285zcad0wnrqkfxbgi5rnppqlkh1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00946ed21b0f05b753c792863f6bcc99c26c32a3/recipes/rubik"; - sha256 = "07bbh5vjw3jdxf06lxqm45y8ijcai391mf97xw5c29z33vhqs267"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/rubik"; - license = lib.licenses.free; - }; - }) {}; - rubocop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubocop"; - ename = "rubocop"; - version = "20190326.724"; - src = fetchFromGitHub { - owner = "rubocop-hq"; - repo = "rubocop-emacs"; - rev = "03bf15558a6eb65e4f74000cab29412efd46660e"; - sha256 = "0bl1l2qbpdknn93wr95a49gdnpl3pwpjj3rka3s44hvihny9p8q0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/rubocop"; - sha256 = "07ma4fv015wzpj5j4rdb0ckwwmhkxs3k5vy33qxgwghqmn6xby6x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rubocop"; - license = lib.licenses.free; - }; - }) {}; - rubocopfmt = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubocopfmt"; - ename = "rubocopfmt"; - version = "20181009.1003"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "rubocopfmt.el"; - rev = "fc96145719a65b2551339d087ddd95b72e14646f"; - sha256 = "12sfzvb5lf20d4kqa1fzhz8s48lgr8w0x7qimjcy5c75yjb123wl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac01edffceea771d8fe41326e28dd9881f1661ab/recipes/rubocopfmt"; - sha256 = "06ficv1r3axzi7q659pk1m3gbpf44nd2ir2ikmi8mr8rq44sqps0"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rubocopfmt"; - license = lib.licenses.free; - }; - }) {}; - ruby-additional = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "ruby-additional"; - ename = "ruby-additional"; - version = "20181221.359"; - src = fetchFromGitHub { - owner = "ruby"; - repo = "elisp"; - rev = "75bccbb384e6907df47ab69acdccb4536806c890"; - sha256 = "1ic92ga7sy71qknn22xjbxrhpbq3sgb1ngfm2d0gjdmr0x6q8xkc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30fa1f6cb1128fc0c0e751330714f228e5616786/recipes/ruby-additional"; - sha256 = "09g4zz6pfzhxlhac2d041bys7qis4w4shpdn4bpskm1rnmvm10s7"; - name = "recipe"; - }; - packageRequires = [ emacs ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/ruby-additional"; - license = lib.licenses.free; - }; - }) {}; - ruby-compilation = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-compilation"; - ename = "ruby-compilation"; - version = "20150708.2340"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "rinari"; - rev = "be07b0f42aefa24c5d36c441d1f3f72e64fffaa4"; - sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-compilation"; - sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; - name = "recipe"; - }; - packageRequires = [ inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/ruby-compilation"; - license = lib.licenses.free; - }; - }) {}; - ruby-electric = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-electric"; - ename = "ruby-electric"; - version = "20170810.430"; - src = fetchFromGitHub { - owner = "knu"; - repo = "ruby-electric.el"; - rev = "3553448a780a1ea5c3b0e9becd820d4762876593"; - sha256 = "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; - sha256 = "02xskivi917l8xyhrij084dmzwjq3knjcn65l2iwz34s767fbwl2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-electric"; - license = lib.licenses.free; - }; - }) {}; - ruby-end = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-end"; - ename = "ruby-end"; - version = "20141215.423"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ruby-end.el"; - rev = "648b81af136a581bcef387744d93c011d9cdf54b"; - sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-end"; - sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-end"; - license = lib.licenses.free; - }; - }) {}; - ruby-extra-highlight = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-extra-highlight"; - ename = "ruby-extra-highlight"; - version = "20171106.1133"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "ruby-extra-highlight"; - rev = "83942d18eae361998d24c1c523b308eea821f048"; - sha256 = "18mq0ap7f0b22cdp2wdj0y2fqsahm2ngf7fvdy0mkkfs3818awlp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73488b0aea4eb470a1f235fece0753797bfd7e35/recipes/ruby-extra-highlight"; - sha256 = "0dybf39yv0yzy8bsz9k5s64033id6hq4v268m11la4bp5fbv5r37"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-extra-highlight"; - license = lib.licenses.free; - }; - }) {}; - ruby-factory = callPackage ({ fetchFromGitHub - , fetchurl - , inflections - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-factory"; - ename = "ruby-factory"; - version = "20160101.2321"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "ruby-factory-mode"; - rev = "2bb7ccc2fccb5257376a989aa395bc7b9eb1d55d"; - sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce422ccc34eb325ce432284e44af48607251da2/recipes/ruby-factory"; - sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37"; - name = "recipe"; - }; - packageRequires = [ inflections ]; - meta = { - homepage = "https://melpa.org/#/ruby-factory"; - license = lib.licenses.free; - }; - }) {}; - ruby-hash-syntax = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-hash-syntax"; - ename = "ruby-hash-syntax"; - version = "20190109.1427"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ruby-hash-syntax"; - rev = "577ab383c142e3a0697ce73480158a8b489038da"; - sha256 = "06hm4pl3mzlyx4d3v94rm2w33q9wnwpdl7qas3fnks691d9apg7x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7d21a43a4bf267507bdc746ec9d0fd82049c0af/recipes/ruby-hash-syntax"; - sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-hash-syntax"; - license = lib.licenses.free; - }; - }) {}; - ruby-interpolation = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-interpolation"; - ename = "ruby-interpolation"; - version = "20131112.852"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "ruby-interpolation.el"; - rev = "1978e337601222cedf00e117bf4b5cac15d1f203"; - sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-interpolation"; - sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-interpolation"; - license = lib.licenses.free; - }; - }) {}; - ruby-refactor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "ruby-refactor"; - ename = "ruby-refactor"; - version = "20160214.850"; - src = fetchFromGitHub { - owner = "ajvargo"; - repo = "ruby-refactor"; - rev = "e6b7125878a08518bffec6942df0c606f748e9ee"; - sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d223ef5b9e51265c510f1cf7888b621e47bfdcf/recipes/ruby-refactor"; - sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby"; - name = "recipe"; - }; - packageRequires = [ ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/ruby-refactor"; - license = lib.licenses.free; - }; - }) {}; - ruby-test-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcre2el - , ruby-mode ? null }: - melpaBuild { - pname = "ruby-test-mode"; - ename = "ruby-test-mode"; - version = "20190412.209"; - src = fetchFromGitHub { - owner = "ruby-test-mode"; - repo = "ruby-test-mode"; - rev = "a7e2d912756269d7d88896a9fe0306475cd2b085"; - sha256 = "0zlpvqpi2rq5ggrifmbp0hpjfaz8aplw0lkfy2d37rla8vsl9m0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f781a76a519afc0222cdf7255822a23e33745deb/recipes/ruby-test-mode"; - sha256 = "08x9pskxz1hvvqablx5mdp1g54n28kpmd10qwrasq2zjbdjghj48"; - name = "recipe"; - }; - packageRequires = [ pcre2el ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/ruby-test-mode"; - license = lib.licenses.free; - }; - }) {}; - ruby-tools = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-tools"; - ename = "ruby-tools"; - version = "20151209.815"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ruby-tools.el"; - rev = "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18"; - sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-tools"; - sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-tools"; - license = lib.licenses.free; - }; - }) {}; - rufo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rufo"; - ename = "rufo"; - version = "20170718.716"; - src = fetchFromGitHub { - owner = "danielma"; - repo = "rufo.el"; - rev = "85a6d80fb05fef396a8029b8f944c92a53faf8fe"; - sha256 = "11klircrdc9z9jfksd6rjgwbb775mziss67mw74673b8iva8n1y7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/123b89e06a44ef45150ca7243afc41302dfb6c6e/recipes/rufo"; - sha256 = "0pxsifcxic3q54rqj0jbj20hq7f2s4icl57lligf9g0w23qzj239"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rufo"; - license = lib.licenses.free; - }; - }) {}; - rum-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rum-mode"; - ename = "rum-mode"; - version = "20180126.1622"; - src = fetchFromGitHub { - owner = "rumlang"; - repo = "rum-mode"; - rev = "161471e6476d232d479f9767535918920811d7bf"; - sha256 = "12fh1fmfnfpkgsya5asxqywimdb5361cvw1cqfmhrm1z5pyjgbd7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c9f8ce2dee376f1f34e89e9642c472a148fca77/recipes/rum-mode"; - sha256 = "1838w8rk5pgp1hn7a0m83mfw9jin4qv5mkyl68hl3gj7g9lhn7sd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rum-mode"; - license = lib.licenses.free; - }; - }) {}; - run-stuff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "run-stuff"; - ename = "run-stuff"; - version = "20180208.2348"; - src = fetchFromGitHub { - owner = "ideasman42"; - repo = "emacs-run-stuff"; - rev = "ed42a7bc9a197ccf1ca87f9937bf98f0a9ed3f92"; - sha256 = "1w49v868n3723q6887y4bc5q8spd7xync5d581vvxdpi75qgvr0z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d6e9ce2acd859b887f7e161f4b9969be1a0b8ef/recipes/run-stuff"; - sha256 = "0zx96m6cval5g4p0lhy9kpyycp2jygaq3y2njhkpij9gl4nb2ll2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/run-stuff"; - license = lib.licenses.free; - }; - }) {}; - runner = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "runner"; - ename = "runner"; - version = "20160524.43"; - src = fetchFromGitHub { - owner = "thamer"; - repo = "runner"; - rev = "e7394d7c9e886788a656a7085b4cf963d6fc318f"; - sha256 = "0gpfszp6bqr3vdr32vr6l0nq9hnic31vnins68hc5hknli91bpsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a4e051ab45b8036b91aa0c50bd3f93cd85e9d0/recipes/runner"; - sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/runner"; - license = lib.licenses.free; - }; - }) {}; - runtests = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "runtests"; - ename = "runtests"; - version = "20150807.131"; - src = fetchFromGitHub { - owner = "sunesimonsen"; - repo = "emacs-runtests"; - rev = "ed90249f24cc48290018df48b9b9b7172440be3e"; - sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95c49160919d310256501d7c71102f8367aae5aa/recipes/runtests"; - sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/runtests"; - license = lib.licenses.free; - }; - }) {}; - russian-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "russian-holidays"; - ename = "russian-holidays"; - version = "20170109.1340"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "russian-holidays"; - rev = "b285a30f29d85c48e3ea4eb93972d34a090c167b"; - sha256 = "1mz842gvrscklg2w2r2q2wbj92qr31h895k700j3axqx6k30ni0h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4830900e371e7036225ea434c52204f4d2481a7/recipes/russian-holidays"; - sha256 = "0lawjwz296grbvb4a1mm1j754q7mpcanyfln1gqxr339kqx2aqd8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/russian-holidays"; - license = lib.licenses.free; - }; - }) {}; - rust-auto-use = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rust-auto-use"; - ename = "rust-auto-use"; - version = "20181124.2237"; - src = fetchFromGitHub { - owner = "vmalloc"; - repo = "rust-auto-use.el"; - rev = "d924505ecd954625dcb2d56dfba97111dc6a17fa"; - sha256 = "1yw9l13dgkfsdv4kgpbvzx12g8bqycclgq2gk4b1r29mxy72wnpq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9584d883934e36400ec1924755df34149ad2f9f/recipes/rust-auto-use"; - sha256 = "0jdg8xgxry0h9nbb9m446gpw54rymw3152n84lvsg5bv51861114"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rust-auto-use"; - license = lib.licenses.free; - }; - }) {}; - rust-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rust-mode"; - ename = "rust-mode"; - version = "20190517.1337"; - src = fetchFromGitHub { - owner = "rust-lang"; - repo = "rust-mode"; - rev = "c62185ae1c6edf0335261f169241eb8ee9713ad5"; - sha256 = "0jq8hb8j484vqnd743d2azw4zg1gn2j0l6h60bd0vcqd2hgag1nw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode"; - sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rust-mode"; - license = lib.licenses.free; - }; - }) {}; - rust-playground = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rust-playground"; - ename = "rust-playground"; - version = "20180807.458"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "rust-playground"; - rev = "092c8b11d62dea23953a004744833092bac85fe1"; - sha256 = "0n2c1pjbvy46ic0k84jd3ffwwb5hibjqc1wv7knzkldi5agigfsh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rust-playground"; - sha256 = "0ml0zr9vz2vjd9wr0v706w4v4qqfzpa56rdzfak2kb5llx53j89v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rust-playground"; - license = lib.licenses.free; - }; - }) {}; - rustic = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , let-alist - , lib - , markdown-mode - , melpaBuild - , projectile - , s - , seq - , spinner - , xterm-color }: - melpaBuild { - pname = "rustic"; - ename = "rustic"; - version = "20190413.906"; - src = fetchFromGitHub { - owner = "brotzeit"; - repo = "rustic"; - rev = "4ab8f78167c81b040ca87caac5290ac69df8a2ff"; - sha256 = "0rm62n5ad3caanxglmk2d2glgq2470c1yd4h7yzci3ay74p7szz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/716c14a2ed8f5817c09c1ff530a4980c17b44bb3/recipes/rustic"; - sha256 = "13bwrdqmm6xb34k8r72c0r3b9aym5dwsalp63bkfh9k9kq9hic0n"; - name = "recipe"; - }; - packageRequires = [ - dash - emacs - f - ht - let-alist - markdown-mode - projectile - s - seq - spinner - xterm-color - ]; - meta = { - homepage = "https://melpa.org/#/rustic"; - license = lib.licenses.free; - }; - }) {}; - rvm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rvm"; - ename = "rvm"; - version = "20150402.742"; - src = fetchFromGitHub { - owner = "senny"; - repo = "rvm.el"; - rev = "8e45a9bad8e317ff195f384dab14d3402497dc79"; - sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/rvm"; - sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rvm"; - license = lib.licenses.free; - }; - }) {}; - ryo-modal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ryo-modal"; - ename = "ryo-modal"; - version = "20180331.118"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "ryo-modal"; - rev = "42f874467dfdce59b511f883496ce2624b133dd7"; - sha256 = "0k9nmi014vb9c8rymy3w8xbnj1q85xlslpblacz78iqn1kr6wy1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ryo-modal"; - sha256 = "06pm6grsdcldi1khbjfjp7lpi6f6x3pa5ikspp0xdwijnmi0xrrf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ryo-modal"; - license = lib.licenses.free; - }; - }) {}; - s = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "s"; - ename = "s"; - version = "20180406.108"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "s.el"; - rev = "03410e6a7a2b11e47e1fea3b7d9899c7df26435e"; - sha256 = "074ny8y68fhnknkjxvrijrk534xzdiwip8wkifxfbwv3va315x83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/s"; - sha256 = "0dars9212z0yv97mj4615h23vd22vy8b6cw2n433z9jhif3aybqa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/s"; - license = lib.licenses.free; - }; - }) {}; - s-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , noflet - , s }: - melpaBuild { - pname = "s-buffer"; - ename = "s-buffer"; - version = "20130605.1424"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-s-buffer"; - rev = "f95d234282377f00a2c3a9846681080cb95bb1df"; - sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1bf91527219e7afc8e113134a958f3adb862a5a/recipes/s-buffer"; - sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m"; - name = "recipe"; - }; - packageRequires = [ noflet s ]; - meta = { - homepage = "https://melpa.org/#/s-buffer"; - license = lib.licenses.free; - }; - }) {}; - s12cpuv2-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "s12cpuv2-mode"; - ename = "s12cpuv2-mode"; - version = "20171013.1351"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "s12cpuv2-mode"; - rev = "b17d4cf848dec1e20e66458e5c7ff77a2c051a8c"; - sha256 = "1fc132gv48xwrxiw139kc9f5wkhjgsgqdfm6b7v97xj5025zg6hr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c1b9bbdc4deb17636270c7f2be0b43b647c695a/recipes/s12cpuv2-mode"; - sha256 = "0mrcf5s7vmkyrsdka7qd2vfcmdy8hzf6a6g14la88rxrv4chv29s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/s12cpuv2-mode"; - license = lib.licenses.free; - }; - }) {}; - s3ed = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "s3ed"; - ename = "s3ed"; - version = "20180204.549"; - src = fetchFromGitHub { - owner = "mattusifer"; - repo = "s3ed"; - rev = "55b03717caa672b7aebf528b686455fe1d39888c"; - sha256 = "1qh9hy220pzbzandpcxc2p8knl674gyym0qmqi63scx7s8hn8nmh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/32ba78167bd6908b49f340f6da48643ac38f25f2/recipes/s3ed"; - sha256 = "08scv3aqnidz28rad5npz7b4pz9dx05rs72qkp3ybkk2vhqf2qwa"; - name = "recipe"; - }; - packageRequires = [ dash emacs seq ]; - meta = { - homepage = "https://melpa.org/#/s3ed"; - license = lib.licenses.free; - }; - }) {}; - sackspace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sackspace"; - ename = "sackspace"; - version = "20130719.256"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "sackspace.el"; - rev = "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708"; - sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/073e92e05c4bd6197a5ad24f470b21a97f5bb7b8/recipes/sackspace"; - sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sackspace"; - license = lib.licenses.free; - }; - }) {}; - sage-shell-mode = callPackage ({ cl-lib ? null - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "sage-shell-mode"; - ename = "sage-shell-mode"; - version = "20180215.35"; - src = fetchFromGitHub { - owner = "sagemath"; - repo = "sage-shell-mode"; - rev = "9f07ff835e8d19afe571dbe414afb690c7b1cb5c"; - sha256 = "07al41ir1ab0z2m2acvx63scr33bfp3asshjl05shs4j9d4bkmdp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb875c50c2f97919fd0027869c5d9970e1eaf373/recipes/sage-shell-mode"; - sha256 = "0ivqiigmp9cf88j4xapzanjpbx692r70wb4i25mnppqsi3jlwxdv"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/sage-shell-mode"; - license = lib.licenses.free; - }; - }) {}; - sailfish-scratchbox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sailfish-scratchbox"; - ename = "sailfish-scratchbox"; - version = "20171202.532"; - src = fetchFromGitHub { - owner = "vityafx"; - repo = "sailfish-scratchbox.el"; - rev = "bb5ed0f0b0cd72f2eb1af065b7587ec81866b089"; - sha256 = "1b53mdqgcmjay3i3fnxnycv8crqi20yvyv57ybgs2ikfl3v282h2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e76261e7dffcb607839440843b085709c2c90b26/recipes/sailfish-scratchbox"; - sha256 = "1s0glsi4fm6is7fv9vy1h14frq8a4bgahkc8w08vqfnpiin2r567"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sailfish-scratchbox"; - license = lib.licenses.free; - }; - }) {}; - salesforce-utils = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "salesforce-utils"; - ename = "salesforce-utils"; - version = "20160813.1854"; - src = fetchFromGitHub { - owner = "grimnebulin"; - repo = "emacs-salesforce"; - rev = "73328baf0fb94ac0d0de645a8f6d42e5ae27f773"; - sha256 = "1zsznz9pn9dj672jii6wcvs47yqyxv3dsm5qy1dax1d6gvvbf4zq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/salesforce-utils"; - sha256 = "0b70w92zghid6n0ba28dh5r3pckr8jsd1743qyi8vj04ih1dns5i"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/salesforce-utils"; - license = lib.licenses.free; - }; - }) {}; - salt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-jinja2 - , mmm-mode - , yaml-mode }: - melpaBuild { - pname = "salt-mode"; - ename = "salt-mode"; - version = "20181225.357"; - src = fetchFromGitHub { - owner = "glynnforrest"; - repo = "salt-mode"; - rev = "adecd8d1016722a916d190e8738435668d664cca"; - sha256 = "0ncf3sr25vcjrcc9mn59mg0kkv59y6mlir2a7an3drzqlyfr44i0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9dcf1a93a06fc42581521c88cfd988b03bedc000/recipes/salt-mode"; - sha256 = "1n7i9d6qpjsdcgbzmbf63y4c7ggxh5wsim8fd0casnrq9bl7ssym"; - name = "recipe"; - }; - packageRequires = [ emacs mmm-jinja2 mmm-mode yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/salt-mode"; - license = lib.licenses.free; - }; - }) {}; - sane-term = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sane-term"; - ename = "sane-term"; - version = "20181129.1701"; - src = fetchFromGitHub { - owner = "adamrt"; - repo = "sane-term"; - rev = "ae0b3c024b66275f22809e2b41f428b01c259b96"; - sha256 = "1468byxxd0ysqzmi9ssypfhfyqrjgj5w7sx42qgw66m57sis8ra3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sane-term"; - sha256 = "08b8zlr8qzxfrpg9lqiyam3sb8a8rzak79ra4r6ljjppyj4zmwi7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sane-term"; - license = lib.licenses.free; - }; - }) {}; - sass-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , haml-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "sass-mode"; - ename = "sass-mode"; - version = "20190501.1753"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "sass-mode"; - rev = "247a0d4b509f10b28e4687cd8763492bca03599b"; - sha256 = "1nhk12lhvkwdk8s8fx33p6rssi0gcfx2zkanq23rz6k28v5zi5yp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/sass-mode"; - sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; - name = "recipe"; - }; - packageRequires = [ cl-lib haml-mode ]; - meta = { - homepage = "https://melpa.org/#/sass-mode"; - license = lib.licenses.free; - }; - }) {}; - sauron = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sauron"; - ename = "sauron"; - version = "20181216.400"; - src = fetchFromGitHub { - owner = "djcb"; - repo = "sauron"; - rev = "6a26e9df1e6a49b0ea4ccfd843a032033162a287"; - sha256 = "1pqw72mmi84813pigk0gcygrqw5ql2074kj55pihy784dm853rfg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d30dcc4715422133e1bb00ad7a8e25b060387e4/recipes/sauron"; - sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sauron"; - license = lib.licenses.free; - }; - }) {}; - save-load-path = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "save-load-path"; - ename = "save-load-path"; - version = "20140206.414"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "save-load-path"; - rev = "6cb763a37e2b8af505bff2bcd11fd49c9ea04d66"; - sha256 = "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/save-load-path"; - sha256 = "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/save-load-path"; - license = lib.licenses.free; - }; - }) {}; - save-visited-files = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "save-visited-files"; - ename = "save-visited-files"; - version = "20190430.808"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "save-visited-files"; - rev = "7eb71a6c4f9cb770b387fcef80231d9a9f648188"; - sha256 = "01ampk085k0rb0bw85imwbs44p4wp20giiwwpbrv6f97bh1065m2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f5979e2c2dbfc4e8e3b4d2881cf860c26f63db5/recipes/save-visited-files"; - sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/save-visited-files"; - license = lib.licenses.free; - }; - }) {}; - savekill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "savekill"; - ename = "savekill"; - version = "20140417.1929"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "savekill"; - rev = "67fc94e3d8fe8ce3ca16f90518f6a46479b63e34"; - sha256 = "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/savekill"; - sha256 = "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/savekill"; - license = lib.licenses.free; - }; - }) {}; - say-what-im-doing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "say-what-im-doing"; - ename = "say-what-im-doing"; - version = "20160706.1231"; - src = fetchFromGitHub { - owner = "Benaiah"; - repo = "say-what-im-doing"; - rev = "5b2ce6783b02805bcac1107a149bfba3852cd9d5"; - sha256 = "0wy4hrc44ajl88krp6qy40szl2kl2wc3xjz3y4n250d1v81k25xi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/say-what-im-doing"; - sha256 = "0wi7318q7mms4wjbzhnsw298bjh7g957dnra0bvg87vv48pz3yfp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/say-what-im-doing"; - license = lib.licenses.free; - }; - }) {}; - sayid = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sayid"; - ename = "sayid"; - version = "20181223.35"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "sayid"; - rev = "3322ec3d6503f0e706b0b16d09865c00b92e7979"; - sha256 = "0sfc5fsb1h35ayzxaj5bz0za7zjbs6vxgzc7fqfvrpjazsv3jbcq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/sayid"; - sha256 = "065mxb2la3dq2zqyb8dfksb18fpqym04nnax5rrp19izcw488qsm"; - name = "recipe"; - }; - packageRequires = [ cider ]; - meta = { - homepage = "https://melpa.org/#/sayid"; - license = lib.licenses.free; - }; - }) {}; - sbt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sbt-mode"; - ename = "sbt-mode"; - version = "20180511.922"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "emacs-sbt-mode"; - rev = "e658af140547cbef495c33535c7f694a501d318c"; - sha256 = "0lv9ridzk9x6rkf7lj21srnszypyq04vqg05vl10zhpz1yqlnbjd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode"; - sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sbt-mode"; - license = lib.licenses.free; - }; - }) {}; - scad-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scad-mode"; - ename = "scad-mode"; - version = "20190413.546"; - src = fetchFromGitHub { - owner = "openscad"; - repo = "openscad"; - rev = "abf18ce66f6d6318c1e8ac8c1e2be7a172f5759e"; - sha256 = "0ng5snm3l3psbbaf4lm1dlvwackx12hkix5lc1xfgfrandkrggnm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d27782b9ac8474fbd4f51535351207c9c84984c/recipes/scad-mode"; - sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scad-mode"; - license = lib.licenses.free; - }; - }) {}; - scad-preview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , scad-mode }: - melpaBuild { - pname = "scad-preview"; - ename = "scad-preview"; - version = "20160206.536"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "scad-preview"; - rev = "fee011589671cc8f1296cb6aa81553e5bb699819"; - sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18a043064223906510adbb837f1be329252dbd50/recipes/scad-preview"; - sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z"; - name = "recipe"; - }; - packageRequires = [ scad-mode ]; - meta = { - homepage = "https://melpa.org/#/scad-preview"; - license = lib.licenses.free; - }; - }) {}; - scala-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scala-mode"; - ename = "scala-mode"; - version = "20170802.432"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "emacs-scala-mode"; - rev = "56cba2903cf6e12c715dbb5c99b34c97b2679379"; - sha256 = "13miqdn426cw9y1wqaz5smmf0wi3bzls95z6shcxzdz8cg50zmpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode"; - sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scala-mode"; - license = lib.licenses.free; - }; - }) {}; - scalariform = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "scalariform"; - ename = "scalariform"; - version = "20190113.1815"; - src = fetchFromGitHub { - owner = "zwild"; - repo = "scalariform"; - rev = "f4b04508a65ce8593d15c260322c527dda5810a3"; - sha256 = "1c2z6kp17gw77h9y6v75dvcp6ywpsyfcxlrzr5iank4ipgplsbha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1912f795e5842be534160e3879bfb96f3440e163/recipes/scalariform"; - sha256 = "096y63j91910hqsy6qvz16c9lzyi7ni3r7h039z5zw2v97aggh9i"; - name = "recipe"; - }; - packageRequires = [ f s ]; - meta = { - homepage = "https://melpa.org/#/scalariform"; - license = lib.licenses.free; - }; - }) {}; - scf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scf-mode"; - ename = "scf-mode"; - version = "20151121.1848"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "scf-mode"; - rev = "dbfcdcd89034f208d65e181af58e0d73ad09f8b2"; - sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/376be7f8903dbea69643600ae14e934ee5e2a11b/recipes/scf-mode"; - sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scf-mode"; - license = lib.licenses.free; - }; - }) {}; - scheme-complete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scheme-complete"; - ename = "scheme-complete"; - version = "20181029.555"; - src = fetchFromGitHub { - owner = "ashinn"; - repo = "scheme-complete"; - rev = "b86ee41d48664839181498313f4f3dc2fef17d6f"; - sha256 = "1by7ky8za6idam4m4xgmf0f5ss0cacd7wv53glhmjb4nslxhgl7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/scheme-complete"; - sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scheme-complete"; - license = lib.licenses.free; - }; - }) {}; - schrute = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "schrute"; - ename = "schrute"; - version = "20170521.1140"; - src = fetchgit { - url = "https://bitbucket.org/shackra/dwight-k.-schrute"; - rev = "59faa6c4232ae183cea93237301acad8c0763997"; - sha256 = "1w5l1vf4cn4psrxgnq5n6j3zw644s70inpa17vsvng3sk5r8crcb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/505fc4d26049d4e2973a54b24117ccaf4f2fb7e7/recipes/schrute"; - sha256 = "1sr49wr3738sqfzix7v9rj6bvv7q2a46qdkimn9z7rnsjys9i7zy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/schrute"; - license = lib.licenses.free; - }; - }) {}; - scion = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scion"; - ename = "scion"; - version = "20130315.555"; - src = fetchFromGitHub { - owner = "nominolo"; - repo = "scion"; - rev = "99b4589175665687181a932cd836850205625f71"; - sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/faf180d15c3847fc6f832866338494dd99b6654d/recipes/scion"; - sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scion"; - license = lib.licenses.free; - }; - }) {}; - sclang-extensions = callPackage ({ auto-complete - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "sclang-extensions"; - ename = "sclang-extensions"; - version = "20160508.2038"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "sclang-extensions"; - rev = "e9cc79732f16fdb582129303110c163dcc0d6da0"; - sha256 = "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2095549944ca28d6a2d6a90d5ab3ba9c27997a8/recipes/sclang-extensions"; - sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn"; - name = "recipe"; - }; - packageRequires = [ auto-complete dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/sclang-extensions"; - license = lib.licenses.free; - }; - }) {}; - sclang-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "sclang-snippets"; - ename = "sclang-snippets"; - version = "20130513.51"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "sclang-snippets"; - rev = "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58"; - sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/680e5757e074c16efd31084a7dc5dcea339597f5/recipes/sclang-snippets"; - sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/sclang-snippets"; - license = lib.licenses.free; - }; - }) {}; - scp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scp"; - ename = "scp"; - version = "20171203.1851"; - src = fetchFromGitHub { - owner = "tszg"; - repo = "emacs-scp"; - rev = "3f437ee9f52df7d9f4c57275a8cfb7f06c3c26ff"; - sha256 = "013i4152irybladx0lyi1kriaxpn6dnpnc9bqdxngmgycmwsrn4r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62f5c9284de51373a4015cf053d66977cf00d175/recipes/scp"; - sha256 = "1q7v2cr89syw682zqxhavaggv6aqi69rl94vm8bmn745a868gliw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/scp"; - license = lib.licenses.free; - }; - }) {}; - scpaste = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild }: - melpaBuild { - pname = "scpaste"; - ename = "scpaste"; - version = "20190228.1351"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "scpaste"; - rev = "568faaa70fa0413e2d165ad232cd4c6ec2815197"; - sha256 = "160m4w0i9cj4zxmmsknmnvycscj9y8da39y1362kv7dpmwnxsxcp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9007fb32097bc63731c3615dae9342fcef2558a2/recipes/scpaste"; - sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; - name = "recipe"; - }; - packageRequires = [ htmlize ]; - meta = { - homepage = "https://melpa.org/#/scpaste"; - license = lib.licenses.free; - }; - }) {}; - scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratch"; - ename = "scratch"; - version = "20190313.2314"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "scratch-el"; - rev = "4813d82b39a451f2a6d5b730cd7ec49a9bdabcca"; - sha256 = "0yiwq2gc4gdgfhaagpawhb7yrzc4fsnyb10w5d0q4whv64cj8555"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b46813f928eadfa08a1d4bf94ceeb96dbc2a7c72/recipes/scratch"; - sha256 = "1an30pr64fz13s6lghlcb36b7hn3961vv0yipfp9s140ccygdvh7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/scratch"; - license = lib.licenses.free; - }; - }) {}; - scratch-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratch-ext"; - ename = "scratch-ext"; - version = "20140103.2116"; - src = fetchFromGitHub { - owner = "kyanagi"; - repo = "scratch-ext-el"; - rev = "388c53cddd0466b451264894667ed64a6947ad67"; - sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a142d336a57d075dfd5caf44fa1c1254b83ac728/recipes/scratch-ext"; - sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scratch-ext"; - license = lib.licenses.free; - }; - }) {}; - scratch-log = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratch-log"; - ename = "scratch-log"; - version = "20141114.2343"; - src = fetchFromGitHub { - owner = "mori-dev"; - repo = "scratch-log"; - rev = "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0"; - sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bec9692973db8853f9d329aebc0cc9e81bb34003/recipes/scratch-log"; - sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scratch-log"; - license = lib.licenses.free; - }; - }) {}; - scratch-message = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratch-message"; - ename = "scratch-message"; - version = "20170107.536"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "scratch-message"; - rev = "3ecc7f5e3b8a597ebd1492fd426d3720a7f34302"; - sha256 = "1kb664r3gbhv2ja8jyyzfw22db99ini8qbgzcy9xsl56lha4x4xi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24c5ff6b643de9fb79334eff57b702281b20bc10/recipes/scratch-message"; - sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scratch-message"; - license = lib.licenses.free; - }; - }) {}; - scratch-palette = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "scratch-palette"; - ename = "scratch-palette"; - version = "20150225.42"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "scratch-palette"; - rev = "f6803b448079f4a81cc699cec7442ef543cd5818"; - sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b737bd93008e10ff446b347f405541a6f4127716/recipes/scratch-palette"; - sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs"; - name = "recipe"; - }; - packageRequires = [ popwin ]; - meta = { - homepage = "https://melpa.org/#/scratch-palette"; - license = lib.licenses.free; - }; - }) {}; - scratch-pop = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "scratch-pop"; - ename = "scratch-pop"; - version = "20170510.758"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "scratch-pop"; - rev = "7f4172c792b10bd38898dd8963cf0ade91921869"; - sha256 = "0mwjq7z0cpaqhqygzhfcpfqyx8376jsc1g2874np6ff49389bj4d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/420fb3408b64f1a3e42316262016728c483bf0c1/recipes/scratch-pop"; - sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1"; - name = "recipe"; - }; - packageRequires = [ popwin ]; - meta = { - homepage = "https://melpa.org/#/scratch-pop"; - license = lib.licenses.free; - }; - }) {}; - scratches = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratches"; - ename = "scratches"; - version = "20151005.2116"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "scratches"; - rev = "9441afe6396ca38f08029123fab5d87429cbf315"; - sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/scratches"; - sha256 = "116bjy1m35h83r2c354i2xk1br87nmvd99kbzax0wgkkkcjff8c4"; - name = "recipe"; - }; - packageRequires = [ dash f ]; - meta = { - homepage = "https://melpa.org/#/scratches"; - license = lib.licenses.free; - }; - }) {}; - scribble-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scribble-mode"; - ename = "scribble-mode"; - version = "20181203.1925"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "scribble-mode"; - rev = "217945d54de5e4bb207033f2116baa28f5c5ecf2"; - sha256 = "1s5ccw1a5ack01wd94ywfcrar9j98agchwdh30q7iyxr0d2z4sii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6469c2b389d757003da69da727905228eb564d50/recipes/scribble-mode"; - sha256 = "0idagikxhr86h2k6fb45zdzg73wpmpiszx0gi6d8jx7s1xqd6s50"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/scribble-mode"; - license = lib.licenses.free; - }; - }) {}; - scrollkeeper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scrollkeeper"; - ename = "scrollkeeper"; - version = "20190108.2229"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "scrollkeeper.el"; - rev = "3c4ac6b6b44686d31c260ee0b19daaee59bdccd6"; - sha256 = "18pp4k12g5dyma362461gdp4ds5d3lx9gky2ishsq39949pkz7qz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9ad5b16ff61c1f8ba1e030ee0988aa51a437022/recipes/scrollkeeper"; - sha256 = "16wqlyxznall4kmd8l68q4d11qyilj8vsji36h7llprxa2m9pg12"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/scrollkeeper"; - license = lib.licenses.free; - }; - }) {}; - scrooge = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , thrift }: - melpaBuild { - pname = "scrooge"; - ename = "scrooge"; - version = "20180630.322"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "emacs-scrooge"; - rev = "0a8c58e9e6708abe4ef7e415bc1e0472318bb1b0"; - sha256 = "1my5yz9ppr7d90ad94mkqzkp20c8bym6mdi7jwab2yisbzykmwzc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e3623181fa771dc94a7026eb58ac81fe9d9fc68/recipes/scrooge"; - sha256 = "1gisyfzawrgg55jbwrbnri314f6zd38di19iwy0b2dim8in4sjpg"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs thrift ]; - meta = { - homepage = "https://melpa.org/#/scrooge"; - license = lib.licenses.free; - }; - }) {}; - scss-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scss-mode"; - ename = "scss-mode"; - version = "20180123.908"; - src = fetchFromGitHub { - owner = "antonj"; - repo = "scss-mode"; - rev = "cf58dbec5394280503eb5502938f3b5445d1b53d"; - sha256 = "0raja19l0igwr0pn0ghr1pj1d8i9k3m3764ma4r8nwzxcj9qw4ja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/scss-mode"; - sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scss-mode"; - license = lib.licenses.free; - }; - }) {}; - sdcv = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , pos-tip - , showtip }: - melpaBuild { - pname = "sdcv"; - ename = "sdcv"; - version = "20180211.833"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "sdcv.el"; - rev = "50ac95be1369fe8cf98d6254e05d6ac343dad421"; - sha256 = "09i7zsizwq5k79wi5sgcfqdlbx0nazrnw3nd6hkn2vfrcffb7pf1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/173e233b2dacaaf54d92f3bcc06e54d068520dd4/recipes/sdcv"; - sha256 = "1bj3b17sjd9fha686g6w191l4p8a1p8sb9br65xf54n6nd9bmv7a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs popup pos-tip showtip ]; - meta = { - homepage = "https://melpa.org/#/sdcv"; - license = lib.licenses.free; - }; - }) {}; - sdlang-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sdlang-mode"; - ename = "sdlang-mode"; - version = "20161130.2311"; - src = fetchFromGitHub { - owner = "CyberShadow"; - repo = "sdlang-mode"; - rev = "d42a6eedefeb44919fbacf58d302b6df18f05bbc"; - sha256 = "0r6sm7b15scmjcpdcqvm55hdsvyw5d2g7mrfhsx2hs8sqz64gkwc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/691af79137015f15a3d383439e534e255ba4b36d/recipes/sdlang-mode"; - sha256 = "1z6n374z55dr2c6xdwgvmpznd5gk9y23k136zmy29b68j2kswj6l"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sdlang-mode"; - license = lib.licenses.free; - }; - }) {}; - search-web = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "search-web"; - ename = "search-web"; - version = "20150312.403"; - src = fetchFromGitHub { - owner = "tomoya"; - repo = "search-web.el"; - rev = "c4ae86ac1acfc572b81f3d78764bd9a54034c331"; - sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f1a3697649ccf69c8eb177c31ec4246b98f503b/recipes/search-web"; - sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/search-web"; - license = lib.licenses.free; - }; - }) {}; - searchq = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "searchq"; - ename = "searchq"; - version = "20150829.511"; - src = fetchFromGitHub { - owner = "boyw165"; - repo = "searchq"; - rev = "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82"; - sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9738c1be0511540bfd8f324334518c72c9c38c94/recipes/searchq"; - sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/searchq"; - license = lib.licenses.free; - }; - }) {}; - seclusion-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "seclusion-mode"; - ename = "seclusion-mode"; - version = "20121118.1553"; - src = fetchFromGitHub { - owner = "dleslie"; - repo = "seclusion-mode"; - rev = "9634e76c52bfb7200ff0f9f01404f743429e9ef0"; - sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b087d151b00f5251b15ebb071896995874afb274/recipes/seclusion-mode"; - sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/seclusion-mode"; - license = lib.licenses.free; - }; - }) {}; - secretaria = callPackage ({ alert - , emacs - , f - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "secretaria"; - ename = "secretaria"; - version = "20190116.1200"; - src = fetchFromGitLab { - owner = "shackra"; - repo = "secretaria"; - rev = "e619a41b8c2600204c064d33394a3c1b85fc2879"; - sha256 = "09fddglyiz7j6ymxlwsq1zpigp5vhg31r2p6nr4lsblww3ypbapg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3eeddbcf95315da40d021a6913ccf344849c4284/recipes/secretaria"; - sha256 = "04pcibzdljcfiha4yh10van8gsjrzn6bdkvkm2ahfcwrmscfn3hf"; - name = "recipe"; - }; - packageRequires = [ alert emacs f org s ]; - meta = { - homepage = "https://melpa.org/#/secretaria"; - license = lib.licenses.free; - }; - }) {}; - see-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , language-detection - , lib - , melpaBuild }: - melpaBuild { - pname = "see-mode"; - ename = "see-mode"; - version = "20180510.1741"; - src = fetchFromGitHub { - owner = "marcelino-m"; - repo = "see-mode"; - rev = "db9e4324f9dcc14d5125cb6a79d6c9fad5b14626"; - sha256 = "0w595mpdd999j7m9dsy18fy7pr9nq4dm666lvjvlzzgdgwwf0zvc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ee64e846c471926194fcecc4824a06effc0aa5b/recipes/see-mode"; - sha256 = "1124x11vxci9mvx3zn56v5h9dhmy7bzd5pilqdgzp3hzjmyydnfi"; - name = "recipe"; - }; - packageRequires = [ emacs language-detection ]; - meta = { - homepage = "https://melpa.org/#/see-mode"; - license = lib.licenses.free; - }; - }) {}; - seeing-is-believing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "seeing-is-believing"; - ename = "seeing-is-believing"; - version = "20170214.520"; - src = fetchFromGitHub { - owner = "jcinnamond"; - repo = "seeing-is-believing"; - rev = "fbbe246c0fda87bb26227bb826eebadb418a220f"; - sha256 = "1h1b48s2iirswdlvfz41jbflm4x09ksc2lycrc1awzlwd6r8hdhg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14bb6de5c051a68284ee1a7e25ecb2c7c19ffd3b/recipes/seeing-is-believing"; - sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/seeing-is-believing"; - license = lib.licenses.free; - }; - }) {}; - seethru = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , shadchen }: - melpaBuild { - pname = "seethru"; - ename = "seethru"; - version = "20150218.1029"; - src = fetchFromGitHub { - owner = "Benaiah"; - repo = "seethru"; - rev = "d87e231f99313bea75b1e69e48c0f32968c82060"; - sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7945732d9789143b386603dd7c96ef14ba68ddaf/recipes/seethru"; - sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v"; - name = "recipe"; - }; - packageRequires = [ shadchen ]; - meta = { - homepage = "https://melpa.org/#/seethru"; - license = lib.licenses.free; - }; - }) {}; - sekka = callPackage ({ cl-lib ? null - , concurrent - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "sekka"; - ename = "sekka"; - version = "20170803.547"; - src = fetchFromGitHub { - owner = "kiyoka"; - repo = "sekka"; - rev = "d1fd5d47aacba723631d5d374169a45ff2051c41"; - sha256 = "035rx863cj3hs1lhayff0810cpp6kv8nwc1c0y54gvdk1bb333x0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka"; - sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; - name = "recipe"; - }; - packageRequires = [ cl-lib concurrent popup ]; - meta = { - homepage = "https://melpa.org/#/sekka"; - license = lib.licenses.free; - }; - }) {}; - select-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "select-themes"; - ename = "select-themes"; - version = "20160220.1706"; - src = fetchFromGitHub { - owner = "jasonm23"; - repo = "emacs-select-themes"; - rev = "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe"; - sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4e7d01da10a1a1f7fe563031af5d3f9694cea33/recipes/select-themes"; - sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/select-themes"; - license = lib.licenses.free; - }; - }) {}; - selected = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "selected"; - ename = "selected"; - version = "20170222.34"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "selected.el"; - rev = "03edaeac90bc6000d263f03be3d889b4685e1bf7"; - sha256 = "1d72vw1dcxnyir7vymr3cfxal5dndm1pmm192aa9bcyrcg7aq39g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/selected"; - sha256 = "1zk9jvsiw30zqh68xjx2zcc71php68ryiwqmws52ghqiaifj50gf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/selected"; - license = lib.licenses.free; - }; - }) {}; - selectric-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "selectric-mode"; - ename = "selectric-mode"; - version = "20170216.311"; - src = fetchFromGitHub { - owner = "rbanffy"; - repo = "selectric-mode"; - rev = "a35cb3815caceaf273ad7d16ac3b2dd3c7a3003e"; - sha256 = "04bj71080wqybznyx63dawhppq6x3p88x1j56gvl8kvxv2hwzgzf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08922071b9854142eab726302e75f1db2d326ec5/recipes/selectric-mode"; - sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/selectric-mode"; - license = lib.licenses.free; - }; - }) {}; - semi = callPackage ({ fetchFromGitHub - , fetchurl - , flim - , lib - , melpaBuild }: - melpaBuild { - pname = "semi"; - ename = "semi"; - version = "20190517.1523"; - src = fetchFromGitHub { - owner = "wanderlust"; - repo = "semi"; - rev = "4cf114c95fb49ad75eb6916f678b45b04bad8122"; - sha256 = "0gx9y5q1xb9d30yf1dcvmh9ixynr5cr5qk25pjnrhmblkhl5b2nz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e78849c2d1df187b7f0ef4c34985a341e640ad3e/recipes/semi"; - sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25"; - name = "recipe"; - }; - packageRequires = [ flim ]; - meta = { - homepage = "https://melpa.org/#/semi"; - license = lib.licenses.free; - }; - }) {}; - seml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , simple-httpd - , web-mode }: - melpaBuild { - pname = "seml-mode"; - ename = "seml-mode"; - version = "20190530.2242"; - src = fetchFromGitHub { - owner = "conao3"; - repo = "seml-mode.el"; - rev = "58eea4c2009b3e747d8e68a38417fcbf8a243c4b"; - sha256 = "0q2anb8f43wsp1n021wx700f52w682av6zql9ivs4k7bsf9ldwz2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8b8d877ba3164bf20f7f0e56ea564b88f493e/recipes/seml-mode"; - sha256 = "0fmfnglxm57mhynzdsgs14qaxsw3nf83qbz3adknv63qymbfhgbw"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize simple-httpd web-mode ]; - meta = { - homepage = "https://melpa.org/#/seml-mode"; - license = lib.licenses.free; - }; - }) {}; - sendto = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sendto"; - ename = "sendto"; - version = "20160425.550"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "sendto.el"; - rev = "076b81d7a53f75b0a59b0ef3448f35570567054c"; - sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31f7c2f97dd186cb77dc8a106baf5e087792c6ab/recipes/sendto"; - sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sendto"; - license = lib.licenses.free; - }; - }) {}; - sensitive = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sequences }: - melpaBuild { - pname = "sensitive"; - ename = "sensitive"; - version = "20170818.551"; - src = fetchFromGitHub { - owner = "timvisher"; - repo = "sensitive.el"; - rev = "69dd6125a41d8b55f4b6ba61daa4d1aa1f716fa8"; - sha256 = "0nj71ds4frfi16hsfswmp89rfxkvvdvhdlsqizzi9cbvr49s0l1f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e5468ce136fabe59e1434f8a7f265f41c5e64c1/recipes/sensitive"; - sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3"; - name = "recipe"; - }; - packageRequires = [ emacs sequences ]; - meta = { - homepage = "https://melpa.org/#/sensitive"; - license = lib.licenses.free; - }; - }) {}; - sentence-navigation = callPackage ({ ample-regexps - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sentence-navigation"; - ename = "sentence-navigation"; - version = "20180408.919"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "emacs-sentence-navigation"; - rev = "7c5d2edeaed01196aec25031782e89adeaa089f0"; - sha256 = "15za4fg7c8fsih86wz1npyx6gdmw0xhizklfsyfh84416dsmgswp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d097cf9b6c9c1606505d3988a2afdd7b066abc8/recipes/sentence-navigation"; - sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m"; - name = "recipe"; - }; - packageRequires = [ ample-regexps cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/sentence-navigation"; - license = lib.licenses.free; - }; - }) {}; - seoul256-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "seoul256-theme"; - ename = "seoul256-theme"; - version = "20180505.57"; - src = fetchFromGitHub { - owner = "anandpiyer"; - repo = "seoul256-emacs"; - rev = "8e76d0207489964ef780420723d49e409f68f7d1"; - sha256 = "1fcnq2jh330va1xvpfh6nnd9gbjjisv0ham44zwi5lh0j7424jkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/seoul256-theme"; - sha256 = "1nvhnyfvmpqg0a54nq73lhz3h9g94zkbix13bbzv9bp1lg8v6w1x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/seoul256-theme"; - license = lib.licenses.free; - }; - }) {}; - sequences = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sequences"; - ename = "sequences"; - version = "20170818.552"; - src = fetchFromGitHub { - owner = "timvisher"; - repo = "sequences.el"; - rev = "564ebbd93b0beea4e75acfbf824350e90b5d5738"; - sha256 = "0ym2bl9dpsglz35is0iwxfw5w7zs9398bkln8lgv28nr6kw0ym4s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf716df68fb2d6a41fe75fac0b41e356bddcf30/recipes/sequences"; - sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sequences"; - license = lib.licenses.free; - }; - }) {}; - sequential-command = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sequential-command"; - ename = "sequential-command"; - version = "20170925.1740"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "sequential-command"; - rev = "a48cbcbe273b33edd3ae56e68f44b4100fa3a48a"; - sha256 = "1f05amz22klvs2yqyw7n5bmivgdn5zc7vkv5x6bgc9b5k977lggj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/sequential-command"; - sha256 = "0qhrpwcgn89sqdj8yhgax0qk81ycdanlgwx25cxy8wnxkqqcvh9m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sequential-command"; - license = lib.licenses.free; - }; - }) {}; - servant = callPackage ({ ansi - , commander - , dash - , epl - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up - , web-server }: - melpaBuild { - pname = "servant"; - ename = "servant"; - version = "20140216.419"; - src = fetchFromGitHub { - owner = "cask"; - repo = "servant"; - rev = "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"; - sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/servant"; - sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash epl f s shut-up web-server ]; - meta = { - homepage = "https://melpa.org/#/servant"; - license = lib.licenses.free; - }; - }) {}; - serverspec = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "serverspec"; - ename = "serverspec"; - version = "20150623.455"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-serverspec"; - rev = "b6dfe82af9869438de5e5d860ced196641f372c0"; - sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4/recipes/serverspec"; - sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; - name = "recipe"; - }; - packageRequires = [ dash f helm s ]; - meta = { - homepage = "https://melpa.org/#/serverspec"; - license = lib.licenses.free; - }; - }) {}; - services = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "services"; - ename = "services"; - version = "20170802.430"; - src = fetchFromGitHub { - owner = "davep"; - repo = "services.el"; - rev = "04c7986041a33dfa0b0ae57c7d6fbd600548c596"; - sha256 = "0ycfkskkdlmc0l75z5a8f66wq5mvb24c4kz19a6kqs8rwm2ygz35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/beb91b4397f6e35a1d5c73a127d8cd7fc9201935/recipes/services"; - sha256 = "02lgmpbw52ps6z4p9gwzvh9iaxisq5mb0n9aml9ajxac1473vpcd"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/services"; - license = lib.licenses.free; - }; - }) {}; - sesman = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sesman"; - ename = "sesman"; - version = "20190213.850"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "sesman"; - rev = "3df33018f1c42f09db21cebe39a25b389fe35f02"; - sha256 = "0z5jb4vpbjsi63w3wjy6d2lgz33qdfvrgfb3bszv4hcf6a96y7fc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31110e9bd82ad9c817e6cb597fa9c26c4cdc93ed/recipes/sesman"; - sha256 = "106jcdsp7rhkr4bbyprcld5fxcnimfcyx0cwcpzhd0b4vh3v3qvg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sesman"; - license = lib.licenses.free; - }; - }) {}; - session = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "session"; - ename = "session"; - version = "20120510.1700"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "session"; - rev = "19ea0806873daac3539a4b956e15655e99e3dd6c"; - sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/session"; - sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/session"; - license = lib.licenses.free; - }; - }) {}; - seti-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "seti-theme"; - ename = "seti-theme"; - version = "20190201.1048"; - src = fetchFromGitHub { - owner = "caisah"; - repo = "seti-theme"; - rev = "9d76db0b91d4f574dd96ac80fad41da35bffa109"; - sha256 = "14fqkkvjbq2gj737k3yz3s0dkya33fi0dj4wds99zyzss2xp37f8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/088924b78575359996cf30745497b287cfb11f37/recipes/seti-theme"; - sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/seti-theme"; - license = lib.licenses.free; - }; - }) {}; - sexp-move = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sexp-move"; - ename = "sexp-move"; - version = "20150915.1030"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "sexp-move"; - rev = "117f7a91ab7c25e438413753e916570122011ce7"; - sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sexp-move"; - sha256 = "0sdm3kr4594fy9hk8yljj2iwa40bgs8nqpwwl2a60r060spz54z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sexp-move"; - license = lib.licenses.free; - }; - }) {}; - sexy-monochrome-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sexy-monochrome-theme"; - ename = "sexy-monochrome-theme"; - version = "20180526.108"; - src = fetchFromGitHub { - owner = "voloyev"; - repo = "sexy-monochrome-theme"; - rev = "bf4b6ccd63b9dfbe14035963a80057e1f56ad1e7"; - sha256 = "0m2m4ini1dzk7hzjy7zqn90vih9n6kiz1amgv4gyhzarbwj7zyw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfd5ae9a93e036d11899c7adffdf6b63c2b21381/recipes/sexy-monochrome-theme"; - sha256 = "0rlx4029zxrnzzqspn8zrp3q6w0n46q24qk7za46hvxdsmgdpxbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sexy-monochrome-theme"; - license = lib.licenses.free; - }; - }) {}; - shackle = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shackle"; - ename = "shackle"; - version = "20190201.1046"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "shackle"; - rev = "242bacc940c18b6f9c156e1912155d45537fd827"; - sha256 = "0qqx8py21jaq1bdafkfqx18ns4zn305qg84zbmy65spiqnfq8hwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/806e7d00f763f3fc4e3b8ebd483070ac6c5d0f21/recipes/shackle"; - sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/shackle"; - license = lib.licenses.free; - }; - }) {}; - shadchen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shadchen"; - ename = "shadchen"; - version = "20141102.1039"; - src = fetchFromGitHub { - owner = "VincentToups"; - repo = "shadchen-el"; - rev = "35f2b9c304eec990c16efbd557198289dc7cbb1f"; - sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a2a36fbfcf457eab05c1ff31cb9c2f68686094e/recipes/shadchen"; - sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shadchen"; - license = lib.licenses.free; - }; - }) {}; - shader-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shader-mode"; - ename = "shader-mode"; - version = "20180518.457"; - src = fetchFromGitHub { - owner = "midnightSuyama"; - repo = "shader-mode"; - rev = "d7dc8d0d6fe8914e8b6d5cf2081ad61e6952359c"; - sha256 = "13scj6w3vsdcgmq7zak3pflqpq295wgzsng72rcafgkkr7r12rar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4396f3c10a38f91d5f98684efbeb02812e479209/recipes/shader-mode"; - sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shader-mode"; - license = lib.licenses.free; - }; - }) {}; - shakespeare-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shakespeare-mode"; - ename = "shakespeare-mode"; - version = "20180704.1438"; - src = fetchFromGitHub { - owner = "CodyReichert"; - repo = "shakespeare-mode"; - rev = "c442eeea9d585e1b1fbb8813e33d47feec348a57"; - sha256 = "1ba9xy5jwn8ni8fi2k144j669jp95k2qf9ip77r16rsiy7divl0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/shakespeare-mode"; - sha256 = "1sg8n4ifpi36zmf6b6s0swq7k3r038cmj8kxjm7hpgxq6f9qnk9x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shakespeare-mode"; - license = lib.licenses.free; - }; - }) {}; - shampoo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shampoo"; - ename = "shampoo"; - version = "20131230.219"; - src = fetchFromGitHub { - owner = "dmatveev"; - repo = "shampoo-emacs"; - rev = "bc193c39636c30182159c5c91c37a9a4cb50fedf"; - sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f145113a0698466e706a6a4c55d63cec512706/recipes/shampoo"; - sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shampoo"; - license = lib.licenses.free; - }; - }) {}; - shell-command = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-command"; - ename = "shell-command"; - version = "20090830.340"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "shell-command"; - rev = "7e22125f746ce9ffbe9b0282d62f4b4bbbe672bd"; - sha256 = "1my2i26a03z8xyyacsnl5wdylnbhhvazn23bpy639d3l4x4l7jzw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/shell-command"; - sha256 = "01nviashfr64wm78zi3vrqrqdqgsamp76d9kasxv0b7fqmfx7yjk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-command"; - license = lib.licenses.free; - }; - }) {}; - shell-current-directory = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-current-directory"; - ename = "shell-current-directory"; - version = "20140101.1554"; - src = fetchFromGitHub { - owner = "metaperl"; - repo = "shell-current-directory"; - rev = "bf843771bf9a4aa05e054ade799eb8862f3be89a"; - sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edcb78c3491a5999b39a40087b7f991c2b737e30/recipes/shell-current-directory"; - sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-current-directory"; - license = lib.licenses.free; - }; - }) {}; - shell-here = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-here"; - ename = "shell-here"; - version = "20150728.1004"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "shell-here"; - rev = "251309141e18978d2b8014345acc6f5afcd4d509"; - sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88df6e04614547a59aefbeae88c301f3b8394039/recipes/shell-here"; - sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-here"; - license = lib.licenses.free; - }; - }) {}; - shell-history = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-history"; - ename = "shell-history"; - version = "20100505.139"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "shell-history"; - rev = "ee371a81f2d2bf5a308344078329ca1e9b5ed38c"; - sha256 = "0jyz31j5a07shcf2ym5gnn16xk5r3s84ls8kxk5myvxi3wkpgdd4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/shell-history"; - sha256 = "1cmk8rymnj7dscxjq0p23jgwc16yvzw1804ya5wsg95v239gz1hy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-history"; - license = lib.licenses.free; - }; - }) {}; - shell-pop = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-pop"; - ename = "shell-pop"; - version = "20170304.616"; - src = fetchFromGitHub { - owner = "kyagi"; - repo = "shell-pop-el"; - rev = "4a3a9d093ad1add792bba764c601aa28de302b34"; - sha256 = "1ybvg048jvijcg9jjfrbllf59pswmp0fd5zwq5x6nwg5wmggplzd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44150bddc9b276ab9fb2ab6a92a11383a3ed03b0/recipes/shell-pop"; - sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/shell-pop"; - license = lib.licenses.free; - }; - }) {}; - shell-split-string = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-split-string"; - ename = "shell-split-string"; - version = "20151224.208"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "shell-split-string-el"; - rev = "19f6f999c33cc66a4c91bacdcc3697c25d97bf5a"; - sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84e20f4d02c69f8caf39cd20a581be3b9fa79931/recipes/shell-split-string"; - sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-split-string"; - license = lib.licenses.free; - }; - }) {}; - shell-switcher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-switcher"; - ename = "shell-switcher"; - version = "20161028.2252"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "shell-switcher"; - rev = "28a7f753dd7addd2933510526f52620cb5a22048"; - sha256 = "1x7rrf56hjasciim8rj29vfngwis4pr3mhclvxd4sbmhz9y66wm0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a16194f6ddc05350b9875f4e0a3a0383c79e650e/recipes/shell-switcher"; - sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shell-switcher"; - license = lib.licenses.free; - }; - }) {}; - shell-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-toggle"; - ename = "shell-toggle"; - version = "20150226.611"; - src = fetchFromGitHub { - owner = "knu"; - repo = "shell-toggle.el"; - rev = "0d01bd9a780fdb7fe6609c552523f4498649a3b9"; - sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95873d90886d2db5cc1d83d4bcb8dd5c2e65bc3e/recipes/shell-toggle"; - sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-toggle"; - license = lib.licenses.free; - }; - }) {}; - shelldoc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shelldoc"; - ename = "shelldoc"; - version = "20151114.1925"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-shelldoc"; - rev = "20eb889f3d3d9bd01aafdc699e712a75db42d8f3"; - sha256 = "0i6xp6g3ggs4fkr410blxa4mkb1y05pcygkdbvb7y3gh878q5b5k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/551623175e55629be6cfe44a595f25f09bd889e8/recipes/shelldoc"; - sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/shelldoc"; - license = lib.licenses.free; - }; - }) {}; - shelltest-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shelltest-mode"; - ename = "shelltest-mode"; - version = "20180430.1841"; - src = fetchFromGitHub { - owner = "rtrn"; - repo = "shelltest-mode"; - rev = "5fea8c9394380e822971a171905b6b5ab9be812d"; - sha256 = "1np65a92n4y9i0nr8wymzn6md9xqmi9qyggya7sz0q4nzsh45wqg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af6dcd4fc0663a255bd85b247bbdf57d425efdb7/recipes/shelltest-mode"; - sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shelltest-mode"; - license = lib.licenses.free; - }; - }) {}; - shen-elisp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shen-elisp"; - ename = "shen-elisp"; - version = "20180915.1328"; - src = fetchFromGitHub { - owner = "deech"; - repo = "shen-elisp"; - rev = "73b74c8d6e3a2ea34b667d177d9f130765bfe501"; - sha256 = "1ym048cmkghx373fb7n5m6r73q5nfa62m10mqr4nzhsizgyzdbrn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/shen-elisp"; - sha256 = "045nawzyqaxd3g5f56fxfy680pl18x67w0wi28nrq4l4681w9xyq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shen-elisp"; - license = lib.licenses.free; - }; - }) {}; - shift-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shift-number"; - ename = "shift-number"; - version = "20170301.659"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "shift-number.el"; - rev = "94c3713cc11283a831f66d5205d112762edc186b"; - sha256 = "17a5aifj37pv3jm6k7ilc3s4vwhiy2dwyjjy9dxy3qqc8w9h4rr1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b06be6b25078ddfabc1ef1145c817552f679c41c/recipes/shift-number"; - sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shift-number"; - license = lib.licenses.free; - }; - }) {}; - shift-text = callPackage ({ cl-lib ? null - , es-lib - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shift-text"; - ename = "shift-text"; - version = "20130831.955"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "shift-text"; - rev = "1be9cbf994000022172ceb746fe1d597f57ea8ba"; - sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f/recipes/shift-text"; - sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i"; - name = "recipe"; - }; - packageRequires = [ cl-lib es-lib ]; - meta = { - homepage = "https://melpa.org/#/shift-text"; - license = lib.licenses.free; - }; - }) {}; - shimbun = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shimbun"; - ename = "shimbun"; - version = "20190516.2216"; - src = fetchFromGitHub { - owner = "emacs-w3m"; - repo = "emacs-w3m"; - rev = "0cabba57549069a1dbd8207f97d439414da1dd51"; - sha256 = "16ixcr3jknfqpkim00hiv5pnybldcc23379gbbjl6va0fmh2qgfw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5a423647410357f0e63afba5b52bbe880fce969/recipes/shimbun"; - sha256 = "04d9kkj4fididhq220c1vjmlzmaqnii95c1ca86kzjbm2bqakkcd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shimbun"; - license = lib.licenses.free; - }; - }) {}; - shm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shm"; - ename = "shm"; - version = "20180326.1757"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "structured-haskell-mode"; - rev = "7f9df73f45d107017c18ce4835bbc190dfe6782e"; - sha256 = "1jcc30048j369jgsbbmkb63whs4wb37bq21jrm3r6ry22izndsqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68a2fddb7e000487f022b3827a7de9808ae73e2a/recipes/shm"; - sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shm"; - license = lib.licenses.free; - }; - }) {}; - shoulda = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shoulda"; - ename = "shoulda"; - version = "20140616.1133"; - src = fetchFromGitHub { - owner = "marcwebbie"; - repo = "shoulda.el"; - rev = "24dc6b6138a06edde9c8d13a6aaa1654d1d7de54"; - sha256 = "18p0z5d8vhdhmw6x5rys2kfk93pb7mzdagls9ml0mjcixsyy7qsc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41497a876c80d81d9562ea4b2cc2a83dba98ae8a/recipes/shoulda"; - sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/shoulda"; - license = lib.licenses.free; - }; - }) {}; - show-css = callPackage ({ doom - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "show-css"; - ename = "show-css"; - version = "20160210.608"; - src = fetchFromGitHub { - owner = "8cylinder"; - repo = "showcss-mode"; - rev = "771daeddd4df7a7c10f66419a837145649bab63b"; - sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/show-css"; - sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k"; - name = "recipe"; - }; - packageRequires = [ doom s ]; - meta = { - homepage = "https://melpa.org/#/show-css"; - license = lib.licenses.free; - }; - }) {}; - show-eol = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "show-eol"; - ename = "show-eol"; - version = "20190516.1957"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "show-eol"; - rev = "9342099be0e79d80a808c13fb1b438cc11598dcf"; - sha256 = "1d5xb2b9ci1i0jv3vhad922zvvbixnybnhqhxr5vyj8gcnwn01rs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ae308e8c251b7a6942f7d9f739830986f7315ea/recipes/show-eol"; - sha256 = "1k0ihimb4acc30qfmjj3hfpxknif3gzj0iikz23gizrsks7n5p1g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/show-eol"; - license = lib.licenses.free; - }; - }) {}; - showtip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "showtip"; - ename = "showtip"; - version = "20090830.340"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "showtip"; - rev = "930da302809a4257e8d69425455b29e1cc91949b"; - sha256 = "01zak0zhha6dp7a2hm28d065gjnc462iwpsfyxhbxgfzcdlicqc7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/showtip"; - sha256 = "1d5ckka2z0ffwyk9g3h91n3waijj2v7n8kvdks35gcr2yl3yk780"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/showtip"; - license = lib.licenses.free; - }; - }) {}; - shpec-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shpec-mode"; - ename = "shpec-mode"; - version = "20150530.222"; - src = fetchFromGitHub { - owner = "shpec"; - repo = "shpec-mode"; - rev = "76bccd63e3b70233a6c9ca0798dd03550952cc76"; - sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1bfe85b430c3bbb5a7baf11bb9699dad417f60/recipes/shpec-mode"; - sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shpec-mode"; - license = lib.licenses.free; - }; - }) {}; - shr-tag-pre-highlight = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , language-detection - , lib - , melpaBuild }: - melpaBuild { - pname = "shr-tag-pre-highlight"; - ename = "shr-tag-pre-highlight"; - version = "20171113.114"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "shr-tag-pre-highlight.el"; - rev = "6182f43a36b0f82ba6edcf6e423b5f69a46a814e"; - sha256 = "0916bpzi6sw5gyn5xgi9czf35zrvl04w10wz6fvz0lc57giihil1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7be3c139bee02e8bd9a9830026cbfdd17629ac4d/recipes/shr-tag-pre-highlight"; - sha256 = "1v8fqx8bd5504r2mflq6x8xs3k0py3bgsnadz3bjs68yhaxacj3v"; - name = "recipe"; - }; - packageRequires = [ emacs language-detection ]; - meta = { - homepage = "https://melpa.org/#/shr-tag-pre-highlight"; - license = lib.licenses.free; - }; - }) {}; - shrink-path = callPackage ({ dash - , emacs - , f - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shrink-path"; - ename = "shrink-path"; - version = "20170812.1947"; - src = fetchFromGitLab { - owner = "bennya"; - repo = "shrink-path.el"; - rev = "a94c80743280fe317cf56cd4d4cd6385ce9e3dfb"; - sha256 = "1s5ax71qi8pl8jsc49yaqrhfvxmc4z4hjzmy1fhfr1qjmxl5d08i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86b0d105e8a57d5f0bcde779441dc80b85e170ea/recipes/shrink-path"; - sha256 = "0fq13c6g7qbq6f2ry9dzdyg1f6p41wimkjcdaj177rnilz77alzb"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/shrink-path"; - license = lib.licenses.free; - }; - }) {}; - shrink-whitespace = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shrink-whitespace"; - ename = "shrink-whitespace"; - version = "20181002.2021"; - src = fetchFromGitLab { - owner = "jcpetkovich"; - repo = "shrink-whitespace.el"; - rev = "0407b89c142bd17e65edb666f35e2c6755bd0867"; - sha256 = "1qxdi2jm3zl5f55c6irsbnxrmqw039pcm99jafn7hg5z5zc3xhbx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a403093706d57887111e0d012e85273addaf0d35/recipes/shrink-whitespace"; - sha256 = "12i6xlcgk27bsdfnlcdjww8vxbx1yilaqa0pkh5n0hxb66zi6x15"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shrink-whitespace"; - license = lib.licenses.free; - }; - }) {}; - shroud = callPackage ({ bui - , dash - , dash-functional - , emacs - , epg ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shroud"; - ename = "shroud"; - version = "20190524.204"; - src = fetchFromGitHub { - owner = "o-nly"; - repo = "emacs-shroud"; - rev = "a7706ee48ef8dc67e6240377c61946c73a7fae3a"; - sha256 = "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e4334a47a173e9cfb1e803d5781317da27702d7/recipes/shroud"; - sha256 = "0s7gap41y2ncnlbj2cc6b2l7q7qc8psxpbznkc71y53ch1mc9isg"; - name = "recipe"; - }; - packageRequires = [ bui dash dash-functional emacs epg s ]; - meta = { - homepage = "https://melpa.org/#/shroud"; - license = lib.licenses.free; - }; - }) {}; - shut-up = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shut-up"; - ename = "shut-up"; - version = "20180628.1130"; - src = fetchFromGitHub { - owner = "cask"; - repo = "shut-up"; - rev = "081d6b01e3ba0e60326558e545c4019219e046ce"; - sha256 = "1bnmrwrhra6cpc3jjgwwzrydj5ps7q2dlkh2ag4j7rkyv4dlk351"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/297d3d88a1dad694d5903072adb679f2194ce444/recipes/shut-up"; - sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/shut-up"; - license = lib.licenses.free; - }; - }) {}; - shx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shx"; - ename = "shx"; - version = "20190602.1425"; - src = fetchFromGitHub { - owner = "riscy"; - repo = "shx-for-emacs"; - rev = "6b53896ad2d80f22454ae8b09dbaa7c352e4e37f"; - sha256 = "1ps4by78ly7incc4s8767wbmcqfw9him3xdaif5akzg4qqymcayb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx"; - sha256 = "0h5ldglx4y85lm0pfilasnch2k82mlr7rb20qvarzwd41hb1az1k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shx"; - license = lib.licenses.free; - }; - }) {}; - sibilant-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sibilant-mode"; - ename = "sibilant-mode"; - version = "20151119.1345"; - src = fetchFromGitHub { - owner = "jbr"; - repo = "sibilant-mode"; - rev = "5baf8c3e80ee0736c7298a2a17fb615ba5ac0d2d"; - sha256 = "0lpr3pcmwn51wl732kb9a2cagrkxjsgk384z2b7cq9zs79mdh616"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de12c8a37d6d42103f437e6bd974a94924242e8f/recipes/sibilant-mode"; - sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sibilant-mode"; - license = lib.licenses.free; - }; - }) {}; - sicp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sicp"; - ename = "sicp"; - version = "20180823.522"; - src = fetchFromGitHub { - owner = "webframp"; - repo = "sicp-info"; - rev = "33acfa10a058aa65b6b22084a5b86a82410d794e"; - sha256 = "1l8isy8kicr4xa6iilxj0cf0f5rqmkidzr6pigql74204db56jhd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1363d7b6e95375ac63f07eed2b3947f4f81bc9ba/recipes/sicp"; - sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sicp"; - license = lib.licenses.free; - }; - }) {}; - side-notes = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "side-notes"; - ename = "side-notes"; - version = "20190523.2132"; - src = fetchgit { - url = "https://git.sr.ht/~pwr/side-notes"; - rev = "6f14e0bc13f586ebfb4c801285aec0d5aac60ac9"; - sha256 = "1s2yh4n9ik03gca1gp1fqdjax9wj8v5xjsj9kysns99nkg8mxy97"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9829ece8343a2a4309b5f7f5e324f0a1145e1e83/recipes/side-notes"; - sha256 = "1adan5v04awjxahmn2ndqj8fns5hkk4am5jnhic9y036qdcpd9mv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/side-notes"; - license = lib.licenses.free; - }; - }) {}; - sift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sift"; - ename = "sift"; - version = "20190521.123"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "sift.el"; - rev = "33b2c9ff964fe53bb55b37429faaa4e903bead7a"; - sha256 = "0cb8rcxl0jwpbgz9kk136l2ranficv8lk85fhvly1lpslbjljds9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sift"; - sha256 = "1kr5rxza5li3zrkfvs91y7dxmn213z0zf836rkwkmwg2b9rmqxvj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sift"; - license = lib.licenses.free; - }; - }) {}; - signal = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "signal"; - ename = "signal"; - version = "20160816.738"; - src = fetchFromGitHub { - owner = "mola-T"; - repo = "signal"; - rev = "aa58327e2297df921d72a0370468b48663efd438"; - sha256 = "1gzfdk3ks56h8q4xk69aaxkhkg9jhs55iqdicyvq7x9wmjn6b7xw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/signal"; - sha256 = "1g8sbszh7cnhpfaql8jn22bsdjdyjdnjb00xr43krr6smc1dr2xq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/signal"; - license = lib.licenses.free; - }; - }) {}; - signature = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "signature"; - ename = "signature"; - version = "20140730.1249"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "signature"; - rev = "c47df2e1189a84505f9224aa78e87b6c65d13d37"; - sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/signature"; - sha256 = "0y5xspcsjap662n1gp882kjripiz90wwbhsq27c0qwl1zcx5rrkj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/signature"; - license = lib.licenses.free; - }; - }) {}; - silkworm-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "silkworm-theme"; - ename = "silkworm-theme"; - version = "20180301.637"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "silkworm-theme"; - rev = "4a297f952401cfe894dcb24174f6eda05e00fada"; - sha256 = "00kjibpn3ry7j1s6kqmakybialpcx4919344lxks7wij5l6qqxx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9451d247693c3e991f79315868c73808c0a664d4/recipes/silkworm-theme"; - sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/silkworm-theme"; - license = lib.licenses.free; - }; - }) {}; - simp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simp"; - ename = "simp"; - version = "20180606.1954"; - src = fetchFromGitHub { - owner = "re5et"; - repo = "simp"; - rev = "d4d4b8547055347828bedccbeffdb4fd2d5a5d34"; - sha256 = "1a60vk46haibzrm6zgssdw085wpssmmqc66bipvkq6xnp2cvchkc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45ff5b788e12218f8e2df7e53444796ca4b929fc/recipes/simp"; - sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simp"; - license = lib.licenses.free; - }; - }) {}; - simple-bookmarks = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-bookmarks"; - ename = "simple-bookmarks"; - version = "20190204.626"; - src = fetchFromGitHub { - owner = "jtkDvlp"; - repo = "simple-bookmarks"; - rev = "54e8d771bcdb0eb235b31c0aa9642171369500e5"; - sha256 = "0i4yw341b7iml2j8mxclixsrdqlvixfxpabaxp4jh70aq2zfw1cf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a60dd50c388a75ce21a5aec9acf938835d7afdbc/recipes/simple-bookmarks"; - sha256 = "0jn5wzm9y4054mr9czd3224s5kbrqpcpcfmj6fi62yhy3p1ys9rb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/simple-bookmarks"; - license = lib.licenses.free; - }; - }) {}; - simple-call-tree = callPackage ({ anaphora - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-call-tree"; - ename = "simple-call-tree"; - version = "20180224.1256"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "simple-call-tree"; - rev = "20059eb5549408def76aeb03d0d20839903dedef"; - sha256 = "0gvhn2r7h6jz7a3i3a8gwlmghv1xfzj0sdib25kz645iylazji4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/316a5ffcb3080abd623bbe3065077809e6cbfb74/recipes/simple-call-tree"; - sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl"; - name = "recipe"; - }; - packageRequires = [ anaphora emacs ]; - meta = { - homepage = "https://melpa.org/#/simple-call-tree"; - license = lib.licenses.free; - }; - }) {}; - simple-httpd = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-httpd"; - ename = "simple-httpd"; - version = "20190110.705"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-web-server"; - rev = "f1c160f83cbfecc63ec6c6e2a94590b500ecf458"; - sha256 = "1rxc8y0nfhanyp1l6vz20jg2d4wdjwy9gwicpmfhq0nmafxydw7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/simple-httpd"; - sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/simple-httpd"; - license = lib.licenses.free; - }; - }) {}; - simple-mpc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "simple-mpc"; - ename = "simple-mpc"; - version = "20180715.1829"; - src = fetchFromGitHub { - owner = "jorenvo"; - repo = "simple-mpc"; - rev = "bee8520e81292b4c7353e45b193f9a13b482f5b2"; - sha256 = "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62d762308c1ec0c1d8f7b4755b7deb285cbac018/recipes/simple-mpc"; - sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/simple-mpc"; - license = lib.licenses.free; - }; - }) {}; - simple-paren = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-paren"; - ename = "simple-paren"; - version = "20190603.1136"; - src = fetchFromGitHub { - owner = "andreas-roehler"; - repo = "simple-paren"; - rev = "8b03b71303070b05d5def3c8a2564e4b5e67098a"; - sha256 = "1g508x8hf8zlvi6kz9r8jxavl11y47y2gjldjnc6z6ijiqisy3dm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e8886feb4a034fddd40d7381508b09db79f608f/recipes/simple-paren"; - sha256 = "0bmw8pkh9864gymy36r3w5yw08pq894gb1n80wfqls4a78zyvkm3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/simple-paren"; - license = lib.licenses.free; - }; - }) {}; - simple-rtm = callPackage ({ dash - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , rtm }: - melpaBuild { - pname = "simple-rtm"; - ename = "simple-rtm"; - version = "20160222.734"; - src = fetchFromGitLab { - owner = "mbunkus"; - repo = "simple-rtm"; - rev = "37c5feffea7c9b571279b6f549d06cf9c0720273"; - sha256 = "0rwvlhwg66ny0rm972wjfz41ck9kqmbax49wkagrkimm1cdrjfia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a784f931849ca836557390999b179ef9f6e775f3/recipes/simple-rtm"; - sha256 = "0v5f0vr8sh62yvb7znx00wgybb83dfnkvgl8afyk3ry8n9xkhf5b"; - name = "recipe"; - }; - packageRequires = [ dash rtm ]; - meta = { - homepage = "https://melpa.org/#/simple-rtm"; - license = lib.licenses.free; - }; - }) {}; - simple-screen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-screen"; - ename = "simple-screen"; - version = "20161009.220"; - src = fetchFromGitHub { - owner = "wachikun"; - repo = "simple-screen"; - rev = "596e3a451d9af24730ab31a8fe15c91a4264d09d"; - sha256 = "0mqlwrkipgf977s0gx57fv5xrqli67hixprvra6q64isapr86yh1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02db9a649002ed9dec03661a518f74f3c7a176d9/recipes/simple-screen"; - sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simple-screen"; - license = lib.licenses.free; - }; - }) {}; - simpleclip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simpleclip"; - ename = "simpleclip"; - version = "20181105.836"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "simpleclip"; - rev = "2468b08ad829aaf4a90246541978be3974c60ab8"; - sha256 = "1pkv4mi0pmi3hwbl3yyzahin5xv4zkd0jw8xh1cdipymndga4iwq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c921e27d6aafc1b82d37f6beb8407840034377a/recipes/simpleclip"; - sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simpleclip"; - license = lib.licenses.free; - }; - }) {}; - simplenote = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simplenote"; - ename = "simplenote"; - version = "20141118.640"; - src = fetchFromGitHub { - owner = "dotemacs"; - repo = "simplenote.el"; - rev = "734603e877b2d642162ca45f799d2f7b956d2ea0"; - sha256 = "1cqdnnj8pshcxzwb0vivvk8zywbw7a3vibcs88kd9zxkxmdwg0fz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c1c3189da03541e3bee44847ac5d02c2a56ef98/recipes/simplenote"; - sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simplenote"; - license = lib.licenses.free; - }; - }) {}; - simplenote2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred - , unicode-escape - , uuidgen }: - melpaBuild { - pname = "simplenote2"; - ename = "simplenote2"; - version = "20190321.233"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "simplenote2.el"; - rev = "760ffecda63bd218876b623f46d332e3ef079be6"; - sha256 = "1swb6xvdw6dql6wdj8y5kaaicwrafiz5jwnfl5h1viw08b98q8dv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ac16abd2ce075a8bed4b7b52aed71cb12b38518/recipes/simplenote2"; - sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; - name = "recipe"; - }; - packageRequires = [ request-deferred unicode-escape uuidgen ]; - meta = { - homepage = "https://melpa.org/#/simplenote2"; - license = lib.licenses.free; - }; - }) {}; - simplezen = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "simplezen"; - ename = "simplezen"; - version = "20130421.300"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "simplezen.el"; - rev = "9f91554a3f7f4e9b2b5ec009effafbf12b091973"; - sha256 = "04hg5c7pc7ms8kizjzd8s8a70gpkmazkhp8722fxcl0khbv6r3ix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eddd3de86e14f56b59fa6f9a08fc89288e0bdbc1/recipes/simplezen"; - sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/simplezen"; - license = lib.licenses.free; - }; - }) {}; - skeletor = callPackage ({ cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "skeletor"; - ename = "skeletor"; - version = "20190211.1939"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "skeletor.el"; - rev = "47c5b761aee8452716c97a69949ac2f675affe13"; - sha256 = "12bdgykfh4mwsqdazxjdvha62h3q3v33159ypy91f6x59y01fi0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e63aefc869900c2af6f958dc138f9c72c63e2b8/recipes/skeletor"; - sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs f let-alist s ]; - meta = { - homepage = "https://melpa.org/#/skeletor"; - license = lib.licenses.free; - }; - }) {}; - skewer-less = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , skewer-mode }: - melpaBuild { - pname = "skewer-less"; - ename = "skewer-less"; - version = "20160828.1321"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "skewer-less"; - rev = "cc1a8e8fe0b62a08da89c4639fb942f5165454b4"; - sha256 = "0mqrxhy03dwm590shshz63nr2nfn19n6f0p37ybkjwqn0w7b834w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb63f7417f39bd718972f54e57360708eb48b977/recipes/skewer-less"; - sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; - name = "recipe"; - }; - packageRequires = [ skewer-mode ]; - meta = { - homepage = "https://melpa.org/#/skewer-less"; - license = lib.licenses.free; - }; - }) {}; - skewer-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "skewer-mode"; - ename = "skewer-mode"; - version = "20180706.1107"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "skewer-mode"; - rev = "a381049acc4fa2087615b4b3b26c0865841386bd"; - sha256 = "12fsp7mwmjxh5mhshriyxw8mlghzn3gfswf6hkz1hcb0yfd56d53"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode"; - sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/skewer-mode"; - license = lib.licenses.free; - }; - }) {}; - skewer-reload-stylesheets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , skewer-mode }: - melpaBuild { - pname = "skewer-reload-stylesheets"; - ename = "skewer-reload-stylesheets"; - version = "20160725.520"; - src = fetchFromGitHub { - owner = "NateEag"; - repo = "skewer-reload-stylesheets"; - rev = "3207abca9551660407a6b009cb40fb32bbb550da"; - sha256 = "0fgxil70yrf6annrbvza4lqaagrn65c7pmayg6pr16hy5w8wcgsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aeaa2c89b995f1ab0b0f96493db0cda44cc851ee/recipes/skewer-reload-stylesheets"; - sha256 = "1hcz8q7rs5g7gbj6w72g8prry4niqjmyxvvc0ala83qw76x4cm7k"; - name = "recipe"; - }; - packageRequires = [ skewer-mode ]; - meta = { - homepage = "https://melpa.org/#/skewer-reload-stylesheets"; - license = lib.licenses.free; - }; - }) {}; - skype = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "skype"; - ename = "skype"; - version = "20160711.124"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-skype"; - rev = "8e3b33e620ed355522aa36434ff41e3ced080629"; - sha256 = "078gjgknsrm1n2f0diian9l056kqh1fj2w0y6ildsvzjipygdz1y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3448698a35c9d5d25639f62024f89cac03d5830/recipes/skype"; - sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/skype"; - license = lib.licenses.free; - }; - }) {}; - sl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sl"; - ename = "sl"; - version = "20161217.604"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "sl.el"; - rev = "0882117728be91276b815e18c2a66106bf9d69d3"; - sha256 = "1cr3ilf96d8kkyc48nasd4iy2q84kkxjssmvlclanss1hj95nj2l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7188a93d33e38f360930b5090c6ef872116f8a7c/recipes/sl"; - sha256 = "0h90ajikr6kclsy73vs9f50jg8z3d6kqbpanm9ryh2pw3sd4rnii"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sl"; - license = lib.licenses.free; - }; - }) {}; - slack = callPackage ({ alert - , circe - , emojify - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , oauth2 - , request - , websocket }: - melpaBuild { - pname = "slack"; - ename = "slack"; - version = "20190519.16"; - src = fetchFromGitHub { - owner = "yuya373"; - repo = "emacs-slack"; - rev = "9ffc865097f5e4d779e2dace43b00a4a10305719"; - sha256 = "1aagdhc68dcx8jnv7vbrl0vrz4dm28r0w5ml3z3bdvx0ng7ffir2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0258cc41de809b67811a5dde3d475c429df0695/recipes/slack"; - sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp"; - name = "recipe"; - }; - packageRequires = [ alert circe emojify oauth2 request websocket ]; - meta = { - homepage = "https://melpa.org/#/slack"; - license = lib.licenses.free; - }; - }) {}; - slideview = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slideview"; - ename = "slideview"; - version = "20150324.1540"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-slideview"; - rev = "b6d170bda139aedf81b47dc55cbd1a3af512fb4c"; - sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b250f977f44a08346ee9715b416c9706375227a1/recipes/slideview"; - sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/slideview"; - license = lib.licenses.free; - }; - }) {}; - slim-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slim-mode"; - ename = "slim-mode"; - version = "20170728.648"; - src = fetchFromGitHub { - owner = "slim-template"; - repo = "emacs-slim"; - rev = "3636d18ab1c8b316eea71c4732eb44743e2ded87"; - sha256 = "1sqylm6ipmlh9249mmwfb16b4pv94cvzdwvi3zakdpz713phyjw5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a3b59bdbc53d7c0b4c4d6434689f7aab2546678/recipes/slim-mode"; - sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slim-mode"; - license = lib.licenses.free; - }; - }) {}; - slime = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , macrostep - , melpaBuild }: - melpaBuild { - pname = "slime"; - ename = "slime"; - version = "20190531.834"; - src = fetchFromGitHub { - owner = "slime"; - repo = "slime"; - rev = "01531b09debe1199d9726ed91c4672cd9587fb58"; - sha256 = "12gi3zfn688k61szjyq2czhppwydlxbghpdzsjkcm9c8yyn4md7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47609a81b81330820f6ddf717400dc7fa06aaabf/recipes/slime"; - sha256 = "1ds8iprxr04wdhnnw4129v5l3w3k5rjp5ax156ppqr5i7wxx1zac"; - name = "recipe"; - }; - packageRequires = [ cl-lib macrostep ]; - meta = { - homepage = "https://melpa.org/#/slime"; - license = lib.licenses.free; - }; - }) {}; - slime-company = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "slime-company"; - ename = "slime-company"; - version = "20190117.738"; - src = fetchFromGitHub { - owner = "anwyn"; - repo = "slime-company"; - rev = "7290cbad711a62f76c28e5638d1a4d77197a358c"; - sha256 = "0kslq8kq8dc192bpiaalyqisv3841h3dxy1wxk8hw3nyyww08mgx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abe5036c6de996a723bc800e0f031314e1188660/recipes/slime-company"; - sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; - name = "recipe"; - }; - packageRequires = [ company emacs slime ]; - meta = { - homepage = "https://melpa.org/#/slime-company"; - license = lib.licenses.free; - }; - }) {}; - slime-docker = callPackage ({ cl-lib ? null - , docker-tramp - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "slime-docker"; - ename = "slime-docker"; - version = "20190429.1857"; - src = fetchFromGitHub { - owner = "daewok"; - repo = "slime-docker"; - rev = "151cec4a11965cdc00d231900a50f2c9f455fce2"; - sha256 = "1sp6qi2i1cl41ga9y6fwf7q855y0b59fcbxdiggdhigwd5zslzcv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker"; - sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; - name = "recipe"; - }; - packageRequires = [ cl-lib docker-tramp emacs slime ]; - meta = { - homepage = "https://melpa.org/#/slime-docker"; - license = lib.licenses.free; - }; - }) {}; - slime-repl-ansi-color = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "slime-repl-ansi-color"; - ename = "slime-repl-ansi-color"; - version = "20190426.714"; - src = fetchFromGitLab { - owner = "augfab"; - repo = "slime-repl-ansi-color"; - rev = "fdd0c7a75a217abca2ff16ab9281d55f392bd841"; - sha256 = "0d3q9js5vybddniyirvvabljmxasgdqimjdpy7pn48hh4rd875di"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07fd791e2674ce3c773e2c213e045d6c7d12d848/recipes/slime-repl-ansi-color"; - sha256 = "187xs5gfwjpkg31zhrrivjkp0j8wrr2xbjszr1hayzx5c8d7yz39"; - name = "recipe"; - }; - packageRequires = [ emacs slime ]; - meta = { - homepage = "https://melpa.org/#/slime-repl-ansi-color"; - license = lib.licenses.free; - }; - }) {}; - slime-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slime-theme"; - ename = "slime-theme"; - version = "20170808.622"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-slime-theme"; - rev = "8e5880ac69e0b6a079103001cc3a90bdb688998f"; - sha256 = "0g90ypwyvpdzilvhj0rgfrp78a5gflply3rix2wx8rncw569qb6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/641d1959bd31598fcdacd39a3d1bb077dcccfa5c/recipes/slime-theme"; - sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/slime-theme"; - license = lib.licenses.free; - }; - }) {}; - slime-volleyball = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slime-volleyball"; - ename = "slime-volleyball"; - version = "20140717.2141"; - src = fetchFromGitHub { - owner = "fitzsim"; - repo = "slime-volleyball"; - rev = "159b5c0f40b109e3854e94b89ec5383854c46ae3"; - sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/853f47f469e372bdbae40f3cea60d9598e966fab/recipes/slime-volleyball"; - sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slime-volleyball"; - license = lib.licenses.free; - }; - }) {}; - slirm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slirm"; - ename = "slirm"; - version = "20160201.625"; - src = fetchFromGitHub { - owner = "fbie"; - repo = "slirm"; - rev = "9adfbe1fc67580e7d0d90f7e927a25d63a797464"; - sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6407db0f265c49fdddaa6e8f85f295e2b90a077b/recipes/slirm"; - sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/slirm"; - license = lib.licenses.free; - }; - }) {}; - slovak-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slovak-holidays"; - ename = "slovak-holidays"; - version = "20150418.155"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "slovak-holidays"; - rev = "effb16dfcd14797bf7448f5113085479db339c02"; - sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5c6b2208ef209dfe57c2c137a88ce08a4eae475/recipes/slovak-holidays"; - sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slovak-holidays"; - license = lib.licenses.free; - }; - }) {}; - slow-keys = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slow-keys"; - ename = "slow-keys"; - version = "20180830.2159"; - src = fetchFromGitHub { - owner = "manuel-uberti"; - repo = "slow-keys"; - rev = "b93ad77f9fc1d14e080d7d64864fc9cb222248b6"; - sha256 = "1s4yk6w9fqf6hmimjcq8r7b54v7f2hz3isihiaidj3sv5zclhflw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d16756967dd9077399b92cde2ddd7784739b693/recipes/slow-keys"; - sha256 = "03p0qx8a3g8mapjhdf9pjp3n0ng2pxmizpqn87wk8mbc8cmlwk2w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/slow-keys"; - license = lib.licenses.free; - }; - }) {}; - slstats = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slstats"; - ename = "slstats"; - version = "20170823.149"; - src = fetchFromGitHub { - owner = "davep"; - repo = "slstats.el"; - rev = "e9696066abf3f2b7b818a57c062530dfd9377033"; - sha256 = "1mjzr6lqcyx3clp3bxq77k2rpkaglnq407xdk05xkaqissirpc83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe7c8c241cc6920bbedb6711db63ea28ed633327/recipes/slstats"; - sha256 = "0z5y2fmb3v16g5gf87c9gll04wbjp3d1cf7gm5cxi4w3y1kw4r7q"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/slstats"; - license = lib.licenses.free; - }; - }) {}; - sly = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sly"; - ename = "sly"; - version = "20190523.1101"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly"; - rev = "ff9741599ab32b2182402307ad79049330669bf9"; - sha256 = "098sc5h1ajqp68y0sfs2lf9a5jlr9s8v0mh2cvk87nyl77ld9crz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/974d8812a4c5e45221ce3c32ae72c15ed29665c3/recipes/sly"; - sha256 = "000g5qpy45zqrh3g4mk70mh2lakadfq18djrq7cabagw1qmhqy41"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sly"; - license = lib.licenses.free; - }; - }) {}; - sly-asdf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-asdf"; - ename = "sly-asdf"; - version = "20190428.1547"; - src = fetchFromGitHub { - owner = "mmgeorge"; - repo = "sly-asdf"; - rev = "f6e434fad349ca54b151fd46db87423219d2b40c"; - sha256 = "09giv87ys3gcmvnp8f60gg96v6ibcqwj3ysavr1jjh7nh047pjyi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09e59410bebffb8ab7e3236ee97f692665833f31/recipes/sly-asdf"; - sha256 = "1fn1gm439x1axmslgcxinj8lx2vh7jq2qjbxpyjgv5lj9wia0bzi"; - name = "recipe"; - }; - packageRequires = [ emacs sly ]; - meta = { - homepage = "https://melpa.org/#/sly-asdf"; - license = lib.licenses.free; - }; - }) {}; - sly-hello-world = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-hello-world"; - ename = "sly-hello-world"; - version = "20160119.636"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly-hello-world"; - rev = "1bfcca692b6ec0670ed309ffe29eb9384397c183"; - sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-hello-world"; - sha256 = "0mry5r0qc2w9k31kifqfc9slmh8mp2pz44qb36f41i3znckf7xy4"; - name = "recipe"; - }; - packageRequires = [ sly ]; - meta = { - homepage = "https://melpa.org/#/sly-hello-world"; - license = lib.licenses.free; - }; - }) {}; - sly-macrostep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , macrostep - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-macrostep"; - ename = "sly-macrostep"; - version = "20160119.434"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly-macrostep"; - rev = "b0830871e2bd96ed58876aed6b49f1328d78a3cb"; - sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-macrostep"; - sha256 = "0gg9r5np2008593n1igq5chda1a3x1iblj0r4mqnnxa0r1hdsw3j"; - name = "recipe"; - }; - packageRequires = [ macrostep sly ]; - meta = { - homepage = "https://melpa.org/#/sly-macrostep"; - license = lib.licenses.free; - }; - }) {}; - sly-named-readtables = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-named-readtables"; - ename = "sly-named-readtables"; - version = "20150817.816"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly-named-readtables"; - rev = "f3c28a2e636bd1776b6c7dbc563ef5080bed9f5c"; - sha256 = "1yw1fg1vc6l85v7d6bg16lknxpg7ns1gfw0bxyzyb698zmwzsv60"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-named-readtables"; - sha256 = "0wy0z9m8632qlcxb4pw3csc52yaq7dj7gdf3pbg0wb67f32ihihz"; - name = "recipe"; - }; - packageRequires = [ sly ]; - meta = { - homepage = "https://melpa.org/#/sly-named-readtables"; - license = lib.licenses.free; - }; - }) {}; - sly-quicklisp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-quicklisp"; - ename = "sly-quicklisp"; - version = "20170112.135"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly-quicklisp"; - rev = "8a9e3c0c07c6861ec33b338cc46ac12e7ce6a477"; - sha256 = "17xx79s2nx8prmg0xhfs9i8sdprbysaajc8k4131lnahj65v159l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/sly-quicklisp"; - sha256 = "0j0qkvs2v563dz2rd70dfmd0qpdwicymx59zv3gn57z5a8m14866"; - name = "recipe"; - }; - packageRequires = [ sly ]; - meta = { - homepage = "https://melpa.org/#/sly-quicklisp"; - license = lib.licenses.free; - }; - }) {}; - sly-repl-ansi-color = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sly }: - melpaBuild { - pname = "sly-repl-ansi-color"; - ename = "sly-repl-ansi-color"; - version = "20171020.816"; - src = fetchFromGitHub { - owner = "PuercoPop"; - repo = "sly-repl-ansi-color"; - rev = "b9cd52d1cf927bf7e08582d46ab0bcf1d4fb5048"; - sha256 = "0fgcn6bwgz8yyjza07kfi86siargvpq4kp4j20hs6b67ckxjxx0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/981e01f562c40e02cb6d56dc1347e922fbad9c18/recipes/sly-repl-ansi-color"; - sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi"; - name = "recipe"; - }; - packageRequires = [ cl-lib sly ]; - meta = { - homepage = "https://melpa.org/#/sly-repl-ansi-color"; - license = lib.licenses.free; - }; - }) {}; - smart-backspace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-backspace"; - ename = "smart-backspace"; - version = "20171013.2226"; - src = fetchFromGitHub { - owner = "itome"; - repo = "smart-backspace"; - rev = "acb390628a181a993aa0d137624f2e5283efa6d9"; - sha256 = "08r2821skwvi9gbkj3l8zzvrizbfs3wapzxppgd0ks2mfhcnsqsl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88cd95cd623fb00d1bc6800c1dd3c665a0cce349/recipes/smart-backspace"; - sha256 = "152xdxzrr91qiyq25ghvjlbpc627cw4s120axmz2p2d48pinwir9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-backspace"; - license = lib.licenses.free; - }; - }) {}; - smart-comment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-comment"; - ename = "smart-comment"; - version = "20160322.1139"; - src = fetchFromGitHub { - owner = "paldepind"; - repo = "smart-comment"; - rev = "ad4e0de29115dc010733b9060d3dab02836b15e1"; - sha256 = "0hg0mabh06ggqcfhcjxbw5hsbrk85bk21hafqlvpd0xizwqq0w0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/798c3b42e568bea63edc0c1d3ce2c2d913e3440e/recipes/smart-comment"; - sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-comment"; - license = lib.licenses.free; - }; - }) {}; - smart-compile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-compile"; - ename = "smart-compile"; - version = "20190522.425"; - src = fetchFromGitHub { - owner = "zenitani"; - repo = "elisp"; - rev = "366a4cdab1ad20105910bc24c4f3e4f8734e4eae"; - sha256 = "1kk7ya14p4vpw31rzcgwq0pmay0wm3pg2j70fv5mms9ala1jyhsy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93562afd7b62d7535b8010179ba6ac7e8e6280d0/recipes/smart-compile"; - sha256 = "1w3vyb6wz786ydrywkjmazyvgfl0qxamn0fgnqpn17d2c5jr9c4g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-compile"; - license = lib.licenses.free; - }; - }) {}; - smart-cursor-color = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-cursor-color"; - ename = "smart-cursor-color"; - version = "20141124.919"; - src = fetchFromGitHub { - owner = "7696122"; - repo = "smart-cursor-color"; - rev = "fda3510b23a118f152ece09af88c727065ba016a"; - sha256 = "0f6f7vw6kcifl4f9mwxrb6h90r6vmrcf0ayk37g3ymz6k5blj3q4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smart-cursor-color"; - sha256 = "19ah55514ashkm4f49nlbnrpwxpwlfn6x3fbi4dv0x2b8v1828ss"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-cursor-color"; - license = lib.licenses.free; - }; - }) {}; - smart-dash = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-dash"; - ename = "smart-dash"; - version = "20110130.1916"; - src = fetchhg { - url = "https://bitbucket.com/malsyned/smart-dash"; - rev = "f8f23121ecb1"; - sha256 = "069jwi74qh9hy152k19c7avdgb89zym989v92kgghbaaiyinng22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98a2cf93cc41cb2bba14f91a83b6949267623198/recipes/smart-dash"; - sha256 = "1n3lh0ximwrqawdg8q9ls6aabidrawqca5w67f8vsfmrvyfx48n4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-dash"; - license = lib.licenses.free; - }; - }) {}; - smart-forward = callPackage ({ expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-forward"; - ename = "smart-forward"; - version = "20140430.13"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "smart-forward.el"; - rev = "7b6dbfdbd4b646376a567c70e1a161545431b72b"; - sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-forward"; - sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c"; - name = "recipe"; - }; - packageRequires = [ expand-region ]; - meta = { - homepage = "https://melpa.org/#/smart-forward"; - license = lib.licenses.free; - }; - }) {}; - smart-hungry-delete = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-hungry-delete"; - ename = "smart-hungry-delete"; - version = "20170412.643"; - src = fetchFromGitHub { - owner = "hrehfeld"; - repo = "emacs-smart-hungry-delete"; - rev = "bae1bdf9647dfe0f92cb138fbadf7ee0f842453d"; - sha256 = "120sg7wfq3nly0qwbchhmwjrg8cdra0g3y08fk5zfngc3ddh3gk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abbf52a856b95ab88cde1fdeeebebb81f7c61fa9/recipes/smart-hungry-delete"; - sha256 = "03hw5p055dbayw5z43c1ippf2lnjgs77l7q969ng3fffqkazjq9b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smart-hungry-delete"; - license = lib.licenses.free; - }; - }) {}; - smart-indent-rigidly = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-indent-rigidly"; - ename = "smart-indent-rigidly"; - version = "20141205.1615"; - src = fetchFromGitHub { - owner = "re5et"; - repo = "smart-indent-rigidly"; - rev = "323d1fe4d0b81e598249aad01bc44adb180ece0e"; - sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3083f497180d2f7d93bb9a4b98af6ae1bcbe57b9/recipes/smart-indent-rigidly"; - sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-indent-rigidly"; - license = lib.licenses.free; - }; - }) {}; - smart-jump = callPackage ({ dumb-jump - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-jump"; - ename = "smart-jump"; - version = "20190422.1858"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "smart-jump"; - rev = "7df77da872dc836dbf032388fc6de82dbc9fa22c"; - sha256 = "0w8jfsm6k2ayk0hg0imsm2vv8y5im5crlij9zi18iwa1mrqkmhsp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52f29e14e61b28cd1637ca5d6bd878d91a71251f/recipes/smart-jump"; - sha256 = "14c7p6xqasd0fgn70zj1jlpwjxldzqx44bcdqdk6nmjihw0rk632"; - name = "recipe"; - }; - packageRequires = [ dumb-jump emacs ]; - meta = { - homepage = "https://melpa.org/#/smart-jump"; - license = lib.licenses.free; - }; - }) {}; - smart-mark = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-mark"; - ename = "smart-mark"; - version = "20150911.1910"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "smart-mark"; - rev = "d179cdc3f53001a5ce99d5095f493cdf3a792567"; - sha256 = "0kd3rh6idlaqand9i6sc44s1iahg5jdhqs9jpvivxlycj6z9p7m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/smart-mark"; - sha256 = "0kx34983qqxkx2afql1daj155294dkbinw861lhx537614fq7wmn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-mark"; - license = lib.licenses.free; - }; - }) {}; - smart-mode-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rich-minority }: - melpaBuild { - pname = "smart-mode-line"; - ename = "smart-mode-line"; - version = "20190527.456"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "smart-mode-line"; - rev = "999be065b195f2eddb4e1b629f99038d832d44b7"; - sha256 = "0jyvyn7pkqvyyv1rga3i10f4cwfbb0miacbib8lsrrhayrnal186"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line"; - sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; - name = "recipe"; - }; - packageRequires = [ emacs rich-minority ]; - meta = { - homepage = "https://melpa.org/#/smart-mode-line"; - license = lib.licenses.free; - }; - }) {}; - smart-mode-line-atom-one-dark-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smart-mode-line }: - melpaBuild { - pname = "smart-mode-line-atom-one-dark-theme"; - ename = "smart-mode-line-atom-one-dark-theme"; - version = "20181220.956"; - src = fetchFromGitHub { - owner = "daviderestivo"; - repo = "smart-mode-line-atom-one-dark-theme"; - rev = "79261aeafa89664039201e3d3f405bc8b0a6aa8d"; - sha256 = "06x1na621cm7183im2g2gxkvaqm0yfr9b9i0fbz9bwkcmijxrgmw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a6f3addec8d8fa957bfbc81071d3a434e843cf0/recipes/smart-mode-line-atom-one-dark-theme"; - sha256 = "02hasm2vjvw3r9xkdnn2ddsval8vvhvx15dsac0jp3cc1y1qkm27"; - name = "recipe"; - }; - packageRequires = [ emacs smart-mode-line ]; - meta = { - homepage = "https://melpa.org/#/smart-mode-line-atom-one-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - smart-mode-line-powerline-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline - , smart-mode-line }: - melpaBuild { - pname = "smart-mode-line-powerline-theme"; - ename = "smart-mode-line-powerline-theme"; - version = "20160705.1738"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "smart-mode-line"; - rev = "558251e200cc555df137e60326295f2bd640fd6a"; - sha256 = "1xh1qcxw0r3j8hx8k8hsx0cl82wps5x755j4kbn01m7srzv6v167"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60072b183151e519d141ec559b4902d20c87904c/recipes/smart-mode-line-powerline-theme"; - sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; - name = "recipe"; - }; - packageRequires = [ emacs powerline smart-mode-line ]; - meta = { - homepage = "https://melpa.org/#/smart-mode-line-powerline-theme"; - license = lib.licenses.free; - }; - }) {}; - smart-newline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-newline"; - ename = "smart-newline"; - version = "20131207.1940"; - src = fetchFromGitHub { - owner = "ainame"; - repo = "smart-newline.el"; - rev = "c50ab035839b307c66d439083b6761cb7db5e972"; - sha256 = "1k853hngjrhp7n1bj18p2pk30adzk7j03knhl9i3889lfmd5p4yi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f729926f82d6b61f07f5c8a5e19d46afdcad568/recipes/smart-newline"; - sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-newline"; - license = lib.licenses.free; - }; - }) {}; - smart-region = callPackage ({ cl-lib ? null - , emacs - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "smart-region"; - ename = "smart-region"; - version = "20150903.703"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "smart-region"; - rev = "5a8017fd8e8dc3483865951c4942cab3f96f69f6"; - sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf011493ee3ebc38290ee0349c8475b0588ac928/recipes/smart-region"; - sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs expand-region multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/smart-region"; - license = lib.licenses.free; - }; - }) {}; - smart-semicolon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-semicolon"; - ename = "smart-semicolon"; - version = "20171007.1833"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "smart-semicolon"; - rev = "94cf665aed45c5882e94afe465704fed6326e92e"; - sha256 = "16nkxf8phxi240fd9ksazxmjs91j0xplny6890a06kx4r8s61p9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe339b95636b02ceb157294055d2f5f4c4b0b8cf/recipes/smart-semicolon"; - sha256 = "1vq6l3vc615w0p640wy226z5i7dky666sgzczkngv07kag0iwqp0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smart-semicolon"; - license = lib.licenses.free; - }; - }) {}; - smart-shift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-shift"; - ename = "smart-shift"; - version = "20150202.2325"; - src = fetchFromGitHub { - owner = "hbin"; - repo = "smart-shift"; - rev = "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae"; - sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/79726ff0fbfa24a44d303cc9719f5962638b47e0/recipes/smart-shift"; - sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-shift"; - license = lib.licenses.free; - }; - }) {}; - smart-tab = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-tab"; - ename = "smart-tab"; - version = "20170902.1407"; - src = fetchFromGitHub { - owner = "genehack"; - repo = "smart-tab"; - rev = "76a8ec13384975d39aa1b25e5384a02558dba574"; - sha256 = "02mj2is05adq5v64aahivbkx2kzrxmmg2va650hsvl4izj3dr2x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/smart-tab"; - sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-tab"; - license = lib.licenses.free; - }; - }) {}; - smart-tabs-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-tabs-mode"; - ename = "smart-tabs-mode"; - version = "20160629.752"; - src = fetchFromGitHub { - owner = "jcsalomon"; - repo = "smarttabs"; - rev = "1b2f34cc33335486f2b08b864a8037092c1a2956"; - sha256 = "07zc2iw5ijyn822z29g5xb6hhhdmg9b98pfrdwrm0kw86pypxyxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d712f0fb9538945713faf773772bb359fe6f509f/recipes/smart-tabs-mode"; - sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-tabs-mode"; - license = lib.licenses.free; - }; - }) {}; - smart-window = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-window"; - ename = "smart-window"; - version = "20160716.1830"; - src = fetchFromGitHub { - owner = "dryman"; - repo = "smart-window.el"; - rev = "5996461b7cbc5ab4509ac48537916eb29a8e4c16"; - sha256 = "0p1cqpdsp2vdx85i22shyzfhz22zwf1k1dxkqcmlgh3y7f4qq8ir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smart-window"; - sha256 = "0w24v7v0477yl5zchyk6713yqp8lyfz600myvv4dp3kgppxpgd3f"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/smart-window"; - license = lib.licenses.free; - }; - }) {}; - smartparens = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartparens"; - ename = "smartparens"; - version = "20190522.1534"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "smartparens"; - rev = "d3184b789177da42e2664c79d6c777c1ad69cdfd"; - sha256 = "029amkz34ma3hdji4d1cm29b893x43vxdrsymys7h38nj86fmgpa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens"; - sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/smartparens"; - license = lib.licenses.free; - }; - }) {}; - smartrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartrep"; - ename = "smartrep"; - version = "20150508.1930"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "smartrep.el"; - rev = "f0ff5a6d7b8603603598ae3045c98b011e58d86e"; - sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81cb649dc49767c21f79668d6bee950567b05aa0/recipes/smartrep"; - sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smartrep"; - license = lib.licenses.free; - }; - }) {}; - smartscan = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartscan"; - ename = "smartscan"; - version = "20170211.1233"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "smart-scan"; - rev = "234e077145710a174c20742de792b97ed2f965f6"; - sha256 = "1nzkgfr1w30yi88h4kwgiwq4lcd0fpm1cd50gy0csjcpbnyq6ykf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smartscan"; - sha256 = "1q0lqms16g7avln1pbxzb49z3w96kv1r7lbh61ijlnz3jips098w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smartscan"; - license = lib.licenses.free; - }; - }) {}; - smarty-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smarty-mode"; - ename = "smarty-mode"; - version = "20100703.458"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "smarty-mode"; - rev = "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568"; - sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/smarty-mode"; - sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smarty-mode"; - license = lib.licenses.free; - }; - }) {}; - smbc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smbc"; - ename = "smbc"; - version = "20171229.1008"; - src = fetchFromGitHub { - owner = "sakshamsharma"; - repo = "emacs-smbc"; - rev = "10538e3d575ba6ef3c94d555af2744b42dfd36c7"; - sha256 = "0b2fndvp9kzlr65b0gr0z5hmapa4y96a6zvc2nrlijffkgyk05nn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05b4f16cd8028edc758ada842432df11c8276fd3/recipes/smbc"; - sha256 = "0aviqa8mk8dxxnddfskq9jgz3knqhf0frj7gq7nk6ckxkrxrgqn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smbc"; - license = lib.licenses.free; - }; - }) {}; - smblog = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smblog"; - ename = "smblog"; - version = "20170419.321"; - src = fetchFromGitHub { - owner = "aaptel"; - repo = "smblog-mode"; - rev = "5245e7aeac20915121946f59bba30899305d950b"; - sha256 = "0i5q29b3hk644dnc0d98d613l065p0k846ljg13vgawpiic6ld6b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6469537a11972509fa2bfb10eb3f8816cc98efed/recipes/smblog"; - sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smblog"; - license = lib.licenses.free; - }; - }) {}; - smeargle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smeargle"; - ename = "smeargle"; - version = "20161212.1558"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-smeargle"; - rev = "0665b1ff5109731898bc4a0ca6d939933b804777"; - sha256 = "0p0kxmjdr02l9injlyyrnnzqdbb7mirz1xx79c3lw1rgpalf0jnf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5b985b24a23499454dc61bf071073df325de571/recipes/smeargle"; - sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smeargle"; - license = lib.licenses.free; - }; - }) {}; - smex = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smex"; - ename = "smex"; - version = "20151212.1409"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "smex"; - rev = "55aaebe3d793c2c990b39a302eb26c184281c42c"; - sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/smex"; - sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smex"; - license = lib.licenses.free; - }; - }) {}; - smiles-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smiles-mode"; - ename = "smiles-mode"; - version = "20160717.420"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "smiles-mode"; - rev = "fbb381758adcb000a0c304be1b797f985f00e2de"; - sha256 = "07lzr1p58v95a4n6zad8y0dpj7chbxlcmb6s144pvcxx8kjwd4dr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smiles-mode"; - sha256 = "0wf02aj9bhl2m861342f5jfkx3xws1ggcyszfp9jphlykw6r0v9k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smiles-mode"; - license = lib.licenses.free; - }; - }) {}; - sml-modeline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sml-modeline"; - ename = "sml-modeline"; - version = "20170614.1411"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "sml-modeline"; - rev = "d2f9f70174c4cf68c67eb3bb8088235735e34d9a"; - sha256 = "18k2k213vgawxskp9m57r8qarg3pnza6nvbpyi6l03jnmf2kcw2b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4728fce21f03c95bcc2b562648e99c537fb09cd8/recipes/sml-modeline"; - sha256 = "00kz03ixkfnm4id8dd8aij2rhakzd4arzd790jdac1y3yyd5pp3y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sml-modeline"; - license = lib.licenses.free; - }; - }) {}; - smmry = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smmry"; - ename = "smmry"; - version = "20161024.201"; - src = fetchFromGitHub { - owner = "microamp"; - repo = "smmry.el"; - rev = "b7ee765337fa627a6c59eb4f2a91df5d280ac6df"; - sha256 = "0hzs8xi7n3bsqwm3nlm3vk8p2p33ydwxpwk9wp3325g03jl921in"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba2d4be4dd4d6c378eabd833f05a944afa21817b/recipes/smmry"; - sha256 = "05ikcvyr74jy3digd0ad443h5kf11w29hgnmb71bclm3mfslh5wn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smmry"; - license = lib.licenses.free; - }; - }) {}; - smooth-scroll = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smooth-scroll"; - ename = "smooth-scroll"; - version = "20130321.2114"; - src = fetchFromGitHub { - owner = "k-talo"; - repo = "smooth-scroll.el"; - rev = "02320f28abb5cae28b3a18f6b9ce93129bdbfc45"; - sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ad6411f76281232848c870e8f4f5bb78e6cf328/recipes/smooth-scroll"; - sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smooth-scroll"; - license = lib.licenses.free; - }; - }) {}; - smooth-scrolling = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smooth-scrolling"; - ename = "smooth-scrolling"; - version = "20161002.1249"; - src = fetchFromGitHub { - owner = "aspiers"; - repo = "smooth-scrolling"; - rev = "2462c13640aa4c75ab3ddad443fedc29acf68f84"; - sha256 = "1h15gjq781i6fsz32qlh51knawdr8hcqvshsz6cszp752cibdcdg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e156f146649a51f6ee636aef95214944a8079a27/recipes/smooth-scrolling"; - sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smooth-scrolling"; - license = lib.licenses.free; - }; - }) {}; - smotitah = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smotitah"; - ename = "smotitah"; - version = "20150218.230"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "smotitah"; - rev = "f9ab562128a5460549d016913533778e8c94bcf3"; - sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/326c213450fc515573b963e794584b7b5ac995fa/recipes/smotitah"; - sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smotitah"; - license = lib.licenses.free; - }; - }) {}; - smtpmail-multi = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smtpmail-multi"; - ename = "smtpmail-multi"; - version = "20160218.1549"; - src = fetchFromGitHub { - owner = "vapniks"; - repo = "smtpmail-multi"; - rev = "81eabfe56f620ee044ff9dd52fa8b6148d0a9f30"; - sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/835315ec2781ac90785824630510b9eae80c115a/recipes/smtpmail-multi"; - sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smtpmail-multi"; - license = lib.licenses.free; - }; - }) {}; - smyx-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smyx-theme"; - ename = "smyx-theme"; - version = "20141127.28"; - src = fetchFromGitHub { - owner = "tacit7"; - repo = "smyx"; - rev = "6263f6b401bbabaed388c8efcfc0be2e58c51401"; - sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/40a1aeabb75438252ebea0332fe1deaf028c956d/recipes/smyx-theme"; - sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smyx-theme"; - license = lib.licenses.free; - }; - }) {}; - snakemake-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "snakemake-mode"; - ename = "snakemake-mode"; - version = "20190411.1928"; - src = fetchFromGitHub { - owner = "kyleam"; - repo = "snakemake-mode"; - rev = "d49c6580e5e01a5e80198f4026caf1d5a717f8a0"; - sha256 = "0lxxd0a735sy4igncf6f0ljk2wy38x2pm1yq90gxymwi26j75ram"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode"; - sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs magit-popup ]; - meta = { - homepage = "https://melpa.org/#/snakemake-mode"; - license = lib.licenses.free; - }; - }) {}; - snapshot-timemachine = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snapshot-timemachine"; - ename = "snapshot-timemachine"; - version = "20161221.129"; - src = fetchFromGitHub { - owner = "mrBliss"; - repo = "snapshot-timemachine"; - rev = "99efcebab309b11ed512a8dc62555d3834df5efb"; - sha256 = "18qibcyqxjwpvphmpghppb8ky1xcch1dd4pz91qj5f4h42684ips"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69376b802f0687227a78838877d89163b2893c5b/recipes/snapshot-timemachine"; - sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/snapshot-timemachine"; - license = lib.licenses.free; - }; - }) {}; - snapshot-timemachine-rsnapshot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq - , snapshot-timemachine }: - melpaBuild { - pname = "snapshot-timemachine-rsnapshot"; - ename = "snapshot-timemachine-rsnapshot"; - version = "20170324.513"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "snapshot-timemachine-rsnapshot"; - rev = "72b0b700d80f1a0442e62bbbb6a0c8c59182f97f"; - sha256 = "1bdy7p0bjfdlv6l6yih6fvvi7xpldal4rj8l2ajpc6sgby24h8bb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94358fb8d1486491903c331d9e90ba5198117aa8/recipes/snapshot-timemachine-rsnapshot"; - sha256 = "0fxijd94p961ab0p4ddmhja4bfrif2d87v32g4c41amc1klyf25r"; - name = "recipe"; - }; - packageRequires = [ seq snapshot-timemachine ]; - meta = { - homepage = "https://melpa.org/#/snapshot-timemachine-rsnapshot"; - license = lib.licenses.free; - }; - }) {}; - snazzy-theme = callPackage ({ base16-theme - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snazzy-theme"; - ename = "snazzy-theme"; - version = "20170823.1132"; - src = fetchFromGitHub { - owner = "weijiangan"; - repo = "emacs-snazzy"; - rev = "8729d10b5c1edf1053800170dab1ffd820b6fff2"; - sha256 = "1c07yggr6cnbca2iag1rjjsp1hiaccix222wzybxrphb72fn93wq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18c89a612418e0f49b7e6ae29a678d2fc1ffaf3d/recipes/snazzy-theme"; - sha256 = "0srmhwhqrp1s01p1znhjzs254l3r2i6c91v7cnlwlvrls1sbh32k"; - name = "recipe"; - }; - packageRequires = [ base16-theme emacs ]; - meta = { - homepage = "https://melpa.org/#/snazzy-theme"; - license = lib.licenses.free; - }; - }) {}; - snippet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snippet"; - ename = "snippet"; - version = "20130210.1515"; - src = fetchFromGitHub { - owner = "pkazmier"; - repo = "snippet.el"; - rev = "11d00dd803874b93836f2010b08bd2c97b0f3c63"; - sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/snippet"; - sha256 = "1yld7y1hsrqs0f0iq7zfwknil5zqv65npm67nh548hbyy3rhgd68"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/snippet"; - license = lib.licenses.free; - }; - }) {}; - snoopy = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snoopy"; - ename = "snoopy"; - version = "20171008.1304"; - src = fetchFromGitHub { - owner = "anmonteiro"; - repo = "snoopy-mode"; - rev = "ec4123bdebfe0bb7bf4feaac2dc02b59caffe386"; - sha256 = "01l44lshw0zvykay9886s1vqryanagkd4ciw3ramchn0baqz11vl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a882cd92964ac195a09469006c9a44dc202f000/recipes/snoopy"; - sha256 = "1wa8jykqyj6rxqfhwbiyli6yh8s7n0pqv7fc9sfaymarda93zbgi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/snoopy"; - license = lib.licenses.free; - }; - }) {}; - soar-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "soar-mode"; - ename = "soar-mode"; - version = "20190503.1143"; - src = fetchFromGitHub { - owner = "adeschamps"; - repo = "soar-mode"; - rev = "ebb79789cd35530aea2c6d0eb4f4b280e97107d4"; - sha256 = "1hy77nb1mv6np9424z8ri0rxjzh0pjizyx7vajxwd6m1zcv9xixq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/818113ef6f93cc86fd30441d508012e5baa71893/recipes/soar-mode"; - sha256 = "0jm4vllbppzs2vvkky96hwdv581142dxdfssrp6wsd56j38nr9sd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/soar-mode"; - license = lib.licenses.free; - }; - }) {}; - socyl = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "socyl"; - ename = "socyl"; - version = "20170211.2242"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "socyl"; - rev = "1ef2da42f66f3ab31a34131e51648f352416f0ba"; - sha256 = "0jks5dkxhhgh4gbli90p71s8354iywlwj2lq6n5fyqxbdxzk412d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/774b3006f5b6b781594257f1d9819068becbbcc1/recipes/socyl"; - sha256 = "00b7x247cyjh4gci101fq1j6708vbcz1g9ls3845w863wjf6m5sz"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/socyl"; - license = lib.licenses.free; - }; - }) {}; - soft-charcoal-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "soft-charcoal-theme"; - ename = "soft-charcoal-theme"; - version = "20140420.943"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "soft-charcoal-theme"; - rev = "5607ab977fae6638e78b1495e02da8955c9ba19f"; - sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/soft-charcoal-theme"; - sha256 = "1j9yd4kfh7ih5ipmwvxh9qqq6wxv6qk8a9vb5jiyk90dn8a2d7g5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/soft-charcoal-theme"; - license = lib.licenses.free; - }; - }) {}; - soft-morning-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "soft-morning-theme"; - ename = "soft-morning-theme"; - version = "20150918.1341"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "soft-morning-theme"; - rev = "c0f9c70c97ef2be2a093cf839c4bfe27740a111c"; - sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26f26cb5cd4ed288a042d37039da83b38b9923d0/recipes/soft-morning-theme"; - sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/soft-morning-theme"; - license = lib.licenses.free; - }; - }) {}; - soft-stone-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "soft-stone-theme"; - ename = "soft-stone-theme"; - version = "20140614.135"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "soft-stone-theme"; - rev = "fb475514cfb02cf30ce358a61c48e46614344d48"; - sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e87cea74119e8239662607072a44e5314eeae7ea/recipes/soft-stone-theme"; - sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/soft-stone-theme"; - license = lib.licenses.free; - }; - }) {}; - solaire-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solaire-mode"; - ename = "solaire-mode"; - version = "20190424.1742"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-solaire-mode"; - rev = "77b12d27ae733adc6e8762b9e276e40c94d31f92"; - sha256 = "1nz381ka62885sq81qzh2gnm1qbd6d13z6pksqnhivjs7qn0nnlq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode"; - sha256 = "0pvgip12xl16rwz4wqmqjd8nhh3a299aknfsghazmxigamlmlsl5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/solaire-mode"; - license = lib.licenses.free; - }; - }) {}; - solarized-theme = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solarized-theme"; - ename = "solarized-theme"; - version = "20190513.5"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "solarized-emacs"; - rev = "c42a932e5c467c1ce12c42276d35bfb8f666e96d"; - sha256 = "1m6grd8ym4azxi09ya236vil9ylqalli99p9fafd5zmzq647l840"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme"; - sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/solarized-theme"; - license = lib.licenses.free; - }; - }) {}; - solidity-flycheck = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , solidity-mode }: - melpaBuild { - pname = "solidity-flycheck"; - ename = "solidity-flycheck"; - version = "20181117.718"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "d6c48a1cb64d3c8a825dc0d06c839f2cacd4d289"; - sha256 = "14v71xf3z60s1fhpsz8b3l1v4na2ds0ddcp41y412fnrg4scbrhr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e561d869f4e32bad5d1a8678f67e591ff586d6de/recipes/solidity-flycheck"; - sha256 = "1lx64y77q33a2lrg5sj5h56gicw1lk8qmxmva5bgc4zxxd8qwz6f"; - name = "recipe"; - }; - packageRequires = [ flycheck solidity-mode ]; - meta = { - homepage = "https://melpa.org/#/solidity-flycheck"; - license = lib.licenses.free; - }; - }) {}; - solidity-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solidity-mode"; - ename = "solidity-mode"; - version = "20190302.109"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "47f15b2663a6cf92ae6ebf655841a9509ad79017"; - sha256 = "0zhr5fcv8vlkcnya36y9smpgw7ylb0fkx0px8zr0zhr2f9xgjmph"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02d3fdae111b14a87aaa7a1b3f44e545c5e3d2ac/recipes/solidity-mode"; - sha256 = "15vz3ayl1p3dn2cavm68rqv901c1b7dxm2j8iazwzj3q15ln8xvn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/solidity-mode"; - license = lib.licenses.free; - }; - }) {}; - sonic-pi = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , highlight - , lib - , melpaBuild - , osc }: - melpaBuild { - pname = "sonic-pi"; - ename = "sonic-pi"; - version = "20171205.405"; - src = fetchFromGitHub { - owner = "repl-electric"; - repo = "sonic-pi.el"; - rev = "3cf101b3b299735ed91658c7791ea4f04164e076"; - sha256 = "1x2w7qcx9xcvagb47hlc5vsf5aj5mr0mzvnazyd7ajjilbzn48yr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sonic-pi"; - sha256 = "0j6n1qgdrma6vvi6f7xiy66qwsl8710pca4ga9i7srhxv0r47x68"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs highlight osc ]; - meta = { - homepage = "https://melpa.org/#/sonic-pi"; - license = lib.licenses.free; - }; - }) {}; - soothe-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "soothe-theme"; - ename = "soothe-theme"; - version = "20141027.741"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-soothe-theme"; - rev = "0568a61eeec0b074d8911886359a6c5da13d14cb"; - sha256 = "089ph9c6ggpfcd06166s2qgsghlfw5kvkbn8mqq6hjlyc5a9mvns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/soothe-theme"; - sha256 = "124akv3a4q4vrmprdcjmq7rq6x73mz4wqxvnlczglh9vjl39ndbk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/soothe-theme"; - license = lib.licenses.free; - }; - }) {}; - sort-words = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sort-words"; - ename = "sort-words"; - version = "20160929.635"; - src = fetchFromGitHub { - owner = "dotemacs"; - repo = "sort-words.el"; - rev = "7b6e108f80237363faf7ec28b2c58dec270b8601"; - sha256 = "18cwii9h2planb9bgrih4hkz2cqinbl8wq5sal4b8kwnaq07bbw7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a4bd566392d7cebe8a891d787439512e8d34cf9/recipes/sort-words"; - sha256 = "1hvbq09byjdbqzbyashw3y1h65wins44jnqcdic7vqzd1p1mzwka"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sort-words"; - license = lib.licenses.free; - }; - }) {}; - sos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "sos"; - ename = "sos"; - version = "20141214.2003"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "emacs-sos"; - rev = "2469bf1d7c47a55b0ffa8a6ceef0bb21252b3c3a"; - sha256 = "0zhz1j389jmfcxmzvp3gj2bkg996nk1mcf0sxw04wbyivh38hnql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/sos"; - sha256 = "0d0n2h7lbif32qgz0z2c36536mrx36d22gq86xm7kmxday6iy19k"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/sos"; - license = lib.licenses.free; - }; - }) {}; - sotclojure = callPackage ({ cider - , clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sotlisp }: - melpaBuild { - pname = "sotclojure"; - ename = "sotclojure"; - version = "20170921.1708"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "speed-of-thought-clojure"; - rev = "ceac82aa691e8d98946471be6aaff9c9a4603c32"; - sha256 = "1a6riq7ksk5m76dsgc75d8b992nyr50l48l8cpms9064m6b0r9jv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2ccef8af91eada4449d9cd4bda6bd28272722e/recipes/sotclojure"; - sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; - name = "recipe"; - }; - packageRequires = [ cider clojure-mode emacs sotlisp ]; - meta = { - homepage = "https://melpa.org/#/sotclojure"; - license = lib.licenses.free; - }; - }) {}; - sotlisp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sotlisp"; - ename = "sotlisp"; - version = "20190211.1226"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "speed-of-thought-lisp"; - rev = "ed2356a325c7a4a88ec1bd31381c8666e8997e97"; - sha256 = "1r7skjxiaqdkrhjrxh1sgzikip9sdr8apphgawvq4x6lir8g8jfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/sotlisp"; - sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sotlisp"; - license = lib.licenses.free; - }; - }) {}; - sound-wav = callPackage ({ cl-lib ? null - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sound-wav"; - ename = "sound-wav"; - version = "20181126.926"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-sound-wav"; - rev = "49a9f10334b914cf6429e49b5449e0711a3aa251"; - sha256 = "1zg32gn0r06qcp6i5fxwns8xv5nqpc6hfzqajwj0hfvhkqdndv4j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8333470e3d84d5433be489a23e065c876bed2ab2/recipes/sound-wav"; - sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred ]; - meta = { - homepage = "https://melpa.org/#/sound-wav"; - license = lib.licenses.free; - }; - }) {}; - soundcloud = callPackage ({ deferred - , emms - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , request - , request-deferred - , string-utils }: - melpaBuild { - pname = "soundcloud"; - ename = "soundcloud"; - version = "20150501.2026"; - src = fetchFromGitHub { - owner = "thieman"; - repo = "soundcloud.el"; - rev = "f998d4276ea90258909c698f6a5a51fccb667c08"; - sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/soundcloud"; - sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c"; - name = "recipe"; - }; - packageRequires = [ - deferred - emms - json - request - request-deferred - string-utils - ]; - meta = { - homepage = "https://melpa.org/#/soundcloud"; - license = lib.licenses.free; - }; - }) {}; - soundklaus = callPackage ({ cl-lib ? null - , dash - , emacs - , emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "soundklaus"; - ename = "soundklaus"; - version = "20160314.531"; - src = fetchFromGitHub { - owner = "r0man"; - repo = "soundklaus.el"; - rev = "09ec030843482594beae2664b8fe1e0ad1e66472"; - sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/811d0f1d195a0c6533fd412f0e444100e0685f90/recipes/soundklaus"; - sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs emms pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/soundklaus"; - license = lib.licenses.free; - }; - }) {}; - sourcekit = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sourcekit"; - ename = "sourcekit"; - version = "20180101.34"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "company-sourcekit"; - rev = "abf9bc5a0102eb666d3aa6d6bf22f6efcc852781"; - sha256 = "1g8a4fgy2c5nqk8gysbnzn5jvfw6ynmfhc6j3hkrbswgf9188v5n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/sourcekit"; - sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs request ]; - meta = { - homepage = "https://melpa.org/#/sourcekit"; - license = lib.licenses.free; - }; - }) {}; - sourcemap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sourcemap"; - ename = "sourcemap"; - version = "20161215.2140"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-sourcemap"; - rev = "64c89d296186f48d9135fb8aad501de19f64bceb"; - sha256 = "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/557d18259543263932fccdbaf44c4e7986bd277b/recipes/sourcemap"; - sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sourcemap"; - license = lib.licenses.free; - }; - }) {}; - sourcerer-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sourcerer-theme"; - ename = "sourcerer-theme"; - version = "20161014.925"; - src = fetchFromGitHub { - owner = "gilbertw1"; - repo = "sourcerer-emacs"; - rev = "c7f8e665d53bb48fb72f95f706710d53d24bd407"; - sha256 = "06bxsbjyrn4grp9i17p90cs4x50cmw62k6a2c6gapkw8f1xbv7xv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8532e062b1830d8cf4e7f72518131a1f32762b37/recipes/sourcerer-theme"; - sha256 = "0xikcln8sz3cic5a77cdvq2aazy1csf1qfxgmcavpqz54ps14j1z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sourcerer-theme"; - license = lib.licenses.free; - }; - }) {}; - sourcetrail = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sourcetrail"; - ename = "sourcetrail"; - version = "20170410.1437"; - src = fetchFromGitHub { - owner = "CoatiSoftware"; - repo = "emacs-sourcetrail"; - rev = "2f4327b32360b1549d84fecfe06ef8a85cfdedb8"; - sha256 = "0q9fipdn77mk8gpjrcmka3cxshnklksaa45v1b5qza0nlqcg3q1y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9713bd8030657c8e867409a6aa8173219809173a/recipes/sourcetrail"; - sha256 = "0qa3iw82dbfc1b45505s39m99r0m2473312prws6hch0qhjyji7h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sourcetrail"; - license = lib.licenses.free; - }; - }) {}; - spacegray-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spacegray-theme"; - ename = "spacegray-theme"; - version = "20150719.1231"; - src = fetchFromGitHub { - owner = "bruce"; - repo = "emacs-spacegray-theme"; - rev = "7f70ee36297e5ccf9bc90b1f81472024f5a7a749"; - sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fada130a1e2927d98526f4629cc1101d93e787c5/recipes/spacegray-theme"; - sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/spacegray-theme"; - license = lib.licenses.free; - }; - }) {}; - spaceline = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline - , s }: - melpaBuild { - pname = "spaceline"; - ename = "spaceline"; - version = "20181223.1224"; - src = fetchFromGitHub { - owner = "TheBB"; - repo = "spaceline"; - rev = "ae45a819ea7ae52febb4d7d82170af44dff10f19"; - sha256 = "01dyi0s8yilkgs0ifi489004195l4zrm9dqbybip4136l9zmlini"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline"; - sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs powerline s ]; - meta = { - homepage = "https://melpa.org/#/spaceline"; - license = lib.licenses.free; - }; - }) {}; - spaceline-all-the-icons = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize - , spaceline }: - melpaBuild { - pname = "spaceline-all-the-icons"; - ename = "spaceline-all-the-icons"; - version = "20190325.902"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "spaceline-all-the-icons.el"; - rev = "5afd48c10f1bd42d9b9648c5e64596b72f3e9042"; - sha256 = "1chv6lv216qa88fm2wil45x19dzahcclr9p5vizcziq180dnmass"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d039e057c1d441592da8f54e6d524b395b030375/recipes/spaceline-all-the-icons"; - sha256 = "1h6clkr2f29k2vw0jcrmnfbjpphaxm7s3zai6pn6qag32bgm3jq6"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs memoize spaceline ]; - meta = { - homepage = "https://melpa.org/#/spaceline-all-the-icons"; - license = lib.licenses.free; - }; - }) {}; - spacemacs-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spacemacs-theme"; - ename = "spacemacs-theme"; - version = "20190527.1809"; - src = fetchFromGitHub { - owner = "nashamri"; - repo = "spacemacs-theme"; - rev = "89f8c9e20e4554ede5599d36e81496256708d88c"; - sha256 = "15w2gzhhwqgyqd7nrbjgibw6cfn79453kialgs71wbydiv8q3aqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8ac39214856c1598beca0bd609e011b562346f/recipes/spacemacs-theme"; - sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/spacemacs-theme"; - license = lib.licenses.free; - }; - }) {}; - spaces = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spaces"; - ename = "spaces"; - version = "20170809.1508"; - src = fetchFromGitHub { - owner = "chumpage"; - repo = "chumpy-windows"; - rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; - sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa5d57074f73cf11607f2f1610f92a0c77367f2a/recipes/spaces"; - sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/spaces"; - license = lib.licenses.free; - }; - }) {}; - spark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spark"; - ename = "spark"; - version = "20160414.1901"; - src = fetchFromGitHub { - owner = "alvinfrancis"; - repo = "spark"; - rev = "eec8feae7dbc8547f878fac302f03e0ff7bc9803"; - sha256 = "155ap3vcypcj0pxvjhi2p0a5a9a2rp63hqnsjczsbabmbz1mdsd5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4d1529ab86de7c033579b1a1d0084899c16f454/recipes/spark"; - sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/spark"; - license = lib.licenses.free; - }; - }) {}; - sparkline = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sparkline"; - ename = "sparkline"; - version = "20150101.519"; - src = fetchFromGitHub { - owner = "woudshoo"; - repo = "sparkline"; - rev = "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2"; - sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7278ca31ee3c035c8ec754af152127776f04792e/recipes/sparkline"; - sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sparkline"; - license = lib.licenses.free; - }; - }) {}; - sparql-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sparql-mode"; - ename = "sparql-mode"; - version = "20180320.1102"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "sparql-mode"; - rev = "a00bb622c54086ac1ee96c265bf7fbef12c68089"; - sha256 = "0f919alnqbp5dnc4krgmnc9acqg84xs64fmzjc78gpbmfn0kyi0m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode"; - sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/sparql-mode"; - license = lib.licenses.free; - }; - }) {}; - speech-tagger = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speech-tagger"; - ename = "speech-tagger"; - version = "20170728.1129"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "speech-tagger"; - rev = "61955b40d4e8b09e66a3e8033e82893f81657c06"; - sha256 = "07rgs1f9z2ayphv04jdjk9v1s2s47qvksf64z6qn1zss2alc0y0v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db80aa5d95846ee02a9d762aa68325ab5e37dcf7/recipes/speech-tagger"; - sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/speech-tagger"; - license = lib.licenses.free; - }; - }) {}; - speechd-el = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speechd-el"; - ename = "speechd-el"; - version = "20190103.1226"; - src = fetchFromGitHub { - owner = "brailcom"; - repo = "speechd-el"; - rev = "d97b5d5abb9d51da6e96c0f55ba7e50cb12aaa2e"; - sha256 = "1adx34fi8v6mxvnvlw1gf6baadp3si2wwi71kcvqz1cqcf0fk4p7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96669a664122c2fb69acd4cad2d7bf75d3e8272d/recipes/speechd-el"; - sha256 = "0p8zih9s2x6l2xcfjbzriyhsicaiwxz54iq9h3c8szlzq708mayc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/speechd-el"; - license = lib.licenses.free; - }; - }) {}; - speed-type = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speed-type"; - ename = "speed-type"; - version = "20190526.253"; - src = fetchFromGitHub { - owner = "parkouss"; - repo = "speed-type"; - rev = "c98f9ebd4abf96db967f9c0dff9ccfa4b7f4035b"; - sha256 = "1hjpxr5nb08g5vz7wmlf3zxazvj419528rfwdpkpbmdsjmy67fbf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c33b5bd15875baea0fd2f24ee8ec9414a6f7aa/recipes/speed-type"; - sha256 = "0lsbi3b6v7fiwpvydgwcqx3y5i7bysfjammly22qpz3kcjmlvi06"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/speed-type"; - license = lib.licenses.free; - }; - }) {}; - speeddating = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speeddating"; - ename = "speeddating"; - version = "20180319.23"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "emacs-speeddating"; - rev = "eeaf90cd10e376bff5a295590a3d5f7fd1402523"; - sha256 = "00ybvyr8sr73i7m10cffgpy9lngwp3v8fsa0nbidc6daky84vrdr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01e23a3e2a2495e86aba60302dbd06f3b25768b4/recipes/speeddating"; - sha256 = "0b5lcb1inkcx94grib5ssv1qkbzxqryzm115qizlgfs04k8cwz09"; - name = "recipe"; - }; - 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"; - ename = "sphinx-doc"; - version = "20160116.317"; - src = fetchFromGitHub { - owner = "naiquevin"; - repo = "sphinx-doc.el"; - rev = "f39da2e6cae55d5d7c7ce887e69755b7529bcd67"; - sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3b80d346ad4fb415970beddb5f02ae795fbf1b4/recipes/sphinx-doc"; - sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/sphinx-doc"; - license = lib.licenses.free; - }; - }) {}; - sphinx-frontend = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sphinx-frontend"; - ename = "sphinx-frontend"; - version = "20161025.58"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "sphinx-frontend"; - rev = "0cbb03361c245382d3e679dded30c4fc1713c252"; - sha256 = "1ksjgd995pcb4lvwip08i8ay0xpin8dcam3hcgnbjjqjg9hja1cf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf72e71f159b9eaaa0834682d5dd4eb258616cf/recipes/sphinx-frontend"; - sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sphinx-frontend"; - license = lib.licenses.free; - }; - }) {}; - sphinx-mode = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sphinx-mode"; - ename = "sphinx-mode"; - version = "20180620.215"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "sphinx-mode"; - rev = "b5ac514e213459dcc57184086f10b5b6be3cecd8"; - sha256 = "06r50n159g18fi03xyxzkv7zr6cvs29ly1yyrmyjl9m6dn97m9mc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sphinx-mode"; - sha256 = "0f5xkaqsmxc4bfz80njlc395dcw2dbvmzx6h9fw31mylshzbmrys"; - name = "recipe"; - }; - packageRequires = [ dash f ]; - meta = { - homepage = "https://melpa.org/#/sphinx-mode"; - license = lib.licenses.free; - }; - }) {}; - spice-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spice-mode"; - ename = "spice-mode"; - version = "20171027.2343"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "spice-mode"; - rev = "702bf2d5c3561be44771ea77b476532d32068504"; - sha256 = "1wqcy9nmhpl3vyasvc79msgd25xbbzva9nbxkdrsbpg07p1is9ik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/spice-mode"; - sha256 = "1my6dbdnf4scshjf299d4n7vsdq3cxhq9kmqvirs45y3qjm7pgpg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/spice-mode"; - license = lib.licenses.free; - }; - }) {}; - spiral = callPackage ({ a - , avy - , clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , highlight - , lib - , melpaBuild - , treepy }: - melpaBuild { - pname = "spiral"; - ename = "spiral"; - version = "20180223.340"; - src = fetchFromGitHub { - owner = "Unrepl"; - repo = "spiral"; - rev = "907b9792467139a942ba7b07ca0276b90770baf9"; - sha256 = "1rggzzvya26abbzd8bc2kpv59kzgm75wqv1vwqnj9c8im1jvs1na"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/spiral"; - sha256 = "074ymaksb3dgrsrdsi6xdlvigki5l2v66r8204xv50yc88z7l8qr"; - name = "recipe"; - }; - packageRequires = [ a avy clojure-mode emacs highlight treepy ]; - meta = { - homepage = "https://melpa.org/#/spiral"; - license = lib.licenses.free; - }; - }) {}; - splitjoin = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "splitjoin"; - ename = "splitjoin"; - version = "20150505.732"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-splitjoin"; - rev = "39a77f1c6c7406e79095eb0385667097172a770c"; - sha256 = "0zf03v067nh964ag1nwa8bk90h98lqwbrc25vckacp2gd919ifch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51e172f46045fbb71b6a13b3521b502339a4a02b/recipes/splitjoin"; - sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/splitjoin"; - license = lib.licenses.free; - }; - }) {}; - splitter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "splitter"; - ename = "splitter"; - version = "20170809.1508"; - src = fetchFromGitHub { - owner = "chumpage"; - repo = "chumpy-windows"; - rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; - sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/129f0d20616226c449bdaf672c43a06e8f281869/recipes/splitter"; - sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/splitter"; - license = lib.licenses.free; - }; - }) {}; - spotify = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spotify"; - ename = "spotify"; - version = "20181030.110"; - src = fetchFromGitHub { - owner = "remvee"; - repo = "spotify-el"; - rev = "29577cf1188161f98b8358c149aaf47b2c137902"; - sha256 = "0h6yhfvvyd9sd5d37d3ng3z56zfb546vl95qjq16kcvxq00hdn1v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/spotify"; - sha256 = "07y6d3cz3nziasza3znysvcnx3kw156ab78kw5y0pdll45nw210x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/spotify"; - license = lib.licenses.free; - }; - }) {}; - spotlight = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "spotlight"; - ename = "spotlight"; - version = "20150929.55"; - src = fetchFromGitHub { - owner = "benmaughan"; - repo = "spotlight.el"; - rev = "ab902900f22e7d1ea2dd8169441d2da7155aaa68"; - sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26e0eba715c869c5bd295afb8971d490e80f6e2b/recipes/spotlight"; - sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p"; - name = "recipe"; - }; - packageRequires = [ counsel emacs swiper ]; - meta = { - homepage = "https://melpa.org/#/spotlight"; - license = lib.licenses.free; - }; - }) {}; - spray = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spray"; - ename = "spray"; - version = "20160304.1420"; - src = fetchFromGitLab { - owner = "iankelling"; - repo = "spray"; - rev = "69fe48e7bb079e3011476b9f4eb6ac9ae94d6d9b"; - sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4f5053aa4e1af3f636febe9c3ce8c6ae20c090d/recipes/spray"; - sha256 = "1h8lngcqa343mlc091zs419frgsla65khfj93lv9fil3xbgrm7m9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/spray"; - license = lib.licenses.free; - }; - }) {}; - springboard = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "springboard"; - ename = "springboard"; - version = "20170105.2355"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "springboard"; - rev = "263a8cd4582c81bfc29d7db37d5267e2488b148c"; - sha256 = "14mbmkqnw2kkzcb8f9z1g3c8f8f9lca3zb6f3q8jk9dsyp9vh81z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/138b8a589725ead2fc1de9ea76c55e3eb2473872/recipes/springboard"; - sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/springboard"; - license = lib.licenses.free; - }; - }) {}; - sprintly-mode = callPackage ({ fetchFromGitHub - , fetchurl - , furl - , lib - , melpaBuild }: - melpaBuild { - pname = "sprintly-mode"; - ename = "sprintly-mode"; - version = "20121005.2234"; - src = fetchFromGitHub { - owner = "sprintly"; - repo = "sprintly-mode"; - rev = "6695892bae5860b5268bf3ae62be990ee9b63c11"; - sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8730956d3f00e030e06ef54c3f2aecc10bb40f9d/recipes/sprintly-mode"; - sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; - name = "recipe"; - }; - packageRequires = [ furl ]; - meta = { - homepage = "https://melpa.org/#/sprintly-mode"; - license = lib.licenses.free; - }; - }) {}; - sproto-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sproto-mode"; - ename = "sproto-mode"; - version = "20151115.1005"; - src = fetchFromGitHub { - owner = "m2q1n9"; - repo = "sproto-mode"; - rev = "1753277d9f2163fb3bc58b983a9892831cf9874b"; - sha256 = "1brxm6hs2gsnl8mj6ps0s9kj2qp9v388wwccsqmx7s3bi9zjf10c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac2b4207c4eaa3a048e245242489462a69b4af67/recipes/sproto-mode"; - sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sproto-mode"; - license = lib.licenses.free; - }; - }) {}; - sprunge = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sprunge"; - ename = "sprunge"; - version = "20160229.1843"; - src = fetchFromGitHub { - owner = "tomjakubowski"; - repo = "sprunge.el"; - rev = "0fd386b8b29c4175022a04ad70ea5643185b6726"; - sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7b9f8cc2f2f8f8e1cf80b3e76c89b9f12cacf95/recipes/sprunge"; - sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; - name = "recipe"; - }; - packageRequires = [ cl-lib request ]; - meta = { - homepage = "https://melpa.org/#/sprunge"; - license = lib.licenses.free; - }; - }) {}; - spu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , signal - , timp }: - melpaBuild { - pname = "spu"; - ename = "spu"; - version = "20161213.1924"; - src = fetchFromGitHub { - owner = "mola-T"; - repo = "SPU"; - rev = "41eec86b595816e3852e8ad1a8e07e51a27fd065"; - sha256 = "1j77h761vf74y9sfjpidgaznail95hsg9akjs55sz1xiyy7hkgyw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2ef1e83c924d5411b47a931432f129db95ff2c/recipes/spu"; - sha256 = "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8"; - name = "recipe"; - }; - packageRequires = [ emacs signal timp ]; - meta = { - homepage = "https://melpa.org/#/spu"; - license = lib.licenses.free; - }; - }) {}; - sql-clickhouse = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sql-clickhouse"; - ename = "sql-clickhouse"; - version = "20180302.755"; - src = fetchFromGitHub { - owner = "leethargo"; - repo = "sql-clickhouse"; - rev = "35308c9292622547a79c0cc2659db2fc9de42e93"; - sha256 = "12j9facwvwnwc8ga3nj9yddx3xp3kp28mih6lg4s1b67zj28pccg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0ef23e6825924094eb69bd8526a95d8fab210c1/recipes/sql-clickhouse"; - sha256 = "083i9aaf69yk71mndl5x0pimn3bkkhp3mfppxvy0f5lzf2847q2j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sql-clickhouse"; - license = lib.licenses.free; - }; - }) {}; - sql-impala = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sql-impala"; - ename = "sql-impala"; - version = "20181217.2010"; - src = fetchFromGitHub { - owner = "jterk"; - repo = "sql-impala"; - rev = "466e7c0c789ec3e5e8a276c8f6754f91bb584c3e"; - sha256 = "02psgbm06wivdm2cmjnj2vy05lnljxn44hj2arw2fr7x2qwn9r35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sql-impala"; - sha256 = "1mh36ycqgr07r0hknkr6vb4k0r5b2h8bqd7m5faz9p56qbisgvvh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sql-impala"; - license = lib.licenses.free; - }; - }) {}; - sql-presto = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sql-presto"; - ename = "sql-presto"; - version = "20190113.942"; - src = fetchFromGitHub { - owner = "kat-co"; - repo = "sql-prestodb"; - rev = "bcda455e300a1af75c7bb805882329bc844703b2"; - sha256 = "00whmsylr802fx87yqbr06rbymyln7kq7750pcz26xm1jgja7cax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a21349775e018822a06bca3c3c338879548e286f/recipes/sql-presto"; - sha256 = "1rjfgvwgl63xn047vmsmj1s31wvrd24v6ibf9nri6qmffhv9i9zb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sql-presto"; - license = lib.licenses.free; - }; - }) {}; - sqlformat = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "sqlformat"; - ename = "sqlformat"; - version = "20190420.1556"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "sqlformat"; - rev = "f7f46be6f06b83642c312151f3b5276f8830d9d7"; - sha256 = "00z60y08likwqfd27ibvzhy62qs29i4d4y4vq3p3slx43rfdgvxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6bdaa1ccae12f2ea779ac6989607d8027feac2c9/recipes/sqlformat"; - sha256 = "07lf2gx629429b41qr04gl98gplb538gb5hw7idzrmi3higrmv8m"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/sqlformat"; - license = lib.licenses.free; - }; - }) {}; - sqlite = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sqlite"; - ename = "sqlite"; - version = "20180708.1011"; - src = fetchFromGitLab { - owner = "cnngimenez"; - repo = "sqlite.el"; - rev = "b8c22fdfed10d8554137ff1776b83cf2b4b9c5fd"; - sha256 = "083fzfy9rmiam06ixxkg5djqdxg62ym0p2kpsij01fgi2vjvnhca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/949556b57cea0fbbfc98b95d894de95257dfe1e5/recipes/sqlite"; - sha256 = "1c5dprdl8q09yd0kvpkm19z60m9rhkilj5zmj938wlj5bmdlydv8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sqlite"; - license = lib.licenses.free; - }; - }) {}; - sqlup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sqlup-mode"; - ename = "sqlup-mode"; - version = "20170610.837"; - src = fetchFromGitHub { - owner = "Trevoke"; - repo = "sqlup-mode.el"; - rev = "04970977b4abb4d44301651618bbf1cdb0b263dd"; - sha256 = "14s66xrabj269z7f94iynsla96bka7zac011psrbcfyy4m8mlamz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/sqlup-mode"; - sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sqlup-mode"; - license = lib.licenses.free; - }; - }) {}; - sr-speedbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sr-speedbar"; - ename = "sr-speedbar"; - version = "20161025.131"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "sr-speedbar"; - rev = "77a83fb50f763a465c021eca7343243f465b4a47"; - sha256 = "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/sr-speedbar"; - sha256 = "1v90jbqdw39yrfcsnyqas8c5g09rcf1db65q2m2rw7rik8cgb052"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sr-speedbar"; - license = lib.licenses.free; - }; - }) {}; - srcery-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srcery-theme"; - ename = "srcery-theme"; - version = "20190526.527"; - src = fetchFromGitHub { - owner = "srcery-colors"; - repo = "srcery-emacs"; - rev = "a47a40c7c5d39d251bf15e45f184565c5240b33e"; - sha256 = "1i3c7y0a7dzvb3c8pk69gvh33945bhm00j0fwl49yh7hg2d9w118"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2654fc05f55c7fab7d550b7db1d187edc9ff0f42/recipes/srcery-theme"; - sha256 = "1bnvf9v7g2mpx8519lh73fphhr4cqd33qlw22qyxnqiz5cz93lsp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srcery-theme"; - license = lib.licenses.free; - }; - }) {}; - srefactor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srefactor"; - ename = "srefactor"; - version = "20180703.1110"; - src = fetchFromGitHub { - owner = "tuhdo"; - repo = "semantic-refactor"; - rev = "6f2c97d17fb70f4ca2112f5a2b99a8ec162004f5"; - sha256 = "1lyz3zjkx2csh0xdy1zpx8s32qp1p3sig57mwi9xhgpqjyf0axmb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23115ab231ab108678608f2ad0a864f896cd0f2/recipes/srefactor"; - sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srefactor"; - license = lib.licenses.free; - }; - }) {}; - srv = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srv"; - ename = "srv"; - version = "20180715.1259"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "srv.el"; - rev = "b1eb7b109bc1c616dbf027429a90dc3b1a4263f1"; - sha256 = "05kp8ajbqk7vxzkv23akyk2m7yg81pbrxpl3dsw67101sjazsybi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b0b7f22631e7749da484ced9192d8ae5e1be941/recipes/srv"; - sha256 = "0xrgbi63vg0msxkcmcnvijkxa9y0s7613liqac7fs9514yvkbwin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srv"; - license = lib.licenses.free; - }; - }) {}; - ssass-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssass-mode"; - ename = "ssass-mode"; - version = "20190520.1949"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "ssass-mode"; - rev = "c2c610abd85fecd171466bf5a9a4943bd62ffda5"; - sha256 = "0vbh0nqbc7j2xjksk0xdfsrqfxd64fcqyladgk2v3jw0qply6ydw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3137f98aaa871a52f477b63d9c3b7b63f7271344/recipes/ssass-mode"; - sha256 = "07aym4a7l70f1lb6yvwxkhsykrwbf0lcpwlwgcn5n44kavvdbzxm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ssass-mode"; - license = lib.licenses.free; - }; - }) {}; - ssh = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh"; - ename = "ssh"; - version = "20120904.1342"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "ssh-el"; - rev = "c17cf5b43df8ac4662a0580f85898e1f078df0d1"; - sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh"; - sha256 = "1wlzagcg2fxqcbpd3z02wsil2n224kzmhcd54df80jypgq5fa6k3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ssh"; - license = lib.licenses.free; - }; - }) {}; - ssh-agency = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-agency"; - ename = "ssh-agency"; - version = "20180507.1726"; - src = fetchFromGitHub { - owner = "magit"; - repo = "ssh-agency"; - rev = "d9dbedd773ad3a831e02e162c47936d6814a850a"; - sha256 = "0895n7bss4wdydic1gflr03f2cwdyqywl16gvb599lpn288jhwvz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ssh-agency"; - sha256 = "1b25fl1kk4mwsd25pg9s0lazlpmaa6s9wnfgvlqk8k65d7p7idzz"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/ssh-agency"; - license = lib.licenses.free; - }; - }) {}; - ssh-config-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-config-mode"; - ename = "ssh-config-mode"; - version = "20180922.251"; - src = fetchFromGitHub { - owner = "jhgorrell"; - repo = "ssh-config-mode-el"; - rev = "1ec676c021269c7b9cf814cf1d12f6acdcc25588"; - sha256 = "14d9zzfks4kqfqp54qzb2m74bd0rb25sff9rx2d90b5svmvbg15p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/750b16ee631b4c2014f2ebf767609bab4b8ee421/recipes/ssh-config-mode"; - sha256 = "1jlaf1bipmf51552jyp2ax6n4gwg38n2348kyxlwd7d8vwsibbpq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ssh-config-mode"; - license = lib.licenses.free; - }; - }) {}; - ssh-deploy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-deploy"; - ename = "ssh-deploy"; - version = "20190502.2208"; - src = fetchFromGitHub { - owner = "cjohansson"; - repo = "emacs-ssh-deploy"; - rev = "009e9f81c8fc199e77815928bc8915643b019b32"; - sha256 = "0y3jwn3qkmibrhgcbq6xcbfsgqjng6xi7fx1iimldhv14gg83gzq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy"; - sha256 = "1ys3cc5fz8y4rsiq3daqgcpa14ssv1q4cw0pqbfscql6mps0mjdm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ssh-deploy"; - license = lib.licenses.free; - }; - }) {}; - ssh-tunnels = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-tunnels"; - ename = "ssh-tunnels"; - version = "20181129.736"; - src = fetchFromGitHub { - owner = "death"; - repo = "ssh-tunnels"; - rev = "903bfd0d2d225c7e37fcc8c7596bd0a387384f05"; - sha256 = "0idxzza4n7cdhaw56zvz549i0ciihm74bqbq5ivsabvqg07r6qwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b093a3a9a836bae8ce37a21188c64e9a878066e8/recipes/ssh-tunnels"; - sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ssh-tunnels"; - license = lib.licenses.free; - }; - }) {}; - stack-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "stack-mode"; - ename = "stack-mode"; - version = "20150923.823"; - src = fetchFromGitHub { - owner = "commercialhaskell"; - repo = "stack-ide"; - rev = "7e93bd3e03502beafb4613b7bc690fb9f0db1314"; - sha256 = "1zi2s97idylk5whzlv5ybac9ricqckl81vlwcm79rphk0v6xi3zj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1328a676140e4b8d01af126c4043bcfa8d1b2a8c/recipes/stack-mode"; - sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf"; - name = "recipe"; - }; - packageRequires = [ cl-lib flycheck haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/stack-mode"; - license = lib.licenses.free; - }; - }) {}; - stan-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stan-mode"; - ename = "stan-mode"; - version = "20180110.1441"; - src = fetchFromGitHub { - owner = "stan-dev"; - repo = "stan-mode"; - rev = "a8e88473ef996b455523dc3fbcf2d8520659652f"; - sha256 = "13qw6n26jpr208h2366pcfv10d11880wlfzr0kiadrsg219wjgsi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67a44a0abe675238b10decdd612b67e418caf34b/recipes/stan-mode"; - sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stan-mode"; - license = lib.licenses.free; - }; - }) {}; - stan-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , stan-mode - , yasnippet }: - melpaBuild { - pname = "stan-snippets"; - ename = "stan-snippets"; - version = "20161023.1958"; - src = fetchFromGitHub { - owner = "stan-dev"; - repo = "stan-mode"; - rev = "45b8242611fe0437fcff48f5f4f7d8f0552531ac"; - sha256 = "14yv57grsw3zyjcqasaanx8g2skix0i3w1f5r1fng3sgwclwbkdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8539b7d8da3a458a38f7536ed03580f9088c3/recipes/stan-snippets"; - sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; - name = "recipe"; - }; - packageRequires = [ stan-mode yasnippet ]; - meta = { - homepage = "https://melpa.org/#/stan-snippets"; - license = lib.licenses.free; - }; - }) {}; - standoff-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "standoff-mode"; - ename = "standoff-mode"; - version = "20171115.931"; - src = fetchFromGitHub { - owner = "lueck"; - repo = "standoff-mode"; - rev = "cf84b14066d63694d931395c6026fd0245d8a62b"; - sha256 = "0dbcaz3faw8knx91yjsrb988sn2d9k0i5byhs1bi1ww36y6hmgs6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98858a45f72c28eec552b119a66479ea99b60f93/recipes/standoff-mode"; - sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/standoff-mode"; - license = lib.licenses.free; - }; - }) {}; - start-menu = callPackage ({ cl-lib ? null - , config-parser - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "start-menu"; - ename = "start-menu"; - version = "20160426.525"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "el-start-menu"; - rev = "f7d33fed7ad2dc61156f1c1cff9e1805366fbd69"; - sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/88d965f6789d3f5ba3856cbf10edbc46e37b12ae/recipes/start-menu"; - sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv"; - name = "recipe"; - }; - packageRequires = [ cl-lib config-parser ]; - meta = { - homepage = "https://melpa.org/#/start-menu"; - license = lib.licenses.free; - }; - }) {}; - stash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stash"; - ename = "stash"; - version = "20151117.627"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "stash.el"; - rev = "c2e494d20c752b80ebbdffbf66687b3cdfc425ad"; - sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3837ac3f1ac82e08a5ad7193766074a4d1bfa3d/recipes/stash"; - sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stash"; - license = lib.licenses.free; - }; - }) {}; - state = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "state"; - ename = "state"; - version = "20180627.1256"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "state"; - rev = "99fb8e0a944d3b543d54769d332cbbfa92266b11"; - sha256 = "173w874iyrbvcv2a8fdylcyxq2a9s5phbabqp3qp095qh6037klf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82e955112089569c775e11888d9811119f84a4f8/recipes/state"; - sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/state"; - license = lib.licenses.free; - }; - }) {}; - status = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "status"; - ename = "status"; - version = "20151230.608"; - src = fetchFromGitHub { - owner = "tromey"; - repo = "emacs-status"; - rev = "b62c74bf272566f82a68622f29fb9edafea0f241"; - sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dca8976de7060fcfc37a1623280869e0cef7b0a2/recipes/status"; - sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/status"; - license = lib.licenses.free; - }; - }) {}; - steam = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "steam"; - ename = "steam"; - version = "20171108.1613"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "steam.el"; - rev = "d6ca2a828b0824da51978397e198bf91c51ce793"; - sha256 = "16cxws1b3iwm9aqbiip298zsjm6gwjihpvkia4p0zvzynwhflw8q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25a45eb6297168cd0ce4c4db5574362addad5c69/recipes/steam"; - sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/steam"; - license = lib.licenses.free; - }; - }) {}; - stem = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stem"; - ename = "stem"; - version = "20131102.409"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "stem"; - rev = "dd704c3447bd5d3f5ac0a4840f8987d4f855d87e"; - sha256 = "17x8zgml8sa5i828hg8bimfal84vvqzxlqdicjc7v7p8h0j57cgs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d9c38d0d4dac86848ad0fec0aeeced009c5eac7/recipes/stem"; - sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stem"; - license = lib.licenses.free; - }; - }) {}; - stem-english = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stem-english"; - ename = "stem-english"; - version = "20180108.1958"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "stem-english"; - rev = "c9fc4c6ed6bf82382e479dae80912f4ae17d31f4"; - sha256 = "1bkmgjfp7xir6d0yf782xkjvf595blrqhr3hack26jg5zl8qsrya"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c8e97e70e7a86b9f5e55bdd2db492994e8abdd5/recipes/stem-english"; - sha256 = "15d13palwdwrki9p804cdls08ph7sxxzd44nl4bhfm3dxic4sw7x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/stem-english"; - license = lib.licenses.free; - }; - }) {}; - stgit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stgit"; - ename = "stgit"; - version = "20171130.759"; - src = fetchFromGitHub { - owner = "ctmarinas"; - repo = "stgit"; - rev = "a29fc8873fca30cb5b13d94743a9010de28e2610"; - sha256 = "1xhxba0m78zx00m55y125bs1zxibyg7d9nw8xw9gqyshcncjffpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/726da64b7baea1735a916b826bdfb8f575860e21/recipes/stgit"; - sha256 = "1gbr0pvvig2vg94svy1r6zp57rhyg6n9yp7qvlkfal1z2lhzhs0g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stgit"; - license = lib.licenses.free; - }; - }) {}; - sticky = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sticky"; - ename = "sticky"; - version = "20170925.1736"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "sticky"; - rev = "fec4e1af38f17f5cd80eca361d8e8ef8772db366"; - sha256 = "126zs059snzpg83q9mrb51y0pqawwrj9smr3y7rza4q4qkdp1nk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/sticky"; - sha256 = "0g98qagqchwq9j5nvdz315wak8fvdw1l972cfh0fr4yyg7gxi6xr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sticky"; - license = lib.licenses.free; - }; - }) {}; - stickyfunc-enhance = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stickyfunc-enhance"; - ename = "stickyfunc-enhance"; - version = "20150429.1114"; - src = fetchFromGitHub { - owner = "tuhdo"; - repo = "semantic-stickyfunc-enhance"; - rev = "13bdba51fcd83ccbc3267959d23afc94d458dcb0"; - sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e24454febf90ec18a587b2c187a2bd2101e1b7b5/recipes/stickyfunc-enhance"; - sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/stickyfunc-enhance"; - license = lib.licenses.free; - }; - }) {}; - stock-ticker = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "stock-ticker"; - ename = "stock-ticker"; - version = "20150204.252"; - src = fetchFromGitHub { - owner = "hagleitn"; - repo = "stock-ticker"; - rev = "74251cc810604af75f48333d51133326c053dd16"; - sha256 = "09rpn1gbxd0ppb0258l6bcnbxj8r5jhcwkvjg335sgh52srgk3ir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75e654f7b3f785bdfead3c594fdc09730c5d33b9/recipes/stock-ticker"; - sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi"; - name = "recipe"; - }; - packageRequires = [ request s ]; - meta = { - homepage = "https://melpa.org/#/stock-ticker"; - license = lib.licenses.free; - }; - }) {}; - strace-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "strace-mode"; - ename = "strace-mode"; - version = "20171116.1239"; - src = fetchFromGitHub { - owner = "pkmoore"; - repo = "strace-mode"; - rev = "2901baa968d5180ab985ac40ca22cc20914d01f5"; - sha256 = "1jd930nc2g562n4cqq1ppl2d8dq7bxkr3fh9f0gjms7bcm106kz9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2003bee9992d9e79124d95d30b573c8a6bdbfe/recipes/strace-mode"; - sha256 = "16v350nqdxmmk1r4z25bssm436xcm4cvnaxm7f3wxwvmg9z0gx8d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/strace-mode"; - license = lib.licenses.free; - }; - }) {}; - strie = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "strie"; - ename = "strie"; - version = "20160211.1422"; - src = fetchFromGitHub { - owner = "jcatw"; - repo = "strie.el"; - rev = "eb7efb0cccc127c414f6a64db11454869d9c10a8"; - sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/strie"; - sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/strie"; - license = lib.licenses.free; - }; - }) {}; - string-edit = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "string-edit"; - ename = "string-edit"; - version = "20160410.2356"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "string-edit.el"; - rev = "c44b65b4c5e9f52be9c14d88ca2f402a18d9e1dd"; - sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20fd24f22ef734fe064c66692bf3e18eb896f1ac/recipes/string-edit"; - sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/string-edit"; - license = lib.licenses.free; - }; - }) {}; - string-inflection = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "string-inflection"; - ename = "string-inflection"; - version = "20180827.601"; - src = fetchFromGitHub { - owner = "akicho8"; - repo = "string-inflection"; - rev = "e9a50855a4c718592c28a5a892f164ecf46e39a8"; - sha256 = "03kvp5xrv9p46m4w25jr5nvi801yafq5vxzif42y0dav7ifmmdfp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c2e2b6dba8686236c2595475cfddac5fd700e60/recipes/string-inflection"; - sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/string-inflection"; - license = lib.licenses.free; - }; - }) {}; - string-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild }: - melpaBuild { - pname = "string-utils"; - ename = "string-utils"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "string-utils"; - rev = "8b56e1f79d2de46d1e9b5e24d889e9f4c3cc85d4"; - sha256 = "0c8msw48cmvd4i7cgh7gp0d26ipiqvyn84a2d4hqqci261s08b2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/string-utils"; - sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; - name = "recipe"; - }; - packageRequires = [ list-utils ]; - meta = { - homepage = "https://melpa.org/#/string-utils"; - license = lib.licenses.free; - }; - }) {}; - stripe-buffer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stripe-buffer"; - ename = "stripe-buffer"; - version = "20141208.708"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "stripe-buffer"; - rev = "c252080f55cb78c951b19ebab9687f6d00237baf"; - sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/stripe-buffer"; - sha256 = "1kjib1kf9xqdirryr16wlvc95701hq8s4h8hz4dqzg3wzyb8287b"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/stripe-buffer"; - license = lib.licenses.free; - }; - }) {}; - stumpwm-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stumpwm-mode"; - ename = "stumpwm-mode"; - version = "20140130.1816"; - src = fetchgit { - url = "https://git.savannah.nongnu.org/git/stumpwm.git"; - rev = "a920d31bac148e7f6afa98c05f98920135de8b89"; - sha256 = "0hg2dhgph1fz8z6c79ia2j36wnbqgi6a7fjiz3wngslhbwy28xq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/stumpwm-mode"; - sha256 = "11yk7xmmccgv7hin5qd1ibcsm1za01xfwsxa25q7vqwk6svnb0sf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stumpwm-mode"; - license = lib.licenses.free; - }; - }) {}; - stupid-indent-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stupid-indent-mode"; - ename = "stupid-indent-mode"; - version = "20170525.417"; - src = fetchgit { - url = "https://gist.github.com/5487564.git"; - rev = "3295e7de5e2cfddc3bf0e462e852bf58972f5d70"; - sha256 = "00js2jkzvmvh1gbraijknv48y86pqyk9zv264a5n3l4sw5q6kcvk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68cd648bde8028a39849f7beae8deae78bfb877b/recipes/stupid-indent-mode"; - sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stupid-indent-mode"; - license = lib.licenses.free; - }; - }) {}; - stylefmt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stylefmt"; - ename = "stylefmt"; - version = "20161025.124"; - src = fetchFromGitHub { - owner = "KeenS"; - repo = "stylefmt.el"; - rev = "7a38f26bf8ff947215f34f0a064c7ca80575ccbc"; - sha256 = "0cx9llbmfjhaxb60mj483ihl78xb30ldvhd1hdldmc9d473xbvmz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/stylefmt"; - sha256 = "14ap3xklmxyqz61p7z3fwgxbwjqrcbijcmvsmhfbm102x1spgbhz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stylefmt"; - license = lib.licenses.free; - }; - }) {}; - stylus-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sws-mode }: - melpaBuild { - pname = "stylus-mode"; - ename = "stylus-mode"; - version = "20150313.812"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "73893e8d8f1bcaf9f0252c6f020cdb3741d7125c"; - sha256 = "0fiihkwq4s8lkqx5fp3csmnaf0blnm6kpl4hfkwsb8rywgvzh7lk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/stylus-mode"; - sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; - name = "recipe"; - }; - packageRequires = [ sws-mode ]; - meta = { - homepage = "https://melpa.org/#/stylus-mode"; - license = lib.licenses.free; - }; - }) {}; - subatomic-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "subatomic-theme"; - ename = "subatomic-theme"; - version = "20160126.738"; - src = fetchFromGitHub { - owner = "cryon"; - repo = "subatomic"; - rev = "6a4086af748b1ecb27f6ba2aa2614988db16d594"; - sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de7f6009bab3e9a5b14b7b96ab16557e81e7f078/recipes/subatomic-theme"; - sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/subatomic-theme"; - license = lib.licenses.free; - }; - }) {}; - subatomic256-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "subatomic256-theme"; - ename = "subatomic256-theme"; - version = "20130620.1910"; - src = fetchFromGitHub { - owner = "d11wtq"; - repo = "subatomic256"; - rev = "326177d6f99cd2b1d30df695e67ee3bc441cd96f"; - sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06a6bdf12623847600d87a624c224b233fdf3536/recipes/subatomic256-theme"; - sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/subatomic256-theme"; - license = lib.licenses.free; - }; - }) {}; - subemacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "subemacs"; - ename = "subemacs"; - version = "20170401.234"; - src = fetchFromGitHub { - owner = "kbauer"; - repo = "subemacs"; - rev = "18d53939fec8968c08dfc5aff7240ca07efb1aac"; - sha256 = "1k2lg7cxr98rq77sk0ypzlr3cyl20ld20jz8y21fdaa6ci8kdvdb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18714a6b5ca4dcc51fa509fee1dc9afb0595c707/recipes/subemacs"; - sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/subemacs"; - license = lib.licenses.free; - }; - }) {}; - sublime-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sublime-themes"; - ename = "sublime-themes"; - version = "20170606.1144"; - src = fetchFromGitHub { - owner = "owainlewis"; - repo = "emacs-color-themes"; - rev = "60ee40af82eb55b79d5ed4026f1911326311603f"; - sha256 = "17fcqvavgyl9cmv1hwcid2bw513vhawlsmac1w2adiz567594i6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/648d250c7d341b31581c839f77c1084ac29d3163/recipes/sublime-themes"; - sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sublime-themes"; - license = lib.licenses.free; - }; - }) {}; - sublimity = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sublimity"; - ename = "sublimity"; - version = "20181121.511"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "sublimity"; - rev = "4c8d0280815978fc11e1c5f86266a11c717b0c89"; - sha256 = "1618ba3m36crh2wmmisi3ls5ijdqrwr58yda810jik0b6fjzzacv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e78cd1e5366a9b6d04237e9bf6a7e73424be52/recipes/sublimity"; - sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sublimity"; - license = lib.licenses.free; - }; - }) {}; - sudden-death = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudden-death"; - ename = "sudden-death"; - version = "20180216.1623"; - src = fetchFromGitHub { - owner = "yewton"; - repo = "sudden-death.el"; - rev = "791a63d3f4df192e71f4232a9a4c5588f4b43dfb"; - sha256 = "0z3adwd6ymapkdniny3ax2i3wzxp11g6in4bghbcr9bfdxcsf7ps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f20f389a2d7ddf49ca64d945b41584a7c120faf/recipes/sudden-death"; - sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sudden-death"; - license = lib.licenses.free; - }; - }) {}; - sudo-edit = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudo-edit"; - ename = "sudo-edit"; - version = "20180731.1208"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "sudo-edit"; - rev = "cc3d478937b1accd38742bfceba92af02ee9357d"; - sha256 = "1qv58x5j5a3v1s2ylhck1ykbfclq0mbi0gsvaql3nyv8cxazqlwl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b08d4bbdb23b988db5ed7cb5a2a925b7c2e242e/recipes/sudo-edit"; - sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/sudo-edit"; - license = lib.licenses.free; - }; - }) {}; - sudo-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudo-ext"; - ename = "sudo-ext"; - version = "20170126.414"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "sudo-ext"; - rev = "9d4580f304121ce7b8104bd4bd3b64e4dfa3c9b3"; - sha256 = "1m9srlxavqg6yxmz6rz61saz1lj5hh029314dic8kh6g3bqdnh2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/sudo-ext"; - sha256 = "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sudo-ext"; - license = lib.licenses.free; - }; - }) {}; - sudoku = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudoku"; - ename = "sudoku"; - version = "20161110.2306"; - src = fetchFromGitHub { - owner = "zevlg"; - repo = "sudoku.el"; - rev = "77c11b5041b58fc943cf1668b44b40bae039cb5b"; - sha256 = "18nbs980y6cj6my208i80cb928rnkk5rn3zwc63prk5whjw4y77v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9861d5d4cf18466b17ac8e53f3874df5312d3f3/recipes/sudoku"; - sha256 = "14nbidjnsm9lwknmqgfr721b484z5156j723kr1wbfv70j8h9kys"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sudoku"; - license = lib.licenses.free; - }; - }) {}; - suggest = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild - , s - , spinner }: - melpaBuild { - pname = "suggest"; - ename = "suggest"; - version = "20180916.1159"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "suggest.el"; - rev = "58ea3b20544410b90ca3286cbda3d71c823c3bf9"; - sha256 = "00xbr3fbdjbmvy9nswzqxliavarqkgfa5ms6irfnbpng1ypmcvgf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9fd27e812549587dc2ec26bb58974177ff263ff/recipes/suggest"; - sha256 = "12vvakqqzmmqq5yynpd4wf4lnb0yvcnz065kni996sy7rv7rh83q"; - name = "recipe"; - }; - packageRequires = [ dash emacs f loop s spinner ]; - meta = { - homepage = "https://melpa.org/#/suggest"; - license = lib.licenses.free; - }; - }) {}; - suggestion-box = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "suggestion-box"; - ename = "suggestion-box"; - version = "20170830.107"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "suggestion-box-el"; - rev = "50af0776c8caf3c79c4d37fd51cbf304ea34b68e"; - sha256 = "01lx20kzay5504xcq6m6yhvayyd7wpzaa1r6i67xqjnr25lqyajw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b59be8dc0a1850d3e245957fd170e1d01f4e284/recipes/suggestion-box"; - sha256 = "17yai0fh7rfjbp3wz5x5r4src8lxn6qrhf7brp2gjr6cgdv40iac"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/suggestion-box"; - license = lib.licenses.free; - }; - }) {}; - sunburn-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sunburn-theme"; - ename = "sunburn-theme"; - version = "20180602.1229"; - src = fetchFromGitHub { - owner = "mvarela"; - repo = "Sunburn-Theme"; - rev = "ddb01b6f1f4f823398f7f8e08900c2b4a7811d3b"; - sha256 = "18qfcrr4xlwwhhaq7dwh31bbl84a53akgrw2c6lynnyyi4vk2wpq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/sunburn-theme"; - sha256 = "07nz7vr0yzf5746d8khlzl6ghaj44yfp0ar9ylbpdpfj7rdx17sa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sunburn-theme"; - license = lib.licenses.free; - }; - }) {}; - sunny-day-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sunny-day-theme"; - ename = "sunny-day-theme"; - version = "20140413.1425"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "sunny-day-theme"; - rev = "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00"; - sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11642803ccc5c8dde839508c91dea2728b2b78de/recipes/sunny-day-theme"; - sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sunny-day-theme"; - license = lib.licenses.free; - }; - }) {}; - sunshine = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sunshine"; - ename = "sunshine"; - version = "20181029.954"; - src = fetchFromGitHub { - owner = "aaronbieber"; - repo = "sunshine.el"; - rev = "8959dea03377e61aaca0124ac8d2703daaae6b9a"; - sha256 = "1shzhl5bi5dkmvc07mc7sknm5id89iivjkcxsrdcw004g08hr8y0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0ff9a4ef4bbe8de722a4f77f4a56a851497ff1/recipes/sunshine"; - sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sunshine"; - license = lib.licenses.free; - }; - }) {}; - suomalainen-kalenteri = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "suomalainen-kalenteri"; - ename = "suomalainen-kalenteri"; - version = "20190310.110"; - src = fetchFromGitHub { - owner = "tlikonen"; - repo = "suomalainen-kalenteri"; - rev = "c8c03fe9bae57d4e15c287aef4f98911a3529240"; - sha256 = "1n4nz309rr1cpx1c5aighakpcmrbzzg2xprh5hi4kln0rngggycp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/181adf1b16253481674663fd28b195172231b7da/recipes/suomalainen-kalenteri"; - sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/suomalainen-kalenteri"; - license = lib.licenses.free; - }; - }) {}; - super-save = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "super-save"; - ename = "super-save"; - version = "20180929.27"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "super-save"; - rev = "62512f60d6685d8601e2021d95e77603b6d96885"; - sha256 = "0cn39d1qfm119bxb9sdl43ya2vvadfp22qwdn3j843wyf92hpdn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9730b65787b26d3909952cf246a01bd349e5fbab/recipes/super-save"; - sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/super-save"; - license = lib.licenses.free; - }; - }) {}; - supergenpass = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "supergenpass"; - ename = "supergenpass"; - version = "20130328.2248"; - src = fetchFromGitHub { - owner = "ober"; - repo = "sgpass"; - rev = "549072ef7b5b82913cadd4758e8a0a9926f0a04a"; - sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/supergenpass"; - sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/supergenpass"; - license = lib.licenses.free; - }; - }) {}; - suscolors-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "suscolors-theme"; - ename = "suscolors-theme"; - version = "20161109.1215"; - src = fetchFromGitHub { - owner = "TheSuspiciousWombat"; - repo = "SusColors-emacs"; - rev = "8f5cdf8de5e58db838ef0e803b60b7d74fc2a889"; - sha256 = "1wc4l7zvb8zmh48cgrl7bkbyfj0sflzq28sc8jssghkcl2735cbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/suscolors-theme"; - sha256 = "0j8yfl3yglp9kfdpbmfj3jw7npc6nlqw48cchiczh4biry204lbw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/suscolors-theme"; - license = lib.licenses.free; - }; - }) {}; - sv-kalender-namnsdagar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sv-kalender-namnsdagar"; - ename = "sv-kalender-namnsdagar"; - version = "20190421.821"; - src = fetchFromGitHub { - owner = "matsl"; - repo = "sv-kalender-namnsdagar"; - rev = "fff970f49c77abfc69e37817f25a939818420971"; - sha256 = "0c6xjw1wh94llwh8qkf3bfzx05ksk0lsdrqdfqn3qkjnf3bkbbh2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9327ea6ae9f4eaeeb6c0fb40bad77e403b4f55c/recipes/sv-kalender-namnsdagar"; - sha256 = "1l89y6bjkw8px89qaw1ldfp6qmbm5nq09i6pr32n0k553670v4sr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sv-kalender-namnsdagar"; - license = lib.licenses.free; - }; - }) {}; - svg-mode-line-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xmlgen }: - melpaBuild { - pname = "svg-mode-line-themes"; - ename = "svg-mode-line-themes"; - version = "20150425.1306"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "svg-mode-line-themes"; - rev = "80a0e01839cafbd66899202e7764c33231974259"; - sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ca54d78b5e87c3bb582b178e4892af2bf447d1e/recipes/svg-mode-line-themes"; - sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; - name = "recipe"; - }; - packageRequires = [ xmlgen ]; - meta = { - homepage = "https://melpa.org/#/svg-mode-line-themes"; - license = lib.licenses.free; - }; - }) {}; - svnwrapper = callPackage ({ e2ansi - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "svnwrapper"; - ename = "svnwrapper"; - version = "20180414.1143"; - src = fetchFromGitHub { - owner = "Lindydancer"; - repo = "svnwrapper"; - rev = "de5069f5784e5d9e87a0af0159ba5f28a3716583"; - sha256 = "08sg55cmjbk06622mzhv74f5b5dvbay7gb729zsckczxwrp1cayp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb43431d7a7276cdf1ea741b2b218bc46c2722f9/recipes/svnwrapper"; - sha256 = "06nb7dql7fbaa9khhpxdl8jj6zmypi24bak52sfsa0js77v51pf2"; - name = "recipe"; - }; - packageRequires = [ e2ansi ]; - meta = { - homepage = "https://melpa.org/#/svnwrapper"; - license = lib.licenses.free; - }; - }) {}; - swagger-to-org = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "swagger-to-org"; - ename = "swagger-to-org"; - version = "20160610.1756"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "swagger-to-org"; - rev = "181357c71ea24bede263f5706d8781ad65e16877"; - sha256 = "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d5a7f017593e73ea48c0e535ecf3809536bcde5/recipes/swagger-to-org"; - sha256 = "1m40f5njxcxmc2snaz2q43b4scwgp51y761kq6klixjvafi0pv86"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/swagger-to-org"; - license = lib.licenses.free; - }; - }) {}; - swap-buffers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "swap-buffers"; - ename = "swap-buffers"; - version = "20150506.1439"; - src = fetchFromGitHub { - owner = "ekazakov"; - repo = "swap-buffers"; - rev = "46ab31359b70d935add6c6e9533443116dc51103"; - sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a0172aaebdf4e0b6f6dd3093482e3cf3eb796d4/recipes/swap-buffers"; - sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/swap-buffers"; - license = lib.licenses.free; - }; - }) {}; - swap-regions = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "swap-regions"; - ename = "swap-regions"; - version = "20180915.646"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "swap-regions.el"; - rev = "f4fd9880cf690e003fcde88dcf2b46adbbbb03cd"; - sha256 = "1d45yanqk4w0idqwkrwig1dl22wr820k11r3gynv7an643k4wngp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6805c7710618ed1178ffd3488295d4d6b33e8ebe/recipes/swap-regions"; - sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/swap-regions"; - license = lib.licenses.free; - }; - }) {}; - sweetgreen = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sweetgreen"; - ename = "sweetgreen"; - version = "20180604.2035"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "sweetgreen.el"; - rev = "e933fe466b5ef0e976967e203f88bd7a012469d1"; - sha256 = "1pd13v3xma78xa0smxql4i2iax72kxqh7iwp3k16jwzrklmsdiyr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen"; - sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash helm request ]; - meta = { - homepage = "https://melpa.org/#/sweetgreen"; - license = lib.licenses.free; - }; - }) {}; - swift-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "swift-mode"; - ename = "swift-mode"; - version = "20190524.2316"; - src = fetchFromGitHub { - owner = "swift-emacs"; - repo = "swift-mode"; - rev = "3b6bdad3870ecb87190cfec993bdae0545a8dbaa"; - sha256 = "1x68fli13nd8mwjzc5d7sk2kkjrw22z9xl3srvzh7qqfm8pwcd2r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/swift-mode"; - sha256 = "103nix9k2agxgfpwyhsracixl4xvzqlgidd25r1fpj679hr42bg8"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/swift-mode"; - license = lib.licenses.free; - }; - }) {}; - swift3-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "swift3-mode"; - ename = "swift3-mode"; - version = "20160918.550"; - src = fetchFromGitHub { - owner = "taku0"; - repo = "swift3-mode"; - rev = "ea34d46bf9a4293e75ffdac9500d34989316d9e9"; - sha256 = "1hwc3fxv87hmw0a0mgl8khfzf1p7yp2izkc02z8f1vbkaibmmawp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ca9071199230d3c4c1b2e3a501736df87095fd3/recipes/swift3-mode"; - sha256 = "14vm05p8ix09v73dkmf03i56yib8yk6h2r1zc9m4ym80fki4f520"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/swift3-mode"; - license = lib.licenses.free; - }; - }) {}; - swiper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "swiper"; - ename = "swiper"; - version = "20190604.308"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "c11797a32f5456f23663d3b725d1fe8315867000"; - sha256 = "0wnmya8cj7zy5kr8cw5yjddmshcvwc2dz8qnzkkxx9hxk5312h63"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; - sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/swiper"; - license = lib.licenses.free; - }; - }) {}; - swiper-helm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "swiper-helm"; - ename = "swiper-helm"; - version = "20180131.944"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper-helm"; - rev = "93fb6db87bc6a5967898b5fd3286954cc72a0008"; - sha256 = "05n4h20lfyg1kis5rig72ajbz680ml5fmsy6l1w4g9jx2xybpll2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/674c709490e13267e09417e08953ff76bfbaddb7/recipes/swiper-helm"; - sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; - name = "recipe"; - }; - packageRequires = [ emacs helm swiper ]; - meta = { - homepage = "https://melpa.org/#/swiper-helm"; - license = lib.licenses.free; - }; - }) {}; - switch-buffer-functions = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "switch-buffer-functions"; - ename = "switch-buffer-functions"; - version = "20171011.1004"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "switch-buffer-functions-el"; - rev = "651696ef9dec7affbe51c81d9318288376c35899"; - sha256 = "0xv57imh6w6kbh1i1ib9k9x2h01l4vdxs2i667a76ym6dmsjbx2x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d37ebd28f4a2f770958bd9a2669cce86cc76cbe7/recipes/switch-buffer-functions"; - sha256 = "1b93p8q07zncqq3nw829gddc615rwaan1ds5vgfhdb1l7bh9f37l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/switch-buffer-functions"; - license = lib.licenses.free; - }; - }) {}; - switch-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "switch-window"; - ename = "switch-window"; - version = "20181103.2040"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "switch-window"; - rev = "204f9fc1a39868a2d16ab9370a142c8c9c7a0943"; - sha256 = "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d2204e3b53ade1e400e143ac219f3c7ab63a1e9/recipes/switch-window"; - sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/switch-window"; - license = lib.licenses.free; - }; - }) {}; - swoop = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , pcre2el }: - melpaBuild { - pname = "swoop"; - ename = "swoop"; - version = "20160120.915"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "emacs-swoop"; - rev = "a5e475db7a9f5db02ba3d08cd3c1c3594e2e01d7"; - sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/swoop"; - sha256 = "0zcxasc0bpldvlp6032f9v1s4vm9r76pzd7sjgwa9dxbajw5h7fs"; - name = "recipe"; - }; - packageRequires = [ async emacs ht pcre2el ]; - meta = { - homepage = "https://melpa.org/#/swoop"; - license = lib.licenses.free; - }; - }) {}; - sws-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sws-mode"; - ename = "sws-mode"; - version = "20150317.1245"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "03486dce6990c96e85e53c18b8fcb35fbb8509f5"; - sha256 = "10w73i4sh6mn108lcnm6sv4xr1w0avbfw05kid28c33583h80vpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/sws-mode"; - sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sws-mode"; - license = lib.licenses.free; - }; - }) {}; - sx = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , let-alist - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "sx"; - ename = "sx"; - version = "20190114.723"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "sx.el"; - rev = "49358eae36dd4bb5b9207313b30df085e7f25cef"; - sha256 = "08x2bli821b47sp1jwgg8k8q292z4ryl052rfna0vkcjqv6l5bav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f16958a09820233fbe2abe403561fd9a012d0046/recipes/sx"; - sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json let-alist markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/sx"; - license = lib.licenses.free; - }; - }) {}; - symbol-overlay = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symbol-overlay"; - ename = "symbol-overlay"; - version = "20190525.1925"; - src = fetchFromGitHub { - owner = "wolray"; - repo = "symbol-overlay"; - rev = "ff16ccf472507ef4a4d8303e79bb12bf25345714"; - sha256 = "1fik6k1fil2rl4z3dasm4c0jxjpc5f1nqqvmm1hn3il4263p0qsc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a468ebe1a3e5a35ef40c59a62befbf8960bd7b/recipes/symbol-overlay"; - sha256 = "1al60x2mnjsv99jd10v5sd56zz185wsddiq7128phf1l35bkibis"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/symbol-overlay"; - license = lib.licenses.free; - }; - }) {}; - symbolword-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symbolword-mode"; - ename = "symbolword-mode"; - version = "20180401.727"; - src = fetchFromGitHub { - owner = "ncaq"; - repo = "symbolword-mode"; - rev = "3857c42696e20f49f274ff8bc45a6f3ee26884d4"; - sha256 = "0pk20glbf73lpfky0jz6dqvxzaqvig3m11xca0786ni0g1yc4g0g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be2018e0206c3f39c1b67e83000b030d70a72ceb/recipes/symbolword-mode"; - sha256 = "1fs1irnmlbrn76b4gdsy0v65nz8av85iqm0b7g9nm2rm8azcr050"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/symbolword-mode"; - license = lib.licenses.free; - }; - }) {}; - symon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symon"; - ename = "symon"; - version = "20170224.33"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "symon"; - rev = "76461679dfe13a5dccd3c8735fb6f58b26b46733"; - sha256 = "06s7q0zhqmvnhdkqikhfzl1rgm6xzqaxp461ndf8gp44rp1alkl4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f4bbc6b3d7b2e2a9fbe7ff7f1d47cda9c859cc0/recipes/symon"; - sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/symon"; - license = lib.licenses.free; - }; - }) {}; - symon-lingr = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , symon }: - melpaBuild { - pname = "symon-lingr"; - ename = "symon-lingr"; - version = "20150719.642"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "symon-lingr"; - rev = "056d1a473e36992ff5881e5ce6fdc331cead975f"; - sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/936e9a83ed73d3b6090e5c401076b6cff5d9732d/recipes/symon-lingr"; - sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1"; - name = "recipe"; - }; - packageRequires = [ cl-lib symon ]; - meta = { - homepage = "https://melpa.org/#/symon-lingr"; - license = lib.licenses.free; - }; - }) {}; - sync-recentf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sync-recentf"; - ename = "sync-recentf"; - version = "20160326.1301"; - src = fetchFromGitHub { - owner = "ffevotte"; - repo = "sync-recentf"; - rev = "0052561d5c5b5c2684faedc3eead776aec06c3ed"; - sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9858ea35f2a3faacab56b6ccba5672956560456b/recipes/sync-recentf"; - sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sync-recentf"; - license = lib.licenses.free; - }; - }) {}; - syndicate = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syndicate"; - ename = "syndicate"; - version = "20160603.823"; - src = fetchFromGitHub { - owner = "KNX32542"; - repo = "syndicate"; - rev = "90cee202a06f5bab48268ebf9f62c43334b69f50"; - sha256 = "1w0na1p9drdmbci7adj20amrabcpny9fb2v4bd967ils4f2wly75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/626bda1691d9c7a97fcf549f7a3f0d41d832cfde/recipes/syndicate"; - sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/syndicate"; - license = lib.licenses.free; - }; - }) {}; - synonymous = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "synonymous"; - ename = "synonymous"; - version = "20180325.1117"; - src = fetchFromGitHub { - owner = "toroidal-code"; - repo = "synonymous.el"; - rev = "2cb9a674d84fddf3f1b00c9d6b13a853576acb87"; - sha256 = "1l0skavpj96x5gdrx9l8dqj4mrb7zcilv3jj335ak11p2i4ckcq2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ecf2c44c63e9f41f1733849bdef0d0c301485580/recipes/synonymous"; - sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/synonymous"; - license = lib.licenses.free; - }; - }) {}; - synosaurus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "synosaurus"; - ename = "synosaurus"; - version = "20190305.1406"; - src = fetchFromGitHub { - owner = "hpdeifel"; - repo = "synosaurus"; - rev = "bc26f5c22b4d08dd09d0852435814977433c9521"; - sha256 = "0hpcnslgs5qh3knapw1x7imia3b1yplicpddnzzpxnjsp7psypwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/synosaurus"; - sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/synosaurus"; - license = lib.licenses.free; - }; - }) {}; - synquid = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "synquid"; - ename = "synquid"; - version = "20160930.850"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "synquid-emacs"; - rev = "28701ce1a15437202f53ab93a14bcba1de83fd2c"; - sha256 = "0c0pi5w8xvir9gnbjp80g1c4i3rhid65zwh4i4vkyivkh2s29f6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ccd9f265d90a5f6a95942938532f556b223e4da/recipes/synquid"; - sha256 = "10kmd9g3qbfnyfl2bdf2s70f5sd3pyzalq18dpgq5ijkwqi019k7"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/synquid"; - license = lib.licenses.free; - }; - }) {}; - syntactic-close = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syntactic-close"; - ename = "syntactic-close"; - version = "20190513.247"; - src = fetchFromGitHub { - owner = "emacs-berlin"; - repo = "syntactic-close"; - rev = "2bd46845b664ae828c8b973839ef454cde501028"; - sha256 = "1r1ia1yw43vvyk62d6r1k55zcz185777s10ix9bg3fllczdbyzcz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2c15c0c8ee37a1de042a974c6daddbfa7f33f1d/recipes/syntactic-close"; - sha256 = "19lrzxxyzdj1nrzdgzandjz3b8b4pw7akbv86yf0mdf023d9as1f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/syntactic-close"; - license = lib.licenses.free; - }; - }) {}; - syntactic-sugar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syntactic-sugar"; - ename = "syntactic-sugar"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "syntactic-sugar"; - rev = "b6a49df4b6056e2619eea9ca554c105ae67e115f"; - sha256 = "0zymxv4lz3phb2lmza0469ssw3fybribzd1w2fmp8ij1r18xy0xk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b32b9b3b3e820e498d7531a1f82da36e5e8f4e74/recipes/syntactic-sugar"; - sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/syntactic-sugar"; - license = lib.licenses.free; - }; - }) {}; - syntax-subword = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syntax-subword"; - ename = "syntax-subword"; - version = "20160519.1205"; - src = fetchhg { - url = "https://bitbucket.com/jpkotta/syntax-subword"; - rev = "ad0db0fcb464"; - sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/syntax-subword"; - sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/syntax-subword"; - license = lib.licenses.free; - }; - }) {}; - system-packages = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "system-packages"; - ename = "system-packages"; - version = "20181219.821"; - src = fetchFromGitLab { - owner = "jabranham"; - repo = "system-packages"; - rev = "25da03bab9757009d095dc1ef3e93d8b1ef2d7c4"; - sha256 = "1qy9617dfcnaaa2ppw90chl7x4mkdm47j1ayis9s266gcphd14rk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d3c7af03e0bca3f834c32827cbcca29e29ef4db/recipes/system-packages"; - sha256 = "13nk3m8gw9kqjllk7hgkmpxsx9y5h03f0l7zydg388wc7cxsiy3l"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/system-packages"; - license = lib.licenses.free; - }; - }) {}; - system-specific-settings = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "system-specific-settings"; - ename = "system-specific-settings"; - version = "20140818.757"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "emacs-system-specific-settings"; - rev = "0050d85b2175095aa5ecf580a2fe43c069b0eef3"; - sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f52c584d7435c836ba3c95c598306ba0f5c06da/recipes/system-specific-settings"; - sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/system-specific-settings"; - license = lib.licenses.free; - }; - }) {}; - systemd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "systemd"; - ename = "systemd"; - version = "20180629.1406"; - src = fetchFromGitHub { - owner = "holomorph"; - repo = "systemd-mode"; - rev = "401d71c2dd24e424216ae5e4275c830f2a9c6b0c"; - sha256 = "06b8j64fk711fay0p4ifypvpdv2l2kz80rx1hhm6g9991h0x33bj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca810e512c357d1d0130aeeb9b46b38c595e3351/recipes/systemd"; - sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/systemd"; - license = lib.licenses.free; - }; - }) {}; - systemtap-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "systemtap-mode"; - ename = "systemtap-mode"; - version = "20151122.1140"; - src = fetchFromGitHub { - owner = "ruediger"; - repo = "systemtap-mode"; - rev = "8b5086d6b0050a12bb37e33c24c24d1f420afd3b"; - sha256 = "14hrqz26h89sdgfpfyhwwxvqkv3j0zn67yy8wz0nbla9k2jjf6h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1df01b4cccfb234971933d24de21a2b5648fd8c/recipes/systemtap-mode"; - sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/systemtap-mode"; - license = lib.licenses.free; - }; - }) {}; - ta = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ta"; - ename = "ta"; - version = "20160619.945"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "ta.el"; - rev = "668ad41e71f374f8c32c8d0532f3d8485b355d35"; - sha256 = "1lk7hpdp6c74sdwkg2azfvj4qmbl1ghmhms3r0j4296dj8bl5k63"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/847693b5952e99597bd77223e1058536d1beeb5c/recipes/ta"; - sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ta"; - license = lib.licenses.free; - }; - }) {}; - tab-group = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tab-group"; - ename = "tab-group"; - version = "20140306.650"; - src = fetchFromGitHub { - owner = "tarao"; - repo = "tab-group-el"; - rev = "5a290ec2608e4100fb188fd60ecb77affcc3465b"; - sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/tab-group"; - sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tab-group"; - license = lib.licenses.free; - }; - }) {}; - tab-jump-out = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tab-jump-out"; - ename = "tab-jump-out"; - version = "20151005.1830"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "tab-jump-out"; - rev = "1c3fec1826d2891177ea78e4e7cce1dc67e83e51"; - sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/tab-jump-out"; - sha256 = "1p2hkj0d9hbiwbf746l3rad8a5x6hk97b0ajl6q6cwbmy2qm3cca"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/tab-jump-out"; - license = lib.licenses.free; - }; - }) {}; - tabbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tabbar"; - ename = "tabbar"; - version = "20180726.1035"; - src = fetchFromGitHub { - owner = "dholm"; - repo = "tabbar"; - rev = "82bbda31cbe8ef367dd6501c3aa14b7f2c835910"; - sha256 = "01sw76wp8bvh21h30pkc3kjr98c8m6qid6misk1y7hkyld0bzxay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/806420d75561cbeffbc1b387345a56c21cc20179/recipes/tabbar"; - sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tabbar"; - license = lib.licenses.free; - }; - }) {}; - tabbar-ruler = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mode-icons - , powerline - , tabbar }: - melpaBuild { - pname = "tabbar-ruler"; - ename = "tabbar-ruler"; - version = "20160801.2007"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "tabbar-ruler.el"; - rev = "535568189aa12a3eff7f977d2783e57b6a65ab6a"; - sha256 = "1csj6qhwihdf4kfahcqhm163isiwac08w4nqid1hnca184bfk6xm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d69d1ef8dbab8394be01153cf9ebe8e49bf9912/recipes/tabbar-ruler"; - sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; - name = "recipe"; - }; - packageRequires = [ cl-lib mode-icons powerline tabbar ]; - meta = { - homepage = "https://melpa.org/#/tabbar-ruler"; - license = lib.licenses.free; - }; - }) {}; - tablist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tablist"; - ename = "tablist"; - version = "20190413.2343"; - src = fetchFromGitHub { - owner = "politza"; - repo = "tablist"; - rev = "8079801527da1f596bc942162026328d7bdf6ad9"; - sha256 = "11bm7z4kdxrq6pv93zwrmg729mnvqvhgmna9r2wqx2wyf87vdh00"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist"; - sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tablist"; - license = lib.licenses.free; - }; - }) {}; - tabula-rasa = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tabula-rasa"; - ename = "tabula-rasa"; - version = "20141215.2147"; - src = fetchFromGitHub { - owner = "idomagal"; - repo = "Tabula-Rasa"; - rev = "e85fff9de18dc31bc6a7aca726e34a95cc5459f5"; - sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tabula-rasa"; - sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tabula-rasa"; - license = lib.licenses.free; - }; - }) {}; - tagedit = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "tagedit"; - ename = "tagedit"; - version = "20161121.55"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "tagedit"; - rev = "b3a70101a0dcf85498c92b7fcfa7fdbac869746c"; - sha256 = "0xq9i3axlq9wgsr27nbhi5k9hxr1wahygkb73xkvxlgmvkmikcrw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8968e2cd0bd49d54a5479b2467bd4f0a97d7a969/recipes/tagedit"; - sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/tagedit"; - license = lib.licenses.free; - }; - }) {}; - take-off = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-server }: - melpaBuild { - pname = "take-off"; - ename = "take-off"; - version = "20140531.217"; - src = fetchFromGitHub { - owner = "tburette"; - repo = "take-off"; - rev = "aa9ea45566fc74febbb6ee9c409ecc4b59246215"; - sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d129ad161d8538c9db022bbd4e90eacda998cf4/recipes/take-off"; - sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar"; - name = "recipe"; - }; - packageRequires = [ emacs web-server ]; - meta = { - homepage = "https://melpa.org/#/take-off"; - license = lib.licenses.free; - }; - }) {}; - tango-2-theme = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tango-2-theme"; - ename = "tango-2-theme"; - version = "20120312.1325"; - src = fetchgit { - url = "https://gist.github.com/2024464.git"; - rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa"; - sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab432b0eac0bcf0d40c5b3c8a78475bc0fea47d2/recipes/tango-2-theme"; - sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tango-2-theme"; - license = lib.licenses.free; - }; - }) {}; - tango-plus-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tango-plus-theme"; - ename = "tango-plus-theme"; - version = "20170214.908"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "tango-plus-theme"; - rev = "8ba8901397e3e9f1d53110487bfa0effc65015e7"; - sha256 = "025dca4yqpai45s74nk41y075v8pv59fdna11c0qqz3ihyrdhbrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/tango-plus-theme"; - sha256 = "1p1b48fvmk7a8m3bnddkx2pp7kz5agac0v1ii2r6iqapdqsl22ng"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tango-plus-theme"; - license = lib.licenses.free; - }; - }) {}; - tangotango-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tangotango-theme"; - ename = "tangotango-theme"; - version = "20170924.809"; - src = fetchFromGitHub { - owner = "juba"; - repo = "color-theme-tangotango"; - rev = "e2f2ea9c35f06dfc43a29c91c14cf0cdb19f2144"; - sha256 = "01gvsvha8z7pyr8c33gh3xmz47lh6b8g0nwf1gzdiw1gd0sfhs4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebfcfa3ba4ca77443667a9478d59214810cd8cc2/recipes/tangotango-theme"; - sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tangotango-theme"; - license = lib.licenses.free; - }; - }) {}; - tao-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tao-theme"; - ename = "tao-theme"; - version = "20190204.304"; - src = fetchFromGitHub { - owner = "11111000000"; - repo = "tao-theme-emacs"; - rev = "c5107fbe7e752f4e58c2d2147ff18a1ebb12937c"; - sha256 = "07vvlglmkj87hpxz79s3bl2cjn71vain57fdxs7j9vlr5jkchxwn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94b70f11655944080507744fd06464607727ecef/recipes/tao-theme"; - sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tao-theme"; - license = lib.licenses.free; - }; - }) {}; - taskpaper-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "taskpaper-mode"; - ename = "taskpaper-mode"; - version = "20190516.812"; - src = fetchFromGitHub { - owner = "saf-dmitry"; - repo = "taskpaper-mode"; - rev = "0f31dca5dc87b5848736fb5ad574947940fd7a03"; - sha256 = "05mv8aii1d0r1ayhj4wfbkrj0yd31jc88cv4d8rk9jc7f1zg73fd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f969b1cd58dfd22041a8a2b116db0f48e321e546/recipes/taskpaper-mode"; - sha256 = "0gayhzakiwlrkysmh24499pyzdfy3rmf8d68vamih7igxpl57gim"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/taskpaper-mode"; - license = lib.licenses.free; - }; - }) {}; - tawny-mode = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tawny-mode"; - ename = "tawny-mode"; - version = "20170422.1502"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "tawny-owl"; - rev = "9f11bb428a255a605c725dfbd23cc082c5d258af"; - sha256 = "0l419pvvnj850c6byr7njnjki171mcsvlqj8g2d4qk16j504n34m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea9a114ff739f7d6f5d4c3167f5635ddf79bf60c/recipes/tawny-mode"; - sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; - name = "recipe"; - }; - packageRequires = [ cider emacs ]; - meta = { - homepage = "https://melpa.org/#/tawny-mode"; - license = lib.licenses.free; - }; - }) {}; - tblui = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild - , tablist }: - melpaBuild { - pname = "tblui"; - ename = "tblui"; - version = "20161007.1212"; - src = fetchFromGitHub { - owner = "Yuki-Inoue"; - repo = "tblui.el"; - rev = "e280e11b35a2fdbcadf9ce901a2b62684ac7a7a3"; - sha256 = "0alb0gpdny1y90b2c5s25as56qbi3dy8rfnm9ba0k7ifwy0lmfq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4dd6e9dcc73c57f93371ba16b15f2d98d805dae/recipes/tblui"; - sha256 = "1m0zhk5zyialklnil5az974yz6g1zksw02453cxc0xpn5pf0a3xa"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash magit-popup tablist ]; - meta = { - homepage = "https://melpa.org/#/tblui"; - license = lib.licenses.free; - }; - }) {}; - tbx2org = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "tbx2org"; - ename = "tbx2org"; - version = "20140224.759"; - src = fetchFromGitHub { - owner = "istib"; - repo = "tbx2org"; - rev = "08e9816ba6066f56936050b58d07ceb2187ae6f7"; - sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d616cbf4ad7e49807afd2f7acf0a0fd2f2a0bac4/recipes/tbx2org"; - sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/tbx2org"; - license = lib.licenses.free; - }; - }) {}; - tc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tc"; - ename = "tc"; - version = "20181108.2028"; - src = fetchFromGitHub { - owner = "kanchoku"; - repo = "tc"; - rev = "5496f8dee27c4d925977da3cca6fcacf9b45bc58"; - sha256 = "1clf56sxvrky05qzk5kri01r0jz4zfwysxzs3iix0aljrz8mdi8w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fddfc79ed2c614c33e90ba80f300912fdab88a3/recipes/tc"; - sha256 = "05lnsaizlh4wqjkp0wqcm1756r9ia46as8zf01k8qsi0mm452g6q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tc"; - license = lib.licenses.free; - }; - }) {}; - tco = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tco"; - ename = "tco"; - version = "20190308.1655"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "tco.el"; - rev = "482db5313f090b17ed22ccd856f0e141dc75afe6"; - sha256 = "1z7xkbrqznk6ni687qqknp8labcyhl8y6576hjfri89fn21385y9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca33f97f0394585c8ccb31cab0ee776d1655907c/recipes/tco"; - sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/tco"; - license = lib.licenses.free; - }; - }) {}; - tdd-status-mode-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tdd-status-mode-line"; - ename = "tdd-status-mode-line"; - version = "20131123.916"; - src = fetchFromGitHub { - owner = "algernon"; - repo = "tdd-status-mode-line"; - rev = "9b3c35b0a972772640e9fee653eab6a76e06416a"; - sha256 = "0bvxc926kaxvqnppaw4y6gp814qc0krvidn5qg761z4qwz023rax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/tdd-status-mode-line"; - sha256 = "1i0s7f4y4v8681mymcmjlcbq0jfghgmdzrs167c453mb5ssz8yxg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tdd-status-mode-line"; - license = lib.licenses.free; - }; - }) {}; - tea-time = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tea-time"; - ename = "tea-time"; - version = "20120331.120"; - src = fetchFromGitHub { - owner = "konzeptual"; - repo = "tea-time"; - rev = "1f6cf0bdd27c5eb3508989c5095427781f858eca"; - sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/tea-time"; - sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tea-time"; - license = lib.licenses.free; - }; - }) {}; - teacode-expand = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "teacode-expand"; - ename = "teacode-expand"; - version = "20181230.2240"; - src = fetchFromGitHub { - owner = "raguay"; - repo = "TeaCode-Expand"; - rev = "7df6f9ec95da1fb47bbae489bb3f2c27ed3a9b3a"; - sha256 = "0z0297zrvd8zf8bmf4kf9gzf6qajs4abdy6appb3swz3z2v3nqkb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b23b0f701627ed18886f29ffd33ef7fb1f82e04/recipes/teacode-expand"; - sha256 = "1hkh7mzzwrk7a8ihss7kyncw9mkwr4iw06gv5y6kg806qc4f1nn3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/teacode-expand"; - license = lib.licenses.free; - }; - }) {}; - telepathy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "telepathy"; - ename = "telepathy"; - version = "20131209.458"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "telepathy.el"; - rev = "211d785b02a29ddc254422fdcc3db45262582f8c"; - sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/485ef1745f07f29c45bf0d489eeb4fcdfda80b33/recipes/telepathy"; - sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/telepathy"; - license = lib.licenses.free; - }; - }) {}; - telephone-line = callPackage ({ cl-generic - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "telephone-line"; - ename = "telephone-line"; - version = "20190424.1234"; - src = fetchFromGitHub { - owner = "dbordak"; - repo = "telephone-line"; - rev = "408e05e105e8e521735221f4c98fc358e007df3b"; - sha256 = "123fxr4pjm7z3pidrwgcalb99s0vq3d6imkwgla6fyqyyn9wvag2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line"; - sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; - name = "recipe"; - }; - packageRequires = [ cl-generic cl-lib emacs seq ]; - meta = { - homepage = "https://melpa.org/#/telephone-line"; - license = lib.licenses.free; - }; - }) {}; - template-overlays = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ov }: - melpaBuild { - pname = "template-overlays"; - ename = "template-overlays"; - version = "20180706.432"; - src = fetchFromGitHub { - owner = "mmontone"; - repo = "template-overlays"; - rev = "3cbc9a4882dcbbddf9b168883d119a6af0848784"; - sha256 = "1lnrs6zphpk1qi8pg8km9srbv5n9i70f2jvyj5zvxhlpp0jb52l2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8856e67aae1f623714bc2a61a7b4773ed1fb2934/recipes/template-overlays"; - sha256 = "0vmadkgzp4i0mh64la67k1anvmlmd4i7iibdlr9ly8z7i3cdsxqn"; - name = "recipe"; - }; - packageRequires = [ emacs ov ]; - meta = { - homepage = "https://melpa.org/#/template-overlays"; - license = lib.licenses.free; - }; - }) {}; - temporary-persistent = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names - , s }: - melpaBuild { - pname = "temporary-persistent"; - ename = "temporary-persistent"; - version = "20161210.333"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "temporary-persistent"; - rev = "1132e940dc1fd27f205758495640cc4a42270cff"; - sha256 = "155yyinh342k8fz8g4xzz0glqkxkjl6p6y2wym6p12phk7v2x3ic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/temporary-persistent"; - sha256 = "0afjcad97pzbrjs1v80l6c98vi5asgaxcn2rq95gz1ld7nn0a9zh"; - name = "recipe"; - }; - packageRequires = [ dash emacs names s ]; - meta = { - homepage = "https://melpa.org/#/temporary-persistent"; - license = lib.licenses.free; - }; - }) {}; - ten-hundred-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ten-hundred-mode"; - ename = "ten-hundred-mode"; - version = "20161028.1536"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "ten-hundred-mode.el"; - rev = "bdcfda49b1819e82d61fe90947e50bb948cf7933"; - sha256 = "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode"; - sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ten-hundred-mode"; - license = lib.licenses.free; - }; - }) {}; - term-alert = callPackage ({ alert - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , term-cmd }: - melpaBuild { - pname = "term-alert"; - ename = "term-alert"; - version = "20161119.145"; - src = fetchFromGitHub { - owner = "CallumCameron"; - repo = "term-alert"; - rev = "47af9e6fe483ef0d393098c145f499362a33292a"; - sha256 = "1nv8ma8x9xkgsl95z7yysy8q1lb3xr0pd8a5sb01nlx8ks3clad4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; - sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; - name = "recipe"; - }; - packageRequires = [ alert emacs f term-cmd ]; - meta = { - homepage = "https://melpa.org/#/term-alert"; - license = lib.licenses.free; - }; - }) {}; - term-cmd = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-cmd"; - ename = "term-cmd"; - version = "20160517.345"; - src = fetchFromGitHub { - owner = "CallumCameron"; - repo = "term-cmd"; - rev = "6c9cbc659b70241d2ed1601eea34aeeca0646dac"; - sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e08ea89cf193414cce5073fc9c312f2b382bc842/recipes/term-cmd"; - sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/term-cmd"; - license = lib.licenses.free; - }; - }) {}; - term-manager = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-manager"; - ename = "term-manager"; - version = "20171020.141"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "term-manager"; - rev = "13a0f1637a1f075d70211ccb8162e63a18a474da"; - sha256 = "0hvn60wk3w27fjb023drnaw0gmys6ancha8blpl0r4vc5k203kcf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2f7d8c8fcbb535432f8e70729d69a572e49a1a/recipes/term-manager"; - sha256 = "0ab388ki7vr1wpz81bvbl2fskq9zz5bicdf5gqfg01qzv5l75iza"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/term-manager"; - license = lib.licenses.free; - }; - }) {}; - term-plus = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-plus"; - ename = "term+"; - version = "20170508.1717"; - src = fetchFromGitHub { - owner = "tarao"; - repo = "term-plus-el"; - rev = "c3c9239b339c127231860de43abfa08c44c0201a"; - sha256 = "1mpv9vvvl1sh35vsa5415rvdv57mmbfix8s435q676zvhz3nl8yx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/term+"; - sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/term+"; - license = lib.licenses.free; - }; - }) {}; - term-plus-key-intercept = callPackage ({ fetchFromGitHub - , fetchurl - , key-intercept - , lib - , melpaBuild - , term-plus }: - melpaBuild { - pname = "term-plus-key-intercept"; - ename = "term+key-intercept"; - version = "20140210.2350"; - src = fetchFromGitHub { - owner = "tarao"; - repo = "term-plus-ki-el"; - rev = "fd0771fd66b8c7a909aaac972194485c79ba48c4"; - sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/term+key-intercept"; - sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb"; - name = "recipe"; - }; - packageRequires = [ key-intercept term-plus ]; - meta = { - homepage = "https://melpa.org/#/term+key-intercept"; - license = lib.licenses.free; - }; - }) {}; - term-plus-mux = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tab-group - , term-plus }: - melpaBuild { - pname = "term-plus-mux"; - ename = "term+mux"; - version = "20140210.2349"; - src = fetchFromGitHub { - owner = "tarao"; - repo = "term-plus-mux-el"; - rev = "81b60e80cf008472bfd7fad9233af2ef722c208a"; - sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad758d865bde8c97d27c0d57cabe1606f8b36974/recipes/term+mux"; - sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh"; - name = "recipe"; - }; - packageRequires = [ tab-group term-plus ]; - meta = { - homepage = "https://melpa.org/#/term+mux"; - license = lib.licenses.free; - }; - }) {}; - term-projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , term-manager }: - melpaBuild { - pname = "term-projectile"; - ename = "term-projectile"; - version = "20190306.2000"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "term-manager"; - rev = "fad6760e66f64661e77e952f06b2fbef1e88e4fe"; - sha256 = "0b8r4g80jw2gdpwyc63fz1cssi1iygwdcqzqvjdaawrw3v7cbxx3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5260876280148fae28a459f07932cebb059b560e/recipes/term-projectile"; - sha256 = "1mzyzjxkdfvf1kq9m3c1f6y6xzj1qq53rixawmnzmil5cmznvwag"; - name = "recipe"; - }; - packageRequires = [ emacs projectile term-manager ]; - meta = { - homepage = "https://melpa.org/#/term-projectile"; - license = lib.licenses.free; - }; - }) {}; - term-run = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-run"; - ename = "term-run"; - version = "20190529.43"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "term-run-el"; - rev = "fe8bf58814b167f887aaef98a148b8d5d8a11d3f"; - sha256 = "0jzk0b07rj5a7va6nc93sjd4zii228gg63v1q49wg0hz2x2yjmfl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cad6343104bfe5724e068660af79a6249010164/recipes/term-run"; - sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/term-run"; - license = lib.licenses.free; - }; - }) {}; - termbright-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "termbright-theme"; - ename = "termbright-theme"; - version = "20151030.1935"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "termbright-theme-el"; - rev = "bec6ab14336c0611e85f45486276004f16d20607"; - sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/termbright-theme"; - sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/termbright-theme"; - license = lib.licenses.free; - }; - }) {}; - terminal-focus-reporting = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "terminal-focus-reporting"; - ename = "terminal-focus-reporting"; - version = "20180830.19"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "terminal-focus-reporting.el"; - rev = "8b84bf18f4c5f1b59a11692eb706f13c3598d9a5"; - sha256 = "0bbcl0mq62f22n2aipgzx93164x81bgybfd0x7gvsfva76qs8pc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19e7149a0a2db7df7f890a2c1ad22266e97694d7/recipes/terminal-focus-reporting"; - sha256 = "0iwq0rabq0sdn4apa5ibfp912j76w7hzg3q5lbxp7fspfwwynvg2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/terminal-focus-reporting"; - license = lib.licenses.free; - }; - }) {}; - terminal-here = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "terminal-here"; - ename = "terminal-here"; - version = "20180513.133"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "terminal-here"; - rev = "2b57dcfc7d78c6762eb74b37930067a75beb5ca4"; - sha256 = "01zljgwp5r8vd913y4r9s3ysrsp8qf2s7sgxl6xvh5iry06d1wpr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8df6f7e23476eb52e7fdfbf9de277d3b44db978/recipes/terminal-here"; - sha256 = "1w64r3y88lspxxcqcqfwhakk8p9vl7q3z610dykfbqwqx61a6adj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/terminal-here"; - license = lib.licenses.free; - }; - }) {}; - terminal-toggle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "terminal-toggle"; - ename = "terminal-toggle"; - version = "20190226.710"; - src = fetchFromGitHub { - owner = "mtekman"; - repo = "terminal-toggle.el"; - rev = "f824d634aef3600cb7a8e2ddf9e8444c6607c160"; - sha256 = "150xvmr5vsydg0197m1k62mwy2810mzh1iwqj9yl9fg47fbzbg0i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/673974fe768f88a7c67c929bb6b9b27fc028d4e2/recipes/terminal-toggle"; - sha256 = "0l1gklcgas2g0kx5q59dzhv20pki5hxv4h3rsbrwbpq5rxkxymbx"; - name = "recipe"; - }; - packageRequires = [ emacs popwin ]; - meta = { - homepage = "https://melpa.org/#/terminal-toggle"; - license = lib.licenses.free; - }; - }) {}; - tern = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "tern"; - ename = "tern"; - version = "20181107.2322"; - src = fetchFromGitHub { - owner = "ternjs"; - repo = "tern"; - rev = "40a0c74db3888b997a9115720ff91c399bb1b146"; - sha256 = "0dh0bfs0knikzn4gvjh9274yhbg3ndw46qmj4jy0kxh7gfl2lpkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern"; - sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/tern"; - license = lib.licenses.free; - }; - }) {}; - tern-auto-complete = callPackage ({ auto-complete - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tern }: - melpaBuild { - pname = "tern-auto-complete"; - ename = "tern-auto-complete"; - version = "20170521.1235"; - src = fetchFromGitHub { - owner = "ternjs"; - repo = "tern"; - rev = "d545bbdd8482c231211f9521c688fc06632e745e"; - sha256 = "0ribzvl5gs281chp2kqaqmjj9xji7k9l71hsblfw1vj2w9l7nw2m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern-auto-complete"; - sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib emacs tern ]; - meta = { - homepage = "https://melpa.org/#/tern-auto-complete"; - license = lib.licenses.free; - }; - }) {}; - tern-context-coloring = callPackage ({ context-coloring - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tern }: - melpaBuild { - pname = "tern-context-coloring"; - ename = "tern-context-coloring"; - version = "20161217.2347"; - src = fetchFromGitHub { - owner = "jacksonrayhamilton"; - repo = "tern-context-coloring"; - rev = "db0466c650ed4f7e6621a48dfdc53eaf5e127be9"; - sha256 = "093mdq97gc0ljw6islhm7y1yl3yf7w4gf205s96bnsnb1v952n63"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db2119d2c2d167d771ee02c2735b435d59991b93/recipes/tern-context-coloring"; - sha256 = "0wkb7gn2ma6mz495bgphcjs5p0c6a869zk4a8mnm0spq41xbw4gi"; - name = "recipe"; - }; - packageRequires = [ context-coloring emacs tern ]; - meta = { - homepage = "https://melpa.org/#/tern-context-coloring"; - license = lib.licenses.free; - }; - }) {}; - terraform-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hcl-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "terraform-mode"; - ename = "terraform-mode"; - version = "20170111.2117"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-terraform-mode"; - rev = "6973d1acaba2835dfdf174f5a5e27de6366002e1"; - sha256 = "12ww36g7mz4p4nslajcsdcm8xk6blwjwqjwhyp0n10ym6ssbh820"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93e06adf34bc613edf95feaca64c69a0a2a4b567/recipes/terraform-mode"; - sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; - name = "recipe"; - }; - packageRequires = [ emacs hcl-mode ]; - meta = { - homepage = "https://melpa.org/#/terraform-mode"; - license = lib.licenses.free; - }; - }) {}; - test-c = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "test-c"; - ename = "test-c"; - version = "20180423.1020"; - src = fetchFromGitHub { - owner = "aaptel"; - repo = "test-c"; - rev = "761a576f62c7021ba941f178f153c51289df1553"; - sha256 = "04dxgg4jz8cnw19wxybjwd36z8i9j6an15k9pz3zh3v7m72qzw7c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef915dc2d3bc09ef79eb8edde02101c89733c0b2/recipes/test-c"; - sha256 = "1gy5dxkd4fpzzm2sq9g7bmi1ylwvsgh6hlvjmc1c064wjkha9j9z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/test-c"; - license = lib.licenses.free; - }; - }) {}; - test-case-mode = callPackage ({ fetchFromGitHub - , fetchurl - , fringe-helper - , lib - , melpaBuild }: - melpaBuild { - pname = "test-case-mode"; - ename = "test-case-mode"; - version = "20130525.734"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "test-case-mode"; - rev = "26e397c0f930b7eb0be413ef7dd257b1da052bec"; - sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e0bf342713cbdf30cf98d0bbc7476b0abeb7f5/recipes/test-case-mode"; - sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; - name = "recipe"; - }; - packageRequires = [ fringe-helper ]; - meta = { - homepage = "https://melpa.org/#/test-case-mode"; - license = lib.licenses.free; - }; - }) {}; - test-kitchen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "test-kitchen"; - ename = "test-kitchen"; - version = "20171129.1235"; - src = fetchFromGitHub { - owner = "jjasghar"; - repo = "test-kitchen-el"; - rev = "0fc0ca4808425f03fbeb8125246043723e2a179a"; - sha256 = "1pip15ysya8nsk1xgz6k6gcjm6g60922r0im2anq4j2gjzdja79k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/420d18c76f593338fb28807fcbe3b884be5b1634/recipes/test-kitchen"; - sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/test-kitchen"; - license = lib.licenses.free; - }; - }) {}; - test-simple = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "test-simple"; - ename = "test-simple"; - version = "20170527.832"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-test-simple"; - rev = "b3b69f52207d3a8111421ad7ab9ed82abbe85316"; - sha256 = "0n400nmz3iyp50sdd4gz0bmfn1sfq5p6a69yv4zd09ypa9gkndws"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b76e053faee299f5b770a0e41aa615bf5fbf10/recipes/test-simple"; - sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/test-simple"; - license = lib.licenses.free; - }; - }) {}; - tex-smart-umlauts = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tex-smart-umlauts"; - ename = "tex-smart-umlauts"; - version = "20190316.1515"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "tex-smart-umlauts"; - rev = "f15ed781b1fb38bf3e46c481dd602c3999920b99"; - sha256 = "11ky141a33vm961jpj1spz9wxb4mfgw8drqxg2a6yk2rinkf0wcl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be27e728327016b819535ef8cae10020e5a07c2e/recipes/tex-smart-umlauts"; - sha256 = "1bygl7fjm83j8lhkipczjs812837x9p3pqn8waykfbb7v05s81fr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tex-smart-umlauts"; - license = lib.licenses.free; - }; - }) {}; - texfrag = callPackage ({ auctex - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "texfrag"; - ename = "texfrag"; - version = "20190508.2138"; - src = fetchFromGitHub { - owner = "TobiasZawada"; - repo = "texfrag"; - rev = "270a8a4b5dadddc5b226d9a9c6c7868ea6bfe86f"; - sha256 = "18ahbksxg1i3gvsayx2mhkjd1p75c60x5f8d9a3abm4h50gs5mvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/756649bbe2dc6233c66c3d128a8096be12231078/recipes/texfrag"; - sha256 = "195vdpwqzypz35v8hc7ai9xpv1flrik60lgrk5m7xypnlp7mpr2x"; - name = "recipe"; - }; - packageRequires = [ auctex emacs ]; - meta = { - homepage = "https://melpa.org/#/texfrag"; - license = lib.licenses.free; - }; - }) {}; - textile-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textile-mode"; - ename = "textile-mode"; - version = "20170304.916"; - src = fetchFromGitHub { - owner = "juba"; - repo = "textile-mode"; - rev = "c37aaab809503df008209390e31e19abf4e23630"; - sha256 = "16543im5iymc5hfcix1lglbvpq4v0441vb7sk58nbnffqba83yzy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ebe5e52bc9bb8875ca390b34ac32eb47f4e1252/recipes/textile-mode"; - sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/textile-mode"; - license = lib.licenses.free; - }; - }) {}; - textmate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textmate"; - ename = "textmate"; - version = "20110816.1446"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "textmate.el"; - rev = "350918b070148f0ace6d9d3cd4ebcaf15c1a8781"; - sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad3923ac8948de75a159e916ecc22005a17458ad/recipes/textmate"; - sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/textmate"; - license = lib.licenses.free; - }; - }) {}; - textmate-to-yas = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textmate-to-yas"; - ename = "textmate-to-yas"; - version = "20160409.1008"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "textmate-to-yas.el"; - rev = "be3a768b7ac4c2e24b9d4aa6e9ac1d916cdc5a73"; - sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/487c461bf658d50135428d72fbfbb2573a00eb7d/recipes/textmate-to-yas"; - sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/textmate-to-yas"; - license = lib.licenses.free; - }; - }) {}; - textx-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textx-mode"; - ename = "textx-mode"; - version = "20170516.211"; - src = fetchFromGitHub { - owner = "novakboskov"; - repo = "textx-mode"; - rev = "72f9f0c5855b382024f0da8f56833c22a70a5cb3"; - sha256 = "1lr9v7dk0pnmpvdvs4m5d9yvxlii0xzr8b3akknm25gvbw1y1q8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dada0378af342e0798c418032a8dcc7dfd80d600/recipes/textx-mode"; - sha256 = "10y95m6fskvdb2gh078ifa70nc48shkvw0223iyqbyjys35h53bn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/textx-mode"; - license = lib.licenses.free; - }; - }) {}; - tf2-conf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tf2-conf-mode"; - ename = "tf2-conf-mode"; - version = "20161209.820"; - src = fetchFromGitHub { - owner = "wynro"; - repo = "emacs-tf2-conf-mode"; - rev = "94c971da4a78d55da2848d1e76d513e5e0a8f7eb"; - sha256 = "0rg3ja6lc2bwq0nw50s0whsb690m7cs6p6an52hlb0qlfwd23mpv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c43c53dca64cf0c7d59ffd0b17e9fe60f4aa90d3/recipes/tf2-conf-mode"; - sha256 = "09kvb3ya1dx5pc146a6r9386fg9n9nfpcxm5mmhmyf75h9c6a25g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tf2-conf-mode"; - license = lib.licenses.free; - }; - }) {}; - tfsmacs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tablist }: - melpaBuild { - pname = "tfsmacs"; - ename = "tfsmacs"; - version = "20180911.1414"; - src = fetchFromGitHub { - owner = "sebasmonia"; - repo = "tfsmacs"; - rev = "13ee3f528ff616880611f563a68d921250692ef8"; - sha256 = "035avqp9m1mbffvc1xd5qvyg93vsxjsphmf394mq15gawqs33ik4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b449d004bdb498c2a1d155671070e0745c7d7598/recipes/tfsmacs"; - sha256 = "0j9rkcjxvgkcdnw2lxgk6bwid3q460n0hjxsj4nklv13s5b1hlyk"; - name = "recipe"; - }; - packageRequires = [ emacs tablist ]; - meta = { - homepage = "https://melpa.org/#/tfsmacs"; - license = lib.licenses.free; - }; - }) {}; - theme-changer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "theme-changer"; - ename = "theme-changer"; - version = "20171221.1127"; - src = fetchFromGitHub { - owner = "hadronzoo"; - repo = "theme-changer"; - rev = "61945695a30d678e6a5d47cbe7c8aff59a8c30ea"; - sha256 = "14xc36jfgj8896pklrkpg394fgikir051rh9vm70v132n6i9j0cn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d08b24a2aec1012751054c68f7d55bac1bd1fd11/recipes/theme-changer"; - sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/theme-changer"; - license = lib.licenses.free; - }; - }) {}; - theme-looper = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "theme-looper"; - ename = "theme-looper"; - version = "20190430.1827"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "theme-looper"; - rev = "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1"; - sha256 = "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/theme-looper"; - sha256 = "018bixcbzri3zsasy1pp2qfvgd679ylpi9gq26qv9iwlfhlrpwgf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/theme-looper"; - license = lib.licenses.free; - }; - }) {}; - theme-magic = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "theme-magic"; - ename = "theme-magic"; - version = "20190502.1527"; - src = fetchFromGitHub { - owner = "jcaw"; - repo = "theme-magic"; - rev = "6e842aac9204f3561a9051ffd842a82f69960d73"; - sha256 = "0fqwbn1blsrx11aic7i228f6dai7awyc4qh51dl03yrpw330b3zm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/321c8ea8e095aa55d12f8dfb07001b9398adcbc5/recipes/theme-magic"; - sha256 = "01vkwdfbhh7ifk1ziqmz257mjgn3ijmcva42ay4ih1n6268lr7k5"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/theme-magic"; - license = lib.licenses.free; - }; - }) {}; - therapy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "therapy"; - ename = "therapy"; - version = "20151113.1153"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "therapy"; - rev = "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a"; - sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34e1bfdc684aaa7ebfbaa0ed60f8322c3de8a40d/recipes/therapy"; - sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/therapy"; - license = lib.licenses.free; - }; - }) {}; - thingopt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thingopt"; - ename = "thingopt"; - version = "20160520.1618"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "thingopt-el"; - rev = "5679815852652479f3b3c9f3a98affc927384b2c"; - sha256 = "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b82d4102fa2c7622e76dae1154aaa8340b7f4b8/recipes/thingopt"; - sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/thingopt"; - license = lib.licenses.free; - }; - }) {}; - thinks = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thinks"; - ename = "thinks"; - version = "20170802.428"; - src = fetchFromGitHub { - owner = "davep"; - repo = "thinks.el"; - rev = "15e0437f5b635bdcf738ca092e26aa6d8ecdba36"; - sha256 = "1i2i8c53z8n48407jaz641adszv13yjg8cvq4k3hijddp651k555"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/439957cabf379651dc243219a83c3c96bae6f8cf/recipes/thinks"; - sha256 = "11vj9mjfzmqwdmkq97aqns3fh8hkgx9scnki6c2iag5lj0av2vcq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/thinks"; - license = lib.licenses.free; - }; - }) {}; - thread-dump = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thread-dump"; - ename = "thread-dump"; - version = "20170816.1150"; - src = fetchFromGitHub { - owner = "nd"; - repo = "thread-dump.el"; - rev = "204c9600242756d4b514bb5ff6293e052bf4b49d"; - sha256 = "11qx194gwizqg7p2mqy7mdfii85bdayabxfd388dmrm916i4w47n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/thread-dump"; - sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/thread-dump"; - license = lib.licenses.free; - }; - }) {}; - threes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "threes"; - ename = "threes"; - version = "20160820.542"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "threes.el"; - rev = "6981acb30b856c77cba6aba63fefbf102cbdfbb2"; - sha256 = "1a7zqq6kmqxgzbsg8yczlvipzv65n10c8j26mc507p4m47nlikgv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bff7d9ffbca45629f310743aff776b762c8507cc/recipes/threes"; - sha256 = "03zwcaibdj88a6whccc5ysqsnfwi76yhsgjsfp3lxjcmlkwqzjbs"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/threes"; - license = lib.licenses.free; - }; - }) {}; - thrift = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thrift"; - ename = "thrift"; - version = "20180905.350"; - src = fetchFromGitHub { - owner = "facebook"; - repo = "fbthrift"; - rev = "a1960cc1a78ada27872913a145395f6bd45c8fd9"; - sha256 = "1az66smmfdkm4rzb8pripsb8ymyvvpncpapg69byf0hqhklln55z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dca078c0c467bc44290a922ad5627d6a34194f8/recipes/thrift"; - sha256 = "13isxx16h7rg8q5a68qmgrf3rknhfrx1qh6fb5njlznfwhrqry3y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/thrift"; - license = lib.licenses.free; - }; - }) {}; - thumb-through = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thumb-through"; - ename = "thumb-through"; - version = "20120118.2134"; - src = fetchFromGitHub { - owner = "apg"; - repo = "thumb-through"; - rev = "08d8fb720f93c6172653e035191a8fa9c3305e63"; - sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/thumb-through"; - sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/thumb-through"; - license = lib.licenses.free; - }; - }) {}; - tickscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tickscript-mode"; - ename = "tickscript-mode"; - version = "20171218.1803"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "tickscript-mode"; - rev = "f0579f38ff14954df5002ce30ae6d4a2c978d461"; - sha256 = "0b3rbsd978ch0hiv45sqg9g4zsxhjn557j5f72vjql8cx1h5d8s4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c60ee1839f728c5041bde1fe4fa62c4d41c746ef/recipes/tickscript-mode"; - sha256 = "0wnck6j377idx7h7csmfdhp6napv3zs4sd24lknfclafhslllp54"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tickscript-mode"; - license = lib.licenses.free; - }; - }) {}; - tidal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "tidal"; - ename = "tidal"; - version = "20190320.1458"; - src = fetchFromGitHub { - owner = "tidalcycles"; - repo = "Tidal"; - rev = "a6eed4908c8b78f0c98b9cb8cd290814afd1252b"; - sha256 = "1hwcc713vrx5ypcxsidwp25mvcg24bk8fqy7k04w7np4hhc6szql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16a26659a16199b5bb066be6e5c4a40419bda018/recipes/tidal"; - sha256 = "0im0qbavpykacrwww3y0mlbhf5yfx8afcyvsq5pmjjp0aw245w6a"; - name = "recipe"; - }; - packageRequires = [ emacs haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/tidal"; - license = lib.licenses.free; - }; - }) {}; - tide = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s - , typescript-mode }: - melpaBuild { - pname = "tide"; - ename = "tide"; - version = "20190507.1033"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "tide"; - rev = "5224eae7da0a286d94a394620f9bbc8c7446a268"; - sha256 = "0y8mpn6wlmi064crhszir1i1r2cj7dpb2i2c09rrbj1yjkgc92ri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide"; - sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash flycheck s typescript-mode ]; - meta = { - homepage = "https://melpa.org/#/tide"; - license = lib.licenses.free; - }; - }) {}; - tile = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , stream }: - melpaBuild { - pname = "tile"; - ename = "tile"; - version = "20161224.1957"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "tile"; - rev = "22660f21f6e95de5aba55cd5d293d4841e9a4661"; - sha256 = "1qxhrm852j93sqi1lznlrjn7s0vscsixm48g46ja70gl320chyzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/424cfd28378ef328721bb0dc3651808e64c01306/recipes/tile"; - sha256 = "1795048ilpg6y9pn0jj0js5446hwxhwm6qmk50hds0hpcb396vbv"; - name = "recipe"; - }; - packageRequires = [ dash emacs s stream ]; - meta = { - homepage = "https://melpa.org/#/tile"; - license = lib.licenses.free; - }; - }) {}; - time-ext = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "time-ext"; - ename = "time-ext"; - version = "20170126.415"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "time-ext"; - rev = "d128becf660fe3f30178eb1b05cd266741f4784a"; - sha256 = "0ynxmik33hh0znmznrf7lkmsh5xggbrvbdhiqa61r0b7gs3jk5fd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/time-ext"; - sha256 = "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/time-ext"; - license = lib.licenses.free; - }; - }) {}; - timecop = callPackage ({ cl-lib ? null - , datetime-format - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "timecop"; - ename = "timecop"; - version = "20160520.352"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "emacs-datetime"; - rev = "3a1871613facc928ff250ed8f12fbc7073e46b75"; - sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/timecop"; - sha256 = "1hnmxcc2hjx9a4jyavx2v9hxmqacmmg1xj86rxqx3ms32hgigji5"; - name = "recipe"; - }; - packageRequires = [ cl-lib datetime-format ]; - meta = { - homepage = "https://melpa.org/#/timecop"; - license = lib.licenses.free; - }; - }) {}; - timer-revert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "timer-revert"; - ename = "timer-revert"; - version = "20150122.1232"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "timer-revert"; - rev = "615c91dec8b440d2b9b7c725dd733d7432564e45"; - sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/991e68c59d1fbaef06ba2583f07499ecad05586d/recipes/timer-revert"; - sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/timer-revert"; - license = lib.licenses.free; - }; - }) {}; - timesheet = callPackage ({ auctex - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "timesheet"; - ename = "timesheet"; - version = "20180801.1902"; - src = fetchFromGitHub { - owner = "tmarble"; - repo = "timesheet.el"; - rev = "67ca6a9f6733052066b438301fb2dd81b8b3f6eb"; - sha256 = "0rmh8lik27pmq95858jbjzgvf6rsfdnpynwcagj1fgkval5kzdbs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/40009ef2f6845c83242ca5d0a8c9c2c1e4ef8a9d/recipes/timesheet"; - sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; - name = "recipe"; - }; - packageRequires = [ auctex org s ]; - meta = { - homepage = "https://melpa.org/#/timesheet"; - license = lib.licenses.free; - }; - }) {}; - timonier = callPackage ({ all-the-icons - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "timonier"; - ename = "timonier"; - version = "20170411.100"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "timonier"; - rev = "3460a878269424c8d19b7d5d8e04749d0a8bf203"; - sha256 = "0hhjrmkz9xf5wazh52j2q6qqybjizk2jszvqjz9ywwg9milvqf50"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a31b0c177fd83bdeb1842a6ec3095de143bb4eae/recipes/timonier"; - sha256 = "0vb83kv2dkca2bq876icxs8iivv9qgkzmzrsxfpnvbv752b220b0"; - name = "recipe"; - }; - packageRequires = [ - all-the-icons - dash - emacs - f - hydra - pkg-info - request - s - ]; - meta = { - homepage = "https://melpa.org/#/timonier"; - license = lib.licenses.free; - }; - }) {}; - timp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , fifo-class - , lib - , melpaBuild - , signal }: - melpaBuild { - pname = "timp"; - ename = "timp"; - version = "20160618.103"; - src = fetchFromGitHub { - owner = "mola-T"; - repo = "timp"; - rev = "59657bf603904635d88c3fe4ff1ce45ee6572428"; - sha256 = "13adchpry39fv3rz3mnc21hr66d176d52hbgmgh5p8p9ylay7xha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27896aeb813215a43aec07a5ddf0ab2176df38fb/recipes/timp"; - sha256 = "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs fifo-class signal ]; - meta = { - homepage = "https://melpa.org/#/timp"; - license = lib.licenses.free; - }; - }) {}; - tinkerer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "tinkerer"; - ename = "tinkerer"; - version = "20170906.524"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "tinkerer.el"; - rev = "e34135555f3748b578c7f8706dfd0c888fb87581"; - sha256 = "0lzrarqh965ysd7w0z5rbisl45j11fbibyxmgivgy9parvhg59hk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a28e1dfe987287bac7c45f83ae6e754bc13e345/recipes/tinkerer"; - sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/tinkerer"; - license = lib.licenses.free; - }; - }) {}; - tiny = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tiny"; - ename = "tiny"; - version = "20170903.249"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "tiny"; - rev = "481d36e47e51f27e64c826633c01518459f17d1c"; - sha256 = "1wdv017pc7ggxd3vwmhjckybxwkfkbk9inkkz6pnc58k0fflsp7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3029dab001fff5d12e8a2bace6ddbf897842c26/recipes/tiny"; - sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tiny"; - license = lib.licenses.free; - }; - }) {}; - tiny-menu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tiny-menu"; - ename = "tiny-menu"; - version = "20161213.435"; - src = fetchFromGitHub { - owner = "aaronbieber"; - repo = "tiny-menu.el"; - rev = "f1fc844f514f57fd93602ff5e00c6125b0e93254"; - sha256 = "125ckmfsvzacd5icsnldcbfl4rkxpfal6qfindy80i84vk0qw47g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82700c97ca40130e7508c151f60220d3f23bf23c/recipes/tiny-menu"; - sha256 = "1nngf6vsqfr9fx82mj8dl8zw0fpwf4kr74sflxxk7qxj4aw1jirk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tiny-menu"; - license = lib.licenses.free; - }; - }) {}; - tinysegmenter = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tinysegmenter"; - ename = "tinysegmenter"; - version = "20141124.213"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "tinysegmenter.el"; - rev = "872134704bd25c13a4c59552433da4c6881b5230"; - sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f189290799f84282ff7cdecbb12a2a7cdfd1043/recipes/tinysegmenter"; - sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/tinysegmenter"; - license = lib.licenses.free; - }; - }) {}; - tj3-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tj3-mode"; - ename = "tj3-mode"; - version = "20180519.528"; - src = fetchFromGitHub { - owner = "csrhodes"; - repo = "tj3-mode"; - rev = "1d98eb23f1606392f34ef1b80517cfc940fb9950"; - sha256 = "1gzi8pvdgj4s9c54m2a8hicvg8dzac6253kyd2h71bljm4ilwl0f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dcf0f535a543bf36df9fb2e59c7fb9dfc00820f7/recipes/tj3-mode"; - sha256 = "06mhg0jc80cymplbri6axyzv18ayxppqz3vggywq9g2ba1vqj41h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tj3-mode"; - license = lib.licenses.free; - }; - }) {}; - tldr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "tldr"; - ename = "tldr"; - version = "20190425.49"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "tldr.el"; - rev = "2ff0834bc58590f98bfece3efc5656d1b47c325d"; - sha256 = "1qwx4hmqj6fbpmv230kgdv2qwv5jfmbf5kvdhcq48p4rak1r30qj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45af2c5d1a36fcbf739812594c5cc878bf319a26/recipes/tldr"; - sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/tldr"; - license = lib.licenses.free; - }; - }) {}; - tmmofl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tmmofl"; - ename = "tmmofl"; - version = "20121025.401"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "tmmofl"; - rev = "532aa6978e994e2b069ffe37aaf9a0011a07dadc"; - sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/tmmofl"; - sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tmmofl"; - license = lib.licenses.free; - }; - }) {}; - tmux-pane = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names - , s }: - melpaBuild { - pname = "tmux-pane"; - ename = "tmux-pane"; - version = "20181210.410"; - src = fetchFromGitHub { - owner = "laishulu"; - repo = "emacs-tmux-pane"; - rev = "5e83ec65a1d38af9b8a389bdf34a78d13437e63d"; - sha256 = "1451d51ml36i1pgksjkd4x2y8zjf4in9q8m6gda3b25v57fnkg2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc165e115a2c457e44ac2762cf6a9f07f1b99c4/recipes/tmux-pane"; - sha256 = "0mv5y367i1wmk5kp8ms09xhrwvb4cwa08p39qy6mkakdhiby5m9q"; - name = "recipe"; - }; - packageRequires = [ emacs names s ]; - meta = { - homepage = "https://melpa.org/#/tmux-pane"; - license = lib.licenses.free; - }; - }) {}; - toc-org = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toc-org"; - ename = "toc-org"; - version = "20190603.103"; - src = fetchFromGitHub { - owner = "snosov1"; - repo = "toc-org"; - rev = "5ce7c249207b617c72febb27dbad7076342c1afd"; - sha256 = "04yl9zqv6jrqfms0vxlh3zpsv1dxmx1qh0a2krzs3mrdplq4dzjm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1305d88eca984a66039444da1ea64f29f1950206/recipes/toc-org"; - sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toc-org"; - license = lib.licenses.free; - }; - }) {}; - todoist = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , transient }: - melpaBuild { - pname = "todoist"; - ename = "todoist"; - version = "20190604.728"; - src = fetchFromGitHub { - owner = "abrochard"; - repo = "emacs-todoist"; - rev = "5f3fe44f32466c89db09625965c0c5706b42a534"; - sha256 = "0qfv6zlw4rk6fri48s1yqg1x6x5q7rk82a28ssclbvx8q9am15wh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9a75eb89bfeb0b7362bf6d2ffaf6b4750984b3a/recipes/todoist"; - sha256 = "0fspvqr0m36mxbrnkql1gl8hwlv8qxd48f632zqzylj0vsygaxhf"; - name = "recipe"; - }; - packageRequires = [ dash emacs org transient ]; - meta = { - homepage = "https://melpa.org/#/todoist"; - license = lib.licenses.free; - }; - }) {}; - todotxt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "todotxt"; - ename = "todotxt"; - version = "20180626.1530"; - src = fetchFromGitHub { - owner = "rpdillon"; - repo = "todotxt.el"; - rev = "f13e404304c9d26c105de872f96b4601441b3875"; - sha256 = "1yvy2pl2ncgkz1xz598qjvp2v3g66m57wz7nra2vira7m4kq4671"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/todotxt"; - sha256 = "1ravnkj6y2p027yhba2lan10079xzd2q7l8gyb8n6bwq14jif127"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/todotxt"; - license = lib.licenses.free; - }; - }) {}; - todotxt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "todotxt-mode"; - ename = "todotxt-mode"; - version = "20150424.704"; - src = fetchFromGitHub { - owner = "avillafiorita"; - repo = "todotxt-mode"; - rev = "dc6ae151edee88f329ba7abc5d39b7440002232f"; - sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cdc1926c5de86749caba1ad2d1e75225a31a8558/recipes/todotxt-mode"; - sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/todotxt-mode"; - license = lib.licenses.free; - }; - }) {}; - togetherly = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "togetherly"; - ename = "togetherly"; - version = "20170425.2316"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "togetherly"; - rev = "65072b1d5e04c7098c318ebf1af279f596039ef9"; - sha256 = "1gjqwxpl1ysrjcmbs9w39hvim1avac7nm4rhmqhmrgwn84bxm2fl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05da36e2d57a57255423a24a34742cbac2f6c9a5/recipes/togetherly"; - sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/togetherly"; - license = lib.licenses.free; - }; - }) {}; - toggle = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toggle"; - ename = "toggle"; - version = "20180315.1703"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "elisp"; - rev = "ee8a9c3052446876057ff853369d136aea7831f5"; - sha256 = "15sla4n88003fclni5nhsrw3ib7bql11ks8pb7rgjyjddqrq274r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd02426ce7ab46361363c7a6c56b1575642003e0/recipes/toggle"; - sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/toggle"; - license = lib.licenses.free; - }; - }) {}; - toggle-quotes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toggle-quotes"; - ename = "toggle-quotes"; - version = "20140710.226"; - src = fetchFromGitHub { - owner = "toctan"; - repo = "toggle-quotes.el"; - rev = "33abc221d6887f0518337851318065cd86c34b03"; - sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f6e83e3184d336891f76c4740f64646d58ea980/recipes/toggle-quotes"; - sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toggle-quotes"; - license = lib.licenses.free; - }; - }) {}; - toggle-test = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toggle-test"; - ename = "toggle-test"; - version = "20140722.2237"; - src = fetchFromGitHub { - owner = "rags"; - repo = "toggle-test"; - rev = "a0b64834101c2b8b24da365baea1d36e57b069b5"; - sha256 = "1xx314cqi71iy7drd7nfia6hylyhwjd9jja1022l1p3imfmy2gyp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ea51a54b745d9978c5177182cd8501912aa2d01/recipes/toggle-test"; - sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toggle-test"; - license = lib.licenses.free; - }; - }) {}; - toggle-window = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toggle-window"; - ename = "toggle-window"; - version = "20141207.748"; - src = fetchFromGitHub { - owner = "deadghost"; - repo = "toggle-window"; - rev = "e82c60e543933880402ede11e9423e48a17dde53"; - sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5505f778052353abce10f9ceef56ce95f5a5b662/recipes/toggle-window"; - sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toggle-window"; - license = lib.licenses.free; - }; - }) {}; - tomatinho = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tomatinho"; - ename = "tomatinho"; - version = "20180621.1048"; - src = fetchFromGitHub { - owner = "konr"; - repo = "tomatinho"; - rev = "b53354b9b9f496c0388d6a573b06b7d6fc53d0bd"; - sha256 = "0vf2b1c9raa723iy2gfdmxjv4q0ivixy1vbs1x5q09cibca8kp4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe20de5b2b5e5abe5be7468cea7c87f5b26b237/recipes/tomatinho"; - sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tomatinho"; - license = lib.licenses.free; - }; - }) {}; - toml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toml"; - ename = "toml"; - version = "20130903.555"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "emacs-toml"; - rev = "9633a6872928e737a2335aae1065768b23d8c3b3"; - sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bab369a63ca0e7fcfacfcb9ac3847ac4e631b28c/recipes/toml"; - sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toml"; - license = lib.licenses.free; - }; - }) {}; - toml-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toml-mode"; - ename = "toml-mode"; - version = "20161107.1000"; - src = fetchFromGitHub { - owner = "dryman"; - repo = "toml-mode.el"; - rev = "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06"; - sha256 = "05b4ksay85c8y5ncax0qsvnmplwsfiw24z16a58gkarjz938hb57"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8157d7d11f1e1848f0ba384249b4b8c6354830b/recipes/toml-mode"; - sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/toml-mode"; - license = lib.licenses.free; - }; - }) {}; - tommyh-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tommyh-theme"; - ename = "tommyh-theme"; - version = "20131004.1630"; - src = fetchFromGitHub { - owner = "wglass"; - repo = "tommyh-theme"; - rev = "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5"; - sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/da9b40184e1559c33edd5e6dac6447013710cb79/recipes/tommyh-theme"; - sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tommyh-theme"; - license = lib.licenses.free; - }; - }) {}; - tornado-template-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tornado-template-mode"; - ename = "tornado-template-mode"; - version = "20141128.208"; - src = fetchFromGitHub { - owner = "paradoxxxzero"; - repo = "tornado-template-mode"; - rev = "667c0663dbbd279b6c345446b9f2bc50eb52b747"; - sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f329baae028fd17618824128f312a49aa0a0807e/recipes/tornado-template-mode"; - sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tornado-template-mode"; - license = lib.licenses.free; - }; - }) {}; - torus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "torus"; - ename = "torus"; - version = "20190325.53"; - src = fetchFromGitHub { - owner = "chimay"; - repo = "torus"; - rev = "863886f10db77f3d1b16815d77561b6c81d88352"; - sha256 = "1v1l51rdcnbkq4cb4ig6l1mymhwj7dxidyx4r9g7wzw00g3ncvwb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efc3b538861084cc13ff067a9258e55dc006b70d/recipes/torus"; - sha256 = "0zjidnc7nwbxs90spp373hx92vksd72vz4avmi4dbmhi89rdfhh0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/torus"; - license = lib.licenses.free; - }; - }) {}; - total-lines = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "total-lines"; - ename = "total-lines"; - version = "20171227.439"; - src = fetchFromGitHub { - owner = "hinrik"; - repo = "total-lines"; - rev = "c762f08d039c8103f71c747e00304f209c2254f4"; - sha256 = "0ajbqrkg3v0yn8mj7dsv12w9zzcwjkabd776fabxamhcj6zbvza3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b6455dd89167a854477a00284f64737905b54d8/recipes/total-lines"; - sha256 = "0zpli7gsb56fc3pzb3b2bs7dzr9glkixbzgl4p2kc249vz3jqajh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/total-lines"; - license = lib.licenses.free; - }; - }) {}; - totd = callPackage ({ cl-lib ? null - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "totd"; - ename = "totd"; - version = "20150519.740"; - src = fetchFromGitLab { - owner = "egh"; - repo = "emacs-totd"; - rev = "a715f7f2df416b8a6c827a9493ce7004180a3a4f"; - sha256 = "08awv1vbqg0x0h7f036sh07vypm8lq6b5g36gq9dmyfaqci9ccw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9dc1e001585e1743047108ace180dfd7664ab8f1/recipes/totd"; - sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/totd"; - license = lib.licenses.free; - }; - }) {}; - tox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tox"; - ename = "tox"; - version = "20160810.855"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "tox.el"; - rev = "27a074b21238855ce3c33d22e42d69e2c2921205"; - sha256 = "1m3f0i6vrkrncd7xsgz65m6595iv6yr4gbbzlis8p01kd98wbxfk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08a7433e16f2a9a2c04168600a9c99bc21c68ddf/recipes/tox"; - sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tox"; - license = lib.licenses.free; - }; - }) {}; - toxi-theme = callPackage ({ emacs - , fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toxi-theme"; - ename = "toxi-theme"; - version = "20160424.1426"; - src = fetchhg { - url = "https://bitbucket.com/postspectacular/toxi-theme"; - rev = "b322fc7497a5"; - sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/toxi-theme"; - sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/toxi-theme"; - license = lib.licenses.free; - }; - }) {}; - tql-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tql-mode"; - ename = "tql-mode"; - version = "20170723.1954"; - src = fetchFromGitHub { - owner = "tiros-dev"; - repo = "tql-mode"; - rev = "488add79eb3fc8ec02aedaa997fe1ed9e5c3e638"; - sha256 = "09vkqr5n66w1q5f7m1vgiv0555v23wg6j46ri52lnnslsxpxhlyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a7c3dec5d970a4e819c0166a4b9846d74484b08/recipes/tql-mode"; - sha256 = "0nrycix119vail6vk1kgqsli4l4cw8x49grc368n53w0xwngh0ns"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tql-mode"; - license = lib.licenses.free; - }; - }) {}; - traad = callPackage ({ bind-map - , dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , request - , request-deferred - , virtualenvwrapper }: - melpaBuild { - pname = "traad"; - ename = "traad"; - version = "20180729.1748"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-traad"; - rev = "98e23363b7e8a590a2f55976123a8c3da75c87a5"; - sha256 = "121p80vsa3xff1anwy876gvlpm0jdbfm5vaxszds73wrv6gih8m3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/recipes/traad"; - sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; - name = "recipe"; - }; - packageRequires = [ - bind-map - dash - deferred - f - popup - request - request-deferred - virtualenvwrapper - ]; - meta = { - homepage = "https://melpa.org/#/traad"; - license = lib.licenses.free; - }; - }) {}; - tracking = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tracking"; - ename = "tracking"; - version = "20171210.1302"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "571853c1f5ece6777fe745489b34d3ad7c3cb0ba"; - sha256 = "1l2zhszwg7cg96vlyi33bykk4mmig38xmasgpp02xypa4j4p11sw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking"; - sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tracking"; - license = lib.licenses.free; - }; - }) {}; - tracwiki-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "tracwiki-mode"; - ename = "tracwiki-mode"; - version = "20150119.821"; - src = fetchFromGitHub { - owner = "merickson"; - repo = "tracwiki-mode"; - rev = "6a620444d59b438f42383b48cd4c19c03105dba6"; - sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e1e7315ee0e8d90df046e16948398f6f78aa3b2/recipes/tracwiki-mode"; - sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/tracwiki-mode"; - license = lib.licenses.free; - }; - }) {}; - tramp-hdfs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tramp-hdfs"; - ename = "tramp-hdfs"; - version = "20170821.620"; - src = fetchFromGitHub { - owner = "raghavgautam"; - repo = "tramp-hdfs"; - rev = "b64f24d0419a80dffaa2c4ecec317aa2bba56e35"; - sha256 = "1bfqzwn19w6fs5npslw0sjqrwdswsv5m3wcdnk438pz1lp199wfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c185553314a2a9fe18907fd9251077777b33538/recipes/tramp-hdfs"; - sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tramp-hdfs"; - license = lib.licenses.free; - }; - }) {}; - tramp-term = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tramp-term"; - ename = "tramp-term"; - version = "20190509.1219"; - src = fetchFromGitHub { - owner = "randymorris"; - repo = "tramp-term.el"; - rev = "27b370f3a43638d6845b3b3a93c3d7a806bd3b66"; - sha256 = "1jsr7j6wc0qzbcb0d7ljvf1qyvsjcpfb9wnhhz587ygcd4yvfqfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c84660c641f0bdf3cca8ad2a0f8f6e5d18b59c3/recipes/tramp-term"; - sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tramp-term"; - license = lib.licenses.free; - }; - }) {}; - transfer-sh = callPackage ({ async - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "transfer-sh"; - ename = "transfer-sh"; - version = "20180603.731"; - src = fetchFromGitHub { - owner = "SRoskamp"; - repo = "transfer-sh.el"; - rev = "55da85f963d347255a2b46568954923679331798"; - sha256 = "0yv4i4ps379kz1q9qmjh4q3pk5ik77xw86faxmwpjx4yzp1wsz9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/transfer-sh"; - sha256 = "0xc6dkmayk935grmy8883l4cyv4zrq3fb77fj16knfj4yw8w6c9j"; - name = "recipe"; - }; - packageRequires = [ async ]; - meta = { - homepage = "https://melpa.org/#/transfer-sh"; - license = lib.licenses.free; - }; - }) {}; - transient = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "transient"; - ename = "transient"; - version = "20190528.104"; - src = fetchFromGitHub { - owner = "magit"; - repo = "transient"; - rev = "8bfa489644ba5c287f1775b317a5755a3f232e48"; - sha256 = "08iyw5sww0c3glwykc9030nxda23d5agi8m91rxyn7740vviyv77"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7bfefdf4423d63706a6dcf128886ca6b514e6b/recipes/transient"; - sha256 = "04xkdspn475dlch5fcw21phhdhshxlbyznjbi0l7qk8snm130qpv"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/transient"; - license = lib.licenses.free; - }; - }) {}; - transmission = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "transmission"; - ename = "transmission"; - version = "20190210.1846"; - src = fetchFromGitHub { - owner = "holomorph"; - repo = "transmission"; - rev = "7293beeb8a49cf6822abd16a9f4b9e4bef0a9296"; - sha256 = "0pbmxl5654l1y213pq2h65dyrr78jlkybbdwz1dq52km98mpnf3r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission"; - sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/transmission"; - license = lib.licenses.free; - }; - }) {}; - transpose-frame = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "transpose-frame"; - ename = "transpose-frame"; - version = "20151126.626"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "transpose-frame"; - rev = "011f420c3496b69fc22d789f64cb8091834feba7"; - sha256 = "1nhbinwv1ld13c0b0lxlvfm9s6bvxcz2vgfccqg45ncg9rx70rsw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/transpose-frame"; - sha256 = "1ksdc4d9k05452hcq4xx0j5nfl9n01z8abbca6j7j66bdf3m4l1b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/transpose-frame"; - license = lib.licenses.free; - }; - }) {}; - transpose-mark = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "transpose-mark"; - ename = "transpose-mark"; - version = "20150405.16"; - src = fetchFromGitHub { - owner = "kwrooijen"; - repo = "transpose-mark"; - rev = "667327602004794de97214cf336ac61650ef75b7"; - sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/transpose-mark"; - sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/transpose-mark"; - license = lib.licenses.free; - }; - }) {}; - travis = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "travis"; - ename = "travis"; - version = "20150825.438"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-travis"; - rev = "c8769d3db10ed4604969049e3bd276afa0a0138e"; - sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c064a0dc7922cbe4cff2ae65665c4f10e6dbff27/recipes/travis"; - sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/travis"; - license = lib.licenses.free; - }; - }) {}; - tree-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tree-mode"; - ename = "tree-mode"; - version = "20151104.531"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "tree-mode"; - rev = "b06078826d5875d74b0e7b7ac47b0d0917610534"; - sha256 = "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/tree-mode"; - sha256 = "1b15xgh96j4qas1kh4ghczcn7hb1ri86wnjgn9wz2d6bw3c6077b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tree-mode"; - license = lib.licenses.free; - }; - }) {}; - treemacs = callPackage ({ ace-window - , cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , hydra - , lib - , melpaBuild - , pfuture - , s }: - melpaBuild { - pname = "treemacs"; - ename = "treemacs"; - version = "20190601.1554"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "c639085595485ce749d150f65589d26d38b3aab9"; - sha256 = "10vddvb9n35w0v4q79y5bn0fr33380w75r90484kirvs5ilq896h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs"; - sha256 = "0is4waygw902vkha4jwav0i05298zhf4d559m91gmsfg1cfrlrr3"; - name = "recipe"; - }; - packageRequires = [ ace-window cl-lib dash emacs f ht hydra pfuture s ]; - meta = { - homepage = "https://melpa.org/#/treemacs"; - license = lib.licenses.free; - }; - }) {}; - treemacs-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , treemacs }: - melpaBuild { - pname = "treemacs-evil"; - ename = "treemacs-evil"; - version = "20190416.2225"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "39364c8f3392ffe93035169f68128f8eeaaaa2e7"; - sha256 = "0y69n7c55d5bf0j1qicxw6pjjzbn4rff773ldlr5hwfi485wc13y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-evil"; - sha256 = "144klr1gqqzfqy7fx9lzngc2vljy6mnz7awk0z5f8vfclczkihw2"; - name = "recipe"; - }; - packageRequires = [ evil treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-evil"; - license = lib.licenses.free; - }; - }) {}; - treemacs-icons-dired = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , treemacs }: - melpaBuild { - pname = "treemacs-icons-dired"; - ename = "treemacs-icons-dired"; - version = "20190327.858"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "abc387a6bfbf3654914624651a593eb1aba85ca9"; - sha256 = "1mjx5c60h47kgszmpk96f5ymyh5any8ksbrxa3hcmz52s77lmd74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-icons-dired"; - sha256 = "075897b11aaj9h59gbcldz2wd5557h86pq28qkijbgay4i3piv9v"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-icons-dired"; - license = lib.licenses.free; - }; - }) {}; - treemacs-magit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , pfuture - , treemacs }: - melpaBuild { - pname = "treemacs-magit"; - ename = "treemacs-magit"; - version = "20190501.2241"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "3f98c6af32b355f2cf62e8ef174a2c29f3de76ff"; - sha256 = "09z1mrvnwj6inmg4k8m6y4cw09yak0zz2l9yybp2w3r3jvrnn56v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1719c6bfc346e63f58221ea2c6e625b98f4ea368/recipes/treemacs-magit"; - sha256 = "10c32rf76w26hhg1pyjlwj94adpjz1kic4hzapbckvcyzcwz6fql"; - name = "recipe"; - }; - packageRequires = [ emacs magit pfuture treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-magit"; - license = lib.licenses.free; - }; - }) {}; - treemacs-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , treemacs }: - melpaBuild { - pname = "treemacs-projectile"; - ename = "treemacs-projectile"; - version = "20190416.830"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "7ba9dcaaf850640e805f29d0d64aa254ec544c04"; - sha256 = "1l4llp9znrxyvcy60bcx1kr1zzxl9jw0w7pdi6n1v6idbs4rvjrs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-projectile"; - sha256 = "1lldvpasvgsd5xvnlafddqp47w7rdvf3vqfhr26rxn99kj5s9xzp"; - name = "recipe"; - }; - packageRequires = [ projectile treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-projectile"; - license = lib.licenses.free; - }; - }) {}; - treepy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "treepy"; - ename = "treepy"; - version = "20180723.2356"; - src = fetchFromGitHub { - owner = "volrath"; - repo = "treepy.el"; - rev = "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d"; - sha256 = "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63c94a703841f8c11948200d86d98145bc62162c/recipes/treepy"; - sha256 = "0jfah4vywi1b6c86h7vh8fspmklhs790qzkl51i9p7yckfggwp72"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/treepy"; - license = lib.licenses.free; - }; - }) {}; - trident-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , skewer-mode - , slime }: - melpaBuild { - pname = "trident-mode"; - ename = "trident-mode"; - version = "20190410.1336"; - src = fetchFromGitHub { - owner = "johnmastro"; - repo = "trident-mode.el"; - rev = "109a1bc10bd0c4b47679a6ca5c4cd27c7c8d4ccb"; - sha256 = "0blbxjaddzhkvzlys46yrzszywmyjkmfhwks52v4laya76rgxm45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/trident-mode"; - sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd"; - name = "recipe"; - }; - packageRequires = [ dash emacs skewer-mode slime ]; - meta = { - homepage = "https://melpa.org/#/trident-mode"; - license = lib.licenses.free; - }; - }) {}; - trinary = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "trinary"; - ename = "trinary"; - version = "20180904.1613"; - src = fetchFromGitHub { - owner = "emacs-elsa"; - repo = "trinary-logic"; - rev = "886232c6d7e92a8e9fe573eef46754ebe321f90d"; - sha256 = "10h6p2dwl2k2p35pi3n8y85qh5y0zrr9nhfr4sviwzj1nbqdrvdr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48fff02dde8a678e151f2765ea7c3a383912c68b/recipes/trinary"; - sha256 = "1k2jpay1wx2m54fpja9mrhqyk15ikml8xf15irh8yrxb3hah8f8k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/trinary"; - license = lib.licenses.free; - }; - }) {}; - trr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "trr"; - ename = "trr"; - version = "20170221.42"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "emacs-trr"; - rev = "83660d8343ef3367837354dc684dfdde2f95826a"; - sha256 = "0h12szq1cww3bpsk09m7d2bk9bfjxrmzlw9ccviwhnric40nh67k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/56fa3c0b65e4e300f01804df7779ba6f1cb18cec/recipes/trr"; - sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/trr"; - license = lib.licenses.free; - }; - }) {}; - truthy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild }: - melpaBuild { - pname = "truthy"; - ename = "truthy"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "truthy"; - rev = "782cee08fbb13f9be71ce8e88d980ec14db24a0f"; - sha256 = "0xbkq7hr14gd2nmsfkzvz4rgfi42h51m29cn2vaswr2s3prflhrh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7a7e319dbe17e2b31353e7d7cab51d557d86e9d/recipes/truthy"; - sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; - name = "recipe"; - }; - packageRequires = [ list-utils ]; - meta = { - homepage = "https://melpa.org/#/truthy"; - license = lib.licenses.free; - }; - }) {}; - try = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "try"; - ename = "try"; - version = "20181203.1836"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "Try"; - rev = "8831ded1784df43a2bd56c25ad3d0650cdb9df1d"; - sha256 = "0y26ybdsljph49w2834wssxgdx8ij7b6v4gp8jpgnbx118gr4jsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13c0ed40ad02fa0893cbf4dd9617dccb624f064b/recipes/try"; - sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/try"; - license = lib.licenses.free; - }; - }) {}; - ts-comint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ts-comint"; - ename = "ts-comint"; - version = "20181218.2319"; - src = fetchFromGitHub { - owner = "emacs-typescript"; - repo = "ts-comint"; - rev = "b280cfe9fe5ecec9d5970043b6b2866f644b39ad"; - sha256 = "15lf20w3diixcbpsw3vdqlpnpjp3v1spgxkiymq05q1mcy30n39n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a1c08c22704ac689235b8d5cc36cc437ba7356a/recipes/ts-comint"; - sha256 = "0cmh8ww6myiaz42867d0dqfi64lxrbna1lcwl6x6rmdgf15k6c1m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ts-comint"; - license = lib.licenses.free; - }; - }) {}; - tss = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "tss"; - ename = "tss"; - version = "20150913.708"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-tss"; - rev = "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0"; - sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d52e20f5ca38ed399d19f18f778b8601baf78460/recipes/tss"; - sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; - name = "recipe"; - }; - packageRequires = [ auto-complete json-mode log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/tss"; - license = lib.licenses.free; - }; - }) {}; - tt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tt-mode"; - ename = "tt-mode"; - version = "20130804.410"; - src = fetchFromGitHub { - owner = "davorg"; - repo = "tt-mode"; - rev = "85ed3832e7eef391f7879d9990d59c7a3493c15e"; - sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62959f554db7aa24b2565baded19766b01e61f62/recipes/tt-mode"; - sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tt-mode"; - license = lib.licenses.free; - }; - }) {}; - ttl-mode = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ttl-mode"; - ename = "ttl-mode"; - version = "20160505.132"; - src = fetchhg { - url = "https://bitbucket.com/nxg/ttl-mode"; - rev = "d790eb85ef4d"; - sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d56140a50abeab0953825d3646122d6e6ed19a7c/recipes/ttl-mode"; - sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ttl-mode"; - license = lib.licenses.free; - }; - }) {}; - tuareg = callPackage ({ caml - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tuareg"; - ename = "tuareg"; - version = "20190604.718"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "tuareg"; - rev = "b6271c4496a29b74ad1e47d6802b9cfba415fe77"; - sha256 = "02a1bgaakh89s40adc363jmgrs5dkswmgqlwjkq0blyj01rih2yi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg"; - sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; - name = "recipe"; - }; - packageRequires = [ caml emacs ]; - meta = { - homepage = "https://melpa.org/#/tuareg"; - license = lib.licenses.free; - }; - }) {}; - tumble = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , http-post-simple - , lib - , melpaBuild }: - melpaBuild { - pname = "tumble"; - ename = "tumble"; - version = "20160111.2329"; - src = fetchFromGitHub { - owner = "febuiles"; - repo = "tumble"; - rev = "e8fd7643cccf2b6ea4170f0c5f1f87d007e7fa00"; - sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/579a441d153c4c7d9f8172be94983a632d6fab8f/recipes/tumble"; - sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; - name = "recipe"; - }; - packageRequires = [ cl-lib http-post-simple ]; - meta = { - homepage = "https://melpa.org/#/tumble"; - license = lib.licenses.free; - }; - }) {}; - tumblesocks = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , markdown-mode - , melpaBuild - , oauth }: - melpaBuild { - pname = "tumblesocks"; - ename = "tumblesocks"; - version = "20140215.1247"; - src = fetchFromGitHub { - owner = "gcr"; - repo = "tumblesocks"; - rev = "9fd3dc5359d4e39a0f673546427935aa934cf339"; - sha256 = "17kcprr4bhnh7h799wcxb79d54vvs226fl2rqj89gf10gr6bc3fr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/tumblesocks"; - sha256 = "005w7vfzi4qpm59pxhq9nhp8hlwh4m1i7zj6l4knizcwm5xrm4ab"; - name = "recipe"; - }; - packageRequires = [ htmlize markdown-mode oauth ]; - meta = { - homepage = "https://melpa.org/#/tumblesocks"; - license = lib.licenses.free; - }; - }) {}; - tup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tup-mode"; - ename = "tup-mode"; - version = "20140410.914"; - src = fetchFromGitHub { - owner = "ejmr"; - repo = "tup-mode"; - rev = "945af9c8e6c402e10cd3bf8e28a9591174023d6d"; - sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bda3260dad1c766c5b6ae9124f966bf441e24f2f/recipes/tup-mode"; - sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tup-mode"; - license = lib.licenses.free; - }; - }) {}; - turing-machine = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "turing-machine"; - ename = "turing-machine"; - version = "20180221.2038"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "turing-machine"; - rev = "ad1dccc9c445f9e4465e1c67cbbfea9583153047"; - sha256 = "0qaz4r5ahg2fxsfyxilb8c9956i5ra9vg80l82slm8vrnsinzll6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/turing-machine"; - sha256 = "0q9a31m5wnz9j9l4i8czdl7z12nrcdjw72w8sqvf94ri2g5dbpkq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/turing-machine"; - license = lib.licenses.free; - }; - }) {}; - turkish = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "turkish"; - ename = "turkish"; - version = "20170910.811"; - src = fetchFromGitHub { - owner = "emres"; - repo = "turkish-mode"; - rev = "9831a316c176bb21a1b91226323ea4133163e00c"; - sha256 = "0nrxi845gd24d5vymbmxz696jwld4rn6nw2dz1gzmdaks7bbv87m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12cdbdf404fa859a48d1bb69f058321d7595d2a2/recipes/turkish"; - sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/turkish"; - license = lib.licenses.free; - }; - }) {}; - turnip = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "turnip"; - ename = "turnip"; - version = "20150308.2329"; - src = fetchFromGitHub { - owner = "kljohann"; - repo = "turnip.el"; - rev = "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de"; - sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73c341fec986ed965a46954b898f92a4725fdee6/recipes/turnip"; - sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/turnip"; - license = lib.licenses.free; - }; - }) {}; - twig-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twig-mode"; - ename = "twig-mode"; - version = "20130220.1050"; - src = fetchFromGitHub { - owner = "moljac024"; - repo = "twig-mode"; - rev = "51bcd41666a234119a855b9fd348d3dae7832de1"; - sha256 = "068m06d0gf6608zd270c5nxkjczzfw55df58r2zfbpzgdi4cxm7j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/400c75bf336b8d610f0a2c1732cc78beb502e1f3/recipes/twig-mode"; - sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twig-mode"; - license = lib.licenses.free; - }; - }) {}; - twilight-anti-bright-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twilight-anti-bright-theme"; - ename = "twilight-anti-bright-theme"; - version = "20160622.148"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "twilight-anti-bright-theme"; - rev = "523b95fcdbf4a6a6483af314ad05354a3d80f23f"; - sha256 = "0g6qqfgbg507r8lgq99zj2b5n3r9m23hpx19m36c3i55mh94dl2h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-anti-bright-theme"; - sha256 = "1wfj570l5k0ygqi9dwjskc78rpnxw6080bkw1zd1a8kl3fa28n2k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twilight-anti-bright-theme"; - license = lib.licenses.free; - }; - }) {}; - twilight-bright-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twilight-bright-theme"; - ename = "twilight-bright-theme"; - version = "20130605.143"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "twilight-bright-theme.el"; - rev = "9859474333fee9f907474dbd8763f617e8bfd89c"; - sha256 = "02hiyk5v41ki0rlchj6didg3b5a9fxaw50d9shrv1v861z4hrq24"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-bright-theme"; - sha256 = "039mg147cvb0pk59q3c1bpx7562bajgrs74xymylr89hvrxivxqh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twilight-bright-theme"; - license = lib.licenses.free; - }; - }) {}; - twilight-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twilight-theme"; - ename = "twilight-theme"; - version = "20120412.603"; - src = fetchFromGitHub { - owner = "developernotes"; - repo = "twilight-theme"; - rev = "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b"; - sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-theme"; - sha256 = "0g9bbb6m7q8x4zcw5gfmg7ljsfdmjh0335sq53b0lva0h3ra6kzx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twilight-theme"; - license = lib.licenses.free; - }; - }) {}; - twittering-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twittering-mode"; - ename = "twittering-mode"; - version = "20181121.602"; - src = fetchFromGitHub { - owner = "hayamiz"; - repo = "twittering-mode"; - rev = "114891e8fdb4f06b1326a6cf795e49c205cf9e29"; - sha256 = "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/twittering-mode"; - sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twittering-mode"; - license = lib.licenses.free; - }; - }) {}; - typescript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typescript-mode"; - ename = "typescript-mode"; - version = "20181221.105"; - src = fetchFromGitHub { - owner = "emacs-typescript"; - repo = "typescript.el"; - rev = "e608305ade7145df5637b22bbd2a1d190aaff048"; - sha256 = "11cj1gis2mirz8kfljgam5dzd9c0wqzsb0jkxc9xrz48akpyikqx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94455323364d5a6b00e2786d577134eb350826b4/recipes/typescript-mode"; - sha256 = "1abnik2dq0zfnp8pk8x6zy962qww78xadm87xyiwz17559g88d82"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/typescript-mode"; - license = lib.licenses.free; - }; - }) {}; - typing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typing"; - ename = "typing"; - version = "20180830.1503"; - src = fetchFromGitHub { - owner = "kensanata"; - repo = "typing"; - rev = "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa"; - sha256 = "1dbh0srbf54lgd60ia79y9cfnq3kxlgw01qzdjs9mk3nfazzpgnv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6e75695594ce17b618ad8786c8a04e283f68b11/recipes/typing"; - sha256 = "0k2lplqzq3323nn7rybcs377sr87kbww8ci99rrka3yyb5bh1fa1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/typing"; - license = lib.licenses.free; - }; - }) {}; - typing-game = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typing-game"; - ename = "typing-game"; - version = "20160426.520"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "el-typing-game"; - rev = "616435a5270274f4c7b698697674dbb2039049a4"; - sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6ced22932f0462c77d121a631c494c01a0a4eaa/recipes/typing-game"; - sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/typing-game"; - license = lib.licenses.free; - }; - }) {}; - typit = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmt }: - melpaBuild { - pname = "typit"; - ename = "typit"; - version = "20181231.2302"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "typit"; - rev = "819a65ef22ec7a03c109aa7e8169e6ba174b17a1"; - sha256 = "0gvlb3vra01m8gbl0qqsy9lbkrmzfs8q33n626fny5hz23pba7l6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17d019155e19c156f123dcd702f18cfba488701/recipes/typit"; - sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; - name = "recipe"; - }; - packageRequires = [ emacs f mmt ]; - meta = { - homepage = "https://melpa.org/#/typit"; - license = lib.licenses.free; - }; - }) {}; - typo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typo"; - ename = "typo"; - version = "20171209.223"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "typoel"; - rev = "9dad93b6f367f02f52c8d9bf15d446d922cec294"; - sha256 = "1xaikwl265v67b7hilrhjgwzr6bcha9idnp82f27msqzdfdzxf0f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/typo"; - sha256 = "1p8is1n525lmzq588hj6vazmhl9wi6rairnfx1g1p6g6ijdycd4h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/typo"; - license = lib.licenses.free; - }; - }) {}; - typoscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "typoscript-mode"; - ename = "typoscript-mode"; - version = "20170126.112"; - src = fetchFromGitHub { - owner = "ksjogo"; - repo = "typoscript-mode"; - rev = "44e7567e921573c4f33c537b827f71fb1f565c32"; - sha256 = "0i7l9s3lhxnld32mqyrvasiv1hilhwnp2fwvpdv2cx9r902q6kc8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/701de09cb97cbfa49a3a81aaeb9577817566efa2/recipes/typoscript-mode"; - sha256 = "18i2wwbn8vj5dbgxp2ds29n12v8ldvxjd1zb6h1g9lfh8iyrnjmx"; - name = "recipe"; - }; - packageRequires = [ emacs use-package ]; - meta = { - homepage = "https://melpa.org/#/typoscript-mode"; - license = lib.licenses.free; - }; - }) {}; - ubuntu-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ubuntu-theme"; - ename = "ubuntu-theme"; - version = "20150805.806"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "ubuntu-theme"; - rev = "88b0eefc75d4cbcde103057e1c5968d4c3052f69"; - sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ubuntu-theme"; - sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ubuntu-theme"; - license = lib.licenses.free; - }; - }) {}; - ucs-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "ucs-utils"; - ename = "ucs-utils"; - version = "20150826.714"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ucs-utils"; - rev = "cbfd42f822bf5717934fa2d92060e6e24a813433"; - sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/ucs-utils"; - sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; - name = "recipe"; - }; - packageRequires = [ list-utils pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/ucs-utils"; - license = lib.licenses.free; - }; - }) {}; - uimage = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uimage"; - ename = "uimage"; - version = "20160901.521"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "uimage"; - rev = "9893d09160ef7e8c0ecdcd74fca99ffeb5f9d70d"; - sha256 = "1ri50nab778kpq49m54ra75z8dphagp9sz92is0636j4qy3sbih1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/346cb25abdfdd539d121a9f34bce75b2fc5a16be/recipes/uimage"; - sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/uimage"; - license = lib.licenses.free; - }; - }) {}; - ujelly-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ujelly-theme"; - ename = "ujelly-theme"; - version = "20180214.824"; - src = fetchFromGitHub { - owner = "marktran"; - repo = "color-theme-ujelly"; - rev = "bf724ce7806a738d2043544061e5f9bbfc56e674"; - sha256 = "0pz26q5qfq4wiqcpfkq26f19q5gyiv8q71sq4k77hkss5a5b5fqg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ujelly-theme"; - sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ujelly-theme"; - license = lib.licenses.free; - }; - }) {}; - ukrainian-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ukrainian-holidays"; - ename = "ukrainian-holidays"; - version = "20130720.649"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ukrainian-holidays"; - rev = "e52b0c92843e9f4d0415a7ba3b8559785497d23d"; - sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a8b5ec722600bcd5bf5fcc2b20262597a9e8c40/recipes/ukrainian-holidays"; - sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ukrainian-holidays"; - license = lib.licenses.free; - }; - }) {}; - uncrustify-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uncrustify-mode"; - ename = "uncrustify-mode"; - version = "20130707.659"; - src = fetchFromGitHub { - owner = "koko1000ban"; - repo = "emacs-uncrustify-mode"; - rev = "2c00d5cf2d1868a5955347438746f4dd82b3b9fc"; - sha256 = "1pzg49l982a0kajnix0jl3gk7g37d7pgqg9lx838i2sk3jfwayf9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5327aa1a1143c2257e9454663ff140f2371d07e3/recipes/uncrustify-mode"; - sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/uncrustify-mode"; - license = lib.licenses.free; - }; - }) {}; - undercover = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , shut-up }: - melpaBuild { - pname = "undercover"; - ename = "undercover"; - version = "20180403.752"; - src = fetchFromGitHub { - owner = "sviridov"; - repo = "undercover.el"; - rev = "3fc54ef92f0b4b7d26d962d6ed29a81d526a3a66"; - sha256 = "0iqj1a6nj1ka5ahcy4rrn7k427bs1ifv0v0i7gj79m7isjj15qc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d58ad9eb863494f609114e3c6af8c14c891b83a5/recipes/undercover"; - sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; - name = "recipe"; - }; - packageRequires = [ dash emacs shut-up ]; - meta = { - homepage = "https://melpa.org/#/undercover"; - license = lib.licenses.free; - }; - }) {}; - underline-with-char = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "underline-with-char"; - ename = "underline-with-char"; - version = "20170814.223"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "underline-with-char"; - rev = "f7de7a968a16c12bef5a3ed9aebcde2dcadc08be"; - sha256 = "188g8vzalkhdqjxkbypzq64vl9qmry8pq8vrbxhy28pzsljhrqxv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e24888ccf61ac05eba5c30a47d35653f2badf019/recipes/underline-with-char"; - sha256 = "0la24nvyqinla40c2f3f4a63mjjsg58096hyw3pvp0mwiff7rxyd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/underline-with-char"; - license = lib.licenses.free; - }; - }) {}; - underwater-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "underwater-theme"; - ename = "underwater-theme"; - version = "20131117.1602"; - src = fetchFromGitHub { - owner = "jmdeldin"; - repo = "underwater-theme.el"; - rev = "1fbd4ecd4538256c6c46f9638f883072c73ac927"; - sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7dccc77d082181629b8f0c45404ac5d8bd97590/recipes/underwater-theme"; - sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/underwater-theme"; - license = lib.licenses.free; - }; - }) {}; - undo-propose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "undo-propose"; - ename = "undo-propose"; - version = "20190408.2336"; - src = fetchFromGitHub { - owner = "jackkamm"; - repo = "undo-propose-el"; - rev = "5f1fa99a04369a959aad01b476fe4f34229f28cd"; - sha256 = "1p9h1fqmva07mcs46rqrg9vqn537b615as84s9b7xh76k1r8h1c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/308eec15ebfd301b34f0d9f019250c9089c4d6e2/recipes/undo-propose"; - sha256 = "0r0xswj9n24ghw44l1m1izapjqrfvcw8qn3qp61s2ly0i7la185j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/undo-propose"; - license = lib.licenses.free; - }; - }) {}; - undohist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "undohist"; - ename = "undohist"; - version = "20150315.542"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "undohist-el"; - rev = "d2239a5f736724ceb9e3b6bcaa86f4064805cda0"; - sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aebd16ca1ac51d9982eae5437c6084a2a3946b88/recipes/undohist"; - sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/undohist"; - license = lib.licenses.free; - }; - }) {}; - unfill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unfill"; - ename = "unfill"; - version = "20170722.1846"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "unfill"; - rev = "d1056ec5ce7bb18abe8933c1e4d5932fb98fb78e"; - sha256 = "0qbcm7qf33xlbj7wx3164q8m6b8qzgv6w13pk8568nrmb1f8qna8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ade389a20419b3e29a613409ac73a16b7c5bddb/recipes/unfill"; - sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unfill"; - license = lib.licenses.free; - }; - }) {}; - unicode-emoticons = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unicode-emoticons"; - ename = "unicode-emoticons"; - version = "20150204.308"; - src = fetchFromGitHub { - owner = "hagleitn"; - repo = "unicode-emoticons"; - rev = "52a09955c2afc1807c0f37f1467ccfc1e1da690a"; - sha256 = "0z7aaw5ib1q8whnrhvybzxa4cm18qsw5sg8gv31j3yxi638yvi89"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/unicode-emoticons"; - sha256 = "0sp4sb2yw9msyqxgp4q5z9pzfvqwhizd1sx8w63g1vis6n2h254r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unicode-emoticons"; - license = lib.licenses.free; - }; - }) {}; - unicode-enbox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft - , string-utils - , ucs-utils }: - melpaBuild { - pname = "unicode-enbox"; - ename = "unicode-enbox"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-enbox"; - rev = "4e8ac89b0460eaba6d6eaa8c463eb069660218fa"; - sha256 = "1p63dk1fya0g08lr7cr1rydx9bqakg1nq30i0yma6zs0h7f5qvsi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/unicode-enbox"; - sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; - name = "recipe"; - }; - packageRequires = [ - list-utils - pcache - persistent-soft - string-utils - ucs-utils - ]; - meta = { - homepage = "https://melpa.org/#/unicode-enbox"; - license = lib.licenses.free; - }; - }) {}; - unicode-escape = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "unicode-escape"; - ename = "unicode-escape"; - version = "20160614.534"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "unicode-escape.el"; - rev = "04c7f22f90c96e93f998f084089ab08dc7f4fdd6"; - sha256 = "01i5cq7yan9z1kr6pvp4bwzsnxs0bpqsaglfbvy7v6jfp923bvdm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2ae00434b80357dc62cd0177dbd714b25fb3ac7/recipes/unicode-escape"; - sha256 = "0gcwkv7qbdnvak10jfzj9irb7nkfqsfxv2n5fi8vvrk90j1a2i2k"; - name = "recipe"; - }; - packageRequires = [ dash emacs names ]; - meta = { - homepage = "https://melpa.org/#/unicode-escape"; - license = lib.licenses.free; - }; - }) {}; - unicode-fonts = callPackage ({ fetchFromGitHub - , fetchurl - , font-utils - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-fonts"; - ename = "unicode-fonts"; - version = "20181001.809"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-fonts"; - rev = "7b88ae84e589f6c8b9386b2fb5a02ff4ccb91169"; - sha256 = "07wzcfj92jiadgd6nj5rmxky2aiaxs89j7zywp877xdp4vv0v512"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-fonts"; - sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; - name = "recipe"; - }; - packageRequires = [ - font-utils - list-utils - pcache - persistent-soft - ucs-utils - ]; - meta = { - homepage = "https://melpa.org/#/unicode-fonts"; - license = lib.licenses.free; - }; - }) {}; - unicode-input = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unicode-input"; - ename = "unicode-input"; - version = "20141218.2320"; - src = fetchhg { - url = "https://bitbucket.com/m00nlight/unicode-input"; - rev = "e76ccb549e6a"; - sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/unicode-input"; - sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unicode-input"; - license = lib.licenses.free; - }; - }) {}; - unicode-math-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unicode-math-input"; - ename = "unicode-math-input"; - version = "20181230.423"; - src = fetchFromGitHub { - owner = "astoff"; - repo = "unicode-math-input.el"; - rev = "6ad698bf4a8c64dd969ac58cf09ee66783cfcdce"; - sha256 = "0g72zh4a8mimmsiq53k0y9w4xmfhvdymksxdrkiygc3vji2jv6na"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0d39bc129500e55b99c11b3d27e042619777414/recipes/unicode-math-input"; - sha256 = "1hra3vf6nzh99piagbxsmp0sizvki2jl7qkfmlwd5nwmicw0ykrq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unicode-math-input"; - license = lib.licenses.free; - }; - }) {}; - unicode-progress-reporter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-progress-reporter"; - ename = "unicode-progress-reporter"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-progress-reporter"; - rev = "17415a96144506e5ffa49377d4c814023e06f425"; - sha256 = "1fdyngchr8s7gjqi50fdr1cx8zx5jd3l7ag9i15r9vmqanvr0zzf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-progress-reporter"; - sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; - name = "recipe"; - }; - packageRequires = [ emacs list-utils pcache persistent-soft ucs-utils ]; - meta = { - homepage = "https://melpa.org/#/unicode-progress-reporter"; - license = lib.licenses.free; - }; - }) {}; - unicode-troll-stopper = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unicode-troll-stopper"; - ename = "unicode-troll-stopper"; - version = "20190208.2011"; - src = fetchFromGitHub { - owner = "camsaul"; - repo = "emacs-unicode-troll-stopper"; - rev = "5e8be35a7bf6382384a701663f7438ee27e4b67c"; - sha256 = "0xjh017kjhj93j72r5hdpiabv76szlmpivlfyhg9vzysdmix45qv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b463925a98b7dde78d85693c7681fd2346d90895/recipes/unicode-troll-stopper"; - sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unicode-troll-stopper"; - license = lib.licenses.free; - }; - }) {}; - unicode-whitespace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-whitespace"; - ename = "unicode-whitespace"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-whitespace"; - rev = "b0cbfe4f9998a2c1eb4cba031efcb785ef518916"; - sha256 = "1khpmmpbvi73cis7qx33v2npbmwg1cc9x4bafg9kfz7yfqkrdjws"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9892a826f3ac335d12bd1a07202334e28a44f40/recipes/unicode-whitespace"; - sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; - name = "recipe"; - }; - packageRequires = [ list-utils pcache persistent-soft ucs-utils ]; - meta = { - homepage = "https://melpa.org/#/unicode-whitespace"; - license = lib.licenses.free; - }; - }) {}; - unidecode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unidecode"; - ename = "unidecode"; - version = "20180312.1226"; - src = fetchFromGitHub { - owner = "sindikat"; - repo = "unidecode"; - rev = "5502ada9287b4012eabb879f12f5b0a9df52c5b7"; - sha256 = "03x3nakbhmakwm977mwrf8jifvjnfwzpjv6wrwpizbqjnkgfchmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9ba8e425e37e80a2236832c3f12568546d4c7c9/recipes/unidecode"; - sha256 = "0vhghnyj8a5mcqq5rzajrm1izzfry77pd1wxhmra5yp9ribw2sv5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unidecode"; - license = lib.licenses.free; - }; - }) {}; - unify-opening = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unify-opening"; - ename = "unify-opening"; - version = "20171122.1212"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "unify-opening"; - rev = "502469ddba6d8d52159f53976265f7d956b6b17c"; - sha256 = "0mni9vnbs50wvgnwfjwgzlwfff38h3wbrpr20nv84dmfh8ac0v61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a2faab13744262ef4d12750f70b300b3afd2835/recipes/unify-opening"; - sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unify-opening"; - license = lib.licenses.free; - }; - }) {}; - unipoint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unipoint"; - ename = "unipoint"; - version = "20140113.1424"; - src = fetchFromGitHub { - owner = "apg"; - repo = "unipoint"; - rev = "5da04aebac35a5c9e1d8704f2231808d42f4b36a"; - sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/unipoint"; - sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unipoint"; - license = lib.licenses.free; - }; - }) {}; - unison = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unison"; - ename = "unison"; - version = "20160704.40"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "unison.el"; - rev = "a78a04c0d1398d00f75a1bd4799622a65bcb0f28"; - sha256 = "1jn23wlhpka5pv0caipxi8bg3cc6wj1fg09abibhydy4p3mb3bi5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7ee1a68486f822c1627fb0bf066c4ae8bc0776/recipes/unison"; - sha256 = "03v10r6d4r6z66s9q7mg1iyxh53f3l6q7dij7pfbf32migqjgpir"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unison"; - license = lib.licenses.free; - }; - }) {}; - unison-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unison-mode"; - ename = "unison-mode"; - version = "20160513.801"; - src = fetchFromGitHub { - owner = "impaktor"; - repo = "unison-mode"; - rev = "0bd6a65c0d12f87fcf7bdff15fe54444959b93bf"; - sha256 = "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd5b5c16e504ee8e511bbc65acbc0ff65f99eaf4/recipes/unison-mode"; - sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unison-mode"; - license = lib.licenses.free; - }; - }) {}; - universal-emotions-emoticons = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "universal-emotions-emoticons"; - ename = "universal-emotions-emoticons"; - version = "20180729.1241"; - src = fetchFromGitHub { - owner = "grettke"; - repo = "universal-emotions-emoticons"; - rev = "9cedd09ee65cb9fa71f27b0ab46a8353bdc00902"; - sha256 = "17blqfnf384l2hd2igrw5p0zblw6bxz69vvzli22nr84kpkh5jx4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57f913112c98db2248cf69e44deb69fd09cee042/recipes/universal-emotions-emoticons"; - sha256 = "1aj3k3yrvasn3zmfwz5si046hlyhnjdmxh7i8li6rc0v0qwl7p86"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/universal-emotions-emoticons"; - license = lib.licenses.free; - }; - }) {}; - unkillable-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unkillable-scratch"; - ename = "unkillable-scratch"; - version = "20190308.1617"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "unkillable-scratch"; - rev = "a484c27516f2ee20e239713a95bd7de4f35f8501"; - sha256 = "06pslqk97q858a3y6z7rgmc16nzqlkaj9phrqmxkq354lkllndlx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/822ac5610f333e41b676a29ef45a6f8bfea3162e/recipes/unkillable-scratch"; - sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unkillable-scratch"; - license = lib.licenses.free; - }; - }) {}; - untitled-new-buffer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magic-filetype - , melpaBuild }: - melpaBuild { - pname = "untitled-new-buffer"; - ename = "untitled-new-buffer"; - version = "20161212.708"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "untitled-new-buffer.el"; - rev = "e359ae63bc6310e315b7c25157858f9b9796ed3d"; - sha256 = "0wgyc798pn9224ck3c4xndrrmsd4j12qdxhy6i7y7i27y1gw6ckj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de62e48115e1e5f9506e6d47a3b23c0420c1205b/recipes/untitled-new-buffer"; - sha256 = "1hpv7k7jhpif9csdrd2gpz71s3fp4svsvrd1nh8hbx7avjl66pjf"; - name = "recipe"; - }; - packageRequires = [ emacs magic-filetype ]; - meta = { - homepage = "https://melpa.org/#/untitled-new-buffer"; - license = lib.licenses.free; - }; - }) {}; - upbo = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "upbo"; - ename = "upbo"; - version = "20180422.122"; - src = fetchFromGitHub { - owner = "shiren"; - repo = "upbo"; - rev = "63514c484e70cd6eeae828f7e58216e1a3429184"; - sha256 = "0dwff302v38hxxspfap49w1afx8g3scl4gm30ksybnfph1pa29l4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5232078b065dcca04388ccc76aa01a6159395d5/recipes/upbo"; - sha256 = "15rqz9z49363anrhli08vk155wp21hq3j7xsvd98lkq9ip6aglns"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/upbo"; - license = lib.licenses.free; - }; - }) {}; - uptimes = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uptimes"; - ename = "uptimes"; - version = "20190328.156"; - src = fetchFromGitHub { - owner = "davep"; - repo = "uptimes.el"; - rev = "1f726d31b502d764a3e3191aaf92ed4855105131"; - sha256 = "1ymv5fh0bfjzkkd8vc9f1n8921bx1czbb29s0rw6zy37vkhs6v3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72099e35ce3e34ec6afc6a3f87a4da07ec91499a/recipes/uptimes"; - sha256 = "0r8s5c2hdcb1ly7rnhzar4qzf1c9d49gd914ndnc3mg9yb9gyy5h"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/uptimes"; - license = lib.licenses.free; - }; - }) {}; - url-shortener = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "url-shortener"; - ename = "url-shortener"; - version = "20170804.1942"; - src = fetchFromGitHub { - owner = "yuyang0"; - repo = "url-shortener"; - rev = "06db8270213b9e352d6c335b0663059a1353d05e"; - sha256 = "1ndcajgvfl46zw2iwgghvcldsy9p778pifkhlanivc6azajhpjhh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/url-shortener"; - sha256 = "08zsirsndhr8xny2vkzznkvjs0b6490lzd915ws6crdwxp6mx5si"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/url-shortener"; - license = lib.licenses.free; - }; - }) {}; - urlenc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "urlenc"; - ename = "urlenc"; - version = "20140116.656"; - src = fetchFromGitHub { - owner = "buzztaiki"; - repo = "urlenc-el"; - rev = "835a6dcb783bbe84714bae87a3464aa0b128bfac"; - sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c36c416a13328ab762041dd62407b7b0696de93/recipes/urlenc"; - sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/urlenc"; - license = lib.licenses.free; - }; - }) {}; - urscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "urscript-mode"; - ename = "urscript-mode"; - version = "20190219.804"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "urscript-mode"; - rev = "b341f96b129ead8fb74d680cb4f546985bf110a9"; - sha256 = "0qhncqsvsrpgc47ixsp436imfm0l6pd1kbpjjk426wrnzaszrpkc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4ae680b51a85749ed254215bbd4a35909961049/recipes/urscript-mode"; - sha256 = "1jjmpg9r7vwa8284chx9yc1ifn36m7ml1ks4ls8hnsxachbv7wlh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/urscript-mode"; - license = lib.licenses.free; - }; - }) {}; - usage-memo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "usage-memo"; - ename = "usage-memo"; - version = "20170925.1737"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "usage-memo"; - rev = "88e15a9942a3e0a6e36e9c3e51e3edb746067b1a"; - sha256 = "1aalrgyk8pwsc07qmczqhgccjli6mcckkbgpass3kvrkcfxdl2zk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad10a684b4b2f01bc65883374f36fef156ff55d2/recipes/usage-memo"; - sha256 = "0fv96xd6gk12nv98zccwncr00qms0pmrp0cv7iipbz54s20g0745"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/usage-memo"; - license = lib.licenses.free; - }; - }) {}; - use-package = callPackage ({ bind-key - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "use-package"; - ename = "use-package"; - version = "20190529.1340"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "4aa14a4fcd5ca52b3f1bfcf5ab294173f7bbe390"; - sha256 = "0ilizp2kdv9j792fsmndjfq33fx2c19rr2g4pgaajp1cad2pp2jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51a19a251c879a566d4ae451d94fcb35e38a478b/recipes/use-package"; - sha256 = "0d0zpgxhj6crsdi9sfy30fn3is036apm1kz8fhjg1yzdapf1jdyp"; - name = "recipe"; - }; - packageRequires = [ bind-key emacs ]; - meta = { - homepage = "https://melpa.org/#/use-package"; - license = lib.licenses.free; - }; - }) {}; - use-package-chords = callPackage ({ bind-chord - , bind-key - , fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-chords"; - ename = "use-package-chords"; - version = "20181024.1622"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "763bf5337dab14b318a3ddce29140de1ed8fb35b"; - sha256 = "08v4rsl3x5dj7ihpnzbyxjbg2ls2kybcsb0rcxjh5anj4hmcsyly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-chords"; - sha256 = "1217l0gpxcp8532p0d3g1xd2015qpx2g5xm0kwsbxdmffqqdaar3"; - name = "recipe"; - }; - packageRequires = [ bind-chord bind-key key-chord use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-chords"; - license = lib.licenses.free; - }; - }) {}; - use-package-el-get = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-el-get"; - ename = "use-package-el-get"; - version = "20180130.2105"; - src = fetchFromGitLab { - owner = "edvorg"; - repo = "use-package-el-get"; - rev = "f33c448ed43ecb003b60ff601ee7ef9b08cff947"; - sha256 = "1wzn3h8k7aydj3hxxws64b0v4cr3b77cf7z128xh3v6xz2w62m4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aca60522257353fbfd9d032f8c3cae7914d6bd36/recipes/use-package-el-get"; - sha256 = "143vydssjxmkcgs661hz6nhg310r8qypn2a4vyxy5sb31wqcclzg"; - name = "recipe"; - }; - packageRequires = [ use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-el-get"; - license = lib.licenses.free; - }; - }) {}; - use-package-ensure-system-package = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , system-packages - , use-package }: - melpaBuild { - pname = "use-package-ensure-system-package"; - ename = "use-package-ensure-system-package"; - version = "20180913.801"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "2b89ca4b9102baaf3f84f3fc8177c8a17288e291"; - sha256 = "18xpjqvnrk72jybbd5xipnsbngkj38hqd9vfq0kb42fhiv1v5b92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-ensure-system-package"; - sha256 = "1cl61nwgsz5dh3v9rdiww8mq2k1sbx27gr6izb4ij4pnzjp7aaj6"; - name = "recipe"; - }; - packageRequires = [ system-packages use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-ensure-system-package"; - license = lib.licenses.free; - }; - }) {}; - use-package-hydra = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-hydra"; - ename = "use-package-hydra"; - version = "20181227.2345"; - src = fetchFromGitLab { - owner = "to1ne"; - repo = "use-package-hydra"; - rev = "8cd55a1128fbdf6327bb38a199d206225896d146"; - sha256 = "19dja25illcvwpx8j1kigw8dzby41bm57prx1bhaxkmsakxyl863"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28589bb76442601930a4591e200c8e1db119caf6/recipes/use-package-hydra"; - sha256 = "0q2qfav2y1p6vxfvdblqlpjmj0z7z8w843jpry9g07d8kc4959f6"; - name = "recipe"; - }; - packageRequires = [ emacs use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-hydra"; - license = lib.licenses.free; - }; - }) {}; - use-ttf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "use-ttf"; - ename = "use-ttf"; - version = "20190516.2202"; - src = fetchFromGitHub { - owner = "elpa-host"; - repo = "use-ttf"; - rev = "3ee594ac25f01c9c2a92e5e3f64ee078f745b861"; - sha256 = "11zvb1vwmljk46dypsd5332z4qrl15crhjlynddmi2n7kgw4d5f5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec27ae185c0308c445e461dc84f398483ca08c5a/recipes/use-ttf"; - sha256 = "0gxrn05qcnf54c5895nw68088b9mngsf7sij2prwyfw0ghdl9s8k"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/use-ttf"; - license = lib.licenses.free; - }; - }) {}; - usql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "usql"; - ename = "usql"; - version = "20180305.1523"; - src = fetchFromGitHub { - owner = "nickbarnwell"; - repo = "usql.el"; - rev = "bfaf428b366a9a185eef84f0d645a98dc918fe3d"; - sha256 = "00b1g30l86abg65wc9f4vcn4ccqa2zmn2mi33vdjrq3phw17d2ks"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f6b968312a09d062fcc8f942d29c93df2a5a3c/recipes/usql"; - sha256 = "10ks164kcly5gkb2qmn700a51kph2sry4a64jwn60p5xl7w7af84"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/usql"; - license = lib.licenses.free; - }; - }) {}; - utop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "utop"; - ename = "utop"; - version = "20181010.1455"; - src = fetchFromGitHub { - owner = "diml"; - repo = "utop"; - rev = "ea38850e606dd18c94e2ccabc28485fec1c8f91f"; - sha256 = "0g7mj1qag9d7mn58l3lh7as0w4bj7rq3r6d3mykafgyjaajsxnx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop"; - sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/utop"; - license = lib.licenses.free; - }; - }) {}; - uuid = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uuid"; - ename = "uuid"; - version = "20120910.151"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-uuid"; - rev = "1519bfeb0e31602b840bc8dd35d7c7e732c159fe"; - sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/uuid"; - sha256 = "0d69z9686gnd1bb17wa44v1rbbgccacn4kicwf9niwwp05nccfw6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/uuid"; - license = lib.licenses.free; - }; - }) {}; - uuidgen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uuidgen"; - ename = "uuidgen"; - version = "20140918.1601"; - src = fetchFromGitHub { - owner = "kanru"; - repo = "uuidgen-el"; - rev = "7eb96415484c3854a3f383d1a3e10b87ae674e22"; - sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bdeb5848d0b160a74e834ed918e83653d7342bf/recipes/uuidgen"; - sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/uuidgen"; - license = lib.licenses.free; - }; - }) {}; - v2ex-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "v2ex-mode"; - ename = "v2ex-mode"; - version = "20160719.2045"; - src = fetchFromGitHub { - owner = "aborn"; - repo = "v2ex-mode"; - rev = "b7d19bb594b43ea3824a6f215dd1e5d1d4c0e8ad"; - sha256 = "0hhj5xfm7mp3ajrbj9ai5p2d9akaqkj89rmqmg1vpyfp3x2f4h2k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b27b7d777415aa350c8c30822e239b9a4c02e77d/recipes/v2ex-mode"; - sha256 = "04frd6jbnf9g7ak2fdbik9iji7b0903cpbg1hx7rai1853af7gh1"; - name = "recipe"; - }; - packageRequires = [ cl-lib let-alist request ]; - meta = { - homepage = "https://melpa.org/#/v2ex-mode"; - license = lib.licenses.free; - }; - }) {}; - vagrant = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vagrant"; - ename = "vagrant"; - version = "20170301.1406"; - src = fetchFromGitHub { - owner = "ottbot"; - repo = "vagrant.el"; - rev = "636ce2f9af32ea199170335a9cf1201b64873440"; - sha256 = "06zws69z327p00jw3zaf67niji2d4j339xmhbsrwbcr4w65dmz94"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/vagrant"; - sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vagrant"; - license = lib.licenses.free; - }; - }) {}; - vagrant-tramp = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vagrant-tramp"; - ename = "vagrant-tramp"; - version = "20190125.1059"; - src = fetchFromGitHub { - owner = "dougm"; - repo = "vagrant-tramp"; - rev = "77256deca35bb797cbba499837f3658d1a17d2e3"; - sha256 = "0j7ff9b3ic4a6kzn7k0c52knlgangql7sjsxahwvym6w18r52d5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/baea9f16e245aec3f62e55471358c7208f61372d/recipes/vagrant-tramp"; - sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/vagrant-tramp"; - license = lib.licenses.free; - }; - }) {}; - vala-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vala-mode"; - ename = "vala-mode"; - version = "20150324.1525"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "vala-mode"; - rev = "fb2871a4492d75d03d72e60474919ab89adb267b"; - sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cea26fa67a524b7c14be2952cfbd4f657431415f/recipes/vala-mode"; - sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vala-mode"; - license = lib.licenses.free; - }; - }) {}; - vala-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "vala-snippets"; - ename = "vala-snippets"; - version = "20150428.2052"; - src = fetchFromGitHub { - owner = "gopar"; - repo = "vala-snippets"; - rev = "671439501060449bd100b9fffd524a86064fbfbb"; - sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70f130c5751f47c1ead5f8915680e817e0239a2a/recipes/vala-snippets"; - sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/vala-snippets"; - license = lib.licenses.free; - }; - }) {}; - vbasense = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "vbasense"; - ename = "vbasense"; - version = "20140221.1553"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-vbasense"; - rev = "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db"; - sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e7dd1e985d55149f48e4f93a31fb28ec01a4add/recipes/vbasense"; - sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/vbasense"; - license = lib.licenses.free; - }; - }) {}; - vc-auto-commit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-auto-commit"; - ename = "vc-auto-commit"; - version = "20170107.533"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "vc-auto-commit"; - rev = "446f664f4ec835532f4f18ba18b5fb731f6030aa"; - sha256 = "18jjl656ps75p7n3hf16mcjrgiagnjvb8m8dl4i261cbnq98qmav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/770ab1e99fe63789726fc6c8c5d7e9a0287bc5fa/recipes/vc-auto-commit"; - sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vc-auto-commit"; - license = lib.licenses.free; - }; - }) {}; - vc-check-status = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-check-status"; - ename = "vc-check-status"; - version = "20170107.534"; - src = fetchFromGitHub { - owner = "thisirs"; - repo = "vc-check-status"; - rev = "37734beb16bfd8633ea328059bf9a47eed826d5c"; - sha256 = "0mspksr2i6hkb7bhs38ydmn0d2mn7g1hjva60paq86kl7k76f7ra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0387e08dd7ed69b291e896d85bd975c4f5dcbd09/recipes/vc-check-status"; - sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vc-check-status"; - license = lib.licenses.free; - }; - }) {}; - vc-darcs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-darcs"; - ename = "vc-darcs"; - version = "20170904.2020"; - src = fetchFromGitHub { - owner = "velkyel"; - repo = "vc-darcs"; - rev = "390fb1ebdda1ffac45b9be02626dde3b6d95ac11"; - sha256 = "1fcqkavc7hlbhswx5nnaqhash42cjsbr72ijznx5cplr582g3mfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54f89c50ae45365e86bdadcf67b2411c0f4c5603/recipes/vc-darcs"; - sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vc-darcs"; - license = lib.licenses.free; - }; - }) {}; - vc-fossil = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-fossil"; - ename = "vc-fossil"; - version = "20180215.835"; - src = fetchFromGitHub { - owner = "venks1"; - repo = "emacs-fossil"; - rev = "7c5af95181213db38f81f5f9586f3334301a3ea0"; - sha256 = "1c18ywvs0l5w7ip2igksjy48awzas8mph7plpvp1v8c67a3a3m2m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c5ee4b625b90c1af66d7d11a25af8e1aa307b1/recipes/vc-fossil"; - sha256 = "11ps2wrkjrjm1d984mf80wwj1hzskw5qrn0nv7md21lp75kxsvxb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vc-fossil"; - license = lib.licenses.free; - }; - }) {}; - vc-hgcmd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-hgcmd"; - ename = "vc-hgcmd"; - version = "20190506.338"; - src = fetchFromGitHub { - owner = "muffinmad"; - repo = "emacs-vc-hgcmd"; - rev = "e0f6e412c66bb8d57549d0d83dcdcab5b71db664"; - sha256 = "0mcdyy3qcci0x78q06kilfxm14nzmwfzwg7n3njh93i2h1plr7ic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/111142342ab81dcaa88a831ba620be499a334c3f/recipes/vc-hgcmd"; - sha256 = "11p8r94s72x47nkxlarxwy33im167jpjas8b9i8dkrz2iggwn5xk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vc-hgcmd"; - license = lib.licenses.free; - }; - }) {}; - vc-msg = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "vc-msg"; - ename = "vc-msg"; - version = "20180604.1758"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "vc-msg"; - rev = "ffd8db482cbd9fb63dace0e5ddcc7207a9c99f5e"; - sha256 = "1zq01k50d958prl8aaz8n2sv541lrq3s1dn8vnfal4drn3iffgv9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59ad4e80b49c78decd7b5794565313f65550384e/recipes/vc-msg"; - sha256 = "16pgx8pg3djhkmhf1fihgjk7c6nb2nsqj58888bwg7385mlwc7g9"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/vc-msg"; - license = lib.licenses.free; - }; - }) {}; - vc-osc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-osc"; - ename = "vc-osc"; - version = "20190402.1649"; - src = fetchFromGitHub { - owner = "aspiers"; - repo = "vc-osc"; - rev = "bf5a515ed85f7d7cdfe66ed5bf4ef7554f8561e5"; - sha256 = "1jk09vspns327j9mfy32dd71n3nfynn17h2njc4sczrgd4yzc2wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a1fa5fdfdfa9ec5607524be62eb44fe82e91b0/recipes/vc-osc"; - sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vc-osc"; - license = lib.licenses.free; - }; - }) {}; - vcomp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vcomp"; - ename = "vcomp"; - version = "20190127.1620"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "vcomp"; - rev = "f839b3b3257a564b19d7f9557dc8bcbbe0b95842"; - sha256 = "1xd42bdi6x89gc9xjrwvzzdaanv9vwlbbjwp25bs1nsd53k5nvak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/561442ea9f75ebe8444db1a0c40f7756fcbca482/recipes/vcomp"; - sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vcomp"; - license = lib.licenses.free; - }; - }) {}; - vdiff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "vdiff"; - ename = "vdiff"; - version = "20190226.1903"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-vdiff"; - rev = "a1a82dec623a241b0e9ed19fd65da6e7073d59ac"; - sha256 = "15b33ksy7m1128zz8d300z5b6hx2d9hhrfyb2h67rggaq7qh82za"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e90f19c8fa4b0d267d269b76f117995e812e899c/recipes/vdiff"; - sha256 = "11gw0l63fssbiyhngqb7ykrp7m1vy55wlf27ybhh2dkwh1cpkr4l"; - name = "recipe"; - }; - packageRequires = [ emacs hydra ]; - meta = { - homepage = "https://melpa.org/#/vdiff"; - license = lib.licenses.free; - }; - }) {}; - vdiff-magit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , transient - , vdiff }: - melpaBuild { - pname = "vdiff-magit"; - ename = "vdiff-magit"; - version = "20190304.907"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-vdiff-magit"; - rev = "b100d126c69e5c26a61ae05aa1778bcc4302b597"; - sha256 = "16cjmrzflf2i1w01973sl944xrfanakba8sb4dpwi79d92xp03xy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2159275fabde8ec8b297f6635546b1314d519b8b/recipes/vdiff-magit"; - sha256 = "1vjc1r5xfdg9bmscgppx1fps1w5bd0zpp6ab5z5dxlg2zx2vdldw"; - name = "recipe"; - }; - packageRequires = [ emacs magit transient vdiff ]; - meta = { - homepage = "https://melpa.org/#/vdiff-magit"; - license = lib.licenses.free; - }; - }) {}; - vdirel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , org-vcard - , seq }: - melpaBuild { - pname = "vdirel"; - ename = "vdirel"; - version = "20190429.2324"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "vdirel"; - rev = "255496e6808e7a3da1b0afef873dc4920c2b117f"; - sha256 = "0zq2lqj4s3n4japfmjm56yg120l1lk7d0h1jysdp8d4mzdb2m0p0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72b5ea3f4444c3de73d986a28e1d12bf47c40246/recipes/vdirel"; - sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; - name = "recipe"; - }; - packageRequires = [ emacs helm org-vcard seq ]; - meta = { - homepage = "https://melpa.org/#/vdirel"; - license = lib.licenses.free; - }; - }) {}; - vdm-comint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , vdm-mode }: - melpaBuild { - pname = "vdm-comint"; - ename = "vdm-comint"; - version = "20181127.1223"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa"; - sha256 = "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/077f586e59fe3b6085e1f19b3c18b218de5d4046/recipes/vdm-comint"; - sha256 = "1r7jg7dkzfs4n230n0jk23w0ncqsiwkslf2gmjfzfqg8qklr9bhs"; - name = "recipe"; - }; - packageRequires = [ emacs vdm-mode ]; - meta = { - homepage = "https://melpa.org/#/vdm-comint"; - license = lib.licenses.free; - }; - }) {}; - vdm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vdm-mode"; - ename = "vdm-mode"; - version = "20190328.708"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "89e7db6ee1a89b8c1f7ce36ce6800c32b5c4ba2d"; - sha256 = "1vfqkfw39yg7379s6b28n8nyswv1jq7caljfbnyrndsag6z4j50k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a6c89d41235f7e8463a47400004a32b2979a5a/recipes/vdm-mode"; - sha256 = "1h72731vcsjqsbii1wbzpa114x09aqbkbnz5fg9fnjq9rybz6rn7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vdm-mode"; - license = lib.licenses.free; - }; - }) {}; - vdm-snippets = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "vdm-snippets"; - ename = "vdm-snippets"; - version = "20190313.422"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "dc1756dd151752b3f538d68326059f8861e4ac66"; - sha256 = "02pkiz700g86n7fs1rygp6im0rhx6x8ag7fjc8sci02igf74hb30"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f246b9dcf7915a845b9e2cd44cc1a0833b412c8f/recipes/vdm-snippets"; - sha256 = "1js1hjs2r9bbqm50bl389y87xn68f30xrh2z6nd5kz2hdgkm6lhj"; - name = "recipe"; - }; - packageRequires = [ emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/vdm-snippets"; - license = lib.licenses.free; - }; - }) {}; - vector-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vector-utils"; - ename = "vector-utils"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "vector-utils"; - rev = "5f9ced3960a318d611c3d20ffdc9ca74054fa8b7"; - sha256 = "11mqjymcgssahlpc83qflcavjs2lrk0rq4pq2nq9sxm2dgnvrz86"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/vector-utils"; - sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vector-utils"; - license = lib.licenses.free; - }; - }) {}; - veri-kompass = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "veri-kompass"; - ename = "veri-kompass"; - version = "20181110.133"; - src = fetchFromGitLab { - owner = "koral"; - repo = "veri-kompass"; - rev = "72aa690da9a349601c9befe454d456d46b17fee6"; - sha256 = "0da47w45a1q04srsc0kgjp4lacgaa6abf2b11qjgckm3drahifgg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18c3a69bec780e3e7456b310db6f0eec2a35c753/recipes/veri-kompass"; - sha256 = "103x4003qj0z9ki6xz4hymamyhipzfxz94x4gszk3k2qnvkjkxnj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/veri-kompass"; - license = lib.licenses.free; - }; - }) {}; - verify-url = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "verify-url"; - ename = "verify-url"; - version = "20160426.528"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "verify-url"; - rev = "d6f3623cda8cd526a2d198619b137059cb1ba1ab"; - sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2070f7b1901c83e59468f6498bd5f79077ccb79d/recipes/verify-url"; - sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/verify-url"; - license = lib.licenses.free; - }; - }) {}; - vertica = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sql ? null }: - melpaBuild { - pname = "vertica"; - ename = "vertica"; - version = "20131217.711"; - src = fetchFromGitHub { - owner = "r0man"; - repo = "vertica-el"; - rev = "3c9647b425c5c13c30bf0cba483646af18196588"; - sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f98a06b794ef0936db953f63679a63232295a849/recipes/vertica"; - sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng"; - name = "recipe"; - }; - packageRequires = [ sql ]; - meta = { - homepage = "https://melpa.org/#/vertica"; - license = lib.licenses.free; - }; - }) {}; - vertica-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "vertica-snippets"; - ename = "vertica-snippets"; - version = "20190403.256"; - src = fetchFromGitHub { - owner = "baron42bba"; - repo = "vertica-snippets"; - rev = "b7a2e9660762a213fa001355e67ca671d9496339"; - sha256 = "0n5f5zgg7yvy6f5l746vi7z4y9gmjk7m9bdk68xhfz8pgyjaji3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3c8cb5c0fdbb6820a08091d8936dd53a3c43c56/recipes/vertica-snippets"; - sha256 = "0044qcf6dyxp2h14ij6w19zs7ikx9xalfrz6jqbl8sy35wcihmhn"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/vertica-snippets"; - license = lib.licenses.free; - }; - }) {}; - vertigo = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vertigo"; - ename = "vertigo"; - version = "20180829.1530"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "vertigo.el"; - rev = "6303d17270ea92290a6960890bca515274f1682b"; - sha256 = "0570x63l1j75issnq23hrhhpisv2jm18fn5mspsvbs4xy2hy4h8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1957e7fa03b6b8eb2f3250bd814d707bce3cfa3/recipes/vertigo"; - sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/vertigo"; - license = lib.licenses.free; - }; - }) {}; - vhdl-capf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vhdl-capf"; - ename = "vhdl-capf"; - version = "20160221.934"; - src = fetchFromGitHub { - owner = "sh-ow"; - repo = "vhdl-capf"; - rev = "290abe217050f33532bc9ccb04f894123402f414"; - sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6192f5777bc8be6ddc5523f92ab641ed3af1a504/recipes/vhdl-capf"; - sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vhdl-capf"; - license = lib.licenses.free; - }; - }) {}; - vhdl-tools = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ggtags - , helm - , helm-rg - , lib - , melpaBuild - , outshine }: - melpaBuild { - pname = "vhdl-tools"; - ename = "vhdl-tools"; - version = "20190301.506"; - src = fetchFromGitHub { - owner = "csantosb"; - repo = "vhdl-tools"; - rev = "d2c072a0426fa413227f1e4f7ef9fe76c0eb412b"; - sha256 = "0bqdz4iiv5d58bsc0pjx3npr5n8f7wzikv0l0jcpw70v4v6337r6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools"; - sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; - name = "recipe"; - }; - packageRequires = [ emacs ggtags helm helm-rg outshine ]; - meta = { - homepage = "https://melpa.org/#/vhdl-tools"; - license = lib.licenses.free; - }; - }) {}; - vi-tilde-fringe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vi-tilde-fringe"; - ename = "vi-tilde-fringe"; - version = "20141027.1942"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "vi-tilde-fringe"; - rev = "e6e15638e8c45a5e68d0874d5d8c9a46c4f38a54"; - sha256 = "08bsman85x2l94ighzcj3xkis1snjc96bmgc8yfk63vqlybv5pw9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b3359d57148f8205f8a863a21d92fe4912f31cc/recipes/vi-tilde-fringe"; - sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vi-tilde-fringe"; - license = lib.licenses.free; - }; - }) {}; - viewer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "viewer"; - ename = "viewer"; - version = "20170106.1802"; - src = fetchFromGitHub { - owner = "rubikitch"; - repo = "viewer"; - rev = "6c8db025bf4021428f7f2c3ef9d74fb13f5d267a"; - sha256 = "1sj4a9zwfv94m0ac503gan6hf9sl2658khab1fnj8szcq7hrdvq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8e4328cae9b4759a75da0b26ea8b68821bc71af/recipes/viewer"; - sha256 = "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/viewer"; - license = lib.licenses.free; - }; - }) {}; - viking-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "viking-mode"; - ename = "viking-mode"; - version = "20160705.1327"; - src = fetchFromGitHub { - owner = "TLINDEN"; - repo = "viking-mode"; - rev = "c76aa265d13ad91d6890d242e142d05e31f0340b"; - sha256 = "1944p3kbskzj4d9w9prbi7z59lrn087v3gphbhwjplz6mvwbl8g6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/viking-mode"; - sha256 = "12z9807ya0gsgx7h3zdvpx7jksjjrglz3qqyz65wj71sibjfry4m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/viking-mode"; - license = lib.licenses.free; - }; - }) {}; - vim-empty-lines-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vim-empty-lines-mode"; - ename = "vim-empty-lines-mode"; - version = "20150110.2026"; - src = fetchFromGitHub { - owner = "jmickelin"; - repo = "vim-empty-lines-mode"; - rev = "442a29b0ba1635a3b352c9dd1faf9ce99656d048"; - sha256 = "09x857vbx35rpyc5x1322ajby613gva090x4vawaczk22idq65h4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e93a8dcd2ff159203288e71da6b8f28eab0d2006/recipes/vim-empty-lines-mode"; - sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vim-empty-lines-mode"; - license = lib.licenses.free; - }; - }) {}; - vim-region = callPackage ({ expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vim-region"; - ename = "vim-region"; - version = "20140329.924"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "emacs-vim-region"; - rev = "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf"; - sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23249b485ca8e66a21f858712f46aa76b8554f28/recipes/vim-region"; - sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; - name = "recipe"; - }; - packageRequires = [ expand-region ]; - meta = { - homepage = "https://melpa.org/#/vim-region"; - license = lib.licenses.free; - }; - }) {}; - vimish-fold = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vimish-fold"; - ename = "vimish-fold"; - version = "20181231.2300"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "vimish-fold"; - rev = "5ae201fc9a7024dd9c8d1713a00dd42cf1290d6e"; - sha256 = "0rwfzhqrs4gw5j9irzdy9lwk5m8ycaxdqp5b3gb238a2jqfcxnbz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4862b0a3d43f073e645803cbbf11d973a4b51d5/recipes/vimish-fold"; - sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/vimish-fold"; - license = lib.licenses.free; - }; - }) {}; - vimrc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vimrc-mode"; - ename = "vimrc-mode"; - version = "20181116.1119"; - src = fetchFromGitHub { - owner = "mcandre"; - repo = "vimrc-mode"; - rev = "13bc150a870d5d4a95f1111e4740e2b22813c30e"; - sha256 = "0026dqs3hwygk2k2xfra90w5sfnxrfj7l69jz7sq5glavbf340pk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/vimrc-mode"; - sha256 = "05zmr624qwsj9wqsmjlhjvjl1fc1qxz4vvbb3ljr5fbpxdjrbnpn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vimrc-mode"; - license = lib.licenses.free; - }; - }) {}; - virtualenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "virtualenv"; - ename = "virtualenv"; - version = "20140220.1501"; - src = fetchFromGitHub { - owner = "aculich"; - repo = "virtualenv.el"; - rev = "cc82856b6316d5e78073de717f0d5d1a4ee35fa6"; - sha256 = "1appaxy44njjyp5jp8l0nyqrvbi8hkdvbdfvvf5n08ad43g281p1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/923e4fcf29423ad55b13132d53759bc436466ef9/recipes/virtualenv"; - sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/virtualenv"; - license = lib.licenses.free; - }; - }) {}; - virtualenvwrapper = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "virtualenvwrapper"; - ename = "virtualenvwrapper"; - version = "20190223.1119"; - src = fetchFromGitHub { - owner = "porterjamesj"; - repo = "virtualenvwrapper.el"; - rev = "f753e5ad91c2ff5d11bec424aa8cec141efa6925"; - sha256 = "062pbnplb3w9h64qsj71d9fvgicp1x63n05mgvgymjh2rnx7py0d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/virtualenvwrapper"; - sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/virtualenvwrapper"; - license = lib.licenses.free; - }; - }) {}; - visible-mark = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visible-mark"; - ename = "visible-mark"; - version = "20150623.2150"; - src = fetchFromGitLab { - owner = "iankelling"; - repo = "visible-mark"; - rev = "c1852e13b6b61982738b56977a452ec9026faf1b"; - sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/visible-mark"; - sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/visible-mark"; - license = lib.licenses.free; - }; - }) {}; - visual-ascii-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visual-ascii-mode"; - ename = "visual-ascii-mode"; - version = "20150129.246"; - src = fetchFromGitHub { - owner = "Dewdrops"; - repo = "visual-ascii-mode"; - rev = "99285a099a17472ddd9f1b4f74e9d092dd8c5947"; - sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/21df748a3f383d62c921e184e2a4c9ae4118ca98/recipes/visual-ascii-mode"; - sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/visual-ascii-mode"; - license = lib.licenses.free; - }; - }) {}; - visual-fill-column = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visual-fill-column"; - ename = "visual-fill-column"; - version = "20190422.1454"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "visual-fill-column"; - rev = "772d4b25ba19f57409cd03524be0f5bfdc2e8da1"; - sha256 = "1k4a7nqc2zxwxrcrryap2jk6bwc6ln3j6yzgkg5yyf2imsbil4br"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column"; - sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/visual-fill-column"; - license = lib.licenses.free; - }; - }) {}; - visual-regexp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visual-regexp"; - ename = "visual-regexp"; - version = "20190414.114"; - src = fetchFromGitHub { - owner = "benma"; - repo = "visual-regexp.el"; - rev = "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca"; - sha256 = "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/visual-regexp"; - sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/visual-regexp"; - license = lib.licenses.free; - }; - }) {}; - visual-regexp-steroids = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , visual-regexp }: - melpaBuild { - pname = "visual-regexp-steroids"; - ename = "visual-regexp-steroids"; - version = "20170221.1853"; - src = fetchFromGitHub { - owner = "benma"; - repo = "visual-regexp-steroids.el"; - rev = "a6420b25ec0fbba43bf57875827092e1196d8a9e"; - sha256 = "1isqa4ck6pm4ykcrkr0g1qj8664jkpcsrq0f8dlb0sksns2dqkwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f105ebce741956b7becc86e4bdfcafecf59af74/recipes/visual-regexp-steroids"; - sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; - name = "recipe"; - }; - packageRequires = [ visual-regexp ]; - meta = { - homepage = "https://melpa.org/#/visual-regexp-steroids"; - license = lib.licenses.free; - }; - }) {}; - vlf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vlf"; - ename = "vlf"; - version = "20180201.1454"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "vlfi"; - rev = "31b292dc85a374fb343789e217015683bfbdf5f1"; - sha256 = "18ll47if9ajv0jj2aps8592bj7xqhxy74sbsqn07x9ywinxxi9mn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9116b11eb513dd9e1dc9542d274dd60f183b24c4/recipes/vlf"; - sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vlf"; - license = lib.licenses.free; - }; - }) {}; - vmd-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vmd-mode"; - ename = "vmd-mode"; - version = "20180223.556"; - src = fetchFromGitHub { - owner = "blak3mill3r"; - repo = "vmd-mode"; - rev = "24e38a20951dfad6e3e985c7cc6286c1e271da5f"; - sha256 = "00anpbnf0h6iikhpqz4mss507j41xwvv27svw41kpgcwsnrmrqwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/vmd-mode"; - sha256 = "1xjyl2xh3vig2rzjqm1a4h2ridygbanmal78s4yc32hacy0lfyrx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vmd-mode"; - license = lib.licenses.free; - }; - }) {}; - voca-builder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "voca-builder"; - ename = "voca-builder"; - version = "20161101.945"; - src = fetchFromGitHub { - owner = "yitang"; - repo = "voca-builder"; - rev = "51573beec8cd8308477b0faf453aad93e17f57c5"; - sha256 = "1gd7zqmyn389dfyx1yll1bw5f8kjib87k33s9hxsbx0db8vas9q6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42a930e024ce525b2890ccd5a1eb4844859faafd/recipes/voca-builder"; - sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/voca-builder"; - license = lib.licenses.free; - }; - }) {}; - volatile-highlights = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "volatile-highlights"; - ename = "volatile-highlights"; - version = "20160611.1855"; - src = fetchFromGitHub { - owner = "k-talo"; - repo = "volatile-highlights.el"; - rev = "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392"; - sha256 = "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/volatile-highlights"; - sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/volatile-highlights"; - license = lib.licenses.free; - }; - }) {}; - volume = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "volume"; - ename = "volume"; - version = "20150718.1309"; - src = fetchFromGitHub { - owner = "dbrock"; - repo = "volume.el"; - rev = "ecc1550b3c8b501d37e0f0116b54b535d15f90f6"; - sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/volume"; - sha256 = "1gm2zaf6qwbdhayaj153882qm21cl4qdyjkdnqrlssb2mcgf017w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/volume"; - license = lib.licenses.free; - }; - }) {}; - vscode-icon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vscode-icon"; - ename = "vscode-icon"; - version = "20180922.1450"; - src = fetchFromGitHub { - owner = "jojojames"; - repo = "vscode-icon-emacs"; - rev = "3ad83ee122d312775a101c975424a2c87c3a80b1"; - sha256 = "0pd9j1bp8lqda8r6kgmxinf6x8aqfg1aikgk2svlcf1g8z31m66i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90a07c96a9223a9ad477cbea895ba522523c5be4/recipes/vscode-icon"; - sha256 = "0rhsqzgxl7hs52kniyi8yn4f953g7dgx49j4lzf2yr33ydxiw9d3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vscode-icon"; - license = lib.licenses.free; - }; - }) {}; - vterm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vterm"; - ename = "vterm"; - version = "20190502.1000"; - src = fetchFromGitHub { - owner = "akermu"; - repo = "emacs-libvterm"; - rev = "db9679d77dda82299f7c3aab79a3f5b0967ddce3"; - sha256 = "1rb4raq9hx86pv4pkkf5vx62x9bip1hjdx3iiwxviz6kkzfcy236"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91a71615c0a32565e455ac81d9bc90443aa8caf9/recipes/vterm"; - sha256 = "0nn15pz2ys4bmpyks190x22f8s2fcr793f95h0c2m67cfjmnd478"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vterm"; - license = lib.licenses.free; - }; - }) {}; - vue-html-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vue-html-mode"; - ename = "vue-html-mode"; - version = "20180428.1335"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "vue-html-mode"; - rev = "361a9fa117f044c3072dc5a7344ff7be31725849"; - sha256 = "1z1pphxli8fcahw9fhmxls1v9nyd34pz51jwwa6g468zvdmcjb77"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48588b163ab76204b9054340071e758045480e19/recipes/vue-html-mode"; - sha256 = "1f4pjfp4298jkvhacxygddg557hhyivgnm5x3yhjipfv6fjkgl2s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vue-html-mode"; - license = lib.licenses.free; - }; - }) {}; - vue-mode = callPackage ({ edit-indirect - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode - , ssass-mode - , vue-html-mode }: - melpaBuild { - pname = "vue-mode"; - ename = "vue-mode"; - version = "20190414.1931"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "vue-mode"; - rev = "031edd1f97db6e7d8d6c295c0e6d58dd128b9e71"; - sha256 = "047l5nxw86dvls8an65mmqcy673n37pyli7s0d52yi07jk0lw1yx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/vue-mode"; - sha256 = "0npzn7pycqfdakv4plkigq8aw1bqhz3y03y3ypx21q5a186ds0g5"; - name = "recipe"; - }; - packageRequires = [ edit-indirect mmm-mode ssass-mode vue-html-mode ]; - meta = { - homepage = "https://melpa.org/#/vue-mode"; - license = lib.licenses.free; - }; - }) {}; - vyper-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vyper-mode"; - ename = "vyper-mode"; - version = "20180707.1235"; - src = fetchFromGitHub { - owner = "ralexstokes"; - repo = "vyper-mode"; - rev = "323dfddfc38f0b11697e9ebaf04d1b53297e54e5"; - sha256 = "1vxqgc9c1lj61ipaw05xfby3nl7wn3kp5ga6kpr17v0jlm0667s5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/492d42d60bc188a567c5e438b838a275a124c699/recipes/vyper-mode"; - sha256 = "0mf1w4mw0ijmd9zxip1df85cp15fbvv9j5dqjmb8lfm4m43wpd96"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vyper-mode"; - license = lib.licenses.free; - }; - }) {}; - w32-browser = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "w32-browser"; - ename = "w32-browser"; - version = "20170101.1154"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "w32-browser"; - rev = "e5c60eafd8f8d3546a0fa295ad5af2414d36b4e6"; - sha256 = "18hcr9l5id2xdin20wrg9sdmwfad7qk78iryyg24ci9lvl53m02x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/w32-browser"; - sha256 = "16sp0gn4yv7iaa55i2kvfsqw3610gr3x31l9lqa14r9xmfhda1rn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/w32-browser"; - license = lib.licenses.free; - }; - }) {}; - w3m = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "w3m"; - ename = "w3m"; - version = "20190527.2050"; - src = fetchFromGitHub { - owner = "emacs-w3m"; - repo = "emacs-w3m"; - rev = "bbece278b90269260399458c4357ed2542c68211"; - sha256 = "1wy6fbzkgww23bqhjhc5wlkzqjg8j68wc5v35qr0db3m1r81gnmj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85c53c48caab0845101c487e4fee7e2cda15f706/recipes/w3m"; - sha256 = "1fnib1y79g50jz9wll63j0xf2awgkrlk6hwx0w6nzg0xsbfbkdvk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/w3m"; - license = lib.licenses.free; - }; - }) {}; - wacspace = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wacspace"; - ename = "wacspace"; - version = "20180311.1650"; - src = fetchFromGitHub { - owner = "shosti"; - repo = "wacspace.el"; - rev = "54d19aab6fd2bc5945b7ffc58104e695064927e2"; - sha256 = "1nfx1qsl2gxjqbbc5xsr8f3xz2qyb4wnz3634k3hglb1jpa78j3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58e5ff4c5853c5350d0534894ddb358daa83cee9/recipes/wacspace"; - sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/wacspace"; - license = lib.licenses.free; - }; - }) {}; - waf-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "waf-mode"; - ename = "waf-mode"; - version = "20170403.1240"; - src = fetchgit { - url = "https://bitbucket.org/dvalchuk/waf-mode"; - rev = "91c761336aa137b85b88b53b3f0cc60786d70800"; - sha256 = "1j2bqhmxjfai343m6iv3a8z37hv154h9kbidbi39d1pz2fl5lv43"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44c1aa152ba47113a91878df78d9b56eead98744/recipes/waf-mode"; - sha256 = "16rplrs599a67dcxcdc33zb9bqivv4a2mvrshvyip1lp75f36r5h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/waf-mode"; - license = lib.licenses.free; - }; - }) {}; - waher-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "waher-theme"; - ename = "waher-theme"; - version = "20141115.430"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-waher-theme"; - rev = "60d31519fcfd8e797723d47961b255ae2f2e2c0a"; - sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c734ba401d7d9255e0934c31ca5269866af035db/recipes/waher-theme"; - sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/waher-theme"; - license = lib.licenses.free; - }; - }) {}; - wakatime-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wakatime-mode"; - ename = "wakatime-mode"; - version = "20180920.2"; - src = fetchFromGitHub { - owner = "wakatime"; - repo = "wakatime-mode"; - rev = "2531cb58287770883ba534d20b3288955c4d6ef3"; - sha256 = "12wa845lwvwg38801mk880izfhjs50ssy5alj1743c2bz7ig5grk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a46036a0e53afbebacafd3bc9545c99af79ccfcc/recipes/wakatime-mode"; - sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wakatime-mode"; - license = lib.licenses.free; - }; - }) {}; - wakib-keys = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wakib-keys"; - ename = "wakib-keys"; - version = "20180818.1129"; - src = fetchFromGitHub { - owner = "darkstego"; - repo = "wakib-keys"; - rev = "a858979620bd22801e5ce214dd46d69b19ccd357"; - sha256 = "1zvjwm4qr82zhp4nb9mjzklqxa2iasw3i623fwp9a2fzn3c2cyx5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8ef5ae0dcb92e1cf019be3d53ab9b47d89f45bd/recipes/wakib-keys"; - sha256 = "1cgd15zwl15k2bxy3by17pphh6x1z8lanwkfjy4qyp5sxkjvw1cl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wakib-keys"; - license = lib.licenses.free; - }; - }) {}; - walkclj = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parseclj - , treepy }: - melpaBuild { - pname = "walkclj"; - ename = "walkclj"; - version = "20180718.200"; - src = fetchFromGitHub { - owner = "plexus"; - repo = "walkclj"; - rev = "2e54fa813b11d1a87c890cdf117f30165a193024"; - sha256 = "0bgvniw3ibcjsmzwrndg6pxwbpnpnxsb8ijs2gxg5kbm1hqqly32"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44472b35938fe70d4cb3d15397495fe321fcd464/recipes/walkclj"; - sha256 = "0m971dlazildhgj8jqg4x679i6s6p80mbpri7l24ynxk45wix22m"; - name = "recipe"; - }; - packageRequires = [ emacs parseclj treepy ]; - meta = { - homepage = "https://melpa.org/#/walkclj"; - license = lib.licenses.free; - }; - }) {}; - wand = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "wand"; - ename = "wand"; - version = "20190514.356"; - src = fetchFromGitHub { - owner = "cmpitg"; - repo = "wand"; - rev = "39ae16ad4f031c25c56b4bb82130d3815c0000f8"; - sha256 = "1sg7xyzaw55rl85hkjn5p06cfhz6r4zlw17nrppwbfs2yvq71b6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38be840bbb32094b753ec169b717a70817006655/recipes/wand"; - sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/wand"; - license = lib.licenses.free; - }; - }) {}; - wandbox = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "wandbox"; - ename = "wandbox"; - version = "20170603.531"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "emacs-wandbox"; - rev = "e002fe41f2cd9b4ce2b1dc80b83301176e9117f1"; - sha256 = "0fnbj3k21lisgs94pf8z13cdymmclgpn994xq3xly4gq6l8k0an5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/wandbox"; - sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; - name = "recipe"; - }; - packageRequires = [ emacs request s ]; - meta = { - homepage = "https://melpa.org/#/wandbox"; - license = lib.licenses.free; - }; - }) {}; - wanderlust = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , semi }: - melpaBuild { - pname = "wanderlust"; - ename = "wanderlust"; - version = "20190406.601"; - src = fetchFromGitHub { - owner = "wanderlust"; - repo = "wanderlust"; - rev = "6528a0032342ec7bf6a95dda9b60d67292eaadfc"; - sha256 = "0pdqz0ypdxr90zlna7jhcvvxbqjn367amxh91f76npvrcpi1s016"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/426172b72026d1adeb1bf3fcc6b0407875047333/recipes/wanderlust"; - sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9"; - name = "recipe"; - }; - packageRequires = [ semi ]; - meta = { - homepage = "https://melpa.org/#/wanderlust"; - license = lib.licenses.free; - }; - }) {}; - warm-night-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "warm-night-theme"; - ename = "warm-night-theme"; - version = "20161101.728"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "warm-night-theme"; - rev = "020f084d23409b5035150508ba6e57c2509edd64"; - sha256 = "1jmjyx06p0cvqi1vlg5px2g965q9pgi3j61msxjf5skzw53vlc88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/312e3298d51b8ed72028df34dbd7620cdd03d8dd/recipes/warm-night-theme"; - sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/warm-night-theme"; - license = lib.licenses.free; - }; - }) {}; - watch-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "watch-buffer"; - ename = "watch-buffer"; - version = "20120331.1344"; - src = fetchFromGitHub { - owner = "mjsteger"; - repo = "watch-buffer"; - rev = "a01cf15608c5bf91df253104053041ca1afdf411"; - sha256 = "1gbhcvysrgg3xxyvkl3lkyafqmzxhfg5nb7k3zwlvmxmndnzssg8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/watch-buffer"; - sha256 = "05f58kg05kfl4srwwjaf7w9jml50yx6bn4x8m1npswp882dsjyh9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/watch-buffer"; - license = lib.licenses.free; - }; - }) {}; - wavefront-obj-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wavefront-obj-mode"; - ename = "wavefront-obj-mode"; - version = "20170808.1016"; - src = fetchFromGitHub { - owner = "abend"; - repo = "wavefront-obj-mode"; - rev = "34027915de6496460d8e68b5991dd24d47d54859"; - sha256 = "0yj4wb5sdsbh3gp0sh2ajrrn6s8vg492809g4gxkxp30jhr6xc9q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d48e4fdc6c7079a1ca70c1e879473a98c11bbe6c/recipes/wavefront-obj-mode"; - sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wavefront-obj-mode"; - license = lib.licenses.free; - }; - }) {}; - wc-goal-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wc-goal-mode"; - ename = "wc-goal-mode"; - version = "20140829.659"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "wc-goal-mode"; - rev = "bf21ab9c5a449bcc20dd207a4915dcec218d2699"; - sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f003b6d6bc91e6f9e510de8f5f5f9189d1c7334/recipes/wc-goal-mode"; - sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wc-goal-mode"; - license = lib.licenses.free; - }; - }) {}; - wc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wc-mode"; - ename = "wc-mode"; - version = "20170126.2029"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "wc-mode"; - rev = "f218f42709a651b34d6c1ddd98856f44648ef707"; - sha256 = "0h79kf37pns92w4zsgazwhg087vkjvnhk9p1npll5ka87zbknndm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/wc-mode"; - sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wc-mode"; - license = lib.licenses.free; - }; - }) {}; - wcheck-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wcheck-mode"; - ename = "wcheck-mode"; - version = "20180126.416"; - src = fetchFromGitHub { - owner = "tlikonen"; - repo = "wcheck-mode"; - rev = "6aa26626ccc6f7f670de092c7d40e44ab8b410f9"; - sha256 = "0dgjg136s2qwsnvfs5y6n81ra7zmi8rwxrs6dn08z7mj7pac5kq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d10b59f568fdedf248c2e8eaa06c4a74032ca56/recipes/wcheck-mode"; - sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wcheck-mode"; - license = lib.licenses.free; - }; - }) {}; - wdl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wdl-mode"; - ename = "wdl-mode"; - version = "20180831.1246"; - src = fetchFromGitHub { - owner = "zhanxw"; - repo = "wdl-mode"; - rev = "cef86e5afc136ae5ad9324cd6e6d6f860b889bcf"; - sha256 = "0j7sv3dcpq2fvcip9834v6k8q1d8bpnbxnvz1g691lmc58z1a86a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8cf1f20913d765ae36ecc2c9a69470ff51124e56/recipes/wdl-mode"; - sha256 = "1zhrs0cdsr8mxh9zn8cy6inzxcygk0lgsyw1d190253v1kk6072i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wdl-mode"; - license = lib.licenses.free; - }; - }) {}; - weather-metno = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "weather-metno"; - ename = "weather-metno"; - version = "20150831.1807"; - src = fetchFromGitHub { - owner = "ruediger"; - repo = "weather-metno-el"; - rev = "bfc7137095e0ee71aad70ac46f2af677f3c051b6"; - sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75beac314565b9becb701ddd9bc85660e268c3ae/recipes/weather-metno"; - sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/weather-metno"; - license = lib.licenses.free; - }; - }) {}; - web = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "web"; - ename = "web"; - version = "20141231.1201"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-web"; - rev = "483188dac4bc6b409b985c9dae45f3324a425efd"; - sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web"; - sha256 = "141idn49b7x7llz249zbg2yq8snjxpmlpchsd3n1axlrbmx6pfpz"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/web"; - license = lib.licenses.free; - }; - }) {}; - web-beautify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-beautify"; - ename = "web-beautify"; - version = "20161115.1447"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "web-beautify"; - rev = "e1b45321d8c11b404b12c8e55afe55eaa7c84ee9"; - sha256 = "03b5pj58m00lkazyvvasa4qndrkh2kjzv2y7qhxljfg5mngyg3zg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify"; - sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/web-beautify"; - license = lib.licenses.free; - }; - }) {}; - web-completion-data = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-completion-data"; - ename = "web-completion-data"; - version = "20160318.148"; - src = fetchFromGitHub { - owner = "osv"; - repo = "web-completion-data"; - rev = "c272c94e8a71b779c29653a532f619acad433a4f"; - sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/604f155a3ce7e5375dcf8b9c149c5af403ef48bd/recipes/web-completion-data"; - sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/web-completion-data"; - license = lib.licenses.free; - }; - }) {}; - web-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-mode"; - ename = "web-mode"; - version = "20190521.2310"; - src = fetchFromGitHub { - owner = "fxbois"; - repo = "web-mode"; - rev = "a67d387f41d45a1bfad694fa06a4fcd504e6e357"; - sha256 = "1drdp51dz1jin7ycsr4nlx2nxy7h3wk67pia4ydaxsk45k3k6zpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode"; - sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/web-mode"; - license = lib.licenses.free; - }; - }) {}; - web-mode-edit-element = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-mode }: - melpaBuild { - pname = "web-mode-edit-element"; - ename = "web-mode-edit-element"; - version = "20190531.152"; - src = fetchFromGitHub { - owner = "jtkDvlp"; - repo = "web-mode-edit-element"; - rev = "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa"; - sha256 = "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web-mode-edit-element"; - sha256 = "1kcycsjjv1bzfn93aq3cdh5d913izrr8cdxmknbyriyipsqryh3l"; - name = "recipe"; - }; - packageRequires = [ emacs web-mode ]; - meta = { - homepage = "https://melpa.org/#/web-mode-edit-element"; - license = lib.licenses.free; - }; - }) {}; - web-narrow-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-mode }: - melpaBuild { - pname = "web-narrow-mode"; - ename = "web-narrow-mode"; - version = "20170406.1910"; - src = fetchFromGitHub { - owner = "Qquanwei"; - repo = "web-narrow-mode"; - rev = "b25fae07844875d5b62d14b98442c88817b7e139"; - sha256 = "1yk390g41yxh84lsxnbf72x67yik6hqv20magxlazrfrwngvk0cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a910da9e0566344d4b195423b5f270cb2bdcc1e5/recipes/web-narrow-mode"; - sha256 = "09k3xp4l235wrffl7a4026wpikxhp10fh3182dlp4pa4wr2vzipi"; - name = "recipe"; - }; - packageRequires = [ web-mode ]; - meta = { - homepage = "https://melpa.org/#/web-narrow-mode"; - license = lib.licenses.free; - }; - }) {}; - web-search = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-search"; - ename = "web-search"; - version = "20181027.2225"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "web-search.el"; - rev = "24f5b49774f4fb60c903c2b65598590d1c6456d9"; - sha256 = "1f7ysgc9gnfrlhb7y19ynfl5h1ckbqrm8hqly3kr2n2cvlzj9g2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/503ef2042cc14dbe53e7121b8d0b5ccbdf6c882b/recipes/web-search"; - sha256 = "08iflbp6rmsxsy2lahsdjj9ki70ixqhsas0vxzawz5pi5vk2x9gj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/web-search"; - license = lib.licenses.free; - }; - }) {}; - web-server = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-server"; - ename = "web-server"; - version = "20190309.1813"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "emacs-web-server"; - rev = "cafa5b7582c57252a0884b2c33da9b18fb678713"; - sha256 = "1c0lfqmbs5hvz3fh3c8wgp6ipwmxrwx9xj264bjpj3phixd5419y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70e724b4e6c76d0299d5ea8d2211f48c1c611afe/recipes/web-server"; - sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/web-server"; - license = lib.licenses.free; - }; - }) {}; - webkit-color-picker = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe }: - melpaBuild { - pname = "webkit-color-picker"; - ename = "webkit-color-picker"; - version = "20180325.36"; - src = fetchFromGitHub { - owner = "osener"; - repo = "emacs-webkit-color-picker"; - rev = "765cac80144cad4bc0bf59025ea0199f0486f737"; - sha256 = "0a6nirdn1l7cymjycbns38ja9an1z4l5lwjk5h428aly3pmkvdqj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af9d2e39385c6833eff6b7c7e5a039238563c00f/recipes/webkit-color-picker"; - sha256 = "1i9244zghabyavxhz86d22fn40qspzdn2sjql8pl3mm8ks7a49a3"; - name = "recipe"; - }; - 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"; - ename = "weblogger"; - version = "20110926.918"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "weblogger-el"; - rev = "40cfbfc69be6a619173804441db2f407e3fa1731"; - sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8ccb10a5d1f4db3b20f96dee3c14ee64f4674e2/recipes/weblogger"; - sha256 = "0k0l715lnqb0a4hlkfjkyhr8i1jaml8z2xzhal7ryhjgvf8xinvs"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/weblogger"; - license = lib.licenses.free; - }; - }) {}; - webpaste = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "webpaste"; - ename = "webpaste"; - version = "20190310.348"; - src = fetchFromGitHub { - owner = "etu"; - repo = "webpaste.el"; - rev = "7345c5f62d5cff4d84379eaf5dc8b2bb8bc4f99c"; - sha256 = "00dfp2dyj9cvcvvpsh4g61b37477c8ahfj3xig2x2kgfz15lk89n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13847d91c1780783e516943adee8a3530c757e17/recipes/webpaste"; - sha256 = "1pqqapslb5wxfrf1ykrj5jxcl43pix17lawgdqrqkv5fyxbhmfpm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/webpaste"; - license = lib.licenses.free; - }; - }) {}; - websocket = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "websocket"; - ename = "websocket"; - version = "20190407.1852"; - src = fetchFromGitHub { - owner = "ahyatt"; - repo = "emacs-websocket"; - rev = "a5a3ddb5cad82f4259c07b7a49c95cdfe5fe6daa"; - sha256 = "1zlazr9imm9zlf48mgrag1yaa1s224v42rc1624zvdy58n7la1sx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/websocket"; - sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/websocket"; - license = lib.licenses.free; - }; - }) {}; - wedge-ws = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wedge-ws"; - ename = "wedge-ws"; - version = "20140714.1449"; - src = fetchFromGitHub { - owner = "aes"; - repo = "wedge-ws"; - rev = "4669115f02d9c6fee067cc5369bb38c0f9db88b2"; - sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42fb11fe717b5fe73f4a6fa4e199ef4c58a85eb2/recipes/wedge-ws"; - sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wedge-ws"; - license = lib.licenses.free; - }; - }) {}; - weechat = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , tracking }: - melpaBuild { - pname = "weechat"; - ename = "weechat"; - version = "20190520.851"; - src = fetchFromGitHub { - owner = "the-kenny"; - repo = "weechat.el"; - rev = "d9a13306ea8be27367f92e9202d116a88fa1f441"; - sha256 = "1z9lav09jsmhshlk0xnbp21y9apzhd9zv08h88sdg942v0fn2fid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e38255a31a4ca31541c97a506a55f82e2670abe6/recipes/weechat"; - sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s tracking ]; - meta = { - homepage = "https://melpa.org/#/weechat"; - license = lib.licenses.free; - }; - }) {}; - weechat-alert = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , weechat }: - melpaBuild { - pname = "weechat-alert"; - ename = "weechat-alert"; - version = "20160416.548"; - src = fetchFromGitHub { - owner = "Kungi"; - repo = "weechat-alert"; - rev = "a8fd557c8f335322f132c1c6c08b6741d6394e2e"; - sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a69ad48eabb166f66e6eb5c5cdc75aefc8b989f/recipes/weechat-alert"; - sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib weechat ]; - meta = { - homepage = "https://melpa.org/#/weechat-alert"; - license = lib.licenses.free; - }; - }) {}; - weibo = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "weibo"; - ename = "weibo"; - version = "20150307.1442"; - src = fetchFromGitHub { - owner = "austin-----"; - repo = "weibo.emacs"; - rev = "a8abb50b7602fe15fe2bc6400ac29780e956b390"; - sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/21f4c1b34f86331ecbcdbdc39858a191232902f2/recipes/weibo"; - sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/weibo"; - license = lib.licenses.free; - }; - }) {}; - wgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wgrep"; - ename = "wgrep"; - version = "20181228.1640"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "b22834e4597b5dfe06621d23cf93351d790df930"; - sha256 = "07p0wwigc99hx09n5fkzf5yxkr7z19rqy8wgxk5m1pyp1i75wiq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep"; - sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wgrep"; - license = lib.licenses.free; - }; - }) {}; - wgrep-ack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-ack"; - ename = "wgrep-ack"; - version = "20141012.311"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "9448a9d597bd089ae61e58add2c5dbecb0aa2b8f"; - sha256 = "0x27h0ccq93avsmb8gim43zklbsb4ghfw30a7hjvz0ilfx02gdca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-ack"; - sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-ack"; - license = lib.licenses.free; - }; - }) {}; - wgrep-ag = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-ag"; - ename = "wgrep-ag"; - version = "20181228.1724"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "36c5e8d0e03bc16b19d30a603730065f74b5b767"; - sha256 = "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c50b704343c4cac5e2a62a67e284ba6d8e15f8a/recipes/wgrep-ag"; - sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-ag"; - license = lib.licenses.free; - }; - }) {}; - wgrep-helm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-helm"; - ename = "wgrep-helm"; - version = "20190401.1456"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "379afd89ebd76f63842c8589127d66096a8bb595"; - sha256 = "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-helm"; - sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-helm"; - license = lib.licenses.free; - }; - }) {}; - wgrep-pt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-pt"; - ename = "wgrep-pt"; - version = "20140510.1531"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "cd8df1be69257da2e48dc3eae4badc674468b61c"; - sha256 = "1df7lal4c0zsinrfjp4qv2k3xi1kbl66d36in47pmiam1kkqs9fs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c39faef3b9c2e1867cd48341d9878b714dbed4eb/recipes/wgrep-pt"; - sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-pt"; - license = lib.licenses.free; - }; - }) {}; - what-the-commit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "what-the-commit"; - ename = "what-the-commit"; - version = "20150901.616"; - src = fetchFromGitHub { - owner = "danielbarbarito"; - repo = "what-the-commit.el"; - rev = "42604410cfd5be715c8aa730aef4673773454e8b"; - sha256 = "00fnjjlmc64bqjzmyprscfqr8fa1jbzfj6xjvm19an2qhnzh126q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d22725c2fce506c659bd33aabca182be0048905/recipes/what-the-commit"; - sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/what-the-commit"; - license = lib.licenses.free; - }; - }) {}; - which-key = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "which-key"; - ename = "which-key"; - version = "20190528.1814"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-which-key"; - rev = "ba03e7e5bcbe3f7d95be2cfddd71454151bb98c8"; - sha256 = "1rwnvkwa7cvp7rbsik8xlv6f01s8x7f3bcrxfbi9q3ylr1c145fl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key"; - sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/which-key"; - license = lib.licenses.free; - }; - }) {}; - which-key-posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe - , which-key }: - melpaBuild { - pname = "which-key-posframe"; - ename = "which-key-posframe"; - version = "20190427.403"; - src = fetchFromGitHub { - owner = "yanghaoxie"; - repo = "which-key-posframe"; - rev = "e7f28608c7fc9507e407c6b840dff09062df533a"; - sha256 = "0954llm57gfy3lvq8s32mqdswbv20na0v28gi61kw7023f1wg7ri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/56ab10dc99ea4f5b207f9874124aff414d859a17/recipes/which-key-posframe"; - sha256 = "1vpdni3ascz2zw6k1xrnw2vqnq8p30mc7d8v81qdbjb58q27l8ll"; - name = "recipe"; - }; - packageRequires = [ emacs posframe which-key ]; - meta = { - homepage = "https://melpa.org/#/which-key-posframe"; - license = lib.licenses.free; - }; - }) {}; - whitaker = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whitaker"; - ename = "whitaker"; - version = "20150814.422"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "whitaker"; - rev = "eaf26ea647b729ca705b73ea70312d5ffdf89448"; - sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b5d717e2eaf35ce33b26be049a39f2f75a7de72/recipes/whitaker"; - sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/whitaker"; - license = lib.licenses.free; - }; - }) {}; - white-sand-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "white-sand-theme"; - ename = "white-sand-theme"; - version = "20151117.848"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "white-sand-theme"; - rev = "97621edd69267dd143760d94393db2c2558c9ea4"; - sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b124575c4a4f783b6726d0526b83e67b4ad65cc9/recipes/white-sand-theme"; - sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/white-sand-theme"; - license = lib.licenses.free; - }; - }) {}; - white-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "white-theme"; - ename = "white-theme"; - version = "20160917.1043"; - src = fetchFromGitHub { - owner = "anler"; - repo = "white-theme.el"; - rev = "e9e6d5b9d43da6eb15e86f5fbc8b1ba83abe8c78"; - sha256 = "1yqfq1gzkrw79myvj16nfi30ynfyz8yrpbzjcj8nhsc5rfrrmym2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/white-theme"; - sha256 = "04l5hjhd465w9clrqc4dr8bx8hj4i9dx4nfr9hympgv101bpgy4x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/white-theme"; - license = lib.licenses.free; - }; - }) {}; - whitespace-cleanup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whitespace-cleanup-mode"; - ename = "whitespace-cleanup-mode"; - version = "20190106.1222"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "whitespace-cleanup-mode"; - rev = "72427144b054b0238a86e1348c45d986b8830d9d"; - sha256 = "1zlk534jbwrsabcg3kqlzk4h4hwya60lh6q2n1v4yn4rpf5ghsag"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b461cfe450d7ce6bd0c14be3460cacffc1a32e6f/recipes/whitespace-cleanup-mode"; - sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/whitespace-cleanup-mode"; - license = lib.licenses.free; - }; - }) {}; - whizzml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whizzml-mode"; - ename = "whizzml-mode"; - version = "20190512.1856"; - src = fetchFromGitHub { - owner = "whizzml"; - repo = "whizzml-mode"; - rev = "cb476ed0d6be52e0b8c38f5b643cbbfceda1b4ca"; - sha256 = "1iklmzqb7200xniygd3gj3pa8d18z3pnabslsvd0k4qqvyvwnlxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11f26b15c326c3b8541bac510579b32493916042/recipes/whizzml-mode"; - sha256 = "0gas9xfpz5v9fbhjxhd4msihwz9w4a05l5icsaclxvh06f92wcyk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/whizzml-mode"; - license = lib.licenses.free; - }; - }) {}; - whois = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whois"; - ename = "whois"; - version = "20190529.854"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-whois"; - rev = "b4cdab4d25225c6e834727a7d85cdb0d493da152"; - sha256 = "058wym1iwgz5n5yd508xdc05ncdyqbs53a5c9mq0s6gs06h5xfyw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/719895d3db6daae5df00d4823a62fcc0f7bf2d9d/recipes/whois"; - sha256 = "061jbk97ma21id0vpkvxdslfvs2x0wqw8c32mwhdcqjqjc74k9km"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/whois"; - license = lib.licenses.free; - }; - }) {}; - whole-line-or-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whole-line-or-region"; - ename = "whole-line-or-region"; - version = "20190410.1915"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "whole-line-or-region"; - rev = "15f17488f98868f1628a3f9d91a812b1f89bc73a"; - sha256 = "18qzmpw41bqw2ymynya3hgn9skj13r5s6d2b14r78hvmv4bc9h9r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/whole-line-or-region"; - sha256 = "0zz9i1jxayw2p6ggfxjvhb1mc3ly9iy4jvk23ycndz9lnnzkch0y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/whole-line-or-region"; - license = lib.licenses.free; - }; - }) {}; - wide-column = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wide-column"; - ename = "wide-column"; - version = "20170925.913"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "wide-column"; - rev = "ce9ef4675485a7bea381077866368ef875226b10"; - sha256 = "0qh8hy4jl59bfg4323a8h4q4a78gn4hsglfk2h23hqssbv4mhsp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d29def44ae42dc4b60c1d254a57572bd09faf51/recipes/wide-column"; - sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wide-column"; - license = lib.licenses.free; - }; - }) {}; - widget-mvc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "widget-mvc"; - ename = "widget-mvc"; - version = "20150101.2006"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-widget-mvc"; - rev = "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63"; - sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76d3c38e205076a22628f490d8e8ddd80d091eab/recipes/widget-mvc"; - sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/widget-mvc"; - license = lib.licenses.free; - }; - }) {}; - widgetjs = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , js2-refactor - , lib - , makey - , melpaBuild - , s }: - melpaBuild { - pname = "widgetjs"; - ename = "widgetjs"; - version = "20160719.804"; - src = fetchFromGitHub { - owner = "foretagsplatsen"; - repo = "emacs-js"; - rev = "a1e91bdcecdea50c80f5ff87f7a4f7a2c249713e"; - sha256 = "1gr430rf8k282ra587qnbgwvccg47ar1n09m6czig5splhnf0086"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78d7a15152f45a193384741fa00d0649c4bba91e/recipes/widgetjs"; - sha256 = "0y5h1ag2m7w47l4nx4d18yz3fvd411rm1h5w7zz4xh67bnx4zyy1"; - name = "recipe"; - }; - packageRequires = [ js2-mode js2-refactor makey s ]; - meta = { - homepage = "https://melpa.org/#/widgetjs"; - license = lib.licenses.free; - }; - }) {}; - wiki-nav = callPackage ({ button-lock - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nav-flash }: - melpaBuild { - pname = "wiki-nav"; - ename = "wiki-nav"; - version = "20150223.554"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "button-lock"; - rev = "f9082feb329432fcf2ac49a95e64bed9fda24d58"; - sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/wiki-nav"; - sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; - name = "recipe"; - }; - packageRequires = [ button-lock nav-flash ]; - meta = { - homepage = "https://melpa.org/#/wiki-nav"; - license = lib.licenses.free; - }; - }) {}; - wiki-summary = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wiki-summary"; - ename = "wiki-summary"; - version = "20181010.1124"; - src = fetchFromGitHub { - owner = "jozefg"; - repo = "wiki-summary.el"; - rev = "fa41ab6e50b3b80e54148af9d4bac18fd0405000"; - sha256 = "0qcnqwiylkkb7132bzra49k7jg8kq13jif8096vpg4xzpcq5lpj2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31877f182ab82fd5bb73ec4ddd8526a032d9edf9/recipes/wiki-summary"; - sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wiki-summary"; - license = lib.licenses.free; - }; - }) {}; - wilt = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "wilt"; - ename = "wilt"; - version = "20180220.54"; - src = fetchFromGitHub { - owner = "sixty-north"; - repo = "emacs-wilt"; - rev = "04dbe37fa35d0b24c791421785d2c97a8cbfe2cc"; - sha256 = "197kqp22pyy1in2rq063mahvrf00vrfvgnfkqp0zy7hpkhiiqvim"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eea4f2ca8b4f9ea93cc02151fdda6cfee5b68b70/recipes/wilt"; - sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/wilt"; - license = lib.licenses.free; - }; - }) {}; - win-switch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "win-switch"; - ename = "win-switch"; - version = "20161009.927"; - src = fetchFromGitHub { - owner = "genovese"; - repo = "win-switch"; - rev = "954eb5e4c5737f0c06368c42a7f1c3dd374d782f"; - sha256 = "1xpx4sc1g1w8w0yc39k2dys83m8skrpvi745bfrzdl47jngrf54h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/win-switch"; - sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/win-switch"; - license = lib.licenses.free; - }; - }) {}; - windata = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "windata"; - ename = "windata"; - version = "20090830.340"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "windata"; - rev = "a723fc446ceaec23d5f29ecc8245d94c99d91625"; - sha256 = "0y8yw5hazsir5kjskrh4mr63mmz87dc7yy5ddmlwpmn03wanqpha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84f836338818946a6bb31d35d6ae959571128ed5/recipes/windata"; - sha256 = "1mah2vy46pxwjd6c6ac14d2qfcixs2yrgwmzmisnfgsvprdlxryb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/windata"; - license = lib.licenses.free; - }; - }) {}; - window-end-visible = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-end-visible"; - ename = "window-end-visible"; - version = "20140508.1341"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "window-end-visible"; - rev = "f0ed55aa5f7875634fb4c8b6fbaa93633bc57d85"; - sha256 = "0xx2hmfwpdd1nxjds45d4jlfa6p4lcjwy2ryjs4qiwvrc2d03xbq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/window-end-visible"; - sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-end-visible"; - license = lib.licenses.free; - }; - }) {}; - window-jump = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-jump"; - ename = "window-jump"; - version = "20170809.1508"; - src = fetchFromGitHub { - owner = "chumpage"; - repo = "chumpy-windows"; - rev = "6bdb51e9a346907d60a9625f6180bddd06be6674"; - sha256 = "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d44fc32e12f00bbaa799b4054e9ff0fc0d3bfbfb/recipes/window-jump"; - sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-jump"; - license = lib.licenses.free; - }; - }) {}; - window-layout = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-layout"; - ename = "window-layout"; - version = "20170214.1633"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-window-layout"; - rev = "cd2e4f967b610c2bbef53182829e47250d027056"; - sha256 = "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/window-layout"; - sha256 = "061mvxcj4mg2pmkln7nn6gyscs08aid4cfc6xck0x5gzr1snr639"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-layout"; - license = lib.licenses.free; - }; - }) {}; - window-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-number"; - ename = "window-number"; - version = "20170731.1851"; - src = fetchFromGitHub { - owner = "nikolas"; - repo = "window-number"; - rev = "d41722de646ffeb3f70d26e4a86a5a1ba5c6be87"; - sha256 = "1ifs7zp8c5m9da5dz0y4cq7pgqgdkz63v00ib07xdycnfjp4w17i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74523af6e22ebae2f5fe7c4da4e8af8fac5fa074/recipes/window-number"; - sha256 = "1ivd701h6q48i263fxxi44haacaz8cjg562ry8dxd10rbhhsjsq0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-number"; - license = lib.licenses.free; - }; - }) {}; - window-numbering = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-numbering"; - ename = "window-numbering"; - version = "20160809.1110"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "window-numbering.el"; - rev = "10809b3993a97c7b544240bf5d7ce9b1110a1b89"; - sha256 = "1nlgzrjg5k7wyaka8ziqyv683vsc0f2lw5kr5xajcqlamwbzs7vi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce1dc80f69894736b276885e4ec3ce571a8612c9/recipes/window-numbering"; - sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-numbering"; - license = lib.licenses.free; - }; - }) {}; - window-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , imenu-list - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "window-purpose"; - ename = "window-purpose"; - version = "20190405.401"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "emacs-purpose"; - rev = "fb649bb07de63a70ecdace464eadcaafe01e1995"; - sha256 = "1x8njfpb21siqh4b931557qdj4qxvzcj995dm91l6c3k8yh76hy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5813120ab674f6db7d0a486433d8faa6cfec1727/recipes/window-purpose"; - sha256 = "1y70jrba3gf9fyf2qdihfshbsblzb88yv9fkcswdzrpq5kmgwp84"; - name = "recipe"; - }; - packageRequires = [ emacs imenu-list let-alist ]; - meta = { - homepage = "https://melpa.org/#/window-purpose"; - license = lib.licenses.free; - }; - }) {}; - windsize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "windsize"; - ename = "windsize"; - version = "20181029.1557"; - src = fetchFromGitHub { - owner = "grammati"; - repo = "windsize"; - rev = "62c2846bbe95b0a73e996c75e4a644d05f57aaaa"; - sha256 = "13kfrmv3vmkfanxv9nym5v43hx5p7xkgqmx65zcxh4gcbaham1mi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/windsize"; - sha256 = "1fzqf86d7pimnc87xdgvpv4hnv7j6ngmk1sjvazj6726xygswkyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/windsize"; - license = lib.licenses.free; - }; - }) {}; - windwow = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "windwow"; - ename = "windwow"; - version = "20170815.1848"; - src = fetchFromGitHub { - owner = "vijumathew"; - repo = "windwow"; - rev = "77bad26f651744b68d31b389389147014d250f23"; - sha256 = "0vbmmf8wm76k389g5ncs0grwlpwp3glpwvhdi5dfxaqcp2phaaad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12aba18872021ce0affa96c46a17353c7d073ca2/recipes/windwow"; - sha256 = "0cbkp98pwzj484akdbidvdz4kqxv6ix6paimpxnag6fffciq245h"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/windwow"; - license = lib.licenses.free; - }; - }) {}; - winnow = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winnow"; - ename = "winnow"; - version = "20170903.506"; - src = fetchFromGitHub { - owner = "dgtized"; - repo = "winnow.el"; - rev = "9ea0ac309d6a7a4aedb2647a13e9106a3b59c46d"; - sha256 = "0zsnd03mydzhskpcvffmlwbsi28dq0akz1nph7idn4zqca8sx2ia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58891c2057ec834f999e3bf82af15e0617a4d4cf/recipes/winnow"; - sha256 = "07kwjdmvzgvg7gc53dv10jfi212m0pimzrhiga38lrqrnrw631m0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/winnow"; - license = lib.licenses.free; - }; - }) {}; - winpoint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winpoint"; - ename = "winpoint"; - version = "20131023.1013"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "winpoint"; - rev = "b32ab55f7b8797b9b042a8a89d89d6f79bc356a9"; - sha256 = "0qbsmqg4mh20k2lf7j92mc8p8qkvjc1a58klhqivpdl60z906z2a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/665e24e490618c7caeae4a9d17d1f614dc0a2617/recipes/winpoint"; - sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/winpoint"; - license = lib.licenses.free; - }; - }) {}; - winring = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winring"; - ename = "winring"; - version = "20180529.1718"; - src = fetchFromGitLab { - owner = "warsaw"; - repo = "winring"; - rev = "f2d072bd446b73e93b127523f19ea82b99b9267f"; - sha256 = "1j0g52panhx91hqw5glnlv5vnnpnjyx49xc8xif8mjf0m27723fv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2476a28c33502f908b7161c5a9c63c86b8d7b57d/recipes/winring"; - sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/winring"; - license = lib.licenses.free; - }; - }) {}; - winum = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winum"; - ename = "winum"; - version = "20181119.905"; - src = fetchFromGitHub { - owner = "deb0ch"; - repo = "emacs-winum"; - rev = "efcb14fd306afbc738666e6b2e5a8a1bb5904392"; - sha256 = "0v1qmw3svydk7dlqbcymy1g1bygkfpb2h4b97zdp12xvd8mww9ny"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1caa7a54a910a44322fdee300e8cce6ddcde071/recipes/winum"; - sha256 = "0yyvjmvqif6glh9ri6049nxcmgib9mxdhy6816kjhsaqr570f9pw"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/winum"; - license = lib.licenses.free; - }; - }) {}; - wisp-mode = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wisp-mode"; - ename = "wisp-mode"; - version = "20180520.58"; - src = fetchhg { - url = "https://bitbucket.com/ArneBab/wisp"; - rev = "62d6a170aefd"; - sha256 = "1hz5f70s6zi1mnz8si2zwj8n15jfqgqn5ag06h3x50w53hvzk41p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b7972602399f9df9139cff177e38653bb0f43ed/recipes/wisp-mode"; - sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wisp-mode"; - license = lib.licenses.free; - }; - }) {}; - wispjs-mode = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wispjs-mode"; - ename = "wispjs-mode"; - version = "20170720.1219"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "wispjs-mode"; - rev = "60f9f5fd9d1556e2d008939f67eb1b1d0f325fa8"; - sha256 = "1hhd8ixb2wr06vrd1kw0cd5jh08zm86h2clbvzv9wmqpawwxfm5f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a628330ee8deeab2bd5c2d4b61b33f119c4549d8/recipes/wispjs-mode"; - sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; - name = "recipe"; - }; - packageRequires = [ clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/wispjs-mode"; - license = lib.licenses.free; - }; - }) {}; - with-editor = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "with-editor"; - ename = "with-editor"; - version = "20190511.457"; - src = fetchFromGitHub { - owner = "magit"; - repo = "with-editor"; - rev = "66bec91c859f305445b766394eb25248c1172426"; - sha256 = "1z2h9casyw1b93ikq2mf9xixyvbl90zddf0s66lqfiyj2y376pq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor"; - sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/with-editor"; - license = lib.licenses.free; - }; - }) {}; - with-namespace = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild }: - melpaBuild { - pname = "with-namespace"; - ename = "with-namespace"; - version = "20130407.1122"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "with-namespace.el"; - rev = "36828a40428c8e53c117f2df830b2f7a59ddd306"; - sha256 = "0qq8ckk5w3hlm4wihhnlpn75gij62aa2nafmvin7q8i454pxbg7a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/with-namespace"; - sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i"; - name = "recipe"; - }; - packageRequires = [ dash loop ]; - meta = { - homepage = "https://melpa.org/#/with-namespace"; - license = lib.licenses.free; - }; - }) {}; - with-simulated-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "with-simulated-input"; - ename = "with-simulated-input"; - version = "20170820.2317"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "with-simulated-input"; - rev = "1012ccbec77d7d162790706c07bb23c039ccc61f"; - sha256 = "1489njq2xbsd89kh3z560vwm892zzjbs12lzk1pr0fajqvnm62r5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4ddf16e19f5018106a423327ddc7e7499cf9248/recipes/with-simulated-input"; - sha256 = "0113la76nbp18vaffsd7w7wcw5k2sqwgnjq1gslf4khdfqghrkwk"; - name = "recipe"; - }; - packageRequires = [ emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/with-simulated-input"; - license = lib.licenses.free; - }; - }) {}; - with-venv = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "with-venv"; - ename = "with-venv"; - version = "20190515.2306"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "with-venv-el"; - rev = "283b35e33f012657ef23e154b6bdf362377d82e6"; - sha256 = "1s0vnsvhlcx1z5sbiyhk4iizakx4cbvjxwygdamrl8s0bnigqhfd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/555a2e49f18fbae59913459466babf8d55bd2151/recipes/with-venv"; - sha256 = "090jird410wn2w9pwr2d9pjw5xghcdxc4l578zay2akygg3c6blm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/with-venv"; - license = lib.licenses.free; - }; - }) {}; - wn-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wn-mode"; - ename = "wn-mode"; - version = "20151109.2152"; - src = fetchFromGitHub { - owner = "luismbo"; - repo = "wn-mode"; - rev = "f05c3151523e529af5a0a3fa8c948b61fb369f6e"; - sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6213c01e6954985daff8cd1a5a3ef004431f0477/recipes/wn-mode"; - sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wn-mode"; - license = lib.licenses.free; - }; - }) {}; - wolfram = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wolfram"; - ename = "wolfram"; - version = "20170122.2356"; - src = fetchFromGitHub { - owner = "hsjunnesson"; - repo = "wolfram.el"; - rev = "6b5dceae3fd6cdb4d7562510deeafa02c93c010b"; - sha256 = "1ijyjw2793i7n00i30ma8lw4fzi9w63m6k0xgjx6j78r5y7pfj2g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/785b5b1ec73e6376f2f2bb405707a1078398fa3a/recipes/wolfram"; - sha256 = "02xp1916v9rydh0586jkx71v256qdg63f87s3m0agc2znnrni9h4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wolfram"; - license = lib.licenses.free; - }; - }) {}; - wolfram-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wolfram-mode"; - ename = "wolfram-mode"; - version = "20180306.1613"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "wolfram-mode"; - rev = "be680190cac6ccf579dbce107deaae495928d1b3"; - sha256 = "1cvdw28gvhbr9l65xkv8ld12rb0pcf53jd55gns2b0abz1lg1jc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/40ded2302e413e233d867caa4776c54a778b8b99/recipes/wolfram-mode"; - sha256 = "0rc39vvpyhpn0m52i4hs23j6avqfddmrkhjqg339apfq7z35fpli"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wolfram-mode"; - license = lib.licenses.free; - }; - }) {}; - wonderland = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi }: - melpaBuild { - pname = "wonderland"; - ename = "wonderland"; - version = "20130912.1819"; - src = fetchFromGitHub { - owner = "kurisuwhyte"; - repo = "emacs-wonderland"; - rev = "28cf6b37000c395ece9519db53147fb826a42bc4"; - sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08/recipes/wonderland"; - sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs multi ]; - meta = { - homepage = "https://melpa.org/#/wonderland"; - license = lib.licenses.free; - }; - }) {}; - wordgen = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wordgen"; - ename = "wordgen"; - version = "20170803.1120"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "wordgen.el"; - rev = "aacad928ae99a953e034a831dfd0ebdf7d52ac1d"; - sha256 = "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5cfdc64a9aa79575dad8057c4cd747d2cdd460aa/recipes/wordgen"; - sha256 = "0vlrplm3pmpwwa8p8j6lck97b875gzzm7vxxc8l9l18vs237cz1m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/wordgen"; - license = lib.licenses.free; - }; - }) {}; - wordnut = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wordnut"; - ename = "wordnut"; - version = "20180312.2143"; - src = fetchFromGitHub { - owner = "gromnitsky"; - repo = "wordnut"; - rev = "feac531404041855312c1a046bde7ea18c674915"; - sha256 = "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/321c5e171eb4da85980968ac3c8ef4300101c0b1/recipes/wordnut"; - sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wordnut"; - license = lib.licenses.free; - }; - }) {}; - wordsmith-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wordsmith-mode"; - ename = "wordsmith-mode"; - version = "20171025.730"; - src = fetchFromGitHub { - owner = "istib"; - repo = "wordsmith-mode"; - rev = "589a97412138145bea70e0450eeddeb7f138d538"; - sha256 = "1zm4grysjpynibldvic75awhcmmnjmlkkvslw8bvirmi58qwvwzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b5fda506e5b388cd6824d433b89032ed46858dc/recipes/wordsmith-mode"; - sha256 = "0s6b6dfqn31jdcgs2mlmvwgpr5a4zs4xi8m002ly11c6sn035xb1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wordsmith-mode"; - license = lib.licenses.free; - }; - }) {}; - worf = callPackage ({ ace-link - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , swiper - , zoutline }: - melpaBuild { - pname = "worf"; - ename = "worf"; - version = "20190519.948"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "worf"; - rev = "00d191b347397bd7ad1f5b95cfe39fa3fce9fc91"; - sha256 = "0mp5f6hp8pqckfsi4bxcg09kcfndvsbc2nnqbgdw87bidwlzhzmy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf"; - sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; - name = "recipe"; - }; - packageRequires = [ ace-link hydra swiper zoutline ]; - meta = { - homepage = "https://melpa.org/#/worf"; - license = lib.licenses.free; - }; - }) {}; - workgroups = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "workgroups"; - ename = "workgroups"; - version = "20110726.941"; - src = fetchFromGitHub { - owner = "tlh"; - repo = "workgroups.el"; - rev = "9572b3492ee09054dc329f64ed846c962b395e39"; - sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/585d3f522920b41845294af50b1da99dff256f8d/recipes/workgroups"; - sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/workgroups"; - license = lib.licenses.free; - }; - }) {}; - workgroups2 = callPackage ({ anaphora - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "workgroups2"; - ename = "workgroups2"; - version = "20141102.1122"; - src = fetchFromGitHub { - owner = "pashinin"; - repo = "workgroups2"; - rev = "928d509157ec8a4a2e343b6115dff034c3243a7a"; - sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f9cfb740cce05a6805d9a047e4c1380305da4df/recipes/workgroups2"; - sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib dash f ]; - meta = { - homepage = "https://melpa.org/#/workgroups2"; - license = lib.licenses.free; - }; - }) {}; - world-time-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "world-time-mode"; - ename = "world-time-mode"; - version = "20140627.107"; - src = fetchFromGitHub { - owner = "nicferrier"; - repo = "emacs-world-time-mode"; - rev = "ce7a3b45c87eb24cfe61eee453175d64f741d7cc"; - sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1429650400baf2b1523b5556eaf6a2178d515d4/recipes/world-time-mode"; - sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/world-time-mode"; - license = lib.licenses.free; - }; - }) {}; - wotd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "wotd"; - ename = "wotd"; - version = "20170328.1248"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "emacs-word-of-the-day"; - rev = "d2937a3d91e014f8028a1f33d21c18cc0b065a64"; - sha256 = "0nwq5ymj9kx1fx3kfc789nkd80gwzljwmk7xxzzsrdrv47gm047m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a52690a9bae634825bdfb5b6b17e5faccb93e13/recipes/wotd"; - sha256 = "145knl4n35kpqqzqkz1vd18d619nw011d93f8qp5h82xm92p3sb5"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/wotd"; - license = lib.licenses.free; - }; - }) {}; - wrap-region = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wrap-region"; - ename = "wrap-region"; - version = "20140116.2320"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "wrap-region.el"; - rev = "5a910ad23ebb0649e644bf62ad042587341da5da"; - sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/wrap-region"; - sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/wrap-region"; - license = lib.licenses.free; - }; - }) {}; - writefreely = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , ox-gfm - , request }: - melpaBuild { - pname = "writefreely"; - ename = "writefreely"; - version = "20190326.835"; - src = fetchFromGitHub { - owner = "dangom"; - repo = "writefreely.el"; - rev = "61296a15f31aef92972ffa6865edadaf4f4127ca"; - sha256 = "19ksdcnm0rm1imzysl9lb3nx5ysnfyx07krqghxs8kbd9c5zvlyc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55ea1ad03ce5b5178435b8042be383065795ee71/recipes/writefreely"; - sha256 = "1lvar4kmzq3x7nmidklcryqscb5xzvkzbyn59a8ns0bml5sfrqyj"; - name = "recipe"; - }; - packageRequires = [ emacs org ox-gfm request ]; - meta = { - homepage = "https://melpa.org/#/writefreely"; - license = lib.licenses.free; - }; - }) {}; - writegood-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "writegood-mode"; - ename = "writegood-mode"; - version = "20180525.643"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "writegood-mode"; - rev = "b71757ec337e226909fb0422f0224e31acc71733"; - sha256 = "038gliy6l931r02bf2dbhmp188sgk1rq46ngg9nhf5q5rkf3pi8p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75c5a4304999fc3f5a02235a1c2c904238d2ce4f/recipes/writegood-mode"; - sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/writegood-mode"; - license = lib.licenses.free; - }; - }) {}; - writeroom-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , visual-fill-column }: - melpaBuild { - pname = "writeroom-mode"; - ename = "writeroom-mode"; - version = "20190406.1435"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "writeroom-mode"; - rev = "ebe522ba5a0367cf82ed03ffeb63fe597b84f4a1"; - sha256 = "0w2lmkkij79khjpswk2zxj371fa9ws94j9dqzrgzf37lnimgnsff"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/writeroom-mode"; - sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; - name = "recipe"; - }; - packageRequires = [ emacs visual-fill-column ]; - meta = { - homepage = "https://melpa.org/#/writeroom-mode"; - license = lib.licenses.free; - }; - }) {}; - ws-butler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ws-butler"; - ename = "ws-butler"; - version = "20170111.1534"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "ws-butler"; - rev = "323b651dd70ee40a25accc940b8f80c3a3185205"; - sha256 = "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ws-butler"; - sha256 = "1k5nhj37r51i0czrlafra53wir73p0nbq83jjccqmw4p4xk6axl3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ws-butler"; - license = lib.licenses.free; - }; - }) {}; - wsd-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wsd-mode"; - ename = "wsd-mode"; - version = "20180807.430"; - src = fetchFromGitHub { - owner = "josteink"; - repo = "wsd-mode"; - rev = "0583df8efb742c90dc56df00f9714e13512cf6d9"; - sha256 = "0f90qm5zx7lkyvaz519fln4hijfyammc675105f19492h1bc1bva"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/wsd-mode"; - sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wsd-mode"; - license = lib.licenses.free; - }; - }) {}; - wttrin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "wttrin"; - ename = "wttrin"; - version = "20170614.506"; - src = fetchFromGitHub { - owner = "bcbcarl"; - repo = "emacs-wttrin"; - rev = "df5427ce2a5ad4dab652dbb1c4a1834d7ddc2abc"; - sha256 = "1ai655f10iayb4vw0ass2j3x83f4vsv90326mnywkzfl3sxd432z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b2b6876562f1fadd4af1ea9b279ac4dc1b21660/recipes/wttrin"; - sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; - name = "recipe"; - }; - packageRequires = [ emacs xterm-color ]; - meta = { - homepage = "https://melpa.org/#/wttrin"; - license = lib.licenses.free; - }; - }) {}; - wucuo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wucuo"; - ename = "wucuo"; - version = "20181106.1457"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "wucuo"; - rev = "4e988c101fe82f2e8c7b3710d15982fe28b8d32d"; - sha256 = "0g558miz9f4g8jlq532fs9yxj3il62zajgcjfndall2853hn54af"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/819cacef2c31d750829980f3f6c3bfb72f36bbdd/recipes/wucuo"; - sha256 = "084fcv4dkflpka9vmxmxqdl0cgmjjh9wc6axr65j1ffmqd933y4a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wucuo"; - license = lib.licenses.free; - }; - }) {}; - wwtime = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wwtime"; - ename = "wwtime"; - version = "20151122.810"; - src = fetchFromGitHub { - owner = "ndw"; - repo = "wwtime"; - rev = "d04d8fa814b5d3644efaeb28f25520ada69acbbd"; - sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28f034fbabe9de76e2e4ae44be8c8240b08f0535/recipes/wwtime"; - sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wwtime"; - license = lib.licenses.free; - }; - }) {}; - www-synonyms = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "www-synonyms"; - ename = "www-synonyms"; - version = "20170128.1451"; - src = fetchFromGitHub { - owner = "spebern"; - repo = "www-synonyms"; - rev = "7e37ea35064ff31c9945f0198a653647d408c936"; - sha256 = "0l4fvq5zdzqvlwxqgqbfx9x0aimvk4x3la9yz9gw3vvj1rwf340i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2fe69ac09c3e24af9c4e24308e57d7c3c3425096/recipes/www-synonyms"; - sha256 = "0rp5p26hd67k4dsb40hj7jv24i9wncaay88dmiqla48843j4ymgh"; - name = "recipe"; - }; - packageRequires = [ cl-lib request ]; - meta = { - homepage = "https://melpa.org/#/www-synonyms"; - license = lib.licenses.free; - }; - }) {}; - x-path-walker = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "x-path-walker"; - ename = "x-path-walker"; - version = "20160922.1135"; - src = fetchFromGitHub { - owner = "Lompik"; - repo = "x-path-walker"; - rev = "3b01dbd7a039c6c84fdf8c8ee53ba72090ee950a"; - sha256 = "1gb3lnl3gvckbakc4fy22fcvif3xdfkdaw334xmp33phjb8gjqvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/x-path-walker"; - sha256 = "1k72c0i17k31p404nkzqkw25cpcfk66bmd0vjzwg34cnwcgfhnjg"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/x-path-walker"; - license = lib.licenses.free; - }; - }) {}; - x509-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "x509-mode"; - ename = "x509-mode"; - version = "20180921.103"; - src = fetchFromGitHub { - owner = "jobbflykt"; - repo = "x509-mode"; - rev = "9eb24c8721dcad9888b70213d06d770bc2386db7"; - sha256 = "1gr099bn4qn2b5jasbs4r04pf6wqsnpf2632vzvshzm9nkz4qnhg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27145423eb4e68e006ef96868a35b99d119a3099/recipes/x509-mode"; - sha256 = "15k3pxj3a2vaf64cl2xrzzlvzbqzqc29qyfd8brhq6yc69snr0vj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/x509-mode"; - license = lib.licenses.free; - }; - }) {}; - x86-lookup = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "x86-lookup"; - ename = "x86-lookup"; - version = "20180528.935"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "x86-lookup"; - rev = "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf"; - sha256 = "19zgq7mcc3wx847xc911fibvphbsws99m2l3k54xdjp8mb5qfdzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27757b9b5673f5581e678e8cad719138db654415/recipes/x86-lookup"; - sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/x86-lookup"; - license = lib.licenses.free; - }; - }) {}; - xah-css-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-css-mode"; - ename = "xah-css-mode"; - version = "20180629.107"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-css-mode"; - rev = "9293a1a21cb7c2a6fb4ae9af0e581f30d2e45016"; - sha256 = "0wlci3z71qk3l19pkxddd4f3w9mg2si9ab4l3da381hnpi6d3iyp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-css-mode"; - sha256 = "1kkwfyf94v3ni3d4szy28v49p6f3hy8ww9mlris2vvgc726wy6hr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-css-mode"; - license = lib.licenses.free; - }; - }) {}; - xah-elisp-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-elisp-mode"; - ename = "xah-elisp-mode"; - version = "20190124.2246"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-elisp-mode"; - rev = "a09c51e450bf4b39bdc3f4063c2946baec7ae3b1"; - sha256 = "0hpdm6qns2i5zpavqq6zd7dyl9lxsxyic52jzjfisqv3gjrz8zpp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-elisp-mode"; - sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-elisp-mode"; - license = lib.licenses.free; - }; - }) {}; - xah-find = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-find"; - ename = "xah-find"; - version = "20190314.1339"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-find"; - rev = "a39f1ff9a7cf56e92b56c6f179741569b9172a48"; - sha256 = "16d2dh08dxdm06ik3sfx00filxqpy646vv1qh5kb36zs8ydzjg3z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-find"; - sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-find"; - license = lib.licenses.free; - }; - }) {}; - xah-fly-keys = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-fly-keys"; - ename = "xah-fly-keys"; - version = "20190222.2316"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-fly-keys"; - rev = "cc8b3bc26998bc29f82e87667c0d1ef90894ff66"; - sha256 = "19q20mp5gzkm0ch5wz1jxajkb8cqmknsldlzb7jsa8hzyvl2mb7m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-fly-keys"; - sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-fly-keys"; - license = lib.licenses.free; - }; - }) {}; - xah-get-thing = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-get-thing"; - ename = "xah-get-thing"; - version = "20170821.353"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-get-thing-or-selection"; - rev = "e3ef069ea9fea3a092689d45c94c6211b51d0ea4"; - sha256 = "0z9pflz99p2i7czccpzvw7bkbshfycpb6js9n8a12yhc1ndbz6z0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-get-thing"; - sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-get-thing"; - license = lib.licenses.free; - }; - }) {}; - xah-lookup = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-lookup"; - ename = "xah-lookup"; - version = "20181225.1142"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "lookup-word-on-internet"; - rev = "2cafbf3605a8f2ac4c56392c5b1f75adc3b11f24"; - sha256 = "1xr2fp6dylv098g7m7x31j7jllr87545snab3qw5r32rzsa7fswz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-lookup"; - sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-lookup"; - license = lib.licenses.free; - }; - }) {}; - xah-math-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-math-input"; - ename = "xah-math-input"; - version = "20190206.858"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-math-input"; - rev = "af787f87815b85d56c35bbe0f22e03a31c8e670d"; - sha256 = "05fqjyzz6c0nclhqc7qxs3hg99d3yxb3qjzn1wc26m6jcmm2l6zd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-math-input"; - sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-math-input"; - license = lib.licenses.free; - }; - }) {}; - xah-reformat-code = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-reformat-code"; - ename = "xah-reformat-code"; - version = "20170821.411"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-reformat-code"; - rev = "7fec8b28e46b8cc2813fac5149e3bbb56c0aa6b1"; - sha256 = "0mz47laig0p7fwwiv66x60f5jg0kh8zvjd1vg3nnn3xvk37lv2cw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-reformat-code"; - sha256 = "1sj407nbh4x586hvsq4ycr0ahhxin0wgfwdj0551cz8793wvjpzp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xah-reformat-code"; - license = lib.licenses.free; - }; - }) {}; - xah-replace-pairs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xah-replace-pairs"; - ename = "xah-replace-pairs"; - version = "20180507.1949"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xah-replace-pairs"; - rev = "4d845cfbce32d45befd7c454e3476c3ce40d2b43"; - sha256 = "1mkglrc8mbsjag3pc9zrmqa9x3n009hza1p1jvn3n97wjpc1qxlk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xah-replace-pairs"; - sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xah-replace-pairs"; - license = lib.licenses.free; - }; - }) {}; - xahk-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xahk-mode"; - ename = "xahk-mode"; - version = "20170821.407"; - src = fetchFromGitHub { - owner = "xahlee"; - repo = "xahk-mode.el"; - rev = "02012b20603c00e3b2ef32159a690ed1e05d12c3"; - sha256 = "09nakcfczb95vd48f8z77igmi1kbcblmgpzfzm9i7df4jcfkkh3c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05eed39bae37cc8359d2cc678052cbbcc946e379/recipes/xahk-mode"; - sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xahk-mode"; - license = lib.licenses.free; - }; - }) {}; - xbm-life = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xbm-life"; - ename = "xbm-life"; - version = "20160103.217"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "xbm-life"; - rev = "dd6a98ac9ea81b681e68f6318fed47158e5d469e"; - sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb4c55583338dafee61fd9c266d2ee7cae2b1ed/recipes/xbm-life"; - sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xbm-life"; - license = lib.licenses.free; - }; - }) {}; - xcode-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors - , s }: - melpaBuild { - pname = "xcode-mode"; - ename = "xcode-mode"; - version = "20160907.508"; - src = fetchFromGitHub { - owner = "nicklanasa"; - repo = "xcode-mode"; - rev = "5b5f0a4f505d44840a4924b24e3ef73b8528d98b"; - sha256 = "0g2vc13rc9vk20m9l1a1rxkdsc099k33pya3z10sg9pa09a4a2a2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/845c731bed7dbe9c41c09e47e219299f17d0d489/recipes/xcode-mode"; - sha256 = "1d8r2bc7fiwma1lcrzd9gxhdpvyf2pc6kplx7nyr40ghsb9jlpiw"; - name = "recipe"; - }; - packageRequires = [ dash emacs multiple-cursors s ]; - meta = { - homepage = "https://melpa.org/#/xcode-mode"; - license = lib.licenses.free; - }; - }) {}; - xcode-project = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xcode-project"; - ename = "xcode-project"; - version = "20181025.544"; - src = fetchFromGitHub { - owner = "nhojb"; - repo = "xcode-project"; - rev = "0bf9a4230fab7830350c750c39beda99ef74d72f"; - sha256 = "0746f2niclmlx90skvdb1xdac0nqj8a9pd9ap8n89ckb5r6f9hbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49b866ebf7e707bc74525f83dd5038e6e860fcef/recipes/xcode-project"; - sha256 = "0igp30f6ypmp4l8zmdfpa5bza4avm7mq2gj8v7b3ii655v91n6vi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xcode-project"; - license = lib.licenses.free; - }; - }) {}; - xcscope = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xcscope"; - ename = "xcscope"; - version = "20180426.12"; - src = fetchFromGitHub { - owner = "dkogan"; - repo = "xcscope.el"; - rev = "57bff67460c587acf60f513de622b4c7ab312081"; - sha256 = "1l1k85wlmjb2mgzx1la9f0p7j3q0mzj4hlrs98pf4bbfkdbqg7a7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/068c7846e70b91ce7e88330937fc64a60281802a/recipes/xcscope"; - sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xcscope"; - license = lib.licenses.free; - }; - }) {}; - xkcd = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "xkcd"; - ename = "xkcd"; - version = "20160419.430"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "emacs-xkcd"; - rev = "2c538d41a9728939cc5e8292faa78ed50997877d"; - sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xkcd"; - sha256 = "0gy2952zg1rq5gl10x7iwbchz5jibfcvikd3chifqbmil80wh6b5"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/xkcd"; - license = lib.licenses.free; - }; - }) {}; - xml-plus = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xml-plus"; - ename = "xml+"; - version = "20170727.1651"; - src = fetchFromGitHub { - owner = "bddean"; - repo = "xml-plus"; - rev = "232fa863c08fc159b21dd58c39ea45dce3334895"; - sha256 = "0b7v59dya346ds1wad0avrqhjimx5n9r3pcgqafagzf34hdcv3jy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/244388d158efda6fe8c1362a65b89b352c444422/recipes/xml+"; - sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/xml+"; - license = lib.licenses.free; - }; - }) {}; - xml-quotes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xml-quotes"; - ename = "xml-quotes"; - version = "20151230.1449"; - src = fetchFromGitHub { - owner = "ndw"; - repo = "xml-quotes"; - rev = "26db170e80b9295861227cdf970721b12539ed44"; - sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab315d783765730aceab43b4fd8c4872a1f1cc05/recipes/xml-quotes"; - sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xml-quotes"; - license = lib.licenses.free; - }; - }) {}; - xml-rpc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xml-rpc"; - ename = "xml-rpc"; - version = "20181002.653"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "xml-rpc-el"; - rev = "8f624f8b964e9145acb504e4457c9510e87dd93c"; - sha256 = "0xa54z52rsfl3n0xgmbycj4zazp8ksgdwcq56swzs6wp72zlalmj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/547d773e07d6229d2135d1b081b5401039ffad39/recipes/xml-rpc"; - sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xml-rpc"; - license = lib.licenses.free; - }; - }) {}; - xmlgen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xmlgen"; - ename = "xmlgen"; - version = "20170411.617"; - src = fetchFromGitHub { - owner = "philjackson"; - repo = "xmlgen"; - rev = "dba66681f0c5e621a9e70e8afb34903c9ffe93c4"; - sha256 = "096i29v0badx0a6339h9ckdz78zj59gbjdp7vj7vhkq9d830392s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xmlgen"; - sha256 = "0c77la6kl02qkapfzbjmhac60f8p837kwg8bp0686ylxh5s31zsh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xmlgen"; - license = lib.licenses.free; - }; - }) {}; - xmlunicode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xmlunicode"; - ename = "xmlunicode"; - version = "20160319.912"; - src = fetchFromGitHub { - owner = "ndw"; - repo = "xmlunicode"; - rev = "f5d185da46414c0509ebd0aa0fab416becf94612"; - sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b636126a389a337a3685f9d0dcbca9bf8e784f20/recipes/xmlunicode"; - sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xmlunicode"; - license = lib.licenses.free; - }; - }) {}; - xo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xo"; - ename = "xo"; - version = "20160402.2346"; - src = fetchFromGitHub { - owner = "j-em"; - repo = "xo-emacs"; - rev = "72fcd867cfa332fdb82f732925cf8977e690af78"; - sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd8cec754da662e4873186c23c1ba13c52cccbba/recipes/xo"; - sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xo"; - license = lib.licenses.free; - }; - }) {}; - xquery-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xquery-mode"; - ename = "xquery-mode"; - version = "20170214.319"; - src = fetchFromGitHub { - owner = "xquery-mode"; - repo = "xquery-mode"; - rev = "19e6f9553ce05380843582b879712de00679e4ab"; - sha256 = "0q04p75qkcbij7cqvhwnfx2729f1v4si05xjv433v7f6dfxxkhhl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8ea1c9e26963f290d912df21b81afd689543658/recipes/xquery-mode"; - sha256 = "13xrvygk7wdby6599q6yxw8cm45qqki8szrm49fc3b6pr6vzpidg"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/xquery-mode"; - license = lib.licenses.free; - }; - }) {}; - xquery-tool = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xquery-tool"; - ename = "xquery-tool"; - version = "20190523.419"; - src = fetchFromGitHub { - owner = "paddymcall"; - repo = "xquery-tool.el"; - rev = "dc939a6d779e83fa06c4486e53dbeb3846c38c02"; - sha256 = "10rp8wbvbab2z3rcyfsb2jxyj3fphq9g25wmai8c610z4s8rldlq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool"; - sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xquery-tool"; - license = lib.licenses.free; - }; - }) {}; - xref-js2 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "xref-js2"; - ename = "xref-js2"; - version = "20170530.126"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "xref-js2"; - rev = "d5f93605405989529c2f66b542def6c32429b927"; - sha256 = "1vzsw257xkqwlgfj8d5hnrirjhxzzs9d8ms40ihb2zwsxn70im53"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5dab444ead98210b4ab3a6f9a61d013aed6d5b7/recipes/xref-js2"; - sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/xref-js2"; - license = lib.licenses.free; - }; - }) {}; - xresources-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xresources-theme"; - ename = "xresources-theme"; - version = "20190108.1051"; - src = fetchFromGitHub { - owner = "cqql"; - repo = "xresources-theme"; - rev = "5239acb51aa2dfa89a207e57012108d8fcf60562"; - sha256 = "13pls0f85n5rpbrbqcmrmcznv9hxiaglrnwpzivrli33cba92fpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/xresources-theme"; - sha256 = "1vsbvg9w5g6y2qlb8ssn12ax31r7fbslfi9vcgvmjydcr8r1z0zs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xresources-theme"; - license = lib.licenses.free; - }; - }) {}; - xterm-color = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xterm-color"; - ename = "xterm-color"; - version = "20190602.501"; - src = fetchFromGitHub { - owner = "atomontage"; - repo = "xterm-color"; - rev = "ff64312ad412c8b3e87a059139f288205d221e15"; - sha256 = "1hl2n0mlnskz0f43dz41h11dkyw1pn3x9sq61w0qzjkkbbyz5cqk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color"; - sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/xterm-color"; - license = lib.licenses.free; - }; - }) {}; - xterm-keybinder = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "xterm-keybinder"; - ename = "xterm-keybinder"; - version = "20160522.1756"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "xterm-keybinder-el"; - rev = "b29c4f700b0fa0c9f627f6725b36462b8fab06d6"; - sha256 = "0ya7c73acwp29glwjd1hf19h8jij2afwmwq7a3h91qx5zdn09wvh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/656f8e27b4e6055a634249f134a4fc0667fa0e95/recipes/xterm-keybinder"; - sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/xterm-keybinder"; - license = lib.licenses.free; - }; - }) {}; - xtest = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xtest"; - ename = "xtest"; - version = "20141214.906"; - src = fetchFromGitHub { - owner = "promethial"; - repo = "xtest"; - rev = "8099be9c2d856f98489834ddb20a01c6fd8922f1"; - sha256 = "1i4hxpvdxhcdxkfg39jmjqn3zdknccj6apgk80hs4k80am0l881z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/378fe14c66072ecb899a074c56f95077dfc9667e/recipes/xtest"; - sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/xtest"; - license = lib.licenses.free; - }; - }) {}; - xwidgete = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xwidgete"; - ename = "xwidgete"; - version = "20171118.1316"; - src = fetchFromGitHub { - owner = "tuhdo"; - repo = "xwidgete"; - rev = "e4e8410fe32176df85b46234717824519443fb04"; - sha256 = "04j4xwcdxlnrwxs89605zmwxszbi2j0z67v80651pshgnhj5p19i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xwidgete"; - sha256 = "1v1dfykkb6nwjwz2623i6x1rl53z4457l6fpa4nv4krdqq79gl5d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xwidgete"; - license = lib.licenses.free; - }; - }) {}; - yabin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yabin"; - ename = "yabin"; - version = "20140205.1951"; - src = fetchFromGitHub { - owner = "d5884"; - repo = "yabin"; - rev = "db8c404507560ef9147fcce2b94cd706fbfa03b5"; - sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc44b28e32ff9b35f60744a175c2d1e3036db8bc/recipes/yabin"; - sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yabin"; - license = lib.licenses.free; - }; - }) {}; - yafolding = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yafolding"; - ename = "yafolding"; - version = "20170304.1917"; - src = fetchFromGitHub { - owner = "zenozeng"; - repo = "yafolding.el"; - rev = "57c015ddd7c3454571c80825bc5391d7a10fa1d7"; - sha256 = "144v8nn4l8ngfdrsgj5nrxp09391gnfrqf950y956cbmqvnlw7z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/yafolding"; - sha256 = "1yb1rlxa5f1y1xjqs7ndr5jnf9j5cv0ccqdpbrx4l9xkm3npw9zl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yafolding"; - license = lib.licenses.free; - }; - }) {}; - yagist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yagist"; - ename = "yagist"; - version = "20160417.2208"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "yagist.el"; - rev = "10da4baa272ff0f7052f17debecc340764c7003f"; - sha256 = "0cxrq5azj2wb8swkzaygizkvdph61v6yr68gjanzgslhvkn66rz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97ea1250ffbf159d7870710b9348ef26616dbedb/recipes/yagist"; - sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/yagist"; - license = lib.licenses.free; - }; - }) {}; - yahoo-weather = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yahoo-weather"; - ename = "yahoo-weather"; - version = "20181025.2020"; - src = fetchFromGitHub { - owner = "lujun9972"; - repo = "yahoo-weather-mode"; - rev = "1d2db14daa1706e03dfe4379397eb89234a56400"; - sha256 = "01hydsjj427j4xyy8cwiz5kn67vwwi1qnih5qfyw04w29r9njh1n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae5ca93d48a2d24787c3d4ed7ab3a65aa8023f4f/recipes/yahoo-weather"; - sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yahoo-weather"; - license = lib.licenses.free; - }; - }) {}; - yahtzee = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yahtzee"; - ename = "yahtzee"; - version = "20171022.712"; - src = fetchFromGitHub { - owner = "drdv"; - repo = "yahtzee"; - rev = "5263fb8883d37d79a4ed34dd3216a8947d2ae4a0"; - sha256 = "1qv8p3zpxkkp0ncq3cs8sq2bj4jrxs4s5jfc5hbs905a9z8bsnq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/200169fdabce0ae3a2ecb6f4f3255c15ec3ed094/recipes/yahtzee"; - sha256 = "1fnywiami9mszagmms27dmak6chcichdi7q70x5c6aimc4jb98jk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yahtzee"; - license = lib.licenses.free; - }; - }) {}; - yalinum = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yalinum"; - ename = "yalinum"; - version = "20130217.243"; - src = fetchFromGitHub { - owner = "tm8st"; - repo = "emacs-yalinum"; - rev = "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973"; - sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yalinum"; - sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yalinum"; - license = lib.licenses.free; - }; - }) {}; - yaml-imenu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "yaml-imenu"; - ename = "yaml-imenu"; - version = "20180930.2327"; - src = fetchFromGitHub { - owner = "knu"; - repo = "yaml-imenu.el"; - rev = "78a383098807014d9e7f2941196d8271677158cd"; - sha256 = "1f85m0h19wjb0xrwkxrh7vrpphm8l5nkrv82zsl097dqw3ijj3f1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71e7c2df9e34093ad2634d5a56133fa30126fb5c/recipes/yaml-imenu"; - sha256 = "03r7020gyr96m1z7p947nb7z8szzlkqv21g1hm10sqa8qp7k0qli"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/yaml-imenu"; - license = lib.licenses.free; - }; - }) {}; - yaml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yaml-mode"; - ename = "yaml-mode"; - version = "20180408.2307"; - src = fetchFromGitHub { - owner = "yoshiki"; - repo = "yaml-mode"; - rev = "40067a10ac1360f0b9533f0bbbb2eea128e2574d"; - sha256 = "0v7646vdsbbhxh9ywsypq2ycdsrf6m7wv788qaircbjgn1pk4v7i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/yaml-mode"; - sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yaml-mode"; - license = lib.licenses.free; - }; - }) {}; - yaml-tomato = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "yaml-tomato"; - ename = "yaml-tomato"; - version = "20151122.2353"; - src = fetchFromGitHub { - owner = "RadekMolenda"; - repo = "yaml-tomato"; - rev = "1272c502fac6ce6b0f8b7f8a9beb353f0b35e13c"; - sha256 = "0caz0ls8qlh92hr75xv593d2sk27yscb8nzhgzhiarpdxx447jzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/yaml-tomato"; - sha256 = "1asy4nf759lcgksah2g7jvzwwlq9lxfkiji460csk5ycsv8aa99s"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/yaml-tomato"; - license = lib.licenses.free; - }; - }) {}; - yandex-weather = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yandex-weather"; - ename = "yandex-weather"; - version = "20160311.1237"; - src = fetchFromGitHub { - owner = "abstractionlayer"; - repo = "yandex-weather.el"; - rev = "6f823fd9e04ff9efb2aa65f333079e9f7e6e5b28"; - sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5221cee4c89dde5cebd9cddb3b4e4c5814b898d7/recipes/yandex-weather"; - sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yandex-weather"; - license = lib.licenses.free; - }; - }) {}; - yang-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yang-mode"; - ename = "yang-mode"; - version = "20190507.24"; - src = fetchFromGitHub { - owner = "mbj4668"; - repo = "yang-mode"; - rev = "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded"; - sha256 = "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb42ab9b5f118baaf6766c478046552b686981a1/recipes/yang-mode"; - sha256 = "0rl90xbcf3383ls95g1dixh2dr02kc4g60d324cqbb4h59wffp40"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yang-mode"; - license = lib.licenses.free; - }; - }) {}; - yankpad = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yankpad"; - ename = "yankpad"; - version = "20190604.1327"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "yankpad"; - rev = "ae60dcdf44ef42e77db1d9ba0e0c68d063d85294"; - sha256 = "1fpy7d47x2liysa74adk9yn7jxhyqqjfkc1mxj0prdaa6skcarza"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64746d10f9e0158621a7c4dc41dc2eca6ad573c/recipes/yankpad"; - sha256 = "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yankpad"; - license = lib.licenses.free; - }; - }) {}; - yapfify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yapfify"; - ename = "yapfify"; - version = "20180830.33"; - src = fetchFromGitHub { - owner = "JorisE"; - repo = "yapfify"; - rev = "b858225e1debe6734ee718e5c3c209152652a8b3"; - sha256 = "16bpshqk47slcifx9v70ka202lnbspkcjdl5npxpf12abc1syh06"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/060c32d8e9fdc56fe702d265a935d74d76082f86/recipes/yapfify"; - sha256 = "0scl8lk1c5i7jp1qj5gg8zf3zyi8lkb57ijkmvcs4czzlyv3y9bm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yapfify"; - license = lib.licenses.free; - }; - }) {}; - yara-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yara-mode"; - ename = "yara-mode"; - version = "20190423.10"; - src = fetchFromGitHub { - owner = "binjo"; - repo = "yara-mode"; - rev = "cd8093b1bc4fc260462f5284b157008fefa84880"; - sha256 = "04pl0kbx5g8wz00x7bhpi9w29wmxdmy5dhdq3j4rk3nys5njxr8v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef22d2dad1bae62721710bbff4b7228204d7c425/recipes/yara-mode"; - sha256 = "12j25nbfg65bkil4wv6f27sszlj3jm6h0zczr0v26xr5syppis17"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yara-mode"; - license = lib.licenses.free; - }; - }) {}; - yard-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yard-mode"; - ename = "yard-mode"; - version = "20170817.537"; - src = fetchFromGitHub { - owner = "pd"; - repo = "yard-mode.el"; - rev = "ba74a47463b0320ae152bd42a7dd7aeecd7b5748"; - sha256 = "0zry3p66bvrk32icnd6kkk8y5rrr8crnqjp6wlp889c8c7wm00n1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afad2677f901b8d27922389afb1d235d5c8edc39/recipes/yard-mode"; - sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yard-mode"; - license = lib.licenses.free; - }; - }) {}; - yari = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yari"; - ename = "yari"; - version = "20151127.2339"; - src = fetchFromGitHub { - owner = "hron"; - repo = "yari.el"; - rev = "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9"; - sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yari"; - sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yari"; - license = lib.licenses.free; - }; - }) {}; - yarn-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yarn-mode"; - ename = "yarn-mode"; - version = "20170709.1237"; - src = fetchFromGitHub { - owner = "anachronic"; - repo = "yarn-mode"; - rev = "99891000efe31214b065fa9446cd5e68c5c42ed8"; - sha256 = "0cg06ba9yfgjzprq78cvhvvl06av0p2vhnmynddzbpgjgjnwskfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/860fa2a8fdb22be374fa64a5277af3ab484a047a/recipes/yarn-mode"; - sha256 = "08a3lrz670jsf531mn1hwhh7fg5dby6i749cscd6d4dyvkzpz5dg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yarn-mode"; - license = lib.licenses.free; - }; - }) {}; - yascroll = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yascroll"; - ename = "yascroll"; - version = "20170315.1206"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "yascroll-el"; - rev = "fe4494e5f4faf2832e665c7de0fed99cdbb39478"; - sha256 = "09y8phmvqdwp1k9w84rf6p609jrg0mhgx6akwda8rsvxrrbsh6j4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yascroll"; - sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/yascroll"; - license = lib.licenses.free; - }; - }) {}; - yasnippet = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yasnippet"; - ename = "yasnippet"; - version = "20190502.1514"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "yasnippet"; - rev = "f056a4def80fa07132d9dd929ddedfb9d0fabd28"; - sha256 = "1n9gdp4a06g9rzckp4m6lwjbqsi45ha5zlb7zcvzk3wkf43fd1p9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet"; - sha256 = "1r37vz5b8nj6hr6c2ki9fdbrs3kkb4zwimh8r4ixm10kdkk5jqds"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/yasnippet"; - license = lib.licenses.free; - }; - }) {}; - yasnippet-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "yasnippet-snippets"; - ename = "yasnippet-snippets"; - version = "20190513.349"; - src = fetchFromGitHub { - owner = "AndreaCrotti"; - repo = "yasnippet-snippets"; - rev = "15e4b08f7484c049d6b043263c5e09bc73846e32"; - sha256 = "1sva5n77bydliq1jxa3914n8gw07v3ghp9lkh1rr2q6plawrcivs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42490bbdac871bce302fbc9a0488ff7de354627e/recipes/yasnippet-snippets"; - sha256 = "0daawvlw78ya38bbi95swjq8qk5jf5shsyv164m81y2gd8i5c183"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/yasnippet-snippets"; - license = lib.licenses.free; - }; - }) {}; - yatemplate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "yatemplate"; - ename = "yatemplate"; - version = "20180617.232"; - src = fetchFromGitHub { - owner = "mineo"; - repo = "yatemplate"; - rev = "1d83419746669dbc436b1c6a164c3d29bd8ff4de"; - sha256 = "1ipjawx0sadw1vijswm7wzwjnkds1pas925mbacvc3kcxg5jwjvx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate"; - sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; - name = "recipe"; - }; - packageRequires = [ emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/yatemplate"; - license = lib.licenses.free; - }; - }) {}; - yatex = callPackage ({ fetchhg - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yatex"; - ename = "yatex"; - version = "20190524.2248"; - src = fetchhg { - url = "https://www.yatex.org/hgrepos/yatex"; - rev = "714f3527b4a1"; - sha256 = "12sqy2wrlgzi71vn3q5h47z1i6l6di3pnr4pmn0ixdp500gvy2fv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9854c39fc1889891fe460d0d5ac9224de3f6c635/recipes/yatex"; - sha256 = "1qbqdsqf5s61hyyzx84csnby242n5sdcmcw55pa8r16j8kyzgrc0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yatex"; - license = lib.licenses.free; - }; - }) {}; - yaxception = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yaxception"; - ename = "yaxception"; - version = "20150105.652"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "yaxception"; - rev = "21a36020c6a5319ea6461f4524aa3a0589df3bbd"; - sha256 = "06fnm2c17hmlfp40mq8lxk1blmcy10z0xxdpy8ykyv1r1r6syjf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1da5261081fc66910d935b81e52391c071e52379/recipes/yaxception"; - sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yaxception"; - license = lib.licenses.free; - }; - }) {}; - ycm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ycm"; - ename = "ycm"; - version = "20150822.1136"; - src = fetchFromGitHub { - owner = "neuromage"; - repo = "ycm.el"; - rev = "4da8a14abcd0f4fa3235042ade2e12b5068c0601"; - sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44e168f757cb51249db2deb9f781eff99cf6fb7c/recipes/ycm"; - sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ycm"; - license = lib.licenses.free; - }; - }) {}; - ycmd = callPackage ({ cl-lib ? null - , dash - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pkg-info - , request - , request-deferred - , s }: - melpaBuild { - pname = "ycmd"; - ename = "ycmd"; - version = "20190416.107"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "6f4f7384b82203cccf208e3ec09252eb079439f9"; - sha256 = "1bl86x8nqw4jqzb8pfm6hm316hmk1bx8v3qz7wq9z92hb67ck2kn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd"; - sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - deferred - emacs - let-alist - pkg-info - request - request-deferred - s - ]; - meta = { - homepage = "https://melpa.org/#/ycmd"; - license = lib.licenses.free; - }; - }) {}; - ydk-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ydk-mode"; - ename = "ydk-mode"; - version = "20170113.121"; - src = fetchFromGitHub { - owner = "jacksonrayhamilton"; - repo = "ydk-mode"; - rev = "3de9ef27dbdf5887f05092895e4ba93e7659e0ec"; - sha256 = "1kc1qsblfxfxrbgv3ksqf87gzic463136k2v7ryaj3x2r9mc0j3l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865b9ee86ca28fc1cedc0a432a292400184711ae/recipes/ydk-mode"; - sha256 = "1z9digf39d7dd736svp0cy6773l3nklzc263q23gwfcg0jswbdyg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ydk-mode"; - license = lib.licenses.free; - }; - }) {}; - yequake = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yequake"; - ename = "yequake"; - version = "20190114.1155"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "yequake"; - rev = "e1e62d802db8d6ca513ebeaadf808c8a3b748086"; - sha256 = "1rpfqxr3735v0avbsqw01amxncd6wn4avky7k08k9p7n6kn3m4m2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/194968f221b2f60042a3684e1ca3e1c18adbde8e/recipes/yequake"; - sha256 = "1ps5r6k2903w9qbr3aszw3l3mgcg2zlnxlzbak99314if5k6aiak"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/yequake"; - license = lib.licenses.free; - }; - }) {}; - yesql-ghosts = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "yesql-ghosts"; - ename = "yesql-ghosts"; - version = "20150220.437"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "yesql-ghosts"; - rev = "416198cdc4f316b0912af5e413410937b9b8432b"; - sha256 = "0liys4arxias4a0ilssaixml4pvjwk80w93njdxb9f5i8mwwznpj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c652657be0f9b9dcb236e01c3abd2fd717190d7/recipes/yesql-ghosts"; - sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; - name = "recipe"; - }; - packageRequires = [ cider dash s ]; - meta = { - homepage = "https://melpa.org/#/yesql-ghosts"; - license = lib.licenses.free; - }; - }) {}; - yoficator = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yoficator"; - ename = "yoficator"; - version = "20190509.920"; - src = fetchFromGitLab { - owner = "link2xt"; - repo = "yoficator"; - rev = "fa914f9648515bca54b5e558ca57d2b65fa57491"; - sha256 = "0mgkwjprcj47zn8kd3ppqnbnmnn00cvnbs0r0h5951966vshh13f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5156f01564978718dd99ab3a54f19b6512de5c3c/recipes/yoficator"; - sha256 = "0b6lv6wk5ammhb9rws9kig02wkm84i5avm7a1vd4sb7wkgm9nj9r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yoficator"; - license = lib.licenses.free; - }; - }) {}; - yoshi-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yoshi-theme"; - ename = "yoshi-theme"; - version = "20190505.28"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "yoshi-theme"; - rev = "70365870ff823b954aa85972217d8f116c45d939"; - sha256 = "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme"; - sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yoshi-theme"; - license = lib.licenses.free; - }; - }) {}; - youdao-dictionary = callPackage ({ chinese-word-at-point - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names - , popup - , pos-tip }: - melpaBuild { - pname = "youdao-dictionary"; - ename = "youdao-dictionary"; - version = "20180713.2114"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "youdao-dictionary.el"; - rev = "9496ea3ba8aa999db3dbde88d6aa37f3579d8dea"; - sha256 = "0kn07ksjdrwl0m1wiac83ljg5drrmyf65gxm4m6r3iz1awd1akbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/712bdf83f71c2105754f9b549a889ffc5b7ba565/recipes/youdao-dictionary"; - sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; - name = "recipe"; - }; - packageRequires = [ chinese-word-at-point emacs names popup pos-tip ]; - meta = { - homepage = "https://melpa.org/#/youdao-dictionary"; - license = lib.licenses.free; - }; - }) {}; - z3-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "z3-mode"; - ename = "z3-mode"; - version = "20151120.1455"; - src = fetchFromGitHub { - owner = "zv"; - repo = "z3-mode"; - rev = "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1"; - sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e056fb14b46b97ff31b1db3b8bd31e395a54cd87/recipes/z3-mode"; - sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/z3-mode"; - license = lib.licenses.free; - }; - }) {}; - zeal-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zeal-at-point"; - ename = "zeal-at-point"; - version = "20180131.1554"; - src = fetchFromGitHub { - owner = "jinzhu"; - repo = "zeal-at-point"; - rev = "0fc3263f44e95acd3e9d91057677621ce4d297ee"; - sha256 = "0aq9w9pjyzdgf63hwffhph6k43vv3cxmffklrjkjj3hqv796k8yd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bcb472b6b18b75acd9c68e1fc7ecce4c2a40d8f/recipes/zeal-at-point"; - sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zeal-at-point"; - license = lib.licenses.free; - }; - }) {}; - zel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , frecency - , lib - , melpaBuild }: - melpaBuild { - pname = "zel"; - ename = "zel"; - version = "20171014.132"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "zel"; - rev = "23b12d107f123667ddd443b9f3e2047209e0055a"; - sha256 = "1m8bw588r2a1034ynigrzgab857261nrjwnzag5i3rgwn27brfcz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/zel"; - sha256 = "0fwc1fghsw2rg4fv10kgc9d6rhbq20xa9diqcvp1f1cqs12rfhpd"; - name = "recipe"; - }; - packageRequires = [ emacs frecency ]; - meta = { - homepage = "https://melpa.org/#/zel"; - license = lib.licenses.free; - }; - }) {}; - zen-and-art-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zen-and-art-theme"; - ename = "zen-and-art-theme"; - version = "20120622.737"; - src = fetchFromGitHub { - owner = "developernotes"; - repo = "zen-and-art-theme"; - rev = "a7226cbce0bca2501d69a620cb2aeabfc396c232"; - sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/692cfa0e9edbc1b7114e2ae2f36bef34b20ad17c/recipes/zen-and-art-theme"; - sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zen-and-art-theme"; - license = lib.licenses.free; - }; - }) {}; - zenburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zenburn-theme"; - ename = "zenburn-theme"; - version = "20190510.234"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "zenburn-emacs"; - rev = "b6090a1a343d5173e38e2966f7cf44d96cba037c"; - sha256 = "1arplxd7f5li0dkd8zydh8ac84yk1crwjmq6hd38nsqgc53iimcl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme"; - sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zenburn-theme"; - license = lib.licenses.free; - }; - }) {}; - zencoding-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zencoding-mode"; - ename = "zencoding-mode"; - version = "20140213.22"; - src = fetchFromGitHub { - owner = "rooney"; - repo = "zencoding"; - rev = "58e42af182c98cb9941d27cd042d227fbf4e146c"; - sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7f2ebb9d860aa4f0797cdaadaa35fb3f5c4460b/recipes/zencoding-mode"; - sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zencoding-mode"; - license = lib.licenses.free; - }; - }) {}; - zenity-color-picker = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zenity-color-picker"; - ename = "zenity-color-picker"; - version = "20160302.354"; - src = fetchgit { - url = "https://bitbucket.org/Soft/zenity-color-picker.el"; - rev = "bdece51052ef7037e0a3481fc1f487939f57777e"; - sha256 = "12s2zw99q1zn3a1rn5i27mp506nhqh23v3df5inzfsq1b3dji2bl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/zenity-color-picker"; - sha256 = "0rim1mbhlb2lj302c58rs5l7bd168nxg1jpir6cbpf8rp0k35ldb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zenity-color-picker"; - license = lib.licenses.free; - }; - }) {}; - zeno-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zeno-theme"; - ename = "zeno-theme"; - version = "20181026.1818"; - src = fetchFromGitHub { - owner = "jbharat"; - repo = "zeno-theme"; - rev = "0914c4a5b1b9499e7f1ca5699b1c3ea2f4be3f1a"; - sha256 = "1zl1ks7n35i9mn5w7ac3j15820fbgpbcmmysv25crvi4g9z94mqj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9703a222f51dc283e9462cceb5afeb009f7401dc/recipes/zeno-theme"; - sha256 = "0bqv1gdqlh7i48ckpgss6h9mmc9hpkqlb94aam0kkq2ga125gmwc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zeno-theme"; - license = lib.licenses.free; - }; - }) {}; - zephir-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "zephir-mode"; - ename = "zephir-mode"; - version = "20170917.2125"; - src = fetchFromGitHub { - owner = "sergeyklay"; - repo = "zephir-mode"; - rev = "1e0c287a0928ce2d5bce7399ee12be051a4c78a3"; - sha256 = "05p237h79x6li9vckavxd38zv4rm5zhl3d47gj1sjg454q7qba33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5bd901c93ce7f64de6082e801327adbd18fd4517/recipes/zephir-mode"; - sha256 = "0nxm6w7z89q2vvf3bp1p6hb6f2axv9ha85jyiv4k02l46sjprf4j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/zephir-mode"; - license = lib.licenses.free; - }; - }) {}; - zerodark-theme = callPackage ({ all-the-icons - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zerodark-theme"; - ename = "zerodark-theme"; - version = "20190528.223"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "zerodark-theme"; - rev = "df22536a244293591575e56970bf83814faa7c14"; - sha256 = "0pfyd1iqs7l2ngwgvj9n0r9k1px7yl16h8n502xdyf0pprxcs4p6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/zerodark-theme"; - sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; - name = "recipe"; - }; - packageRequires = [ all-the-icons ]; - meta = { - homepage = "https://melpa.org/#/zerodark-theme"; - license = lib.licenses.free; - }; - }) {}; - zig-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zig-mode"; - ename = "zig-mode"; - version = "20190108.1817"; - src = fetchFromGitHub { - owner = "ziglang"; - repo = "zig-mode"; - rev = "c2deea85dd65c3e73c2771c56a998cbdeb9ff717"; - sha256 = "10k7i2fj3imbq09fkcgd4kjp7n1dn46119jqrd6kbx5inlkq1782"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/zig-mode"; - sha256 = "1kg1x0l65nqqpzn5np41ya9khr1yqcg5ki7z3jw0g4wxdbz7lrbx"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zig-mode"; - license = lib.licenses.free; - }; - }) {}; - zlc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zlc"; - ename = "zlc"; - version = "20151010.1857"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "emacs-zlc"; - rev = "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4"; - sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/zlc"; - sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zlc"; - license = lib.licenses.free; - }; - }) {}; - zmq = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zmq"; - ename = "zmq"; - version = "20190516.1443"; - src = fetchFromGitHub { - owner = "dzop"; - repo = "emacs-zmq"; - rev = "e4a657b237c42151f088de95e572a238361e7fc5"; - sha256 = "0j9sd1vcbmrpxykzkp7ifrb0v889ahlg0f6r8813lq4881yxf63j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72f4dcc2723de826bf1af7235ac6d9119a243c63/recipes/zmq"; - sha256 = "14bbh00a58xgxyxl8zjxl57rf6351fnwsnk4cvvy341fvf86dklc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/zmq"; - license = lib.licenses.free; - }; - }) {}; - znc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "znc"; - ename = "znc"; - version = "20160627.1332"; - src = fetchFromGitHub { - owner = "sshirokov"; - repo = "ZNC.el"; - rev = "ce468d185e4a949c45fdd7586313144bc69d4fe5"; - sha256 = "0jh11lbzsndsz9i143av7510417nzwy4j3mmpq7cjixfbmnxdq06"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/znc"; - sha256 = "1017dlzbpb3ww0zb370bgsdrzr4kcc72ddby9j63d95chz2jg0hb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/znc"; - license = lib.licenses.free; - }; - }) {}; - zombie = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zombie"; - ename = "zombie"; - version = "20141222.816"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "zombie"; - rev = "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345"; - sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0da12385908c0e2ecd087ea7572fedf0a2dcf03f/recipes/zombie"; - sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zombie"; - license = lib.licenses.free; - }; - }) {}; - zombie-trellys-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "zombie-trellys-mode"; - ename = "zombie-trellys-mode"; - version = "20150304.648"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "zombie-trellys-mode"; - rev = "03b8d3635f65dbf38f9a19b5d1a8dfdcb38ba423"; - sha256 = "0rp615k41v5v9m9g3ydyzgwr6a7wqrmsdkz3pc2frl1zij8jpjm4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e66db80ab82a69542688cd57c9e0ec10e6616c87/recipes/zombie-trellys-mode"; - sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/zombie-trellys-mode"; - license = lib.licenses.free; - }; - }) {}; - zone-nyan = callPackage ({ esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zone-nyan"; - ename = "zone-nyan"; - version = "20170818.944"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "zone-nyan"; - rev = "4b1f8d95f130946718d52806489ffe2762aebfdc"; - sha256 = "1axq4ch7garlfrybq9kgv6x7d8y4dw5y9pqbqlqvlwf4xmdrvzmm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/zone-nyan"; - sha256 = "1g7i5p26gb9gny64b84x6zqml7fly5q9aykmc6l6c1kfl6pqxs94"; - name = "recipe"; - }; - packageRequires = [ esxml ]; - meta = { - homepage = "https://melpa.org/#/zone-nyan"; - license = lib.licenses.free; - }; - }) {}; - zone-rainbow = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zone-rainbow"; - ename = "zone-rainbow"; - version = "20160120.534"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "zone-rainbow"; - rev = "2ba4f1a87c69c4712124ebf12c1f3ea171e1af36"; - sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f678d32c8cd1bcc8ec042e7e68ca3a5259da65/recipes/zone-rainbow"; - sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zone-rainbow"; - license = lib.licenses.free; - }; - }) {}; - zone-select = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zone-select"; - ename = "zone-select"; - version = "20160118.619"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "zone-select"; - rev = "bf30da12f1625fe6563448fccf3c506acad10af7"; - sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ecad1475d9a04ddd84f86ed950f742f68bcf71f8/recipes/zone-select"; - sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/zone-select"; - license = lib.licenses.free; - }; - }) {}; - zone-sl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zone-sl"; - ename = "zone-sl"; - version = "20160201.410"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "zone-sl"; - rev = "737b21b4b35c28a487ad8a31598e745bc183b209"; - sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11c976519e0cb320e48f40f4d735e557b3dfc1b9/recipes/zone-sl"; - sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zone-sl"; - license = lib.licenses.free; - }; - }) {}; - zoom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoom"; - ename = "zoom"; - version = "20190523.600"; - src = fetchFromGitHub { - owner = "cyrus-and"; - repo = "zoom"; - rev = "578295532fb1c4ad2a2e95894e65cce02f812b54"; - sha256 = "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe094c99756ad29eda9bc51f31bb70c4ddc4131/recipes/zoom"; - sha256 = "09bk0nnfj72an2b3rravd6qp21gdgcm1m55qnf2r8rzbgqymq5ls"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zoom"; - license = lib.licenses.free; - }; - }) {}; - zoom-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoom-window"; - ename = "zoom-window"; - version = "20170302.27"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-zoom-window"; - rev = "cd6ecc103fc30b171bda7daf1f44a550854d0dbf"; - sha256 = "1rfhdzwyag32s15ysmf75976nvkx995581afaa4ychj45vwnaqfm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window"; - sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zoom-window"; - license = lib.licenses.free; - }; - }) {}; - zop-to-char = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zop-to-char"; - ename = "zop-to-char"; - version = "20160212.754"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "zop-to-char"; - rev = "816ea90337db0545a2f0a5079f4d7b3a2822af7d"; - sha256 = "14waf3g7b92k3qd5088w4pn0wcspxjfkbswlzf7nnkjliw1yh0kf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9277f1a5f1aef8886e739c73dea91d3f81dc5/recipes/zop-to-char"; - sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/zop-to-char"; - license = lib.licenses.free; - }; - }) {}; - zossima = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "zossima"; - ename = "zossima"; - version = "20121123.1635"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "zossima"; - rev = "0b3f17c77bc1791687cdb4e15c889f774f9e2c0f"; - sha256 = "11ygifz67zyrqqqmjs5xrrch796n2na4c9g1mrpdspf7ndiqjbw2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7566fe6fffc38981ea33582d783c58f3842fe28/recipes/zossima"; - sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb"; - name = "recipe"; - }; - packageRequires = [ inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/zossima"; - license = lib.licenses.free; - }; - }) {}; - zotelo = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zotelo"; - ename = "zotelo"; - version = "20160602.249"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "zotelo"; - rev = "d9dc089b9adfcc70a63f2a84269a12eb7cb4c748"; - sha256 = "1gff44nwiqhqhppwmsn38njkph4g9bw669p95m8p2avb7x7kiybl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zotelo"; - sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/zotelo"; - license = lib.licenses.free; - }; - }) {}; - zotxt = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , request-deferred }: - melpaBuild { - pname = "zotxt"; - ename = "zotxt"; - version = "20180517.1847"; - src = fetchFromGitLab { - owner = "egh"; - repo = "zotxt-emacs"; - rev = "23a4a9f74a658222027d53a9a83cd4bcc583ca8b"; - sha256 = "09fq3w9yk9kn6bz7y9kgpiw612dvj3yzsdk734js6zgb0p8lfd2c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b633453e77a719f6b6b6564e66c1c1260db38aa6/recipes/zotxt"; - sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; - name = "recipe"; - }; - packageRequires = [ request-deferred ]; - meta = { - homepage = "https://melpa.org/#/zotxt"; - license = lib.licenses.free; - }; - }) {}; - zoutline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoutline"; - ename = "zoutline"; - version = "20190520.1119"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "zoutline"; - rev = "63756846f8540b6faf89d885438186e4fe1c7d8a"; - sha256 = "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a26341f491145938aee9b531cd861200bfa2f6d/recipes/zoutline"; - sha256 = "1yyww84b58ymbx0w1gkgd0csr0cwlghdmnxk0jbzwc45g9g42k1m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zoutline"; - license = lib.licenses.free; - }; - }) {}; - zpl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zpl-mode"; - ename = "zpl-mode"; - version = "20180906.359"; - src = fetchFromGitHub { - owner = "ax487"; - repo = "zpl-mode"; - rev = "35e7e23c6baf31b5e65dd7405c8ab9b13c70637e"; - sha256 = "147d7ylpk77zcsjim0my6cbyms28yd7mfaigmzm009jc1bn4r7f5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0bf11cd6ceb2633f968134d80f37d32f91c48227/recipes/zpl-mode"; - sha256 = "0wqhwzanvc1gpnykfqzi02p9zx0c1n6gnavg5dv1mlmc8x0hr67s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zpl-mode"; - license = lib.licenses.free; - }; - }) {}; - zpresent = callPackage ({ dash - , emacs - , fetchhg - , fetchurl - , lib - , melpaBuild - , org-parser - , request }: - melpaBuild { - pname = "zpresent"; - ename = "zpresent"; - version = "20180604.2138"; - src = fetchhg { - url = "https://bitbucket.com/zck/zpresent.el"; - rev = "55fc14b66e2e"; - sha256 = "17wkhl1a7jmg4ks011lf5h4f2vbhf8dl6vgzdzlmljk15f9hmw35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae38ad54490fa650c832fb7d22e2c73b0fb060/recipes/zpresent"; - sha256 = "0316qyspmdbg94aw620133ilh8kfpr3db1p2cifgccgcacjv3v5j"; - name = "recipe"; - }; - packageRequires = [ dash emacs org-parser request ]; - meta = { - homepage = "https://melpa.org/#/zpresent"; - license = lib.licenses.free; - }; - }) {}; - zprint-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zprint-mode"; - ename = "zprint-mode"; - version = "20181111.1145"; - src = fetchFromGitHub { - owner = "pesterhazy"; - repo = "zprint-mode.el"; - rev = "6b979f6cb50d1f3da0ec44f39fd0dd893785ca44"; - sha256 = "0fbm0klda8rbybp6rb1296czn8gc1c7bvcyd40qlg5jy1wxwjbd3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/125f6358dd8d715b61b12de5d39215453e53ea10/recipes/zprint-mode"; - sha256 = "07ziwnk1c620s7rp42fylpw5vgin0p7aapp3g8aif60vcb8g3m7y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zprint-mode"; - license = lib.licenses.free; - }; - }) {}; - ztree = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ztree"; - ename = "ztree"; - version = "20180512.1150"; - src = fetchFromGitHub { - owner = "fourier"; - repo = "ztree"; - rev = "50412fa553fb68fcd7218cc44cf66b5342ab6889"; - sha256 = "00s3sa90yi6q0260ziqqmx00xl0nnf46mwcl8fbr5mdw14hvk9dl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f151e057c05407748991f23c021e94c178b87248/recipes/ztree"; - sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ztree"; - license = lib.licenses.free; - }; - }) {}; - zweilight-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zweilight-theme"; - ename = "zweilight-theme"; - version = "20170112.2205"; - src = fetchFromGitHub { - owner = "philiparvidsson"; - repo = "Zweilight-Theme-for-Emacs"; - rev = "890f27c939d8a358c9ef0f402fc3314f475ec874"; - sha256 = "0pl254c61405n6sgr01qj4z42vqdvbmf59nz55cl23l2q7kdbfdv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/zweilight-theme"; - sha256 = "1j8skn9hz1zkpdg7q0njv5b50cbvrixjjmkp43p58gx98q02p0kq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zweilight-theme"; - license = lib.licenses.free; - }; - }) {}; - zygospore = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zygospore"; - ename = "zygospore"; - version = "20140703.152"; - src = fetchFromGitHub { - owner = "LouisKottmann"; - repo = "zygospore.el"; - rev = "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"; - sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zygospore"; - sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zygospore"; - license = lib.licenses.free; - }; - }) {}; - zzz-to-char = callPackage ({ avy - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zzz-to-char"; - ename = "zzz-to-char"; - version = "20190216.257"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "zzz-to-char"; - rev = "9f08bf94c56a39a2b65f90b852da76dfa6ec2a6f"; - sha256 = "1ln22xcqcs6hbxs99lmwhsjx1rbg7ksfpl17zfsvpnf5c28by3lm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7063cbc1f1501ce81552d7ef1d42d1309f547c42/recipes/zzz-to-char"; - sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; - name = "recipe"; - }; - packageRequires = [ avy cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/zzz-to-char"; - 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 20332a1bdd8..527a82aa469 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -4,12 +4,11 @@ To update the list of packages from MELPA, -1. Clone https://github.com/ttuegel/emacs2nix. -2. Clone https://github.com/milkypostman/melpa. -3. Run `./melpa-packages.sh --melpa PATH_TO_MELPA_CLONE` from emacs2nix. -4. Copy the new `melpa-generated.nix` file into Nixpkgs. -5. Check for evaluation errors: `nix-instantiate ./. -A emacsPackagesNg.melpaPackages`. -6. `git add pkgs/applications/editors/emacs-modes/melpa-generated.nix && git commit -m "melpa-packages $(date -Idate)"` +1. Run ./update-melpa +2. Check for evaluation errors: +env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPackagesNg.melpaStablePackages +env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPackagesNg.melpaPackages +3. `git commit -m "melpa-packages: $(date -Idate)" recipes-archive-melpa.json` */ @@ -18,7 +17,9 @@ To update the list of packages from MELPA, self: let - imported = import ./melpa-generated.nix { inherit (self) callPackage; }; + inherit (import ./libgenerated.nix lib self) melpaDerivation; + imported = lib.listToAttrs (map (melpaDerivation "unstable") + (lib.importJSON ./recipes-archive-melpa.json)); super = builtins.removeAttrs imported [ "swbuff-x" # required dependency swbuff is missing ]; @@ -264,6 +265,29 @@ self: ''; }); }); + + # Map legacy renames from emacs2nix since code generation was ported to emacs lisp + _0blayout = super."0blayout"; + _0xc = super."0xc"; + _2048-game = super."2048-game"; + _4clojure = super."4clojure"; + at = super."@"; + desktop-plus = super."desktop+"; + # filesets-plus = super."filesets+"; + ghub-plus = super."ghub+"; + git-gutter-plus = super."git-gutter+"; + git-gutter-fringe-plus = super."git-gutter-fringe+"; + ido-completing-read-plus = super."ido-completing-read+"; + image-plus = super."image+"; + image-dired-plus = super."image-dired+"; + markdown-mode-plus = super."markdown-mode+"; + package-plus = super."package+"; + rect-plus = super."rect+"; + term-plus = super."term+"; + term-plus-key-intercept = super."term+key-intercept"; + term-plus-mux = super."term+mux"; + xml-plus = super."xml+"; + }; melpaPackages = diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix deleted file mode 100644 index 22ad906fd6e..00000000000 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ /dev/null @@ -1,56691 +0,0 @@ -{ callPackage }: - { - _0blayout = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "_0blayout"; - ename = "0blayout"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "etu"; - repo = "0blayout-mode"; - rev = "b8bb44b5336965b5519b9a826a0f46f8ee31c471"; - sha256 = "1apv5zd3zzni2llj9is7h2bzq1xxbx67kr7c07dfjd26n7l0zvfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6521ec44ae8b0ba2e0523517f0f3d5b94ddbe1be/recipes/0blayout"; - sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/0blayout"; - license = lib.licenses.free; - }; - }) {}; - a = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "a"; - ename = "a"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "plexus"; - repo = "a.el"; - rev = "8583685c32069a73ccae0100e990e7b39c901737"; - sha256 = "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a226f1d81cd1ae81b91c1102fbe40aac2eddcaa8/recipes/a"; - sha256 = "1xqja47iw1c78kiv4854z47iblvvzrc1l35zjdhmhkh9hh10z886"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/a"; - license = lib.licenses.free; - }; - }) {}; - aa-edit-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , navi2ch }: - melpaBuild { - pname = "aa-edit-mode"; - ename = "aa-edit-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "aa-edit-mode"; - rev = "2e56f3b627f0f19fbfce4968180b4d736f7afb5d"; - sha256 = "1rh9n97z1vi7w60qzam5vc025wwm346fgzym2zs1cm7ykyfh3mgd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20d00f782f2db87264c7fb1aac7455e44b8b24e7/recipes/aa-edit-mode"; - sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn"; - name = "recipe"; - }; - packageRequires = [ emacs navi2ch ]; - meta = { - homepage = "https://melpa.org/#/aa-edit-mode"; - license = lib.licenses.free; - }; - }) {}; - abc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "abc-mode"; - ename = "abc-mode"; - version = "20140225.944"; - src = fetchFromGitHub { - owner = "mkjunker"; - repo = "abc-mode"; - rev = "6b5ab7402287dab5a091e94fec9982dc45d9d287"; - sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaee9dc5de06747374f311d86a550d3cc15beed1/recipes/abc-mode"; - sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/abc-mode"; - license = lib.licenses.free; - }; - }) {}; - abs-mode = callPackage ({ emacs - , erlang - , fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , maude-mode - , melpaBuild }: - melpaBuild { - pname = "abs-mode"; - ename = "abs-mode"; - version = "1.5"; - src = fetchFromGitHub { - owner = "abstools"; - repo = "abs-mode"; - rev = "a9a512992f681669dc59fe9ca86f12b9688b5454"; - sha256 = "0v6d7cxnj4mil7c7y4m1csiznl6rmzxg9snwhhv6wdqfw112kn8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aabccc4061e7764069796e12ee9688b67651cf70/recipes/abs-mode"; - sha256 = "148y99iaxcnjaacw017chwq0sq05ywgy5jx1lhp9ly7innrl9i1k"; - name = "recipe"; - }; - packageRequires = [ emacs erlang flymake maude-mode ]; - meta = { - homepage = "https://melpa.org/#/abs-mode"; - license = lib.licenses.free; - }; - }) {}; - abyss-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "abyss-theme"; - ename = "abyss-theme"; - version = "0.7"; - src = fetchFromGitHub { - owner = "mgrbyte"; - repo = "emacs-abyss-theme"; - rev = "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14"; - sha256 = "07z0djv7h3yrv4iw9n633j6dxzxb4nnzijsqkmz22ik6fbwxg5mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f390e5153b6360a27abc74983f5fef11226634f3/recipes/abyss-theme"; - sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/abyss-theme"; - license = lib.licenses.free; - }; - }) {}; - ac-alchemist = callPackage ({ alchemist - , auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-alchemist"; - ename = "ac-alchemist"; - version = "0.1"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-alchemist"; - rev = "b1496f6c7f968725076341d3797fe33fb2d36e39"; - sha256 = "06d6yhknrq1wqdg3ykkswsb515bvhkz23gbclws9lmqslns7g1jf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9037aa41a8d9467838495bb235db32c19cc417/recipes/ac-alchemist"; - sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; - name = "recipe"; - }; - packageRequires = [ alchemist auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-alchemist"; - license = lib.licenses.free; - }; - }) {}; - ac-capf = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-capf"; - ename = "ac-capf"; - version = "0.1"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-capf"; - rev = "17571dba0a8f98111f2ab758e9bea285b263781b"; - sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/929da263f57b904c50f5f17b09d4c4b480999c97/recipes/ac-capf"; - sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-capf"; - license = lib.licenses.free; - }; - }) {}; - ac-cider = callPackage ({ auto-complete - , cider - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-cider"; - ename = "ac-cider"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "ac-cider"; - rev = "4be034e5f82421b0a836ec7ff45815c67caffcee"; - sha256 = "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8adefaf2e284ef91baec3dbd3e10c868de69926/recipes/ac-cider"; - sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; - name = "recipe"; - }; - packageRequires = [ auto-complete cider cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-cider"; - license = lib.licenses.free; - }; - }) {}; - ac-clang = callPackage ({ auto-complete - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip - , yasnippet }: - melpaBuild { - pname = "ac-clang"; - ename = "ac-clang"; - version = "2.1.3"; - src = fetchFromGitHub { - owner = "yaruopooner"; - repo = "ac-clang"; - rev = "3294b968eb1a8317049190940193f9da47c085ef"; - sha256 = "160hda911vsc2zcs56560cpv7kj0966vjzwmc0md6fkz3wrj7w0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ffe0485048b85825f5e8ba95917d8c9dc64fe5de/recipes/ac-clang"; - sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib emacs pos-tip yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ac-clang"; - license = lib.licenses.free; - }; - }) {}; - ac-dcd = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , flycheck-dmd-dub - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-dcd"; - ename = "ac-dcd"; - version = "0.4"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "ac-dcd"; - rev = "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49"; - sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64142a4b14531409f45f02a8053ed8948f48221d/recipes/ac-dcd"; - sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; - name = "recipe"; - }; - packageRequires = [ auto-complete flycheck-dmd-dub ]; - meta = { - homepage = "https://melpa.org/#/ac-dcd"; - license = lib.licenses.free; - }; - }) {}; - ac-emacs-eclim = callPackage ({ auto-complete - , eclim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-emacs-eclim"; - ename = "ac-emacs-eclim"; - version = "0.4"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "94508ebd071ff1052d68a20f7f1bf1038439fe43"; - sha256 = "0l72zw93wv8ncn98d6ybnykhi3a60bc0kyx6z699wfhnnhhxhl0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/ac-emacs-eclim"; - sha256 = "0bkh7x6zj5drdvm9ji4vwqdxv7limd9a1idy8lsg0lcca3rjq3s5"; - name = "recipe"; - }; - packageRequires = [ auto-complete eclim ]; - meta = { - homepage = "https://melpa.org/#/ac-emacs-eclim"; - license = lib.licenses.free; - }; - }) {}; - ac-emoji = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-emoji"; - ename = "ac-emoji"; - version = "0.2"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-emoji"; - rev = "53677f754929ead403ccde64b714ebb6b8fc808e"; - sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15f591f9cba367b071046fef5ae01bbbd0475ce3/recipes/ac-emoji"; - sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-emoji"; - license = lib.licenses.free; - }; - }) {}; - ac-etags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-etags"; - ename = "ac-etags"; - version = "0.6"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-etags"; - rev = "8cd188b2e4908285ba8178bbd18a555edd7282e8"; - sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fda9c7def8bc54af4ab17dc049dd94324c8f10fa/recipes/ac-etags"; - sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/ac-etags"; - license = lib.licenses.free; - }; - }) {}; - ac-geiser = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , geiser - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-geiser"; - ename = "ac-geiser"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xiaohanyu"; - repo = "ac-geiser"; - rev = "0e2e36532336f27e3dc3b01fff55ad1a4329817d"; - sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/586ef409e3ae758b459b625d4bf0108f0525a085/recipes/ac-geiser"; - sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; - name = "recipe"; - }; - packageRequires = [ auto-complete geiser ]; - meta = { - homepage = "https://melpa.org/#/ac-geiser"; - license = lib.licenses.free; - }; - }) {}; - ac-haskell-process = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-haskell-process"; - ename = "ac-haskell-process"; - version = "0.7"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-haskell-process"; - rev = "0362d4323511107ec70e7165cb612f3ab01b712f"; - sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98bd259b6bfd9b49a8ae421807a4ab3821f09608/recipes/ac-haskell-process"; - sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; - name = "recipe"; - }; - packageRequires = [ auto-complete haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/ac-haskell-process"; - license = lib.licenses.free; - }; - }) {}; - ac-helm = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "ac-helm"; - ename = "ac-helm"; - version = "2.1"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "ac-helm"; - rev = "f2110576b0eb35850a7f638c1a991a9fa0c8da3a"; - sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50427d365c79aff84ac759d19ce177b4f7ed2751/recipes/ac-helm"; - sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; - name = "recipe"; - }; - packageRequires = [ auto-complete helm popup ]; - meta = { - homepage = "https://melpa.org/#/ac-helm"; - license = lib.licenses.free; - }; - }) {}; - ac-html = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html"; - ename = "ac-html"; - version = "0.31"; - src = fetchFromGitHub { - owner = "zhangkaiyulw"; - repo = "ac-html"; - rev = "415a78c3b84855b0c0411832d21a0fb63239b184"; - sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/ac-html"; - sha256 = "1vidmvylwwvraf8k63dvxv47ism49n6pp0f38l5rl4iaznhkdr84"; - name = "recipe"; - }; - packageRequires = [ auto-complete web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html"; - license = lib.licenses.free; - }; - }) {}; - ac-html-bootstrap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html-bootstrap"; - ename = "ac-html-bootstrap"; - version = "0.9.3"; - src = fetchFromGitHub { - owner = "osv"; - repo = "ac-html-bootstrap"; - rev = "591e1e996c820da218ea1eee0a500c556769f128"; - sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cf8aed547ca2390395dcf52d6c542b6944697af/recipes/ac-html-bootstrap"; - sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; - name = "recipe"; - }; - packageRequires = [ web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html-bootstrap"; - license = lib.licenses.free; - }; - }) {}; - ac-html-csswatcher = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "ac-html-csswatcher"; - ename = "ac-html-csswatcher"; - version = "0.1.7"; - src = fetchFromGitHub { - owner = "osv"; - repo = "ac-html-csswatcher"; - rev = "dadc3c595cf1708291096c03987f1981f3cabc6b"; - sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fba8b9bf212e6fa389eae8394d0b3bbce9eb0f92/recipes/ac-html-csswatcher"; - sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; - name = "recipe"; - }; - packageRequires = [ web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/ac-html-csswatcher"; - license = lib.licenses.free; - }; - }) {}; - ac-inf-ruby = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-inf-ruby"; - ename = "ac-inf-ruby"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-inf-ruby"; - rev = "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318"; - sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a72abe0fe1253149afb45b0d9e81b6846a926c0/recipes/ac-inf-ruby"; - sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; - name = "recipe"; - }; - packageRequires = [ auto-complete inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/ac-inf-ruby"; - license = lib.licenses.free; - }; - }) {}; - ac-ispell = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-ispell"; - ename = "ac-ispell"; - version = "0.7"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-ispell"; - rev = "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa"; - sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b41acb7387ebef9af2906fa16298b64d6431bfb0/recipes/ac-ispell"; - sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ac-ispell"; - license = lib.licenses.free; - }; - }) {}; - ac-mozc = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc }: - melpaBuild { - pname = "ac-mozc"; - ename = "ac-mozc"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "igjit"; - repo = "ac-mozc"; - rev = "4c6c8be4701010d9362184437c0f783e0335c631"; - sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b3f74039d397037e640cc371d24bdb60ac90bf1/recipes/ac-mozc"; - sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib mozc ]; - meta = { - homepage = "https://melpa.org/#/ac-mozc"; - license = lib.licenses.free; - }; - }) {}; - ac-octave = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ac-octave"; - ename = "ac-octave"; - version = "0.7"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "ac-octave"; - rev = "ffc12874320bbbde940e5d446898435e7da495f8"; - sha256 = "1h6g44rl5xia1l7shvihrnxlg0b8xsgvas212d1nvybc572yvbbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/634bd324148d6b74e1098362e06dc512456cde31/recipes/ac-octave"; - sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/ac-octave"; - license = lib.licenses.free; - }; - }) {}; - ac-php = callPackage ({ ac-php-core - , auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "ac-php"; - ename = "ac-php"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b"; - sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php"; - sha256 = "1wqwwgdln98snlq5msdx94b7985krvqfn264hxs1h94r85kgn1ba"; - name = "recipe"; - }; - packageRequires = [ ac-php-core auto-complete yasnippet ]; - meta = { - homepage = "https://melpa.org/#/ac-php"; - license = lib.licenses.free; - }; - }) {}; - ac-php-core = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , popup - , s - , xcscope }: - melpaBuild { - pname = "ac-php-core"; - ename = "ac-php-core"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "19753d091424dde53a5282a3a72f94a0ddb5fd57"; - sha256 = "18l8s85yi94v7mcm8g8mm9fqjrm8zfp3yxka54b8nzw2zyjvwzi8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/ac-php-core"; - sha256 = "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn"; - name = "recipe"; - }; - packageRequires = [ dash f php-mode popup s xcscope ]; - meta = { - homepage = "https://melpa.org/#/ac-php-core"; - license = lib.licenses.free; - }; - }) {}; - ac-racer = callPackage ({ auto-complete - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , racer }: - melpaBuild { - pname = "ac-racer"; - ename = "ac-racer"; - version = "0.2"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-ac-racer"; - rev = "4408c2d652dec0432e20c05e001db8222d778c6b"; - sha256 = "01154kqzh3pjy57vxhv27nm69p85a1fwl7r95c7pzmzxgxigfz1p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4318daf4dbb6864ee41f41287c89010fb811641/recipes/ac-racer"; - sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; - name = "recipe"; - }; - packageRequires = [ auto-complete emacs racer ]; - meta = { - homepage = "https://melpa.org/#/ac-racer"; - license = lib.licenses.free; - }; - }) {}; - ac-rtags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "ac-rtags"; - ename = "ac-rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "5e51faa79016b3302d8037e13329a4320de524f5"; - sha256 = "0qw6l96k2hxv3jvjw3nvas7m73jqj7mcchawzss8by92l61n0cx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ac-rtags"; - sha256 = "1w9v32di9135mm598c4506gxf0xr5jyz8dyd9dhga5d60q7g9641"; - name = "recipe"; - }; - packageRequires = [ auto-complete rtags ]; - meta = { - homepage = "https://melpa.org/#/ac-rtags"; - license = lib.licenses.free; - }; - }) {}; - ac-slime = callPackage ({ auto-complete - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "ac-slime"; - ename = "ac-slime"; - version = "0.8"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ac-slime"; - rev = "df6c4e88b5ba2d15d47a651ecf7edc0986624112"; - sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ac-slime"; - sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib slime ]; - meta = { - homepage = "https://melpa.org/#/ac-slime"; - license = lib.licenses.free; - }; - }) {}; - ace-flyspell = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-flyspell"; - ename = "ace-flyspell"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-flyspell"; - rev = "044d38fb8eb390ef1f51cf92cfe5c4ffd103044c"; - sha256 = "0yy7g2903v78a8pavhxi8c7vqbmifn2sjk84zhw5aygihp3d6vf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ace-flyspell"; - sha256 = "1zgywb90cg64nllbbk0x9ipm6znyc5yh7vkajrrnw06r5vabyp9y"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-flyspell"; - license = lib.licenses.free; - }; - }) {}; - ace-isearch = callPackage ({ ace-jump-mode - , avy - , emacs - , fetchFromGitHub - , fetchurl - , helm-swoop - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-isearch"; - ename = "ace-isearch"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "tam17aki"; - repo = "ace-isearch"; - rev = "7e041d058492c5c35ec70de0e7c5586043e7e5ec"; - sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/344f0cf784a027cde196b7d766024fb415fa1968/recipes/ace-isearch"; - sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; - name = "recipe"; - }; - packageRequires = [ ace-jump-mode avy emacs helm-swoop ]; - meta = { - homepage = "https://melpa.org/#/ace-isearch"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-buffer = callPackage ({ avy - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-buffer"; - ename = "ace-jump-buffer"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "ace-jump-buffer"; - rev = "02797c22c10a817dbbdfbd8fddceeba6c4f0499a"; - sha256 = "13wq92ia18q9vyhmvnz1grl1l18hxnaisb7hv13dhfc06alcsrw2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31100b5b899e942de7796bcbf6365625d1b62574/recipes/ace-jump-buffer"; - sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; - name = "recipe"; - }; - packageRequires = [ avy dash ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-buffer"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-helm-line = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-helm-line"; - ename = "ace-jump-helm-line"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-jump-helm-line"; - rev = "8779050e4794279946892b6a156d0086554a9c9e"; - sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8925f3daa92ff39776b55642aa9ec0e49245c0c7/recipes/ace-jump-helm-line"; - sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; - name = "recipe"; - }; - packageRequires = [ avy helm ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-helm-line"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-mode"; - ename = "ace-jump-mode"; - version = "2.0"; - src = fetchFromGitHub { - owner = "winterTTr"; - repo = "ace-jump-mode"; - rev = "a62a6867811cd739dd98a5e00a2d2e17edfb5b71"; - sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ace-jump-mode"; - sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ace-jump-mode"; - license = lib.licenses.free; - }; - }) {}; - ace-jump-zap = callPackage ({ ace-jump-mode - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-jump-zap"; - ename = "ace-jump-zap"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "ace-jump-zap"; - rev = "1a9bf779d8f9225ede9ec482b840942bb58111df"; - sha256 = "0r875w4aq3p091hcrpkpqsivn1q9hmq2ppa1rvxzdaq0rhl9kfz4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b435db3b79333a20aa27a72f33c431f0a019ba1/recipes/ace-jump-zap"; - sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; - name = "recipe"; - }; - packageRequires = [ ace-jump-mode dash ]; - meta = { - homepage = "https://melpa.org/#/ace-jump-zap"; - license = lib.licenses.free; - }; - }) {}; - ace-link = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-link"; - ename = "ace-link"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ace-link"; - rev = "7b9bc8d916b60a501c32b63ce81f315486ad44e9"; - sha256 = "147dz79vg4ym5wg3d544bw2khdb2j3hr73rw4qfm64wf0q2dj0vk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68032f40c0ce4170a22db535be4bfa7099f61f85/recipes/ace-link"; - sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-link"; - license = lib.licenses.free; - }; - }) {}; - ace-pinyin = callPackage ({ ace-jump-mode - , avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "ace-pinyin"; - ename = "ace-pinyin"; - version = "0.2.5"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "ace-pinyin"; - rev = "c444d8d6861dafd06dd41e694dc9db32652e3b7c"; - sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ace-pinyin"; - sha256 = "1b3asvzm3k66lsdkmlsgmnf8xlyic8zv294j1iahzkwm6bzqj8wd"; - name = "recipe"; - }; - packageRequires = [ ace-jump-mode avy pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/ace-pinyin"; - license = lib.licenses.free; - }; - }) {}; - ace-popup-menu = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-popup-menu"; - ename = "ace-popup-menu"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "ace-popup-menu"; - rev = "e7cc8bace9dda5c9fbe545c6fbd41c12679c3d7d"; - sha256 = "1khqh5b9c7ass3q2gc04ayc8idanabkyfpaqvfnag063x16fv40c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53742e2242101c4b3b3901f5c74e24facf62c7d6/recipes/ace-popup-menu"; - sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/ace-popup-menu"; - license = lib.licenses.free; - }; - }) {}; - ace-window = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ace-window"; - ename = "ace-window"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "ace-window"; - rev = "56ef753268de8dffebaa96607fb9f0246ebe9d0f"; - sha256 = "0zx0d695nrh2xiw9ylzr10fd7chkcb6dvhw8fkcyavlyb34dj49y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe131d3c2ea498e4df30ba539a6b91c00f5b07/recipes/ace-window"; - sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/ace-window"; - license = lib.licenses.free; - }; - }) {}; - actionscript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "actionscript-mode"; - ename = "actionscript-mode"; - version = "7.2.2"; - src = fetchFromGitHub { - owner = "austinhaas"; - repo = "actionscript-mode"; - rev = "fddd7220342d29e7eca734f6b798b7a2849717a5"; - sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c11e74f2156f109b713380cebf83022d7159d4a/recipes/actionscript-mode"; - sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/actionscript-mode"; - license = lib.licenses.free; - }; - }) {}; - activity-watch-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , request }: - melpaBuild { - pname = "activity-watch-mode"; - ename = "activity-watch-mode"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "pauldub"; - repo = "activity-watch-mode"; - rev = "27a0841b32dfd2b691a1dcf3a4a50d74660676b1"; - sha256 = "1hfmll3g33529pshzvh2gxqr0h53p1v68wq0zlq2h2wfml89bzr9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9780c413da8001651191fb8f9708fe9691d714cf/recipes/activity-watch-mode"; - sha256 = "0k0ai6658gb43c4ylrq66zqzrfh6ksvkf0kxj2qx8a5a1aw9bd4d"; - name = "recipe"; - }; - packageRequires = [ emacs projectile request ]; - meta = { - homepage = "https://melpa.org/#/activity-watch-mode"; - license = lib.licenses.free; - }; - }) {}; - adafruit-wisdom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "adafruit-wisdom"; - ename = "adafruit-wisdom"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "adafruit-wisdom.el"; - rev = "77a2e92d55a419055dd67fc85dc62fb3166d3b8d"; - sha256 = "00bdhrzkyzkcayqhakk93fqyr6ciwswrizljcyx242am6x5fc77s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18483af52c26f719fbfde626db84a67750bf4754/recipes/adafruit-wisdom"; - sha256 = "0ckh420cirspwg2yd5q9y1az03j2l1jzd67g8dpvqjkgdp485gad"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/adafruit-wisdom"; - license = lib.licenses.free; - }; - }) {}; - add-hooks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "add-hooks"; - ename = "add-hooks"; - version = "3.1.1"; - src = fetchFromGitHub { - owner = "nickmccurdy"; - repo = "add-hooks"; - rev = "a1043b7cdb1ea98055a2c99f8d37584a553ca362"; - sha256 = "1jv9fpcsm572zg0j1mbpbfkqgdlqapy89xhhj19pswkhjns1y2wl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/901f846aef46d512dc0a1770bab7f07c0ae330cd/recipes/add-hooks"; - sha256 = "09a5b3prznibkb5igfn8x3vsjrlkh3534zycs8g25g4li87mcb6p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/add-hooks"; - license = lib.licenses.free; - }; - }) {}; - add-node-modules-path = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "add-node-modules-path"; - ename = "add-node-modules-path"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "add-node-modules-path"; - rev = "6f7801b2c41e3711406b7e1654257ad5557f5bb3"; - sha256 = "1pfgy1k7vp34k4zb9835y3x4jmf81na60vsf80wlgvfafwk170z6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63e99d8fc0678d7b1831cae8940e9e6547780861/recipes/add-node-modules-path"; - sha256 = "0gbl875fgqr5np6r4cs8njs6fil1qmy8a5wir88x78ybdwwxsmbl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/add-node-modules-path"; - license = lib.licenses.free; - }; - }) {}; - addressbook-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "addressbook-bookmark"; - ename = "addressbook-bookmark"; - version = "1.0"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "addressbook-bookmark"; - rev = "ad3c73369b804a48803fdfdf2ab613e6220260de"; - sha256 = "012kfqkmpagn8jrp09acpx631qmjim7b33j0pahv1fcqhin89pn6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a497aec6e27efa627068542cae5a16c01c3c6d3c/recipes/addressbook-bookmark"; - sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/addressbook-bookmark"; - license = lib.licenses.free; - }; - }) {}; - adoc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markup-faces - , melpaBuild }: - melpaBuild { - pname = "adoc-mode"; - ename = "adoc-mode"; - version = "0.6.6"; - src = fetchFromGitHub { - owner = "sensorflo"; - repo = "adoc-mode"; - rev = "995785538489e573ad208f73c4e833ba60c5cfdb"; - sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/adoc-mode"; - sha256 = "0jd3zr4zpb4qqn504azl0y02cryv7n9wphv64b0fbpipr7w5hm2c"; - name = "recipe"; - }; - packageRequires = [ markup-faces ]; - meta = { - homepage = "https://melpa.org/#/adoc-mode"; - license = lib.licenses.free; - }; - }) {}; - aes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aes"; - ename = "aes"; - version = "0.9"; - src = fetchFromGitHub { - owner = "Sauermann"; - repo = "emacs-aes"; - rev = "b7d5da89c3443292e4f0b1c9d254d459933cf5af"; - sha256 = "0nz1lf77qr3vm90rm02d4inw8glav722rxsiqds76m4xsjrq02m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/33ca3106852f82624b36c7e3f03f5c0c620f304f/recipes/aes"; - sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aes"; - license = lib.licenses.free; - }; - }) {}; - ag = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ag"; - ename = "ag"; - version = "0.47"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "ag.el"; - rev = "b4b0e39b7fb706fc3208e238c2a7e517ebdb999c"; - sha256 = "1ra5nrc4nvp41rcdc4nkjs9lk7131zd54v63c6lyi3zkg3dyl7im"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67f410ac3a58a038e194bcf174bc0a8ceceafb9a/recipes/ag"; - sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash s ]; - meta = { - homepage = "https://melpa.org/#/ag"; - license = lib.licenses.free; - }; - }) {}; - aggressive-indent = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aggressive-indent"; - ename = "aggressive-indent"; - version = "1.9.0"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "aggressive-indent-mode"; - rev = "d6778ae89cd2d40949aa076a43e327f7acff59c3"; - sha256 = "0xya19w1bwpqrrqvmms0lfhqb168iv7j6kvnn49zbynnf9dhgr9w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/aggressive-indent"; - sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/aggressive-indent"; - license = lib.licenses.free; - }; - }) {}; - ahk-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ahk-mode"; - ename = "ahk-mode"; - version = "1.5.6"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "ahk-mode"; - rev = "bf3205efe7b7a40f3c8978f68f14ea3a939cffa8"; - sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ahk-mode"; - sha256 = "0jx5vhlfw5r6l4125bjjbf7dl1589ac6j419swx26k3p8p58d93r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ahk-mode"; - license = lib.licenses.free; - }; - }) {}; - ahungry-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ahungry-theme"; - ename = "ahungry-theme"; - version = "1.10.0"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "color-theme-ahungry"; - rev = "45bf75f17752c8e8dd4c8a4531c0aa419cdccb84"; - sha256 = "03xypgq6vy7819r42g23kgn7p775bc0v9blzhi0zp5c61p4cw8v3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/520295978fd7de3f4266dd69cc30d0b4fdf09db0/recipes/ahungry-theme"; - sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ahungry-theme"; - license = lib.licenses.free; - }; - }) {}; - aio = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aio"; - ename = "aio"; - version = "1.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-aio"; - rev = "077722896e649e7a33dcafbc4585686a29423979"; - sha256 = "1y7j10j74r3fy0rcb8g3cm9nlls34qb0pz9xkia7psp77syrlz54"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95744cc13e7ac8d9acd794004d951f62e5880fa4/recipes/aio"; - sha256 = "0sd8g2w4n9r2ndmp353v89xvky8043vmd92v2ggbl45chhpjl5zw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/aio"; - license = lib.licenses.free; - }; - }) {}; - airline-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline }: - melpaBuild { - pname = "airline-themes"; - ename = "airline-themes"; - version = "1.7"; - src = fetchFromGitHub { - owner = "AnthonyDiGirolamo"; - repo = "airline-themes"; - rev = "bd9624a94618f4144762032a93549f53ffc1e7b3"; - sha256 = "1rlszg7z5k8c6fmjk4sjgrc9xgcjc1jah6c7kdl9kypha7y8s4bq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/addeb923176132a52807308fa5e71d41c9511802/recipes/airline-themes"; - sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; - name = "recipe"; - }; - packageRequires = [ powerline ]; - meta = { - homepage = "https://melpa.org/#/airline-themes"; - license = lib.licenses.free; - }; - }) {}; - alan-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "alan-mode"; - ename = "alan-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "M-industries"; - repo = "AlanForEmacs"; - rev = "0089e7c874c6d35e55be6ecd479ada2b97688a1f"; - sha256 = "0mw9ja0f2jsj0vqk1zqwpzxm9j2yfahiibd8xkhx0wan0dggx592"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e52314db81dad3517ab400099b032260c3e3e6f/recipes/alan-mode"; - sha256 = "1528rh26kr9zj43djbrfb7vmq78spfay3k3ps5apc580ipx1a4hg"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/alan-mode"; - license = lib.licenses.free; - }; - }) {}; - alarm-clock = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alarm-clock"; - ename = "alarm-clock"; - version = "1.0"; - src = fetchFromGitHub { - owner = "wlemuel"; - repo = "alarm-clock"; - rev = "d5706ace823f75136107c09c6dad79df7c3b290e"; - sha256 = "1jaagkzfdn9z1plw7ky7gabp45gv0a0gap2a55is1i9cyy83kzmw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/440fe05fa0d10d54e9c52e2e54e71a1321325376/recipes/alarm-clock"; - sha256 = "1cgrj6dzpx0q15qzr9d342wg8w92c2r4zmk7rif2h87qxr66fbrg"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/alarm-clock"; - license = lib.licenses.free; - }; - }) {}; - alchemist = callPackage ({ company - , dash - , elixir-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "alchemist"; - ename = "alchemist"; - version = "1.8.2"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "alchemist.el"; - rev = "34caeed1bd231c7dfa8d2b9aa5c5de2b2a059601"; - sha256 = "1cci0sq568ghx6x7my96m0iiwvqz2f4dh6k3gn3mmfyvi7bmrpww"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6616dc61d17c5bd89bc4d226baab24a1f8e49b3e/recipes/alchemist"; - sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; - name = "recipe"; - }; - packageRequires = [ company dash elixir-mode emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/alchemist"; - license = lib.licenses.free; - }; - }) {}; - alda-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alda-mode"; - ename = "alda-mode"; - version = "0.2.0"; - src = fetchFromGitLab { - owner = "jgkamat"; - repo = "alda-mode"; - rev = "97c20b1fd9ad3f138e1100e3a837d05108c4c564"; - sha256 = "1wsvs756cbwbxlaxij352kman7196m39684m6sqnfb685cfrwzdj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/848cb17d871287c401496e4483e400b44696e89d/recipes/alda-mode"; - sha256 = "0qvaxh4392rpxikylcnn31z13wabaydj5aa4jyn499ggqdz7liw9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/alda-mode"; - license = lib.licenses.free; - }; - }) {}; - alect-themes = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "alect-themes"; - ename = "alect-themes"; - version = "0.9"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "alect-themes"; - rev = "a24065dc780738e914140d617bfe119c889d9c78"; - sha256 = "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84c25a290ae4bcc4674434c83c66ae128e4c4282/recipes/alect-themes"; - sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/alect-themes"; - license = lib.licenses.free; - }; - }) {}; - alert = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , gntp - , lib - , log4e - , melpaBuild }: - melpaBuild { - pname = "alert"; - ename = "alert"; - version = "1.3"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "alert"; - rev = "9f329be87820474925f29b52a1131084c8ea95b9"; - sha256 = "0lc0p5cl4hfrzw1z2ghb11k1lvljn5m08jw5fmgwgxv667kwh49r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/113953825ac4ff98d90a5375eb48d8b7bfa224e7/recipes/alert"; - sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; - name = "recipe"; - }; - packageRequires = [ cl-lib gntp log4e ]; - meta = { - homepage = "https://melpa.org/#/alert"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize }: - melpaBuild { - pname = "all-the-icons"; - ename = "all-the-icons"; - version = "3.2.0"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "all-the-icons.el"; - rev = "52d1f2d36468146c93aaf11399f581401a233306"; - sha256 = "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/604c01aa15927bd122260529ff0f4bb6a8168b7e/recipes/all-the-icons"; - sha256 = "00ba4gkfvg38l4s0gsb4asvv1hfw9yjl2786imybzy7bkg9f9x3q"; - name = "recipe"; - }; - packageRequires = [ emacs memoize ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons"; - license = lib.licenses.free; - }; - }) {}; - all-the-icons-ivy = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "all-the-icons-ivy"; - ename = "all-the-icons-ivy"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "asok"; - repo = "all-the-icons-ivy"; - rev = "b768b83716100701a5cda9c071da2bcac34bd6a4"; - sha256 = "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9496e6bb6f03f35444fb204860bc50e5e1b36214/recipes/all-the-icons-ivy"; - sha256 = "1xv67gxd2sqj6zld4i3qcid0x5qsbd7baz55m93y1ivdqi7x7gr2"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/all-the-icons-ivy"; - license = lib.licenses.free; - }; - }) {}; - amd-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , js2-mode - , js2-refactor - , lib - , makey - , melpaBuild - , projectile - , s - , seq }: - melpaBuild { - pname = "amd-mode"; - ename = "amd-mode"; - version = "2.8"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "amd-mode.el"; - rev = "977b53e28b3141408fff4814be8b67ee23650cac"; - sha256 = "0m80bwar80qsga735cqrn6rbvfz4w9a036zh8inhsigylv3vwqjv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4d6e9935e4935c9de769c7bf1c1b6dd256e10da/recipes/amd-mode"; - sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; - name = "recipe"; - }; - packageRequires = [ - emacs - f - js2-mode - js2-refactor - makey - projectile - s - seq - ]; - meta = { - homepage = "https://melpa.org/#/amd-mode"; - license = lib.licenses.free; - }; - }) {}; - ameba = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ameba"; - ename = "ameba"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "ameba.el"; - rev = "51bb5e2aea2fb9fea83e5fed5e8df479f2d85935"; - sha256 = "1vrhyi5fc65d3czq3jalpjvm33vrxbars51s1qhv7alixqnrrpv6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/ameba"; - sha256 = "0500r0yihd208zc8cvdqgfn58a7mrhfnb0lqy509b4k0i8y0v5mq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ameba"; - license = lib.licenses.free; - }; - }) {}; - amx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "amx"; - ename = "amx"; - version = "3.2"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "amx"; - rev = "09e919512692dc31df079ad2cd1a3ca3ac4f1949"; - sha256 = "180841qv24z6kn3qry5216ija1h50ymm4kcmcxg4pc47bhzcjn1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c55bfad05343b2b0f3150fd2b4adb07a1768c1c0/recipes/amx"; - sha256 = "1ikhjvkca0lsb9j719yf6spg6nwc0qaydkd8aax162sis7kp9fap"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/amx"; - license = lib.licenses.free; - }; - }) {}; - anaconda-mode = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic - , s }: - melpaBuild { - pname = "anaconda-mode"; - ename = "anaconda-mode"; - version = "0.1.12"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "anaconda-mode"; - rev = "1879842b0b3772e48e558340a5667fad42526a57"; - sha256 = "00plc9jsvzh151xmva6xdpfqyxcvy3z3vnsn4g8wpw94n647lrxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8/recipes/anaconda-mode"; - sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pythonic s ]; - meta = { - homepage = "https://melpa.org/#/anaconda-mode"; - license = lib.licenses.free; - }; - }) {}; - anaphora = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anaphora"; - ename = "anaphora"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "anaphora"; - rev = "3b2da3f759b244975852e79721c4a2dbad3905cf"; - sha256 = "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8505db1945071a15ba0f2bb74b58d4a6875ca7d6/recipes/anaphora"; - sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anaphora"; - license = lib.licenses.free; - }; - }) {}; - android-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "android-mode"; - ename = "android-mode"; - version = "0.5.1"; - src = fetchFromGitHub { - owner = "remvee"; - repo = "android-mode"; - rev = "f8cabafaa266b56fcf4b3c6942b3ae062735251a"; - sha256 = "0npx54w565mkxkgkpv02dgmfc44i1256p0w331pf3nfxq145xh27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77633aa340803a433570327943fbe31b396f4355/recipes/android-mode"; - sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/android-mode"; - license = lib.licenses.free; - }; - }) {}; - angular-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "angular-mode"; - ename = "angular-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "angularjs-mode"; - rev = "026558260eb2890c72df6a59ae8762669772282b"; - sha256 = "0ljwaccb0jrp7zrnkp0383185vg3r9pf324al72d445syff5pa6y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/angular-mode"; - sha256 = "0pq4lyhppzi806n1k07n0gdhr8z8z71ri12my0pl81rl5j2z69l2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/angular-mode"; - license = lib.licenses.free; - }; - }) {}; - angular-snippets = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "angular-snippets"; - ename = "angular-snippets"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "angular-snippets.el"; - rev = "8f737c2cf5fce758a7a3833ebad2952b5398568d"; - sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96a0ad5fdbc52f803846e580856fb9c58181c020/recipes/angular-snippets"; - sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/angular-snippets"; - license = lib.licenses.free; - }; - }) {}; - anki-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , request - , s }: - melpaBuild { - pname = "anki-mode"; - ename = "anki-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "anki-mode"; - rev = "06dd1bd49b7a2b43cf9b744dd5caf67809f39d74"; - sha256 = "0ryyyihvvrcipj2bkx24cx1ibgcymnsbn79ibvmhb3wbad3hr072"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc02d06e7c7e9230e4b082923b889e1e83676263/recipes/anki-mode"; - sha256 = "1d429ws6kmswcyk0dnb303z01kq475n60a520hj258x23vp8802q"; - name = "recipe"; - }; - packageRequires = [ dash emacs markdown-mode request s ]; - meta = { - homepage = "https://melpa.org/#/anki-mode"; - license = lib.licenses.free; - }; - }) {}; - annotate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "annotate"; - ename = "annotate"; - version = "0.4.7"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "annotate.el"; - rev = "e6af7f8ef7d241fdc9f866d57dce24beb4bb6b87"; - sha256 = "19a419rnqqsmvrcl2vwy3gl7mvbfg669vyin2h2xpm56rxsinvy1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3aae88b8e3b080501195d291012deab31aaf35f7/recipes/annotate"; - sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/annotate"; - license = lib.licenses.free; - }; - }) {}; - annoying-arrows-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "annoying-arrows-mode"; - ename = "annoying-arrows-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "annoying-arrows-mode.el"; - rev = "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3"; - sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/annoying-arrows-mode"; - sha256 = "1vswlfypn6ijn0wwa3dsqkz5n3pillpmli2ha4q9snhd3a667vyh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/annoying-arrows-mode"; - license = lib.licenses.free; - }; - }) {}; - ansi = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ansi"; - ename = "ansi"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ansi.el"; - rev = "a042c5954453bab9a74177e2b78ad17a824caebc"; - sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ansi"; - sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/ansi"; - license = lib.licenses.free; - }; - }) {}; - ansible = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ansible"; - ename = "ansible"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-ansible"; - rev = "8a097176d6772b6667254dbbe19c5fb64527bf5d"; - sha256 = "1m2cb88jb1wxa9rydkbn5llx2gql453l87b4cgzsjllha6j1488k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e45bf58b980ff542a5e887707a6361eb5ac0492/recipes/ansible"; - sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; - name = "recipe"; - }; - packageRequires = [ f s ]; - meta = { - homepage = "https://melpa.org/#/ansible"; - license = lib.licenses.free; - }; - }) {}; - ansible-doc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ansible-doc"; - ename = "ansible-doc"; - version = "0.4"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "ansible-doc.el"; - rev = "bc8128a85a79b14f4a121105d87a5eddc33975ad"; - sha256 = "0z3y69sfzka764wjbx31dywdq4d6bfsafv2gmmbpmxqmwfmy8sz4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1daaaa7462f0b83c15ed9d9e7e6d0ee94434b8e9/recipes/ansible-doc"; - sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ansible-doc"; - license = lib.licenses.free; - }; - }) {}; - ansible-vault = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ansible-vault"; - ename = "ansible-vault"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "ansible-vault-mode"; - rev = "57cf7e6da30250587c28ebf592d7bca9a3bae1df"; - sha256 = "1m9r3vicmljypq6mhgr86lzgi26dnnlp7g0jbl9bjdk48xfg79wb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bff0da29a9b883e53a3d211c5577a3e0bc263a0/recipes/ansible-vault"; - sha256 = "0pmsvpc866rgcajb2ihhb62g3rwhda7vvq2kxkvr566y609vv021"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ansible-vault"; - license = lib.licenses.free; - }; - }) {}; - anti-zenburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anti-zenburn-theme"; - ename = "anti-zenburn-theme"; - version = "2.5.1"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "anti-zenburn-theme"; - rev = "c80cc51bb1aaf11dd53b9d08e01d61bc9b32622f"; - sha256 = "1c97d2jkh7iawgsbcg19gha9ffnxypbcfz0sgcsgf9vy4bvnc350"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f6f803dc99a1b1fdb5b4e79f1c9cf72b702d091/recipes/anti-zenburn-theme"; - sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anti-zenburn-theme"; - license = lib.licenses.free; - }; - }) {}; - anyins = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anyins"; - ename = "anyins"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "antham"; - repo = "anyins"; - rev = "1fa85deff82f1dfbd7a5ae89ad427c2cd417f9af"; - sha256 = "1v5s43myf8vhgyq64frlbcn87728za7hc9q2v7b2x7h2r6zz6fxr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a367da2cb71fc0b144f9e608dc4857624991f19c/recipes/anyins"; - sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/anyins"; - license = lib.licenses.free; - }; - }) {}; - anzu = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "anzu"; - ename = "anzu"; - version = "0.62"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-anzu"; - rev = "3328619fec138862302bbe1b9acf2eea624a4c5e"; - sha256 = "1lzvc0ihcbplir4hqfyxfqpsd78arz15gk92kmq4f8ggbkl37fan"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/anzu"; - sha256 = "181hzwy9bc0zfhax26p20q9cjibrmi9ngps5fa3ja5g6scxfs9g1"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/anzu"; - license = lib.licenses.free; - }; - }) {}; - apache-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apache-mode"; - ename = "apache-mode"; - version = "2.2.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "apache-mode"; - rev = "354f9302a8d805ac80d846adcd1cef10830b3d51"; - sha256 = "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/apache-mode"; - sha256 = "0wzfx3kaiwvya30ihq3vpdhy6znkzf25w5x43x457ifdn2vrh9zi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apache-mode"; - license = lib.licenses.free; - }; - }) {}; - apib-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "apib-mode"; - ename = "apib-mode"; - version = "0.7"; - src = fetchFromGitHub { - owner = "w-vi"; - repo = "apib-mode"; - rev = "6cc7c6f21b8e415b1718bb6a07ab2182e9e9dde6"; - sha256 = "1717f78kaqkmbhfwb9kzsv5wi2zabcbwb4wh1jklhcaalvmk3z7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ebb04f975d8226a76260895399c937d6a1940/recipes/apib-mode"; - sha256 = "0y3n0xmyc4gkypq07v4sp0i6291qaj2m13zkg6mxp61zm669v2fb"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/apib-mode"; - license = lib.licenses.free; - }; - }) {}; - apiwrap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apiwrap"; - ename = "apiwrap"; - version = "0.5"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "apiwrap.el"; - rev = "e4c9c57d6620a788ec8a715ff1bb50542edea3a6"; - sha256 = "0xpb8mmssajy42r2h1m9inhv1chx19wkp5p0p63nwpk7mhjj8bis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0197fd3657e65e3826375d9b6f19da3058366c91/recipes/apiwrap"; - sha256 = "0n50n1n5pvcgcp1gmna3ci36pnbanjdbjpgv7zyarlb80hywbiyw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/apiwrap"; - license = lib.licenses.free; - }; - }) {}; - apples-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apples-mode"; - ename = "apples-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "tequilasunset"; - repo = "apples-mode"; - rev = "fac47b6255e79a373c5d5e1abe66ea5d74588e9f"; - sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c/recipes/apples-mode"; - sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apples-mode"; - license = lib.licenses.free; - }; - }) {}; - aproject = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aproject"; - ename = "aproject"; - version = "0.4"; - src = fetchFromGitHub { - owner = "vietor"; - repo = "aproject"; - rev = "702caf5392288dfd821b1e744fef0bb4fd9f9281"; - sha256 = "18n3gsghj7sxxd6kpp21b2p7qwv93giwyr1zfvgbs8pzsbc8i9rx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de10c48976352f273e8363c2f6fa60602ee86c9b/recipes/aproject"; - sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aproject"; - license = lib.licenses.free; - }; - }) {}; - apropospriate-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "apropospriate-theme"; - ename = "apropospriate-theme"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "apropospriate-theme"; - rev = "0d918da74a7a225fe5a586e26f5d834e579c5323"; - sha256 = "0hqsq7y89crcmqcfbgn885dlvj7f7b0zd9q6adbhyscphk7kasjw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1da33013f15825ab656260ce7453b8127e0286f4/recipes/apropospriate-theme"; - sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/apropospriate-theme"; - license = lib.licenses.free; - }; - }) {}; - archive-rpm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "archive-rpm"; - ename = "archive-rpm"; - version = "0.1"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "archive-rpm"; - rev = "59f83caebbd2f92fd634f6968e6d17b50ffa3dc7"; - sha256 = "11ssqaax4jl7r3z5agzmc74sjsfvl0m3xvp015ncqzpzysla47g3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5f5653e62afdc022eac30bda3d21bd2d2625d2e/recipes/archive-rpm"; - sha256 = "0s53zbn71lb008gw3f0b5w4q0pw0vgiqbffgnyib24sh03ijl7z7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/archive-rpm"; - license = lib.licenses.free; - }; - }) {}; - artbollocks-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "artbollocks-mode"; - ename = "artbollocks-mode"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "sachac"; - repo = "artbollocks-mode"; - rev = "583c7048a1b09cd79554423d5115f5ddd129d190"; - sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22b237ab91ddd3c17986ea12e6a32f2ce62d3a79/recipes/artbollocks-mode"; - sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/artbollocks-mode"; - license = lib.licenses.free; - }; - }) {}; - arview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "arview"; - ename = "arview"; - version = "1.2"; - src = fetchFromGitHub { - owner = "afainer"; - repo = "arview"; - rev = "5437b4221b64b238c273a651d4792c577dba6d45"; - sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31574cd756f4f93e2c6bcad5eca33a3294cccd54/recipes/arview"; - sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/arview"; - license = lib.licenses.free; - }; - }) {}; - asilea = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "asilea"; - ename = "asilea"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "asilea"; - rev = "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f"; - sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/858e673c66e876d80f41d47d307c944d7bdb147d/recipes/asilea"; - sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/asilea"; - license = lib.licenses.free; - }; - }) {}; - assess = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , m-buffer - , melpaBuild }: - melpaBuild { - pname = "assess"; - ename = "assess"; - version = "0.5"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "assess"; - rev = "7a3189a5870fb20d179ff3ea761707a046814966"; - sha256 = "0qif6q4j0i5p2izj9p7sv1j2s6a95zklswfx8x2shv22dkphznkl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f917a34506193f2674b195569dfd3c13ba62c1d/recipes/assess"; - sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; - name = "recipe"; - }; - packageRequires = [ emacs m-buffer ]; - meta = { - homepage = "https://melpa.org/#/assess"; - license = lib.licenses.free; - }; - }) {}; - async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "async"; - ename = "async"; - version = "1.9.3"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "emacs-async"; - rev = "caad15ce64c1aac5e17d480c59ee6c85ebcb6bb2"; - sha256 = "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/async"; - sha256 = "0s2qrmkqqfgi1ilzbj0rfk27f89p4dycdl1lqkbsm23j0zya53w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/async"; - license = lib.licenses.free; - }; - }) {}; - atom-one-dark-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "atom-one-dark-theme"; - ename = "atom-one-dark-theme"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "jonathanchu"; - repo = "atom-one-dark-theme"; - rev = "c2ae343971f8cda7f5b5392552ce9281f52e53de"; - sha256 = "1xyn8qiikng6vf5rbpfqz9ac10c69aip0w6v9l46w0qxsy8svyaj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ba1c4625c9603372746a6c2edb69d65f0ef79f5/recipes/atom-one-dark-theme"; - sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/atom-one-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - atomic-chrome = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , websocket }: - melpaBuild { - pname = "atomic-chrome"; - ename = "atomic-chrome"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "atomic-chrome"; - rev = "5518562aed5b6897a292fc5048a8f590e6047f30"; - sha256 = "1javrl1aa6hv286hk20yc3h4gvg21a2hagkx0z26g97h4jzb6m24"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35785773942a5510e2317ded5bdf872ffe434e8c/recipes/atomic-chrome"; - sha256 = "0dx12mjdc4vhbvrcl61a7j247mgs71vvy0qqj6czbpfawfl46am9"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist websocket ]; - meta = { - homepage = "https://melpa.org/#/atomic-chrome"; - license = lib.licenses.free; - }; - }) {}; - attrap = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "attrap"; - ename = "attrap"; - version = "1.0"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "attrap"; - rev = "a971acb251e343d4c6b0253f69dcce0c2cee0fac"; - sha256 = "0p93y151730ga7v9xa5gkp306s32qw53086i829fcbxf83c2wslv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7420eca80a8c1776d68b1f121511cc265cc70dc/recipes/attrap"; - sha256 = "1gxnrlsn9xcnnx0nhjxnhrz9bdpk2kpzjhj8jhjmwws9y361fimh"; - name = "recipe"; - }; - packageRequires = [ dash emacs f flycheck s ]; - meta = { - homepage = "https://melpa.org/#/attrap"; - license = lib.licenses.free; - }; - }) {}; - auctex-latexmk = callPackage ({ auctex - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auctex-latexmk"; - ename = "auctex-latexmk"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "auctex-latexmk"; - rev = "64967712b1bbfac8069aa5940fddef938a692a1a"; - sha256 = "0syd65b6x6lz6as5ih5pldmwgbmq0v3d9pay2n04vqrvsij6m3qy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f48af615c56f093dff417a5d3b705f9993c518f/recipes/auctex-latexmk"; - sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; - name = "recipe"; - }; - packageRequires = [ auctex ]; - meta = { - homepage = "https://melpa.org/#/auctex-latexmk"; - license = lib.licenses.free; - }; - }) {}; - aurel = callPackage ({ bui - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aurel"; - ename = "aurel"; - version = "0.9"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "aurel"; - rev = "fc7ad208f43f8525f84a18941c9b55f956df8961"; - sha256 = "0mcbw8p4wrnnr39wzkfz9kc899w0k1jb00q1926mchf202cmnz94"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1612acd2cf1fea739739608113923ec51d307e9/recipes/aurel"; - sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; - name = "recipe"; - }; - packageRequires = [ bui dash emacs ]; - meta = { - homepage = "https://melpa.org/#/aurel"; - license = lib.licenses.free; - }; - }) {}; - aurora-config-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "aurora-config-mode"; - ename = "aurora-config-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "bdd"; - repo = "aurora-config-mode.el"; - rev = "0a7ca7987c3a0824e25470389c7d25c337a81593"; - sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10a44bed8edee646bf68abf7dffbe352a137a278/recipes/aurora-config-mode"; - sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/aurora-config-mode"; - license = lib.licenses.free; - }; - }) {}; - auth-source-pass = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auth-source-pass"; - ename = "auth-source-pass"; - version = "5.0.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "auth-password-store"; - rev = "df074612114c3cc2fa1c3023f26ff182f9b1190a"; - sha256 = "0qnqqdpbfr06nqw4hq7c1s7yh7zyrv4gqjj06v70cavjml7pagp6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e268441634a6e58a00e577d6e2292fa226c11b8/recipes/auth-source-pass"; - sha256 = "0icwdwz2zy3f9ynksr81pgq482iapsbx8lpyssiklyw0xgd1k8ak"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auth-source-pass"; - license = lib.licenses.free; - }; - }) {}; - auto-compile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , packed }: - melpaBuild { - pname = "auto-compile"; - ename = "auto-compile"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "auto-compile"; - rev = "e6bbb1371324c8884af3b201e9adbc9296eb2ff4"; - sha256 = "1jyn7yvbvk7cydy3pzwqlb0yxf5cxdiipa1gnigdk9wdbj68wjjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/auto-compile"; - sha256 = "08k9wqk4yysps8n5n50v7lpadwsnm553pv9p7m242fwbgbsgz6nf"; - name = "recipe"; - }; - packageRequires = [ emacs packed ]; - meta = { - homepage = "https://melpa.org/#/auto-compile"; - license = lib.licenses.free; - }; - }) {}; - auto-complete = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "auto-complete"; - ename = "auto-complete"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "auto-complete"; - rev = "0655b7f1e6c0f8475adc55f2b86404a877f26a77"; - sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/auto-complete"; - sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; - name = "recipe"; - }; - packageRequires = [ cl-lib popup ]; - meta = { - homepage = "https://melpa.org/#/auto-complete"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-clang-async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-clang-async"; - ename = "auto-complete-clang-async"; - version = "0.5"; - src = fetchFromGitHub { - owner = "Golevka"; - repo = "emacs-clang-complete-async"; - rev = "5eb63c8a1e4ca3af124baf0f8f801b949888f9b8"; - sha256 = "09f8hqs9n13lkb7b352ig07b9xm1w0mbbnqfy2s5cw4cppmakf2n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23aa24b025216359c5e600eee2f2cd4ecc7556e3/recipes/auto-complete-clang-async"; - sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-complete-clang-async"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-exuberant-ctags = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-exuberant-ctags"; - ename = "auto-complete-exuberant-ctags"; - version = "0.0.7"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "auto-complete-exuberant-ctags"; - rev = "ff6121ff8b71beb5aa606d28fd389c484ed49765"; - sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1cc9786ed8cea2461b592f860d8e2a0897c57068/recipes/auto-complete-exuberant-ctags"; - sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-exuberant-ctags"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-nxml = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-complete-nxml"; - ename = "auto-complete-nxml"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "auto-complete-nxml"; - rev = "ac7b09a23e45f9bd02affb31847263de4180163a"; - sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c89dcbf03a802a4361e44174a332a312e352be36/recipes/auto-complete-nxml"; - sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-nxml"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-pcmp = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "auto-complete-pcmp"; - ename = "auto-complete-pcmp"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "auto-complete-pcmp"; - rev = "dc5c0af834d327dd686d74a4171e5d9170007a6c"; - sha256 = "0ygak7hypc27d0wvciksnmg8c5njw2skf1ml60vs63a1krkax63i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c53a8aeaaab23e032a8e7cb5cad7e531a1662c/recipes/auto-complete-pcmp"; - sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-pcmp"; - license = lib.licenses.free; - }; - }) {}; - auto-complete-sage = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sage-shell-mode }: - melpaBuild { - pname = "auto-complete-sage"; - ename = "auto-complete-sage"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "auto-complete-sage"; - rev = "84f808aea247af41f90c872bcfde5edc61ba0974"; - sha256 = "1rhcgpqdw5v2ghsjsaw0xi9r5vyvdr3mwm8mr0kimqcv4nd4ifn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1cd78dcd58d559c47873f8fcfcab089a8493dd6/recipes/auto-complete-sage"; - sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; - name = "recipe"; - }; - packageRequires = [ auto-complete sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/auto-complete-sage"; - license = lib.licenses.free; - }; - }) {}; - auto-dictionary = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-dictionary"; - ename = "auto-dictionary"; - version = "1.1"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "auto-dictionary-mode"; - rev = "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1"; - sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1711d710ac09fe407fde89ee351ccdcb78555d35/recipes/auto-dictionary"; - sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-dictionary"; - license = lib.licenses.free; - }; - }) {}; - auto-indent-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-indent-mode"; - ename = "auto-indent-mode"; - version = "0.126"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "auto-indent-mode.el"; - rev = "ad7032ee058a74405d04d775b0b384351536bc53"; - sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49af78177278e7072c70fde0eaa5bb82490ebe9d/recipes/auto-indent-mode"; - sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/auto-indent-mode"; - license = lib.licenses.free; - }; - }) {}; - auto-minor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-minor-mode"; - ename = "auto-minor-mode"; - version = "20180527.1"; - src = fetchFromGitHub { - owner = "joewreschnig"; - repo = "auto-minor-mode"; - rev = "c62f4e04c7b73835c399f0348bea0ade2720bcbb"; - sha256 = "0vqqy6nbb884h8qhzqvjycvfqbm9pbhqxr3dlxrhfx8m6c3iasq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3ab5f048034777551e344101d8415cac92362c8/recipes/auto-minor-mode"; - sha256 = "1dpdylrpw1pvlmhh229b3lqs07drx9kdhw4vcv5a48qah14dz6qa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - auto-package-update = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "auto-package-update"; - ename = "auto-package-update"; - version = "1.6.1"; - src = fetchFromGitHub { - owner = "rranelli"; - repo = "auto-package-update.el"; - rev = "cdef79f9fc6f8347fdd05664978fb9a948ea0410"; - sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78f549a299a06941edce13381f597f3a61e8c723/recipes/auto-package-update"; - sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/auto-package-update"; - license = lib.licenses.free; - }; - }) {}; - auto-shell-command = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "auto-shell-command"; - ename = "auto-shell-command"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "auto-shell-command"; - rev = "59d4abce779a3ce3e920592bf5696b54b2e192c7"; - sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea710bfa77fee7c2688eea8258ca9d2105d1896e/recipes/auto-shell-command"; - sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; - name = "recipe"; - }; - packageRequires = [ deferred popwin ]; - meta = { - homepage = "https://melpa.org/#/auto-shell-command"; - license = lib.licenses.free; - }; - }) {}; - auto-yasnippet = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "auto-yasnippet"; - ename = "auto-yasnippet"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "auto-yasnippet"; - rev = "5cc54edbe03c0061bf69883a3e39d3bb16019e0f"; - sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d33c0aee6a5d27217bbae28fc8f448c3badc8a4b/recipes/auto-yasnippet"; - sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/auto-yasnippet"; - license = lib.licenses.free; - }; - }) {}; - autodisass-java-bytecode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autodisass-java-bytecode"; - ename = "autodisass-java-bytecode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "gbalats"; - repo = "autodisass-java-bytecode"; - rev = "3d61dbe266133c950b39e880f78d142751c7dc4c"; - sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a094845521d76754a29435012af5fba9f7975a8e/recipes/autodisass-java-bytecode"; - sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autodisass-java-bytecode"; - license = lib.licenses.free; - }; - }) {}; - autodisass-llvm-bitcode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autodisass-llvm-bitcode"; - ename = "autodisass-llvm-bitcode"; - version = "1.1"; - src = fetchFromGitHub { - owner = "gbalats"; - repo = "autodisass-llvm-bitcode"; - rev = "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0"; - sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/657e8f6bd0e44f11db8480ca42fb29d85fc3ec29/recipes/autodisass-llvm-bitcode"; - sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/autodisass-llvm-bitcode"; - license = lib.licenses.free; - }; - }) {}; - autopair = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autopair"; - ename = "autopair"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "autopair"; - rev = "2d1eb81d12f71248ad305e70cceddf08d4fe2b39"; - sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4150455d424326667390f72f6edd22b274d9fa01/recipes/autopair"; - sha256 = "0l2ypsj3dkasm0lj9jmnaqjs3rv97ldfw8cmayv77mzfd6lhjmh3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/autopair"; - license = lib.licenses.free; - }; - }) {}; - autothemer = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "autothemer"; - ename = "autothemer"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "jasonm23"; - repo = "autothemer"; - rev = "8c467f57571c154129d660dfccebd151c998f2d9"; - sha256 = "0cd2pqh6k32sjidkcd8682y4l6mx52xw4a05f38kk8nsrk28m74k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/autothemer"; - sha256 = "0wahmbihyr3dx4lgiwi7041gvmmqlzlv7ss25fw90srs9n2h05gj"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/autothemer"; - license = lib.licenses.free; - }; - }) {}; - avy = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy"; - ename = "avy"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "avy"; - rev = "f2cf43b5372a6e2a7c101496c47caaf03338de36"; - sha256 = "09qdni1s74i5pv8741szl5g4ynj8fxn0x65qmwa9rmfkbimnc0fs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77fac7a702d4086fb860514e377037acedc60412/recipes/avy"; - sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/avy"; - license = lib.licenses.free; - }; - }) {}; - avy-menu = callPackage ({ avy - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy-menu"; - ename = "avy-menu"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "avy-menu"; - rev = "71b71e64900d0637e17013781042e086e9bf56e7"; - sha256 = "1mxrq2fpx3qa9vy121wnv02r43sb7djc2j8z7c2vh8x56h8bpial"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0b4cfb30c405d44803b36ebcaccef0cf87fe2d/recipes/avy-menu"; - sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; - name = "recipe"; - }; - packageRequires = [ avy emacs ]; - meta = { - homepage = "https://melpa.org/#/avy-menu"; - license = lib.licenses.free; - }; - }) {}; - avy-migemo = callPackage ({ avy - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "avy-migemo"; - ename = "avy-migemo"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "avy-migemo"; - rev = "ce87777bea76c45be5f185e9fe356a8efe5c2d16"; - sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a02db29eb3e4b76b4a9cdbc966df5a1bd35dec0/recipes/avy-migemo"; - sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; - name = "recipe"; - }; - packageRequires = [ avy emacs migemo ]; - meta = { - homepage = "https://melpa.org/#/avy-migemo"; - license = lib.licenses.free; - }; - }) {}; - avy-zap = callPackage ({ avy - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "avy-zap"; - ename = "avy-zap"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "avy-zap"; - rev = "67fed60d0dfe9087ca4fe3332f4a78e775b8d239"; - sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10a2a57c78ac1d8ab621031caa21e8574daeb9a0/recipes/avy-zap"; - sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; - name = "recipe"; - }; - packageRequires = [ avy ]; - meta = { - homepage = "https://melpa.org/#/avy-zap"; - license = lib.licenses.free; - }; - }) {}; - babel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "babel"; - ename = "babel"; - version = "1.4"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "babel"; - rev = "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f"; - sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc/recipes/babel"; - sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/babel"; - license = lib.licenses.free; - }; - }) {}; - back-button = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nav-flash - , pcache - , persistent-soft - , smartrep - , ucs-utils }: - melpaBuild { - pname = "back-button"; - ename = "back-button"; - version = "0.6.6"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "back-button"; - rev = "c7b50a3e087a8dc5588d7292379cd387a1afff87"; - sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/back-button"; - sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; - name = "recipe"; - }; - packageRequires = [ - nav-flash - pcache - persistent-soft - smartrep - ucs-utils - ]; - meta = { - homepage = "https://melpa.org/#/back-button"; - license = lib.licenses.free; - }; - }) {}; - backline = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , outline-minor-faces }: - melpaBuild { - pname = "backline"; - ename = "backline"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "backline"; - rev = "960deaef1d87658f79a0bd95c85946371d211590"; - sha256 = "017w7qa74laq04h359znn9kjsqpl91gypsqsldpnlrb25jw0z0gl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f252e45e8bd6e8af1267755d108f378a974ddaf1/recipes/backline"; - sha256 = "0y5y048s6r3mcgjfxpmwarnhn6lh00j9cla6qjsd83f79hw5cq4y"; - name = "recipe"; - }; - packageRequires = [ emacs outline-minor-faces ]; - meta = { - homepage = "https://melpa.org/#/backline"; - license = lib.licenses.free; - }; - }) {}; - badwolf-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "badwolf-theme"; - ename = "badwolf-theme"; - version = "1.2"; - src = fetchFromGitHub { - owner = "bkruczyk"; - repo = "badwolf-emacs"; - rev = "24a557f92a702f632901a5b7bee59945a0a8cde9"; - sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/badwolf-theme"; - sha256 = "15n33l0iaq2pk70rpw7qdm8dlwcinfclpnlr3bs7vcb1dknp4g9v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/badwolf-theme"; - license = lib.licenses.free; - }; - }) {}; - banner-comment = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "banner-comment"; - ename = "banner-comment"; - version = "2.7"; - src = fetchFromGitHub { - owner = "WJCFerguson"; - repo = "banner-comment"; - rev = "ac52f6b24e590787a385c08cc3751d6f2ddca815"; - sha256 = "1630py97ldh3w71s26jbcxk58529g03sl0padnzqj0rbqy82yw8w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bb69f15cb6be38a86abf4d15450a29c9a819068/recipes/banner-comment"; - sha256 = "0i5nkfdwfr9mcir2ijdhw563azmr5p7hyl6rfy1r04fzs8j7w2pc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/banner-comment"; - license = lib.licenses.free; - }; - }) {}; - base16-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "base16-theme"; - ename = "base16-theme"; - version = "2.2"; - src = fetchFromGitHub { - owner = "belak"; - repo = "base16-emacs"; - rev = "10180e88d6d9434cec367b6c91222dd2fc3bd8ae"; - sha256 = "01w89g413s1da6rf94y1xnhw79cjy2bqb01yfjs58cy492cm0vr6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30862f6be74882cfb57fb031f7318d3fd15551e3/recipes/base16-theme"; - sha256 = "115dhr3gfvdz5wv76fwpv3b4dywiwbk69qrhkfhij8vpcfybrpzx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/base16-theme"; - license = lib.licenses.free; - }; - }) {}; - bash-completion = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bash-completion"; - ename = "bash-completion"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "szermatt"; - repo = "emacs-bash-completion"; - rev = "6aedd690006e07199b2fcd319b9b840a527650e5"; - sha256 = "1a1wxcqzh0javjmxwi3lng5i99xiylm8lm04kv4q1lh9bli6vmv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b528544841995045fb1f8344aaaa38946bb3915/recipes/bash-completion"; - sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bash-completion"; - license = lib.licenses.free; - }; - }) {}; - bazel-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bazel-mode"; - ename = "bazel-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "bazel-mode"; - rev = "6103da2dd9c9461e35a45fc0544ddf33410baa25"; - sha256 = "0lbiih6lj7qf2h1l2nxcwfkhdzccrs01lcdqsyhp5hysp0zdcr66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3945f7eba7d5f248cace11a7946262ac2500b01a/recipes/bazel-mode"; - sha256 = "10590pbpg6mwkcwlm01nxf0ypw694h1b57frvn5rnc53al87i586"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bazel-mode"; - license = lib.licenses.free; - }; - }) {}; - bbcode-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbcode-mode"; - ename = "bbcode-mode"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-bbcode-mode"; - rev = "e16619c80ea21154b4a4ccc2e13d0077e97c9caf"; - sha256 = "0l7jygskxmbckf3xhbjzgwzkrj2m6z1n3i2l7qc9ii4i3mhpx0ai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57c307eecfc0fccfdc525ce6ff63a69ff3b78874/recipes/bbcode-mode"; - sha256 = "0rrhvwb4hrg2sbjbpgdghcgrc6gwpq3vax28r5mlacn5w5x31qjb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/bbcode-mode"; - license = lib.licenses.free; - }; - }) {}; - bbdb = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb"; - ename = "bbdb"; - version = "3.2"; - src = fetchgit { - url = "https://git.savannah.nongnu.org/git/bbdb.git"; - rev = "307bad59bc3debf250a8617ab699b50a9402c0ae"; - sha256 = "1i01yyr6cya2dmdpydam72mnvxj4p3mj7pbnw19lrjlfzahmajir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/bbdb"; - sha256 = "0mm8n3dbi8lap3pjr97n2f675iy7sg476sm1vxygbc3j67rq1zb2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bbdb"; - license = lib.licenses.free; - }; - }) {}; - bbdb- = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "bbdb-"; - ename = "bbdb-"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "bbdb-"; - rev = "2839e84c894de2513af41053e80a277a1b483d22"; - sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01e7a8cc1dde506cb2fcfd9270f15dc61c43ec17/recipes/bbdb-"; - sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; - name = "recipe"; - }; - packageRequires = [ bbdb log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/bbdb-"; - license = lib.licenses.free; - }; - }) {}; - bbdb-vcard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb-vcard"; - ename = "bbdb-vcard"; - version = "0.3"; - src = fetchFromGitHub { - owner = "tohojo"; - repo = "bbdb-vcard"; - rev = "9e11fafef1a94bc6395bd1eeacd00f94848ac560"; - sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd5d9027c49beae89f78d2a30dfa4bd070dff1bd/recipes/bbdb-vcard"; - sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bbdb-vcard"; - license = lib.licenses.free; - }; - }) {}; - bbdb2erc = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bbdb2erc"; - ename = "bbdb2erc"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "bbdb2erc"; - rev = "f39a36351e1e6f1105c9e32970e7502b77b0dbcd"; - sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/bbdb2erc"; - sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; - name = "recipe"; - }; - packageRequires = [ bbdb ]; - meta = { - homepage = "https://melpa.org/#/bbdb2erc"; - license = lib.licenses.free; - }; - }) {}; - beacon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "beacon"; - ename = "beacon"; - version = "1.3.4"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "beacon"; - rev = "729338b02a0e331a4faf475da9f54771a3470106"; - sha256 = "0mypzfasclq7bmw0i8hfyp8c1ycd3kdgd5h1faygzh9r0phh7ciy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d09cfab21be800831644218e9c8c4433087951c0/recipes/beacon"; - sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/beacon"; - license = lib.licenses.free; - }; - }) {}; - beeminder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "beeminder"; - ename = "beeminder"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "Sodaware"; - repo = "beeminder.el"; - rev = "3e95a669474e27cd51a16caea030456377f83062"; - sha256 = "1bj9yzjvglnb0f4glh8fg478xlm5nqmd9jqm1casdj5m30i4kafn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/beeminder"; - sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/beeminder"; - license = lib.licenses.free; - }; - }) {}; - beginend = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "beginend"; - ename = "beginend"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "beginend"; - rev = "a06a479c2279da9e852cf42628b6dfa466fff0bd"; - sha256 = "1jbhg73g1rrkbwql5vi2b0ys9avfazmwzwgd90gkzwavw0ch9cvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c1157d4fd9e47a780bbd91075252acdc7899dd/recipes/beginend"; - sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/beginend"; - license = lib.licenses.free; - }; - }) {}; - benchmark-init = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "benchmark-init"; - ename = "benchmark-init"; - version = "1.0"; - src = fetchFromGitHub { - owner = "dholm"; - repo = "benchmark-init-el"; - rev = "8e4c32f32ec869fe521fb4d3c0a69406830b4178"; - sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/54b9ae6fc10b0c56fcc7a0ad73743ffc85a3e9a0/recipes/benchmark-init"; - sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/benchmark-init"; - license = lib.licenses.free; - }; - }) {}; - benchstat = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "benchstat"; - ename = "benchstat"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Quasilyte"; - repo = "benchstat.el"; - rev = "b39a97f3072c2d3c1d3f86790b9e134d05b8d7e6"; - sha256 = "0j508n860dp4in1psnkcriqck6by1jvnscalyff5na8hx6xgyysm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9180fbedf95f9b1f5810bbf4929dfee513f89e3/recipes/benchstat"; - sha256 = "0h2zi4gh23bas1zfj7j2x994lwgd3xyys96ipg1vq7z2b06572k9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/benchstat"; - license = lib.licenses.free; - }; - }) {}; - better-defaults = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "better-defaults"; - ename = "better-defaults"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "better-defaults"; - rev = "90df5752a0a0602feb47aadfd3542aa7fc841bd8"; - sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bb729c1ad8602a5c0c27e81c9442981a54a924a/recipes/better-defaults"; - sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/better-defaults"; - license = lib.licenses.free; - }; - }) {}; - better-shell = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "better-shell"; - ename = "better-shell"; - version = "1.2"; - src = fetchFromGitHub { - owner = "killdash9"; - repo = "better-shell"; - rev = "f231404b6f8efce33b48e31e5b1566108d0ba000"; - sha256 = "1g5bljvigga856ksyvgix9hk0pp9nzic088kp0bqx0zqvcl82v0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/better-shell"; - sha256 = "0si8nj18i3jlhdb8m6f21rmi0lxians34vhw4xhvxw2yr9l85lj6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/better-shell"; - license = lib.licenses.free; - }; - }) {}; - bibclean-format = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "bibclean-format"; - ename = "bibclean-format"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "bibclean-format"; - rev = "b4003950a925d1c659bc359ab5e88e4441775d77"; - sha256 = "1x5hbs9j4ms93p080267kjyqpk81il3x7q87awf6qzz5xhc20d3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a96cc66b22e7ec145ffa3031089a3d60e77b8c42/recipes/bibclean-format"; - sha256 = "1lvi1r612jb6w0j6mbq93gk9f7hmb1pn42lfs47gvf0prmjf1zyb"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/bibclean-format"; - license = lib.licenses.free; - }; - }) {}; - biblio = callPackage ({ biblio-core - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "biblio"; - ename = "biblio"; - version = "0.2"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "biblio.el"; - rev = "a5a68fcf677f286f205f32dc7486f6c9f66aa6af"; - sha256 = "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5fbaa8c59b0e64d13beb0e0f18b0734afa84f51/recipes/biblio"; - sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; - name = "recipe"; - }; - packageRequires = [ biblio-core emacs ]; - meta = { - homepage = "https://melpa.org/#/biblio"; - license = lib.licenses.free; - }; - }) {}; - biblio-core = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "biblio-core"; - ename = "biblio-core"; - version = "0.2"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "biblio.el"; - rev = "0036495a2e0d4b02b9e957e498f9437e394d6ed9"; - sha256 = "1f0p5fgvabdpafil7s8sy82hgcfzg1skxfgj72ylv3crq36bn4vp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f086d3e8fd6a95ce198e148cd3ede35dd73fb8/recipes/biblio-core"; - sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/biblio-core"; - license = lib.licenses.free; - }; - }) {}; - bicycle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bicycle"; - ename = "bicycle"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "bicycle"; - rev = "42a5db3514019d539500a67f913411f5533a1eb3"; - sha256 = "1nanf0dp7kqzs2mc8gzr9qzn9v6q86sdr35pzysdl41xqydxpsrd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec9b4138ffaf81b556e01b85ce4b112e77909260/recipes/bicycle"; - sha256 = "16ikqbmsjyknj3580wdnp8ffs85bq9idf9hvxm0ihgw5gy469xqj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bicycle"; - license = lib.licenses.free; - }; - }) {}; - bifocal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bifocal"; - ename = "bifocal"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "riscy"; - repo = "bifocal-mode"; - rev = "add30c678488cec04976a85ba8cda20805938a01"; - sha256 = "01j8s6c3qm4scxy1dk07l41y0n55gz83zzfi254kc2vyx02vqg7f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/79e71995bd8452bad2e717884f148ec74c9735fc/recipes/bifocal"; - sha256 = "07qrxsby611l3cwsmw3d53h1n7cd1vg53j4vlc2isg56l2m4qks5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bifocal"; - license = lib.licenses.free; - }; - }) {}; - binclock = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "binclock"; - ename = "binclock"; - version = "1.11"; - src = fetchFromGitHub { - owner = "davep"; - repo = "binclock.el"; - rev = "b964e437311e5406a31c0ec7038b3bf1fd02b876"; - sha256 = "0ljxb70vx7x0yn8y1ilf4phk0hamprl43dh23fm3njqqgw60hzbk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95dfa38d795172dca6a09cd02e21630747723949/recipes/binclock"; - sha256 = "1s0072kcd1xp8355j8aph94gb3a1wqmzx1hhfp9d6bzqf6cij8gk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/binclock"; - license = lib.licenses.free; - }; - }) {}; - bind-chord = callPackage ({ bind-key - , fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-chord"; - ename = "bind-chord"; - version = "2.4"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "33127b706e66fb20dfa40d94eb553dd7d6ef9197"; - sha256 = "1iz7ibdvf3bnfkwfhakigvrdzg69qgx3z7qayq54spx3rpxf7x0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/bind-chord"; - sha256 = "1hyhs3iypyg5730a20axcfzrrglm4nbgdz8x1ifkaa0iy5zc9hb0"; - name = "recipe"; - }; - packageRequires = [ bind-key key-chord ]; - meta = { - homepage = "https://melpa.org/#/bind-chord"; - license = lib.licenses.free; - }; - }) {}; - bind-key = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-key"; - ename = "bind-key"; - version = "2.4"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "c03d153e5882109e24c016d3afa6940af673ede6"; - sha256 = "0zyl8dfg8acf99966sp8i5iky1mvn2h016viqk48s0hjv9va0wii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d39d33af6b6c9af9fe49bda319ea05c711a1b16e/recipes/bind-key"; - sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bind-key"; - license = lib.licenses.free; - }; - }) {}; - bind-map = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bind-map"; - ename = "bind-map"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-bind-map"; - rev = "bf4181e3a41463684adfffc6c5c305b30480e30f"; - sha256 = "0vrk17yg3jbww92p433p64ijmjf7cjg2wmzi9w418235w1xdfzz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f58800af5965a6e7c9314aa00e971196ea0d036e/recipes/bind-map"; - sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bind-map"; - license = lib.licenses.free; - }; - }) {}; - bing-dict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bing-dict"; - ename = "bing-dict"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "bing-dict.el"; - rev = "da071309f6ffbb9e66e6720dd05e31964ff402a9"; - sha256 = "1wl810k3zl0v4i4280mzjdgd9mdc7q9s13s5svj197mlsx7gkifw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/bing-dict"; - sha256 = "1cqjndq8xm2bwjvdj95dn377bp9r6rrkp1z4a45faj408mipahli"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bing-dict"; - license = lib.licenses.free; - }; - }) {}; - birds-of-paradise-plus-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "birds-of-paradise-plus-theme"; - ename = "birds-of-paradise-plus-theme"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "birds-of-paradise-plus-theme.el"; - rev = "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa"; - sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3932853232c269f158806aebe416b456c752a9bb/recipes/birds-of-paradise-plus-theme"; - sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/birds-of-paradise-plus-theme"; - license = lib.licenses.free; - }; - }) {}; - bm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bm"; - ename = "bm"; - version = "201905"; - src = fetchFromGitHub { - owner = "joodland"; - repo = "bm"; - rev = "637dacf4cb9112fdfb949706a704dd53cbe79c7e"; - sha256 = "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/bm"; - sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bm"; - license = lib.licenses.free; - }; - }) {}; - bnf-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bnf-mode"; - ename = "bnf-mode"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "sergeyklay"; - repo = "bnf-mode"; - rev = "2f217ecf76fa775da4b28de7dd2b615460d9f8ad"; - sha256 = "17nhy9mwaji230d3dhi3d40wibqviapa5h60mlm20mc5b2vb0vyd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/217bde4ccd2d68dc14b1bfee22fbc99cd4109952/recipes/bnf-mode"; - sha256 = "027pn2lvqsxyj9ii5svql2sw4xm9wrd9zy7ms8vayv737w5xd3n1"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/bnf-mode"; - license = lib.licenses.free; - }; - }) {}; - bnfc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bnfc"; - ename = "bnfc"; - version = "0.4"; - src = fetchFromGitHub { - owner = "jmitchell"; - repo = "bnfc-mode"; - rev = "1b58df1dd0cb9b81900632fb2843a03b94f56fdb"; - sha256 = "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7871b6372a391ace76edea40c6f92ceb10b70bf9/recipes/bnfc"; - sha256 = "0h6qhyi7vcikg7zhv8lywdz033kp27a8z1ymq5wgs4aqs184igm6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bnfc"; - license = lib.licenses.free; - }; - }) {}; - bog = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bog"; - ename = "bog"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "kyleam"; - repo = "bog"; - rev = "6ed4d3edbe771e586d873b826330f3ef23aa1611"; - sha256 = "0s4jwlaq3mqyzkyg3x4nh4nx7vw825jhz7ggakay7a2cfvpa4i2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19fd0bf2f8e52c79120c492a6dcabdd51b465d35/recipes/bog"; - sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/bog"; - license = lib.licenses.free; - }; - }) {}; - bongo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bongo"; - ename = "bongo"; - version = "1.0"; - src = fetchFromGitHub { - owner = "dbrock"; - repo = "bongo"; - rev = "c5280a11fe8ff39fba4b09ec4a39b0f799d2b59c"; - sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/692428769cd792dc0644641682c2793103dd00c6/recipes/bongo"; - sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bongo"; - license = lib.licenses.free; - }; - }) {}; - bool-flip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bool-flip"; - ename = "bool-flip"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "michaeljb"; - repo = "bool-flip"; - rev = "0f7cc9b387429239fb929896511727d4e49a795b"; - sha256 = "1051gy7izy25jwh079231d4lh9azchbqc6nvfrkv8s9ck407a65a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f56377a7c3f4b75206ad9ba570c35dbf752079e9/recipes/bool-flip"; - sha256 = "1xfspqxshx7m8gh6g1snkaahka9f71fnq7hx81nik4s9s8pmxj9c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/bool-flip"; - license = lib.licenses.free; - }; - }) {}; - boon = callPackage ({ dash - , emacs - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "boon"; - ename = "boon"; - version = "1.0"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "boon"; - rev = "d9f0545708bbbbe3df23b2b91cdd2824beb0df56"; - sha256 = "0crqwyhzkwpi7c0rqcgmgqx6g4f8fw9gd9nh0ii6p5agiw140yj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/boon"; - sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; - name = "recipe"; - }; - packageRequires = [ dash emacs expand-region multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/boon"; - license = lib.licenses.free; - }; - }) {}; - borg = callPackage ({ dash - , emacs - , epkg - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "borg"; - ename = "borg"; - version = "3.1.1"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "borg"; - rev = "940af3d437b299ef81ce73da4e4ec8c2f52d7a79"; - sha256 = "0lg2inxzfz6pcblynna4fyi5lxnmbrpl095d6574d0pnn22zdx5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/878ab90d444f3a1fd2c9f9068ca7b477e218f1da/recipes/borg"; - sha256 = "0gn4hf7hn190gl0kg59nr6jzjnb39c0hy9b3brrsfld9hyxga9jr"; - name = "recipe"; - }; - packageRequires = [ dash emacs epkg magit ]; - meta = { - homepage = "https://melpa.org/#/borg"; - license = lib.licenses.free; - }; - }) {}; - boxquote = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "boxquote"; - ename = "boxquote"; - version = "2.1"; - src = fetchFromGitHub { - owner = "davep"; - repo = "boxquote.el"; - rev = "b6a4ad3ee5b327bd3b1bf65f8733bd301fe59883"; - sha256 = "1f61k3sw9zvn6jq60ygi6p66blr52497fadimzcaspa79k9y1cfm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2148f8f17b16154bfc337df69a5ad31e25a9b05/recipes/boxquote"; - sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/boxquote"; - license = lib.licenses.free; - }; - }) {}; - browse-at-remote = callPackage ({ cl-lib ? null - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "browse-at-remote"; - ename = "browse-at-remote"; - version = "0.10.0"; - src = fetchFromGitHub { - owner = "rmuslimov"; - repo = "browse-at-remote"; - rev = "47bab994640f086939c30cc6416e770ad067e950"; - sha256 = "0vhia7xmszcb3lxrb8wh93a3knjfzj48h8nhj4fh8zj1pjz6args"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/browse-at-remote"; - sha256 = "0s088ba047azba60rlfn3jbqr321vnm953i7dqw2gj9xml90kbm4"; - name = "recipe"; - }; - packageRequires = [ cl-lib f s ]; - meta = { - homepage = "https://melpa.org/#/browse-at-remote"; - license = lib.licenses.free; - }; - }) {}; - browse-kill-ring = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "browse-kill-ring"; - ename = "browse-kill-ring"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "browse-kill-ring"; - repo = "browse-kill-ring"; - rev = "2a7acf98c348c4f405a6b2ab216224ca14915be8"; - sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/294dc32a672e6b6b0ebfc46cdf0ff9ceacf73e89/recipes/browse-kill-ring"; - sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/browse-kill-ring"; - license = lib.licenses.free; - }; - }) {}; - browse-url-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "browse-url-dwim"; - ename = "browse-url-dwim"; - version = "0.6.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "browse-url-dwim"; - rev = "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30"; - sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/browse-url-dwim"; - sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; - name = "recipe"; - }; - packageRequires = [ string-utils ]; - meta = { - homepage = "https://melpa.org/#/browse-url-dwim"; - license = lib.licenses.free; - }; - }) {}; - bshell = callPackage ({ buffer-manage - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bshell"; - ename = "bshell"; - version = "0.3"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "bshell"; - rev = "884a8b906617d305e9d5d2c3750618d2f86f9aed"; - sha256 = "16qh71yhpxs5cxjmkiqiia8xrxa0ym2n32znp4yc7xiv2xfw2ss4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf0ed51304f752af3e1f56caf2856d1521d782a4/recipes/bshell"; - sha256 = "1ds8xvh74i6wqswjp8i30knr74l4gbalkb2jil8qjb9wp9l1gw9z"; - name = "recipe"; - }; - packageRequires = [ buffer-manage emacs ]; - meta = { - homepage = "https://melpa.org/#/bshell"; - license = lib.licenses.free; - }; - }) {}; - buffer-flip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-flip"; - ename = "buffer-flip"; - version = "2.1"; - src = fetchFromGitHub { - owner = "killdash9"; - repo = "buffer-flip.el"; - rev = "e093360e05164c78255866c1ac8f966aa38ba514"; - sha256 = "1s35llycdhhclf9kl1q9l7zzzfqrnnvbiqv5csfw0mngfj0lz77f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3924870cac1392a7eaeeda34b92614c26c674d63/recipes/buffer-flip"; - sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-flip"; - license = lib.licenses.free; - }; - }) {}; - buffer-manage = callPackage ({ choice-program - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-manage"; - ename = "buffer-manage"; - version = "0.7"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "buffer-manage"; - rev = "8bbe342a4dafcfdaf305baea98bd4208036ab89a"; - sha256 = "027d71ppkcq60lkzgal8wv4xpjs4hzgih5ry9q2d4g0dr7wkjp3j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28f8f376df810e6ebebba9fb2c93eabbe3526cc9/recipes/buffer-manage"; - sha256 = "0fwri332faybv2apjh8zajqpryi0g4kk3and8djibpvci40l42jb"; - name = "recipe"; - }; - packageRequires = [ choice-program dash emacs ]; - meta = { - homepage = "https://melpa.org/#/buffer-manage"; - license = lib.licenses.free; - }; - }) {}; - buffer-move = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-move"; - ename = "buffer-move"; - version = "0.6.2"; - src = fetchFromGitHub { - owner = "lukhas"; - repo = "buffer-move"; - rev = "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190"; - sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e30e053eab078a8bef73e42b90299231ea0997ee/recipes/buffer-move"; - sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-move"; - license = lib.licenses.free; - }; - }) {}; - buffer-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-utils"; - ename = "buffer-utils"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "buffer-utils"; - rev = "b4d325543e25518d725a2122b49cd72a0d6a079a"; - sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/buffer-utils"; - sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buffer-utils"; - license = lib.licenses.free; - }; - }) {}; - buffer-watcher = callPackage ({ f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buffer-watcher"; - ename = "buffer-watcher"; - version = "0.1"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "buffer-watcher"; - rev = "056ad29ce1c33c575b371b856b80d580a4b9a7d2"; - sha256 = "0c4w7mpkc82886gng14h2srlbr138vf7kcs8ajwj6is47zc75nkb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8681776d467951d14d8247e6939bd9a6f2a80ec/recipes/buffer-watcher"; - sha256 = "0v096021xk7k821bxb5zddw6sljqa6fs8f7s8j0w3pv6lmhra1ln"; - name = "recipe"; - }; - packageRequires = [ f ]; - meta = { - homepage = "https://melpa.org/#/buffer-watcher"; - license = lib.licenses.free; - }; - }) {}; - bufshow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bufshow"; - ename = "bufshow"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "bufshow"; - rev = "984dc947992cada3dcdb7ea066a9794e45daa66f"; - sha256 = "1mjykz21kx2aj0r9x7j2rh6mr64wd0m7wzn9ppxrw6296l2y253m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/543a734795eed11aa47a8e1348d14e362b341af0/recipes/bufshow"; - sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bufshow"; - license = lib.licenses.free; - }; - }) {}; - bug-reference-github = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bug-reference-github"; - ename = "bug-reference-github"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "bug-reference-github"; - rev = "f570a0532bfb44f095b42cf68ab1f69799101137"; - sha256 = "09rbxgrk7jp9xajya6nccj0ak7fc48wyxq4sfmjmy3q1qfszdsc3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5dfce86371692dddef78a6c1d772138b487b82cb/recipes/bug-reference-github"; - sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bug-reference-github"; - license = lib.licenses.free; - }; - }) {}; - bui = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bui"; - ename = "bui"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "bui.el"; - rev = "9162c24b75799857d54838d961c60776ffcd657e"; - sha256 = "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38b7c9345de75a707b4a73e8bb8e2f213e4fd739/recipes/bui"; - sha256 = "0a4g55k02hi3cwvk4d35lk2x5kc4fabskl2025i83hx0rqw4w3f1"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/bui"; - license = lib.licenses.free; - }; - }) {}; - build-farm = callPackage ({ bui - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "build-farm"; - ename = "build-farm"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "build-farm.el"; - rev = "5c268a3c235ace0d79ef1ec82c440120317e06f5"; - sha256 = "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc97bf56ea50788ecbbbb1f46e188e8487370936/recipes/build-farm"; - sha256 = "0dbq3sc1x0cj06hv3mlk0zw0cijdwjszicylv14m1wahal33xjrw"; - name = "recipe"; - }; - packageRequires = [ bui emacs magit-popup ]; - meta = { - homepage = "https://melpa.org/#/build-farm"; - license = lib.licenses.free; - }; - }) {}; - build-status = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "build-status"; - ename = "build-status"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "build-status"; - rev = "c29a0146c5d0be274f5e17921e01698f572c23a1"; - sha256 = "03f0h7sp0sr9kjyhvcx7i34lvc26f5x8nikfidihgzhrqpprv2b6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23bbe012f313cf0cf4c45a66eb0bee9361ced564/recipes/build-status"; - sha256 = "0ckyf0asll50gifx1v0qqzpimjms8i1rgw9bnqiyj861qn5hch92"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/build-status"; - license = lib.licenses.free; - }; - }) {}; - bundler = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "bundler"; - ename = "bundler"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "endofunky"; - repo = "bundler.el"; - rev = "4cb4fafe092d587cc9e58ff61cf900fb7f409adf"; - sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/bundler"; - sha256 = "1jvcrxwsf9yd5vhirfdmjl52n6hffr1vikd386qbn32vgqcsba7a"; - name = "recipe"; - }; - packageRequires = [ inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/bundler"; - license = lib.licenses.free; - }; - }) {}; - bury-successful-compilation = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "bury-successful-compilation"; - ename = "bury-successful-compilation"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "bury-successful-compilation"; - rev = "064817b44a431476305099301311def0a2d9d543"; - sha256 = "13ilv4zbzwb5rz0gf69z8pvxazvwlmb5shkb055l42ksxslp49hh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f66e2e23c7a1fa0ce6fa8a0e814242b7c46c299c/recipes/bury-successful-compilation"; - sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/bury-successful-compilation"; - license = lib.licenses.free; - }; - }) {}; - butler = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "butler"; - ename = "butler"; - version = "0.2.4"; - src = fetchFromGitHub { - owner = "AshtonKem"; - repo = "Butler"; - rev = "0e91e0f01ac9c09422f076a096ee567ee138e7a4"; - sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c86e3f5083e59568afac69eed9aa8c1a0bd76e2e/recipes/butler"; - sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; - name = "recipe"; - }; - packageRequires = [ deferred emacs json ]; - meta = { - homepage = "https://melpa.org/#/butler"; - license = lib.licenses.free; - }; - }) {}; - buttercup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buttercup"; - ename = "buttercup"; - version = "1.16"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "emacs-buttercup"; - rev = "810fa6fb8dab06610dbf2b5ccbc64b4d0ecc7485"; - sha256 = "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b187cb5b3cc5b546bfa6b94b6792e6363242d1/recipes/buttercup"; - sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/buttercup"; - license = lib.licenses.free; - }; - }) {}; - buttercup-junit = callPackage ({ buttercup - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "buttercup-junit"; - ename = "buttercup-junit"; - version = "1.1.0"; - src = fetchgit { - url = "https://bitbucket.org/olanilsson/buttercup-junit"; - rev = "1b3214d3d74d998c475f54035643231d8bcffbee"; - sha256 = "120ayxx7f8vdmjwdvycjpkc9acb03z1l0jf2ndigyg64jb8q7a4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1030960afe994da338d78607233319b3f7f0c8b/recipes/buttercup-junit"; - sha256 = "1v848vbwxqrw9sdsvjaggkspavmbwkmqshf321m4n8srvi51383w"; - name = "recipe"; - }; - packageRequires = [ buttercup emacs ]; - meta = { - homepage = "https://melpa.org/#/buttercup-junit"; - license = lib.licenses.free; - }; - }) {}; - button-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "button-lock"; - ename = "button-lock"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "button-lock"; - rev = "9a8f950e06ff222b667c38facf4fb9d6ef6f1d8e"; - sha256 = "1rga1m50bhps4kv841g798w7vn80kcwyinb4ra33ldri7jyx34qj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/button-lock"; - sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/button-lock"; - license = lib.licenses.free; - }; - }) {}; - cacoo = callPackage ({ concurrent - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cacoo"; - ename = "cacoo"; - version = "2.1.2"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-cacoo"; - rev = "c2e6a8830144810cd4e51de3646cb8200bcebbc6"; - sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bd55f5c29876c2483001cd9deaca68cab5054b9/recipes/cacoo"; - sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; - name = "recipe"; - }; - packageRequires = [ concurrent ]; - meta = { - homepage = "https://melpa.org/#/cacoo"; - license = lib.licenses.free; - }; - }) {}; - caddyfile-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "caddyfile-mode"; - ename = "caddyfile-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "Schnouki"; - repo = "caddyfile-mode"; - rev = "b0371063adc18d3cbd6dd673ea4fe39d27825d1b"; - sha256 = "1w0jfh8z9q2b0av66gckmb9d9dvx0wqmjf54avgynlmh3a7gv7lz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec771222056dcb6c67e133cd6aa6b4e4d03ac264/recipes/caddyfile-mode"; - sha256 = "12d57xcpp78lmcr95nfp0r9g7lkw8kfxf9c3rc7g53kh5xaaj4i2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/caddyfile-mode"; - license = lib.licenses.free; - }; - }) {}; - cake-inflector = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cake-inflector"; - ename = "cake-inflector"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-cake-inflector"; - rev = "40bf11890842ba305954528694e1c39a8b73737b"; - sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77c46238b632047160d6dfac9b257f57b0c4283b/recipes/cake-inflector"; - sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/cake-inflector"; - license = lib.licenses.free; - }; - }) {}; - calendar-norway = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calendar-norway"; - ename = "calendar-norway"; - version = "0.9.4"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "calendar-norway.el"; - rev = "8d1fda8268caa74ba5e712c7675ed3c34e46e2d4"; - sha256 = "011c8pz1g805a7c3djai39yasd2idfp4c2dcrvf7kbls27ayrl6d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5d01230027d5cec9da2545a9ce9270a611f6567/recipes/calendar-norway"; - sha256 = "1i23ks0bnq62bvn3szvqf0ikcam4s92yvr998mkjxhdhc94zd19c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calendar-norway"; - license = lib.licenses.free; - }; - }) {}; - calfw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw"; - ename = "calfw"; - version = "1.6"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "c538d3746449b4f0e16b16aad3073d4f7379d805"; - sha256 = "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw"; - sha256 = "0am1nafc16zax8082gjlz0pi85lryjhrx0v80nzgr23iybj5mfx4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw"; - license = lib.licenses.free; - }; - }) {}; - calfw-cal = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-cal"; - ename = "calfw-cal"; - version = "1.6"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "136dce009a26e7d8a8064af422c2cf8170e852c5"; - sha256 = "1hiip8hfl7myimgba7ggs1ki1pk3ag7nyfa8j2zzm87n93g5xia4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-cal"; - sha256 = "1wylkd7jl1ifq56jj04l5b9wfrjkhwncxzrjgnbgg1cl2klf6v4m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-cal"; - license = lib.licenses.free; - }; - }) {}; - calfw-howm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-howm"; - ename = "calfw-howm"; - version = "1.6"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "4f6e5d4d917b9d346a8867941b90133e50e820d8"; - sha256 = "0dkilf8kvxcy6rr2bynzyk5kf8dqcxhm9b9h36g8h11j181p6bl7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-howm"; - sha256 = "08cv16cq211sy2v1i0gk7d81f0gyywv0i9szmamnrbjif3rrv2m0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-howm"; - license = lib.licenses.free; - }; - }) {}; - calfw-ical = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-ical"; - ename = "calfw-ical"; - version = "1.6"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "a67fa1023b3fddc1d1f38114c1d207376c8e6289"; - sha256 = "0g8s3pgivqk1vqdgkndznkl48c4m5yiahkjxyqyv2781hdb4f6xa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-ical"; - sha256 = "1bh9ahwp9b5knjxph79kl19fgs48x3w7dga299l0xvbxq2jhs95q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-ical"; - license = lib.licenses.free; - }; - }) {}; - calfw-org = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "calfw-org"; - ename = "calfw-org"; - version = "1.6"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-calfw"; - rev = "e03ae470788778e7714b73520014eadc03a88abd"; - sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc64274abdc7c8fb904b43d2d036aac98e738131/recipes/calfw-org"; - sha256 = "1cfpjh08djz3k067w3580yb15p1csks3gzch9c4cbrbcjvg8inh5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/calfw-org"; - license = lib.licenses.free; - }; - }) {}; - call-graph = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , ivy - , lib - , melpaBuild - , tree-mode }: - melpaBuild { - pname = "call-graph"; - ename = "call-graph"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "beacoder"; - repo = "call-graph"; - rev = "0bbe292b1b9c7ba1d8a65ed5e475f6a53f5f9f27"; - sha256 = "0kckjs7yg8d04nir5z3f00k05272kgma98794g0ycgfn1vrck0h0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6acf099e2510c82b4b03e2f35051afc3d28af45/recipes/call-graph"; - sha256 = "0cklr79gqqrb94jq8aq65wqriamay78vv9sd3jrvp86ixl3ig5xc"; - name = "recipe"; - }; - 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"; - ename = "camcorder"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "camcorder.el"; - rev = "b11ca61491a27681bb3131b72b51c105fd996bed"; - sha256 = "11p42cmk9sj2ilpx6nnlbzff85qi0m27wk49da2ipal28wcx2452"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/camcorder"; - sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs names ]; - meta = { - homepage = "https://melpa.org/#/camcorder"; - license = lib.licenses.free; - }; - }) {}; - caml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "caml"; - ename = "caml"; - version = "4.7.1"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "ocaml"; - rev = "ca71bda2ac7e5143f58fa9a1693f97e709a91332"; - sha256 = "1ksx2ym5s68m87rnjjkdwhp5ci6cfw0yhmjjmq1r4a0d0r77x4lr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5a3263cdcc229b11a3e96edbf632d56f32c47aa/recipes/caml"; - sha256 = "1ixs0626nsg1ilqdwj5rd8kicjy7mprswwy0kprppmpmc8y7xf7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/caml"; - license = lib.licenses.free; - }; - }) {}; - cangjie = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cangjie"; - ename = "cangjie"; - version = "0.7.2"; - src = fetchFromGitHub { - owner = "kisaragi-hiu"; - repo = "cangjie.el"; - rev = "f4dcb691e3bda6971cb89b07f368dd285179a8ff"; - sha256 = "0hvwaj1g1szyhjvyxhwflq45bbcvvgv391wa7qkwlxmrvvfhp9k2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed79fc972f7fe69d7bad5d1cdde3a276885a9fe8/recipes/cangjie"; - sha256 = "0gdp6dlkzkkd8r3cmwakwxlxsbysb351n1lr9sq4d60gbbskklln"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/cangjie"; - license = lib.licenses.free; - }; - }) {}; - cargo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rust-mode }: - melpaBuild { - pname = "cargo"; - ename = "cargo"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "kwrooijen"; - repo = "cargo.el"; - rev = "b0487f95a7de7a1d6f03cdd05220f633977d65a2"; - sha256 = "0r9v7q7hkdw2q3iifyrb6n9jrssz2rcv2xcc7n1nmg1v40av3ijd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e997b356b009b3d2ab467fe49b79d728a8cfe24b/recipes/cargo"; - sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; - name = "recipe"; - }; - packageRequires = [ emacs rust-mode ]; - meta = { - homepage = "https://melpa.org/#/cargo"; - license = lib.licenses.free; - }; - }) {}; - caseformat = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "caseformat"; - ename = "caseformat"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "caseformat"; - rev = "72707c9f0f0819b4e2aa45876432a293aa07f814"; - sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba158fbeebcda6b6122b18c97ab8042b1c0a0bc0/recipes/caseformat"; - sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/caseformat"; - license = lib.licenses.free; - }; - }) {}; - cask = callPackage ({ cl-lib ? null - , dash - , epl - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , package-build - , s - , shut-up }: - melpaBuild { - pname = "cask"; - ename = "cask"; - version = "0.8.4"; - src = fetchFromGitHub { - owner = "cask"; - repo = "cask"; - rev = "ba5f6eb78178deb954ab9ac02e0e370315097ebe"; - sha256 = "1p37lq8xpyq0rc7phxgsw3b73h8vf9rkpa5959rb5k46w6ps9686"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/606e62bacfc6b6fc1d8bff3e716b743e6f32b29a/recipes/cask"; - sha256 = "17jv9hhwh3azwa8rc5iljr3c2kz6razq67mvsxi9qnywq4rhrgm9"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash epl f package-build s shut-up ]; - meta = { - homepage = "https://melpa.org/#/cask"; - license = lib.licenses.free; - }; - }) {}; - cask-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cask-mode"; - ename = "cask-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "cask-mode"; - rev = "90a257549aa201a12c2b07157f650e3cdd7af06e"; - sha256 = "07qisn5sqdw6y0avfhhj57rwbdjxc0dfxmpf0ax5l8fgq6m0h5qc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d8bc1afaf69b4f29ba1bb0243c25574bc1197cc/recipes/cask-mode"; - sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cask-mode"; - license = lib.licenses.free; - }; - }) {}; - cask-package-toolset = callPackage ({ ansi - , cl-lib ? null - , commander - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "cask-package-toolset"; - ename = "cask-package-toolset"; - version = "0.9.2"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "cask-package-toolset.el"; - rev = "2c74cd827e88c7f8360581a841e45f0b794510e7"; - sha256 = "1hk5q6p1j7cqg5srr3v21xfyy7aas4hfj1a66h21c2xvfjra3hxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed71e45389626e700b93b29d5e2659b6706274d8/recipes/cask-package-toolset"; - sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; - name = "recipe"; - }; - packageRequires = [ ansi cl-lib commander dash emacs f s shut-up ]; - meta = { - homepage = "https://melpa.org/#/cask-package-toolset"; - license = lib.licenses.free; - }; - }) {}; - caskxy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "caskxy"; - ename = "caskxy"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "caskxy"; - rev = "279f3ab79bd77fe69cb3148a79896b9bf118a9b3"; - sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d61aea505e4913879f68081497e85542e9fd786/recipes/caskxy"; - sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/caskxy"; - license = lib.licenses.free; - }; - }) {}; - catmacs = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "catmacs"; - ename = "catmacs"; - version = "0.1.1"; - src = fetchgit { - url = "https://bitbucket.org/pymaximus/catmacs"; - rev = "c6e8277bd2aab3f5fbf10d419111110f3b33564f"; - sha256 = "0kdlmmqgpgmhbbvafywllqdwkkd5a41rf8zhfmxhs3ydza86hmlg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e62e45ea234a574ed602f27c3c6bc240bcd4fa43/recipes/catmacs"; - sha256 = "0ym1szmq9ib75yiyy5jw647fcs7gg0d5dkskqc293pg81qf3im50"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/catmacs"; - license = lib.licenses.free; - }; - }) {}; - cbm = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cbm"; - ename = "cbm"; - version = "0.6"; - src = fetchFromGitHub { - owner = "akermu"; - repo = "cbm.el"; - rev = "5b41c936ba9f6d170309a85ffebc9939c1050b31"; - sha256 = "091ln3d0jhdgahbwfdm1042b19886n3kwipw5gk8d0jnq5vwrkws"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f28dbc97dc23cdb0b4c74f8805775c787635871e/recipes/cbm"; - sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cbm"; - license = lib.licenses.free; - }; - }) {}; - cdlatex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cdlatex"; - ename = "cdlatex"; - version = "4.7"; - src = fetchFromGitHub { - owner = "cdominik"; - repo = "cdlatex"; - rev = "1d491c2dddb05cdace1ae0e1f56a36009b065d85"; - sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cdlatex"; - sha256 = "021gj0jw93r8gk0cacw1ldfibpwr6fpkcrnign7b4nqqnb3135k9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cdlatex"; - license = lib.licenses.free; - }; - }) {}; - cdnjs = callPackage ({ dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "cdnjs"; - ename = "cdnjs"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "cdnjs.el"; - rev = "ce19880d3ec3d81e6c665d0b1dfea99cc7a3f908"; - sha256 = "02j45ngddx7n5gvy42r8y3s22bmxlnvg2pqjfh0li8m599fnd11h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66e4ce4e2c7e4aaac9dc0ce476c4759b000ff5d6/recipes/cdnjs"; - sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; - name = "recipe"; - }; - packageRequires = [ dash deferred f pkg-info ]; - meta = { - homepage = "https://melpa.org/#/cdnjs"; - license = lib.licenses.free; - }; - }) {}; - celery = callPackage ({ dash-functional - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "celery"; - ename = "celery"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "emacs-celery"; - rev = "163ebede3f6a7f59202ff319675b0873dd1de365"; - sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b896b2b89d990a7ce2f4bf4ce0aee0d126f3e55/recipes/celery"; - sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; - name = "recipe"; - }; - packageRequires = [ dash-functional deferred emacs s ]; - meta = { - homepage = "https://melpa.org/#/celery"; - license = lib.licenses.free; - }; - }) {}; - cerbere = callPackage ({ f - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "cerbere"; - ename = "cerbere"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "cerbere"; - rev = "f9fb567b01bde8870ce36293ed8206a056169bbd"; - sha256 = "1nkqah0igjwv5yhx5yrp42pyi87vzlp1q10sn4l3a0spixn1mnlf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4145e270a2113f30f8bb4d0f6c335f1c76f77b1c/recipes/cerbere"; - sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; - name = "recipe"; - }; - packageRequires = [ f go-mode pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/cerbere"; - license = lib.licenses.free; - }; - }) {}; - ceylon-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ceylon-mode"; - ename = "ceylon-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "lucaswerkmeister"; - repo = "ceylon-mode"; - rev = "00f790b3ed5ec48e2461e20a4d466ba45c634e13"; - sha256 = "08zk6aspy59gv3989zxz0ibxxwkbjasa83ilpzvpcwszrzq8x640"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09cd1a2ccf33b209a470780a66d54e1b1d597a86/recipes/ceylon-mode"; - sha256 = "0dgqmmb8qmvzn557h0fw1mx4y0p96870l8f8glizkk3fifg7wgq4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ceylon-mode"; - license = lib.licenses.free; - }; - }) {}; - cfengine-code-style = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cfengine-code-style"; - ename = "cfengine-code-style"; - version = "3.13.0"; - src = fetchFromGitHub { - owner = "cfengine"; - repo = "core"; - rev = "10e43677e99a29d8072bb120e7cd7b9d03b1218f"; - sha256 = "0mncl7wb2vi620snk4z01k0wdbvvd5b2nw9nlnfr9a4hkn3fg44r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c737839aeda583e61257ad40157e24df7f918b0f/recipes/cfengine-code-style"; - sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cfengine-code-style"; - license = lib.licenses.free; - }; - }) {}; - cframe = callPackage ({ buffer-manage - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cframe"; - ename = "cframe"; - version = "0.1"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "cframe"; - rev = "61844d948e4464625f7023de62aeb27ca742b36f"; - sha256 = "1v413kvygfkdiqi9zg6ypihf2vcks0vs80qshg0ynm5zy27f984y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e39555b2538cc8a955766c5533871396e8fe712/recipes/cframe"; - sha256 = "0pngdaflk1pk2xmwbij4b520b3mlacnjab4r3jby0phah44ziv4l"; - name = "recipe"; - }; - packageRequires = [ buffer-manage dash emacs ]; - meta = { - homepage = "https://melpa.org/#/cframe"; - license = lib.licenses.free; - }; - }) {}; - cfrs = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe - , s }: - melpaBuild { - pname = "cfrs"; - ename = "cfrs"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "cfrs"; - rev = "06c5f82d3ae6ff83ba8bd32f051a89b9c309f360"; - sha256 = "1gnnfw2cwix82fc3ps8f7irv40k2s043wma2lhkxyknwlgrlhla5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ce16d27a9d73a5eaffebf7b0ff36d90c292248f/recipes/cfrs"; - sha256 = "03mi5iz0yny2ddvp41l3yc49583zw0wqsv33rkycjfj562903syx"; - name = "recipe"; - }; - packageRequires = [ dash emacs posframe s ]; - meta = { - homepage = "https://melpa.org/#/cfrs"; - license = lib.licenses.free; - }; - }) {}; - chapel-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chapel-mode"; - ename = "chapel-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "russel"; - repo = "Emacs-Chapel-Mode"; - rev = "816a1a54ff5ffdd20b6a4d249ace774740a3924c"; - sha256 = "0kp18xlc1005hbkfhng03y4xgaicqf6b5vwgnwbbw9s5qzirmhix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff32db72ad55a7191b5105192480e17535c7edde/recipes/chapel-mode"; - sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chapel-mode"; - license = lib.licenses.free; - }; - }) {}; - char-menu = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "char-menu"; - ename = "char-menu"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "char-menu"; - rev = "f4d8bf8fa6787e2aaca2ccda5223646541d7a4b2"; - sha256 = "0zyi1ha17jk3zz7nirasrrx43j3jkrsfz7ypbc4mk44w7hsvx2hj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6676747e853045b3b19e7fc9524c793c6a08303/recipes/char-menu"; - sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/char-menu"; - license = lib.licenses.free; - }; - }) {}; - charmap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "charmap"; - ename = "charmap"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "lateau"; - repo = "charmap"; - rev = "165193d91ef96f563ae8366ed4c1a2df5a4eaed2"; - sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11c549fca81c4276054f614d86d17fa7af4ab32e/recipes/charmap"; - sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/charmap"; - license = lib.licenses.free; - }; - }) {}; - chatwork = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chatwork"; - ename = "chatwork"; - version = "0.3"; - src = fetchFromGitHub { - owner = "ataka"; - repo = "chatwork"; - rev = "fea231d479f06bf40dbfcf45de143eecc9ed744c"; - sha256 = "163xr18lm4awfgh4lcp7pr04jirpvlk8w1g4445zbxbpjfvv268z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77ae72e62b8771e890525c063522e7091ca8f674/recipes/chatwork"; - sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/chatwork"; - license = lib.licenses.free; - }; - }) {}; - cheat-sh = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cheat-sh"; - ename = "cheat-sh"; - version = "1.7"; - src = fetchFromGitHub { - owner = "davep"; - repo = "cheat-sh.el"; - rev = "6409bb66241255cc9a0362f2acdcb0b34344f9f2"; - sha256 = "1nmsja1s45fs93v2vbalfralixvzp88rgv47vf9p80i7x6w2149m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebac62fb3828d81e30145b9948d60e781e20eda2/recipes/cheat-sh"; - sha256 = "0f6wqyh3c3ap0l6khikqlw8sqqi6fsl468gn157faza4x63j9z80"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cheat-sh"; - license = lib.licenses.free; - }; - }) {}; - checkbox = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "checkbox"; - ename = "checkbox"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "camdez"; - repo = "checkbox.el"; - rev = "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1"; - sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81c4a9d10238836865716f5ea45f8e0e625a87c6/recipes/checkbox"; - sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/checkbox"; - license = lib.licenses.free; - }; - }) {}; - chee = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "chee"; - ename = "chee"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "eikek"; - repo = "chee"; - rev = "beeaa5bb2ce92f1a745440c7ff7468e5f6524701"; - sha256 = "1n0n6rnhms2mgh9yjc5whhf3n37y5lp9jk3ban6f6hn55f8p1gmk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/chee"; - sha256 = "1sw84qaca2cwgrw332wfqjp3kg3axgi9n6wx5a6h2n3liq5yr1wj"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/chee"; - license = lib.licenses.free; - }; - }) {}; - chinese-word-at-point = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "chinese-word-at-point"; - ename = "chinese-word-at-point"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "chinese-word-at-point.el"; - rev = "36a03cce32fe059d2b581cb2e029715c0be81074"; - sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9b7785eca577218feade982c979694389f37ec3/recipes/chinese-word-at-point"; - sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/chinese-word-at-point"; - license = lib.licenses.free; - }; - }) {}; - choice-program = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "choice-program"; - ename = "choice-program"; - version = "0.4"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "choice-program"; - rev = "27607ec1fe241c58fbc1f861454a8e2ec1fd7b15"; - sha256 = "0q8krgsydrc2xc29y60qljifdvxfmxnvbncxsh64xhrzsnrgwmq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e39555b2538cc8a955766c5533871396e8fe712/recipes/choice-program"; - sha256 = "0a21yd3b8sb15vms9mclaa7xnnk0as08p6q38mwdwjp9sgcfyh1b"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/choice-program"; - license = lib.licenses.free; - }; - }) {}; - cider = callPackage ({ clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , queue - , seq - , sesman - , spinner }: - melpaBuild { - pname = "cider"; - ename = "cider"; - version = "0.21.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider"; - rev = "200c88adb1314b5811ba749af42ffb6817c1ca1b"; - sha256 = "0lbrwj67fnvynkdkzvnzp3p8vqlz0ldrcs317vg60bqfhx7hvqkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55a937aed818dbe41530037da315f705205f189b/recipes/cider"; - sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; - name = "recipe"; - }; - packageRequires = [ - clojure-mode - emacs - pkg-info - queue - seq - sesman - spinner - ]; - meta = { - homepage = "https://melpa.org/#/cider"; - license = lib.licenses.free; - }; - }) {}; - cider-eval-sexp-fu = callPackage ({ emacs - , eval-sexp-fu - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cider-eval-sexp-fu"; - ename = "cider-eval-sexp-fu"; - version = "1.2"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider-eval-sexp-fu"; - rev = "7fd229f1441356866aedba611fd0cf4e89b50921"; - sha256 = "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/947f4d106d70f95ca8aac124ab0d90b2975208df/recipes/cider-eval-sexp-fu"; - sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; - name = "recipe"; - }; - packageRequires = [ emacs eval-sexp-fu ]; - meta = { - homepage = "https://melpa.org/#/cider-eval-sexp-fu"; - license = lib.licenses.free; - }; - }) {}; - cider-hydra = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "cider-hydra"; - ename = "cider-hydra"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "cider-hydra"; - rev = "5956c3909cd9beae11f64973e4f0d830cea7860d"; - sha256 = "1hnari85c4y5sc8cdv2idkg2qv058crz54xdidnphr1wgw5zhvpk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51d5e6471f88337c478ee5c189f037aaec937f56/recipes/cider-hydra"; - sha256 = "1qjgfrj3ck70vkyc9c00mif0jq5hc2yan2hql31qzbpqzg3pi2r7"; - name = "recipe"; - }; - packageRequires = [ cider hydra ]; - meta = { - homepage = "https://melpa.org/#/cider-hydra"; - license = lib.licenses.free; - }; - }) {}; - cil-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cil-mode"; - ename = "cil-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "ForNeVeR"; - repo = "cil-mode"; - rev = "8023b45ec60961bf4c3a3d8a564727c463ed09d1"; - sha256 = "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ccbf4a7c9df3c85207c7160ee68ecc4ba4f3801a/recipes/cil-mode"; - sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cil-mode"; - license = lib.licenses.free; - }; - }) {}; - circadian = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circadian"; - ename = "circadian"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "circadian.el"; - rev = "9894361dcd6ffb6d4629b4cbbabda2153699eb8e"; - sha256 = "0wpsykmai3idz0bgfl07hwl9nr4x9sgprvqgw8jln4dz2wf5gdic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/circadian"; - sha256 = "1xxrhifw371yc4i2cddzcdmqh5dfc905wyl88765098685q8k4bp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/circadian"; - license = lib.licenses.free; - }; - }) {}; - circe = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circe"; - ename = "circe"; - version = "2.11"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "6ccd4b494cbae9d28091217654f052eaea321007"; - sha256 = "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/circe"; - sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/circe"; - license = lib.licenses.free; - }; - }) {}; - circe-notifications = callPackage ({ alert - , circe - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "circe-notifications"; - ename = "circe-notifications"; - version = "1.0"; - src = fetchFromGitHub { - owner = "eqyiel"; - repo = "circe-notifications"; - rev = "80c44441ecd3ae04ae63760aa20afa837c1ed05b"; - sha256 = "0s0iw5vclciziga78f1lvj6sdg84a132in39k4vz0pj598ypin1w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76c0408423c4e0728789de7b356b2971d6c446c7/recipes/circe-notifications"; - sha256 = "06y525x5yc0xgbw0cf16mc72ca9bv8j8z4gpgznbad2qp7psf53c"; - name = "recipe"; - }; - packageRequires = [ alert circe emacs ]; - meta = { - homepage = "https://melpa.org/#/circe-notifications"; - license = lib.licenses.free; - }; - }) {}; - citeproc = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , queue - , s - , string-inflection }: - melpaBuild { - pname = "citeproc"; - ename = "citeproc"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "andras-simonyi"; - repo = "citeproc-el"; - rev = "6d68f52ebd150e035b33dcaa59d9e2aceab69b84"; - sha256 = "04xz3y3j8k1pv5v6v9wqscqlpmgqi85fs3igrv8c9y0xagild29k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20aa56e9a4809cee1082224b1b4e65921a48bda1/recipes/citeproc"; - sha256 = "1qphg2bg7vvjzgvnsscbyf40llxxh4aa2s2ffk8vsbfd4p8208cq"; - name = "recipe"; - }; - packageRequires = [ dash emacs f queue s string-inflection ]; - meta = { - homepage = "https://melpa.org/#/citeproc"; - license = lib.licenses.free; - }; - }) {}; - cl-format = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-format"; - ename = "cl-format"; - version = "1.1"; - src = fetchFromGitHub { - owner = "alvinfrancis"; - repo = "cl-format"; - rev = "4380cb8009c47cc6d9098b383082b93b1aefa460"; - sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cl-format"; - sha256 = "09jwy0fgaz2f04dvcdns6w859s6izvrkp8ib4lws3x8kx8z918fy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cl-format"; - license = lib.licenses.free; - }; - }) {}; - cl-lib-highlight = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-lib-highlight"; - ename = "cl-lib-highlight"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "cl-lib-highlight"; - rev = "c117451df8455769701af6c8e92a8fb29c05e1fa"; - sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/696c79669478b0d1c9769cc6f0fe581ee056cf32/recipes/cl-lib-highlight"; - sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cl-lib-highlight"; - license = lib.licenses.free; - }; - }) {}; - cl-libify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cl-libify"; - ename = "cl-libify"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "cl-libify"; - rev = "f7df5d868ada173bc81860ef81ece359f13ae4e4"; - sha256 = "1xp0zajp4rsnxkfzrmz0m5bihk0n1hgwc1cm9q163b2azsvixxmw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22088f8779652072871d5c472c67f34bd0470129/recipes/cl-libify"; - sha256 = "0p3b57vfzhk348hb7bcnkq4ihi4qzsy4hcdvwa1h85i84vwyzk5d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cl-libify"; - license = lib.licenses.free; - }; - }) {}; - click-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "click-mode"; - ename = "click-mode"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "bmalehorn"; - repo = "click-mode"; - rev = "c074e7b5b0a88434d0d3411f18884d1f6e288b33"; - sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1859bb26e3efd66394d7d9f4d2296cbeeaf5ba4d/recipes/click-mode"; - sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/click-mode"; - license = lib.licenses.free; - }; - }) {}; - cliphist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "cliphist"; - ename = "cliphist"; - version = "0.5.6"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "cliphist"; - rev = "232ab0b3f6d502de61ebe76681a6a04d4223b877"; - sha256 = "0is772r0b7i8rvra9zb94g9aczv8b6q0dmdk67wbli5rv5drfjyq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82d86dae4ad8efc8ef342883c164c56e43079171/recipes/cliphist"; - sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/cliphist"; - license = lib.licenses.free; - }; - }) {}; - clips-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clips-mode"; - ename = "clips-mode"; - version = "0.7"; - src = fetchFromGitHub { - owner = "clips-mode"; - repo = "clips-mode"; - rev = "f7869b67c2a8f061ce05f1e48abbcb41a6c455ce"; - sha256 = "07r01g5xcr3w0kq09m4rb8ws0ss77szczycybvas4379sf3g8dv9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/clips-mode"; - sha256 = "1ckk8ajr1x8y2h8jx2q233xs69nip3kjn0wp3xgfbwx7hjcbk7kr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/clips-mode"; - license = lib.licenses.free; - }; - }) {}; - clj-refactor = callPackage ({ cider - , clojure-mode - , edn - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , inflections - , lib - , melpaBuild - , multiple-cursors - , paredit - , s - , seq - , yasnippet }: - melpaBuild { - pname = "clj-refactor"; - ename = "clj-refactor"; - version = "2.4.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clj-refactor.el"; - rev = "3d5d1fbf28bfcc00f917cd96d6784968dcbbc962"; - sha256 = "1z9278syijnzxfwlghz7bps3jp4cdl0fxg6igwpjfl8ln56hxazk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/clj-refactor"; - sha256 = "05x0820x34pidcz03z96qs685y2700g7ha0dx4vy1xr7fg356c3z"; - name = "recipe"; - }; - packageRequires = [ - cider - clojure-mode - edn - emacs - hydra - inflections - multiple-cursors - paredit - s - seq - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/clj-refactor"; - license = lib.licenses.free; - }; - }) {}; - cljr-helm = callPackage ({ cl-lib ? null - , clj-refactor - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "cljr-helm"; - ename = "cljr-helm"; - version = "0.11"; - src = fetchFromGitHub { - owner = "philjackson"; - repo = "cljr-helm"; - rev = "f2fc7b698a56e4a44d5dfbc6a55d77a93c0fa9a4"; - sha256 = "0jy6hkz8sr1bplymwxnjg4q408cw2dgfrv70chlw3y5ddc4cingj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d99b67e295ef59916211bf22b57b4d093e3d53ab/recipes/cljr-helm"; - sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; - name = "recipe"; - }; - packageRequires = [ cl-lib clj-refactor helm-core ]; - meta = { - homepage = "https://melpa.org/#/cljr-helm"; - license = lib.licenses.free; - }; - }) {}; - clocker = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "clocker"; - ename = "clocker"; - version = "0.0.11"; - src = fetchFromGitHub { - owner = "roman"; - repo = "clocker.el"; - rev = "07338bc4b850d262eb263ac306ae3366cac6e078"; - sha256 = "0f6qav92lyp36irdlamcxhzfd4p1i4iq18d5cmr7fgfwi894ikcg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dadd3f5abad2e1f7863c4d654ff065f641395f64/recipes/clocker"; - sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; - name = "recipe"; - }; - packageRequires = [ dash projectile ]; - meta = { - homepage = "https://melpa.org/#/clocker"; - license = lib.licenses.free; - }; - }) {}; - clojure-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-mode"; - ename = "clojure-mode"; - version = "5.10.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clojure-mode"; - rev = "a4ed7a4152f8a6514dd3fd82532aa5a2bdba024f"; - sha256 = "09l1zjnc2g028nw9jv3ksklmff0ar3m5n89qxmdb2nz3ncmj0lir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode"; - sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/clojure-mode"; - license = lib.licenses.free; - }; - }) {}; - clojure-mode-extra-font-locking = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-mode-extra-font-locking"; - ename = "clojure-mode-extra-font-locking"; - version = "5.10.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clojure-mode"; - rev = "9bbc8d59b3b4dfe3f0564f0d06832a309b4e4e4e"; - sha256 = "0brwcxlz337bd1y1vjlix2aq6qjzqqrl0g9hag5lmpkimnbbnbv1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e3cd2e6ee52692dc7b2a04245137130a9f521c7/recipes/clojure-mode-extra-font-locking"; - sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; - name = "recipe"; - }; - packageRequires = [ clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/clojure-mode-extra-font-locking"; - license = lib.licenses.free; - }; - }) {}; - clojure-quick-repls = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clojure-quick-repls"; - ename = "clojure-quick-repls"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "symfrog"; - repo = "clojure-quick-repls"; - rev = "90f82e294cfdfb65231adc456177580cd69bfc00"; - sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e618430057eb3ac235ab4a44767524919c870036/recipes/clojure-quick-repls"; - sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; - name = "recipe"; - }; - packageRequires = [ cider dash ]; - meta = { - homepage = "https://melpa.org/#/clojure-quick-repls"; - license = lib.licenses.free; - }; - }) {}; - clojure-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "clojure-snippets"; - ename = "clojure-snippets"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "mpenet"; - repo = "clojure-snippets"; - rev = "83785faa607884308a42b81f160854f2cecfd098"; - sha256 = "1sdgf1avfw7w3m3i7nqb9m9nhqk8lr0bri686lrkq23ds2b44454"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4898fc6746b30b0d0453b3b56d02479bfb0f70b9/recipes/clojure-snippets"; - sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/clojure-snippets"; - license = lib.licenses.free; - }; - }) {}; - clomacs = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , simple-httpd }: - melpaBuild { - pname = "clomacs"; - ename = "clomacs"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "clomacs"; - rev = "d9783d42dbab9710afff5654bf931b00e9df4ac1"; - sha256 = "0jwnsyg0vi9ghn9yfd97rjj9j9ja3ig8h63n4zjw71ww3bcdldc6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/345f9797e87e3f5f957c167a5e3d33d1e31b50a3/recipes/clomacs"; - sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; - name = "recipe"; - }; - packageRequires = [ cider emacs s simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/clomacs"; - license = lib.licenses.free; - }; - }) {}; - closql = callPackage ({ emacs - , emacsql-sqlite - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "closql"; - ename = "closql"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "closql"; - rev = "012b94f8695e194455111fd54eff0b94dd0dd0db"; - sha256 = "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/closql"; - sha256 = "13ybna20w2d1b3n0y5p1ybhkw0j0zh5nd43p1yvf8h1haj983l87"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql-sqlite ]; - meta = { - homepage = "https://melpa.org/#/closql"; - license = lib.licenses.free; - }; - }) {}; - clues-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "clues-theme"; - ename = "clues-theme"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-clues-theme"; - rev = "abd61f2b7f3e98de58ca26e6d1230e70c6406cc7"; - sha256 = "118k5bnlk9sc2n04saaxjncmc1a4m1wlf2y7xyklpffkazbd0m72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/clues-theme"; - sha256 = "0b0gypmxx8qjd8hgxf4kbvci1nwacsxl7rm5s1bcnk9cwc6k2jpr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/clues-theme"; - license = lib.licenses.free; - }; - }) {}; - cm-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cm-mode"; - ename = "cm-mode"; - version = "1.6"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "criticmarkup-emacs"; - rev = "276d49c859822265070ae5dfbb403fd7d8d06436"; - sha256 = "0mqbjw9wiaq735v307hd7g0g6i3a4k7h71bi4g9rr2jbgiljmql4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42dda804ec0c7338c39c57eec6ba479609a38555/recipes/cm-mode"; - sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/cm-mode"; - license = lib.licenses.free; - }; - }) {}; - cmake-ide = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , levenshtein - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "cmake-ide"; - ename = "cmake-ide"; - version = "0.5"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "cmake-ide"; - rev = "a2e476ad42e61075cae9beb35fb83e3c1bf8619e"; - sha256 = "0n169i4y2c450bk5r284bakjk3hsg74pply5fqxvdm6p5p1z2vr1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17e8a8a5205d222950dc8e9245549a48894b864a/recipes/cmake-ide"; - sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs levenshtein seq ]; - meta = { - homepage = "https://melpa.org/#/cmake-ide"; - license = lib.licenses.free; - }; - }) {}; - cmake-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmake-mode"; - ename = "cmake-mode"; - version = "3.15.0.-1.1"; - src = fetchFromGitHub { - owner = "Kitware"; - repo = "CMake"; - rev = "8d478c0003cc9bb4836038fc1a27d3bbd40348d2"; - sha256 = "0i4rs8m7qf9milc9csy38r7m0j5xqy2q75fqmyxd4xpfmkf4a2v7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/598723893ae4bc2e60f527a072efe6ed9d4e2488/recipes/cmake-mode"; - sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cmake-mode"; - license = lib.licenses.free; - }; - }) {}; - cmake-project = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cmake-project"; - ename = "cmake-project"; - version = "0.7"; - src = fetchFromGitHub { - owner = "alamaison"; - repo = "emacs-cmake-project"; - rev = "ec61f687772cccdb699f64ebe1e8dc8ba83f790f"; - sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0857c4db1027981ea73bc32bcaa15e5df53edea3/recipes/cmake-project"; - sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cmake-project"; - license = lib.licenses.free; - }; - }) {}; - cnfonts = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cnfonts"; - ename = "cnfonts"; - version = "0.9.1"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "cnfonts"; - rev = "5cfe656554c91b3d0dcc5417e43afa85d2a7a182"; - sha256 = "1px5gc83g70whdiysq7mmxz7rm74mhsjs2y1vbzgg8k1z0cs9wkp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d5787ffeeee68ffa41f3e777071815084e0ed7a/recipes/cnfonts"; - sha256 = "1pryn08fkdrdj7w302205nj1qhfbk1jzqxx6717crrxakkdqmn9w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cnfonts"; - license = lib.licenses.free; - }; - }) {}; - code-stats = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "code-stats"; - ename = "code-stats"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "code-stats-emacs"; - rev = "20d60ded0743f01206c3c2e92ab73788def9adcb"; - sha256 = "0g8pqqpwmc646krdpfkri8q7pwnj8sb3pma5mfkwg8lvj6ddcx27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20af5580926e9975605c0a245f6ac15c25f4921e/recipes/code-stats"; - sha256 = "0mwjlhpmrbh3mbw3hjlsbv1fr4mxh068c9g0zcxq7wkksxx707if"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/code-stats"; - license = lib.licenses.free; - }; - }) {}; - codic = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "codic"; - ename = "codic"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-codic"; - rev = "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557"; - sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/codic"; - sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/codic"; - license = lib.licenses.free; - }; - }) {}; - coffee-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "coffee-mode"; - ename = "coffee-mode"; - version = "0.6.3"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "coffee-mode"; - rev = "adfb7ae73d6ee2ef790c780dd3c967e62930e94a"; - sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/coffee-mode"; - sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/coffee-mode"; - license = lib.licenses.free; - }; - }) {}; - color-identifiers-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-identifiers-mode"; - ename = "color-identifiers-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ankurdave"; - repo = "color-identifiers-mode"; - rev = "536151410dbb198b328dc62b829d9692cec0b1bd"; - sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c735755e414fdf169aca5ec6f742533d21472e0/recipes/color-identifiers-mode"; - sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/color-identifiers-mode"; - license = lib.licenses.free; - }; - }) {}; - color-theme-modern = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-modern"; - ename = "color-theme-modern"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "replace-colorthemes"; - rev = "7107540d22e8ff045e0707de84c8b179fd829302"; - sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2db82e101916d8709b711034da5ca6e4072e1077/recipes/color-theme-modern"; - sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/color-theme-modern"; - license = lib.licenses.free; - }; - }) {}; - color-theme-sanityinc-solarized = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-sanityinc-solarized"; - ename = "color-theme-sanityinc-solarized"; - version = "2.29"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "color-theme-sanityinc-solarized"; - rev = "554e941131d009c0a5d7129ed96796182b4cc590"; - sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-solarized"; - sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-theme-sanityinc-solarized"; - license = lib.licenses.free; - }; - }) {}; - color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "color-theme-sanityinc-tomorrow"; - ename = "color-theme-sanityinc-tomorrow"; - version = "1.17"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "color-theme-sanityinc-tomorrow"; - rev = "81d8990085960824f700520d08027e6aca58feaa"; - sha256 = "1x3aq6hadp158vh8mf9hmj5rikq0qz7a1frv7vbl39xr3wcnjj23"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/color-theme-sanityinc-tomorrow"; - sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/color-theme-sanityinc-tomorrow"; - license = lib.licenses.free; - }; - }) {}; - colormaps = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "colormaps"; - ename = "colormaps"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "lepisma"; - repo = "colormaps.el"; - rev = "3a88961ba66b09a49ea5aa92b2b8776b2c92d68c"; - sha256 = "083hks2zzalizdsgabiwc1kd114r748v5i3w3kfk8pv37i2gay35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4c795d9e323b08bc8354a6933a061644705a2ec/recipes/colormaps"; - sha256 = "16plhgpfz1wb58p6h8wxjhplhgv0mbj3f2xj34p6vydh44l8w8q2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/colormaps"; - license = lib.licenses.free; - }; - }) {}; - comb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comb"; - ename = "comb"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "cyrus-and"; - repo = "comb"; - rev = "8a68d313bf429763eb8aa78ece00230a668f2a1f"; - sha256 = "1hh1lkan1ch5xyzrpfgzibf8dxmvaa1jfwlxyyhpnfs5h69h3245"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b236a1f3953475cbd7eb5c4289b092818ae08cf/recipes/comb"; - sha256 = "0n4pkigr07hwj5nb0ngs6ay80psqv7nppp82rg5w38qf0mjs3pkp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/comb"; - license = lib.licenses.free; - }; - }) {}; - commander = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "commander"; - ename = "commander"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "commander.el"; - rev = "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9"; - sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b308e05dd85856addbc04a9438f5026803cebd7/recipes/commander"; - sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f s ]; - meta = { - homepage = "https://melpa.org/#/commander"; - license = lib.licenses.free; - }; - }) {}; - comment-dwim-2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "comment-dwim-2"; - ename = "comment-dwim-2"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "remyferre"; - repo = "comment-dwim-2"; - rev = "3dfdd58495c46a37708344a57c5c52beca6b2c1c"; - sha256 = "08pi3y12i6wx69aj09nk5qd6lplwxq5wz3m7w5701988q39x62xl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ac6ac97875117013515a36c9a4452fbd6c0d74c/recipes/comment-dwim-2"; - sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/comment-dwim-2"; - license = lib.licenses.free; - }; - }) {}; - comment-tags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "comment-tags"; - ename = "comment-tags"; - version = "0.1"; - src = fetchFromGitHub { - owner = "vincekd"; - repo = "comment-tags"; - rev = "293a30026d7750f6657d6c2e6d6428abf1d7db5a"; - sha256 = "06s0phgqpzkkv81gl0cm6x8rjs53lhs8b2j56xamflqiydq0fz7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ac71f4ffc19bce4f571001f9270d5be855dfc3c/recipes/comment-tags"; - sha256 = "13slv150zch0b7zpxa2dbqjzpqh0iy559m6rc0zs0dwdagzryp3i"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/comment-tags"; - license = lib.licenses.free; - }; - }) {}; - commentary-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "commentary-theme"; - ename = "commentary-theme"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "pzel"; - repo = "commentary-theme"; - rev = "9a825ae98166c9dbbf106e7be62ee69dd9f0342f"; - sha256 = "1x30iyvvxggbh7xvp8lwpirvpqijchqf2fdaw4xrlbw5vajlaxcx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/852b5f83c9870209080d2ed39fede3215ae43e64/recipes/commentary-theme"; - sha256 = "1s3g40f0r0v8m1qqldvw64vs43i5xza7rwkvhxqcqmj6p1a7mqqw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/commentary-theme"; - license = lib.licenses.free; - }; - }) {}; - commenter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "commenter"; - ename = "commenter"; - version = "0.5.2"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "commenter"; - rev = "6d1885419434ba779270c6fda0e30d390bb074bd"; - sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/437afab17b22c0c559617afa06923b5bc73a3ae8/recipes/commenter"; - sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/commenter"; - license = lib.licenses.free; - }; - }) {}; - common-lisp-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "common-lisp-snippets"; - ename = "common-lisp-snippets"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "common-lisp-snippets"; - rev = "fc5c2683952328927a6d1c1f2694b85ddf7e9053"; - sha256 = "1835kg05794p1wdi7fsmpzlnnqy79dgfnfrxjfjj2j1gzcwmynsw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48d0166ccd3dcdd3df4719349778c6c5ab6872ca/recipes/common-lisp-snippets"; - sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/common-lisp-snippets"; - license = lib.licenses.free; - }; - }) {}; - company = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company"; - ename = "company"; - version = "0.9.10"; - src = fetchFromGitHub { - owner = "company-mode"; - repo = "company-mode"; - rev = "3eda0ba23921d43b733f7975e56d490a34b9f30b"; - sha256 = "0shmv48bq9l5xm60dwx9lqyq6b39y3d7qjxdlah7dpipv5vhra42"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96e7b4184497d0d0db532947f2801398b72432e4/recipes/company"; - sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/company"; - license = lib.licenses.free; - }; - }) {}; - company-anaconda = callPackage ({ anaconda-mode - , cl-lib ? null - , company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-anaconda"; - ename = "company-anaconda"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-anaconda"; - rev = "182a8fdabc01630f255beeb2708728c0cd5c6316"; - sha256 = "1rqf9i4l32njpwx4aiwxqr994g3jzispwprs6nwjfvg70xkvm4m0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb23a75c8b57b4af1737c0508f03e66430e6076/recipes/company-anaconda"; - sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; - name = "recipe"; - }; - packageRequires = [ anaconda-mode cl-lib company dash s ]; - meta = { - homepage = "https://melpa.org/#/company-anaconda"; - license = lib.licenses.free; - }; - }) {}; - company-ansible = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ansible"; - ename = "company-ansible"; - version = "0.7.1"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "company-ansible"; - rev = "c6dc714e3a15f89671ae5e8fe668858b20ef63e8"; - sha256 = "01nly13i2bs77lrvkm26i96vrrigbxpb9cakski9fv3xrvfxq9bv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130/recipes/company-ansible"; - sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-ansible"; - license = lib.licenses.free; - }; - }) {}; - company-cabal = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-cabal"; - ename = "company-cabal"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-cabal"; - rev = "f458de88cad16ed48a605e8347e56433e73dcef8"; - sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee888b1ba57b6af3a3330607898810cd248862db/recipes/company-cabal"; - sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-cabal"; - license = lib.licenses.free; - }; - }) {}; - company-coq = callPackage ({ cl-lib ? null - , company - , company-math - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "company-coq"; - ename = "company-coq"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "cpitclaudel"; - repo = "company-coq"; - rev = "a4e0625725e4f54d202e746bb41b8bc14c14ddef"; - sha256 = "0dxi4h8xqq5647k7h89s4pi8nwyj3brlhsckrv3p3b1g4dr6mk3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f89e3097c654774981953ef125679fec0b5b7c9/recipes/company-coq"; - sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; - name = "recipe"; - }; - packageRequires = [ cl-lib company company-math dash yasnippet ]; - meta = { - homepage = "https://melpa.org/#/company-coq"; - license = lib.licenses.free; - }; - }) {}; - company-dict = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parent-mode }: - melpaBuild { - pname = "company-dict"; - ename = "company-dict"; - version = "1.2.8"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-company-dict"; - rev = "cd7b8394f6014c57897f65d335d6b2bd65dab1f4"; - sha256 = "11whnjmy5dyg4wkwabpip8hqsmqys193m7aqbd7jl4hmq24hrwsw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/212c077def5b4933c6001056132181e1a5850a7c/recipes/company-dict"; - sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; - name = "recipe"; - }; - packageRequires = [ company emacs parent-mode ]; - meta = { - homepage = "https://melpa.org/#/company-dict"; - license = lib.licenses.free; - }; - }) {}; - company-edbi = callPackage ({ cl-lib ? null - , company - , edbi - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "company-edbi"; - ename = "company-edbi"; - version = "0.1"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-edbi"; - rev = "08dc69ccfbcf10ca83f7075e9b735c6885cd7e11"; - sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d881ff0927d5bd7f8192f58927ceabb9bad4beb/recipes/company-edbi"; - sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; - name = "recipe"; - }; - packageRequires = [ cl-lib company edbi s ]; - meta = { - homepage = "https://melpa.org/#/company-edbi"; - license = lib.licenses.free; - }; - }) {}; - company-emacs-eclim = callPackage ({ cl-lib ? null - , company - , eclim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-emacs-eclim"; - ename = "company-emacs-eclim"; - version = "0.4"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "94508ebd071ff1052d68a20f7f1bf1038439fe43"; - sha256 = "0l72zw93wv8ncn98d6ybnykhi3a60bc0kyx6z699wfhnnhhxhl0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/company-emacs-eclim"; - sha256 = "1l56hcy0y3cr38z1pjf0ilsdqdzvj3zwd40markm6si2xhdr8xig"; - name = "recipe"; - }; - packageRequires = [ cl-lib company eclim ]; - meta = { - homepage = "https://melpa.org/#/company-emacs-eclim"; - license = lib.licenses.free; - }; - }) {}; - company-emoji = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-emoji"; - ename = "company-emoji"; - version = "2.5.1"; - src = fetchFromGitHub { - owner = "dunn"; - repo = "company-emoji"; - rev = "271909be44f86bcc294739ca45992cdc3caee39f"; - sha256 = "1rihgld1wxwfdpqv7d9gcgd8xpnms5kpw61z30y18fmkxhhmid3c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5733dccdffe97911a30352fbcda2900c33d79810/recipes/company-emoji"; - sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; - name = "recipe"; - }; - packageRequires = [ cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-emoji"; - license = lib.licenses.free; - }; - }) {}; - company-erlang = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , ivy-erlang-complete - , lib - , melpaBuild }: - melpaBuild { - pname = "company-erlang"; - ename = "company-erlang"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "company-erlang"; - rev = "bc0524a16f17b66c7397690e4ca0e004f09ea6c5"; - sha256 = "04wm3i65fpzln7sdcny88hfjfm0n7wy44ffsr3697x4l95d0bnyh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca96ed0b5d6f8aea4de56ddeaa003b9c81d96219/recipes/company-erlang"; - sha256 = "0qlc89c05523kjzsb7j3yfi022la47kgixl74ggkafhn60scwdm7"; - name = "recipe"; - }; - packageRequires = [ company emacs ivy-erlang-complete ]; - meta = { - homepage = "https://melpa.org/#/company-erlang"; - license = lib.licenses.free; - }; - }) {}; - company-ghc = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , ghc - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ghc"; - ename = "company-ghc"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-ghc"; - rev = "64e4f9d0cf9377138a8dee34c69e7d578fd71090"; - sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28f6a983444f796c81df7e5ee94d74c480b21298/recipes/company-ghc"; - sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs ghc ]; - meta = { - homepage = "https://melpa.org/#/company-ghc"; - license = lib.licenses.free; - }; - }) {}; - company-go = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-go"; - ename = "company-go"; - version = "20150303"; - src = fetchFromGitHub { - owner = "mdempsky"; - repo = "gocode"; - rev = "3109790fda3785bbad336e3dd85aaaa4604dbe8b"; - sha256 = "1sn6fvskb8drxphxjn57nr7y0wfh3y6xiksym1fqx68znzwf7ckh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3/recipes/company-go"; - sha256 = "1zhdckq1c9jzi5cf90w2m77fq6l67rjri4lnf8maq82gxqzk6wa5"; - name = "recipe"; - }; - packageRequires = [ company ]; - meta = { - homepage = "https://melpa.org/#/company-go"; - license = lib.licenses.free; - }; - }) {}; - company-irony = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "company-irony"; - ename = "company-irony"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "company-irony"; - rev = "52aca45bcd0f2cb0648fcafa2bbb4f8ad4b2fee7"; - sha256 = "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/company-irony"; - sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs irony ]; - meta = { - homepage = "https://melpa.org/#/company-irony"; - license = lib.licenses.free; - }; - }) {}; - company-irony-c-headers = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "company-irony-c-headers"; - ename = "company-irony-c-headers"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "hotpxl"; - repo = "company-irony-c-headers"; - rev = "ba304fe7eebdff90bbc7dea063b45b82638427fa"; - sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f9f62d8ef438a9ba4872bd7731768eddc5905de/recipes/company-irony-c-headers"; - sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; - name = "recipe"; - }; - packageRequires = [ cl-lib company irony ]; - meta = { - homepage = "https://melpa.org/#/company-irony-c-headers"; - license = lib.licenses.free; - }; - }) {}; - company-jedi = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , jedi-core - , lib - , melpaBuild }: - melpaBuild { - pname = "company-jedi"; - ename = "company-jedi"; - version = "0.4"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-company-jedi"; - rev = "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b"; - sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/company-jedi"; - sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs jedi-core ]; - meta = { - homepage = "https://melpa.org/#/company-jedi"; - license = lib.licenses.free; - }; - }) {}; - company-lsp = callPackage ({ company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , s }: - melpaBuild { - pname = "company-lsp"; - ename = "company-lsp"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "tigersoldier"; - repo = "company-lsp"; - rev = "4eb6949f19892be7bf682381cde005791a48583a"; - sha256 = "1hy1x2w0yp5brm7714d1hziz3rpkywb5jp3yj78ibmi9ifny9vri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5125f53307c1af3d9ccf2bae3c25e7d23dfe1932/recipes/company-lsp"; - sha256 = "09nbi6vxw8l26gfgsc1k3bx4m8i1px1b0jxaywszky5bv4fdy03l"; - name = "recipe"; - }; - packageRequires = [ company dash emacs lsp-mode s ]; - meta = { - homepage = "https://melpa.org/#/company-lsp"; - license = lib.licenses.free; - }; - }) {}; - company-math = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , math-symbol-lists - , melpaBuild }: - melpaBuild { - pname = "company-math"; - ename = "company-math"; - version = "1.3"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "company-math"; - rev = "7e7f8c71f57b12f9bcbbf01f2bbcc59343ad76d4"; - sha256 = "0akqhhjvzsg0lbqx4bbkfkzijidwgi3bb32sxl3yxz7zfm9pbhn2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/company-math"; - sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; - name = "recipe"; - }; - packageRequires = [ company math-symbol-lists ]; - meta = { - homepage = "https://melpa.org/#/company-math"; - license = lib.licenses.free; - }; - }) {}; - company-ngram = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-ngram"; - ename = "company-ngram"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "kshramt"; - repo = "company-ngram"; - rev = "d15182df3eac72b29772802759b77c9eafef5066"; - sha256 = "05108s2a3c857n9j3c34hdni3fyq149pva4m3f51lis4wqrm4zv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/937e6a23782450525c4a90392c414173481e101b/recipes/company-ngram"; - sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; - name = "recipe"; - }; - packageRequires = [ cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-ngram"; - license = lib.licenses.free; - }; - }) {}; - company-nixos-options = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nixos-options }: - melpaBuild { - pname = "company-nixos-options"; - ename = "company-nixos-options"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "a3475995f9e107d339b9ea7a739ac6ebe2bf050f"; - sha256 = "1jp6z1hrh80irvhz5lv5blbcc821w98y67ni1fmnlwdiv2mp049l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/company-nixos-options"; - sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; - name = "recipe"; - }; - packageRequires = [ cl-lib company nixos-options ]; - meta = { - homepage = "https://melpa.org/#/company-nixos-options"; - license = lib.licenses.free; - }; - }) {}; - company-php = callPackage ({ ac-php-core - , cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-php"; - ename = "company-php"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "xcwen"; - repo = "ac-php"; - rev = "6069c9bdf755384b6cda0ca70fc19cf951f08b3b"; - sha256 = "1znjx2g5004w4f8hmm4gbdjrij2zmmf5ng18ld0pm2lgb3y3cib4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac283f1b65c3ba6278e9d3236e5a19734e42b123/recipes/company-php"; - sha256 = "1gnhklfkg17vxfx7fw65lr4nr07jx71y84mhs9zszwcr9p840hh5"; - name = "recipe"; - }; - packageRequires = [ ac-php-core cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-php"; - license = lib.licenses.free; - }; - }) {}; - company-phpactor = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-phpactor"; - ename = "company-phpactor"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpactor.el"; - rev = "61e4eab638168b7034eef0f11e35a89223fa7687"; - sha256 = "0dsa1mygb96nlz5gppf0sny3lxaacvmvnkg84c0cs6x223s6zfx8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc6edd22befea0aee9b11bc8df7d42c400e12f43/recipes/company-phpactor"; - sha256 = "1a6szs85hmxm2xpkmc3dyx2daap7bjvpnrl4gcmbq26zbz2f0z0a"; - name = "recipe"; - }; - packageRequires = [ cl-lib company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-phpactor"; - license = lib.licenses.free; - }; - }) {}; - company-prescient = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , prescient }: - melpaBuild { - pname = "company-prescient"; - ename = "company-prescient"; - version = "3.1"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "ae414dde56f3430867faf41c04e4c3df75f9c960"; - sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b92c34e493bbefab1d7747b0855d1ab2f984cb7c/recipes/company-prescient"; - sha256 = "0cp918ihbjqxfgqnifknl5hphmvq5bl42dhp5ylvijsfa8kvbsb9"; - name = "recipe"; - }; - packageRequires = [ company emacs prescient ]; - meta = { - homepage = "https://melpa.org/#/company-prescient"; - license = lib.licenses.free; - }; - }) {}; - company-quickhelp = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "company-quickhelp"; - ename = "company-quickhelp"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "expez"; - repo = "company-quickhelp"; - rev = "b2953c725654650677e3d66eaeec666826d5f65f"; - sha256 = "08ccsfvwdpzpj0gai3xrdb2bv1nl6myjkxsc5774pbvlq9nkfdvr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/022cc4fee54bb0194822947c70058145e2980b94/recipes/company-quickhelp"; - sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; - name = "recipe"; - }; - packageRequires = [ company emacs pos-tip ]; - meta = { - homepage = "https://melpa.org/#/company-quickhelp"; - license = lib.licenses.free; - }; - }) {}; - company-restclient = callPackage ({ cl-lib ? null - , company - , emacs - , fetchFromGitHub - , fetchurl - , know-your-http-well - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "company-restclient"; - ename = "company-restclient"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "company-restclient"; - rev = "e5a3ec54edb44776738c13e13e34c85b3085277b"; - sha256 = "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dd063bc3789772fdcc6a8555817588962e60825/recipes/company-restclient"; - sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - company - emacs - know-your-http-well - restclient - ]; - meta = { - homepage = "https://melpa.org/#/company-restclient"; - license = lib.licenses.free; - }; - }) {}; - company-rtags = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "company-rtags"; - ename = "company-rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "7c470ba8e15740f37c3a7a9c56331c1cc4c0b1bb"; - sha256 = "05czbkgq48jv0f9vainflikil51xiwd0h24jmmx5886wi3v1wb4c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/company-rtags"; - sha256 = "0dicxbp3xn02pflrpfndj7hs494prvz64llsk1xpc2z23kfarp6f"; - name = "recipe"; - }; - packageRequires = [ company emacs rtags ]; - meta = { - homepage = "https://melpa.org/#/company-rtags"; - license = lib.licenses.free; - }; - }) {}; - company-shell = callPackage ({ cl-lib ? null - , company - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-shell"; - ename = "company-shell"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "company-shell"; - rev = "acdbf8cba6ad9831d81a77bab7bbfd50f19edd86"; - sha256 = "1dk927da7g4a39sva9bda978bx6hpiz5kf341fj8sb7xhryvh5r2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbaa05d158f3806b9f79a2c826763166dbee56ca/recipes/company-shell"; - sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash emacs ]; - meta = { - homepage = "https://melpa.org/#/company-shell"; - license = lib.licenses.free; - }; - }) {}; - company-solidity = callPackage ({ cl-lib ? null - , company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-solidity"; - ename = "company-solidity"; - version = "0.1.9"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "d0ff4dea49540f37301d869f2797fca2492f55d5"; - sha256 = "1wcy5z4wggn3zs9h1kyvm0ji51ppjcqdmym3mmxbrhan6a0kq724"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e561d869f4e32bad5d1a8678f67e591ff586d6de/recipes/company-solidity"; - sha256 = "1rkja48j2m0g0azc34i715ckkqwjkb44y3b4a9vlxs8cjqza4w7q"; - name = "recipe"; - }; - packageRequires = [ cl-lib company ]; - meta = { - homepage = "https://melpa.org/#/company-solidity"; - license = lib.licenses.free; - }; - }) {}; - company-sourcekit = callPackage ({ company - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sourcekit }: - melpaBuild { - pname = "company-sourcekit"; - ename = "company-sourcekit"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "company-sourcekit"; - rev = "8ba62ac25bf533b7f148f333bcb5c1db799f749b"; - sha256 = "01dh0wdaydiai4v13r8g05rpiwqr5qqi34wif8vbk2mrr25wc7i9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/company-sourcekit"; - sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; - name = "recipe"; - }; - packageRequires = [ company dash dash-functional emacs sourcekit ]; - meta = { - homepage = "https://melpa.org/#/company-sourcekit"; - license = lib.licenses.free; - }; - }) {}; - company-statistics = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "company-statistics"; - ename = "company-statistics"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "company-mode"; - repo = "company-statistics"; - rev = "906d8137224c1a5bd1dc913940e0d32ffecf5523"; - sha256 = "0c98kfg7gimjx9cf8dmbk9mdsrybhphshrdl8dhif3zqvn6gxyd7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/89d05b43f31ec157ce8e7bfba4b7c9119bda6dd2/recipes/company-statistics"; - sha256 = "1fl4ldj17m3xhi6xbw3bp9c2jir34xv3jh9daiw8g912fv2l5dcj"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/company-statistics"; - license = lib.licenses.free; - }; - }) {}; - company-tern = callPackage ({ cl-lib ? null - , company - , dash - , dash-functional - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , tern }: - melpaBuild { - pname = "company-tern"; - ename = "company-tern"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "company-tern"; - rev = "b20b3e490bf277c8480712210e3c92ea489859ef"; - sha256 = "1l4b54rqwsb32r8zwwrag7s35zc3kpviafdrqkq8r1nyshg2yccm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/company-tern"; - sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash dash-functional s tern ]; - meta = { - homepage = "https://melpa.org/#/company-tern"; - license = lib.licenses.free; - }; - }) {}; - company-terraform = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , terraform-mode }: - melpaBuild { - pname = "company-terraform"; - ename = "company-terraform"; - version = "1.3"; - src = fetchFromGitHub { - owner = "rafalcieslak"; - repo = "emacs-company-terraform"; - rev = "2d11a21fee2f298e48968e479ddcaeda4d736e12"; - sha256 = "0hxilq7289djrn6kgw7n926zpz0pr7iyd1wm6cy8yfhxf546a4px"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d9732da975dcf59d3b311b19e20abbb29c33656/recipes/company-terraform"; - sha256 = "198ppqn6f7y9bg582z5s4cl9gg1q9ibsr7mmn68b50zvma7ankzh"; - name = "recipe"; - }; - packageRequires = [ company emacs terraform-mode ]; - meta = { - homepage = "https://melpa.org/#/company-terraform"; - license = lib.licenses.free; - }; - }) {}; - company-web = callPackage ({ cl-lib ? null - , company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-completion-data }: - melpaBuild { - pname = "company-web"; - ename = "company-web"; - version = "2.1"; - src = fetchFromGitHub { - owner = "osv"; - repo = "company-web"; - rev = "f0cc9187c9c34f72ad71f5649a69c74f996bae9a"; - sha256 = "1xcwwcy2866vzaqgn7hrl7j8k48mk74i4shm40v7ybacws47s9nr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-web"; - sha256 = "1q2am684l4d038a3ymyy6gg2ds9lq5mcfc4in8dmvap5grdhia4b"; - name = "recipe"; - }; - packageRequires = [ cl-lib company dash web-completion-data ]; - meta = { - homepage = "https://melpa.org/#/company-web"; - license = lib.licenses.free; - }; - }) {}; - company-ycmd = callPackage ({ company - , dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , s - , ycmd }: - melpaBuild { - pname = "company-ycmd"; - ename = "company-ycmd"; - version = "1.2"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "d042a673b4d717c3ca9d641f120bfe16c994c740"; - sha256 = "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/company-ycmd"; - sha256 = "1dycbp2q8grvv94mwp9n8s7xpz2zjs05l3lf471j3nlbk6xfsn5d"; - name = "recipe"; - }; - packageRequires = [ company dash deferred f let-alist s ycmd ]; - meta = { - homepage = "https://melpa.org/#/company-ycmd"; - license = lib.licenses.free; - }; - }) {}; - composable = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "composable"; - ename = "composable"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "paldepind"; - repo = "composable.el"; - rev = "a3c582994582603ef037db4464f8ea49d759a42e"; - sha256 = "0qlrvr5z9gi6yr9angp5ijmjzqqhwbxlpz9265113x9cy9kjdkpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1fc0f076198e4be46a33a26eea9f2d273dda12b8/recipes/composable"; - sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/composable"; - license = lib.licenses.free; - }; - }) {}; - composer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-runtime - , request - , s - , seq }: - melpaBuild { - pname = "composer"; - ename = "composer"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "composer.el"; - rev = "d88741009cf7cae0a75e3cc7a19dd9143fcc92f9"; - sha256 = "0iqm8997pl3pni7a49igj8q6sp37bjdshjwl6d95bqrjkjf9ll08"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/composer"; - sha256 = "01w9cywhfngkrl9az8kfpzm12nc0zwmax01pyxlbi2l2icmvp5s1"; - name = "recipe"; - }; - packageRequires = [ emacs f php-runtime request s seq ]; - meta = { - homepage = "https://melpa.org/#/composer"; - license = lib.licenses.free; - }; - }) {}; - concurrent = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "concurrent"; - ename = "concurrent"; - version = "0.5.1"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-deferred"; - rev = "9668749635472a63e7a9282e2124325405199b79"; - sha256 = "1ch5br9alvwcpijl9g8w5ypjrah29alpfpk4hjw23rwzyq5p4izq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/concurrent"; - sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; - name = "recipe"; - }; - packageRequires = [ deferred emacs ]; - meta = { - homepage = "https://melpa.org/#/concurrent"; - license = lib.licenses.free; - }; - }) {}; - conda = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic - , s }: - melpaBuild { - pname = "conda"; - ename = "conda"; - version = "0.0.9"; - src = fetchFromGitHub { - owner = "necaris"; - repo = "conda.el"; - rev = "64b804c33f2667e8232689770a9f2e332c2dd0ab"; - sha256 = "1w1p1m2d0mwi3frkah5cnphyqsix7fp1li8glhlwf923cg48cxfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcf762e34837975f5440a1d81a7f09699778123e/recipes/conda"; - sha256 = "1hi292h6ccl7vkvyxcwwcdxw8q2brv3hy0mnlikzj2qy5pbnfg4y"; - name = "recipe"; - }; - packageRequires = [ dash emacs f pythonic s ]; - meta = { - homepage = "https://melpa.org/#/conda"; - license = lib.licenses.free; - }; - }) {}; - conkeror-minor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "conkeror-minor-mode"; - ename = "conkeror-minor-mode"; - version = "1.6.2"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "conkeror-minor-mode"; - rev = "476e81c27b056e21c192391fe674a2bf875466b0"; - sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/conkeror-minor-mode"; - sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/conkeror-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - conllu-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , hydra - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "conllu-mode"; - ename = "conllu-mode"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "odanoburu"; - repo = "conllu-mode"; - rev = "d1b5b682e0a481ab74caed20bbca6177edb83080"; - sha256 = "1n98aqh3pyvaz1lwsqpcpv1nzrij79r342iiw2h90v4mf2r665dy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/444f943baddfeafe29708d6d68aeeeedbb7aa7bd/recipes/conllu-mode"; - sha256 = "1wffvvs8d0xcnz6mcm9rbr8imyj4npyc148yh0gzfzlgjm0fiz1v"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flycheck hydra s ]; - meta = { - homepage = "https://melpa.org/#/conllu-mode"; - license = lib.licenses.free; - }; - }) {}; - connection = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "connection"; - ename = "connection"; - version = "1.10"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "a5ef20b2c32457880827ceda58f927ad9a26d2b7"; - sha256 = "0ahn0v6qdfwvv9n0m6jcgrzmyarbsbvpgq8g4qy2g37ak4j60hp7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/connection"; - sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/connection"; - license = lib.licenses.free; - }; - }) {}; - contextual = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "contextual"; - ename = "contextual"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "e-user"; - repo = "contextual"; - rev = "8134a2d8034c624f4fdbbb0b3893de12f4257909"; - sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de20db067590624bbd2ca5a7a537b7f11ada84f2/recipes/contextual"; - sha256 = "1xwjjchmn3xqxbgvqishh8i75scc4kjgdzlp5j64d443pfgyr56a"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/contextual"; - license = lib.licenses.free; - }; - }) {}; - contextual-menubar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "contextual-menubar"; - ename = "contextual-menubar"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "contextual-menubar"; - rev = "cc2e7c952b59401188b81d84be81dead9d0da3db"; - sha256 = "01mk5xzsg52vfqjri1my193y6jczg2dp3pa2d0v0vw11m1k433h3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cba21d98f3abbf1f45d1fdd9164d4660b7d3e368/recipes/contextual-menubar"; - sha256 = "0r9bsnvf45h7gsdfhsz7h02nskjvflfa2yjarjv9fcl7aipz8rr6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/contextual-menubar"; - license = lib.licenses.free; - }; - }) {}; - copy-as-format = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "copy-as-format"; - ename = "copy-as-format"; - version = "0.0.8"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "copy-as-format"; - rev = "d2376c64334fe3de65d89d6d138a2187f9bf802f"; - sha256 = "0i158bkra7zgq75j08knq2camvlhbs2v8zrsxiyp0mc4q949xysd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42fe8a2113d1c15701abe7a7e0a68e939c3d789b/recipes/copy-as-format"; - sha256 = "1yij5mqm0dg6326yms0a2w8gs42kdxq0ih8dhkpdar54r0bk3m8k"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/copy-as-format"; - license = lib.licenses.free; - }; - }) {}; - copy-file-on-save = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "copy-file-on-save"; - ename = "copy-file-on-save"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "emacs-auto-deployment"; - rev = "5af6d5fcc35ddf9050eada96fd5f334bf0661b62"; - sha256 = "1q9liby1dmwwmg2jz13gx2ld47bpcqb9c7vx4qgky75wb5c2q1xz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/copy-file-on-save"; - sha256 = "1mcwgkhd241aijnmzrrqqn9f7hiq5k1w4fj83v50aixrcs049gc3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/copy-file-on-save"; - license = lib.licenses.free; - }; - }) {}; - copyit = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "copyit"; - ename = "copyit"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-copyit"; - rev = "be8dca96ef434d6658e4707b042c094e909d5141"; - sha256 = "1058qvgl6fkz5srizny0hfbjgqfsb5l9id7zrs5fb5qkilk9s01v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit"; - sha256 = "1m28irqixzl44c683dxvc5x6l3qcqlpy6jzk6629paqkdi5mx1c0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/copyit"; - license = lib.licenses.free; - }; - }) {}; - copyit-pandoc = callPackage ({ copyit - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pandoc }: - melpaBuild { - pname = "copyit-pandoc"; - ename = "copyit-pandoc"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-copyit"; - rev = "c973d3650208a033aaf845989d023f9c6e572ddd"; - sha256 = "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69bd50fd1f3865d48cec9fe2680d260d746248e5/recipes/copyit-pandoc"; - sha256 = "03v448gh6glq126r95w4y6s2p08jgjhkc6zgsplx0v9d5f2mwaqk"; - name = "recipe"; - }; - packageRequires = [ copyit emacs pandoc ]; - meta = { - homepage = "https://melpa.org/#/copyit-pandoc"; - license = lib.licenses.free; - }; - }) {}; - corral = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "corral"; - ename = "corral"; - version = "0.3.20"; - src = fetchFromGitHub { - owner = "nivekuil"; - repo = "corral"; - rev = "8813288de240956641b37deafaaa4811548246df"; - sha256 = "06l2imhxm6dijkqlhk9s0vsa5a0ghybpy7qk7wpkgv0dlm3k3w7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b0d7e326f0401de0488b77d39af7bd7b8e8fdd4/recipes/corral"; - sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/corral"; - license = lib.licenses.free; - }; - }) {}; - counsel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "counsel"; - ename = "counsel"; - version = "0.11.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "525b2e4887dd839045313f32d3ddeb5cab4c7a7e"; - sha256 = "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c50f32b8d603db0d70e77907e36862cd66b811/recipes/counsel"; - sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; - name = "recipe"; - }; - packageRequires = [ emacs swiper ]; - meta = { - homepage = "https://melpa.org/#/counsel"; - license = lib.licenses.free; - }; - }) {}; - counsel-bbdb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-bbdb"; - ename = "counsel-bbdb"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "counsel-bbdb"; - rev = "df2890deb73b09f8055243bd91942ea887d9b7a1"; - sha256 = "0bki658mvlchqf3prkzxz4217a95cxm58c1qmf84yp2n8h6gd0d8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ed9bcdb1f25a6dd743c1dac2bb6cda73a5a5dc2/recipes/counsel-bbdb"; - sha256 = "14d9mk44skpmyj0zkqwz97j80r630j7s5hfrrhlsafdpl5aafjxp"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-bbdb"; - license = lib.licenses.free; - }; - }) {}; - counsel-dash = callPackage ({ counsel - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , helm-dash - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-dash"; - ename = "counsel-dash"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "counsel-dash"; - rev = "a342340bbd8e50e4d1015e0b91d8ecd8f6cdf9f2"; - sha256 = "1ma67lc4y9y3byrz8v6635w8q2scp6f2cqagq09k723k5nnwisfj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8af4d854f972bfed3d2122b4c089f72d8b5f2a/recipes/counsel-dash"; - sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk"; - name = "recipe"; - }; - packageRequires = [ counsel dash dash-functional emacs helm-dash ]; - meta = { - homepage = "https://melpa.org/#/counsel-dash"; - license = lib.licenses.free; - }; - }) {}; - counsel-etags = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-etags"; - ename = "counsel-etags"; - version = "1.8.4"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "counsel-etags"; - rev = "e9d396bf39ae12ef1820d5ae7e2928f14ed39189"; - sha256 = "14my9jvxl26a5yn381h5pi5481y9d9gyk7wnxxd0s4sjc964c5h5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87528349a3ab305bfe98f30c5404913272817a38/recipes/counsel-etags"; - sha256 = "1h3dlczm1m21d4h41vz9ngg5fi02g6f95qalfxdnsvz0d4w4yxk0"; - name = "recipe"; - }; - packageRequires = [ counsel emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/counsel-etags"; - license = lib.licenses.free; - }; - }) {}; - counsel-gtags = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-gtags"; - ename = "counsel-gtags"; - version = "0.1"; - src = fetchFromGitHub { - owner = "FelipeLema"; - repo = "emacs-counsel-gtags"; - rev = "88c47af65fafaabd908e80dec4cf2aae921581c0"; - sha256 = "0qgvic4vdmgr46c0jya80v1ky2v9viqvqgkxzmq4i81zl6f7ad4d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe8fe6af7826a4b73ac784fde8859130b9ad7096/recipes/counsel-gtags"; - sha256 = "1vxxcqijn3nab4146p06vhw6dn8zwb7arbk1610bajsvkyid428y"; - name = "recipe"; - }; - packageRequires = [ counsel emacs ]; - meta = { - homepage = "https://melpa.org/#/counsel-gtags"; - license = lib.licenses.free; - }; - }) {}; - counsel-projectile = callPackage ({ counsel - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "counsel-projectile"; - ename = "counsel-projectile"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "ericdanan"; - repo = "counsel-projectile"; - rev = "d64e5275c578a494102852c466a3696bde466739"; - sha256 = "1inc4ndl0ysfwvxk4avbgpj4qi9rc93da6476a5c81xmwpsv8wmq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/389f16f886a385b02f466540f042a16eea8ba792/recipes/counsel-projectile"; - sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl"; - name = "recipe"; - }; - packageRequires = [ counsel projectile ]; - meta = { - homepage = "https://melpa.org/#/counsel-projectile"; - license = lib.licenses.free; - }; - }) {}; - counsel-tramp = callPackage ({ counsel - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "counsel-tramp"; - ename = "counsel-tramp"; - version = "0.6.3"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-counsel-tramp"; - rev = "5ed06027a313b27ab17a8c8fabbc30c0e424c3b2"; - sha256 = "1qy9lf7cyv6hp9mmpwh92cpdcffbxzyzchx6878d5pmk9qh6xy92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1822b735b6bd533f658bd64ddccda29e19e9a5e/recipes/counsel-tramp"; - sha256 = "1ga57v6whnpigciw54k3hs0idq4cbl35qrysarik72f46by859v5"; - name = "recipe"; - }; - packageRequires = [ counsel emacs ]; - meta = { - homepage = "https://melpa.org/#/counsel-tramp"; - license = lib.licenses.free; - }; - }) {}; - coverage = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ov }: - melpaBuild { - pname = "coverage"; - ename = "coverage"; - version = "0.3"; - src = fetchFromGitHub { - owner = "trezona-lecomte"; - repo = "coverage"; - rev = "c73d984168955ca0f47f44b0464aa45282df42b6"; - sha256 = "1kn61j91x4r4kc498y2jas5il4pc4qzhkj8392g2qiq5m3lbv4vl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd70e138534551dd12ba4d165ba56fbd1e033241/recipes/coverage"; - sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; - name = "recipe"; - }; - packageRequires = [ cl-lib ov ]; - meta = { - homepage = "https://melpa.org/#/coverage"; - license = lib.licenses.free; - }; - }) {}; - coverlay = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "coverlay"; - ename = "coverlay"; - version = "3.0.2"; - src = fetchFromGitHub { - owner = "twada"; - repo = "coverlay.el"; - rev = "0beae208d0e7d746a94385428bd61aa5cd7ea828"; - sha256 = "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/coverlay"; - sha256 = "1n0fblacwps94mhbdwpi22frhqp3pxg4323ghb79rvszb7in9i8j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/coverlay"; - license = lib.licenses.free; - }; - }) {}; - cpputils-cmake = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cpputils-cmake"; - ename = "cpputils-cmake"; - version = "5.5"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "cpputils-cmake"; - rev = "55e5c69554379632692a0fa20bfadeef9194fbdd"; - sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b84a159e97f7161d0705da5dd5e8c34ae5cb848/recipes/cpputils-cmake"; - sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cpputils-cmake"; - license = lib.licenses.free; - }; - }) {}; - creamsody-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "creamsody-theme"; - ename = "creamsody-theme"; - version = "0.3.7"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-theme-creamsody"; - rev = "32fa3f4e461da92700523b1b20e7b28974c19a26"; - sha256 = "01q1l8ajw6lpp1bb4yp8r70d86hcl4hy0mz7x1hzqsvb7flhppp0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/488f95b9e425726d641120130d894babcc3b3e85/recipes/creamsody-theme"; - sha256 = "0l3mq43bszxrz0bxmxb76drp4c8721cw8akgk3l5a800wqbfp2l7"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/creamsody-theme"; - license = lib.licenses.free; - }; - }) {}; - creds = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "creds"; - ename = "creds"; - version = "0.0.6.1"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "emacs-creds"; - rev = "00ebefd10005c170b790a01380cb6a98f798ce5c"; - sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81b032049ccc3837e8693f010b39716912f76bba/recipes/creds"; - sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/creds"; - license = lib.licenses.free; - }; - }) {}; - cricbuzz = callPackage ({ dash - , enlive - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "cricbuzz"; - ename = "cricbuzz"; - version = "0.3.6"; - src = fetchFromGitHub { - owner = "lepisma"; - repo = "cricbuzz.el"; - rev = "0b95d45991bbcd2fa58d96ce921f6a57ba42c153"; - sha256 = "1s77a2lfy7nnaxm3ai9dg8lbdxp0892z4gr0yxqrgzawc4qcbb3x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/cricbuzz"; - sha256 = "18nmr7rpbylqgfx5q3ps38wx9q1ndj06msgyjyc8lqpipbsz0pip"; - name = "recipe"; - }; - packageRequires = [ dash enlive f s ]; - meta = { - homepage = "https://melpa.org/#/cricbuzz"; - license = lib.licenses.free; - }; - }) {}; - crm-custom = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crm-custom"; - ename = "crm-custom"; - version = "0.5"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "crm-custom"; - rev = "f1aaccf64306a5f99d9bf7ba815d7ea41c15518d"; - sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e0752ba601a8d518d3c7fb54fd008602e7dc19f/recipes/crm-custom"; - sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/crm-custom"; - license = lib.licenses.free; - }; - }) {}; - crux = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "crux"; - ename = "crux"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "crux"; - rev = "5b3c8155a9e9fe6f189645d175976026a2dc7b8d"; - sha256 = "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/575e3442a925500a5806e0b900208c1e6bfd11ae/recipes/crux"; - sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/crux"; - license = lib.licenses.free; - }; - }) {}; - cryptol-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cryptol-mode"; - ename = "cryptol-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "thoughtpolice"; - repo = "cryptol-mode"; - rev = "b893e81452b631b464e5a98d17abd3d6627cc629"; - sha256 = "0s62xpwx1m875cqcpd1c5yxgjglwvpa1pz3f7fkl485q5ip4zydl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de12333bb429d84b2c214ac7ebb0219f67838f4f/recipes/cryptol-mode"; - sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cryptol-mode"; - license = lib.licenses.free; - }; - }) {}; - crystal-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "crystal-mode"; - ename = "crystal-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "crystal-lang-tools"; - repo = "emacs-crystal-mode"; - rev = "0fe6815201bebe4c5ff6857bd541d95b05132b10"; - sha256 = "0r75dvc0jqcqi1qjns8zj132dnm0s6mvqlqynkis16nigbawix8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4b9b47d7deecf0cf24a42b26d50021cb1219a69/recipes/crystal-mode"; - sha256 = "1fgpz7zab6nc6kvjzjsbvrbg8shf4by0f20cvjvyky8kym72q0hk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/crystal-mode"; - license = lib.licenses.free; - }; - }) {}; - csharp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csharp-mode"; - ename = "csharp-mode"; - version = "0.9.2"; - src = fetchFromGitHub { - owner = "josteink"; - repo = "csharp-mode"; - rev = "5e47b7764b3f4c97c260a902e8072d444dbd0f1b"; - sha256 = "1dnhpxcinrwc7dmwgzbg4lnly05h38f00zrfsjincvii6d8rjiw0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44/recipes/csharp-mode"; - sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/csharp-mode"; - license = lib.licenses.free; - }; - }) {}; - csound-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi - , shut-up }: - melpaBuild { - pname = "csound-mode"; - ename = "csound-mode"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "hlolli"; - repo = "csound-mode"; - rev = "5a892e6ad72e7844e8e14c0da04fcb6bc125fe5e"; - sha256 = "1gzg2r7agllz2asp7dbxykydpnw3861whs2pfhr3fwwb39xf1pva"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c940d29de11e43b4abf2901c466c94d426a21818/recipes/csound-mode"; - sha256 = "047a78nhkn6qycsz8w9a0r1xyz5wyf4rds3z5yx9sn5wkv54w95d"; - name = "recipe"; - }; - packageRequires = [ emacs multi shut-up ]; - meta = { - homepage = "https://melpa.org/#/csound-mode"; - license = lib.licenses.free; - }; - }) {}; - csv = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "csv"; - ename = "csv"; - version = "2.1"; - src = fetchFromGitLab { - owner = "u11"; - repo = "csv.el"; - rev = "aa1dfa1263565d5fac3879c21d8ddf5f8915e411"; - sha256 = "1vmazjrfcsa9aa9aw8bq5sazdhqvhxyj837dyw5lmh8gk7z0xdaa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/233f9de5f65fd8374f2c1912503c30905aa6691d/recipes/csv"; - sha256 = "1rvi5p27lsb284zqgv4cdqkbqc9r92axmvg7sv52rm7qcj8njwqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/csv"; - license = lib.licenses.free; - }; - }) {}; - ctable = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctable"; - ename = "ctable"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-ctable"; - rev = "08a017bde6d24ea585e39ce2637bebe28774d316"; - sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/ctable"; - sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ctable"; - license = lib.licenses.free; - }; - }) {}; - ctags-update = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctags-update"; - ename = "ctags-update"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "ctags-update"; - rev = "67faf248b92388442958a069263c62a345425a1b"; - sha256 = "0442jdxvn33i0bnb4fspvpdn66gxqyazyc6n3wqjmpn3fqvzwsrp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5d0c347ff8cf6e0ade80853775fd6b84f387fa5/recipes/ctags-update"; - sha256 = "07548jjpx4var2817y47i6br8iicjlj66n1b33h0av6r1h514nci"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ctags-update"; - license = lib.licenses.free; - }; - }) {}; - ctune = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ctune"; - ename = "ctune"; - version = "0.1"; - src = fetchFromGitHub { - owner = "maurooaranda"; - repo = "ctune"; - rev = "276257231e5c19fa476e01077611b5bbcec9f852"; - sha256 = "0s9zbgibkfn7yr9dkpbvvprrn2ak62gsfzjmw4qfqgrg4y3s4x7w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/927ecd888bc00abff13f5fc335a88dffc2bf6779/recipes/ctune"; - sha256 = "1ymy508h19w6c7z93nww9fzirzk84w24j3dpbj08d08bifndhj1q"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ctune"; - license = lib.licenses.free; - }; - }) {}; - ctxmenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , popup - , yaxception }: - melpaBuild { - pname = "ctxmenu"; - ename = "ctxmenu"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-ctxmenu"; - rev = "5c2376859562b98c07c985d2b483658e4c0e888e"; - sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6fc4f51bb6ce8fa9e37c0aeb51696b1980aece0c/recipes/ctxmenu"; - sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; - name = "recipe"; - }; - packageRequires = [ log4e popup yaxception ]; - meta = { - homepage = "https://melpa.org/#/ctxmenu"; - license = lib.licenses.free; - }; - }) {}; - cubicaltt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cubicaltt"; - ename = "cubicaltt"; - version = "1.0"; - src = fetchFromGitHub { - owner = "mortberg"; - repo = "cubicaltt"; - rev = "260b34e710cf18883f61f30bfcaf4e3823bebc0c"; - sha256 = "0wdc26niyx2h49hfqshwqbvg0sbsg5dlfmwnl5y9jwf12170a9q3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1be42b49c206fc4f0df6fb50fed80b3d9b76710b/recipes/cubicaltt"; - sha256 = "1wgy6965cnw201wx4a2pn71sa40mh2712y0d0470klr156krj0n9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/cubicaltt"; - license = lib.licenses.free; - }; - }) {}; - cubicle-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cubicle-mode"; - ename = "cubicle-mode"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "cubicle-model-checker"; - repo = "cubicle"; - rev = "9d108b900e0123236b4991c2d06b5061f34feee8"; - sha256 = "1n3x6m19swkq07zah4hh0ni6gx864bq1w0km06nq33x8189zczrr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81c29c912b83cbb536d30ba04130b39c0e5e5969/recipes/cubicle-mode"; - sha256 = "0xcmd0s6dfryl1ihfaqq0pfqc906yzzwk3d3nv8g6b6w78pv1lzv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cubicle-mode"; - license = lib.licenses.free; - }; - }) {}; - cuda-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cuda-mode"; - ename = "cuda-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "chachi"; - repo = "cuda-mode"; - rev = "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf"; - sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d21cf17a4a9ae391e2e9cf9be3399095fa23ef55/recipes/cuda-mode"; - sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cuda-mode"; - license = lib.licenses.free; - }; - }) {}; - cwl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "cwl-mode"; - ename = "cwl-mode"; - version = "0.2.5"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "cwl-mode"; - rev = "2fa8c8db68a8665ed555126975edd8749bcfc009"; - sha256 = "0zgnnvf8k5zcigykcf6slgcjmwb1l0jdfaqm19r34wp3md8wf0v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2309764cd56d9631dd97981a78b50b9fe793a280/recipes/cwl-mode"; - sha256 = "0x8akxxmphpgsc2m78h6b0fs6vvcfvmi1q2jrz8hwlmai8f7zi9j"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/cwl-mode"; - license = lib.licenses.free; - }; - }) {}; - cyberpunk-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cyberpunk-theme"; - ename = "cyberpunk-theme"; - version = "1.21"; - src = fetchFromGitHub { - owner = "n3mo"; - repo = "cyberpunk-theme.el"; - rev = "17f68f8ac70b712d2870ecb6adb3841b992074fa"; - sha256 = "05mfgr9aj7knn7niadv9p6z3qrfpq2lbbi2wxxx62xywim9maw2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c632d1e501d48dab54432ab111ce589aa229125/recipes/cyberpunk-theme"; - sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cyberpunk-theme"; - license = lib.licenses.free; - }; - }) {}; - cyphejor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cyphejor"; - ename = "cyphejor"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "cyphejor"; - rev = "d7842388a1872b165489624a1a68f536de97e28d"; - sha256 = "1gi7rp0vf3iahljzjhs3rj9c0rvfcfs93hr8a3hl0ch3h9qq8ng2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad7cacfa39d8f85e26372ef21898663aebb68e43/recipes/cyphejor"; - sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/cyphejor"; - license = lib.licenses.free; - }; - }) {}; - cython-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "cython-mode"; - ename = "cython-mode"; - version = "0.29.10"; - src = fetchFromGitHub { - owner = "cython"; - repo = "cython"; - rev = "9f3f99fd6378ffb17976d74356fd3ba7e22f85b3"; - sha256 = "164ksml3i5gmcwripjsn5byfvnnjf86wrkkd9saw481ym6imii3c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be9bfabe3f79153cb859efc7c3051db244a63879/recipes/cython-mode"; - sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/cython-mode"; - license = lib.licenses.free; - }; - }) {}; - d-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "d-mode"; - ename = "d-mode"; - version = "2.0.9"; - src = fetchFromGitHub { - owner = "Emacs-D-Mode-Maintainers"; - repo = "Emacs-D-Mode"; - rev = "d7f46a28aca981e719d12460bf9b71e355d79565"; - sha256 = "0kg91rdlvq2ypc6cww9gakbyd631lakcmqmbs7v0agc7vmba61xz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c13e9ccc358743de660b1f0e89d6bb709c42bff/recipes/d-mode"; - sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/d-mode"; - license = lib.licenses.free; - }; - }) {}; - dad-joke = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dad-joke"; - ename = "dad-joke"; - version = "1.4"; - src = fetchFromGitHub { - owner = "davep"; - repo = "dad-joke.el"; - rev = "bee47e7b746b403228fa7d7361cb095de19ac9ba"; - sha256 = "14snnnjs28jg6k8x6g90m3dbcx10306ipcd256d3l6czk9p17vpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/484d571b2737f7c613816333afdde6460c64e635/recipes/dad-joke"; - sha256 = "1cg8iaq79w5zx1s3dirdl7ymcp162mmsy5c4vly90v20yrijblad"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dad-joke"; - license = lib.licenses.free; - }; - }) {}; - daemons = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "daemons"; - ename = "daemons"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "cbowdon"; - repo = "daemons.el"; - rev = "dcf42cb3178d7245d6d49de346d5e2b44e5b7498"; - sha256 = "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f780485e72ae2885f698fdab0156855f70831f1/recipes/daemons"; - sha256 = "14givkrw9p0m261hawahzi0n8jarapb63kv1s62faq57mqnq23jr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/daemons"; - license = lib.licenses.free; - }; - }) {}; - dante = callPackage ({ company - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lcr - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dante"; - ename = "dante"; - version = "1.5"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "dante"; - rev = "3bd1bfdd775a309565a850e37dfbd42f1b33068e"; - sha256 = "0f76snwsy735r7pl3gdzvajsmpd12qkj03lyjxq1x44a79a1gfwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5afa8226077cbda4b76f52734cf8e0b745ab88e8/recipes/dante"; - sha256 = "1j0qwjshh2227k63vd06bvrsccymqssx26yfzams1xf7bp6y0krs"; - name = "recipe"; - }; - packageRequires = [ company dash emacs f flycheck haskell-mode lcr s ]; - meta = { - homepage = "https://melpa.org/#/dante"; - license = lib.licenses.free; - }; - }) {}; - dap-mode = callPackage ({ bui - , dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild - , s - , tree-mode }: - melpaBuild { - pname = "dap-mode"; - ename = "dap-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "dap-mode"; - rev = "240da34149e2d8893b647f15ff30f217aba4ac89"; - sha256 = "1y3s28xb66w8yynwlavn6d7ysjv0d5ziyga5fjyj0jk1037mjg6y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67942b34975015dd6f2b5f6b43829cc13b1832c6/recipes/dap-mode"; - sha256 = "041mmla70ld5783gn8g360klk3cw39pir5d41544zf3yssk12qpn"; - name = "recipe"; - }; - packageRequires = [ - bui - dash - dash-functional - emacs - f - lsp-mode - s - tree-mode - ]; - meta = { - homepage = "https://melpa.org/#/dap-mode"; - license = lib.licenses.free; - }; - }) {}; - darcula-theme = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darcula-theme"; - ename = "darcula-theme"; - version = "2.0"; - src = fetchFromGitLab { - owner = "fommil"; - repo = "emacs-darcula-theme"; - rev = "2ecd466ffa7a3157b9ddcd7545b6fb8ad308c976"; - sha256 = "1h5lssnc1am54hkprnp61bsj5fnm8j556q2gbhljfjgrdwnqv8ky"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23c8f10205187babb17e3abc3dc40eb1938e6640/recipes/darcula-theme"; - sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/darcula-theme"; - license = lib.licenses.free; - }; - }) {}; - darktooth-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "darktooth-theme"; - ename = "darktooth-theme"; - version = "0.3.10"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "emacs-theme-darktooth"; - rev = "ae14a9be19b6fbd287e0f5ad156e7942cd6a5bc6"; - sha256 = "1jisiz0blksjl6d8q7bnvnlfrwalqfpd93fs66i8pgllhf5z7j19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7f62ac1566ced7332e83253f79078dc30cb7889/recipes/darktooth-theme"; - sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/darktooth-theme"; - license = lib.licenses.free; - }; - }) {}; - dart-mode = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dart-mode"; - ename = "dart-mode"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "bradyt"; - repo = "dart-mode"; - rev = "d78c5c796da53108a824967932cf6c773426e10f"; - sha256 = "1x04vhmwg0hn54dfskwp8dnghjyyn8rha3vpfqw37qjchf3js3f0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/dart-mode"; - sha256 = "0zpvp86067a6l63wrpqxsm9fhv3n4ggbq8pg21vgiz54hk4x1xpp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs flycheck s ]; - meta = { - homepage = "https://melpa.org/#/dart-mode"; - license = lib.licenses.free; - }; - }) {}; - dash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash"; - ename = "dash"; - version = "2.16.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "dash.el"; - rev = "258c324d9840901db83b2cabef3fa75bba57c1ba"; - sha256 = "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash"; - sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dash"; - license = lib.licenses.free; - }; - }) {}; - dash-functional = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dash-functional"; - ename = "dash-functional"; - version = "2.16.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "dash.el"; - rev = "528e5a51f1af668e3075f2beccd2b39785ccb2ba"; - sha256 = "0c65wkyzqsi0jignbhl0j9hh0711069x0l54sqbfb72viy0sppck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57eed8767c3e98614259c408dc0b5c54d3473883/recipes/dash-functional"; - sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/dash-functional"; - license = lib.licenses.free; - }; - }) {}; - dashboard = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , page-break-lines }: - melpaBuild { - pname = "dashboard"; - ename = "dashboard"; - version = "1.6.0"; - src = fetchFromGitHub { - owner = "emacs-dashboard"; - repo = "emacs-dashboard"; - rev = "5b66b65c4c7536f43e8e58b3f7055e5bd6381cda"; - sha256 = "1g6g8vad1kdmv1zxp95a8sn70idl26isqjb3xk1r95pqnx1cn591"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef3c6af6ff5d880e6336f8db32b22b64b182794e/recipes/dashboard"; - sha256 = "19l7mv57ra3i8bz35zfq0wrrp8mk0bzhng6wqpbf9dax4pq3pnp9"; - name = "recipe"; - }; - packageRequires = [ emacs page-break-lines ]; - meta = { - homepage = "https://melpa.org/#/dashboard"; - license = lib.licenses.free; - }; - }) {}; - dashboard-project-status = callPackage ({ dashboard - , emacs - , fetchFromGitHub - , fetchurl - , git - , lib - , melpaBuild }: - melpaBuild { - pname = "dashboard-project-status"; - ename = "dashboard-project-status"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "functionreturnfunction"; - repo = "dashboard-project-status"; - rev = "d3ac9f4992cc9ddad12f98e6ace26c8673ce473d"; - sha256 = "1zm566dq5xavfyma7304lvq78cpbblk22v2zgsbdy8hpk94rxj8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfc05873c6532c866d89c4cc07eb84b447a25c70/recipes/dashboard-project-status"; - sha256 = "1r25xmscz3lrjm6jjix416py26za5l1ck3xa77qbyrr4rf1gsakg"; - name = "recipe"; - }; - packageRequires = [ dashboard emacs git ]; - meta = { - homepage = "https://melpa.org/#/dashboard-project-status"; - license = lib.licenses.free; - }; - }) {}; - date-at-point = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "date-at-point"; - ename = "date-at-point"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "date-at-point.el"; - rev = "662f8350a83311503dc0aae47a28752f9f1270c9"; - sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6dbeddd236f312fac1d5542dfd2edf81df8fad2/recipes/date-at-point"; - sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/date-at-point"; - license = lib.licenses.free; - }; - }) {}; - date-field = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "date-field"; - ename = "date-field"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-date-field"; - rev = "3b0af9c49293fc4346078ed2e13a6ebf41bbe54e"; - sha256 = "1skvkbbqvwbw58ahdbf2m1z7s0kfi5v7c0lavc9ifrs91pqpqx9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe790729a67d2210cbccefce43805daa20db647d/recipes/date-field"; - sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; - name = "recipe"; - }; - packageRequires = [ dash log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/date-field"; - license = lib.licenses.free; - }; - }) {}; - datetime = callPackage ({ emacs - , extmap - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "datetime"; - ename = "datetime"; - version = "0.6.4"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "datetime"; - rev = "8c6d6fc991766e6bf9cefc4ea4b04eeae8116a84"; - sha256 = "0c5y304pvns8jhy4fpz4jmbfxdgz8ms04hgrnsb0g168szc9g0s9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/datetime"; - sha256 = "0c000fnqg936dhjw5qij4lydzllw1x1jgnyy960zh6r61pk062xj"; - name = "recipe"; - }; - packageRequires = [ emacs extmap ]; - meta = { - homepage = "https://melpa.org/#/datetime"; - license = lib.licenses.free; - }; - }) {}; - deadgrep = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , spinner }: - melpaBuild { - pname = "deadgrep"; - ename = "deadgrep"; - version = "0.7"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "deadgrep"; - rev = "1d64c113f562a80147cdb6041a2dd48e5ba2da5d"; - sha256 = "025xj4hc1k87wmbx2imvxb9brfnajclpd4rj7j1yg85gbk7a99v5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93389fae7233b83ea904e17bdaf83f8247cda3d8/recipes/deadgrep"; - sha256 = "01m5ds7lic9g11a5iwzw86k6xcv56wbbzjm1343ckbbi255h9i09"; - name = "recipe"; - }; - packageRequires = [ dash emacs s spinner ]; - meta = { - homepage = "https://melpa.org/#/deadgrep"; - license = lib.licenses.free; - }; - }) {}; - debian-el = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "debian-el"; - ename = "debian-el"; - version = "37.4"; - src = fetchgit { - url = "https://salsa.debian.org/emacsen-team/debian-el.git"; - rev = "9690c4adb71e0fc7d00fea24b49ba944f913f4f5"; - sha256 = "118yyhmfwpdlqvz5xjqfr4mmpjznkja3jn63n43z66q0apfhhk61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a381ec81eb160365f478c6a3af638c14558d7d6/recipes/debian-el"; - sha256 = "0x74a4nm2p4w82kzrdqy90969sminsrhdzppld2mg63jg0wxb8ga"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/debian-el"; - license = lib.licenses.free; - }; - }) {}; - debpaste = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "debpaste"; - ename = "debpaste"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "debpaste.el"; - rev = "038f0ff7824f4e3dd455e2232eeca70fa8abcec5"; - sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/debpaste"; - sha256 = "0h3hx3vgdhchmndabmzprddq3bxd80jnv4xvma9v6k1v07bl721v"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/debpaste"; - license = lib.licenses.free; - }; - }) {}; - decide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "decide"; - ename = "decide"; - version = "0.7"; - src = fetchFromGitHub { - owner = "lifelike"; - repo = "decide-mode"; - rev = "90133687118c236142b8110571c463304b3192f9"; - sha256 = "04yakjnh9c165ssmcwkkm03lnlhgfx5bnk0v3cm73kmwdmfd2q7s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6adcd300e2ac2c718989cf855fd7b3eef654df00/recipes/decide"; - sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/decide"; - license = lib.licenses.free; - }; - }) {}; - dedicated = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dedicated"; - ename = "dedicated"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "dedicated"; - rev = "8275fb672f9cc4ba6682ebda0ef91db827e32992"; - sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/dedicated"; - sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dedicated"; - license = lib.licenses.free; - }; - }) {}; - default-text-scale = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "default-text-scale"; - ename = "default-text-scale"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "default-text-scale"; - rev = "f425d3765c4dea3f2e550720278f9d424579ee5d"; - sha256 = "0h42jiwxrxjmk7ccwh3h25n7dy2rq61ncm5wx27jhkncc5jdm4h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2/recipes/default-text-scale"; - sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/default-text-scale"; - license = lib.licenses.free; - }; - }) {}; - deferred = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "deferred"; - ename = "deferred"; - version = "0.5.1"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-deferred"; - rev = "d012a1ab50edcc2c44e3e49006f054dbff47cb6c"; - sha256 = "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/deferred"; - sha256 = "1i8jfapzmw86iqwhnnlqmcj6zh4hyhizdcwjxcnxdj6kvxmwyysm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/deferred"; - license = lib.licenses.free; - }; - }) {}; - define-word = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "define-word"; - ename = "define-word"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "define-word"; - rev = "38e2f94779652fc6280a51b68dc910431513a8e1"; - sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e318b30d8b2b89981f4b89d78e5a46e77d3de412/recipes/define-word"; - sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/define-word"; - license = lib.licenses.free; - }; - }) {}; - deft = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "deft"; - ename = "deft"; - version = "0.8"; - src = fetchFromGitHub { - owner = "jrblevin"; - repo = "deft"; - rev = "c4b30d780bfa732ff52d85f0311e4a045f44a7b4"; - sha256 = "0z7cilgiz6krvl5h2z72hkch43qxmypb0k6p5vxn5lx1p6v0mrf2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/deft"; - sha256 = "0f6z9hsigbwdsmg0abk1ddl9j19d0rpj4gzkl0d5arcpqbla26hp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/deft"; - license = lib.licenses.free; - }; - }) {}; - demangle-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "demangle-mode"; - ename = "demangle-mode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "liblit"; - repo = "demangle-mode"; - rev = "06903d731dfde110e10b979dcc7624ef6dbb5ac8"; - sha256 = "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ced9f4ffb051a8474d3f72695156416cf2dd8be/recipes/demangle-mode"; - sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/demangle-mode"; - license = lib.licenses.free; - }; - }) {}; - describe-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yabin }: - melpaBuild { - pname = "describe-number"; - ename = "describe-number"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "netromdk"; - repo = "describe-number"; - rev = "40618345a37831804b29589849a785ef5aa5ac24"; - sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ed9063f7e9f540bc90c1df4e3604d4af9bcfe5/recipes/describe-number"; - sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; - name = "recipe"; - }; - packageRequires = [ yabin ]; - meta = { - homepage = "https://melpa.org/#/describe-number"; - license = lib.licenses.free; - }; - }) {}; - desktop-environment = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-environment"; - ename = "desktop-environment"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "desktop-environment"; - rev = "284c38fcb5b10746255ee4123eaa549e028df0c8"; - sha256 = "14ija2rrz3zjhjbzxg84j5fq6xph4ah7w9bkqnq37by040cydvhw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfe988e0dd4a1272ecf7b2fe758ef0c81e2acad2/recipes/desktop-environment"; - sha256 = "0iai1awpkv4n8k263854mx95c8yh2vvif6z91mgn6hck8774v9zp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/desktop-environment"; - license = lib.licenses.free; - }; - }) {}; - desktop-plus = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-plus"; - ename = "desktop+"; - version = "0.2"; - src = fetchFromGitHub { - owner = "ffevotte"; - repo = "desktop-plus"; - rev = "a9cb8dd0af5071d9f148211b408c54306239381c"; - sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b009b42c73490d56d4613dcf5a57447fb4ccab4/recipes/desktop+"; - sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/desktop+"; - license = lib.licenses.free; - }; - }) {}; - desktop-registry = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "desktop-registry"; - ename = "desktop-registry"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "desktop-registry"; - rev = "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd"; - sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/desktop-registry"; - sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/desktop-registry"; - license = lib.licenses.free; - }; - }) {}; - dianyou = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dianyou"; - ename = "dianyou"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "dianyou"; - rev = "1a1fe6da3196f91db7b76b6c552ca4f2629e36bf"; - sha256 = "1bgyq4zrhzlqmfgv3az4csgsrqidlshwjbx4r9l2rydk3k3gl78n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/059b003c74acdfdd917ecb6fecb782a0f54d155b/recipes/dianyou"; - sha256 = "1mz3nvr62gfkhbayw7784c8kn8drbiq9hlqv1g5vd9pdfhxqs8jl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dianyou"; - license = lib.licenses.free; - }; - }) {}; - diary-manager = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diary-manager"; - ename = "diary-manager"; - version = "2.0.2"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "diary-manager"; - rev = "919f724bb58e36b8626dd8d7c8475f71c0c54443"; - sha256 = "12zg022bhfn4gsclb5wk8wh0bqyy0v5j37369haq6rb5jcc6x5fb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a014f4d862a2480f7edb1266f79ce0801cca13c2/recipes/diary-manager"; - sha256 = "1sk0pvadx4jmv93dj796ysn3jh2wvywayd7dd20v22kdvnlii73d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/diary-manager"; - license = lib.licenses.free; - }; - }) {}; - dictcc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "dictcc"; - ename = "dictcc"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "cqql"; - repo = "dictcc.el"; - rev = "3244897515db954eafeed9648e7a0011b89c3ce2"; - sha256 = "1nlgz3i8kynhl6d6h5rszja14z5n7ri83mm5ks90nbdhjcqwk3qd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e867df96915a0c4f22fdccd4e2096878895bda6/recipes/dictcc"; - sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/dictcc"; - license = lib.licenses.free; - }; - }) {}; - dictionary = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dictionary"; - ename = "dictionary"; - version = "1.10"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "3a461aec5aa5b78a1ad8919eab11abfb0d5d65b3"; - sha256 = "10hnxy2n1njskh3nrjagp2lphhliw66cp8pjyh4m2zbj60ciz0ci"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/dictionary"; - sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dictionary"; - license = lib.licenses.free; - }; - }) {}; - diff-hl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diff-hl"; - ename = "diff-hl"; - version = "1.8.6"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "diff-hl"; - rev = "84a5fe1900af2e5cc522f02749804f0d9f094bbf"; - sha256 = "1xlsg728mz3cwhrsqvisa0aidic67nymd9g7h4c1h3q63j39yb2s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/diff-hl"; - sha256 = "135jgjfaiq6kj72ji5k22v4pqc8gjjmcv80r5rkjbjigzlvcvvj2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/diff-hl"; - license = lib.licenses.free; - }; - }) {}; - difflib = callPackage ({ cl-generic - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "difflib"; - ename = "difflib"; - version = "0.3.8"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "difflib.el"; - rev = "b08850251812d71e62fd6956081299590acdf37b"; - sha256 = "03k5iy610f1m2nmkdk69p49fcfqfyxmy3h6fqvqsr2v1hix8i54a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df1924ddff6fd1b5fa32481d3b3d6fbe89a127d3/recipes/difflib"; - sha256 = "07bm5hib3ihrrx0lhfsl6km9gfckl73qd4cb37h93zw0hc9xwhy6"; - name = "recipe"; - }; - packageRequires = [ cl-generic emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/difflib"; - license = lib.licenses.free; - }; - }) {}; - diffview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diffview"; - ename = "diffview"; - version = "1.0"; - src = fetchFromGitHub { - owner = "mgalgs"; - repo = "diffview-mode"; - rev = "471dc36af93e68849bf2da0db991e186283b3546"; - sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ea5dd4c9c114618ac20f565c878f509ce8d9872/recipes/diffview"; - sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diffview"; - license = lib.licenses.free; - }; - }) {}; - digistar-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "digistar-mode"; - ename = "digistar-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "retroj"; - repo = "digistar-mode"; - rev = "0dcde58ec6e473042e55d4f283b223554546de5b"; - sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/851fa17152b664df99b80a654e5c055bb5227181/recipes/digistar-mode"; - sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/digistar-mode"; - license = lib.licenses.free; - }; - }) {}; - dim = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dim"; - ename = "dim"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "dim.el"; - rev = "aee695f4c227e11aa22376667712815aafbb3616"; - sha256 = "1nixb8xw7rdrq9da1767jl8xximfdcwav2fs0kwmxjc6vahh7ya1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a740ab40cab3a1890f56df808f41a2d541aa77c/recipes/dim"; - sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dim"; - license = lib.licenses.free; - }; - }) {}; - dim-autoload = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dim-autoload"; - ename = "dim-autoload"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "dim-autoload"; - rev = "2ff7ded0c9f8bb582fb9018bea47ead44d048cf8"; - sha256 = "0lbfgfx3015b1kspqrsnlpvzl7i06yxafj1i2lpcy7ay4fv5rp54"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66b1a81dfd09a2859ae996d5d8e3d704857a340f/recipes/dim-autoload"; - sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dim-autoload"; - license = lib.licenses.free; - }; - }) {}; - diminish = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diminish"; - ename = "diminish"; - version = "0.45"; - src = fetchFromGitHub { - owner = "myrjola"; - repo = "diminish.el"; - rev = "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65"; - sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1bfb4acb381cada46458cf60eae9b88d007294d5/recipes/diminish"; - sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diminish"; - license = lib.licenses.free; - }; - }) {}; - dimmer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dimmer"; - ename = "dimmer"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "dimmer.el"; - rev = "12fc52a6570ec25020281735f5a0ca780a9105af"; - sha256 = "1jv9rrv15nb5hpwcaqlpjj932gyisrkwbv11czkg3v0bn7qn6yif"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ae80e9202d69ed3214325dd15c4b2f114263954/recipes/dimmer"; - sha256 = "0w8n5svckk1jp8856pg2gkws9798prqjjkdqf8ili2hjcqnd1a3r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dimmer"; - license = lib.licenses.free; - }; - }) {}; - dionysos = callPackage ({ alert - , cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , libmpdee - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "dionysos"; - ename = "dionysos"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "dionysos"; - rev = "98bc789d20e41020d6e62d63d3c78f8032fa4bf2"; - sha256 = "1hma72dyn3w6cwd3vrgg4hdlrxgwqs55cjyxb05vs9csz7r42208"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/890445eca3c555acd2639a6f509c8e83b687f2bd/recipes/dionysos"; - sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib dash libmpdee pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/dionysos"; - license = lib.licenses.free; - }; - }) {}; - dired-atool = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-atool"; - ename = "dired-atool"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "dired-atool"; - rev = "09dbb769fe02f546da470369a12468ab4a0cceb2"; - sha256 = "0j2dz4vy4i22185hhlwg2kprpis97xb12qvfdhvdcnz2vwy61sxa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fe7b0857828a041ee06b30edd2cd488cc3394c7/recipes/dired-atool"; - sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-atool"; - license = lib.licenses.free; - }; - }) {}; - dired-efap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-efap"; - ename = "dired-efap"; - version = "0.8"; - src = fetchFromGitHub { - owner = "juan-leon"; - repo = "dired-efap"; - rev = "2b849bc5c09d0b752a177495ea1b851ee821f5bf"; - sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5669ca2adc48f3349eb59276850e6174e37f9de7/recipes/dired-efap"; - sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-efap"; - license = lib.licenses.free; - }; - }) {}; - dired-explorer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-explorer"; - ename = "dired-explorer"; - version = "0.6"; - src = fetchFromGitHub { - owner = "jidaikobo-shibata"; - repo = "dired-explorer"; - rev = "3ade0a31b5340271d05e9bf443f2504960f6c6dd"; - sha256 = "0lbm326na005k3pa11rqq5nbhvm55dydi2a7fzs3bzlqwbx7d6fq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acd40e02185847dfdcd70b3cacea703133e4356d/recipes/dired-explorer"; - sha256 = "12mymmcl663ci543vqzg8jai8kgfbb3gw5wsbcm4ln3j8d5fgzd9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/dired-explorer"; - license = lib.licenses.free; - }; - }) {}; - dired-fdclone = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-fdclone"; - ename = "dired-fdclone"; - version = "1.5.4"; - src = fetchFromGitHub { - owner = "knu"; - repo = "dired-fdclone.el"; - rev = "903d7a736d240ef7352989a4e5d0ff9129c2ee3c"; - sha256 = "0vkdsm29g1cvvv1j8xgjwr94x20zx8k2wvmncrpakcwq6d47cfxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a0ddc10b11772d72a473e8d24ab4641bf4239a4/recipes/dired-fdclone"; - sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-fdclone"; - license = lib.licenses.free; - }; - }) {}; - dired-hide-dotfiles = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-hide-dotfiles"; - ename = "dired-hide-dotfiles"; - version = "0.1"; - src = fetchFromGitHub { - owner = "mattiasb"; - repo = "dired-hide-dotfiles"; - rev = "32cf3b6f90dc56f6ff271c28d827aab303bc6221"; - sha256 = "1fpzgmvbgfgl6wdrynlpvvdlbm8npgrmnzfz2133zvf5x3zfzq6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba64a50f85fdb0ad54149dfed4051b4c1a719cbb/recipes/dired-hide-dotfiles"; - sha256 = "0yy131cvj9a9sz02ari7pzwf22r5y7acyg757h3jvih317v6jyp0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-hide-dotfiles"; - license = lib.licenses.free; - }; - }) {}; - dired-icon = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-icon"; - ename = "dired-icon"; - version = "0.5"; - src = fetchFromGitLab { - owner = "xuhdev"; - repo = "dired-icon"; - rev = "dbace8d2250f84487d31b39050fcdc260fcde804"; - sha256 = "1d9105ibaw858gqp19rx2m6xm3hl57vzsmdqir883cy46qpvwhki"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a96249947cba52cd75515b3dc83b0842fedf624/recipes/dired-icon"; - sha256 = "0nyiqcywc1p8kw3psisl4zxwmf2g0x82kanka85zxxdz15s509j1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-icon"; - license = lib.licenses.free; - }; - }) {}; - dired-imenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-imenu"; - ename = "dired-imenu"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "dired-imenu"; - rev = "610e21fe0988c85931d34894d3eee2442c79ab0a"; - sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e346de86b7f7fd5dad548f0936cde54ac11e3f79/recipes/dired-imenu"; - sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-imenu"; - license = lib.licenses.free; - }; - }) {}; - dired-k = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-k"; - ename = "dired-k"; - version = "0.19"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-dired-k"; - rev = "3f0b9315f87b0f930d51089e311d41282d5f8b15"; - sha256 = "09xh097v3fd0mjxqlmbfwjlr1v4a99mj4rvwdb6kqgajmlhgi9hx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7/recipes/dired-k"; - sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dired-k"; - license = lib.licenses.free; - }; - }) {}; - dired-quick-sort = callPackage ({ fetchFromGitLab - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-quick-sort"; - ename = "dired-quick-sort"; - version = "0.1"; - src = fetchFromGitLab { - owner = "xuhdev"; - repo = "dired-quick-sort"; - rev = "fe39cfb2d4a7ba6b30f98134548b4e4bac67c469"; - sha256 = "1a9r1kz5irpvb2byabbf27sy7rjzaygfpqimpag41sj955wlgy9a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d278178128deb03a7b1d2e586dc38da2c7af857/recipes/dired-quick-sort"; - sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l"; - name = "recipe"; - }; - packageRequires = [ hydra ]; - meta = { - homepage = "https://melpa.org/#/dired-quick-sort"; - license = lib.licenses.free; - }; - }) {}; - dired-rmjunk = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-rmjunk"; - ename = "dired-rmjunk"; - version = "1.2"; - src = fetchgit { - url = "https://git.sr.ht/~jakob/dired-rmjunk"; - rev = "6a9fa6a35498e53e8c57282e3b08dedc896d880d"; - sha256 = "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75d501ae9b64d9aa083f43358881a467a7cd2a04/recipes/dired-rmjunk"; - sha256 = "1m07z6gcsd5i1xshgfxqrpcrqpl0ffa9ls2443za5wkgbalhxx47"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-rmjunk"; - license = lib.licenses.free; - }; - }) {}; - dired-rsync = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "dired-rsync"; - ename = "dired-rsync"; - version = "0.4"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "dired-rsync"; - rev = "3ee95c35d1b7d62ffbc38f16f8c79904ad22a84d"; - sha256 = "1zrpmymd0fj74apkx413mpxvz3iwvfdxq5zx3sw5akpqc9nphn8n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce9f41ad832cef527dde97f829a8b8339e6ac48b/recipes/dired-rsync"; - sha256 = "0lykj7nfpaspwn90macvr7iir4jlrx88i0s9spii7iic2fnm51ql"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/dired-rsync"; - license = lib.licenses.free; - }; - }) {}; - dired-single = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-single"; - ename = "dired-single"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "crocket"; - repo = "dired-single"; - rev = "5b002927fd8c7f954eec187227ac59dcaa8edfa3"; - sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41669decbb7ad5c4dbe152a863f16d87e7bba493/recipes/dired-single"; - sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-single"; - license = lib.licenses.free; - }; - }) {}; - dired-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-toggle"; - ename = "dired-toggle"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "fasheng"; - repo = "dired-toggle"; - rev = "5bcdd9f13c0b0149c5125004e93bc2dfd22f3fce"; - sha256 = "0dghbrx364fihzp5r8ar6vxkavd7mn74qjkijy1wvy34vl0b4911"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17ae4c5ff42e0c48e53d93c88853f649f59034e6/recipes/dired-toggle"; - sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-toggle"; - license = lib.licenses.free; - }; - }) {}; - dired-toggle-sudo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dired-toggle-sudo"; - ename = "dired-toggle-sudo"; - version = "1.0"; - src = fetchFromGitHub { - owner = "renard"; - repo = "dired-toggle-sudo"; - rev = "02449dbda4e168f99fe5352c9628df5d39e11483"; - sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5cdee2d52c0c53566fdd77a5d42edf365764acff/recipes/dired-toggle-sudo"; - sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dired-toggle-sudo"; - license = lib.licenses.free; - }; - }) {}; - diredfl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diredfl"; - ename = "diredfl"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "diredfl"; - rev = "45e9c46f58c655694758d4986b9195c8bb40ddf3"; - sha256 = "1zb2lz7rp58zqvpniqcsmqabi7nqg2d8bfd0hgmq68bn2hd25b5z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3da86e18d423198766455929da1dcb3a9a3be381/recipes/diredfl"; - sha256 = "0cybq15yq07x2mnrnwapy020d598yymcy8y9wwf1m7f59p3h9hvn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/diredfl"; - license = lib.licenses.free; - }; - }) {}; - diredful = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "diredful"; - ename = "diredful"; - version = "1.10"; - src = fetchFromGitHub { - owner = "thamer"; - repo = "diredful"; - rev = "b17b3087e0084a5571a9ac4d47ccfc36d96b109e"; - sha256 = "1d8n8wj5k82a1sfg93kn3ajci804mpp9j206x5f185zd48wb25z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76f3d178e7c3982b53c7ee0096c839397534d732/recipes/diredful"; - sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/diredful"; - license = lib.licenses.free; - }; - }) {}; - direnv = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direnv"; - ename = "direnv"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-direnv"; - rev = "468f2fb20d825dd7134e4efbaff3666917cd4ec3"; - sha256 = "005ibyzsx1fdyrl5iyhqpb1bg83mphzahq7zvw58x00syyqi2z49"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5419809ee62b920463e359c8e1314cd0763657c1/recipes/direnv"; - sha256 = "0zzmi5m6fh42kyf8dyjrjyrl03pkbipnh4mnssrhp83ljczxkyhd"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/direnv"; - license = lib.licenses.free; - }; - }) {}; - direx = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direx"; - ename = "direx"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "direx-el"; - rev = "423caeed13249e37afc937dc8134cb3c53e0f111"; - sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b0903466d63b1c87abc002b0e064e36a8cddd3/recipes/direx"; - sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/direx"; - license = lib.licenses.free; - }; - }) {}; - direx-grep = callPackage ({ direx - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "direx-grep"; - ename = "direx-grep"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "direx-grep"; - rev = "1109a512a80b2673a70b18b8568514049017faad"; - sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a88a29090a0d6c636f4aeb5214433db66367d9e/recipes/direx-grep"; - sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; - name = "recipe"; - }; - packageRequires = [ direx ]; - meta = { - homepage = "https://melpa.org/#/direx-grep"; - license = lib.licenses.free; - }; - }) {}; - disable-mouse = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "disable-mouse"; - ename = "disable-mouse"; - version = "0.3"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "disable-mouse"; - rev = "81639930bcaeedadbcc19728e91719afcac84613"; - sha256 = "0l6mai68ns3qw3rlvjvzsnqwdy7bxqiy0vdwflq0l1plxb1vazyc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbbc396373212fdf731e135cde391f27708ff015/recipes/disable-mouse"; - sha256 = "0c0ps39s6wg3grspvgck0cwxnas73nfaahfa87l0mmgsrsvas5m7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/disable-mouse"; - license = lib.licenses.free; - }; - }) {}; - discover = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "discover"; - ename = "discover"; - version = "0.3"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "discover.el"; - rev = "bbfda2b4e429985a8fa7971d264c942767cfa816"; - sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/discover"; - sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/discover"; - license = lib.licenses.free; - }; - }) {}; - discover-my-major = callPackage ({ fetchgit - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "discover-my-major"; - ename = "discover-my-major"; - version = "1.0"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/discover-my-major.git"; - rev = "aca4ee2b45e96c7fd6167d006531472944c389ad"; - sha256 = "1c2p31a1mlaqi4h83ij0y3vhrw2hja5cz3kf52qpnhqva7si5fx9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/discover-my-major"; - sha256 = "1b10bwhls5bx83hzhqq1ylc2civ3bsivd6db46f3s5hpgvr4q17n"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/discover-my-major"; - license = lib.licenses.free; - }; - }) {}; - dispass = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dispass"; - ename = "dispass"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "dispass.el"; - rev = "38b880e72cfe5e65179b16791903b0900c73eff4"; - sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dispass"; - sha256 = "09c9v41rh63hjpdh377rbfvpial33r41dn5bss3632fi34az5l9n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dispass"; - license = lib.licenses.free; - }; - }) {}; - dix = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dix"; - ename = "dix"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "dix"; - rev = "b973de948deb7aa2995b1895e1e62bbe3129b5a5"; - sha256 = "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/149eeba213b82aa0bcda1073aaf1aa02c2593f91/recipes/dix"; - sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/dix"; - license = lib.licenses.free; - }; - }) {}; - dix-evil = callPackage ({ dix - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dix-evil"; - ename = "dix-evil"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "dix"; - rev = "1cfef0d3376a18c78dd1dfc1ac9ac3ad0e8c4475"; - sha256 = "0p2cvr7mjpag86wacxm6s39y7p118gh2ccqw02jzabwxlfasfbw3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9dcceb57231bf2082154cab394064a59d84d3a5/recipes/dix-evil"; - sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3"; - name = "recipe"; - }; - packageRequires = [ dix evil ]; - meta = { - homepage = "https://melpa.org/#/dix-evil"; - license = lib.licenses.free; - }; - }) {}; - django-commands = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "django-commands"; - ename = "django-commands"; - version = "1.3.2"; - src = fetchFromGitHub { - owner = "muffinmad"; - repo = "emacs-django-commands"; - rev = "1b19436a1160d1552207d4356d5e78793dabe100"; - sha256 = "1zb8mf0dgdr83n61a54m5grhdr6nz75zrgwczpzfl3f66xkvfci9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd217a23a9670c7eb826360b34df1a06ab3e450f/recipes/django-commands"; - sha256 = "17k9bnig2cfnxbbz6k9vdk5k5gzhvn1h5j9wvww7n137c9vv0qmk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/django-commands"; - license = lib.licenses.free; - }; - }) {}; - docker = callPackage ({ dash - , docker-tramp - , emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , magit-popup - , melpaBuild - , s - , tablist }: - melpaBuild { - pname = "docker"; - ename = "docker"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "docker.el"; - rev = "e127a157f8d0d9ffd465075ecf6558f36d2d3b24"; - sha256 = "1g8r1faqp0z0vqp9qrl8m84pa0v2ddvc91klphdkfmldwv7rfipw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker"; - sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; - name = "recipe"; - }; - packageRequires = [ - dash - docker-tramp - emacs - json-mode - magit-popup - s - tablist - ]; - meta = { - homepage = "https://melpa.org/#/docker"; - license = lib.licenses.free; - }; - }) {}; - docker-cli = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "docker-cli"; - ename = "docker-cli"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "bosko"; - repo = "docker-cli"; - rev = "328429219574555c5fb831a421b4b5d9a2338561"; - sha256 = "15jsp1jsb13qv394js9pd6407ya7dgqk7blzbnyf9i9abyyr0v67"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5664de22600c428b7931085985e6fe779e8876b2/recipes/docker-cli"; - sha256 = "1pyrnxa9iwzp0a810250xy191xcbaq68c76fc5plh70c37gzribp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/docker-cli"; - license = lib.licenses.free; - }; - }) {}; - docker-compose-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "docker-compose-mode"; - ename = "docker-compose-mode"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "meqif"; - repo = "docker-compose-mode"; - rev = "7f4cd0b1718df2ab93d51bd395b2f37df9482265"; - sha256 = "1fbcxwfvm33xcdj3cs26d9i1zyrryyjjkv7sc3mfxd45nq8d3ivj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37dd4c1fc11d22598c6faf03ccc860503a68b950/recipes/docker-compose-mode"; - sha256 = "1hldddl86h0i1ysxklkr1kyz44lzic1zr68x3vb0mha4n5d6bl5g"; - name = "recipe"; - }; - packageRequires = [ dash emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/docker-compose-mode"; - license = lib.licenses.free; - }; - }) {}; - docker-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "docker-tramp"; - ename = "docker-tramp"; - version = "0.1"; - src = fetchFromGitHub { - owner = "emacs-pe"; - repo = "docker-tramp.el"; - rev = "d8b510365d8e65551f4f792f251e7212411708c3"; - sha256 = "0lxvzmfg52fhxrhbvp92zwp7cv4i1rlxnkyyzgngj3sjm7y60yvg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c74bf8a41c17bc733636f9e7c05f3858d17936b/recipes/docker-tramp"; - sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/docker-tramp"; - license = lib.licenses.free; - }; - }) {}; - dockerfile-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dockerfile-mode"; - ename = "dockerfile-mode"; - version = "1.2"; - src = fetchFromGitHub { - owner = "spotify"; - repo = "dockerfile-mode"; - rev = "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc"; - sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1406f5a24115d29e3b140c360a51b977a369e4f9/recipes/dockerfile-mode"; - sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dockerfile-mode"; - license = lib.licenses.free; - }; - }) {}; - dokuwiki-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dokuwiki-mode"; - ename = "dokuwiki-mode"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "kai2nenobu"; - repo = "emacs-dokuwiki-mode"; - rev = "e4e116f6fcc373e3f5937c1a7daa5c2c9c6d3fa1"; - sha256 = "0bmcm7lvzm8sg2l1j7bg02jasxb8g81q9ilycblmsl1ckbfwq0yp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/dokuwiki-mode"; - sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dokuwiki-mode"; - license = lib.licenses.free; - }; - }) {}; - doom = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "doom"; - ename = "doom"; - version = "1.3"; - src = fetchFromGitHub { - owner = "kensanata"; - repo = "doom"; - rev = "5e2d3f54e5b84eaa533cbdb6cf17b1b6009f0730"; - sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0960deb3b1d106ad2ffa95a44f34cb9efc026f01/recipes/doom"; - sha256 = "1ji2fdiw5b13n76nv2wvkz6v155b0qgh1rxwmv3m5nnrbmklfjh5"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/doom"; - license = lib.licenses.free; - }; - }) {}; - doom-modeline = callPackage ({ all-the-icons - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , shrink-path }: - melpaBuild { - pname = "doom-modeline"; - ename = "doom-modeline"; - version = "2.3.2"; - src = fetchFromGitHub { - owner = "seagle0128"; - repo = "doom-modeline"; - rev = "59c81a0d81e3cb74f9c5fed809ef064519d3ef11"; - sha256 = "1p96c4hgb4vdclbcbk3xz0jws3py8a3irpzzs7i1sq3svsilf0ha"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4f610757f85fb01bd9b1dd212ddbea8f34f3ecd/recipes/doom-modeline"; - sha256 = "0pscrhhgk4wpz1f2r94ficgan4f9blbhqzvav1wjahwp7fn5m29j"; - name = "recipe"; - }; - packageRequires = [ all-the-icons dash emacs shrink-path ]; - meta = { - homepage = "https://melpa.org/#/doom-modeline"; - license = lib.licenses.free; - }; - }) {}; - doom-themes = callPackage ({ all-the-icons - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "doom-themes"; - ename = "doom-themes"; - version = "2.1.6"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-doom-themes"; - rev = "39e6971e81181b86a57f65cd0ea31376203a9756"; - sha256 = "042pzcdhxi2z07jcscgjbaki9nrrm0cbgbbrnymd1r4q8ckkn8l9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5084bc2c3fe378af6ff39d65e40649c6359b7b5/recipes/doom-themes"; - sha256 = "0plqhis9ki3ck1pbv4hiqk4x428fps8qsfx72mamdayyx2nncdrs"; - name = "recipe"; - }; - packageRequires = [ all-the-icons cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/doom-themes"; - license = lib.licenses.free; - }; - }) {}; - dotenv-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dotenv-mode"; - ename = "dotenv-mode"; - version = "0.2.4"; - src = fetchFromGitHub { - owner = "preetpalS"; - repo = "emacs-dotenv-mode"; - rev = "f4c52bcd5313379b9f2460db7f7a33119dfa96ea"; - sha256 = "1fplkhxnsgdrg10iqsmw162zny2idz4vvv35spsb9j0hsk8imclc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fc022c54b90933e70dcedb6a85167c2d9d7ba79/recipes/dotenv-mode"; - sha256 = "1lwfzfri6vywcjkc9wassrz0rdrg0kvljxsm6b4smlnphp6pdbbs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dotenv-mode"; - license = lib.licenses.free; - }; - }) {}; - double-saber = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "double-saber"; - ename = "double-saber"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "dp12"; - repo = "double-saber"; - rev = "5555dc28cbaa228fa8f9390738a4200e071380b8"; - sha256 = "06ykn84hp4yvf6z2457jqgyck70y30361l8617ilb7g337hk15xl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f5c0195ad9b278a7aaa3fd8e70c0004cc03500/recipes/double-saber"; - sha256 = "0zsmyvlxm3my3xbj7m38539vk2dl7azi1v7jb41kdiavj2cc55zg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/double-saber"; - license = lib.licenses.free; - }; - }) {}; - downplay-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "downplay-mode"; - ename = "downplay-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "tobias"; - repo = "downplay-mode"; - rev = "bd03a160e5e191eed1c20dfb8e69f2e314ef4e64"; - sha256 = "1i22pbnpi4zdh3c4drhhi8x6b9k3k4vz758vyajzb9mc2i67llxm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50d67ea3c4d92b4093373d5e4ff07b7d5a3dc537/recipes/downplay-mode"; - sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/downplay-mode"; - license = lib.licenses.free; - }; - }) {}; - dpkg-dev-el = callPackage ({ debian-el - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dpkg-dev-el"; - ename = "dpkg-dev-el"; - version = "37.1"; - src = fetchgit { - url = "https://salsa.debian.org/emacsen-team/dpkg-dev-el.git"; - rev = "04fb5c930269e64ed73a13fa909588002f4e4e4f"; - sha256 = "0i0m4hdpdr4wz3r8cgxslwhm23z7002648dm7cw7cf3fwd4gi47q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e057df3608780a6191f761b9a81262c2eaa053c/recipes/dpkg-dev-el"; - sha256 = "1cgfzxlw4m3wsl5fhck08pc2w7fw91mxk58yaprk9lkw4jxd1yjy"; - name = "recipe"; - }; - packageRequires = [ debian-el ]; - meta = { - homepage = "https://melpa.org/#/dpkg-dev-el"; - license = lib.licenses.free; - }; - }) {}; - dr-racket-like-unicode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dr-racket-like-unicode"; - ename = "dr-racket-like-unicode"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "dr-racket-like-unicode"; - rev = "4953f1c8a68472e157a0dcd0a7e35a4ec2577133"; - sha256 = "1i7k7d2gnzd2izplhdmjbkcxvkwnc3y3y0hrcp2rq60bjpkcl1gv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e612ede00c4b44ace741d2b6baabc61571af15c/recipes/dr-racket-like-unicode"; - sha256 = "0cqcbn4hmv99d8z03xc0rqw4yh5by6g09y33h75dhl9nh95rybgf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dr-racket-like-unicode"; - license = lib.licenses.free; - }; - }) {}; - dracula-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dracula-theme"; - ename = "dracula-theme"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "dracula"; - repo = "emacs"; - rev = "66e429f4d576346661ae3a111bafaa06febc1d94"; - sha256 = "0lyy8vjzzcfcj4hm7scxl4cg4qm67rprzdj7dmyc3907yad4n023"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d63cb8906726f106e65f7d9895b49a38ffebf8d5/recipes/dracula-theme"; - sha256 = "1px162v7h7136rasafq875yzw0h8n6wvzbyh73c3w093kd30bmh8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/dracula-theme"; - license = lib.licenses.free; - }; - }) {}; - draft-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "draft-mode"; - ename = "draft-mode"; - version = "0.1.1"; - src = fetchFromGitLab { - owner = "gaudecker"; - repo = "draft-mode"; - rev = "f059c04b044f62aec764c7698adddad301bfe89c"; - sha256 = "01dspkv7g4xmmqgz6f1p190h5p4f4vrw8r9dikrjch02bb76wqir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbfefacda071c0f5ee698a4c345a2d6fea6a0d24/recipes/draft-mode"; - sha256 = "19lq1a3rj6fck3xq2vcz8fk30hpx25kyfz6c7hmq36kx4lv0mjpa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/draft-mode"; - license = lib.licenses.free; - }; - }) {}; - drag-stuff = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drag-stuff"; - ename = "drag-stuff"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "drag-stuff.el"; - rev = "d49fe376d24f0f8ac5ade67b6d7fccc2487c81db"; - sha256 = "1jrr59iazih3imkl9ja1lbni9v3xv6b8gmqs015g2mxhlql35jka"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/drag-stuff"; - sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/drag-stuff"; - license = lib.licenses.free; - }; - }) {}; - drupal-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode }: - melpaBuild { - pname = "drupal-mode"; - ename = "drupal-mode"; - version = "0.7.3"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "drupal-mode"; - rev = "49ce63c659aa0af7a2daf0c9e74e58fbce6deb71"; - sha256 = "1l2xc24y037b3z62yxmq2bx1x3qqv56d15bf3qmb3mpgm4gh85j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13e16af340868048eb1f51f9865dfc707e57abe8/recipes/drupal-mode"; - sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; - name = "recipe"; - }; - packageRequires = [ php-mode ]; - meta = { - homepage = "https://melpa.org/#/drupal-mode"; - license = lib.licenses.free; - }; - }) {}; - drupal-spell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "drupal-spell"; - ename = "drupal-spell"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "drupal-spell"; - rev = "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae"; - sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb859d9755bde3fd852bc7d08f2fab2429ba31b3/recipes/drupal-spell"; - sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/drupal-spell"; - license = lib.licenses.free; - }; - }) {}; - dtrt-indent = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dtrt-indent"; - ename = "dtrt-indent"; - version = "0.8"; - src = fetchFromGitHub { - owner = "jscheid"; - repo = "dtrt-indent"; - rev = "9ab9cb9d7f391fb09f61c9289c51c36374ddbcbb"; - sha256 = "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994/recipes/dtrt-indent"; - sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dtrt-indent"; - license = lib.licenses.free; - }; - }) {}; - ducpel = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ducpel"; - ename = "ducpel"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "ducpel"; - rev = "ece785baaa102bd2e9d54257af3a92bacc5757bc"; - sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a/recipes/ducpel"; - sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ducpel"; - license = lib.licenses.free; - }; - }) {}; - dumb-jump = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , s }: - melpaBuild { - pname = "dumb-jump"; - ename = "dumb-jump"; - version = "0.5.2"; - src = fetchFromGitHub { - owner = "jacktasia"; - repo = "dumb-jump"; - rev = "260054500d4731c36574b6cbc519de29fdd22f43"; - sha256 = "00ph85vp8sa3k99qrdxfz4l8zx121q9xf47vvspzg26bk9l4nwin"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/dumb-jump"; - sha256 = "1j90n8gydsp2v07rysz1k5vf6hspybcl27214sib1iz3hbimid1w"; - name = "recipe"; - }; - packageRequires = [ dash emacs f popup s ]; - meta = { - homepage = "https://melpa.org/#/dumb-jump"; - license = lib.licenses.free; - }; - }) {}; - dune = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dune"; - ename = "dune"; - version = "1.10.0"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "dune"; - rev = "060b6acabba7bf0713912afb28e4cdb0461c2199"; - sha256 = "1mw8jspqf4wxawnshkbbqpnxzzdz576wl6mgnzbh6ddxr9pk2z7w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06648d1d37767cbdc7588d7a8f709d679d478a3b/recipes/dune"; - sha256 = "1lqza4fjm9xxmdn8040bvsl467qzjy709dlmiq2241gfhxpmvvr7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dune"; - license = lib.licenses.free; - }; - }) {}; - dynamic-fonts = callPackage ({ fetchFromGitHub - , fetchurl - , font-utils - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "dynamic-fonts"; - ename = "dynamic-fonts"; - version = "0.6.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "dynamic-fonts"; - rev = "d318498b377d8941c7420f51616c78e3440d00f5"; - sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/dynamic-fonts"; - sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; - name = "recipe"; - }; - packageRequires = [ font-utils pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/dynamic-fonts"; - license = lib.licenses.free; - }; - }) {}; - dynamic-ruler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "dynamic-ruler"; - ename = "dynamic-ruler"; - version = "0.1.6"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "dynamic-ruler"; - rev = "c9c0de6fe5721f06b50e01d9b4684b519c71b367"; - sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/926c43867120db429807ff5aaacc8af65a1738c8/recipes/dynamic-ruler"; - sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/dynamic-ruler"; - license = lib.licenses.free; - }; - }) {}; - e2wm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , window-layout }: - melpaBuild { - pname = "e2wm"; - ename = "e2wm"; - version = "1.4"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-window-manager"; - rev = "4353d3394c77a49f8f0291c239858c8c5e877549"; - sha256 = "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8da85815c39f58552a968ae68ee07c08c53b0f61/recipes/e2wm"; - sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; - name = "recipe"; - }; - packageRequires = [ window-layout ]; - meta = { - homepage = "https://melpa.org/#/e2wm"; - license = lib.licenses.free; - }; - }) {}; - e2wm-R = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-R"; - ename = "e2wm-R"; - version = "0.4"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "e2wm-R.el"; - rev = "fe17906bf48324032a1beaec9af32b9b49ea9125"; - sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a3ba9843bdf275815b149e4c4b0a947bbc5e614/recipes/e2wm-R"; - sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; - name = "recipe"; - }; - packageRequires = [ e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-R"; - license = lib.licenses.free; - }; - }) {}; - e2wm-direx = callPackage ({ direx - , e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-direx"; - ename = "e2wm-direx"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-direx"; - rev = "f319625b56c44e601af7c17fc6dbb88e5d70ebae"; - sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8320cf626050cf455c97ef22e7a8ccfb253e3243/recipes/e2wm-direx"; - sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; - name = "recipe"; - }; - packageRequires = [ direx e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-direx"; - license = lib.licenses.free; - }; - }) {}; - e2wm-pkgex4pl = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , plsense-direx }: - melpaBuild { - pname = "e2wm-pkgex4pl"; - ename = "e2wm-pkgex4pl"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-pkgex4pl"; - rev = "b72561b75e98961f05544a2159d83592c964ba1e"; - sha256 = "1cx6kdxhq9ybwwvc1vpwcfy08yf1h4xacgimm36kp9xayvxsmq2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f84b421cb1673d2a9fe820cee11dc4a6e72adad/recipes/e2wm-pkgex4pl"; - sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; - name = "recipe"; - }; - packageRequires = [ e2wm plsense-direx ]; - meta = { - homepage = "https://melpa.org/#/e2wm-pkgex4pl"; - license = lib.licenses.free; - }; - }) {}; - e2wm-sww = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "e2wm-sww"; - ename = "e2wm-sww"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-sww"; - rev = "db454ac3eddd53a62f2725f6e2d5ac455caf200c"; - sha256 = "1a8z94z0wp9r4kh44bn2m74k866jwq7zvjihxmmzr0rfb85q2d99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc873e8271e9f372e08da5d0e4b77c8ba0e3a8cb/recipes/e2wm-sww"; - sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; - name = "recipe"; - }; - packageRequires = [ e2wm ]; - meta = { - homepage = "https://melpa.org/#/e2wm-sww"; - license = lib.licenses.free; - }; - }) {}; - e2wm-term = callPackage ({ e2wm - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "e2wm-term"; - ename = "e2wm-term"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "e2wm-term"; - rev = "65b5ac88043d5c4048920a048f3599904ca55981"; - sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9a800f5af893cb670cedb47e4a723c407be8429/recipes/e2wm-term"; - sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; - name = "recipe"; - }; - packageRequires = [ e2wm log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/e2wm-term"; - license = lib.licenses.free; - }; - }) {}; - eacl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "eacl"; - ename = "eacl"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "eacl"; - rev = "ba6a95838422ec33191beaa12b3e43b67c105abc"; - sha256 = "0ksn11sm3g1ja5lpjz3hrzzw8b480mfcb3q589m52qjgvvn5iyfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8223bec7eed97f0bad300af9caa4c8207322d39a/recipes/eacl"; - sha256 = "16afsf3diz498jb63q85lm5ifvm487clfl838qzagl1l4aywhlwr"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/eacl"; - license = lib.licenses.free; - }; - }) {}; - easy-hugo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , request }: - melpaBuild { - pname = "easy-hugo"; - ename = "easy-hugo"; - version = "3.8.41"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-easy-hugo"; - rev = "c80b972faa2c3addc472fe6412ca28dc5583b1d6"; - sha256 = "08lhs0nhd19irssq4w028wyiaf5d2a7pqd1b3hp7rgza411lvwji"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/easy-hugo"; - sha256 = "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g"; - name = "recipe"; - }; - packageRequires = [ emacs popup request ]; - meta = { - homepage = "https://melpa.org/#/easy-hugo"; - license = lib.licenses.free; - }; - }) {}; - easy-jekyll = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "easy-jekyll"; - ename = "easy-jekyll"; - version = "2.2.22"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-easy-jekyll"; - rev = "9b065ac1bc5a85c6ad41a7b97553eeaa9e30c791"; - sha256 = "1pj2hafyx1lq8ifahfg0j90z72swixi1pma52j6701vrn8a5aqw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3f281145bad12c27bdbef32ccc07b6a5f13b577/recipes/easy-jekyll"; - sha256 = "16jj70fr23z5qsaijv4d4xfiiypny2cama8rsaci9fk9haq19lxv"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/easy-jekyll"; - license = lib.licenses.free; - }; - }) {}; - easy-kill = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-kill"; - ename = "easy-kill"; - version = "0.9.3"; - src = fetchFromGitHub { - owner = "leoliu"; - repo = "easy-kill"; - rev = "20ed0d595e5893e2c57a634a3137ef87b1714f17"; - sha256 = "0ppxx5798zxwm9dzqjmf1maz2a6asv3fwiw8ypdmzx77y0vbckv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d0a74c2a7d8859e9311bc8d71f5e6cf5a8063b6/recipes/easy-kill"; - sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/easy-kill"; - license = lib.licenses.free; - }; - }) {}; - easy-kill-extras = callPackage ({ easy-kill - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-kill-extras"; - ename = "easy-kill-extras"; - version = "0.9.6"; - src = fetchFromGitHub { - owner = "knu"; - repo = "easy-kill-extras.el"; - rev = "b8ce8350cc86e0229f195082557970cd51def960"; - sha256 = "1f8db92zzk8g8yyj0g334mdbgqmzrs8xamm1d24jai1289hm29xa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7b55d93f78fefde47a2bd4ebbfd93c028fab1f40/recipes/easy-kill-extras"; - sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; - name = "recipe"; - }; - packageRequires = [ easy-kill ]; - meta = { - homepage = "https://melpa.org/#/easy-kill-extras"; - license = lib.licenses.free; - }; - }) {}; - easy-repeat = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "easy-repeat"; - ename = "easy-repeat"; - version = "0.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "easy-repeat.el"; - rev = "060f0e6801c82c40c06961dc0528a00e18947a8c"; - sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1f5e0d19043f6a24ab4069c9c850e96cbe61a8f/recipes/easy-repeat"; - sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/easy-repeat"; - license = lib.licenses.free; - }; - }) {}; - ebal = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ebal"; - ename = "ebal"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "ebal"; - rev = "4d19565516785348894c4911e757e33a270b3efd"; - sha256 = "1wj9h8ypi70az387c7pcrpc59lpf89dkp2q4df2ighxw3l648mb7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/629aa451162a0085488caad4052a56366b7ce392/recipes/ebal"; - sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/ebal"; - license = lib.licenses.free; - }; - }) {}; - ebf = callPackage ({ cl-lib ? null - , dash - , dash-functional - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ebf"; - ename = "ebf"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "rexim"; - repo = "ebf"; - rev = "d0bd4fe1abbe327e7d9228eff09927fec57e8378"; - sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22e2f6383f2a7a01778c0524af19a68af57796ae/recipes/ebf"; - sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dash-functional ]; - meta = { - homepage = "https://melpa.org/#/ebf"; - license = lib.licenses.free; - }; - }) {}; - ebib = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsebib }: - melpaBuild { - pname = "ebib"; - ename = "ebib"; - version = "2.16.5"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "ebib"; - rev = "eb6e7bf8cc525c41150bf5913d965e89e1fbf48d"; - sha256 = "0jys32kvbcjrc65dwgfzz21g4fnycdhm0pybgk3akb80rv00x1vf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/ebib"; - sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; - name = "recipe"; - }; - packageRequires = [ emacs parsebib ]; - meta = { - homepage = "https://melpa.org/#/ebib"; - license = lib.licenses.free; - }; - }) {}; - eclim = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild - , popup - , s - , yasnippet }: - melpaBuild { - pname = "eclim"; - ename = "eclim"; - version = "0.4"; - src = fetchFromGitHub { - owner = "emacs-eclim"; - repo = "emacs-eclim"; - rev = "6da0025d387119bb88c8bc870156fb1a8411ac4e"; - sha256 = "1jpscpjlfgjcfivz86sg6d41m6c8brwali8annhxwk3qykxdh9ik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e9d3075587fbd9ca188535fd945a7dc451c6d7e/recipes/eclim"; - sha256 = "1n60ci6kjmzy2khr3gs7s8gf21j1f9zjaj5a1yy2dyygsarbxw7b"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash json popup s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/eclim"; - license = lib.licenses.free; - }; - }) {}; - ecukes = callPackage ({ ansi - , commander - , dash - , espuds - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ecukes"; - ename = "ecukes"; - version = "0.6.17"; - src = fetchFromGitHub { - owner = "ecukes"; - repo = "ecukes"; - rev = "3a77ba9f1064c2bca47b401974c009e65727c46e"; - sha256 = "1isscwz4h3nx62lwfrj899lp2yc27zk1ndgr441d848495ccmshn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/ecukes"; - sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash espuds f s ]; - meta = { - homepage = "https://melpa.org/#/ecukes"; - license = lib.licenses.free; - }; - }) {}; - edbi = callPackage ({ concurrent - , ctable - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi"; - ename = "edbi"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-edbi"; - rev = "ad3cebf1fa90a92d112ce6ecf404dc0192ea9367"; - sha256 = "0j9pkb4r5rmx0h0rsvgnkp75ars63v6llhv9vc41fbjir14fs81x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/238a11afa52d2c01d69eb16ffd7d07ccd6dff403/recipes/edbi"; - sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; - name = "recipe"; - }; - packageRequires = [ concurrent ctable epc ]; - meta = { - homepage = "https://melpa.org/#/edbi"; - license = lib.licenses.free; - }; - }) {}; - edbi-minor-mode = callPackage ({ edbi - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edbi-minor-mode"; - ename = "edbi-minor-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "edbi-minor-mode"; - rev = "566a2141a6eb9d9d5d7e1bd7c251d1c5e8f0d2ec"; - sha256 = "1g6mlmrwl8p5ffj9q298vymd9xi2kpp7mhbmz4by4f6a3g831c88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb878b60c7ecbb1e3a47aef1d9765061c510644/recipes/edbi-minor-mode"; - sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; - name = "recipe"; - }; - packageRequires = [ edbi ]; - meta = { - homepage = "https://melpa.org/#/edbi-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ede-php-autoload"; - ename = "ede-php-autoload"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "ede-php-autoload"; - rev = "3f13302b9e8dbb6a24205c4bc21acadff487d30b"; - sha256 = "03mjw824d0l2g8n07ys3j89x8chbx64znhhz14y6ni4b9650njdf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afc7ddfcf16e92889e54f30599b576a24823f60d/recipes/ede-php-autoload"; - sha256 = "1255a1drpb50650i0yijahbp97chpw89mi9fvdrk3vf64xlysamq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload-composer-installers = callPackage ({ ede-php-autoload - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ede-php-autoload-composer-installers"; - ename = "ede-php-autoload-composer-installers"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "xendk"; - repo = "ede-php-autoload-composer-installers"; - rev = "f9942e07d0773444040084ac84652e69f0fd46d5"; - sha256 = "04gw8ma5c898ai7haxvdagmxx8zw9ncc9v0cv8a5ddg6arvzkl1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e0e9058593b32b8d9fd7873d4698b4dd516930f/recipes/ede-php-autoload-composer-installers"; - sha256 = "0s7dv81niz4h8kj0648x2nbmz47hqxchfs2rjmjpy2lcbifvj268"; - name = "recipe"; - }; - packageRequires = [ ede-php-autoload f s ]; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload-composer-installers"; - license = lib.licenses.free; - }; - }) {}; - ede-php-autoload-drupal = callPackage ({ ede-php-autoload - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ede-php-autoload-drupal"; - ename = "ede-php-autoload-drupal"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "xendk"; - repo = "ede-php-autoload-drupal"; - rev = "9fbda34704a15136f934d628b2a24b5e30f8510b"; - sha256 = "095w19b9lhqfsf7fg58k5v2w1wxkfc44dd828ah62083a2ph5d56"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/532fec4788350cc11893c32e3895f06510a39d35/recipes/ede-php-autoload-drupal"; - sha256 = "139sr7jy5hb8h5zmw5mw01r0dy7yvbbyaxzj62m1a589n8w6a964"; - name = "recipe"; - }; - packageRequires = [ ede-php-autoload f s ]; - meta = { - homepage = "https://melpa.org/#/ede-php-autoload-drupal"; - license = lib.licenses.free; - }; - }) {}; - edit-indirect = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-indirect"; - ename = "edit-indirect"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "edit-indirect"; - rev = "032ac0ec690d4999d564fd882588c7a197efe8dd"; - sha256 = "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/edit-indirect"; - sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/edit-indirect"; - license = lib.licenses.free; - }; - }) {}; - edit-list = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-list"; - ename = "edit-list"; - version = "0.3"; - src = fetchFromGitHub { - owner = "emacsmirror"; - repo = "edit-list"; - rev = "f460d3f9e208a4e606fe6ded307f1b011916ca71"; - sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c8aa348ce5289a8b1238f186affac1d544af755/recipes/edit-list"; - sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edit-list"; - license = lib.licenses.free; - }; - }) {}; - edit-server = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edit-server"; - ename = "edit-server"; - version = "1.15"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "emacs_chrome"; - rev = "7e083580f8cc00ee88d9db00b8b47ae4349502a5"; - sha256 = "0kvvs9pkwydarpzmar4mbqvp05jrkvq06yz99l3llklaw09g7bfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d98d69008b5ca8b92fa7a6045b9d1af86f269386/recipes/edit-server"; - sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edit-server"; - license = lib.licenses.free; - }; - }) {}; - editorconfig = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig"; - ename = "editorconfig"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "editorconfig"; - repo = "editorconfig-emacs"; - rev = "4b6c34d5d77025a11ae68462af9bf0a822a13242"; - sha256 = "1b2cpqz75pivl323bs60j5rszwi787x6vy68csycikqz9mhpmjn9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50d4f2ed288ef38153a7eab44c036e4f075b51d0/recipes/editorconfig"; - sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/editorconfig"; - license = lib.licenses.free; - }; - }) {}; - editorconfig-custom-majormode = callPackage ({ editorconfig - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "editorconfig-custom-majormode"; - ename = "editorconfig-custom-majormode"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "editorconfig-custom-majormode-el"; - rev = "ae613f0a56364afbbab19d4377c108406d5cfc7c"; - sha256 = "0sm3xdysnqzc6nc2n7rcnr478l7qdy7bv8rhq500240aprzv63y4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcd47bf4630442ad1a941ad432cef64c7746aa71/recipes/editorconfig-custom-majormode"; - sha256 = "0ykvjg3gwxky6w5cm0y5s63q9820b7d25fy9plw8sarxwy2a5lxy"; - name = "recipe"; - }; - packageRequires = [ editorconfig ]; - meta = { - homepage = "https://melpa.org/#/editorconfig-custom-majormode"; - license = lib.licenses.free; - }; - }) {}; - edn = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , peg - , s }: - melpaBuild { - pname = "edn"; - ename = "edn"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "expez"; - repo = "edn.el"; - rev = "bb035dcbeccccdb2c899d2cce8e81486764d0ad7"; - sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/305dd770d9db86d5ee602e6bd571b7c4f6c4ddbe/recipes/edn"; - sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs peg s ]; - meta = { - homepage = "https://melpa.org/#/edn"; - license = lib.licenses.free; - }; - }) {}; - edts = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "edts"; - ename = "edts"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "tjarvstrand"; - repo = "edts"; - rev = "f25b8450efaee916900d8cb7b3fb0f3c5d1990f5"; - sha256 = "00i7nd3lkak360klfmq3zngfm251l4d319lrwln0ajlk0x2gljag"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/782db7fba2713bfa17d9305ae15b0a9e1985445b/recipes/edts"; - sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/edts"; - license = lib.licenses.free; - }; - }) {}; - eg = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eg"; - ename = "eg"; - version = "1.1"; - src = fetchFromGitHub { - owner = "davep"; - repo = "eg.el"; - rev = "0791452498719afb7409d1f723dbea2ec26d56f1"; - sha256 = "1y16pah8f4jp117vihvlcwvsw2i85gdk45h9y9r1w9mslb24faac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2b6b92b2a71486f260571885bf149ad6afc551/recipes/eg"; - sha256 = "1ic6qzk0zmay3vvbb8jg35irqkc0k68dmgbq4j9isiawy449zvp7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/eg"; - license = lib.licenses.free; - }; - }) {}; - egg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "egg"; - ename = "egg"; - version = "1.1.4"; - src = fetchFromGitHub { - owner = "byplayer"; - repo = "egg"; - rev = "00e768a78ac3d25f457eed667d02cac568480bf9"; - sha256 = "1ak23v9gqj6x104mzgihn0hi7w0kr76q1sl929wmbb9h8s3a54q8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1c97870c2641d73685f07a12f010530cc186544/recipes/egg"; - sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/egg"; - license = lib.licenses.free; - }; - }) {}; - egison-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "egison-mode"; - ename = "egison-mode"; - version = "3.8.2"; - src = fetchFromGitHub { - owner = "egison"; - repo = "egison"; - rev = "ddc6d910be421d891efc8c7c033b99b10364c4c3"; - sha256 = "1rw5xjs4hnikj2swskczxn3x31811znsgzj72b975zbmd5vp98kd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/egison-mode"; - sha256 = "0bch4863l9wxrss63fj46gy3nx3hp635709xr4c2arw0j7n82lzd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/egison-mode"; - license = lib.licenses.free; - }; - }) {}; - eglot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flymake ? null - , jsonrpc - , lib - , melpaBuild }: - melpaBuild { - pname = "eglot"; - ename = "eglot"; - version = "1.4"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "eglot"; - rev = "35597d262b53bde52faa46ee6ae8c597d93114e8"; - sha256 = "1qx3ixaaaffhmbh3ifi5041lp7xp4ab4x4n1mal3wcpp70asxvdp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c644530eca56f93d94fac2c9d7663c35c2b8c01/recipes/eglot"; - sha256 = "17w39hcgv4p49g841qaicjdx7xac72yxvsc83jf1rrakg713pj7y"; - name = "recipe"; - }; - packageRequires = [ emacs flymake jsonrpc ]; - meta = { - homepage = "https://melpa.org/#/eglot"; - license = lib.licenses.free; - }; - }) {}; - eide = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eide"; - ename = "eide"; - version = "2.1.3"; - src = fetchgit { - url = "https://framagit.org/eide/eide.git"; - rev = "7e4f101923d1aaa4ad4626ff60375ece8dd13e1d"; - sha256 = "0j343hdarrlgznc4f59gbix20zlpr4wv5b8db6m0262ajc5q5zfb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a42244392719c620b47bc43a7a8501dab4b6f74e/recipes/eide"; - sha256 = "1962shxcfn3v1ljann7182ca6ciy5xfbcd6l9l8rc8gikp55qv8m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eide"; - license = lib.licenses.free; - }; - }) {}; - ein = callPackage ({ auto-complete - , cl-generic - , dash - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s - , skewer-mode - , websocket }: - melpaBuild { - pname = "ein"; - ename = "ein"; - version = "0.15.0"; - src = fetchFromGitHub { - owner = "millejoh"; - repo = "emacs-ipython-notebook"; - rev = "f2e9193da64ee6a0398165e3d6f0855ab3d6eff2"; - sha256 = "10hkk5v9lgwcwr6kd095kpw1zab6658x3j17mwa6bfp2in2sjsv3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/215e163755fe391ce1f049622e7b9bf9a8aea95a/recipes/ein"; - sha256 = "14blq1cbrp00rq0ilk7z9qppqfj0r4n3jidw3abcpchvh5ln086r"; - name = "recipe"; - }; - packageRequires = [ - auto-complete - cl-generic - dash - deferred - request - s - skewer-mode - websocket - ]; - meta = { - homepage = "https://melpa.org/#/ein"; - license = lib.licenses.free; - }; - }) {}; - eink-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eink-theme"; - ename = "eink-theme"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "maio"; - repo = "eink-emacs"; - rev = "93d25c097b105594472c4f99d693f439b4b709f0"; - sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1349c3f93ab60983f77c28f97048fa258b612a6/recipes/eink-theme"; - sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eink-theme"; - license = lib.licenses.free; - }; - }) {}; - ejc-sql = callPackage ({ auto-complete - , clomacs - , dash - , direx - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , spinner }: - melpaBuild { - pname = "ejc-sql"; - ename = "ejc-sql"; - version = "0.3"; - src = fetchFromGitHub { - owner = "kostafey"; - repo = "ejc-sql"; - rev = "285ad107dbd9ef6a1e417f684eaf30e788fcfc79"; - sha256 = "0vypbyx2r7v8mmdhiq7n2x0xp43njwra5fz6f6cba40wq4dnkg0g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e01655679087504db1206b22435ba8eb7050aa23/recipes/ejc-sql"; - sha256 = "13i55l6hwsxbmdxmvh6aajayivgskw4iagmj9in1qkd9rnrykhn9"; - name = "recipe"; - }; - packageRequires = [ auto-complete clomacs dash direx emacs spinner ]; - meta = { - homepage = "https://melpa.org/#/ejc-sql"; - license = lib.licenses.free; - }; - }) {}; - el-autoyas = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-autoyas"; - ename = "el-autoyas"; - version = "0.5"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "el-autoyas.el"; - rev = "bde0251ecb504f585dfa27c205c8e312655310cc"; - sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc4845343dbb8f8294394f6850788e4f1fe6b99b/recipes/el-autoyas"; - sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-autoyas"; - license = lib.licenses.free; - }; - }) {}; - el-get = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-get"; - ename = "el-get"; - version = "5.1"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "el-get"; - rev = "bfffd553f4c72b818e9ee94f05458eae7a16056b"; - sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1c61197a2b616d6d3c6b652248cb166196846b44/recipes/el-get"; - sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-get"; - license = lib.licenses.free; - }; - }) {}; - el-init = callPackage ({ anaphora - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-init"; - ename = "el-init"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "el-init"; - rev = "25fd21d820bca1cf576b8f70c8d5a3bc76792597"; - sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c18cc62ffaaf839284ed7b261cc6f375fab813/recipes/el-init"; - sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/el-init"; - license = lib.licenses.free; - }; - }) {}; - el-init-viewer = callPackage ({ anaphora - , cl-lib ? null - , ctable - , dash - , el-init - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-init-viewer"; - ename = "el-init-viewer"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "el-init-viewer"; - rev = "5e42667c53aa096f671c011474e0d75cf1947a18"; - sha256 = "057hbf78p8ihpnschmzng4yn1jqpw12drvgxk4l8csr3fpqw4spf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f90e6be757783352c4a7732177ff2e2c0a066247/recipes/el-init-viewer"; - sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib ctable dash el-init emacs ]; - meta = { - homepage = "https://melpa.org/#/el-init-viewer"; - license = lib.licenses.free; - }; - }) {}; - el-mock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-mock"; - ename = "el-mock"; - version = "1.25.1"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "el-mock.el"; - rev = "3069931de75bb6704ecf565af5390009dc4dae00"; - sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1989beb927657c0ff7e79fe448f62ac58c11be7/recipes/el-mock"; - sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-mock"; - license = lib.licenses.free; - }; - }) {}; - el-patch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-patch"; - ename = "el-patch"; - version = "2.2.3"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "el-patch"; - rev = "ef56cbc6950dffd91de93009bafe51efb81eb84f"; - sha256 = "18djslz177q6q33y82zmg2v6n9236a76kiqfvxdk4vbqzjbq82f7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f4f57e0edbae35597aa4a7744d22d2f971d5de5/recipes/el-patch"; - sha256 = "1imijmsni8c8fxjrzprnanf94c1pma3h5w9p75c4y99l8l3xmj7g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/el-patch"; - license = lib.licenses.free; - }; - }) {}; - el-spice = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-spice"; - ename = "el-spice"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "vedang"; - repo = "el-spice"; - rev = "972dace20ec61cd27b9322432d0c7a688c6f061a"; - sha256 = "1wrb46y4s4v0lwwyriz2qn1j1l804jyb4dmadf462jxln85rml70"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4666eee9f6837d6d9dba77e04aa4c8c4a93b47b5/recipes/el-spice"; - sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-spice"; - license = lib.licenses.free; - }; - }) {}; - el-x = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el-x"; - ename = "el-x"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "el-x"; - rev = "b0b69b182f7a81a550ccf9b3a14d8d91560b4f70"; - sha256 = "1dky0vydwh7l786w7gci4x17kkf6dg8gijmqzl4y0ij9zm9kfxzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0346f6349cf39a0414cd055b06d8ed193f4972d4/recipes/el-x"; - sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/el-x"; - license = lib.licenses.free; - }; - }) {}; - el2org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "el2org"; - ename = "el2org"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "el2org"; - rev = "4a33469cd305e581603d7ef63bc2a1f2156f2e2e"; - sha256 = "0mzddqny6wpg1fv99xrvlv7rxmaifvmy5bvj4in4pldhm4cx4q1b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/el2org"; - sha256 = "02kyvzpjws2mrp414i4zm4fmrnzgkaax6bnrlyhp17a8aqaggbnh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/el2org"; - license = lib.licenses.free; - }; - }) {}; - elbank = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "elbank"; - ename = "elbank"; - version = "1.2"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "elbank"; - rev = "f494716105b1a9f4f52f43bc3dd37c9cd0309bf5"; - sha256 = "0bvx6nq0gjjbjs0mzd1x1ajyjpa181z0n4kv4aknh3is210gbpbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/elbank"; - sha256 = "1i1cdywcbdj9ykfczbagrqdpgf3c88f1kc0mdlj8mzyvjixx7mhk"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/elbank"; - license = lib.licenses.free; - }; - }) {}; - elcouch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , libelcouch - , melpaBuild }: - melpaBuild { - pname = "elcouch"; - ename = "elcouch"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "elcouch"; - rev = "d22e8cab9328966b2e2d5bc4fc17a4abbb222736"; - sha256 = "0l9ah3ijlidjshwkazfcdasm3hmigw8dcyqgi9pmpv0kw9096y64"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5d9a35dd5a272a592d248993ea7e5dda8fdf0ab/recipes/elcouch"; - sha256 = "1dp7chvnz6gadqgyqbvdxpva3hm3sx60izsa690mp2rifjyxgqf1"; - name = "recipe"; - }; - packageRequires = [ emacs json-mode libelcouch ]; - meta = { - homepage = "https://melpa.org/#/elcouch"; - license = lib.licenses.free; - }; - }) {}; - eldoc-box = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eldoc-box"; - ename = "eldoc-box"; - version = "1.8"; - src = fetchFromGitHub { - owner = "casouri"; - repo = "eldoc-box"; - rev = "61dd07f6709ed04f09615d04457b4cfe73c7ace1"; - sha256 = "1ajg8x5s9yranidx17jz0da7439lwsdkw105531zq9547n31as65"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aac2e64f9e0d06b95bdf0dece214263f75470ea8/recipes/eldoc-box"; - sha256 = "11720hi2gvjwc4x2yrxnrhh76wf3sj3yd0vaa3sc22xa5g1wi40r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eldoc-box"; - license = lib.licenses.free; - }; - }) {}; - eldoc-eval = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eldoc-eval"; - ename = "eldoc-eval"; - version = "1.1"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "eldoc-eval"; - rev = "deca5e39f31282a06531002d289258cd099433c0"; - sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63ba2004d3db4c5a71676dca82ad880328cf6073/recipes/eldoc-eval"; - sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eldoc-eval"; - license = lib.licenses.free; - }; - }) {}; - electric-operator = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "electric-operator"; - ename = "electric-operator"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "electric-operator"; - rev = "21e6b84754118912768263a393442a7aefb4742b"; - sha256 = "1bgz5vn4piax8jm0ixqlds0qj5my26zczaxs21fah11pwbdc0xyk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/906cdf8647524bb76f644373cf8b65397d9053a5/recipes/electric-operator"; - sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; - name = "recipe"; - }; - packageRequires = [ dash emacs names ]; - meta = { - homepage = "https://melpa.org/#/electric-operator"; - license = lib.licenses.free; - }; - }) {}; - elf-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elf-mode"; - ename = "elf-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "elf-mode"; - rev = "cd280d683cd3341d8bb31af6db7e3b74a133e6ab"; - sha256 = "0cbvjbk2893ag1iy8ggixpirfiyhssm7fii96hb9jqdz874cdl0k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/368d1ff91f310e5ffe68f872ab0a91584a41a66e/recipes/elf-mode"; - sha256 = "0xwpaqg4mc0a0d8a4dxbd1sqzvi01gfhwr75f7i3sjzx0fj8vcwd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elf-mode"; - license = lib.licenses.free; - }; - }) {}; - elfeed = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elfeed"; - ename = "elfeed"; - version = "3.1.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elfeed"; - rev = "3d1c6ecbe585f9fe6ca5a97a3fc352d68f303f9e"; - sha256 = "1bzpl6lc7kq9bph4bfz1fn19207blrnhjr2g7yinhn0nnnjmxi8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/407ae027fcec444622c2a822074b95996df9e6af/recipes/elfeed"; - sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elfeed"; - license = lib.licenses.free; - }; - }) {}; - elfeed-protocol = callPackage ({ cl-lib ? null - , elfeed - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elfeed-protocol"; - ename = "elfeed-protocol"; - version = "0.5.9"; - src = fetchFromGitHub { - owner = "fasheng"; - repo = "elfeed-protocol"; - rev = "c5faca15ccfe7e03dc4ee1372a07671c20015737"; - sha256 = "1cdg111dgpphlpv2csv9nr5p2zjk3qss7bf0y8485nnzcin4ip9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f1eef8add7cd2cfefe6fad6d8e69d65696e9677/recipes/elfeed-protocol"; - sha256 = "1gd2ny764qsnnqf3j7rbdqhh7hqd5c0fzwxx6wacd0dpbq4w56qi"; - name = "recipe"; - }; - packageRequires = [ cl-lib elfeed emacs ]; - meta = { - homepage = "https://melpa.org/#/elfeed-protocol"; - license = lib.licenses.free; - }; - }) {}; - elfeed-web = callPackage ({ elfeed - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "elfeed-web"; - ename = "elfeed-web"; - version = "3.1.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elfeed"; - rev = "3d1c6ecbe585f9fe6ca5a97a3fc352d68f303f9e"; - sha256 = "1bzpl6lc7kq9bph4bfz1fn19207blrnhjr2g7yinhn0nnnjmxi8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62459d16ee44d5fcf170c0ebc981ca2c7d4672f2/recipes/elfeed-web"; - sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; - name = "recipe"; - }; - packageRequires = [ elfeed emacs simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/elfeed-web"; - license = lib.licenses.free; - }; - }) {}; - elgrep = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elgrep"; - ename = "elgrep"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "TobiasZawada"; - repo = "elgrep"; - rev = "c2c5858f335ac1d0013dc631e5bc2dc16d9b3198"; - sha256 = "1rlj9cniwk8fzfn1i4apffrikv08r9c2dmwxhqc6nmrhfjr2rf1k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d9ab623b2d634936a79ff6f4b98b31825d44b6d/recipes/elgrep"; - sha256 = "0b8dma52zv57sh1jbrabfy6k5lzixs7f541s8dsqyrg0fzlq460j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elgrep"; - license = lib.licenses.free; - }; - }) {}; - elisp-def = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elisp-def"; - ename = "elisp-def"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "elisp-def"; - rev = "5e0d766a5db537f4e7145c2053c22829d736ceba"; - sha256 = "0l9az09yw40rr2xrvf01c3idfqplddr1kk880qscnzj8v9p06l4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f027b844efdc5946d2ad80d7052a8f3b96aac3d/recipes/elisp-def"; - sha256 = "1y29nsgjv9nb03g0jc5hb1a8k23r54ivdlv9h0a384cig8i91hsz"; - name = "recipe"; - }; - 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"; - ename = "elisp-lint"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "gonewest818"; - repo = "elisp-lint"; - rev = "9d894e99377859171ee54cb7d2b2e7f2cc7c267c"; - sha256 = "11pvqskjhxxsyxmy8wllqwa0qg0j9280h0m5rzjghgsdcnlisyvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61595c78ac7f15eef47bf28636ad796f74741509/recipes/elisp-lint"; - sha256 = "13cxcn0qp63f2nkv37c3w47dby9cqm4l1f8xilgpczdaxd86kd63"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elisp-lint"; - license = lib.licenses.free; - }; - }) {}; - elisp-refs = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild - , s }: - melpaBuild { - pname = "elisp-refs"; - ename = "elisp-refs"; - version = "1.3"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "elisp-refs"; - rev = "788f6f65d5171b1887b3ff9e4cad900e8046b2b1"; - sha256 = "0c7hcbjqynw6k5idpmfxn6xbr192ahhk8a2g72npap97flpw6cdq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/elisp-refs"; - sha256 = "1pj3dm2z6m24179ibl7zhr8lhan2v2rjnm3abfciwp228piz1sfz"; - name = "recipe"; - }; - packageRequires = [ dash loop s ]; - meta = { - homepage = "https://melpa.org/#/elisp-refs"; - license = lib.licenses.free; - }; - }) {}; - elisp-slime-nav = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elisp-slime-nav"; - ename = "elisp-slime-nav"; - version = "0.9"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "elisp-slime-nav"; - rev = "0e96d9f1f0d334f09414b509d44d5c000b51f432"; - sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/elisp-slime-nav"; - sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/elisp-slime-nav"; - license = lib.licenses.free; - }; - }) {}; - elixir-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "elixir-mode"; - ename = "elixir-mode"; - version = "2.3.1"; - src = fetchFromGitHub { - owner = "elixir-editors"; - repo = "emacs-elixir"; - rev = "a1f4d60ec555574c945201359d2e32b183c69f4b"; - sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/elixir-mode"; - sha256 = "0d25p6sal1qg1xsq5yk343afnrxa0lzpx5gsh72khnx2i8pi40vz"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/elixir-mode"; - license = lib.licenses.free; - }; - }) {}; - elixir-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "elixir-yasnippets"; - ename = "elixir-yasnippets"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "hisea"; - repo = "elixir-yasnippets"; - rev = "6b55c88ce483932f226b6bca0212b589d1d393ea"; - sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c/recipes/elixir-yasnippets"; - sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/elixir-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - elm-mode = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elm-mode"; - ename = "elm-mode"; - version = "0.20.3"; - src = fetchFromGitHub { - owner = "jcollard"; - repo = "elm-mode"; - rev = "29f50a940113d793a21998f3bb414fdd9b0c5daa"; - sha256 = "02c7xl9w81140l7p9kywr5qwsdyv92nxdhzqcxjk0r09x7s0cvsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1a4d786b137f61ed3a1dd4ec236d0db120e571/recipes/elm-mode"; - sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; - name = "recipe"; - }; - packageRequires = [ emacs f let-alist s ]; - meta = { - homepage = "https://melpa.org/#/elm-mode"; - license = lib.licenses.free; - }; - }) {}; - elmacro = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "elmacro"; - ename = "elmacro"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "elmacro"; - rev = "9ed19a362b63d9c7436a78feb91bc694194cfefe"; - sha256 = "00qqa9p9z50gxna4qrsvph4nj41gldl1qj210ywk3lgwn0jjm0k9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/566cc5bc0f71c5a4191ad93b917dc268f6e1a2da/recipes/elmacro"; - sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/elmacro"; - license = lib.licenses.free; - }; - }) {}; - elmine = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elmine"; - ename = "elmine"; - version = "0.3"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "elmine"; - rev = "091f61c70c9e7630a74b7b127488051d143a35e7"; - sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elmine"; - sha256 = "1xkx1wwrzd2dl13z8n4qh3gl202j0i9crab5b3788z8mq0g4v4bn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elmine"; - license = lib.licenses.free; - }; - }) {}; - elpa-audit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-audit"; - ename = "elpa-audit"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "elpa-audit"; - rev = "a7a1806278c73ea6cb6d235714e7bc8088971df5"; - sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/elpa-audit"; - sha256 = "18a8n22g53d8fxzr3snb2px28gvxbkx44grrx8lywaprz1f1lwdi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/elpa-audit"; - license = lib.licenses.free; - }; - }) {}; - elpa-clone = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-clone"; - ename = "elpa-clone"; - version = "0.0.7"; - src = fetchFromGitHub { - owner = "dochang"; - repo = "elpa-clone"; - rev = "5dddbab4c27ec6aca541a1f8e9792617f10fc325"; - sha256 = "17lbdgwg97x8q8dbghylr2j0nwb72mpfl679qb0pl9184ih27qfc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11861edd9c7f9deebd44fd1f8ef648e7a04caf2b/recipes/elpa-clone"; - sha256 = "172gpmpwf75y41n3v05l47w34x83vy63bqk97fd8a6b4dkj91lqa"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/elpa-clone"; - license = lib.licenses.free; - }; - }) {}; - elpa-mirror = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpa-mirror"; - ename = "elpa-mirror"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "elpa-mirror"; - rev = "83a38b5721c459d311833522903de96f874e1a4e"; - sha256 = "0j2nk1nhbihfqajkmzp3501mhv5617qhb7qbj46qz8azs8a1dvri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d64ce7042c45f29fb394be25ce415912182bac8b/recipes/elpa-mirror"; - sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elpa-mirror"; - license = lib.licenses.free; - }; - }) {}; - elpher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elpher"; - ename = "elpher"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "tgvaughan"; - repo = "elpher"; - rev = "b3f3e8e887f515cff6807b89fe3170b2c83b5333"; - sha256 = "1y6awpm0ck1b3kcpb5pfxf3la9hlalpk2k9c3g1b2kmll7d63z15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df2162816fed4d5da7ee5adafbf547eed8815418/recipes/elpher"; - sha256 = "1csy26ra6kgm2rnf1s6bj254r18zkaf6y7kb3rrjm1msw3vjvvr2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elpher"; - license = lib.licenses.free; - }; - }) {}; - elpy = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , find-file-in-project - , highlight-indentation - , lib - , melpaBuild - , pyvenv - , s - , yasnippet }: - melpaBuild { - pname = "elpy"; - ename = "elpy"; - version = "1.29.1"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "elpy"; - rev = "d98ee26f564e33c9acf233862734e72200bd3703"; - sha256 = "19sd5p03rkp5yibq1ilwisq8jlma02ks2kdc3swy6r27n4hy90xf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d8fcd8745bb15402c9f3b6f4573ea151415237a/recipes/elpy"; - sha256 = "1ri3dwnkw005plj1g5grmmq9np41sqk4s2v18pwsvr18ysnq6nnr"; - name = "recipe"; - }; - packageRequires = [ - company - emacs - find-file-in-project - highlight-indentation - pyvenv - s - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/elpy"; - license = lib.licenses.free; - }; - }) {}; - elscreen = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen"; - ename = "elscreen"; - version = "20180321"; - src = fetchFromGitHub { - owner = "knu"; - repo = "elscreen"; - rev = "cc58337faf5ba1eae7e87f75f6ff3758675688f2"; - sha256 = "15kffci7qlhjwz1rlr0zg0z9rq0vlsxy295dvg96wiiz4fvs4jk2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e6140694c1dea0a573586d23d1f63d46c9b22936/recipes/elscreen"; - sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; - name = "recipe"; - }; - 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"; - ename = "elscreen-fr"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "elscreen-fr"; - rev = "b9c11f80d277086d5d5bf88623e15fc7adbbbe3c"; - sha256 = "1dz8jqd2agh06hya59vbybrmgyhyz2rk6c9panrm49w37v0bwksb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18730986df5eb9816eec7ad479abe1e338d3c66f/recipes/elscreen-fr"; - sha256 = "1kmga1zz9mb3hxd2sxja2vz45pix5a52yl0g9z4vmak32x9rgqrm"; - name = "recipe"; - }; - packageRequires = [ elscreen seq ]; - meta = { - homepage = "https://melpa.org/#/elscreen-fr"; - license = lib.licenses.free; - }; - }) {}; - elscreen-mew = callPackage ({ elscreen - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-mew"; - ename = "elscreen-mew"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "elscreen-mew"; - rev = "89871fad690ae161dc076e16ef481b1965612077"; - sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47404ea3cfb591b780ca7e31095951a708b0a6b7/recipes/elscreen-mew"; - sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; - name = "recipe"; - }; - packageRequires = [ elscreen ]; - meta = { - homepage = "https://melpa.org/#/elscreen-mew"; - license = lib.licenses.free; - }; - }) {}; - elscreen-tab = callPackage ({ dash - , elscreen - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elscreen-tab"; - ename = "elscreen-tab"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "aki-s"; - repo = "elscreen-tab"; - rev = "29d7a65c3e134dd476049c9aebc8d029238e71f7"; - sha256 = "0303i61m1qg65d3i3hsy7pzdhw0icpx3im99qkfmy6lxi4h9nd0p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06a8348c6911936e16a98cf216578ea148e20e5d/recipes/elscreen-tab"; - sha256 = "18krbs462cwi3pf72kn1zf1jf4gv9n3ffdg4v5bgb19i69sq7spi"; - name = "recipe"; - }; - packageRequires = [ dash elscreen emacs ]; - meta = { - homepage = "https://melpa.org/#/elscreen-tab"; - license = lib.licenses.free; - }; - }) {}; - elwm = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elwm"; - ename = "elwm"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "elwm"; - rev = "c33b183f006ad476c3a44dab316f580f8b369930"; - sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0eb45a6141b797243973695be4c0582c9ad6965d/recipes/elwm"; - sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/elwm"; - license = lib.licenses.free; - }; - }) {}; - elx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "elx"; - ename = "elx"; - version = "1.2.6"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "elx"; - rev = "c554db7e7f2c0c8a503def7739b8205193ba821f"; - sha256 = "07i739v2w5dbhyfhvfw4phcrdk5sf7ncsd47y8hkf5m4zgw4kw4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/elx"; - sha256 = "008nwa2gn3d2ayr8023pxyvph52gh9m56f77h41hp8hcw6hbdwrz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/elx"; - license = lib.licenses.free; - }; - }) {}; - emacs-setup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacs-setup"; - ename = "emacs-setup"; - version = "1.0"; - src = fetchFromGitHub { - owner = "echosa"; - repo = "emacs-setup"; - rev = "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2"; - sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abb7101b2d48af56af09d1dc85c540300dba7b3c/recipes/emacs-setup"; - sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacs-setup"; - license = lib.licenses.free; - }; - }) {}; - emacsagist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsagist"; - ename = "emacsagist"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "echosa"; - repo = "emacsagist"; - rev = "539b9c4c0652d793391135ba1fc2e503dbb7deba"; - sha256 = "0n5cpmbyf8mhq03ikhzbycjwkxv3fmjwq1a9zvv3z9ik8yxnbw99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/07612d46faebb28e1eeb8ddae2ac20e2dc0175f6/recipes/emacsagist"; - sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/emacsagist"; - license = lib.licenses.free; - }; - }) {}; - emacsc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsc"; - ename = "emacsc"; - version = "1.2.20131027"; - src = fetchFromGitHub { - owner = "knu"; - repo = "emacsc"; - rev = "69607bdc3a0c070e924a3bcac93180f917992368"; - sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/emacsc"; - sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacsc"; - license = lib.licenses.free; - }; - }) {}; - emacsql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql"; - ename = "emacsql"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "8c5f095458aa37e4146b80d9319ee63571734127"; - sha256 = "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c3b6175b5c64f03b0b9dfdc10f393081d681309/recipes/emacsql"; - sha256 = "0c2d0kymzr53wh87fq1wy2x5ahfsymz0cw8qbrqx0k613l3mpr38"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/emacsql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-mysql = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-mysql"; - ename = "emacsql-mysql"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "ea613c5191dcaa2583d3f7d5737b31bb88a07ed5"; - sha256 = "1i733wjvpd6lhdnwr8w2k0c8s7v7r9ivsmxxgdndlhdnkm17ca5j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-mysql"; - sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-mysql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-psql = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-psql"; - ename = "emacsql-psql"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "ea613c5191dcaa2583d3f7d5737b31bb88a07ed5"; - sha256 = "1i733wjvpd6lhdnwr8w2k0c8s7v7r9ivsmxxgdndlhdnkm17ca5j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cc47c05fb0d282531c9560252090586e9f6196e/recipes/emacsql-psql"; - sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-psql"; - license = lib.licenses.free; - }; - }) {}; - emacsql-sqlite = callPackage ({ emacs - , emacsql - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsql-sqlite"; - ename = "emacsql-sqlite"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacsql"; - rev = "62d39157370219a1680265fa593f90ccd51457da"; - sha256 = "0ghl3g8n8wlw8rnmgbivlrm99wcwn93bv8flyalzs0z9j7p7fdq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3cfa28c7314fa57fa9a3aaaadf9ef83f8ae541a9/recipes/emacsql-sqlite"; - sha256 = "1y81nabzzb9f7b8azb9giy23ckywcbrrg4b88gw5qyjizbb3h70x"; - name = "recipe"; - }; - packageRequires = [ emacs emacsql ]; - meta = { - homepage = "https://melpa.org/#/emacsql-sqlite"; - license = lib.licenses.free; - }; - }) {}; - emacsshot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emacsshot"; - ename = "emacsshot"; - version = "0.4"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "emacsshot"; - rev = "eeb4bf9cc9d15250fc3c080492dd147ecd378bce"; - sha256 = "1wqxhdhblf0v32sk1q92hnsgzjl13vvwsh9l35mkfn8563ih6il5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efdd85accc6053f92efcbfdb7ddc37b23a07a3b0/recipes/emacsshot"; - sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emacsshot"; - license = lib.licenses.free; - }; - }) {}; - emamux = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emamux"; - ename = "emamux"; - version = "0.14"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-emamux"; - rev = "573dd1cf18584a1fd240efb16c7726b6fd790b73"; - sha256 = "19y69qw79miim9cz5ji54gwspjkcp9g2c1xr5s7jj2fiabnxax6b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6de1ed3dfccb9f7e7b8586e8334af472a4988840/recipes/emamux"; - sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/emamux"; - license = lib.licenses.free; - }; - }) {}; - emaps = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emaps"; - ename = "emaps"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "emaps"; - rev = "823b8f72e6459c9f1a5dd62451ee4005ef71d955"; - sha256 = "1g9637j8f65q3l6k4aw5p847m891irh74kg3pa2p9w0ppsa6n3jm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4faeda02aabc0b6c5003cdf5d1fdfca0fd71b0d7/recipes/emaps"; - sha256 = "151rh6lyqi0ps2w022shzjj67nkg6y4m1nfj90qyc7jgl64qb9qw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emaps"; - license = lib.licenses.free; - }; - }) {}; - embrace = callPackage ({ cl-lib ? null - , expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "embrace"; - ename = "embrace"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "embrace.el"; - rev = "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2"; - sha256 = "1m0qyipkp5ydgcav8d0m58fbj1gilipbj7g8mg40iajr8wfqcjdc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8f07e3b5ba4ec4b0b79fba5a2cca5a3986218b6/recipes/embrace"; - sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; - name = "recipe"; - }; - packageRequires = [ cl-lib expand-region ]; - meta = { - homepage = "https://melpa.org/#/embrace"; - license = lib.licenses.free; - }; - }) {}; - emidje = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "emidje"; - ename = "emidje"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "nubank"; - repo = "emidje"; - rev = "e3ab498a21cefae2690b9bcf3f125517a6b984cc"; - sha256 = "004f4dqcw6m473hxj0zll9nwl4iq652d1fymcn2id0p42l7cf2kv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d64b3b42b4b9acd3e9d84921df287f3217db83e/recipes/emidje"; - sha256 = "1p2aa4wl2465gm7ljgr5lbvxfgx0g1w1170zdv3596hi07mccabs"; - name = "recipe"; - }; - packageRequires = [ cider emacs seq ]; - meta = { - homepage = "https://melpa.org/#/emidje"; - license = lib.licenses.free; - }; - }) {}; - emmet-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emmet-mode"; - ename = "emmet-mode"; - version = "1.0.8"; - src = fetchFromGitHub { - owner = "smihica"; - repo = "emmet-mode"; - rev = "bf76d717c60f33d223cdac35513105e9f9244885"; - sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/emmet-mode"; - sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emmet-mode"; - license = lib.licenses.free; - }; - }) {}; - emms = callPackage ({ cl-lib ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms"; - ename = "emms"; - version = "5.2"; - src = fetchgit { - url = "https://git.savannah.gnu.org/git/emms.git"; - rev = "2253146e5607e12f62b0c1c474fded1219da2d5d"; - sha256 = "0r0ai788mn5f3kf5wrp6jywncl2z3gpjif41pm5m0892y7l0vh9i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/emms"; - sha256 = "1xpry8h96gvjnc0v8x0vk5dnmlq1r7m3ljpampdwv9pfwl95fh94"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/emms"; - license = lib.licenses.free; - }; - }) {}; - emms-mode-line-cycle = callPackage ({ emacs - , emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-mode-line-cycle"; - ename = "emms-mode-line-cycle"; - version = "0.2.5"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "emms-mode-line-cycle"; - rev = "2c2f395e484a1d345050ddd61ff5fab71a92a6bc"; - sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dab676acd774616a32a0373f30647f3cb4522afc/recipes/emms-mode-line-cycle"; - sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; - name = "recipe"; - }; - packageRequires = [ emacs emms ]; - meta = { - homepage = "https://melpa.org/#/emms-mode-line-cycle"; - license = lib.licenses.free; - }; - }) {}; - emms-player-simple-mpv = callPackage ({ cl-lib ? null - , emacs - , emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-player-simple-mpv"; - ename = "emms-player-simple-mpv"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "momomo5717"; - repo = "emms-player-simple-mpv"; - rev = "bcc056364df5f405716006a8b7bb90102a57f62f"; - sha256 = "0kz31qsn3nrpi8r31nlxlkkkah0qcdkq9a9i9ypv4ky7pvnzx6m5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/emms-player-simple-mpv"; - sha256 = "1lv1rhd5vya068mnnaysfh56raar79hf2g413ysrk3yhyajk6316"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs emms ]; - meta = { - homepage = "https://melpa.org/#/emms-player-simple-mpv"; - license = lib.licenses.free; - }; - }) {}; - emms-state = callPackage ({ emms - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emms-state"; - ename = "emms-state"; - version = "0.2"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "emms-state.el"; - rev = "77930300222333b71eafd495cc1fee3a3585eb23"; - sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f2798e22c6ccbadf73e65d8a8d901e47f55cb83/recipes/emms-state"; - sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; - name = "recipe"; - }; - packageRequires = [ emms ]; - meta = { - homepage = "https://melpa.org/#/emms-state"; - license = lib.licenses.free; - }; - }) {}; - emoji-cheat-sheet-plus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-cheat-sheet-plus"; - ename = "emoji-cheat-sheet-plus"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "emacs-emoji-cheat-sheet-plus"; - rev = "96a003127d646a2683d81ca906a17eace0a6413e"; - sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ffbfae9577673ef8d50b55624f94288e315deba4/recipes/emoji-cheat-sheet-plus"; - sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/emoji-cheat-sheet-plus"; - license = lib.licenses.free; - }; - }) {}; - emoji-fontset = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "emoji-fontset"; - ename = "emoji-fontset"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emoji-fontset.el"; - rev = "e460c9a08e48ec4103e38a7a04acae20880149a9"; - sha256 = "0xdlqsrwdf0smi5z9rjj46nwrrfpl0gzanf0jmdg8zzn62l6ldck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60df435eb82fcc9a8a02a0a271bb6a2d5a161bc4/recipes/emoji-fontset"; - sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/emoji-fontset"; - license = lib.licenses.free; - }; - }) {}; - emojify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "emojify"; - ename = "emojify"; - version = "1.2"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "emacs-emojify"; - rev = "302d16e9bac72faf94984e0c48ecd0e4b8d66738"; - sha256 = "1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/488d2751b5fd3bf00f5a6f0545530f44563b86d7/recipes/emojify"; - sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; - name = "recipe"; - }; - packageRequires = [ emacs ht seq ]; - meta = { - homepage = "https://melpa.org/#/emojify"; - license = lib.licenses.free; - }; - }) {}; - emr = callPackage ({ cl-lib ? null - , clang-format - , dash - , emacs - , fetchFromGitHub - , fetchurl - , iedit - , lib - , list-utils - , melpaBuild - , paredit - , popup - , projectile - , s }: - melpaBuild { - pname = "emr"; - ename = "emr"; - version = "0.4"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "emacs-refactor"; - rev = "d7ffe197a617099f673bf3c5f9eb067b8037c8eb"; - sha256 = "19xz5srffyy7kfpa11sqzfb775vkna486q8kdmh4m16fs2am48zx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/emr"; - sha256 = "02a7yzv6vxdazi26wk1ijadrjffd4iaf1abhpv642xib86pgpfd6"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - clang-format - dash - emacs - iedit - list-utils - paredit - popup - projectile - s - ]; - meta = { - homepage = "https://melpa.org/#/emr"; - license = lib.licenses.free; - }; - }) {}; - engine-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "engine-mode"; - ename = "engine-mode"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "hrs"; - repo = "engine-mode"; - rev = "243d04691475b47a4453ad7106d8268ca14d9f28"; - sha256 = "02xas46nl28mascqsyr1zcd4hn15bh0fjv2xlxv1kmrj0pis94ml"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea1b5dfb6628cf17e77369f25341835aad425f54/recipes/engine-mode"; - sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/engine-mode"; - license = lib.licenses.free; - }; - }) {}; - enh-ruby-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enh-ruby-mode"; - ename = "enh-ruby-mode"; - version = "20190408"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "enhanced-ruby-mode"; - rev = "5c5ea7532bfff3c12c2a554d68c5def1dd984a40"; - sha256 = "1asr52rg3230avq2bwl06nnrgkym98i7gas0xrs2vqyyaxbcpb1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd1ac1ce69b77b11f34c4175611a852e7ec0806c/recipes/enh-ruby-mode"; - sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/enh-ruby-mode"; - license = lib.licenses.free; - }; - }) {}; - enlive = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enlive"; - ename = "enlive"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "enlive"; - rev = "60facaf8bc48b660d209551c0ce4d17e5c907ab8"; - sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/388fa2580e687d9608b11cdc069841831b414b29/recipes/enlive"; - sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/enlive"; - license = lib.licenses.free; - }; - }) {}; - enotify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "enotify"; - ename = "enotify"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "enotify"; - rev = "6bbd67c5e469d5613d9a8d60b0e13612df265c35"; - sha256 = "1yxw1x4xixxj16pm4a4vk062hr50aaqidh91aljrx0jhv0akybdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/enotify"; - sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/enotify"; - license = lib.licenses.free; - }; - }) {}; - ensime = callPackage ({ company - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , s - , sbt-mode - , scala-mode - , yasnippet }: - melpaBuild { - pname = "ensime"; - ename = "ensime"; - version = "2.0.2"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "ensime-emacs"; - rev = "3d3ab18436ad6089496b3bce1d49c64a86965431"; - sha256 = "0p821zwpiznjh736af5avnx9abssx0zbb9xhs74yhh1mcdi1whq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/502faab70af713f50dd8952be4f7a5131075e78e/recipes/ensime"; - sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; - name = "recipe"; - }; - packageRequires = [ - company - dash - popup - s - sbt-mode - scala-mode - yasnippet - ]; - meta = { - homepage = "https://melpa.org/#/ensime"; - license = lib.licenses.free; - }; - }) {}; - eopengrok = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , s }: - melpaBuild { - pname = "eopengrok"; - ename = "eopengrok"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "youngker"; - repo = "eopengrok.el"; - rev = "7c61cb06972708665f8e2921e6b9e7234e75cc24"; - sha256 = "1r70k8ckfwdhya0zb2w5whpqvl8jx6w7i04vws99rzdw08ashack"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b87ea158a6fdbc6b4e40fd7c0f6814d135f8545/recipes/eopengrok"; - sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash magit s ]; - meta = { - homepage = "https://melpa.org/#/eopengrok"; - license = lib.licenses.free; - }; - }) {}; - epc = callPackage ({ concurrent - , ctable - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epc"; - ename = "epc"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-epc"; - rev = "16e975efad63093a1f1f7b59f8fda5a3cf34f2a0"; - sha256 = "0smk23f23jdnvmrisj5d4isna36sr15bbvh53dq5261y8ddxlkvw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc29a8d518ce7a584277089bd4654f52ac0f358/recipes/epc"; - sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; - name = "recipe"; - }; - packageRequires = [ concurrent ctable ]; - meta = { - homepage = "https://melpa.org/#/epc"; - license = lib.licenses.free; - }; - }) {}; - epkg = callPackage ({ closql - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epkg"; - ename = "epkg"; - version = "3.2.1"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "epkg"; - rev = "1aaa64402bf91575ee81bf240c4c52320f68088d"; - sha256 = "0ij44yp72y1flcjp2q6yfbrnr4bnzjflgcsksl3djr9nhb73cd5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2df16abf56e53d4a1cc267a78797419520ff8a1c/recipes/epkg"; - sha256 = "0vvkjjaffvwvsvld3c6hwd18icmp2lc7f9yqvclifpadi98dhpww"; - name = "recipe"; - }; - packageRequires = [ closql dash emacs ]; - meta = { - homepage = "https://melpa.org/#/epkg"; - license = lib.licenses.free; - }; - }) {}; - epl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epl"; - ename = "epl"; - version = "0.9"; - src = fetchFromGitHub { - owner = "cask"; - repo = "epl"; - rev = "fd906d3f92d58ecf24169055744409886ceb06ce"; - sha256 = "0d3z5z90ln8ipk1yds1n1p8fj9yyh2kpspqjs7agl38indra3nb4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c6cf24e86d8865bd2e4b405466118de1894851f/recipes/epl"; - sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/epl"; - license = lib.licenses.free; - }; - }) {}; - epm = callPackage ({ emacs - , epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "epm"; - ename = "epm"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "epm"; - rev = "6375ddbf93c5f25647f6ebb25b54045b3c93a5be"; - sha256 = "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0/recipes/epm"; - sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08"; - name = "recipe"; - }; - packageRequires = [ emacs epl ]; - meta = { - homepage = "https://melpa.org/#/epm"; - license = lib.licenses.free; - }; - }) {}; - erc-crypt = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-crypt"; - ename = "erc-crypt"; - version = "1.7"; - src = fetchFromGitHub { - owner = "atomontage"; - repo = "erc-crypt"; - rev = "1c8b1caed52a5994aab8bd4dd196881ed537d3aa"; - sha256 = "0w1b4pqipzdlkak9807k8xgzlc6vvni86ab92snm07909kby9xd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a71b46c0370d2ed25aa3f39983048a04576ad5/recipes/erc-crypt"; - sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/erc-crypt"; - license = lib.licenses.free; - }; - }) {}; - erc-hl-nicks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-hl-nicks"; - ename = "erc-hl-nicks"; - version = "1.3.3"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "erc-hl-nicks"; - rev = "756c4438a8245ccd3e389bf6c9850ee8453783ec"; - sha256 = "0c82rxpl5v7bbxirf1ksg06xv5xcddh8nkrpj7i6nvfarwdfnk4f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/erc-hl-nicks"; - sha256 = "03hxsknf31vrja2amfa317ig4c34i5jpdq35zczrp00ap0s31nbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-hl-nicks"; - license = lib.licenses.free; - }; - }) {}; - erc-scrolltoplace = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , switch-buffer-functions }: - melpaBuild { - pname = "erc-scrolltoplace"; - ename = "erc-scrolltoplace"; - version = "0.1.0"; - src = fetchFromGitLab { - owner = "jgkamat"; - repo = "erc-scrolltoplace"; - rev = "7539654e4a72edcc5bba07a101961e5bf0a9d449"; - sha256 = "11zpqwh1mlfifbgnvhc63bvnhg340jgxssm3m43hr1sxsyb52lh6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/848cb17d871287c401496e4483e400b44696e89d/recipes/erc-scrolltoplace"; - sha256 = "0632i1p26z3f633iinkqka0x2dd55x02xidk9qr66jh0dzfs6q3i"; - name = "recipe"; - }; - packageRequires = [ emacs switch-buffer-functions ]; - meta = { - homepage = "https://melpa.org/#/erc-scrolltoplace"; - license = lib.licenses.free; - }; - }) {}; - erc-twitch = callPackage ({ erc ? null - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-twitch"; - ename = "erc-twitch"; - version = "1.1"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "erc-twitch"; - rev = "6938191c787d66fef4c13674e0a98a9d64eff364"; - sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46f8640b24bade45cc729eeb370adf959f99526f/recipes/erc-twitch"; - sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; - name = "recipe"; - }; - packageRequires = [ erc json ]; - meta = { - homepage = "https://melpa.org/#/erc-twitch"; - license = lib.licenses.free; - }; - }) {}; - erc-youtube = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erc-youtube"; - ename = "erc-youtube"; - version = "0.1"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "erc-youtube.el"; - rev = "97054ba8475b442e2aa81e5a291f668b7f28697f"; - sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a80ee9617a30a8ad1d457a0b0c7f35e6ec1c0bb2/recipes/erc-youtube"; - sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erc-youtube"; - license = lib.licenses.free; - }; - }) {}; - ercn = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ercn"; - ename = "ercn"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "ercn"; - rev = "73b00dadf83b97dd9edd8381a4b27f583c08b7f6"; - sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a12f264653d79224adeb5d0ae76518dc408ff1e9/recipes/ercn"; - sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ercn"; - license = lib.licenses.free; - }; - }) {}; - eredis = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eredis"; - ename = "eredis"; - version = "0.9.6"; - src = fetchFromGitHub { - owner = "justinhj"; - repo = "eredis"; - rev = "cfbfc25832f6fbc507bdd56b02e3a0b851a3c368"; - sha256 = "1f2f57c0bz3c6p11hr69aar6z5gg33zvfvsm76ma11vx21qilz6i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63f06713d06911f836fe2a4bf199b0794ac89cf0/recipes/eredis"; - sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/eredis"; - license = lib.licenses.free; - }; - }) {}; - erefactor = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erefactor"; - ename = "erefactor"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-erefactor"; - rev = "fde3fd42c815c76e8015f69518a92f6bfcfde990"; - sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18063e16a6f556b1871e1a5b74e353a85a794e63/recipes/erefactor"; - sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/erefactor"; - license = lib.licenses.free; - }; - }) {}; - ergoemacs-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , undo-tree }: - melpaBuild { - pname = "ergoemacs-mode"; - ename = "ergoemacs-mode"; - version = "5.16.10.12"; - src = fetchFromGitHub { - owner = "ergoemacs"; - repo = "ergoemacs-mode"; - rev = "ac70b2563fb6e3d69ea382fddc87b5721c20c292"; - sha256 = "0ydxyylijdd6da4n9by441352shphrpfyk2631ld5aq3gz27z9gi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02920517987c7fc698de9952cbb09dfd41517c40/recipes/ergoemacs-mode"; - sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs undo-tree ]; - meta = { - homepage = "https://melpa.org/#/ergoemacs-mode"; - license = lib.licenses.free; - }; - }) {}; - erlang = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erlang"; - ename = "erlang"; - version = "22.0.2"; - src = fetchFromGitHub { - owner = "erlang"; - repo = "otp"; - rev = "e3ca92be9f1945f50ef84631a826b431bad2bfe6"; - sha256 = "14sbwlvn4nb33xrss9x3dn74nkzmr1gss029aycfd8sjclyzv1zn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9cd526f43981e0826af59cdc4bb702f644781d9/recipes/erlang"; - sha256 = "1cs768xxbyrr78ln50k4yknmpbcc1iplws3k07r0gx5f3ca73iaq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/erlang"; - license = lib.licenses.free; - }; - }) {}; - erlstack-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "erlstack-mode"; - ename = "erlstack-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "k32"; - repo = "erlstack-mode"; - rev = "07398e929978b0eaf2bf119e97cba7b9f9e90d2a"; - sha256 = "1gf9k3z9v1s7d01s551ys87j05xh3lpnvv86dq86rz8xinc09kac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ee61c1c5f116082b37fb13d15052ed9bbbc1dac/recipes/erlstack-mode"; - sha256 = "0b7mj0rs8k3hdv4v3v5vmdqs0y26mss7dzc0sjjxj4d095yddqqf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/erlstack-mode"; - license = lib.licenses.free; - }; - }) {}; - ert-async = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ert-async"; - ename = "ert-async"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ert-async.el"; - rev = "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526"; - sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ec669e3fc73b0b499b84cec87d0f8621274732e/recipes/ert-async"; - sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ert-async"; - license = lib.licenses.free; - }; - }) {}; - ert-junit = callPackage ({ emacs - , ert ? null - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ert-junit"; - ename = "ert-junit"; - version = "0.4.0"; - src = fetchgit { - url = "https://bitbucket.org/olanilsson/ert-junit"; - rev = "b0649e94460aff5176dee5b33f28946bffb602d5"; - sha256 = "0hj85hz4s1q4dalinhgahn8jn97s2pdpv41d9qqbvbdzwhhw2mrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27c627eacab54896a1363dbabc56250a65343dd8/recipes/ert-junit"; - sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; - name = "recipe"; - }; - packageRequires = [ emacs ert ]; - meta = { - homepage = "https://melpa.org/#/ert-junit"; - license = lib.licenses.free; - }; - }) {}; - ert-runner = callPackage ({ ansi - , commander - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "ert-runner"; - ename = "ert-runner"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ert-runner.el"; - rev = "00056c37817f15b1870ccedd13cedf102e3194dd"; - sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a1acc68f296e80b6ed99a1783e9f67be54ffac9/recipes/ert-runner"; - sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash f s shut-up ]; - meta = { - homepage = "https://melpa.org/#/ert-runner"; - license = lib.licenses.free; - }; - }) {}; - es-lib = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "es-lib"; - ename = "es-lib"; - version = "0.4"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "es-lib"; - rev = "753b27363e39c10edc9e4e452bdbbbe4d190df4a"; - sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f10631b740eea56e7209d7e84f0da8613274ef1d/recipes/es-lib"; - sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/es-lib"; - license = lib.licenses.free; - }; - }) {}; - es-mode = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , spark }: - melpaBuild { - pname = "es-mode"; - ename = "es-mode"; - version = "4.3.0"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "es-mode"; - rev = "996730ebce57d810d2c275c7fadb11c2b1134dea"; - sha256 = "1qhfnd5anp5qrmravv7ks5ix763xnki2f5jwcyj70qyxwr0l60cg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9912193f73c4beae03b295822bf41cb2298756e2/recipes/es-mode"; - sha256 = "0zp84k5idqkrvc9qci49ains0b86kpk97lk1jcwyj75s4xsfyp1y"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash spark ]; - meta = { - homepage = "https://melpa.org/#/es-mode"; - license = lib.licenses.free; - }; - }) {}; - es-windows = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "es-windows"; - ename = "es-windows"; - version = "0.3"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "es-windows"; - rev = "7ebe6c6e0831373847d7adbedeaa2e506b54b2af"; - sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/944d4cd54e040d2a58e1778cb282727deee83f92/recipes/es-windows"; - sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/es-windows"; - license = lib.licenses.free; - }; - }) {}; - esa = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esa"; - ename = "esa"; - version = "0.8.13"; - src = fetchFromGitHub { - owner = "nabinno"; - repo = "esa.el"; - rev = "0f69f9f45ac15018c48853509ac38e68286f9c0e"; - sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/esa"; - sha256 = "0y4mbq0z6vp0faxq6dq5hhxnsbi685amxqbvpxkxahl1nckp76lb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/esa"; - license = lib.licenses.free; - }; - }) {}; - esh-autosuggest = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esh-autosuggest"; - ename = "esh-autosuggest"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "esh-autosuggest"; - rev = "a6d5eb3337d010bd2a2d677ff304cd53adc291a0"; - sha256 = "0l2nnlr3b6df1xn0qjf5d5ryy1wcs1jczyfy795vsasd5gm3g0xh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc3776068d6928fc1661a27cccaeb8fb85577099/recipes/esh-autosuggest"; - sha256 = "1rcng1dhy4yw95qg909ck33svpdxhv9v5k7226d29gp4y54dwyrx"; - name = "recipe"; - }; - packageRequires = [ company emacs ]; - meta = { - homepage = "https://melpa.org/#/esh-autosuggest"; - license = lib.licenses.free; - }; - }) {}; - esh-help = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esh-help"; - ename = "esh-help"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "tom-tan"; - repo = "esh-help"; - rev = "8a8a9d4d9852f8bd96da3b94e95ff57097ac8ec6"; - sha256 = "02fybhmqm2qmy5qdig7xvwxazqi499pw32kh5mrsbdr14srg9fhs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab94c66d1ed7cfdbc437ee239984ba70408fd28a/recipes/esh-help"; - sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/esh-help"; - license = lib.licenses.free; - }; - }) {}; - eshell-autojump = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-autojump"; - ename = "eshell-autojump"; - version = "0.2"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "eshell-autojump"; - rev = "c0866d7f2789831665ebb01b812bae89d085bff0"; - sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68bd1a8ec9d17eff2d23e15b3686f7c0b8723126/recipes/eshell-autojump"; - sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eshell-autojump"; - license = lib.licenses.free; - }; - }) {}; - eshell-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-bookmark"; - ename = "eshell-bookmark"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "eshell-bookmark"; - rev = "deda4b848b2fb979dbe73ead2cb866610e3596ed"; - sha256 = "14dmsnixf9vqdhsixw693sml0fn80zcf0b37z049fb40cmppqxdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7bf4702a907727990fcc676980f2b219e22ab0c/recipes/eshell-bookmark"; - sha256 = "1bybxlq1h5chrjxqjb23kq8dmgw2xrjwkrnvpbphblqzpdy5ck0s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-bookmark"; - license = lib.licenses.free; - }; - }) {}; - eshell-did-you-mean = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-did-you-mean"; - ename = "eshell-did-you-mean"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-did-you-mean"; - rev = "7cb6ef8e2274d0a50a9e114d412307a6543533d5"; - sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7649eca21a21ddbbc7131f29cbbd91a00a84060/recipes/eshell-did-you-mean"; - sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-did-you-mean"; - license = lib.licenses.free; - }; - }) {}; - eshell-git-prompt = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-git-prompt"; - ename = "eshell-git-prompt"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-git-prompt"; - rev = "b6bb2d7bd4e393b4170b29891cfefb72ae020aab"; - sha256 = "02i00an9wa8ns66xq900la68m7pd4hwv95g83cvf22bypivx7p2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5272280b19579c302ba41b53c77e42bc5e8ccbda/recipes/eshell-git-prompt"; - sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-git-prompt"; - license = lib.licenses.free; - }; - }) {}; - eshell-prompt-extras = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-prompt-extras"; - ename = "eshell-prompt-extras"; - version = "0.96"; - src = fetchFromGitHub { - owner = "kaihaosw"; - repo = "eshell-prompt-extras"; - rev = "7581c109673c40aceff278cd524273f50ffe170d"; - sha256 = "1m1jisjz974cfz89i6l2zq666yzhsqipc6dmqlrm8mw81fxsfm1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/eshell-prompt-extras"; - sha256 = "0zkdb9a8dibk832b5hzb6wjich3l0lah5p64805rgd4qskzj10gx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eshell-prompt-extras"; - license = lib.licenses.free; - }; - }) {}; - eshell-up = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-up"; - ename = "eshell-up"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "eshell-up"; - rev = "653121392acd607d5dfbca0832927e06806a2d39"; - sha256 = "05mfwp8zira7p2ip1rmqa08arlbkv7w1mbx7s5saj655scg7jaq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eshell-up"; - sha256 = "1jyaaw950isissjjgqflfn2bllgdfcyphpbi7il06mv9p0dzpwvy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/eshell-up"; - license = lib.licenses.free; - }; - }) {}; - eshell-z = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eshell-z"; - ename = "eshell-z"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "eshell-z"; - rev = "96ec3f5f8a801c893d2c6a6b140e333ef2bfd8b5"; - sha256 = "1aac4m814jgxwpz7lbyx5r4z5dmawp4sk7pwbx0zqpnbcsaq5wwc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8079cecaa59ad2ef22812960838123effc46a9b3/recipes/eshell-z"; - sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/eshell-z"; - license = lib.licenses.free; - }; - }) {}; - eslint-fix = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eslint-fix"; - ename = "eslint-fix"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "codesuki"; - repo = "eslint-fix"; - rev = "be90d1e78b1dfd43b6b3b1c06868539e2ac27d3a"; - sha256 = "1l7pm0ywjby0giilyn6qsz1zh54sgmvmii7y9jhrva13c5kgg9an"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eslint-fix"; - sha256 = "0ry271jlv95nhdqx6qxmvkpa10lpwkg1q6asnliviwplq2mxw2da"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eslint-fix"; - license = lib.licenses.free; - }; - }) {}; - eslintd-fix = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eslintd-fix"; - ename = "eslintd-fix"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "eslintd-fix"; - rev = "97e8aa9b106e3e4b3a44c775ca972bdd2feda9ec"; - sha256 = "1g6bv58m1052x2f5ffs17ryyqv0ay8vii5bwqs7dyfhlpppsn6c8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c72d2b3ee9b8066d51d09e165e58e9846ca879cc/recipes/eslintd-fix"; - sha256 = "0lv4xpp9bm1yyn9mj7hpgw1v46yyxr0nlwggbav78jbg4v7ai04v"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eslintd-fix"; - license = lib.licenses.free; - }; - }) {}; - espuds = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "espuds"; - ename = "espuds"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "ecukes"; - repo = "espuds"; - rev = "1405972873339e056517217136de4ad3202d744a"; - sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14cf66e6929db2a0f377612e786aaed9eb12b799/recipes/espuds"; - sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/espuds"; - license = lib.licenses.free; - }; - }) {}; - ess = callPackage ({ fetchFromGitHub - , fetchurl - , julia-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ess"; - ename = "ess"; - version = "18.10.2"; - src = fetchFromGitHub { - owner = "emacs-ess"; - repo = "ESS"; - rev = "d4cd65da6dbfabf37fc6c7a4c49fb49cf289a11c"; - sha256 = "1avhb5mr8yyaa8gqccf8ghbl36iff61ha6444myvgqszd2a6pd8q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/156a6fa9e6ee16174d215c1dcd524aff847b3bf0/recipes/ess"; - sha256 = "1psqrw9k7d2ha8zid2mkc6bgcyalrm3n53c00g3cgckkbahl7r6n"; - name = "recipe"; - }; - packageRequires = [ julia-mode ]; - meta = { - homepage = "https://melpa.org/#/ess"; - license = lib.licenses.free; - }; - }) {}; - ess-R-data-view = callPackage ({ ctable - , ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "ess-R-data-view"; - ename = "ess-R-data-view"; - version = "1.0"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "ess-R-data-view.el"; - rev = "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9"; - sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/492c90bd0ee97c0b895efa0c5e647b2becc6db11/recipes/ess-R-data-view"; - sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; - name = "recipe"; - }; - packageRequires = [ ctable ess popup ]; - meta = { - homepage = "https://melpa.org/#/ess-R-data-view"; - license = lib.licenses.free; - }; - }) {}; - ess-smart-equals = callPackage ({ emacs - , ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ess-smart-equals"; - ename = "ess-smart-equals"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "genovese"; - repo = "ess-smart-equals"; - rev = "746cf9e78c3b86cbbf78d69c335a8a4ff3da79d6"; - sha256 = "1by8bzw3yl86mqzh7lwz5dca243n956jnd2rz4vilpgbh5cka2l3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4403cf87e05311d7fe0360f35f9634b9fdfc6f81/recipes/ess-smart-equals"; - sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; - name = "recipe"; - }; - packageRequires = [ emacs ess ]; - meta = { - homepage = "https://melpa.org/#/ess-smart-equals"; - license = lib.licenses.free; - }; - }) {}; - ess-smart-underscore = callPackage ({ ess - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ess-smart-underscore"; - ename = "ess-smart-underscore"; - version = "0.81"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "ess-smart-underscore.el"; - rev = "ed4b37e8976124a182196a721068a8e334b6aa97"; - sha256 = "00hkq5q1ra9mqjj08f357m1lg1wx1sj4nm0rb382vhf31mlj15m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4d6166f5c80cf37c79256402fa633ad2274d065/recipes/ess-smart-underscore"; - sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; - name = "recipe"; - }; - packageRequires = [ ess ]; - meta = { - homepage = "https://melpa.org/#/ess-smart-underscore"; - license = lib.licenses.free; - }; - }) {}; - esup = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esup"; - ename = "esup"; - version = "0.6"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "esup"; - rev = "53355b13dc9f1636ba681ffff830162ebbd3b223"; - sha256 = "1a4b8390azimlrr5ayxvaks1w7009vfbm56q11ybx00xxrd26v43"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9d2948a42da5d4864404d2d11a924a4f235fc3b/recipes/esup"; - sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/esup"; - license = lib.licenses.free; - }; - }) {}; - esxml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "esxml"; - ename = "esxml"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "tali713"; - repo = "esxml"; - rev = "5548ceba17deae0c3c6d0092672edc4de3c75ce3"; - sha256 = "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db6556fe1b2403d1bcdade263986fd0faf0d9087/recipes/esxml"; - sha256 = "1375gryii984l33gc8f8yhl3vncjmw1w9k6xpvjgmnpx2fwr1vbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/esxml"; - license = lib.licenses.free; - }; - }) {}; - eterm-256color = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "eterm-256color"; - ename = "eterm-256color"; - version = "0.3.13"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "eterm-256color"; - rev = "dab96af559deb443c4c9c00e23389926e1607192"; - sha256 = "0ysxblc90kjcz84siprnyxwh94scflivqbxylzkvjm7hbx93rsh1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e556383f7e18c0215111aa720d4653465e91eff6/recipes/eterm-256color"; - sha256 = "1mxc2hqjcj67jq5k4621a7f089qahcqw7f0dzqpaxn7if11w333b"; - name = "recipe"; - }; - packageRequires = [ emacs f xterm-color ]; - meta = { - homepage = "https://melpa.org/#/eterm-256color"; - license = lib.licenses.free; - }; - }) {}; - ethan-wspace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ethan-wspace"; - ename = "ethan-wspace"; - version = "0.7.1"; - src = fetchFromGitHub { - owner = "glasserc"; - repo = "ethan-wspace"; - rev = "14ae43130e019034367cd2b6e2bf9a067955dd33"; - sha256 = "19i8y8ys58mvzmz0ijcdv9nnrs3b85zbgl087d68734vhp73iy78"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9454f3a58e3416fa60d8411b0db19c408935408f/recipes/ethan-wspace"; - sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ethan-wspace"; - license = lib.licenses.free; - }; - }) {}; - eval-in-repl = callPackage ({ ace-window - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "eval-in-repl"; - ename = "eval-in-repl"; - version = "0.9.6"; - src = fetchFromGitHub { - owner = "kaz-yos"; - repo = "eval-in-repl"; - rev = "7e2b42570b449b2a3c2922f3036a027d1e393a60"; - sha256 = "0x97flv356kd7j6wbhacz0lmsrdd9as87b0n6nliq5n0y30my8dy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0bee5fb7a7874dd20babd1de7f216c5bda3e0115/recipes/eval-in-repl"; - sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; - name = "recipe"; - }; - packageRequires = [ ace-window dash paredit ]; - meta = { - homepage = "https://melpa.org/#/eval-in-repl"; - license = lib.licenses.free; - }; - }) {}; - eval-sexp-fu = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eval-sexp-fu"; - ename = "eval-sexp-fu"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "hchbaw"; - repo = "eval-sexp-fu.el"; - rev = "e1d7165383c941b3f11c2715707adc3d91d129a0"; - sha256 = "01mpnpgmlnfbi2yw9dxz5iw72mw3lk223bj172i4fnx3xdrrxbij"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b1a896521cac1f54f7571ad5837ff215d01044d/recipes/eval-sexp-fu"; - sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/eval-sexp-fu"; - license = lib.licenses.free; - }; - }) {}; - evalator = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "evalator"; - ename = "evalator"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "seanirby"; - repo = "evalator"; - rev = "edf3840f5aa025cf38d0c2677b2f88f59079409e"; - sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/544a503d72c0a501f9ca854cd11181a7783294a3/recipes/evalator"; - sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/evalator"; - license = lib.licenses.free; - }; - }) {}; - evil = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , goto-chg - , lib - , melpaBuild - , undo-tree }: - melpaBuild { - pname = "evil"; - ename = "evil"; - version = "1.2.14"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil"; - rev = "3766a521a60e6fb0073220199425de478de759ad"; - sha256 = "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad/recipes/evil"; - sha256 = "1d36r6mi5nvrwnk4a9338wmhr72fcbrwj0r8gmvivpjdngjy4k39"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs goto-chg undo-tree ]; - meta = { - homepage = "https://melpa.org/#/evil"; - license = lib.licenses.free; - }; - }) {}; - evil-anzu = callPackage ({ anzu - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-anzu"; - ename = "evil-anzu"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-evil-anzu"; - rev = "995141132bbf063fe568a6562bcf8bb8a827c784"; - sha256 = "04a66f5yq3zmdw5ids6dm0kzzk1ivqagbw17a5656gg0ahzpsppv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06b0609b56016d938b28d56d9eeb6305116b38af/recipes/evil-anzu"; - sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; - name = "recipe"; - }; - packageRequires = [ anzu evil ]; - meta = { - homepage = "https://melpa.org/#/evil-anzu"; - license = lib.licenses.free; - }; - }) {}; - evil-args = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-args"; - ename = "evil-args"; - version = "1.0"; - src = fetchFromGitHub { - owner = "wcsmith"; - repo = "evil-args"; - rev = "b554f83a31dd47cac9799725f379675f54ed0a6a"; - sha256 = "08743swy936v8fhbaplrr0wpwlp7vplvy2iwkh56p7gb5gqmlfli"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0976c82a22f1a8701b9da0b8ba4753ed48191376/recipes/evil-args"; - sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-args"; - license = lib.licenses.free; - }; - }) {}; - evil-colemak-basics = callPackage ({ emacs - , evil - , evil-snipe - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-colemak-basics"; - ename = "evil-colemak-basics"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-colemak-basics"; - rev = "7844079b47f47bb1dc24c885b0ac2e67524fa960"; - sha256 = "0phspmd31pcxana2lp6mqywmghhdpj6ydsrl1bjn4b1gcp1fqsy2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/945417d19faf492fb678aee3ba692d14e7518d85/recipes/evil-colemak-basics"; - sha256 = "1sbbli0hdmpc23f3g5n95svqfdg3rlvf71plyvpv1a6va9jhi83k"; - name = "recipe"; - }; - packageRequires = [ emacs evil evil-snipe ]; - meta = { - homepage = "https://melpa.org/#/evil-colemak-basics"; - license = lib.licenses.free; - }; - }) {}; - evil-collection = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-collection"; - ename = "evil-collection"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-collection"; - rev = "733f8d0d289fcbb58705acd1049b618826a3c011"; - sha256 = "01hr5wf693s2djs6l83nfpq6wyyws99c5nwil6hpqhvrwp4f5h95"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fbc35279115f6fdf1ce7d1ecef3b413c7ca9c4f1/recipes/evil-collection"; - sha256 = "1l6x782ix873n90k9g00i9065h31dnhv07bgzrp28l7y7bivqwl7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-collection"; - license = lib.licenses.free; - }; - }) {}; - evil-commentary = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-commentary"; - ename = "evil-commentary"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-commentary"; - rev = "395f91014b69844b81660c155f42eb9b1b3d199d"; - sha256 = "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe5b05152c919d49ddd920b1bd5ffc351141fa0d/recipes/evil-commentary"; - sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-commentary"; - license = lib.licenses.free; - }; - }) {}; - evil-embrace = callPackage ({ emacs - , embrace - , evil-surround - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-embrace"; - ename = "evil-embrace"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "evil-embrace.el"; - rev = "8b2083c514af143f6d2f5d1cb4272c5bfb7437a3"; - sha256 = "1cplq9s3fw8nadcipjrix46jfcjbgg3xhz6d226wcqgmg90aclfn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4886f068766514deab5673b4366d6bdd311e3b6/recipes/evil-embrace"; - sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7"; - name = "recipe"; - }; - packageRequires = [ emacs embrace evil-surround ]; - meta = { - homepage = "https://melpa.org/#/evil-embrace"; - license = lib.licenses.free; - }; - }) {}; - evil-escape = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-escape"; - ename = "evil-escape"; - version = "3.14"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-escape"; - rev = "b4d44fc5015341e484495fc86b73d09b2ac062ec"; - sha256 = "0s8lmmm25qabicwaj9jybpbd8mkc62yl7jnhk1lpablydjkv3w2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-escape"; - sha256 = "0jiwsgcqw8m6z4z82gx0m0r0vbvkcxc0czhn4mqjwkhhglwzgi8l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-escape"; - license = lib.licenses.free; - }; - }) {}; - evil-iedit-state = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , iedit - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-iedit-state"; - ename = "evil-iedit-state"; - version = "1.1"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-iedit-state"; - rev = "eab7d5e3e7d25c4a852fedb6c0c7f50dd9e9bd7c"; - sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0b6b7d09c023cfe34da65fa1eb8f3fdbe7b1290/recipes/evil-iedit-state"; - sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; - name = "recipe"; - }; - packageRequires = [ evil iedit ]; - meta = { - homepage = "https://melpa.org/#/evil-iedit-state"; - license = lib.licenses.free; - }; - }) {}; - evil-leader = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-leader"; - ename = "evil-leader"; - version = "0.4.3"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "evil-leader"; - rev = "753b01eb4958370ae2226b3780ff31fe157c2852"; - sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-leader"; - sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-leader"; - license = lib.licenses.free; - }; - }) {}; - evil-lisp-state = callPackage ({ bind-map - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smartparens }: - melpaBuild { - pname = "evil-lisp-state"; - ename = "evil-lisp-state"; - version = "8.2"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-lisp-state"; - rev = "3c65fecd9917a41eaf6460f22187e2323821f3ce"; - sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-lisp-state"; - sha256 = "16h6zi0kkq2zlrwqiz6avnw2ady3h9gmxyinvk5gbkskxf12d1pz"; - name = "recipe"; - }; - packageRequires = [ bind-map evil smartparens ]; - meta = { - homepage = "https://melpa.org/#/evil-lisp-state"; - license = lib.licenses.free; - }; - }) {}; - evil-magit = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "evil-magit"; - ename = "evil-magit"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-magit"; - rev = "a24186be7cc2cdab24b56f6dcc4665eeb8349c1a"; - sha256 = "12hr2w5r2hgagb3hqbi59v73rxpjml5prc3m7dw3wzsm0rf1rwh3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50315ec837d2951bf5b2bb75809a35dd7ffc8fe8/recipes/evil-magit"; - sha256 = "02ncki7qrl22804576h76xl4d5lvvk32lzn9gvxn63hb19r0s980"; - name = "recipe"; - }; - packageRequires = [ evil magit ]; - meta = { - homepage = "https://melpa.org/#/evil-magit"; - license = lib.licenses.free; - }; - }) {}; - evil-mark-replace = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mark-replace"; - ename = "evil-mark-replace"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-mark-replace"; - rev = "56cf191724a3e82239ca47a17b071c20aedb0617"; - sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/evil-mark-replace"; - sha256 = "14j2d46288shlixb57nh5vlqdi3aiv20djvcbhiw1cm9ar2c3y4v"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-mark-replace"; - license = lib.licenses.free; - }; - }) {}; - evil-matchit = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-matchit"; - ename = "evil-matchit"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-matchit"; - rev = "8fa4c1390d82036f9d51750eb6d3f054785cb396"; - sha256 = "0y6q42hml7jgf060d83m7hf270h01858g5kxw12na9n4r4jjpdg1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aeab4a998bffbc784e8fb23927d348540baf9951/recipes/evil-matchit"; - sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-matchit"; - license = lib.licenses.free; - }; - }) {}; - evil-mc = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-mc"; - ename = "evil-mc"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "gabesoft"; - repo = "evil-mc"; - rev = "be2259b8cedd62011b25ddbcc1774bbbe9a66c61"; - sha256 = "0p435ykkq41nksd40qczlhz6kvs2zpkxch661wy0w93wffwnq3b9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96770d778a03ab012fb82a3a0122983db6f9b0c4/recipes/evil-mc"; - sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-mc"; - license = lib.licenses.free; - }; - }) {}; - evil-multiedit = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , iedit - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-multiedit"; - ename = "evil-multiedit"; - version = "1.3.9"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "evil-multiedit"; - rev = "cb35914ffabb4f65d22ab2f812ff6e7622cc5c26"; - sha256 = "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/997f5a6999d1add57fae33ba8eb3e3bc60d7bb56/recipes/evil-multiedit"; - sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil iedit ]; - meta = { - homepage = "https://melpa.org/#/evil-multiedit"; - license = lib.licenses.free; - }; - }) {}; - evil-nerd-commenter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-nerd-commenter"; - ename = "evil-nerd-commenter"; - version = "3.3.7"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "evil-nerd-commenter"; - rev = "acc0f75cde9e4ffd946f7835c3b388fb77f633a7"; - sha256 = "1r8shfdddys9vqvrxf7s6z83ydqx9xhqs9sa7klbsajryqcp50b7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3e1ff69e7cc95a5b5d628524ad836833f4ee736/recipes/evil-nerd-commenter"; - sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/evil-nerd-commenter"; - license = lib.licenses.free; - }; - }) {}; - evil-numbers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-numbers"; - ename = "evil-numbers"; - version = "0.4"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "evil-numbers"; - rev = "8834eb2e8bd93561a706363946701d0d90546a9f"; - sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/evil-numbers"; - sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/evil-numbers"; - license = lib.licenses.free; - }; - }) {}; - evil-opener = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , opener }: - melpaBuild { - pname = "evil-opener"; - ename = "evil-opener"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "0robustus1"; - repo = "opener.el"; - rev = "c384f67278046fdcd220275fdd212ab85672cbeb"; - sha256 = "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-opener"; - sha256 = "0cld853pyzlaa306rpypw2wm4953i6y06irlk96bql9aa1zx977g"; - name = "recipe"; - }; - packageRequires = [ evil opener ]; - meta = { - homepage = "https://melpa.org/#/evil-opener"; - license = lib.licenses.free; - }; - }) {}; - evil-org = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "evil-org"; - ename = "evil-org"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "Somelauw"; - repo = "evil-org-mode"; - rev = "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9"; - sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1768558ed0a0249421437b66fe45018dd768e637/recipes/evil-org"; - sha256 = "18glpsnpxap4dvnvkl59h9pnwlp20libsfbbkmvrbzsvbdyspg6z"; - name = "recipe"; - }; - packageRequires = [ evil org ]; - meta = { - homepage = "https://melpa.org/#/evil-org"; - license = lib.licenses.free; - }; - }) {}; - evil-quickscope = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-quickscope"; - ename = "evil-quickscope"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "blorbx"; - repo = "evil-quickscope"; - rev = "37a20e4c56c6058abf186ad4013c155e695e876f"; - sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec118caf243c74d243f533c9e12f7de0d6c43bc4/recipes/evil-quickscope"; - sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-quickscope"; - license = lib.licenses.free; - }; - }) {}; - evil-replace-with-char = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-replace-with-char"; - ename = "evil-replace-with-char"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "evil-replace-with-char"; - rev = "dddbbafdd620cc48dd0a257baf4010e1b415ebe8"; - sha256 = "0gcmva2q1bxqp3p8cl1nf19kh4nkgfdm64havyzhnkwq18q84pxi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ac1b487e0fe193cc46c8b489686972ed6db3973/recipes/evil-replace-with-char"; - sha256 = "0lgazw53j44rc72czwqxs6yaz67l9i1v52wbi7l9w958fnjra84r"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-replace-with-char"; - license = lib.licenses.free; - }; - }) {}; - evil-rsi = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-rsi"; - ename = "evil-rsi"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-rsi"; - rev = "236bf6ed1e2285698db808463e5f2f69f5f5e7c0"; - sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/24f438b47e8ede0ef84261424c122d2ac28b90cb/recipes/evil-rsi"; - sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-rsi"; - license = lib.licenses.free; - }; - }) {}; - evil-search-highlight-persist = callPackage ({ fetchFromGitHub - , fetchurl - , highlight - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-search-highlight-persist"; - ename = "evil-search-highlight-persist"; - version = "1.8"; - src = fetchFromGitHub { - owner = "naclander"; - repo = "evil-search-highlight-persist"; - rev = "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85"; - sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2e91974ddb219c88229782b70ade7e14f20c0b5/recipes/evil-search-highlight-persist"; - sha256 = "08l8ymrp9vkpwprq9gp4562yvcnd4hfc3z7n4n5lz7h6ffv3zym3"; - name = "recipe"; - }; - packageRequires = [ highlight ]; - meta = { - homepage = "https://melpa.org/#/evil-search-highlight-persist"; - license = lib.licenses.free; - }; - }) {}; - evil-smartparens = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , smartparens }: - melpaBuild { - pname = "evil-smartparens"; - ename = "evil-smartparens"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "expez"; - repo = "evil-smartparens"; - rev = "9fe4eed1c6327197afe6c13bb0771e18908aff00"; - sha256 = "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/850898fbfc8e0aeb779e8feae56476d989110e79/recipes/evil-smartparens"; - sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; - name = "recipe"; - }; - packageRequires = [ emacs evil smartparens ]; - meta = { - homepage = "https://melpa.org/#/evil-smartparens"; - license = lib.licenses.free; - }; - }) {}; - evil-snipe = callPackage ({ cl-lib ? null - , emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-snipe"; - ename = "evil-snipe"; - version = "2.0.8"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "evil-snipe"; - rev = "dc62ac317fd29f018e9785c1b3b7dd7ad57b3938"; - sha256 = "18j33smlajj7ynigfgm64z3kfys5idbxin2gd93civ2564n85r33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6748f3febbe2f098761e967b4dc67791186d0aa7/recipes/evil-snipe"; - sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-snipe"; - license = lib.licenses.free; - }; - }) {}; - evil-space = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-space"; - ename = "evil-space"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "linktohack"; - repo = "evil-space"; - rev = "f77860fa00662e2def3e1885adac777f051e1e61"; - sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e5a4b9427038f90898ac0e237e71ba7152501f5/recipes/evil-space"; - sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-space"; - license = lib.licenses.free; - }; - }) {}; - evil-string-inflection = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-inflection }: - melpaBuild { - pname = "evil-string-inflection"; - ename = "evil-string-inflection"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "evil-string-inflection"; - rev = "f6a3eca0f0fa8e56e6938e1dd48537eef1fae05f"; - sha256 = "1akk0yylwcw4f91hprrrsijhbdcmrx1nnpgfyzpl4k5d4b30y8d5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0720a0f5b775fcee8d1cfa0defe80048e2dd0972/recipes/evil-string-inflection"; - sha256 = "0w9x49c0gmv4waspa9fvbhf2adm19cixkwx7a7la9v4qy7da6akh"; - name = "recipe"; - }; - packageRequires = [ emacs evil string-inflection ]; - meta = { - homepage = "https://melpa.org/#/evil-string-inflection"; - license = lib.licenses.free; - }; - }) {}; - evil-surround = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-surround"; - ename = "evil-surround"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil-surround"; - rev = "68f7033322dcba3781dddb48465878e896a9f57b"; - sha256 = "17wxib52qwpfi809lq3c1zsxqprmkk9ghg0q8zc3r7gq2f5d8yy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c9dc47a4c837c44429a74fd998fe468c00639f2/recipes/evil-surround"; - sha256 = "0aphv5zinb0lzdx22qbzcr7fn6jbpkdczar7py3df6mzxw5wvcm1"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-surround"; - license = lib.licenses.free; - }; - }) {}; - evil-swap-keys = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-swap-keys"; - ename = "evil-swap-keys"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-swap-keys"; - rev = "56bc201e265a6bd482a7c41a7c81d2238341ef3a"; - sha256 = "0n0hl0plaghz9rjssabxwfzm46kr6564hpfh6hn8lzla4rf1q5zs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2abff8e3d54ac13c4fe90692a56437844accca25/recipes/evil-swap-keys"; - sha256 = "12cx95mjm4ymggidvf41gh3a364z32h655jmhk417v0ga9jk9fv6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/evil-swap-keys"; - license = lib.licenses.free; - }; - }) {}; - evil-test-helpers = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-test-helpers"; - ename = "evil-test-helpers"; - version = "1.2.14"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "evil"; - rev = "3766a521a60e6fb0073220199425de478de759ad"; - sha256 = "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87da8c50f9167ad9c3844b23becb6904f809611d/recipes/evil-test-helpers"; - sha256 = "0l4skyznzgr76z518q22lf90ymlsfcs02w8vqkg8az1nfl3ch7fs"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-test-helpers"; - license = lib.licenses.free; - }; - }) {}; - evil-text-object-python = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-text-object-python"; - ename = "evil-text-object-python"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "evil-text-object-python"; - rev = "7aae5558be25b4a33abdede8a91da1cc7d08f1bc"; - sha256 = "0qfqfqbq3jijnmg0rp6agz9skcv2drnpyn481c7f455z46xi87kl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d0893b07bc4a057561a1c1a85b7520c50f31e12/recipes/evil-text-object-python"; - sha256 = "0jdzs1yn8nrxq890427yjrxdvnzj8jy7bs3jj4w4c0fik26ngqhm"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/evil-text-object-python"; - license = lib.licenses.free; - }; - }) {}; - evil-textobj-anyblock = callPackage ({ cl-lib ? null - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-textobj-anyblock"; - ename = "evil-textobj-anyblock"; - version = "0.1"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "evil-textobj-anyblock"; - rev = "068d26a625cd6202aaf70a8ff399f9130c0ffa68"; - sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/36b734960313d4cb484cebaac0f112781436631c/recipes/evil-textobj-anyblock"; - sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; - name = "recipe"; - }; - packageRequires = [ cl-lib evil ]; - meta = { - homepage = "https://melpa.org/#/evil-textobj-anyblock"; - license = lib.licenses.free; - }; - }) {}; - evil-tutor = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-tutor"; - ename = "evil-tutor"; - version = "1.0"; - src = fetchFromGitHub { - owner = "syl20bnr"; - repo = "evil-tutor"; - rev = "79b47a9f444ddaa289c66e8995ee116941429c24"; - sha256 = "11hiaxiqc2f522y7rgfr6bjnmx4nrssq1q9g96w4rsb10627qvsf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b7bfffdc34e181893b8cf4d1cc091f6c3f91126/recipes/evil-tutor"; - sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-tutor"; - license = lib.licenses.free; - }; - }) {}; - evil-visual-mark-mode = callPackage ({ dash - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visual-mark-mode"; - ename = "evil-visual-mark-mode"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "roman"; - repo = "evil-visual-mark-mode"; - rev = "094ee37599492885ff3144918fcdd9b74dadaaa0"; - sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/293cdd3387f26e4c8f21582d75a194963ac9cff7/recipes/evil-visual-mark-mode"; - sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; - name = "recipe"; - }; - packageRequires = [ dash evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visual-mark-mode"; - license = lib.licenses.free; - }; - }) {}; - evil-visual-replace = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visual-replace"; - ename = "evil-visual-replace"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "troyp"; - repo = "evil-visual-replace"; - rev = "163fc827a1ffc106475da470c37fb26f4cc9b008"; - sha256 = "1gfyrq7xfzmzh3x8k5f08n027dlbwi0pkkxf9c39fkxp4jngibsz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/evil-visual-replace"; - sha256 = "1dq3bd9aqpk3jq1c9yzlpjyw6mi8l428l111vrmfg156k1w22v01"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visual-replace"; - license = lib.licenses.free; - }; - }) {}; - evil-visualstar = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evil-visualstar"; - ename = "evil-visualstar"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "bling"; - repo = "evil-visualstar"; - rev = "bd9e1b50c03b37c57355d387f291c2ec8ce51eec"; - sha256 = "17m4kdz1is4ipnyiv9n3vss49faswbbd6v57df9npzsbn5jyydd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/578d33f3f8e68ef1b3ca3fb8af9b9ff77b649bd3/recipes/evil-visualstar"; - sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/evil-visualstar"; - license = lib.licenses.free; - }; - }) {}; - evm = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "evm"; - ename = "evm"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "evm.el"; - rev = "d0623b2355436a5fd9f7238b419782080c79196b"; - sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bbcead697f745d197459f90ee05b172e35af2411/recipes/evm"; - sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; - name = "recipe"; - }; - packageRequires = [ dash f ]; - meta = { - homepage = "https://melpa.org/#/evm"; - license = lib.licenses.free; - }; - }) {}; - eww-lnum = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eww-lnum"; - ename = "eww-lnum"; - version = "1.1"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "eww-lnum"; - rev = "daef49974446ed4c1001e0549c3f74679bca6bd3"; - sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/eww-lnum"; - sha256 = "1hhc6q8zlj335v27j4dq6ms7frqpivfabs9w3vkaly5kjr60fw7c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eww-lnum"; - license = lib.licenses.free; - }; - }) {}; - exato = callPackage ({ emacs - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exato"; - ename = "exato"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "ninrod"; - repo = "exato"; - rev = "39c08f56483243c28a39886a7218039a138e5f63"; - sha256 = "1q0jjaw5k9bql7bk5idin724vbcgx0iwn2dm4mg1c51cczqsd2rg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/939efbcb9b40a2df5ef14e653fb242a8e37c72f9/recipes/exato"; - sha256 = "1h2dd3yhv1n0sznznw8ncx98g53hgi1rg1zkd0nmldih2rd5qisn"; - name = "recipe"; - }; - packageRequires = [ emacs evil ]; - meta = { - homepage = "https://melpa.org/#/exato"; - license = lib.licenses.free; - }; - }) {}; - exec-path-from-shell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exec-path-from-shell"; - ename = "exec-path-from-shell"; - version = "1.12"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "exec-path-from-shell"; - rev = "76cd6e3fa8a7dac937af7e40507843dfae4f9184"; - sha256 = "1ga8bpxngd3ph2hdiik92c612ki71qxw818i6rgx6f6a5r0sbf3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/exec-path-from-shell"; - sha256 = "014bfcs7znds4if1njyq4s5zrfnr6b3wj6722b4l5r58gh9mlrr5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/exec-path-from-shell"; - license = lib.licenses.free; - }; - }) {}; - exiftool = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "exiftool"; - ename = "exiftool"; - version = "0.3.2"; - src = fetchgit { - url = "https://git.systemreboot.net/exiftool.el/"; - rev = "c1058d99c34e62b99dbfca13ada47519fb51bf73"; - sha256 = "0bv58is66cz21yhc0qqkp1z4nk13zfi2l7i6pjbhyi0g1n88qqyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4835a76909d020781021e747fbc341111a94dbfa/recipes/exiftool"; - sha256 = "1zvcps64yvz8lsjhi1j0808983fv2s7kx67yjr8ps454mcl8bpab"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/exiftool"; - license = lib.licenses.free; - }; - }) {}; - expand-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "expand-region"; - ename = "expand-region"; - version = "0.11.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "expand-region.el"; - rev = "0bc14fc7fbbcca5da4fdd9695cfd7cbd36eb3b96"; - sha256 = "0h40dhc3kn8fq86xnwi5lz7ql8my8737y7wkqr897p15y90swr35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/expand-region"; - sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/expand-region"; - license = lib.licenses.free; - }; - }) {}; - express = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "express"; - ename = "express"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "express"; - rev = "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60"; - sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a97f5f81af13c49f5bea31455d7da0bf2c12e4f/recipes/express"; - sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; - name = "recipe"; - }; - packageRequires = [ string-utils ]; - meta = { - homepage = "https://melpa.org/#/express"; - license = lib.licenses.free; - }; - }) {}; - exsqlaim-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "exsqlaim-mode"; - ename = "exsqlaim-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "ahmadnazir"; - repo = "exsqlaim-mode"; - rev = "a2e0a62ec8b87193d8eaa695774bfd689324b06c"; - sha256 = "1gj1q2h1ja30jizkjql12cxlppj07ykr4wxqca9msy043zdhqnkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f660d7629bc27144c99ebcba45f1b06b14c5745/recipes/exsqlaim-mode"; - sha256 = "0ssn48wcn3x066nsl8y78y57ndasqv5x6ifxbifdxl3f5vjhyvg7"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/exsqlaim-mode"; - license = lib.licenses.free; - }; - }) {}; - extend-dnd = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "extend-dnd"; - ename = "extend-dnd"; - version = "0.5"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "extend-dnd"; - rev = "a1923d57f8f5e862cc66c189b5e6627bc84a2119"; - sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2d866ca12cb997b7fad878808c0966f3413b73d/recipes/extend-dnd"; - sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/extend-dnd"; - license = lib.licenses.free; - }; - }) {}; - extmap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "extmap"; - ename = "extmap"; - version = "1.1"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "extmap"; - rev = "1139b57d8f4276fe56b8416fdaf4745f2cdfe7c3"; - sha256 = "0jgyscjfparnby0whrmbgvsab2a7qkaqhysmh3s3jh635fndm253"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/91ef4352603cc69930ab3d63f0a90eee63f5f328/recipes/extmap"; - sha256 = "0c12gfd3480y4fc22ik02n7h85k6s70i5jv5i872h0yi68cgd01j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/extmap"; - license = lib.licenses.free; - }; - }) {}; - exwm-x = callPackage ({ bind-key - , cl-lib ? null - , counsel - , exwm - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , swiper - , switch-window }: - melpaBuild { - pname = "exwm-x"; - ename = "exwm-x"; - version = "1.9.0"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "exwm-x"; - rev = "88c8b70be678ce0e9fa31e191ffd3f76bbfee61f"; - sha256 = "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0e6e23bcffdcd1e17c70599c563609050e5de40/recipes/exwm-x"; - sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3"; - name = "recipe"; - }; - packageRequires = [ - bind-key - cl-lib - counsel - exwm - ivy - swiper - switch-window - ]; - meta = { - homepage = "https://melpa.org/#/exwm-x"; - license = lib.licenses.free; - }; - }) {}; - eyebrowse = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eyebrowse"; - ename = "eyebrowse"; - version = "0.7.7"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "eyebrowse"; - rev = "7294ed5fbf5f38407b599a10a335b8c4ec15a8d5"; - sha256 = "1lhpf88042mg9q328w2d328ka9pild4ppdynbn3rsib9zgxp8waq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d052bfc0b94cf177e33b2ffc01a45d254fc1b1/recipes/eyebrowse"; - sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/eyebrowse"; - license = lib.licenses.free; - }; - }) {}; - eziam-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "eziam-theme"; - ename = "eziam-theme"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "thblt"; - repo = "eziam-theme-emacs"; - rev = "4402f58f6d619571c0960b2be5ce5b61962c1a67"; - sha256 = "0a7jk5k8fhj9klsphyw22khrwb5ns3w85rbzyrdrshhcaqcr88j3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0411583bd4fdbe425eb07de98851136fa1eeb0/recipes/eziam-theme"; - sha256 = "0iz3r4r54ai8y4qhnix291ra7qfmk8dbr06f52pgmz3gzin1cqpb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/eziam-theme"; - license = lib.licenses.free; - }; - }) {}; - f = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "f"; - ename = "f"; - version = "0.20.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "f.el"; - rev = "de6d4d40ddc844eee643e92d47b9d6a63fbebb48"; - sha256 = "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/f"; - sha256 = "18qax8i24gpccif4xcxccclpwl00plxjf3zbq9dry37b1r4mj57s"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/f"; - license = lib.licenses.free; - }; - }) {}; - f3 = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "f3"; - ename = "f3"; - version = "0.1"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "f3"; - rev = "19120dda2d760d3dd6c6aa620121d1de0a40932d"; - sha256 = "1qg48zbjdjqimw4516ymrsilz41zkib9321q0caf9474s9xyp2bi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b40de62a82d6895a37ff795d56f7d0f783461e6/recipes/f3"; - sha256 = "099wibgp9k6sgglaqigic5ay6qg7aqijnis5crwjl7b81ddqp610"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/f3"; - license = lib.licenses.free; - }; - }) {}; - fabric = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fabric"; - ename = "fabric"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "fabric.el"; - rev = "004934318f63d8cf955022f87b2c33eb97ada280"; - sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83939d2a4d5874244a4916eee9ae6b327af18b5d/recipes/fabric"; - sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fabric"; - license = lib.licenses.free; - }; - }) {}; - factlog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "factlog"; - ename = "factlog"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "factlog"; - rev = "6b83e4f54097a59a13bcccfd29805e432f4e9584"; - sha256 = "1mmyl3ndv5c17mvwxrmv0czjnr5i9b7zydg8swipwgshc3kvn7l0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9075a42edee1ac7de0812d2eefcba5681859eb6e/recipes/factlog"; - sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/factlog"; - license = lib.licenses.free; - }; - }) {}; - faff-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faff-theme"; - ename = "faff-theme"; - version = "2.5"; - src = fetchFromGitHub { - owner = "WJCFerguson"; - repo = "emacs-faff-theme"; - rev = "bb331f755f44f8d6db1b35c476948a080a4a40cf"; - sha256 = "0llhsn79fp8c42hv57539k3zcyaqx0gc27hg21vq9nh8aa0jb6h2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b35c169fe56a5612ff5a4242140f617fdcae14f/recipes/faff-theme"; - sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/faff-theme"; - license = lib.licenses.free; - }; - }) {}; - fancy-battery = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fancy-battery"; - ename = "fancy-battery"; - version = "0.2"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "fancy-battery.el"; - rev = "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff"; - sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eae3af4145c534992d1c1ee5bb6420651c7c5d82/recipes/fancy-battery"; - sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fancy-battery"; - license = lib.licenses.free; - }; - }) {}; - fancy-narrow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fancy-narrow"; - ename = "fancy-narrow"; - version = "0.9.5"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "fancy-narrow"; - rev = "4737d706d1f3e90885e6642ba782f1fa605414c6"; - sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/fancy-narrow"; - sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fancy-narrow"; - license = lib.licenses.free; - }; - }) {}; - fastdef = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , w3m }: - melpaBuild { - pname = "fastdef"; - ename = "fastdef"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "fastdef"; - rev = "0696f41dc150d35ce31fe8d2ea74f4173818bb55"; - sha256 = "1p5vmbx7zdzxnyjzcp2vxscd3dwf7xk82wk9dfiv99svwqv2ki3w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6effb2fbccc71e8a44c53138e3c21f10dc55fbc/recipes/fastdef"; - sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj"; - name = "recipe"; - }; - packageRequires = [ ivy w3m ]; - meta = { - homepage = "https://melpa.org/#/fastdef"; - license = lib.licenses.free; - }; - }) {}; - fastnav = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fastnav"; - ename = "fastnav"; - version = "1.0.7"; - src = fetchFromGitHub { - owner = "gleber"; - repo = "fastnav.el"; - rev = "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1"; - sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2a7dce6617bf4ed250dba150e6787bf48891c64/recipes/fastnav"; - sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fastnav"; - license = lib.licenses.free; - }; - }) {}; - faust-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faust-mode"; - ename = "faust-mode"; - version = "0.6"; - src = fetchFromGitHub { - owner = "rukano"; - repo = "emacs-faust-mode"; - rev = "7c31b22bdbfd2f8c16ec117d2975d56dd61ac15c"; - sha256 = "0a3p69ay88da13cz2cqx00r3qs2swnn7vkcvchcqyrdybfjs7y4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b362e7daeabd07c726ad9770d7d4941dfffd5b19/recipes/faust-mode"; - sha256 = "0l8cbf5i6lv6i5vyqp6ngfmrm2y6z2070b8m10w4376kbbnr266z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/faust-mode"; - license = lib.licenses.free; - }; - }) {}; - faustine = callPackage ({ emacs - , faust-mode - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "faustine"; - ename = "faustine"; - version = "0.4"; - src = fetchgit { - url = "https://bitbucket.org/yphil/faustine"; - rev = "feb938af3a5363e0e0210aa98a447e1896ceca47"; - sha256 = "1c0xc1nk9djjk39ksysszliphibnpm7c472p4lvgkmrsmg28i23k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf/recipes/faustine"; - sha256 = "1blmz993xrwkyr7snj7rm07s07imgpdlfqi6wxkm4ns6iwa2q60s"; - name = "recipe"; - }; - packageRequires = [ emacs faust-mode ]; - meta = { - homepage = "https://melpa.org/#/faustine"; - license = lib.licenses.free; - }; - }) {}; - fcitx = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fcitx"; - ename = "fcitx"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "fcitx.el"; - rev = "6d552ab44234ed78ce9a50f2412f56197266bc9f"; - sha256 = "08l859rw1lwj6hdxrlxqlxf1cfxv8yv9h1jsgs5zfis3hp7nq39j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8c40f09d9397b3ca32a7ed37203f490497dc984/recipes/fcitx"; - sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fcitx"; - license = lib.licenses.free; - }; - }) {}; - fd-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fd-dired"; - ename = "fd-dired"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "yqrashawn"; - repo = "fd-dired"; - rev = "b30ebe827a244b4f27f5387be4b50d074ca67e1b"; - sha256 = "09856pzkybs85msz0awqjw2r3b1hc9wybwq1j30qx14zzbcr3gvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1217e0d4f42df68cc22de9b4f27a36c0377509e3/recipes/fd-dired"; - sha256 = "0g8zvg6b9hcxkmqn254y9khjm7jz2lz4mh7dhsxfcy64inaj0481"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fd-dired"; - license = lib.licenses.free; - }; - }) {}; - feature-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "feature-mode"; - ename = "feature-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "michaelklishin"; - repo = "cucumber.el"; - rev = "4bd8f19da816115094beb4b0e085822eb298ac37"; - sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a70991695f9ff305f12cfa45e0a597f4a782ba3/recipes/feature-mode"; - sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/feature-mode"; - license = lib.licenses.free; - }; - }) {}; - fill-column-indicator = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fill-column-indicator"; - ename = "fill-column-indicator"; - version = "1.90"; - src = fetchFromGitHub { - owner = "alpaker"; - repo = "Fill-Column-Indicator"; - rev = "f7b3f99b41ff017f50a21ad53eed16f8ef5ab7ee"; - sha256 = "0snjznxdwwfdgccdcvrnk467416r244r2r5qcm2sga8l0ha9gw9z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ea0c00a7784621fcca0391a9c8ea85e9dd43852/recipes/fill-column-indicator"; - sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fill-column-indicator"; - license = lib.licenses.free; - }; - }) {}; - fill-function-arguments = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fill-function-arguments"; - ename = "fill-function-arguments"; - version = "0.9"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "fill-function-arguments"; - rev = "bf4b390de851b0bb81309865835fd3ec4c7bfb72"; - sha256 = "1qq5ab39zyis11lhaarcbpd7s9fvmpymw8wi92iq16fp720l6pfa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b78eab67517b19516e5d265018afcbff0acfa9ec/recipes/fill-function-arguments"; - sha256 = "1gigzzz2csl3a55jmjx391a5k3ymixnwpblsn0pfgkkk4p3674q0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fill-function-arguments"; - license = lib.licenses.free; - }; - }) {}; - finalize = callPackage ({ cl-generic - , cl-lib ? null - , eieio ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "finalize"; - ename = "finalize"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "elisp-finalize"; - rev = "0f7d47c4d50f1c76fc3b43bfc2d4886dd3e8ca27"; - sha256 = "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b55869b5183644de02687d2e56f9b68854ccda3/recipes/finalize"; - sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; - name = "recipe"; - }; - packageRequires = [ cl-generic cl-lib eieio emacs ]; - meta = { - homepage = "https://melpa.org/#/finalize"; - license = lib.licenses.free; - }; - }) {}; - find-by-pinyin-dired = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pinyinlib }: - melpaBuild { - pname = "find-by-pinyin-dired"; - ename = "find-by-pinyin-dired"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "find-by-pinyin-dired"; - rev = "2c48434637bd63840fca4d2c6cf9ebd5dd44658f"; - sha256 = "0ial0lbvg0xbrwn8cm68xc5wxj3xgp110y2zgypkdpak8gkv8b5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0aa68b4603bf4071d7d12b40de0138ecab1989d7/recipes/find-by-pinyin-dired"; - sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; - name = "recipe"; - }; - packageRequires = [ pinyinlib ]; - meta = { - homepage = "https://melpa.org/#/find-by-pinyin-dired"; - license = lib.licenses.free; - }; - }) {}; - find-file-in-project = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "find-file-in-project"; - ename = "find-file-in-project"; - version = "5.7.4"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "find-file-in-project"; - rev = "389251757643daffc58e46d195c48f880d4089d5"; - sha256 = "0758mk7fcz39zn2ihz267091lg8qiyrjz0dd3kqgfqvrc7c2n9am"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/find-file-in-project"; - sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/find-file-in-project"; - license = lib.licenses.free; - }; - }) {}; - find-file-in-repository = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "find-file-in-repository"; - ename = "find-file-in-repository"; - version = "1.2"; - src = fetchFromGitHub { - owner = "h"; - repo = "find-file-in-repository"; - rev = "8b888f85029a2ff9159a724b42aeacdb051c3420"; - sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/find-file-in-repository"; - sha256 = "02rihpfpckppnf5a2zgd5s3dspdhq4mr6qchlrzg2fd4byjxra9s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/find-file-in-repository"; - license = lib.licenses.free; - }; - }) {}; - fiplr = callPackage ({ fetchFromGitHub - , fetchurl - , grizzl - , lib - , melpaBuild }: - melpaBuild { - pname = "fiplr"; - ename = "fiplr"; - version = "0.2.4"; - src = fetchFromGitHub { - owner = "grizzl"; - repo = "fiplr"; - rev = "100dfc33f43da8c49e50e8a2222b9d95532f6e24"; - sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/fiplr"; - sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; - name = "recipe"; - }; - packageRequires = [ grizzl ]; - meta = { - homepage = "https://melpa.org/#/fiplr"; - license = lib.licenses.free; - }; - }) {}; - firefox-controller = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , moz - , popwin }: - melpaBuild { - pname = "firefox-controller"; - ename = "firefox-controller"; - version = "2.1"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "emacs-firefox-controller"; - rev = "5b1bedec83206f41672b1b65bba859f235bff48b"; - sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a69c20f8dcf73c878f2172dcc9f1796fdc0408/recipes/firefox-controller"; - sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; - name = "recipe"; - }; - packageRequires = [ cl-lib moz popwin ]; - meta = { - homepage = "https://melpa.org/#/firefox-controller"; - license = lib.licenses.free; - }; - }) {}; - fireplace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fireplace"; - ename = "fireplace"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "johanvts"; - repo = "emacs-fireplace"; - rev = "2b966ed65b714c613f79e9144d004dfa3b28f1ed"; - sha256 = "1f5053bbvjdmm64zv6r2qkswkpwvx0s3qz4bwm9zya583a6g0nv8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609/recipes/fireplace"; - sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fireplace"; - license = lib.licenses.free; - }; - }) {}; - firestarter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "firestarter"; - ename = "firestarter"; - version = "0.2.5"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "firestarter"; - rev = "4d6b106f325ac1802eabce3c8a7cd0a4c7a32864"; - sha256 = "13daz15v0sshl7lxcg1xcbpl64gklgh50pzk0qxmn5ygw7nlifn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b046eb3b63220b937e1b70f633cb5424dc782a1/recipes/firestarter"; - sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/firestarter"; - license = lib.licenses.free; - }; - }) {}; - fish-completion = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fish-completion"; - ename = "fish-completion"; - version = "1.0"; - src = fetchFromGitLab { - owner = "Ambrevar"; - repo = "emacs-fish-completion"; - rev = "23aafb993f8f74dca6e2f299030ca5d3e1aee95b"; - sha256 = "04dcqhdb544i7c6np4prbq13cwfxw37czmpnm3j36di6c1g9gkzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d17ca0213ba5ef9dce92002e281e6f08c3492be/recipes/fish-completion"; - sha256 = "1y7vwh7w0shnrnp8x1m1sa0p7kdyz5mg1mfs263gm38in2biym9i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fish-completion"; - license = lib.licenses.free; - }; - }) {}; - fish-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fish-mode"; - ename = "fish-mode"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "wwwjfy"; - repo = "emacs-fish"; - rev = "bac709ac1235751952d6022dddc6307d9135d096"; - sha256 = "0a74ghmjjrxfdhk4mvq6lar4w6l6lc4iilabs99smqr2fn5rsslq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efac97c0f54a3300251020c4626056526c18b441/recipes/fish-mode"; - sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fish-mode"; - license = lib.licenses.free; - }; - }) {}; - fix-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-input"; - ename = "fix-input"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "fix-input"; - rev = "a70edfa7880ff9b082f358607d2a9ad6a8dcc8f3"; - sha256 = "121m0h0nwxr27f9d2llbgl63ni1makcg66lnvg24wx07wggf0n8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d31f907997d1d07ec794a4f09824f43818f035c/recipes/fix-input"; - sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fix-input"; - license = lib.licenses.free; - }; - }) {}; - fix-muscle-memory = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-muscle-memory"; - ename = "fix-muscle-memory"; - version = "0.93"; - src = fetchFromGitHub { - owner = "jonnay"; - repo = "fix-muscle-memory"; - rev = "df687aea23c6eac4b751f993893c2fd56e5a8a3b"; - sha256 = "02nl4vz6fnbjc7w1lk1y9z0qw5bsxr407ww0b2wqw6h8spmcpcrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6b0501714a6d82657b88d11e3f79d75eea17d8e/recipes/fix-muscle-memory"; - sha256 = "0qhasnjw0bj5hzw27r8vj6shhwc3zxcp3wmxijh1rpdw4773f7n8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fix-muscle-memory"; - license = lib.licenses.free; - }; - }) {}; - fix-word = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fix-word"; - ename = "fix-word"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "fix-word"; - rev = "b3b3a3c8e33e425f9a8d0ec653adb6897c8efc03"; - sha256 = "1nw9ih0knaqaban5nqp3anvr37mivylqs8sc8l3v1i9srlqnsj1m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22636390e8a15c09293a1506a901286dd72e565f/recipes/fix-word"; - sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/fix-word"; - license = lib.licenses.free; - }; - }) {}; - fixmee = callPackage ({ back-button - , button-lock - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nav-flash - , smartrep - , string-utils - , tabulated-list ? null }: - melpaBuild { - pname = "fixmee"; - ename = "fixmee"; - version = "0.8.6"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "fixmee"; - rev = "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74"; - sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5d06db82e237e6c6babd92a1fd2b58c29662e4f/recipes/fixmee"; - sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; - name = "recipe"; - }; - packageRequires = [ - back-button - button-lock - nav-flash - smartrep - string-utils - tabulated-list - ]; - meta = { - homepage = "https://melpa.org/#/fixmee"; - license = lib.licenses.free; - }; - }) {}; - flatui-dark-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flatui-dark-theme"; - ename = "flatui-dark-theme"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "theasp"; - repo = "flatui-dark-theme"; - rev = "af5c84e2a2810748cc71a68ec7ba333097cc1f63"; - sha256 = "0c0pm67d8w9jdraap0sswvx7ywly9ifimij2c5w9p4hiph8gisr9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f9dc5abeb37422c63cac74f9a006d54c4a7c5a5/recipes/flatui-dark-theme"; - sha256 = "1mswmkhi43fm0cmdgf0ywpy9lmapy0syl65kqh68sa3jqbznhm6y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flatui-dark-theme"; - license = lib.licenses.free; - }; - }) {}; - flex-compile = callPackage ({ buffer-manage - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flex-compile"; - ename = "flex-compile"; - version = "0.2"; - src = fetchFromGitHub { - owner = "plandes"; - repo = "flex-compile"; - rev = "82e217aaab34dfd1faf7d03c82eca49706190232"; - sha256 = "1zp0gki61g487x6bypxlkbjzi972y80pzmhqdisl6qx9yrmk60vy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/259caeebc317e81ab9d532a371ea85656c2b1619/recipes/flex-compile"; - sha256 = "1hlh4k7qgln87xajnjjhf1yyg6bgdwd0iczhlfw8gdwfj5xpjd38"; - name = "recipe"; - }; - packageRequires = [ buffer-manage dash emacs ]; - meta = { - homepage = "https://melpa.org/#/flex-compile"; - license = lib.licenses.free; - }; - }) {}; - floobits = callPackage ({ fetchFromGitHub - , fetchurl - , highlight - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "floobits"; - ename = "floobits"; - version = "1.9.3"; - src = fetchFromGitHub { - owner = "Floobits"; - repo = "floobits-emacs"; - rev = "489b294a7f30ecd2af2edc0823dead8102f27af6"; - sha256 = "1pw88qn6s8ln626c8mgxgpfax39h7ww4m930dp7gg4aklxjbspkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95c859e8440049579630b4c2bcc31e7eaa13b1f1/recipes/floobits"; - sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; - name = "recipe"; - }; - packageRequires = [ highlight json ]; - meta = { - homepage = "https://melpa.org/#/floobits"; - license = lib.licenses.free; - }; - }) {}; - flow-minor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flow-minor-mode"; - ename = "flow-minor-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "an-sh"; - repo = "flow-minor-mode"; - rev = "50dded94ad201fdc9453656a8b15179981cd5acd"; - sha256 = "1vaqml0ypbc14mnwycgm9slkds3bgg6x5qz99kck98acbcfijxk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66504f789069922ea56f268f4da90fac52b601ff/recipes/flow-minor-mode"; - sha256 = "190dv225sb37jawzrasd7qkbznrmkrdnb90l44il63vrlmjv3r1s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flow-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - flower = callPackage ({ clomacs - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flower"; - ename = "flower"; - version = "0.4.6"; - src = fetchFromGitHub { - owner = "PositiveTechnologies"; - repo = "flower"; - rev = "6ef1affa2d7090714ccc4494823de28cfc11da35"; - sha256 = "1dp3g52j1i49bv802g27b7yszpxz0i28i4j74qp39qlld3k0gys0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8a731715d360aea9af2b898242fd4eee5419d14/recipes/flower"; - sha256 = "1cb9ppgspdrg4yrrlq4sfajpa6s7xiwvdf9b3947rmmxizgqgynd"; - name = "recipe"; - }; - packageRequires = [ clomacs emacs ]; - meta = { - homepage = "https://melpa.org/#/flower"; - license = lib.licenses.free; - }; - }) {}; - flx = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flx"; - ename = "flx"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "flx"; - rev = "7fce6a4cdb65ac1b52e2b409ba548767581ce34c"; - sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx"; - sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/flx"; - license = lib.licenses.free; - }; - }) {}; - flx-ido = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , flx - , lib - , melpaBuild }: - melpaBuild { - pname = "flx-ido"; - ename = "flx-ido"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "flx"; - rev = "7fce6a4cdb65ac1b52e2b409ba548767581ce34c"; - sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a/recipes/flx-ido"; - sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; - name = "recipe"; - }; - packageRequires = [ cl-lib flx ]; - meta = { - homepage = "https://melpa.org/#/flx-ido"; - license = lib.licenses.free; - }; - }) {}; - flycheck = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pkg-info - , seq }: - melpaBuild { - pname = "flycheck"; - ename = "flycheck"; - version = "31"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck"; - rev = "401b115d10e202a1b31f57340438420081af21ce"; - sha256 = "141i6wzqlb0dslmca6930cal7q4y5wbwzmxrpjk3hgm6nxz483p8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/649f9c3576e81409ae396606798035173cc6669f/recipes/flycheck"; - sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; - name = "recipe"; - }; - packageRequires = [ dash emacs let-alist pkg-info seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ameba = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ameba"; - ename = "flycheck-ameba"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "ameba.el"; - rev = "4ccb497067ce41b128eabca17d761e9b7d0ac3df"; - sha256 = "1sd9c051ipnhm938r30wwqr41bvr2fqhc4n8546hzf3cv56v4d16"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d31485fd7de5ebb97daccf3e28d51f320d4f8cd/recipes/flycheck-ameba"; - sha256 = "17jfqbzzb1xkz9yx5ww6pykjnixm5w8mvwva1kqbjs4f2bsqbc6p"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ameba"; - license = lib.licenses.free; - }; - }) {}; - flycheck-apertium = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-apertium"; - ename = "flycheck-apertium"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "flycheck-apertium"; - rev = "e146ab1b929c50450ba0708e1bdd9fed85606964"; - sha256 = "1g1m7pm84mkmjx7hdspb5k6n8aqphphxb5gya725qy1wqi950jqz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f6cec0d312f0e86e17829e6fd8f87acabc0174f/recipes/flycheck-apertium"; - sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-apertium"; - license = lib.licenses.free; - }; - }) {}; - flycheck-cask = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-cask"; - ename = "flycheck-cask"; - version = "0.4"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-cask"; - rev = "b4667500dcf52f96ec7e0fa10dd07edf191cbf5b"; - sha256 = "1wm5saf29gw0gp0qq5glf9qq3iras99npc2rip7bsnn0czr2mscy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-cask"; - sha256 = "0d2m7mg91k1nazysayryxagql1vi975n7iv0snknhbw4wisqp82f"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-cask"; - license = lib.licenses.free; - }; - }) {}; - flycheck-checkbashisms = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-checkbashisms"; - ename = "flycheck-checkbashisms"; - version = "1.5"; - src = fetchFromGitHub { - owner = "Gnouc"; - repo = "flycheck-checkbashisms"; - rev = "39362240b8e38e6ddc1da2e2c2229e3fecdf6057"; - sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5678ea5aef4dc8a517d6d9381a64f182645d344/recipes/flycheck-checkbashisms"; - sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-checkbashisms"; - license = lib.licenses.free; - }; - }) {}; - flycheck-checkpatch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-checkpatch"; - ename = "flycheck-checkpatch"; - version = "0.1"; - src = fetchFromGitHub { - owner = "zpp0"; - repo = "flycheck-checkpatch"; - rev = "aca98ea79f8b26a95f9dbdd4142b01fdd2def866"; - sha256 = "0bs36dp1jy2z9zfq4mnrin9ik0ffl7023h6dx3qbfya1gcxs07py"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/193aaae5640434559cd479df1463ee44eab14d86/recipes/flycheck-checkpatch"; - sha256 = "1apjn26n663rjddv5iagfs65fdf22049ykmzggybbnprvnmasf55"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-checkpatch"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clj-kondo = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clj-kondo"; - ename = "flycheck-clj-kondo"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "borkdude"; - repo = "flycheck-clj-kondo"; - rev = "1402fb008f10198f09c55869cd713a99c3e72dff"; - sha256 = "0ifkkw7mn83hw4yjx81h519fcabvdk73bavs3pbzck69v6li0mmy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20dca546bbad0fa7b713dc015d1b9a9b7caf5370/recipes/flycheck-clj-kondo"; - sha256 = "0a61jq6g0arrsa97rl3frns8k9l9qxazb96ir99y9kskim4njl6r"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clj-kondo"; - license = lib.licenses.free; - }; - }) {}; - flycheck-clojure = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-clojure"; - ename = "flycheck-clojure"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "squiggly-clojure"; - rev = "67985fba99d0b2e524d426f266e58499ab8c5514"; - sha256 = "1bv5px1px4cbaqc3d805px6irx654b3asj5g8frk6hxr99l6x93w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9c642a234f93ed4cf5edcf27a552a8916984946/recipes/flycheck-clojure"; - sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; - name = "recipe"; - }; - packageRequires = [ cider emacs flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/flycheck-clojure"; - license = lib.licenses.free; - }; - }) {}; - flycheck-color-mode-line = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-color-mode-line"; - ename = "flycheck-color-mode-line"; - version = "0.3"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-color-mode-line"; - rev = "9b69ab84f4fa51abeec4882b3a8d1453dfddb744"; - sha256 = "0qll32rhw8q7z41qwzcsh9k5yhdg6bp4wx6w8j65ky52qia767k4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02b5b60b74581ff0d1815155223e0c6e94a851a1/recipes/flycheck-color-mode-line"; - sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-color-mode-line"; - license = lib.licenses.free; - }; - }) {}; - flycheck-crystal = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-crystal"; - ename = "flycheck-crystal"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "crystal-lang-tools"; - repo = "emacs-crystal-mode"; - rev = "5795e05450016d1337c1a198ae7ea76deeec40e2"; - sha256 = "0yipv79gcwp4i3y8gxjd1npgi8fx2iv8lipb14a8165y84ygkf4l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c718f809af30226611358f9aaed7519e52923fd3/recipes/flycheck-crystal"; - sha256 = "04avxav2rayprm09xkphs1ni10j1kk10j7m77afcac0gnma5rwyn"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-crystal"; - license = lib.licenses.free; - }; - }) {}; - flycheck-dmd-dub = callPackage ({ f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-dmd-dub"; - ename = "flycheck-dmd-dub"; - version = "0.12"; - src = fetchFromGitHub { - owner = "atilaneves"; - repo = "flycheck-dmd-dub"; - rev = "41a839e18eb7159175c59a2f8b2f5f283191e33f"; - sha256 = "0a78np6nb9ciz440n9ks6kybwggkq99knzv7swbmvngvhg96khbx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a812594901c1099283bdf51fbea1aa077cfc588d/recipes/flycheck-dmd-dub"; - sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; - name = "recipe"; - }; - packageRequires = [ f flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-dmd-dub"; - license = lib.licenses.free; - }; - }) {}; - flycheck-gometalinter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-gometalinter"; - ename = "flycheck-gometalinter"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "favadi"; - repo = "flycheck-gometalinter"; - rev = "2e863429cc953cf4c14783e249df56d1ae669868"; - sha256 = "07r2csy2psflvg0pl6n9scfwhnp9mv7hs02hz861v5kbkfx0ajzw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bfe9f2d030c04fb292297eb9226072bfea2ac64/recipes/flycheck-gometalinter"; - sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-gometalinter"; - license = lib.licenses.free; - }; - }) {}; - flycheck-grammalecte = callPackage ({ emacs - , fetchgit - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-grammalecte"; - ename = "flycheck-grammalecte"; - version = "0.8"; - src = fetchgit { - url = "https://git.deparis.io/flycheck-grammalecte/"; - rev = "8ba9d41dad0c9c96760614ce7594ceb823f560de"; - sha256 = "1l2n3vi7krd61bgwj7dg7qpkccimwfx3m0946fmxgrp0k6q41fn0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdd82aa0568d998a3d176b5ee47b8a227438ea09/recipes/flycheck-grammalecte"; - sha256 = "0xqg995a42cl6mvmpi68ay56fgs636cbzg65q5si5yc1yzgl74nv"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-grammalecte"; - license = lib.licenses.free; - }; - }) {}; - flycheck-haskell = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-haskell"; - ename = "flycheck-haskell"; - version = "0.8"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-haskell"; - rev = "ee3401d97cc5e8edc216f2369e9dea3d363e462c"; - sha256 = "0yryd346cp5zir3icldkhjzwjb0bkq8rlidbr62dry1cw9bic6z0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ca601613788ae830655e148a222625035195f55/recipes/flycheck-haskell"; - sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck haskell-mode let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-haskell"; - license = lib.licenses.free; - }; - }) {}; - flycheck-hdevtools = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-hdevtools"; - ename = "flycheck-hdevtools"; - version = "0.3"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-hdevtools"; - rev = "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61"; - sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e210eb2405cc85dd1d03e9119d2249178950398/recipes/flycheck-hdevtools"; - sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-hdevtools"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ini-pyinilint = callPackage ({ fetchFromGitLab - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ini-pyinilint"; - ename = "flycheck-ini-pyinilint"; - version = "0.3"; - src = fetchFromGitLab { - owner = "danieljrmay"; - repo = "flycheck-ini-pyinilint"; - rev = "54744a78d06373404933fedc3ca836916e83de51"; - sha256 = "1zdvan6l2s97s7swnccq21z1ja8vl64l757j3hg50ipq8j5yy9dl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a1d0b4be0dd3e238ad2e3a157b11ecc82c0639/recipes/flycheck-ini-pyinilint"; - sha256 = "028ksrlrrsn2wsz7kqf3qk4pp3scs7zvp74c4xj52rm4hh7ycbl7"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ini-pyinilint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-irony = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , irony - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-irony"; - ename = "flycheck-irony"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "flycheck-irony"; - rev = "34940ae5ab8f4c721d9c1118ebfc3496d7e67a84"; - sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e367afce9a792c168ef1e7e20cc5903f7b570d8/recipes/flycheck-irony"; - sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck irony ]; - meta = { - homepage = "https://melpa.org/#/flycheck-irony"; - license = lib.licenses.free; - }; - }) {}; - flycheck-joker = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-joker"; - ename = "flycheck-joker"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "candid82"; - repo = "flycheck-joker"; - rev = "51e99e697761ee8dab863930910abdba7607c1bd"; - sha256 = "07pxfvnrgp7f3rb27j1zrq04pncvga4291krqqy3dzwazsjplz48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/599bf33a5d4a4a590b355001e532cab4e1ee9ef6/recipes/flycheck-joker"; - sha256 = "0war80zdljpjhfihqrind8471ic7l4z7j74zmrysybxvnd5nr7l3"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-joker"; - license = lib.licenses.free; - }; - }) {}; - flycheck-julia = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-julia"; - ename = "flycheck-julia"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "gdkrmr"; - repo = "flycheck-julia"; - rev = "213b60a5a9a1cb7887260e1d159b5bb27167cbb6"; - sha256 = "0wk8mc8j67dmc3mxzrhypgxmyywwrjh5q5llj4m2mgf0j7yp2576"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e964e3c6f737d0102b4fd7440fa9d434e6382bf/recipes/flycheck-julia"; - sha256 = "0340bv0lifs8pajk7gh7rngdjg62vaggn5biyysng642dlg5fwqs"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-julia"; - license = lib.licenses.free; - }; - }) {}; - flycheck-kotlin = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-kotlin"; - ename = "flycheck-kotlin"; - version = "0.3"; - src = fetchFromGitHub { - owner = "whirm"; - repo = "flycheck-kotlin"; - rev = "44dfae49a7355232492e17c150b7f80a84835c45"; - sha256 = "1495yxk308d1j3hw8gfdrsg8xs1imzgwfnwadrz9hx36rjd2dhj5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f158727cc8892aadba0a613dd08e65e2fc791b48/recipes/flycheck-kotlin"; - sha256 = "0vh4f3ap1ciddf2fvfnjz668d6spyx49xs2wfp1hrzxn5yqpnra5"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-kotlin"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ledger = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-ledger"; - ename = "flycheck-ledger"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flycheck-ledger"; - rev = "9401b6c83f60bfd29edfc62fee76f75e17a3a41e"; - sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc715e6849aa5d6017e2478514c4a0d84c7ddbe5/recipes/flycheck-ledger"; - sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ledger"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mix = callPackage ({ elixir-mode - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-mix"; - ename = "flycheck-mix"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tomekowal"; - repo = "flycheck-mix"; - rev = "c565ebb12a48fcd49cc65656d79295c3288fcb84"; - sha256 = "1yncail979sfljmib7b1m9aw376xd4b76apz4d50hj83lrfy169c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd2a4d71b7f4c0082b687a23fd367d55186625a9/recipes/flycheck-mix"; - sha256 = "1wp8lp45lc519w3xsws2c91jlbfmc0pc8764kxsifk74akwcizfl"; - name = "recipe"; - }; - packageRequires = [ elixir-mode flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mix"; - license = lib.licenses.free; - }; - }) {}; - flycheck-mmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-mmark"; - ename = "flycheck-mmark"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "mmark-md"; - repo = "flycheck-mmark"; - rev = "9ac97f2ff7c669f1c5581b1a6677daa2383b0884"; - sha256 = "0yis6dgvclm434zycc731y48ac4wviafn1k9w18qmlz9qnjqpivd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2fd10423ab80e32245bb494005c8f87a8987fffb/recipes/flycheck-mmark"; - sha256 = "0lnw7pz40hijcpi9b92vjxvvyh9v50ww2f2r8z9pyhl9mjy2245x"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-mmark"; - license = lib.licenses.free; - }; - }) {}; - flycheck-nimsuggest = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , nim-mode }: - melpaBuild { - pname = "flycheck-nimsuggest"; - ename = "flycheck-nimsuggest"; - version = "0.8.1"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "flycheck-nimsuggest"; - rev = "8b1c69e9aa924368bc4dadd4cde818ff158cd3f0"; - sha256 = "0vnwy7b3xs2smbr6ah6yk8hq7vvsciq7d6m1qr91nfnazdgvxmvg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb4170f002dbcd1906e81836f3ce035b1e81c379/recipes/flycheck-nimsuggest"; - sha256 = "099mlzramm6z66zyjb6ypn7qb0hpvwbbgk9ydsanj8sni0dd66hv"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck nim-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-nimsuggest"; - license = lib.licenses.free; - }; - }) {}; - flycheck-objc-clang = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-objc-clang"; - ename = "flycheck-objc-clang"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "GyazSquare"; - repo = "flycheck-objc-clang"; - rev = "b46ad43637cebf8467cf596d3e7b5f5d371789e9"; - sha256 = "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ff4412f507371b93cfb85fc744e54110cd87338/recipes/flycheck-objc-clang"; - sha256 = "07mzwd04a69d7xpkjmhfmf95j69h6accnf9bb9br7jb1hi9vdalp"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-objc-clang"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ocaml = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , merlin }: - melpaBuild { - pname = "flycheck-ocaml"; - ename = "flycheck-ocaml"; - version = "0.3"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-ocaml"; - rev = "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c"; - sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ce9283eb1285953a2578eb7c4d280b4d98c801f/recipes/flycheck-ocaml"; - sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck let-alist merlin ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ocaml"; - license = lib.licenses.free; - }; - }) {}; - flycheck-package = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , package-lint }: - melpaBuild { - pname = "flycheck-package"; - ename = "flycheck-package"; - version = "0.12"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flycheck-package"; - rev = "afe8a49343d90d08ee72ac6f993d424dcc39cc38"; - sha256 = "19pz8h01yacfqsyh5940pam6vigvavsqg6qd84994d7mmzl534qa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17ec69c9f192625e74dfadf03b11d0d7dc575e7/recipes/flycheck-package"; - sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; - name = "recipe"; - }; - packageRequires = [ flycheck package-lint ]; - meta = { - homepage = "https://melpa.org/#/flycheck-package"; - license = lib.licenses.free; - }; - }) {}; - flycheck-phpstan = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , phpstan }: - melpaBuild { - pname = "flycheck-phpstan"; - ename = "flycheck-phpstan"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpstan.el"; - rev = "1151b8d418af532fdf0732b9793b479c64a364e3"; - sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a2b6cc39957e6d7185bd2bdfa3755e5b1f474a6/recipes/flycheck-phpstan"; - sha256 = "1dr0h6cnwxdjmhlackv4gpsljwzs27gk41p8q99r0m44dada9gaf"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck phpstan ]; - meta = { - homepage = "https://melpa.org/#/flycheck-phpstan"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pony = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pony"; - ename = "flycheck-pony"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "flycheck-pony"; - rev = "9356cbcd404eaf381ab0c4b0f9c47232f723fa7e"; - sha256 = "1rzz3cl0pxn3hhrkxcdiy17wl4dzbn8kxm3hq90zmhag1gbfy4zz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2bcb82f4ddb92243058c9ab1a67d4f7ef87b155/recipes/flycheck-pony"; - sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pony"; - license = lib.licenses.free; - }; - }) {}; - flycheck-popup-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flycheck-popup-tip"; - ename = "flycheck-popup-tip"; - version = "0.12.2"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-popup-tip"; - rev = "ef86aad907f27ca076859d8d9416f4f7727619c6"; - sha256 = "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b2269ee9532bb092756ae0c0693cb44b73820e8/recipes/flycheck-popup-tip"; - sha256 = "1j8pgljnxcbfh08qpbr9jkw56l7d6k8lmdcsjbi6jd7jmyqbqvnx"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck popup ]; - meta = { - homepage = "https://melpa.org/#/flycheck-popup-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pos-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "flycheck-pos-tip"; - ename = "flycheck-pos-tip"; - version = "0.3"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-pos-tip"; - rev = "3f1d5297fdff44a14ee624160eefdc678e2bd0bd"; - sha256 = "0qxx3xdgk5l793yg5ffbi5qhrxrf6akwdz93n2vibpkdjkvzyh2y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/698843f75e17b9e6160487c0153f9d6b4af288f6/recipes/flycheck-pos-tip"; - sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck pos-tip ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pos-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-pycheckers = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-pycheckers"; - ename = "flycheck-pycheckers"; - version = "0.12"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "flycheck-pycheckers"; - rev = "6acbba5120ea2c860a0856580e29157b14b9716d"; - sha256 = "0ji5al46bz1mki4zlsyxv8d3dkssdz63in2zxhcf4kvpmdazxk4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af36dca316b318d25d65c9e842f15f736e19ea63/recipes/flycheck-pycheckers"; - sha256 = "18ski3bp8x33589pc273i5ia3hffvlb4czrd97wkfgr4k59ww6yq"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-pycheckers"; - license = lib.licenses.free; - }; - }) {}; - flycheck-rtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "flycheck-rtags"; - ename = "flycheck-rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "5dbb594a7202c4a2e84329cf821bd28bfbea5ae3"; - sha256 = "0x210bqv7618g85nzjy4x9gy31qcbjgppmk8zbpmqk59f2bp7bac"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/flycheck-rtags"; - sha256 = "00v6shfs7piqapmyqyi0fk3182rcfa3p8wr2cm5vqlrana13kbw4"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck rtags ]; - meta = { - homepage = "https://melpa.org/#/flycheck-rtags"; - license = lib.licenses.free; - }; - }) {}; - flycheck-rust = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "flycheck-rust"; - ename = "flycheck-rust"; - version = "1.1"; - src = fetchFromGitHub { - owner = "flycheck"; - repo = "flycheck-rust"; - rev = "a139cd53c5062697e9ed94ad80b803c37d999600"; - sha256 = "1fh6j5w2387nh2fwwjphkhq17cgj5m2q5k0fhidvgc2w65lzbr1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68d8cdf3d225b13ebbbe5ce81a01366f33266aed/recipes/flycheck-rust"; - sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck let-alist seq ]; - meta = { - homepage = "https://melpa.org/#/flycheck-rust"; - license = lib.licenses.free; - }; - }) {}; - flycheck-status-emoji = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-status-emoji"; - ename = "flycheck-status-emoji"; - version = "1.3"; - src = fetchFromGitHub { - owner = "liblit"; - repo = "flycheck-status-emoji"; - rev = "61e93ac41847d27b8eea3a334ced2d1783687b77"; - sha256 = "104zz9fihvd5klzdcaxsdmmfp0q5qisq5bbff48rfwdxnlp8dskr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5abd6aaa8d2bf55ae75cd217820763531f91958b/recipes/flycheck-status-emoji"; - sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/flycheck-status-emoji"; - license = lib.licenses.free; - }; - }) {}; - flycheck-swift = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-swift"; - ename = "flycheck-swift"; - version = "2.0"; - src = fetchFromGitHub { - owner = "swift-emacs"; - repo = "flycheck-swift"; - rev = "822d1415eabfd464adc52063f9c44da1c87f0ff9"; - sha256 = "0gf7cxrsrf62kamm4xy1fi4v264szm6qk607ifg4bi5dmdc10b0k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd99bea06079c4231363c37e3361bd9e5b1ba490/recipes/flycheck-swift"; - sha256 = "1s6rn4wyz9la6bw228jfxx8dxjyk5hf8r3vbmq0k808p772zki0z"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-swift"; - license = lib.licenses.free; - }; - }) {}; - flycheck-swift3 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-swift3"; - ename = "flycheck-swift3"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "GyazSquare"; - repo = "flycheck-swift3"; - rev = "811a765a0106bbdc8d6a721b22a2a97f3527df7c"; - sha256 = "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1fb8c731c118327dc0bbb726e046fec46bcfb82/recipes/flycheck-swift3"; - sha256 = "05yfrn42svcvdkr8mx16ii8llhzn33lxdawksjqiqg671s6fgdpa"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-swift3"; - license = lib.licenses.free; - }; - }) {}; - flycheck-tip = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flycheck-tip"; - ename = "flycheck-tip"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "flycheck-tip"; - rev = "0bfddf52ae4ec48d970324f8336a5d62986bbc9e"; - sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/024f1e588e94014734fa252ee7bdb00b4991ede9/recipes/flycheck-tip"; - sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck popup ]; - meta = { - homepage = "https://melpa.org/#/flycheck-tip"; - license = lib.licenses.free; - }; - }) {}; - flycheck-title = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-title"; - ename = "flycheck-title"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "flycheck-title"; - rev = "4686fa30069f6f3d996bd63978b8fd47f534df24"; - sha256 = "18s60kvvh9glk7b1fj5b18shif0h9cfkh0zrvljscxid01nk9l7k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2996b70645cd6fd093e3b31b9586ce5acb036cf6/recipes/flycheck-title"; - sha256 = "1cxid9qmzy8pl8qkvr6kgvfqm05pjw8cxpz66x619hbkw2vr7sza"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-title"; - license = lib.licenses.free; - }; - }) {}; - flycheck-vdm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , vdm-mode }: - melpaBuild { - pname = "flycheck-vdm"; - ename = "flycheck-vdm"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa"; - sha256 = "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f246b9dcf7915a845b9e2cd44cc1a0833b412c8f/recipes/flycheck-vdm"; - sha256 = "15ng1l8gfp8iz50yb5d39dy57763gd2x8j6z6rz0byiykgxhl9zg"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck vdm-mode ]; - meta = { - homepage = "https://melpa.org/#/flycheck-vdm"; - license = lib.licenses.free; - }; - }) {}; - flycheck-yamllint = callPackage ({ fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild }: - melpaBuild { - pname = "flycheck-yamllint"; - ename = "flycheck-yamllint"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "flycheck-yamllint"; - rev = "110d310fae409e1869b82c34e60936bd3783dc69"; - sha256 = "0xfmnwmc26wzfw1r4q70yxzm9qqvcpxx953pvssavrxfyg3bdgf4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/932ee0a1f13a52d53102b90911da79145208cbb5/recipes/flycheck-yamllint"; - sha256 = "1q2sy0hsbnwdlwq99wk8n5gi9fd8bs4jvi859np8bylbhhb3kj8m"; - name = "recipe"; - }; - packageRequires = [ flycheck ]; - meta = { - homepage = "https://melpa.org/#/flycheck-yamllint"; - license = lib.licenses.free; - }; - }) {}; - flycheck-ycmd = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild - , ycmd }: - melpaBuild { - pname = "flycheck-ycmd"; - ename = "flycheck-ycmd"; - version = "1.2"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "d042a673b4d717c3ca9d641f120bfe16c994c740"; - sha256 = "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flycheck-ycmd"; - sha256 = "114k5y3jy470g5zzhxy03036gcayc08n6g61cidlr2zlyq80glyr"; - name = "recipe"; - }; - packageRequires = [ dash emacs flycheck let-alist ycmd ]; - meta = { - homepage = "https://melpa.org/#/flycheck-ycmd"; - license = lib.licenses.free; - }; - }) {}; - flymake-coffee = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-coffee"; - ename = "flymake-coffee"; - version = "0.12"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-coffee"; - rev = "d4ef325255ea36d1dd622f29284fe72c3fc9abc0"; - sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-coffee"; - sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-coffee"; - license = lib.licenses.free; - }; - }) {}; - flymake-css = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-css"; - ename = "flymake-css"; - version = "0.3"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-css"; - rev = "3e56d47d3c53e39741aa4f702bb9fb827cce22ed"; - sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-css"; - sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-css"; - license = lib.licenses.free; - }; - }) {}; - flymake-cursor = callPackage ({ fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-cursor"; - ename = "flymake-cursor"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "flymake"; - repo = "emacs-flymake-cursor"; - rev = "5cac5045398b1436ceb143d48961b50d38ae1396"; - sha256 = "0xaq8zfd90kqqwg8ik081jblrdyj6p3fh2xpf6a4sdj8826ry93v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a02597edee67c84bef259d7fc5c5b61bd39a5b86/recipes/flymake-cursor"; - sha256 = "0v5abg3h9kmybr0cyr7hqy4rn88h84snzxbsmqcbjw24s10v9p0s"; - name = "recipe"; - }; - packageRequires = [ flymake ]; - meta = { - homepage = "https://melpa.org/#/flymake-cursor"; - license = lib.licenses.free; - }; - }) {}; - flymake-diagnostic-at-point = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flymake-diagnostic-at-point"; - ename = "flymake-diagnostic-at-point"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "meqif"; - repo = "flymake-diagnostic-at-point"; - rev = "379616b1c6f5ebeaf08fbe54ae765008a78b3be7"; - sha256 = "1wbzrxxz5z1xg2lwmqgglvixxf1xm3gl6mdyj9idsbym05azm3hg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7ae169ca3b59d3b876d52148dac573b7f083ac3/recipes/flymake-diagnostic-at-point"; - sha256 = "0cdxb9w5sq6z6wramj1bss5vwqzxkmdyzb1di39rghyh243cdrzx"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/flymake-diagnostic-at-point"; - license = lib.licenses.free; - }; - }) {}; - flymake-easy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-easy"; - ename = "flymake-easy"; - version = "0.10"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-easy"; - rev = "09deafbcb5f094de8465c2bbfe270ba0f517f515"; - sha256 = "1ld0g3hrbplmw3xgg6jg032hncnlxyc3hid4vn38lkcj3y7ls61b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/flymake-easy"; - sha256 = "0y7nm2p5x1f0nqfj73zr6xzbpf4wrzx8sn8154yx0qm0qh3id39v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-easy"; - license = lib.licenses.free; - }; - }) {}; - flymake-eslint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-eslint"; - ename = "flymake-eslint"; - version = "1.3.4"; - src = fetchFromGitHub { - owner = "orzechowskid"; - repo = "flymake-eslint"; - rev = "d4be92ea779ea333b599fd125817f943a676a63a"; - sha256 = "1x0ipsg0gd5lflx7kyyaz7zv6xnjzmhh1k32f01qr69zarf31nw0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b607c3b859f4564e316532a256a299c73e5f6f0/recipes/flymake-eslint"; - sha256 = "0avirxxgjk3k8hqpnhay83ij7s3xr4ha4wz5lji1zyx6f6im6gyb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/flymake-eslint"; - license = lib.licenses.free; - }; - }) {}; - flymake-gjshint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-gjshint"; - ename = "flymake-gjshint"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "flymake-gjshint-el"; - rev = "71495ee5303de18293decd57ab9f9abdbaabfa05"; - sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4673825b15519e9eb2204ade5cc045751771c52/recipes/flymake-gjshint"; - sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-gjshint"; - license = lib.licenses.free; - }; - }) {}; - flymake-haml = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-haml"; - ename = "flymake-haml"; - version = "0.8"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-haml"; - rev = "343449920866238db343d61343bc845cc8bc5e1b"; - sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-haml"; - sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-haml"; - license = lib.licenses.free; - }; - }) {}; - flymake-haskell-multi = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-haskell-multi"; - ename = "flymake-haskell-multi"; - version = "0.3"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-haskell-multi"; - rev = "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9"; - sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd/recipes/flymake-haskell-multi"; - sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-haskell-multi"; - license = lib.licenses.free; - }; - }) {}; - flymake-hlint = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-hlint"; - ename = "flymake-hlint"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-hlint"; - rev = "d540e250a80a09da3036c16bf86f9deb6d738c9c"; - sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17820f32d46e845cc44b237d0bfd5c2d898721de/recipes/flymake-hlint"; - sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-hlint"; - license = lib.licenses.free; - }; - }) {}; - flymake-jslint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-jslint"; - ename = "flymake-jslint"; - version = "0.23"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-jslint"; - rev = "30693f75059bab53a9d2eb676c68751f4d8b091c"; - sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-jslint"; - sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flymake-jslint"; - license = lib.licenses.free; - }; - }) {}; - flymake-json = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-json"; - ename = "flymake-json"; - version = "0.1"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-json"; - rev = "ad8e482db1ad29e23bdd9d089b9bc3615649ce65"; - sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acb0a4d29159aa6d74f754911f63152dac3425bd/recipes/flymake-json"; - sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-json"; - license = lib.licenses.free; - }; - }) {}; - flymake-less = callPackage ({ fetchFromGitHub - , fetchurl - , less-css-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-less"; - ename = "flymake-less"; - version = "0.3"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-less"; - rev = "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893"; - sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d4eae8b7b7d81ebf4d85f38fc3a17b4bc918318/recipes/flymake-less"; - sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; - name = "recipe"; - }; - packageRequires = [ less-css-mode ]; - meta = { - homepage = "https://melpa.org/#/flymake-less"; - license = lib.licenses.free; - }; - }) {}; - flymake-perlcritic = callPackage ({ fetchFromGitHub - , fetchurl - , flymake ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-perlcritic"; - ename = "flymake-perlcritic"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "flymake"; - repo = "emacs-flymake-perlcritic"; - rev = "0692d6ad5495f6e5438bde0a10345829b8e1def8"; - sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/flymake-perlcritic"; - sha256 = "1i0bc81cby2nsala2mhghzv7clhbf1gpp54vdxiq2wdanqy25vmk"; - name = "recipe"; - }; - packageRequires = [ flymake ]; - meta = { - homepage = "https://melpa.org/#/flymake-perlcritic"; - license = lib.licenses.free; - }; - }) {}; - flymake-php = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-php"; - ename = "flymake-php"; - version = "0.5"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-php"; - rev = "91f867e209011af31a2ca2d8f6874b994403bcb2"; - sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-php"; - sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-php"; - license = lib.licenses.free; - }; - }) {}; - flymake-python-pyflakes = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-python-pyflakes"; - ename = "flymake-python-pyflakes"; - version = "0.9"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-python-pyflakes"; - rev = "78806a25b0f01f03df4210a79a6eaeec59511d7a"; - sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49091c0eca4158b80269b6ff5f7f3fc8e981420b/recipes/flymake-python-pyflakes"; - sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-python-pyflakes"; - license = lib.licenses.free; - }; - }) {}; - flymake-ruby = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-ruby"; - ename = "flymake-ruby"; - version = "0.8"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-ruby"; - rev = "e14e8e2abda223bd3920dbad0eefd5af5973ae6d"; - sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-ruby"; - sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-ruby"; - license = lib.licenses.free; - }; - }) {}; - flymake-sass = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-sass"; - ename = "flymake-sass"; - version = "0.6"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-sass"; - rev = "1c7664818db539de7f3dab396c013528a3f5b8b4"; - sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-sass"; - sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-sass"; - license = lib.licenses.free; - }; - }) {}; - flymake-shell = callPackage ({ fetchFromGitHub - , fetchurl - , flymake-easy - , lib - , melpaBuild }: - melpaBuild { - pname = "flymake-shell"; - ename = "flymake-shell"; - version = "0.8"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "flymake-shell"; - rev = "ec097bd77db5523a04ceb15a128e01689d36fb90"; - sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/flymake-shell"; - sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; - name = "recipe"; - }; - packageRequires = [ flymake-easy ]; - meta = { - homepage = "https://melpa.org/#/flymake-shell"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct"; - ename = "flyspell-correct"; - version = "0.5"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "a9b53c52ab350aead0851e140d813cfd7b1bd680"; - sha256 = "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa06fbe3bc40ae5e3f6d10dee93a9d49e9288ba5/recipes/flyspell-correct"; - sha256 = "0d2205h234na9s942s83yvkq89l9w9jnl5yfrxkkdiq8pw0dvymd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flyspell-correct"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-helm = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct-helm"; - ename = "flyspell-correct-helm"; - version = "0.5"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "a9b53c52ab350aead0851e140d813cfd7b1bd680"; - sha256 = "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-helm"; - sha256 = "18s2bzszy6x31avqg7j2lsll2cf4asb8njwhmx4mm215agack976"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct helm ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-helm"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-ivy = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-correct-ivy"; - ename = "flyspell-correct-ivy"; - version = "0.5"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "a9b53c52ab350aead0851e140d813cfd7b1bd680"; - sha256 = "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-ivy"; - sha256 = "1n5iyab6bj761w6vxncyqvqzwh9k60pzq5f2n00ifrz74pqs537i"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct ivy ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-ivy"; - license = lib.licenses.free; - }; - }) {}; - flyspell-correct-popup = callPackage ({ fetchFromGitHub - , fetchurl - , flyspell-correct - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flyspell-correct-popup"; - ename = "flyspell-correct-popup"; - version = "0.5"; - src = fetchFromGitHub { - owner = "d12frosted"; - repo = "flyspell-correct"; - rev = "a9b53c52ab350aead0851e140d813cfd7b1bd680"; - sha256 = "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7b9302d8f804c77eb81fee7ed27f13cb1176f6/recipes/flyspell-correct-popup"; - sha256 = "1fr8ajwldcl58i8xm31dz1mjwbi9f4q8s58x5jrqhqha0x4p4h9l"; - name = "recipe"; - }; - packageRequires = [ flyspell-correct popup ]; - meta = { - homepage = "https://melpa.org/#/flyspell-correct-popup"; - license = lib.licenses.free; - }; - }) {}; - flyspell-lazy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "flyspell-lazy"; - ename = "flyspell-lazy"; - version = "0.6.10"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "flyspell-lazy"; - rev = "31786fe04a4732d2f845e1c7e96fcb030182ef10"; - sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a082c2dc0458e3007a947923f5b97e88217199e8/recipes/flyspell-lazy"; - sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/flyspell-lazy"; - license = lib.licenses.free; - }; - }) {}; - flyspell-popup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "flyspell-popup"; - ename = "flyspell-popup"; - version = "0.3"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "flyspell-popup"; - rev = "29311849bfd253b9b689bf331860b4c4d3bd4dde"; - sha256 = "0x7jilwb0fgzsr7ma59sgd0d4122cl0hwzr28vi3z5s8wdab7nc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/186d00724137c055b521a5f5c54acf71c4b16c32/recipes/flyspell-popup"; - sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/flyspell-popup"; - license = lib.licenses.free; - }; - }) {}; - fn = callPackage ({ cl-lib ? null - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fn"; - ename = "fn"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "troyp"; - repo = "fn.el"; - rev = "fe65dc654d319e6fa9cef4d7eca0f8dd847b6a32"; - sha256 = "1j2rrwizafwramlzrjcsfv8xbz72qmiaa120cb1ri8wp6nyvhys0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d2929604b6dd21d6cf425643927a9c216801dc1/recipes/fn"; - sha256 = "0cb98rxdb6sd0kws6bc4pa536kiyw3yk0hlfqcm3ps81hcgqjhhn"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/fn"; - license = lib.licenses.free; - }; - }) {}; - focus = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "focus"; - ename = "focus"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "Focus"; - rev = "75202c9445f52eab6fb82f00006f37cd20dae6b2"; - sha256 = "1v9y3dp7sd4rsm31myp3l1jxpwjw3madajb6yz9rw0yhdirfwgbg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e8f1217224514f9b048b7101c89e3b1a305821e/recipes/focus"; - sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/focus"; - license = lib.licenses.free; - }; - }) {}; - fold-dwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-dwim"; - ename = "fold-dwim"; - version = "1.2"; - src = fetchFromGitHub { - owner = "emacsattic"; - repo = "fold-dwim"; - rev = "4764b0246a722d37eb8ec9f204ffaccaad1755d0"; - sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62064e272a658d998b1ccf13dc3c2e3e454acade/recipes/fold-dwim"; - sha256 = "1k5186s69qahwbzvwq70af3bkcglls9a82c5jw5mdw3ic8k631sh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fold-dwim"; - license = lib.licenses.free; - }; - }) {}; - fold-dwim-org = callPackage ({ fetchFromGitHub - , fetchurl - , fold-dwim - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-dwim-org"; - ename = "fold-dwim-org"; - version = "0.6"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "fold-dwim-org"; - rev = "c09bb2b46d65afbd1d0febc6fded7495be7a3037"; - sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97d22d9feaf521ce576b80d2933ecbc166c1dbe7/recipes/fold-dwim-org"; - sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; - name = "recipe"; - }; - packageRequires = [ fold-dwim ]; - meta = { - homepage = "https://melpa.org/#/fold-dwim-org"; - license = lib.licenses.free; - }; - }) {}; - fold-this = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fold-this"; - ename = "fold-this"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "fold-this.el"; - rev = "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a"; - sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c/recipes/fold-this"; - sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fold-this"; - license = lib.licenses.free; - }; - }) {}; - font-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "font-utils"; - ename = "font-utils"; - version = "0.7.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "font-utils"; - rev = "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3"; - sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2af0a1644116e89c5a705ffe0885ffe3ee874eaf/recipes/font-utils"; - sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/font-utils"; - license = lib.licenses.free; - }; - }) {}; - fontawesome = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "fontawesome"; - ename = "fontawesome"; - version = "0.4"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-fontawesome"; - rev = "72b4f2f83c7fdacd225aee58f93acefc53166626"; - sha256 = "1icwjd1rbyr1g8ifyhvpi21wjff2qrddq2rmp5lmiajnwrlfli0d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93b92f10802ceffc353db3d220dccfd47ea7fa41/recipes/fontawesome"; - sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/fontawesome"; - license = lib.licenses.free; - }; - }) {}; - fontify-face = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fontify-face"; - ename = "fontify-face"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "fontify-face"; - rev = "fc3325c98427523d86f0b411e0515cec51ac3d8a"; - sha256 = "1zfld9a17xhisfwhmfxvx1x63ksl6jg5g99kbivj4nq70sf26dpw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72bd6750dd5a7d9ed6e408e690f76c260ffd7d9e/recipes/fontify-face"; - sha256 = "1w7xlkladqkbh7gpnkbi53a7k9p5wzma4y9jgwbc58hng9ggm1k0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fontify-face"; - license = lib.licenses.free; - }; - }) {}; - foreman-mode = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "foreman-mode"; - ename = "foreman-mode"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "foreman-mode"; - rev = "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb"; - sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edeeb2b52ac70f8bdad38d3af62a7e434853c504/recipes/foreman-mode"; - sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f s ]; - meta = { - homepage = "https://melpa.org/#/foreman-mode"; - license = lib.licenses.free; - }; - }) {}; - forge = callPackage ({ closql - , dash - , emacs - , emacsql-sqlite - , fetchFromGitHub - , fetchurl - , ghub - , graphql - , let-alist - , lib - , magit - , magit-popup - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "forge"; - ename = "forge"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "forge"; - rev = "f5fc99935e2059ddede9766ce4bb96d99dcd203b"; - sha256 = "0jipyqj3r4gkdwpcy0m5ij7x510r2admi8fbzwfysqyrwahs60nv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23512cf8152161322960d72a5ec49a7595003477/recipes/forge"; - sha256 = "0a1yvdxx43zq9ivwmg34wyybkw4vhgzd2c54cchsbrbr972x9522"; - name = "recipe"; - }; - packageRequires = [ - closql - dash - emacs - emacsql-sqlite - ghub - graphql - let-alist - magit - magit-popup - markdown-mode - ]; - meta = { - homepage = "https://melpa.org/#/forge"; - license = lib.licenses.free; - }; - }) {}; - form-feed = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "form-feed"; - ename = "form-feed"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "form-feed"; - rev = "eac6724c093458745e9ae0e37221077fa2ad0ff6"; - sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/468503d8103766e8196e977325e3bcb696219f6b/recipes/form-feed"; - sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/form-feed"; - license = lib.licenses.free; - }; - }) {}; - format-sql = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "format-sql"; - ename = "format-sql"; - version = "0.4"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "format-sql.el"; - rev = "97f475c245cd6c81a72a265678e2087cee66ac7b"; - sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/085c03104aa5a809a112525547eec51100b6fb09/recipes/format-sql"; - sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/format-sql"; - license = lib.licenses.free; - }; - }) {}; - format-table = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "format-table"; - ename = "format-table"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "functionreturnfunction"; - repo = "format-table"; - rev = "dfcae3a867e574577fc09a43b045889ff155b58f"; - sha256 = "1z9l1qmv5hw7bgchi5f68nzsz9arjwsazvd6viq6k6jmjzncli6q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e307ead5e8a291cb5dfe316f3b13144e71b6a1b7/recipes/format-table"; - sha256 = "1fwjilx0n9m8q0macq231i73zvridjfgqlhw7d1xblw4qp82rzvp"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/format-table"; - license = lib.licenses.free; - }; - }) {}; - fortune-cookie = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fortune-cookie"; - ename = "fortune-cookie"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "andschwa"; - repo = "fortune-cookie"; - rev = "bad99a2cd090f6646c7ee1125b95dd98744939c6"; - sha256 = "1kiflisiabc39lxi5hcazfvcwrpasl01lqsi2sri6pyrcrjyh8mf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab0d56626c9bf847c693b4d9ddb08acee636054f/recipes/fortune-cookie"; - sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fortune-cookie"; - license = lib.licenses.free; - }; - }) {}; - frame-purpose = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frame-purpose"; - ename = "frame-purpose"; - version = "1.0"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "frame-purpose.el"; - rev = "60778ef3c02cb09a7ccc323732c89bf374dfbffe"; - sha256 = "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/033bd36a2419f4521944ccbfe8ce1eb56af20472/recipes/frame-purpose"; - sha256 = "0mvzryfakz5g8smsg4ciaa0bs0jp692rnjbahp9vl62ml5dp62fz"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/frame-purpose"; - license = lib.licenses.free; - }; - }) {}; - frames-only-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "frames-only-mode"; - ename = "frames-only-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "frames-only-mode"; - rev = "5a2947d797a5d6f74d3a9c97f8c0ab6cff115b28"; - sha256 = "0y0sdjixaxvywrlp2sw51wnczhk51q1svl5aghbk9rkxpwv9ys9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e628416ad9420b3ac5bbfacf930a86d98958ac8/recipes/frames-only-mode"; - sha256 = "17p04l16ghz9kk096xk37yjpi4rmla86gp7c8ysjf6q6nyh0608h"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/frames-only-mode"; - license = lib.licenses.free; - }; - }) {}; - frameshot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "frameshot"; - ename = "frameshot"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "frameshot"; - rev = "3830aae976603ff4e41e09fdca7554594075694c"; - sha256 = "1sbxr78gl822gl0ky7iz1wb558ch9gp7igg4aq63gjlq6wfx2v93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5cfaa4b5fda97054d45691fad9d79b559f2df14/recipes/frameshot"; - sha256 = "1z5f988m9s25miyxbhaxk6m4af9afvblb2p5mdidva04szjklr70"; - name = "recipe"; - }; - 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"; - ename = "free-keys"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "free-keys"; - rev = "edfd69dc369b2647447b7c28c7c1163b1ddf45b4"; - sha256 = "0xgifa7s9n882f9ymyyz9gc11xfbj3vfpnxiq1fqfm5hmwx9pwbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55067e899ba618d4394ad9657322c92a667a0774/recipes/free-keys"; - sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/free-keys"; - license = lib.licenses.free; - }; - }) {}; - fringe-helper = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fringe-helper"; - ename = "fringe-helper"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "fringe-helper.el"; - rev = "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b"; - sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/fringe-helper"; - sha256 = "1i5wra4j0rvrsl9vbg7fzga8cadw43ka2rwdj1m11wq8m3cs8g7m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fringe-helper"; - license = lib.licenses.free; - }; - }) {}; - fsbot-data-browser = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fsbot-data-browser"; - ename = "fsbot-data-browser"; - version = "0.3"; - src = fetchFromGitHub { - owner = "Benaiah"; - repo = "fsbot-data-browser"; - rev = "6bca4f7de63e31839d2542f6c678b79931dec344"; - sha256 = "0lvpgfp89sz6f6rn576g1g88s0q3ibj5ghydjwfcg9w6h7vx5b5s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/fsbot-data-browser"; - sha256 = "14d4d8lasvgj520rmqgnzk6mi16znzcdvja9p8164fr9l41wnzgd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fsbot-data-browser"; - license = lib.licenses.free; - }; - }) {}; - fsharp-mode = callPackage ({ company - , company-quickhelp - , dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup - , pos-tip - , s }: - melpaBuild { - pname = "fsharp-mode"; - ename = "fsharp-mode"; - version = "1.9.14"; - src = fetchFromGitHub { - owner = "rneatherway"; - repo = "emacs-fsharp-mode-bin"; - rev = "e2a63296681d65969d9c21144a22c6fd2f9dd57d"; - sha256 = "0llv82jhfmxnblhihnc07z343780dsd2167xjm4vrpcqvlpp50g8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc45611e2b629d8bc5f74555368f964420b79541/recipes/fsharp-mode"; - sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; - name = "recipe"; - }; - packageRequires = [ - company - company-quickhelp - dash - flycheck - popup - pos-tip - s - ]; - meta = { - homepage = "https://melpa.org/#/fsharp-mode"; - license = lib.licenses.free; - }; - }) {}; - fstar-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fstar-mode"; - ename = "fstar-mode"; - version = "0.9.4.0"; - src = fetchFromGitHub { - owner = "FStarLang"; - repo = "fstar-mode.el"; - rev = "3a9be64827bbed8e34d38803b5c44d8d4f6cd688"; - sha256 = "0manmkd66355g1fw2q1q96ispd0vxf842i8dcr6g592abrz5lhi7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c58ace42342c3d3ff5a56d86a16206f2ecb45f77/recipes/fstar-mode"; - sha256 = "1kwa6gqh91265vpp4gcady2brkizfkfjj0gnya9lar6x7rn4gj7s"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/fstar-mode"; - license = lib.licenses.free; - }; - }) {}; - fuel = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fuel"; - ename = "fuel"; - version = "0.98"; - src = fetchFromGitHub { - owner = "factor"; - repo = "factor"; - rev = "780bbd49cf82c9746ca5a3f42f4a4a27266ccee9"; - sha256 = "1fs6200rsbnk2lagz8qj17iynaf4c1fvb6sm03i53shsbarak2c3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e2a0e4698d4e71ec28656594f6a83504a823490/recipes/fuel"; - sha256 = "08hzzg5dhqkl5c5lfhwcwmx8m8z3k1nxshn2wlpqf5gch8f2nj6z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/fuel"; - license = lib.licenses.free; - }; - }) {}; - full-ack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "full-ack"; - ename = "full-ack"; - version = "1.0"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "full-ack"; - rev = "0aef4be1686535f83217cafb1524818071bd8325"; - sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/full-ack"; - sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/full-ack"; - license = lib.licenses.free; - }; - }) {}; - fullframe = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fullframe"; - ename = "fullframe"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "tomterl"; - repo = "fullframe"; - rev = "d6a5217f7f2a5a5edcb75140f3fa69b3a50f1cdd"; - sha256 = "0m43qnhp6ibsskpjkxc86p3lrjsjc0ndqml3lbd65s79x4x7i3fi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13d1dc5c39543b65c6bb4150c3690211872c00dc/recipes/fullframe"; - sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/fullframe"; - license = lib.licenses.free; - }; - }) {}; - function-args = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "function-args"; - ename = "function-args"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "function-args"; - rev = "0b07db81c0c1fa88d1ec763219ee57640858f79d"; - sha256 = "0lg9bhwn3za4jvz38zld389gdl48qf34nqqqrzj0r119g1jqdrg1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80688d85a34b77783140ad2b8a47ef60c762b084/recipes/function-args"; - sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; - name = "recipe"; - }; - packageRequires = [ ivy ]; - meta = { - homepage = "https://melpa.org/#/function-args"; - license = lib.licenses.free; - }; - }) {}; - fuzzy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fuzzy"; - ename = "fuzzy"; - version = "0.1"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "fuzzy-el"; - rev = "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c"; - sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e0197df173fbd7ec1e7e35c47476fcf2aaa483f/recipes/fuzzy"; - sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fuzzy"; - license = lib.licenses.free; - }; - }) {}; - fvwm-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fvwm-mode"; - ename = "fvwm-mode"; - version = "1.6.4"; - src = fetchFromGitHub { - owner = "theBlackDragon"; - repo = "fvwm-mode"; - rev = "d48a309bb7db21f5404b6619c6ee861fe0457704"; - sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac39130f8a031d6fe7df4411a5f94f2cdf652449/recipes/fvwm-mode"; - sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fvwm-mode"; - license = lib.licenses.free; - }; - }) {}; - fwb-cmds = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fwb-cmds"; - ename = "fwb-cmds"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "fwb-cmds"; - rev = "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f"; - sha256 = "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe40cdeb5e19628937820181479897acdad40200/recipes/fwb-cmds"; - sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/fwb-cmds"; - license = lib.licenses.free; - }; - }) {}; - fxrd-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "fxrd-mode"; - ename = "fxrd-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "fxrd-mode"; - rev = "795b969346982b75e24b5c8619b46197982fbb4d"; - sha256 = "0aha13vqj6ygyr7bflrxll837g4z6wrmrhh5rhcd0vphqg70frgn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/796eb6b2126ec616c0de6af6abb7598900557c12/recipes/fxrd-mode"; - sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/fxrd-mode"; - license = lib.licenses.free; - }; - }) {}; - fzf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "fzf"; - ename = "fzf"; - version = "0.2"; - src = fetchFromGitHub { - owner = "bling"; - repo = "fzf.el"; - rev = "383a050920e9b99d37c21d041deb7f38b202485c"; - sha256 = "14drm6b6rxbcdilcms1jlqyrqbipcqbdil6q06ni9pgafi7xp8hz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1671e17c99ef1932c6a2e83fc4fa2e4eb6674bc8/recipes/fzf"; - sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/fzf"; - license = lib.licenses.free; - }; - }) {}; - gams-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gams-mode"; - ename = "gams-mode"; - version = "6.5"; - src = fetchFromGitHub { - owner = "ShiroTakeda"; - repo = "gams-mode"; - rev = "0a7f3f5d44ea59c34677049882f0a34ff9935bc9"; - sha256 = "0wl2dfcfvjy23gcwk6qfxbxjlykw438fi9h1y2855adcc9zrhwzx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c895a716636b00c2a158d33aab18f664a8601833/recipes/gams-mode"; - sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gams-mode"; - license = lib.licenses.free; - }; - }) {}; - gather = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gather"; - ename = "gather"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-gather"; - rev = "b9038e5b960039688e7a80ee770e0aee81d5c6c8"; - sha256 = "1b73n7ydkckrq2sjq4jb2hva8lfqaiaaad2gcgjx2y15rvbb26d0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/595e40c7102294684badf86deb72d86bbc3c1426/recipes/gather"; - sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gather"; - license = lib.licenses.free; - }; - }) {}; - geben = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "geben"; - ename = "geben"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "geben"; - rev = "003abd23a7468daa133dfbc7ef85d0d61a0410dc"; - sha256 = "15ck23xv3dz9i4w5xd9lkg0c6rlsyxdz465xrpkr77fq9qw0c4dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f8648609e160f7dcefe4a963e8b00475f2fff78/recipes/geben"; - sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/geben"; - license = lib.licenses.free; - }; - }) {}; - geben-helm-projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , geben - , helm-projectile - , lib - , melpaBuild }: - melpaBuild { - pname = "geben-helm-projectile"; - ename = "geben-helm-projectile"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "geben-helm-projectile"; - rev = "14db489efcb20c5aa9102288c94cec3c5a87c35d"; - sha256 = "1nd1jhy393vkn2g65zhygxkpgna0l8gkndxr8jb6qjkkapk58k8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7d28c45304a69e6ca78b3d00df2563171c027ee/recipes/geben-helm-projectile"; - sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r"; - name = "recipe"; - }; - packageRequires = [ emacs geben helm-projectile ]; - meta = { - homepage = "https://melpa.org/#/geben-helm-projectile"; - license = lib.licenses.free; - }; - }) {}; - geiser = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "geiser"; - ename = "geiser"; - version = "0.10"; - src = fetchFromGitLab { - owner = "jaor"; - repo = "geiser"; - rev = "775d1d734a677274fbbf4af780592bb3768d3f9b"; - sha256 = "086qlii1w7sqxwnxwxvc4d6d71p829jabhgwvi0l0bjkxn7bx8pq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67dc8d6e33f3522043f96761b23ea68c9c27084e/recipes/geiser"; - sha256 = "1g7z6c3lfa7slwrxk7q8awqs39qibcv2kc4c2fwlwvgbcfhkw085"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/geiser"; - license = lib.licenses.free; - }; - }) {}; - genrnc = callPackage ({ concurrent - , deferred - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "genrnc"; - ename = "genrnc"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-genrnc"; - rev = "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a"; - sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd2d908ba5fa96d90643091573939e54d9165aaa/recipes/genrnc"; - sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; - name = "recipe"; - }; - packageRequires = [ concurrent deferred log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/genrnc"; - license = lib.licenses.free; - }; - }) {}; - german-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "german-holidays"; - ename = "german-holidays"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "german-holidays"; - rev = "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc"; - sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5b3807ff989b13f95e8d6fad2f26a42ff0643c/recipes/german-holidays"; - sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/german-holidays"; - license = lib.licenses.free; - }; - }) {}; - gf = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gf"; - ename = "gf"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "GrammaticalFramework"; - repo = "gf-emacs-mode"; - rev = "49fa46db67634530499be969ffd3c436a22d4404"; - sha256 = "0q234wzzmq1r53dv7z798liwkcbpnvc8mnxvkyfxd94f6za9ylgz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gf"; - sha256 = "0vk866gy97zk8dbx48azjlpnrnf0snc50zlhbzv1is97d9frjici"; - name = "recipe"; - }; - packageRequires = [ ht s ]; - meta = { - homepage = "https://melpa.org/#/gf"; - license = lib.licenses.free; - }; - }) {}; - ggo-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ggo-mode"; - ename = "ggo-mode"; - version = "20130521"; - src = fetchFromGitHub { - owner = "mkjunker"; - repo = "ggo-mode"; - rev = "ea5097f87072309c7b77204888d459d084bf630f"; - sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e055994c3c3042eab11f11ec916ad5b56689809f/recipes/ggo-mode"; - sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ggo-mode"; - license = lib.licenses.free; - }; - }) {}; - ggtags = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ggtags"; - ename = "ggtags"; - version = "0.8.13"; - src = fetchFromGitHub { - owner = "leoliu"; - repo = "ggtags"; - rev = "17a121af1b375a6a5c5acec52f2ffd2b9715d244"; - sha256 = "10hryphjjyi13gvk8sy8r5y7nvs0hbw8ycjqj9snai0c1f9xrdsa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b158bb1bc2fbe3de61a6b21174eac7b1457edda2/recipes/ggtags"; - sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ggtags"; - license = lib.licenses.free; - }; - }) {}; - gh = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , logito - , melpaBuild - , pcache }: - melpaBuild { - pname = "gh"; - ename = "gh"; - version = "0.10.0"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "gh.el"; - rev = "d0471dd1ba279072cbf8caf6368f3008d7120f25"; - sha256 = "099msgsxdqyjrd18jv2mfkpaylp2scq18782354lcpr3fbp8vbsl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gh"; - sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; - name = "recipe"; - }; - packageRequires = [ emacs logito pcache ]; - meta = { - homepage = "https://melpa.org/#/gh"; - license = lib.licenses.free; - }; - }) {}; - ghc = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ghc"; - ename = "ghc"; - version = "5.8.0.0"; - src = fetchFromGitHub { - owner = "DanielG"; - repo = "ghc-mod"; - rev = "a96d820753030fb8de0944727ddc3fed191eab00"; - sha256 = "1xdb4482i03lily4lj41y9wsadh2qwqmh8wrzzal966gqk4m25i4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ghc"; - sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; - name = "recipe"; - }; - packageRequires = [ haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/ghc"; - license = lib.licenses.free; - }; - }) {}; - ghc-imported-from = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ghc-imported-from"; - ename = "ghc-imported-from"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "ghc-imported-from-el"; - rev = "fcff08628a19f5d26151564659218cc677779b79"; - sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ghc-imported-from"; - sha256 = "063kbymk4r1yrg5ks660d2byrnia6gs6nimjzrvqfi2ib1psc7jc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ghc-imported-from"; - license = lib.licenses.free; - }; - }) {}; - ghq = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ghq"; - ename = "ghq"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "rcoedo"; - repo = "emacs-ghq"; - rev = "aae4b8cb22fd6c24d2c9e3962c7e8e9dac6d9825"; - sha256 = "0rh2k93c3a0vl073a3s3a3h6gkw454v1lyd7y8l3pd24vw9hc628"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9daa3b0039f6b296b8176523cffbbe27506bb02/recipes/ghq"; - sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ghq"; - license = lib.licenses.free; - }; - }) {}; - ghub = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , graphql - , let-alist - , lib - , melpaBuild - , treepy }: - melpaBuild { - pname = "ghub"; - ename = "ghub"; - version = "3.2.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "ghub"; - rev = "1a886a9910b3fe9f51624322a46d3ef5f9e83ae8"; - sha256 = "0mw48z3nfh1yrw9phb9da4705mrwmc7f2zbwn5hdpvw0ga2hd2qn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f403587f77380d1db214aa34933a9b5cce1ef2bd/recipes/ghub"; - sha256 = "15kjyi8ialpr1zjqvw68w9pa5sigcwy2szq21yvcy295z7ylzy4i"; - name = "recipe"; - }; - packageRequires = [ dash emacs graphql let-alist treepy ]; - meta = { - homepage = "https://melpa.org/#/ghub"; - license = lib.licenses.free; - }; - }) {}; - ghub-plus = callPackage ({ apiwrap - , emacs - , fetchFromGitHub - , fetchurl - , ghub - , lib - , melpaBuild }: - melpaBuild { - pname = "ghub-plus"; - ename = "ghub+"; - version = "0.3"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "ghub-plus"; - rev = "b4a9662f5a6562f8d1dfdda2f009ec78a107c9a2"; - sha256 = "0xi7xhdla64xbcfqi8x8yzqc6v6rrqxd4q8lcrv7sw08ap5ykfas"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03a412fd25218ff6f302734e078a699ff0234e36/recipes/ghub+"; - sha256 = "0xx7nwmjx3f7z6z164x1lb9arbb3m3d16mpn92v66w572rhbr34n"; - name = "recipe"; - }; - packageRequires = [ apiwrap emacs ghub ]; - meta = { - homepage = "https://melpa.org/#/ghub+"; - license = lib.licenses.free; - }; - }) {}; - gist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , melpaBuild }: - melpaBuild { - pname = "gist"; - ename = "gist"; - version = "1.4.0"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "gist.el"; - rev = "a03f142455e8b39f77fbd57ee1c1e44478c1f9e2"; - sha256 = "1xisjaxr54zrxzxj8cp8f90kzphd5v3j56d14534fm5r1f5343vp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/gist"; - sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; - name = "recipe"; - }; - packageRequires = [ emacs gh ]; - meta = { - homepage = "https://melpa.org/#/gist"; - license = lib.licenses.free; - }; - }) {}; - git = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "git"; - ename = "git"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "git.el"; - rev = "8b7f1477ef367b5b7de452589dd9a8ab30150d0a"; - sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce19d2716416295966716db47241a0e37b412ab5/recipes/git"; - sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/git"; - license = lib.licenses.free; - }; - }) {}; - git-annex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-annex"; - ename = "git-annex"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "git-annex-el"; - rev = "7d41775a1709b5754a7779e9f64f15d336ea5c8c"; - sha256 = "0fm62lm29wp1ljgyi6pqqkzwzps53cjjbj5j3y0c2013ry7va6c5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c91e16bb9e92db9dc9be6a7af3944c3290d2f14/recipes/git-annex"; - sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-annex"; - license = lib.licenses.free; - }; - }) {}; - git-attr = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-attr"; - ename = "git-attr"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "arnested"; - repo = "emacs-git-attr"; - rev = "3e43a0cf616b00a4bbd3c6b49fd2397f3103796f"; - sha256 = "1alpr4gnkikwzljz0fdbrx5hs3zy5s2fz7qyxdz0nx9hv8zb5ir5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3417e4bc586df60b5e6239b1f7683b87953f5b7c/recipes/git-attr"; - sha256 = "084l3zdcgy1ka2wq1fz9d6ryhg38gxvr52njlv43gwibzvbqniyi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-attr"; - license = lib.licenses.free; - }; - }) {}; - git-auto-commit-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-auto-commit-mode"; - ename = "git-auto-commit-mode"; - version = "4.4.0"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "git-auto-commit-mode"; - rev = "075e5f9ded66c2035581a7b216896556cc586814"; - sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5660fb76ce93e5fe56227698d079c6994ef3305f/recipes/git-auto-commit-mode"; - sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-auto-commit-mode"; - license = lib.licenses.free; - }; - }) {}; - git-command = callPackage ({ fetchFromGitHub - , fetchurl - , git-ps1-mode - , lib - , melpaBuild - , term-run - , with-editor }: - melpaBuild { - pname = "git-command"; - ename = "git-command"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "git-command-el"; - rev = "6cc5c17ca3cc1967b5402bb9a0538fb90933428d"; - sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55d697bc95a7026c7788c13e4765e1b71075e3/recipes/git-command"; - sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; - name = "recipe"; - }; - packageRequires = [ git-ps1-mode term-run with-editor ]; - meta = { - homepage = "https://melpa.org/#/git-command"; - license = lib.licenses.free; - }; - }) {}; - git-commit = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , with-editor }: - melpaBuild { - pname = "git-commit"; - ename = "git-commit"; - version = "2.90.1"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = "791901b2f1d26fa0a383147fe77948a9abc753da"; - sha256 = "1kw94sdczswsyzn1zlk5s5aplpdv4qd7qcqc5zfxsmsfwm3jacl4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/git-commit"; - sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; - name = "recipe"; - }; - packageRequires = [ dash emacs with-editor ]; - meta = { - homepage = "https://melpa.org/#/git-commit"; - license = lib.licenses.free; - }; - }) {}; - git-commit-insert-issue = callPackage ({ bitbucket - , fetchFromGitLab - , fetchurl - , github-issues - , gitlab - , helm - , lib - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "git-commit-insert-issue"; - ename = "git-commit-insert-issue"; - version = "0.3.1"; - src = fetchFromGitLab { - owner = "emacs-stuff"; - repo = "git-commit-insert-issue"; - rev = "5f08c17bf93b17915415d435ee41923d924fe20b"; - sha256 = "11my5apnyhdqh0pmq9wdjd1iah415a5nw87sk586cb3vxnbn5qas"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/git-commit-insert-issue"; - sha256 = "0xhlchr7dbm0hp4cjba3x1fdf7lnfc97id327i2fqgkdc4yn9fax"; - name = "recipe"; - }; - packageRequires = [ bitbucket github-issues gitlab helm projectile s ]; - meta = { - homepage = "https://melpa.org/#/git-commit-insert-issue"; - license = lib.licenses.free; - }; - }) {}; - git-gutter = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter"; - ename = "git-gutter"; - version = "0.90"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-gutter"; - rev = "a786465bd527c13e32c73c02b95086560c1be878"; - sha256 = "1abagq0psip7cgsqbfjv72qy60ywsny0ibsfcn74ldj6a9v17mz5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter"; - sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/git-gutter"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-fringe = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , fringe-helper - , git-gutter - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-fringe"; - ename = "git-gutter-fringe"; - version = "0.23"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-gutter-fringe"; - rev = "dfc93d1064df154a809aab350942830408051da3"; - sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/git-gutter-fringe"; - sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs fringe-helper git-gutter ]; - meta = { - homepage = "https://melpa.org/#/git-gutter-fringe"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-fringe-plus = callPackage ({ fetchFromGitHub - , fetchurl - , fringe-helper - , git-gutter-plus - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-fringe-plus"; - ename = "git-gutter-fringe+"; - version = "0.1"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "git-gutter-fringe-plus"; - rev = "ce9d594c0189e78d78df26a0c26bbcf886e373cd"; - sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad46c349d13f7d40db706b487319ede40b96b09c/recipes/git-gutter-fringe+"; - sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; - name = "recipe"; - }; - packageRequires = [ fringe-helper git-gutter-plus ]; - meta = { - homepage = "https://melpa.org/#/git-gutter-fringe+"; - license = lib.licenses.free; - }; - }) {}; - git-gutter-plus = callPackage ({ fetchFromGitHub - , fetchurl - , git-commit - , lib - , melpaBuild }: - melpaBuild { - pname = "git-gutter-plus"; - ename = "git-gutter+"; - version = "0.4"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "git-gutter-plus"; - rev = "f8daebb6569bb116086d8653da3505382e03d940"; - sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2db25d23c2a1a4f38867aac25d687a150e95c2b/recipes/git-gutter+"; - sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; - name = "recipe"; - }; - packageRequires = [ git-commit ]; - meta = { - homepage = "https://melpa.org/#/git-gutter+"; - license = lib.licenses.free; - }; - }) {}; - git-identity = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "git-identity"; - ename = "git-identity"; - version = "0.1"; - src = fetchFromGitHub { - owner = "akirak"; - repo = "git-identity.el"; - rev = "11d6b495f84d35160c3e25e534e3885d419812f6"; - sha256 = "13wg28glsdy63x2m99w2d6waadyw3q7hrn7r42hn566b6a85hz04"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebad3a7a81fbf0293ac04ba319929c8b24bb98f5/recipes/git-identity"; - sha256 = "0kmpm5zp2x60r68in94x2bazq4wxx95n6zfc6mwiq8ln8m0164j0"; - name = "recipe"; - }; - packageRequires = [ dash emacs f hydra ]; - meta = { - homepage = "https://melpa.org/#/git-identity"; - license = lib.licenses.free; - }; - }) {}; - git-lens = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-lens"; - ename = "git-lens"; - version = "0.7.0"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "git-lens"; - rev = "ea49e2e005af977a08331f8caa8f64d102b3b932"; - sha256 = "0prx0xbnhhp46c09nnzpz07jgr3s5ngrw8zjksf48abr8acwywfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/git-lens"; - sha256 = "02a393b5y4vpmf9ixgyi3a4gbzk4146zql827ljlav3j0434ssw2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-lens"; - license = lib.licenses.free; - }; - }) {}; - git-link = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-link"; - ename = "git-link"; - version = "0.7.3"; - src = fetchFromGitHub { - owner = "sshaw"; - repo = "git-link"; - rev = "1dbabfed4c5c3c5ac6ffa9035a9c3d4c6cc7f885"; - sha256 = "1b115d5rsb9m8lqjplg3qp0bxfc5cij5fgp0j21zspqwqvj7h0hq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1385443585e628e3d4efb3badb7611e9d653e0c9/recipes/git-link"; - sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/git-link"; - license = lib.licenses.free; - }; - }) {}; - git-messenger = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "git-messenger"; - ename = "git-messenger"; - version = "0.18"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-git-messenger"; - rev = "9297464c010dd8a2d584ac8e012876856655a8b5"; - sha256 = "04fnby2nblk8l70gv09asxkmnn53fh1pdfs77ix44npp99fyw8ix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e791293133f30e5d96c4b29e972f9016c06c476d/recipes/git-messenger"; - sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/git-messenger"; - license = lib.licenses.free; - }; - }) {}; - git-ps1-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "git-ps1-mode"; - ename = "git-ps1-mode"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "git-ps1-mode-el"; - rev = "288e5c4d0ff20a4e1ac9e72b6af632f67f1d7525"; - sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea177b5ea168828881bd8dcd29ef6b4cb81317f0/recipes/git-ps1-mode"; - sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/git-ps1-mode"; - license = lib.licenses.free; - }; - }) {}; - git-timemachine = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , transient }: - melpaBuild { - pname = "git-timemachine"; - ename = "git-timemachine"; - version = "4.10"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "git-timemachine"; - rev = "b97f93d66cffcd69281346845d3a1e32197eda29"; - sha256 = "08zsn3lsnnf01wkv5ls38jga02s5dnf0j3gigy4qd6im3j3d04m1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/git-timemachine"; - sha256 = "06xdzic7j3d3pqgwxp1q6fs8sf3mi02a9phjvhk90kyvbr8h94ck"; - name = "recipe"; - }; - packageRequires = [ emacs transient ]; - meta = { - homepage = "https://melpa.org/#/git-timemachine"; - license = lib.licenses.free; - }; - }) {}; - git-wip-timemachine = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "git-wip-timemachine"; - ename = "git-wip-timemachine"; - version = "1.0"; - src = fetchFromGitHub { - owner = "itsjeyd"; - repo = "git-wip-timemachine"; - rev = "ae1600263608c7b84f6f136fca929875cd385bc1"; - sha256 = "1y5h817lymsaqpj8wv3hha36ihspv4c17mwl020x91r82ijd1aym"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81b5dd5765f52efdb88fdc14f48af641a18b3dcb/recipes/git-wip-timemachine"; - sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/git-wip-timemachine"; - license = lib.licenses.free; - }; - }) {}; - gitattributes-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitattributes-mode"; - ename = "gitattributes-mode"; - version = "1.2.8"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "95ad581ae2aeba87b418ae9554eb326cdba9837d"; - sha256 = "15irwyc0fmp0k5dag1n07xa8ka7n84drbrg2savslvb9m71011dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b4e2ddd2a80875afc0fc654052e6cbff2f3777f/recipes/gitattributes-mode"; - sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitattributes-mode"; - license = lib.licenses.free; - }; - }) {}; - gitconfig = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitconfig"; - ename = "gitconfig"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "gitconfig.el"; - rev = "6c313a39e20702ddcebc12d146f69db1ce668901"; - sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gitconfig"; - sha256 = "0lqm04nfhhhsdagrjnnagkpg7vpswd8lkd3l52lmpdh0fy16kgrf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitconfig"; - license = lib.licenses.free; - }; - }) {}; - gitconfig-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitconfig-mode"; - ename = "gitconfig-mode"; - version = "1.2.8"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "ae6e897c06d3ff609a65a3ac2500d21ccc888822"; - sha256 = "111pm9wwq8p3wiqgap7gyi20say3daadlaxgq2v3mwxyax8fyx34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitconfig-mode"; - sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitconfig-mode"; - license = lib.licenses.free; - }; - }) {}; - github-browse-file = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-browse-file"; - ename = "github-browse-file"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "osener"; - repo = "github-browse-file"; - rev = "fa5cc00a40869430fb44596792961a4cddf9c265"; - sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8bca60348fc5e2ad55663e69b8690093cf861ca/recipes/github-browse-file"; - sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/github-browse-file"; - license = lib.licenses.free; - }; - }) {}; - github-clone = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "github-clone"; - ename = "github-clone"; - version = "0.2"; - src = fetchFromGitHub { - owner = "dgtized"; - repo = "github-clone.el"; - rev = "ab048cf49d9ebda73acae803bc44e731e629d540"; - sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba11d6a5cc2fbc76037687c842f90dc815a6468e/recipes/github-clone"; - sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; - name = "recipe"; - }; - packageRequires = [ emacs gh magit ]; - meta = { - homepage = "https://melpa.org/#/github-clone"; - license = lib.licenses.free; - }; - }) {}; - github-elpa = callPackage ({ commander - , fetchFromGitHub - , fetchurl - , git - , lib - , melpaBuild - , package-build }: - melpaBuild { - pname = "github-elpa"; - ename = "github-elpa"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "github-elpa"; - rev = "649e66cd84e5af6f7fe13fd502e799d19aac0cda"; - sha256 = "09q6v0vsk344chzwp6sp5cwyr7hkvzi2r1w6xxg1zwy7rzy4klfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81ec06e370f51b750ba3313b661d7386710cffb0/recipes/github-elpa"; - sha256 = "1981dnz49l5r4qsn49i4dhy6x4ln0haff6gl2zx0p5p0zfkzbi7x"; - name = "recipe"; - }; - packageRequires = [ commander git package-build ]; - meta = { - homepage = "https://melpa.org/#/github-elpa"; - license = lib.licenses.free; - }; - }) {}; - github-notifier = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "github-notifier"; - ename = "github-notifier"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "github-notifier.el"; - rev = "f8d011ebef9f626a94a27b5576c8ed06e6ff8987"; - sha256 = "0glkn36fs93y2n1583k8v958qfhl212hbdk3cpkq432hj08wzjnr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c09f4e7e8a84a241881d214e8359f8a50ab14ddf/recipes/github-notifier"; - sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/github-notifier"; - license = lib.licenses.free; - }; - }) {}; - github-search = callPackage ({ fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "github-search"; - ename = "github-search"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "github-search"; - rev = "1a5c1f8291f4d41e57367a8522699cb08eea8fc4"; - sha256 = "1382hda3hgpx3c3d1kjzz8hs4l5hi3s7c485hsgihhr6xdd5wrgm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/733a808400858513137e0e3d7d38b5b25e8ddc5a/recipes/github-search"; - sha256 = "1pwrzbbwnq0il5494561fyvkr0vmm5jqlvpffgkk28c54vs7ms0b"; - name = "recipe"; - }; - packageRequires = [ gh magit ]; - meta = { - homepage = "https://melpa.org/#/github-search"; - license = lib.licenses.free; - }; - }) {}; - gitignore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gitignore-mode"; - ename = "gitignore-mode"; - version = "1.2.8"; - src = fetchFromGitHub { - owner = "magit"; - repo = "git-modes"; - rev = "ae6e897c06d3ff609a65a3ac2500d21ccc888822"; - sha256 = "111pm9wwq8p3wiqgap7gyi20say3daadlaxgq2v3mwxyax8fyx34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44a37f59b87f59a587f6681e7aadfabf137c98d7/recipes/gitignore-mode"; - sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gitignore-mode"; - license = lib.licenses.free; - }; - }) {}; - gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "gitlab"; - ename = "gitlab"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "cffba49c1260421b8e388c65365b229970098e5c"; - sha256 = "1wh6z7ni8nwqigvgz77zgqszx60s1k1chpzgzs1k3kfby7apxww1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/gitlab"; - sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/gitlab"; - license = lib.licenses.free; - }; - }) {}; - gitlab-ci-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "gitlab-ci-mode"; - ename = "gitlab-ci-mode"; - version = "20190425.11.10"; - src = fetchFromGitLab { - owner = "joewreschnig"; - repo = "gitlab-ci-mode"; - rev = "dac4e5125c78aa3ae12d2e35a66196d709676236"; - sha256 = "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode"; - sha256 = "1jg6ihrgccrcwg30ysyqw9k7rmvfmsrp70skr2057hfamvccwn4f"; - name = "recipe"; - }; - 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"; - ename = "gitlab-ci-mode-flycheck"; - version = "20180304.1"; - src = fetchFromGitLab { - owner = "joewreschnig"; - repo = "gitlab-ci-mode-flycheck"; - rev = "388fd05f3ea88ed3ebafb09868fc021f6ecc7625"; - sha256 = "0idpg4265rfx5i0i8cgfs6w3gncc766mbg81ldxqjhzvq3n28z39"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d7915ddcf21fdec539a86bb86c209cf0bbd378cb/recipes/gitlab-ci-mode-flycheck"; - sha256 = "19ixd60yynsvmaj7mkppp6k73793x794vrnhx3hh6n7dap1rsjdh"; - name = "recipe"; - }; - 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"; - ename = "gitpatch"; - version = "0.5.1"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "gitpatch"; - rev = "94d40a2ee2b7cd7b209546ea02568079176b0034"; - sha256 = "1drf4fvmak7brf16axkh4nfz8pg44i7pjhfjz3dbkycbpp8y5vig"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953/recipes/gitpatch"; - sha256 = "0qaswkk06z24v40nkjkv7f6gfv0dlsjd6wchkn0ppqw95883vhv1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gitpatch"; - license = lib.licenses.free; - }; - }) {}; - gitter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "gitter"; - ename = "gitter"; - version = "1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "gitter.el"; - rev = "bd2ba457109dd5d3e4b419e3ef5cbd3b5c9498d6"; - sha256 = "1fzl40bwdfbcq55p3kvbzjqr5w0703imzgrmqcf4f6jhav127zk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b8076c3b4d60e4c505bb6f4e426ecc4f69d74684/recipes/gitter"; - sha256 = "1ad5abqgfh6x2fcqbbdvgbg8xin69j0h93z7bav1hs3jla7mgwnv"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/gitter"; - license = lib.licenses.free; - }; - }) {}; - gl-conf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gl-conf-mode"; - ename = "gl-conf-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "llloret"; - repo = "gitolite-emacs"; - rev = "1a53e548277eb9c669bbeda4bee9be32be7a82ec"; - sha256 = "059m30vvp71y630pcam6qfv5bxc35ygj26wcg28p56pccxxyj3q9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3117e62d429e44506f7d82fc64252d41bc1a4b6/recipes/gl-conf-mode"; - sha256 = "0lf8xmq309aqyf16ymqlr8gj2qawlsqagbdndj0kgj72dnnw4cfm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gl-conf-mode"; - license = lib.licenses.free; - }; - }) {}; - gmail-message-mode = callPackage ({ fetchFromGitHub - , fetchurl - , ham-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "gmail-message-mode"; - ename = "gmail-message-mode"; - version = "1.4"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "gmail-mode"; - rev = "ec36672a9dc93c09ebe2f77597b498d11883d008"; - sha256 = "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/gmail-message-mode"; - sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; - name = "recipe"; - }; - packageRequires = [ ham-mode ]; - meta = { - homepage = "https://melpa.org/#/gmail-message-mode"; - license = lib.licenses.free; - }; - }) {}; - gmail2bbdb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gmail2bbdb"; - ename = "gmail2bbdb"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "gmail2bbdb"; - rev = "181ef6039227bb30a02041d8cfdc435551a7d948"; - sha256 = "0205ldrw1i7czq44pqdl374cl0rjp5w5zadrayw8brl7mmw92byn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb3c88b20a7614504165cd5fb459b0a9d5c73f60/recipes/gmail2bbdb"; - sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gmail2bbdb"; - license = lib.licenses.free; - }; - }) {}; - gmpl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gmpl-mode"; - ename = "gmpl-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "gmpl-mode"; - rev = "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71"; - sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c89a523f87db358c477e5840b0e043e9f253e640/recipes/gmpl-mode"; - sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gmpl-mode"; - license = lib.licenses.free; - }; - }) {}; - gn-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gn-mode"; - ename = "gn-mode"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "lashtear"; - repo = "gn-mode"; - rev = "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2"; - sha256 = "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f5c6c27bce3d0aaf7e3791299a527d5f1fd69653/recipes/gn-mode"; - sha256 = "1rn4xa1am1yd9k2hpi5b0zhs3pgq4hnhgxdgs258cmhszm8c6ii2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/gn-mode"; - license = lib.licenses.free; - }; - }) {}; - gntp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gntp"; - ename = "gntp"; - version = "0.1"; - src = fetchFromGitHub { - owner = "tekai"; - repo = "gntp.el"; - rev = "767571135e2c0985944017dc59b0be79af222ef5"; - sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c69a148d3b72d1be6ea10100a8e0cbbd918baa9c/recipes/gntp"; - sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gntp"; - license = lib.licenses.free; - }; - }) {}; - gnuplot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnuplot"; - ename = "gnuplot"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "bruceravel"; - repo = "gnuplot-mode"; - rev = "aefd4f671485fbcea42511ce79a7a60e5e0110a3"; - sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/78be03893e4b0502ce999375e5630d32bda56ac1/recipes/gnuplot"; - sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gnuplot"; - license = lib.licenses.free; - }; - }) {}; - gnus-desktop-notify = callPackage ({ fetchFromGitLab - , fetchurl - , gnus ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-desktop-notify"; - ename = "gnus-desktop-notify"; - version = "1.4"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "gnus-desktop-notify.el"; - rev = "210c70f0021ee78e724f1d8e00ca96e1e99928ca"; - sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/gnus-desktop-notify"; - sha256 = "1cfcmmq0ywgp41g0rf8s5fabh3yqbv9iacxi7v74kqh59bqdnz3x"; - name = "recipe"; - }; - packageRequires = [ gnus ]; - meta = { - homepage = "https://melpa.org/#/gnus-desktop-notify"; - license = lib.licenses.free; - }; - }) {}; - gnus-recent = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gnus-recent"; - ename = "gnus-recent"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "gnus-recent"; - rev = "df85e5810c02f613bfa6e236674de969d6e00ae1"; - sha256 = "0hvsp9y0vzcr9c2wglh0wdavjmp2n2hbhlsr1bfvnfxk97ka0y5r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b80d94cf1a8b8e2d4da5d45f65231aa4884a3a0/recipes/gnus-recent"; - sha256 = "14xac6bmn61bk0h6dby14111iijz0j254v4mh77lf0ydbz6wxjf1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gnus-recent"; - license = lib.licenses.free; - }; - }) {}; - gnus-x-gm-raw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "gnus-x-gm-raw"; - ename = "gnus-x-gm-raw"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "gnus-x-gm-raw"; - rev = "c2c8c5e94ac94f4c40e023452119c088ac59eac9"; - sha256 = "0gf418ri69yzi9cbxdyna9kxjsniyw72xix2r94m439k1axpwa3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/263b87e40e32421ae56a99971a7e1baca0484778/recipes/gnus-x-gm-raw"; - sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/gnus-x-gm-raw"; - license = lib.licenses.free; - }; - }) {}; - go-add-tags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "go-add-tags"; - ename = "go-add-tags"; - version = "0.4"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-add-tags"; - rev = "54879945e46a0884c5f93d7fd6c866a9cdf401ac"; - sha256 = "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/55d3b893bd68d3d2d86ecdbb4ed442edd256516a/recipes/go-add-tags"; - sha256 = "0nvas44rsvqzk2ay5bhzkbrnzql13vnxq9pk4lp4mvp86dda9qim"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/go-add-tags"; - license = lib.licenses.free; - }; - }) {}; - go-autocomplete = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-autocomplete"; - ename = "go-autocomplete"; - version = "20150303"; - src = fetchFromGitHub { - owner = "mdempsky"; - repo = "gocode"; - rev = "b6fffd0527b4ab22df0170d7243317ab2773622e"; - sha256 = "1kdicb69dlm06r3skfk8bxygyjr5cvymal8fvbd8zzzfdzgnj7lg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3/recipes/go-autocomplete"; - sha256 = "15ns1zzw6kblcbih7dmjvk1p0f6f3p2wpgx4gnd9ax0fcj65ghwi"; - name = "recipe"; - }; - packageRequires = [ auto-complete ]; - meta = { - homepage = "https://melpa.org/#/go-autocomplete"; - license = lib.licenses.free; - }; - }) {}; - go-direx = callPackage ({ cl-lib ? null - , direx - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-direx"; - ename = "go-direx"; - version = "0.4"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-direx"; - rev = "aecb9fef4d56d04d230d37c75c260c8392b5ad9f"; - sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/032c0c3cd04f36f1bc66bb7d9d789d354c620a09/recipes/go-direx"; - sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; - name = "recipe"; - }; - packageRequires = [ cl-lib direx ]; - meta = { - homepage = "https://melpa.org/#/go-direx"; - license = lib.licenses.free; - }; - }) {}; - go-dlv = callPackage ({ fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-dlv"; - ename = "go-dlv"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "benma"; - repo = "go-dlv.el"; - rev = "df03ade331d8fb46acc57ef358e696bc36129e04"; - sha256 = "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/go-dlv"; - sha256 = "0lb5v9pmd6m8nvk4c9gcda5dmshrf5812gg1arq5p2g0nzg32mm8"; - name = "recipe"; - }; - packageRequires = [ go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-dlv"; - license = lib.licenses.free; - }; - }) {}; - go-eldoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-eldoc"; - ename = "go-eldoc"; - version = "0.30"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-eldoc"; - rev = "f1ad302ec4073354801e613293be2f55ba770618"; - sha256 = "0hkwhmgjyn5jxrd0k1nakrvy4d7cz7sxb1nw4hb1rqmz4yd14c8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ce1190db06cc214746215dd27648eded5fe5140/recipes/go-eldoc"; - sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-eldoc"; - license = lib.licenses.free; - }; - }) {}; - go-errcheck = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-errcheck"; - ename = "go-errcheck"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-errcheck.el"; - rev = "1b0cd6af048a8b2074ace14ab51fb6c987beb430"; - sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c874f608a55cafcc6e57ca2c80bdae6b1c2e47e9/recipes/go-errcheck"; - sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-errcheck"; - license = lib.licenses.free; - }; - }) {}; - go-fill-struct = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-fill-struct"; - ename = "go-fill-struct"; - version = "0.1"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "go-fill-struct"; - rev = "814ccc8c5e50e6be4190259439c450afe7fb6ef4"; - sha256 = "0zkdff390b00y0g1gfm2pgniq7allda55544cw7ccsvdaqayyhjc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c03d2382efd20e248b27b5505cdeed67d000f73/recipes/go-fill-struct"; - sha256 = "19xxqb836saxigvwdqf4xv0y9zrl7csv97x0facgyjyiqmwhx3x7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/go-fill-struct"; - license = lib.licenses.free; - }; - }) {}; - go-guru = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-guru"; - ename = "go-guru"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "d13feb239b13b910ec4db19356f34c3801299407"; - sha256 = "1a1c1b7isa9smazfnr8w2wzxxjzz3xcr6l3dvmq41g752wfakb3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-guru"; - sha256 = "01f0gz65z8d0iv8k49xl2sp6q4qnsvwhd4g8fb2irp7iclb0xmvk"; - name = "recipe"; - }; - packageRequires = [ cl-lib go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-guru"; - license = lib.licenses.free; - }; - }) {}; - go-imenu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-imenu"; - ename = "go-imenu"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "go-imenu.el"; - rev = "fc1566fbe396fc8c94f7de99d9c7191b47cd48d9"; - sha256 = "0qygxqrzx009cd59b452ampakr9rwmj1skl8pic9an4wjz742qlg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d602b6071787018e3e0a68b4852eb978b34acbea/recipes/go-imenu"; - sha256 = "0s8rc7rkqlywrhnm2h8yygn87jhjc492wmsvnr1rxl62wf5cijms"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/go-imenu"; - license = lib.licenses.free; - }; - }) {}; - go-impl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-impl"; - ename = "go-impl"; - version = "0.14"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-go-impl"; - rev = "69f0d0ef05771487e15abec500cd06befd171abf"; - sha256 = "1rmik6g3l9q1bqavmqx1fhcadz4pwswgfnkbaxl6c5b6g2sl26iq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa1a0845cc1a6970018b397d13394aaa8147e5d0/recipes/go-impl"; - sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-impl"; - license = lib.licenses.free; - }; - }) {}; - go-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "go-mode"; - ename = "go-mode"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "35f6826e435c3004dabf134d0f2ae2f31ea7b6a2"; - sha256 = "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5/recipes/go-mode"; - sha256 = "0ghqm4lbkfla79plqiyb1lzf5kbz0380h9vf8px15zal00xrv0bl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/go-mode"; - license = lib.licenses.free; - }; - }) {}; - go-playground = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , gotest - , lib - , melpaBuild }: - melpaBuild { - pname = "go-playground"; - ename = "go-playground"; - version = "1.3"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "go-playground"; - rev = "eebb1fec2177bc85b746b948beac873a77bea4a2"; - sha256 = "0ixpcms4f0q8327jyp2k48x03vjxwmzdsq76vg4j0kmjs9dfad1v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/900aabb7bc2350698f8740d72a5fad69c9219c33/recipes/go-playground"; - sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode gotest ]; - meta = { - homepage = "https://melpa.org/#/go-playground"; - license = lib.licenses.free; - }; - }) {}; - go-rename = callPackage ({ fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-rename"; - ename = "go-rename"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "dominikh"; - repo = "go-mode.el"; - rev = "d13feb239b13b910ec4db19356f34c3801299407"; - sha256 = "1a1c1b7isa9smazfnr8w2wzxxjzz3xcr6l3dvmq41g752wfakb3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d806abe90da9a8951fdb0c31e2167bde13183c5c/recipes/go-rename"; - sha256 = "1cd2nfgwnqzylbry11ahahdip8w66w5hnrndrs65ip10s08w2xki"; - name = "recipe"; - }; - packageRequires = [ go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-rename"; - license = lib.licenses.free; - }; - }) {}; - go-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-scratch"; - ename = "go-scratch"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "shosti"; - repo = "go-scratch.el"; - rev = "3f68cbcce04f59eb8e83af109164731ec0454be0"; - sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1713e6f02f8908b828ac2722a3185ea7cceb0609/recipes/go-scratch"; - sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-scratch"; - license = lib.licenses.free; - }; - }) {}; - go-tag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "go-tag"; - ename = "go-tag"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "emacs-go-tag"; - rev = "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40"; - sha256 = "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4cd3fd8fb0707912e205b9d71789ea8126c442/recipes/go-tag"; - sha256 = "18ff41i0gr708fl4gzzspf9cc09nv4wy21wsn609yhwlh7w0vs1f"; - name = "recipe"; - }; - packageRequires = [ emacs go-mode ]; - meta = { - homepage = "https://melpa.org/#/go-tag"; - license = lib.licenses.free; - }; - }) {}; - godoctor = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "godoctor"; - ename = "godoctor"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "microamp"; - repo = "godoctor.el"; - rev = "4b45ff3d0572f0e84056e4c3ba91fcc178199859"; - sha256 = "12gga1ghc54r6f2adyaq30hm2yxspvgg54zd4k82c3d6cj51qwci"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0e23e1362ff7d477ad9ce6cfff694db989dfb87b/recipes/godoctor"; - sha256 = "0k734hry9npsr6zhsplcvmcjqw6jdf79pv4k9dw0xvd598hkpazz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/godoctor"; - license = lib.licenses.free; - }; - }) {}; - golden-ratio = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "golden-ratio"; - ename = "golden-ratio"; - version = "1.0"; - src = fetchFromGitHub { - owner = "roman"; - repo = "golden-ratio.el"; - rev = "79b1743fc1a2f3462445e9ddd0a869f30065bb6d"; - sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e87b2af052d0406431957d75aa3717899bdbc8ae/recipes/golden-ratio"; - sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/golden-ratio"; - license = lib.licenses.free; - }; - }) {}; - google-maps = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-maps"; - ename = "google-maps"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "jd"; - repo = "google-maps.el"; - rev = "90151ab59e693243ca8da660ce7b9ce361ea5126"; - sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/google-maps"; - sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/google-maps"; - license = lib.licenses.free; - }; - }) {}; - google-this = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-this"; - ename = "google-this"; - version = "1.12"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "emacs-google-this"; - rev = "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84"; - sha256 = "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/google-this"; - sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/google-this"; - license = lib.licenses.free; - }; - }) {}; - google-translate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "google-translate"; - ename = "google-translate"; - version = "0.11.17"; - src = fetchFromGitHub { - owner = "atykhonov"; - repo = "google-translate"; - rev = "bf119aac424994d2aa91fce9630adc01ed0ea617"; - sha256 = "05ljjw7kbnszygw3w085kv57swfiiqxri2b5xvsf5dw3pc3g7j3c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3c275e59cbfe6e40f9cd4c470fc66544c9a6d21/recipes/google-translate"; - sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/google-translate"; - license = lib.licenses.free; - }; - }) {}; - gorepl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gorepl-mode"; - ename = "gorepl-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "manute"; - repo = "gorepl-mode"; - rev = "17e025951f5964a0542a4b353ddddbc734c01eed"; - sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/gorepl-mode"; - sha256 = "0xcjjh9hf3pv5jgv089c6bb00s215fc9qwn72fav1xbm5f49nkaq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gorepl-mode"; - license = lib.licenses.free; - }; - }) {}; - gotest = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gotest"; - ename = "gotest"; - version = "0.14.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "gotest.el"; - rev = "8a5ef7363f83edb3b77c5e23876f13dd8c23b2b9"; - sha256 = "1ksi37kmy9mnrjr5lf9f0ga5nvi3r2kc85g6yvdfj0mbsjm1pnp7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/gotest"; - sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; - name = "recipe"; - }; - packageRequires = [ emacs f go-mode s ]; - meta = { - homepage = "https://melpa.org/#/gotest"; - license = lib.licenses.free; - }; - }) {}; - gotham-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gotham-theme"; - ename = "gotham-theme"; - version = "1.1.8"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "gotham-theme"; - rev = "417d61978d139cb5d089c5365fc8d3166d76d3ac"; - sha256 = "0rc40cfj2mby1q7bk1pp1fxdi72nh9ip80spjdm1csvjjc4dbkwr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b388de872be397864a1217a330ba80437c287c0/recipes/gotham-theme"; - sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gotham-theme"; - license = lib.licenses.free; - }; - }) {}; - goto-chg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-chg"; - ename = "goto-chg"; - version = "1.7.3"; - src = fetchFromGitHub { - owner = "emacs-evil"; - repo = "goto-chg"; - rev = "16a63aae80db90713fb1f7d378c5d591c2ce15ff"; - sha256 = "0kpalpssfrwcqrmp47i3j2x04m01fm7cspwsm6fks8pn71lagcwm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf1fc176430fe3ab55ce537a0efc59780bb812be/recipes/goto-chg"; - sha256 = "1yd4jq4zql4av9nr1sdk4nsnnk54c3brgjhpczndy1ipiaxlnydy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/goto-chg"; - license = lib.licenses.free; - }; - }) {}; - goto-gem = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "goto-gem"; - ename = "goto-gem"; - version = "1.2"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "goto-gem"; - rev = "6f5bd405c096ef879fed1298c09d0daa0bae5dac"; - sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/goto-gem"; - sha256 = "0i79z1isdbnqmz5rlqjjys68l27nl90m1gzks4f9d6dsgfryhgwx"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/goto-gem"; - license = lib.licenses.free; - }; - }) {}; - goto-last-change = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "goto-last-change"; - ename = "goto-last-change"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "camdez"; - repo = "goto-last-change.el"; - rev = "58b0928bc255b47aad318cd183a5dce8f62199cc"; - sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d68945f5845e5e44fb6c11726a56acd4dc56e101/recipes/goto-last-change"; - sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/goto-last-change"; - license = lib.licenses.free; - }; - }) {}; - govc = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , magit-popup - , melpaBuild - , s }: - melpaBuild { - pname = "govc"; - ename = "govc"; - version = "0.20.1"; - src = fetchFromGitHub { - owner = "vmware"; - repo = "govmomi"; - rev = "e3a01f9611c32b2362366434bcd671516e78955d"; - sha256 = "0cicd4m8ll7y1n0c97drmvmqwsqaspwpzc6nfp73f887m8ff1xis"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92d6391318021c63b06fe39b0ca38f667bb45ae9/recipes/govc"; - sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; - name = "recipe"; - }; - packageRequires = [ dash emacs json-mode magit-popup s ]; - meta = { - homepage = "https://melpa.org/#/govc"; - license = lib.licenses.free; - }; - }) {}; - gpastel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gpastel"; - ename = "gpastel"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "gpastel"; - rev = "8a5522b274f79d55d7c9a0b2aaf062526f9253c7"; - sha256 = "01pnnqcxni55xr7r2lxcnsqiszm2w5iwnjcwp748p1faq6ywhi19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b70e05ff0a074f9e2f1373e8495dc8df462deea/recipes/gpastel"; - sha256 = "0mjy4n26s89b481dby018l80glgfwfaacihmd7vhh2c75ns671a6"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gpastel"; - license = lib.licenses.free; - }; - }) {}; - grab-mac-link = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grab-mac-link"; - ename = "grab-mac-link"; - version = "0.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "grab-mac-link.el"; - rev = "8bf05a69758fd10a4303c5c458cd91a49ab8b1b2"; - sha256 = "12x47k3mm5hvhgn7fmfi7bqfa3naz8w1sx6fl3rmnbzvldb89i1k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4cc8a72a9f161f024ed9415ad281dbea5f07a18/recipes/grab-mac-link"; - sha256 = "1a4wyvx1mlgnd45nn99lwy3vaiwhi1nrphfln86pb6z939dxakj3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/grab-mac-link"; - license = lib.licenses.free; - }; - }) {}; - grab-x-link = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grab-x-link"; - ename = "grab-x-link"; - version = "0.5"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "grab-x-link"; - rev = "d19f0c0da0ddc55005a4c1cdc2b8c5de8bea1e8c"; - sha256 = "1l9jg2w8ym169b5dhg3k5vksbmicg4n1a55x7ddjysf8n887cpid"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/64d4d4e6f9d6a3ea670757f248afd355baf1d933/recipes/grab-x-link"; - sha256 = "1kni49n1v716w4hjfm49mk25jshfc6idpby0k58qvngbfqk3kzy5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/grab-x-link"; - license = lib.licenses.free; - }; - }) {}; - gradle-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gradle-mode"; - ename = "gradle-mode"; - version = "0.5.5"; - src = fetchFromGitHub { - owner = "jacobono"; - repo = "emacs-gradle-mode"; - rev = "579de06674551919cddac9cfe42129f4fb0155c9"; - sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/771cc597daebf9b4aa308f8b350af91a515b44c9/recipes/gradle-mode"; - sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/gradle-mode"; - license = lib.licenses.free; - }; - }) {}; - grails = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grails"; - ename = "grails"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "lifeisfoo"; - repo = "emacs-grails"; - rev = "fa638abe5c37f3f8af4fcd32f212453185ce50b1"; - sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be0196207245ea9d23fda09121d624db9ea6d83d/recipes/grails"; - sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/grails"; - license = lib.licenses.free; - }; - }) {}; - grails-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grails-mode"; - ename = "grails-mode"; - version = "2.0"; - src = fetchFromGitHub { - owner = "Groovy-Emacs-Modes"; - repo = "groovy-emacs-modes"; - rev = "50801257d376fd7383ddf9c19ff567183c24ad0b"; - sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/grails-mode"; - sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grails-mode"; - license = lib.licenses.free; - }; - }) {}; - grails-projectile-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "grails-projectile-mode"; - ename = "grails-projectile-mode"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "yveszoundi"; - repo = "grails-projectile-mode"; - rev = "8efca50ce92b556fe9d467b157d7aec635bcc017"; - sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35d49029c1f665ad40e543040d98d5a770bfea96/recipes/grails-projectile-mode"; - sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs projectile ]; - meta = { - homepage = "https://melpa.org/#/grails-projectile-mode"; - license = lib.licenses.free; - }; - }) {}; - grandshell-theme = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grandshell-theme"; - ename = "grandshell-theme"; - version = "1.3"; - src = fetchgit { - url = "https://framagit.org/steckerhalter/grandshell-theme.git"; - rev = "8e18bfcfb66db8591ce742308a40b6341e75d335"; - sha256 = "13y3plbia4vli9c3mv01nf520zh7ilzywpqj0nsl7x6pzw9fx0np"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0a8eb0eefe88b4ea683a4743c0f8393506e014b/recipes/grandshell-theme"; - sha256 = "1r0r0r0g116f4jp3rip8mjqqgdam4h5dr5qvdglr9xpirfcw6wq3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grandshell-theme"; - license = lib.licenses.free; - }; - }) {}; - graphene = callPackage ({ company - , dash - , exec-path-from-shell - , fetchFromGitHub - , fetchurl - , flycheck - , graphene-meta-theme - , ido-completing-read-plus - , lib - , melpaBuild - , ppd-sr-speedbar - , smartparens - , smex - , sr-speedbar - , web-mode }: - melpaBuild { - pname = "graphene"; - ename = "graphene"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "graphene"; - rev = "cc8477fcfb7771ea4e5bbaf3c01f9e679234c1c1"; - sha256 = "0j0igcmfl61c4pakqmyxpwr4kjar9i81vkl84rw19phc7k9497nb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0206d6adcb7855c2174c3cd506b71c21def1209b/recipes/graphene"; - sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; - name = "recipe"; - }; - packageRequires = [ - company - dash - exec-path-from-shell - flycheck - graphene-meta-theme - ido-completing-read-plus - ppd-sr-speedbar - smartparens - smex - sr-speedbar - web-mode - ]; - meta = { - homepage = "https://melpa.org/#/graphene"; - license = lib.licenses.free; - }; - }) {}; - graphene-meta-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphene-meta-theme"; - ename = "graphene-meta-theme"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "graphene-meta-theme"; - rev = "8e75528529f460b1b5910467c4fc1f516e1a57b9"; - sha256 = "03wllxivl95gsknjkmljm3kgjkwixwxaksaxv8i9c0zjrb2wwm24"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44af719ede73c9fe7787272d7868587ce8966e3d/recipes/graphene-meta-theme"; - sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/graphene-meta-theme"; - license = lib.licenses.free; - }; - }) {}; - graphql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphql"; - ename = "graphql"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "graphql.el"; - rev = "672dd9ebd7e67d8089388b0c484cd650e76565f3"; - sha256 = "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e801ae56f11b64a5a3e52cf1a6c152940ab8c97/recipes/graphql"; - sha256 = "139fng2psn535ymqa7c6hm1r7ja1gs5mdvb487jj6fh0bl9wq8la"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/graphql"; - license = lib.licenses.free; - }; - }) {}; - graphviz-dot-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "graphviz-dot-mode"; - ename = "graphviz-dot-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "ppareit"; - repo = "graphviz-dot-mode"; - rev = "7301cc276206b6995d265bcb9eb308bb83c760be"; - sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e2f1e66b33fd95142be4622c996911e38d56281/recipes/graphviz-dot-mode"; - sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/graphviz-dot-mode"; - license = lib.licenses.free; - }; - }) {}; - grapnel = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grapnel"; - ename = "grapnel"; - version = "0.5.3"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "grapnel"; - rev = "7387234eb3f0285a490fddb1e06a4bf029719fb7"; - sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd482e4b2c45921b81c5fb3dfce53acfec3c3093/recipes/grapnel"; - sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grapnel"; - license = lib.licenses.free; - }; - }) {}; - green-is-the-new-black-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "green-is-the-new-black-theme"; - ename = "green-is-the-new-black-theme"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "fredcamps"; - repo = "green-is-the-new-black-emacs"; - rev = "b8307a377bfb21a99494fa2c5de0b9ba10c3fce6"; - sha256 = "154jymgi58k4z5q7j0p2gclqjsq0w1809ybz7myngbvd0wjmcbp9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e42528d5677fd90515cad47266c07ea3d4363fb/recipes/green-is-the-new-black-theme"; - sha256 = "03q0vj409icmawffy2kd9yl04r453q80cy1p9y4i3xk368z0362g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/green-is-the-new-black-theme"; - license = lib.licenses.free; - }; - }) {}; - green-screen-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "green-screen-theme"; - ename = "green-screen-theme"; - version = "1.0.26"; - src = fetchFromGitHub { - owner = "rbanffy"; - repo = "green-screen-emacs"; - rev = "774e8f6c033786406267f71ec07319d906a30b75"; - sha256 = "0f12lqgfi1vlhq8p5ia04vlmvmyb4f40q7dm2nbh5y8r6k89hisg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/821744ca106f1b74941524782e4581fc93800fed/recipes/green-screen-theme"; - sha256 = "0a45xcl74kp3v39bl169sq46mqxiwvvis6jzwcy6yrl2vqqi4mab"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/green-screen-theme"; - license = lib.licenses.free; - }; - }) {}; - grep-context = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grep-context"; - ename = "grep-context"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "grep-context"; - rev = "4c63d0f2654dee1e249c2054d118d674a757bd45"; - sha256 = "0n2bc9q6bvbfpaqivp3ajy9ad1wr7hfdd98qhnspsap67p73kfn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41dbaf627ae4ef86c222d2b6b5d3523fdb9a4637/recipes/grep-context"; - sha256 = "175s9asbnk2wlgpzc5izcd3vlfvdj064n38myy9qf4awn12c2y1g"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/grep-context"; - license = lib.licenses.free; - }; - }) {}; - grizzl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grizzl"; - ename = "grizzl"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "grizzl"; - repo = "grizzl"; - rev = "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7"; - sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/grizzl"; - sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/grizzl"; - license = lib.licenses.free; - }; - }) {}; - groovy-imports = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "groovy-imports"; - ename = "groovy-imports"; - version = "1.0"; - src = fetchFromGitHub { - owner = "mbezjak"; - repo = "emacs-groovy-imports"; - rev = "e56d7dda617555ec6205644d32ffddf2e1fa43d9"; - sha256 = "060zxl2y4p50g5fwgplgx07h5akfplp49rkv5cx09rqlcyzqhqwa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b18a6842805856062e9452dc32bf0fd458f7d51a/recipes/groovy-imports"; - sha256 = "09yjkwsm192lgala1pvxw47id4j7362sl3j1hn9ald2m8m3ddyfs"; - name = "recipe"; - }; - packageRequires = [ emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/groovy-imports"; - license = lib.licenses.free; - }; - }) {}; - groovy-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "groovy-mode"; - ename = "groovy-mode"; - version = "2.0"; - src = fetchFromGitHub { - owner = "Groovy-Emacs-Modes"; - repo = "groovy-emacs-modes"; - rev = "d7b362e6186d263ec3eefc141dbb5b27a8773f24"; - sha256 = "0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe318b4e51a280a55c01fa30455e4a180df8bd6/recipes/groovy-mode"; - sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/groovy-mode"; - license = lib.licenses.free; - }; - }) {}; - gruber-darker-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gruber-darker-theme"; - ename = "gruber-darker-theme"; - version = "0.6"; - src = fetchFromGitHub { - owner = "rexim"; - repo = "gruber-darker-theme"; - rev = "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4"; - sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/87ade74553c04cb9dcfe16d03f263cc6f1fed046/recipes/gruber-darker-theme"; - sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gruber-darker-theme"; - license = lib.licenses.free; - }; - }) {}; - grunt = callPackage ({ ansi-color ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "grunt"; - ename = "grunt"; - version = "1.3.2"; - src = fetchFromGitHub { - owner = "gempesaw"; - repo = "grunt.el"; - rev = "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9"; - sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/grunt"; - sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; - name = "recipe"; - }; - packageRequires = [ ansi-color dash ]; - meta = { - homepage = "https://melpa.org/#/grunt"; - license = lib.licenses.free; - }; - }) {}; - gruvbox-theme = callPackage ({ autothemer - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gruvbox-theme"; - ename = "gruvbox-theme"; - version = "1.28.0"; - src = fetchFromGitHub { - owner = "greduan"; - repo = "emacs-theme-gruvbox"; - rev = "69a6ddf6c7e8c84174b94900ba71ddd08ec0237f"; - sha256 = "00qq92gp1g55pzm97rh7k0dgxy44pxziridl8kqm4rbpi31r7k9p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/gruvbox-theme"; - sha256 = "12z89fjfqcp9rx2f2x9wcffgxxv3kjn1dabyk0cjf286hgvmgz88"; - name = "recipe"; - }; - packageRequires = [ autothemer ]; - meta = { - homepage = "https://melpa.org/#/gruvbox-theme"; - license = lib.licenses.free; - }; - }) {}; - gscholar-bibtex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gscholar-bibtex"; - ename = "gscholar-bibtex"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "gscholar-bibtex"; - rev = "ba4ce159e385d695d8560e8b06b3cbe48424861c"; - sha256 = "0idnfhk17avp0r4706grjqqkz0xl98gs0bx7wrkvwym3y2gadlz2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9fa546d3dce59b07a623ee83e3befe139dc10481/recipes/gscholar-bibtex"; - sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/gscholar-bibtex"; - license = lib.licenses.free; - }; - }) {}; - gsettings = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , gvariant - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "gsettings"; - ename = "gsettings"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-gsettings"; - rev = "1dd9a6a3036d76d8e680b2764c35b31bf5e6aff7"; - sha256 = "0bv6acy3b6pbjqm24yxgi7xdd3x0c2b7s5sq65sb3lxf8hy5gdf6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ebdd0285684c712748d6353bd2a4774bd97dd521/recipes/gsettings"; - sha256 = "168zq3gp874k66jv8k78i6b1cb9042763aj9wpmcs9bz437hhw32"; - name = "recipe"; - }; - packageRequires = [ dash emacs gvariant s ]; - meta = { - homepage = "https://melpa.org/#/gsettings"; - license = lib.licenses.free; - }; - }) {}; - guide-key = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "guide-key"; - ename = "guide-key"; - version = "1.2.5"; - src = fetchFromGitHub { - owner = "kai2nenobu"; - repo = "guide-key"; - rev = "626f3aacfe4561eddc46617570426246b88e9cab"; - sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/490b81308ae8132d8c3fd8c3951be88159719172/recipes/guide-key"; - sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; - name = "recipe"; - }; - packageRequires = [ popwin ]; - meta = { - homepage = "https://melpa.org/#/guide-key"; - license = lib.licenses.free; - }; - }) {}; - guide-key-tip = callPackage ({ fetchFromGitHub - , fetchurl - , guide-key - , lib - , melpaBuild - , pos-tip }: - melpaBuild { - pname = "guide-key-tip"; - ename = "guide-key-tip"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "guide-key-tip"; - rev = "e08b2585228529aeaae5e0ae0948f898e83a6200"; - sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f23db7563654ab58632d56e3b01d2f78276fc3e/recipes/guide-key-tip"; - sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; - name = "recipe"; - }; - packageRequires = [ guide-key pos-tip ]; - meta = { - homepage = "https://melpa.org/#/guide-key-tip"; - license = lib.licenses.free; - }; - }) {}; - guix = callPackage ({ bui - , dash - , edit-indirect - , emacs - , fetchFromGitHub - , fetchurl - , geiser - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "guix"; - ename = "guix"; - version = "0.5.1.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "guix.el"; - rev = "c4c96663fefe7e007c372e7d24d6e7016b70e4ee"; - sha256 = "1730q2dm84f15ycjdf3dgl2j8770mhr6qnyzxgac3zzkjr8pyvq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3d8c73e8a946b8265487a0825d615d80aa3337d/recipes/guix"; - sha256 = "0h4jwc4h2jv09c6rngb614fc39qfy04rmvqrn1l54hn28s6q7sk9"; - name = "recipe"; - }; - packageRequires = [ bui dash edit-indirect emacs geiser magit-popup ]; - meta = { - homepage = "https://melpa.org/#/guix"; - license = lib.licenses.free; - }; - }) {}; - guru-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "guru-mode"; - ename = "guru-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "guru-mode"; - rev = "62a9a0025249f2f8866b94683c4114c39f48e1fa"; - sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e60af6ccb902d8ef00cfecbb13cafebbe3b00d89/recipes/guru-mode"; - sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/guru-mode"; - license = lib.licenses.free; - }; - }) {}; - gvariant = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsec }: - melpaBuild { - pname = "gvariant"; - ename = "gvariant"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-gvariant"; - rev = "79c34d11ee6a34f190f1641a133d34b0808a1143"; - sha256 = "18ld0wv8r5wlbicqym8vdw33la0bn59s7bxm2fw0w97qwjka8g8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a616ac75f77b1e61e1386bd905b6bcf3d8aaa3f/recipes/gvariant"; - sha256 = "1ycrnfq60z9fycgqmp1y8jna0l0c2b6mlg6ggimb0rml1ili6npm"; - name = "recipe"; - }; - packageRequires = [ emacs parsec ]; - meta = { - homepage = "https://melpa.org/#/gvariant"; - license = lib.licenses.free; - }; - }) {}; - gxref = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "gxref"; - ename = "gxref"; - version = "0.1"; - src = fetchFromGitHub { - owner = "dedi"; - repo = "gxref"; - rev = "15723a9d910d7dd9ea18cab0336332cf988aeceb"; - sha256 = "1l5d1kh2dy3w42i8c3z63c7mzarxixxiby2g7ay2i809yxj10y1n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/429b9150d4054fcadab8c5ca3b688921eeb19b78/recipes/gxref"; - sha256 = "06qlfjclfx00m8pr7lk6baim3vjk5i0m75i1p4aihp2vflvgjaby"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/gxref"; - license = lib.licenses.free; - }; - }) {}; - hack-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hack-mode"; - ename = "hack-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "hhvm"; - repo = "hack-mode"; - rev = "59862c38643b355c41a10cf455ec2e5c6739edcd"; - sha256 = "1imlzp400hjfy011l8aqg2jgq45y8brvp4xfx7q6lsb3hrmzkysl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27e238e5d2aaca810fd3fb6836ca49c9fa07cc87/recipes/hack-mode"; - sha256 = "1zs7p6fczj526wz9kvyhmxqkgrkfkkrvm9ma4cg349sfpjpxwkbl"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/hack-mode"; - license = lib.licenses.free; - }; - }) {}; - hack-time-mode = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hack-time-mode"; - ename = "hack-time-mode"; - version = "0.1.0"; - src = fetchFromGitLab { - owner = "marcowahl"; - repo = "hack-time-mode"; - rev = "95ed4c8a2410e1232453b3a49274a46afb740b1e"; - sha256 = "083b9kwhh4bq0dwn6iskrrmsgxicqg08p8k6n1m1xadgs61lgkjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6481dc9f487c5677f2baf1bffdf8f2297185345e/recipes/hack-time-mode"; - sha256 = "0vz72ykl679a69sb0r2h9ymcr3xms7bij1w6vxndlfw5v9hg3hk5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hack-time-mode"; - license = lib.licenses.free; - }; - }) {}; - hacker-typer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hacker-typer"; - ename = "hacker-typer"; - version = "1.0.6"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "emacs-hacker-typer"; - rev = "d5a23714a4ccc5071580622f278597d5973f40bd"; - sha256 = "13wp7cg9d9ij44inxxyk1knczglxrbfaq50wyhc4x5zfhz5yw7wx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3416586d4d782cdd61a56159c5f80a0ca9b3ddf4/recipes/hacker-typer"; - sha256 = "0vf18hylhszvplam6c4yynr53zc3n816p9k36gywm6awwblfpyfb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hacker-typer"; - license = lib.licenses.free; - }; - }) {}; - hackernews = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "hackernews"; - ename = "hackernews"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "clarete"; - repo = "hackernews.el"; - rev = "916c3da8da45c757f5ec2faeed57fa370513d4ac"; - sha256 = "09bxaaczana1cfvxyk9aagjvdszkj0j1yldl5r4xa60b59lxihsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c43a342e47e5ede468bcf51a60d4dea3926f51bd/recipes/hackernews"; - sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/hackernews"; - license = lib.licenses.free; - }; - }) {}; - ham-mode = callPackage ({ fetchFromGitHub - , fetchurl - , html-to-markdown - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "ham-mode"; - ename = "ham-mode"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "ham-mode"; - rev = "3a141986a21c2aa6eefb428983352abb8b7907d2"; - sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/ham-mode"; - sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; - name = "recipe"; - }; - packageRequires = [ html-to-markdown markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/ham-mode"; - license = lib.licenses.free; - }; - }) {}; - hamburger-menu = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hamburger-menu"; - ename = "hamburger-menu"; - version = "1.0.5"; - src = fetchFromGitLab { - owner = "iain"; - repo = "hamburger-menu-mode"; - rev = "fd37f013c2f2619a88d3ed5311a9d1308cc82614"; - sha256 = "196ydb57h4mjagjaiflvb20my561i6mdc6v6694ibdik2yns2inm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8017730403cc0e613e3939017f85074753c3778/recipes/hamburger-menu"; - sha256 = "0ws9729i51arjqwpiywcpb7y3c5sm3c9wrq8q0k0m9hpq8h11wdb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hamburger-menu"; - license = lib.licenses.free; - }; - }) {}; - haml-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "haml-mode"; - ename = "haml-mode"; - version = "3.1.9"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "haml-mode"; - rev = "5e0baf7b795b9e41ac03b55f8feff6b51027c43b"; - sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/haml-mode"; - sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; - name = "recipe"; - }; - packageRequires = [ ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/haml-mode"; - license = lib.licenses.free; - }; - }) {}; - hardcore-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hardcore-mode"; - ename = "hardcore-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "hardcore-mode.el"; - rev = "5ab75594a7a0ca236e2ac87882ee439ff6155d96"; - sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b929b3343cd5925944665e4e09b4524bca873c95/recipes/hardcore-mode"; - sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hardcore-mode"; - license = lib.licenses.free; - }; - }) {}; - hardhat = callPackage ({ fetchFromGitHub - , fetchurl - , ignoramus - , lib - , melpaBuild }: - melpaBuild { - pname = "hardhat"; - ename = "hardhat"; - version = "0.4.6"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "hardhat"; - rev = "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e"; - sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/hardhat"; - sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; - name = "recipe"; - }; - packageRequires = [ ignoramus ]; - meta = { - homepage = "https://melpa.org/#/hardhat"; - license = lib.licenses.free; - }; - }) {}; - harvest = callPackage ({ fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , s - , swiper }: - melpaBuild { - pname = "harvest"; - ename = "harvest"; - version = "0.3.8"; - src = fetchFromGitHub { - owner = "kostajh"; - repo = "harvest.el"; - rev = "69041907bdca68d3ab6802e08ec698c3448f28a1"; - sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c97d3f653057eab35c612109792884334be556fe/recipes/harvest"; - sha256 = "1r6brld6iq03wsr1b3jhdkxwrcxa6g6fwa1jiy1kgjsr9dq1m51c"; - name = "recipe"; - }; - packageRequires = [ hydra s swiper ]; - meta = { - homepage = "https://melpa.org/#/harvest"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs"; - ename = "haskell-emacs"; - version = "4.0.3"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "a2c6a079175904689eed7c6c200754bfa85d1ed9"; - sha256 = "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs"; - sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/haskell-emacs"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs-base = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-emacs - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs-base"; - ename = "haskell-emacs-base"; - version = "4.0.3"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "7f91f65254902b8ff04fdb679bc569b2f6a51637"; - sha256 = "17i9l6wgrvmp31ca4xrax31f7bjnn0vn2figycxhfaq9f6vxgkkn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-base"; - sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; - name = "recipe"; - }; - packageRequires = [ haskell-emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-emacs-base"; - license = lib.licenses.free; - }; - }) {}; - haskell-emacs-text = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-emacs - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-emacs-text"; - ename = "haskell-emacs-text"; - version = "4.0.3"; - src = fetchFromGitHub { - owner = "knupfer"; - repo = "haskell-emacs"; - rev = "cc240612740fc3fd6e3c3d8cdfe486a89954f5d1"; - sha256 = "09g6b1ad7qi9k58ymgmssgapwapxcwf30qhmfl2w8sl045ngzlkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5daff329a96a6d10bca11d838bbc95d1c8bcfbd9/recipes/haskell-emacs-text"; - sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; - name = "recipe"; - }; - packageRequires = [ haskell-emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-emacs-text"; - license = lib.licenses.free; - }; - }) {}; - haskell-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-mode"; - ename = "haskell-mode"; - version = "16.1"; - src = fetchFromGitHub { - owner = "haskell"; - repo = "haskell-mode"; - rev = "d2ea5239bf02f3917a78a5c2dcbc5b6f6dd1b359"; - sha256 = "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f18b4dcbad4192b0153a316cff6533272898f1a/recipes/haskell-mode"; - sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/haskell-mode"; - license = lib.licenses.free; - }; - }) {}; - haskell-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "haskell-snippets"; - ename = "haskell-snippets"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "haskell"; - repo = "haskell-snippets"; - rev = "bcf12cf33a67ddc2f023a55072859e637fe4fa25"; - sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5534e58ea66fd90ba4a69262f0b303c7fb85af4/recipes/haskell-snippets"; - sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/haskell-snippets"; - license = lib.licenses.free; - }; - }) {}; - haskell-tab-indent = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haskell-tab-indent"; - ename = "haskell-tab-indent"; - version = "0.2"; - src = fetchgit { - url = "https://git.spwhitton.name/haskell-tab-indent"; - rev = "b4cb851aef96c42ec7b3cc37b6fdd867fe5a0853"; - sha256 = "1ah1xagfzsbsgggva621p95qgd0bnsn733gb0ap4p4kgi5hwdqll"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/371f9f45e441cdf4e95557d1e9692619fab3024a/recipes/haskell-tab-indent"; - sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/haskell-tab-indent"; - license = lib.licenses.free; - }; - }) {}; - hasky-extensions = callPackage ({ avy-menu - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hasky-extensions"; - ename = "hasky-extensions"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "hasky-mode"; - repo = "hasky-extensions"; - rev = "51cff958785c1d26f76decd2e2b95bd15ab48096"; - sha256 = "0bqcg18apfj8ibzklw7yip35s1wkjfb8z3qyxn43vyylkynvrj37"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e3f73e3df8476fa231d04211866671dd74911603/recipes/hasky-extensions"; - sha256 = "0ymigba1d0qkrk3ccd3cx754safzmx1v5d13976571rszgmkvr15"; - name = "recipe"; - }; - packageRequires = [ avy-menu emacs ]; - meta = { - homepage = "https://melpa.org/#/hasky-extensions"; - license = lib.licenses.free; - }; - }) {}; - hasky-stack = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "hasky-stack"; - ename = "hasky-stack"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "hasky-mode"; - repo = "hasky-stack"; - rev = "a3176aece9a9ab0a36ae795965f83f4c1fa243bf"; - sha256 = "1j9cvy95wnmssg68y7hcjr0fh117ix1ypa0k7rxqn84na7hyhdpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3faf544872478c3bccf2fe7dc51d406031e4d80/recipes/hasky-stack"; - sha256 = "08ds0v5p829s47lbhibswnbn1aqfnwf6xx7p5bc5062wxdvqahw8"; - name = "recipe"; - }; - packageRequires = [ emacs f magit-popup ]; - meta = { - homepage = "https://melpa.org/#/hasky-stack"; - license = lib.licenses.free; - }; - }) {}; - haxor-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "haxor-mode"; - ename = "haxor-mode"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "krzysztof-magosa"; - repo = "haxor-mode"; - rev = "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91"; - sha256 = "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/haxor-mode"; - sha256 = "0ss0kkwjyc7z7vcb89qr02p70c6m2jarr34mxmdv6ipwil58jj1s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/haxor-mode"; - license = lib.licenses.free; - }; - }) {}; - hcl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hcl-mode"; - ename = "hcl-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-hcl-mode"; - rev = "6a6daf37522188a2f2fcdebc60949fc3bdabbc06"; - sha256 = "0jqrgq15jz6pvx38pnwkizzfiih0d3nxqphyrc92nqpcyimg8b6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/66b441525dc300b364d9be0358ae1e0fa2a8b4fe/recipes/hcl-mode"; - sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hcl-mode"; - license = lib.licenses.free; - }; - }) {}; - heaven-and-hell = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "heaven-and-hell"; - ename = "heaven-and-hell"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "valignatev"; - repo = "heaven-and-hell"; - rev = "c2af013e0def7d3234e0eb2fb66a0a2374d5a7f2"; - sha256 = "08n7sr0l4di1c4zgfa17i3x43451sd60z70pjka8rmznys766lsg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/685edd63bf65520be304cbd564db7f5974fc5ae1/recipes/heaven-and-hell"; - sha256 = "19r0p78r9c78ly8awkgc33xa5b75zkkrb5kwvxbagirxdgkjv74r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/heaven-and-hell"; - license = lib.licenses.free; - }; - }) {}; - helm = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "helm"; - ename = "helm"; - version = "3.2"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm"; - rev = "381850225e621c6315e453a98c99229a0d755281"; - sha256 = "12yyprpgh2by2pd41i4z9gz55fxg0f90x03bfrsf791xwbhf6931"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e8bccffdf69479892d76b9336a4bec3f35e919d/recipes/helm"; - sha256 = "03la01d0syikjgsjq0krlp3p894djwfxqfmd2srddwks7ish6xjf"; - name = "recipe"; - }; - packageRequires = [ async emacs helm-core popup ]; - meta = { - homepage = "https://melpa.org/#/helm"; - license = lib.licenses.free; - }; - }) {}; - helm-ack = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ack"; - ename = "helm-ack"; - version = "0.13"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ack"; - rev = "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118"; - sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/258d447778525c26c65a5819ba1edc00e2bb65e5/recipes/helm-ack"; - sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ack"; - license = lib.licenses.free; - }; - }) {}; - helm-ag = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ag"; - ename = "helm-ag"; - version = "0.58"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ag"; - rev = "39ed137823665fca2fa5b215f7c3e8701173f7b7"; - sha256 = "0a6yls52pkqsaj6s5nsi70kzpvssdvb87bfnp8gp26q2y3syx4ni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-ag"; - sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ag"; - license = lib.licenses.free; - }; - }) {}; - helm-aws = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-aws"; - ename = "helm-aws"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "istib"; - repo = "helm-aws"; - rev = "172a4a3427d31c999e27e9ee06aa8e3822364a8c"; - sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/421182006b8af17dae8b5ad453cc11e2d990a053/recipes/helm-aws"; - sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-aws"; - license = lib.licenses.free; - }; - }) {}; - helm-backup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-backup"; - ename = "helm-backup"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "antham"; - repo = "helm-backup"; - rev = "45a86a41ac44f90d4db2c0e9339233ee7f0be0b8"; - sha256 = "0pr4qd6mi9g91lndqnk4w26lq3w8pxcgxragxj3209dgwqsxps95"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e6eba7b201e91211e43c39e501f6066f0afeb8b/recipes/helm-backup"; - sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-backup"; - license = lib.licenses.free; - }; - }) {}; - helm-bbdb = callPackage ({ bbdb - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bbdb"; - ename = "helm-bbdb"; - version = "1.1"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-bbdb"; - rev = "20513422102fea4c08a0433d728a7783bb4968c8"; - sha256 = "0ns537fimv774n1bq0r8k4qwdpapbw96linqyhx9mxp23zkhlg80"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7025c319fcabc64576c0c6554d0d572cef697693/recipes/helm-bbdb"; - sha256 = "1wlacbfs23shvyaq616r1p84h8321zz1k5nzir5qg8nr6lssi8vp"; - name = "recipe"; - }; - packageRequires = [ bbdb helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bbdb"; - license = lib.licenses.free; - }; - }) {}; - helm-bibtex = callPackage ({ biblio - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , parsebib - , s }: - melpaBuild { - pname = "helm-bibtex"; - ename = "helm-bibtex"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "helm-bibtex"; - rev = "d6a98ac6f28d2a6a05e203115211c98333d40aca"; - sha256 = "0arhy051945lxjqg77b275ny9nsv60cqj0qfpmvd8xkc07lqfn23"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4118a7721435240cf8489daa4dd39369208855b/recipes/helm-bibtex"; - sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z"; - name = "recipe"; - }; - packageRequires = [ biblio cl-lib dash f helm parsebib s ]; - meta = { - homepage = "https://melpa.org/#/helm-bibtex"; - license = lib.licenses.free; - }; - }) {}; - helm-bitbucket = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bitbucket"; - ename = "helm-bitbucket"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "dragonwasrobot"; - repo = "helm-bitbucket"; - rev = "632495036c4a6ac30e408fc74ee9f209fd5ac429"; - sha256 = "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8df73e21dee5144147f9432efe95ee576ac5f435/recipes/helm-bitbucket"; - sha256 = "19bflbnavkwipf7mcrkg3i64iz50jmzm64nl7y1ka349mpy5sm04"; - name = "recipe"; - }; - packageRequires = [ emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-bitbucket"; - license = lib.licenses.free; - }; - }) {}; - helm-bm = callPackage ({ bm - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-bm"; - ename = "helm-bm"; - version = "0.3"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-bm"; - rev = "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7"; - sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/115033d7b02d3ca42902195de933f62c5f927ae4/recipes/helm-bm"; - sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; - name = "recipe"; - }; - packageRequires = [ bm cl-lib helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-bm"; - license = lib.licenses.free; - }; - }) {}; - helm-books = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-books"; - ename = "helm-books"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "grugrut"; - repo = "helm-books"; - rev = "b4c57d2aed596faad41a753dccbcd0a31a717b76"; - sha256 = "1yr5prp9xvd73balxbn4yn52zah2advq1186ba5aanj436pal0fh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acba3db40f37e74e1bf9e30f2abed431c259ff50/recipes/helm-books"; - sha256 = "0xh53vji7nsnpi0b38cjh97x26ryxk61mj7bd6m63qwh8dyhs3yx"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-books"; - license = lib.licenses.free; - }; - }) {}; - helm-bundle-show = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-bundle-show"; - ename = "helm-bundle-show"; - version = "1.1.6"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-bundle-show"; - rev = "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f"; - sha256 = "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f10f7387cca102696c38af1d8dc0fe5da5e366f/recipes/helm-bundle-show"; - sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-bundle-show"; - license = lib.licenses.free; - }; - }) {}; - helm-c-yasnippet = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "helm-c-yasnippet"; - ename = "helm-c-yasnippet"; - version = "0.6.7"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-c-yasnippet"; - rev = "1fa400233ba8e990066c47cca1e2af64bd192d4d"; - sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2fc20598a2cd22efb212ba43159c6728f0249e5e/recipes/helm-c-yasnippet"; - sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm-core yasnippet ]; - meta = { - homepage = "https://melpa.org/#/helm-c-yasnippet"; - license = lib.licenses.free; - }; - }) {}; - helm-cider = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-cider"; - ename = "helm-cider"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "helm-cider"; - rev = "9a948b834dd31b3f60d4701d6dd0ecfab0adbb72"; - sha256 = "0wssd9jv6xighjhfh3p8if1anz3rcrjr71a4j063v6gyknb7fv27"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-cider"; - sha256 = "0ykhrvh6mix55sv4j8q6614sibksdlwaks736maamqwl3wk6826x"; - name = "recipe"; - }; - packageRequires = [ cider emacs helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-cider"; - license = lib.licenses.free; - }; - }) {}; - helm-circe = callPackage ({ circe - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-circe"; - ename = "helm-circe"; - version = "0.4"; - src = fetchFromGitHub { - owner = "lesharris"; - repo = "helm-circe"; - rev = "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a"; - sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-circe"; - sha256 = "07559rg55b0glxiw787xmvxrhms14jz21bvprc5n24b4j827g9xw"; - name = "recipe"; - }; - packageRequires = [ circe cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-circe"; - license = lib.licenses.free; - }; - }) {}; - helm-codesearch = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-codesearch"; - ename = "helm-codesearch"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "youngker"; - repo = "helm-codesearch.el"; - rev = "a6bac6b8a063b91b444a72318b163b266742db9b"; - sha256 = "0xmplh7q5wvrkfha8qc9hx7sjyc8dsms0wrvj2y7zg35siw1561l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a992824e46a4170e2f0915f7a507fcb8a9ef0a6/recipes/helm-codesearch"; - sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-codesearch"; - license = lib.licenses.free; - }; - }) {}; - helm-commandlinefu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , json ? null - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-commandlinefu"; - ename = "helm-commandlinefu"; - version = "0.3"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-commandlinefu"; - rev = "83839c0250ff3a35d3052eab3111450e0caa5fe1"; - sha256 = "0fxxwxxpqvhzc3wgskaarxagf4si83kk5k5j67kzklgrlklhf1xn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7eaf1e41ef2fa90b6bb6a80891ef1bf52ef1029b/recipes/helm-commandlinefu"; - sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; - name = "recipe"; - }; - packageRequires = [ emacs helm json let-alist ]; - meta = { - homepage = "https://melpa.org/#/helm-commandlinefu"; - license = lib.licenses.free; - }; - }) {}; - helm-company = callPackage ({ company - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-company"; - ename = "helm-company"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "Sodel-the-Vociferous"; - repo = "helm-company"; - rev = "5b5c15745d92aff7280698c7619994e2481098b4"; - sha256 = "1r5b24hamq8d5n418xpf80jn37s357hbc9rd5siw6gwkjn2jykx7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8acf7420f2ac8a36474594bc34316f187b43d771/recipes/helm-company"; - sha256 = "1wl1mzm1h9ig351y77yascdv4z0cka1gayi8cnnlayk763is7q34"; - name = "recipe"; - }; - packageRequires = [ company helm ]; - meta = { - homepage = "https://melpa.org/#/helm-company"; - license = lib.licenses.free; - }; - }) {}; - helm-core = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-core"; - ename = "helm-core"; - version = "3.2"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm"; - rev = "0f59a63c225f1c9c265cd350359a1c03e42e2d1c"; - sha256 = "19qrd8157l2cjgi5kc8l7df3y8p7l9zky7idi0gn0cp95463nd57"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7/recipes/helm-core"; - sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/helm-core"; - license = lib.licenses.free; - }; - }) {}; - helm-cscope = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , xcscope }: - melpaBuild { - pname = "helm-cscope"; - ename = "helm-cscope"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "helm-cscope.el"; - rev = "b82db54071bd2d1c77db2e648f8b4e61b1abe288"; - sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d2e3460df1ec750053bc8402ad6eb822c10c697/recipes/helm-cscope"; - sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm xcscope ]; - meta = { - homepage = "https://melpa.org/#/helm-cscope"; - license = lib.licenses.free; - }; - }) {}; - helm-dash = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dash"; - ename = "helm-dash"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "areina"; - repo = "helm-dash"; - rev = "9a230125a7a11f5fa90aa048b61abd95eb78ddfe"; - sha256 = "0xs3nq86qmvkiazn5w564npdgbcfjlnpw2f48g2jd43yznblz7ly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dash"; - sha256 = "032hwwq4r72grzls5ww7bjyj39c82wkcgf3k7myfcrqd3lgblrwb"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dash"; - license = lib.licenses.free; - }; - }) {}; - helm-descbinds = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-descbinds"; - ename = "helm-descbinds"; - version = "1.13"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-descbinds"; - rev = "6d5ddc11e6cef86548bd6b3e0d840112d602659c"; - sha256 = "03b79wdcp4im0fwadzhyc8jxl2wqvg8gmpflnznrwz3l71bi4sqq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/447610a05422cd2f35399e43d98bf46410ff0408/recipes/helm-descbinds"; - sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-descbinds"; - license = lib.licenses.free; - }; - }) {}; - helm-directory = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-directory"; - ename = "helm-directory"; - version = "0.6.4"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-helm-directory"; - rev = "caa013b820b5263bf1c6446debfea0766dae8ab8"; - sha256 = "15ljhz7cik7qzbh69l28c9mcvls5zgk42lp5bm9kl9fg6m6aasvq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d0c066d6f285ab6d572dab4549781101547cb704/recipes/helm-directory"; - sha256 = "01c5a08v6rd867kdyrfwdvj05z4srzj9g6xy4scirlbwbff0q76n"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-directory"; - license = lib.licenses.free; - }; - }) {}; - helm-dired-history = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-dired-history"; - ename = "helm-dired-history"; - version = "1.3"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "helm-dired-history"; - rev = "281523f9fc46cf00fafd670ba5cd16552a607212"; - sha256 = "1bqavj5ljr350dckyf39i9plkb0rbhyd17ka94n2g6daapgpq0x6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-dired-history"; - sha256 = "0qciafa42rbw0dxgkp5mbbwbrcziswmwdj2lszm0px1bip4x7yb8"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm ]; - meta = { - homepage = "https://melpa.org/#/helm-dired-history"; - license = lib.licenses.free; - }; - }) {}; - helm-emms = callPackage ({ cl-lib ? null - , emacs - , emms - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-emms"; - ename = "helm-emms"; - version = "1.3"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-emms"; - rev = "d7da090af0f63b92c5d735197992c732adbeef3d"; - sha256 = "0fs0i33di3liyx1f55xpg5nmac1b750n37g3pkxw2mil7fx7dz32"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db836b671705607f6cd9bce8229884b1f29b4a76/recipes/helm-emms"; - sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs emms helm ]; - meta = { - homepage = "https://melpa.org/#/helm-emms"; - license = lib.licenses.free; - }; - }) {}; - helm-etags-plus = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-etags-plus"; - ename = "helm-etags-plus"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "helm-etags-plus"; - rev = "647e267af51caff9f49d8aa00657b7e08cc3bce4"; - sha256 = "1j8z7bgm5kjp1hrjrmnr3k0frajvwcmpv1mjvw0pxhqf3gyvzf3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e5d0c347ff8cf6e0ade80853775fd6b84f387fa5/recipes/helm-etags-plus"; - sha256 = "0lw21yp1q6iggzlb1dks3p6qdfppnqf50f3rijjs18lisp4izp99"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-etags-plus"; - license = lib.licenses.free; - }; - }) {}; - helm-eww = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "helm-eww"; - ename = "helm-eww"; - version = "1.2"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-eww"; - rev = "76ba59fda8dd6f32a1bc7c6df0b43c6f76169911"; - sha256 = "0hpq1h0p69c9k6hkd2mjpprx213sc5475q7pr2zpmwrjdzgcv70z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/455a32c1d4642dc6752408c4f5055f5f4d1288eb/recipes/helm-eww"; - sha256 = "0pl8s7jmk1kak13bal43kp2awjji9lgr3npq9m09zms121rh709w"; - name = "recipe"; - }; - packageRequires = [ emacs helm seq ]; - meta = { - homepage = "https://melpa.org/#/helm-eww"; - license = lib.licenses.free; - }; - }) {}; - helm-ext = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ext"; - ename = "helm-ext"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "helm-ext"; - rev = "c8ac56918b200239b3f73a4e6a031deecc2c5646"; - sha256 = "08c6n4zr6s3h7y0kk6g51xqs6hs29hkfmn55jfjw6hpimbk3vi1j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee74cb0aa3445bc9ae4226c2043ee4de3ac6cd3/recipes/helm-ext"; - sha256 = "0la2i0b7nialib4wq26cxcak8nq1jzavsw8f0mvbavsb7hfwkpgw"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ext"; - license = lib.licenses.free; - }; - }) {}; - helm-firefox = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-firefox"; - ename = "helm-firefox"; - version = "1.3"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-firefox"; - rev = "294850c4ce16ae25f2214f863cee0118add60974"; - sha256 = "1kaa58xlnr82qsvdzn8sxk5kkd2lxqnvfciyw7kfi2fdrl6nr4pf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/257e452d37768d2f3a6e0a5ccd062d128b2bc867/recipes/helm-firefox"; - sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-firefox"; - license = lib.licenses.free; - }; - }) {}; - helm-flycheck = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flycheck - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-flycheck"; - ename = "helm-flycheck"; - version = "0.4"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-flycheck"; - rev = "a15e62a6432c165c4f2c17388686873383400d7d"; - sha256 = "0q9yksx66ry4x3vkcyyj437il225s2ad5h6vkxpyz04p62g3ysnx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9cce1662d4ca7b7d868685084294d22ebf6c39e9/recipes/helm-flycheck"; - sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; - name = "recipe"; - }; - packageRequires = [ dash flycheck helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-flycheck"; - license = lib.licenses.free; - }; - }) {}; - helm-ghc = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , ghc - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ghc"; - ename = "helm-ghc"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "helm-ghc"; - rev = "3947bfd6b5a05074e776f0b51f414f1a5a724888"; - sha256 = "0j8mbn33rv4jky9zh1hgw8da8wgs2760057mx8rv5x6i1qcm3bqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-ghc"; - sha256 = "0bv0sfpya1jyay9p80lv0w6h9kdp96r8lnp6nj15w660p1b51c0d"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ghc helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ghc"; - license = lib.licenses.free; - }; - }) {}; - helm-ghq = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ghq"; - ename = "helm-ghq"; - version = "1.8.0"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-ghq"; - rev = "d0d6aa0f407388e7012f0443df8ae657ece01779"; - sha256 = "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e94eec646def7c77b15f6a6ac1841200848e62c7/recipes/helm-ghq"; - sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ghq"; - license = lib.licenses.free; - }; - }) {}; - helm-git-grep = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-git-grep"; - ename = "helm-git-grep"; - version = "0.10.1"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-git-grep"; - rev = "744cea07dba6e6a5effbdba83f1b786c78fd86d3"; - sha256 = "172m7wbgx9qnv9n1slbzpd9j24p6blddik49z6bq3zdg1vlnf3dv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/338d28c3fe201a7b2f15793be6d540f44819f4d8/recipes/helm-git-grep"; - sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-git-grep"; - license = lib.licenses.free; - }; - }) {}; - helm-github-stars = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-github-stars"; - ename = "helm-github-stars"; - version = "1.3.7"; - src = fetchFromGitHub { - owner = "Sliim"; - repo = "helm-github-stars"; - rev = "c891690218b0d8b957ea6cb45b1b6cffd15a6950"; - sha256 = "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e77f4a75504ca3e1091cdc757e91fb1ae361fa7/recipes/helm-github-stars"; - sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-github-stars"; - license = lib.licenses.free; - }; - }) {}; - helm-gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , gitlab - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-gitlab"; - ename = "helm-gitlab"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "cffba49c1260421b8e388c65365b229970098e5c"; - sha256 = "1wh6z7ni8nwqigvgz77zgqszx60s1k1chpzgzs1k3kfby7apxww1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d012991188956f6e06c37d504b0d06ab31487b9/recipes/helm-gitlab"; - sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; - name = "recipe"; - }; - packageRequires = [ dash gitlab helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-gitlab"; - license = lib.licenses.free; - }; - }) {}; - helm-go-package = callPackage ({ deferred - , emacs - , fetchFromGitHub - , fetchurl - , go-mode - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-go-package"; - ename = "helm-go-package"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-go-package"; - rev = "7db5ea9ce97502152a6bb1fe38f8fabb5a49abd2"; - sha256 = "08llqkswilzsigh28w9qjbqi5g5z0ylfabz5sqia7c18gjshvz0h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/449d272b94c189176305ca17652d76adac087ce5/recipes/helm-go-package"; - sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; - name = "recipe"; - }; - packageRequires = [ deferred emacs go-mode helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-go-package"; - license = lib.licenses.free; - }; - }) {}; - helm-gtags = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-gtags"; - ename = "helm-gtags"; - version = "1.5.6"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-gtags"; - rev = "dbe0d2d9d08058d469ad2d729bd782515b5b3b62"; - sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-gtags"; - sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-gtags"; - license = lib.licenses.free; - }; - }) {}; - helm-hatena-bookmark = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hatena-bookmark"; - ename = "helm-hatena-bookmark"; - version = "2.4.3"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-hatena-bookmark"; - rev = "10b8bfbd7fc4c3f503b2bc01f0c062dac128059e"; - sha256 = "17f7y7bw15y3x30j7b3ymp3gpnszfvnf8hmlgc1mkwafxvzv06i1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e9335ad16d4151dd4970c4a3ad1fee9a84404fa/recipes/helm-hatena-bookmark"; - sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-hatena-bookmark"; - license = lib.licenses.free; - }; - }) {}; - helm-hayoo = callPackage ({ fetchFromGitHub - , fetchurl - , haskell-mode - , helm - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-hayoo"; - ename = "helm-hayoo"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "helm-hayoo"; - rev = "f49a77e8b8704bb7eb0d1097eefb8010a6617664"; - sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-hayoo"; - sha256 = "06nbilb6vfa8959ss5d06zbcwqxlbyi3cb5jnbdag0jnpxvv1hqb"; - name = "recipe"; - }; - packageRequires = [ haskell-mode helm json ]; - meta = { - homepage = "https://melpa.org/#/helm-hayoo"; - license = lib.licenses.free; - }; - }) {}; - helm-ispell = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ispell"; - ename = "helm-ispell"; - version = "0.1"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-ispell"; - rev = "9dd7e24cacf755879e569891700520554972b5c8"; - sha256 = "1qh84a9qxdr13w9qbn4l1rqs0rq7pmn4is3kmwg7ya85yh3wmzyb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edc42b26027dcd7daf0d6f2bd19ca4736fc12d6d/recipes/helm-ispell"; - sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-ispell"; - license = lib.licenses.free; - }; - }) {}; - helm-ls-git = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ls-git"; - ename = "helm-ls-git"; - version = "1.9.1"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-ls-git"; - rev = "7b7b6dc2554603ad98412927f84a803625069ab3"; - sha256 = "1s748a5abj58hd7cwzfggfnnmyzhj04gpbqqwqmskn8xlsq5qcdi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b487b4c0db9092bb7e32aad9265b79a9d18c8478/recipes/helm-ls-git"; - sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ls-git"; - license = lib.licenses.free; - }; - }) {}; - helm-ls-hg = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-ls-hg"; - ename = "helm-ls-hg"; - version = "1.8.0"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-ls-hg"; - rev = "61b91a22fcfb62d0fc56e361ec01ce96973c7165"; - sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03a22c9ec281330c4603aec6feb04cf580dee340/recipes/helm-ls-hg"; - sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-ls-hg"; - license = lib.licenses.free; - }; - }) {}; - helm-make = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "helm-make"; - ename = "helm-make"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "helm-make"; - rev = "4bedccdaa65fcd4ea5b643738ea55bf865532c1a"; - sha256 = "0c9hgazfaf56iv7ghww9ni6db3bv6897785n0mz3b3khf2mj2388"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f25f066c60d4caff1fbf885bc944cac47515ec8/recipes/helm-make"; - sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; - name = "recipe"; - }; - packageRequires = [ helm projectile ]; - meta = { - homepage = "https://melpa.org/#/helm-make"; - license = lib.licenses.free; - }; - }) {}; - helm-migemo = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , migemo }: - melpaBuild { - pname = "helm-migemo"; - ename = "helm-migemo"; - version = "1.22"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-migemo"; - rev = "2d964309a5415cf47f5154271e6fe7b6a7fffec7"; - sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-migemo"; - sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm-core migemo ]; - meta = { - homepage = "https://melpa.org/#/helm-migemo"; - license = lib.licenses.free; - }; - }) {}; - helm-mode-manager = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-mode-manager"; - ename = "helm-mode-manager"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "istib"; - repo = "helm-mode-manager"; - rev = "12d762eadaf67df9e5e0f607e7a8cf1f6eea778b"; - sha256 = "17zvv089845j0v5d4hc3d2hq8mkxq2cafx29qgvbvgpfifxx1z3h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-mode-manager"; - sha256 = "04yhqbb9cliv1922b0abpc1wrladvhyfmwn8ifqfkzaks4067rhl"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-mode-manager"; - license = lib.licenses.free; - }; - }) {}; - helm-mt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , multi-term }: - melpaBuild { - pname = "helm-mt"; - ename = "helm-mt"; - version = "0.9"; - src = fetchFromGitHub { - owner = "dfdeshom"; - repo = "helm-mt"; - rev = "d2bff4100118483bc398c56d0ff095294209265b"; - sha256 = "1wci63y0vjvrvrylkhhrz8p9q0ml6la5cpj4rx5cwin9rkmislm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e726bf0b9b3f371b21f1f0d75175e0dda62f6fb0/recipes/helm-mt"; - sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm multi-term ]; - meta = { - homepage = "https://melpa.org/#/helm-mt"; - license = lib.licenses.free; - }; - }) {}; - helm-nixos-options = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , nixos-options }: - melpaBuild { - pname = "helm-nixos-options"; - ename = "helm-nixos-options"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "5ee8a6b22c464028d19d5cebc8f69087bb667c01"; - sha256 = "1cn8drnkna9vr56fb6w0gmz5kyy9r8a71ph48fsblgqr9fjqw31j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/helm-nixos-options"; - sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; - name = "recipe"; - }; - packageRequires = [ helm nixos-options ]; - meta = { - homepage = "https://melpa.org/#/helm-nixos-options"; - license = lib.licenses.free; - }; - }) {}; - helm-notmuch = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , notmuch }: - melpaBuild { - pname = "helm-notmuch"; - ename = "helm-notmuch"; - version = "1.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-notmuch"; - rev = "97a01497e079a7b6505987e9feba6b603bbec288"; - sha256 = "1k038dbdpaa411gl4071x19fklhnizhr346plxw23lsnxir9dhqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98667b3aa43d3e0f6174eeef82acaf71d7019aac/recipes/helm-notmuch"; - sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0"; - name = "recipe"; - }; - packageRequires = [ helm notmuch ]; - meta = { - homepage = "https://melpa.org/#/helm-notmuch"; - license = lib.licenses.free; - }; - }) {}; - helm-open-github = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-open-github"; - ename = "helm-open-github"; - version = "0.15"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-open-github"; - rev = "553f3ab0fe0a028015e9b6cb7c35fb139ec222fc"; - sha256 = "1xj5b44nkdvbxhk1bnllqm2qq393w22ccy708prrhiq8fmk53aa8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-open-github"; - sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; - name = "recipe"; - }; - packageRequires = [ emacs gh helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-open-github"; - license = lib.licenses.free; - }; - }) {}; - helm-org-rifle = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "helm-org-rifle"; - ename = "helm-org-rifle"; - version = "1.6.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "helm-org-rifle"; - rev = "f2c7f9e203287e3f6e5647406d21454218553e5a"; - sha256 = "1r38xhwvgbv6kn5x159phz3xgss7f1rc7icq27rnr4d8aj91wm6k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615/recipes/helm-org-rifle"; - sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; - name = "recipe"; - }; - packageRequires = [ dash emacs f helm s ]; - meta = { - homepage = "https://melpa.org/#/helm-org-rifle"; - license = lib.licenses.free; - }; - }) {}; - helm-orgcard = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-orgcard"; - ename = "helm-orgcard"; - version = "0.2"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "helm-orgcard"; - rev = "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d"; - sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce6eb840368f8cbee66dc061478d5096b9dacb68/recipes/helm-orgcard"; - sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; - name = "recipe"; - }; - packageRequires = [ helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-orgcard"; - license = lib.licenses.free; - }; - }) {}; - helm-pages = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pages"; - ename = "helm-pages"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "helm-pages"; - rev = "e334ca3312e51d6fdfa989df5d3ebe683d673c0e"; - sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a33cb19b6e71240896bbe5da07ab25f2ee11f0b/recipes/helm-pages"; - sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-pages"; - license = lib.licenses.free; - }; - }) {}; - helm-pass = callPackage ({ auth-source-pass - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , password-store }: - melpaBuild { - pname = "helm-pass"; - ename = "helm-pass"; - version = "0.3"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-pass"; - rev = "ed5798f2d83937575e8f23fde33323bca9e85131"; - sha256 = "0vglaknmir3yv4iwibwn8r40ran8d04gcyp99hx73ldmf3zqpnxv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a34e0ab66491540dd0c5b62c7f60684056b16d5/recipes/helm-pass"; - sha256 = "153cj58x2xcmjs2n4fl1jsv8zir4z9jwg1w00ghv70k5j3rwsjkp"; - name = "recipe"; - }; - packageRequires = [ auth-source-pass emacs helm password-store ]; - meta = { - homepage = "https://melpa.org/#/helm-pass"; - license = lib.licenses.free; - }; - }) {}; - helm-perldoc = callPackage ({ cl-lib ? null - , deferred - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-perldoc"; - ename = "helm-perldoc"; - version = "0.7"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-perldoc"; - rev = "18645f2065a07acce2c6b50a2f9d7a2554e532a3"; - sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-perldoc"; - sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred helm ]; - meta = { - homepage = "https://melpa.org/#/helm-perldoc"; - license = lib.licenses.free; - }; - }) {}; - helm-perspeen = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , perspeen }: - melpaBuild { - pname = "helm-perspeen"; - ename = "helm-perspeen"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "jimo1001"; - repo = "helm-perspeen"; - rev = "aec145d5196aed1689563d138a2aa37b139e1759"; - sha256 = "1wv13mvm9149nl9p93znl3d2yfnq4rph440ja07w804cd61qjhq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ee26a57aacbd571da0cfaca2c31eec6ea86a543/recipes/helm-perspeen"; - sha256 = "07cnsfhph807fqyai3by2c5ml9a40gxkq280f27disf8sc45rg1y"; - name = "recipe"; - }; - packageRequires = [ helm perspeen ]; - meta = { - homepage = "https://melpa.org/#/helm-perspeen"; - license = lib.licenses.free; - }; - }) {}; - helm-proc = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-proc"; - ename = "helm-proc"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "helm-proc"; - rev = "0a75a86e4f381143134e0cdcd8c84c5b5b0fb2d6"; - sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-proc"; - sha256 = "11mh8ny8mhdmp16s21vy9yyql56zxcgmj2aapqs5jy4yad5q62rz"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-proc"; - license = lib.licenses.free; - }; - }) {}; - helm-project-persist = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , project-persist }: - melpaBuild { - pname = "helm-project-persist"; - ename = "helm-project-persist"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Sliim"; - repo = "helm-project-persist"; - rev = "6ed96dafb7eb2e8cc5010f960262927f4a0f8cdf"; - sha256 = "0fcn4kx8dsda8z13fwdnv94hyb2fkv61qdx1263fmsnhllya9ygg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98780edaf8b1d97aec9e25d07d93289c90fd5069/recipes/helm-project-persist"; - sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; - name = "recipe"; - }; - packageRequires = [ helm project-persist ]; - meta = { - homepage = "https://melpa.org/#/helm-project-persist"; - license = lib.licenses.free; - }; - }) {}; - helm-projectile = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "helm-projectile"; - ename = "helm-projectile"; - version = "0.14.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "helm-projectile"; - rev = "1a90f93732f1a1e8080098d65eadd6a1cd799e31"; - sha256 = "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/helm-projectile"; - sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash helm projectile ]; - meta = { - homepage = "https://melpa.org/#/helm-projectile"; - license = lib.licenses.free; - }; - }) {}; - helm-pt = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pt"; - ename = "helm-pt"; - version = "0.2"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "helm-pt"; - rev = "03e35e2bb5b683d79897d07acb57ee67009cc6cd"; - sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/helm-pt"; - sha256 = "1pvipzjw9h668jkbwwkmphvp806fs9q4mb2v2bjxpb0f3kn2qk3n"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-pt"; - license = lib.licenses.free; - }; - }) {}; - helm-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , window-purpose }: - melpaBuild { - pname = "helm-purpose"; - ename = "helm-purpose"; - version = "0.1"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "helm-purpose"; - rev = "115a9d612aa07bb6f7f7b18f42b34918699660b9"; - sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-purpose"; - sha256 = "16c9if636v7l8z5df011vdj4a3ci5kf3rdfk4g9hdbbl639yca79"; - name = "recipe"; - }; - packageRequires = [ emacs helm window-purpose ]; - meta = { - homepage = "https://melpa.org/#/helm-purpose"; - license = lib.licenses.free; - }; - }) {}; - helm-pydoc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-pydoc"; - ename = "helm-pydoc"; - version = "0.7"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-pydoc"; - rev = "30f1814b5b16db0413ffe74b0d0420b38e153df9"; - sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-pydoc"; - sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm-core ]; - meta = { - homepage = "https://melpa.org/#/helm-pydoc"; - license = lib.licenses.free; - }; - }) {}; - helm-qiita = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-qiita"; - ename = "helm-qiita"; - version = "1.1.3"; - src = fetchFromGitHub { - owner = "masutaka"; - repo = "emacs-helm-qiita"; - rev = "5f82010c595f8e122aa3f68148ba8d8ccb1333d8"; - sha256 = "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee/recipes/helm-qiita"; - sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-qiita"; - license = lib.licenses.free; - }; - }) {}; - helm-rdefs = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rdefs"; - ename = "helm-rdefs"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "saidie"; - repo = "emacs-helm-rdefs"; - rev = "cd3a6b3af3015ee58ef30cb7c81c79ebe5fc867b"; - sha256 = "0ji7ak9pkmw0wxzmw5a1amvn3pkj90v9jv1yi12w388njxn7qsvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1c7a20847513dc1153d54a3a700bc120f71dc6b/recipes/helm-rdefs"; - sha256 = "0z3nrqrz63j9nxkbxdsjj3z8zhsqlik28iry3j1plgsxq1mhrn0y"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rdefs"; - license = lib.licenses.free; - }; - }) {}; - helm-recoll = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-recoll"; - ename = "helm-recoll"; - version = "0.5"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-recoll"; - rev = "cc4c4fa9c8f4f99383647baa8512b60523dc8b36"; - sha256 = "1ic2k8ls084yn9h96pk8815wlvxkwwdq75zhm1ls197pkbw7gh7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a0d168f96470753c22b92ad863be98d8c421ccd/recipes/helm-recoll"; - sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-recoll"; - license = lib.licenses.free; - }; - }) {}; - helm-rg = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rg"; - ename = "helm-rg"; - version = "0.1"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "helm-rg"; - rev = "96dcbeb366caa0b158668384113458ee5f7c4dfd"; - sha256 = "1k9yv9iw694alf5w7555ygk2i1b26i90rqq7ny63a4nd3y5cbs5f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/958fbafdcb214f1ec89fd0d84c6600c89890e0cf/recipes/helm-rg"; - sha256 = "0gfq59540q9s6mr04q7dz638zqmqbqmbl1qaczddgmjn4vyjmf7v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rg"; - license = lib.licenses.free; - }; - }) {}; - helm-robe = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-robe"; - ename = "helm-robe"; - version = "0.2"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-robe"; - rev = "7348d0bc0251b51979554ea678b970fd01c0efe9"; - sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7018f57f6f0e4bd71e172ae23c050b44276581b/recipes/helm-robe"; - sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-robe"; - license = lib.licenses.free; - }; - }) {}; - helm-rtags = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "helm-rtags"; - ename = "helm-rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "ccba23e842a43e8079e22c2fc93d022ac40dedaf"; - sha256 = "091gh5mmgz357mz0jpmbzzrsy04bjczac02i94jxf49p6yw9v4ga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/helm-rtags"; - sha256 = "1vv6wnniplyls344qzgcf1ivv25c8qilax6sbhvsf46lvrwnr48n"; - name = "recipe"; - }; - packageRequires = [ helm rtags ]; - meta = { - homepage = "https://melpa.org/#/helm-rtags"; - license = lib.licenses.free; - }; - }) {}; - helm-rubygems-org = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-rubygems-org"; - ename = "helm-rubygems-org"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "neomantic"; - repo = "helm-rubygems-org"; - rev = "6aaed984f698cbdf9f9aceb0221404563e28764d"; - sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/655be547d57d358eff968f42c13dcf4371529a72/recipes/helm-rubygems-org"; - sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-rubygems-org"; - license = lib.licenses.free; - }; - }) {}; - helm-sage = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , sage-shell-mode }: - melpaBuild { - pname = "helm-sage"; - ename = "helm-sage"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "helm-sage"; - rev = "b42b4ba5fd1b17c4b54c30376a053281686beeb8"; - sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09760a7f7b3cff6551c394fc7b2298567ca88eb0/recipes/helm-sage"; - sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; - name = "recipe"; - }; - packageRequires = [ cl-lib helm sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/helm-sage"; - license = lib.licenses.free; - }; - }) {}; - helm-slime = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "helm-slime"; - ename = "helm-slime"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-slime"; - rev = "ebe80eebd1dfba1f1c837876c8f73cefc8c4db87"; - sha256 = "1qhb9446rpj17pm0hi3miy5gs5k3ld43bq29kzy0y26bf7ivfcjv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c35d43a7a8219de4a7f675147f598966aaecb9db/recipes/helm-slime"; - sha256 = "0qv4c1dd28zqbjxpshga967szrh75a4k51n4x86xkbax7ycca4hh"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm-core slime ]; - meta = { - homepage = "https://melpa.org/#/helm-slime"; - license = lib.licenses.free; - }; - }) {}; - helm-smex = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , smex }: - melpaBuild { - pname = "helm-smex"; - ename = "helm-smex"; - version = "0.3"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "helm-smex"; - rev = "2269375dfa452b88b5170d1a5d5849ebb2c1e413"; - sha256 = "0n2ki7g0hygsq4bi5zkhp3v772ld7niiajfznxmv11dgn949a52s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/85568bd732da952053148e07b95e53f7caf5f62c/recipes/helm-smex"; - sha256 = "02jvq2hyq4wwc9v8gaxr9vkjldc60khdbjf71p8w2iny5w3k0jbj"; - name = "recipe"; - }; - packageRequires = [ emacs helm smex ]; - meta = { - homepage = "https://melpa.org/#/helm-smex"; - license = lib.licenses.free; - }; - }) {}; - helm-spaces = callPackage ({ fetchFromGitHub - , fetchurl - , helm-core - , lib - , melpaBuild - , spaces }: - melpaBuild { - pname = "helm-spaces"; - ename = "helm-spaces"; - version = "0.4"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "helm-spaces"; - rev = "877e2b5178926308d6a7c2a37477bb12c33a96d4"; - sha256 = "1cz8aw6zprzfalagma7jmbycwll2chk2l4n5hkgqyhakdfm2ryzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c2ffb50643223b68a62fab348cd5aba24ce92e6/recipes/helm-spaces"; - sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; - name = "recipe"; - }; - packageRequires = [ helm-core spaces ]; - meta = { - homepage = "https://melpa.org/#/helm-spaces"; - license = lib.licenses.free; - }; - }) {}; - helm-swoop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-swoop"; - ename = "helm-swoop"; - version = "1.7.4"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "helm-swoop"; - rev = "c66336b8245ddc51c4206f19c119f1081920985c"; - sha256 = "0b23j1bkpg4pm310hqdhgnl4mxsj05gpl08b6kb2ja4fzrg6adsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-swoop"; - sha256 = "1b3nyh4h5kcvwam539va4gzxa3rl4a0rdcriif21yq340yifjbdx"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-swoop"; - license = lib.licenses.free; - }; - }) {}; - helm-system-packages = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "helm-system-packages"; - ename = "helm-system-packages"; - version = "1.10.1"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-system-packages"; - rev = "2b4636dc861ffe2c4a2025b67ab40460f85b9563"; - sha256 = "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c46cfb0fcda0500e15d04106150a072a1a75ccc/recipes/helm-system-packages"; - sha256 = "01mndx2zzh7r7gmpn6gd1vy1w3l6dnhvgn7n2p39viji1r8b39s4"; - name = "recipe"; - }; - packageRequires = [ emacs helm seq ]; - meta = { - homepage = "https://melpa.org/#/helm-system-packages"; - license = lib.licenses.free; - }; - }) {}; - helm-taskswitch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-taskswitch"; - ename = "helm-taskswitch"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "bdc34"; - repo = "helm-taskswitch"; - rev = "de494738f8e5f7d6e681199dd3aad91e5bdb7691"; - sha256 = "01a4z0x5p94hglcnakxdgi4cq0cvz48c3dg58b7y2cq1nwjdw8d7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3602b1f7b9a75cc82c4bde9ea12b2509465db30f/recipes/helm-taskswitch"; - sha256 = "01yvdbwlixif670f4lffpsk9kvlhgrmh95jw0vc568x0bd3j2a02"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-taskswitch"; - license = lib.licenses.free; - }; - }) {}; - helm-themes = callPackage ({ fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-themes"; - ename = "helm-themes"; - version = "0.5"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-helm-themes"; - rev = "8c979f4efc6174eed7df5f3b62db955246202818"; - sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/helm-themes"; - sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; - name = "recipe"; - }; - packageRequires = [ helm ]; - meta = { - homepage = "https://melpa.org/#/helm-themes"; - license = lib.licenses.free; - }; - }) {}; - helm-tramp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-tramp"; - ename = "helm-tramp"; - version = "1.2.7"; - src = fetchFromGitHub { - owner = "masasam"; - repo = "emacs-helm-tramp"; - rev = "af5bd50b955e385bc447080e720ffc85ed0b286b"; - sha256 = "0s6zasnk9kwpiw3446n0jn7xi5v6w7asdpzx5aqh85karrb7bbq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/helm-tramp"; - sha256 = "0wqnabaywkhj1fnc3wpx7czrqbja1hsqwcpixmvv0fyrflmza517"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-tramp"; - license = lib.licenses.free; - }; - }) {}; - helm-unicode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-unicode"; - ename = "helm-unicode"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "bomgar"; - repo = "helm-unicode"; - rev = "87a738b9ff2b3a0a136dd45f4cc354bf6dd8573f"; - sha256 = "0kq1775b04jxlww6bvns5d4wl6rk6cvfl8f2avam8l9q1gw80y8h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f720b9f9b667bf9ff3080938beab36aa0036dc92/recipes/helm-unicode"; - sha256 = "1j95qy2zwdb46dl30ankfx7013l0akc61m14s473j93w320j5224"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-unicode"; - license = lib.licenses.free; - }; - }) {}; - helm-w32-launcher = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-w32-launcher"; - ename = "helm-w32-launcher"; - version = "0.1.6"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "helm-w32-launcher"; - rev = "01aa370a32900e7521330fba495474f2aa435e19"; - sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa678329a5081e1affa460c00239dabfd1b9dd82/recipes/helm-w32-launcher"; - sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-w32-launcher"; - license = lib.licenses.free; - }; - }) {}; - helm-w3m = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , w3m }: - melpaBuild { - pname = "helm-w3m"; - ename = "helm-w3m"; - version = "1.0"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = "helm-w3m"; - rev = "280673470672c9fbc57fd6a91defeb9f6641fc8a"; - sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f683fc9c7990e9ecb8a94808a7d03eb90c5569b1/recipes/helm-w3m"; - sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm w3m ]; - meta = { - homepage = "https://melpa.org/#/helm-w3m"; - license = lib.licenses.free; - }; - }) {}; - helm-zhihu-daily = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "helm-zhihu-daily"; - ename = "helm-zhihu-daily"; - version = "0.3"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "helm-zhihu-daily"; - rev = "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7"; - sha256 = "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27246ec2bad3c85f8bb76aa26ebcd800edfe0d70/recipes/helm-zhihu-daily"; - sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs helm ]; - meta = { - homepage = "https://melpa.org/#/helm-zhihu-daily"; - license = lib.licenses.free; - }; - }) {}; - help-find-org-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "help-find-org-mode"; - ename = "help-find-org-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "help-find-org-mode"; - rev = "c6fa2c8a8e9381572190010a9fa01f2be78f2790"; - sha256 = "1szjqaw31r5070wpbj5rcai124c66bs32x35w1hsxyvzs5k85wg9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/572003398d1bba572fa9f6332b25ade9306bf718/recipes/help-find-org-mode"; - sha256 = "149rd61bcvgrwhnhlqriw6fn6fr4pwr4ynmj2bwcp558nwf0py0b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/help-find-org-mode"; - license = lib.licenses.free; - }; - }) {}; - helpful = callPackage ({ dash - , dash-functional - , elisp-refs - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "helpful"; - ename = "helpful"; - version = "0.16"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "helpful"; - rev = "a20eef8fd3fb33abe35dd2ed1590184bc2975b69"; - sha256 = "1pzlx3galyryd3hd84hnd7r5s6yl9sdrfhy1s6dgz40glw41wmpr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/889d34b654de13bd413d46071a5ff191cbf3d157/recipes/helpful"; - sha256 = "17w9j5v1r2c8ka1fpzbr295cgnsbiw8fxlslh4zbjqzaazamchn2"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional elisp-refs emacs f s shut-up ]; - meta = { - homepage = "https://melpa.org/#/helpful"; - license = lib.licenses.free; - }; - }) {}; - hfst-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hfst-mode"; - ename = "hfst-mode"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "hfst-mode"; - rev = "ac1bb9dd92545d3e7fdc05c83996c227cc15c6b8"; - sha256 = "0zsz8542kh51clzy8j7g29bwm8zcnfxm9sjzh3xjpqk2ziqf4ii6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e324bb114997f9cc57d76d8a66fec4ff4d1d71fe/recipes/hfst-mode"; - sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hfst-mode"; - license = lib.licenses.free; - }; - }) {}; - hi2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hi2"; - ename = "hi2"; - version = "1.0"; - src = fetchFromGitHub { - owner = "nilcons"; - repo = "hi2"; - rev = "c9d199727b5cdcb9e36a972b38131ce4611fd6c8"; - sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba880f0130707098e5b648f74d14e151b0110e4e/recipes/hi2"; - sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hi2"; - license = lib.licenses.free; - }; - }) {}; - hide-lines = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hide-lines"; - ename = "hide-lines"; - version = "20130623.1701"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "hide-lines"; - rev = "4bfb4c6f4769bd6c637e4c18bbf65506832fc9f0"; - sha256 = "01cy7v9ql70bsvjz3idq23jpyb8jb61bs9ff8vf5y3fj45pc32ps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/hide-lines"; - sha256 = "18h5ygi6idpb5wjlmjjvjmwcw7xiljkfxdvq7pm8wnw75p705x4d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hide-lines"; - license = lib.licenses.free; - }; - }) {}; - hide-mode-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hide-mode-line"; - ename = "hide-mode-line"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-hide-mode-line"; - rev = "86b9057391edad75467261c2e579603567e608f9"; - sha256 = "0qmjmwhmlm008r22n2mv7lir4v1lpfz1c3yvqlwjgv0glbyvqd88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2af28365f9fbc6ae71043a67966490c5d18a6095/recipes/hide-mode-line"; - sha256 = "0yl6aicpib5h1ckqi3gyilh2nwvp8gf1017n1w1755j01gw1p9hl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hide-mode-line"; - license = lib.licenses.free; - }; - }) {}; - hierarchy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hierarchy"; - ename = "hierarchy"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "hierarchy"; - rev = "4ab1372c252847c316f8978a81e2fe92ff79579e"; - sha256 = "1kykbb1sil5cycfa5aj8dhsxc5yrx1641i2np5kwdjid6ahdlz5r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7aea238a2d14e9f58c0474251984b6c617b6854d/recipes/hierarchy"; - sha256 = "0fh1a590pdq21b4mwh9wrfsmm2lw2faw18r35cdzy8fgyf89yimp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hierarchy"; - license = lib.licenses.free; - }; - }) {}; - highlight-blocks = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-blocks"; - ename = "highlight-blocks"; - version = "0.1.17"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-blocks"; - rev = "33cf3d36662faa36c86c8d53e4d5a3922efa3eb8"; - sha256 = "04v5y04v4n06ig8zld6axrxpz07s70sn5ckxcy8gnz5qm0zvr7mx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaf524488c408483ea8f2c3a71174b1b5fc3f5da/recipes/highlight-blocks"; - sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-blocks"; - license = lib.licenses.free; - }; - }) {}; - highlight-context-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-context-line"; - ename = "highlight-context-line"; - version = "2.0"; - src = fetchFromGitHub { - owner = "ska2342"; - repo = "highlight-context-line"; - rev = "c3257c0ca9dba76167bbd7e0718a65ecd26ef26f"; - sha256 = "10mv1hd33msafp3r62p9zhwivy0l876ci9xjh7nqc9621qxxd5rw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00df721571ff67fe158251fa843c8f515ded3469/recipes/highlight-context-line"; - sha256 = "0zmqcfsr2j0m2l76c8h6lmdqwrd1b38gi6yp5sdib0m4vj9d0pnd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-context-line"; - license = lib.licenses.free; - }; - }) {}; - highlight-defined = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-defined"; - ename = "highlight-defined"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-defined"; - rev = "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e"; - sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/highlight-defined"; - sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-defined"; - license = lib.licenses.free; - }; - }) {}; - highlight-indentation = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-indentation"; - ename = "highlight-indentation"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "antonj"; - repo = "Highlight-Indentation-for-Emacs"; - rev = "cd6d8168ccb04c6c0394f42e9512c58f23c01689"; - sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31c443de5088410c0fe1b1c18f664b33ad259277/recipes/highlight-indentation"; - sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-indentation"; - license = lib.licenses.free; - }; - }) {}; - highlight-numbers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parent-mode }: - melpaBuild { - pname = "highlight-numbers"; - ename = "highlight-numbers"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-numbers"; - rev = "b7adef0286aaa5bca8e98a12d0ffed3a880e25aa"; - sha256 = "1r07mpyr7rhd7bkg778hx6vbhb4n9ixgzkpszhgks7ri6ia38pj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/882e3a4877ddd22cc52f56f0ce3d55b6e4831c7a/recipes/highlight-numbers"; - sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; - name = "recipe"; - }; - packageRequires = [ emacs parent-mode ]; - meta = { - homepage = "https://melpa.org/#/highlight-numbers"; - license = lib.licenses.free; - }; - }) {}; - highlight-parentheses = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-parentheses"; - ename = "highlight-parentheses"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "tsdh"; - repo = "highlight-parentheses.el"; - rev = "5aa800a68e3795716de1e7f2722e836781190f31"; - sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/highlight-parentheses"; - sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-parentheses"; - license = lib.licenses.free; - }; - }) {}; - highlight-quoted = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-quoted"; - ename = "highlight-quoted"; - version = "0.1"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "highlight-quoted"; - rev = "cdd7164f9ad3a9929387c08af641ef6f5f013f4f"; - sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93b5ba18e4bc31ca60aee9cb4674586cd8523bcf/recipes/highlight-quoted"; - sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/highlight-quoted"; - license = lib.licenses.free; - }; - }) {}; - highlight-symbol = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "highlight-symbol"; - ename = "highlight-symbol"; - version = "1.3"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "highlight-symbol.el"; - rev = "6136dac6d4328c19077a838dfbae2efc4caa4db2"; - sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/highlight-symbol"; - sha256 = "01zw7xrkpgc89m55d60dx3s3kjajh5c164f64s2fzrgl9xj92h0r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/highlight-symbol"; - license = lib.licenses.free; - }; - }) {}; - hindent = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hindent"; - ename = "hindent"; - version = "5.3.0"; - src = fetchFromGitHub { - owner = "commercialhaskell"; - repo = "hindent"; - rev = "dc47d8b98ebd6ee7fdd7de5f75e65e5b5eedf72f"; - sha256 = "0xp3mpiyrc6886bi9rih4vbmsar56h8i5sapigd3gn2pv2v688bc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/hindent"; - sha256 = "0az2zhdi73sa3h1q1c0bayqdk22a7ngrvsg9fr8b0i39sn3w8y07"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/hindent"; - license = lib.licenses.free; - }; - }) {}; - hippie-expand-slime = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hippie-expand-slime"; - ename = "hippie-expand-slime"; - version = "0.1"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "hippie-expand-slime"; - rev = "de31fbc9f9d55891a006463bcee7670b47084015"; - sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hippie-expand-slime"; - sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hippie-expand-slime"; - license = lib.licenses.free; - }; - }) {}; - hippie-namespace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hippie-namespace"; - ename = "hippie-namespace"; - version = "0.5.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "hippie-namespace"; - rev = "79a662dfe9e61341e071b879f4f9101ca027ad10"; - sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/hippie-namespace"; - sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hippie-namespace"; - license = lib.licenses.free; - }; - }) {}; - history = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "history"; - ename = "history"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "boyw165"; - repo = "history"; - rev = "adef53ecc2f6067bb61f020a2b66c5185a51632d"; - sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f51d4cc6521546c99197adeb35459fcd53bd67d4/recipes/history"; - sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/history"; - license = lib.licenses.free; - }; - }) {}; - historyf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "historyf"; - ename = "historyf"; - version = "0.0.9"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-historyf"; - rev = "64ab6c9d2cd6dec6982622bf675326e011373cd2"; - sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a67279875c19475433fa13625c95ee5855962a59/recipes/historyf"; - sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/historyf"; - license = lib.licenses.free; - }; - }) {}; - hl-anything = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-anything"; - ename = "hl-anything"; - version = "0.0.9"; - src = fetchFromGitHub { - owner = "hl-anything"; - repo = "hl-anything-emacs"; - rev = "de631c87d3a6602cdbf84c1623558334fda354fa"; - sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f38d26ede4e2e1d495a02c68e3b5041702b032e8/recipes/hl-anything"; - sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-anything"; - license = lib.licenses.free; - }; - }) {}; - hl-sentence = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-sentence"; - ename = "hl-sentence"; - version = "3"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "hl-sentence"; - rev = "f88882772f1a29fabb54194cc8aacd80d7f5b085"; - sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/hl-sentence"; - sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hl-sentence"; - license = lib.licenses.free; - }; - }) {}; - hl-todo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hl-todo"; - ename = "hl-todo"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "hl-todo"; - rev = "487d349b7b8d6738223d5dd10957dd10b45eb9f3"; - sha256 = "07xcc04ivpl5sbgb55qz84mz6wa500h0awzw1zq1ba5mfjjq8hls"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7/recipes/hl-todo"; - sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/hl-todo"; - license = lib.licenses.free; - }; - }) {}; - hoa-pp-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "hoa-pp-mode"; - ename = "hoa-pp-mode"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "hoaproject"; - repo = "Contributions-Emacs-Pp"; - rev = "a72104a191214fba502653643a0d166a8f5341d9"; - sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c0d707dad9dc86bb3d6a829a60e21e92a5f3160/recipes/hoa-pp-mode"; - sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; - name = "recipe"; - }; - packageRequires = [ emacs names ]; - meta = { - homepage = "https://melpa.org/#/hoa-pp-mode"; - license = lib.licenses.free; - }; - }) {}; - homebrew-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "homebrew-mode"; - ename = "homebrew-mode"; - version = "1.3.6"; - src = fetchFromGitHub { - owner = "dunn"; - repo = "homebrew-mode"; - rev = "d422307aee2f897d1a92e3b959c3214bc54cbe38"; - sha256 = "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e4007f6d15574098722fb427b6a9903f77afb21/recipes/homebrew-mode"; - sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; - name = "recipe"; - }; - packageRequires = [ dash emacs inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/homebrew-mode"; - license = lib.licenses.free; - }; - }) {}; - hookify = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hookify"; - ename = "hookify"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "hookify"; - rev = "e76127230716f7fab6662410c03c3872d17a172b"; - sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa04ccd0ac05beed5de8d51ed96ccbf0071fdea1/recipes/hookify"; - sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/hookify"; - license = lib.licenses.free; - }; - }) {}; - hound = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "hound"; - ename = "hound"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "ryoung786"; - repo = "hound.el"; - rev = "28cb804d99f9240d690d60098644e4300336b5fa"; - sha256 = "1zyd6350mbah7wjz7qrwyh9pr4jpk5i1v8p7cfmdlja92fpqj9rh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90cfc34eb4e8be7bf887533b85feba91131a435b/recipes/hound"; - sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; - name = "recipe"; - }; - packageRequires = [ cl-lib request ]; - meta = { - homepage = "https://melpa.org/#/hound"; - license = lib.licenses.free; - }; - }) {}; - ht = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ht"; - ename = "ht"; - version = "2.2"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "ht.el"; - rev = "a741bac82797d25ec0542764df7443e9e7241033"; - sha256 = "1m1v31bfaw2g3jymcxsl2bi1z37pj0sfhmldljk8m9zgjll56g6c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c7589bca1c1dfcc0fe76779f6847fda946ab981/recipes/ht"; - sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ht"; - license = lib.licenses.free; - }; - }) {}; - html-to-markdown = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "html-to-markdown"; - ename = "html-to-markdown"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "html-to-markdown"; - rev = "0fa0effd71acd8981a425ef11e0e63d53aea3199"; - sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/html-to-markdown"; - sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/html-to-markdown"; - license = lib.licenses.free; - }; - }) {}; - htmlize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "htmlize"; - ename = "htmlize"; - version = "1.54"; - src = fetchFromGitHub { - owner = "hniksic"; - repo = "emacs-htmlize"; - rev = "a8b73f1393b2d73541ba4a8fd716c0d07ce50276"; - sha256 = "1d5hj8wibp1lxs697y7i4yrpv9gqq821gxmpqqkn2jwrb70nsngl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/075aa00a0757c6cd1ad392f0300bf5f1b937648d/recipes/htmlize"; - sha256 = "16nvvsi4nxi0zzk5a6mwmp43p0ls20zdx9r18mxz6bsaw6jangh2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/htmlize"; - license = lib.licenses.free; - }; - }) {}; - httpcode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "httpcode"; - ename = "httpcode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "rspivak"; - repo = "httpcode.el"; - rev = "9f860730ffa0b11f48ad8db3eb57b3e844918c4e"; - sha256 = "1wk9dkf2g95zsdfcvbazi9hls5k3yia86npsmyk486pj0ij9xmvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/906da23e26d44f8c71ba57ab59bb089caea673a9/recipes/httpcode"; - sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/httpcode"; - license = lib.licenses.free; - }; - }) {}; - httprepl = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "httprepl"; - ename = "httprepl"; - version = "1.1"; - src = fetchFromGitHub { - owner = "gregsexton"; - repo = "httprepl.el"; - rev = "d2de8a676544deed1a5e084631a7799e487dbe55"; - sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c49824f6e2dc2f3482e607c2d3a1e2d7685bf688/recipes/httprepl"; - sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; - name = "recipe"; - }; - packageRequires = [ dash emacs s ]; - meta = { - homepage = "https://melpa.org/#/httprepl"; - license = lib.licenses.free; - }; - }) {}; - hugsql-ghosts = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hugsql-ghosts"; - ename = "hugsql-ghosts"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "rkaercher"; - repo = "hugsql-ghosts"; - rev = "f3ebc60c66204ad39058cb84eb4bd5facce091df"; - sha256 = "0pcr39x8yxl5aa0sz20gw20ixz5imw5m19bzhzbzyn7slr65hlqn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/969fd5e51bf93b5eff6919956c43c041a3b24d1e/recipes/hugsql-ghosts"; - sha256 = "1v1iypis5iyimdr9796qpqw0qmhzijap0nbr0mhhyp4001kakkwz"; - name = "recipe"; - }; - packageRequires = [ cider dash s ]; - meta = { - homepage = "https://melpa.org/#/hugsql-ghosts"; - license = lib.licenses.free; - }; - }) {}; - hungry-delete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hungry-delete"; - ename = "hungry-delete"; - version = "1.1.5"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "hungry-delete"; - rev = "78a787a87aceb821818bbe2a322fbf2e5cbf80c3"; - sha256 = "171s7akqcpj0jcbm8w19b4n9kdzw0acf7cv0ymwdz5mmgmfiy292"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e33960d9b7e24f830ebe4e5a26a562422d52fe97/recipes/hungry-delete"; - sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hungry-delete"; - license = lib.licenses.free; - }; - }) {}; - hy-mode = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hy-mode"; - ename = "hy-mode"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "hylang"; - repo = "hy-mode"; - rev = "27a9e6bee0df741f2699e00e64ea2c7a279b401d"; - sha256 = "1jxximiznz7fw9ys5k6plw85zrbzvxidql7py1fdi425fdp4058z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc9ab5cf16b61bb27559cd8ec5cf665a5aab2154/recipes/hy-mode"; - sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs s ]; - meta = { - homepage = "https://melpa.org/#/hy-mode"; - license = lib.licenses.free; - }; - }) {}; - hyai = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hyai"; - ename = "hyai"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "hyai"; - rev = "a6d936a68ddbdfa314662c7c3e2b40538334ddeb"; - sha256 = "108i53sbjdwx2bz5cfbi0a06vy3a44vgwag43nkbpjk116bnjkc9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1dd9bd1cfd2f3b760b664a4677b0e4e617cbdfa6/recipes/hyai"; - sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/hyai"; - license = lib.licenses.free; - }; - }) {}; - hydandata-light-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hydandata-light-theme"; - ename = "hydandata-light-theme"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "hydandata"; - repo = "hydandata-light-theme"; - rev = "3b9bb5f213029a8331818b1d670194ef26d9505a"; - sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/413c617f15947782891159a240e0c9014f1f7d11/recipes/hydandata-light-theme"; - sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hydandata-light-theme"; - license = lib.licenses.free; - }; - }) {}; - hyde = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "hyde"; - ename = "hyde"; - version = "0.2"; - src = fetchFromGitHub { - owner = "nibrahim"; - repo = "Hyde"; - rev = "181f9d2f91c2678a22243c5485162fa7999fd893"; - sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151f5c1097e5020dbc13e41f2657aae781c5942b/recipes/hyde"; - sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/hyde"; - license = lib.licenses.free; - }; - }) {}; - hydra = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , lv - , melpaBuild }: - melpaBuild { - pname = "hydra"; - ename = "hydra"; - version = "0.15.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "hydra"; - rev = "f27fce1b2f0a9162e159557bdeb2c0c94defb4d2"; - sha256 = "0fapvhmhgc9kppf3bvkgry0cd7gyilg7sfvlscfrfjxpx4xvwsfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82d9e1bfd501ed2d1cd11319c5e1eb17482e8922/recipes/hydra"; - sha256 = "1s1hj70jjbira054q8ly1pcr0818hh91qnhj0zwbv7milmvv2wwd"; - name = "recipe"; - }; - packageRequires = [ cl-lib lv ]; - meta = { - homepage = "https://melpa.org/#/hydra"; - license = lib.licenses.free; - }; - }) {}; - hyperspace = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "hyperspace"; - ename = "hyperspace"; - version = "0.8.4"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "hyperspace-el"; - rev = "5fdd680dc2e7b8a064cfdf93d6948546ff51afc2"; - sha256 = "1r5h55zcm5n2vx126q16ndhgdchcj59qqcybhsqw69vk02x96arg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0696a12acba676015640de63fc6e011128bca71c/recipes/hyperspace"; - sha256 = "0ya41c9bxvspj81n5209p9b4c9p1i6jcp710n9i9jawpahwpqlkw"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/hyperspace"; - license = lib.licenses.free; - }; - }) {}; - ialign = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ialign"; - ename = "ialign"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "mkcms"; - repo = "interactive-align"; - rev = "7ad88c8f7922adc616b8f060b65fa1add8952ea1"; - sha256 = "0bh03w91i622hbar5dcq631ndxx1y8kd3h655pgw1g0lqkv1mlnc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/072f1f7ce17e2972863bce10af9c52b3c6502eab/recipes/ialign"; - sha256 = "070a0fa2vbdfvbnpbzv4z0c7311lf8sy2zw2ifn9k548n4l8k62j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ialign"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "ibuffer-projectile"; - ename = "ibuffer-projectile"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ibuffer-projectile"; - rev = "36b3fc2d42337174d4fa37c4d2a77e6153634965"; - sha256 = "0kvf2mn6b1dkn72cs1bpamy2wc5j1n48j4x6kl3ihvh7bibqg115"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/363a6a888945f2c8b02f5715539439ba744d737d/recipes/ibuffer-projectile"; - sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; - name = "recipe"; - }; - packageRequires = [ projectile ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-projectile"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-tramp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-tramp"; - ename = "ibuffer-tramp"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "svend"; - repo = "ibuffer-tramp"; - rev = "41fab2ad174f53a4cf5ef7d2ebef518dede82ab4"; - sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a7449b15cb2a89cf06ea3de2cfdc6bc387db3b/recipes/ibuffer-tramp"; - sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ibuffer-tramp"; - license = lib.licenses.free; - }; - }) {}; - ibuffer-vc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ibuffer-vc"; - ename = "ibuffer-vc"; - version = "0.10"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ibuffer-vc"; - rev = "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a"; - sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/ibuffer-vc"; - sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ibuffer-vc"; - license = lib.licenses.free; - }; - }) {}; - identica-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "identica-mode"; - ename = "identica-mode"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "gabrielsaldana"; - repo = "Emacs-Identica-mode"; - rev = "cf9183ee11ac922e85c7c908f04e2d00b03111b3"; - sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/812b7c1fbc435f0530b7f66a1e65f62f5f00da01/recipes/identica-mode"; - sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/identica-mode"; - license = lib.licenses.free; - }; - }) {}; - idle-highlight-in-visible-buffers-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-highlight-in-visible-buffers-mode"; - ename = "idle-highlight-in-visible-buffers-mode"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "ignacy"; - repo = "idle-highlight-in-visible-buffers-mode"; - rev = "8d8de309d5bd4b035c01bf7f0cfc6e079c79d898"; - sha256 = "194r7f4ngwx03n74rs26hqn9wypn9idjizvmffpsjpxfr7wr9z7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5a533be3b8dea556438d93ac48853dd3a9690f1/recipes/idle-highlight-in-visible-buffers-mode"; - sha256 = "0kv06qlv1zp5hwaya0l90z6d5lhxcg69qac6x24ky6kf97vcdq72"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-highlight-in-visible-buffers-mode"; - license = lib.licenses.free; - }; - }) {}; - idle-highlight-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idle-highlight-mode"; - ename = "idle-highlight-mode"; - version = "1.1.3"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "idle-highlight-mode"; - rev = "c466f2a9e291f9da1167dc879577b2e1a7880482"; - sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/idle-highlight-mode"; - sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idle-highlight-mode"; - license = lib.licenses.free; - }; - }) {}; - ido-at-point = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-at-point"; - ename = "ido-at-point"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "katspaugh"; - repo = "ido-at-point"; - rev = "6b267f202dc3d3d924c904fbd894e9a209f231de"; - sha256 = "1bj8k5fq6x3s5qmr02bnkcls7sndmg4wjjjrsd3fr6yl8c4jcy3k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ffbfa66c4284a134265efc606fdc7652b0a7f75/recipes/ido-at-point"; - sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-at-point"; - license = lib.licenses.free; - }; - }) {}; - ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-complete-space-or-hyphen"; - ename = "ido-complete-space-or-hyphen"; - version = "1.1"; - src = fetchFromGitHub { - owner = "doitian"; - repo = "ido-complete-space-or-hyphen"; - rev = "ad9baaec10e06be3f85db97b6c8fd970cf20df77"; - sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59e11094068d3a0c0e4edc1f82158c43d3b15e0e/recipes/ido-complete-space-or-hyphen"; - sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-complete-space-or-hyphen"; - license = lib.licenses.free; - }; - }) {}; - ido-completing-read-plus = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize - , s }: - melpaBuild { - pname = "ido-completing-read-plus"; - ename = "ido-completing-read+"; - version = "4.12"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "ido-completing-read-plus"; - rev = "d56125deac540a2ab396d6d71f7c1eeae7f37588"; - sha256 = "11wn2xf7dbgfhwdrjazshf4c5im1yxnqpyvq8633fjc1cn9s7vxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/ido-completing-read+"; - sha256 = "0rxdv3cd0bg0p8c1bck5vichdq941dki934k23qf5p6cfgw8gw4z"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs memoize s ]; - meta = { - homepage = "https://melpa.org/#/ido-completing-read+"; - license = lib.licenses.free; - }; - }) {}; - ido-describe-bindings = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-describe-bindings"; - ename = "ido-describe-bindings"; - version = "0.0.11"; - src = fetchFromGitHub { - owner = "danil"; - repo = "ido-describe-bindings"; - rev = "a142ff1c33df23ed9665497d0dcae2943b3c706a"; - sha256 = "0967709jyp9s04i6gi90axgqzhz03cdf1j1w39yrkds6q1b6v7jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31b8e255630f1348a5b5730f7b624ad550d219ad/recipes/ido-describe-bindings"; - sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ido-describe-bindings"; - license = lib.licenses.free; - }; - }) {}; - ido-grid-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-grid-mode"; - ename = "ido-grid-mode"; - version = "1.1.5"; - src = fetchFromGitHub { - owner = "larkery"; - repo = "ido-grid-mode.el"; - rev = "8bbd66e365d4f6f352bbb17673be5869ab26d7ab"; - sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ido-grid-mode"; - sha256 = "0sq1d2fwvv247rr9lqg9x87d5h910k5ifqr9cjyskc74mvhrcsr3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ido-grid-mode"; - license = lib.licenses.free; - }; - }) {}; - ido-load-library = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "ido-load-library"; - ename = "ido-load-library"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ido-load-library"; - rev = "8589cb1e4303066eb333f1cfc789835d1cbe21df"; - sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/ido-load-library"; - sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/ido-load-library"; - license = lib.licenses.free; - }; - }) {}; - ido-occur = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-occur"; - ename = "ido-occur"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "danil"; - repo = "ido-occur"; - rev = "b0e67fe4835c162cbcf8a982bdf377955b9ac5ae"; - sha256 = "13f21vx3q1qbnl13n3lx1rnr8dhq3zwch22pvy53h8q6sdf7r73a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a576d8569bf82be01e7d50defcc99a90aab1436/recipes/ido-occur"; - sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ido-occur"; - license = lib.licenses.free; - }; - }) {}; - ido-vertical-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-vertical-mode"; - ename = "ido-vertical-mode"; - version = "0.1.6"; - src = fetchFromGitHub { - owner = "creichert"; - repo = "ido-vertical-mode.el"; - rev = "c3e0514405ba5c15b5527e7f8e2d42dff259788f"; - sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4bbd212ea4606b9871cf583d06b5cee2f6ce0a9/recipes/ido-vertical-mode"; - sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ido-vertical-mode"; - license = lib.licenses.free; - }; - }) {}; - ido-yes-or-no = callPackage ({ fetchFromGitHub - , fetchurl - , ido-completing-read-plus - , lib - , melpaBuild }: - melpaBuild { - pname = "ido-yes-or-no"; - ename = "ido-yes-or-no"; - version = "1.4"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "ido-yes-or-no"; - rev = "9ddee9e878ad62d58c9f4b3a7685f22b8e36e420"; - sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e575f46b8597a34523df6b6a75da5a640f4c5a2e/recipes/ido-yes-or-no"; - sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; - name = "recipe"; - }; - packageRequires = [ ido-completing-read-plus ]; - meta = { - homepage = "https://melpa.org/#/ido-yes-or-no"; - license = lib.licenses.free; - }; - }) {}; - idomenu = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "idomenu"; - ename = "idomenu"; - version = "0.1"; - src = fetchFromGitHub { - owner = "birkenfeld"; - repo = "idomenu"; - rev = "5daaf7e06e4704ae43c825488109d7eb8c049321"; - sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f856045bc5ab2aee4dd4ad9806917e27e56ec64c/recipes/idomenu"; - sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/idomenu"; - license = lib.licenses.free; - }; - }) {}; - idris-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , prop-menu }: - melpaBuild { - pname = "idris-mode"; - ename = "idris-mode"; - version = "0.9.19"; - src = fetchFromGitHub { - owner = "idris-hackers"; - repo = "idris-mode"; - rev = "66a822a621e7bade71fdeb32e9fe520b322c8967"; - sha256 = "1c3drq4f62p9arm92arp4dby1cw2fh5x3lmlb63rxbpsh5askw75"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17a86efca3bdebef7c92ba6ece2de214d283c627/recipes/idris-mode"; - sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs prop-menu ]; - meta = { - homepage = "https://melpa.org/#/idris-mode"; - license = lib.licenses.free; - }; - }) {}; - iedit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iedit"; - ename = "iedit"; - version = "0.9.9.9"; - src = fetchFromGitHub { - owner = "victorhge"; - repo = "iedit"; - rev = "39919478f9472ce7a808ca601f4c19261ecc2f99"; - sha256 = "1pwkrm98vlpzsy5iwwfksdaz3zzyi7bvdf5fglhsn4ssf47p787g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/iedit"; - sha256 = "0bh8ir6kspxjsvjww5y3b5hl3flbm2cc77jh8vnnva3z086f18mh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iedit"; - license = lib.licenses.free; - }; - }) {}; - iflipb = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iflipb"; - ename = "iflipb"; - version = "1.4"; - src = fetchFromGitHub { - owner = "jrosdahl"; - repo = "iflipb"; - rev = "a5ad1fbd1173cff5228dab265515c92c0778f86a"; - sha256 = "0gyxd5d57j0x93mqnfwwdf28plp102xh0ag2d2iws7y1d5m99wm2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318/recipes/iflipb"; - sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iflipb"; - license = lib.licenses.free; - }; - }) {}; - ignoramus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ignoramus"; - ename = "ignoramus"; - version = "0.7.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ignoramus"; - rev = "00385fcd0d42de3a470f61c1fdbe7e19fbef9c5b"; - sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac5439afe2f9a902e615f0cf919ef7138559c0f0/recipes/ignoramus"; - sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ignoramus"; - license = lib.licenses.free; - }; - }) {}; - image-archive = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-archive"; - ename = "image-archive"; - version = "0.0.7"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-image-archive"; - rev = "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45"; - sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17464f31b07f64da0e9db187cd6f5facee3ad7ce/recipes/image-archive"; - sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/image-archive"; - license = lib.licenses.free; - }; - }) {}; - image-dired-plus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-dired-plus"; - ename = "image-dired+"; - version = "0.7.2"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-image-diredx"; - rev = "b68094625d963056ad64e0e44af0e2266b2eadc7"; - sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98f83f450804f1dc496a7bda17818cdae3f52151/recipes/image-dired+"; - sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/image-dired+"; - license = lib.licenses.free; - }; - }) {}; - image-plus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "image-plus"; - ename = "image+"; - version = "0.6.2"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-imagex"; - rev = "967508a6c151e6ab6e97d3ac332dc5599011830d"; - sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02d7400477a993b7a3cae327501dbf8db97dfa28/recipes/image+"; - sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/image+"; - license = lib.licenses.free; - }; - }) {}; - imake = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imake"; - ename = "imake"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "imake"; - rev = "7df5fb9684a0288313ef5f64594078d477105959"; - sha256 = "0xc19ir5ak1bfq0ag48ql5rj58zd565csgxhpa30s9lvvkc8kvr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28de8f7f5302b27c7c6600ad65a998119518be43/recipes/imake"; - sha256 = "0j732fi6999n9990w4l28raw140fvqfbynyh4x65yilhw95r7c34"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/imake"; - license = lib.licenses.free; - }; - }) {}; - imapfilter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imapfilter"; - ename = "imapfilter"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "imapfilter"; - rev = "5e842a8c60ba98f344edf1b1e65f5a480ed938ed"; - sha256 = "16k7cxzdjbblzckp5qppw1ga0rzdh3ww2ni7ry1h43p9cfna0kcx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2415894afa3404fbd73c84c58f8b8267187d6d86/recipes/imapfilter"; - sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/imapfilter"; - license = lib.licenses.free; - }; - }) {}; - imenu-anywhere = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenu-anywhere"; - ename = "imenu-anywhere"; - version = "1.1.4"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "imenu-anywhere"; - rev = "fc7f0fd2f19e5ebee70156a99bf87393123893e3"; - sha256 = "0g2gb7jrys81kphmhlvhvzwl8l75j36y6pqjawh9wmzzwad876q5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/imenu-anywhere"; - sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/imenu-anywhere"; - license = lib.licenses.free; - }; - }) {}; - imenu-list = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenu-list"; - ename = "imenu-list"; - version = "0.8"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "imenu-list"; - rev = "27170d27c9594989587c03c23f753a809f6a0e10"; - sha256 = "13xh9bdl3k6ccfq83wjmkpi4269qahv4davki4wq18dr4amrzhlx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86dea881a5b2d0458449f08b82c2614ad9abd068/recipes/imenu-list"; - sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/imenu-list"; - license = lib.licenses.free; - }; - }) {}; - imenus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "imenus"; - ename = "imenus"; - version = "0.2"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "imenus.el"; - rev = "ee1bbd2228dbb86df2865dc9004d375421b171ba"; - sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc571105a8d7e2ea85391812f1fa639787fa7563/recipes/imenus"; - sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/imenus"; - license = lib.licenses.free; - }; - }) {}; - immaterial-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "immaterial-theme"; - ename = "immaterial-theme"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "petergardfjall"; - repo = "emacs-immaterial-theme"; - rev = "176178a57c5b342b04bebd3107c29c6d12086cf5"; - sha256 = "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a95d88bb00b1313da82929bc2733d726d2041d7/recipes/immaterial-theme"; - sha256 = "15gwqjfpls7lqc37s70vnhycnry5g9grn6shk2wpijrxfnmyqjhj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/immaterial-theme"; - license = lib.licenses.free; - }; - }) {}; - immutant-server = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "immutant-server"; - ename = "immutant-server"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "leathekd"; - repo = "immutant-server.el"; - rev = "6f3d303354a229780a33e6bae64460a95bfefe60"; - sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6e906492f9982e2cebd1e4838d7b7c81a295efa/recipes/immutant-server"; - sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/immutant-server"; - license = lib.licenses.free; - }; - }) {}; - impatient-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "impatient-mode"; - ename = "impatient-mode"; - version = "1.1"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "impatient-mode"; - rev = "96c068d5add95595dc5be42115d100cf99f908ba"; - sha256 = "18fawpnqcm1yv7f83sz05pjihwydmafmccfmizyg0hlgayhj0izf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaa64c4d43139075d77f4518de94bcbe475d21fc/recipes/impatient-mode"; - sha256 = "07z5ds3zgzkxvxwaalp9i5x2rl5sq4jjk8ygk1rfmsl52l5y1z6j"; - name = "recipe"; - }; - packageRequires = [ cl-lib htmlize simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/impatient-mode"; - license = lib.licenses.free; - }; - }) {}; - import-js = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , grizzl - , lib - , melpaBuild }: - melpaBuild { - pname = "import-js"; - ename = "import-js"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "Galooshi"; - repo = "emacs-import-js"; - rev = "0a1032894445062b87dbe4e2c8cdba35ac25c250"; - sha256 = "0vx2k4k8ig1k74ifxaxvhbkmfmba683qza7f9pp08daa43mgr1r3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f26b8281f9bd05e3c8f2ef21838275711e622c9/recipes/import-js"; - sha256 = "00b2qv1y8879cf8ayplmwqd36w7sppx57myi2wjhy9i2rnvdbmgn"; - name = "recipe"; - }; - packageRequires = [ emacs grizzl ]; - meta = { - homepage = "https://melpa.org/#/import-js"; - license = lib.licenses.free; - }; - }) {}; - import-popwin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popwin }: - melpaBuild { - pname = "import-popwin"; - ename = "import-popwin"; - version = "0.10"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-import-popwin"; - rev = "6a21efc7fd44f8c2484d22eadf298e4bfd4bc003"; - sha256 = "1h4c3cib87hvgp37c30lx7cpyxvgdsb9hp7z0nfrkbbif0acrj2i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6f0629515f36e2e98839a6894ca8c0f58862dc2/recipes/import-popwin"; - sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; - name = "recipe"; - }; - packageRequires = [ emacs popwin ]; - meta = { - homepage = "https://melpa.org/#/import-popwin"; - license = lib.licenses.free; - }; - }) {}; - importmagic = callPackage ({ emacs - , epc - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "importmagic"; - ename = "importmagic"; - version = "1.1"; - src = fetchFromGitHub { - owner = "anachronic"; - repo = "importmagic.el"; - rev = "ab9e5c260a2044578597a467eff59e5598a7ef1c"; - sha256 = "1ifv6zfrknivjsgk0p8wh0n2bqqs1zfy8551216dfvigqs20wvq4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/importmagic"; - sha256 = "1kpmgpll0zz3zlr3q863v1fq6wmwdwx7mn676x0r7g4iy1bdslmv"; - name = "recipe"; - }; - packageRequires = [ emacs epc f ]; - meta = { - homepage = "https://melpa.org/#/importmagic"; - license = lib.licenses.free; - }; - }) {}; - indent-guide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "indent-guide"; - ename = "indent-guide"; - version = "20160630"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "indent-guide"; - rev = "feb207cb5610f351c7cdcf266e0c99117b2f786c"; - sha256 = "0ykddzily3b6c6k7fvq274pqdjf3934n8p3nrmnsw6c93i1ndd4f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d7110054801e3af5e5ef710a29f73116a2bc746/recipes/indent-guide"; - sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/indent-guide"; - license = lib.licenses.free; - }; - }) {}; - indium = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , js2-refactor - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "indium"; - ename = "indium"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "Indium"; - rev = "fd5de13204b3b5f0d2a598fbe74c5a6ac13125bd"; - sha256 = "1v2r9k589l3rsxvijs783dsk5fpl00hrpk6xffirc6rhbkij9bjh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4292058cc6e31cabc0de575134427bce7fcef541/recipes/indium"; - sha256 = "024ljx7v8xahmr8jm41fiy8i5jbg48ybqp5n67k4jwg819cz8wvl"; - name = "recipe"; - }; - packageRequires = [ company emacs js2-mode js2-refactor seq ]; - meta = { - homepage = "https://melpa.org/#/indium"; - license = lib.licenses.free; - }; - }) {}; - inf-clojure = callPackage ({ clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-clojure"; - ename = "inf-clojure"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "inf-clojure"; - rev = "247ca70f8ba5104be292aea20fbde6adb37e359f"; - sha256 = "11hyva006bc4hbhzjwb4brilm6fb7qfm5h66nl0gmmyva40y6412"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9/recipes/inf-clojure"; - sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; - name = "recipe"; - }; - packageRequires = [ clojure-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/inf-clojure"; - license = lib.licenses.free; - }; - }) {}; - inf-crystal = callPackage ({ crystal-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-crystal"; - ename = "inf-crystal"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "inf-crystal.el"; - rev = "71a330f2d29e2fb4f51d223cf6230b88620a80af"; - sha256 = "0vija33n2j4j5inzm29qk1bjzaxjm97zn263j15258pqxwkbddv3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ff84c742eebb84577f362b2739f4bcf1434d58ac/recipes/inf-crystal"; - sha256 = "09ssq7i5c2fxxbrsp3nn1f1ah1yv2nb19n5s1iqyykkk316k2q26"; - name = "recipe"; - }; - packageRequires = [ crystal-mode emacs ]; - meta = { - homepage = "https://melpa.org/#/inf-crystal"; - license = lib.licenses.free; - }; - }) {}; - inf-ruby = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inf-ruby"; - ename = "inf-ruby"; - version = "2.5.2"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "inf-ruby"; - rev = "d2cc45ac1a035286decb12c4f49c696ad5f03d27"; - sha256 = "0a1hhvfbl6mq8rjsi77fg9fh5a91hi5scjrg9rjqc5ffbql67y0v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/inf-ruby"; - sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inf-ruby"; - license = lib.licenses.free; - }; - }) {}; - inflections = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inflections"; - ename = "inflections"; - version = "2.5"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "jump.el"; - rev = "40a7ffdf734ffe7d1968909663146255d7ba69c8"; - sha256 = "1ig1wdjg914p9ng1nir2fid4mb3xz2dbpmkdnfy1klq2zp0xw2s3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/392c7616d27bf12b29ef3c2ea71e42ffaea81cc6/recipes/inflections"; - sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/inflections"; - license = lib.licenses.free; - }; - }) {}; - info-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "info-buffer"; - ename = "info-buffer"; - version = "0.2"; - src = fetchFromGitHub { - owner = "llvilanova"; - repo = "info-buffer"; - rev = "d35dad6e766c6e2ddb8dc6acb4ce5b6e10fbcaa7"; - sha256 = "0czkp7cf7qmdm1jdn67gxyxz8b4qj2kby8if50d450xqwbx0da7x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c44a1d69725b687444329d8af43c9799112b407/recipes/info-buffer"; - sha256 = "1vkgkwgwym0j5xip7mai11anlpa2h7vd5m9i1xga1b23hcs9r1w4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/info-buffer"; - license = lib.licenses.free; - }; - }) {}; - info-colors = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "info-colors"; - ename = "info-colors"; - version = "0.2"; - src = fetchFromGitHub { - owner = "ubolonton"; - repo = "info-colors"; - rev = "13dd9b6a7288e6bb692b210bcb9cd72016658dae"; - sha256 = "1h2q19574sc1lrxm9k78668pwcg3z17bnbgykmah01zlmbs264sx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d671ae8dc27439eea427e1848fc11c96ec5aee64/recipes/info-colors"; - sha256 = "1mbabrfdy9xn7lpqivqm8prp83qmdv5r0acijwvxqd3a52aadc2x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/info-colors"; - license = lib.licenses.free; - }; - }) {}; - inherit-local = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inherit-local"; - ename = "inherit-local"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "shlevy"; - repo = "inherit-local"; - rev = "b1f4ff9c41f9d64e4adaf5adcc280b82f084cdc7"; - sha256 = "1fargashyqn4ga420k3ikc1akf7mw3zcarpg24gh2591p4swa0ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08b978724ff26b3ea7a134d307d888c80e2a92a9/recipes/inherit-local"; - sha256 = "1v3q3s6qq64k1f4ck6rfgsy1arnf9cxg2kw6d1ahfrwr4ixsqm87"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/inherit-local"; - license = lib.licenses.free; - }; - }) {}; - init-loader = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "init-loader"; - ename = "init-loader"; - version = "0.2"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "init-loader"; - rev = "128ee76adbf431f0b8c30a3a29cb20c9c5100cde"; - sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e46e6ec79ff4c76fc85e13321e6dabd5797c5f45/recipes/init-loader"; - sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/init-loader"; - license = lib.licenses.free; - }; - }) {}; - init-open-recentf = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "init-open-recentf"; - ename = "init-open-recentf"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "init-open-recentf.el"; - rev = "a4f5338a14302d44fa5aebb1ddc7aff3dc9abbe3"; - sha256 = "0iph5cpz2dva1rnvp5xynmkndny87z308pziadk1qgf05mc0i61d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4db8b6eced50726c788d7343137f6b4558575abf/recipes/init-open-recentf"; - sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/init-open-recentf"; - license = lib.licenses.free; - }; - }) {}; - initsplit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "initsplit"; - ename = "initsplit"; - version = "1.6"; - src = fetchFromGitHub { - owner = "dabrahams"; - repo = "initsplit"; - rev = "950bdc568e3fd08e6106170953caf98ac582a431"; - sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a908c8fad08cd4d7dbb586570d0f0b384bf9071/recipes/initsplit"; - sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/initsplit"; - license = lib.licenses.free; - }; - }) {}; - inline-crypt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inline-crypt"; - ename = "inline-crypt"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "Sodel-the-Vociferous"; - repo = "inline-crypt-el"; - rev = "497ce9dc29a8ccac0b6dd6854f5d120514350282"; - sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b04fffe5e52f26e92930a112a64531228f94e340/recipes/inline-crypt"; - sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inline-crypt"; - license = lib.licenses.free; - }; - }) {}; - inlineR = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "inlineR"; - ename = "inlineR"; - version = "1.0"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "inlineR.el"; - rev = "29357186beca825e3d0451b700ec09b9ed65e37b"; - sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a7228e5f23a4e66f4510b2f6fc41c36aa791991/recipes/inlineR"; - sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/inlineR"; - license = lib.licenses.free; - }; - }) {}; - insert-shebang = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "insert-shebang"; - ename = "insert-shebang"; - version = "0.9.6"; - src = fetchFromGitHub { - owner = "psachin"; - repo = "insert-shebang"; - rev = "adfa473f07443b231914d277c20a3419b30399b6"; - sha256 = "10zy3vg5fr30hhv0q3jldffhjacg1yrv5d9gfkdz55ry277l3xz1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c257f4f5011cd7d0b2a5ef3adf13f9871bf0be92/recipes/insert-shebang"; - sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/insert-shebang"; - license = lib.licenses.free; - }; - }) {}; - intel-hex-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "intel-hex-mode"; - ename = "intel-hex-mode"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "mschuldt"; - repo = "intel-hex-mode"; - rev = "e83c94e1c31a8435a88b3ae395f2bc842ef83217"; - sha256 = "0jpc6wh3agdh38wdjr1x880iiaj6698nr8dkgx114fsfj1la6f7v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1bf82134671b1383f5f4d4a3c180081bea66814/recipes/intel-hex-mode"; - sha256 = "02ffbrkr3zajqhrxc3grmqm632ji4fmgnfabn42islpcfq12q3i4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/intel-hex-mode"; - license = lib.licenses.free; - }; - }) {}; - intellij-theme = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "intellij-theme"; - ename = "intellij-theme"; - version = "1.3"; - src = fetchFromGitLab { - owner = "fommil"; - repo = "emacs-intellij-theme"; - rev = "1bbfff8e6742d18e9b77ed796f44da3b7bd10606"; - sha256 = "0ml1gi2cn6h3xm5c78vxwv327r0rgimia1vqqi9jb09yb6lckbgj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cfe86071b2e84929476a771da99341f4a73cfd06/recipes/intellij-theme"; - sha256 = "1g8cninmq840sl8fmhq2hcsmz7nccbjmprzcl8w1zdavfp86b97g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/intellij-theme"; - license = lib.licenses.free; - }; - }) {}; - interleave = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "interleave"; - ename = "interleave"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "interleave"; - rev = "6b28363eac939227c6cdc8a73a1d3ea5b002442d"; - sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2/recipes/interleave"; - sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/interleave"; - license = lib.licenses.free; - }; - }) {}; - intero = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "intero"; - ename = "intero"; - version = "0.1.40"; - src = fetchFromGitHub { - owner = "commercialhaskell"; - repo = "intero"; - rev = "8da81244783fbf03afb49660423c875f2e874fba"; - sha256 = "17vibxapzp4wf0dfc56x98wsf3wy98ghj5h10nyf7xcfwy6k0rja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; - sha256 = "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99"; - name = "recipe"; - }; - packageRequires = [ company emacs flycheck haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/intero"; - license = lib.licenses.free; - }; - }) {}; - iplayer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iplayer"; - ename = "iplayer"; - version = "0.1"; - src = fetchFromGitHub { - owner = "csrhodes"; - repo = "iplayer-el"; - rev = "48b664e36e1a8e37eeb3eee80b91ff7126ed449a"; - sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a97667365f1c30f53a6aeeb7b909a78888eb1/recipes/iplayer"; - sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iplayer"; - license = lib.licenses.free; - }; - }) {}; - ipython-shell-send = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ipython-shell-send"; - ename = "ipython-shell-send"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "jackkamm"; - repo = "ipython-shell-send-el"; - rev = "0faed86faff02a361f23ce5fc923d0e9b09bb2da"; - sha256 = "1nx92rmxgrxy9hfi7f2ny3q4zqrzy6jalr85lall7r74aifprrkv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d3513d38f94de4d86124b5d5a33be8d5f0bfa43/recipes/ipython-shell-send"; - sha256 = "07im2f3890yxpcy4qz1bihi68aslam7qir4vqf05bhqlgaqzamv8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ipython-shell-send"; - license = lib.licenses.free; - }; - }) {}; - ir-black-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ir-black-theme"; - ename = "ir-black-theme"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "jmdeldin"; - repo = "ir-black-theme.el"; - rev = "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2"; - sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5e725582bc322d03c9dca2b22e8606444fd8753c/recipes/ir-black-theme"; - sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ir-black-theme"; - license = lib.licenses.free; - }; - }) {}; - irony = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "irony"; - ename = "irony"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "Sarcasm"; - repo = "irony-mode"; - rev = "79d5fc6152659f62b0f2e4df75665f5b625e9642"; - sha256 = "09i2f99ysisv2d4a0cpn75c0azhbashvz6ja5xy09i2a5svzgzpx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2b6a8d57b192325dcd30fddc9ff8dd1516ad680/recipes/irony"; - sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; - name = "recipe"; - }; - packageRequires = [ cl-lib json ]; - meta = { - homepage = "https://melpa.org/#/irony"; - license = lib.licenses.free; - }; - }) {}; - isgd = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isgd"; - ename = "isgd"; - version = "1.1"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "isgd.el"; - rev = "764306dadd5a9213799081a48aba22f7c75cca9a"; - sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5ff75b269fd57c5822277b9ed850c69b626f1a5/recipes/isgd"; - sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/isgd"; - license = lib.licenses.free; - }; - }) {}; - isolate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "isolate"; - ename = "isolate"; - version = "1.2"; - src = fetchFromGitHub { - owner = "casouri"; - repo = "isolate"; - rev = "700aa3c7945580c876d29c3c064282c33ebb365c"; - sha256 = "0j96rzfabn6lgv9xxyndpq3d2nys5z1brrrd7bga786zzwlp78a9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8091f8d72c24a103f6dcaadc18bbec745c1c3d3/recipes/isolate"; - sha256 = "1ldyvw01nq2ynxaaqmw9ihk9kwfss9rqpaydn9f41bqj15xrypjc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/isolate"; - license = lib.licenses.free; - }; - }) {}; - iter2 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iter2"; - ename = "iter2"; - version = "0.9.10"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "iter2"; - rev = "fc1fcea5379bc7728a25dd81546886213e3db6fa"; - sha256 = "1gvm5gfgmcw4mibi8899x9ry1zqm3ij6yl0dnmdqmv9dbv1zlqp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d94316660051ee0ba0c12e380e6203986440368f/recipes/iter2"; - sha256 = "0kl3z2wwpvk2ddsb3798g41pv0xycsf9dclhv00snpzsr61d9v65"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/iter2"; - license = lib.licenses.free; - }; - }) {}; - ivy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy"; - ename = "ivy"; - version = "0.11.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "525b2e4887dd839045313f32d3ddeb5cab4c7a7e"; - sha256 = "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy"; - sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ivy"; - license = lib.licenses.free; - }; - }) {}; - ivy-bibtex = callPackage ({ biblio - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , parsebib - , s - , swiper }: - melpaBuild { - pname = "ivy-bibtex"; - ename = "ivy-bibtex"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "tmalsburg"; - repo = "helm-bibtex"; - rev = "8be32be58e96e3d57b0cc667d05f98c63aa2a32e"; - sha256 = "1rsn0gxqibw2b31k3hx1fix46f3qmwp013njkpn31fzg3gckbwra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c23c09225c57a9b9abe0a0a770a9184ae2e58f7c/recipes/ivy-bibtex"; - sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2"; - name = "recipe"; - }; - packageRequires = [ biblio cl-lib dash f parsebib s swiper ]; - meta = { - homepage = "https://melpa.org/#/ivy-bibtex"; - license = lib.licenses.free; - }; - }) {}; - ivy-dired-history = callPackage ({ cl-lib ? null - , counsel - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-dired-history"; - ename = "ivy-dired-history"; - version = "1.0"; - src = fetchFromGitHub { - owner = "jixiuf"; - repo = "ivy-dired-history"; - rev = "3604840f85e4ff2d7ecab6233e820cb2ec5c8733"; - sha256 = "0slisbnfcdx8jv0p67ag6s4l0m0jmrwcpm5a2jm6sai9x67ayn4l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad37f6b04ff45fbffeadefc94db16baa27bcc2ac/recipes/ivy-dired-history"; - sha256 = "1vj073k5m0l8rx9iiisikzl053ad9mlhvbk30f5zmw9sw7b9blyl"; - name = "recipe"; - }; - packageRequires = [ cl-lib counsel ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-dired-history"; - license = lib.licenses.free; - }; - }) {}; - ivy-erlang-complete = callPackage ({ async - , counsel - , emacs - , erlang - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-erlang-complete"; - ename = "ivy-erlang-complete"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "s-kostyaev"; - repo = "ivy-erlang-complete"; - rev = "62e2b14ff25b0c143c882cb38d029b216acc3dd6"; - sha256 = "0sbxmj3ap0navgi7lxlgwb9ykfb8khgh7nl1hmqfh2jn9vx2s568"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac1b9e350d3f066e4e56202ebb443134d5fc3669/recipes/ivy-erlang-complete"; - sha256 = "00fqjgrhvcn3ibpgiy4b0sr4x9p6ym5r1rvi4rdzsw2i3nxmgf3a"; - name = "recipe"; - }; - packageRequires = [ async counsel emacs erlang ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-erlang-complete"; - license = lib.licenses.free; - }; - }) {}; - ivy-explorer = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-explorer"; - ename = "ivy-explorer"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "clemera"; - repo = "ivy-explorer"; - rev = "14adb6164f1d1646f503c3e4bd9aa559805f93d7"; - sha256 = "0ffajyl21vz4662738dgga140yrkkcfynhhnk42fzrn5z5zqlwp1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8b590a6e0d11fda3d93e4d92f847138f8968b332/recipes/ivy-explorer"; - sha256 = "088ciy051b3kcd6anm66fnkg510c72hrfgdbgdf4mb9z4d9bk056"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-explorer"; - license = lib.licenses.free; - }; - }) {}; - ivy-feedwrangler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-feedwrangler"; - ename = "ivy-feedwrangler"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "asimpson"; - repo = "ivy-feedwrangler"; - rev = "051eac49cae32b16fab2e06ff0115cd8fb5dc499"; - sha256 = "1irp76kbg8d7wmgvfjbb4c3wmd29bdrl503jkq4w52fl57g94cvj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf1c112939545f6d157111eabcb573738b09ef7c/recipes/ivy-feedwrangler"; - sha256 = "1mxm37biix8c0s32gfv4pidffvlgdz5i9325zk71fhgfzqwkf5vx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ivy-feedwrangler"; - license = lib.licenses.free; - }; - }) {}; - ivy-gitlab = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , gitlab - , ivy - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ivy-gitlab"; - ename = "ivy-gitlab"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-gitlab"; - rev = "5e2add142f26da9c8f114ea8b0a1a2c7cdeea09f"; - sha256 = "0lhmxwb653l22y8micn0ay43nsmhm7vm71qdy55ln4qzzfxn508s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35d4d4f22e4c567954287b2a1cabcb595497095a/recipes/ivy-gitlab"; - sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y"; - name = "recipe"; - }; - packageRequires = [ dash gitlab ivy s ]; - meta = { - homepage = "https://melpa.org/#/ivy-gitlab"; - license = lib.licenses.free; - }; - }) {}; - ivy-hydra = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-hydra"; - ename = "ivy-hydra"; - version = "0.11.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "525b2e4887dd839045313f32d3ddeb5cab4c7a7e"; - sha256 = "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06c24112a5e17c423a4d92607356b25eb90a9a7b/recipes/ivy-hydra"; - sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx"; - name = "recipe"; - }; - packageRequires = [ emacs hydra ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-hydra"; - license = lib.licenses.free; - }; - }) {}; - ivy-mpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , libmpdel - , melpaBuild - , mpdel }: - melpaBuild { - pname = "ivy-mpdel"; - ename = "ivy-mpdel"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "ivy-mpdel"; - rev = "a42dcc943914c71975c115195d38c739f25e475c"; - sha256 = "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/ivy-mpdel"; - sha256 = "1v9xiy4bs7r24li6fwi5dfqav8dfr3dy0xhj3wnzvcgwxp5ji56r"; - name = "recipe"; - }; - 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"; - ename = "ivy-pages"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "igorepst"; - repo = "ivy-pages"; - rev = "428a901f94c9625c8407fd2bf76f9d7714d40d87"; - sha256 = "11lcv8dqlmfqvhn7n3wfp9idr5hf30312p213y5pvs4m70lbc9k2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93f1183beb74aa4a96de8cd043a2a8eefdd7ad7e/recipes/ivy-pages"; - sha256 = "0zz8nbjma8r6r7xxbg7xfz13202d77k1ybzpib41slmljzh7xgwv"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-pages"; - license = lib.licenses.free; - }; - }) {}; - ivy-prescient = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , prescient }: - melpaBuild { - pname = "ivy-prescient"; - ename = "ivy-prescient"; - version = "3.1"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "ae414dde56f3430867faf41c04e4c3df75f9c960"; - sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a92495d09689932ab9f0b716078ceeeb9cc154e0/recipes/ivy-prescient"; - sha256 = "017ibpbj390q5d051k3wn50774wvcixzbwikvi5ifzqkhgixqk9c"; - name = "recipe"; - }; - packageRequires = [ emacs ivy prescient ]; - meta = { - homepage = "https://melpa.org/#/ivy-prescient"; - license = lib.licenses.free; - }; - }) {}; - ivy-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , window-purpose }: - melpaBuild { - pname = "ivy-purpose"; - ename = "ivy-purpose"; - version = "0.1"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "ivy-purpose"; - rev = "0495f2f3aed64d7e0028125e76a9a68f8fc4107e"; - sha256 = "1hiw7mnrr0cnnp0a2mh837pzdaknadwv0sk82vya6blx0a7m691g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1fa2a37a1a6492eddf638216acec4b9d54d3498d/recipes/ivy-purpose"; - sha256 = "0c5n7x3sa57wslwnldvc0i315xhyi1zndyhr07rzka1rhj8v1c4v"; - name = "recipe"; - }; - packageRequires = [ emacs ivy window-purpose ]; - meta = { - homepage = "https://melpa.org/#/ivy-purpose"; - license = lib.licenses.free; - }; - }) {}; - ivy-rich = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "ivy-rich"; - ename = "ivy-rich"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "Yevgnen"; - repo = "ivy-rich"; - rev = "25e36b10eff7fd299fcc03f15288b4fff33974e4"; - sha256 = "070y28ldp5dvh12b7qv27mqdgxiq2dll7fx432hb2i6mk8lz5hpp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/ivy-rich"; - sha256 = "1il1lhxxg694j9w65qwzjm4p4l3q1h1hfndybj6z1cb72ijw27fr"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/ivy-rich"; - license = lib.licenses.free; - }; - }) {}; - ivy-rtags = callPackage ({ fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , rtags }: - melpaBuild { - pname = "ivy-rtags"; - ename = "ivy-rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "7e6b6f21935eedbe4678ba91c5531ac162b51a5a"; - sha256 = "12629d1s8rplhjh17n3bmgnkpscq4gljgyl84j8qyhh40dwq1qk0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/ivy-rtags"; - sha256 = "18f0jak643dd8lmx701wgk95miajabd8190ls35831slr28lqxsq"; - name = "recipe"; - }; - packageRequires = [ ivy rtags ]; - meta = { - homepage = "https://melpa.org/#/ivy-rtags"; - license = lib.licenses.free; - }; - }) {}; - ivy-youtube = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "ivy-youtube"; - ename = "ivy-youtube"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "squiter"; - repo = "ivy-youtube"; - rev = "23e1089d4c4fc32db20df14ba10078aabf117e87"; - sha256 = "0m70vxjj49kf8bzni2qchgzgx808z1fcfh02cflkhjcb77dkq8d6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ivy-youtube"; - sha256 = "1masw9qc33valx55klfhzx0bg1hfazmn5yd9wh12q2gjsz8nxyw4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ivy request ]; - meta = { - homepage = "https://melpa.org/#/ivy-youtube"; - license = lib.licenses.free; - }; - }) {}; - ix = callPackage ({ fetchFromGitHub - , fetchurl - , grapnel - , lib - , melpaBuild }: - melpaBuild { - pname = "ix"; - ename = "ix"; - version = "0.7"; - src = fetchFromGitHub { - owner = "theanalyst"; - repo = "ix.el"; - rev = "47632caf925fbb3cc8633834d2d619032d039336"; - sha256 = "1j6axmi6fxcl2ja4660ygxchggm2dzjngi0k3g6pimawykvgxs3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a9d68fcf5bddbf07909b77682474dc592077051/recipes/ix"; - sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; - name = "recipe"; - }; - packageRequires = [ grapnel ]; - meta = { - homepage = "https://melpa.org/#/ix"; - license = lib.licenses.free; - }; - }) {}; - iy-go-to-char = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "iy-go-to-char"; - ename = "iy-go-to-char"; - version = "3.2.1"; - src = fetchFromGitHub { - owner = "doitian"; - repo = "iy-go-to-char"; - rev = "77b40d64eef9dad11eca59f4e3fbc6e849de7434"; - sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/iy-go-to-char"; - sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/iy-go-to-char"; - license = lib.licenses.free; - }; - }) {}; - j-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "j-mode"; - ename = "j-mode"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "j-mode"; - rev = "caa55dfaae01d1875380929826952c2b3ef8a653"; - sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/410134ab2145adad3648b1024bfe4f6801df82c9/recipes/j-mode"; - sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/j-mode"; - license = lib.licenses.free; - }; - }) {}; - jade-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jade-mode"; - ename = "jade-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "4e7a20db492719062f40b225ed730ed50be5db56"; - sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/jade-mode"; - sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jade-mode"; - license = lib.licenses.free; - }; - }) {}; - jammer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jammer"; - ename = "jammer"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "jammer"; - rev = "1ba232b71507b468c60dc53c2bc8888bef36c858"; - sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cb82a6e936e2d5d1dd5930b600ede52dac3ceb33/recipes/jammer"; - sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jammer"; - license = lib.licenses.free; - }; - }) {}; - japanlaw = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "japanlaw"; - ename = "japanlaw"; - version = "0.9.1"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "japanlaw.el"; - rev = "d90b204b018893d5d75286c92948c0bddf94cce2"; - sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6192e1db76f017c3b1315453144cffc47cdd495d/recipes/japanlaw"; - sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/japanlaw"; - license = lib.licenses.free; - }; - }) {}; - java-imports = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "java-imports"; - ename = "java-imports"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "dakrone"; - repo = "emacs-java-imports"; - rev = "275f354c245df741b45e88d085660722e81a12be"; - sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f6f4e4c14c422c2066f2200bb9b8f35e2ecc896/recipes/java-imports"; - sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; - name = "recipe"; - }; - packageRequires = [ emacs pcache s ]; - meta = { - homepage = "https://melpa.org/#/java-imports"; - license = lib.licenses.free; - }; - }) {}; - javadoc-lookup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "javadoc-lookup"; - ename = "javadoc-lookup"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "javadoc-lookup"; - rev = "507a2dd443d60b537b8f779c1847e2cd0ccd1382"; - sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d7d5f55c7d90181cc4eff68bb472f772f070a93/recipes/javadoc-lookup"; - sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/javadoc-lookup"; - license = lib.licenses.free; - }; - }) {}; - jdecomp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jdecomp"; - ename = "jdecomp"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "xiongtx"; - repo = "jdecomp"; - rev = "1590b06f139f036c1041e1ce5c0acccaa24b31a7"; - sha256 = "0sb9vzn6cycys31r98kxwgpn7v9aw5ck86nkskmn9hhhkrfsabii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/jdecomp"; - sha256 = "1vgjmz7rxvgy9lprzr5b018lzqy3h0zg8913la1bzgwlm3mr68y5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jdecomp"; - license = lib.licenses.free; - }; - }) {}; - jedi = callPackage ({ auto-complete - , emacs - , fetchFromGitHub - , fetchurl - , jedi-core - , lib - , melpaBuild }: - melpaBuild { - pname = "jedi"; - ename = "jedi"; - version = "0.2.7"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-jedi"; - rev = "8da022c8cda511428c72a6dc4c5be3c0a0c88584"; - sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi"; - sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; - name = "recipe"; - }; - packageRequires = [ auto-complete emacs jedi-core ]; - meta = { - homepage = "https://melpa.org/#/jedi"; - license = lib.licenses.free; - }; - }) {}; - jedi-core = callPackage ({ cl-lib ? null - , emacs - , epc - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , python-environment }: - melpaBuild { - pname = "jedi-core"; - ename = "jedi-core"; - version = "0.2.7"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-jedi"; - rev = "8da022c8cda511428c72a6dc4c5be3c0a0c88584"; - sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bded1840a39fbf1e014c01276eb2f9c5a4fc218f/recipes/jedi-core"; - sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs epc python-environment ]; - meta = { - homepage = "https://melpa.org/#/jedi-core"; - license = lib.licenses.free; - }; - }) {}; - jetbrains = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jetbrains"; - ename = "jetbrains"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "jetbrains.el"; - rev = "38e136079f3f2ddbe0e8b7dec01cf6b515e897d8"; - sha256 = "1ji64qip5raf0lbv7fv36rd4fwa33zn0xi7sa0zrgf0kcsr0qasb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00dd4626e261d9831fc62d866d50b7257ee418c4/recipes/jetbrains"; - sha256 = "0254dkzf2x5dj3j549xjash0lsadkn0bdcyjkjlrv8hqvdr1f1m7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/jetbrains"; - license = lib.licenses.free; - }; - }) {}; - jinja2-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jinja2-mode"; - ename = "jinja2-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "paradoxxxzero"; - repo = "jinja2-mode"; - rev = "cfaa7bbe7bb290cc500440124ce89686f3e26f86"; - sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b79196cf0dc0b436ff75eabea369a62f92825d9f/recipes/jinja2-mode"; - sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jinja2-mode"; - license = lib.licenses.free; - }; - }) {}; - jpop = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jpop"; - ename = "jpop"; - version = "3.2.3"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "jpop.el"; - rev = "f3eed65e54dc2daaa7678e6eb169d35c4a7d1e63"; - sha256 = "17wiv1b8c56c2zi9b9mjm37kl7yc735nk3188wnmq3fqjgdpwpwg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2a52a3cf909d12201196b92685435f9fa338b7ba/recipes/jpop"; - sha256 = "00chh1aqnkkkhdp44sapdjx37cbn92g42wapdq7kcl8v1v0xmnjr"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/jpop"; - license = lib.licenses.free; - }; - }) {}; - jq-format = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , reformatter }: - melpaBuild { - pname = "jq-format"; - ename = "jq-format"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-jq-format"; - rev = "47e1c5adb89b37b4d53fe01302d8c675913c20e7"; - sha256 = "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce800af0c5dd7f1e4ab7ade92a863ce500c12fce/recipes/jq-format"; - sha256 = "1ljbpgcs1s1if9s5c10k12f23rad7172k7y3s38ipn7vl7wmarw0"; - name = "recipe"; - }; - packageRequires = [ emacs reformatter ]; - meta = { - homepage = "https://melpa.org/#/jq-format"; - license = lib.licenses.free; - }; - }) {}; - jq-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jq-mode"; - ename = "jq-mode"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "jq-mode"; - rev = "d6bbd83baf0746f22564f7ae92db44e06da6e08c"; - sha256 = "1sk603258gvnfrvl641xfmgapg67z44wnlx6qba73wn3f2055765"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/318705966e26e58f87b53c115c519db95874ac1c/recipes/jq-mode"; - sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jq-mode"; - license = lib.licenses.free; - }; - }) {}; - js-auto-format-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-auto-format-mode"; - ename = "js-auto-format-mode"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "ybiquitous"; - repo = "js-auto-format-mode"; - rev = "59caa137c4beec4dec4a7d7ebf8bcb6af44d72f0"; - sha256 = "10xxg8lc4g9wdl4lz7kx6la23agpbq4ls1mn5d4y364j8nfcxf9g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2d3be16771b5b5fde639da3ee97890620354ee7a/recipes/js-auto-format-mode"; - sha256 = "1gxf7xz1j3ga2pk5w8cgny7l8kid59zap2a97lhb50w1qczfqqzs"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/js-auto-format-mode"; - license = lib.licenses.free; - }; - }) {}; - js-comint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js-comint"; - ename = "js-comint"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "js-comint"; - rev = "83e932e4a83d1a69098ee87e0ab911d299368e60"; - sha256 = "1r2fwsdfkbqnm4n4dwlp7gc267ghj4vd0naj431w7pl529dmrb6x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca/recipes/js-comint"; - sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/js-comint"; - license = lib.licenses.free; - }; - }) {}; - js2-closure = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-closure"; - ename = "js2-closure"; - version = "2.2.1"; - src = fetchFromGitHub { - owner = "jart"; - repo = "js2-closure"; - rev = "74a75f001a8bc2b9c02b9e8b4557f7ee3c5f84fb"; - sha256 = "1gapx656s4ngy8s8y1p56xxnclwf4qqg83l3jizknxky7yhayyl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61bf3e70ae38a78184f0b373ff6f0db234f51cb2/recipes/js2-closure"; - sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; - name = "recipe"; - }; - packageRequires = [ js2-mode ]; - meta = { - homepage = "https://melpa.org/#/js2-closure"; - license = lib.licenses.free; - }; - }) {}; - js2-highlight-vars = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-highlight-vars"; - ename = "js2-highlight-vars"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "js2-highlight-vars.el"; - rev = "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed"; - sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f4a7c90be2e032277ae87b8de36d2e3f6146f09/recipes/js2-highlight-vars"; - sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; - name = "recipe"; - }; - packageRequires = [ js2-mode ]; - meta = { - homepage = "https://melpa.org/#/js2-highlight-vars"; - license = lib.licenses.free; - }; - }) {}; - js2-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js2-mode"; - ename = "js2-mode"; - version = "20190219"; - src = fetchFromGitHub { - owner = "mooz"; - repo = "js2-mode"; - rev = "58006dfafbad43213162e21f57112e5e193caed2"; - sha256 = "02nrqb1khk7mhr4417pdlbb9whmyfpjjrsvg8lzsr8wlz9l3hqkg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/js2-mode"; - sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/js2-mode"; - license = lib.licenses.free; - }; - }) {}; - js2-refactor = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , multiple-cursors - , s - , yasnippet }: - melpaBuild { - pname = "js2-refactor"; - ename = "js2-refactor"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "js2-refactor.el"; - rev = "089c7800e3e7b0a89ee2392037ac07851bcee298"; - sha256 = "1iwblf5i7k1i1ax9pjv7n8zv9q157krirdn0gwcib6dwza2i30jp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8935264dfea9bacc89fef312215624d1ad9fc437/recipes/js2-refactor"; - sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; - name = "recipe"; - }; - packageRequires = [ dash js2-mode multiple-cursors s yasnippet ]; - meta = { - homepage = "https://melpa.org/#/js2-refactor"; - license = lib.licenses.free; - }; - }) {}; - js3-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "js3-mode"; - ename = "js3-mode"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "thomblake"; - repo = "js3-mode"; - rev = "a1943e3b69ccf7592ef6e3c992c06af978823da5"; - sha256 = "1ild74qgx88gxrsmza5zjn51636zwxyc1j1c31m1xfw0najvl0dd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/805a7c7fee2bafd8785813963bf91ac1ca417fd1/recipes/js3-mode"; - sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/js3-mode"; - license = lib.licenses.free; - }; - }) {}; - jsfmt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsfmt"; - ename = "jsfmt"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "brettlangdon"; - repo = "jsfmt.el"; - rev = "192a3db81145c6fb9c0a9830db01ac4ec4f5d677"; - sha256 = "07bnvacmg6xm8r8ksiv7zkaghmad3s1qwy00fsy5pa47spxm3lxn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ddc99843dec18a295dfc36e7b429f0e1ab7fb71/recipes/jsfmt"; - sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jsfmt"; - license = lib.licenses.free; - }; - }) {}; - json-mode = callPackage ({ fetchFromGitHub - , fetchurl - , json-reformat - , json-snatcher - , lib - , melpaBuild }: - melpaBuild { - pname = "json-mode"; - ename = "json-mode"; - version = "1.7.0"; - src = fetchFromGitHub { - owner = "joshwnj"; - repo = "json-mode"; - rev = "9ba01b868a6b138feeff82b9eb0abd331d29325f"; - sha256 = "0i79lqzdg59vkqwjd3q092xxn9vhxspb1vn4pkis0vfvn46g01jy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6/recipes/json-mode"; - sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; - name = "recipe"; - }; - packageRequires = [ json-reformat json-snatcher ]; - meta = { - homepage = "https://melpa.org/#/json-mode"; - license = lib.licenses.free; - }; - }) {}; - json-navigator = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , lib - , melpaBuild }: - melpaBuild { - pname = "json-navigator"; - ename = "json-navigator"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "json-navigator"; - rev = "f4cde60c4203fc70cc7ff22ed1d6579159ce2598"; - sha256 = "0xrjbx6rkm8a6pmzhdph0r6l468hj827dvvq2hxhcm8v5gk6m690"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/62d4d68bd473652b80988a68250e9190b886ad6e/recipes/json-navigator"; - sha256 = "0yfl31cg0mkgsbpgx00m9h2cxnhsavcf7zlspb0qr4g2zq6ya1wx"; - name = "recipe"; - }; - packageRequires = [ emacs hierarchy ]; - meta = { - homepage = "https://melpa.org/#/json-navigator"; - license = lib.licenses.free; - }; - }) {}; - json-reformat = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "json-reformat"; - ename = "json-reformat"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "json-reformat"; - rev = "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716"; - sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8c7976237f327fdfa58eea26ac8679f40ef3163/recipes/json-reformat"; - sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/json-reformat"; - license = lib.licenses.free; - }; - }) {}; - json-snatcher = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "json-snatcher"; - ename = "json-snatcher"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Sterlingg"; - repo = "json-snatcher"; - rev = "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c"; - sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/990de179e20c169aa02ffec42c89f18ce02239c8/recipes/json-snatcher"; - sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/json-snatcher"; - license = lib.licenses.free; - }; - }) {}; - jsonnet-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsonnet-mode"; - ename = "jsonnet-mode"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "mgyucht"; - repo = "jsonnet-mode"; - rev = "a729ccf20aa04041b0dfe1178ba70d750f648e2f"; - sha256 = "1ry95sv9ydcr3da16gjjh26wrn4ssf06c5zv084s33id6cipg2n3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba17372732723f73e8eeb6e7c47abc0edeb20da4/recipes/jsonnet-mode"; - sha256 = "1aadys887szlc924qr645lby9f8vzvxkwhq6byhppk1b01h911ia"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/jsonnet-mode"; - license = lib.licenses.free; - }; - }) {}; - jsx-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jsx-mode"; - ename = "jsx-mode"; - version = "0.1.10"; - src = fetchFromGitHub { - owner = "jsx"; - repo = "jsx-mode.el"; - rev = "1ca260b76f6e6251c528ed89501597a5b456c179"; - sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7dea24e922f18c1f7e1b97da07ba2e4f33170557/recipes/jsx-mode"; - sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jsx-mode"; - license = lib.licenses.free; - }; - }) {}; - julia-repl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "julia-repl"; - ename = "julia-repl"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "tpapp"; - repo = "julia-repl"; - rev = "6eb58ef8b2e922e042fb0aee399547291fce06a4"; - sha256 = "05siwlyafga6ihksmd4v7dlhn1c3f6vg4ns255apm7vnmfryzvkf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a2a494969a9caf2f4513b12504379c9685047dc/recipes/julia-repl"; - sha256 = "1k8a54s7g64zasmmnywygr0ra3s3din5mkqb7b5van2l0d4hcmzn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/julia-repl"; - license = lib.licenses.free; - }; - }) {}; - jump = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , findr - , inflections - , lib - , melpaBuild }: - melpaBuild { - pname = "jump"; - ename = "jump"; - version = "2.5"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "jump.el"; - rev = "9519c675e8a650f6afade7d870e925d0fb50f112"; - sha256 = "1bm1mgd632gq3cl4zrq66vnqq9ynvc01iy6szp464ccnm3cmqdzr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f0c791aebccc08b770b3969ce5d2e82cbe26f80e/recipes/jump"; - sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; - name = "recipe"; - }; - packageRequires = [ cl-lib findr inflections ]; - meta = { - homepage = "https://melpa.org/#/jump"; - license = lib.licenses.free; - }; - }) {}; - jump-to-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jump-to-line"; - ename = "jump-to-line"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "jump-to-line"; - rev = "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8"; - sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b6c700a28b65cbbad36a9bbaf88cc36c8191eb0/recipes/jump-to-line"; - sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/jump-to-line"; - license = lib.licenses.free; - }; - }) {}; - jupyter = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , simple-httpd - , websocket - , zmq }: - melpaBuild { - pname = "jupyter"; - ename = "jupyter"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "dzop"; - repo = "emacs-jupyter"; - rev = "112769e0c679fb95db25128051e67bb22ff36ed5"; - sha256 = "1sda8zn1c583ccw8g5rzzyf47ganmkgga5dym2kx78ayhk50jjbc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a63a933e193a52e60950331ec982c5f5cdfaa5d9/recipes/jupyter"; - sha256 = "0p83mkvip1gn5ag2j6s68wzfgg2sf15iyxh7ylads3yw44h26wvi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs simple-httpd websocket zmq ]; - meta = { - homepage = "https://melpa.org/#/jupyter"; - license = lib.licenses.free; - }; - }) {}; - jvm-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "jvm-mode"; - ename = "jvm-mode"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "martintrojer"; - repo = "jvm-mode.el"; - rev = "16d84c8c80bb214367bae6ed30b08756521c27d6"; - sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cdb7d7d7b955405eb6357277b5d049df8aa85ce/recipes/jvm-mode"; - sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/jvm-mode"; - license = lib.licenses.free; - }; - }) {}; - kaesar = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar"; - ename = "kaesar"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"; - sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar"; - sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/kaesar"; - license = lib.licenses.free; - }; - }) {}; - kaesar-file = callPackage ({ fetchFromGitHub - , fetchurl - , kaesar - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar-file"; - ename = "kaesar-file"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"; - sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-file"; - sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; - name = "recipe"; - }; - packageRequires = [ kaesar ]; - meta = { - homepage = "https://melpa.org/#/kaesar-file"; - license = lib.licenses.free; - }; - }) {}; - kaesar-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , kaesar - , lib - , melpaBuild }: - melpaBuild { - pname = "kaesar-mode"; - ename = "kaesar-mode"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-kaesar"; - rev = "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea"; - sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fac8639e59dc923ea31da1f84a99f83d51b47/recipes/kaesar-mode"; - sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; - name = "recipe"; - }; - packageRequires = [ cl-lib kaesar ]; - meta = { - homepage = "https://melpa.org/#/kaesar-mode"; - license = lib.licenses.free; - }; - }) {}; - kakapo-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kakapo-mode"; - ename = "kakapo-mode"; - version = "1.2"; - src = fetchFromGitHub { - owner = "listx"; - repo = "kakapo-mode"; - rev = "fe3d579867f7465cd3ad04f29b4b2b3b820edc01"; - sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a43f0f1f6a0773240a51d379ec786c20a9389e7b/recipes/kakapo-mode"; - sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/kakapo-mode"; - license = lib.licenses.free; - }; - }) {}; - kaolin-themes = callPackage ({ autothemer - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kaolin-themes"; - ename = "kaolin-themes"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "ogdenwebb"; - repo = "emacs-kaolin-themes"; - rev = "0aba840acbfafb87efbbdbb33f9353c8b8698978"; - sha256 = "1cnx29arfz9rm8ma2lkgl024s0x7ryzqq9lhhr7181z3vzjh47k5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4/recipes/kaolin-themes"; - sha256 = "1pd2v54d578f1wbwvqzplkdz1qvy8w8s6na511b0v5y9sksgm2xw"; - name = "recipe"; - }; - packageRequires = [ autothemer cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kaolin-themes"; - license = lib.licenses.free; - }; - }) {}; - karma = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "karma"; - ename = "karma"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "karma.el"; - rev = "940b8b8f228b04f2dbd9f9f4451ffa561a35af93"; - sha256 = "0ha4y7p100n2qkin9f4kna0s9ysa6dgvvvmgvqgnbz8x5v2ak22y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/681e12556c3ab3e2a8376d5c7c33ee5a213de650/recipes/karma"; - sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/karma"; - license = lib.licenses.free; - }; - }) {}; - key-chord = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-chord"; - ename = "key-chord"; - version = "0.6"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "key-chord"; - rev = "8468998946367157830df19a1e92785d22a34178"; - sha256 = "10ldhwp9a21r9g72hzaig1h5yh2zblny0r36nf5nz6gzikfcq0cd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/key-chord"; - sha256 = "1g0jqmnn575h5n4figxbc5xs76zl8b1cdqa6wbi3d1p2rn3g8scr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/key-chord"; - license = lib.licenses.free; - }; - }) {}; - key-combo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "key-combo"; - ename = "key-combo"; - version = "1.6"; - src = fetchFromGitHub { - owner = "uk-ar"; - repo = "key-combo"; - rev = "0bc0cf6466a4257047a21a6d01913e92e6862165"; - sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/99b422ef5f7b9dda894207e3133791fb9963a092/recipes/key-combo"; - sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/key-combo"; - license = lib.licenses.free; - }; - }) {}; - key-seq = callPackage ({ fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild }: - melpaBuild { - pname = "key-seq"; - ename = "key-seq"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "vlevit"; - repo = "key-seq.el"; - rev = "e29b083a6427d061638749194fc249ef69ad2cc0"; - sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d54ab1b6973a44362e50559dd91344d0b17f513/recipes/key-seq"; - sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; - name = "recipe"; - }; - packageRequires = [ key-chord ]; - meta = { - homepage = "https://melpa.org/#/key-seq"; - license = lib.licenses.free; - }; - }) {}; - keycast = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keycast"; - ename = "keycast"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keycast"; - rev = "fe416461b15543138ad4fef8ef5e2c364a6b5b2c"; - sha256 = "15q2kc7mlmr856ldh6bkba26zq8fwia26cv1gsqwj3jmhml6mlq1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aaaf62c586818f2493667ad6ec8877234a58da53/recipes/keycast"; - sha256 = "19qq5y1zjp3029kfq0c59xl9xnxqmdn2pd04sblznchcr9jdy5id"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/keycast"; - license = lib.licenses.free; - }; - }) {}; - keychain-environment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keychain-environment"; - ename = "keychain-environment"; - version = "2.4.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keychain-environment"; - rev = "d3643196de6dc79ea77f9f4805028350fd76100b"; - sha256 = "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4382c9e7e8dee2cafea9ee49965d0952ca359dd5/recipes/keychain-environment"; - sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keychain-environment"; - license = lib.licenses.free; - }; - }) {}; - keydef = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keydef"; - ename = "keydef"; - version = "1.15"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "keydef"; - rev = "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0"; - sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/keydef"; - sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keydef"; - license = lib.licenses.free; - }; - }) {}; - keyfreq = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyfreq"; - ename = "keyfreq"; - version = "1.8"; - src = fetchFromGitHub { - owner = "dacap"; - repo = "keyfreq"; - rev = "f3a96693e2e4c6893198a0223e3f3c648ae09cec"; - sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd7157bad0f3039321b5b279a88e7e4fce895543/recipes/keyfreq"; - sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/keyfreq"; - license = lib.licenses.free; - }; - }) {}; - keymap-utils = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keymap-utils"; - ename = "keymap-utils"; - version = "3.0.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "keymap-utils"; - rev = "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7"; - sha256 = "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c03acebf1462dea36c81d4b9ab41e2e5739be3c3/recipes/keymap-utils"; - sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/keymap-utils"; - license = lib.licenses.free; - }; - }) {}; - keyset = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "keyset"; - ename = "keyset"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "keyset"; - rev = "25658ef79d26971ce41d9df207dff58d38daa091"; - sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7bad8a1f1b94fbfbde5d8035f7e22431e64a9eec/recipes/keyset"; - sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/keyset"; - license = lib.licenses.free; - }; - }) {}; - kibit-helper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kibit-helper"; - ename = "kibit-helper"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "brunchboy"; - repo = "kibit-helper"; - rev = "ec5f154db3bb0c838e86f527353f08644cede926"; - sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7fee551ca9ed226f1285dffe87027e1e1047f65/recipes/kibit-helper"; - sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/kibit-helper"; - license = lib.licenses.free; - }; - }) {}; - kill-or-bury-alive = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kill-or-bury-alive"; - ename = "kill-or-bury-alive"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "kill-or-bury-alive"; - rev = "51daf55565034b8cb6aa3ca2aa0a827e31751041"; - sha256 = "1qbdxjni1brhsw6m4cvd2jjaf3y8v3fkbxxf0pvsb089mkpi7mpq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25016ed09b6333bd79b989a8f6b7b03cd92e08b3/recipes/kill-or-bury-alive"; - sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kill-or-bury-alive"; - license = lib.licenses.free; - }; - }) {}; - kill-ring-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kill-ring-search"; - ename = "kill-ring-search"; - version = "1.1"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "kill-ring-search.el"; - rev = "3a5bc1767f742c91aa788df79ecec836a0946edb"; - sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kill-ring-search"; - sha256 = "1jggi6r5j2dr9y17v4cyskc0wydfdpqgp1pib5dr2kg6n6w0s5xl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kill-ring-search"; - license = lib.licenses.free; - }; - }) {}; - killer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "killer"; - ename = "killer"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "killer"; - rev = "ace0547944933440384ceeb5876b1f68c082d540"; - sha256 = "06nzxd9nc1d569354xj7w88i0y5l99pyag691aribsh771rxbfz4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd8c3ec8fa272273128134dea96c0c999a524549/recipes/killer"; - sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/killer"; - license = lib.licenses.free; - }; - }) {}; - kivy-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kivy-mode"; - ename = "kivy-mode"; - version = "1.11.0"; - src = fetchFromGitHub { - owner = "kivy"; - repo = "kivy"; - rev = "3e57ac0b07385384619a8042dafcab89cc10da57"; - sha256 = "1pm0660x688rpgns9jpzg1y08pavp65dazm1aznkvpnvdhy2zs93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e2a114073958c413e56e1d117d48db9d16fb8/recipes/kivy-mode"; - sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/kivy-mode"; - license = lib.licenses.free; - }; - }) {}; - kiwix = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "kiwix"; - ename = "kiwix"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "stardiviner"; - repo = "kiwix.el"; - rev = "c662f3dc5d924a4b64b7af4af28f15f27b7cea1e"; - sha256 = "0i11sfnqvjqqb625cgfzibs6yszx891y4dy7fd6wzmdpclcyzr8z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/kiwix"; - sha256 = "0x5ld557kxzx5s8ziy5axgvm1fxlq81l9gvinfgs8f257vjlki07"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/kiwix"; - license = lib.licenses.free; - }; - }) {}; - know-your-http-well = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "know-your-http-well"; - ename = "know-your-http-well"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "for-GET"; - repo = "know-your-http-well"; - rev = "ab8cf84ad8031ff85b983c528ebb7117dc784aad"; - sha256 = "19qky551arnb7gl7w0yp54kkdls03m9wn9bxnr7hm5nv1bml2y64"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ab50ae6278022281b2b7297c086089e5e669c7a/recipes/know-your-http-well"; - sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/know-your-http-well"; - license = lib.licenses.free; - }; - }) {}; - ksp-cfg-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ksp-cfg-mode"; - ename = "ksp-cfg-mode"; - version = "0.6"; - src = fetchFromGitHub { - owner = "lashtear"; - repo = "ksp-cfg-mode"; - rev = "faec8bd8456c67276d065eb68c88a30efcef59ef"; - sha256 = "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d49db5938fa4e3ab1176a955a4788b15c63d9e69/recipes/ksp-cfg-mode"; - sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ksp-cfg-mode"; - license = lib.licenses.free; - }; - }) {}; - kubernetes = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "kubernetes"; - ename = "kubernetes"; - version = "0.12.0"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "kubernetes-el"; - rev = "d4ce5eb5da1ea0879b7d3266d97aecc8aee2807c"; - sha256 = "1asjmxw24bvaapjaljj37pv9cbvqqw7577q1mds4lnicvnbdsxzi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16850227ea48f6f38102b9cdf80e0758766a24d2/recipes/kubernetes"; - sha256 = "06357a8y3rpvid03r9vhmjgq97hmiah5g8gff32dij9424vidil9"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit ]; - meta = { - homepage = "https://melpa.org/#/kubernetes"; - license = lib.licenses.free; - }; - }) {}; - kubernetes-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , kubernetes - , lib - , melpaBuild }: - melpaBuild { - pname = "kubernetes-evil"; - ename = "kubernetes-evil"; - version = "0.12.0"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "kubernetes-el"; - rev = "d4ce5eb5da1ea0879b7d3266d97aecc8aee2807c"; - sha256 = "1asjmxw24bvaapjaljj37pv9cbvqqw7577q1mds4lnicvnbdsxzi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16850227ea48f6f38102b9cdf80e0758766a24d2/recipes/kubernetes-evil"; - sha256 = "12ygfs6g9aivf2ws3lxwjm5xnd2kidhli889icpygd5v7gnk9pg8"; - name = "recipe"; - }; - packageRequires = [ evil kubernetes ]; - meta = { - homepage = "https://melpa.org/#/kubernetes-evil"; - license = lib.licenses.free; - }; - }) {}; - kurecolor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "kurecolor"; - ename = "kurecolor"; - version = "1.2.6"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "kurecolor"; - rev = "a27153f6a01f38226920772dc4917b73166da5e6"; - sha256 = "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58a5ebdbf82e83e6602161bca049d468887abe02/recipes/kurecolor"; - sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/kurecolor"; - license = lib.licenses.free; - }; - }) {}; - labburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "labburn-theme"; - ename = "labburn-theme"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ksjogo"; - repo = "labburn-theme"; - rev = "bfa1d9f1c7e107cb45754fe57e4e72a9be70e9d1"; - sha256 = "1r221fwfigr6fk4p3xh00wgw9wxm2gpzvj17jf5pgd7cvyspchsy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1bfc9870fbe61f58f107b72fd7f16efba22c902/recipes/labburn-theme"; - sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/labburn-theme"; - license = lib.licenses.free; - }; - }) {}; - langtool = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "langtool"; - ename = "langtool"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-langtool"; - rev = "d93286722cff3fecf8641a4a6c3b0691f30362fe"; - sha256 = "17xa055705n4jb7nafqvqgl0a6fdaxp3b3q8q0gsv5vzycsc74ga"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/503845e79e67c921f1fde31447f3dd4da2b6f993/recipes/langtool"; - sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/langtool"; - license = lib.licenses.free; - }; - }) {}; - language-id = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "language-id"; - ename = "language-id"; - version = "0.1"; - src = fetchFromGitHub { - owner = "lassik"; - repo = "emacs-language-id"; - rev = "9145c75eaa41a7a9deda928f704b99db056d3e9d"; - sha256 = "10dwrb610jdal6ifpj34mmy8qqbca2sgfmvn4p4qpcc967sv4f1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d03af6375bc7ba4612c43dea805d7f392f046f87/recipes/language-id"; - sha256 = "0p7hg005bmzy38sv2881fq1x2i7yjdhfjbki4y2av485c418rqz8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/language-id"; - license = lib.licenses.free; - }; - }) {}; - latex-extra = callPackage ({ auctex - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-extra"; - ename = "latex-extra"; - version = "1.14"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "latex-extra"; - rev = "82d99b8b0c2db20e5270749582e03bcc2443ffb5"; - sha256 = "15m7zvdhg5z7d8alrw66p703wdp5r57lxrgq3zz7xc4hscwghlb1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/latex-extra"; - sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; - name = "recipe"; - }; - packageRequires = [ auctex cl-lib ]; - meta = { - homepage = "https://melpa.org/#/latex-extra"; - license = lib.licenses.free; - }; - }) {}; - latex-math-preview = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-math-preview"; - ename = "latex-math-preview"; - version = "0.7.3"; - src = fetchFromGitLab { - owner = "latex-math-preview"; - repo = "latex-math-preview"; - rev = "90fd86da2d9514882146a5db40cb916fc533cf55"; - sha256 = "063vnjhnxm2z9shkdv1j8kwyf37syczfkzxzh5z7w7aidvx55jzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9e413b7684e9199510b00035825aa861d670e072/recipes/latex-math-preview"; - sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-math-preview"; - license = lib.licenses.free; - }; - }) {}; - latex-unicode-math-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "latex-unicode-math-mode"; - ename = "latex-unicode-math-mode"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "Christoph-D"; - repo = "latex-unicode-math-mode"; - rev = "3b82347291edcb32e4062b0048c367a3079b3e8c"; - sha256 = "1xylfg8xpyb2m0qnysf58cl05ibbg4drhgq7msiiql2qrdzvpx9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c021dfad8928c1a352e0ef5526eefa6c0a9cb37/recipes/latex-unicode-math-mode"; - sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/latex-unicode-math-mode"; - license = lib.licenses.free; - }; - }) {}; - lcb-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lcb-mode"; - ename = "lcb-mode"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "peter-b"; - repo = "lcb-mode"; - rev = "e5b0b6ca6c5feeb2502d66a760ddf5bb590d04c4"; - sha256 = "0i58qz4l5rzwp9kx4r9f818ly21ys71zh1zjxppp220p3yydljfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd1380a9ba363f62f297e3ab2995341258b51fd1/recipes/lcb-mode"; - sha256 = "184vd5ll0ms2lspzv8zz2zbairsr8i9p3gs28hrnnwm6mrpx4n18"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/lcb-mode"; - license = lib.licenses.free; - }; - }) {}; - lcr = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lcr"; - ename = "lcr"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jyp"; - repo = "lcr"; - rev = "c14f40692292d59156c7632dbdd2867c086aa75f"; - sha256 = "0mc55icihxqpf8b05990q1lc2nj2792wcgyr73xsiqx0963sjaj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29374d3da932675b7b3e28ab8906690dad9c9cbe/recipes/lcr"; - sha256 = "07syirjlrw8g95zk273953mnmg9x4bv8jpyvvzghhin4saiiiw3k"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/lcr"; - license = lib.licenses.free; - }; - }) {}; - leanote = callPackage ({ async - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pcache - , request - , s }: - melpaBuild { - pname = "leanote"; - ename = "leanote"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "aborn"; - repo = "leanote-emacs"; - rev = "1bd49fdf13ef707bae7edaa724a1592aa7fb002f"; - sha256 = "1k58rhk5p819cvfa6zg7j3ysvzhq6dc433fzhh1ff0gwga2vrqbz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b00b806ae4562ca5a74f41c12ef35bfa597bcfa8/recipes/leanote"; - sha256 = "1xnfv7bpkw3ir402962zbp856d56nas098nkf7bamnsnax6kkqw7"; - name = "recipe"; - }; - packageRequires = [ async cl-lib emacs let-alist pcache request s ]; - meta = { - homepage = "https://melpa.org/#/leanote"; - license = lib.licenses.free; - }; - }) {}; - ledger-import = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ledger-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "ledger-import"; - ename = "ledger-import"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "ledger-import"; - rev = "2c199fcc8671c2ec82e62cea7716289426b7407c"; - sha256 = "0szi5k05qja28nx0rnl3amh3qf2f470sycdjgmpazgqh4zpkngsp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a1e2a9546b8b40f5f880197cb8166a6a715451f/recipes/ledger-import"; - sha256 = "1lcibmjk2d49vsa89wri7bbf695mjq2ikddz3nlzb6ljywsnqzm4"; - name = "recipe"; - }; - packageRequires = [ emacs ledger-mode ]; - meta = { - homepage = "https://melpa.org/#/ledger-import"; - license = lib.licenses.free; - }; - }) {}; - ledger-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ledger-mode"; - ename = "ledger-mode"; - version = "3.1.1"; - src = fetchFromGitHub { - owner = "ledger"; - repo = "ledger-mode"; - rev = "96c4e81eed52e0ef514dc15a6ea6d877b3409a2a"; - sha256 = "12q6wblwnb6y5c1882jz14742fqbm6p5jpzlvz7p90ylqfl7h989"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1549048b6f57fbe9d1f7fcda74b78a7294327b7b/recipes/ledger-mode"; - sha256 = "10asbcb5syv3b75bngsab3c84dp2xmc0q7s29im6kf4mzv5zcfcf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ledger-mode"; - license = lib.licenses.free; - }; - }) {}; - lentic = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , m-buffer - , melpaBuild - , s }: - melpaBuild { - pname = "lentic"; - ename = "lentic"; - version = "0.11"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "lentic"; - rev = "8655ecd51e189bbdd6a4d8405dc3ea2e689c709a"; - sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cbb6f9cc3c1040b80fbf3f2df2ac2c3c8d18b6b1/recipes/lentic"; - sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; - name = "recipe"; - }; - packageRequires = [ dash emacs f m-buffer s ]; - meta = { - homepage = "https://melpa.org/#/lentic"; - license = lib.licenses.free; - }; - }) {}; - less-css-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "less-css-mode"; - ename = "less-css-mode"; - version = "0.21"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "less-css-mode"; - rev = "59bf174c4e9f053ec2a7ef8c8a8198490390f6fb"; - sha256 = "1rkjamdy2a80w439vb2hhr7vqjj47wi2azlr7yq2xdz9851xsx9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/less-css-mode"; - sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/less-css-mode"; - license = lib.licenses.free; - }; - }) {}; - letcheck = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "letcheck"; - ename = "letcheck"; - version = "0.4"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "letcheck"; - rev = "e85b185993a2eaeec6490709f4c131fde2edd672"; - sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6a0937f704e33bbb9ea8f101cd87c44e8050afb/recipes/letcheck"; - sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/letcheck"; - license = lib.licenses.free; - }; - }) {}; - lfe-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lfe-mode"; - ename = "lfe-mode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "rvirding"; - repo = "lfe"; - rev = "af14b1439097850ffa39935419ed83f5bcaa6d09"; - sha256 = "0pgwi0h0d34353m39jin8dxw4yykgfcg90k6pc4qkjyrg40hh4l6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c44bdb00707c9ef90160e0a44f7148b480635132/recipes/lfe-mode"; - sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lfe-mode"; - license = lib.licenses.free; - }; - }) {}; - libelcouch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "libelcouch"; - ename = "libelcouch"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "libelcouch"; - rev = "1396144ebbb9790d4c744db0d4aacc0211b8e8e6"; - sha256 = "1r0wrqiqar3jw5xbp1qv7kj7m1fdzciyy9690hwiq99dcm8nlri3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/209d5c507cfe42b152c21a4534c3ba549186420f/recipes/libelcouch"; - sha256 = "1zfjyfyjd59z0ns32v2b0r5g9ypjxrlmkx3djmxsmzd4an8ciq3p"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/libelcouch"; - license = lib.licenses.free; - }; - }) {}; - libmpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "libmpdel"; - ename = "libmpdel"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "libmpdel"; - rev = "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe"; - sha256 = "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/libmpdel"; - sha256 = "0qi9g3czwzi9hhp7gjczpzjx9vgzz52xi91332l0sxcxmwbawjp1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/libmpdel"; - license = lib.licenses.free; - }; - }) {}; - lice = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lice"; - ename = "lice"; - version = "0.2"; - src = fetchFromGitHub { - owner = "buzztaiki"; - repo = "lice-el"; - rev = "69f2d87984f3f3d469db35e241fbbe979384cd03"; - sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2508699ebfc846742940c5e4356b095b540e2405/recipes/lice"; - sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lice"; - license = lib.licenses.free; - }; - }) {}; - line-up-words = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "line-up-words"; - ename = "line-up-words"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "janestreet"; - repo = "line-up-words"; - rev = "8de4f19b24caed1ca409925a93fef2625c84fe87"; - sha256 = "1qdn24zan6iiai7cfzxn4x8jslb52yhz83mpgmv4932yk4pfcmsd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28ac7764a19fee2e1e2a89d95569815f1940c5e4/recipes/line-up-words"; - sha256 = "0agsrrkwwfmbiy4z3g4hkrpfr3nqgd5lwfn18qrdxynijd5rqs79"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/line-up-words"; - license = lib.licenses.free; - }; - }) {}; - lingr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lingr"; - ename = "lingr"; - version = "0.2"; - src = fetchFromGitHub { - owner = "lugecy"; - repo = "lingr-el"; - rev = "c9c20dd9b4967aa2f8873d6890d6797e6a498d23"; - sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf5d29710ab17b1a98f9b559344e4dd40a2b9c08/recipes/lingr"; - sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lingr"; - license = lib.licenses.free; - }; - }) {}; - linguistic = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linguistic"; - ename = "linguistic"; - version = "0.2"; - src = fetchFromGitHub { - owner = "andcarnivorous"; - repo = "linguistic"; - rev = "18e28a7e54efb140c17e16836bc5dac766c9522e"; - sha256 = "12b9i3rdh16pq9q88bsg771y11rrbj9w74v2qr2bfymbp358qk17"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aedc03a846b873edf2426c422abb8c75732158f8/recipes/linguistic"; - sha256 = "0yhyrr7yknvky6fb6js0lfxbl13i6a218kya7cpj2dpzdckcbhca"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linguistic"; - license = lib.licenses.free; - }; - }) {}; - link = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "link"; - ename = "link"; - version = "1.10"; - src = fetchFromGitHub { - owner = "myrkr"; - repo = "dictionary-el"; - rev = "a5ef20b2c32457880827ceda58f927ad9a26d2b7"; - sha256 = "0ahn0v6qdfwvv9n0m6jcgrzmyarbsbvpgq8g4qy2g37ak4j60hp7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b08ed7b90e3283e177eff57cb02b12a093dc258/recipes/link"; - sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/link"; - license = lib.licenses.free; - }; - }) {}; - linum-relative = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "linum-relative"; - ename = "linum-relative"; - version = "0.6"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "linum-relative"; - rev = "896df4b40c1e1eb59f55fcee48a1543f0ccd724e"; - sha256 = "0b3n1gk2w1p72x0zfdz9l70winq2fnjpjrgq0awxx730xk7ypp5n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97ae01be4892a7c35aa0f82213433a2944041d87/recipes/linum-relative"; - sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/linum-relative"; - license = lib.licenses.free; - }; - }) {}; - lispy = callPackage ({ ace-window - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , iedit - , lib - , melpaBuild - , swiper - , zoutline }: - melpaBuild { - pname = "lispy"; - ename = "lispy"; - version = "0.27.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "lispy"; - rev = "9c41bc011ae570283cb286659f75d12d38d437ea"; - sha256 = "1cm7f4pyl73f3vhkb7ah6bbbrj2sa7n0p31g09k7dy4zgx04bgw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23c062ff32d7aeae486c01e29c56a74727dcf1d/recipes/lispy"; - sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; - name = "recipe"; - }; - packageRequires = [ ace-window emacs hydra iedit swiper zoutline ]; - meta = { - homepage = "https://melpa.org/#/lispy"; - license = lib.licenses.free; - }; - }) {}; - lispyscript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lispyscript-mode"; - ename = "lispyscript-mode"; - version = "0.3.5"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "lispyscript-mode"; - rev = "9a4200085e2a15725a58616d131a56f5edce214b"; - sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf912fa20edc9cff12645381b303e37f2de14976/recipes/lispyscript-mode"; - sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lispyscript-mode"; - license = lib.licenses.free; - }; - }) {}; - list-packages-ext = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , persistent-soft - , s }: - melpaBuild { - pname = "list-packages-ext"; - ename = "list-packages-ext"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "list-packages-ext"; - rev = "344719b313c208c644490f8f1130e21405402f05"; - sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71c217d98c6967d979f57f89ca26200304b0fc37/recipes/list-packages-ext"; - sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; - name = "recipe"; - }; - packageRequires = [ ht persistent-soft s ]; - meta = { - homepage = "https://melpa.org/#/list-packages-ext"; - license = lib.licenses.free; - }; - }) {}; - list-unicode-display = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "list-unicode-display"; - ename = "list-unicode-display"; - version = "0.1"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "list-unicode-display"; - rev = "59770cf3572bd36c3e9ba044846dc420c0dca09b"; - sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0c8e2a974a56665b97d7622b0428994edadc88a0/recipes/list-unicode-display"; - sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/list-unicode-display"; - license = lib.licenses.free; - }; - }) {}; - list-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "list-utils"; - ename = "list-utils"; - version = "0.4.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "list-utils"; - rev = "acf18aca1131a90f8d673974673e3c5d8fdc6a86"; - sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9fcd716cbb9f5a4de82a49e57bcb20c483d05f6/recipes/list-utils"; - sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/list-utils"; - license = lib.licenses.free; - }; - }) {}; - lit-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lit-mode"; - ename = "lit-mode"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "HectorAE"; - repo = "lit-mode"; - rev = "bfecbe898223393f34340ca379977be753ee497a"; - sha256 = "1sjyb5v3s9z128ifjqx7a1dsgds2iz185y82581qxakl7ylmn15k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a6a1c79c9bba7b17c150ea0663bc61936f15d83/recipes/lit-mode"; - sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lit-mode"; - license = lib.licenses.free; - }; - }) {}; - literal-string = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "literal-string"; - ename = "literal-string"; - version = "0.1"; - src = fetchFromGitHub { - owner = "joodie"; - repo = "literal-string-mode"; - rev = "46dd2b620df70d681261616f1a26afa4a032e2d5"; - sha256 = "02a1jvxk2m1lb21p3281cr9xyhzix31cn8a9la53w90sz569i66r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6519bb53f409eeb0d557809b338849e473c193c4/recipes/literal-string"; - sha256 = "0ylv9dpw17w272f92vn5cldklyz1d8daihi1fsh5ylvxqpinyrkn"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/literal-string"; - license = lib.licenses.free; - }; - }) {}; - literate-coffee-mode = callPackage ({ coffee-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "literate-coffee-mode"; - ename = "literate-coffee-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-literate-coffee-mode"; - rev = "39fe3bfa1f68a7b8b91160875589219b214a2cd6"; - sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/literate-coffee-mode"; - sha256 = "18fdgay7xfgza75z3xma666f414m9dn7d50w94wzzmv7ja74sp64"; - name = "recipe"; - }; - packageRequires = [ coffee-mode ]; - meta = { - homepage = "https://melpa.org/#/literate-coffee-mode"; - license = lib.licenses.free; - }; - }) {}; - literate-elisp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "literate-elisp"; - ename = "literate-elisp"; - version = "0.5"; - src = fetchFromGitHub { - owner = "jingtaozf"; - repo = "literate-elisp"; - rev = "d0f228089f011b8e4f2c40784c55168120181f97"; - sha256 = "08msx8r3vdpx9ihjf2qd2xlk5jni3h4jyk65a36nm1r3z439jd83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd4c1c4da2a5571babda9a29a56b8972ad0687c0/recipes/literate-elisp"; - sha256 = "10vc3m54jp2wqjrmn9plq6lb5zfiy6jy0acpp09q3z325z0sql9j"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/literate-elisp"; - license = lib.licenses.free; - }; - }) {}; - live-code-talks = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , narrowed-page-navigation }: - melpaBuild { - pname = "live-code-talks"; - ename = "live-code-talks"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "live-code-talks"; - rev = "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99"; - sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/live-code-talks"; - sha256 = "1ji4lww71dqxnn5c9inix8xqcmgc76wbps0ylxhhgs44ki4hlyrm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs narrowed-page-navigation ]; - meta = { - homepage = "https://melpa.org/#/live-code-talks"; - license = lib.licenses.free; - }; - }) {}; - live-py-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "live-py-mode"; - ename = "live-py-mode"; - version = "2.25.1"; - src = fetchFromGitHub { - owner = "donkirkby"; - repo = "live-py-plugin"; - rev = "63140187ba2b68c2c55d91aa7a07b5c5d15422d9"; - sha256 = "0arhhl684p0nhxhc53sbhcc1rmv3v107s5j0ymwnfa4rnyahz2ii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7615237e80b46b5c50cb51a3ed5b07d92566fb7/recipes/live-py-mode"; - sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/live-py-mode"; - license = lib.licenses.free; - }; - }) {}; - lively = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lively"; - ename = "lively"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "lively"; - rev = "6ec648fcde85e81393db1ed1364860f960179c92"; - sha256 = "06sdaj2akwjg1a7yvmm3gsip66iaq9bhm3gr45szwg6z622q4gvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e4b01286dbc84f01b43955b693ca08e675ffa07/recipes/lively"; - sha256 = "1q8cbl3sr3dpvzk57985giy4xmz4lvg94jcw7shbhz1v9q05dr5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lively"; - license = lib.licenses.free; - }; - }) {}; - load-relative = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "load-relative"; - ename = "load-relative"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-load-relative"; - rev = "5055bfd80644e306aef4e7a7e3e9e5d765b691a4"; - sha256 = "1w2xvnihk607vnmlmqz7zsjksd3mscjx2igdadxsfz398bjwl0qd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f052f201f7c308325c27cc2423e85cf6b9b67b4e/recipes/load-relative"; - sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/load-relative"; - license = lib.licenses.free; - }; - }) {}; - loc-changes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "loc-changes"; - ename = "loc-changes"; - version = "1.1"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-loc-changes"; - rev = "2a0cf1a5890a8937089e4e10f383f4d40c3ac587"; - sha256 = "0xjnpwj0hddpcl2jd6xk64g32djs6xnnms9bhmxs25p894aa40py"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5ce68d573d19f26ecfd190f8e6cd1f384ca3e8a/recipes/loc-changes"; - sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/loc-changes"; - license = lib.licenses.free; - }; - }) {}; - log4e = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "log4e"; - ename = "log4e"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "log4e"; - rev = "ec74a535796c74310c0fbbb9002595d322d03192"; - sha256 = "0ws87an0a591pdqk4y3b9xlbgv1lk7qsyviqv0khj0m49dy68w81"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d0e451c5a8eb25db95990b058964a9acea4b89/recipes/log4e"; - sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/log4e"; - license = lib.licenses.free; - }; - }) {}; - logalimacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logalimacs"; - ename = "logalimacs"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "logaling"; - repo = "logalimacs"; - rev = "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac"; - sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ef9833a5ca4d455f1d33b9367860e2051d60662f/recipes/logalimacs"; - sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/logalimacs"; - license = lib.licenses.free; - }; - }) {}; - logito = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logito"; - ename = "logito"; - version = "0.1"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "logito"; - rev = "824acb89d2cc18cb47281a4fbddd81ad244a2052"; - sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/logito"; - sha256 = "0xi7zbxpialsn4pknj8aqmkbiwwsbapwynrrjb8avhli2hd4s3fl"; - name = "recipe"; - }; - packageRequires = [ eieio ]; - meta = { - homepage = "https://melpa.org/#/logito"; - license = lib.licenses.free; - }; - }) {}; - logview = callPackage ({ datetime - , emacs - , extmap - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "logview"; - ename = "logview"; - version = "0.12"; - src = fetchFromGitHub { - owner = "doublep"; - repo = "logview"; - rev = "bd662d467dbd7c93cfe1e3058e4f11c49314fd6a"; - sha256 = "03s4q5xdz84cjn4qkfhsc3l9y3v5avrl2i5dby4bgsg2zj7n7f73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1df3c11ed7738f32e6ae457647e62847701c8b19/recipes/logview"; - sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; - name = "recipe"; - }; - packageRequires = [ datetime emacs extmap ]; - meta = { - homepage = "https://melpa.org/#/logview"; - license = lib.licenses.free; - }; - }) {}; - loop = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "loop"; - ename = "loop"; - version = "1.3"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "loop.el"; - rev = "3e175e479a49cf419cb54042449aba0bd6cd9e08"; - sha256 = "07r6jc6dr6x0s2a6p18ad0m23p7d5dv4w8c5ilkj7vs18dwr1vmv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba481ca96469b3bd518e4fd8f24947338c8af014/recipes/loop"; - sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/loop"; - license = lib.licenses.free; - }; - }) {}; - love-minor-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lua-mode - , melpaBuild }: - melpaBuild { - pname = "love-minor-mode"; - ename = "love-minor-mode"; - version = "1.2"; - src = fetchFromGitHub { - owner = "ejmr"; - repo = "love-minor-mode"; - rev = "3ca8f3405338f2d6f4fbcdd5e89342a46378543a"; - sha256 = "1hwm7yxbwvb27pa35cgcxyjfjdjhk2a33i417q2akc7vppdbcmzh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f224c4c7519b3668b1270c957227e486896b7b6/recipes/love-minor-mode"; - sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; - name = "recipe"; - }; - packageRequires = [ lua-mode ]; - meta = { - homepage = "https://melpa.org/#/love-minor-mode"; - license = lib.licenses.free; - }; - }) {}; - lsp-java = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , lsp-mode - , markdown-mode - , melpaBuild - , request }: - melpaBuild { - pname = "lsp-java"; - ename = "lsp-java"; - version = "2.2"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-java"; - rev = "527e7b7abc11b51516b9bb52051201c2cdcd4a39"; - sha256 = "0hcnvbyaqyypgby1bfj4zbrbq97amk8hfx0sj4w73rl46yf4jk3j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c03cb07862c5f35487fb4fb3cc44623774724717/recipes/lsp-java"; - sha256 = "0rrl9mh25w1avvyww840d3yh8nw0shirspxl2nxqwwdaymbkg2wr"; - name = "recipe"; - }; - packageRequires = [ - dash - dash-functional - emacs - f - ht - lsp-mode - markdown-mode - request - ]; - meta = { - homepage = "https://melpa.org/#/lsp-java"; - license = lib.licenses.free; - }; - }) {}; - lsp-mode = callPackage ({ dash - , dash-functional - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , spinner }: - melpaBuild { - pname = "lsp-mode"; - ename = "lsp-mode"; - version = "6.0"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-mode"; - rev = "789b672500dcbb2350bb5b667ffc0fd037a8b2e3"; - sha256 = "1v1mq6ixzlgiazj8fmg4xaqhsqn3l89iqy74yndhvzh2rdf0pbkl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1a7b69312e688211089a23b75910c05efb507e35/recipes/lsp-mode"; - sha256 = "0cklwllqxzsvs4wvvvsc1pqpmp9w99m8wimpby6v6wlijfg6y1m9"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs f ht spinner ]; - meta = { - homepage = "https://melpa.org/#/lsp-mode"; - license = lib.licenses.free; - }; - }) {}; - lsp-p4 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-p4"; - ename = "lsp-p4"; - version = "0.1"; - src = fetchFromGitHub { - owner = "dmakarov"; - repo = "p4ls"; - rev = "49eb7c25b95b02da34eb02e5858eb06d34e628e1"; - sha256 = "07z4k60b32k2mzxnl5lxnz5zd4y1p9jc6gqn57d3hwpz3mn8mjzx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/53f0da8b3d2903adeffdbc3d8df7d630bfd9ff71/recipes/lsp-p4"; - sha256 = "0cd3n17lqwz08zfkm9g5cr1cj2asznlbhxrym2a7b7shdmn3yx5f"; - name = "recipe"; - }; - packageRequires = [ lsp-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-p4"; - license = lib.licenses.free; - }; - }) {}; - lsp-ui = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lsp-mode - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "lsp-ui"; - ename = "lsp-ui"; - version = "6.0"; - src = fetchFromGitHub { - owner = "emacs-lsp"; - repo = "lsp-ui"; - rev = "a8c50a93952afae3cd8948fecf4c1a3dc7f3e094"; - sha256 = "1r4327fd8cvjxfwkddp5c4bdskyncbs4sx9m3z2w4d773y2jrakc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7c78c9b07ede9949d14df74b188d4c1a3365196/recipes/lsp-ui"; - sha256 = "0fylav8b54g020z039zm1mx26d257715bfn9nnpw9i0b97539lqi"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs lsp-mode markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/lsp-ui"; - license = lib.licenses.free; - }; - }) {}; - lua-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lua-mode"; - ename = "lua-mode"; - version = "20151025"; - src = fetchFromGitHub { - owner = "immerrr"; - repo = "lua-mode"; - rev = "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45"; - sha256 = "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/lua-mode"; - sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lua-mode"; - license = lib.licenses.free; - }; - }) {}; - lusty-explorer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lusty-explorer"; - ename = "lusty-explorer"; - version = "3.0"; - src = fetchFromGitHub { - owner = "sjbach"; - repo = "lusty-emacs"; - rev = "fc4b2f0f8a07db107234490fdfbf72f8b76a6643"; - sha256 = "014fivh9shi7p3x31bl22x48agrgygp0pf2lgzzflrxcynmprbnp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efedaa3b1de5f6406c7dcd842eee42eefaf8ab50/recipes/lusty-explorer"; - sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lusty-explorer"; - license = lib.licenses.free; - }; - }) {}; - lv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lv"; - ename = "lv"; - version = "0.15.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "hydra"; - rev = "5c5b9ca3262594c92f8f73c98db5ed0f1efd0319"; - sha256 = "0dvh4sg1s76jy41vsy6dh3a4b8vr5msldnyssmqzdqwrsw64hl6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5114349617617673d5055fe28cb8f8c86cf41f83/recipes/lv"; - sha256 = "1lkm40rwpj9hmckng9bz5g4jbx9g9i3wlqgl6rq0m6i14syr69v4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/lv"; - license = lib.licenses.free; - }; - }) {}; - lxc-tramp = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "lxc-tramp"; - ename = "lxc-tramp"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "montag451"; - repo = "lxc-tramp"; - rev = "17fc5962e7c27ac4f0bcc4ed7312dd5709063341"; - sha256 = "03h6aw98mbwwqj08bzpg147hanx97r8fr8jv790zw7iqqjp46hsm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2464020a5b3d89bddcd122cad81fed84ded9b117/recipes/lxc-tramp"; - sha256 = "0rksh7k30kh3i23c98qinffz2zj6h1bshaw994hwy8qwgm38vx61"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/lxc-tramp"; - license = lib.licenses.free; - }; - }) {}; - m-buffer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "m-buffer"; - ename = "m-buffer"; - version = "0.15"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "m-buffer-el"; - rev = "6eb1d2535a82707a83733173bc400a0d8e520c80"; - sha256 = "1sx76i59razwccvn6x7rx5a124bfyjw9fcbxf4gj7nsg33qiq809"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c34d02682e87c9978a3583bd903dcac5da5b41d5/recipes/m-buffer"; - sha256 = "17smq7wlidsls870hla5b94xq2pwk24b88jvrbbcqw6f5z3ypf94"; - name = "recipe"; - }; - packageRequires = [ seq ]; - meta = { - homepage = "https://melpa.org/#/m-buffer"; - license = lib.licenses.free; - }; - }) {}; - mac-pseudo-daemon = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mac-pseudo-daemon"; - ename = "mac-pseudo-daemon"; - version = "2.1"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "mac-pseudo-daemon"; - rev = "4d10e327cd8ee5bb7f006d68744be21c7097c1fc"; - sha256 = "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/mac-pseudo-daemon"; - sha256 = "12fwrcnwzsfms42rzv4wif5yzx3gnsz8yzdcgkpl37kkx85iy8v0"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/mac-pseudo-daemon"; - license = lib.licenses.free; - }; - }) {}; - macro-math = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "macro-math"; - ename = "macro-math"; - version = "1.0"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "macro-math.el"; - rev = "105e03c80290d1b88984b2d265a149a13d722920"; - sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/macro-math"; - sha256 = "072ycszl4cjc9nvv4axsgyfzz9djpgh4y1xqfr1nxi41nsdfc9kn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/macro-math"; - license = lib.licenses.free; - }; - }) {}; - macrostep = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "macrostep"; - ename = "macrostep"; - version = "0.9"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "macrostep"; - rev = "9a6b04a5f7e57e4ba42309e8ce257cd7637514ec"; - sha256 = "0aqlk9rlxfqlb3qr88xxcii5lcxxiyygg62kzxpv16prhv1n8a3i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/macrostep"; - sha256 = "1h1gag21x05a14j0wbg0lg502fq2hbqfhjlg05kysw9f870whfq2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/macrostep"; - license = lib.licenses.free; - }; - }) {}; - magic-filetype = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "magic-filetype"; - ename = "magic-filetype"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "magic-filetype.el"; - rev = "019494add5ff02dd36cb3f500142fc51125522cc"; - sha256 = "1hw77d4wgqrms8rvkv3xd50v4y9qjvm7cpz5rkgmvizs34pjqy22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/magic-filetype"; - sha256 = "0f0j8fgh2gpkarz9308pns0d89wc2dchyim6hbixkdpqzg9gskc3"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/magic-filetype"; - license = lib.licenses.free; - }; - }) {}; - magit = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , ghub - , git-commit - , lib - , magit-popup - , melpaBuild - , with-editor }: - melpaBuild { - pname = "magit"; - ename = "magit"; - version = "2.90.1"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit"; - rev = "791901b2f1d26fa0a383147fe77948a9abc753da"; - sha256 = "1kw94sdczswsyzn1zlk5s5aplpdv4qd7qcqc5zfxsmsfwm3jacl4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9f963950d69a944443d9b6a1658799f7860d0f93/recipes/magit"; - sha256 = "13fipghvlzbx2d4dwxmm1hhnnd28davdp8rjqhq8g4g0lcn3h8b1"; - name = "recipe"; - }; - packageRequires = [ - async - dash - emacs - ghub - git-commit - magit-popup - with-editor - ]; - meta = { - homepage = "https://melpa.org/#/magit"; - license = lib.licenses.free; - }; - }) {}; - magit-annex = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-annex"; - ename = "magit-annex"; - version = "1.7.1"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-annex"; - rev = "21cb2927d672cc6bf631d8373a361b1766ccf004"; - sha256 = "07r0d2i1hws63wfv1jys63r3lmrl4ywwi76gi7srwhzhqdr1af0n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cec5af50ae7634cc566adfbfdf0f95c3e2951c0c/recipes/magit-annex"; - sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; - name = "recipe"; - }; - packageRequires = [ cl-lib magit ]; - meta = { - homepage = "https://melpa.org/#/magit-annex"; - license = lib.licenses.free; - }; - }) {}; - magit-filenotify = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-filenotify"; - ename = "magit-filenotify"; - version = "0.1"; - src = fetchFromGitHub { - owner = "ruediger"; - repo = "magit-filenotify"; - rev = "575c4321f61fb8f25e4779f9ffd4514ac086ae96"; - sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca5541d2ce3553e9ade2c1ec1c0d78103dfd0c4d/recipes/magit-filenotify"; - sha256 = "1ihk5yi6psqkccpi2bq2h70kn7k874zl7wcinjaq21lirk4z7bvn"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-filenotify"; - license = lib.licenses.free; - }; - }) {}; - magit-find-file = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-find-file"; - ename = "magit-find-file"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "bradwright"; - repo = "magit-find-file.el"; - rev = "035da838b1a19e7a5ee135b4ca8475f4e235b61e"; - sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/magit-find-file"; - sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; - name = "recipe"; - }; - packageRequires = [ dash magit ]; - meta = { - homepage = "https://melpa.org/#/magit-find-file"; - license = lib.licenses.free; - }; - }) {}; - magit-gerrit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-gerrit"; - ename = "magit-gerrit"; - version = "0.3"; - src = fetchFromGitHub { - owner = "terranpro"; - repo = "magit-gerrit"; - rev = "699c5c39c6dbdc8d730721eaf1491f982dd78142"; - sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7cc000debed666ad6800e31c114eedb7384317c/recipes/magit-gerrit"; - sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; - name = "recipe"; - }; - packageRequires = [ magit ]; - meta = { - homepage = "https://melpa.org/#/magit-gerrit"; - license = lib.licenses.free; - }; - }) {}; - magit-gh-pulls = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , gh - , lib - , magit - , melpaBuild - , pcache - , s }: - melpaBuild { - pname = "magit-gh-pulls"; - ename = "magit-gh-pulls"; - version = "0.5.3"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "magit-gh-pulls"; - rev = "d526f4c9ee1709c79f8a4630699ce1f25ae054e7"; - sha256 = "11fd3c7wnqy08khj6za8spbsm3k1rqqih21lbax2iwvxl8jv4dv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b54fe4f51820c2f707e1f5d8a1128fff19a319c/recipes/magit-gh-pulls"; - sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; - name = "recipe"; - }; - packageRequires = [ emacs gh magit pcache s ]; - meta = { - homepage = "https://melpa.org/#/magit-gh-pulls"; - license = lib.licenses.free; - }; - }) {}; - magit-gitflow = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , magit - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "magit-gitflow"; - ename = "magit-gitflow"; - version = "2.2.3"; - src = fetchFromGitHub { - owner = "jtatarik"; - repo = "magit-gitflow"; - rev = "cc41b561ec6eea947fe9a176349fb4f771ed865b"; - sha256 = "0jz69wrrzvqadaphmjrr146nzvmphsbl7rmc3ccnpw1gw6gnz81f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfaeb33dec2c75d21733b6e51d063664c6544e4d/recipes/magit-gitflow"; - sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; - name = "recipe"; - }; - packageRequires = [ magit magit-popup ]; - meta = { - homepage = "https://melpa.org/#/magit-gitflow"; - license = lib.licenses.free; - }; - }) {}; - magit-imerge = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-imerge"; - ename = "magit-imerge"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-imerge"; - rev = "5b45efa65317886640c339d1c71d2b9e00e98b77"; - sha256 = "02597aq00fq7b9284kq7s55ddrjb6xhh1l280gq3czi75658d3db"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c/recipes/magit-imerge"; - sha256 = "0rycmbsi2s7rjqfpcv794vhkybav7d8ikzdaxai36szxpg9pzhj4"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-imerge"; - license = lib.licenses.free; - }; - }) {}; - magit-org-todos = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-org-todos"; - ename = "magit-org-todos"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "danielma"; - repo = "magit-org-todos.el"; - rev = "0bfa36bbc50e62de0a3406031cb93e2f57dcdc55"; - sha256 = "07r5x256k1fjjxs1yfg41kc94nwvnjlk2vvknkra3j8v9p0j88m7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84480cad490cab2f087a484ed7b9d3d3064bbd29/recipes/magit-org-todos"; - sha256 = "0yywgzm2jzvsccm9h0a0s1q8fag9dfajnznwk6iqz5pywq5mxijr"; - name = "recipe"; - }; - 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"; - ename = "magit-popup"; - version = "2.13.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-popup"; - rev = "4250c3a606011e3ff2477e3b5bbde2b493f3c85c"; - sha256 = "073x1yf96b623yphylnf0ysannr91vawzgjdv1smkcrgd4451hr3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0263ca6aea7bf6eae26a637454affbda6bd106df/recipes/magit-popup"; - sha256 = "1pv5slspcfmi10bnnw6acpijn7vkn2h9iqww3w641v41d3p37jmv"; - name = "recipe"; - }; - packageRequires = [ async dash emacs ]; - meta = { - homepage = "https://melpa.org/#/magit-popup"; - license = lib.licenses.free; - }; - }) {}; - magit-stgit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-stgit"; - ename = "magit-stgit"; - version = "2.1.3"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "magit-stgit"; - rev = "9d13effdbc213a0c8dcce78e1825011631fa0652"; - sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72a38bbc5bba53dfb971f17213287caf0d190db0/recipes/magit-stgit"; - sha256 = "1spli6yq258zwx95y16s27hr7hlc2h0kc9mjnvjjl13y2l6shm0i"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-stgit"; - license = lib.licenses.free; - }; - }) {}; - magit-svn = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-svn"; - ename = "magit-svn"; - version = "2.2.1"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "magit-svn"; - rev = "c833903732a14478f5c4cfc561bae7c50671b36c"; - sha256 = "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1ff188d509aec104e9d21a640cf5bc3addedf00/recipes/magit-svn"; - sha256 = "1dww5fc5phai3wk9lp85h6y08ai3vxgggsqj78a3mlcn2adwwc01"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-svn"; - license = lib.licenses.free; - }; - }) {}; - magit-tbdiff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-tbdiff"; - ename = "magit-tbdiff"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "magit-tbdiff"; - rev = "4273bfab1d2b620d68d890fbaaa78c56cf210059"; - sha256 = "0d1cn0nshxnvgjvl9j7wsai75pvsxmrmkdj57xdpyggwxgcpl1m4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad97eea866c8732e3adc17551d37a6d1ae511e6c/recipes/magit-tbdiff"; - sha256 = "1wydmw4f1072k8frk8mi8aaky7dndinq8n7kn10q583bjlxgw80r"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-tbdiff"; - license = lib.licenses.free; - }; - }) {}; - magit-todos = callPackage ({ async - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , hl-todo - , lib - , magit - , melpaBuild - , pcre2el - , s }: - melpaBuild { - pname = "magit-todos"; - ename = "magit-todos"; - version = "1.2"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "magit-todos"; - rev = "61dc0edae2dd55b11b675e7b27bbd7019d8d80a3"; - sha256 = "17a18gszbypz82bj36xbfyykc4s9rz83vwmpxvlf65svhd51c0nh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4544ab55d2c8b8c3b7eb739b9fb90ebb246d68b/recipes/magit-todos"; - sha256 = "0vqmbw0qj8a5wf4ig9hgc0v3l1agdkvgprzjv178hs00297br2s8"; - name = "recipe"; - }; - packageRequires = [ async dash emacs f hl-todo magit pcre2el s ]; - meta = { - homepage = "https://melpa.org/#/magit-todos"; - license = lib.licenses.free; - }; - }) {}; - magit-topgit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "magit-topgit"; - ename = "magit-topgit"; - version = "2.1.2"; - src = fetchFromGitHub { - owner = "greenrd"; - repo = "magit-topgit"; - rev = "243fdfa7ce62dce4efd01b6b818a2791868db2f0"; - sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/magit-topgit"; - sha256 = "1194hdcphir4cmvzg9cxrjiyg70hr9zmml2rljih94vl7zrw7335"; - name = "recipe"; - }; - packageRequires = [ emacs magit ]; - meta = { - homepage = "https://melpa.org/#/magit-topgit"; - license = lib.licenses.free; - }; - }) {}; - magithub = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ghub-plus - , git-commit - , lib - , magit - , markdown-mode - , melpaBuild - , s }: - melpaBuild { - pname = "magithub"; - ename = "magithub"; - version = "0.1.7"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "magithub"; - rev = "81e75cbbbac820a3297e6b6a1e5dc6d9cfe091d0"; - sha256 = "1iq8c939c0a6v8gq31vcjw6nxwnz4fpavcd6xf4h2rb6rkmxmhvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e555b46f5de7591aa8e10a7cf67421e26a676db8/recipes/magithub"; - sha256 = "11par5rncsa866gazdw98d4902rvyjnnwbiwpndlyh06ak0lryab"; - name = "recipe"; - }; - packageRequires = [ emacs ghub-plus git-commit magit markdown-mode s ]; - meta = { - homepage = "https://melpa.org/#/magithub"; - license = lib.licenses.free; - }; - }) {}; - major-mode-hydra = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pretty-hydra }: - melpaBuild { - pname = "major-mode-hydra"; - ename = "major-mode-hydra"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "jerrypnz"; - repo = "major-mode-hydra.el"; - rev = "9e7f9ed20d3ea0fa0bb953528aa0d17dbc46e995"; - sha256 = "07plrmy6w186n2czxp00dw8dprh3jnrjm7wk6sycyn571y0ryq4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865917fcc75c4118afc89b8bcc20ebdb6302f15d/recipes/major-mode-hydra"; - sha256 = "0654wnsw38sca97kvp8p3k1h6r91iqs873gcjaaxd7a96sisvafd"; - name = "recipe"; - }; - packageRequires = [ dash emacs pretty-hydra ]; - meta = { - homepage = "https://melpa.org/#/major-mode-hydra"; - license = lib.licenses.free; - }; - }) {}; - make-color = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "make-color"; - ename = "make-color"; - version = "0.4"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "make-color.el"; - rev = "b19cb40c0619e267f2948ed37aff67b712a6deed"; - sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb765469c65589ae9d7dbc420a8edcf44c3be5d1/recipes/make-color"; - sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/make-color"; - license = lib.licenses.free; - }; - }) {}; - makey = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "makey"; - ename = "makey"; - version = "0.3"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "makey"; - rev = "a61781e69d3b451551e269446e1c5f624ab81137"; - sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/688e32e98758aa6fd31218e98608bd54a76c3e83/recipes/makey"; - sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/makey"; - license = lib.licenses.free; - }; - }) {}; - malinka = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , rtags - , s }: - melpaBuild { - pname = "malinka"; - ename = "malinka"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "LefterisJP"; - repo = "malinka"; - rev = "899e2c0020f283a00f7a24244749af5b9abfe3fe"; - sha256 = "0m7dkycpfjch8h3983ddasxil4pf4gf0xbjlamijb00n25bxv1dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/malinka"; - sha256 = "1zmnlgy9k1s1s2wgkhlwfsnknmhggy0rx3l495a5x1kqsx6i0c9y"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f projectile rtags s ]; - meta = { - homepage = "https://melpa.org/#/malinka"; - license = lib.licenses.free; - }; - }) {}; - mallard-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mallard-mode"; - ename = "mallard-mode"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "jhradilek"; - repo = "emacs-mallard-mode"; - rev = "152cd44d53c881457fe57c1aba77e8e2fca4d1b0"; - sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19c5543664ca685a70e53baa1357842e83cbf8f7/recipes/mallard-mode"; - sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mallard-mode"; - license = lib.licenses.free; - }; - }) {}; - map-progress = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "map-progress"; - ename = "map-progress"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "map-progress"; - rev = "1fb916159cd054c233ce3c80d9d01adfae640297"; - sha256 = "1hbk35l9aljp4jqg8cv67q6b2jbcx0g665j90fygxqibrf6r52a8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ed3335eaf0be7368059bcdb52c46f5e47c0c1a5/recipes/map-progress"; - sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/map-progress"; - license = lib.licenses.free; - }; - }) {}; - map-regexp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "map-regexp"; - ename = "map-regexp"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "map-regexp"; - rev = "ae2d1c22f786ad987aef3e319925e80160a887a0"; - sha256 = "1ybhizafdhzm7fg8s6gm13fbrz1vnrc7ifq8gvrrm89wl3qi5z7f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/927314443ecc00d94e7125de669e82832c5a125c/recipes/map-regexp"; - sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/map-regexp"; - license = lib.licenses.free; - }; - }) {}; - marcopolo = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "marcopolo"; - ename = "marcopolo"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "marcopolo"; - rev = "ce6ad40d7feab0568924e3bd9659b76e3eecd55e"; - sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/936a1cff601594575c5b550c5eb16e7dafc8a5ab/recipes/marcopolo"; - sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/marcopolo"; - license = lib.licenses.free; - }; - }) {}; - mark-tools = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mark-tools"; - ename = "mark-tools"; - version = "0.3"; - src = fetchFromGitHub { - owner = "stsquad"; - repo = "emacs-mark-tools"; - rev = "0e7ac2522ac84155cab341dc49f7f0b81067133c"; - sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ca36020392807aca9658d13481868d8b6c23d51/recipes/mark-tools"; - sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mark-tools"; - license = lib.licenses.free; - }; - }) {}; - markdown-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markdown-mode"; - ename = "markdown-mode"; - version = "2.3"; - src = fetchFromGitHub { - owner = "jrblevin"; - repo = "markdown-mode"; - rev = "cde5c5d2bcce470c494b76e23cfe1364b6291c20"; - sha256 = "1zm1j4w0f3h01bmmpsv4j4mh6i13nnl8fcqlj2hsa1ncy1lgi8q7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/74610ec93d4478e835f8b3b446279efc0c71d644/recipes/markdown-mode"; - sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/markdown-mode"; - license = lib.licenses.free; - }; - }) {}; - markdown-mode-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "markdown-mode-plus"; - ename = "markdown-mode+"; - version = "0.8"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "markdown-mode-plus"; - rev = "f35e63284c5caed19b29501730e134018a78e441"; - sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/markdown-mode+"; - sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; - name = "recipe"; - }; - packageRequires = [ markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/markdown-mode+"; - license = lib.licenses.free; - }; - }) {}; - markdown-preview-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , web-server - , websocket }: - melpaBuild { - pname = "markdown-preview-mode"; - ename = "markdown-preview-mode"; - version = "0.9.2"; - src = fetchFromGitHub { - owner = "ancane"; - repo = "markdown-preview-mode"; - rev = "f98d9114ca87e3e8e5ce70e601d13061eda15415"; - sha256 = "1d1id99gagymvzdfa1mwqh8y3szm8ii47rpijkfi1qnifjg5jaq9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3c5d222cf0d7eca6a4e3eb914907f8ca58e40f0/recipes/markdown-preview-mode"; - sha256 = "1cam5wfxca91q3i1kl0qbdvnfy62hr5ksargi4430kgaz34bcbyn"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs markdown-mode web-server websocket ]; - meta = { - homepage = "https://melpa.org/#/markdown-preview-mode"; - license = lib.licenses.free; - }; - }) {}; - markdown-toc = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , s }: - melpaBuild { - pname = "markdown-toc"; - ename = "markdown-toc"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "markdown-toc"; - rev = "15587c76bec43dd778a2034035f98a79ad29e96a"; - sha256 = "00rvpbfcdy1npddxa7yynqpzwrx1h2bm69x9yh42dv6ss3vk1sjs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4db1e90be8e34d5ad0c898be10dfa5cd95ccb921/recipes/markdown-toc"; - sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; - name = "recipe"; - }; - packageRequires = [ dash markdown-mode s ]; - meta = { - homepage = "https://melpa.org/#/markdown-toc"; - license = lib.licenses.free; - }; - }) {}; - markup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markup"; - ename = "markup"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "markup.el"; - rev = "876da2d3f23473475bb0fd0a1480ae11d2671291"; - sha256 = "0rggadka5aqgrik3qky6s75s5yb5bfj6fcpxjz1iyrwi0fka0akd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a75c955ad6b2f68b8933329e545625d948f6f8f4/recipes/markup"; - sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/markup"; - license = lib.licenses.free; - }; - }) {}; - markup-faces = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "markup-faces"; - ename = "markup-faces"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "sensorflo"; - repo = "markup-faces"; - rev = "c43612633c6c161857a3bab5752ae192bb03f5f3"; - sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/markup-faces"; - sha256 = "06fawlv4ih2lsmk7x6h9p5rppl8vw2w3nvlss95kb8fj5fwf7mw9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/markup-faces"; - license = lib.licenses.free; - }; - }) {}; - marshal = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , ht - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "marshal"; - ename = "marshal"; - version = "0.8.2"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "marshal.el"; - rev = "d714219aeb388ded88582c47940f2c6febae333c"; - sha256 = "1mr5p2yiad1k15byrlk0a784kj7rvibpn4li5phk4rnm0zg1xy9s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/203f2061c5c7d4aefab3175de5e0538f12158ee3/recipes/marshal"; - sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; - name = "recipe"; - }; - packageRequires = [ eieio ht json ]; - meta = { - homepage = "https://melpa.org/#/marshal"; - license = lib.licenses.free; - }; - }) {}; - mastodon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mastodon"; - ename = "mastodon"; - version = "0.9.0"; - src = fetchFromGitHub { - owner = "jdenen"; - repo = "mastodon.el"; - rev = "5095797ef32b922d2a624fa6beb970b5e9cf5ca0"; - sha256 = "0hwax6y9dghqwsbnb6f1bnc7gh8xsh5cvcnayk2sn49x8b0zi5h1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/809d963b69b154325faaf61e54ca87b94c1c9a90/recipes/mastodon"; - sha256 = "1bsyf4j6zs9gin0k7p22yv5gaqd6m3vdc2fiagfbs7gxsmhb6p4i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mastodon"; - license = lib.licenses.free; - }; - }) {}; - material-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "material-theme"; - ename = "material-theme"; - version = "1.2"; - src = fetchFromGitHub { - owner = "cpaulik"; - repo = "emacs-material-theme"; - rev = "c59b4874914b5b28068be25292690325f19739dd"; - sha256 = "1sp2h2n0ihp0r6q7c1861awg7rqh6bcxz4hgnny1gj5vjz9h7rch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d31ababaa50061e767605c979a3f327a654e564b/recipes/material-theme"; - sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/material-theme"; - license = lib.licenses.free; - }; - }) {}; - math-symbol-lists = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "math-symbol-lists"; - ename = "math-symbol-lists"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "math-symbol-lists"; - rev = "499986959356f7a905fd4f2a1609c17d7ff067c3"; - sha256 = "1h6fwj2w77gm4wafqll5bd6r8xafh6f4a0piqmgjvcwxy2sxrk0q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fadff01600d57f5b9ea9c0c47ed109e058114998/recipes/math-symbol-lists"; - sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/math-symbol-lists"; - license = lib.licenses.free; - }; - }) {}; - maven-test-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "maven-test-mode"; - ename = "maven-test-mode"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "rranelli"; - repo = "maven-test-mode"; - rev = "f79409907375591283291eb96af4754b1ccc0e6f"; - sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bdc7f677c53431542cb8d7c95666d021dead2b98/recipes/maven-test-mode"; - sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/maven-test-mode"; - license = lib.licenses.free; - }; - }) {}; - maxframe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "maxframe"; - ename = "maxframe"; - version = "0.5"; - src = fetchFromGitHub { - owner = "rmm5t"; - repo = "maxframe.el"; - rev = "4f1dbbe68048864037eae277b9280b90fd701ff1"; - sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/maxframe"; - sha256 = "1lxj60qcvv8vakdq79k1brzv3ki74kajrx8620dzx76bnfkryxk8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/maxframe"; - license = lib.licenses.free; - }; - }) {}; - mb-url = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mb-url"; - ename = "mb-url"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "dochang"; - repo = "mb-url"; - rev = "23078f2e59808890268401f294d860ba51bc71d9"; - sha256 = "07b9w9vd22ma4s3qhplmg84sylihz920byyi9qa7dwj7b59d4avf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd9a8ff6e094b061a7b9d790df1fd4086c5d0a9d/recipes/mb-url"; - sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/mb-url"; - license = lib.licenses.free; - }; - }) {}; - mbe = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mbe"; - ename = "mbe"; - version = "0.1"; - src = fetchFromGitHub { - owner = "ijp"; - repo = "mbe.el"; - rev = "06d5b8e240e6c277978314ceec31ad48b3b2966e"; - sha256 = "10zpm6b7r0h7b5hn84a92r1a747zvwgxr4gpa2wbjd74l5b0qciq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a8a16e485d608dbd59151d77e252048a49f9d25/recipes/mbe"; - sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mbe"; - license = lib.licenses.free; - }; - }) {}; - mc-extras = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors }: - melpaBuild { - pname = "mc-extras"; - ename = "mc-extras"; - version = "1.2.4"; - src = fetchFromGitHub { - owner = "knu"; - repo = "mc-extras.el"; - rev = "f0ba639e9b18cc56e80ae45bbb2b694dbad9171a"; - sha256 = "0d6ncj6zd0lfsdpffbh3l25ycjw5hn0rwi5znp5hpl06b1ycyk4s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12747bb8603ebc09ce0873f3317a99e34d818313/recipes/mc-extras"; - sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; - name = "recipe"; - }; - packageRequires = [ multiple-cursors ]; - meta = { - homepage = "https://melpa.org/#/mc-extras"; - license = lib.licenses.free; - }; - }) {}; - md4rd = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , hierarchy - , lib - , melpaBuild - , request - , s - , tree-mode }: - melpaBuild { - pname = "md4rd"; - ename = "md4rd"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "md4rd"; - rev = "443c8059af4925d11c93a1293663165c52472f08"; - sha256 = "1n6g6k4adzkkn1g7z4j27s35xy12c1fg2r08gv345ddr3wplq4ri"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48d4a3b3337e16e68631409d1de0ce67ae22b837/recipes/md4rd"; - sha256 = "0ayr5qw0cz7bd46djfhm8slr2kfgssi5bsnzqcasr8n4lyg9jvfc"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs hierarchy request s tree-mode ]; - meta = { - homepage = "https://melpa.org/#/md4rd"; - license = lib.licenses.free; - }; - }) {}; - mediawiki = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mediawiki"; - ename = "mediawiki"; - version = "2.2.9"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "mediawiki-el"; - rev = "8473e12d1839f5287a4227586bf117dad820f867"; - sha256 = "03rpj3yrk3i1l9yjnamnx38idn6y4zi9zg53bc83sx3g2b4m5v04"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865e0ba1dbace58784181d214000d090478173bd/recipes/mediawiki"; - sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mediawiki"; - license = lib.licenses.free; - }; - }) {}; - meghanada = callPackage ({ company - , emacs - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "meghanada"; - ename = "meghanada"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "mopemope"; - repo = "meghanada-emacs"; - rev = "81a2a5da2b645701bed6eb09d606b3968f1df2ca"; - sha256 = "0lns4w1n31nvpv14x7kcdq1m3k1isdqmdnkdav854hg154fibxqa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4c75c69b2f00be9a93144f632738272c1e375785/recipes/meghanada"; - sha256 = "10f1fxma3lqcyv78i0p9mjpi79jfjd5lq5q60ylpxqp18nrql1s4"; - name = "recipe"; - }; - packageRequires = [ company emacs flycheck yasnippet ]; - meta = { - homepage = "https://melpa.org/#/meghanada"; - license = lib.licenses.free; - }; - }) {}; - melpa-upstream-visit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "melpa-upstream-visit"; - ename = "melpa-upstream-visit"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "laynor"; - repo = "melpa-upstream-visit"; - rev = "7310c74fdead3c0f86ad6eff76cf989e63f70f66"; - sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c110538a1ae2419505ea8f144ef7de2d67cad568/recipes/melpa-upstream-visit"; - sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/melpa-upstream-visit"; - license = lib.licenses.free; - }; - }) {}; - memoize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "memoize"; - ename = "memoize"; - version = "1.1"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-memoize"; - rev = "636defefa9168f90bce6fc27431352ac7d01a890"; - sha256 = "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cc9be5bbcff04de5e6d3bb8c47d202fd350989b/recipes/memoize"; - sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/memoize"; - license = lib.licenses.free; - }; - }) {}; - mentor = callPackage ({ async - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq - , xml-rpc }: - melpaBuild { - pname = "mentor"; - ename = "mentor"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "skangas"; - repo = "mentor"; - rev = "9415472470ff23ee9600d94123c51c455d63018d"; - sha256 = "05gfprcrh9p06arsni58nf60inlf1zbd18i678r9xd4q0v35k491"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083de4bd25b6b013a31b9d5ecdffad139a4ba91e/recipes/mentor"; - sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; - name = "recipe"; - }; - packageRequires = [ async cl-lib seq xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/mentor"; - license = lib.licenses.free; - }; - }) {}; - merlin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "merlin"; - ename = "merlin"; - version = "3.3.0"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "merlin"; - rev = "800c793870c7ff3b00a6817ab16b03628c6495eb"; - sha256 = "0yx92lybw685ay5qd8jpdxwfdjmhhbrpkpi94gysq9bmh0kqhixr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9338298a79b7f2d654df90b0f553aeed1428de13/recipes/merlin"; - sha256 = "0r4wc5ann6239bagj364yyzw4y3lcpkl5nnn0vmx4hgkwdg509fn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/merlin"; - license = lib.licenses.free; - }; - }) {}; - merlin-eldoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , merlin }: - melpaBuild { - pname = "merlin-eldoc"; - ename = "merlin-eldoc"; - version = "1.3"; - src = fetchFromGitHub { - owner = "Khady"; - repo = "merlin-eldoc"; - rev = "bbb1a10f2131c09a7f7f844d4da98efd77f927ae"; - sha256 = "11gggay8srycpckclqvcmad6ym3lx2sxgj670z89br91jdwmkr2f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/merlin-eldoc"; - sha256 = "0bx383nxd97as0d362n1jn62k2rypxvxhcjasgwf0cr8vxr244fp"; - name = "recipe"; - }; - packageRequires = [ emacs merlin ]; - meta = { - homepage = "https://melpa.org/#/merlin-eldoc"; - license = lib.licenses.free; - }; - }) {}; - meson-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "meson-mode"; - ename = "meson-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "wentasah"; - repo = "meson-mode"; - rev = "212d9f38a08074f1cb6e914e12b60bc52dcb8bee"; - sha256 = "1kv7413y5530frs1nrp0nl40h9j0idwp7vlg761r260200m8sl3v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4702a31ffd6b9c34f96d151f2611a1bfb25baa88/recipes/meson-mode"; - sha256 = "16yg217ghx6pvlxha2swznkg12c2a9hhyi0hnsbqdj2ijcdzca80"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/meson-mode"; - license = lib.licenses.free; - }; - }) {}; - meta-presenter = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "meta-presenter"; - ename = "meta-presenter"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "meta-presenter"; - rev = "3d8c762a7dd7ac39032a3601bd6a717f206e670d"; - sha256 = "0r9zzmglmkkmxcqh0pdlg279mpd524k2rwn56kyvj5i3i8zw9rpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b73e9424515b3ddea220b786e91c57ee22bed87f/recipes/meta-presenter"; - sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/meta-presenter"; - license = lib.licenses.free; - }; - }) {}; - metaweblog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xml-rpc }: - melpaBuild { - pname = "metaweblog"; - ename = "metaweblog"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "org2blog"; - repo = "metaweblog"; - rev = "aa14380eb7e7b879a0c16c96866b20a987cd3f2a"; - sha256 = "146w9laysdqbikpzr2gc9vnjrdsa87d8i13f2swlh1kvq2dn3rz5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/metaweblog"; - sha256 = "0qgmcvq1fhgljia9ncjgvgrv0mzih0l9mglwbwcszn613wmx8bkg"; - name = "recipe"; - }; - packageRequires = [ xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/metaweblog"; - license = lib.licenses.free; - }; - }) {}; - mew = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mew"; - ename = "mew"; - version = "6.8"; - src = fetchFromGitHub { - owner = "kazu-yamamoto"; - repo = "Mew"; - rev = "972677a1aeb138709727634418c391316a3bf33c"; - sha256 = "14ahl8xdm3a168qfnlbw99rlhvr6nhw94nj01m6ny4f3rkh1p2hk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/362dfc4d0fdb3e5cb39564160de62c3440ce182e/recipes/mew"; - sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mew"; - license = lib.licenses.free; - }; - }) {}; - mgmtconfig-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mgmtconfig-mode"; - ename = "mgmtconfig-mode"; - version = "0.0.19"; - src = fetchFromGitHub { - owner = "purpleidea"; - repo = "mgmt"; - rev = "07f542b4d753fe2f182b5e139450217a633491f8"; - sha256 = "0nbj3fh3wsl9065mad04c7avc2pq4lqrdng1xkwdng6l361f2wak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4cf3dd70ae73c2b049e201a3547bbeb9bb117983/recipes/mgmtconfig-mode"; - sha256 = "0bdjaqfk68av4lfc4cpacrl2mxvimplfkbadi9l6wb65vlqz6sil"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mgmtconfig-mode"; - license = lib.licenses.free; - }; - }) {}; - mhc = callPackage ({ calfw - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mhc"; - ename = "mhc"; - version = "1.2.2"; - src = fetchFromGitHub { - owner = "yoshinari-nomura"; - repo = "mhc"; - rev = "88b5f938e57c28e9e2db202770f952fc0ecba945"; - sha256 = "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba/recipes/mhc"; - sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; - name = "recipe"; - }; - packageRequires = [ calfw ]; - meta = { - homepage = "https://melpa.org/#/mhc"; - license = lib.licenses.free; - }; - }) {}; - migemo = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "migemo"; - ename = "migemo"; - version = "1.9.2"; - src = fetchFromGitHub { - owner = "emacs-jp"; - repo = "migemo"; - rev = "09936ee27a5f3678fdf57b8a0faaa0ff150435cc"; - sha256 = "0wfik7y3ybh4yrrlpydawx5zw0syv7wm7b1mckz2rbv3d863z0n5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2424b0328a0198a03359455abdb3024a8067c857/recipes/migemo"; - sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/migemo"; - license = lib.licenses.free; - }; - }) {}; - milkode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "milkode"; - ename = "milkode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "emacs-milkode"; - rev = "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513"; - sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/29fffbec2d3067c046c456602779af8c04bf898f/recipes/milkode"; - sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/milkode"; - license = lib.licenses.free; - }; - }) {}; - minibuffer-complete-cycle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minibuffer-complete-cycle"; - ename = "minibuffer-complete-cycle"; - version = "1.25.20130814"; - src = fetchFromGitHub { - owner = "knu"; - repo = "minibuffer-complete-cycle"; - rev = "3df80135887d0169e02294a948711f6dfeca4a6f"; - sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afac2cf41fe57efa8d313fdbab0b0b795ec144e4/recipes/minibuffer-complete-cycle"; - sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minibuffer-complete-cycle"; - license = lib.licenses.free; - }; - }) {}; - minibuffer-cua = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minibuffer-cua"; - ename = "minibuffer-cua"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "knu"; - repo = "minibuffer-cua.el"; - rev = "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb"; - sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3b0f1f260b02c14da4d584b6af08b2fa3adf39c/recipes/minibuffer-cua"; - sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minibuffer-cua"; - license = lib.licenses.free; - }; - }) {}; - miniedit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "miniedit"; - ename = "miniedit"; - version = "2.0"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "miniedit"; - rev = "e12bf659c3eb92dd8a4cb77642dc0865c54667a3"; - sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/miniedit"; - sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/miniedit"; - license = lib.licenses.free; - }; - }) {}; - minimal-session-saver = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minimal-session-saver"; - ename = "minimal-session-saver"; - version = "0.6.2"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "minimal-session-saver"; - rev = "aaba48a8525e1310b221eeb96763304c22e9a4b4"; - sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/minimal-session-saver"; - sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/minimal-session-saver"; - license = lib.licenses.free; - }; - }) {}; - minions = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minions"; - ename = "minions"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "minions"; - rev = "d36d2445420460c81bcd4822d0bfcbafaec2c682"; - sha256 = "0q2y37zfxlbfvgdn70ikg3abp8vljna4ir9nyqlz1awmz5i1c43s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/769a2167d7f6dfdbbfda058ddea036f80b97d230/recipes/minions"; - sha256 = "0ximlj93yp6646bh99r2vnayk15ky26sibrmrqqysfw1pzs4a940"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/minions"; - license = lib.licenses.free; - }; - }) {}; - minitest = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "minitest"; - ename = "minitest"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "arthurnn"; - repo = "minitest-emacs"; - rev = "2bed01262b0d888473468b5c7bd7d73694d31320"; - sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41b2e55c0fe48267dc4f55924c782c6f934d8ca4/recipes/minitest"; - sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/minitest"; - license = lib.licenses.free; - }; - }) {}; - mips-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mips-mode"; - ename = "mips-mode"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-mips-mode"; - rev = "e6c25201a3325b555e64388908d584f3f81d9e32"; - sha256 = "0ai4ff6hinajvnp8r86s5pv0rrv8h68ncdz4k98kka1ws2f79zdf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/024a76b83efce47271bcb0ce3bde01b88349f391/recipes/mips-mode"; - sha256 = "0gg18v80lbndi2yyr5nl37mz0zpamwv9ha4clajkf0bc0vplxkj7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mips-mode"; - license = lib.licenses.free; - }; - }) {}; - mixed-pitch = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mixed-pitch"; - ename = "mixed-pitch"; - version = "1.0.1"; - src = fetchFromGitLab { - owner = "jabranham"; - repo = "mixed-pitch"; - rev = "15bb9ec6d8be0812a46917205be6c3a1c78f68ff"; - sha256 = "1458sy5b6bis1i0k23jdqk6hfqg0ghk637r3ajql2g19ym48rf58"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d3c7af03e0bca3f834c32827cbcca29e29ef4db/recipes/mixed-pitch"; - sha256 = "1gda4jl946qlbf8rqm0mk493kwy8yqldr21cr583l6b6gl1nb4qf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mixed-pitch"; - license = lib.licenses.free; - }; - }) {}; - mmm-jinja2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode }: - melpaBuild { - pname = "mmm-jinja2"; - ename = "mmm-jinja2"; - version = "0.1"; - src = fetchFromGitHub { - owner = "glynnforrest"; - repo = "mmm-jinja2"; - rev = "c8cb763174fa2fb61b9a0e5e0ff8cb0210f8492f"; - sha256 = "0big2i3bg4cm14f68ncaiz2h6dk6zqiisrz4l0bv10q9kaa9q2sj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/721b9a6f16fb8efd4d339ac7953cc07d7a234b53/recipes/mmm-jinja2"; - sha256 = "0zg4psrgikb8644x3vmsns0id71ni9fcpm591zn16b4j64llvgsi"; - name = "recipe"; - }; - packageRequires = [ mmm-mode ]; - meta = { - homepage = "https://melpa.org/#/mmm-jinja2"; - license = lib.licenses.free; - }; - }) {}; - mmt = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mmt"; - ename = "mmt"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "mmt"; - rev = "f7db836a10720ee50217012e7e2597ebcf624f90"; - sha256 = "13vbfc5597v0gd87qyhn10f93nb477vjpg3jlpphbax9fvkf4gav"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1137bb53ecd92b1a8537abcd2635602c5ab3277/recipes/mmt"; - sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mmt"; - license = lib.licenses.free; - }; - }) {}; - mocha = callPackage ({ fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "mocha"; - ename = "mocha"; - version = "1.1"; - src = fetchFromGitHub { - owner = "scottaj"; - repo = "mocha.el"; - rev = "4ca9495d4b00b753f055152bd4256c07d7b208f4"; - sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/39c26134ba95f277a4e9400e506433d96a695aa4/recipes/mocha"; - sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; - name = "recipe"; - }; - packageRequires = [ js2-mode ]; - meta = { - homepage = "https://melpa.org/#/mocha"; - license = lib.licenses.free; - }; - }) {}; - mocha-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "mocha-snippets"; - ename = "mocha-snippets"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "cowboyd"; - repo = "mocha-snippets.el"; - rev = "361a3809f755577406e109b9e44d473dfa7c08e0"; - sha256 = "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93c472e3d7f318373342907ca7253253ef12dab8/recipes/mocha-snippets"; - sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/mocha-snippets"; - license = lib.licenses.free; - }; - }) {}; - mocker = callPackage ({ eieio ? null - , el-x - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mocker"; - ename = "mocker"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "mocker.el"; - rev = "55b078b53ea49e48bd1821d96f0fb86f794fdc6c"; - sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16a4fe34a6f354d396c24ff13e15157510202259/recipes/mocker"; - sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; - name = "recipe"; - }; - packageRequires = [ eieio el-x ]; - meta = { - homepage = "https://melpa.org/#/mocker"; - license = lib.licenses.free; - }; - }) {}; - modalka = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "modalka"; - ename = "modalka"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "modalka"; - rev = "1259afa084f58d143d133aac56a6c0c10bc460f2"; - sha256 = "0ggj8q92sb6wp3hs1vhpmy56id0p3i9zwnw24g2v7xa7w8ac9s7l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa0a02da851a603b81e183f461da55bf4c71f0e9/recipes/modalka"; - sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/modalka"; - license = lib.licenses.free; - }; - }) {}; - mode-icons = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-icons"; - ename = "mode-icons"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "mode-icons"; - rev = "37581ed911e4469f773ddfb7b40a85592d323b76"; - sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/mode-icons"; - sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mode-icons"; - license = lib.licenses.free; - }; - }) {}; - mode-line-bell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-line-bell"; - ename = "mode-line-bell"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "mode-line-bell"; - rev = "4985ba42f5a19f46ddbf9b3622453a9694995ce5"; - sha256 = "13n3di05lgqfm4f8krn3p36yika5znhymp5vr2d747x54hqmgh7y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/26f19808655b0242a1e9e5e5d41f7f794542e243/recipes/mode-line-bell"; - sha256 = "1ri771hb91b7hd203f8zp83h5hcndh8ccc1y8shhqmak6a6l04wk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mode-line-bell"; - license = lib.licenses.free; - }; - }) {}; - mode-line-debug = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mode-line-debug"; - ename = "mode-line-debug"; - version = "1.2.3"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "mode-line-debug"; - rev = "a0fcc394b07d2414bd6f722da10f1c7567333f6b"; - sha256 = "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2/recipes/mode-line-debug"; - sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mode-line-debug"; - license = lib.licenses.free; - }; - }) {}; - modern-cpp-font-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "modern-cpp-font-lock"; - ename = "modern-cpp-font-lock"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "ludwigpacifici"; - repo = "modern-cpp-font-lock"; - rev = "3e9c18b5a2ade485565f5191f12a724f1969dbb0"; - sha256 = "0jg5yix4c18gvy5n4wsi7zg2sb7r0bw0xlmq0w15g3z63nhy69vc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4bfc2386049adfe7a8e20da9b69fb73d6cb71387/recipes/modern-cpp-font-lock"; - sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/modern-cpp-font-lock"; - license = lib.licenses.free; - }; - }) {}; - moe-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moe-theme"; - ename = "moe-theme"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "moe-theme.el"; - rev = "b8f0206614ab40ffb75e50ce6c38675fb9c7cf2e"; - sha256 = "0pn3a1rrj7ycxh91x3q008b6rmq7rbl8ir6diqzqfp6y465pn2w2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4efefd7edacf90620436ad4ef9ceb470618a8018/recipes/moe-theme"; - sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/moe-theme"; - license = lib.licenses.free; - }; - }) {}; - monitor = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monitor"; - ename = "monitor"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "monitor"; - rev = "8c67c06f60a89b2583bae90afc91a7e7d73260fd"; - sha256 = "1r2sns49f5fw4f122s165sa41nkrkq2qs20n98g2pfd1whflqfnb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9df614e8e7b9dfdbd7eec552a2b13e0f5acfc22/recipes/monitor"; - sha256 = "11n4nv6vkjw434yrwqjw20229m2sxqxxdp7sg99gzrd5gjyab643"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/monitor"; - license = lib.licenses.free; - }; - }) {}; - monky = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monky"; - ename = "monky"; - version = "0.1"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "monky"; - rev = "099f1af9d3f6f6143f5e98a9b844f965a011a120"; - sha256 = "1fgn7al4zwz2k5wb5dy3byqg9lsrjk9fra341mxh5ma2pfwxjgps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc/recipes/monky"; - sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monky"; - license = lib.licenses.free; - }; - }) {}; - monokai-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monokai-theme"; - ename = "monokai-theme"; - version = "3.5.3"; - src = fetchFromGitHub { - owner = "oneKelvinSmith"; - repo = "monokai-emacs"; - rev = "1143c072f5153ae1a69807e5e8af163069b947d2"; - sha256 = "0dy8c3349j7fmp8052hbgvk0b7ldlv5jqpg0paq1i0hlypivd30i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089/recipes/monokai-theme"; - sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monokai-theme"; - license = lib.licenses.free; - }; - }) {}; - monroe = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "monroe"; - ename = "monroe"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "sanel"; - repo = "monroe"; - rev = "0b9b043f042145bf62969add7ec476ea51da7cbd"; - sha256 = "101lfrykdbv37spkbw7zihhx26bc1lhjyxbanrcp9880bxj04jiy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/590e5e784c5a1c12a241d90c9a0794d2737a61ef/recipes/monroe"; - sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/monroe"; - license = lib.licenses.free; - }; - }) {}; - mood-line = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mood-line"; - ename = "mood-line"; - version = "1.1.2"; - src = fetchFromGitLab { - owner = "jessieh"; - repo = "mood-line"; - rev = "3560d8aafd8c856a218ff8fab5a30e1aa0db25b6"; - sha256 = "08qh8x0gd7byvfp03jpkd95h70djh8vrwpm451932zwf66j7fnay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b10524f105943648ecf52f007f363b7b5534865e/recipes/mood-line"; - sha256 = "0wj8rdgsqsdd2ps3w7sj8a7yhhz0iczwgnalalzws42x8s9yn4j0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mood-line"; - license = lib.licenses.free; - }; - }) {}; - mood-one-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mood-one-theme"; - ename = "mood-one-theme"; - version = "1.0.3"; - src = fetchFromGitLab { - owner = "jessieh"; - repo = "mood-one-theme"; - rev = "47fc825547664c3e3eb8f47f1a9cf74b23efc2c6"; - sha256 = "17zz3nc3r2cm4w99frzqxnh768vnmzs71p9zz9bj03wc222n1kv6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44fbe8c54e4052e6c38849a12425db8f7c04fcc1/recipes/mood-one-theme"; - sha256 = "1ar3vsc0d838m2k54f4v8a4mc0g21qa9rmgr2wb763vb7vpcznmi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mood-one-theme"; - license = lib.licenses.free; - }; - }) {}; - moody = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moody"; - ename = "moody"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "moody"; - rev = "e0975e844876f0962b2e9481c26739397bd23541"; - sha256 = "0jci21ycsyf1mblcv8vbii4wisw1zcs15q5xwld7ai24kgj70269"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63521fe6a1e540544a07231cc94144439e8caea7/recipes/moody"; - sha256 = "095241sjw330fb5lk48aa4zx8xbzk8s4ml22n6a8bzr99nkhn5jy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/moody"; - license = lib.licenses.free; - }; - }) {}; - moom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moom"; - ename = "moom"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "takaxp"; - repo = "moom"; - rev = "536eac1dd2b187f65ed85ad8efc95f7e2bcaadb2"; - sha256 = "12v2m66dlvnggmraxgmcfq4ycv6wdc56dv63gggrcy7zhlxwi9vp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c55081230ee02346ed02e0ab19ee2302e7b9ffa7/recipes/moom"; - sha256 = "11l4yc8fhxsrsjfksqj4cxr13jln0khhd2dn09i94n71dx7lybh1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/moom"; - license = lib.licenses.free; - }; - }) {}; - morlock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "morlock"; - ename = "morlock"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "morlock"; - rev = "5fd655ba3050981ab8059bcddf5b19c21f9ceea1"; - sha256 = "0bgrqydh9bb059j6b6y86xn6qdq85y0radsi1zq20p5xmrsgivbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b6ef53bbc80edda12a90a8a9705fe14415972833/recipes/morlock"; - sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/morlock"; - license = lib.licenses.free; - }; - }) {}; - mosey = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mosey"; - ename = "mosey"; - version = "0.2"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "mosey.el"; - rev = "2e3ac9d334fa2937ed5267193dfd25d8e1f14dc2"; - sha256 = "1yxy6m5igvsy37vn93ijs0b479v50vsnsyp8zi548iy2ribr0qr5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76a9a43eea68db9f82c07677235c481a6f243aa2/recipes/mosey"; - sha256 = "0zprzr5aqv77kmg1ki9w6fw1nc2ap6yqjl4ak05a1i9cq8g6nf3m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mosey"; - license = lib.licenses.free; - }; - }) {}; - move-dup = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "move-dup"; - ename = "move-dup"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "wyuenho"; - repo = "move-dup"; - rev = "dae61de7aa5e2bf56a7bab1fa36fa3a39520a3c0"; - sha256 = "1mrrxx2slxi1qgf483nnxv3y8scfsc844sfnzn4b7hjpfpali0r8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3ea1f7f015a366192492981ff75672fc363c6c18/recipes/move-dup"; - sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/move-dup"; - license = lib.licenses.free; - }; - }) {}; - move-text = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "move-text"; - ename = "move-text"; - version = "2.0.8"; - src = fetchFromGitHub { - owner = "emacsfodder"; - repo = "move-text"; - rev = "daaa5c3e01d1b88f4eea8e1421acd2453c2df350"; - sha256 = "1hm2j28vf7zh5h552wszawxsp2c4jwpc33017ld1vc9qcccp3895"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82bfd0f41e42eed1d4c2361ec1d1685edebbac1b/recipes/move-text"; - sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/move-text"; - license = lib.licenses.free; - }; - }) {}; - mowedline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mowedline"; - ename = "mowedline"; - version = "3.3.0"; - src = fetchFromGitHub { - owner = "retroj"; - repo = "mowedline"; - rev = "bde4de0a4e1404127b0a48897d8cd1d1cb8a263d"; - sha256 = "0wwl9f01b9sgs8n19a4i7h08xaf6zdljf2plbdpyy4gzi2iiqcc4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86f7df6b8df3398ef476c0ed31722b03f16b2fec/recipes/mowedline"; - sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mowedline"; - license = lib.licenses.free; - }; - }) {}; - moz = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "moz"; - ename = "moz"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "bard"; - repo = "mozrepl"; - rev = "9a3e3e08c12379a54d51ec92a012995c9597c566"; - sha256 = "1g7rriy8xnsx0xpdw54ywra2pzz6ynqlf6mpmr59xf6v8wpz85pk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6839c5e52364fb32f6d8a351e5c2f21fbd6669a1/recipes/moz"; - sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/moz"; - license = lib.licenses.free; - }; - }) {}; - moz-controller = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , moz }: - melpaBuild { - pname = "moz-controller"; - ename = "moz-controller"; - version = "1.0"; - src = fetchFromGitHub { - owner = "RenWenshan"; - repo = "emacs-moz-controller"; - rev = "42fd842039620de7fb122f7e4ffc1ab802ee97c5"; - sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fcc20337594a76a547f696adece121ae592c6917/recipes/moz-controller"; - sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; - name = "recipe"; - }; - packageRequires = [ moz ]; - meta = { - homepage = "https://melpa.org/#/moz-controller"; - license = lib.licenses.free; - }; - }) {}; - mozc-temp = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mozc }: - melpaBuild { - pname = "mozc-temp"; - ename = "mozc-temp"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "HKey"; - repo = "mozc-temp"; - rev = "7f5dd5fc8ceeca9b1822f7e056a4be67e2e74959"; - sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0c77275d759bf73df11fa151b4e737d7cb15adf/recipes/mozc-temp"; - sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; - name = "recipe"; - }; - packageRequires = [ dash emacs mozc ]; - meta = { - homepage = "https://melpa.org/#/mozc-temp"; - license = lib.licenses.free; - }; - }) {}; - mpdel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , libmpdel - , melpaBuild }: - melpaBuild { - pname = "mpdel"; - ename = "mpdel"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "mpdel"; - repo = "mpdel"; - rev = "a2da2f2fe2357641909514da788f7c6cbe5801f4"; - sha256 = "0pyyvbzskr44dxbmlp3y0r6s459fd51cvwjmnjaqxfxflr5v891g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb25443752e18e47afc63d5497cc5052c388a607/recipes/mpdel"; - sha256 = "1py6zk16yl7pyql2qxzd770clzszw7c769hw70n963kns1qmpif8"; - name = "recipe"; - }; - 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"; - ename = "mpmc-queue"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "smizoe"; - repo = "mpmc-queue"; - rev = "5e14451bdebaa17a1de9a78a712abf833e2652d8"; - sha256 = "1vlpfw79s9gczdwy6a7hl4rn94ld7jrbslga0pz8am9jnq0i9dh0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30511f1e5eaf45b5f43fbacdd6c7254cb39b1d2c/recipes/mpmc-queue"; - sha256 = "08jcmhfl87nsg6zgv582yfs152bqihbcssh085gxxqn2x99li354"; - name = "recipe"; - }; - 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"; - ename = "mpv"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "kljohann"; - repo = "mpv.el"; - rev = "059135de3979e044f14503806047476d9be9f0e8"; - sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2392c1d1042ac6a42bbf9aa7e394c03e178829d0/recipes/mpv"; - sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json names org ]; - meta = { - homepage = "https://melpa.org/#/mpv"; - license = lib.licenses.free; - }; - }) {}; - mqtt-mode = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mqtt-mode"; - ename = "mqtt-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "mqtt-mode"; - rev = "613e70e9b9940e635e779994b5c83f86eb62c8e6"; - sha256 = "1ci1w4yma6axiigz55b2ip0r7zy8v215532jc0rkb3wyn14nsrh7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b85c84ff9523026620e5b3cf864bbc7b9f81d57a/recipes/mqtt-mode"; - sha256 = "1zbnhd65c9wz9yr29j37c8z7vz3axpfwkzx0z8xjplp40mafpz1z"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/mqtt-mode"; - license = lib.licenses.free; - }; - }) {}; - msvc = callPackage ({ ac-clang - , cedet ? null - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "msvc"; - ename = "msvc"; - version = "1.4.1"; - src = fetchFromGitHub { - owner = "yaruopooner"; - repo = "msvc"; - rev = "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06"; - sha256 = "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69939b85353a23f374cab996ede879ab315a323b/recipes/msvc"; - sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; - name = "recipe"; - }; - packageRequires = [ ac-clang cedet cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/msvc"; - license = lib.licenses.free; - }; - }) {}; - mtg-deck-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mtg-deck-mode"; - ename = "mtg-deck-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "mattiasb"; - repo = "mtg-deck-mode"; - rev = "7774641630ef85999ab2f6d57eebddbc7c1e7244"; - sha256 = "12ajrlgyj14jf66if7bdgj69jm72wzrmiclx7x8dpsz4zpj38m20"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/425fa66cffe7bfda71de4ff2b49e951456bdeae1/recipes/mtg-deck-mode"; - sha256 = "07hszf33nawhp218f90qr4s713yyjdd7zzkq0s8q0fb6aai5iiih"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/mtg-deck-mode"; - license = lib.licenses.free; - }; - }) {}; - mu4e-alert = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mu4e-alert"; - ename = "mu4e-alert"; - version = "1.0"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "mu4e-alert"; - rev = "3453e25ff6c07c1b768b2a79fdb9fc5c97100e76"; - sha256 = "1nvsfbfsma59ilf7c3vjngnmx3aapwvvvaafdy5szm5r6lkicqvg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mu4e-alert"; - sha256 = "0b74ky51nx75vcrrbabr5cj2cx4yax5kgaq479hjp5yc5mq2q46r"; - name = "recipe"; - }; - packageRequires = [ alert emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/mu4e-alert"; - license = lib.licenses.free; - }; - }) {}; - mu4e-maildirs-extension = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mu4e-maildirs-extension"; - ename = "mu4e-maildirs-extension"; - version = "0.8"; - src = fetchFromGitHub { - owner = "agpchil"; - repo = "mu4e-maildirs-extension"; - rev = "8b384b0bbda46c473dea3ee7dc68c2b3f2548528"; - sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mu4e-maildirs-extension"; - sha256 = "0bisxm0rph5q1p3zjr7vyyr0jqr3ihs6ihiwyfr8d3dvba1zhffc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mu4e-maildirs-extension"; - license = lib.licenses.free; - }; - }) {}; - multi = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi"; - ename = "multi"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "kurisuwhyte"; - repo = "emacs-multi"; - rev = "884203b11fdac8374ec644cca975469aab263404"; - sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9fea5cf529bcdf412af2926e55b8d77edc07eca/recipes/multi"; - sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/multi"; - license = lib.licenses.free; - }; - }) {}; - multi-line = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up }: - melpaBuild { - pname = "multi-line"; - ename = "multi-line"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "multi-line"; - rev = "778c7510b7f066f53cf1f96a6ad1079fda5dc1f7"; - sha256 = "0lr1i2a4fw40iz8qz2zqch63ci9pwvrri219phv22kn76jqn39mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0f8eee6798a0ba71d437a1cbf82e360a5b60eafb/recipes/multi-line"; - sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs s shut-up ]; - meta = { - homepage = "https://melpa.org/#/multi-line"; - license = lib.licenses.free; - }; - }) {}; - multi-run = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , window-layout }: - melpaBuild { - pname = "multi-run"; - ename = "multi-run"; - version = "1"; - src = fetchFromGitHub { - owner = "sagarjha"; - repo = "multi-run"; - rev = "87d9eed414999fd94685148d39e5308c099e65ca"; - sha256 = "0m4wk6sf01b7bq5agmyfcm9kpmwmd90wbvh7fkhs61mrs86s2zw8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e05ad99477bb97343232ded7083fddb810ae1781/recipes/multi-run"; - sha256 = "1iv4a49czdjl0slp8590f1ya0vm8g2ycnkwrdpqi3b55haaqp91h"; - name = "recipe"; - }; - 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"; - ename = "multi-term"; - version = "1.2"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "multi-term"; - rev = "c9e67edb772f2d9f9da8d887dc746459cfbce244"; - sha256 = "1bn6zx931vz2fa72ab999r33bxv8brn3cqmalvq25x7s4z3q1lyi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/multi-term"; - sha256 = "16idk4nd7qpyrvyspbrdl8gdfaclng6ny0xigk6fqdv352djalal"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multi-term"; - license = lib.licenses.free; - }; - }) {}; - multi-web-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multi-web-mode"; - ename = "multi-web-mode"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "fgallina"; - repo = "multi-web-mode"; - rev = "0517b9e2b3052533ac0cb71eba7073ed309fce06"; - sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/multi-web-mode"; - sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/multi-web-mode"; - license = lib.licenses.free; - }; - }) {}; - multiple-cursors = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "multiple-cursors"; - ename = "multiple-cursors"; - version = "1.4.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "multiple-cursors.el"; - rev = "b3bd49c756cd959c0fb998d27eaf3d273570b05e"; - sha256 = "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f015e6b88be2a5ded363bd882a558e94d1f391/recipes/multiple-cursors"; - sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/multiple-cursors"; - license = lib.licenses.free; - }; - }) {}; - mustache = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mustache"; - ename = "mustache"; - version = "0.23"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "mustache.el"; - rev = "9963a8ddd42ba01899b9d3c74c518745dfe1a2fb"; - sha256 = "0514fdiq81qqcz6x9fajn9qxsg11q8dkg3n8b36xx4zpyawz59c4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1bcf9599ca6d2c29333071a80f96808d4ab52e2/recipes/mustache"; - sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; - name = "recipe"; - }; - packageRequires = [ dash ht s ]; - meta = { - homepage = "https://melpa.org/#/mustache"; - license = lib.licenses.free; - }; - }) {}; - mustache-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mustache-mode"; - ename = "mustache-mode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "mustache"; - repo = "emacs"; - rev = "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f"; - sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mustache-mode"; - sha256 = "1xmqh663r5i42a586xn0wzw6h1jkvhbnw5iwvjv96w452slhkr36"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mustache-mode"; - license = lib.licenses.free; - }; - }) {}; - mwim = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mwim"; - ename = "mwim"; - version = "0.4"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "mwim.el"; - rev = "462207227b98a6a4356d51419f5ad5ba9356e5cf"; - sha256 = "06lw6064i82daasgm87gm58d142pypqc1q3cnx1cm35hyj4skd32"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72/recipes/mwim"; - sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/mwim"; - license = lib.licenses.free; - }; - }) {}; - mykie = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "mykie"; - ename = "mykie"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "yuutayamada"; - repo = "mykie-el"; - rev = "ab8f7549f9018c26278d101af1b90997c9e5e0b3"; - sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e10504a19e052c080be2ccc9b1b8fd2e73a852e0/recipes/mykie"; - sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/mykie"; - license = lib.licenses.free; - }; - }) {}; - mysql-to-org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "mysql-to-org"; - ename = "mysql-to-org"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "mallt"; - repo = "mysql-to-org-mode"; - rev = "0f51b174a0ee6c9820baf9d79783923b270f3ffc"; - sha256 = "1gxp1a26sna0p3xq6by8bk4yphhh32bvll0sdm2p3wkpdaci7hyz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/mysql-to-org"; - sha256 = "0jjdv6ywdn1618l36bw3xa3mdgg3rc8r0rdv9xdqx8mmg648a7gj"; - name = "recipe"; - }; - packageRequires = [ emacs s ]; - meta = { - homepage = "https://melpa.org/#/mysql-to-org"; - license = lib.licenses.free; - }; - }) {}; - myterminal-controls = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "myterminal-controls"; - ename = "myterminal-controls"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "myterminal-controls"; - rev = "df144b269bc274162602e50c692be20ac9b90547"; - sha256 = "02bd47rx2ykz5hhrf1szcqz7s9r5fxz7n3hnwlqap2r6xcv6cpvk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a82a45d9fcafea0795f832bce1bdd7bc83667e2/recipes/myterminal-controls"; - sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/myterminal-controls"; - license = lib.licenses.free; - }; - }) {}; - name-this-color = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "name-this-color"; - ename = "name-this-color"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "knl"; - repo = "name-this-color.el"; - rev = "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa"; - sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/name-this-color"; - sha256 = "15x3dp135p45gv4qn4ll3pd6zqi4glcpv6fzvjxnx0dcval9z4d8"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/name-this-color"; - license = lib.licenses.free; - }; - }) {}; - nameless = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nameless"; - ename = "nameless"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "Nameless"; - rev = "ab1a5c589378334eafca105af1a17f73b9065423"; - sha256 = "107q1rximjnag9r9vgwh0iv687i3rsscbdnjc46f8l16j6vi4n7d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e4ee4dae5f32a8d445dc0cc2455c1f7075c9b3d/recipes/nameless"; - sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nameless"; - license = lib.licenses.free; - }; - }) {}; - names = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "names"; - ename = "names"; - version = "20151201.0"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "names"; - rev = "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6"; - sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/names"; - sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/names"; - license = lib.licenses.free; - }; - }) {}; - narrow-reindent = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "narrow-reindent"; - ename = "narrow-reindent"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "emallson"; - repo = "narrow-reindent.el"; - rev = "87466aac4dbeb79597124dd077bf5c704872fd3d"; - sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73c7f01a009dc7ac1b9da8ce41859695a97b7878/recipes/narrow-reindent"; - sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/narrow-reindent"; - license = lib.licenses.free; - }; - }) {}; - narrowed-page-navigation = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "narrowed-page-navigation"; - ename = "narrowed-page-navigation"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "narrowed-page-navigation"; - rev = "b215adbac4873f56fbab65772062f0f5be8058a1"; - sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e37e993fec280428f094b6c8ec418fe5ba8c6d49/recipes/narrowed-page-navigation"; - sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/narrowed-page-navigation"; - license = lib.licenses.free; - }; - }) {}; - nasm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nasm-mode"; - ename = "nasm-mode"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "nasm-mode"; - rev = "d990ed94d902b74a5c834fb567e03307607cee45"; - sha256 = "1dyc50a1zskx9fqxl2iy2x74f3bkb2ccz908v0aj13rqfqqnns9j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e/recipes/nasm-mode"; - sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nasm-mode"; - license = lib.licenses.free; - }; - }) {}; - nav-flash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nav-flash"; - ename = "nav-flash"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "nav-flash"; - rev = "9054a0f9b51da9e5207672efc029ba265ba28f34"; - sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/nav-flash"; - sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nav-flash"; - license = lib.licenses.free; - }; - }) {}; - navi-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "navi-mode"; - ename = "navi-mode"; - version = "2.0"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "navi"; - rev = "c1b91438aebe2115a4e5d8ebec995dade74f19c4"; - sha256 = "175l9s269wzqlg0axs7lr4834x7ghkgfz43xqcxnd2sdsmyrdd7s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/navi-mode"; - sha256 = "0pc52iq8lng2g0vpnrhdfxmibc1dx9ksmrjg0303as1yv41fnc69"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/navi-mode"; - license = lib.licenses.free; - }; - }) {}; - navorski = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi-term - , s }: - melpaBuild { - pname = "navorski"; - ename = "navorski"; - version = "0.2.7"; - src = fetchFromGitHub { - owner = "roman"; - repo = "navorski.el"; - rev = "4546d4e4dfbec20ee8c423c045408a3388a9eab9"; - sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9246cef94029d2da2211345c076ed55deb91e8fa/recipes/navorski"; - sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; - name = "recipe"; - }; - packageRequires = [ dash multi-term s ]; - meta = { - homepage = "https://melpa.org/#/navorski"; - license = lib.licenses.free; - }; - }) {}; - ncl-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ncl-mode"; - ename = "ncl-mode"; - version = "0.99.2"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "ncl-mode"; - rev = "164e504e25cec1812fbae5c3dae164d9f6018ece"; - sha256 = "1m3llm87qgd7sr6ci22nd835vdg0qprs5m9lqcx74k689jl89cni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2eea3936b8a3a7546450d1d7399e0f86d855fefd/recipes/ncl-mode"; - sha256 = "1niy0w24q6q6j7s0l9fcaqai7zz2gg1qlk2s9sxb8j79jc41y47k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ncl-mode"; - license = lib.licenses.free; - }; - }) {}; - nemerle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nemerle"; - ename = "nemerle"; - version = "1.2"; - src = fetchFromGitHub { - owner = "rsdn"; - repo = "nemerle"; - rev = "69cec44ed3861ddfa0e23a4e44b926dda8a9716b"; - sha256 = "0hk18jd4bz0gp7b0qn2vgh3sc7r7cygc3gg269dyv5v4n1vyxx79"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nemerle"; - sha256 = "1rbalq3s2inwz9cf6bfmnxgqd9ylba3crflfjs6b4mnp33z4swny"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nemerle"; - license = lib.licenses.free; - }; - }) {}; - neon-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "neon-mode"; - ename = "neon-mode"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "neon-mode"; - rev = "99d15e46beaf1e7d71e39a00cce810df1f33229d"; - sha256 = "07vsi07m5q070fvkqhz32qa2y7dgnyi1kggairimbiwbn98bh642"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c6b2a4898bf21413c4d9e6714af129bbb0a23e1a/recipes/neon-mode"; - sha256 = "0kgyc0rkxvvks5ykizfv82f2cx7ck17sk63plj7bld6khlcgv0y6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/neon-mode"; - license = lib.licenses.free; - }; - }) {}; - neotree = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "neotree"; - ename = "neotree"; - version = "0.5.2"; - src = fetchFromGitHub { - owner = "jaypei"; - repo = "emacs-neotree"; - rev = "5e1271655170f4cdc6849258e383c548a4e6e3d0"; - sha256 = "0hx72fq10772bbyqrj7mhhp02k26cccjxdadiqm1ykainhfmn1x0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9caf2e12762d334563496d2c75fae6c74cfe5c1c/recipes/neotree"; - sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/neotree"; - license = lib.licenses.free; - }; - }) {}; - netease-music = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "netease-music"; - ename = "netease-music"; - version = "1.0"; - src = fetchFromGitHub { - owner = "nicehiro"; - repo = "netease-music"; - rev = "f3bba59664e1c4c4ed47f16fa786151272d99a70"; - sha256 = "1a6r7cmxvg83fa285drli2nac9a56kyd2pn4y1vfcg7jiy6czhiw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca3d4a8f8d9080e26a8fe2c38c0001d5cfc3c88c/recipes/netease-music"; - sha256 = "1vb81f1l45v6rny91rcqvnhzqh5ybdr0r39yrcaih8zhvamk685z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/netease-music"; - license = lib.licenses.free; - }; - }) {}; - ng2-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , typescript-mode }: - melpaBuild { - pname = "ng2-mode"; - ename = "ng2-mode"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "ng2-mode"; - rev = "57e6e4e388624853bc3b79bf5b17d2663ce26fa5"; - sha256 = "08dm8clw3xm0c3xcbl3q4dm9n7cxhpldnwxjaxs1glc5l21qdg4q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a856ecd8aca2d9232bb20fa7019de9e1dbbb19f4/recipes/ng2-mode"; - sha256 = "0sr4yh5nkgqb1qciq9mzzhr64350bi2wjm6z9d616nkjw72saz1r"; - name = "recipe"; - }; - packageRequires = [ typescript-mode ]; - meta = { - homepage = "https://melpa.org/#/ng2-mode"; - license = lib.licenses.free; - }; - }) {}; - nginx-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nginx-mode"; - ename = "nginx-mode"; - version = "1.1.9"; - src = fetchFromGitHub { - owner = "ajc"; - repo = "nginx-mode"; - rev = "a2bab83c2eb233d57d76b236e7c141c2ccc97005"; - sha256 = "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6da3640b72496e2b32e6ed21aa39df87af9f7f3/recipes/nginx-mode"; - sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nginx-mode"; - license = lib.licenses.free; - }; - }) {}; - niceify-info = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "niceify-info"; - ename = "niceify-info"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "niceify-info.el"; - rev = "66b45916f1994e16ee023d29fa7cf8fec48078f1"; - sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2a923da7363d904eb848eb335736974e05dba1/recipes/niceify-info"; - sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/niceify-info"; - license = lib.licenses.free; - }; - }) {}; - night-owl-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "night-owl-theme"; - ename = "night-owl-theme"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "aaronjensen"; - repo = "night-owl-emacs"; - rev = "250824cbbdb37c631c9abc71fdf21cf35d476d8b"; - sha256 = "0rjwvc0fm0bcnz611q9vxvkzax5bryyc8g8b6sawz9m3l2sqdrch"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77fe194a0e58bdb9789c85f3c50895eb886b4016/recipes/night-owl-theme"; - sha256 = "121jc59ry60h1ml1vxx4a6l4a6jcxk7fc4wz32fqv5pr03rzgs7h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/night-owl-theme"; - license = lib.licenses.free; - }; - }) {}; - nim-mode = callPackage ({ commenter - , emacs - , epc - , fetchFromGitHub - , fetchurl - , flycheck - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "nim-mode"; - ename = "nim-mode"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "nim-lang"; - repo = "nim-mode"; - rev = "86abed21b9b718ac65cc167f208e0bd5b92c79ed"; - sha256 = "0h1paf9z6xvkay97ns74w2w9plwi46md5f2kik4jvjy74p57gxal"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc2ccb5f24b9d55c77eaa7952a9e6a2e0ed7be24/recipes/nim-mode"; - sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; - name = "recipe"; - }; - packageRequires = [ commenter emacs epc flycheck let-alist ]; - meta = { - homepage = "https://melpa.org/#/nim-mode"; - license = lib.licenses.free; - }; - }) {}; - ninja-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ninja-mode"; - ename = "ninja-mode"; - version = "1.9.0"; - src = fetchFromGitHub { - owner = "ninja-build"; - repo = "ninja"; - rev = "6d5a4b9eb973e9d82d63f8f9a421fad97d20e6d0"; - sha256 = "1y5bkgd4kx0gm371k78fk0bjbjfnjxah88brgrvj9x29vw4vgl91"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/ninja-mode"; - sha256 = "1v6wy9qllbxl37fp9h47000lwp557qss6fdjb3a1f20msg8f70av"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ninja-mode"; - license = lib.licenses.free; - }; - }) {}; - nix-buffer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nix-buffer"; - ename = "nix-buffer"; - version = "3.1.1"; - src = fetchFromGitHub { - owner = "shlevy"; - repo = "nix-buffer"; - rev = "db57cda36e7477bdc7ef5a136357b971b1d4d099"; - sha256 = "0b01b4l9c70sad5r5py5hvg7s6k6idwwp0pv3rn8rj0fq5wlyixj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08b978724ff26b3ea7a134d307d888c80e2a92a9/recipes/nix-buffer"; - sha256 = "1fjkf88345v9l2v2mk8a057mw0p0rckf6rjf00y5464dyhh58vcd"; - name = "recipe"; - }; - packageRequires = [ emacs f ]; - meta = { - homepage = "https://melpa.org/#/nix-buffer"; - license = lib.licenses.free; - }; - }) {}; - nix-haskell-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , flycheck - , haskell-mode - , lib - , melpaBuild - , nix-mode }: - melpaBuild { - pname = "nix-haskell-mode"; - ename = "nix-haskell-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "matthewbauer"; - repo = "nix-haskell-mode"; - rev = "1622924f0f6668f9b42f135323087ba94b1bf252"; - sha256 = "09x4b939y0w4irnkvpxhn1jkzy4id9vhfkl5b9f14jjdny2d6l3a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aeb879e2e8b017d3e1ccdc8d19f17d09b2ad5f1b/recipes/nix-haskell-mode"; - sha256 = "1rygqmq01p27gbda6hgnzisng7xqf63x462a3x31ym67ivxsyqz3"; - name = "recipe"; - }; - packageRequires = [ emacs flycheck haskell-mode nix-mode ]; - meta = { - homepage = "https://melpa.org/#/nix-haskell-mode"; - license = lib.licenses.free; - }; - }) {}; - nix-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nix-mode"; - ename = "nix-mode"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "NixOS"; - repo = "nix-mode"; - rev = "1389a6b25a22328f2a1333718882c7aa8a1f42c4"; - sha256 = "15n2prz07fsb6v0pyb1zkgamps6f6ynbfk8nv71g994k83x0178d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1870d786dbfac3b14386c8030e06f2d13ab9da6/recipes/nix-mode"; - sha256 = "10f3ly4860lkxzykw4fbvhn3i0c2hgj77jfjbhlk2c1jz9x4yyy5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nix-mode"; - license = lib.licenses.free; - }; - }) {}; - nixos-options = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "nixos-options"; - ename = "nixos-options"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "travisbhartwell"; - repo = "nix-emacs"; - rev = "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f"; - sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6846c7d86e70a9dd8300b89b61435aa7e146be96/recipes/nixos-options"; - sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; - name = "recipe"; - }; - packageRequires = [ emacs json ]; - meta = { - homepage = "https://melpa.org/#/nixos-options"; - license = lib.licenses.free; - }; - }) {}; - nlinum-hl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nlinum }: - melpaBuild { - pname = "nlinum-hl"; - ename = "nlinum-hl"; - version = "1.0.6"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-nlinum-hl"; - rev = "dc6b365a58e06c7d637a76a31c71a40b20da8b56"; - sha256 = "1fvvyc77iggil9mzy8hd4vx8xw96bkfx6pmlb9ami428qp8r45g7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b13a886535a5c33fe389a6b616988b7377249625/recipes/nlinum-hl"; - sha256 = "17lcp1ira7yhch9npg9sf3npwg06yh9zyhg0lnb22xg09lbndj0x"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs nlinum ]; - meta = { - homepage = "https://melpa.org/#/nlinum-hl"; - license = lib.licenses.free; - }; - }) {}; - no-littering = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "no-littering"; - ename = "no-littering"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "no-littering"; - rev = "99ae007ead688689b5b25a9482f98ec67663bb61"; - sha256 = "0sg4qh9a6k1m24qamsf7ldpghjcawbdgh114gy08jnw478nf05kv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/no-littering"; - sha256 = "15w784ir48v8biiaar8ip19s9y3wn5831m815kcw02mgzy3bfjmh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/no-littering"; - license = lib.licenses.free; - }; - }) {}; - noccur = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noccur"; - ename = "noccur"; - version = "0.2"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "noccur.el"; - rev = "ff2a76883c43b283a08680733ec3ad403a1b1827"; - sha256 = "0y18hpwgzvm1i9yb3b6fxpbh3fmzkmyldq4as65i5s8n66i7mr6j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/41f15b8298390310e95cbe137ea1516c0be10b94/recipes/noccur"; - sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/noccur"; - license = lib.licenses.free; - }; - }) {}; - nodejs-repl = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nodejs-repl"; - ename = "nodejs-repl"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "abicky"; - repo = "nodejs-repl.el"; - rev = "3f79caf542403ac80c7a1c3542f493f97a0c26ef"; - sha256 = "05ccv87rnw7fss3lib8m9sywjrj6n92fnd7mmhmjh27g2klqc83z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14f22f97416111fcb02e299ff2b20c44fb75f049/recipes/nodejs-repl"; - sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nodejs-repl"; - license = lib.licenses.free; - }; - }) {}; - nodemcu-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nodemcu-mode"; - ename = "nodemcu-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "nodemcu-mode"; - rev = "8effd9f3df40b6b92a2f05e4d54750b624afc4a7"; - sha256 = "1s19sshsm4cdx8kj5prmsq8ryz4843xcqmdayvlfl99jxsp9j4pm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a414f8b30954a50d74e4ae42abcf436cfca8d2b4/recipes/nodemcu-mode"; - sha256 = "0xx5dys8vifgaf3hb4q762xhhn1jybc4xwajqj98iban4nrakb3a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nodemcu-mode"; - license = lib.licenses.free; - }; - }) {}; - nofrils-acme-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nofrils-acme-theme"; - ename = "nofrils-acme-theme"; - version = "0.1.0"; - src = fetchFromGitLab { - owner = "esessoms"; - repo = "nofrils-theme"; - rev = "7825f88cb881a84eaa5cd1689772819a18eb2943"; - sha256 = "009did3i3i8yi0virq606l02w1mw0gdyiqablqg7m368gx0gfvh5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c59ddaa5e41d3c25c446b1ed1905d7f88b448e0a/recipes/nofrils-acme-theme"; - sha256 = "01xqsn8whczv34lfa9vbm5rpvrvsrlpav8pzng10jvax1a9wdp3a"; - name = "recipe"; - }; - 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"; - ename = "nord-theme"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "arcticicestudio"; - repo = "nord-emacs"; - rev = "290aa9221a10e107acb0f06d0ec338fcb3e44785"; - sha256 = "0az5l8y3jg6yk587wvgz1v5671d8p1vf9m0529x9axi1x7yzxry1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31cb60069825abe3998c8b43bc9177b39a7f3659/recipes/nord-theme"; - sha256 = "0p4fqg4i2ayimd8kxsqnb1xkapzhhxf7szxi1skva4dcym3z67cc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/nord-theme"; - license = lib.licenses.free; - }; - }) {}; - notmuch = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "notmuch"; - ename = "notmuch"; - version = "0.29"; - src = fetchgit { - url = "https://git.notmuchmail.org/git/notmuch"; - rev = "9300defd64acf68b8e6fa6fbd89b8050168bb63d"; - sha256 = "09myljmmrcr4f6a93zwi8k39nndw2fmpj3g2jk2bl3ddql8x0gvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d05fbde3aabfec4efdd19a33fd2b1297905acb5a/recipes/notmuch"; - sha256 = "0pznpl0aqybdg4b2qypq6k4jac64sssqhgz6rvk9g2nkqhkds1x7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/notmuch"; - license = lib.licenses.free; - }; - }) {}; - notmuch-labeler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , notmuch }: - melpaBuild { - pname = "notmuch-labeler"; - ename = "notmuch-labeler"; - version = "0.1"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "notmuch-labeler"; - rev = "d65d1129555d368243df4770ecc1e7ccb88efc58"; - sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e9940e66bbf70ec868dbdaaeaa1fbd4f076a2e1/recipes/notmuch-labeler"; - sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; - name = "recipe"; - }; - packageRequires = [ notmuch ]; - meta = { - homepage = "https://melpa.org/#/notmuch-labeler"; - license = lib.licenses.free; - }; - }) {}; - nov = callPackage ({ dash - , emacs - , esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nov"; - ename = "nov"; - version = "0.2.7"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "nov.el"; - rev = "3bb7a4038f0c2100df671c9f1f33b785ed4ae296"; - sha256 = "1s2av1yrzsqslgjfiislf9bljdk0rxpyq2vrbyralfnj2wvgpk9m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cf543955ba2d5d0074fa2a5ba176f9415f6e006d/recipes/nov"; - sha256 = "0hlcncpdazi4rn5yxd0zq85v7gpjhw7a6dl2i99zf4ymsan97lhq"; - name = "recipe"; - }; - packageRequires = [ dash emacs esxml ]; - meta = { - homepage = "https://melpa.org/#/nov"; - license = lib.licenses.free; - }; - }) {}; - noxml-fold = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "noxml-fold"; - ename = "noxml-fold"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "paddymcall"; - repo = "noXML-fold"; - rev = "69138e030f4c25e635f0af94d2272504ec88992d"; - sha256 = "0amg0d733njmj654lf2q92j8ql76h29zjk37fj692mjykcqsbf98"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13d2af88b292293cb5ab50819c63acfe936630c8/recipes/noxml-fold"; - sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/noxml-fold"; - license = lib.licenses.free; - }; - }) {}; - npm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "npm-mode"; - ename = "npm-mode"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "mojochao"; - repo = "npm-mode"; - rev = "84b35211cba4f2d5f03b8dc2b60ae4b03d90bf8a"; - sha256 = "1mh6nbffciw4yhv049kdhh796ysj1x21ndm3fwymhskb3dy0w1ss"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/22dd6b2f8a94f56a61f4b70bd7e44b1bcf96eb18/recipes/npm-mode"; - sha256 = "1aym4jfr6im6hdc5d7995q6myhgig286fk9hpaxdf418h1s17rqr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/npm-mode"; - license = lib.licenses.free; - }; - }) {}; - nrepl-sync = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nrepl-sync"; - ename = "nrepl-sync"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "lein-sync"; - rev = "9506238562c2e0c0df744e0d81edff4c74322a7d"; - sha256 = "1si5pfczk3iypdx2ydhirznx2hvp6r7sq2hy64gn3mn4r68svlfi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2059ab6f2a3adc5af4f0876546e344e806e22ee5/recipes/nrepl-sync"; - sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; - name = "recipe"; - }; - packageRequires = [ cider ]; - meta = { - homepage = "https://melpa.org/#/nrepl-sync"; - license = lib.licenses.free; - }; - }) {}; - ns-auto-titlebar = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ns-auto-titlebar"; - ename = "ns-auto-titlebar"; - version = "0.3"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ns-auto-titlebar"; - rev = "b16092e8058af63ad2bc222f166b0aa3cb66bf9d"; - sha256 = "0m1ih8ca4702zrkhl3zdvwbci96wyjlxhpfx95w372k25rca87dq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d22ebb5ef16df0c56d6031cb1c7f312dca514482/recipes/ns-auto-titlebar"; - sha256 = "1wk4y2jwl65z18cv57m8zkcg31wp9by74z2zvccxzl7mwlhy7kqg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ns-auto-titlebar"; - license = lib.licenses.free; - }; - }) {}; - nsis-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nsis-mode"; - ename = "nsis-mode"; - version = "0.44"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "nsis-mode"; - rev = "f1bf701c37680553c8f51462e0829d0dd6c53187"; - sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9b169a80c7afdeb0c6e17cd289114b5d3d97266/recipes/nsis-mode"; - sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nsis-mode"; - license = lib.licenses.free; - }; - }) {}; - number-lock = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "number-lock"; - ename = "number-lock"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "Liu233w"; - repo = "number-lock.el"; - rev = "1c71e31ae4974e04a21c22c6f059a59221793901"; - sha256 = "0iy16jbp4zaaxf9lk1yw9n1dzqbvsmqnny3iplvlp69a70q0j2z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c107adabe2e4c5b35ebb6b21db076cdea0e9c24/recipes/number-lock"; - sha256 = "13xqn4bcjm01zl0rgbwzad58x35230lm2qiipbyqkh2ma0a9pqn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/number-lock"; - license = lib.licenses.free; - }; - }) {}; - numbers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "numbers"; - ename = "numbers"; - version = "1.4"; - src = fetchFromGitHub { - owner = "davep"; - repo = "numbers.el"; - rev = "74be68b94143f042ce461b2a69202f515acaf20c"; - sha256 = "0b4bgc4hkndia8zg4d23l1w78iwzj1l46ifrhz5z1p97qldalb0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c77353d3a2b0d360bb28e528ef2707227081c72/recipes/numbers"; - sha256 = "02cx19fi34yvc0icajnwrmb8lr2g8y08kis08v9xxalfxz06kb3h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/numbers"; - license = lib.licenses.free; - }; - }) {}; - nvm = callPackage ({ dash - , dash-functional - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "nvm"; - ename = "nvm"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "nvm.el"; - rev = "d18b13e8275a57ee6c55dc71b671f02a8e6522ad"; - sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/nvm"; - sha256 = "0md1ybc2r2fxykwk21acjhdzy2kw326bdwa1d15c6f48lknzvg4w"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional f s ]; - meta = { - homepage = "https://melpa.org/#/nvm"; - license = lib.licenses.free; - }; - }) {}; - nyan-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "nyan-mode"; - ename = "nyan-mode"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "TeMPOraL"; - repo = "nyan-mode"; - rev = "4195cd368aca8f05a71cbff4e60cfa9dde10319a"; - sha256 = "1bnfxw6cnhsqill3n32j9bc6adl437ia9ivbwvwjpz1ay928yxm7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d8c3000df5f2ee2493a54dee6f9b65008add753/recipes/nyan-mode"; - sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/nyan-mode"; - license = lib.licenses.free; - }; - }) {}; - o-blog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "o-blog"; - ename = "o-blog"; - version = "2.0"; - src = fetchFromGitHub { - owner = "renard"; - repo = "o-blog"; - rev = "069220e1046988ecd4658b09f9e2470c476c34e1"; - sha256 = "16x0wy3w0vqpp17k5scbd53zwi8dxngm064rzg1kc24md8q6kqib"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d5f24e70260f46445b119817bc1326f29b367c4b/recipes/o-blog"; - sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/o-blog"; - license = lib.licenses.free; - }; - }) {}; - ob-async = callPackage ({ async - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-async"; - ename = "ob-async"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "astahlman"; - repo = "ob-async"; - rev = "4bd85c9065f4b075190ffa5a721b9191bc84d6e9"; - sha256 = "0i8551vhn6l7gfw3zxnrimp6nzlxkp13gkvzmcmjs1c5pbxqrrik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ob-async"; - sha256 = "0k7kv71nnibp53lav774c61w9pzhq8qvch9rvpyyrwbyd67ninl8"; - name = "recipe"; - }; - packageRequires = [ async dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/ob-async"; - license = lib.licenses.free; - }; - }) {}; - ob-blockdiag = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-blockdiag"; - ename = "ob-blockdiag"; - version = "20170728.113"; - src = fetchFromGitHub { - owner = "corpix"; - repo = "ob-blockdiag.el"; - rev = "634fcf64a4ae735afe7001d865b03f5d71e23046"; - sha256 = "0xr3bv4wxz13b1grfyl2qnrszzab3n9735za837nf4lxh527ksaj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/261b77a3fd07644d1c250b16857de70cc1bbf478/recipes/ob-blockdiag"; - sha256 = "1lmawbgrlp6qd7p664jcl98y1xd2yqw9np6j52bh9i6s3cz6628g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-blockdiag"; - license = lib.licenses.free; - }; - }) {}; - ob-coffeescript = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-coffeescript"; - ename = "ob-coffeescript"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "ob-coffeescript"; - rev = "219c83f6c44e3612a7718c996365df1de747127d"; - sha256 = "14va23m0wab1jf6jc5m61y2c0kcmc8dha463vyci1mvs3p1psjr8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba1a808c77653bac1948d6c44bd1db09301ffeff/recipes/ob-coffeescript"; - sha256 = "05q1wnabw52kd3fpcpinpxs9z6xmi4n1p19jbcz0bgjpnw05s27p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-coffeescript"; - license = lib.licenses.free; - }; - }) {}; - ob-http = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "ob-http"; - ename = "ob-http"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "zweifisch"; - repo = "ob-http"; - rev = "d57a9d4bb8727f36cb264189fe0a4cd9ef7c1c56"; - sha256 = "1iqcfzkk4b923mnh20g4dfpjp35a8qcwbmi86li8jj11bknrx6dw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/950b02f76a04f453992b8720032e8c4cec9a039a/recipes/ob-http"; - sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/ob-http"; - license = lib.licenses.free; - }; - }) {}; - ob-hy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-hy"; - ename = "ob-hy"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "brantou"; - repo = "ob-hy"; - rev = "a42ecaf440adc03e279afe43ee5ef6093ddd542a"; - sha256 = "0kv92r6j0dcqcg1s0g4iq1xvanscg6crwniysbrq6ifvmc4lvfdj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/12a7a7dba169010a3a047f961010236a203c16c2/recipes/ob-hy"; - sha256 = "18a8fpda0f28wxmjprhd9dmz7bpk1j3iayl20lqffrcal6m4f1h7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ob-hy"; - license = lib.licenses.free; - }; - }) {}; - ob-ml-marklogic = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-ml-marklogic"; - ename = "ob-ml-marklogic"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "ndw"; - repo = "ob-ml-marklogic"; - rev = "d5660ad14f29e17cd26ae92eeb585b24030e9570"; - sha256 = "1aqllsn965km3796q92w3a3z92hkpm5i0l6p4fm3va9xq7j79cyc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edce412552d4798450493e0a3dbe768f38f77cc7/recipes/ob-ml-marklogic"; - sha256 = "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-ml-marklogic"; - license = lib.licenses.free; - }; - }) {}; - ob-prolog = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-prolog"; - ename = "ob-prolog"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "ob-prolog"; - rev = "efa86bb70fd1907806f3e43705aff54d35582442"; - sha256 = "0g25nn2h7djgc9rp59spx9096jdypsizd0vfzwj96cpq90lkysjx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb87868cd74325f0a4a38c5542c264501000951d/recipes/ob-prolog"; - sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-prolog"; - license = lib.licenses.free; - }; - }) {}; - ob-sagemath = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , sage-shell-mode }: - melpaBuild { - pname = "ob-sagemath"; - ename = "ob-sagemath"; - version = "0.4"; - src = fetchFromGitHub { - owner = "stakemori"; - repo = "ob-sagemath"; - rev = "450d510a5eb1fd644d0037e9f02271ca33639fb0"; - sha256 = "00i7jszlfh67xzvqnp137aaia68rkk4ri5v0fs32ym10pcj8l4dp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dc074af316a09906a26ad957a56e3dc272cd813b/recipes/ob-sagemath"; - sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; - name = "recipe"; - }; - packageRequires = [ emacs s sage-shell-mode ]; - meta = { - homepage = "https://melpa.org/#/ob-sagemath"; - license = lib.licenses.free; - }; - }) {}; - ob-sml = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sml-mode }: - melpaBuild { - pname = "ob-sml"; - ename = "ob-sml"; - version = "0.2"; - src = fetchFromGitHub { - owner = "swannodette"; - repo = "ob-sml"; - rev = "5dc966acbe65e9e158bfa90018035bf52d4dafd4"; - sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d1b0fbe1198fa624771c2f61249db502de57942a/recipes/ob-sml"; - sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; - name = "recipe"; - }; - packageRequires = [ sml-mode ]; - meta = { - homepage = "https://melpa.org/#/ob-sml"; - license = lib.licenses.free; - }; - }) {}; - ob-tmux = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "ob-tmux"; - ename = "ob-tmux"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "ahendriksen"; - repo = "ob-tmux"; - rev = "8886f31291e979b41215f3eb97670732efffea34"; - sha256 = "0j77n1lawkx94hyv89xsvmrbqhd8x19ycrvxrwhc0mzlxh7rxjcy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3f47fbfe745972e690e8028f893bb38ba30978d/recipes/ob-tmux"; - sha256 = "12c0m2xxd75lbc98h7cwprmdn823mh2ii59pxr6fgnq7araqkz20"; - name = "recipe"; - }; - packageRequires = [ emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/ob-tmux"; - license = lib.licenses.free; - }; - }) {}; - ob-translate = callPackage ({ fetchFromGitHub - , fetchurl - , google-translate - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ob-translate"; - ename = "ob-translate"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "ob-translate"; - rev = "6b39cc1a94a1071107a4391684b1bffb5b9826f3"; - sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d89e4006afc51bd44e23f87a1d1ef1140489ab3/recipes/ob-translate"; - sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; - name = "recipe"; - }; - packageRequires = [ google-translate org ]; - meta = { - homepage = "https://melpa.org/#/ob-translate"; - license = lib.licenses.free; - }; - }) {}; - ob-uart = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ob-uart"; - ename = "ob-uart"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "ob-uart"; - rev = "90daeac90a9e75c20cdcf71234c67b812110c50e"; - sha256 = "1syxxq411izmyfrhlywasax7n5c3yjy487mvfdjzjg8csmmk0m9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5334f1a48b8ea6b7a660db27910769093c76113d/recipes/ob-uart"; - sha256 = "1dkbyk8da0zw784dgwi8njnz304s54341dyfzvlb0lhcn41dmkz7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ob-uart"; - license = lib.licenses.free; - }; - }) {}; - obfusurl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "obfusurl"; - ename = "obfusurl"; - version = "2.1"; - src = fetchFromGitHub { - owner = "davep"; - repo = "obfusurl.el"; - rev = "7a5a41905000ce2ec1fd72509a5567e5fd9f47e5"; - sha256 = "0jbrxlpx0cxg8jzqrssk3y3ab7v62ymi6ys24542a8vpk522vqxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/201fe11682cb06b26775a52c81b6a1258b74b4d0/recipes/obfusurl"; - sha256 = "0xx2zsjbkd17iy7xzqc66f9xgc97f9js3nz656yhmmxakjk2krra"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/obfusurl"; - license = lib.licenses.free; - }; - }) {}; - objed = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "objed"; - ename = "objed"; - version = "0.8.1"; - src = fetchFromGitHub { - owner = "clemera"; - repo = "objed"; - rev = "4798b5b9fd531562ac17d6148e86cd8cdc1bc985"; - sha256 = "16ans9pmzfjqdz0gi92yaah0vv6g4vmjbq3g1jqhcykin6ba8lpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4abc6d927a2bf238d23256adcc9f09a751c90374/recipes/objed"; - sha256 = "0iqvwa664fzklajqgnss7igjh7jr9v9i8dp9acm42g8ingp9zf7b"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/objed"; - license = lib.licenses.free; - }; - }) {}; - ocodo-svg-modelines = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , svg-mode-line-themes }: - melpaBuild { - pname = "ocodo-svg-modelines"; - ename = "ocodo-svg-modelines"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "ocodo"; - repo = "ocodo-svg-modelines"; - rev = "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018"; - sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5b9651865f4f8009c9b31fa1e5561de97a5ad8de/recipes/ocodo-svg-modelines"; - sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; - name = "recipe"; - }; - packageRequires = [ svg-mode-line-themes ]; - meta = { - homepage = "https://melpa.org/#/ocodo-svg-modelines"; - license = lib.licenses.free; - }; - }) {}; - ocp-indent = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ocp-indent"; - ename = "ocp-indent"; - version = "1.7.0"; - src = fetchFromGitHub { - owner = "OCamlPro"; - repo = "ocp-indent"; - rev = "b15fd7585b42f89d745fad69ed1f2b70ecb8757d"; - sha256 = "0aszx9kxfbrlg0amsl3j3kdwn6n0a5fl33kvl8rgyv543p2jcx8f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e1af061328b15360ed25a232cc6b8fbce4a7b098/recipes/ocp-indent"; - sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ocp-indent"; - license = lib.licenses.free; - }; - }) {}; - octicons = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "octicons"; - ename = "octicons"; - version = "0.1"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-octicons"; - rev = "7ffc50ac99d43bc92928dec9f269eceb7e76bf0b"; - sha256 = "17hpcr864lx0g68by4n2n013zbplnihvidqm629zgr9b9ybanxy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c62867eae1a254eb5fe820d4387dd4e8a0ff9be2/recipes/octicons"; - sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/octicons"; - license = lib.licenses.free; - }; - }) {}; - offlineimap = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "offlineimap"; - ename = "offlineimap"; - version = "1"; - src = fetchFromGitHub { - owner = "jd"; - repo = "offlineimap.el"; - rev = "646482203aacdf847d57d0a96263fddcfc33fb61"; - sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f/recipes/offlineimap"; - sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/offlineimap"; - license = lib.licenses.free; - }; - }) {}; - omni-kill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "omni-kill"; - ename = "omni-kill"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-kill.el"; - rev = "904549c8fd6ac3cf22b5d7111ca8944e179cffea"; - sha256 = "1mlnh5pdqdv1qb8jvi0wvkgbpy74zq807gmp04bp6cpxdns9j63f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c24df34d2fa5d908223379e909148423ba327ae2/recipes/omni-kill"; - sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/omni-kill"; - license = lib.licenses.free; - }; - }) {}; - omni-log = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "omni-log"; - ename = "omni-log"; - version = "0.3.6"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-log.el"; - rev = "20021eb788cbeec0371145468430b259686f519d"; - sha256 = "1sf2zbhjaz5b9xmz6632338cga7d326ibgw8b8c6c6b4vk16yhqc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47bb19bb7b4713c3fd82c1035a2fe66588c069e3/recipes/omni-log"; - sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht s ]; - meta = { - homepage = "https://melpa.org/#/omni-log"; - license = lib.licenses.free; - }; - }) {}; - omni-quotes = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , omni-log - , s }: - melpaBuild { - pname = "omni-quotes"; - ename = "omni-quotes"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-quotes.el"; - rev = "454116c1dd6581baaeefd6b9310b1b6b7a5c36d0"; - sha256 = "1h8lrpi5wizi5vncdz83cxlx7c71xw3sw89sfg462zfbz2sq8afl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3402524f79381c99fdeb81a6a5a9241c918811be/recipes/omni-quotes"; - sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; - name = "recipe"; - }; - packageRequires = [ dash f ht omni-log s ]; - meta = { - homepage = "https://melpa.org/#/omni-quotes"; - license = lib.licenses.free; - }; - }) {}; - omni-scratch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "omni-scratch"; - ename = "omni-scratch"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-scratch.el"; - rev = "636374c59c7d33c2f72c97ad8ba9fb4854f2324d"; - sha256 = "0w62bk2m0gs4b605s691z4iap9baz1z6c8z4v9vb05917qlsx5xb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6ba3e128a7fe4476d82266506b18ba9984c37944/recipes/omni-scratch"; - sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/omni-scratch"; - license = lib.licenses.free; - }; - }) {}; - omni-tags = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcre2el }: - melpaBuild { - pname = "omni-tags"; - ename = "omni-tags"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "AdrieanKhisbe"; - repo = "omni-tags.el"; - rev = "a39bcb31647d3d6c81253d2476bd50ceb1179a4b"; - sha256 = "0688xl5izq3189w4fxzw255md3r092f56xhbbsszqf8rra42qq42"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c77e57f41484c08cae9f47c4379d1752ccf43ce2/recipes/omni-tags"; - sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; - name = "recipe"; - }; - packageRequires = [ cl-lib pcre2el ]; - meta = { - homepage = "https://melpa.org/#/omni-tags"; - license = lib.licenses.free; - }; - }) {}; - omnisharp = callPackage ({ auto-complete - , cl-lib ? null - , csharp-mode - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , popup - , s - , shut-up }: - melpaBuild { - pname = "omnisharp"; - ename = "omnisharp"; - version = "4.2"; - src = fetchFromGitHub { - owner = "OmniSharp"; - repo = "omnisharp-emacs"; - rev = "588b8482685adedbc56933cb13c58d9cc6a82456"; - sha256 = "1iqwxc19jvcb2gsm2aq59zblg1qjmbxgb2yl3h3aybqp968j3i00"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e327c483be04de32638b420c5b4e043d12a2cd01/recipes/omnisharp"; - sha256 = "0gh0wwdpdx2cjf95pcagj52inf7mrmiq7x8p0x5c7lvl4pfzhh87"; - name = "recipe"; - }; - packageRequires = [ - auto-complete - cl-lib - csharp-mode - dash - emacs - f - flycheck - popup - s - shut-up - ]; - meta = { - homepage = "https://melpa.org/#/omnisharp"; - license = lib.licenses.free; - }; - }) {}; - opam = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "opam"; - ename = "opam"; - version = "0.1"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "opam.el"; - rev = "d5b15e6f75e4e46e6d4064ef45fb25c90515aa85"; - sha256 = "00alzjidp7v0ll4pb5ybkk3hly6phzn4izar4n4clmpwn623fjf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc4e2076ebaefe7e241607ff6920fe243d10ccd0/recipes/opam"; - sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/opam"; - license = lib.licenses.free; - }; - }) {}; - opencl-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "opencl-mode"; - ename = "opencl-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "salmanebah"; - repo = "opencl-mode"; - rev = "14109a4bb56105a9c052ae49ad4c638b4cc210b2"; - sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d97575fdae88d55b55686aa6814f858813cad171/recipes/opencl-mode"; - sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/opencl-mode"; - license = lib.licenses.free; - }; - }) {}; - opener = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "opener"; - ename = "opener"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "0robustus1"; - repo = "opener.el"; - rev = "ab75048b1073fb1b1452dabae94ab55e0cfb57c4"; - sha256 = "00kh8m23jzwb0wipwjdm2wad08xqrlcg00vzc4vzijgrapz0da3h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5a448f1936f46176bc2462eb03955a0c19efb9e/recipes/opener"; - sha256 = "0fhny4m7x19wnlnr19s4rkl04dkx95yppd51jzrkr96xiznw97s7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/opener"; - license = lib.licenses.free; - }; - }) {}; - opensource = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "opensource"; - ename = "opensource"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "OpenSourceOrg"; - repo = "el-opensourceorg"; - rev = "27d06be45c852e84e47c33cbd0f4c344fd9a0370"; - sha256 = "1rjf78vki4xp8y856v95877093p3zgfc9mx92npscsi1g93dxn80"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec4255a403e912a14a7013ea96f554d3588dfc30/recipes/opensource"; - sha256 = "17gi20s2vi7m75qqaff907x1g8ja5ny90klldpqmj258m2j6a6my"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/opensource"; - license = lib.licenses.free; - }; - }) {}; - operate-on-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "operate-on-number"; - ename = "operate-on-number"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "knu"; - repo = "operate-on-number.el"; - rev = "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6"; - sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aec74eff8ca3d5e381d7a6d61c73f1a0716f1c60/recipes/operate-on-number"; - sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/operate-on-number"; - license = lib.licenses.free; - }; - }) {}; - ordinal = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ordinal"; - ename = "ordinal"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "ordinal.el"; - rev = "bfad160d7c4b6faecfe5ac986bb4858cf7149b59"; - sha256 = "1zmsac4jg3yvr3n7pkz8fhpgw9b6lqm9zcq3xh8zmb1x4ckf33z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea3dd6fe4cacc229dd1371cb66dd1cfd07321bf4/recipes/ordinal"; - sha256 = "19s27mv7kqcg9qxa844al7q1hk0qbiqh93g1n54r3b6s980dlgcv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ordinal"; - license = lib.licenses.free; - }; - }) {}; - org-ac = callPackage ({ auto-complete-pcmp - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "org-ac"; - ename = "org-ac"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-ac"; - rev = "b637dfdacdeea8a61303eea338c8ca9b73eb5fff"; - sha256 = "16j9zalchijdskfwz38icdwhfnxbkvybzqnzdjjm2ihk734yl6vg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/adf598f8dae69ff286ae78d353a2a5d4363b4480/recipes/org-ac"; - sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; - name = "recipe"; - }; - packageRequires = [ auto-complete-pcmp log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/org-ac"; - license = lib.licenses.free; - }; - }) {}; - org-agenda-property = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-agenda-property"; - ename = "org-agenda-property"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "org-agenda-property"; - rev = "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8"; - sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/org-agenda-property"; - sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-agenda-property"; - license = lib.licenses.free; - }; - }) {}; - org-alert = callPackage ({ alert - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org-alert"; - ename = "org-alert"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "spegoraro"; - repo = "org-alert"; - rev = "685c18aa5ce994360c7f9e8bbf49590c412187ac"; - sha256 = "0gkv2sfl9nb64qqh5xhgq68r9kfmsny3vpcmnzk2mqjcb9nh657s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org-alert"; - sha256 = "01bb0s22wa14lyr9wi58cvk4b03xqq268y3dvxbrhymw1ld97zk2"; - name = "recipe"; - }; - packageRequires = [ alert dash s ]; - meta = { - homepage = "https://melpa.org/#/org-alert"; - license = lib.licenses.free; - }; - }) {}; - org-autolist = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-autolist"; - ename = "org-autolist"; - version = "0.14"; - src = fetchFromGitHub { - owner = "calvinwyoung"; - repo = "org-autolist"; - rev = "c82d1e83e982b5f0c106b8800e5b0cfd5f73fdc1"; - sha256 = "0ykiafbdjb2iy0s1gr6l51gddjbk08iwj4v13hgm8b675bl0cw56"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca8e2cdb282674b20881bf6b4fc49af42a5d09a7/recipes/org-autolist"; - sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-autolist"; - license = lib.licenses.free; - }; - }) {}; - org-babel-eval-in-repl = callPackage ({ emacs - , ess - , eval-in-repl - , fetchFromGitHub - , fetchurl - , lib - , matlab-mode - , melpaBuild }: - melpaBuild { - pname = "org-babel-eval-in-repl"; - ename = "org-babel-eval-in-repl"; - version = "1.4"; - src = fetchFromGitHub { - owner = "diadochos"; - repo = "org-babel-eval-in-repl"; - rev = "36ebf7d855df8ace9429270cfc48cf2e949775eb"; - sha256 = "1hjwxmn1gsq9wfhhydqlnss66zq4wl13vkq4irf0l50xspzscg8l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-babel-eval-in-repl"; - sha256 = "0brqp0w9s28ibws4idlm1rw09lsfa98l5wbpwm64rvlixhs6zlnx"; - name = "recipe"; - }; - packageRequires = [ emacs ess eval-in-repl matlab-mode ]; - meta = { - homepage = "https://melpa.org/#/org-babel-eval-in-repl"; - license = lib.licenses.free; - }; - }) {}; - org-beautify-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-beautify-theme"; - ename = "org-beautify-theme"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "jonnay"; - repo = "org-beautify-theme"; - rev = "7b7a7cbd4f25f77e8bd81783f517b2b182220fd9"; - sha256 = "0nqw4apv642vqbjjqbi960zim9lkbnaszrlasf25c9fnzdg1m134"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f55f1ee9890f720e058401a052e14c7411252967/recipes/org-beautify-theme"; - sha256 = "0rrlyn61xh3szw8aihxpbmg809xx5ac66xqzj895dn1raz129h2w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-beautify-theme"; - license = lib.licenses.free; - }; - }) {}; - org-board = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-board"; - ename = "org-board"; - version = "1018"; - src = fetchFromGitHub { - owner = "scallywag"; - repo = "org-board"; - rev = "405bfd630f1b31bd77158bc8e79aab86812cba65"; - sha256 = "066shdqp0bca2xlds1m0c5ml3yxqfyzsyyy7sy72ybv41n5b11x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8063ee17586d9b1e7415f7b924239826b81ab08/recipes/org-board"; - sha256 = "00jsrxc8f85cvrh7364n7337frdj12yknlfp28fhdgk2ph6d7bp4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-board"; - license = lib.licenses.free; - }; - }) {}; - org-bookmark-heading = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-bookmark-heading"; - ename = "org-bookmark-heading"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-bookmark-heading"; - rev = "70b014e09977371a8c9bad03085c116693062b19"; - sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaadbd149399c6e3c48ac5cbeedeb29a3f5791f1/recipes/org-bookmark-heading"; - sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-bookmark-heading"; - license = lib.licenses.free; - }; - }) {}; - org-bullets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-bullets"; - ename = "org-bullets"; - version = "0.2.4"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "org-bullets"; - rev = "b70ac2ec805bcb626a6e39ea696354577c681b36"; - sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe60fc3c60d87b5fd7aa24e858c79753d5f7d2f6/recipes/org-bullets"; - sha256 = "0yrfgd6r71rng3qipp3y9i5mpm6510k4xsfgyidcn25v27fysk3v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-bullets"; - license = lib.licenses.free; - }; - }) {}; - org-category-capture = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-category-capture"; - ename = "org-category-capture"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "48f621b595e748c5e03431f237facf258ffc9443"; - sha256 = "00n2msmwcjjiibrhrvpawzgz6qcjjfy9qnii1iaass0038g4bd89"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-category-capture"; - sha256 = "0l5n71h9lc8q9k0sb5ghzwb81lah4l1ykc06shfl9zw5lqqvahav"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-category-capture"; - license = lib.licenses.free; - }; - }) {}; - org-clock-csv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-clock-csv"; - ename = "org-clock-csv"; - version = "1.2"; - src = fetchFromGitHub { - owner = "atheriel"; - repo = "org-clock-csv"; - rev = "e2fbaa1ad1a1be40fceecde603a600b292b76acc"; - sha256 = "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e023cb898699f76f6c3d9ffe8162aacfc6a8c34f/recipes/org-clock-csv"; - sha256 = "02spjrzdf1kmvyvqkzg7nnmq9kqv75zwxn5ifqmg0f7a1gw28f0l"; - name = "recipe"; - }; - packageRequires = [ org s ]; - meta = { - homepage = "https://melpa.org/#/org-clock-csv"; - license = lib.licenses.free; - }; - }) {}; - org-commentary = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-commentary"; - ename = "org-commentary"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "smaximov"; - repo = "org-commentary"; - rev = "2eeeb0f506e30ef82263e67279d837a79cbde021"; - sha256 = "02an98pc52yfxsxmz1kib692yx93rqdi1q3lpvblzyd3hhd51rlr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3e0a40d9ea5849b9c22378a84ac8122e4eb2737d/recipes/org-commentary"; - sha256 = "0ym1rq2zhyhc6hkk40wsa9jni2h1z5dkaisldqzg8ggl7iv3v4fx"; - name = "recipe"; - }; - packageRequires = [ dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-commentary"; - license = lib.licenses.free; - }; - }) {}; - org-d20 = callPackage ({ dash - , emacs - , fetchgit - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "org-d20"; - ename = "org-d20"; - version = "0.3"; - src = fetchgit { - url = "https://git.spwhitton.name/org-d20"; - rev = "e0fb2c04a55c55cbf59a85a0b2e23ef18370ca61"; - sha256 = "1q5s2gj1968z23qf7ds2ychvvnzmlayh1v16krf0lf3zj7a3k20s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/98bf91038196dfb59c491c9ed96c6b6a0cb311a9/recipes/org-d20"; - sha256 = "158n900ifb1mfckd0gjmb9gpzibh8a2x56flbn2r035gcdbb7wc5"; - name = "recipe"; - }; - packageRequires = [ dash emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/org-d20"; - license = lib.licenses.free; - }; - }) {}; - org-doing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-doing"; - ename = "org-doing"; - version = "0.1"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "org-doing"; - rev = "e099514cfc162f8fe3d383456a7964743b0455d5"; - sha256 = "1hvnrw0y3chlfv6zxsczmm8zybrnakn3x13ykv2zblw96am9kd2s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org-doing"; - sha256 = "10vg0wl8dsy12r51178qi4rzi94img692z5x3zv8dxa29lmn26xs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-doing"; - license = lib.licenses.free; - }; - }) {}; - org-download = callPackage ({ async - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-download"; - ename = "org-download"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "org-download"; - rev = "a57beffd0f09b218a9487d1750960878c1d5b12c"; - sha256 = "1disqqfwjl366kv6xgc28w7zbc4xl9a0jmdj7w27mb00sxzfk3vb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/edab283bc9ca736499207518b4c9f5e71e822bd9/recipes/org-download"; - sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; - name = "recipe"; - }; - packageRequires = [ async ]; - meta = { - homepage = "https://melpa.org/#/org-download"; - license = lib.licenses.free; - }; - }) {}; - org-dp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-dp"; - ename = "org-dp"; - version = "1"; - src = fetchFromGitHub { - owner = "tj64"; - repo = "org-dp"; - rev = "d740c2065120f71762c48877da1a31dea881e98e"; - sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f337375082da316ed07b8ce9c775b484b8cdbf6/recipes/org-dp"; - sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-dp"; - license = lib.licenses.free; - }; - }) {}; - org-edit-latex = callPackage ({ auctex - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-edit-latex"; - ename = "org-edit-latex"; - version = "0.8.3"; - src = fetchFromGitHub { - owner = "et2010"; - repo = "org-edit-latex"; - rev = "39cbc9a99acb030f537c7269ab93958187321871"; - sha256 = "1w0lyz71dq8x28ira4hig1b70bqn1dr53w3k5dgch9szcf6xa86y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-edit-latex"; - sha256 = "0nkiz4682qgk5dy4if3gij98738482ys8zwm8yx834za38xxbwry"; - name = "recipe"; - }; - packageRequires = [ auctex emacs ]; - meta = { - homepage = "https://melpa.org/#/org-edit-latex"; - license = lib.licenses.free; - }; - }) {}; - org-elisp-help = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-elisp-help"; - ename = "org-elisp-help"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "org-elisp-help"; - rev = "3e33ab1a2933dd7f2782ef91d667a37f12d633ab"; - sha256 = "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9bf5046a4c3be8a83004d506bd258a6f7ff15/recipes/org-elisp-help"; - sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/org-elisp-help"; - license = lib.licenses.free; - }; - }) {}; - org-evil = callPackage ({ dash - , evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , monitor - , org }: - melpaBuild { - pname = "org-evil"; - ename = "org-evil"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "GuiltyDolphin"; - repo = "org-evil"; - rev = "3b4620edc606412ef75c0b5aa637af22486eb126"; - sha256 = "0aqya9l9s55h5wd728iz15f53p5xajrfk8pn9gjxnw0i8m4d09sd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17a4772d409aa5dbda5fb84d86c237fd2653c70b/recipes/org-evil"; - sha256 = "0wvd201k9b9ghg39rwbah6rw8b7hyyd27vvqjynjwbk3v8rp5zyn"; - name = "recipe"; - }; - packageRequires = [ dash evil monitor org ]; - meta = { - homepage = "https://melpa.org/#/org-evil"; - license = lib.licenses.free; - }; - }) {}; - org-gcal = callPackage ({ alert - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , request-deferred }: - melpaBuild { - pname = "org-gcal"; - ename = "org-gcal"; - version = "0.2"; - src = fetchFromGitHub { - owner = "kidd"; - repo = "org-gcal.el"; - rev = "badd3629e6243563c30ff1dd0452b7601f6cc036"; - sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d97c701819ea8deaa8a9664db1f391200ee52c4f/recipes/org-gcal"; - sha256 = "014h67ba0cwi4i1llngypscyvyrm74ljh067i3iapx5a18q7xw5v"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib emacs org request-deferred ]; - meta = { - homepage = "https://melpa.org/#/org-gcal"; - license = lib.licenses.free; - }; - }) {}; - org-gnome = callPackage ({ alert - , fetchFromGitHub - , fetchurl - , gnome-calendar - , lib - , melpaBuild - , telepathy }: - melpaBuild { - pname = "org-gnome"; - ename = "org-gnome"; - version = "0.3"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "org-gnome.el"; - rev = "1012d47886cfd30eed25b73d9f18e475e0155f88"; - sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f7ebd2d2312954d098fe4afd07c3d02b4df475d/recipes/org-gnome"; - sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; - name = "recipe"; - }; - packageRequires = [ alert gnome-calendar telepathy ]; - meta = { - homepage = "https://melpa.org/#/org-gnome"; - license = lib.licenses.free; - }; - }) {}; - org-if = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-if"; - ename = "org-if"; - version = "0.2.0"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "org-if"; - rev = "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8"; - sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/09df84b60c46678ad40d8dabc08fcfe518f5ad79/recipes/org-if"; - sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-if"; - license = lib.licenses.free; - }; - }) {}; - org-index = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-index"; - ename = "org-index"; - version = "5.12.0"; - src = fetchFromGitHub { - owner = "marcIhm"; - repo = "org-index"; - rev = "fc9635edd4bf394059e53a1fa16cdd8ab5b7b468"; - sha256 = "0qzqlfnrc2x4mm40wrsmpbh61129ww2a2sk4s1px49fi8552vqyq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/org-index"; - sha256 = "092q92hwvknwm3v2shp8dm59qdamfivx9z9v23msysy7x2mhg98f"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-index"; - license = lib.licenses.free; - }; - }) {}; - org-jira = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "org-jira"; - ename = "org-jira"; - version = "4.3.1"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "org-jira"; - rev = "3a6c9fd6886f9dbd11b055fb3bf54513fa278940"; - sha256 = "1l80r2a9zzbfk2c78i40h0ww79vm9v4j6xi2h5i4w9kqh10rs6h2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0a2fae6eecb6b4b36fe97ad99691e2c5456586f/recipes/org-jira"; - sha256 = "1sbypbz00ki222zpm47yplyprx7h2q076b3l07qfilk0sr8kf4ql"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs request s ]; - meta = { - homepage = "https://melpa.org/#/org-jira"; - license = lib.licenses.free; - }; - }) {}; - org-journal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-journal"; - ename = "org-journal"; - version = "1.15.1"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "org-journal"; - rev = "af2819c41b34fc88e2aee473fbdf695451ba167c"; - sha256 = "05kxs63ssgc6h47cjldxxmx9ggy1fyaxxrxzaq078gj56411gmld"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/org-journal"; - sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-journal"; - license = lib.licenses.free; - }; - }) {}; - org-kanban = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-kanban"; - ename = "org-kanban"; - version = "0.4.13"; - src = fetchFromGitHub { - owner = "gizmomogwai"; - repo = "org-kanban"; - rev = "03387a779167c4acbc04d4970cd33c52a2ca0bcd"; - sha256 = "0arjx1a7skdlmagyy0bbxwc134dn951y99yv4jg6l64j1f31y0yg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9f3a10c126fa43a6fa60ee7f8e50c7a9661dbc1/recipes/org-kanban"; - sha256 = "1flgqa2pwzw6b2zm3j09i9bvz1i8k03mbwj6l75yrk29lh4njq41"; - name = "recipe"; - }; - packageRequires = [ dash emacs org s ]; - 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"; - ename = "org-link-travis"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-link-travis"; - rev = "596615ad8373d9090bd4138da683524f0ad0bda5"; - sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52c7f9539630e5ac7748fe36fd27c3486649ab74/recipes/org-link-travis"; - sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-link-travis"; - license = lib.licenses.free; - }; - }) {}; - org-linkany = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "org-linkany"; - ename = "org-linkany"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "org-linkany"; - rev = "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2"; - sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df82cf95e34775b22da0a8bb29750f603c58f259/recipes/org-linkany"; - sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; - name = "recipe"; - }; - packageRequires = [ log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/org-linkany"; - license = lib.licenses.free; - }; - }) {}; - org-make-toc = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-make-toc"; - ename = "org-make-toc"; - version = "0.3"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-make-toc"; - rev = "f1a51017b0f85e0cb9ae7d0d8240f2115f57886c"; - sha256 = "0syhj8q4pv33xgl5qa6x27yhwqvfhffw5xqp819hj4qs1ddlc7j5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df87749128bcfd27ca93a65084a2e88cd9ed5c3f/recipes/org-make-toc"; - sha256 = "0xaw3d1axvln4pr7p0jnqf0j6fd1g6cra1gykvf6y12zx02xkchh"; - name = "recipe"; - }; - packageRequires = [ dash emacs org s ]; - meta = { - homepage = "https://melpa.org/#/org-make-toc"; - license = lib.licenses.free; - }; - }) {}; - org-mime = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-mime"; - ename = "org-mime"; - version = "0.1.6"; - src = fetchFromGitHub { - owner = "org-mime"; - repo = "org-mime"; - rev = "f8eac8ccdec2ebf1dec87d4f5f01b4b53f86c67c"; - sha256 = "0gjdhhri2fm93phvv3fnw6iz5agpafryacj521j80jf1dmj2bj5h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/521678fa13884dae69c2b4b7a2af718b2eea4b28/recipes/org-mime"; - sha256 = "14154pajl2bbawdd8iqfwgc67pcjp2lxl6f92c62nwq12wkcnny6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/org-mime"; - license = lib.licenses.free; - }; - }) {}; - org-mru-clock = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-mru-clock"; - ename = "org-mru-clock"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-mru-clock"; - rev = "1547191254f6fc58b62864d0224356e72bd7d933"; - sha256 = "0j3gscmf8i05ixj31ipdc88kbb7zqs5sdhbd3ipqpahakmg6axhh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b36bf1c1faa4d7e38254416a293e56af96214136/recipes/org-mru-clock"; - sha256 = "1arww5x6vdyyn1bwxry91w88phbr9l6nk8xxrw40iqmmbhggahgm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-mru-clock"; - license = lib.licenses.free; - }; - }) {}; - org-multiple-keymap = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-multiple-keymap"; - ename = "org-multiple-keymap"; - version = "0.2"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "org-multiple-keymap.el"; - rev = "20eb3be6be9f0abbad9f0d007e40cb00c8109201"; - sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a22beed723d149282e70e3411b79e8ce9f5ab2b/recipes/org-multiple-keymap"; - sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-multiple-keymap"; - license = lib.licenses.free; - }; - }) {}; - org-noter = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-noter"; - ename = "org-noter"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "weirdNox"; - repo = "org-noter"; - rev = "8fb007c329fee8cceca97338ae0e88aaafcb8535"; - sha256 = "0qcdw1px07ggnp74gb3hibd69cq8np9bdpcpvlkm5k32qxhsnwjy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a2bc0d95dc2744277d6acbba1f7483b4c14d75c/recipes/org-noter"; - sha256 = "0vsc2b1yz9lw0zv1vnm722pl35kxpwhcdi7h6mijhnw8vv7rhixf"; - name = "recipe"; - }; - 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"; - ename = "org-outlook"; - version = "0.11"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "org-outlook.el"; - rev = "070c37d017ccb71d94c3c69c99632fa6570ec2cc"; - sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/804a4b6802d2cf53e5415d956f0b4772853f4c69/recipes/org-outlook"; - sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-outlook"; - license = lib.licenses.free; - }; - }) {}; - org-page = callPackage ({ fetchFromGitHub - , fetchurl - , ht - , htmlize - , lib - , melpaBuild - , mustache - , org }: - melpaBuild { - pname = "org-page"; - ename = "org-page"; - version = "0.41"; - src = fetchFromGitHub { - owner = "kelvinh"; - repo = "org-page"; - rev = "09febf89d8dcb226aeedf8164169b31937b64439"; - sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/872f163d4da58760009001472e2240f00d4d2d89/recipes/org-page"; - sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; - name = "recipe"; - }; - packageRequires = [ ht htmlize mustache org ]; - meta = { - homepage = "https://melpa.org/#/org-page"; - license = lib.licenses.free; - }; - }) {}; - org-password-manager = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-password-manager"; - ename = "org-password-manager"; - version = "0.0.1"; - src = fetchgit { - url = "https://github.com/leafac/org-password-manager"; - rev = "108ad275965c9a65905d1a0064e7d9b5f6a62d3f"; - sha256 = "0551fd71qbxzxxmhxqvlkh3skkswgcc1sgdl30mf5chylbnw8kly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fba84d698f7d16ffc0dc16618efcd1cdc0b39d79/recipes/org-password-manager"; - sha256 = "0wxvl6ypgn6ky1z3dh33ya3rh73znkh5f8qhqwfmwp7hy2mbl4la"; - name = "recipe"; - }; - packageRequires = [ org s ]; - meta = { - homepage = "https://melpa.org/#/org-password-manager"; - license = lib.licenses.free; - }; - }) {}; - org-pdfview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , pdf-tools }: - melpaBuild { - pname = "org-pdfview"; - ename = "org-pdfview"; - version = "0.4"; - src = fetchFromGitHub { - owner = "markus1189"; - repo = "org-pdfview"; - rev = "3a96bfb57cb158ac02cfb4225512699c66f5221d"; - sha256 = "0lrcj3mcdfcdrndivhj5ds386zrsy78sfg0i8126wwwc5lfh48vq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/org-pdfview"; - sha256 = "1qhlmzf2ffcrjnx4yghv7n6rsry8bcwnkw489spgraq9vxvqklah"; - name = "recipe"; - }; - packageRequires = [ org pdf-tools ]; - meta = { - homepage = "https://melpa.org/#/org-pdfview"; - license = lib.licenses.free; - }; - }) {}; - org-pomodoro = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-pomodoro"; - ename = "org-pomodoro"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "lolownia"; - repo = "org-pomodoro"; - rev = "a6d867865f1a033fb5a09cca6643045d7ebac49c"; - sha256 = "0r5shgikm34d66i2hblyknbblpg92lb2zc9x4bcb28xkh7m9d0xv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e54e77c5619b56e9b488b3fe8761188b6b3b4198/recipes/org-pomodoro"; - sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-pomodoro"; - license = lib.licenses.free; - }; - }) {}; - org-pretty-tags = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-pretty-tags"; - ename = "org-pretty-tags"; - version = "0.2.0"; - src = fetchFromGitLab { - owner = "marcowahl"; - repo = "org-pretty-tags"; - rev = "f6146857d1e173a59b322efa5fd18f4bfb204214"; - sha256 = "1vkz3cnavh1x3340qpwmdak7gkpi925mja6xbwxmix03gaz3l3cm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ad60399420764d4ef5d6acddae9241205937e78/recipes/org-pretty-tags"; - sha256 = "19cxfjl6c0yhsc7kfjd6imckcvzdsaws3yd1s3nazhnkm3kan3h4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-pretty-tags"; - license = lib.licenses.free; - }; - }) {}; - org-projectile = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org-category-capture - , projectile - , s }: - melpaBuild { - pname = "org-projectile"; - ename = "org-projectile"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "48f621b595e748c5e03431f237facf258ffc9443"; - sha256 = "00n2msmwcjjiibrhrvpawzgz6qcjjfy9qnii1iaass0038g4bd89"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d7a7ab98f364d3d5e93f83f0cb3d80a95f28689/recipes/org-projectile"; - sha256 = "0xdkd5pkyi6yfqi4przgp5mpklyxfxv0cww285zdlh00rzl935cw"; - name = "recipe"; - }; - packageRequires = [ dash emacs org-category-capture projectile s ]; - meta = { - homepage = "https://melpa.org/#/org-projectile"; - license = lib.licenses.free; - }; - }) {}; - org-projectile-helm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , org-projectile }: - melpaBuild { - pname = "org-projectile-helm"; - ename = "org-projectile-helm"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "org-projectile"; - rev = "fc62993b5a0b9c13d4e6abeff5a504fc75edad85"; - sha256 = "08gbgzn8dxl9wl3y4igq1lsnlxi94ak5w7pn9ykw7y6nr2714bms"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6760daac1ef9d9d7ba07e2fc9668873020f901f1/recipes/org-projectile-helm"; - sha256 = "0x79j5yr9wsgzjf1dpp7d4xiji8hgyhr79vb973an5z2r02vnaf4"; - name = "recipe"; - }; - packageRequires = [ emacs helm org-projectile ]; - meta = { - homepage = "https://melpa.org/#/org-projectile-helm"; - license = lib.licenses.free; - }; - }) {}; - org-protocol-jekyll = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-protocol-jekyll"; - ename = "org-protocol-jekyll"; - version = "0.1"; - src = fetchFromGitHub { - owner = "vonavi"; - repo = "org-protocol-jekyll"; - rev = "ed09d166d665ad45f61184cfddcfc24b62e37bc7"; - sha256 = "1iz6g1c37xrlrpi9avalkad6wmfb2l7yiawng0kbqm9i0bqkjhhs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d1ee7c75da91fcf303ea89d148a05ac1e58e23e/recipes/org-protocol-jekyll"; - sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-protocol-jekyll"; - license = lib.licenses.free; - }; - }) {}; - org-random-todo = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-random-todo"; - ename = "org-random-todo"; - version = "0.5.3"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-random-todo"; - rev = "09228e55f1cc702053d305fdea2b094b548e6dbe"; - sha256 = "0msgsbz39zc9zqgy1s5kmgcqggamnxr98j6bghyqpkxc96zyvp73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80fad6244ea3e5bdf7f448c9f62374fae45bae78/recipes/org-random-todo"; - sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; - name = "recipe"; - }; - packageRequires = [ alert emacs ]; - meta = { - homepage = "https://melpa.org/#/org-random-todo"; - license = lib.licenses.free; - }; - }) {}; - org-re-reveal = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , htmlize - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-re-reveal"; - ename = "org-re-reveal"; - version = "1.1.5"; - src = fetchFromGitLab { - owner = "oer"; - repo = "org-re-reveal"; - rev = "9d4a1bee112db8007c0e0a1fcb6be725f787a79a"; - sha256 = "1pq3ynp441j1vhac0cz98r2riqw2187vdwc33hz92924kly66m9h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3e6c90a6b9004fbf0fbc08556f8effbcde8b468/recipes/org-re-reveal"; - sha256 = "05p8iml0fapi4yf7ky45kf7m0ksz917lxg7c4pdd9hjkjmz29xn9"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize org ]; - meta = { - homepage = "https://melpa.org/#/org-re-reveal"; - license = lib.licenses.free; - }; - }) {}; - org-recent-headings = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , frecency - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-recent-headings"; - ename = "org-recent-headings"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-recent-headings"; - rev = "01633b51ac3958b41cc6c79e6d3714047a91c1e9"; - sha256 = "0gsrzmg3mssh9s28yjm9m866fnhm1pcligssz1q6brga6dm6f2yy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/668b79c179cbdb77c4049e7c620433255f63d808/recipes/org-recent-headings"; - sha256 = "0b51pyxdk8fdbksx7h1c88sw1liwng8wkjfb1q7w7lglw6f8sjsa"; - name = "recipe"; - }; - packageRequires = [ dash emacs frecency org ]; - meta = { - homepage = "https://melpa.org/#/org-recent-headings"; - license = lib.licenses.free; - }; - }) {}; - org-ref = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , helm - , helm-bibtex - , hydra - , ivy - , key-chord - , lib - , melpaBuild - , pdf-tools - , s }: - melpaBuild { - pname = "org-ref"; - ename = "org-ref"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "jkitchin"; - repo = "org-ref"; - rev = "db6c52f41faba686a378a8c57356a563f5cef496"; - sha256 = "0kx6w3zz5gmlmr9bx1mdq1k8ykkbnll6m91z90p6f2xm96j627j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/550e4dcef2f74fbd96474561c1cb6c4fd80091fe/recipes/org-ref"; - sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; - name = "recipe"; - }; - packageRequires = [ - dash - emacs - f - helm - helm-bibtex - hydra - ivy - key-chord - pdf-tools - s - ]; - meta = { - homepage = "https://melpa.org/#/org-ref"; - license = lib.licenses.free; - }; - }) {}; - org-repo-todo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-repo-todo"; - ename = "org-repo-todo"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "waymondo"; - repo = "org-repo-todo"; - rev = "cba6145c6821fd2bbd96a1c9ef2346c281b76ad2"; - sha256 = "0b57qy87sa8qcki16rgh16ldziay57yd7f98cpinaq0adcrqywy0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17b602004628e17dae0f46f2b33be0afb05f729/recipes/org-repo-todo"; - sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-repo-todo"; - license = lib.licenses.free; - }; - }) {}; - org-rich-yank = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-rich-yank"; - ename = "org-rich-yank"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "unhammer"; - repo = "org-rich-yank"; - rev = "d2f350c5296cf05d6c84b02762ba44f09a02b4e3"; - sha256 = "0gxb0fnh5gxjmld0hnk5hli0cvdd8gjd27m30bk2b80kwldxlq1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1261823d88459b6ac42d6c55c157a326173663df/recipes/org-rich-yank"; - sha256 = "1v0sc90g5sl6b9ylxbk2y8s3pvxkf4v7k2rkzpgpbp4nrq0miy4y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-rich-yank"; - license = lib.licenses.free; - }; - }) {}; - org-snooze = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-snooze"; - ename = "org-snooze"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "xueeinstein"; - repo = "org-snooze.el"; - rev = "6d30b0dcdfe9538e4400e49046291b7d07274164"; - sha256 = "0qxk6gldgcc0fbraa0l85nk4rpvn5b5nbgzkh1p8d2bkjcxjcm4g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd04816fb53fe01fa9924ec928c1dd41f2219d6a/recipes/org-snooze"; - sha256 = "00iwjj249vzqnfvbmlzrjig1sfhzbpv9kcpz95i3ir1w1qhw5119"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-snooze"; - license = lib.licenses.free; - }; - }) {}; - org-static-blog = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-static-blog"; - ename = "org-static-blog"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "bastibe"; - repo = "org-static-blog"; - rev = "f69d2fd6671fb250fbd87df5efa898a7bf5b9bda"; - sha256 = "1h9c96rbxxk1jypib5f9pfi5zkimkvhxi61j0sps6r39435dd3w7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e0768d41a3de625c04ac8644ef2e05f17ee99908/recipes/org-static-blog"; - sha256 = "07vh2k7cj0cs1yzfmrrz9p03x5mbfh0bigbl93s72h1wf7i05rkw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/org-static-blog"; - license = lib.licenses.free; - }; - }) {}; - org-sticky-header = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-sticky-header"; - ename = "org-sticky-header"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-sticky-header"; - rev = "2847035ec559a46bd7b555f220f819c88371d538"; - sha256 = "0g6hdg11jzzpw7h0f6p795l5aj6pag2nhhfbx90cg28j61d28vwh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bc9a600bd156eb766ba5ce37e16f3e8253f37ee8/recipes/org-sticky-header"; - sha256 = "0ign3vjckmxp7n3625wb53qlch07c3s4l67jsvk38dhhcsg1rhnj"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-sticky-header"; - license = lib.licenses.free; - }; - }) {}; - org-super-agenda = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "org-super-agenda"; - ename = "org-super-agenda"; - version = "1.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-super-agenda"; - rev = "a7abfb677f7ab5453f74e89eba0c461307ee20ee"; - sha256 = "0vzf91lsxnhwf52kvm8ycpf0wb9c8l91689vyhwgv4wz8q6cvjwp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fd27b2df7594a867529de4b84c8107f82dabe2e9/recipes/org-super-agenda"; - sha256 = "1h3kqvpjq2w0n8qiqwb8wcpdy2g4ac7j6kin0943g7p5gm5yf0ra"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht org s ]; - meta = { - homepage = "https://melpa.org/#/org-super-agenda"; - license = lib.licenses.free; - }; - }) {}; - org-sync = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-sync"; - ename = "org-sync"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "arbox"; - repo = "org-sync"; - rev = "8c65dceaa2f3d436f83ed591916f22556a6e7f91"; - sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/923ddbaf1a158caac5e666a396a8dc66969d204a/recipes/org-sync"; - sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-sync"; - license = lib.licenses.free; - }; - }) {}; - org-table-comment = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-table-comment"; - ename = "org-table-comment"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "org-table-comment.el"; - rev = "33b9966c33ecbc3e27cca67c2f2cdea04364d74e"; - sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c1f08c41969bc8a7104fb914564b4f6cab667e2/recipes/org-table-comment"; - sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-table-comment"; - license = lib.licenses.free; - }; - }) {}; - org-table-sticky-header = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-table-sticky-header"; - ename = "org-table-sticky-header"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "org-table-sticky-header"; - rev = "4dba2dc9a3ed63f58aa946aeec84a52d46ca4043"; - sha256 = "0az4lzd9qk4cx7jjfj36r2fvlkwyrhn3xqhha5d1pydglnhd9amy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5dd0e18bf4c3f3263eff8aff6d7c743a554243b5/recipes/org-table-sticky-header"; - sha256 = "1rk41279rcsdma39zpr1ka5p47gh1d0969wahd0jbm5xlmx5gz2m"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/org-table-sticky-header"; - license = lib.licenses.free; - }; - }) {}; - org-tfl = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "org-tfl"; - ename = "org-tfl"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "storax"; - repo = "org-tfl"; - rev = "f0d7d39106a1de5457f5160cddd98ab892b61066"; - sha256 = "1rwdibiq0w4nzccmvdkpwnmfga70y35lfg2xlkqxd02x7bfl7j3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf/recipes/org-tfl"; - sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs org ]; - meta = { - homepage = "https://melpa.org/#/org-tfl"; - license = lib.licenses.free; - }; - }) {}; - org-themis = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-themis"; - ename = "org-themis"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "zellio"; - repo = "org-themis"; - rev = "4b4bf1fa1e853664bf006dda8afe2db00e522aaa"; - sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60e0efe4f201ed96e90c437e3e7205e0344d4676/recipes/org-themis"; - sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-themis"; - license = lib.licenses.free; - }; - }) {}; - org-time-budgets = callPackage ({ alert - , cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-time-budgets"; - ename = "org-time-budgets"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "leoc"; - repo = "org-time-budgets"; - rev = "f2a8fe3d9d6104f3dd61fabbb385a596363b360b"; - sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/776b58b433ab7dde5870300d288c3e6734fc32c0/recipes/org-time-budgets"; - sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; - name = "recipe"; - }; - packageRequires = [ alert cl-lib ]; - meta = { - homepage = "https://melpa.org/#/org-time-budgets"; - license = lib.licenses.free; - }; - }) {}; - org-timeline = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-timeline"; - ename = "org-timeline"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "org-timeline"; - rev = "aed995c1db6c8bfd9db0a75a978f5e261aab38e5"; - sha256 = "1jz44lag1j4rawqjpcgb9zrs88vfi7vjgdh756hs2ln7i1cnvgh5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/298bd714f6cefd83d594b0eea731a01fb2faf1ad/recipes/org-timeline"; - sha256 = "0zlhjzjc7jwqh6wcys17hraz76n2hnjwffis02x71maclrf2cfdd"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/org-timeline"; - license = lib.licenses.free; - }; - }) {}; - org-toodledo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-toodledo"; - ename = "org-toodledo"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "org-toodledo"; - rev = "5473c1a2762371b198862aa8fd83fd3ec57485a4"; - sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4956fb6c5f1076a02f07d0f953e846fee39bfaa6/recipes/org-toodledo"; - sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-toodledo"; - license = lib.licenses.free; - }; - }) {}; - org-tracktable = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-tracktable"; - ename = "org-tracktable"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "tty-tourist"; - repo = "org-tracktable"; - rev = "8e0e60a582a034bd66d5efb72d513140b7d4d90a"; - sha256 = "1aq7qv5jyc2x2a4iphnzmmsvak6dbi7nwdcf3m8nly8w75vrl5lj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57263d996e321f842d0741898370390146606c63/recipes/org-tracktable"; - sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/org-tracktable"; - license = lib.licenses.free; - }; - }) {}; - org-transform-tree-table = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org-transform-tree-table"; - ename = "org-transform-tree-table"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "jplindstrom"; - repo = "emacs-org-transform-tree-table"; - rev = "0a9bf07f01bc5fc3b349aff64e83999a8de83b52"; - sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afca0e652a993848610606866609edbf2f5f76ae/recipes/org-transform-tree-table"; - sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/org-transform-tree-table"; - license = lib.licenses.free; - }; - }) {}; - org-tree-slide = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-tree-slide"; - ename = "org-tree-slide"; - version = "2.8.4"; - src = fetchFromGitHub { - owner = "takaxp"; - repo = "org-tree-slide"; - rev = "dccd80418a4444df5e8301695ff0d0dfe86a3c21"; - sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6160c259bc4bbcf3b98c220222430f798ee6463f/recipes/org-tree-slide"; - sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-tree-slide"; - license = lib.licenses.free; - }; - }) {}; - org-trello = callPackage ({ dash - , dash-functional - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred - , s }: - melpaBuild { - pname = "org-trello"; - ename = "org-trello"; - version = "0.8.1"; - src = fetchFromGitHub { - owner = "org-trello"; - repo = "org-trello"; - rev = "c38c36159cdeb2348c4e9ca75246aa9cc1dfd76c"; - sha256 = "02gx3kv4mkij69ln8x8wf9n28x17pbb4kv85v78d3lxph7ykqimc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/188ed8dc1ce2704838f7a2883c41243598150a46/recipes/org-trello"; - sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional deferred request-deferred s ]; - meta = { - homepage = "https://melpa.org/#/org-trello"; - license = lib.licenses.free; - }; - }) {}; - org-vcard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-vcard"; - ename = "org-vcard"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "flexibeast"; - repo = "org-vcard"; - rev = "a697c966579a8a67e02ad6b5d7f7897a1b5b4620"; - sha256 = "1fx36yqq21wmccv055kd8p0ks2gmycyw68x4v57lszadg5rcf77k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/df860814a09c376c9a6a2c5e7f528bbae29810b2/recipes/org-vcard"; - sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/org-vcard"; - license = lib.licenses.free; - }; - }) {}; - org-web-tools = callPackage ({ dash - , emacs - , esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , request - , s }: - melpaBuild { - pname = "org-web-tools"; - ename = "org-web-tools"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "org-web-tools"; - rev = "ca87319cd42eaa2eb02213e81dec19b7bd2918f7"; - sha256 = "0v4qad54r0z7dr7kg5lpfdsazi44qvrbybx9aciyl4w9grfajphb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f082bfb480649d21f586b7eb331c19d57e7a84cf/recipes/org-web-tools"; - sha256 = "19zpspap85fjqg5a20ps34rcigb0ws986pj6dzd7xik8s6ia29s7"; - name = "recipe"; - }; - packageRequires = [ dash emacs esxml org request s ]; - meta = { - homepage = "https://melpa.org/#/org-web-tools"; - license = lib.licenses.free; - }; - }) {}; - org-wild-notifier = callPackage ({ alert - , async - , dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "org-wild-notifier"; - ename = "org-wild-notifier"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "akhramov"; - repo = "org-wild-notifier.el"; - rev = "6e194d0f0a21b7d2b09ebdef5ffcd5ffe3633339"; - sha256 = "0vh8hhb0d5y3bgp0i9msk5c6rpn1mzj9bzqmbk6xwl4qr07hgnxx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/114552a24f73f13b253e3db4885039b680f6ef33/recipes/org-wild-notifier"; - sha256 = "1lmpa614jnkpmfg3m1d2wjn9w0zig3gwd02n3dyjn23n71fiyhkp"; - name = "recipe"; - }; - packageRequires = [ alert async dash dash-functional emacs ]; - meta = { - homepage = "https://melpa.org/#/org-wild-notifier"; - license = lib.licenses.free; - }; - }) {}; - org2blog = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , hydra - , lib - , melpaBuild - , metaweblog - , org - , xml-rpc }: - melpaBuild { - pname = "org2blog"; - ename = "org2blog"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "org2blog"; - repo = "org2blog"; - rev = "55dbed00ebe5c841c43800b39764682759ecf326"; - sha256 = "1fncgiwyigvmkc40bm1nr4nlkm828a04jv33jsnzjzyi2n00mbgx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/org2blog"; - sha256 = "15nr6f45z0i265llf8xs87958l5hvafh518k0s7jan7x1l6w5q33"; - name = "recipe"; - }; - packageRequires = [ htmlize hydra metaweblog org xml-rpc ]; - meta = { - homepage = "https://melpa.org/#/org2blog"; - license = lib.licenses.free; - }; - }) {}; - org2jekyll = callPackage ({ dash-functional - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "org2jekyll"; - ename = "org2jekyll"; - version = "0.1.9"; - src = fetchFromGitHub { - owner = "ardumont"; - repo = "org2jekyll"; - rev = "35e11ffa24b140d2e247df195489fca344bd0c08"; - sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48a1e5bd5e338bd3593f004f95b6fbb12595bfb7/recipes/org2jekyll"; - sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; - name = "recipe"; - }; - packageRequires = [ dash-functional deferred s ]; - meta = { - homepage = "https://melpa.org/#/org2jekyll"; - license = lib.licenses.free; - }; - }) {}; - org2web = callPackage ({ cl-lib ? null - , dash - , el2org - , fetchFromGitHub - , fetchurl - , ht - , htmlize - , lib - , melpaBuild - , mustache - , org - , simple-httpd }: - melpaBuild { - pname = "org2web"; - ename = "org2web"; - version = "0.9.1"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "org2web"; - rev = "5243b399927a4c474bb3b8d1c8a00799df1f27d7"; - sha256 = "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2864959163442165b9b1cd5471dc2649508decde/recipes/org2web"; - sha256 = "0lcqf0pgkd7jilasw1485fy45k269jxvyl7hl7qrcs94s6fy2vaf"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - el2org - ht - htmlize - mustache - org - simple-httpd - ]; - meta = { - homepage = "https://melpa.org/#/org2web"; - license = lib.licenses.free; - }; - }) {}; - orgbox = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "orgbox"; - ename = "orgbox"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "yasuhito"; - repo = "orgbox"; - rev = "ecaf5a064431cf92922338c974df8fce1a8f1734"; - sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1948eca5a18f35b61b9a0baf532753fd105ba3a/recipes/orgbox"; - sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; - name = "recipe"; - }; - packageRequires = [ cl-lib org ]; - meta = { - homepage = "https://melpa.org/#/orgbox"; - license = lib.licenses.free; - }; - }) {}; - orgit = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , org }: - melpaBuild { - pname = "orgit"; - ename = "orgit"; - version = "1.5.3"; - src = fetchFromGitHub { - owner = "magit"; - repo = "orgit"; - rev = "ea79e0567ae65fc922fcb05da0f7f4af8eae1973"; - sha256 = "1ywavzki510rslsgfm0cnn3mlh644p61ha2nfb715xhkg7cd3j9g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc/recipes/orgit"; - sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; - name = "recipe"; - }; - packageRequires = [ dash emacs magit org ]; - meta = { - homepage = "https://melpa.org/#/orgit"; - license = lib.licenses.free; - }; - }) {}; - orglink = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "orglink"; - ename = "orglink"; - version = "1.1.3"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "orglink"; - rev = "82ea67b7f1bf10627759044acb74828f66a85a83"; - sha256 = "0zqbz1idj73wz3kljkkzl7mvalk73j7xpl3di6mb16ylscg9sraw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be9b8e97cda6af91d54d402887f225e3a0caf055/recipes/orglink"; - sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; - name = "recipe"; - }; - packageRequires = [ dash emacs org ]; - meta = { - homepage = "https://melpa.org/#/orglink"; - license = lib.licenses.free; - }; - }) {}; - orgtbl-show-header = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "orgtbl-show-header"; - ename = "orgtbl-show-header"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "orgtbl-show-header"; - rev = "2f13391f56cf94f8fe1dc79d6eccb662198f9b69"; - sha256 = "0s3pf18n7vh67am1pjaa22gh645088dbz2rgxixr9avpfyalaycj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c5ea906b1d642405ca532d89dbb32cf79f53582/recipes/orgtbl-show-header"; - sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/orgtbl-show-header"; - license = lib.licenses.free; - }; - }) {}; - osx-browse = callPackage ({ browse-url-dwim - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , string-utils }: - melpaBuild { - pname = "osx-browse"; - ename = "osx-browse"; - version = "0.8.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "osx-browse"; - rev = "6186a6020e143e90d557c8d062c44fcdba0516c7"; - sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/osx-browse"; - sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; - name = "recipe"; - }; - packageRequires = [ browse-url-dwim string-utils ]; - meta = { - homepage = "https://melpa.org/#/osx-browse"; - license = lib.licenses.free; - }; - }) {}; - osx-clipboard = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-clipboard"; - ename = "osx-clipboard"; - version = "0.1"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "osx-clipboard-mode"; - rev = "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d"; - sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71b85cd2b2122a2742f919d10bfcb054b681e61e/recipes/osx-clipboard"; - sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-clipboard"; - license = lib.licenses.free; - }; - }) {}; - osx-dictionary = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-dictionary"; - ename = "osx-dictionary"; - version = "0.4"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "osx-dictionary.el"; - rev = "0e5e5f1b0077a62673855889d529dd4f0cc8f665"; - sha256 = "1zpr50q7i4wg1x7vsj69rh1b8xvk9r0591y4fvvs3a2l1llca2mq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae4467ad646d663f0266f39a76f9764004903424/recipes/osx-dictionary"; - sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/osx-dictionary"; - license = lib.licenses.free; - }; - }) {}; - osx-location = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-location"; - ename = "osx-location"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "osx-location"; - rev = "110aee945b53ea550e4debe69bf3c077d940ec8c"; - sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8673dafb02a8d70c278bfd2c063f40992defe3a3/recipes/osx-location"; - sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-location"; - license = lib.licenses.free; - }; - }) {}; - osx-pseudo-daemon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-pseudo-daemon"; - ename = "osx-pseudo-daemon"; - version = "2.1"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "mac-pseudo-daemon"; - rev = "0358b3acd932082082971c489012bf139f5860dc"; - sha256 = "1scdqy8g8dx3qzii70p3m2gddqqy7dkv63p8nfkp7vw1y5m19426"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6104efc035bcf469d133ab9a2caf42c9d4482334/recipes/osx-pseudo-daemon"; - sha256 = "1sch7bb8hl96fji2ayw2ah5cjgsga08wj44vddjxskyway8ykf0z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/osx-pseudo-daemon"; - license = lib.licenses.free; - }; - }) {}; - osx-trash = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "osx-trash"; - ename = "osx-trash"; - version = "0.2"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "osx-trash.el"; - rev = "529619b84d21e18a38ec5255eb40f6b8ede38b2a"; - sha256 = "1n44wdffkw14si9kb7bpkp6d9cjwjrvksfh22y9549dhs1vav6qq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f4c86e5b86df6c5c2c484f041fa3e434bbfbbb1/recipes/osx-trash"; - sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/osx-trash"; - license = lib.licenses.free; - }; - }) {}; - outline-minor-faces = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outline-minor-faces"; - ename = "outline-minor-faces"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "outline-minor-faces"; - rev = "8788f3e6f922f54b4eccfb80e4c246203a7e81c3"; - sha256 = "1ms4mgh8jlvyhdsx5166jqfjdx6rqfbhaqzfrzplgcn6v37097l4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f252e45e8bd6e8af1267755d108f378a974ddaf1/recipes/outline-minor-faces"; - sha256 = "1728imdqmmfqw5f67w8xsailn2b09y4xgdr769pd6kx8z6lsi8zb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outline-minor-faces"; - license = lib.licenses.free; - }; - }) {}; - outlook = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outlook"; - ename = "outlook"; - version = "0.1"; - src = fetchFromGitHub { - owner = "asavonic"; - repo = "outlook.el"; - rev = "5847c6f13b106cb54529080e9050be5b8b5be867"; - sha256 = "13wlfklk342gv5fmzpnz69mc07vm8x6xmh7li1w7f13ci3v4s045"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5ce3e6800213b117578a1022f25407f2ec1604f/recipes/outlook"; - sha256 = "0yq9zl7dr8kkm4rps5np4dwvjfhzsxq9wd1af7zwcmms4l3qry6k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/outlook"; - license = lib.licenses.free; - }; - }) {}; - outorg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "outorg"; - ename = "outorg"; - version = "2.0"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "outorg"; - rev = "04986bdb0b91fdd97974e032dced01dd8de759a4"; - sha256 = "154nkvjaa78zhazmyv8ia8axgs7s1xr3zpv0z3mjl3v0ny7s5j21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/outorg"; - sha256 = "10jh64d1nalfig69nnsib46915jinv37lvmxa0aj91zymq2szdm9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/outorg"; - license = lib.licenses.free; - }; - }) {}; - outshine = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , outorg }: - melpaBuild { - pname = "outshine"; - ename = "outshine"; - version = "3.0.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "outshine"; - rev = "3edf0c61e94d36d174120c8080a98023e30a58a2"; - sha256 = "1lh9f5dgdbwfyzxk6nsg1xwdjs8gc6p9mbyyhp6f8fnk3h0y88cg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8edf78a0ecd2ff8e6e066b80751a31e11a068c3f/recipes/outshine"; - sha256 = "1qqmvs17hq5s047nqplg4sa09xg5ck6zwqyg91xmbh71bx80v28v"; - name = "recipe"; - }; - packageRequires = [ cl-lib outorg ]; - meta = { - homepage = "https://melpa.org/#/outshine"; - license = lib.licenses.free; - }; - }) {}; - ov = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ov"; - ename = "ov"; - version = "1.0.6"; - src = fetchFromGitHub { - owner = "ShingoFukuyama"; - repo = "ov.el"; - rev = "4e1c254d74bc1773c92f1613c3865cdcb4bc7095"; - sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18d8a10ba3018cb61924af3a1682b82f543f2d98/recipes/ov"; - sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ov"; - license = lib.licenses.free; - }; - }) {}; - overcast-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "overcast-theme"; - ename = "overcast-theme"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "overcast-theme"; - rev = "769078cb4a6ea87a31fcea0218c06e1ec689b97c"; - sha256 = "044g4y8ykh41b3ybxsgsrqvnkq8i1q8q8livh64b2qqrrjzq6mxg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d86691c61fc880954a05502a6474cc2fa0d0a43b/recipes/overcast-theme"; - sha256 = "1v8hdnvc4pfmadkvdm6b8z0cy20pminvhjdlr13q5m9immr88a4r"; - name = "recipe"; - }; - 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"; - ename = "overseer"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "tonini"; - repo = "overseer.el"; - rev = "cf532a4e373e3da2077ccbaa48d4bfacd14661ba"; - sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/overseer"; - sha256 = "0zbh0j21h6wsqnqvnzai6y6rpccdciksb7g64qw7fx0cpg5x2ms8"; - name = "recipe"; - }; - packageRequires = [ dash emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/overseer"; - license = lib.licenses.free; - }; - }) {}; - owdriver = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , smartrep - , yaxception }: - melpaBuild { - pname = "owdriver"; - ename = "owdriver"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "owdriver"; - rev = "0479389d9df9e70ff9ce69dff06252d3aa40fc86"; - sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3f9c1bb19345c6027a945e7f265632da1a391cb/recipes/owdriver"; - sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; - name = "recipe"; - }; - packageRequires = [ log4e smartrep yaxception ]; - meta = { - homepage = "https://melpa.org/#/owdriver"; - license = lib.licenses.free; - }; - }) {}; - ox-epub = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-epub"; - ename = "ox-epub"; - version = "0.3"; - src = fetchFromGitHub { - owner = "ofosos"; - repo = "ox-epub"; - rev = "7991155e4b80bafee616108014be5281c22bae83"; - sha256 = "09di3qq0nc9m3dnqik392vbdps829wlkxdsjlcpdm0dfms9wq10v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3ac31dfef00e83fa6b716ea006f35afb5dc6cd5/recipes/ox-epub"; - sha256 = "15q6vsmgv76c0qfdxa3prqvgmr6n7k4rd4bpi05574ibi23y0ynh"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-epub"; - license = lib.licenses.free; - }; - }) {}; - ox-gfm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-gfm"; - ename = "ox-gfm"; - version = "1.0"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "ox-gfm"; - rev = "99f93011b069e02b37c9660b8fcb45dab086a07f"; - sha256 = "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10e90430f29ce213fe57c507f06371ea0b29b66b/recipes/ox-gfm"; - sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ox-gfm"; - license = lib.licenses.free; - }; - }) {}; - ox-hugo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-hugo"; - ename = "ox-hugo"; - version = "0.8"; - src = fetchFromGitHub { - owner = "kaushalmodi"; - repo = "ox-hugo"; - rev = "9751d34e1133b89a533a978c085b0715f85db648"; - sha256 = "11h464cyc28ld0b0zridgm4drydc1qjxbm1y24zrwlkyqqjk6yr7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e1240bb7b5bb8773f804b987901566a20e3e8a9/recipes/ox-hugo"; - sha256 = "1niarxj2y4a14lrv2nqcc36msw7k61h8fbjpcdrfbaw3n0kchd40"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-hugo"; - license = lib.licenses.free; - }; - }) {}; - ox-ioslide = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-ioslide"; - ename = "ox-ioslide"; - version = "0.2"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "org-ioslide"; - rev = "6cb628e022ef224e9fe8b8b6c123713449d8f06b"; - sha256 = "1ipscvm7rdp8vcpd2f9516k5mjhdx03sb1p2c9j7krkhigfrbpsr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b960abca4d642c47e640300876eefee1851e6b86/recipes/ox-ioslide"; - sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f org ]; - meta = { - homepage = "https://melpa.org/#/ox-ioslide"; - license = lib.licenses.free; - }; - }) {}; - ox-pandoc = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-pandoc"; - ename = "ox-pandoc"; - version = "1.150707"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "ox-pandoc"; - rev = "035f1d60a0139349232c382cfd23a96902b7003d"; - sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38/recipes/ox-pandoc"; - sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; - name = "recipe"; - }; - packageRequires = [ dash emacs ht org ]; - meta = { - homepage = "https://melpa.org/#/ox-pandoc"; - license = lib.licenses.free; - }; - }) {}; - ox-slimhtml = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-slimhtml"; - ename = "ox-slimhtml"; - version = "0.4.5"; - src = fetchFromGitHub { - owner = "balddotcat"; - repo = "ox-slimhtml"; - rev = "a764ef64235845e4f5cfd73244d6cf1e7fee903b"; - sha256 = "14h0kks7i2k53fwbsqb4giafacm58inppqpr5mbj904cy146g29f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6fae8e3c4abd37a651d4cbdb337a74f1a7c7366a/recipes/ox-slimhtml"; - sha256 = "16jrw8n26iy69ibr29bp3pqp4lm66alihks37qipd2g5grqqfdnd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ox-slimhtml"; - license = lib.licenses.free; - }; - }) {}; - ox-twbs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ox-twbs"; - ename = "ox-twbs"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "marsmining"; - repo = "ox-twbs"; - rev = "2414e6b1de7deb6dd2ae79a7be633fdccb9c2f28"; - sha256 = "0kd45p8y7ykadmai4jn1x1pgpafyqggwb1ccbjzalxw4k9wmd45f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ox-twbs"; - sha256 = "050rv270jlkc1v7wp47cv9cwr9pz3n840dd4jxxhfs6s47b9ln73"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ox-twbs"; - license = lib.licenses.free; - }; - }) {}; - ox-wk = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "ox-wk"; - ename = "ox-wk"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "w-vi"; - repo = "ox-wk.el"; - rev = "3da2213be1874d9d3e8a9337b09003d9c102b943"; - sha256 = "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0947993df2d9bee493c2c25760f1ac5bcc1136ac/recipes/ox-wk"; - sha256 = "0rb4xkkqb65ly01lb1gl3gyz4yj9hzv4ydbdzsbvmpj0hrdw5nv3"; - name = "recipe"; - }; - packageRequires = [ emacs org ]; - meta = { - homepage = "https://melpa.org/#/ox-wk"; - license = lib.licenses.free; - }; - }) {}; - pabbrev = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pabbrev"; - ename = "pabbrev"; - version = "4.1"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "pabbrev"; - rev = "127a8b10cf352b0491fefd2f4178ba78ee587564"; - sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c032b0d126e0196b4526ee04f5103582610681ea/recipes/pabbrev"; - sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pabbrev"; - license = lib.licenses.free; - }; - }) {}; - pacfiles-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pacfiles-mode"; - ename = "pacfiles-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "UndeadKernel"; - repo = "pacfiles-mode"; - rev = "180eea7ba33dc4fa5c116b01649c4e9ba3f43276"; - sha256 = "07ki2dz459nv4jshmgk2gq1b8c0x3iqy3nf9rwv0w3b3qm70gn3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bec20443188d9218235c4b31840544a7b1e0690d/recipes/pacfiles-mode"; - sha256 = "08yc3w7zvckg8s1g707hvbbkvi2k52jrk2iwlj0sk22ih3q3yaa9"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pacfiles-mode"; - license = lib.licenses.free; - }; - }) {}; - pack = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pack"; - ename = "pack"; - version = "0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "pack-el"; - rev = "ef811927254b0fea170e2f2ddb94f6dd7c356dde"; - sha256 = "0bza802nzncmpnnzzrfqk4b8svbmgjnhrl28mvagi42wci19qf0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/96f55c1f15ca24134da378a1ea31f7bb31c84ea9/recipes/pack"; - sha256 = "0lwdhfrpqwpqqg3yhcyj11jv2mm8k9k54qdxlhdi8sxj1fdxmanw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pack"; - license = lib.licenses.free; - }; - }) {}; - package-build = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-build"; - ename = "package-build"; - version = "2.3"; - src = fetchFromGitHub { - owner = "melpa"; - repo = "package-build"; - rev = "385cd427ce15ca1715f3dd758b6aa408bf0186b1"; - sha256 = "1412pjghyvzkdlsrrs0ql30vw591bhyk1wlbf49f15dzjbspx3w0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/948fb86b710aafe6bc71f95554655dfdfcab0cca/recipes/package-build"; - sha256 = "0kr82j9rbvmapsph0jdxy24p0b8mcnj01sg1myywf428nf30cgbh"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/package-build"; - license = lib.licenses.free; - }; - }) {}; - package-lint = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-lint"; - ename = "package-lint"; - version = "0.7"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "package-lint"; - rev = "4c90df4919f7b96921a939b3bd88bedfd08d041e"; - sha256 = "0nhznvsl3l3v7w5x2afw0ay31r6jrdvgr1ys9mhcmd1fsk57bj2r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbfb0250a58b2e31c32ff1496ed66a3c5439bd67/recipes/package-lint"; - sha256 = "05akg9cgcqbgja966iv2j878y14d5wvky6m9clkfbw5wyg66xpr0"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/package-lint"; - license = lib.licenses.free; - }; - }) {}; - package-lint-flymake = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , package-lint }: - melpaBuild { - pname = "package-lint-flymake"; - ename = "package-lint-flymake"; - version = "0.7"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "package-lint"; - rev = "83f34f747a13633c92210e6110e3c5377397761c"; - sha256 = "0mljhvc03a8fj3zn5rz8i3mfcb8vd4xfaxmb7m7h9gr8ap3lwz7g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dbfb0250a58b2e31c32ff1496ed66a3c5439bd67/recipes/package-lint-flymake"; - sha256 = "076v3xvbxym7dwwl95j8kynj9kj2xw3gzq6qv6qkm0xls7df4yjz"; - name = "recipe"; - }; - packageRequires = [ emacs package-lint ]; - meta = { - homepage = "https://melpa.org/#/package-lint-flymake"; - license = lib.licenses.free; - }; - }) {}; - package-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-plus"; - ename = "package+"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "zenspider"; - repo = "package"; - rev = "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b"; - sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49cfbbc4535aa7e175aa819d67b8aa52a6f94384/recipes/package+"; - sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/package+"; - license = lib.licenses.free; - }; - }) {}; - package-safe-delete = callPackage ({ emacs - , epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "package-safe-delete"; - ename = "package-safe-delete"; - version = "0.1.7"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "package-safe-delete"; - rev = "138171e4fc03c0ef05a8260cbb5cd2e114c1c194"; - sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/61b961211276bd95655b6a0967eda5037a3d240b/recipes/package-safe-delete"; - sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; - name = "recipe"; - }; - packageRequires = [ emacs epl ]; - meta = { - homepage = "https://melpa.org/#/package-safe-delete"; - license = lib.licenses.free; - }; - }) {}; - package-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , restart-emacs }: - melpaBuild { - pname = "package-utils"; - ename = "package-utils"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "Silex"; - repo = "package-utils"; - rev = "5621b95c56b55499f0463fd8b29501da25d861bd"; - sha256 = "1mhsf0l0253d9b7n3c68mw5kwnsk7wf217y7m2fiybh51bdgjfnd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a1bb884a0299408daa716eba42cb39f79622766c/recipes/package-utils"; - sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; - name = "recipe"; - }; - packageRequires = [ restart-emacs ]; - meta = { - homepage = "https://melpa.org/#/package-utils"; - license = lib.licenses.free; - }; - }) {}; - packed = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "packed"; - ename = "packed"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "emacscollective"; - repo = "packed"; - rev = "788ea94bff319d6a776954c32cff1de8b400f051"; - sha256 = "1sga68hf6zf5j8sb56zqy35p5gn6x7c12m6h8q1gzazfy7xz57p0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/57a2fb9524df3fdfdc54c403112e12bd70888b23/recipes/packed"; - sha256 = "103z6fas2fkvlhvwbv1rl6jcij5pfsv5vlqqsb4dkq1b0s7k11jd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/packed"; - license = lib.licenses.free; - }; - }) {}; - page-break-lines = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "page-break-lines"; - ename = "page-break-lines"; - version = "0.11"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "page-break-lines"; - rev = "67b5928a7f14568baf2716b5741e13659a86b9ea"; - sha256 = "1wp974716ih2cz9kdmdz7xwjy1qnnfzdzlfr9kchknagw8d9nn12"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/page-break-lines"; - sha256 = "0i5kx191wnq9763jyqxbyh33hvdaqbd98a1rhgqd97zhvg0hslz1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/page-break-lines"; - license = lib.licenses.free; - }; - }) {}; - pallet = callPackage ({ cask - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pallet"; - ename = "pallet"; - version = "0.9.2"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "pallet"; - rev = "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501"; - sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf977287e9bd668efbd972c9937906384ee832c6/recipes/pallet"; - sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; - name = "recipe"; - }; - packageRequires = [ cask dash f s ]; - meta = { - homepage = "https://melpa.org/#/pallet"; - license = lib.licenses.free; - }; - }) {}; - panda-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "panda-theme"; - ename = "panda-theme"; - version = "0.1"; - src = fetchFromGitHub { - owner = "jamiecollinson"; - repo = "emacs-panda-theme"; - rev = "4016c16709889ca974bc194c039523b85c29c903"; - sha256 = "1kfg8dswg9hp07mcafz6s78md31wyn03r3pzz1jvysnlfdg9ak7c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a90ca1275ceab8e1ea4fdfa9049fbd24a5fd0bf5/recipes/panda-theme"; - sha256 = "1q3zp331hz8l54p8ym9jrs4f36aj15r8aka6bqqnalnk237xqxl7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/panda-theme"; - license = lib.licenses.free; - }; - }) {}; - pandoc = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pandoc"; - ename = "pandoc"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "pandoc.el"; - rev = "d45e35c917d9d775c05747d9feb49a1a831ad831"; - sha256 = "15ks8wlaj6n50cqmvw48pz191ha96krfwd38ygwq0kk1nm7y1y8g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c21ff09d67fad2658e0de08bc2edb7588c504a/recipes/pandoc"; - sha256 = "0x81anxam7agr2v2zqgc331zs5s5zxcw54kzpanndda23n51h5cc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pandoc"; - license = lib.licenses.free; - }; - }) {}; - pandoc-mode = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "pandoc-mode"; - ename = "pandoc-mode"; - version = "2.27.1"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "pandoc-mode"; - rev = "d135bb5b8874f1b16c053215ecb29e22f0f79657"; - sha256 = "1gmw78vjl82xlb4ajfiaf4q6hg35xadhjcvy7kyzr0kzs1zkkk4n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/pandoc-mode"; - sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; - name = "recipe"; - }; - packageRequires = [ dash hydra ]; - meta = { - homepage = "https://melpa.org/#/pandoc-mode"; - license = lib.licenses.free; - }; - }) {}; - pangu-spacing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pangu-spacing"; - ename = "pangu-spacing"; - version = "0.4"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "pangu-spacing"; - rev = "034b4ef8a1b29bf7bfed6a916380941506ed26ed"; - sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6/recipes/pangu-spacing"; - sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pangu-spacing"; - license = lib.licenses.free; - }; - }) {}; - paradox = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , let-alist - , lib - , melpaBuild - , seq - , spinner }: - melpaBuild { - pname = "paradox"; - ename = "paradox"; - version = "2.5.4"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "paradox"; - rev = "d24fe4a329a939ffa1983886d77a6937e05149e4"; - sha256 = "1v78nmqyx60ki64wql7faq6ihv2qbk72sb19cy6hnypi546d81yp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/paradox"; - sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; - name = "recipe"; - }; - packageRequires = [ emacs hydra let-alist seq spinner ]; - meta = { - homepage = "https://melpa.org/#/paradox"; - license = lib.licenses.free; - }; - }) {}; - parchment-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parchment-theme"; - ename = "parchment-theme"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "ajgrf"; - repo = "parchment"; - rev = "7d48ae9b39c37eeef7ab5bf7ee049d2edf0411a6"; - sha256 = "071k34i48dsmlgpi8mpdff1fgcnz29dj2ci52c1i3alp9yc7s67a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f2302f512053b22e5abbd6a654cf94e4d5c7f5ca/recipes/parchment-theme"; - sha256 = "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parchment-theme"; - license = lib.licenses.free; - }; - }) {}; - paredit = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paredit"; - ename = "paredit"; - version = "24"; - src = fetchgit { - url = "https://mumble.net/~campbell/git/paredit.git"; - rev = "82bb75ceb2ddc272d6618d94874b7fc13181a409"; - sha256 = "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/paredit"; - sha256 = "01qh8kfb5hyfi0jfl1kq3inkyzr0rf3wncmzgxlkfdc8zlq4v653"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/paredit"; - license = lib.licenses.free; - }; - }) {}; - paredit-everywhere = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "paredit-everywhere"; - ename = "paredit-everywhere"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "paredit-everywhere"; - rev = "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170"; - sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/593890222d074c6a308eb1b809077c6861e1af30/recipes/paredit-everywhere"; - sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; - name = "recipe"; - }; - packageRequires = [ paredit ]; - meta = { - homepage = "https://melpa.org/#/paredit-everywhere"; - license = lib.licenses.free; - }; - }) {}; - paren-face = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "paren-face"; - ename = "paren-face"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "paren-face"; - rev = "42b2141b5427bc78d640229821b2b8053e6743d2"; - sha256 = "1f1srk4100rsc7i6257q460g4ykmqx4fwrpgb57dlp83d3342c6h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d398398d1d5838dc4985a06515ee668f0f566aab/recipes/paren-face"; - sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/paren-face"; - license = lib.licenses.free; - }; - }) {}; - parent-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parent-mode"; - ename = "parent-mode"; - version = "2.3"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "parent-mode"; - rev = "db692cf08deff2f0e973e6e86e26662b44813d1b"; - sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9736d8f6c3065c46b8c4e0056e9d592d3ec973e9/recipes/parent-mode"; - sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/parent-mode"; - license = lib.licenses.free; - }; - }) {}; - parinfer = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parinfer"; - ename = "parinfer"; - version = "0.4.10"; - src = fetchFromGitHub { - owner = "DogLooksGood"; - repo = "parinfer-mode"; - rev = "5b3b247d68eeaf7404598cbcbf2158e07f16e65d"; - sha256 = "0v97ncb0w1slb0x8861l3yr1kqz6fgw1fwl1z9lz6hh8p2ih34sk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/470ab2b5cceef23692523b4668b15a0775a0a5ba/recipes/parinfer"; - sha256 = "05w4w7j6xyj19dm63073amd4n7fw4zm3qnn4x02fk2011iw8fq7i"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/parinfer"; - license = lib.licenses.free; - }; - }) {}; - parrot = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parrot"; - ename = "parrot"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "dp12"; - repo = "parrot"; - rev = "e9fe686408214884b20c65284a6a595e1c755794"; - sha256 = "079k4j0lcaj0lff1llp29bj5ah2b59byw9lw3jjw9wkl9px87r0m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b1b393ffb9b7691e8fc99bee5fc676463038a68d/recipes/parrot"; - sha256 = "0m67b80vc3qivcxs4w6fpzdg6h9d8s75251rlhnbc0xp7271zgnk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parrot"; - license = lib.licenses.free; - }; - }) {}; - parsebib = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parsebib"; - ename = "parsebib"; - version = "2.3.2"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "parsebib"; - rev = "c8d59deb20552f9a1885297b5ae0b8f753d191a5"; - sha256 = "1b1iiiy184czp014gg1bb3jks9frmkw8hs5z2l2lnzjmfjr6jm6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c39633957475dcd6a033760ba20a957716cce59c/recipes/parsebib"; - sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/parsebib"; - license = lib.licenses.free; - }; - }) {}; - parsec = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parsec"; - ename = "parsec"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "parsec.el"; - rev = "8f0c266d8b9b0ee5fcf9b80c518644b2849ff3b3"; - sha256 = "1zwdh3dwqvw9z79mxgf9kf1l2c0pb32sknhrs7ppca613nk9c58j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/248aaf5ff9c98cd3e439d0a26611cdefe6b6c32a/recipes/parsec"; - sha256 = "1p3364sv5r868xjj1411xqj4acxqmbzcdl900sd03585ql5wbypj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/parsec"; - license = lib.licenses.free; - }; - }) {}; - parseclj = callPackage ({ a - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "parseclj"; - ename = "parseclj"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "parseclj"; - rev = "93a0f43529598984835f88e64b62fa68bebda89b"; - sha256 = "03bm5dm4hmkqimv4wqxjjh5814pxysmm7z54bv2rf7zwv1x7dggr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a977779a7ee49f57b849b14e581210a7f47d61/recipes/parseclj"; - sha256 = "077qigx0qyjyvm3437ffnv05rmnpqxvpxf69yyfdgnay1xclv172"; - name = "recipe"; - }; - packageRequires = [ a emacs ]; - meta = { - homepage = "https://melpa.org/#/parseclj"; - license = lib.licenses.free; - }; - }) {}; - pass = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store - , password-store-otp }: - melpaBuild { - pname = "pass"; - ename = "pass"; - version = "1.8"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "pass"; - rev = "cd79375005a1c1d8b45d38fefa91eef0bd23182c"; - sha256 = "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/428c2d53db69bed8938ec3486dfcf7fc048cd4e8/recipes/pass"; - sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; - name = "recipe"; - }; - packageRequires = [ emacs f password-store password-store-otp ]; - meta = { - homepage = "https://melpa.org/#/pass"; - license = lib.licenses.free; - }; - }) {}; - passmm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store }: - melpaBuild { - pname = "passmm"; - ename = "passmm"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "pjones"; - repo = "passmm"; - rev = "b25a92048c788a8477cc5ffe14c0c4a4df19d79a"; - sha256 = "1jg2rs010fmw10ld0bfl6x7af3v9yqfy9ga5ixmam3qpilc8c4fw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ae2a1e10375f9cd55d19502c9740b2737eba209/recipes/passmm"; - sha256 = "0p6qps9ww7s6w5x7p6ha26xj540pk4bjkr629lcicrvnfr5jsg4b"; - name = "recipe"; - }; - packageRequires = [ emacs password-store ]; - meta = { - homepage = "https://melpa.org/#/passmm"; - license = lib.licenses.free; - }; - }) {}; - passthword = callPackage ({ cl-lib ? null - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "passthword"; - ename = "passthword"; - version = "1.4"; - src = fetchFromGitLab { - owner = "pidu"; - repo = "passthword"; - rev = "58a91defdbeec9014b4e46f909a7411b3a627285"; - sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a52b516b7b10bdada2f64499c8f43f85a236f254/recipes/passthword"; - sha256 = "19zv80kidb6a3985n3zij507hvffcxhcvlfxd01gwx64wvfc0c3c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/passthword"; - license = lib.licenses.free; - }; - }) {}; - password-store = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , with-editor }: - melpaBuild { - pname = "password-store"; - ename = "password-store"; - version = "1.7.3"; - src = fetchFromGitHub { - owner = "zx2c4"; - repo = "password-store"; - rev = "65cead8c0fdb07ce3821f6b97bdcb32684d0c3f7"; - sha256 = "0rm364l9mg2gl16ng5zd02gkfq8592mhrp81sk1v0wwh8wlyrzrh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/207f8ec84572176749d328cb2bbc4e87c36f202c/recipes/password-store"; - sha256 = "03r8j14l12yc42b51fzvn1jh8j85nyl1rg6c80r0a7ihwkj27jv6"; - name = "recipe"; - }; - packageRequires = [ emacs f s with-editor ]; - meta = { - homepage = "https://melpa.org/#/password-store"; - license = lib.licenses.free; - }; - }) {}; - password-store-otp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , password-store - , s }: - melpaBuild { - pname = "password-store-otp"; - ename = "password-store-otp"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "volrath"; - repo = "password-store-otp.el"; - rev = "a39a64a91de36e87b852339635bd3c5fb0e32441"; - sha256 = "0gb48blvnn6ci2wl45z81p41ny7vbgl610hqy6b2hyr2171qjd60"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fc89d02554a6ff150ad42634879073892f3e88be/recipes/password-store-otp"; - sha256 = "0m3n4gjf6hmcs2kg80h1whzbl74zsj79ihliyqfcdfc4v31m32sg"; - name = "recipe"; - }; - packageRequires = [ emacs password-store s ]; - meta = { - homepage = "https://melpa.org/#/password-store-otp"; - license = lib.licenses.free; - }; - }) {}; - pastehub = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pastehub"; - ename = "pastehub"; - version = "0.5.2"; - src = fetchFromGitHub { - owner = "kiyoka"; - repo = "pastehub"; - rev = "3cc5dcb87104f3b4320a6d7fa20fa7340e6b7026"; - sha256 = "0wbb5689n9k351gf3s9mqr3bi00lpajk0h1k9gx1b2mdbb7lq7xd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8645a9880c586ef2ad16f3a4e61ba76176c224/recipes/pastehub"; - sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pastehub"; - license = lib.licenses.free; - }; - }) {}; - pastelmac-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pastelmac-theme"; - ename = "pastelmac-theme"; - version = "1.0"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "pastelmac-theme-el"; - rev = "bead21741e3f46f6506e8aef4469d4240a819389"; - sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/pastelmac-theme"; - sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pastelmac-theme"; - license = lib.licenses.free; - }; - }) {}; - pastery = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "pastery"; - ename = "pastery"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "diasbruno"; - repo = "pastery.el"; - rev = "4493be98b743b4d062cb4e00760125e394a55022"; - sha256 = "0bmm18d84lrkclg4md46k1ma03w7a97s10hrvjcm9yj8xbrjqqsc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6058218450071db0af9a5b8ce8ec09a735c4ab66/recipes/pastery"; - sha256 = "006qawjc86spbbs2pxvhg9w94rcsxap577cndqwaiw1k0cc8vkhp"; - name = "recipe"; - }; - packageRequires = [ emacs request ]; - meta = { - homepage = "https://melpa.org/#/pastery"; - license = lib.licenses.free; - }; - }) {}; - path-helper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "path-helper"; - ename = "path-helper"; - version = "1.1"; - src = fetchFromGitHub { - owner = "arouanet"; - repo = "path-helper"; - rev = "34538affb3f341b3c56a875bb094ddb2b859a8ef"; - sha256 = "0qzsalbxksb44f0x7fndl2qyp1yf575qs56skfzmpnpa82dck88g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a70b1a41e45d215be27d392429dcd4f82904295f/recipes/path-helper"; - sha256 = "0fff3l88jgflqpxlcfxfyp2prc2ichajvm7c8i19qhvw70sbasny"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/path-helper"; - license = lib.licenses.free; - }; - }) {}; - pathify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pathify"; - ename = "pathify"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "pathify.el"; - rev = "335332a900717ae01bde5ccb8f3dc97a5350f123"; - sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/459460c977b9cf033e22937899ad380e01efcf11/recipes/pathify"; - sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pathify"; - license = lib.licenses.free; - }; - }) {}; - paxedit = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , paredit }: - melpaBuild { - pname = "paxedit"; - ename = "paxedit"; - version = "1.1.8"; - src = fetchFromGitHub { - owner = "promethial"; - repo = "paxedit"; - rev = "644eb7036a475fbcba4de5d46d6940b1e8ef33cd"; - sha256 = "0jmhr658cczblag8knr8j77q58yj268rkhh5dmga66l0sb30wb21"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/106b272c2f0741d21d31a0ddfa4f521c575559c1/recipes/paxedit"; - sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; - name = "recipe"; - }; - packageRequires = [ cl-lib paredit ]; - meta = { - homepage = "https://melpa.org/#/paxedit"; - license = lib.licenses.free; - }; - }) {}; - pcache = callPackage ({ eieio ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcache"; - ename = "pcache"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "sigma"; - repo = "pcache"; - rev = "025ef2411fa1bf82a9ac61dfdb7bd4cedaf2d740"; - sha256 = "1jkdyacpcvbsm1g2rjpnk6hfr01r3j5ibgh09441scz41v6xk248"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pcache"; - sha256 = "0wwx20x6gzlli3hh4zd9pfv2cmqfm38xbl9p4vsgy08q1rm5agva"; - name = "recipe"; - }; - packageRequires = [ eieio ]; - meta = { - homepage = "https://melpa.org/#/pcache"; - license = lib.licenses.free; - }; - }) {}; - pcomplete-extension = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcomplete-extension"; - ename = "pcomplete-extension"; - version = "1.0"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "pcomplete-extension"; - rev = "839740c90de857e18db2f578d6660951522faab5"; - sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb8a938418f84a5b0ede92e84a516f38e4b1011/recipes/pcomplete-extension"; - sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pcomplete-extension"; - license = lib.licenses.free; - }; - }) {}; - pcre2el = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcre2el"; - ename = "pcre2el"; - version = "1.8"; - src = fetchFromGitHub { - owner = "joddie"; - repo = "pcre2el"; - rev = "3eba762d3a9619496d7ef2929d95117040ca93fa"; - sha256 = "0m76flv62z6f167hlw5lmnzrwyzj412vfpgcw1lrla2l7mjv011z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b/recipes/pcre2el"; - sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pcre2el"; - license = lib.licenses.free; - }; - }) {}; - pcsv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pcsv"; - ename = "pcsv"; - version = "1.3.6"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-pcsv"; - rev = "91599aaba70a8e8593fa2f36165af82cbd35e41e"; - sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/80ffaf99b2a4566a3f9d0309cd7b63f563f3826e/recipes/pcsv"; - sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pcsv"; - license = lib.licenses.free; - }; - }) {}; - pdf-tools = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , tablist }: - melpaBuild { - pname = "pdf-tools"; - ename = "pdf-tools"; - version = "0.90"; - src = fetchFromGitHub { - owner = "politza"; - repo = "pdf-tools"; - rev = "c41694fb198e644b3da03917e6792c71cf0c81dc"; - sha256 = "0pvid9gzr1ix2d8azvf37iqjpha0arcc1yfny4n19wpq9r2gvayc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e3d53913f4e8a618e125fa9c1efb3787fbf002d/recipes/pdf-tools"; - sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist tablist ]; - meta = { - homepage = "https://melpa.org/#/pdf-tools"; - license = lib.licenses.free; - }; - }) {}; - peg = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "peg"; - ename = "peg"; - version = "0.6"; - src = fetchFromGitHub { - owner = "ellerh"; - repo = "peg.el"; - rev = "081efeca91d790c7fbc90871ac22c40935f4833b"; - sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b9b55a02e903ae7e75f8b636fdb1cf907c5db7c/recipes/peg"; - sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/peg"; - license = lib.licenses.free; - }; - }) {}; - pelican-mode = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pelican-mode"; - ename = "pelican-mode"; - version = "20170808"; - src = fetchgit { - url = "https://git.korewanetadesu.com/pelican-mode.git"; - rev = "8b13c30c4ec38dd535eadf26e463f8616d5c089c"; - sha256 = "0rghcyp09ga95ag0pjbk4hdxxlsnr93dr6706z0xvfgmninbn5aw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aede5994c2e76c7fd860661c1e3252fb741f9228/recipes/pelican-mode"; - sha256 = "0z6w5j3qwb58pndqbmpsvy1l77w9jv90bss9qq9hicil8nlk4pvi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pelican-mode"; - license = lib.licenses.free; - }; - }) {}; - persistent-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "persistent-scratch"; - ename = "persistent-scratch"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "persistent-scratch"; - rev = "71371a7ce9846754276350fd577dc7543eb52878"; - sha256 = "0n638krbrs2hx97cgkb5nc0fbrd8wsbmb7mz3ym5mx5pvdyxnlgv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1e32702bfa15490b692d5db59e22d2c07b292d1/recipes/persistent-scratch"; - sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/persistent-scratch"; - license = lib.licenses.free; - }; - }) {}; - persistent-soft = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache }: - melpaBuild { - pname = "persistent-soft"; - ename = "persistent-soft"; - version = "0.8.10"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "persistent-soft"; - rev = "a1e0ddf2a12a6f18cab565dee250f070384cbe02"; - sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/persistent-soft"; - sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; - name = "recipe"; - }; - packageRequires = [ list-utils pcache ]; - meta = { - homepage = "https://melpa.org/#/persistent-soft"; - license = lib.licenses.free; - }; - }) {}; - persp-fr = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , persp-mode }: - melpaBuild { - pname = "persp-fr"; - ename = "persp-fr"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "persp-fr"; - rev = "3f536440b120499464106fd25f182d7580192870"; - sha256 = "0bnplxv6igry7ak3wvn2b88zm4aarv35z4z5q38x52k4zac94rl8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e09213dddf003a1275eafb767431a507ecf7639/recipes/persp-fr"; - sha256 = "0p4379yr1b32l8ghq1axyb8qhp28gnq5qxxvbk3mdzgbwwj8y4b2"; - name = "recipe"; - }; - packageRequires = [ dash emacs persp-mode ]; - meta = { - homepage = "https://melpa.org/#/persp-fr"; - license = lib.licenses.free; - }; - }) {}; - persp-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "persp-mode"; - ename = "persp-mode"; - version = "2.9.6"; - src = fetchFromGitHub { - owner = "Bad-ptr"; - repo = "persp-mode.el"; - rev = "1dfea0de788f6d25ee47b5c62ddbeaf9e8e92f06"; - sha256 = "11ww8hg9p8qlmr8zpir0m5xzzbvd1faiqjx6vn4b05d4ll03rnhm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caad63d14f770f07d09b6174b7b40c5ab06a1083/recipes/persp-mode"; - sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/persp-mode"; - license = lib.licenses.free; - }; - }) {}; - persp-projectile = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , perspective - , projectile }: - melpaBuild { - pname = "persp-projectile"; - ename = "persp-projectile"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "persp-projectile"; - rev = "7686633acf44402fa90429759cca6a155e4df2b9"; - sha256 = "0rqyzsmg32sdr4k9i2lf3jfyr9bskkl7gfb5ndl16iip9py7403z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8bc4e3a5af7ba86d277c73a1966a91c87d3d855a/recipes/persp-projectile"; - sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; - name = "recipe"; - }; - packageRequires = [ cl-lib perspective projectile ]; - meta = { - homepage = "https://melpa.org/#/persp-projectile"; - license = lib.licenses.free; - }; - }) {}; - perspective = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "perspective"; - ename = "perspective"; - version = "2.2"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "perspective-el"; - rev = "8e2f122de408d7866136dd861d513a9575cf32e6"; - sha256 = "0pd5sqrrz6y3md20yh6ffy32jdcgb1gc9b4j14pm6r54bqxik68h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/perspective"; - sha256 = "021ax1c2ys82dcjs5jl7b4nb83n6gax2imnpm030rcbihjl1lzm7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/perspective"; - license = lib.licenses.free; - }; - }) {}; - perspeen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "perspeen"; - ename = "perspeen"; - version = "0.1"; - src = fetchFromGitHub { - owner = "seudut"; - repo = "perspeen"; - rev = "4079e254d542876eaa7e37b3c4b77d4f6a0f4e16"; - sha256 = "1y54zlrrzc7h1kflvayhxnmh2xrv2nc708hd9m63h99li4xqcdzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/perspeen"; - sha256 = "0kwmllas9vnppsfaviy58d0nk4hmlqp566mfr4l53x46sybv1y04"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/perspeen"; - license = lib.licenses.free; - }; - }) {}; - pfuture = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pfuture"; - ename = "pfuture"; - version = "1.7"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "pfuture"; - rev = "263227534e8bb98aedce18698c34db9fd4d6500b"; - sha256 = "13r1f741rk5k35s413iyh1kng20zmp29qr4bzlxg8wjl7d8q6da2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fb70c9f56a58b5c7a2e8b69b191aa2fc7c9bcc8/recipes/pfuture"; - sha256 = "15fr9wkpv8v1p22wz7hsyihq7f807ck105c2crfs8y7capfvs53s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pfuture"; - license = lib.licenses.free; - }; - }) {}; - ph = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ph"; - ename = "ph"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "gromnitsky"; - repo = "ph"; - rev = "ed45c371642e313810b56c45af08fdfbd71a7dfe"; - sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f62ca074ca2df780ab32aac50b2b828ee6a9934c/recipes/ph"; - sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ph"; - license = lib.licenses.free; - }; - }) {}; - phan = callPackage ({ composer - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phan"; - ename = "phan"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phan.el"; - rev = "6b077b3421a0b2c0b98a6906b8ab0d14d9d7bf50"; - sha256 = "1af4pam149dgxqzwqkjklxxqq2n8fg3l1b9w6bmaw24lx1pdxcyv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/phan"; - sha256 = "17ar6nxy0plx5li49kgf4f0h99wwmnnp5kwmpf34jg9ygyhaglvb"; - name = "recipe"; - }; - packageRequires = [ composer emacs f ]; - meta = { - homepage = "https://melpa.org/#/phan"; - license = lib.licenses.free; - }; - }) {}; - phi-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phi-search"; - ename = "phi-search"; - version = "20160630"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "phi-search"; - rev = "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69"; - sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2f0274300c33f19ca6f868e1d570ffee513dbdf7/recipes/phi-search"; - sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/phi-search"; - license = lib.licenses.free; - }; - }) {}; - phi-search-mc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multiple-cursors - , phi-search }: - melpaBuild { - pname = "phi-search-mc"; - ename = "phi-search-mc"; - version = "2.2.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "phi-search-mc.el"; - rev = "4c6d2d39feb502febb81fc98b7b5854d88150c69"; - sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83cf3fa3736eb2583dcf6bca16b9acb89e3408a3/recipes/phi-search-mc"; - sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; - name = "recipe"; - }; - packageRequires = [ multiple-cursors phi-search ]; - meta = { - homepage = "https://melpa.org/#/phi-search-mc"; - license = lib.licenses.free; - }; - }) {}; - php-auto-yasnippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , yasnippet }: - melpaBuild { - pname = "php-auto-yasnippets"; - ename = "php-auto-yasnippets"; - version = "2.3.1"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-auto-yasnippets"; - rev = "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf"; - sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28b2d8802f98e339ff01ecf9733b71b6c631123e/recipes/php-auto-yasnippets"; - sha256 = "047i51ks2nn7ydrx2hjx9qvsh3lxnyxp8a6c3h3nb1acy84f5bd1"; - name = "recipe"; - }; - packageRequires = [ php-mode yasnippet ]; - meta = { - homepage = "https://melpa.org/#/php-auto-yasnippets"; - license = lib.licenses.free; - }; - }) {}; - php-cs-fixer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-cs-fixer"; - ename = "php-cs-fixer"; - version = "1.0.-2.4"; - src = fetchFromGitHub { - owner = "OVYA"; - repo = "php-cs-fixer"; - rev = "2e28b82d192c6f420ecb8cbef04256f3c9c47c4b"; - sha256 = "1lh37z4z09nz4wfp8ly94dwrmjsqpg6phw5r8y4gjhfnfbgpq4b9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3631c4b81c1784995ae9e74d832e301d79214e2/recipes/php-cs-fixer"; - sha256 = "1xvz6v1fwngi2rizrx5sf0wrs4cy8rb13467r26k8hb7z8h1rqmf"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/php-cs-fixer"; - license = lib.licenses.free; - }; - }) {}; - php-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "php-mode"; - ename = "php-mode"; - version = "1.21.4"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-mode"; - rev = "a8ee6ce7c1c319b2b641865ebd599cc36d2dc10e"; - sha256 = "1gqawn8bg9374swxb4bd2z015v16yjr96am1vwsbmgks3lhiw8ja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e41dc09413eaa93704e7d9f55bd2bd01f658806/recipes/php-mode"; - sha256 = "1gqmcynz2wx09xjnk70db1a2pbnrh1vfm5vd6mks1s10y59bh0zq"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/php-mode"; - license = lib.licenses.free; - }; - }) {}; - php-runtime = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "php-runtime"; - ename = "php-runtime"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "php-runtime.el"; - rev = "017e0e70f07d6b25e37d5c5f4d271a914b677631"; - sha256 = "1c74xd6p3hfanpd4920agvnar9rjbyvz33kwrzw9vywzrs68ncvh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/615c9ac208d8c20082a8ac83e49e93d99e2cbc89/recipes/php-runtime"; - sha256 = "0dvnwajrjsgyqzglzpkx9vwx3f55mrag6dsbdjqc9vvpvxhmgfwb"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f s ]; - meta = { - homepage = "https://melpa.org/#/php-runtime"; - license = lib.licenses.free; - }; - }) {}; - phpactor = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phpactor"; - ename = "phpactor"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpactor.el"; - rev = "61e4eab638168b7034eef0f11e35a89223fa7687"; - sha256 = "0dsa1mygb96nlz5gppf0sny3lxaacvmvnkg84c0cs6x223s6zfx8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d67b98ecd541c227c011615f67d7a0890f5e1af3/recipes/phpactor"; - sha256 = "0w2iszi74y3s6rcn6p2ic545cg319y4jpy83npbh5m98y8jma84m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/phpactor"; - license = lib.licenses.free; - }; - }) {}; - phpcbf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "phpcbf"; - ename = "phpcbf"; - version = "0.9.2"; - src = fetchFromGitHub { - owner = "nishimaki10"; - repo = "emacs-phpcbf"; - rev = "b556b548ceb061b002389d6165d2cc63d8bddb5d"; - sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77ef54e3fb2715a081786dc54f99ae74def5c77c/recipes/phpcbf"; - sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; - name = "recipe"; - }; - packageRequires = [ s ]; - meta = { - homepage = "https://melpa.org/#/phpcbf"; - license = lib.licenses.free; - }; - }) {}; - phpstan = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "phpstan"; - ename = "phpstan"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpstan.el"; - rev = "1151b8d418af532fdf0732b9793b479c64a364e3"; - sha256 = "0wb9pshgcrq2w9d9fpkywz299ihcb9fffh3fdk8rm1r8irylrjkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/43808f57146a395b92ed498803fa948a33e5f3c2/recipes/phpstan"; - sha256 = "1nx9d4mhxhvbgrxawkpkw03b75bg1xpli1x83g2bhs8ar8lypjik"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/phpstan"; - license = lib.licenses.free; - }; - }) {}; - phpt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , php-mode - , polymode }: - melpaBuild { - pname = "phpt-mode"; - ename = "phpt-mode"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "phpt-mode"; - rev = "310579e5db57c344460f74239bd1a8fc0d6ddf33"; - sha256 = "1zgnnzad0sr5qh665i3shcf18y121di8za99girkzgzjcv309r35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59a0e7aabf45c98b1ecf9db49f6420a6e051733b/recipes/phpt-mode"; - sha256 = "1isq3l6qhya5vafmcqbda7r0irdmgvmlmdg98n7h8yck5imi78yf"; - name = "recipe"; - }; - packageRequires = [ emacs php-mode polymode ]; - meta = { - homepage = "https://melpa.org/#/phpt-mode"; - license = lib.licenses.free; - }; - }) {}; - phpunit = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "phpunit"; - ename = "phpunit"; - version = "0.17.1"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "phpunit.el"; - rev = "4212307bbcfd8accd2abfa7e4ab55a6751a0b11b"; - sha256 = "1silbfmv85r73pbc7f5cm4znc6644ngihfnhibk1fgp9j0rf7ahc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0670b42c0c998daa7bf01080757976ac3589ec06/recipes/phpunit"; - sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/phpunit"; - license = lib.licenses.free; - }; - }) {}; - pillar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , makey - , melpaBuild }: - melpaBuild { - pname = "pillar"; - ename = "pillar"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "pillar-markup"; - repo = "pillar-mode"; - rev = "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909"; - sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bff55f1182f3bd0bc8a8773921f703168d87de21/recipes/pillar"; - sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; - name = "recipe"; - }; - packageRequires = [ makey ]; - meta = { - homepage = "https://melpa.org/#/pillar"; - license = lib.licenses.free; - }; - }) {}; - pinboard-popular = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild }: - melpaBuild { - pname = "pinboard-popular"; - ename = "pinboard-popular"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "asimpson"; - repo = "pinboard-popular"; - rev = "df6f5928f1e5a614fb770f6f4b9aefe0bf4d1c25"; - sha256 = "1x3qaqj81w1wblkd4rd1b7nggmgnf6jahh3zh2p6nlr200fg52lq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/094f63e451622571aac832b14221a0d5a96de9c5/recipes/pinboard-popular"; - sha256 = "0d9ng4mclnb9yfzh8wzz03fbhfxayns0dg31bdixkwvy2vk00rkf"; - name = "recipe"; - }; - packageRequires = [ loop ]; - meta = { - homepage = "https://melpa.org/#/pinboard-popular"; - license = lib.licenses.free; - }; - }) {}; - pine-script-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pine-script-mode"; - ename = "pine-script-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "pine-script-mode"; - rev = "9176de41a5c80f7b56e41fb7a9ba7350885a2512"; - sha256 = "1kxdrqa420zbl73jlakilvn1ja83vfqnhqdirgfvp23z4xhcddq6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/287b781147fe41089fa8c76570bc30539e43e5bc/recipes/pine-script-mode"; - sha256 = "0ihijbcx7m4vhxr1fnfkwjdk6ka1mqzxb8z164yh8yn73qs0saiq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pine-script-mode"; - license = lib.licenses.free; - }; - }) {}; - pinyin-search = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinyin-search"; - ename = "pinyin-search"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "pinyin-search.el"; - rev = "5895cccfa6b43263ee243c5642cc16dd9a69fb4e"; - sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/03da6f02778f7fae77a00cdc420cfbafead6dec4/recipes/pinyin-search"; - sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pinyin-search"; - license = lib.licenses.free; - }; - }) {}; - pinyinlib = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pinyinlib"; - ename = "pinyinlib"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "cute-jumper"; - repo = "pinyinlib.el"; - rev = "39943d226c2a42a9013421a0b4b6d5d3696bf234"; - sha256 = "1nwj4c3y0kdlkf3jqd2dnibaiazrq6qcj533xk2qw4wmx072yij0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f4aa27985dcfaf24f1863667b89e13df4710546f/recipes/pinyinlib"; - sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pinyinlib"; - license = lib.licenses.free; - }; - }) {}; - pip-requirements = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pip-requirements"; - ename = "pip-requirements"; - version = "0.5"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "pip-requirements.el"; - rev = "93e0595f037e3a95c1c1cd6f00f7e052a9a25912"; - sha256 = "016r7y5nfnx6iws3hq4xnyrcv00y6zmd453psxhivi896wb8szfq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5eaf6987f92070ccc33d3e28c6bb2b96f72ba1aa/recipes/pip-requirements"; - sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/pip-requirements"; - license = lib.licenses.free; - }; - }) {}; - pixiv-novel-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pixiv-novel-mode"; - ename = "pixiv-novel-mode"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "pixiv-novel-mode.el"; - rev = "4dd9caf749190fab8f0b33862b3894b635de46c5"; - sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92092c1c13c37520f98b952d40745aa062f062c1/recipes/pixiv-novel-mode"; - sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pixiv-novel-mode"; - license = lib.licenses.free; - }; - }) {}; - pkg-info = callPackage ({ epl - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pkg-info"; - ename = "pkg-info"; - version = "0.6"; - src = fetchFromGitHub { - owner = "lunaryorn"; - repo = "pkg-info.el"; - rev = "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e"; - sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/pkg-info"; - sha256 = "1k23hmpcq534060qcxbrv4g6bw9nzcbjg192mbdp20kwidw7p81n"; - name = "recipe"; - }; - packageRequires = [ epl ]; - meta = { - homepage = "https://melpa.org/#/pkg-info"; - license = lib.licenses.free; - }; - }) {}; - pkgbuild-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pkgbuild-mode"; - ename = "pkgbuild-mode"; - version = "0.14"; - src = fetchFromGitHub { - owner = "juergenhoetzel"; - repo = "pkgbuild-mode"; - rev = "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965"; - sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/pkgbuild-mode"; - sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pkgbuild-mode"; - license = lib.licenses.free; - }; - }) {}; - plain-theme = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plain-theme"; - ename = "plain-theme"; - version = "8"; - src = fetchFromGitLab { - owner = "yegortimoshenko"; - repo = "plain-theme"; - rev = "2609a811335d58cfb73a65d6307c156fe09037d3"; - sha256 = "0g5vl4xigdm2pn2mnkwgj1kxdjr66w7ynr77bchy3ij6qvzdzkqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b147fb05a1b4296e1b85d31ba018d132a5bb5ed2/recipes/plain-theme"; - sha256 = "10qq7cy6hqh6c8qi796y9lk4wyyjbhdn1pvkcw3g29cfh857x50m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plain-theme"; - license = lib.licenses.free; - }; - }) {}; - plantuml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plantuml-mode"; - ename = "plantuml-mode"; - version = "1.2.10"; - src = fetchFromGitHub { - owner = "skuro"; - repo = "plantuml-mode"; - rev = "92c490d3fc07b4cfa8c5263c15a4bbc16d10da9e"; - sha256 = "1xmhgc49jyxj7wwlzhpjrdh4nynxjf3dlwg77hgzdracgldq8sra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38e74bb9923044323f34473a5b13867fe39bed25/recipes/plantuml-mode"; - sha256 = "03srbg34512vxcqn95q4r7h2aqbqq0sd5c9ffnbx2a75vsblqc6h"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plantuml-mode"; - license = lib.licenses.free; - }; - }) {}; - platformio-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "platformio-mode"; - ename = "platformio-mode"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "ZachMassia"; - repo = "PlatformIO-Mode"; - rev = "470a80c1d764a6e1680a2b41ca5a847869a07a27"; - sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/platformio-mode"; - sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; - name = "recipe"; - }; - packageRequires = [ projectile ]; - meta = { - homepage = "https://melpa.org/#/platformio-mode"; - license = lib.licenses.free; - }; - }) {}; - play-crystal = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "play-crystal"; - ename = "play-crystal"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "veelenga"; - repo = "play-crystal.el"; - rev = "86b54346e7c832c14f8e5654a462f6490a6b11d7"; - sha256 = "0kvkr24f8r21pahm2lsvbr9bg53770wxwpdfmmjljs2zmgxf2c40"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/92715977136afa731e85e894542dc88b664b3304/recipes/play-crystal"; - sha256 = "1jqf36b1mhyf4j7fs386g6isy09q7k8zwdc4rb34mhjg1a56gcnf"; - name = "recipe"; - }; - packageRequires = [ dash emacs request ]; - meta = { - homepage = "https://melpa.org/#/play-crystal"; - license = lib.licenses.free; - }; - }) {}; - play-routes-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "play-routes-mode"; - ename = "play-routes-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "brocode"; - repo = "play-routes-mode"; - rev = "d7eb682cd474d90b3a3d005290cd6d4fe9f94cae"; - sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/740cef8687232eb0e2186e8df956c2d4f39575cf/recipes/play-routes-mode"; - sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/play-routes-mode"; - license = lib.licenses.free; - }; - }) {}; - plenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plenv"; - ename = "plenv"; - version = "0.32"; - src = fetchFromGitHub { - owner = "karupanerura"; - repo = "plenv.el"; - rev = "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2"; - sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a0819979b9567ac5fab9ed6821eba8fe7ee6a299/recipes/plenv"; - sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/plenv"; - license = lib.licenses.free; - }; - }) {}; - plsense = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "plsense"; - ename = "plsense"; - version = "0.4.7"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-plsense"; - rev = "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a"; - sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb1025f146514e9c142cd96cac9f2989d6d1a8c5/recipes/plsense"; - sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/plsense"; - license = lib.licenses.free; - }; - }) {}; - plsense-direx = callPackage ({ direx - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , plsense - , yaxception }: - melpaBuild { - pname = "plsense-direx"; - ename = "plsense-direx"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "plsense-direx"; - rev = "8a2f465264c74e04524cc789cdad0190ace43f6c"; - sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/65fb1d8b4ed12f097958842d1b00dcdf3660b184/recipes/plsense-direx"; - sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; - name = "recipe"; - }; - packageRequires = [ direx log4e plsense yaxception ]; - meta = { - homepage = "https://melpa.org/#/plsense-direx"; - license = lib.licenses.free; - }; - }) {}; - plur = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "plur"; - ename = "plur"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "plur"; - rev = "5bdd3b9a2f0624414bd596e798644713cd1545f0"; - sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/38f6f53fcd1186efd5e6752166da4e23b712cdb1/recipes/plur"; - sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/plur"; - license = lib.licenses.free; - }; - }) {}; - po-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "po-mode"; - ename = "po-mode"; - version = "0.19.8.1"; - src = fetchgit { - url = "https://git.savannah.gnu.org/git/gettext.git"; - rev = "7fa0c2779d7de8a263271abfbe684185dbf6898b"; - sha256 = "1w154dzp98kjqsid4g0jq7cnpm4mivgffgjks6gr89dssq9qc3yh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/po-mode"; - sha256 = "0km19n87iqd6m6n23h46b6225zyvava9jbx6b8frna3sjwb4ls7w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/po-mode"; - license = lib.licenses.free; - }; - }) {}; - pocket-lib = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , kv - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "pocket-lib"; - ename = "pocket-lib"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "pocket-lib.el"; - rev = "ef3bcf452129b74e7b82265f6c08f9569fd19515"; - sha256 = "0r2y6idzwkvaclsnaskdlzk9afvxnm9kkyy8y38cfwany3kbmyzj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71f17ce28f4fc8c2c100848be8aec15526ef8697/recipes/pocket-lib"; - sha256 = "0v619blifmvm36dr773wjf35fjji4dj3pyck9nkz0m8zmpz0fg78"; - name = "recipe"; - }; - packageRequires = [ dash emacs kv request s ]; - meta = { - homepage = "https://melpa.org/#/pocket-lib"; - license = lib.licenses.free; - }; - }) {}; - pocket-reader = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , ht - , kv - , lib - , melpaBuild - , org-web-tools - , ov - , pocket-lib - , rainbow-identifiers - , s }: - melpaBuild { - pname = "pocket-reader"; - ename = "pocket-reader"; - version = "0.2"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "pocket-reader.el"; - rev = "a7f080ec3e9522f942166de61b24a375b8f1c2bb"; - sha256 = "0l7dln7qcrgzm73vk7jp8wr2kibg18973xmdzyyc162hdnlbrpb0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/835a7bf2f72987183e9d15ada7ae747fb5715c11/recipes/pocket-reader"; - sha256 = "0gcgmz4mhjgvqbh2gmv8v09sy80cnfccjym455m0fbl31b8dczhf"; - name = "recipe"; - }; - packageRequires = [ - dash - emacs - ht - kv - org-web-tools - ov - pocket-lib - rainbow-identifiers - s - ]; - meta = { - homepage = "https://melpa.org/#/pocket-reader"; - license = lib.licenses.free; - }; - }) {}; - poe-lootfilter-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "poe-lootfilter-mode"; - ename = "poe-lootfilter-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "jdodds"; - repo = "poe-lootfilter-mode"; - rev = "5ef06684cb2b17b090ee1f303c2b789fa71bc106"; - sha256 = "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/006f39eaf8a87822fe8becab1da2822ff6fc2beb/recipes/poe-lootfilter-mode"; - sha256 = "0iw3a2lf0mnv3lamphy458nfyjjm1yvln1syfad49av3karca05z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/poe-lootfilter-mode"; - license = lib.licenses.free; - }; - }) {}; - point-pos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "point-pos"; - ename = "point-pos"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "point-pos.el"; - rev = "f4126b64567a81e7f22058f09d56c63b2ff06632"; - sha256 = "1sbwz9kxvnd5r24q9x6bhcjajjnm2z8q6khgqs4gl4ycs60kn0s6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23a1e835155fba51f595c10c46487a4c269f43ff/recipes/point-pos"; - sha256 = "1zv6hx8i8jwq52j4la1ff0ar0bpbs2pb4gcsh9hypghba11gnync"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/point-pos"; - license = lib.licenses.free; - }; - }) {}; - poly-R = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , poly-markdown - , poly-noweb - , polymode }: - melpaBuild { - pname = "poly-R"; - ename = "poly-R"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-R"; - rev = "0443c89b4d2bc2ed235a0c017109c2dbd342aa02"; - sha256 = "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-R"; - sha256 = "1v2was6pdynwm22b4n2hkwyrr0c0iir9kp1wz4hjab8haqxz68ii"; - name = "recipe"; - }; - packageRequires = [ emacs poly-markdown poly-noweb polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-R"; - license = lib.licenses.free; - }; - }) {}; - poly-ansible = callPackage ({ ansible-doc - , fetchFromGitLab - , fetchurl - , jinja2-mode - , lib - , melpaBuild - , polymode - , yaml-mode }: - melpaBuild { - pname = "poly-ansible"; - ename = "poly-ansible"; - version = "0.2.1"; - src = fetchFromGitLab { - owner = "mavit"; - repo = "poly-ansible"; - rev = "01c9ec1d8a933fa0b2711940d29331d58c27d2a7"; - sha256 = "02ff0df8bn5cwvnpc2862wsii2xvjh0waymgiybm8j829x1awjp9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6d8beef5daa1804f68c30138cb03b5085a282c34/recipes/poly-ansible"; - sha256 = "158z3nbqgrh71myyp4l263lw1gn4iiwxv8pl7fdlyp80hz5zs60y"; - name = "recipe"; - }; - packageRequires = [ ansible-doc jinja2-mode polymode yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/poly-ansible"; - license = lib.licenses.free; - }; - }) {}; - poly-erb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-erb"; - ename = "poly-erb"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-erb"; - rev = "304204f415b9e46ee36b64531b7d170540828335"; - sha256 = "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-erb"; - sha256 = "01c1z2jll497k1y8835pp54n121y0gkyz1pdxcdjjqv7ia8jwfyy"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-erb"; - license = lib.licenses.free; - }; - }) {}; - poly-markdown = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , markdown-mode - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-markdown"; - ename = "poly-markdown"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-markdown"; - rev = "b0de1a9f3e4d7191b1b23b65ebf03dd0ac007afc"; - sha256 = "0b6wlmhrpcw9g8rbw7q7k5fr2lgcp1rpy7d9p9f0gzn52yvcr4dr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-markdown"; - sha256 = "0pxai5x2vz6j742s3bpcy82dxja6441fsgclhz1hbv2ykazbm141"; - name = "recipe"; - }; - packageRequires = [ emacs markdown-mode polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-markdown"; - license = lib.licenses.free; - }; - }) {}; - poly-noweb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-noweb"; - ename = "poly-noweb"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-noweb"; - rev = "4e65cb22d6bca901021205257f867f868989c665"; - sha256 = "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-noweb"; - sha256 = "1692js29wdjpxvcbcaxysbsq6pxdqr38frqf88ksldlz35cmy62b"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-noweb"; - license = lib.licenses.free; - }; - }) {}; - poly-org = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-org"; - ename = "poly-org"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-org"; - rev = "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f"; - sha256 = "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-org"; - sha256 = "1xrhdjmz3p5d3sgbfpmf6wksa1cpxqhy1wg17b5x8ah4w4yhpdca"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-org"; - license = lib.licenses.free; - }; - }) {}; - poly-rst = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-rst"; - ename = "poly-rst"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-rst"; - rev = "1a7d38e1c1d35cf64e4dad408db486a8e1931e61"; - sha256 = "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3fb89f58903245a8df75060ddd695a05cedb322/recipes/poly-rst"; - sha256 = "08sdnjb5zvlynyxkmajn1j9gnjdjj81ycid9ziydvrb7hb88x2m4"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-rst"; - license = lib.licenses.free; - }; - }) {}; - poly-ruby = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode }: - melpaBuild { - pname = "poly-ruby"; - ename = "poly-ruby"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "poly-ruby.el"; - rev = "794ebb926ace23e9c1398da934701951432dcea2"; - sha256 = "1ffm81hg1gah7hb9x556hda5g4j3gk4c986q9gaacvfizqak3gyy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68213703359324d09553a2164f1f6ecca7c16854/recipes/poly-ruby"; - sha256 = "0d8s6bl5ynx0r5cwvfkd52rksiq5kdyrgbxds56r8ls6cfkwqngg"; - name = "recipe"; - }; - packageRequires = [ emacs polymode ]; - meta = { - homepage = "https://melpa.org/#/poly-ruby"; - license = lib.licenses.free; - }; - }) {}; - poly-slim = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , polymode - , slim-mode }: - melpaBuild { - pname = "poly-slim"; - ename = "poly-slim"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "poly-slim"; - rev = "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d"; - sha256 = "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/poly-slim"; - sha256 = "15nh0d8y79rwc24akxfpf346jypadfgjjn6vlgaj6xjnj7wsp7ax"; - name = "recipe"; - }; - packageRequires = [ emacs polymode slim-mode ]; - meta = { - homepage = "https://melpa.org/#/poly-slim"; - license = lib.licenses.free; - }; - }) {}; - polymode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "polymode"; - ename = "polymode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "polymode"; - repo = "polymode"; - rev = "82a0c3d71cc02e32a347033b3f42afeac4e43f66"; - sha256 = "04v0gnzfsjb50bgly6kvpryx8cyzwjaq2llw4qv9ijw1l6ixmq3b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d/recipes/polymode"; - sha256 = "15i9masklpy4iwskc7dzqjhb430ggn0496z4wb1zjj0b9xx4wj66"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/polymode"; - license = lib.licenses.free; - }; - }) {}; - pomidor = callPackage ({ alert - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pomidor"; - ename = "pomidor"; - version = "0.3"; - src = fetchFromGitHub { - owner = "TatriX"; - repo = "pomidor"; - rev = "590e64d316d9210bd00cb4eb39d2f07ddc16809a"; - sha256 = "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e0d4f313081594df23f357c40feb456847d8bd0/recipes/pomidor"; - sha256 = "0pdzipyza98dhnz6am8lrmz8fh3p1c21v2mhs56fb9lwyvcgv8fi"; - name = "recipe"; - }; - 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"; - ename = "pony-snippets"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "pony-snippets"; - rev = "56018b23a11563c6766ed706024b22aa5a4556b4"; - sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/pony-snippets"; - sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/pony-snippets"; - license = lib.licenses.free; - }; - }) {}; - ponylang-mode = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ponylang-mode"; - ename = "ponylang-mode"; - version = "0.0.11"; - src = fetchFromGitHub { - owner = "SeanTAllen"; - repo = "ponylang-mode"; - rev = "963abdcdb398b71fb13a4f7d2ffde23eb20e2a23"; - sha256 = "1h0y6x4h7higwdq569h2lk0iddd23c3csqjk7y5phvc0lq812xs0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d51adec3c6519d6ffe9b3f7f8a86b4dbc2c9817/recipes/ponylang-mode"; - sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/ponylang-mode"; - license = lib.licenses.free; - }; - }) {}; - pophint = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , popup - , yaxception }: - melpaBuild { - pname = "pophint"; - ename = "pophint"; - version = "0.9.3"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-pophint"; - rev = "28dc6a76e726f371bcca3160c27ae2017324399c"; - sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0055c2887acbbd8a2803bf3f81ac2cc444cc805a/recipes/pophint"; - sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; - name = "recipe"; - }; - packageRequires = [ log4e popup yaxception ]; - meta = { - homepage = "https://melpa.org/#/pophint"; - license = lib.licenses.free; - }; - }) {}; - popup = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "popup"; - ename = "popup"; - version = "0.5.3"; - src = fetchFromGitHub { - owner = "auto-complete"; - repo = "popup-el"; - rev = "46632ab9652dacad56fd961cd6def25a015170ae"; - sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/083fb071191bccd6feb3fb84569373a597440fb1/recipes/popup"; - sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/popup"; - license = lib.licenses.free; - }; - }) {}; - popup-complete = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "popup-complete"; - ename = "popup-complete"; - version = "0.2"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-popup-complete"; - rev = "e362d4a005b36646ffbaa6be604e9e31bc406ca9"; - sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b43b85f90c476a3b88f94927a7db90bdc72cd171/recipes/popup-complete"; - sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/popup-complete"; - license = lib.licenses.free; - }; - }) {}; - popup-imenu = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , flx-ido - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "popup-imenu"; - ename = "popup-imenu"; - version = "0.6"; - src = fetchFromGitHub { - owner = "ancane"; - repo = "popup-imenu"; - rev = "c5e2e69adbd3a630e4cb750965a1aee8c10c1f09"; - sha256 = "0vn0jli0ya7xnapifkgzynbnh3rpnzb82j5k9bla2j4miqfc6cg8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5ca5d65d6a9c7ef3fa2684271fe087dc132d3a61/recipes/popup-imenu"; - sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; - name = "recipe"; - }; - packageRequires = [ dash flx-ido popup ]; - meta = { - homepage = "https://melpa.org/#/popup-imenu"; - license = lib.licenses.free; - }; - }) {}; - popwin = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "popwin"; - ename = "popwin"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "popwin-el"; - rev = "95dea14c60019d6cccf9a3b33e0dec4e1f22c304"; - sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3d6a8b734e0820fd904c215a83fe5519496dc3/recipes/popwin"; - sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/popwin"; - license = lib.licenses.free; - }; - }) {}; - pos-tip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pos-tip"; - ename = "pos-tip"; - version = "0.4.6"; - src = fetchFromGitHub { - owner = "pitkali"; - repo = "pos-tip"; - rev = "1b81694d1dc29253db0e855b82563f84a32b38d4"; - sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/306e9978d2a071548cc9d8c531a1ce6c6c6b99aa/recipes/pos-tip"; - sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pos-tip"; - license = lib.licenses.free; - }; - }) {}; - posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "posframe"; - ename = "posframe"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "posframe"; - rev = "fc90a1a558200e5c3688c65add9afdea695a2c10"; - sha256 = "1fhjxj7gi2pj5rdnmf0gddiwd8iifgjgjp01c01npz1gwwixyqh3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fa3488f2ede1201faf4a147313456ed90271f050/recipes/posframe"; - sha256 = "02chwkc7gn7fxaaxsz9msmrhrd62bji5hhb71kdm019x8d84z06w"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/posframe"; - license = lib.licenses.free; - }; - }) {}; - powerline = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "powerline"; - ename = "powerline"; - version = "2.4"; - src = fetchFromGitHub { - owner = "milkypostman"; - repo = "powerline"; - rev = "d3dcfc57a36111d8e0b037d90c6ffce85ce071b2"; - sha256 = "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f805053cd4dd9ed53ee0df17ad69429bc62325bb/recipes/powerline"; - sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/powerline"; - license = lib.licenses.free; - }; - }) {}; - powershell = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "powershell"; - ename = "powershell"; - version = "0.1"; - src = fetchFromGitHub { - owner = "jschaf"; - repo = "powershell.el"; - rev = "4865dff0d20a8b36569f7f5d2634a7e27e8f3a65"; - sha256 = "1zqsnyfkxvaagrasxm86pxyv6qz9h3149p3k61nq1095b9c3sgqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7002c50f2734675134791916aa9d8b82b4582fcb/recipes/powershell"; - sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/powershell"; - license = lib.licenses.free; - }; - }) {}; - ppd-sr-speedbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , project-persist-drawer - , sr-speedbar }: - melpaBuild { - pname = "ppd-sr-speedbar"; - ename = "ppd-sr-speedbar"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "ppd-sr-speedbar"; - rev = "19d3e924407f40a6bb38c8fe427a159af755adce"; - sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f930f54048d06f6a97824b66fbb74649eed40b54/recipes/ppd-sr-speedbar"; - sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; - name = "recipe"; - }; - packageRequires = [ project-persist-drawer sr-speedbar ]; - meta = { - homepage = "https://melpa.org/#/ppd-sr-speedbar"; - license = lib.licenses.free; - }; - }) {}; - prassee-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prassee-theme"; - ename = "prassee-theme"; - version = "1.0"; - src = fetchFromGitHub { - owner = "prassee"; - repo = "prassee-emacs-theme"; - rev = "9850c806d39acffdef8e91e1a31b54a7620cbae3"; - sha256 = "1agghimrmh4kh71y51l6lzampjl15ac6jxrrhdviw95c3rxfll4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15425b576045af1c508912e2091daf475b80b429/recipes/prassee-theme"; - sha256 = "1j0817hxxri6mq9pplgwf5jp2dagk6hay7g1a1lgz4qgkf5jnshs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prassee-theme"; - license = lib.licenses.free; - }; - }) {}; - prescient = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prescient"; - ename = "prescient"; - version = "3.1"; - src = fetchFromGitHub { - owner = "raxod502"; - repo = "prescient.el"; - rev = "ae414dde56f3430867faf41c04e4c3df75f9c960"; - sha256 = "1cdjvlwlvxxazz7hlxgvdp0pznvj1gzqa2r6k4im0cpdrnnng6j6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ec02349e31531c347e4a43fbde56ae4386898cc6/recipes/prescient"; - sha256 = "04js3hblavfrc6kqp942x5yjdl3ndazf3n64p83423ldsmhbip6s"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/prescient"; - license = lib.licenses.free; - }; - }) {}; - presentation = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "presentation"; - ename = "presentation"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "emacs-presentation-mode"; - rev = "e9e402d05a8b6d9e1e7fe853503c92fea4cf65cb"; - sha256 = "10pvjdnb48fk663232qvh4gapk2yiz4iawpffzjrbs3amxh50bi7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/747afd0339215528bf104f778a13edacbac510b7/recipes/presentation"; - sha256 = "0zdpfvg6kbvi6b4lb7vbdjrkgk0j1q6gzyd0s2b0603fnyy4sqdg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/presentation"; - license = lib.licenses.free; - }; - }) {}; - pretty-hydra = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pretty-hydra"; - ename = "pretty-hydra"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "jerrypnz"; - repo = "major-mode-hydra.el"; - rev = "ad709e5aadb129d3e4087f5246aa0d6127e73f30"; - sha256 = "1d2rf3as2r93a7l3n0zdksb6kh2naw5zg6mbpj03k79zldqkkqhk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865917fcc75c4118afc89b8bcc20ebdb6302f15d/recipes/pretty-hydra"; - sha256 = "0gp4cbffpa17svs7fzxighyly7c8brsn3avv3hqvd590kkz3fkri"; - name = "recipe"; - }; - packageRequires = [ dash emacs hydra s ]; - meta = { - homepage = "https://melpa.org/#/pretty-hydra"; - license = lib.licenses.free; - }; - }) {}; - pretty-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pretty-mode"; - ename = "pretty-mode"; - version = "2.0.3"; - src = fetchFromGitHub { - owner = "pretty-mode"; - repo = "pretty-mode"; - rev = "4ba8fceb7dd733361ed975d80ac2caa3612fa78b"; - sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/pretty-mode"; - sha256 = "0zm6azbl70qmq2ybi576wfs3mx0ny54mf97b94ac501miv4fv0mq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pretty-mode"; - license = lib.licenses.free; - }; - }) {}; - processing-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "processing-mode"; - ename = "processing-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "ptrv"; - repo = "processing2-emacs"; - rev = "228bc56369675787d60f637223b50ce3a1afebbd"; - sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba59561e8a2f259fde170a79844af5e1ef5ed34f/recipes/processing-mode"; - sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/processing-mode"; - license = lib.licenses.free; - }; - }) {}; - prodigy = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "prodigy"; - ename = "prodigy"; - version = "0.7.0"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "prodigy.el"; - rev = "3bacca898db9b3493883c95f923a87eb1ce807eb"; - sha256 = "1whnk1902f8q03clm9xlfl47gkpsywf3mx0ykp70c1q496ab39qj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/prodigy"; - sha256 = "0lfxb80jqjnzssjs6l511jcsmhkpzb5rh5czrb16dkqcz0cl5b2p"; - name = "recipe"; - }; - packageRequires = [ dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/prodigy"; - license = lib.licenses.free; - }; - }) {}; - prog-fill = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prog-fill"; - ename = "prog-fill"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "prog-fill"; - rev = "3fbf7da6dd826e95c9077d659566ee29814a31d8"; - sha256 = "167is1hbv3nsskz26g9q3zdndqsw9d3rwhbasj0r7a3wabpr8j4r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/90d680ed481688c9899adb28fbd9a22a17fa8943/recipes/prog-fill"; - sha256 = "0wnqzkzhaywcyw93z86pngpycsrd1mi79psmck6qbhms1aia79p3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/prog-fill"; - license = lib.licenses.free; - }; - }) {}; - project-explorer = callPackage ({ cl-lib ? null - , emacs - , es-lib - , es-windows - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-explorer"; - ename = "project-explorer"; - version = "0.14.3"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "project-explorer"; - rev = "7c2cc86a81f679dda355110f916366b64893a5d4"; - sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2e5d686b8a18c7a17965ff6c5af8f5817b7ab31/recipes/project-explorer"; - sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs es-lib es-windows ]; - meta = { - homepage = "https://melpa.org/#/project-explorer"; - license = lib.licenses.free; - }; - }) {}; - project-persist = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "project-persist"; - ename = "project-persist"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "project-persist"; - rev = "26d9435bef44da2a1b0892eba822f9f487b98eec"; - sha256 = "0ja2pnbw11a2gwywfyfbdpk8rkm8imy04wkshpnlh0nwn7lf0clm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd81d1f8a30ed951ed94b9a4db13a2f7735ea878/recipes/project-persist"; - sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/project-persist"; - license = lib.licenses.free; - }; - }) {}; - project-persist-drawer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , project-persist }: - melpaBuild { - pname = "project-persist-drawer"; - ename = "project-persist-drawer"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "rdallasgray"; - repo = "project-persist-drawer"; - rev = "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626"; - sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23084af52d2243016eee73a5ee0cd3e945eec71d/recipes/project-persist-drawer"; - sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; - name = "recipe"; - }; - packageRequires = [ project-persist ]; - meta = { - homepage = "https://melpa.org/#/project-persist-drawer"; - license = lib.licenses.free; - }; - }) {}; - projectile = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "projectile"; - ename = "projectile"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "projectile"; - rev = "823c0aa9ffd1e8e03b20efe97c16cfb66e2c56c5"; - sha256 = "16y0zcqydfag4igwcbljqymkwjgjxdh97ii616wgdsyjgk9xxd4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/projectile"; - sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; - name = "recipe"; - }; - packageRequires = [ emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/projectile"; - license = lib.licenses.free; - }; - }) {}; - projectile-git-autofetch = callPackage ({ alert - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile }: - melpaBuild { - pname = "projectile-git-autofetch"; - ename = "projectile-git-autofetch"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "andrmuel"; - repo = "projectile-git-autofetch"; - rev = "da02069d906e6e7f28ea1dd6a9196529315a5cba"; - sha256 = "106kj49rxsrdh6awvql3zyr3ramdcn0aaq4rmbmd45hz9ij7x1wh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fdfdeb69fd78fc1bb2c62392f860a8c434f1762/recipes/projectile-git-autofetch"; - sha256 = "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n"; - name = "recipe"; - }; - packageRequires = [ alert projectile ]; - meta = { - homepage = "https://melpa.org/#/projectile-git-autofetch"; - license = lib.licenses.free; - }; - }) {}; - projectile-rails = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , inf-ruby - , inflections - , lib - , melpaBuild - , projectile - , rake }: - melpaBuild { - pname = "projectile-rails"; - ename = "projectile-rails"; - version = "0.17.0"; - src = fetchFromGitHub { - owner = "asok"; - repo = "projectile-rails"; - rev = "78f5cbe2c212ce19d4732212c46472d1c412659f"; - sha256 = "09aby7yxk28rqz0vaps889idl5n41wj72pa0dr7bqmidq8i5jv4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b16532bb8d08f7385bca4b83ab4e030d7b453524/recipes/projectile-rails"; - sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; - name = "recipe"; - }; - packageRequires = [ emacs f inf-ruby inflections projectile rake ]; - meta = { - homepage = "https://melpa.org/#/projectile-rails"; - license = lib.licenses.free; - }; - }) {}; - projectile-ripgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , ripgrep }: - melpaBuild { - pname = "projectile-ripgrep"; - ename = "projectile-ripgrep"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "ripgrep.el"; - rev = "73595f1364f2117db49e1e4a49290bd6d430e345"; - sha256 = "1a5rdpmvsgsjlc9sywism9pq7jd6n9qbcdsvpbfkq1npwhpifkbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/195f340855b403128645b59c8adce1b45e90cd18/recipes/projectile-ripgrep"; - sha256 = "1iczizyayql40wcljvpc1mvfvn9r28b1dkrkcmdxif732gd01jjg"; - name = "recipe"; - }; - packageRequires = [ projectile ripgrep ]; - meta = { - homepage = "https://melpa.org/#/projectile-ripgrep"; - license = lib.licenses.free; - }; - }) {}; - projectile-sift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , sift }: - melpaBuild { - pname = "projectile-sift"; - ename = "projectile-sift"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "sift.el"; - rev = "8c3f3d14a351a2394027d72ee0599aa73b9f0d13"; - sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a730e1331b0486c4bd2d309b85d2f8810489eb47/recipes/projectile-sift"; - sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; - name = "recipe"; - }; - packageRequires = [ projectile sift ]; - meta = { - homepage = "https://melpa.org/#/projectile-sift"; - license = lib.licenses.free; - }; - }) {}; - projectile-trailblazer = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , inf-ruby - , inflections - , lib - , melpaBuild - , projectile - , rake }: - melpaBuild { - pname = "projectile-trailblazer"; - ename = "projectile-trailblazer"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "micdahl"; - repo = "projectile-trailblazer"; - rev = "79299498d74876f2ac3fe8075716b39a5bdd04cd"; - sha256 = "1lkj9jdr3g7nl80fxvic6g5cn7vbkyxys7m3kcmd6xa9mq7nvci4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9c6f2f92ff99e7a3241003dc396f978f3916c8a/recipes/projectile-trailblazer"; - sha256 = "18cijb5c1ym5kn2g2apbijbfd3aqhrraki8vv9bk8rvi7wmm6qj4"; - name = "recipe"; - }; - packageRequires = [ emacs f inf-ruby inflections projectile rake ]; - meta = { - homepage = "https://melpa.org/#/projectile-trailblazer"; - license = lib.licenses.free; - }; - }) {}; - projectile-variable = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "projectile-variable"; - ename = "projectile-variable"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "projectile-variable"; - rev = "8d348ac70bdd6dc320c13a12941b32b38140e264"; - sha256 = "0l38nldx6lwjb7mxixykiyj10xwb35249dxfg0k2wkmb2vy1fkxs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/projectile-variable"; - sha256 = "15qc5n91nxyfvb100iyihfmrdr57qgw6098yv3nfqgw3zx1qchdw"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/projectile-variable"; - license = lib.licenses.free; - }; - }) {}; - projekt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "projekt"; - ename = "projekt"; - version = "0.1"; - src = fetchFromGitHub { - owner = "tekai"; - repo = "projekt"; - rev = "107232c191375b59d065354470d0af83062e2a4c"; - sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2a854ed4fef114861bcc7814cd064c16d3c074c/recipes/projekt"; - sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/projekt"; - license = lib.licenses.free; - }; - }) {}; - prompt-text = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prompt-text"; - ename = "prompt-text"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "prompt-text-el"; - rev = "3cc486c070b7a7c806c8d6002f9ba4979f56107d"; - sha256 = "1hv4p1x5sli5lplm8hl6frxmwvbc1vmamgj9m2ryk17ykqmr05r5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061/recipes/prompt-text"; - sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/prompt-text"; - license = lib.licenses.free; - }; - }) {}; - proof-general = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "proof-general"; - ename = "proof-general"; - version = "4.4"; - src = fetchFromGitHub { - owner = "ProofGeneral"; - repo = "PG"; - rev = "771cab48b2f9ea2ae3fa8f944d0e36a805bf9f3b"; - sha256 = "0bdfk91wf71z80mdfnl8hpinripndcjgdkz854zil6521r84nqk8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/135c8f2a04739145b500b8742a697907e398d270/recipes/proof-general"; - sha256 = "10zif9ax4d3m8sa9y2xqz7g24xa2r3m2x5l0zqa06wm4afq29p87"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/proof-general"; - license = lib.licenses.free; - }; - }) {}; - prop-menu = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "prop-menu"; - ename = "prop-menu"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "prop-menu-el"; - rev = "50b102c1c0935fd3e0c465feed7f27d66b21cdf3"; - sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3d3a013cc9c489987fe689c8d73bbaa3445bdeb3/recipes/prop-menu"; - sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/prop-menu"; - license = lib.licenses.free; - }; - }) {}; - protobuf-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "protobuf-mode"; - ename = "protobuf-mode"; - version = "3.8.0"; - src = fetchFromGitHub { - owner = "google"; - repo = "protobuf"; - rev = "4674cc7c073f1b8d5efd2a42ffcf3ca30a907bfe"; - sha256 = "0sspwvwxyqq9aibf3piv6cp5vb28w2fnfk6x7wkmaiy7a4gcklcv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4e7f5f641251e17add561991d3bcf1fde23467b/recipes/protobuf-mode"; - sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/protobuf-mode"; - license = lib.licenses.free; - }; - }) {}; - protocols = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "protocols"; - ename = "protocols"; - version = "1.6"; - src = fetchFromGitHub { - owner = "davep"; - repo = "protocols.el"; - rev = "f5549f5d873a683af45a0e19c732524d5b964026"; - sha256 = "0v9is6r307814gvrnch2d3mvikd7j8lnmsqb2c3gj6gvfj4p9y7r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c9a75671a00e9196d00b08911232aac87fd8c83/recipes/protocols"; - sha256 = "1wg3qh8a1ms82lkzz4i1bk787147a8agcj8rszj1zfvwg0ckqq1a"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/protocols"; - license = lib.licenses.free; - }; - }) {}; - psci = callPackage ({ dash - , deferred - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , purescript-mode - , s }: - melpaBuild { - pname = "psci"; - ename = "psci"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "purescript-emacs"; - repo = "emacs-psci"; - rev = "8c2d5a0ba604ec593f83f632b2830a87f41f84d4"; - sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3451719ce5096383db082917716a5ed8346fc186/recipes/psci"; - sha256 = "1iwkr58b910vrwwxyk00psy74vp201vmm3b0cm4k5fh3glr31vp9"; - name = "recipe"; - }; - packageRequires = [ dash deferred f purescript-mode s ]; - meta = { - homepage = "https://melpa.org/#/psci"; - license = lib.licenses.free; - }; - }) {}; - psession = callPackage ({ async - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "psession"; - ename = "psession"; - version = "1.5"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "psession"; - rev = "702d20897c0839568201bc6921d5f0f80b8778c0"; - sha256 = "0ynd69fyjpgs6rs3kkznpx19kmdmd25wb46bj9zq61gj138b6p33"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/669342d2b3e6cb622f196571d776a98ec8f3b1d3/recipes/psession"; - sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; - name = "recipe"; - }; - packageRequires = [ async cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/psession"; - license = lib.licenses.free; - }; - }) {}; - psysh = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "psysh"; - ename = "psysh"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "psysh.el"; - rev = "4709a57cdcf7103c4a606be89849ea3ead2d38a5"; - sha256 = "1apf6mnqp9bg5dfykgvsn02z0xpyx6k34sd2pvicicig7w09kzvb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/psysh"; - sha256 = "00rzfw8nlbcmfbjnzbfl08136dhgvrrn9g1s9l623xgpbcay63sg"; - name = "recipe"; - }; - packageRequires = [ emacs f s ]; - meta = { - homepage = "https://melpa.org/#/psysh"; - license = lib.licenses.free; - }; - }) {}; - pt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pt"; - ename = "pt"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "bling"; - repo = "pt.el"; - rev = "a539dc11ecb2d69760ff50f76c96f49895ce1e1e"; - sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/34c51783af154f203489f5f7df7012ca61932caa/recipes/pt"; - sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pt"; - license = lib.licenses.free; - }; - }) {}; - pubmed = callPackage ({ deferred - , emacs - , esxml - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pubmed"; - ename = "pubmed"; - version = "0.2.1"; - src = fetchFromGitLab { - owner = "fvdbeek"; - repo = "emacs-pubmed"; - rev = "67fbb6e8834feda85e8301adc5c17d9e38395d6a"; - sha256 = "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee84560c15e7389e902fb4a4c548c08be231de82/recipes/pubmed"; - sha256 = "048kh442dnzgwz4wml2a5griav8zyrfzn5b43n9ky84pm7lgcxp3"; - name = "recipe"; - }; - packageRequires = [ deferred emacs esxml s ]; - meta = { - homepage = "https://melpa.org/#/pubmed"; - license = lib.licenses.free; - }; - }) {}; - pug-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pug-mode"; - ename = "pug-mode"; - version = "1.0.7"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-pug-mode"; - rev = "96718f802dad3acd5a3f770b1452b81e39f77d92"; - sha256 = "1jqj3qfc4686v09am869ls1k3jwy397646cql4a8dg7crjdpf023"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b3710aac9f3df3a23238af1f969c462b3692f260/recipes/pug-mode"; - sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/pug-mode"; - license = lib.licenses.free; - }; - }) {}; - punctuality-logger = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "punctuality-logger"; - ename = "punctuality-logger"; - version = "0.8"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "punctuality-logger"; - rev = "708cae8e67dbae293c7c4be0ca5e49d76fac6714"; - sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/punctuality-logger"; - sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/punctuality-logger"; - license = lib.licenses.free; - }; - }) {}; - pungi = callPackage ({ fetchFromGitHub - , fetchurl - , jedi - , lib - , melpaBuild - , pyvenv }: - melpaBuild { - pname = "pungi"; - ename = "pungi"; - version = "1.1"; - src = fetchFromGitHub { - owner = "mgrbyte"; - repo = "pungi"; - rev = "41c9f8b7795e083bfd63ba0d06c789c250998723"; - sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d504c6028c029268d380c0eac25b1c4886aa6e98/recipes/pungi"; - sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; - name = "recipe"; - }; - packageRequires = [ jedi pyvenv ]; - meta = { - homepage = "https://melpa.org/#/pungi"; - license = lib.licenses.free; - }; - }) {}; - puppet-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info }: - melpaBuild { - pname = "puppet-mode"; - ename = "puppet-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "voxpupuli"; - repo = "puppet-mode"; - rev = "d943149691abd7b66c85d58aee9657bfcf822c02"; - sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1de94f0ab39ab18dfd0b050e337f502d894fb3ad/recipes/puppet-mode"; - sha256 = "1qn71j6fkwnrsq1s6fhfcxhic3rbspg5cy9n7jv451ji7ywyhakf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs pkg-info ]; - meta = { - homepage = "https://melpa.org/#/puppet-mode"; - license = lib.licenses.free; - }; - }) {}; - pushbullet = callPackage ({ fetchFromGitHub - , fetchurl - , grapnel - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "pushbullet"; - ename = "pushbullet"; - version = "0.5.2"; - src = fetchFromGitHub { - owner = "theanalyst"; - repo = "revolver"; - rev = "73c59a0f1dc04875b3e5a2c8afbc26c32128e445"; - sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2649d60dd1ed3b3171ff1448b89967c5f7759a0/recipes/pushbullet"; - sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; - name = "recipe"; - }; - packageRequires = [ grapnel json ]; - meta = { - homepage = "https://melpa.org/#/pushbullet"; - license = lib.licenses.free; - }; - }) {}; - py-autopep8 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-autopep8"; - ename = "py-autopep8"; - version = "2016.1"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-autopep8.el"; - rev = "68e12d8788c91c7ec53a68acf1d23adb2ffa4788"; - sha256 = "16fmym6hvi2lx0mmbrrhld1vzki5iqfqx2m0xa9021gjjzb33lw6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c400e0f3cfe70821e621fe85d239b4f6596d5171/recipes/py-autopep8"; - sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-autopep8"; - license = lib.licenses.free; - }; - }) {}; - py-isort = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-isort"; - ename = "py-isort"; - version = "2016.1"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-isort.el"; - rev = "e67306f459c47c53a65604e4eea88a3914596560"; - sha256 = "08i55gv392wc12x8v3dca0dmz8a8p9ljsqhyajsb6qv1k120wqhx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44377d11da07b49c8dc6887c948cc5ddfc065bd2/recipes/py-isort"; - sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-isort"; - license = lib.licenses.free; - }; - }) {}; - py-yapf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "py-yapf"; - ename = "py-yapf"; - version = "2016.1"; - src = fetchFromGitHub { - owner = "paetzke"; - repo = "py-yapf.el"; - rev = "a878304202ad827a1f3de3dce1badd9ca8731146"; - sha256 = "1mmzqdigxx46my0h9497l25cjydy3vykg6slxkch4dzvhhlbap48"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3306c6906d4b21868b9407de27fbebdaed3d00d5/recipes/py-yapf"; - sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/py-yapf"; - license = lib.licenses.free; - }; - }) {}; - pycarddavel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "pycarddavel"; - ename = "pycarddavel"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "pycarddavel"; - rev = "6ead921066fa0156f20155b7126e5875ce11c328"; - sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9b3d2cd943f26dcff322efb16d55dd3bd71dea07/recipes/pycarddavel"; - sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/pycarddavel"; - license = lib.licenses.free; - }; - }) {}; - pydoc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pydoc"; - ename = "pydoc"; - version = "0.1"; - src = fetchFromGitHub { - owner = "statmobile"; - repo = "pydoc"; - rev = "5392248e33d83ef05d3b2809b0c6b207786b2644"; - sha256 = "1m0jb5pk1a1ww5jx2y5nz21by4dh7nlnhdn6bigz53ra449rrxii"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c4988a66040ddf659492bdb0ae2b9617c342c69/recipes/pydoc"; - sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pydoc"; - license = lib.licenses.free; - }; - }) {}; - pyenv-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pythonic }: - melpaBuild { - pname = "pyenv-mode"; - ename = "pyenv-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "pyenv-mode"; - rev = "b96c15fa1b83cad855e472eda06319ad35e34513"; - sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/pyenv-mode"; - sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; - name = "recipe"; - }; - packageRequires = [ pythonic ]; - meta = { - homepage = "https://melpa.org/#/pyenv-mode"; - license = lib.licenses.free; - }; - }) {}; - pyim = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , pyim-basedict }: - melpaBuild { - pname = "pyim"; - ename = "pyim"; - version = "1.8"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim"; - rev = "8648d467d79b3bf1c3a99623f9329939cacc40da"; - sha256 = "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim"; - sha256 = "1ly4xhfr3irlrwvv20j3kyz98g7barridi9n8jppc0brh2dlv98j"; - name = "recipe"; - }; - packageRequires = [ async emacs popup pyim-basedict ]; - meta = { - homepage = "https://melpa.org/#/pyim"; - license = lib.licenses.free; - }; - }) {}; - pyim-basedict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyim-basedict"; - ename = "pyim-basedict"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim-basedict"; - rev = "f71d0ffd9d2421f2b51cd0ccb89fd9eb43c09585"; - sha256 = "0576r8ap9gp91ycjf1d47pn13kxp0f9fysn09zlq44hr0s1y2y5d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/151a0af91a58e27f724854d85d5dd9668229fe8d/recipes/pyim-basedict"; - sha256 = "1y8cmccli3im5bvws2h582z7k4nj6p8brgypl8h09y3na6yjy2z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pyim-basedict"; - license = lib.licenses.free; - }; - }) {}; - pyim-wbdict = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pyim }: - melpaBuild { - pname = "pyim-wbdict"; - ename = "pyim-wbdict"; - version = "0.1"; - src = fetchFromGitHub { - owner = "tumashu"; - repo = "pyim-wbdict"; - rev = "114489ed97e825ae11a8d09da6e873820cf23106"; - sha256 = "187wx418pj4h8p8baf4943v9dsb6mfbn0n19r8xiil1z2cmm4ygc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ab1cb8bc623d1f12f78fa42ce8b16514e5b07c51/recipes/pyim-wbdict"; - sha256 = "1s0i9xcnpy8kxqhsv7rqxabv5vnxsciyng398mn32mknib03315i"; - name = "recipe"; - }; - packageRequires = [ pyim ]; - meta = { - homepage = "https://melpa.org/#/pyim-wbdict"; - license = lib.licenses.free; - }; - }) {}; - pyimport = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pyimport"; - ename = "pyimport"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "pyimport"; - rev = "c99d2fd9ca3963deac13a51ce0123f70d303af27"; - sha256 = "19gxiaikwwfjz65nbbbrwgh91d66s76yzrkls58jzjwghz56pbv3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71bc39b06cee37814960ef31c6a2056261b802fb/recipes/pyimport"; - sha256 = "1qwigplawknykw1kbm5babyyknzn43ddhbdpahvzh4wy3kycn6n8"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/pyimport"; - license = lib.licenses.free; - }; - }) {}; - pynt = callPackage ({ deferred - , ein - , emacs - , epc - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "pynt"; - ename = "pynt"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ebanner"; - repo = "pynt"; - rev = "bc750cd244141005ea3b7bb87f75c6f6c5a5778f"; - sha256 = "0mj8lkc40iv8d6afl4dba7gsbi0mgnx9ivanvczq6pxp5d4kgfsn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fdb297084188a957a46dcd036e65d9d893044bea/recipes/pynt"; - sha256 = "07c0zc68r3pskn3bac3a8x5nrsykl90a1h22865g3i5vil76vvg3"; - name = "recipe"; - }; - packageRequires = [ deferred ein emacs epc helm ]; - meta = { - homepage = "https://melpa.org/#/pynt"; - license = lib.licenses.free; - }; - }) {}; - pytest-pdb-break = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pytest-pdb-break"; - ename = "pytest-pdb-break"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "poppyschmo"; - repo = "pytest-pdb-break"; - rev = "38840190dfbcb307778d079da5e2373525b3ac18"; - sha256 = "0887620iq8xn28aajx7z2pkgh19778w494n8icibwlk2mj2m3gxl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ed7d5d5e81818dad55edda73fbeca8c5021b932/recipes/pytest-pdb-break"; - sha256 = "0dxn53y9zjlip0bjynjql984wrf39pmg5fsx1qgsrj1bw78xqw26"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/pytest-pdb-break"; - license = lib.licenses.free; - }; - }) {}; - python-environment = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-environment"; - ename = "python-environment"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-python-environment"; - rev = "401006584e32864a10c69d29f14414828909362e"; - sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/283155ad56cd8eda416c83a9b7f8d43d4d1570c2/recipes/python-environment"; - sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; - name = "recipe"; - }; - packageRequires = [ deferred ]; - meta = { - homepage = "https://melpa.org/#/python-environment"; - license = lib.licenses.free; - }; - }) {}; - python-mode = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "python-mode"; - ename = "python-mode"; - version = "6.2.3"; - src = fetchFromGitLab { - owner = "python-mode-devs"; - repo = "python-mode"; - rev = "a0a534639bc6142c2c2f44bd7ca5878ad5f79518"; - sha256 = "0sj2hfjwpcdg9djsgl3y5aa3gnvl4s87477x6a9d14m11db3p7ml"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82861e1ab114451af5e1106d53195afd3605448a/recipes/python-mode"; - sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python-mode"; - license = lib.licenses.free; - }; - }) {}; - python-pytest = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild - , projectile - , s }: - melpaBuild { - pname = "python-pytest"; - ename = "python-pytest"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "wbolster"; - repo = "emacs-python-pytest"; - rev = "6772ecfaa86f0f4a1a66bfd3a454c9b11956de70"; - sha256 = "086jjygzdrcjfp7j70xs8jh8nq0xv496kza6iap7lyc3qf16b4kk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d95442748827911e082a55f4fd7c348a3757e274/recipes/python-pytest"; - sha256 = "0n97akqq7dss7rsww311ljh9w1hyc4j64wjmpxjlc9lg5aqwjbh4"; - name = "recipe"; - }; - packageRequires = [ - dash - dash-functional - emacs - magit-popup - projectile - s - ]; - meta = { - homepage = "https://melpa.org/#/python-pytest"; - license = lib.licenses.free; - }; - }) {}; - python-x = callPackage ({ fetchFromGitLab - , fetchurl - , folding - , lib - , melpaBuild - , python ? null }: - melpaBuild { - pname = "python-x"; - ename = "python-x"; - version = "1.0"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "python-x.el"; - rev = "e606469aafec2e6beda8c589540b88a5a6f6f33f"; - sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/python-x"; - sha256 = "03px1z27yhvc9084h9j2p0khvhkwmfxdskf0ndvz79ywp6nl7mb6"; - name = "recipe"; - }; - packageRequires = [ folding python ]; - meta = { - homepage = "https://melpa.org/#/python-x"; - license = lib.licenses.free; - }; - }) {}; - pythonic = callPackage ({ cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "pythonic"; - ename = "pythonic"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "proofit404"; - repo = "pythonic"; - rev = "c59a158942634d3c07e506b2376d96e8d5d1466f"; - sha256 = "0219s900kdpi3cxllvmwm8hb2lwqzikplq578f7pyxhzljjh2lma"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5589c55d459f15717914061d0f0f4caa32caa13c/recipes/pythonic"; - sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs f s ]; - meta = { - homepage = "https://melpa.org/#/pythonic"; - license = lib.licenses.free; - }; - }) {}; - pyvenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "pyvenv"; - ename = "pyvenv"; - version = "1.20"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "pyvenv"; - rev = "fa6a028349733b0ecb407c4cfb3a715b71931eec"; - sha256 = "1x052fsavb94x3scpqd6n9spqgzaahzbdxhg4qa5sy6hqsabn6zh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e37236b89b9705ba7a9d134b1fb2c3c003953a9b/recipes/pyvenv"; - sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/pyvenv"; - license = lib.licenses.free; - }; - }) {}; - qiita = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "qiita"; - ename = "qiita"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "gongo"; - repo = "qiita-el"; - rev = "542be60f1dbc67e8ec778e5d7790b863d3dbc151"; - sha256 = "0hp7c51d9d8l0cx0wdq7003clyf3k61dq8ns8zq6lfpbvaliq7yq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8065a58e297c50c031de97d2d80bce5857bd803/recipes/qiita"; - sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/qiita"; - license = lib.licenses.free; - }; - }) {}; - ql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ql"; - ename = "ql"; - version = "1.1"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "ql-el"; - rev = "d976414ba6aa576ad524b5ee5bfa620efd072258"; - sha256 = "138h4ndnzpphsmi4b8yw53mxc3rnqrj1c3jp8njx5pkmiqkp1q00"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/475bd8fd66c6d5b5c7e74aa2c4e094d313cc8303/recipes/ql"; - sha256 = "0wxjblqacs5nx2hyh7r6rlv1yngbhn6phn5rni4dw2dms98zj34z"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ql"; - license = lib.licenses.free; - }; - }) {}; - qml-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "qml-mode"; - ename = "qml-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "coldnew"; - repo = "qml-mode"; - rev = "6c5f33ba88ae010bf201a80ee8095e20a724558c"; - sha256 = "1sncsvzjfgmhp4m8w5jd4y51k24n2jfpgvrkd64wlhhzbj3wb947"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3abc88ddbb6b8ecafa45e75ceba9a1294ad88d4/recipes/qml-mode"; - sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/qml-mode"; - license = lib.licenses.free; - }; - }) {}; - qt-pro-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "qt-pro-mode"; - ename = "qt-pro-mode"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "qt-pro-mode"; - rev = "1e0052fcfb89c15cb47714c1546d4e8ec6e01ae6"; - sha256 = "11bwxq4nwfbnlk4clg0m8jh2xz0ldv4ggyaw645sy7hprvwkp8y4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e9af710be77ccde8ffa5f22168d2c8a06b73dd6a/recipes/qt-pro-mode"; - sha256 = "1k3ph9bqvvg6i6n623qrwdpsffs8w9rv9nihmlggb4w30dwqc9nf"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/qt-pro-mode"; - license = lib.licenses.free; - }; - }) {}; - quasi-monochrome-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quasi-monochrome-theme"; - ename = "quasi-monochrome-theme"; - version = "1.2"; - src = fetchFromGitHub { - owner = "lbolla"; - repo = "emacs-quasi-monochrome"; - rev = "68060dbbc0bbfe4924387392874186c5a29bb434"; - sha256 = "0zp2xr0bjfqrpb0bqczzick1vvbjmipjavrdi70kw6a9caynvq22"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a9c8498e4bcca19c4c24b2fd0db035c3da477e2a/recipes/quasi-monochrome-theme"; - sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/quasi-monochrome-theme"; - license = lib.licenses.free; - }; - }) {}; - quickrun = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quickrun"; - ename = "quickrun"; - version = "2.2.8"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-quickrun"; - rev = "70e93e06778f44113f405aedec6187b925311d57"; - sha256 = "0swbgsidq11w7vyjhf06dn8vsj06j9scj8n2dm9m7fasj0yh3ghw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/quickrun"; - sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quickrun"; - license = lib.licenses.free; - }; - }) {}; - quilt = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quilt"; - ename = "quilt"; - version = "0.5"; - src = fetchFromGitHub { - owner = "jstranik"; - repo = "emacs-quilt"; - rev = "161ce2d8ba225bccef0ea8ae4937251b8ccaa892"; - sha256 = "0r9j71rc2jcwfr6yqg8qx4fwypqg1d7p31af258ixygs3qy69x14"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28ad2d71574c1995287371cfd73648871b9271f0/recipes/quilt"; - sha256 = "0fgni5khjbxy28i2vdwhcvs0z0yx43ll0c4s8br4w7q9s0nlcvmv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/quilt"; - license = lib.licenses.free; - }; - }) {}; - quiz = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "quiz"; - ename = "quiz"; - version = "1.5"; - src = fetchFromGitHub { - owner = "davep"; - repo = "quiz.el"; - rev = "570bf53926d89282cdb9653bd5aa8fe968f92bbd"; - sha256 = "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23d547c0d69d8f5d1e9983e3669a63dffaede2b3/recipes/quiz"; - sha256 = "0pcjfhk109ifi834jw8lndwhpfcv764wym1dhiqhp5qd2vf431kg"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/quiz"; - license = lib.licenses.free; - }; - }) {}; - r-autoyas = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "r-autoyas"; - ename = "r-autoyas"; - version = "0.28"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "r-autoyas.el"; - rev = "563254f01ce530ca4c9be1f23395e3fd7d520ff9"; - sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a095d3a687055c6ac43a4338826542d14a25127/recipes/r-autoyas"; - sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/r-autoyas"; - license = lib.licenses.free; - }; - }) {}; - racer = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rust-mode - , s }: - melpaBuild { - pname = "racer"; - ename = "racer"; - version = "1.2"; - src = fetchFromGitHub { - owner = "racer-rust"; - repo = "emacs-racer"; - rev = "10aa2119c47584959fd1abe6cfa770818852d3b4"; - sha256 = "0rl8rnchd1pch1ndgs9s0rrcmn8kq9xxk1wqkb50lyspv64dl46d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97b97037c19655a3ddffee9a86359961f26c155c/recipes/racer"; - sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; - name = "recipe"; - }; - packageRequires = [ dash emacs f rust-mode s ]; - meta = { - homepage = "https://melpa.org/#/racer"; - license = lib.licenses.free; - }; - }) {}; - railscasts-reloaded-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "railscasts-reloaded-theme"; - ename = "railscasts-reloaded-theme"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "thegeorgeous"; - repo = "railscasts-reloaded-theme"; - rev = "ae77bc04fe5a948f418ec8693f6ff2c9ea757c50"; - sha256 = "1vn9cw343w9vvxhzqi85vyqnj6kxcv99qvva4xjvy1sf65i24wy4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9817851bd06cbae30fb8f429401f1bbc0dc7be09/recipes/railscasts-reloaded-theme"; - sha256 = "1iy30mnm3s7p7qigrm3lvv7xjgwvinwg6yg0hry2aifwn88cnwmz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/railscasts-reloaded-theme"; - license = lib.licenses.free; - }; - }) {}; - rainbow-blocks = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-blocks"; - ename = "rainbow-blocks"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "istib"; - repo = "rainbow-blocks"; - rev = "8335993563aadd4290c5fa09dd7a6a81691b0690"; - sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rainbow-blocks"; - sha256 = "1zf1z1hnp8q0s9za7nnpq83isbpmz26l8hxafz0h0b5dz1w2vlvs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rainbow-blocks"; - license = lib.licenses.free; - }; - }) {}; - rainbow-delimiters = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-delimiters"; - ename = "rainbow-delimiters"; - version = "2.1.3"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "rainbow-delimiters"; - rev = "93cd2dc873e7fedca7abc599cd97d46db4376ac7"; - sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2cf11dbff76f0e3581b865f48bb44a307aa7f23/recipes/rainbow-delimiters"; - sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rainbow-delimiters"; - license = lib.licenses.free; - }; - }) {}; - rainbow-identifiers = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rainbow-identifiers"; - ename = "rainbow-identifiers"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "rainbow-identifiers"; - rev = "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e"; - sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/975aadd9fe1faf9ad617ba6200ca77185b87e7c0/recipes/rainbow-identifiers"; - sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rainbow-identifiers"; - license = lib.licenses.free; - }; - }) {}; - rake = callPackage ({ cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rake"; - ename = "rake"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "asok"; - repo = "rake"; - rev = "e680f1a8f2591af7c80cad188340601b101b5ddc"; - sha256 = "1dk2clsnmjy3bfv6laxf8sslvdajjbwpk83ss8v9xm55dcxjvd7n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bf0f84698dda02a5b84a244ee29a23a6faa9de68/recipes/rake"; - sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash f ]; - meta = { - homepage = "https://melpa.org/#/rake"; - license = lib.licenses.free; - }; - }) {}; - ranger = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ranger"; - ename = "ranger"; - version = "0.9.8.5"; - src = fetchFromGitHub { - owner = "ralesi"; - repo = "ranger.el"; - rev = "584e4ae8cce1c54a44b40dd4c77fbb2f06d73ecb"; - sha256 = "01rphv92g1r0cw5bwkbrh02s0na7fjrddxx1dckk2y7qr97s7l8j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0207e754f424823fb48e9c065c3ed9112a0c445b/recipes/ranger"; - sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ranger"; - license = lib.licenses.free; - }; - }) {}; - rase = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rase"; - ename = "rase"; - version = "1.1"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "rase"; - rev = "59b5f7e8102570b65040e8d55781c7ea28de7338"; - sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/334419debe065c34665bb0207574d1d4dfb9e8ae/recipes/rase"; - sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rase"; - license = lib.licenses.free; - }; - }) {}; - rats = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , go-mode - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "rats"; - ename = "rats"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "ane"; - repo = "rats.el"; - rev = "8ad4023a4b9b00c1224b10b0060f6dc60b4814a4"; - sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a62cbae1b2d9af2322bb6a27949de8c8bfddc2b7/recipes/rats"; - sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; - name = "recipe"; - }; - packageRequires = [ cl-lib go-mode s ]; - meta = { - homepage = "https://melpa.org/#/rats"; - license = lib.licenses.free; - }; - }) {}; - rbenv = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rbenv"; - ename = "rbenv"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "senny"; - repo = "rbenv.el"; - rev = "a613ee1941efa48ef5321bad39ac1ed8ad1540b8"; - sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rbenv"; - sha256 = "1skh1v8dgwl1f9m3pmy2s3rnzp8n3cydi3579fgjv4mzi81k3d5q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rbenv"; - license = lib.licenses.free; - }; - }) {}; - rc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rc-mode"; - ename = "rc-mode"; - version = "1.0.13"; - src = fetchFromGitHub { - owner = "mrhmouse"; - repo = "rc-mode.el"; - rev = "fe2e0570bf9c19a292e16b18fd4b0a256df5d93f"; - sha256 = "0skjg3l3ss8nlrpnpjjflmf7wjib4jfarkmx4438nc6vm6553fmn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d8062b2e5b2744a6e614b389cca7e7f21b582f6f/recipes/rc-mode"; - sha256 = "0p77mckw8jyxcwspj1ffm8mz0k01ddm67hh9j8rw812wddwnj7qf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rc-mode"; - license = lib.licenses.free; - }; - }) {}; - rcirc-styles = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rcirc-styles"; - ename = "rcirc-styles"; - version = "1.3.2"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "rcirc-styles.el"; - rev = "f313bf6a7470bed314b27c7a40558cb787d7bc67"; - sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10771a996c8a9dc1eb211cddff53db7b2b01e00b/recipes/rcirc-styles"; - sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rcirc-styles"; - license = lib.licenses.free; - }; - }) {}; - rdf-prefix = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rdf-prefix"; - ename = "rdf-prefix"; - version = "1.11"; - src = fetchFromGitHub { - owner = "simenheg"; - repo = "rdf-prefix"; - rev = "6daf675d96aa4a0bc78adc93560b791a77651b22"; - sha256 = "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a5f083bd629697038ea6391c7a4eeedc909a5231/recipes/rdf-prefix"; - sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rdf-prefix"; - license = lib.licenses.free; - }; - }) {}; - react-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "react-snippets"; - ename = "react-snippets"; - version = "0.1"; - src = fetchFromGitHub { - owner = "johnmastro"; - repo = "react-snippets.el"; - rev = "bfc4b68b81374a6a080240592641091a7e8a6d61"; - sha256 = "1wna4v8l3j0ppjv4nj72lhp0yh6vbka6bvl1paqqfvay300kiqjb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3720192fdfa45f9b83259ab39356f469c5ac85b4/recipes/react-snippets"; - sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/react-snippets"; - license = lib.licenses.free; - }; - }) {}; - real-auto-save = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "real-auto-save"; - ename = "real-auto-save"; - version = "0.4"; - src = fetchFromGitHub { - owner = "ChillarAnand"; - repo = "real-auto-save"; - rev = "2775cf497cce60335091817f9fea14f838cd725f"; - sha256 = "0s19qy5idnzhd7aq0v538x3ysqh7lzddm98mkf8wmqf4xpws6h3j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/real-auto-save"; - sha256 = "1li0b2d93ffxjq4jdyzyvjdy5h7q5xllys0w4748d2bhr8q35p3w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/real-auto-save"; - license = lib.licenses.free; - }; - }) {}; - realgud = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , loc-changes - , melpaBuild - , test-simple }: - melpaBuild { - pname = "realgud"; - ename = "realgud"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud"; - rev = "2d37b7d5a799363c7e8a69362d42d8a65b85f5cb"; - sha256 = "0xnick9016wxrgi8v0lycvxhyz8l2k4nfvdpjc5yq476vwrjfzbz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a21be3673962d5706f12efa5179a5426bdce82b/recipes/realgud"; - sha256 = "14n6d3jfhpa29nf4ywdg3aw4i51lfkr99b4z8q4833pmpz1jbq2c"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - emacs - load-relative - loc-changes - test-simple - ]; - meta = { - homepage = "https://melpa.org/#/realgud"; - license = lib.licenses.free; - }; - }) {}; - realgud-lldb = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-lldb"; - ename = "realgud-lldb"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-lldb"; - rev = "f2f77d6ddfa42430ead400eaf81c605c3a04dead"; - sha256 = "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7e40b575cc22fa7b4773cf617862495e93565e4/recipes/realgud-lldb"; - sha256 = "1l43h14a42cpgjcmbhk9vkk87z4ap9rdz7jrz8id666qxbza5xzg"; - name = "recipe"; - }; - packageRequires = [ emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-lldb"; - license = lib.licenses.free; - }; - }) {}; - realgud-trepan-ni = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , load-relative - , melpaBuild - , realgud }: - melpaBuild { - pname = "realgud-trepan-ni"; - ename = "realgud-trepan-ni"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "realgud"; - repo = "realgud-trepan-ni"; - rev = "ce008862ea33de0a9e6c06099b9ddff8f620f2e4"; - sha256 = "14sd9d0jzr0iiy4hzssabp08wifbnb4hh6xs5b2v8ch348kcwpwv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2464e03d11cd660c3c9c760e16b90911151cf184/recipes/realgud-trepan-ni"; - sha256 = "1p7sn1swmdyyzaaa5xza70md4pl2p15swyh7y3fbmpp35nabv9zi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs load-relative realgud ]; - meta = { - homepage = "https://melpa.org/#/realgud-trepan-ni"; - license = lib.licenses.free; - }; - }) {}; - reason-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reason-mode"; - ename = "reason-mode"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "reasonml-editor"; - repo = "reason-mode"; - rev = "6b53815a0405be1f364a082d22fe5c900409a01a"; - sha256 = "1433bgakbfyf5d5vq69rwj4zg1h0xwjy9qsryvd9r1ssax2hzi7r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9f1a18c13601f3a4fd7b1bbfe7d5da07746e492/recipes/reason-mode"; - sha256 = "07sirgj8bs9yv7pbx1lahwslvjd2aadkzkz7lsyw6xflj5fxpggr"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reason-mode"; - license = lib.licenses.free; - }; - }) {}; - reazon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reazon"; - ename = "reazon"; - version = "0.3"; - src = fetchFromGitHub { - owner = "nickdrozd"; - repo = "reazon"; - rev = "020be6467a83957adcbdcb192b61f2c76a94079b"; - sha256 = "18la2g0srybr10vm1dajgbxi67j1l0cs08mr696hxb6m558yxdv5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/77020b6ea36a4115bdddbc9599fe4f4193ecc29d/recipes/reazon"; - sha256 = "1lymdc1lnwr7s8s15mnjcavxdyqncy2rkfdj571lf1a37y52jcj1"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reazon"; - license = lib.licenses.free; - }; - }) {}; - rebecca-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rebecca-theme"; - ename = "rebecca-theme"; - version = "1.2.1"; - src = fetchFromGitHub { - owner = "vic"; - repo = "rebecca-theme"; - rev = "239115183e0a354ccd5c2cb299893b558fbde05c"; - sha256 = "0n6xf9s39frnyvchk40zzxbkn0hyga5ridkxbf50n7hr5j19yrmb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f40f30113c7dabd76a2d0e52898e6d6be69a35/recipes/rebecca-theme"; - sha256 = "1m72jqyqx18i1vpj07v3vkbi0di9dks5sz46wb2h0f23xqyx00md"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rebecca-theme"; - license = lib.licenses.free; - }; - }) {}; - recently = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recently"; - ename = "recently"; - version = "0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "recently-el"; - rev = "3a331936ba33875d0f2fa47abe056aadbc59150e"; - sha256 = "0hdsv3whr2iqk6xirmfcjpbqjnckzqj54n5q04gh2z01bjxv3d7k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb8d1628e1787cba10fc612f3351e4085e9a3153/recipes/recently"; - sha256 = "1928v1897l1n42zrzqfwkq6nckf9y822qcwy99294rq0b4z83kxs"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/recently"; - license = lib.licenses.free; - }; - }) {}; - recover-buffers = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "recover-buffers"; - ename = "recover-buffers"; - version = "1.0"; - src = fetchFromGitHub { - owner = "tripleee"; - repo = "recover-buffers"; - rev = "fa602e32f73dcec2d90e4bb8e0f72f3240cfdb45"; - sha256 = "04vmmda2dj8madhlrkmyqw34vsx4pvb0szv3sjvfwqq1z17lsixi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/43b33cfb794c35de78fde6eabb71ffe01049d23d/recipes/recover-buffers"; - sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/recover-buffers"; - license = lib.licenses.free; - }; - }) {}; - rect-plus = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rect-plus"; - ename = "rect+"; - version = "1.0.10"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-rectplus"; - rev = "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc"; - sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8c1cd81f0e764a7cfc2f3f96574898ff414beb4/recipes/rect+"; - sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rect+"; - license = lib.licenses.free; - }; - }) {}; - rectangle-utils = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rectangle-utils"; - ename = "rectangle-utils"; - version = "1.1"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "rectangle-utils"; - rev = "6fe38fdd48ef5305a908b94a043a966ac3f2053a"; - sha256 = "08n3ah40gfgkbriwj2z3y0751vpvgz86qjdn6dxs4mghjrwr2545"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1852b75c82822e97c39b7c7caeb2a32246171be4/recipes/rectangle-utils"; - sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/rectangle-utils"; - license = lib.licenses.free; - }; - }) {}; - redpen-paragraph = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "redpen-paragraph"; - ename = "redpen-paragraph"; - version = "0.42"; - src = fetchFromGitHub { - owner = "karronoli"; - repo = "redpen-paragraph.el"; - rev = "f9569bc8e2993dea0f83cba5738a35ce32f82424"; - sha256 = "087dq9h8i8cjwm8x2s33xrwnnxjpjcmddy2624z00s1ip0dh5ham"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7e6b187bfc14f3affbe2d8d1cb854abe69deb15b/recipes/redpen-paragraph"; - sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/redpen-paragraph"; - license = lib.licenses.free; - }; - }) {}; - redprl = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redprl"; - ename = "redprl"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "RedPRL"; - repo = "sml-redprl"; - rev = "c26dcea5896d199c3d0a53b792807a09c98222f5"; - sha256 = "0iacmk79wl97h9q47hzz60xzxnd2xs0yv4gxzdpmmzw2mbkvs4p6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/06e7371d703ffdc5b6ea555f2ed289e57e71e377/recipes/redprl"; - sha256 = "1zinzs3vzf2alsnxf5k71i7lp90fm26wv4y20ci52n0hnh5nz861"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/redprl"; - license = lib.licenses.free; - }; - }) {}; - redtick = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "redtick"; - ename = "redtick"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "ferfebles"; - repo = "redtick"; - rev = "ff3a83974dfa2a6e9959baecc2d523cae8ddcda4"; - sha256 = "177bbpkkk3b7ljn9rv05774yxmbglkhyqm68bvlrgl75vnmm7jdz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3187bd436541e2a5c2b28de67c62f5d5165af737/recipes/redtick"; - sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/redtick"; - license = lib.licenses.free; - }; - }) {}; - refine = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , list-utils - , loop - , melpaBuild - , s }: - melpaBuild { - pname = "refine"; - ename = "refine"; - version = "0.3"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "refine"; - rev = "9760e56ab849a4827e6c9425fdef6f5a7784c967"; - sha256 = "1b4n0mfplh6vj87p3124c2fw24fj0vm9jvcaxrvccfq3sida4sf3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b111879ea0685cda88c758b270304d9e913c1391/recipes/refine"; - sha256 = "1sk6rsd92pix7k8snnqm3hsimjzaihzjgac0g5h3a2zm9dabf4py"; - name = "recipe"; - }; - packageRequires = [ dash emacs list-utils loop s ]; - meta = { - homepage = "https://melpa.org/#/refine"; - license = lib.licenses.free; - }; - }) {}; - reformatter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reformatter"; - ename = "reformatter"; - version = "0.4"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "reformatter.el"; - rev = "b2963f51009948d5e4885237a148695008d4ccbc"; - sha256 = "0hhy6x1bkwlhdlarsgm06g3am4yh02yqv8qs34szpzgy53x84qah"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58de8cf8864867f7b3969f3a048a4844837078b4/recipes/reformatter"; - sha256 = "0z4wa0bmhz55c54vx7qxkl9x7ix20mmgygv91sqll68l10g63l0c"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/reformatter"; - license = lib.licenses.free; - }; - }) {}; - region-convert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "region-convert"; - ename = "region-convert"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "region-convert.el"; - rev = "173c86b4b3fc187d54bcd85b4d7df27a5ee24965"; - sha256 = "1paljjwr6sfl835m24vj2j4x3zdh3whwayj6dvyfarbhhcwbwphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/region-convert"; - sha256 = "16i1b83jms7djkyb3n0crfxgpz05m68f4nrlvzxjj7fb56mvf9j7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/region-convert"; - license = lib.licenses.free; - }; - }) {}; - region-state = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "region-state"; - ename = "region-state"; - version = "0.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "region-state.el"; - rev = "17e2710d14f090201418ad511e3dbff7178b53a6"; - sha256 = "03ij1yjxf23lp24smna91c84iwamac6gi9chc6fmnlhxcpjcm8px"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/716e82eb4ca0845f59a743556b37be8a1ecb29af/recipes/region-state"; - sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/region-state"; - license = lib.licenses.free; - }; - }) {}; - relax = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "relax"; - ename = "relax"; - version = "0.2"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "relax.el"; - rev = "6e33892623ab87833082262321dc8e1977209626"; - sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67247451b39461db4a5fcff3827a09f53f9fc8ec/recipes/relax"; - sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/relax"; - license = lib.licenses.free; - }; - }) {}; - repeatable-motion = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "repeatable-motion"; - ename = "repeatable-motion"; - version = "0.2"; - src = fetchFromGitHub { - owner = "willghatch"; - repo = "emacs-repeatable-motion"; - rev = "e664b0a4a3e39c4085378a28b5136b349a0afb22"; - sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dd56ebaea098715b9c201f07e6196c38977f8e3/recipes/repeatable-motion"; - sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/repeatable-motion"; - license = lib.licenses.free; - }; - }) {}; - repl-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , fullframe - , lib - , melpaBuild }: - melpaBuild { - pname = "repl-toggle"; - ename = "repl-toggle"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "tomterl"; - repo = "repl-toggle"; - rev = "a36caac7649fbffbe30f7b06541c9efd723563fc"; - sha256 = "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/repl-toggle"; - sha256 = "16k9fk1nl2llk9qli52kiirlx9rlz8yhjh3cy6v5y2b3k0y1cf0b"; - name = "recipe"; - }; - packageRequires = [ fullframe ]; - meta = { - homepage = "https://melpa.org/#/repl-toggle"; - license = lib.licenses.free; - }; - }) {}; - replace-symbol = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "replace-symbol"; - ename = "replace-symbol"; - version = "1.1"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "replace-symbol-el"; - rev = "baf949e528aee1881f455f9c84e67718bedcb3f6"; - sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/377b6ff2b785f6d87adf1e23a5b0ce02881fc5c9/recipes/replace-symbol"; - sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/replace-symbol"; - license = lib.licenses.free; - }; - }) {}; - replace-with-inflections = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , inflections - , lib - , melpaBuild - , string-inflection }: - melpaBuild { - pname = "replace-with-inflections"; - ename = "replace-with-inflections"; - version = "0.3.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "replace-with-inflections.el"; - rev = "d9201e047856492f282da65459b28aba25998dbb"; - sha256 = "09yvn489z33hww7mi1flh344faxrpbkzqhm0i6xb2rridcj7acqh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7892eb506b8f4260bde4be2805bf3b2d594ab640/recipes/replace-with-inflections"; - sha256 = "1pqpin5ipm3g74zjh1kh6s1gh0aan6202p0y2q00d4ywbz9kn5s0"; - name = "recipe"; - }; - packageRequires = [ cl-lib inflections string-inflection ]; - meta = { - homepage = "https://melpa.org/#/replace-with-inflections"; - license = lib.licenses.free; - }; - }) {}; - repo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "repo"; - ename = "repo"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "canatella"; - repo = "repo-el"; - rev = "9f03c0d90c9036b96e531c17d529f3855364d47a"; - sha256 = "1ggxs40mbk50aqhqqfdcz6izvlvsz53s93dj3ndxvgdxkpkxr6yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1729d4ea9498549fff3594b971fcde5f81592f84/recipes/repo"; - sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/repo"; - license = lib.licenses.free; - }; - }) {}; - req-package = callPackage ({ dash - , fetchFromGitLab - , fetchurl - , ht - , lib - , log4e - , melpaBuild - , use-package }: - melpaBuild { - pname = "req-package"; - ename = "req-package"; - version = "1.2"; - src = fetchFromGitLab { - owner = "edvorg"; - repo = "req-package"; - rev = "0c0ac7451149dac6bfda2adfe959d1df1c273de6"; - sha256 = "0sx3kw1gpliifbc0gh2z1lvig68v3gwqjbj0izgn77js8kqxad84"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aa5bc1909f807ec03ad441d78013ba8626cd410a/recipes/req-package"; - sha256 = "1zjhc6f9qcb3j72k1llp6vym25lxnvq1jgqgmnrjxxwc4fhxx595"; - name = "recipe"; - }; - packageRequires = [ dash ht log4e use-package ]; - meta = { - homepage = "https://melpa.org/#/req-package"; - license = lib.licenses.free; - }; - }) {}; - request = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "request"; - ename = "request"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-request"; - rev = "a3d080e57eb8be606fbf39d1baff94e1b16e1fb8"; - sha256 = "0wyxqbb35yqf6ci47531lk32d6fppamx9d8826kdz983vm87him7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request"; - sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/request"; - license = lib.licenses.free; - }; - }) {}; - request-deferred = callPackage ({ deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "request-deferred"; - ename = "request-deferred"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "tkf"; - repo = "emacs-request"; - rev = "aeae9028de5c489b07a5f5df29682eff47f80f6b"; - sha256 = "002blp30bvi8l9b9mzjk8ib6xv3fps3j8cqrvbdj6dw2yvrcfl1g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8d113615dde757a60ce91e156f0714a1394c4bfc/recipes/request-deferred"; - sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; - name = "recipe"; - }; - packageRequires = [ deferred request ]; - meta = { - homepage = "https://melpa.org/#/request-deferred"; - license = lib.licenses.free; - }; - }) {}; - requirejs = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , popup - , s }: - melpaBuild { - pname = "requirejs"; - ename = "requirejs"; - version = "1.1"; - src = fetchFromGitHub { - owner = "joeheyming"; - repo = "requirejs-emacs"; - rev = "ba99f27f97c0552f724aac822ff4e507f801b916"; - sha256 = "0s38b25jpf9l55c7z42zw5z86rihsymc48l0wp2n61ansafsalkk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a6a710c0d5ab34c52498c4154deebb779052aa01/recipes/requirejs"; - sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; - name = "recipe"; - }; - packageRequires = [ cl-lib js2-mode popup s ]; - meta = { - homepage = "https://melpa.org/#/requirejs"; - license = lib.licenses.free; - }; - }) {}; - resize-window = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "resize-window"; - ename = "resize-window"; - version = "0.7"; - src = fetchFromGitHub { - owner = "dpsutton"; - repo = "resize-window"; - rev = "e281aca5a1b371aff20d7bfc6abc456de22e19dd"; - sha256 = "1d8jzhwif80bgj5pxa36hbavjrlmjg12yzxypl40d1wrjamq854c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/601a8d8f9046db6c4d50af983a11fa2501304028/recipes/resize-window"; - sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/resize-window"; - license = lib.licenses.free; - }; - }) {}; - restart-emacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "restart-emacs"; - ename = "restart-emacs"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "iqbalansari"; - repo = "restart-emacs"; - rev = "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b"; - sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9faeb6d910d686cbcafe7d12e0bcf62a85689bd/recipes/restart-emacs"; - sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/restart-emacs"; - license = lib.licenses.free; - }; - }) {}; - restclient-test = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , restclient }: - melpaBuild { - pname = "restclient-test"; - ename = "restclient-test"; - version = "0.2"; - src = fetchFromGitHub { - owner = "simenheg"; - repo = "restclient-test.el"; - rev = "a21e41b905b423e762eeb4da3a236c8b1aea8c49"; - sha256 = "1lan49723rpzg1q7w8x3iggazwl4zirq5l8nhpb8m5hmg21a4kih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/82e3078fc1f96d276fd288c3d7b91df5df4717a6/recipes/restclient-test"; - sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39"; - name = "recipe"; - }; - packageRequires = [ emacs restclient ]; - meta = { - homepage = "https://melpa.org/#/restclient-test"; - license = lib.licenses.free; - }; - }) {}; - reveal-in-osx-finder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reveal-in-osx-finder"; - ename = "reveal-in-osx-finder"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "kaz-yos"; - repo = "reveal-in-osx-finder"; - rev = "5710e5936e47139a610ec9a06899f72e77ddc7bc"; - sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2bf40285279b761b0efd6bc8542ae9aad4b329e1/recipes/reveal-in-osx-finder"; - sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/reveal-in-osx-finder"; - license = lib.licenses.free; - }; - }) {}; - reverse-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "reverse-theme"; - ename = "reverse-theme"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-reverse-theme"; - rev = "13d0821a4ec5ece7e6a81f50d2a1a7e7ad21394d"; - sha256 = "1sfl0rm4sxjkcjki0hmkkcicr24qr2q7gmficg9bi5q6vlrid1pn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81f0f525680fea98e804f39dbde1dada887e8821/recipes/reverse-theme"; - sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/reverse-theme"; - license = lib.licenses.free; - }; - }) {}; - rfc-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild }: - melpaBuild { - pname = "rfc-mode"; - ename = "rfc-mode"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "galdor"; - repo = "rfc-mode"; - rev = "5cdf7172e307c0e23bb5342c61263d4439292ede"; - sha256 = "091yqk257z19rs9mcy6b52ll87s85s7fbsd235kzqmacfcqyjsmi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a61d769cf7c61619a594337fe8a12ccc6a6fd6e/recipes/rfc-mode"; - sha256 = "0z7krcfdyr8hblz8dc7apqlpn6sj2zwrjw4wh86js8vf7fiv8svy"; - name = "recipe"; - }; - packageRequires = [ emacs helm ]; - meta = { - homepage = "https://melpa.org/#/rfc-mode"; - license = lib.licenses.free; - }; - }) {}; - rg = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , wgrep }: - melpaBuild { - pname = "rg"; - ename = "rg"; - version = "1.7.0"; - src = fetchFromGitHub { - owner = "dajva"; - repo = "rg.el"; - rev = "77670a4bcdba138a0cef3fb12a20b1492dca902a"; - sha256 = "0hpxkpyylzvzzvqc51ac0r89nv1jdymb8nmsb03sq1svsw5nyag9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ce1f721867383a841957370946f283f996fa76f/recipes/rg"; - sha256 = "0i78qvqdznh1z3b0mnzihv07j8b9r86dc1lsa1qlzacv6a2i9sbm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s wgrep ]; - meta = { - homepage = "https://melpa.org/#/rg"; - license = lib.licenses.free; - }; - }) {}; - rib-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rib-mode"; - ename = "rib-mode"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "blezek"; - repo = "rib-mode"; - rev = "4172e902fd66f235184c0eb6db7fd4a73dbd0866"; - sha256 = "0s9dyqv4yh0zxngay951g98g07029h51m4r2fc7ib2arw6srfram"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c38c18f3eb75d559752fcd9956464fef890be728/recipes/rib-mode"; - sha256 = "0qgbzrwbbgg4mzjb7yw85qs83b6hpldazip1cigywr46w7f81587"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rib-mode"; - license = lib.licenses.free; - }; - }) {}; - rich-minority = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rich-minority"; - ename = "rich-minority"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "rich-minority"; - rev = "d33d2e357c8eb0b38624dbc51e8b953b08b0cc98"; - sha256 = "1kn7c9qr9ykj68iqffzzmjsr6aazwac8cxb7j960sjb282rq0yyj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/rich-minority"; - sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rich-minority"; - license = lib.licenses.free; - }; - }) {}; - right-click-context = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "right-click-context"; - ename = "right-click-context"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "zonuexe"; - repo = "right-click-context"; - rev = "db92245cc494c295afa7c23ef1e1d9f76c20a27e"; - sha256 = "109l1qj3k87iz3g89j9xf5gdrflr63lagp1qz7cz1p1ji4lycb4k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f6963fc11d697b95ebbdaf7fe27c91a6229d08b6/recipes/right-click-context"; - sha256 = "189nkxkc7lr2fm5qgmylmz6xv6mpphslj4fgpmr8ynnx9z3nxms2"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs popup ]; - meta = { - homepage = "https://melpa.org/#/right-click-context"; - license = lib.licenses.free; - }; - }) {}; - rigid-tabs = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rigid-tabs"; - ename = "rigid-tabs"; - version = "1.0"; - src = fetchFromGitLab { - owner = "wavexx"; - repo = "rigid-tabs.el"; - rev = "c7c6b726806df7e8cb25a41b213a207850c91cb7"; - sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1cf98dff029d494007fe25d29bd8bcfecc5b8e6/recipes/rigid-tabs"; - sha256 = "0623hhhykrxq702871s5p4vddkvx7jpj6hg5q0c9jkbvflz9n9y8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rigid-tabs"; - license = lib.licenses.free; - }; - }) {}; - rinari = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , jump - , lib - , melpaBuild - , ruby-compilation - , ruby-mode ? null }: - melpaBuild { - pname = "rinari"; - ename = "rinari"; - version = "2.11"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "rinari"; - rev = "7a146b23f80ac672005adc74d3d71aae83383a21"; - sha256 = "19f5n44f9qh7agvyhmwqmdh86y4vf1sn41h2afm85l2a8xq6r7rh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b243a909faa71e14ee7ca4f307df8e8136e5d7c/recipes/rinari"; - sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; - name = "recipe"; - }; - packageRequires = [ inf-ruby jump ruby-compilation ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/rinari"; - license = lib.licenses.free; - }; - }) {}; - ripgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ripgrep"; - ename = "ripgrep"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "ripgrep.el"; - rev = "73595f1364f2117db49e1e4a49290bd6d430e345"; - sha256 = "1a5rdpmvsgsjlc9sywism9pq7jd6n9qbcdsvpbfkq1npwhpifkbj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e8d789818876e959a1a59690f1dd7d4efa6d608b/recipes/ripgrep"; - sha256 = "1j9c3mhcyhs4xf44z6fnlvmb81pps25bp43gdqvp0954i068mgah"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ripgrep"; - license = lib.licenses.free; - }; - }) {}; - rjsx-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "rjsx-mode"; - ename = "rjsx-mode"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "felipeochoa"; - repo = "rjsx-mode"; - rev = "f7d31589acd8a2dfcf4ca8851d2384e4f90364d0"; - sha256 = "057pgylflzd69ydqz41g8wisvixypdrfn8yv81mfixh3iyq740y8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b83be7efdef2457e1320fe3dec46484fbd20263c/recipes/rjsx-mode"; - sha256 = "0w3ij8k8058pfw443chm1kn30ia0f5rfbg03w9ddw86xb3wa2q0b"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/rjsx-mode"; - license = lib.licenses.free; - }; - }) {}; - robe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "robe"; - ename = "robe"; - version = "0.8.2"; - src = fetchFromGitHub { - owner = "dgutov"; - repo = "robe"; - rev = "1908afd42ce05fc8b8bbf3f38301680264b68d19"; - sha256 = "0qw18wi54yg971n4wnjqkd8lqj5lbs9ra8bvmngif2bzhqlfdsbn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/673f920d02fe761bc080b73db7d37dbf5b6d86d8/recipes/robe"; - sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; - name = "recipe"; - }; - packageRequires = [ emacs inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/robe"; - license = lib.licenses.free; - }; - }) {}; - robots-txt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "robots-txt-mode"; - ename = "robots-txt-mode"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "emacs-php"; - repo = "robots-txt-mode"; - rev = "431efda01e08426d671d51fcf1f98cfbc87f8c16"; - sha256 = "1mpg62ai721aasd1lm5xwcygpkyh9kp4x5zvmd62agmp3i8s78gc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb13cb0dba1696cc51132cd1ff723fa17f892a7c/recipes/robots-txt-mode"; - sha256 = "00hxz4mygcxg7d8m2i4cm0bl82v3hw8wb4m8vv7g7fqkjp32c9qc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/robots-txt-mode"; - license = lib.licenses.free; - }; - }) {}; - roguel-ike = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "roguel-ike"; - ename = "roguel-ike"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "stevenremot"; - repo = "roguel-ike"; - rev = "706dcb0687e8016d7d776f9d9e5ace9fdbbca43c"; - sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2db1979e039e466268ca7c264988792d3046e19a/recipes/roguel-ike"; - sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; - name = "recipe"; - }; - packageRequires = [ popup ]; - meta = { - homepage = "https://melpa.org/#/roguel-ike"; - license = lib.licenses.free; - }; - }) {}; - rope-read-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rope-read-mode"; - ename = "rope-read-mode"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "rope-read-mode"; - rev = "71e475ab35555e0a1eca26d73acf1ced911e422e"; - sha256 = "0x3mmf4gq4d0cqfqbkrrpwhayvmplacck0zc9nlzcn35y17jzpcz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/14a674559aa485e92357a8b941304ae8167b9c3e/recipes/rope-read-mode"; - sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rope-read-mode"; - license = lib.licenses.free; - }; - }) {}; - rsense = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rsense"; - ename = "rsense"; - version = "0.3"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "rsense"; - rev = "fbcfc00402742b0d8744a9bfd1bcdd869f4fb923"; - sha256 = "178rnmhj3987dscsjkg5qcsw92s3b5rv51s0j7qcavx254h7xdf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e2149ce3baef9ac01d5b2e8b1a933a3e1206015f/recipes/rsense"; - sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rsense"; - license = lib.licenses.free; - }; - }) {}; - rspec-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , ruby-mode ? null }: - melpaBuild { - pname = "rspec-mode"; - ename = "rspec-mode"; - version = "1.11"; - src = fetchFromGitHub { - owner = "pezra"; - repo = "rspec-mode"; - rev = "e289e52ec4b3aa1caf35957d721e5568eca2a3bb"; - sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cd83e61b10da20198de990aa081b47d3b0b44d43/recipes/rspec-mode"; - sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; - name = "recipe"; - }; - packageRequires = [ cl-lib ruby-mode ]; - meta = { - homepage = "https://melpa.org/#/rspec-mode"; - license = lib.licenses.free; - }; - }) {}; - rtags = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rtags"; - ename = "rtags"; - version = "2.31"; - src = fetchFromGitHub { - owner = "Andersbakken"; - repo = "rtags"; - rev = "fe31db984968d323653da238b0c403951cd1d704"; - sha256 = "0c7payxxd0f4md0jbvys2pn41bazgljmmy2538smfaw3n20m2hmp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3dea16daf0d72188c8b4043534f0833fe9b04e07/recipes/rtags"; - sha256 = "0s5m4zjvnc1k4gkkizbs4ysvzzbfh45717pksg9bnyzwx5lcw5yd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rtags"; - license = lib.licenses.free; - }; - }) {}; - rubik = callPackage ({ calc - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubik"; - ename = "rubik"; - version = "1.2"; - src = fetchFromGitHub { - owner = "Kurvivor19"; - repo = "rubik-mode"; - rev = "7ec955639865ca8e99a941843e19b12be5015a47"; - sha256 = "0fdjg6gpg45m5myq517vkprmvh50xw10dqa8vwr9hfz2z8dy18ja"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/00946ed21b0f05b753c792863f6bcc99c26c32a3/recipes/rubik"; - sha256 = "07bbh5vjw3jdxf06lxqm45y8ijcai391mf97xw5c29z33vhqs267"; - name = "recipe"; - }; - packageRequires = [ calc cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/rubik"; - license = lib.licenses.free; - }; - }) {}; - rubocop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubocop"; - ename = "rubocop"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "rubocop-hq"; - repo = "rubocop-emacs"; - rev = "980bedb455e3551d35a212fae515c054888907c1"; - sha256 = "152ara2p59imry2ymfnk5mycbc07rblcmfmqjgm5fijb2x94xv8p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/rubocop"; - sha256 = "07ma4fv015wzpj5j4rdb0ckwwmhkxs3k5vy33qxgwghqmn6xby6x"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rubocop"; - license = lib.licenses.free; - }; - }) {}; - rubocopfmt = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rubocopfmt"; - ename = "rubocopfmt"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "rubocopfmt.el"; - rev = "43ffa9d9c3dcc0574038bebd049102642f50b290"; - sha256 = "0vzpfd9xv80ph9xz8psczz46blhsdnac8zh5i944klkxgqdw7x1x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ac01edffceea771d8fe41326e28dd9881f1661ab/recipes/rubocopfmt"; - sha256 = "06ficv1r3axzi7q659pk1m3gbpf44nd2ir2ikmi8mr8rq44sqps0"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/rubocopfmt"; - license = lib.licenses.free; - }; - }) {}; - ruby-compilation = callPackage ({ fetchFromGitHub - , fetchurl - , inf-ruby - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-compilation"; - ename = "ruby-compilation"; - version = "2.11"; - src = fetchFromGitHub { - owner = "eschulte"; - repo = "rinari"; - rev = "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135"; - sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca7bf43ef8893bf04e9658390e306ef69e80a156/recipes/ruby-compilation"; - sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; - name = "recipe"; - }; - packageRequires = [ inf-ruby ]; - meta = { - homepage = "https://melpa.org/#/ruby-compilation"; - license = lib.licenses.free; - }; - }) {}; - ruby-electric = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-electric"; - ename = "ruby-electric"; - version = "2.3.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "ruby-electric.el"; - rev = "3553448a780a1ea5c3b0e9becd820d4762876593"; - sha256 = "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fd5fa797a813e02a6433ecbe2bca1270a383753/recipes/ruby-electric"; - sha256 = "02xskivi917l8xyhrij084dmzwjq3knjcn65l2iwz34s767fbwl2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-electric"; - license = lib.licenses.free; - }; - }) {}; - ruby-end = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-end"; - ename = "ruby-end"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ruby-end.el"; - rev = "648b81af136a581bcef387744d93c011d9cdf54b"; - sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-end"; - sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-end"; - license = lib.licenses.free; - }; - }) {}; - ruby-hash-syntax = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-hash-syntax"; - ename = "ruby-hash-syntax"; - version = "0.6"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "ruby-hash-syntax"; - rev = "89fc364a837d7a78ecce34380f09c073a83e30e0"; - sha256 = "1nwf3681fa6lfqr14n9wihckpi220hvamv1ppzmrhn4k49vxljy8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7d21a43a4bf267507bdc746ec9d0fd82049c0af/recipes/ruby-hash-syntax"; - sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-hash-syntax"; - license = lib.licenses.free; - }; - }) {}; - ruby-test-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-test-mode"; - ename = "ruby-test-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "ruby-test-mode"; - repo = "ruby-test-mode"; - rev = "a8f41e63d9e9b031fcbad57911b0a28a444f6cdb"; - sha256 = "1wck3n2lcsasrg14jimm9iiyxdsh9mr9293q1kx4l0jm0z1k8f43"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f781a76a519afc0222cdf7255822a23e33745deb/recipes/ruby-test-mode"; - sha256 = "08x9pskxz1hvvqablx5mdp1g54n28kpmd10qwrasq2zjbdjghj48"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-test-mode"; - license = lib.licenses.free; - }; - }) {}; - ruby-tools = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ruby-tools"; - ename = "ruby-tools"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "ruby-tools.el"; - rev = "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac"; - sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/ruby-tools"; - sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ruby-tools"; - license = lib.licenses.free; - }; - }) {}; - rufo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rufo"; - ename = "rufo"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "danielma"; - repo = "rufo.el"; - rev = "550651cbb39bef875a994cbcda10ecd6f9ab1d6d"; - sha256 = "0i0azjnrp4km9p5zmdzj9py7g0wg6h5dwi4pz0j5zj0a97qiqmhy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/123b89e06a44ef45150ca7243afc41302dfb6c6e/recipes/rufo"; - sha256 = "0pxsifcxic3q54rqj0jbj20hq7f2s4icl57lligf9g0w23qzj239"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rufo"; - license = lib.licenses.free; - }; - }) {}; - runner = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "runner"; - ename = "runner"; - version = "1.8"; - src = fetchFromGitHub { - owner = "thamer"; - repo = "runner"; - rev = "e7394d7c9e886788a656a7085b4cf963d6fc318f"; - sha256 = "0gpfszp6bqr3vdr32vr6l0nq9hnic31vnins68hc5hknli91bpsq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f3a4e051ab45b8036b91aa0c50bd3f93cd85e9d0/recipes/runner"; - sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/runner"; - license = lib.licenses.free; - }; - }) {}; - russian-holidays = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "russian-holidays"; - ename = "russian-holidays"; - version = "0.4"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "russian-holidays"; - rev = "b285a30f29d85c48e3ea4eb93972d34a090c167b"; - sha256 = "1mz842gvrscklg2w2r2q2wbj92qr31h895k700j3axqx6k30ni0h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d4830900e371e7036225ea434c52204f4d2481a7/recipes/russian-holidays"; - sha256 = "0lawjwz296grbvb4a1mm1j754q7mpcanyfln1gqxr339kqx2aqd8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/russian-holidays"; - license = lib.licenses.free; - }; - }) {}; - rust-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rust-mode"; - ename = "rust-mode"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "rust-lang"; - repo = "rust-mode"; - rev = "106aeab800fb3404baf231845d3e3549ec235afa"; - sha256 = "0bcrklyicxh032rrp585rl5mxd26nb61dp6r5bl935rlcmxzsczh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8f6e5d990d699d571dccbdeb13327b33389bb113/recipes/rust-mode"; - sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rust-mode"; - license = lib.licenses.free; - }; - }) {}; - rust-playground = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rust-playground"; - ename = "rust-playground"; - version = "0.3"; - src = fetchFromGitHub { - owner = "grafov"; - repo = "rust-playground"; - rev = "092c8b11d62dea23953a004744833092bac85fe1"; - sha256 = "0n2c1pjbvy46ic0k84jd3ffwwb5hibjqc1wv7knzkldi5agigfsh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/rust-playground"; - sha256 = "0ml0zr9vz2vjd9wr0v706w4v4qqfzpa56rdzfak2kb5llx53j89v"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/rust-playground"; - license = lib.licenses.free; - }; - }) {}; - rvm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "rvm"; - ename = "rvm"; - version = "1.4.0"; - src = fetchFromGitHub { - owner = "senny"; - repo = "rvm.el"; - rev = "8e45a9bad8e317ff195f384dab14d3402497dc79"; - sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/rvm"; - sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/rvm"; - license = lib.licenses.free; - }; - }) {}; - s = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "s"; - ename = "s"; - version = "1.12.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "s.el"; - rev = "12f116d58ac03706496bd682c6449b452681874e"; - sha256 = "1g8mqd13llj007al4nlxxx4z2lcsg3wk970mgjn0avwrhjjgdmmv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/s"; - sha256 = "0dars9212z0yv97mj4615h23vd22vy8b6cw2n433z9jhif3aybqa"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/s"; - license = lib.licenses.free; - }; - }) {}; - sackspace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sackspace"; - ename = "sackspace"; - version = "0.8.2"; - src = fetchFromGitHub { - owner = "cofi"; - repo = "sackspace.el"; - rev = "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708"; - sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/073e92e05c4bd6197a5ad24f470b21a97f5bb7b8/recipes/sackspace"; - sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sackspace"; - license = lib.licenses.free; - }; - }) {}; - sage-shell-mode = callPackage ({ cl-lib ? null - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "sage-shell-mode"; - ename = "sage-shell-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "sagemath"; - repo = "sage-shell-mode"; - rev = "e8bc089e8dfd76f688160e2ac77aee985afeade7"; - sha256 = "166plwg9ggivr3im0yfxw8k6m9ral37jzznnb06kb6g0zycb4aps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eb875c50c2f97919fd0027869c5d9970e1eaf373/recipes/sage-shell-mode"; - sha256 = "0ivqiigmp9cf88j4xapzanjpbx692r70wb4i25mnppqsi3jlwxdv"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/sage-shell-mode"; - license = lib.licenses.free; - }; - }) {}; - salt-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-jinja2 - , mmm-mode - , yaml-mode }: - melpaBuild { - pname = "salt-mode"; - ename = "salt-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "glynnforrest"; - repo = "salt-mode"; - rev = "e14ed8f2ce0ab7a783c4341879ec8c003e2b5c81"; - sha256 = "19gw35qv13f2r4wif5fgqfhrph2r320n81faxx8980zds28x2q0x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9dcf1a93a06fc42581521c88cfd988b03bedc000/recipes/salt-mode"; - sha256 = "1n7i9d6qpjsdcgbzmbf63y4c7ggxh5wsim8fd0casnrq9bl7ssym"; - name = "recipe"; - }; - packageRequires = [ mmm-jinja2 mmm-mode yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/salt-mode"; - license = lib.licenses.free; - }; - }) {}; - sass-mode = callPackage ({ fetchFromGitHub - , fetchurl - , haml-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "sass-mode"; - ename = "sass-mode"; - version = "3.0.18"; - src = fetchFromGitHub { - owner = "nex3"; - repo = "sass-mode"; - rev = "26a66e331b507fb420e3bb7d0a6a8fbb04294343"; - sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/sass-mode"; - sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; - name = "recipe"; - }; - packageRequires = [ haml-mode ]; - meta = { - homepage = "https://melpa.org/#/sass-mode"; - license = lib.licenses.free; - }; - }) {}; - sauron = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sauron"; - ename = "sauron"; - version = "0.10"; - src = fetchFromGitHub { - owner = "djcb"; - repo = "sauron"; - rev = "a9877f0efa9418c41d25002b58d1c2f8c69ec975"; - sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9d30dcc4715422133e1bb00ad7a8e25b060387e4/recipes/sauron"; - sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sauron"; - license = lib.licenses.free; - }; - }) {}; - say-what-im-doing = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "say-what-im-doing"; - ename = "say-what-im-doing"; - version = "0.2"; - src = fetchFromGitHub { - owner = "Benaiah"; - repo = "say-what-im-doing"; - rev = "4acc16360a29646040b51db158ba7fdeb711449d"; - sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/say-what-im-doing"; - sha256 = "0wi7318q7mms4wjbzhnsw298bjh7g957dnra0bvg87vv48pz3yfp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/say-what-im-doing"; - license = lib.licenses.free; - }; - }) {}; - sayid = callPackage ({ cider - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sayid"; - ename = "sayid"; - version = "0.0.17"; - src = fetchFromGitHub { - owner = "clojure-emacs"; - repo = "sayid"; - rev = "a2625e3975c2bc8449259f0ecd51b28068cbdfac"; - sha256 = "1vw0dc8cx8npy79r53cw129h5s8n12629ah0ypkq15v2rh2hs1gk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7/recipes/sayid"; - sha256 = "065mxb2la3dq2zqyb8dfksb18fpqym04nnax5rrp19izcw488qsm"; - name = "recipe"; - }; - packageRequires = [ cider ]; - meta = { - homepage = "https://melpa.org/#/sayid"; - license = lib.licenses.free; - }; - }) {}; - sbt-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sbt-mode"; - ename = "sbt-mode"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "emacs-sbt-mode"; - rev = "e658af140547cbef495c33535c7f694a501d318c"; - sha256 = "0lv9ridzk9x6rkf7lj21srnszypyq04vqg05vl10zhpz1yqlnbjd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/364abdc3829fc12e19f00b534565227dbc30baad/recipes/sbt-mode"; - sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sbt-mode"; - license = lib.licenses.free; - }; - }) {}; - scala-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scala-mode"; - ename = "scala-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "ensime"; - repo = "emacs-scala-mode"; - rev = "56cba2903cf6e12c715dbb5c99b34c97b2679379"; - sha256 = "13miqdn426cw9y1wqaz5smmf0wi3bzls95z6shcxzdz8cg50zmpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/564aa1637485192a97803af46b3a1f8e0d042c9a/recipes/scala-mode"; - sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scala-mode"; - license = lib.licenses.free; - }; - }) {}; - schrute = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "schrute"; - ename = "schrute"; - version = "0.2.2"; - src = fetchgit { - url = "https://bitbucket.org/shackra/dwight-k.-schrute"; - rev = "08ab6565fa94f3a8016163fe6f7be1932af1156b"; - sha256 = "0l1k6wjjr569lk5k8ydwq13041kn889g20qbzf79qj1ws96rim4m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/505fc4d26049d4e2973a54b24117ccaf4f2fb7e7/recipes/schrute"; - sha256 = "1sr49wr3738sqfzix7v9rj6bvv7q2a46qdkimn9z7rnsjys9i7zy"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/schrute"; - license = lib.licenses.free; - }; - }) {}; - scpaste = callPackage ({ fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild }: - melpaBuild { - pname = "scpaste"; - ename = "scpaste"; - version = "0.6.5"; - src = fetchFromGitHub { - owner = "technomancy"; - repo = "scpaste"; - rev = "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4"; - sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9007fb32097bc63731c3615dae9342fcef2558a2/recipes/scpaste"; - sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; - name = "recipe"; - }; - packageRequires = [ htmlize ]; - meta = { - homepage = "https://melpa.org/#/scpaste"; - license = lib.licenses.free; - }; - }) {}; - scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scratch"; - ename = "scratch"; - version = "1.3"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "scratch-el"; - rev = "4813d82b39a451f2a6d5b730cd7ec49a9bdabcca"; - sha256 = "0yiwq2gc4gdgfhaagpawhb7yrzc4fsnyb10w5d0q4whv64cj8555"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b46813f928eadfa08a1d4bf94ceeb96dbc2a7c72/recipes/scratch"; - sha256 = "1an30pr64fz13s6lghlcb36b7hn3961vv0yipfp9s140ccygdvh7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/scratch"; - license = lib.licenses.free; - }; - }) {}; - scrollkeeper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scrollkeeper"; - ename = "scrollkeeper"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "alphapapa"; - repo = "scrollkeeper.el"; - rev = "3c4ac6b6b44686d31c260ee0b19daaee59bdccd6"; - sha256 = "18pp4k12g5dyma362461gdp4ds5d3lx9gky2ishsq39949pkz7qz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d9ad5b16ff61c1f8ba1e030ee0988aa51a437022/recipes/scrollkeeper"; - sha256 = "16wqlyxznall4kmd8l68q4d11qyilj8vsji36h7llprxa2m9pg12"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/scrollkeeper"; - license = lib.licenses.free; - }; - }) {}; - scss-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "scss-mode"; - ename = "scss-mode"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "antonj"; - repo = "scss-mode"; - rev = "d663069667d9b158d56e863b80dd4cc02984e49f"; - sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/scss-mode"; - sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/scss-mode"; - license = lib.licenses.free; - }; - }) {}; - search-web = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "search-web"; - ename = "search-web"; - version = "1.1"; - src = fetchFromGitHub { - owner = "tomoya"; - repo = "search-web.el"; - rev = "c4ae86ac1acfc572b81f3d78764bd9a54034c331"; - sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1f1a3697649ccf69c8eb177c31ec4246b98f503b/recipes/search-web"; - sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/search-web"; - license = lib.licenses.free; - }; - }) {}; - secretaria = callPackage ({ alert - , emacs - , f - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "secretaria"; - ename = "secretaria"; - version = "0.2.9"; - src = fetchFromGitLab { - owner = "shackra"; - repo = "secretaria"; - rev = "7428b8302c01468b3c1318e318640f68fd5a61b1"; - sha256 = "16cm8xv7n012hvz757p940ahxp1ygji2vfzsaxal48y4cf026rpl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3eeddbcf95315da40d021a6913ccf344849c4284/recipes/secretaria"; - sha256 = "04pcibzdljcfiha4yh10van8gsjrzn6bdkvkm2ahfcwrmscfn3hf"; - name = "recipe"; - }; - packageRequires = [ alert emacs f s ]; - meta = { - homepage = "https://melpa.org/#/secretaria"; - license = lib.licenses.free; - }; - }) {}; - sekka = callPackage ({ cl-lib ? null - , concurrent - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "sekka"; - ename = "sekka"; - version = "1.8.0"; - src = fetchFromGitHub { - owner = "kiyoka"; - repo = "sekka"; - rev = "d1fd5d47aacba723631d5d374169a45ff2051c41"; - sha256 = "035rx863cj3hs1lhayff0810cpp6kv8nwc1c0y54gvdk1bb333x0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6/recipes/sekka"; - sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; - name = "recipe"; - }; - packageRequires = [ cl-lib concurrent popup ]; - meta = { - homepage = "https://melpa.org/#/sekka"; - license = lib.licenses.free; - }; - }) {}; - select-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "select-themes"; - ename = "select-themes"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "jasonm23"; - repo = "emacs-select-themes"; - rev = "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe"; - sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4e7d01da10a1a1f7fe563031af5d3f9694cea33/recipes/select-themes"; - sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/select-themes"; - license = lib.licenses.free; - }; - }) {}; - selectric-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "selectric-mode"; - ename = "selectric-mode"; - version = "1.4.1"; - src = fetchFromGitHub { - owner = "rbanffy"; - repo = "selectric-mode"; - rev = "a35cb3815caceaf273ad7d16ac3b2dd3c7a3003e"; - sha256 = "04bj71080wqybznyx63dawhppq6x3p88x1j56gvl8kvxv2hwzgzf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08922071b9854142eab726302e75f1db2d326ec5/recipes/selectric-mode"; - sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/selectric-mode"; - license = lib.licenses.free; - }; - }) {}; - seml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , htmlize - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "seml-mode"; - ename = "seml-mode"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "conao3"; - repo = "seml-mode.el"; - rev = "f62f7a9f5e18ef8f370444a1fce710770227b0f5"; - sha256 = "037p2kiwkkbk921ik15jalcci0p87q3my9mxzyh6i0mnc6qsh4zf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01f8b8d877ba3164bf20f7f0e56ea564b88f493e/recipes/seml-mode"; - sha256 = "0fmfnglxm57mhynzdsgs14qaxsw3nf83qbz3adknv63qymbfhgbw"; - name = "recipe"; - }; - packageRequires = [ emacs htmlize simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/seml-mode"; - license = lib.licenses.free; - }; - }) {}; - servant = callPackage ({ ansi - , commander - , dash - , epl - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , shut-up - , web-server }: - melpaBuild { - pname = "servant"; - ename = "servant"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "cask"; - repo = "servant"; - rev = "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134"; - sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/servant"; - sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; - name = "recipe"; - }; - packageRequires = [ ansi commander dash epl f s shut-up web-server ]; - meta = { - homepage = "https://melpa.org/#/servant"; - license = lib.licenses.free; - }; - }) {}; - serverspec = callPackage ({ dash - , f - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "serverspec"; - ename = "serverspec"; - version = "0.0.7"; - src = fetchFromGitHub { - owner = "k1LoW"; - repo = "emacs-serverspec"; - rev = "b6dfe82af9869438de5e5d860ced196641f372c0"; - sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4/recipes/serverspec"; - sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; - name = "recipe"; - }; - packageRequires = [ dash f helm s ]; - meta = { - homepage = "https://melpa.org/#/serverspec"; - license = lib.licenses.free; - }; - }) {}; - services = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "services"; - ename = "services"; - version = "1.7"; - src = fetchFromGitHub { - owner = "davep"; - repo = "services.el"; - rev = "514e4095e8964c4d0f38c4f3ad6c692e86d12faa"; - sha256 = "1k6w2ghi1iczh65bbln5ryxwnxmkkjm3p0p54s155q9sjidiqlwb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/beb91b4397f6e35a1d5c73a127d8cd7fc9201935/recipes/services"; - sha256 = "02lgmpbw52ps6z4p9gwzvh9iaxisq5mb0n9aml9ajxac1473vpcd"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/services"; - license = lib.licenses.free; - }; - }) {}; - sesman = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sesman"; - ename = "sesman"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "sesman"; - rev = "3df33018f1c42f09db21cebe39a25b389fe35f02"; - sha256 = "0z5jb4vpbjsi63w3wjy6d2lgz33qdfvrgfb3bszv4hcf6a96y7fc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/31110e9bd82ad9c817e6cb597fa9c26c4cdc93ed/recipes/sesman"; - sha256 = "106jcdsp7rhkr4bbyprcld5fxcnimfcyx0cwcpzhd0b4vh3v3qvg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sesman"; - license = lib.licenses.free; - }; - }) {}; - session = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "session"; - ename = "session"; - version = "2.3.1"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "session"; - rev = "19ea0806873daac3539a4b956e15655e99e3dd6c"; - sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5f2a50f62475639af011c99c6cc38928b74b3b0a/recipes/session"; - sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/session"; - license = lib.licenses.free; - }; - }) {}; - sexp-move = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sexp-move"; - ename = "sexp-move"; - version = "0.2.6"; - src = fetchFromGitLab { - owner = "elzair"; - repo = "sexp-move"; - rev = "117f7a91ab7c25e438413753e916570122011ce7"; - sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sexp-move"; - sha256 = "0sdm3kr4594fy9hk8yljj2iwa40bgs8nqpwwl2a60r060spz54z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sexp-move"; - license = lib.licenses.free; - }; - }) {}; - sexy-monochrome-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sexy-monochrome-theme"; - ename = "sexy-monochrome-theme"; - version = "3.1"; - src = fetchFromGitHub { - owner = "voloyev"; - repo = "sexy-monochrome-theme"; - rev = "f64714a176d9212c9fa82355dd8ec89587ce13f0"; - sha256 = "17ahrdyk2v7vz13b4934xn8xjza4b7bfrkq8n42frq3pc8mgwqfd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dfd5ae9a93e036d11899c7adffdf6b63c2b21381/recipes/sexy-monochrome-theme"; - sha256 = "0rlx4029zxrnzzqspn8zrp3q6w0n46q24qk7za46hvxdsmgdpxbq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sexy-monochrome-theme"; - license = lib.licenses.free; - }; - }) {}; - shackle = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shackle"; - ename = "shackle"; - version = "1.0.3"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "shackle"; - rev = "242bacc940c18b6f9c156e1912155d45537fd827"; - sha256 = "0qqx8py21jaq1bdafkfqx18ns4zn305qg84zbmy65spiqnfq8hwk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/806e7d00f763f3fc4e3b8ebd483070ac6c5d0f21/recipes/shackle"; - sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/shackle"; - license = lib.licenses.free; - }; - }) {}; - shakespeare-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shakespeare-mode"; - ename = "shakespeare-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "CodyReichert"; - repo = "shakespeare-mode"; - rev = "c442eeea9d585e1b1fbb8813e33d47feec348a57"; - sha256 = "1ba9xy5jwn8ni8fi2k144j669jp95k2qf9ip77r16rsiy7divl0y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/shakespeare-mode"; - sha256 = "1sg8n4ifpi36zmf6b6s0swq7k3r038cmj8kxjm7hpgxq6f9qnk9x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shakespeare-mode"; - license = lib.licenses.free; - }; - }) {}; - shampoo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shampoo"; - ename = "shampoo"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "dmatveev"; - repo = "shampoo-emacs"; - rev = "be20737f2b870670ce8889a34ad5db0657e7a153"; - sha256 = "1dfjxphh3i9dwyjdj708ddi2mw7r90bxqzhc9inqkknfabycdw1r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/19f145113a0698466e706a6a4c55d63cec512706/recipes/shampoo"; - sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shampoo"; - license = lib.licenses.free; - }; - }) {}; - shell-pop = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-pop"; - ename = "shell-pop"; - version = "0.64"; - src = fetchFromGitHub { - owner = "kyagi"; - repo = "shell-pop-el"; - rev = "4a3a9d093ad1add792bba764c601aa28de302b34"; - sha256 = "1ybvg048jvijcg9jjfrbllf59pswmp0fd5zwq5x6nwg5wmggplzd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/44150bddc9b276ab9fb2ab6a92a11383a3ed03b0/recipes/shell-pop"; - sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/shell-pop"; - license = lib.licenses.free; - }; - }) {}; - shell-split-string = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-split-string"; - ename = "shell-split-string"; - version = "0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "shell-split-string-el"; - rev = "062b85f333a0a60ae09207530544a95d9b001581"; - sha256 = "18k7asrisxaa5kh3y849hxpk419429cnr2109cs6bnnzr3wya0r3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/84e20f4d02c69f8caf39cd20a581be3b9fa79931/recipes/shell-split-string"; - sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-split-string"; - license = lib.licenses.free; - }; - }) {}; - shell-switcher = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-switcher"; - ename = "shell-switcher"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "shell-switcher"; - rev = "2c5575ae859a82041a4bacd1793b844bfc24c34f"; - sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a16194f6ddc05350b9875f4e0a3a0383c79e650e/recipes/shell-switcher"; - sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-switcher"; - license = lib.licenses.free; - }; - }) {}; - shell-toggle = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shell-toggle"; - ename = "shell-toggle"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "shell-toggle.el"; - rev = "9820b0ad6f22c700759555aae8a454a7dc5a46b3"; - sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/95873d90886d2db5cc1d83d4bcb8dd5c2e65bc3e/recipes/shell-toggle"; - sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shell-toggle"; - license = lib.licenses.free; - }; - }) {}; - shelldoc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shelldoc"; - ename = "shelldoc"; - version = "0.0.5"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-shelldoc"; - rev = "1d40c73969347586906ca1dde2adb50afcd73b1b"; - sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/551623175e55629be6cfe44a595f25f09bd889e8/recipes/shelldoc"; - sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/shelldoc"; - license = lib.licenses.free; - }; - }) {}; - shelltest-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shelltest-mode"; - ename = "shelltest-mode"; - version = "1.1"; - src = fetchFromGitHub { - owner = "rtrn"; - repo = "shelltest-mode"; - rev = "b7f5cbb5eb64941afc9a3bf19ea3757b8e60cc18"; - sha256 = "1k26krij8vz2582cs194paiyzyjjns87w8syicm58fx6z0s6zrad"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/af6dcd4fc0663a255bd85b247bbdf57d425efdb7/recipes/shelltest-mode"; - sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shelltest-mode"; - license = lib.licenses.free; - }; - }) {}; - shen-elisp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shen-elisp"; - ename = "shen-elisp"; - version = "0.1"; - src = fetchFromGitHub { - owner = "deech"; - repo = "shen-elisp"; - rev = "ffe17dee05f75539cf5e4c59395e4c7400ececaa"; - sha256 = "10dq3qj1q8i6f604zws97xrvjxwrdcjj3ygh6xpna00cvf40llc2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/shen-elisp"; - sha256 = "045nawzyqaxd3g5f56fxfy680pl18x67w0wi28nrq4l4681w9xyq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shen-elisp"; - license = lib.licenses.free; - }; - }) {}; - shift-number = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shift-number"; - ename = "shift-number"; - version = "0.1"; - src = fetchFromGitHub { - owner = "alezost"; - repo = "shift-number.el"; - rev = "ba3c1f2e6b01bf14aa1433c2a49098af1c025f7c"; - sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b06be6b25078ddfabc1ef1145c817552f679c41c/recipes/shift-number"; - sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shift-number"; - license = lib.licenses.free; - }; - }) {}; - shm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shm"; - ename = "shm"; - version = "1.0.20"; - src = fetchFromGitHub { - owner = "chrisdone"; - repo = "structured-haskell-mode"; - rev = "bbdefb56cd341256628a19d1b2d7b0abe5da4b0e"; - sha256 = "12svprs5r2sbdgmp7cslr7xlwaqzjw386dzf6imf5d9m7rnlylck"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/68a2fddb7e000487f022b3827a7de9808ae73e2a/recipes/shm"; - sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shm"; - license = lib.licenses.free; - }; - }) {}; - showtip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "showtip"; - ename = "showtip"; - version = "0.1"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "showtip"; - rev = "930da302809a4257e8d69425455b29e1cc91949b"; - sha256 = "01zak0zhha6dp7a2hm28d065gjnc462iwpsfyxhbxgfzcdlicqc7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/showtip"; - sha256 = "1d5ckka2z0ffwyk9g3h91n3waijj2v7n8kvdks35gcr2yl3yk780"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/showtip"; - license = lib.licenses.free; - }; - }) {}; - shpec-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shpec-mode"; - ename = "shpec-mode"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "shpec"; - repo = "shpec-mode"; - rev = "76bccd63e3b70233a6c9ca0798dd03550952cc76"; - sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dd1bfe85b430c3bbb5a7baf11bb9699dad417f60/recipes/shpec-mode"; - sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shpec-mode"; - license = lib.licenses.free; - }; - }) {}; - shr-tag-pre-highlight = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , language-detection - , lib - , melpaBuild }: - melpaBuild { - pname = "shr-tag-pre-highlight"; - ename = "shr-tag-pre-highlight"; - version = "2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "shr-tag-pre-highlight.el"; - rev = "63eb0b2a4c1caf1004bac8e002ff8b7477871e36"; - sha256 = "14b398k7rd0c2ymvg8wyq65fhggkm0camgvqr7j6ia2y0kairxba"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7be3c139bee02e8bd9a9830026cbfdd17629ac4d/recipes/shr-tag-pre-highlight"; - sha256 = "1v8fqx8bd5504r2mflq6x8xs3k0py3bgsnadz3bjs68yhaxacj3v"; - name = "recipe"; - }; - packageRequires = [ emacs language-detection ]; - meta = { - homepage = "https://melpa.org/#/shr-tag-pre-highlight"; - license = lib.licenses.free; - }; - }) {}; - shrink-path = callPackage ({ dash - , f - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shrink-path"; - ename = "shrink-path"; - version = "0.3.1"; - src = fetchFromGitLab { - owner = "bennya"; - repo = "shrink-path.el"; - rev = "9b8cfb59a2dcee8b39b680ab9adad5ecb1f53c0b"; - sha256 = "0kx0c4syd7k6ff9j463bib32pz4wq0rzjlg6b0yqnymlzfr1mbki"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/86b0d105e8a57d5f0bcde779441dc80b85e170ea/recipes/shrink-path"; - sha256 = "0fq13c6g7qbq6f2ry9dzdyg1f6p41wimkjcdaj177rnilz77alzb"; - name = "recipe"; - }; - packageRequires = [ dash f s ]; - meta = { - homepage = "https://melpa.org/#/shrink-path"; - license = lib.licenses.free; - }; - }) {}; - shrink-whitespace = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shrink-whitespace"; - ename = "shrink-whitespace"; - version = "0.0.4"; - src = fetchFromGitLab { - owner = "jcpetkovich"; - repo = "shrink-whitespace.el"; - rev = "0407b89c142bd17e65edb666f35e2c6755bd0867"; - sha256 = "1qxdi2jm3zl5f55c6irsbnxrmqw039pcm99jafn7hg5z5zc3xhbx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a403093706d57887111e0d012e85273addaf0d35/recipes/shrink-whitespace"; - sha256 = "12i6xlcgk27bsdfnlcdjww8vxbx1yilaqa0pkh5n0hxb66zi6x15"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/shrink-whitespace"; - license = lib.licenses.free; - }; - }) {}; - shroud = callPackage ({ bui - , dash - , dash-functional - , emacs - , epg ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "shroud"; - ename = "shroud"; - version = "1.15.1"; - src = fetchFromGitHub { - owner = "o-nly"; - repo = "emacs-shroud"; - rev = "a7706ee48ef8dc67e6240377c61946c73a7fae3a"; - sha256 = "0wvm4lxqcc1p8v7rpqal3bnqgnpk1gs7v18i83f6cvi5d88jkgdg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2e4334a47a173e9cfb1e803d5781317da27702d7/recipes/shroud"; - sha256 = "0s7gap41y2ncnlbj2cc6b2l7q7qc8psxpbznkc71y53ch1mc9isg"; - name = "recipe"; - }; - packageRequires = [ bui dash dash-functional emacs epg s ]; - meta = { - homepage = "https://melpa.org/#/shroud"; - license = lib.licenses.free; - }; - }) {}; - shut-up = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shut-up"; - ename = "shut-up"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "cask"; - repo = "shut-up"; - rev = "dccd8f7d6af2dde96718f557b37bc25adc61dd12"; - sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/297d3d88a1dad694d5903072adb679f2194ce444/recipes/shut-up"; - sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/shut-up"; - license = lib.licenses.free; - }; - }) {}; - shx = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "shx"; - ename = "shx"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "riscy"; - repo = "shx-for-emacs"; - rev = "6b53896ad2d80f22454ae8b09dbaa7c352e4e37f"; - sha256 = "1ps4by78ly7incc4s8767wbmcqfw9him3xdaif5akzg4qqymcayb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f/recipes/shx"; - sha256 = "0h5ldglx4y85lm0pfilasnch2k82mlr7rb20qvarzwd41hb1az1k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/shx"; - license = lib.licenses.free; - }; - }) {}; - side-notes = callPackage ({ emacs - , fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "side-notes"; - ename = "side-notes"; - version = "0.2.0"; - src = fetchgit { - url = "https://git.sr.ht/~pwr/side-notes"; - rev = "2319ee180a4a67175b9e95322cd30b3ac70a9bdf"; - sha256 = "05xaj5lhxaf07frzcayx5ybz778sgx8bplg5i75x24b7miqdcjl2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9829ece8343a2a4309b5f7f5e324f0a1145e1e83/recipes/side-notes"; - sha256 = "1adan5v04awjxahmn2ndqj8fns5hkk4am5jnhic9y036qdcpd9mv"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/side-notes"; - license = lib.licenses.free; - }; - }) {}; - sift = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sift"; - ename = "sift"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "sift.el"; - rev = "8c3f3d14a351a2394027d72ee0599aa73b9f0d13"; - sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sift"; - sha256 = "1kr5rxza5li3zrkfvs91y7dxmn213z0zf836rkwkmwg2b9rmqxvj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sift"; - license = lib.licenses.free; - }; - }) {}; - silkworm-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "silkworm-theme"; - ename = "silkworm-theme"; - version = "0.1"; - src = fetchFromGitHub { - owner = "mswift42"; - repo = "silkworm-theme"; - rev = "ffb3d6d26191dec696ebb2ba4dc5fddfb38b9e0b"; - sha256 = "0g9672gfinlgmfi23c7zizf3sgpmjm5imzfhx3j77yw5l7zdx8ak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9451d247693c3e991f79315868c73808c0a664d4/recipes/silkworm-theme"; - sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/silkworm-theme"; - license = lib.licenses.free; - }; - }) {}; - simple-bookmarks = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-bookmarks"; - ename = "simple-bookmarks"; - version = "1.9"; - src = fetchFromGitHub { - owner = "jtkDvlp"; - repo = "simple-bookmarks"; - rev = "54e8d771bcdb0eb235b31c0aa9642171369500e5"; - sha256 = "0i4yw341b7iml2j8mxclixsrdqlvixfxpabaxp4jh70aq2zfw1cf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a60dd50c388a75ce21a5aec9acf938835d7afdbc/recipes/simple-bookmarks"; - sha256 = "0jn5wzm9y4054mr9czd3224s5kbrqpcpcfmj6fi62yhy3p1ys9rb"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/simple-bookmarks"; - license = lib.licenses.free; - }; - }) {}; - simple-httpd = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simple-httpd"; - ename = "simple-httpd"; - version = "1.5.1"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "emacs-web-server"; - rev = "a5eb49a6567e33586fba15dd649d63ca6e964314"; - sha256 = "0dpn92rg813c4pq7a1vzj3znyxzp2lmvxqz6pzcqi0l2xn5r3wvb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/simple-httpd"; - sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/simple-httpd"; - license = lib.licenses.free; - }; - }) {}; - simpleclip = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simpleclip"; - ename = "simpleclip"; - version = "1.0.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "simpleclip"; - rev = "63b1a5356e6ff839b1dbacdf22a5c7a275ec88e6"; - sha256 = "0iic8r0q21gjhj0d1k5nin9abx3789j0a37n96a5sx6rb4ps4f2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7c921e27d6aafc1b82d37f6beb8407840034377a/recipes/simpleclip"; - sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simpleclip"; - license = lib.licenses.free; - }; - }) {}; - simplenote2 = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request-deferred }: - melpaBuild { - pname = "simplenote2"; - ename = "simplenote2"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "alpha22jp"; - repo = "simplenote2.el"; - rev = "070aa311b0a08b530394c53d0c52c6438efbc20c"; - sha256 = "0zx49kd3wrqx6f52nk8rzqx3ay3qbcygibcidw6w7drvxnxjgd04"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1ac16abd2ce075a8bed4b7b52aed71cb12b38518/recipes/simplenote2"; - sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; - name = "recipe"; - }; - packageRequires = [ request-deferred ]; - meta = { - homepage = "https://melpa.org/#/simplenote2"; - license = lib.licenses.free; - }; - }) {}; - simplezen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "simplezen"; - ename = "simplezen"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "simplezen.el"; - rev = "c0ddaefbb38fcc1c9775434f734f89227d246a30"; - sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eddd3de86e14f56b59fa6f9a08fc89288e0bdbc1/recipes/simplezen"; - sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/simplezen"; - license = lib.licenses.free; - }; - }) {}; - skeletor = callPackage ({ cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "skeletor"; - ename = "skeletor"; - version = "1.6.1"; - src = fetchFromGitHub { - owner = "chrisbarrett"; - repo = "skeletor.el"; - rev = "91cd3a81b5881e7bef8024177bd0d9c5501d1d79"; - sha256 = "1a3yx3bg61kk1xpwzrn4b0wiavnms1myc1fy48xf9awfqfi78zxd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e63aefc869900c2af6f958dc138f9c72c63e2b8/recipes/skeletor"; - sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs f let-alist s ]; - meta = { - homepage = "https://melpa.org/#/skeletor"; - license = lib.licenses.free; - }; - }) {}; - skewer-less = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , skewer-mode }: - melpaBuild { - pname = "skewer-less"; - ename = "skewer-less"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "skewer-less"; - rev = "593001930f1d68c85233f34c5f6fb04173fc98d6"; - sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fb63f7417f39bd718972f54e57360708eb48b977/recipes/skewer-less"; - sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; - name = "recipe"; - }; - packageRequires = [ skewer-mode ]; - meta = { - homepage = "https://melpa.org/#/skewer-less"; - license = lib.licenses.free; - }; - }) {}; - skewer-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild - , simple-httpd }: - melpaBuild { - pname = "skewer-mode"; - ename = "skewer-mode"; - version = "1.8.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "skewer-mode"; - rev = "a10955db9ef95b0243ee31bcd30a6fb07ce5302b"; - sha256 = "1ha7jl7776pk1bki5zj2q0jy66450mn8xr3aqjc0m9kj3gc9qxgw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/10fba4f7935c78c4fc5eee7dbb161173dea884ba/recipes/skewer-mode"; - sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode simple-httpd ]; - meta = { - homepage = "https://melpa.org/#/skewer-mode"; - license = lib.licenses.free; - }; - }) {}; - sl = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sl"; - ename = "sl"; - version = "0.2"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "sl.el"; - rev = "51d92f820f3e93776fff6cdb9690458816888bdc"; - sha256 = "1faklr7jz1s6hs1xrzhvddlibhbjbqwxsb8iz6i5c8dg9sj3hw45"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7188a93d33e38f360930b5090c6ef872116f8a7c/recipes/sl"; - sha256 = "0h90ajikr6kclsy73vs9f50jg8z3d6kqbpanm9ryh2pw3sd4rnii"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sl"; - license = lib.licenses.free; - }; - }) {}; - slideview = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slideview"; - ename = "slideview"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-slideview"; - rev = "b0572c757115ba703f471e83135b2c8cc86d7f8f"; - sha256 = "0yrmm514b2sq86njc1pi7qnngfy5izz3nnpfk9nxsqar1vmdbdzb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b250f977f44a08346ee9715b416c9706375227a1/recipes/slideview"; - sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slideview"; - license = lib.licenses.free; - }; - }) {}; - slim-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slim-mode"; - ename = "slim-mode"; - version = "1.1"; - src = fetchFromGitHub { - owner = "slim-template"; - repo = "emacs-slim"; - rev = "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8"; - sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6a3b59bdbc53d7c0b4c4d6434689f7aab2546678/recipes/slim-mode"; - sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slim-mode"; - license = lib.licenses.free; - }; - }) {}; - slime = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , macrostep - , melpaBuild }: - melpaBuild { - pname = "slime"; - ename = "slime"; - version = "2.24"; - src = fetchFromGitHub { - owner = "slime"; - repo = "slime"; - rev = "c1f15e2bd02fabe7bb468b05fe311cd9a932f14f"; - sha256 = "0w7j835p9riyd6n4znj3x255lwsrmy0lj51hpc7bhk0vdz2cv2qm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/47609a81b81330820f6ddf717400dc7fa06aaabf/recipes/slime"; - sha256 = "1ds8iprxr04wdhnnw4129v5l3w3k5rjp5ax156ppqr5i7wxx1zac"; - name = "recipe"; - }; - packageRequires = [ cl-lib macrostep ]; - meta = { - homepage = "https://melpa.org/#/slime"; - license = lib.licenses.free; - }; - }) {}; - slime-company = callPackage ({ company - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "slime-company"; - ename = "slime-company"; - version = "1.1"; - src = fetchFromGitHub { - owner = "anwyn"; - repo = "slime-company"; - rev = "6c244690c80387a32b0cb984843e00c8b75ad6bb"; - sha256 = "1hl1hqkc1pxga9k2k8k15d7dip7sfsmwf4wm4sh346m6nj606q8g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/abe5036c6de996a723bc800e0f031314e1188660/recipes/slime-company"; - sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; - name = "recipe"; - }; - packageRequires = [ company slime ]; - meta = { - homepage = "https://melpa.org/#/slime-company"; - license = lib.licenses.free; - }; - }) {}; - slime-docker = callPackage ({ cl-lib ? null - , docker-tramp - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , slime }: - melpaBuild { - pname = "slime-docker"; - ename = "slime-docker"; - version = "0.7"; - src = fetchFromGitHub { - owner = "daewok"; - repo = "slime-docker"; - rev = "1ba41c2d86540a84b47466b0b6957f8063f23aa8"; - sha256 = "168s5xsf7l6s8x5hcmzmk5j9d8a3wpr4s3dlm697dg2n1717gl2z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/15ec3f7208287161571c8fc3b29369ceabb44e5f/recipes/slime-docker"; - sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; - name = "recipe"; - }; - packageRequires = [ cl-lib docker-tramp emacs slime ]; - meta = { - homepage = "https://melpa.org/#/slime-docker"; - license = lib.licenses.free; - }; - }) {}; - slime-volleyball = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slime-volleyball"; - ename = "slime-volleyball"; - version = "1.1"; - src = fetchFromGitHub { - owner = "fitzsim"; - repo = "slime-volleyball"; - rev = "159b5c0f40b109e3854e94b89ec5383854c46ae3"; - sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/853f47f469e372bdbae40f3cea60d9598e966fab/recipes/slime-volleyball"; - sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/slime-volleyball"; - license = lib.licenses.free; - }; - }) {}; - slstats = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "slstats"; - ename = "slstats"; - version = "1.10"; - src = fetchFromGitHub { - owner = "davep"; - repo = "slstats.el"; - rev = "e9696066abf3f2b7b818a57c062530dfd9377033"; - sha256 = "1mjzr6lqcyx3clp3bxq77k2rpkaglnq407xdk05xkaqissirpc83"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe7c8c241cc6920bbedb6711db63ea28ed633327/recipes/slstats"; - sha256 = "0z5y2fmb3v16g5gf87c9gll04wbjp3d1cf7gm5cxi4w3y1kw4r7q"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/slstats"; - license = lib.licenses.free; - }; - }) {}; - sly = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sly"; - ename = "sly"; - version = "2.22"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "sly"; - rev = "950b392887ef6f2a5247152383d57d275d3a3744"; - sha256 = "18i87mdqz90s0b9rm21dcc9zgymnxnj4wds4k2rd1z181ly6zcbq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/974d8812a4c5e45221ce3c32ae72c15ed29665c3/recipes/sly"; - sha256 = "000g5qpy45zqrh3g4mk70mh2lakadfq18djrq7cabagw1qmhqy41"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sly"; - license = lib.licenses.free; - }; - }) {}; - smart-mode-line = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , rich-minority }: - melpaBuild { - pname = "smart-mode-line"; - ename = "smart-mode-line"; - version = "2.13"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "smart-mode-line"; - rev = "9a6d821e0c78361ab35c6e403fc582b76558a1a7"; - sha256 = "164b697xm1rwcggv37dymhf3npbyh2bs59z8b6m5x35lb4c3lf8b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/smart-mode-line"; - sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; - name = "recipe"; - }; - packageRequires = [ emacs rich-minority ]; - meta = { - homepage = "https://melpa.org/#/smart-mode-line"; - license = lib.licenses.free; - }; - }) {}; - smart-mode-line-powerline-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline - , smart-mode-line }: - melpaBuild { - pname = "smart-mode-line-powerline-theme"; - ename = "smart-mode-line-powerline-theme"; - version = "2.13"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "smart-mode-line"; - rev = "558251e200cc555df137e60326295f2bd640fd6a"; - sha256 = "1xh1qcxw0r3j8hx8k8hsx0cl82wps5x755j4kbn01m7srzv6v167"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/60072b183151e519d141ec559b4902d20c87904c/recipes/smart-mode-line-powerline-theme"; - sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; - name = "recipe"; - }; - packageRequires = [ emacs powerline smart-mode-line ]; - meta = { - homepage = "https://melpa.org/#/smart-mode-line-powerline-theme"; - license = lib.licenses.free; - }; - }) {}; - smart-semicolon = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-semicolon"; - ename = "smart-semicolon"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "iquiw"; - repo = "smart-semicolon"; - rev = "94cf665aed45c5882e94afe465704fed6326e92e"; - sha256 = "16nkxf8phxi240fd9ksazxmjs91j0xplny6890a06kx4r8s61p9f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/fe339b95636b02ceb157294055d2f5f4c4b0b8cf/recipes/smart-semicolon"; - sha256 = "1vq6l3vc615w0p640wy226z5i7dky666sgzczkngv07kag0iwqp0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smart-semicolon"; - license = lib.licenses.free; - }; - }) {}; - smart-tabs-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smart-tabs-mode"; - ename = "smart-tabs-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "jcsalomon"; - repo = "smarttabs"; - rev = "8b196d596b331f03fba0efdb4e31d2fd0752c4a7"; - sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d712f0fb9538945713faf773772bb359fe6f509f/recipes/smart-tabs-mode"; - sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smart-tabs-mode"; - license = lib.licenses.free; - }; - }) {}; - smartparens = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartparens"; - ename = "smartparens"; - version = "1.11.0"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "smartparens"; - rev = "4873352b5d0a1c5142658122de1b6950b8fe7e4d"; - sha256 = "0zij2f2rjjym98w68jkp10n1ckpfprlkk217c3fg16hz5nq4vnm6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bd98f85461ef7134502d4f2aa8ce1bc764f3bda3/recipes/smartparens"; - sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/smartparens"; - license = lib.licenses.free; - }; - }) {}; - smartrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartrep"; - ename = "smartrep"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "myuhe"; - repo = "smartrep.el"; - rev = "0b73bf3d1a3c795671bfee0a36cecfaa54729446"; - sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/81cb649dc49767c21f79668d6bee950567b05aa0/recipes/smartrep"; - sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smartrep"; - license = lib.licenses.free; - }; - }) {}; - smartscan = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smartscan"; - ename = "smartscan"; - version = "0.2"; - src = fetchFromGitHub { - owner = "mickeynp"; - repo = "smart-scan"; - rev = "13c9fd6c0e38831f78dec55051e6b4a643963176"; - sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/smartscan"; - sha256 = "1q0lqms16g7avln1pbxzb49z3w96kv1r7lbh61ijlnz3jips098w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smartscan"; - license = lib.licenses.free; - }; - }) {}; - smbc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smbc"; - ename = "smbc"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "sakshamsharma"; - repo = "emacs-smbc"; - rev = "c377b806118d82140197d9cb1095548477e00497"; - sha256 = "16cj6jsy1psmcjshxb46i44sf1zb9s4mfiagl5cr22njy01ajq1h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/05b4f16cd8028edc758ada842432df11c8276fd3/recipes/smbc"; - sha256 = "0aviqa8mk8dxxnddfskq9jgz3knqhf0frj7gq7nk6ckxkrxrgqn4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smbc"; - license = lib.licenses.free; - }; - }) {}; - smeargle = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smeargle"; - ename = "smeargle"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-smeargle"; - rev = "0665b1ff5109731898bc4a0ca6d939933b804777"; - sha256 = "0p0kxmjdr02l9injlyyrnnzqdbb7mirz1xx79c3lw1rgpalf0jnf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c5b985b24a23499454dc61bf071073df325de571/recipes/smeargle"; - sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/smeargle"; - license = lib.licenses.free; - }; - }) {}; - smex = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smex"; - ename = "smex"; - version = "3.0"; - src = fetchFromGitHub { - owner = "nonsequitur"; - repo = "smex"; - rev = "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26"; - sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/smex"; - sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smex"; - license = lib.licenses.free; - }; - }) {}; - smmry = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smmry"; - ename = "smmry"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "microamp"; - repo = "smmry.el"; - rev = "b7ee765337fa627a6c59eb4f2a91df5d280ac6df"; - sha256 = "0hzs8xi7n3bsqwm3nlm3vk8p2p33ydwxpwk9wp3325g03jl921in"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ba2d4be4dd4d6c378eabd833f05a944afa21817b/recipes/smmry"; - sha256 = "05ikcvyr74jy3digd0ad443h5kf11w29hgnmb71bclm3mfslh5wn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smmry"; - license = lib.licenses.free; - }; - }) {}; - smooth-scroll = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smooth-scroll"; - ename = "smooth-scroll"; - version = "1.2"; - src = fetchFromGitHub { - owner = "k-talo"; - repo = "smooth-scroll.el"; - rev = "02320f28abb5cae28b3a18f6b9ce93129bdbfc45"; - sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4ad6411f76281232848c870e8f4f5bb78e6cf328/recipes/smooth-scroll"; - sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smooth-scroll"; - license = lib.licenses.free; - }; - }) {}; - smooth-scrolling = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "smooth-scrolling"; - ename = "smooth-scrolling"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "aspiers"; - repo = "smooth-scrolling"; - rev = "6a1420be510decde0a5eabc56cff229ae554417e"; - sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e156f146649a51f6ee636aef95214944a8079a27/recipes/smooth-scrolling"; - sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/smooth-scrolling"; - license = lib.licenses.free; - }; - }) {}; - snakemake-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , magit-popup - , melpaBuild }: - melpaBuild { - pname = "snakemake-mode"; - ename = "snakemake-mode"; - version = "1.5.0"; - src = fetchFromGitHub { - owner = "kyleam"; - repo = "snakemake-mode"; - rev = "0cadd2bbd20aae1555561e81ed72fec43ec7296e"; - sha256 = "1i4cwdyhfyawfx07i63iqdx524mlphgbrl44wqqnnxrbdqm0h534"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3a5b51fee1c9e6ce7e21555faa355d118d34b8d/recipes/snakemake-mode"; - sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs magit-popup ]; - meta = { - homepage = "https://melpa.org/#/snakemake-mode"; - license = lib.licenses.free; - }; - }) {}; - snapshot-timemachine-rsnapshot = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq - , snapshot-timemachine }: - melpaBuild { - pname = "snapshot-timemachine-rsnapshot"; - ename = "snapshot-timemachine-rsnapshot"; - version = "0.4"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "snapshot-timemachine-rsnapshot"; - rev = "72b0b700d80f1a0442e62bbbb6a0c8c59182f97f"; - sha256 = "1bdy7p0bjfdlv6l6yih6fvvi7xpldal4rj8l2ajpc6sgby24h8bb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94358fb8d1486491903c331d9e90ba5198117aa8/recipes/snapshot-timemachine-rsnapshot"; - sha256 = "0fxijd94p961ab0p4ddmhja4bfrif2d87v32g4c41amc1klyf25r"; - name = "recipe"; - }; - packageRequires = [ seq snapshot-timemachine ]; - meta = { - homepage = "https://melpa.org/#/snapshot-timemachine-rsnapshot"; - license = lib.licenses.free; - }; - }) {}; - snazzy-theme = callPackage ({ base16-theme - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snazzy-theme"; - ename = "snazzy-theme"; - version = "1.0"; - src = fetchFromGitHub { - owner = "weijiangan"; - repo = "emacs-snazzy"; - rev = "8729d10b5c1edf1053800170dab1ffd820b6fff2"; - sha256 = "1c07yggr6cnbca2iag1rjjsp1hiaccix222wzybxrphb72fn93wq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18c89a612418e0f49b7e6ae29a678d2fc1ffaf3d/recipes/snazzy-theme"; - sha256 = "0srmhwhqrp1s01p1znhjzs254l3r2i6c91v7cnlwlvrls1sbh32k"; - name = "recipe"; - }; - packageRequires = [ base16-theme emacs ]; - meta = { - homepage = "https://melpa.org/#/snazzy-theme"; - license = lib.licenses.free; - }; - }) {}; - snoopy = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "snoopy"; - ename = "snoopy"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "anmonteiro"; - repo = "snoopy-mode"; - rev = "ec4123bdebfe0bb7bf4feaac2dc02b59caffe386"; - sha256 = "01l44lshw0zvykay9886s1vqryanagkd4ciw3ramchn0baqz11vl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a882cd92964ac195a09469006c9a44dc202f000/recipes/snoopy"; - sha256 = "1wa8jykqyj6rxqfhwbiyli6yh8s7n0pqv7fc9sfaymarda93zbgi"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/snoopy"; - license = lib.licenses.free; - }; - }) {}; - socyl = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , s }: - melpaBuild { - pname = "socyl"; - ename = "socyl"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "socyl"; - rev = "38157e3bb0d7afa8b90b744648f63c85b4edb230"; - sha256 = "1ha0827zcdkl1ih8c7018cpbiw2k1b8ik4h7p6asw7pg0n5xf1c6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/774b3006f5b6b781594257f1d9819068becbbcc1/recipes/socyl"; - sha256 = "00b7x247cyjh4gci101fq1j6708vbcz1g9ls3845w863wjf6m5sz"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash pkg-info s ]; - meta = { - homepage = "https://melpa.org/#/socyl"; - license = lib.licenses.free; - }; - }) {}; - solaire-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solaire-mode"; - ename = "solaire-mode"; - version = "1.0.9"; - src = fetchFromGitHub { - owner = "hlissner"; - repo = "emacs-solaire-mode"; - rev = "fffdcc46f3956f415496342de7e24488b6e751c5"; - sha256 = "011m4r7s6i9lgjymh7jgq5jwwrpz4vmpvp3c8d4ix96v5hi04kzg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/52c69070eef3003eb53e1436c538779c74670ce6/recipes/solaire-mode"; - sha256 = "0pvgip12xl16rwz4wqmqjd8nhh3a299aknfsghazmxigamlmlsl5"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/solaire-mode"; - license = lib.licenses.free; - }; - }) {}; - solarized-theme = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solarized-theme"; - ename = "solarized-theme"; - version = "1.3.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "solarized-emacs"; - rev = "c42a932e5c467c1ce12c42276d35bfb8f666e96d"; - sha256 = "1m6grd8ym4azxi09ya236vil9ylqalli99p9fafd5zmzq647l840"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/solarized-theme"; - sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs ]; - meta = { - homepage = "https://melpa.org/#/solarized-theme"; - license = lib.licenses.free; - }; - }) {}; - solidity-flycheck = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solidity-flycheck"; - ename = "solidity-flycheck"; - version = "0.1.9"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "b5d95ef678305ca70b17e94fc2ee4289a8328048"; - sha256 = "04l3hvfpgqiaxdxh8s2cg2rx4cy50i7a411q81g8661fx60c6h6p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e561d869f4e32bad5d1a8678f67e591ff586d6de/recipes/solidity-flycheck"; - sha256 = "1lx64y77q33a2lrg5sj5h56gicw1lk8qmxmva5bgc4zxxd8qwz6f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/solidity-flycheck"; - license = lib.licenses.free; - }; - }) {}; - solidity-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "solidity-mode"; - ename = "solidity-mode"; - version = "0.1.9"; - src = fetchFromGitHub { - owner = "ethereum"; - repo = "emacs-solidity"; - rev = "d0ff4dea49540f37301d869f2797fca2492f55d5"; - sha256 = "1wcy5z4wggn3zs9h1kyvm0ji51ppjcqdmym3mmxbrhan6a0kq724"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/02d3fdae111b14a87aaa7a1b3f44e545c5e3d2ac/recipes/solidity-mode"; - sha256 = "15vz3ayl1p3dn2cavm68rqv901c1b7dxm2j8iazwzj3q15ln8xvn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/solidity-mode"; - license = lib.licenses.free; - }; - }) {}; - sos = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org }: - melpaBuild { - pname = "sos"; - ename = "sos"; - version = "0.1"; - src = fetchFromGitHub { - owner = "rudolfolah"; - repo = "emacs-sos"; - rev = "c3906ca6872f460c0bdd276410519308626313f1"; - sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/sos"; - sha256 = "0d0n2h7lbif32qgz0z2c36536mrx36d22gq86xm7kmxday6iy19k"; - name = "recipe"; - }; - packageRequires = [ org ]; - meta = { - homepage = "https://melpa.org/#/sos"; - license = lib.licenses.free; - }; - }) {}; - sotclojure = callPackage ({ cider - , clojure-mode - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sotlisp }: - melpaBuild { - pname = "sotclojure"; - ename = "sotclojure"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "speed-of-thought-clojure"; - rev = "ceac82aa691e8d98946471be6aaff9c9a4603c32"; - sha256 = "1a6riq7ksk5m76dsgc75d8b992nyr50l48l8cpms9064m6b0r9jv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3a2ccef8af91eada4449d9cd4bda6bd28272722e/recipes/sotclojure"; - sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; - name = "recipe"; - }; - packageRequires = [ cider clojure-mode emacs sotlisp ]; - meta = { - homepage = "https://melpa.org/#/sotclojure"; - license = lib.licenses.free; - }; - }) {}; - sotlisp = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sotlisp"; - ename = "sotlisp"; - version = "1.6.2"; - src = fetchFromGitHub { - owner = "Malabarba"; - repo = "speed-of-thought-lisp"; - rev = "fffe8d0b42b143a2e7df0470d9049fa57b6ecac5"; - sha256 = "0j5zwb1ypqps30126w2684lmjh8ia4qxg8inlajcbv8i3pbai7k6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1e6aed365c42987d64d0cd9a8a6178339b1b39e8/recipes/sotlisp"; - sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sotlisp"; - license = lib.licenses.free; - }; - }) {}; - sound-wav = callPackage ({ cl-lib ? null - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sound-wav"; - ename = "sound-wav"; - version = "0.2"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-sound-wav"; - rev = "2a8c8a9bd797dfbf4a0aa1c023a464b803227ff8"; - sha256 = "1ba1r359cb1dms24ajn0xfrqn8c9y08m6m7dwgxpylyyjwh1096y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8333470e3d84d5433be489a23e065c876bed2ab2/recipes/sound-wav"; - sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; - name = "recipe"; - }; - packageRequires = [ cl-lib deferred ]; - meta = { - homepage = "https://melpa.org/#/sound-wav"; - license = lib.licenses.free; - }; - }) {}; - sourcekit = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sourcekit"; - ename = "sourcekit"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "nathankot"; - repo = "company-sourcekit"; - rev = "8ba62ac25bf533b7f148f333bcb5c1db799f749b"; - sha256 = "01dh0wdaydiai4v13r8g05rpiwqr5qqi34wif8vbk2mrr25wc7i9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/45969cd5cd936ea61fbef4722843b0b0092d7b72/recipes/sourcekit"; - sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs request ]; - meta = { - homepage = "https://melpa.org/#/sourcekit"; - license = lib.licenses.free; - }; - }) {}; - sourcemap = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sourcemap"; - ename = "sourcemap"; - version = "0.3"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-sourcemap"; - rev = "64c89d296186f48d9135fb8aad501de19f64bceb"; - sha256 = "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/557d18259543263932fccdbaf44c4e7986bd277b/recipes/sourcemap"; - sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sourcemap"; - license = lib.licenses.free; - }; - }) {}; - spaceline = callPackage ({ cl-lib ? null - , dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , powerline - , s }: - melpaBuild { - pname = "spaceline"; - ename = "spaceline"; - version = "2.0.1"; - src = fetchFromGitHub { - owner = "TheBB"; - repo = "spaceline"; - rev = "2d1a7bfb5bdaf24958f50b4bf93182847916af85"; - sha256 = "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61/recipes/spaceline"; - sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash emacs powerline s ]; - meta = { - homepage = "https://melpa.org/#/spaceline"; - license = lib.licenses.free; - }; - }) {}; - spaceline-all-the-icons = callPackage ({ all-the-icons - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , memoize - , spaceline }: - melpaBuild { - pname = "spaceline-all-the-icons"; - ename = "spaceline-all-the-icons"; - version = "1.4.0"; - src = fetchFromGitHub { - owner = "domtronn"; - repo = "spaceline-all-the-icons.el"; - rev = "7eafe2d7a81f8d10e03498bdcc3bec0ea50f905d"; - sha256 = "186v71d8n1iy73drayyf57pyzlz973q74mazkyvb8w3fj8bb3llm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d039e057c1d441592da8f54e6d524b395b030375/recipes/spaceline-all-the-icons"; - sha256 = "1h6clkr2f29k2vw0jcrmnfbjpphaxm7s3zai6pn6qag32bgm3jq6"; - name = "recipe"; - }; - packageRequires = [ all-the-icons emacs memoize spaceline ]; - meta = { - homepage = "https://melpa.org/#/spaceline-all-the-icons"; - license = lib.licenses.free; - }; - }) {}; - sparkline = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sparkline"; - ename = "sparkline"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "woudshoo"; - repo = "sparkline"; - rev = "e44498cf1a58fb165991198fe5104d51c92ea904"; - sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7278ca31ee3c035c8ec754af152127776f04792e/recipes/sparkline"; - sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/sparkline"; - license = lib.licenses.free; - }; - }) {}; - sparql-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sparql-mode"; - ename = "sparql-mode"; - version = "4.0.2"; - src = fetchFromGitHub { - owner = "ljos"; - repo = "sparql-mode"; - rev = "2837b97244111515c61fb3823c1479bc126a458b"; - sha256 = "0hqp8r24wvzrkl630wbm0lynrcrnawv2yn2a3xgwqwwhwgva35rn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c3d729130a41903bb01465d0f01c34fbc508b56e/recipes/sparql-mode"; - sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/sparql-mode"; - license = lib.licenses.free; - }; - }) {}; - speech-tagger = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speech-tagger"; - ename = "speech-tagger"; - version = "0.0.0"; - src = fetchFromGitHub { - owner = "cosmicexplorer"; - repo = "speech-tagger"; - rev = "f5b9d4c0bca82dec6b70a2d6ec933cd189ef553a"; - sha256 = "0jcax2867nps9xfb85xwz7zx9mlfgxmkmw6nprivmm1hd3wm8dpd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db80aa5d95846ee02a9d762aa68325ab5e37dcf7/recipes/speech-tagger"; - sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/speech-tagger"; - license = lib.licenses.free; - }; - }) {}; - speed-type = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "speed-type"; - ename = "speed-type"; - version = "1.1"; - src = fetchFromGitHub { - owner = "parkouss"; - repo = "speed-type"; - rev = "f87399c523a2d0c6c98549f507006f1313d9cd6c"; - sha256 = "069rc8fjh5ic7b66x1gxfss4vki6j1pcvqjs8680wj3mxw5vbfw1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d6c33b5bd15875baea0fd2f24ee8ec9414a6f7aa/recipes/speed-type"; - sha256 = "0lsbi3b6v7fiwpvydgwcqx3y5i7bysfjammly22qpz3kcjmlvi06"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/speed-type"; - license = lib.licenses.free; - }; - }) {}; - sphinx-doc = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "sphinx-doc"; - ename = "sphinx-doc"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "naiquevin"; - repo = "sphinx-doc.el"; - rev = "b3459ecb9e6d3fffdee3cb7342563a56a32ce666"; - sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a3b80d346ad4fb415970beddb5f02ae795fbf1b4/recipes/sphinx-doc"; - sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; - name = "recipe"; - }; - packageRequires = [ cl-lib s ]; - meta = { - homepage = "https://melpa.org/#/sphinx-doc"; - license = lib.licenses.free; - }; - }) {}; - sphinx-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sphinx-mode"; - ename = "sphinx-mode"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "sphinx-mode"; - rev = "3d6e3059350593dc077f06f54c33869b9e28f7bc"; - sha256 = "0l3a8swmf3sm54ayk2ahh1i5j1hf0hd822dfmx50kgwi4wpv48sp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sphinx-mode"; - sha256 = "0f5xkaqsmxc4bfz80njlc395dcw2dbvmzx6h9fw31mylshzbmrys"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sphinx-mode"; - license = lib.licenses.free; - }; - }) {}; - splitjoin = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "splitjoin"; - ename = "splitjoin"; - version = "0.1"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-splitjoin"; - rev = "7e3a37e6700cda6a7ed6e3f1b97b85704c071f89"; - sha256 = "1bir7vvvd2zx2rf79cnmry30hi5xdn92yzg926mahfjdksbh2rhx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51e172f46045fbb71b6a13b3521b502339a4a02b/recipes/splitjoin"; - sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/splitjoin"; - license = lib.licenses.free; - }; - }) {}; - spotify = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "spotify"; - ename = "spotify"; - version = "0.3.4"; - src = fetchFromGitHub { - owner = "remvee"; - repo = "spotify-el"; - rev = "29577cf1188161f98b8358c149aaf47b2c137902"; - sha256 = "0h6yhfvvyd9sd5d37d3ng3z56zfb546vl95qjq16kcvxq00hdn1v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/spotify"; - sha256 = "07y6d3cz3nziasza3znysvcnx3kw156ab78kw5y0pdll45nw210x"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/spotify"; - license = lib.licenses.free; - }; - }) {}; - sprintly-mode = callPackage ({ fetchFromGitHub - , fetchurl - , furl - , lib - , melpaBuild }: - melpaBuild { - pname = "sprintly-mode"; - ename = "sprintly-mode"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "sprintly"; - repo = "sprintly-mode"; - rev = "6695892bae5860b5268bf3ae62be990ee9b63c11"; - sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8730956d3f00e030e06ef54c3f2aecc10bb40f9d/recipes/sprintly-mode"; - sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; - name = "recipe"; - }; - packageRequires = [ furl ]; - meta = { - homepage = "https://melpa.org/#/sprintly-mode"; - license = lib.licenses.free; - }; - }) {}; - sprunge = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sprunge"; - ename = "sprunge"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "tomjakubowski"; - repo = "sprunge.el"; - rev = "0fd386b8b29c4175022a04ad70ea5643185b6726"; - sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7b9f8cc2f2f8f8e1cf80b3e76c89b9f12cacf95/recipes/sprunge"; - sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; - name = "recipe"; - }; - packageRequires = [ cl-lib request ]; - meta = { - homepage = "https://melpa.org/#/sprunge"; - license = lib.licenses.free; - }; - }) {}; - sql-impala = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sql-impala"; - ename = "sql-impala"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jterk"; - repo = "sql-impala"; - rev = "466e7c0c789ec3e5e8a276c8f6754f91bb584c3e"; - sha256 = "02psgbm06wivdm2cmjnj2vy05lnljxn44hj2arw2fr7x2qwn9r35"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/sql-impala"; - sha256 = "1mh36ycqgr07r0hknkr6vb4k0r5b2h8bqd7m5faz9p56qbisgvvh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sql-impala"; - license = lib.licenses.free; - }; - }) {}; - sql-presto = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sql-presto"; - ename = "sql-presto"; - version = "1.0.4"; - src = fetchFromGitHub { - owner = "kat-co"; - repo = "sql-prestodb"; - rev = "bcda455e300a1af75c7bb805882329bc844703b2"; - sha256 = "00whmsylr802fx87yqbr06rbymyln7kq7750pcz26xm1jgja7cax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a21349775e018822a06bca3c3c338879548e286f/recipes/sql-presto"; - sha256 = "1rjfgvwgl63xn047vmsmj1s31wvrd24v6ibf9nri6qmffhv9i9zb"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sql-presto"; - license = lib.licenses.free; - }; - }) {}; - sqlformat = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sqlformat"; - ename = "sqlformat"; - version = "0.1"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "sqlformat"; - rev = "b70b05bf469a27c1a2940eeaa1a5c8cc93d805fd"; - sha256 = "14n2yjmi4ls8rmpvvw6d7cz5f6dcg7laaljxnhwbagfd5j4sdfrm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6bdaa1ccae12f2ea779ac6989607d8027feac2c9/recipes/sqlformat"; - sha256 = "07lf2gx629429b41qr04gl98gplb538gb5hw7idzrmi3higrmv8m"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/sqlformat"; - license = lib.licenses.free; - }; - }) {}; - sqlup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sqlup-mode"; - ename = "sqlup-mode"; - version = "0.8.0"; - src = fetchFromGitHub { - owner = "Trevoke"; - repo = "sqlup-mode.el"; - rev = "04970977b4abb4d44301651618bbf1cdb0b263dd"; - sha256 = "14s66xrabj269z7f94iynsla96bka7zac011psrbcfyy4m8mlamz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/sqlup-mode"; - sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sqlup-mode"; - license = lib.licenses.free; - }; - }) {}; - sr-speedbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sr-speedbar"; - ename = "sr-speedbar"; - version = "20140914.2339"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "sr-speedbar"; - rev = "4f816528a32eb421197a768d6dcf3a05de83f642"; - sha256 = "1x9wizd0fzcmpf8ff7c3rcfxk64diy9jmzzvxa7d5a3k8vvpdhg3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/sr-speedbar"; - sha256 = "1v90jbqdw39yrfcsnyqas8c5g09rcf1db65q2m2rw7rik8cgb052"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sr-speedbar"; - license = lib.licenses.free; - }; - }) {}; - srcery-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srcery-theme"; - ename = "srcery-theme"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "srcery-colors"; - repo = "srcery-emacs"; - rev = "0114420262f5e76cdc63f333d00522229aa77732"; - sha256 = "1am3nxa9n0irzw0mrb93lmppmw9d5c2yjfgpipvcvwsij3g6k2aj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2654fc05f55c7fab7d550b7db1d187edc9ff0f42/recipes/srcery-theme"; - sha256 = "1bnvf9v7g2mpx8519lh73fphhr4cqd33qlw22qyxnqiz5cz93lsp"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srcery-theme"; - license = lib.licenses.free; - }; - }) {}; - srefactor = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srefactor"; - ename = "srefactor"; - version = "0.5"; - src = fetchFromGitHub { - owner = "tuhdo"; - repo = "semantic-refactor"; - rev = "ecd40713f736b243285c07f4cfd77113794d4f9f"; - sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e23115ab231ab108678608f2ad0a864f896cd0f2/recipes/srefactor"; - sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srefactor"; - license = lib.licenses.free; - }; - }) {}; - srv = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "srv"; - ename = "srv"; - version = "0.2"; - src = fetchFromGitHub { - owner = "legoscia"; - repo = "srv.el"; - rev = "b1eb7b109bc1c616dbf027429a90dc3b1a4263f1"; - sha256 = "05kp8ajbqk7vxzkv23akyk2m7yg81pbrxpl3dsw67101sjazsybi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6b0b7f22631e7749da484ced9192d8ae5e1be941/recipes/srv"; - sha256 = "0xrgbi63vg0msxkcmcnvijkxa9y0s7613liqac7fs9514yvkbwin"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/srv"; - license = lib.licenses.free; - }; - }) {}; - ssass-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssass-mode"; - ename = "ssass-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "ssass-mode"; - rev = "5f36a169a1ad497f1d7a465be386ffb5e1f80bcf"; - sha256 = "1n1q26p52i6c6i8svkr0bn91hliqm540y1fcz3jci8w2ws0s5x11"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3137f98aaa871a52f477b63d9c3b7b63f7271344/recipes/ssass-mode"; - sha256 = "07aym4a7l70f1lb6yvwxkhsykrwbf0lcpwlwgcn5n44kavvdbzxm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ssass-mode"; - license = lib.licenses.free; - }; - }) {}; - ssh-agency = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-agency"; - ename = "ssh-agency"; - version = "0.4"; - src = fetchFromGitHub { - owner = "magit"; - repo = "ssh-agency"; - rev = "d9dbedd773ad3a831e02e162c47936d6814a850a"; - sha256 = "0895n7bss4wdydic1gflr03f2cwdyqywl16gvb599lpn288jhwvz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e608f40d00a3b2a80a6997da00e7d04f76d8ef0d/recipes/ssh-agency"; - sha256 = "1b25fl1kk4mwsd25pg9s0lazlpmaa6s9wnfgvlqk8k65d7p7idzz"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/ssh-agency"; - license = lib.licenses.free; - }; - }) {}; - ssh-deploy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ssh-deploy"; - ename = "ssh-deploy"; - version = "3.1"; - src = fetchFromGitHub { - owner = "cjohansson"; - repo = "emacs-ssh-deploy"; - rev = "8c26f61fe5ee2a65aeedc944bf23c66d159ef933"; - sha256 = "0zi8rlj4hmmhr4vcpa9666ddhqwdz7cnmhh80wrw21z9lsj8yccs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ssh-deploy"; - sha256 = "1ys3cc5fz8y4rsiq3daqgcpa14ssv1q4cw0pqbfscql6mps0mjdm"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/ssh-deploy"; - license = lib.licenses.free; - }; - }) {}; - stan-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stan-mode"; - ename = "stan-mode"; - version = "9.2.0"; - src = fetchFromGitHub { - owner = "stan-dev"; - repo = "stan-mode"; - rev = "45b8242611fe0437fcff48f5f4f7d8f0552531ac"; - sha256 = "14yv57grsw3zyjcqasaanx8g2skix0i3w1f5r1fng3sgwclwbkdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/67a44a0abe675238b10decdd612b67e418caf34b/recipes/stan-mode"; - sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stan-mode"; - license = lib.licenses.free; - }; - }) {}; - stan-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , stan-mode - , yasnippet }: - melpaBuild { - pname = "stan-snippets"; - ename = "stan-snippets"; - version = "9.2.0"; - src = fetchFromGitHub { - owner = "stan-dev"; - repo = "stan-mode"; - rev = "45b8242611fe0437fcff48f5f4f7d8f0552531ac"; - sha256 = "14yv57grsw3zyjcqasaanx8g2skix0i3w1f5r1fng3sgwclwbkdw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eda8539b7d8da3a458a38f7536ed03580f9088c3/recipes/stan-snippets"; - sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; - name = "recipe"; - }; - packageRequires = [ stan-mode yasnippet ]; - meta = { - homepage = "https://melpa.org/#/stan-snippets"; - license = lib.licenses.free; - }; - }) {}; - stash = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stash"; - ename = "stash"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "stash.el"; - rev = "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19"; - sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d3837ac3f1ac82e08a5ad7193766074a4d1bfa3d/recipes/stash"; - sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stash"; - license = lib.licenses.free; - }; - }) {}; - status = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "status"; - ename = "status"; - version = "0.3"; - src = fetchFromGitHub { - owner = "tromey"; - repo = "emacs-status"; - rev = "b62c74bf272566f82a68622f29fb9edafea0f241"; - sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dca8976de7060fcfc37a1623280869e0cef7b0a2/recipes/status"; - sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/status"; - license = lib.licenses.free; - }; - }) {}; - stgit = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stgit"; - ename = "stgit"; - version = "0.19"; - src = fetchFromGitHub { - owner = "ctmarinas"; - repo = "stgit"; - rev = "a29fc8873fca30cb5b13d94743a9010de28e2610"; - sha256 = "1xhxba0m78zx00m55y125bs1zxibyg7d9nw8xw9gqyshcncjffpg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/726da64b7baea1735a916b826bdfb8f575860e21/recipes/stgit"; - sha256 = "1gbr0pvvig2vg94svy1r6zp57rhyg6n9yp7qvlkfal1z2lhzhs0g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stgit"; - license = lib.licenses.free; - }; - }) {}; - string-edit = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "string-edit"; - ename = "string-edit"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "string-edit.el"; - rev = "9f9c9cd659156fd2217be814eb4e91da48d44647"; - sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/20fd24f22ef734fe064c66692bf3e18eb896f1ac/recipes/string-edit"; - sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/string-edit"; - license = lib.licenses.free; - }; - }) {}; - string-inflection = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "string-inflection"; - ename = "string-inflection"; - version = "1.0.10"; - src = fetchFromGitHub { - owner = "akicho8"; - repo = "string-inflection"; - rev = "9b08372301e3c5f91cb278ee0e00a48845a42cb6"; - sha256 = "0j3ms2cxbv24kr27r2jhzxpdih6w43gjdkm3sqd28c28ycab8d4b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5c2e2b6dba8686236c2595475cfddac5fd700e60/recipes/string-inflection"; - sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/string-inflection"; - license = lib.licenses.free; - }; - }) {}; - string-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild }: - melpaBuild { - pname = "string-utils"; - ename = "string-utils"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "string-utils"; - rev = "3ae530143899f533a9ef5e1f26f28b577ebe72ee"; - sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/string-utils"; - sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; - name = "recipe"; - }; - packageRequires = [ list-utils ]; - meta = { - homepage = "https://melpa.org/#/string-utils"; - license = lib.licenses.free; - }; - }) {}; - stripe-buffer = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stripe-buffer"; - ename = "stripe-buffer"; - version = "0.2.5"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "stripe-buffer"; - rev = "d9f009b92cf16fe2c40cd92b8f842a3872e6c190"; - sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/stripe-buffer"; - sha256 = "1kjib1kf9xqdirryr16wlvc95701hq8s4h8hz4dqzg3wzyb8287b"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/stripe-buffer"; - license = lib.licenses.free; - }; - }) {}; - stumpwm-mode = callPackage ({ fetchgit - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "stumpwm-mode"; - ename = "stumpwm-mode"; - version = "0.9.8"; - src = fetchgit { - url = "https://git.savannah.nongnu.org/git/stumpwm.git"; - rev = "a920d31bac148e7f6afa98c05f98920135de8b89"; - sha256 = "0hg2dhgph1fz8z6c79ia2j36wnbqgi6a7fjiz3wngslhbwy28xq7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/caaa21f235c4864f6008fb454d0a970a2fd22a86/recipes/stumpwm-mode"; - sha256 = "11yk7xmmccgv7hin5qd1ibcsm1za01xfwsxa25q7vqwk6svnb0sf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/stumpwm-mode"; - license = lib.licenses.free; - }; - }) {}; - stylus-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , sws-mode }: - melpaBuild { - pname = "stylus-mode"; - ename = "stylus-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "73893e8d8f1bcaf9f0252c6f020cdb3741d7125c"; - sha256 = "0fiihkwq4s8lkqx5fp3csmnaf0blnm6kpl4hfkwsb8rywgvzh7lk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/stylus-mode"; - sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; - name = "recipe"; - }; - packageRequires = [ sws-mode ]; - meta = { - homepage = "https://melpa.org/#/stylus-mode"; - license = lib.licenses.free; - }; - }) {}; - subatomic-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "subatomic-theme"; - ename = "subatomic-theme"; - version = "1.8.1"; - src = fetchFromGitHub { - owner = "cryon"; - repo = "subatomic"; - rev = "6a4086af748b1ecb27f6ba2aa2614988db16d594"; - sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/de7f6009bab3e9a5b14b7b96ab16557e81e7f078/recipes/subatomic-theme"; - sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/subatomic-theme"; - license = lib.licenses.free; - }; - }) {}; - subemacs = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "subemacs"; - ename = "subemacs"; - version = "1.0"; - src = fetchFromGitHub { - owner = "kbauer"; - repo = "subemacs"; - rev = "c053ccae8b1d5317651f131a63210eb20f590c93"; - sha256 = "0jfdw6i3qjsil0myhrddqchg39vrnd94qci4k1z37k2323vszy3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/18714a6b5ca4dcc51fa509fee1dc9afb0595c707/recipes/subemacs"; - sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/subemacs"; - license = lib.licenses.free; - }; - }) {}; - sublimity = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sublimity"; - ename = "sublimity"; - version = "20160629"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "sublimity"; - rev = "ee9c9fbb92b8fc0c191e5e8640477e251b602bf9"; - sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1e78cd1e5366a9b6d04237e9bf6a7e73424be52/recipes/sublimity"; - sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sublimity"; - license = lib.licenses.free; - }; - }) {}; - sudden-death = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudden-death"; - ename = "sudden-death"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "yewton"; - repo = "sudden-death.el"; - rev = "791a63d3f4df192e71f4232a9a4c5588f4b43dfb"; - sha256 = "0z3adwd6ymapkdniny3ax2i3wzxp11g6in4bghbcr9bfdxcsf7ps"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f20f389a2d7ddf49ca64d945b41584a7c120faf/recipes/sudden-death"; - sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sudden-death"; - license = lib.licenses.free; - }; - }) {}; - sudo-edit = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sudo-edit"; - ename = "sudo-edit"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "nflath"; - repo = "sudo-edit"; - rev = "bcb12aaa0da0c56d851cfa2f1b3ea4afdd2a755b"; - sha256 = "1k6sx8k304dw9dlidnxcln9ip9cj3b6i196z98g9n0kcd1js9f99"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b08d4bbdb23b988db5ed7cb5a2a925b7c2e242e/recipes/sudo-edit"; - sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/sudo-edit"; - license = lib.licenses.free; - }; - }) {}; - suggest = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , loop - , melpaBuild - , s - , spinner }: - melpaBuild { - pname = "suggest"; - ename = "suggest"; - version = "0.7"; - src = fetchFromGitHub { - owner = "Wilfred"; - repo = "suggest.el"; - rev = "31ab6c956d17176affbbe9ca53c416920180ddbd"; - sha256 = "01v8plska5d3g19sb1m4ph1i3ayprfzk8mi6mpabjy6zad397xjl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b9fd27e812549587dc2ec26bb58974177ff263ff/recipes/suggest"; - sha256 = "12vvakqqzmmqq5yynpd4wf4lnb0yvcnz065kni996sy7rv7rh83q"; - name = "recipe"; - }; - packageRequires = [ dash emacs f loop s spinner ]; - meta = { - homepage = "https://melpa.org/#/suggest"; - license = lib.licenses.free; - }; - }) {}; - suomalainen-kalenteri = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "suomalainen-kalenteri"; - ename = "suomalainen-kalenteri"; - version = "2017.8.1"; - src = fetchFromGitHub { - owner = "tlikonen"; - repo = "suomalainen-kalenteri"; - rev = "c702e33cb6e13cb28bd761844e95be112a3c04f3"; - sha256 = "13avc3ba6vhysmhrcxfpkamggfpal479gn7k9n7509dpwp06dv8h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/181adf1b16253481674663fd28b195172231b7da/recipes/suomalainen-kalenteri"; - sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/suomalainen-kalenteri"; - license = lib.licenses.free; - }; - }) {}; - super-save = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "super-save"; - ename = "super-save"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "super-save"; - rev = "62512f60d6685d8601e2021d95e77603b6d96885"; - sha256 = "0cn39d1qfm119bxb9sdl43ya2vvadfp22qwdn3j843wyf92hpdn4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9730b65787b26d3909952cf246a01bd349e5fbab/recipes/super-save"; - sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/super-save"; - license = lib.licenses.free; - }; - }) {}; - svg-mode-line-themes = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xmlgen }: - melpaBuild { - pname = "svg-mode-line-themes"; - ename = "svg-mode-line-themes"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "sabof"; - repo = "svg-mode-line-themes"; - rev = "80a0e01839cafbd66899202e7764c33231974259"; - sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ca54d78b5e87c3bb582b178e4892af2bf447d1e/recipes/svg-mode-line-themes"; - sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; - name = "recipe"; - }; - packageRequires = [ xmlgen ]; - meta = { - homepage = "https://melpa.org/#/svg-mode-line-themes"; - license = lib.licenses.free; - }; - }) {}; - swagger-to-org = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "swagger-to-org"; - ename = "swagger-to-org"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "ahungry"; - repo = "swagger-to-org"; - rev = "181357c71ea24bede263f5706d8781ad65e16877"; - sha256 = "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4d5a7f017593e73ea48c0e535ecf3809536bcde5/recipes/swagger-to-org"; - sha256 = "1m40f5njxcxmc2snaz2q43b4scwgp51y761kq6klixjvafi0pv86"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/swagger-to-org"; - license = lib.licenses.free; - }; - }) {}; - sweetgreen = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "sweetgreen"; - ename = "sweetgreen"; - version = "0.5"; - src = fetchFromGitHub { - owner = "CestDiego"; - repo = "sweetgreen.el"; - rev = "e40d2821ff941695e50a9b003a8c96d32c19bfdc"; - sha256 = "1gw09x5d4yqlmknjsrhgygp9bch315cnmyqp3679i3hza0l7fds6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63812707948e6dcc00e00ebc3c423469593e80fd/recipes/sweetgreen"; - sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash helm request ]; - meta = { - homepage = "https://melpa.org/#/sweetgreen"; - license = lib.licenses.free; - }; - }) {}; - swift-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "swift-mode"; - ename = "swift-mode"; - version = "8.0.1"; - src = fetchFromGitHub { - owner = "swift-emacs"; - repo = "swift-mode"; - rev = "86f8f62294aa5a6d44fa872278d75a4a41f403d4"; - sha256 = "0sszk2nwp6h9qk7vgh5n05pzh264br3x3r1hyj97gwf8jdqzkr74"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/swift-mode"; - sha256 = "103nix9k2agxgfpwyhsracixl4xvzqlgidd25r1fpj679hr42bg8"; - name = "recipe"; - }; - packageRequires = [ emacs seq ]; - meta = { - homepage = "https://melpa.org/#/swift-mode"; - license = lib.licenses.free; - }; - }) {}; - swift3-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "swift3-mode"; - ename = "swift3-mode"; - version = "2.1.1"; - src = fetchFromGitHub { - owner = "taku0"; - repo = "swift3-mode"; - rev = "ea34d46bf9a4293e75ffdac9500d34989316d9e9"; - sha256 = "1hwc3fxv87hmw0a0mgl8khfzf1p7yp2izkc02z8f1vbkaibmmawp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0ca9071199230d3c4c1b2e3a501736df87095fd3/recipes/swift3-mode"; - sha256 = "14vm05p8ix09v73dkmf03i56yib8yk6h2r1zc9m4ym80fki4f520"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/swift3-mode"; - license = lib.licenses.free; - }; - }) {}; - swiper = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ivy - , lib - , melpaBuild }: - melpaBuild { - pname = "swiper"; - ename = "swiper"; - version = "0.11.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper"; - rev = "525b2e4887dd839045313f32d3ddeb5cab4c7a7e"; - sha256 = "009n8zjycs62cv4i1k9adbb284wz2w3r13xki2740sj34k683v13"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64cad81615ef3ec34fab1f438b0c55134833c97/recipes/swiper"; - sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; - name = "recipe"; - }; - packageRequires = [ emacs ivy ]; - meta = { - homepage = "https://melpa.org/#/swiper"; - license = lib.licenses.free; - }; - }) {}; - swiper-helm = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "swiper-helm"; - ename = "swiper-helm"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "swiper-helm"; - rev = "93fb6db87bc6a5967898b5fd3286954cc72a0008"; - sha256 = "05n4h20lfyg1kis5rig72ajbz680ml5fmsy6l1w4g9jx2xybpll2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/674c709490e13267e09417e08953ff76bfbaddb7/recipes/swiper-helm"; - sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; - name = "recipe"; - }; - packageRequires = [ emacs helm swiper ]; - meta = { - homepage = "https://melpa.org/#/swiper-helm"; - license = lib.licenses.free; - }; - }) {}; - switch-buffer-functions = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "switch-buffer-functions"; - ename = "switch-buffer-functions"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "switch-buffer-functions-el"; - rev = "701caf97c977903c9afae6ef305241d068c5d9ac"; - sha256 = "1j6m3alk6y31zkq8h3fkha39fnvad7wmpa7kj4cwva0r5cd40l5a"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d37ebd28f4a2f770958bd9a2669cce86cc76cbe7/recipes/switch-buffer-functions"; - sha256 = "1b93p8q07zncqq3nw829gddc615rwaan1ds5vgfhdb1l7bh9f37l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/switch-buffer-functions"; - license = lib.licenses.free; - }; - }) {}; - switch-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "switch-window"; - ename = "switch-window"; - version = "1.6.2"; - src = fetchFromGitHub { - owner = "dimitri"; - repo = "switch-window"; - rev = "204f9fc1a39868a2d16ab9370a142c8c9c7a0943"; - sha256 = "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d2204e3b53ade1e400e143ac219f3c7ab63a1e9/recipes/switch-window"; - sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/switch-window"; - license = lib.licenses.free; - }; - }) {}; - sws-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "sws-mode"; - ename = "sws-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "brianc"; - repo = "jade-mode"; - rev = "03486dce6990c96e85e53c18b8fcb35fbb8509f5"; - sha256 = "10w73i4sh6mn108lcnm6sv4xr1w0avbfw05kid28c33583h80vpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/877b5a3e612e1b1d6d51e60c66b0b79f231abdb2/recipes/sws-mode"; - sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/sws-mode"; - license = lib.licenses.free; - }; - }) {}; - sx = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , let-alist - , lib - , markdown-mode - , melpaBuild }: - melpaBuild { - pname = "sx"; - ename = "sx"; - version = "0.4"; - src = fetchFromGitHub { - owner = "vermiculus"; - repo = "sx.el"; - rev = "4892f45746fb217d059f4fa074a237c5bac7dd6c"; - sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f16958a09820233fbe2abe403561fd9a012d0046/recipes/sx"; - sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json let-alist markdown-mode ]; - meta = { - homepage = "https://melpa.org/#/sx"; - license = lib.licenses.free; - }; - }) {}; - symbol-overlay = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symbol-overlay"; - ename = "symbol-overlay"; - version = "4.1"; - src = fetchFromGitHub { - owner = "wolray"; - repo = "symbol-overlay"; - rev = "d1464042783e252f5cac1fcac82fee16fc3534db"; - sha256 = "0d5ir4f3xmz3kr0w93zw45ha4hzz4rvldiza3q9fmqm7m1w2c995"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c2a468ebe1a3e5a35ef40c59a62befbf8960bd7b/recipes/symbol-overlay"; - sha256 = "1al60x2mnjsv99jd10v5sd56zz185wsddiq7128phf1l35bkibis"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/symbol-overlay"; - license = lib.licenses.free; - }; - }) {}; - symbolword-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symbolword-mode"; - ename = "symbolword-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "ncaq"; - repo = "symbolword-mode"; - rev = "14a2e4429229d073d48d77c81b3551d60256c545"; - sha256 = "1p92xxclzyfpxl3g12s3651y5rx4a6hf9zy232mxzlxjy0adic2v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/be2018e0206c3f39c1b67e83000b030d70a72ceb/recipes/symbolword-mode"; - sha256 = "1fs1irnmlbrn76b4gdsy0v65nz8av85iqm0b7g9nm2rm8azcr050"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/symbolword-mode"; - license = lib.licenses.free; - }; - }) {}; - symon = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "symon"; - ename = "symon"; - version = "20160630"; - src = fetchFromGitHub { - owner = "zk-phi"; - repo = "symon"; - rev = "7beeedd70dc37f5904c781fb697c8df056196ee9"; - sha256 = "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f4bbc6b3d7b2e2a9fbe7ff7f1d47cda9c859cc0/recipes/symon"; - sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/symon"; - license = lib.licenses.free; - }; - }) {}; - syndicate = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syndicate"; - ename = "syndicate"; - version = "1.0"; - src = fetchFromGitHub { - owner = "KNX32542"; - repo = "syndicate"; - rev = "38b78e18442b1fd028ef3c44053c97bd6020a5b8"; - sha256 = "0iycq74liddjgah9xhb562rr7a8s2c99mbw22r34gvl7rqhn6c2j"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/626bda1691d9c7a97fcf549f7a3f0d41d832cfde/recipes/syndicate"; - sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; - name = "recipe"; - }; - packageRequires = [ evil ]; - meta = { - homepage = "https://melpa.org/#/syndicate"; - license = lib.licenses.free; - }; - }) {}; - synosaurus = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "synosaurus"; - ename = "synosaurus"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "hpdeifel"; - repo = "synosaurus"; - rev = "93f8e0bdddc94426730bfcdf736522e378af508f"; - sha256 = "0gq9gq3a2x7ysmxil4fg6srnm424digpfp8gc2iqvhkdrhmygg3y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/synosaurus"; - sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/synosaurus"; - license = lib.licenses.free; - }; - }) {}; - syntactic-sugar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "syntactic-sugar"; - ename = "syntactic-sugar"; - version = "0.9.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "syntactic-sugar"; - rev = "06d943c6ad9507603bb6ab6d37be2d359d0763a9"; - sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b32b9b3b3e820e498d7531a1f82da36e5e8f4e74/recipes/syntactic-sugar"; - sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/syntactic-sugar"; - license = lib.licenses.free; - }; - }) {}; - system-packages = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "system-packages"; - ename = "system-packages"; - version = "1.0.10"; - src = fetchFromGitLab { - owner = "jabranham"; - repo = "system-packages"; - rev = "54f8243a8910535273dca9c439b257975a7ce405"; - sha256 = "1c67f6846p018y5dw7dkn79csrwfvq5rs8308gw7g3r4x40s2psb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7d3c7af03e0bca3f834c32827cbcca29e29ef4db/recipes/system-packages"; - sha256 = "13nk3m8gw9kqjllk7hgkmpxsx9y5h03f0l7zydg388wc7cxsiy3l"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/system-packages"; - license = lib.licenses.free; - }; - }) {}; - system-specific-settings = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "system-specific-settings"; - ename = "system-specific-settings"; - version = "0.2"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "emacs-system-specific-settings"; - rev = "0050d85b2175095aa5ecf580a2fe43c069b0eef3"; - sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3f52c584d7435c836ba3c95c598306ba0f5c06da/recipes/system-specific-settings"; - sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/system-specific-settings"; - license = lib.licenses.free; - }; - }) {}; - systemd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "systemd"; - ename = "systemd"; - version = "1.6"; - src = fetchFromGitHub { - owner = "holomorph"; - repo = "systemd-mode"; - rev = "1e7567a9973bf80cab0d7e0355656a84bee7ca96"; - sha256 = "0ylgnvpfindg4cxccbqy02ic7p0i9rygf1w16dm1filwhbqvjplq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ca810e512c357d1d0130aeeb9b46b38c595e3351/recipes/systemd"; - sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/systemd"; - license = lib.licenses.free; - }; - }) {}; - ta = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ta"; - ename = "ta"; - version = "1.5"; - src = fetchFromGitHub { - owner = "kuanyui"; - repo = "ta.el"; - rev = "9226afbe7abbefb825844ef3ba4ca15f1934cfc2"; - sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/847693b5952e99597bd77223e1058536d1beeb5c/recipes/ta"; - sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/ta"; - license = lib.licenses.free; - }; - }) {}; - tabbar = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tabbar"; - ename = "tabbar"; - version = "2.2"; - src = fetchFromGitHub { - owner = "dholm"; - repo = "tabbar"; - rev = "82bbda31cbe8ef367dd6501c3aa14b7f2c835910"; - sha256 = "01sw76wp8bvh21h30pkc3kjr98c8m6qid6misk1y7hkyld0bzxay"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/806420d75561cbeffbc1b387345a56c21cc20179/recipes/tabbar"; - sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tabbar"; - license = lib.licenses.free; - }; - }) {}; - tabbar-ruler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tabbar }: - melpaBuild { - pname = "tabbar-ruler"; - ename = "tabbar-ruler"; - version = "0.45"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "tabbar-ruler.el"; - rev = "7df2e4814018e84ef9261d04a2ade8168a44e3d7"; - sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1d69d1ef8dbab8394be01153cf9ebe8e49bf9912/recipes/tabbar-ruler"; - sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; - name = "recipe"; - }; - packageRequires = [ tabbar ]; - meta = { - homepage = "https://melpa.org/#/tabbar-ruler"; - license = lib.licenses.free; - }; - }) {}; - tablist = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tablist"; - ename = "tablist"; - version = "1.0"; - src = fetchFromGitHub { - owner = "politza"; - repo = "tablist"; - rev = "f6b495d09494784163c3e6ba75b771b71fe226a8"; - sha256 = "0pzsdg0rm59daw34ppss79cg05z9wnr8nkmdcc48nkd0p69ip2yy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5fc0c6c02d609fb22710560337bd577f4b1e0c8f/recipes/tablist"; - sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tablist"; - license = lib.licenses.free; - }; - }) {}; - tagedit = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "tagedit"; - ename = "tagedit"; - version = "1.4.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "tagedit"; - rev = "3fcf54b824b75c5ad68f5438d5638103049a389f"; - sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8968e2cd0bd49d54a5479b2467bd4f0a97d7a969/recipes/tagedit"; - sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/tagedit"; - license = lib.licenses.free; - }; - }) {}; - tao-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tao-theme"; - ename = "tao-theme"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "11111000000"; - repo = "tao-theme-emacs"; - rev = "af142b423536b47bce67afda5108dbf3a9317521"; - sha256 = "1fs4rhb4g7s7x3cvqv9d2x5f3079z2hkmp5lns7qfziszkc9fxia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94b70f11655944080507744fd06464607727ecef/recipes/tao-theme"; - sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tao-theme"; - license = lib.licenses.free; - }; - }) {}; - taskpaper-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "taskpaper-mode"; - ename = "taskpaper-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "saf-dmitry"; - repo = "taskpaper-mode"; - rev = "169dab1eb632e5ac5e34608be2df4e9854368180"; - sha256 = "0mwd9i6mm0h18z7fiqla95bx6c0zb8x4f6380842hgzi9zrnghxi"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f969b1cd58dfd22041a8a2b116db0f48e321e546/recipes/taskpaper-mode"; - sha256 = "0gayhzakiwlrkysmh24499pyzdfy3rmf8d68vamih7igxpl57gim"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/taskpaper-mode"; - license = lib.licenses.free; - }; - }) {}; - tawny-mode = callPackage ({ cider - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tawny-mode"; - ename = "tawny-mode"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "phillord"; - repo = "tawny-owl"; - rev = "9f11bb428a255a605c725dfbd23cc082c5d258af"; - sha256 = "0l419pvvnj850c6byr7njnjki171mcsvlqj8g2d4qk16j504n34m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ea9a114ff739f7d6f5d4c3167f5635ddf79bf60c/recipes/tawny-mode"; - sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; - name = "recipe"; - }; - packageRequires = [ cider emacs ]; - meta = { - homepage = "https://melpa.org/#/tawny-mode"; - license = lib.licenses.free; - }; - }) {}; - tdd-status-mode-line = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tdd-status-mode-line"; - ename = "tdd-status-mode-line"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "algernon"; - repo = "tdd-status-mode-line"; - rev = "9b3c35b0a972772640e9fee653eab6a76e06416a"; - sha256 = "0bvxc926kaxvqnppaw4y6gp814qc0krvidn5qg761z4qwz023rax"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/tdd-status-mode-line"; - sha256 = "1i0s7f4y4v8681mymcmjlcbq0jfghgmdzrs167c453mb5ssz8yxg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tdd-status-mode-line"; - license = lib.licenses.free; - }; - }) {}; - telepathy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "telepathy"; - ename = "telepathy"; - version = "1.0"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "telepathy.el"; - rev = "211d785b02a29ddc254422fdcc3db45262582f8c"; - sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/485ef1745f07f29c45bf0d489eeb4fcdfda80b33/recipes/telepathy"; - sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/telepathy"; - license = lib.licenses.free; - }; - }) {}; - telephone-line = callPackage ({ cl-generic - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , seq }: - melpaBuild { - pname = "telephone-line"; - ename = "telephone-line"; - version = "0.4"; - src = fetchFromGitHub { - owner = "dbordak"; - repo = "telephone-line"; - rev = "a83dcda21b0f6e10e51c3cded7da9a5d2ead5f34"; - sha256 = "1cg34l6jq75mcqnb3p93z0kv1arvnswm8nkk39fmryand2yygnl9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9c998b70365fb0a210c3b9639db84034c7d45097/recipes/telephone-line"; - sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; - name = "recipe"; - }; - packageRequires = [ cl-generic cl-lib emacs seq ]; - meta = { - homepage = "https://melpa.org/#/telephone-line"; - license = lib.licenses.free; - }; - }) {}; - ten-hundred-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ten-hundred-mode"; - ename = "ten-hundred-mode"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "aaron-em"; - repo = "ten-hundred-mode.el"; - rev = "bdcfda49b1819e82d61fe90947e50bb948cf7933"; - sha256 = "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a0534044ff9ce0740414bf5dc3b104bbdbdacce/recipes/ten-hundred-mode"; - sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/ten-hundred-mode"; - license = lib.licenses.free; - }; - }) {}; - term-alert = callPackage ({ alert - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , term-cmd }: - melpaBuild { - pname = "term-alert"; - ename = "term-alert"; - version = "1.2"; - src = fetchFromGitHub { - owner = "CallumCameron"; - repo = "term-alert"; - rev = "47af9e6fe483ef0d393098c145f499362a33292a"; - sha256 = "1nv8ma8x9xkgsl95z7yysy8q1lb3xr0pd8a5sb01nlx8ks3clad4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d77aee0b1b2eb7834436bdfa339f95cb97da140/recipes/term-alert"; - sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; - name = "recipe"; - }; - packageRequires = [ alert emacs f term-cmd ]; - meta = { - homepage = "https://melpa.org/#/term-alert"; - license = lib.licenses.free; - }; - }) {}; - term-cmd = callPackage ({ dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-cmd"; - ename = "term-cmd"; - version = "1.1"; - src = fetchFromGitHub { - owner = "CallumCameron"; - repo = "term-cmd"; - rev = "6c9cbc659b70241d2ed1601eea34aeeca0646dac"; - sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e08ea89cf193414cce5073fc9c312f2b382bc842/recipes/term-cmd"; - sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; - name = "recipe"; - }; - packageRequires = [ dash emacs f ]; - meta = { - homepage = "https://melpa.org/#/term-cmd"; - license = lib.licenses.free; - }; - }) {}; - term-manager = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-manager"; - ename = "term-manager"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "term-manager"; - rev = "bbf64e7d840bc60242dd1d4943f6f5acee1478c2"; - sha256 = "1p11zrig6f01hyxx0adrz57i8zq4c61myiak3kd80v4j3aa8d7ng"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0b2f7d8c8fcbb535432f8e70729d69a572e49a1a/recipes/term-manager"; - sha256 = "0ab388ki7vr1wpz81bvbl2fskq9zz5bicdf5gqfg01qzv5l75iza"; - name = "recipe"; - }; - packageRequires = [ dash emacs ]; - meta = { - homepage = "https://melpa.org/#/term-manager"; - license = lib.licenses.free; - }; - }) {}; - term-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , term-manager }: - melpaBuild { - pname = "term-projectile"; - ename = "term-projectile"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "IvanMalison"; - repo = "term-manager"; - rev = "0bca2e7e3b6e906ec67696bc0be952988ca7f733"; - sha256 = "0ybmszjb2lrgqp3zixpxy0lp2l9axw3mz2d4n2kmajh8ckbr576v"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5260876280148fae28a459f07932cebb059b560e/recipes/term-projectile"; - sha256 = "1mzyzjxkdfvf1kq9m3c1f6y6xzj1qq53rixawmnzmil5cmznvwag"; - name = "recipe"; - }; - packageRequires = [ projectile term-manager ]; - meta = { - homepage = "https://melpa.org/#/term-projectile"; - license = lib.licenses.free; - }; - }) {}; - term-run = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "term-run"; - ename = "term-run"; - version = "0.1.5"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "term-run-el"; - rev = "54650dbbabb13cb2a6c0670ff6b24b29717a6a8b"; - sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7cad6343104bfe5724e068660af79a6249010164/recipes/term-run"; - sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/term-run"; - license = lib.licenses.free; - }; - }) {}; - termbright-theme = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "termbright-theme"; - ename = "termbright-theme"; - version = "1.0"; - src = fetchFromGitHub { - owner = "bmastenbrook"; - repo = "termbright-theme-el"; - rev = "bec6ab14336c0611e85f45486276004f16d20607"; - sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a7151773de39fe570e3e9b351daad89db9dd267f/recipes/termbright-theme"; - sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/termbright-theme"; - license = lib.licenses.free; - }; - }) {}; - terminal-here = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "terminal-here"; - ename = "terminal-here"; - version = "1.0"; - src = fetchFromGitHub { - owner = "davidshepherd7"; - repo = "terminal-here"; - rev = "e176d1675dc5c41b6aebd05122fb2efc44b6cff0"; - sha256 = "0dj3z8czvziszb20sizgf1yriv4im811rcfadm7ga9zs2al56kqy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f8df6f7e23476eb52e7fdfbf9de277d3b44db978/recipes/terminal-here"; - sha256 = "1w64r3y88lspxxcqcqfwhakk8p9vl7q3z610dykfbqwqx61a6adj"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/terminal-here"; - license = lib.licenses.free; - }; - }) {}; - tern = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "tern"; - ename = "tern"; - version = "0.23.0"; - src = fetchFromGitHub { - owner = "ternjs"; - repo = "tern"; - rev = "40a0c74db3888b997a9115720ff91c399bb1b146"; - sha256 = "0dh0bfs0knikzn4gvjh9274yhbg3ndw46qmj4jy0kxh7gfl2lpkh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern"; - sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs json ]; - meta = { - homepage = "https://melpa.org/#/tern"; - license = lib.licenses.free; - }; - }) {}; - tern-auto-complete = callPackage ({ auto-complete - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tern }: - melpaBuild { - pname = "tern-auto-complete"; - ename = "tern-auto-complete"; - version = "0.23.0"; - src = fetchFromGitHub { - owner = "ternjs"; - repo = "tern"; - rev = "d545bbdd8482c231211f9521c688fc06632e745e"; - sha256 = "0ribzvl5gs281chp2kqaqmjj9xji7k9l71hsblfw1vj2w9l7nw2m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/eaecd67af24050c72c5df73c3a12e717f95d5059/recipes/tern-auto-complete"; - sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; - name = "recipe"; - }; - packageRequires = [ auto-complete cl-lib emacs tern ]; - meta = { - homepage = "https://melpa.org/#/tern-auto-complete"; - license = lib.licenses.free; - }; - }) {}; - tern-context-coloring = callPackage ({ context-coloring - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , tern }: - melpaBuild { - pname = "tern-context-coloring"; - ename = "tern-context-coloring"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "jacksonrayhamilton"; - repo = "tern-context-coloring"; - rev = "db0466c650ed4f7e6621a48dfdc53eaf5e127be9"; - sha256 = "093mdq97gc0ljw6islhm7y1yl3yf7w4gf205s96bnsnb1v952n63"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/db2119d2c2d167d771ee02c2735b435d59991b93/recipes/tern-context-coloring"; - sha256 = "0wkb7gn2ma6mz495bgphcjs5p0c6a869zk4a8mnm0spq41xbw4gi"; - name = "recipe"; - }; - packageRequires = [ context-coloring emacs tern ]; - meta = { - homepage = "https://melpa.org/#/tern-context-coloring"; - license = lib.licenses.free; - }; - }) {}; - terraform-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hcl-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "terraform-mode"; - ename = "terraform-mode"; - version = "0.6"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-terraform-mode"; - rev = "6286aa42132a7fcad49271d63be33deeeb8d4efc"; - sha256 = "05hn8kskx9lcgn7bzgam99c629zlryir2pickwrqndacjrqpdykx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/93e06adf34bc613edf95feaca64c69a0a2a4b567/recipes/terraform-mode"; - sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; - name = "recipe"; - }; - packageRequires = [ emacs hcl-mode ]; - meta = { - homepage = "https://melpa.org/#/terraform-mode"; - license = lib.licenses.free; - }; - }) {}; - test-case-mode = callPackage ({ fetchFromGitHub - , fetchurl - , fringe-helper - , lib - , melpaBuild }: - melpaBuild { - pname = "test-case-mode"; - ename = "test-case-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "ieure"; - repo = "test-case-mode"; - rev = "26e397c0f930b7eb0be413ef7dd257b1da052bec"; - sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d2e0bf342713cbdf30cf98d0bbc7476b0abeb7f5/recipes/test-case-mode"; - sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; - name = "recipe"; - }; - packageRequires = [ fringe-helper ]; - meta = { - homepage = "https://melpa.org/#/test-case-mode"; - license = lib.licenses.free; - }; - }) {}; - test-kitchen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "test-kitchen"; - ename = "test-kitchen"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "jjasghar"; - repo = "test-kitchen-el"; - rev = "ddbcb964ac4700973eaf30ae366f086e3319e51f"; - sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/420d18c76f593338fb28807fcbe3b884be5b1634/recipes/test-kitchen"; - sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/test-kitchen"; - license = lib.licenses.free; - }; - }) {}; - test-simple = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "test-simple"; - ename = "test-simple"; - version = "1.0"; - src = fetchFromGitHub { - owner = "rocky"; - repo = "emacs-test-simple"; - rev = "75eea25bae04d8e5e3e835a2770f02f0ff4602c4"; - sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a4b76e053faee299f5b770a0e41aa615bf5fbf10/recipes/test-simple"; - sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/test-simple"; - license = lib.licenses.free; - }; - }) {}; - texfrag = callPackage ({ auctex - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "texfrag"; - ename = "texfrag"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "TobiasZawada"; - repo = "texfrag"; - rev = "270a8a4b5dadddc5b226d9a9c6c7868ea6bfe86f"; - sha256 = "18ahbksxg1i3gvsayx2mhkjd1p75c60x5f8d9a3abm4h50gs5mvf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/756649bbe2dc6233c66c3d128a8096be12231078/recipes/texfrag"; - sha256 = "195vdpwqzypz35v8hc7ai9xpv1flrik60lgrk5m7xypnlp7mpr2x"; - name = "recipe"; - }; - packageRequires = [ auctex emacs ]; - meta = { - homepage = "https://melpa.org/#/texfrag"; - license = lib.licenses.free; - }; - }) {}; - textmate = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textmate"; - ename = "textmate"; - version = "1"; - src = fetchFromGitHub { - owner = "defunkt"; - repo = "textmate.el"; - rev = "17b699fc96849958f9a09003d11da73020ffb7be"; - sha256 = "14bxpbswwpzbz6g8z3imgk2nsig0xllxmf71w0i83cdhh7ql1f3h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ad3923ac8948de75a159e916ecc22005a17458ad/recipes/textmate"; - sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/textmate"; - license = lib.licenses.free; - }; - }) {}; - textmate-to-yas = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textmate-to-yas"; - ename = "textmate-to-yas"; - version = "0.21"; - src = fetchFromGitHub { - owner = "mattfidler"; - repo = "textmate-to-yas.el"; - rev = "8805e5159329e1b74629b7b584373fc446f57d31"; - sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/487c461bf658d50135428d72fbfbb2573a00eb7d/recipes/textmate-to-yas"; - sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/textmate-to-yas"; - license = lib.licenses.free; - }; - }) {}; - textx-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "textx-mode"; - ename = "textx-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "novakboskov"; - repo = "textx-mode"; - rev = "72f9f0c5855b382024f0da8f56833c22a70a5cb3"; - sha256 = "1lr9v7dk0pnmpvdvs4m5d9yvxlii0xzr8b3akknm25gvbw1y1q8k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/dada0378af342e0798c418032a8dcc7dfd80d600/recipes/textx-mode"; - sha256 = "10y95m6fskvdb2gh078ifa70nc48shkvw0223iyqbyjys35h53bn"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/textx-mode"; - license = lib.licenses.free; - }; - }) {}; - theme-changer = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "theme-changer"; - ename = "theme-changer"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "hadronzoo"; - repo = "theme-changer"; - rev = "d3d9c9f62a138958262ac5dd61837df427268611"; - sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d08b24a2aec1012751054c68f7d55bac1bd1fd11/recipes/theme-changer"; - sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/theme-changer"; - license = lib.licenses.free; - }; - }) {}; - theme-looper = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "theme-looper"; - ename = "theme-looper"; - version = "2.4.0"; - src = fetchFromGitHub { - owner = "myTerminal"; - repo = "theme-looper"; - rev = "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1"; - sha256 = "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/theme-looper"; - sha256 = "018bixcbzri3zsasy1pp2qfvgd679ylpi9gq26qv9iwlfhlrpwgf"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/theme-looper"; - license = lib.licenses.free; - }; - }) {}; - thinks = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thinks"; - ename = "thinks"; - version = "1.12"; - src = fetchFromGitHub { - owner = "davep"; - repo = "thinks.el"; - rev = "7bdc418ff946d0cc9ea4cc73d38b3c71ffaa838d"; - sha256 = "0wf3nikpnn0yivlmp6plyaiydm56mp3f91lljb1kay64nqgnfq65"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/439957cabf379651dc243219a83c3c96bae6f8cf/recipes/thinks"; - sha256 = "11vj9mjfzmqwdmkq97aqns3fh8hkgx9scnki6c2iag5lj0av2vcq"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/thinks"; - license = lib.licenses.free; - }; - }) {}; - thrift = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "thrift"; - ename = "thrift"; - version = "2019.6.10.0"; - src = fetchFromGitHub { - owner = "facebook"; - repo = "fbthrift"; - rev = "a1960cc1a78ada27872913a145395f6bd45c8fd9"; - sha256 = "1az66smmfdkm4rzb8pripsb8ymyvvpncpapg69byf0hqhklln55z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0dca078c0c467bc44290a922ad5627d6a34194f8/recipes/thrift"; - sha256 = "13isxx16h7rg8q5a68qmgrf3rknhfrx1qh6fb5njlznfwhrqry3y"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/thrift"; - license = lib.licenses.free; - }; - }) {}; - tickscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tickscript-mode"; - ename = "tickscript-mode"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "msherry"; - repo = "tickscript-mode"; - rev = "6e7564593d7735acc9f3fa670ec6512991cb73a1"; - sha256 = "173zk9nzjds0rkypmaq8xv5qianivgk16jpzgk0msdsn9kjbd8s9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c60ee1839f728c5041bde1fe4fa62c4d41c746ef/recipes/tickscript-mode"; - sha256 = "0wnck6j377idx7h7csmfdhp6napv3zs4sd24lknfclafhslllp54"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/tickscript-mode"; - license = lib.licenses.free; - }; - }) {}; - tidal = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "tidal"; - ename = "tidal"; - version = "1.0.13"; - src = fetchFromGitHub { - owner = "tidalcycles"; - repo = "Tidal"; - rev = "a6eed4908c8b78f0c98b9cb8cd290814afd1252b"; - sha256 = "1hwcc713vrx5ypcxsidwp25mvcg24bk8fqy7k04w7np4hhc6szql"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/16a26659a16199b5bb066be6e5c4a40419bda018/recipes/tidal"; - sha256 = "0im0qbavpykacrwww3y0mlbhf5yfx8afcyvsq5pmjjp0aw245w6a"; - name = "recipe"; - }; - packageRequires = [ emacs haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/tidal"; - license = lib.licenses.free; - }; - }) {}; - tide = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , melpaBuild - , s - , typescript-mode }: - melpaBuild { - pname = "tide"; - ename = "tide"; - version = "3.2.3"; - src = fetchFromGitHub { - owner = "ananthakumaran"; - repo = "tide"; - rev = "2d17c051cccd248a980575caf5728f4d5c986b30"; - sha256 = "19kjq4kr2j853p5qp1s79zxmrfprli82lsnphbrlp9vbnib28xyd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a21e063011ebbb03ac70bdcf0a379f9e383bdfab/recipes/tide"; - sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash flycheck s typescript-mode ]; - meta = { - homepage = "https://melpa.org/#/tide"; - license = lib.licenses.free; - }; - }) {}; - timer-revert = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "timer-revert"; - ename = "timer-revert"; - version = "0.1"; - src = fetchFromGitHub { - owner = "yyr"; - repo = "timer-revert"; - rev = "6c67f09d4c8349f2883ee870097ec68be0033291"; - sha256 = "0b9sar8crzh3rzsscvqj45gkr2kfxp7w1fzq7y1d631d45wn41zq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/991e68c59d1fbaef06ba2583f07499ecad05586d/recipes/timer-revert"; - sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/timer-revert"; - license = lib.licenses.free; - }; - }) {}; - timesheet = callPackage ({ auctex - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , org - , s }: - melpaBuild { - pname = "timesheet"; - ename = "timesheet"; - version = "0.4.1"; - src = fetchFromGitHub { - owner = "tmarble"; - repo = "timesheet.el"; - rev = "67ca6a9f6733052066b438301fb2dd81b8b3f6eb"; - sha256 = "0rmh8lik27pmq95858jbjzgvf6rsfdnpynwcagj1fgkval5kzdbs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/40009ef2f6845c83242ca5d0a8c9c2c1e4ef8a9d/recipes/timesheet"; - sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; - name = "recipe"; - }; - packageRequires = [ auctex org s ]; - meta = { - homepage = "https://melpa.org/#/timesheet"; - license = lib.licenses.free; - }; - }) {}; - timonier = callPackage ({ all-the-icons - , dash - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "timonier"; - ename = "timonier"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "timonier"; - rev = "33ca5887a1d1b63349177237e9edfb73546511a5"; - sha256 = "0z6s26kc50rbmgkkbxzpasphi8hcwhixmi8ksqzrclayccjjj7ar"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a31b0c177fd83bdeb1842a6ec3095de143bb4eae/recipes/timonier"; - sha256 = "0vb83kv2dkca2bq876icxs8iivv9qgkzmzrsxfpnvbv752b220b0"; - name = "recipe"; - }; - packageRequires = [ all-the-icons dash hydra pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/timonier"; - license = lib.licenses.free; - }; - }) {}; - toc-org = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "toc-org"; - ename = "toc-org"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "snosov1"; - repo = "toc-org"; - rev = "ebff38bfa4cc95476a20a349014e2d1862ff4647"; - sha256 = "0ml075741iw9n4apiy9iv30wx4bgzpn6iisrzx3mxjl85kgmlmf2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1305d88eca984a66039444da1ea64f29f1950206/recipes/toc-org"; - sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/toc-org"; - license = lib.licenses.free; - }; - }) {}; - torus = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "torus"; - ename = "torus"; - version = "2.0"; - src = fetchFromGitHub { - owner = "chimay"; - repo = "torus"; - rev = "222d5b155dd544cb158b2f84be8ad304b0c69df1"; - sha256 = "164mip0cibs3c8c4khnbzs8f2pmj57ng5q7hspzv7wk8nvc6d39i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/efc3b538861084cc13ff067a9258e55dc006b70d/recipes/torus"; - sha256 = "0zjidnc7nwbxs90spp373hx92vksd72vz4avmi4dbmhi89rdfhh0"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/torus"; - license = lib.licenses.free; - }; - }) {}; - total-lines = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "total-lines"; - ename = "total-lines"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "hinrik"; - repo = "total-lines"; - rev = "58a9fb0ffca63e3dfb3b27c7d91b4630e422903b"; - sha256 = "0ajbqrkg3v0yn8mj7dsv12w9zzcwjkabd776fabxamhcj6zbvza3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b6455dd89167a854477a00284f64737905b54d8/recipes/total-lines"; - sha256 = "0zpli7gsb56fc3pzb3b2bs7dzr9glkixbzgl4p2kc249vz3jqajh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/total-lines"; - license = lib.licenses.free; - }; - }) {}; - tox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tox"; - ename = "tox"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "chmouel"; - repo = "tox.el"; - rev = "27a074b21238855ce3c33d22e42d69e2c2921205"; - sha256 = "1m3f0i6vrkrncd7xsgz65m6595iv6yr4gbbzlis8p01kd98wbxfk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/08a7433e16f2a9a2c04168600a9c99bc21c68ddf/recipes/tox"; - sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tox"; - license = lib.licenses.free; - }; - }) {}; - traad = callPackage ({ dash - , deferred - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup - , request - , request-deferred - , virtualenvwrapper }: - melpaBuild { - pname = "traad"; - ename = "traad"; - version = "3.1.1"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-traad"; - rev = "1f05cb4e5e96a90d2fb2bbc93093084327c40cf2"; - sha256 = "14qg8aczcdf51w618zdzx3d48y9n4skjrg72yhgcm9a9lrs5v8y1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2b3eb31c077fcaff94b74b757c1ce17650333943/recipes/traad"; - sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; - name = "recipe"; - }; - packageRequires = [ - dash - deferred - popup - request - request-deferred - virtualenvwrapper - ]; - meta = { - homepage = "https://melpa.org/#/traad"; - license = lib.licenses.free; - }; - }) {}; - tracking = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tracking"; - ename = "tracking"; - version = "2.11"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "circe"; - rev = "571853c1f5ece6777fe745489b34d3ad7c3cb0ba"; - sha256 = "1l2zhszwg7cg96vlyi33bykk4mmig38xmasgpp02xypa4j4p11sw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a2b295656d53fddc76cacc86b239e5648e49e3a4/recipes/tracking"; - sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tracking"; - license = lib.licenses.free; - }; - }) {}; - transient = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , lv - , melpaBuild }: - melpaBuild { - pname = "transient"; - ename = "transient"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magit"; - repo = "transient"; - rev = "33f538a0bb83c8d4abc8f4c2db0dfbb9b09c4f92"; - sha256 = "1hrn4mgag6rkcqzpmn5ysa9rj79dsgmh8vrihjvaikrdyshf9zxc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ee7bfefdf4423d63706a6dcf128886ca6b514e6b/recipes/transient"; - sha256 = "04xkdspn475dlch5fcw21phhdhshxlbyznjbi0l7qk8snm130qpv"; - name = "recipe"; - }; - packageRequires = [ dash emacs lv ]; - meta = { - homepage = "https://melpa.org/#/transient"; - license = lib.licenses.free; - }; - }) {}; - transmission = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "transmission"; - ename = "transmission"; - version = "0.12.1"; - src = fetchFromGitHub { - owner = "holomorph"; - repo = "transmission"; - rev = "03a36853f141387654b7cb9217c7417db096a083"; - sha256 = "0kvg2gawsgy440x1fsl2c4pkxwp3zirq9rzixanklk0ryijhd3ry"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9ed7e414687c0bd82b140a1bd8044084d094d18f/recipes/transmission"; - sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; - name = "recipe"; - }; - packageRequires = [ emacs let-alist ]; - meta = { - homepage = "https://melpa.org/#/transmission"; - license = lib.licenses.free; - }; - }) {}; - travis = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pkg-info - , request - , s }: - melpaBuild { - pname = "travis"; - ename = "travis"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "nlamirault"; - repo = "emacs-travis"; - rev = "c8769d3db10ed4604969049e3bd276afa0a0138e"; - sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c064a0dc7922cbe4cff2ae65665c4f10e6dbff27/recipes/travis"; - sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; - name = "recipe"; - }; - packageRequires = [ dash pkg-info request s ]; - meta = { - homepage = "https://melpa.org/#/travis"; - license = lib.licenses.free; - }; - }) {}; - treemacs = callPackage ({ ace-window - , cl-lib ? null - , dash - , emacs - , f - , fetchFromGitHub - , fetchurl - , ht - , hydra - , lib - , melpaBuild - , pfuture - , s }: - melpaBuild { - pname = "treemacs"; - ename = "treemacs"; - version = "2.5"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "495691ebafb37b07afb8b549d0fba714ab17e365"; - sha256 = "1fhp1m8hrdbb0mw5r4diq4hn7svz0j23iqzq6x02dzqp3866qiik"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs"; - sha256 = "0is4waygw902vkha4jwav0i05298zhf4d559m91gmsfg1cfrlrr3"; - name = "recipe"; - }; - packageRequires = [ ace-window cl-lib dash emacs f ht hydra pfuture s ]; - meta = { - homepage = "https://melpa.org/#/treemacs"; - license = lib.licenses.free; - }; - }) {}; - treemacs-evil = callPackage ({ evil - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , treemacs }: - melpaBuild { - pname = "treemacs-evil"; - ename = "treemacs-evil"; - version = "2.5"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "de1ba5217ca4c41fc36d405832b749b6fffd2b82"; - sha256 = "0wk280qs99py3s3lykm3pd3v3nbml1c9hkal29cx0475m12fc5lw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-evil"; - sha256 = "144klr1gqqzfqy7fx9lzngc2vljy6mnz7awk0z5f8vfclczkihw2"; - name = "recipe"; - }; - packageRequires = [ evil treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-evil"; - license = lib.licenses.free; - }; - }) {}; - treemacs-icons-dired = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , treemacs }: - melpaBuild { - pname = "treemacs-icons-dired"; - ename = "treemacs-icons-dired"; - version = "2.5"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "0e5d2b558486ce9074eccde83cc70ce1a6bfa2e2"; - sha256 = "05dh7dnn2ks03gvbj5f01h1qa87giaapxhdzl5z4s8g6zwiydjy7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-icons-dired"; - sha256 = "075897b11aaj9h59gbcldz2wd5557h86pq28qkijbgay4i3piv9v"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-icons-dired"; - license = lib.licenses.free; - }; - }) {}; - treemacs-magit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , pfuture - , treemacs }: - melpaBuild { - pname = "treemacs-magit"; - ename = "treemacs-magit"; - version = "2.5"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "1a30066872fa11612ab4ff8a8565beedb5f2e135"; - sha256 = "1vbqfkn2llw7kzhh5bmfqpq0gg6qmixxcbq5mjyw53l01klvylvs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1719c6bfc346e63f58221ea2c6e625b98f4ea368/recipes/treemacs-magit"; - sha256 = "10c32rf76w26hhg1pyjlwj94adpjz1kic4hzapbckvcyzcwz6fql"; - name = "recipe"; - }; - packageRequires = [ emacs magit pfuture treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-magit"; - license = lib.licenses.free; - }; - }) {}; - treemacs-projectile = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , projectile - , treemacs }: - melpaBuild { - pname = "treemacs-projectile"; - ename = "treemacs-projectile"; - version = "2.5"; - src = fetchFromGitHub { - owner = "Alexander-Miller"; - repo = "treemacs"; - rev = "ac088d4afd267de2046ce25658285ffb6174a6ba"; - sha256 = "0fzq8q7mm3nxs1aw3qhhw78lnlh8cagf443sn5n38xb9f4m44djk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/37cca017cf529a0553ba73bcb824a945ec8b1137/recipes/treemacs-projectile"; - sha256 = "1lldvpasvgsd5xvnlafddqp47w7rdvf3vqfhr26rxn99kj5s9xzp"; - name = "recipe"; - }; - packageRequires = [ projectile treemacs ]; - meta = { - homepage = "https://melpa.org/#/treemacs-projectile"; - license = lib.licenses.free; - }; - }) {}; - treepy = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "treepy"; - ename = "treepy"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "volrath"; - repo = "treepy.el"; - rev = "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d"; - sha256 = "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/63c94a703841f8c11948200d86d98145bc62162c/recipes/treepy"; - sha256 = "0jfah4vywi1b6c86h7vh8fspmklhs790qzkl51i9p7yckfggwp72"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/treepy"; - license = lib.licenses.free; - }; - }) {}; - trinary = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "trinary"; - ename = "trinary"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "emacs-elsa"; - repo = "trinary-logic"; - rev = "c043034e1e476ae103cc52b6922e15f6dd2fc8a3"; - sha256 = "0hi6ybsz6v6ls8ajkyqpy9cq87pk684l9a7js863f7ycgwb37nzn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48fff02dde8a678e151f2765ea7c3a383912c68b/recipes/trinary"; - sha256 = "1k2jpay1wx2m54fpja9mrhqyk15ikml8xf15irh8yrxb3hah8f8k"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/trinary"; - license = lib.licenses.free; - }; - }) {}; - trr = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "trr"; - ename = "trr"; - version = "2.0.0"; - src = fetchFromGitHub { - owner = "kawabata"; - repo = "emacs-trr"; - rev = "7500ae0a05a3e26888949208afcd0185cc1b1404"; - sha256 = "0x1knf2jqkd1sdswv1w902jnlppih2yw6z028268nizl0c9q92yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/56fa3c0b65e4e300f01804df7779ba6f1cb18cec/recipes/trr"; - sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/trr"; - license = lib.licenses.free; - }; - }) {}; - truthy = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild }: - melpaBuild { - pname = "truthy"; - ename = "truthy"; - version = "0.2.8"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "truthy"; - rev = "276a7e6b13606d28e4f2e423bb1ea30904c5def3"; - sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f7a7e319dbe17e2b31353e7d7cab51d557d86e9d/recipes/truthy"; - sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; - name = "recipe"; - }; - packageRequires = [ list-utils ]; - meta = { - homepage = "https://melpa.org/#/truthy"; - license = lib.licenses.free; - }; - }) {}; - try = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "try"; - ename = "try"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "larstvei"; - repo = "Try"; - rev = "271b0a362cadf44d0694628b9e213f54516ef913"; - sha256 = "1fvpi02c6awyrwg2yqjapvcv4132qvmvd9bkbwpjmndxpicsann3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13c0ed40ad02fa0893cbf4dd9617dccb624f064b/recipes/try"; - sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/try"; - license = lib.licenses.free; - }; - }) {}; - tss = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , json-mode - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "tss"; - ename = "tss"; - version = "0.6.0"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-tss"; - rev = "140ae681828469b1415ae51a39ac4fdfaa84e4c3"; - sha256 = "113qs1frz1rfvswgw5wrvmxd7q6zbpp6rdz35hr1wmpfj546z1kw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d52e20f5ca38ed399d19f18f778b8601baf78460/recipes/tss"; - sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; - name = "recipe"; - }; - packageRequires = [ auto-complete json-mode log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/tss"; - license = lib.licenses.free; - }; - }) {}; - tuareg = callPackage ({ caml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tuareg"; - ename = "tuareg"; - version = "2.2.0"; - src = fetchFromGitHub { - owner = "ocaml"; - repo = "tuareg"; - rev = "40f974d3b0777f9666928d0b4a5126a4c7491b17"; - sha256 = "049nw6pkkxnq3k4vv4ksl93csiybm7q29xigdkc7cr9cls6h8jf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/01fb6435a1dfeebdf4e7fa3f4f5928bc75526809/recipes/tuareg"; - sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; - name = "recipe"; - }; - packageRequires = [ caml ]; - meta = { - homepage = "https://melpa.org/#/tuareg"; - license = lib.licenses.free; - }; - }) {}; - tumble = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tumble"; - ename = "tumble"; - version = "1.5"; - src = fetchFromGitHub { - owner = "febuiles"; - repo = "tumble"; - rev = "a1db6dac5720b9f468a79e0efce04f77c0a458e3"; - sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/579a441d153c4c7d9f8172be94983a632d6fab8f/recipes/tumble"; - sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tumble"; - license = lib.licenses.free; - }; - }) {}; - tup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "tup-mode"; - ename = "tup-mode"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "ejmr"; - repo = "tup-mode"; - rev = "945af9c8e6c402e10cd3bf8e28a9591174023d6d"; - sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bda3260dad1c766c5b6ae9124f966bf441e24f2f/recipes/tup-mode"; - sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/tup-mode"; - license = lib.licenses.free; - }; - }) {}; - turing-machine = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "turing-machine"; - ename = "turing-machine"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "dieggsy"; - repo = "turing-machine"; - rev = "ad1dccc9c445f9e4465e1c67cbbfea9583153047"; - sha256 = "0qaz4r5ahg2fxsfyxilb8c9956i5ra9vg80l82slm8vrnsinzll6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/turing-machine"; - sha256 = "0q9a31m5wnz9j9l4i8czdl7z12nrcdjw72w8sqvf94ri2g5dbpkq"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/turing-machine"; - license = lib.licenses.free; - }; - }) {}; - twilight-anti-bright-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twilight-anti-bright-theme"; - ename = "twilight-anti-bright-theme"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "jimeh"; - repo = "twilight-anti-bright-theme"; - rev = "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b"; - sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/twilight-anti-bright-theme"; - sha256 = "1wfj570l5k0ygqi9dwjskc78rpnxw6080bkw1zd1a8kl3fa28n2k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twilight-anti-bright-theme"; - license = lib.licenses.free; - }; - }) {}; - twittering-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "twittering-mode"; - ename = "twittering-mode"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "hayamiz"; - repo = "twittering-mode"; - rev = "fa40325328bc8c2aa40eff6ed1954d5c07436152"; - sha256 = "1bpzcljg81igldjjglgn0vxy9i89i802kx2jgvcr16c1vway7cm9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/twittering-mode"; - sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/twittering-mode"; - license = lib.licenses.free; - }; - }) {}; - typescript-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typescript-mode"; - ename = "typescript-mode"; - version = "0.3"; - src = fetchFromGitHub { - owner = "emacs-typescript"; - repo = "typescript.el"; - rev = "7a5c74d88e3c5513cc4431a837003736f905a75e"; - sha256 = "002f1xfhq43fjaqliwrgxspryfahpa82va5dw3p8kwil2xwvc6mh"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/94455323364d5a6b00e2786d577134eb350826b4/recipes/typescript-mode"; - sha256 = "1abnik2dq0zfnp8pk8x6zy962qww78xadm87xyiwz17559g88d82"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/typescript-mode"; - license = lib.licenses.free; - }; - }) {}; - typit = callPackage ({ emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmt }: - melpaBuild { - pname = "typit"; - ename = "typit"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "typit"; - rev = "a4e3147dedac5535bdc8b06aca00f34f14f26e35"; - sha256 = "0hbnwrhxj9wwjvxsk372ffgjqfkb3ljxhgi5h7wps2r15dxfvf3w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d17d019155e19c156f123dcd702f18cfba488701/recipes/typit"; - sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; - name = "recipe"; - }; - packageRequires = [ emacs f mmt ]; - meta = { - homepage = "https://melpa.org/#/typit"; - license = lib.licenses.free; - }; - }) {}; - typo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "typo"; - ename = "typo"; - version = "1.1"; - src = fetchFromGitHub { - owner = "jorgenschaefer"; - repo = "typoel"; - rev = "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972"; - sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/typo"; - sha256 = "1p8is1n525lmzq588hj6vazmhl9wi6rairnfx1g1p6g6ijdycd4h"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/typo"; - license = lib.licenses.free; - }; - }) {}; - ubuntu-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ubuntu-theme"; - ename = "ubuntu-theme"; - version = "4.2"; - src = fetchFromGitHub { - owner = "rocher"; - repo = "ubuntu-theme"; - rev = "41f09ca6c203da93bdadb2077556efd48e3b5d5a"; - sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/ubuntu-theme"; - sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ubuntu-theme"; - license = lib.licenses.free; - }; - }) {}; - ucs-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft }: - melpaBuild { - pname = "ucs-utils"; - ename = "ucs-utils"; - version = "0.8.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "ucs-utils"; - rev = "cbfd42f822bf5717934fa2d92060e6e24a813433"; - sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/ucs-utils"; - sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; - name = "recipe"; - }; - packageRequires = [ list-utils pcache persistent-soft ]; - meta = { - homepage = "https://melpa.org/#/ucs-utils"; - license = lib.licenses.free; - }; - }) {}; - undercover = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , shut-up }: - melpaBuild { - pname = "undercover"; - ename = "undercover"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "sviridov"; - repo = "undercover.el"; - rev = "86f856c799aacfd48d2eb42d1a6afda0e6e49845"; - sha256 = "080bmfwyfi8663y8x594770hqz7mff7zvj2v03qdfwbhdr9w9y29"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d58ad9eb863494f609114e3c6af8c14c891b83a5/recipes/undercover"; - sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; - name = "recipe"; - }; - packageRequires = [ dash emacs shut-up ]; - meta = { - homepage = "https://melpa.org/#/undercover"; - license = lib.licenses.free; - }; - }) {}; - underline-with-char = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "underline-with-char"; - ename = "underline-with-char"; - version = "3.0.0"; - src = fetchFromGitHub { - owner = "marcowahl"; - repo = "underline-with-char"; - rev = "c2f4870aff70efe70a8d1b089e56d3a2d6d048b9"; - sha256 = "0i6jfr4l7mr8gpavmfblr5d41ck8aqzaf4iv1qk5fyzsb6yi0nla"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e24888ccf61ac05eba5c30a47d35653f2badf019/recipes/underline-with-char"; - sha256 = "0la24nvyqinla40c2f3f4a63mjjsg58096hyw3pvp0mwiff7rxyd"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/underline-with-char"; - license = lib.licenses.free; - }; - }) {}; - underwater-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "underwater-theme"; - ename = "underwater-theme"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "jmdeldin"; - repo = "underwater-theme.el"; - rev = "1fbd4ecd4538256c6c46f9638f883072c73ac927"; - sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e7dccc77d082181629b8f0c45404ac5d8bd97590/recipes/underwater-theme"; - sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/underwater-theme"; - license = lib.licenses.free; - }; - }) {}; - unfill = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unfill"; - ename = "unfill"; - version = "0.2"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "unfill"; - rev = "234fee7351cafdcfa68a2b1fc603744b03e0e16b"; - sha256 = "0i25kr4anszl48w29vlxwfg3dq1baa81qj91v4iw3wsnmc40n7ww"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2ade389a20419b3e29a613409ac73a16b7c5bddb/recipes/unfill"; - sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/unfill"; - license = lib.licenses.free; - }; - }) {}; - unicode-enbox = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft - , string-utils - , ucs-utils }: - melpaBuild { - pname = "unicode-enbox"; - ename = "unicode-enbox"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-enbox"; - rev = "ff313f6778bb96481c0ee3291b07a7db46f21ff5"; - sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/unicode-enbox"; - sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft string-utils ucs-utils ]; - meta = { - homepage = "https://melpa.org/#/unicode-enbox"; - license = lib.licenses.free; - }; - }) {}; - unicode-escape = callPackage ({ dash - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names }: - melpaBuild { - pname = "unicode-escape"; - ename = "unicode-escape"; - version = "1.1"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "unicode-escape.el"; - rev = "04c7f22f90c96e93f998f084089ab08dc7f4fdd6"; - sha256 = "01i5cq7yan9z1kr6pvp4bwzsnxs0bpqsaglfbvy7v6jfp923bvdm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b2ae00434b80357dc62cd0177dbd714b25fb3ac7/recipes/unicode-escape"; - sha256 = "0gcwkv7qbdnvak10jfzj9irb7nkfqsfxv2n5fi8vvrk90j1a2i2k"; - name = "recipe"; - }; - packageRequires = [ dash emacs names ]; - meta = { - homepage = "https://melpa.org/#/unicode-escape"; - license = lib.licenses.free; - }; - }) {}; - unicode-fonts = callPackage ({ fetchFromGitHub - , fetchurl - , font-utils - , lib - , list-utils - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-fonts"; - ename = "unicode-fonts"; - version = "0.4.10"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-fonts"; - rev = "7b88ae84e589f6c8b9386b2fb5a02ff4ccb91169"; - sha256 = "07wzcfj92jiadgd6nj5rmxky2aiaxs89j7zywp877xdp4vv0v512"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-fonts"; - sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; - name = "recipe"; - }; - packageRequires = [ - font-utils - list-utils - pcache - persistent-soft - ucs-utils - ]; - meta = { - homepage = "https://melpa.org/#/unicode-fonts"; - license = lib.licenses.free; - }; - }) {}; - unicode-progress-reporter = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-progress-reporter"; - ename = "unicode-progress-reporter"; - version = "0.5.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-progress-reporter"; - rev = "f4705332412b12fc72ca868b77c78465561bda75"; - sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/83459421dd2eb3d60ec668c3d5bb38d99ee64aff/recipes/unicode-progress-reporter"; - sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; - name = "recipe"; - }; - packageRequires = [ emacs pcache persistent-soft ucs-utils ]; - meta = { - homepage = "https://melpa.org/#/unicode-progress-reporter"; - license = lib.licenses.free; - }; - }) {}; - unicode-whitespace = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , pcache - , persistent-soft - , ucs-utils }: - melpaBuild { - pname = "unicode-whitespace"; - ename = "unicode-whitespace"; - version = "0.2.4"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "unicode-whitespace"; - rev = "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db"; - sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f9892a826f3ac335d12bd1a07202334e28a44f40/recipes/unicode-whitespace"; - sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; - name = "recipe"; - }; - packageRequires = [ pcache persistent-soft ucs-utils ]; - meta = { - homepage = "https://melpa.org/#/unicode-whitespace"; - license = lib.licenses.free; - }; - }) {}; - unify-opening = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unify-opening"; - ename = "unify-opening"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "unify-opening"; - rev = "502469ddba6d8d52159f53976265f7d956b6b17c"; - sha256 = "0mni9vnbs50wvgnwfjwgzlwfff38h3wbrpr20nv84dmfh8ac0v61"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0a2faab13744262ef4d12750f70b300b3afd2835/recipes/unify-opening"; - sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unify-opening"; - license = lib.licenses.free; - }; - }) {}; - unkillable-scratch = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "unkillable-scratch"; - ename = "unkillable-scratch"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "EricCrosson"; - repo = "unkillable-scratch"; - rev = "dac9dbed946a26829e6227ac15c0fa1d07ccd05f"; - sha256 = "0fgipv93x47cvyww07cqx8xa95jz36y6fy5rmaq40jnnmdkgq862"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/822ac5610f333e41b676a29ef45a6f8bfea3162e/recipes/unkillable-scratch"; - sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/unkillable-scratch"; - license = lib.licenses.free; - }; - }) {}; - uptimes = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "uptimes"; - ename = "uptimes"; - version = "3.7"; - src = fetchFromGitHub { - owner = "davep"; - repo = "uptimes.el"; - rev = "1f726d31b502d764a3e3191aaf92ed4855105131"; - sha256 = "1ymv5fh0bfjzkkd8vc9f1n8921bx1czbb29s0rw6zy37vkhs6v3s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72099e35ce3e34ec6afc6a3f87a4da07ec91499a/recipes/uptimes"; - sha256 = "0r8s5c2hdcb1ly7rnhzar4qzf1c9d49gd914ndnc3mg9yb9gyy5h"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/uptimes"; - license = lib.licenses.free; - }; - }) {}; - urscript-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "urscript-mode"; - ename = "urscript-mode"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "guidoschmidt"; - repo = "urscript-mode"; - rev = "b341f96b129ead8fb74d680cb4f546985bf110a9"; - sha256 = "0qhncqsvsrpgc47ixsp436imfm0l6pd1kbpjjk426wrnzaszrpkc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4ae680b51a85749ed254215bbd4a35909961049/recipes/urscript-mode"; - sha256 = "1jjmpg9r7vwa8284chx9yc1ifn36m7ml1ks4ls8hnsxachbv7wlh"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/urscript-mode"; - license = lib.licenses.free; - }; - }) {}; - use-package = callPackage ({ bind-key - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "use-package"; - ename = "use-package"; - version = "2.4"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "39a8b8812c2c9f6f0b299e6a04e504ef393694ce"; - sha256 = "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/51a19a251c879a566d4ae451d94fcb35e38a478b/recipes/use-package"; - sha256 = "0d0zpgxhj6crsdi9sfy30fn3is036apm1kz8fhjg1yzdapf1jdyp"; - name = "recipe"; - }; - packageRequires = [ bind-key emacs ]; - meta = { - homepage = "https://melpa.org/#/use-package"; - license = lib.licenses.free; - }; - }) {}; - use-package-chords = callPackage ({ bind-chord - , bind-key - , fetchFromGitHub - , fetchurl - , key-chord - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-chords"; - ename = "use-package-chords"; - version = "2.4"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "763bf5337dab14b318a3ddce29140de1ed8fb35b"; - sha256 = "08v4rsl3x5dj7ihpnzbyxjbg2ls2kybcsb0rcxjh5anj4hmcsyly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-chords"; - sha256 = "1217l0gpxcp8532p0d3g1xd2015qpx2g5xm0kwsbxdmffqqdaar3"; - name = "recipe"; - }; - packageRequires = [ bind-chord bind-key key-chord use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-chords"; - license = lib.licenses.free; - }; - }) {}; - use-package-el-get = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-el-get"; - ename = "use-package-el-get"; - version = "0.1"; - src = fetchFromGitLab { - owner = "edvorg"; - repo = "use-package-el-get"; - rev = "f33c448ed43ecb003b60ff601ee7ef9b08cff947"; - sha256 = "1wzn3h8k7aydj3hxxws64b0v4cr3b77cf7z128xh3v6xz2w62m4z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/aca60522257353fbfd9d032f8c3cae7914d6bd36/recipes/use-package-el-get"; - sha256 = "143vydssjxmkcgs661hz6nhg310r8qypn2a4vyxy5sb31wqcclzg"; - name = "recipe"; - }; - packageRequires = [ use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-el-get"; - license = lib.licenses.free; - }; - }) {}; - use-package-ensure-system-package = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , system-packages - , use-package }: - melpaBuild { - pname = "use-package-ensure-system-package"; - ename = "use-package-ensure-system-package"; - version = "2.4"; - src = fetchFromGitHub { - owner = "jwiegley"; - repo = "use-package"; - rev = "2b89ca4b9102baaf3f84f3fc8177c8a17288e291"; - sha256 = "18xpjqvnrk72jybbd5xipnsbngkj38hqd9vfq0kb42fhiv1v5b92"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6240afa625290187785e4b7535ee7b0d7aad8969/recipes/use-package-ensure-system-package"; - sha256 = "1cl61nwgsz5dh3v9rdiww8mq2k1sbx27gr6izb4ij4pnzjp7aaj6"; - name = "recipe"; - }; - packageRequires = [ system-packages use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-ensure-system-package"; - license = lib.licenses.free; - }; - }) {}; - use-package-hydra = callPackage ({ emacs - , fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , use-package }: - melpaBuild { - pname = "use-package-hydra"; - ename = "use-package-hydra"; - version = "0.2"; - src = fetchFromGitLab { - owner = "to1ne"; - repo = "use-package-hydra"; - rev = "8cd55a1128fbdf6327bb38a199d206225896d146"; - sha256 = "19dja25illcvwpx8j1kigw8dzby41bm57prx1bhaxkmsakxyl863"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/28589bb76442601930a4591e200c8e1db119caf6/recipes/use-package-hydra"; - sha256 = "0q2qfav2y1p6vxfvdblqlpjmj0z7z8w843jpry9g07d8kc4959f6"; - name = "recipe"; - }; - packageRequires = [ emacs use-package ]; - meta = { - homepage = "https://melpa.org/#/use-package-hydra"; - license = lib.licenses.free; - }; - }) {}; - usql = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "usql"; - ename = "usql"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "nickbarnwell"; - repo = "usql.el"; - rev = "bfaf428b366a9a185eef84f0d645a98dc918fe3d"; - sha256 = "00b1g30l86abg65wc9f4vcn4ccqa2zmn2mi33vdjrq3phw17d2ks"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c8f6b968312a09d062fcc8f942d29c93df2a5a3c/recipes/usql"; - sha256 = "10ks164kcly5gkb2qmn700a51kph2sry4a64jwn60p5xl7w7af84"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/usql"; - license = lib.licenses.free; - }; - }) {}; - utop = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "utop"; - ename = "utop"; - version = "2.4.0"; - src = fetchFromGitHub { - owner = "diml"; - repo = "utop"; - rev = "ea38850e606dd18c94e2ccabc28485fec1c8f91f"; - sha256 = "0g7mj1qag9d7mn58l3lh7as0w4bj7rq3r6d3mykafgyjaajsxnx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/30489fe52b4031184e54f994770aa3291257bc9d/recipes/utop"; - sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/utop"; - license = lib.licenses.free; - }; - }) {}; - v2ex-mode = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "v2ex-mode"; - ename = "v2ex-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "aborn"; - repo = "v2ex-mode"; - rev = "e871c4872a4970bf76e6132d77ef0ef7b11536fe"; - sha256 = "0sc0ix8d5knsm8p6z819j7iwkp2d6lrq0d8l94x4a8dgh4mapls8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b27b7d777415aa350c8c30822e239b9a4c02e77d/recipes/v2ex-mode"; - sha256 = "04frd6jbnf9g7ak2fdbik9iji7b0903cpbg1hx7rai1853af7gh1"; - name = "recipe"; - }; - packageRequires = [ cl-lib let-alist request ]; - meta = { - homepage = "https://melpa.org/#/v2ex-mode"; - license = lib.licenses.free; - }; - }) {}; - vagrant = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vagrant"; - ename = "vagrant"; - version = "0.6.1"; - src = fetchFromGitHub { - owner = "ottbot"; - repo = "vagrant.el"; - rev = "ef3022d290ee26597e21b17ab87acbd8d4f1071f"; - sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/vagrant"; - sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vagrant"; - license = lib.licenses.free; - }; - }) {}; - vbasense = callPackage ({ auto-complete - , fetchFromGitHub - , fetchurl - , lib - , log4e - , melpaBuild - , yaxception }: - melpaBuild { - pname = "vbasense"; - ename = "vbasense"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "emacs-vbasense"; - rev = "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db"; - sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8e7dd1e985d55149f48e4f93a31fb28ec01a4add/recipes/vbasense"; - sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; - name = "recipe"; - }; - packageRequires = [ auto-complete log4e yaxception ]; - meta = { - homepage = "https://melpa.org/#/vbasense"; - license = lib.licenses.free; - }; - }) {}; - vc-hgcmd = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vc-hgcmd"; - ename = "vc-hgcmd"; - version = "1.6.8"; - src = fetchFromGitHub { - owner = "muffinmad"; - repo = "emacs-vc-hgcmd"; - rev = "5edf2b9ebbe68a05e1d9ad119e239154577953bf"; - sha256 = "1yswz1mhdpp52zsyzryyr1psi9pnm1x4ri4i24vbmsxvj9vzhkmp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/111142342ab81dcaa88a831ba620be499a334c3f/recipes/vc-hgcmd"; - sha256 = "11p8r94s72x47nkxlarxwy33im167jpjas8b9i8dkrz2iggwn5xk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vc-hgcmd"; - license = lib.licenses.free; - }; - }) {}; - vc-msg = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , popup }: - melpaBuild { - pname = "vc-msg"; - ename = "vc-msg"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "vc-msg"; - rev = "091f3cf15ecb35bb4dc5de1ef7229f78735d9aee"; - sha256 = "0s129fzxhrr8pp4h0hkmxapnman67r0bdmbj8ys6r361na7h16hf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/59ad4e80b49c78decd7b5794565313f65550384e/recipes/vc-msg"; - sha256 = "16pgx8pg3djhkmhf1fihgjk7c6nb2nsqj58888bwg7385mlwc7g9"; - name = "recipe"; - }; - packageRequires = [ emacs popup ]; - meta = { - homepage = "https://melpa.org/#/vc-msg"; - license = lib.licenses.free; - }; - }) {}; - vcomp = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vcomp"; - ename = "vcomp"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "tarsius"; - repo = "vcomp"; - rev = "f839b3b3257a564b19d7f9557dc8bcbbe0b95842"; - sha256 = "1xd42bdi6x89gc9xjrwvzzdaanv9vwlbbjwp25bs1nsd53k5nvak"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/561442ea9f75ebe8444db1a0c40f7756fcbca482/recipes/vcomp"; - sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vcomp"; - license = lib.licenses.free; - }; - }) {}; - vdiff = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild }: - melpaBuild { - pname = "vdiff"; - ename = "vdiff"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-vdiff"; - rev = "f55acdbfcbb14e463d0850cfd041614c7002669e"; - sha256 = "0dlhisvnlzkzlilg456lxi0m5wh4a8681n142684hmk8vaw3wx2k"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e90f19c8fa4b0d267d269b76f117995e812e899c/recipes/vdiff"; - sha256 = "11gw0l63fssbiyhngqb7ykrp7m1vy55wlf27ybhh2dkwh1cpkr4l"; - name = "recipe"; - }; - packageRequires = [ emacs hydra ]; - meta = { - homepage = "https://melpa.org/#/vdiff"; - license = lib.licenses.free; - }; - }) {}; - vdiff-magit = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , magit - , melpaBuild - , vdiff }: - melpaBuild { - pname = "vdiff-magit"; - ename = "vdiff-magit"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-vdiff-magit"; - rev = "7e841dc7225300dd4d5560faad04e5c44cd8b267"; - sha256 = "0800lnclv0kdkk2njddhsydsbifrwgg6w09mm4js7mqci1mr3gia"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2159275fabde8ec8b297f6635546b1314d519b8b/recipes/vdiff-magit"; - sha256 = "1vjc1r5xfdg9bmscgppx1fps1w5bd0zpp6ab5z5dxlg2zx2vdldw"; - name = "recipe"; - }; - packageRequires = [ emacs magit vdiff ]; - meta = { - homepage = "https://melpa.org/#/vdiff-magit"; - license = lib.licenses.free; - }; - }) {}; - vdirel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , helm - , lib - , melpaBuild - , org-vcard - , seq }: - melpaBuild { - pname = "vdirel"; - ename = "vdirel"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "DamienCassou"; - repo = "vdirel"; - rev = "58b0b6e6f0913a782691373b3996ca6bb6d1ba54"; - sha256 = "0rkj9w1jbagx1515xs1jwh6fi0cx0nj7gym30c99c8v8asq63ds2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72b5ea3f4444c3de73d986a28e1d12bf47c40246/recipes/vdirel"; - sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; - name = "recipe"; - }; - packageRequires = [ emacs helm org-vcard seq ]; - meta = { - homepage = "https://melpa.org/#/vdirel"; - license = lib.licenses.free; - }; - }) {}; - vdm-comint = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , vdm-mode }: - melpaBuild { - pname = "vdm-comint"; - ename = "vdm-comint"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa"; - sha256 = "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/077f586e59fe3b6085e1f19b3c18b218de5d4046/recipes/vdm-comint"; - sha256 = "1r7jg7dkzfs4n230n0jk23w0ncqsiwkslf2gmjfzfqg8qklr9bhs"; - name = "recipe"; - }; - packageRequires = [ emacs vdm-mode ]; - meta = { - homepage = "https://melpa.org/#/vdm-comint"; - license = lib.licenses.free; - }; - }) {}; - vdm-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vdm-mode"; - ename = "vdm-mode"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa"; - sha256 = "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/70a6c89d41235f7e8463a47400004a32b2979a5a/recipes/vdm-mode"; - sha256 = "1h72731vcsjqsbii1wbzpa114x09aqbkbnz5fg9fnjq9rybz6rn7"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/vdm-mode"; - license = lib.licenses.free; - }; - }) {}; - vdm-snippets = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "vdm-snippets"; - ename = "vdm-snippets"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "peterwvj"; - repo = "vdm-mode"; - rev = "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa"; - sha256 = "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f246b9dcf7915a845b9e2cd44cc1a0833b412c8f/recipes/vdm-snippets"; - sha256 = "1js1hjs2r9bbqm50bl389y87xn68f30xrh2z6nd5kz2hdgkm6lhj"; - name = "recipe"; - }; - packageRequires = [ emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/vdm-snippets"; - license = lib.licenses.free; - }; - }) {}; - vector-utils = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vector-utils"; - ename = "vector-utils"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "vector-utils"; - rev = "2bd63c8ade1a2b6f8aac403c5f25adda2215a685"; - sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/081aa3e1d50c2c9e5a9b9ce0716258a93279f605/recipes/vector-utils"; - sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vector-utils"; - license = lib.licenses.free; - }; - }) {}; - vertigo = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vertigo"; - ename = "vertigo"; - version = "1.0"; - src = fetchFromGitHub { - owner = "noctuid"; - repo = "vertigo.el"; - rev = "ebfa068d9e2fc39ba6d1744618c4e31dad6f629b"; - sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f1957e7fa03b6b8eb2f3250bd814d707bce3cfa3/recipes/vertigo"; - sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/vertigo"; - license = lib.licenses.free; - }; - }) {}; - vhdl-tools = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , ggtags - , helm - , helm-rg - , lib - , melpaBuild }: - melpaBuild { - pname = "vhdl-tools"; - ename = "vhdl-tools"; - version = "6.0"; - src = fetchFromGitHub { - owner = "csantosb"; - repo = "vhdl-tools"; - rev = "054b75353905d867b4c5b53258bc3180ce48c767"; - sha256 = "0q5d0938h31snl8i3r0c81w88qk99i25c65xsjdvn0hs8g2lpwir"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf/recipes/vhdl-tools"; - sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; - name = "recipe"; - }; - packageRequires = [ emacs ggtags helm helm-rg ]; - meta = { - homepage = "https://melpa.org/#/vhdl-tools"; - license = lib.licenses.free; - }; - }) {}; - vim-region = callPackage ({ expand-region - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vim-region"; - ename = "vim-region"; - version = "0.3.0"; - src = fetchFromGitHub { - owner = "ongaeshi"; - repo = "emacs-vim-region"; - rev = "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d"; - sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/23249b485ca8e66a21f858712f46aa76b8554f28/recipes/vim-region"; - sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; - name = "recipe"; - }; - packageRequires = [ expand-region ]; - meta = { - homepage = "https://melpa.org/#/vim-region"; - license = lib.licenses.free; - }; - }) {}; - vimish-fold = callPackage ({ cl-lib ? null - , emacs - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vimish-fold"; - ename = "vimish-fold"; - version = "0.2.3"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "vimish-fold"; - rev = "e631352fbf910f692807afe38a2b6a7882a403a8"; - sha256 = "152w1wqxj7yzm3d12lknzz1aix4h8cb571sjns3m1s7azsr3vfbq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b4862b0a3d43f073e645803cbbf11d973a4b51d5/recipes/vimish-fold"; - sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs f ]; - meta = { - homepage = "https://melpa.org/#/vimish-fold"; - license = lib.licenses.free; - }; - }) {}; - virtualenvwrapper = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "virtualenvwrapper"; - ename = "virtualenvwrapper"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "porterjamesj"; - repo = "virtualenvwrapper.el"; - rev = "f753e5ad91c2ff5d11bec424aa8cec141efa6925"; - sha256 = "062pbnplb3w9h64qsj71d9fvgicp1x63n05mgvgymjh2rnx7py0d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/acc9b816796b9f142c53f90593952b43c962d2d8/recipes/virtualenvwrapper"; - sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; - name = "recipe"; - }; - packageRequires = [ dash s ]; - meta = { - homepage = "https://melpa.org/#/virtualenvwrapper"; - license = lib.licenses.free; - }; - }) {}; - visible-mark = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visible-mark"; - ename = "visible-mark"; - version = "0.1"; - src = fetchFromGitLab { - owner = "iankelling"; - repo = "visible-mark"; - rev = "c1852e13b6b61982738b56977a452ec9026faf1b"; - sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76ac7178ee5381e08ae881f3fc6061106eeb1c1d/recipes/visible-mark"; - sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/visible-mark"; - license = lib.licenses.free; - }; - }) {}; - visual-fill-column = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visual-fill-column"; - ename = "visual-fill-column"; - version = "1.11"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "visual-fill-column"; - rev = "57c2a72d46900117ea92e0a01b97e19481800503"; - sha256 = "086zfx4lh168rg50ndg8qzdh8vzc6sgfii7qzcn4mg4wa74hnp9y"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c7628c805840c4687686d0b9dc5007342864721e/recipes/visual-fill-column"; - sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/visual-fill-column"; - license = lib.licenses.free; - }; - }) {}; - visual-regexp = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "visual-regexp"; - ename = "visual-regexp"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "benma"; - repo = "visual-regexp.el"; - rev = "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca"; - sha256 = "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/visual-regexp"; - sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/visual-regexp"; - license = lib.licenses.free; - }; - }) {}; - visual-regexp-steroids = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , visual-regexp }: - melpaBuild { - pname = "visual-regexp-steroids"; - ename = "visual-regexp-steroids"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "benma"; - repo = "visual-regexp-steroids.el"; - rev = "a6420b25ec0fbba43bf57875827092e1196d8a9e"; - sha256 = "1isqa4ck6pm4ykcrkr0g1qj8664jkpcsrq0f8dlb0sksns2dqkwj"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7f105ebce741956b7becc86e4bdfcafecf59af74/recipes/visual-regexp-steroids"; - sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; - name = "recipe"; - }; - packageRequires = [ visual-regexp ]; - meta = { - homepage = "https://melpa.org/#/visual-regexp-steroids"; - license = lib.licenses.free; - }; - }) {}; - vlf = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vlf"; - ename = "vlf"; - version = "1.7.1"; - src = fetchFromGitHub { - owner = "m00natic"; - repo = "vlfi"; - rev = "df677c128f8abc764b51d2a0ed26071618e686de"; - sha256 = "1fx2ngjh3y69ynih328jiy8132z9y7q7s91rzw8mgpf3hnfmaqly"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9116b11eb513dd9e1dc9542d274dd60f183b24c4/recipes/vlf"; - sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vlf"; - license = lib.licenses.free; - }; - }) {}; - voca-builder = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "voca-builder"; - ename = "voca-builder"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "yitang"; - repo = "voca-builder"; - rev = "224402532da28e45edd398fda61ecbddb97d22d3"; - sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42a930e024ce525b2890ccd5a1eb4844859faafd/recipes/voca-builder"; - sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/voca-builder"; - license = lib.licenses.free; - }; - }) {}; - volatile-highlights = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "volatile-highlights"; - ename = "volatile-highlights"; - version = "1.11"; - src = fetchFromGitHub { - owner = "k-talo"; - repo = "volatile-highlights.el"; - rev = "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24"; - sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/volatile-highlights"; - sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/volatile-highlights"; - license = lib.licenses.free; - }; - }) {}; - vue-html-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "vue-html-mode"; - ename = "vue-html-mode"; - version = "0.2"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "vue-html-mode"; - rev = "361a9fa117f044c3072dc5a7344ff7be31725849"; - sha256 = "1z1pphxli8fcahw9fhmxls1v9nyd34pz51jwwa6g468zvdmcjb77"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/48588b163ab76204b9054340071e758045480e19/recipes/vue-html-mode"; - sha256 = "1f4pjfp4298jkvhacxygddg557hhyivgnm5x3yhjipfv6fjkgl2s"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/vue-html-mode"; - license = lib.licenses.free; - }; - }) {}; - vue-mode = callPackage ({ edit-indirect - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , mmm-mode - , ssass-mode - , vue-html-mode }: - melpaBuild { - pname = "vue-mode"; - ename = "vue-mode"; - version = "0.4"; - src = fetchFromGitHub { - owner = "AdamNiederer"; - repo = "vue-mode"; - rev = "48ff04657613f39848d0e66e9dd367aa2dc19e89"; - sha256 = "014vx8jkscj1c614v78dqlqlg7n0zc3c2db3dqvxvaz417i5mxq0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6440f81aed1fcddcaf7afeedb74520e605211986/recipes/vue-mode"; - sha256 = "0npzn7pycqfdakv4plkigq8aw1bqhz3y03y3ypx21q5a186ds0g5"; - name = "recipe"; - }; - packageRequires = [ edit-indirect mmm-mode ssass-mode vue-html-mode ]; - meta = { - homepage = "https://melpa.org/#/vue-mode"; - license = lib.licenses.free; - }; - }) {}; - w32-browser = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "w32-browser"; - ename = "w32-browser"; - version = "235"; - src = fetchFromGitHub { - owner = "emacsorphanage"; - repo = "w32-browser"; - rev = "a8126b60bf18193e8e4ec6f699b5694b6f71a062"; - sha256 = "13wjvzsas7in8f09sc2qj17dz25wizg1l0r2krgp1zymy92p8f97"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ae489be43b1aee93614e40f492ebdf0b98a3fbc1/recipes/w32-browser"; - sha256 = "16sp0gn4yv7iaa55i2kvfsqw3610gr3x31l9lqa14r9xmfhda1rn"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/w32-browser"; - license = lib.licenses.free; - }; - }) {}; - wacspace = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wacspace"; - ename = "wacspace"; - version = "0.4.2"; - src = fetchFromGitHub { - owner = "shosti"; - repo = "wacspace.el"; - rev = "b951995c204ff23699d2bda515a96221147a725d"; - sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/58e5ff4c5853c5350d0534894ddb358daa83cee9/recipes/wacspace"; - sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/wacspace"; - license = lib.licenses.free; - }; - }) {}; - wandbox = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request - , s }: - melpaBuild { - pname = "wandbox"; - ename = "wandbox"; - version = "0.6.4"; - src = fetchFromGitHub { - owner = "kosh04"; - repo = "emacs-wandbox"; - rev = "e002fe41f2cd9b4ce2b1dc80b83301176e9117f1"; - sha256 = "0fnbj3k21lisgs94pf8z13cdymmclgpn994xq3xly4gq6l8k0an5"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/wandbox"; - sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; - name = "recipe"; - }; - packageRequires = [ emacs request s ]; - meta = { - homepage = "https://melpa.org/#/wandbox"; - license = lib.licenses.free; - }; - }) {}; - wc-goal-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wc-goal-mode"; - ename = "wc-goal-mode"; - version = "2.1"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "wc-goal-mode"; - rev = "a8aa227b1a692dd6399855add84b5e37f6c5d9cb"; - sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f003b6d6bc91e6f9e510de8f5f5f9189d1c7334/recipes/wc-goal-mode"; - sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wc-goal-mode"; - license = lib.licenses.free; - }; - }) {}; - wc-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wc-mode"; - ename = "wc-mode"; - version = "1.3"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "wc-mode"; - rev = "122f90bd1d422a84cc50acabd350d44d39ddeb69"; - sha256 = "0pjlxv46zzqdq6q131jb306vqlg4sfqls1x8vag7mmfw462hafqp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f/recipes/wc-mode"; - sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wc-mode"; - license = lib.licenses.free; - }; - }) {}; - wcheck-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wcheck-mode"; - ename = "wcheck-mode"; - version = "2016.1.30"; - src = fetchFromGitHub { - owner = "tlikonen"; - repo = "wcheck-mode"; - rev = "adb9dd9f39cb0bd0000d140d6e778c4864dfde08"; - sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d10b59f568fdedf248c2e8eaa06c4a74032ca56/recipes/wcheck-mode"; - sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wcheck-mode"; - license = lib.licenses.free; - }; - }) {}; - weather-metno = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "weather-metno"; - ename = "weather-metno"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "ruediger"; - repo = "weather-metno-el"; - rev = "b59680c1ab908b32513954034ba894dfb8564dd8"; - sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75beac314565b9becb701ddd9bc85660e268c3ae/recipes/weather-metno"; - sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/weather-metno"; - license = lib.licenses.free; - }; - }) {}; - web-beautify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-beautify"; - ename = "web-beautify"; - version = "0.3.2"; - src = fetchFromGitHub { - owner = "yasuyk"; - repo = "web-beautify"; - rev = "aa95055224c24f38736716809fec487cd817c38d"; - sha256 = "0vms7zz3ym53wf1zdrkbf2ky2xjr1v134ngsd0jr8azyi8siw84d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/0d528d3e20b1656dff40860cac0e0fa9dc1a3e87/recipes/web-beautify"; - sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/web-beautify"; - license = lib.licenses.free; - }; - }) {}; - web-completion-data = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-completion-data"; - ename = "web-completion-data"; - version = "0.2"; - src = fetchFromGitHub { - owner = "osv"; - repo = "web-completion-data"; - rev = "c272c94e8a71b779c29653a532f619acad433a4f"; - sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/604f155a3ce7e5375dcf8b9c149c5af403ef48bd/recipes/web-completion-data"; - sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/web-completion-data"; - license = lib.licenses.free; - }; - }) {}; - web-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-mode"; - ename = "web-mode"; - version = "16"; - src = fetchFromGitHub { - owner = "fxbois"; - repo = "web-mode"; - rev = "3ff506aae50a47b277f2b95ff7b7a7c596664e6a"; - sha256 = "17dw6a8d0p304f2sa4f9zwd8r48w2wbkc3fvbmxwlg4w12h7cwf0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6f0565555eaa356141422c5175d6cca4e9eb5c00/recipes/web-mode"; - sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/web-mode"; - license = lib.licenses.free; - }; - }) {}; - web-mode-edit-element = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , web-mode }: - melpaBuild { - pname = "web-mode-edit-element"; - ename = "web-mode-edit-element"; - version = "2.3"; - src = fetchFromGitHub { - owner = "jtkDvlp"; - repo = "web-mode-edit-element"; - rev = "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa"; - sha256 = "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/web-mode-edit-element"; - sha256 = "1kcycsjjv1bzfn93aq3cdh5d913izrr8cdxmknbyriyipsqryh3l"; - name = "recipe"; - }; - packageRequires = [ emacs web-mode ]; - meta = { - homepage = "https://melpa.org/#/web-mode-edit-element"; - license = lib.licenses.free; - }; - }) {}; - web-search = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "web-search"; - ename = "web-search"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "web-search.el"; - rev = "72fea0e7429ed3d6932a497b568335316d8ef283"; - sha256 = "1f2g6r24482k1dra1z92yahwvqiryc8p5p1v2naxv16ysa461a34"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/503ef2042cc14dbe53e7121b8d0b5ccbdf6c882b/recipes/web-search"; - sha256 = "08iflbp6rmsxsy2lahsdjj9ki70ixqhsas0vxzawz5pi5vk2x9gj"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/web-search"; - license = lib.licenses.free; - }; - }) {}; - webpaste = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , request }: - melpaBuild { - pname = "webpaste"; - ename = "webpaste"; - version = "3.0.1"; - src = fetchFromGitHub { - owner = "etu"; - repo = "webpaste.el"; - rev = "7345c5f62d5cff4d84379eaf5dc8b2bb8bc4f99c"; - sha256 = "00dfp2dyj9cvcvvpsh4g61b37477c8ahfj3xig2x2kgfz15lk89n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/13847d91c1780783e516943adee8a3530c757e17/recipes/webpaste"; - sha256 = "1pqqapslb5wxfrf1ykrj5jxcl43pix17lawgdqrqkv5fyxbhmfpm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs request ]; - meta = { - homepage = "https://melpa.org/#/webpaste"; - license = lib.licenses.free; - }; - }) {}; - websocket = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "websocket"; - ename = "websocket"; - version = "1.10"; - src = fetchFromGitHub { - owner = "ahyatt"; - repo = "emacs-websocket"; - rev = "0d96ba2ff5a25c6cd6c66f417cc9b5f38a4308ba"; - sha256 = "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/websocket"; - sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/websocket"; - license = lib.licenses.free; - }; - }) {}; - weechat = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , tracking }: - melpaBuild { - pname = "weechat"; - ename = "weechat"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "the-kenny"; - repo = "weechat.el"; - rev = "bcf714e32b012c6a89d5c0a82ab3a74d454908ff"; - sha256 = "1gm2yhz3qy55qqwf0ccrqw4nifxaig4jpdqmcl0ydx1n3myxx64l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e38255a31a4ca31541c97a506a55f82e2670abe6/recipes/weechat"; - sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs s tracking ]; - meta = { - homepage = "https://melpa.org/#/weechat"; - license = lib.licenses.free; - }; - }) {}; - weibo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "weibo"; - ename = "weibo"; - version = "1.0"; - src = fetchFromGitHub { - owner = "austin-----"; - repo = "weibo.emacs"; - rev = "a8af467e5660a35342029c2796de99cd551454b2"; - sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/21f4c1b34f86331ecbcdbdc39858a191232902f2/recipes/weibo"; - sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/weibo"; - license = lib.licenses.free; - }; - }) {}; - wgrep = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wgrep"; - ename = "wgrep"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "b22834e4597b5dfe06621d23cf93351d790df930"; - sha256 = "07p0wwigc99hx09n5fkzf5yxkr7z19rqy8wgxk5m1pyp1i75wiq8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep"; - sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wgrep"; - license = lib.licenses.free; - }; - }) {}; - wgrep-ack = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-ack"; - ename = "wgrep-ack"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "9448a9d597bd089ae61e58add2c5dbecb0aa2b8f"; - sha256 = "0x27h0ccq93avsmb8gim43zklbsb4ghfw30a7hjvz0ilfx02gdca"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-ack"; - sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-ack"; - license = lib.licenses.free; - }; - }) {}; - wgrep-ag = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-ag"; - ename = "wgrep-ag"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "36c5e8d0e03bc16b19d30a603730065f74b5b767"; - sha256 = "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2c50b704343c4cac5e2a62a67e284ba6d8e15f8a/recipes/wgrep-ag"; - sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-ag"; - license = lib.licenses.free; - }; - }) {}; - wgrep-helm = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-helm"; - ename = "wgrep-helm"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "36c5e8d0e03bc16b19d30a603730065f74b5b767"; - sha256 = "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/9648e3df896fcd97b3757a727108bc78261973cc/recipes/wgrep-helm"; - sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-helm"; - license = lib.licenses.free; - }; - }) {}; - wgrep-pt = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , wgrep }: - melpaBuild { - pname = "wgrep-pt"; - ename = "wgrep-pt"; - version = "2.3.0"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "Emacs-wgrep"; - rev = "cd8df1be69257da2e48dc3eae4badc674468b61c"; - sha256 = "1df7lal4c0zsinrfjp4qv2k3xi1kbl66d36in47pmiam1kkqs9fs"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c39faef3b9c2e1867cd48341d9878b714dbed4eb/recipes/wgrep-pt"; - sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; - name = "recipe"; - }; - packageRequires = [ wgrep ]; - meta = { - homepage = "https://melpa.org/#/wgrep-pt"; - license = lib.licenses.free; - }; - }) {}; - which-key = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "which-key"; - ename = "which-key"; - version = "3.3.1"; - src = fetchFromGitHub { - owner = "justbur"; - repo = "emacs-which-key"; - rev = "2f5661646b771f6c5a00a8a9aaa3f183abd5f84d"; - sha256 = "1dh6kr00wmql46whjkvnl953zngiv5j99ypvr1b3cb2174623afb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/315865a3df97c0694f648633d44b8b34df1ac76d/recipes/which-key"; - sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/which-key"; - license = lib.licenses.free; - }; - }) {}; - which-key-posframe = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , posframe - , which-key }: - melpaBuild { - pname = "which-key-posframe"; - ename = "which-key-posframe"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "yanghaoxie"; - repo = "which-key-posframe"; - rev = "75e73e187da78d823a5dc01c21e09e808e4fb938"; - sha256 = "1ay6qnil7xmml95yiax191fs85mpjkpr0r9314zlf0mf7ip9hvpy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/56ab10dc99ea4f5b207f9874124aff414d859a17/recipes/which-key-posframe"; - sha256 = "1vpdni3ascz2zw6k1xrnw2vqnq8p30mc7d8v81qdbjb58q27l8ll"; - name = "recipe"; - }; - packageRequires = [ emacs posframe which-key ]; - meta = { - homepage = "https://melpa.org/#/which-key-posframe"; - license = lib.licenses.free; - }; - }) {}; - whitaker = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whitaker"; - ename = "whitaker"; - version = "0.3"; - src = fetchFromGitHub { - owner = "Fuco1"; - repo = "whitaker"; - rev = "28172edce0f727f0f7f17d8ba71d5510d877bb45"; - sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b5d717e2eaf35ce33b26be049a39f2f75a7de72/recipes/whitaker"; - sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/whitaker"; - license = lib.licenses.free; - }; - }) {}; - whitespace-cleanup-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whitespace-cleanup-mode"; - ename = "whitespace-cleanup-mode"; - version = "0.10"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "whitespace-cleanup-mode"; - rev = "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4"; - sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b461cfe450d7ce6bd0c14be3460cacffc1a32e6f/recipes/whitespace-cleanup-mode"; - sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/whitespace-cleanup-mode"; - license = lib.licenses.free; - }; - }) {}; - whizzml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whizzml-mode"; - ename = "whizzml-mode"; - version = "0.31.4"; - src = fetchFromGitHub { - owner = "whizzml"; - repo = "whizzml-mode"; - rev = "cb476ed0d6be52e0b8c38f5b643cbbfceda1b4ca"; - sha256 = "1iklmzqb7200xniygd3gj3pa8d18z3pnabslsvd0k4qqvyvwnlxw"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/11f26b15c326c3b8541bac510579b32493916042/recipes/whizzml-mode"; - sha256 = "0gas9xfpz5v9fbhjxhd4msihwz9w4a05l5icsaclxvh06f92wcyk"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/whizzml-mode"; - license = lib.licenses.free; - }; - }) {}; - whole-line-or-region = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "whole-line-or-region"; - ename = "whole-line-or-region"; - version = "1.3.1"; - src = fetchFromGitHub { - owner = "purcell"; - repo = "whole-line-or-region"; - rev = "a60e022b30c2f4d3118bcaef1adb77b90e0ca941"; - sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/whole-line-or-region"; - sha256 = "0zz9i1jxayw2p6ggfxjvhb1mc3ly9iy4jvk23ycndz9lnnzkch0y"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/whole-line-or-region"; - license = lib.licenses.free; - }; - }) {}; - widget-mvc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "widget-mvc"; - ename = "widget-mvc"; - version = "0.0.2"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-widget-mvc"; - rev = "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63"; - sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/76d3c38e205076a22628f490d8e8ddd80d091eab/recipes/widget-mvc"; - sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/widget-mvc"; - license = lib.licenses.free; - }; - }) {}; - wiki-nav = callPackage ({ button-lock - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , nav-flash }: - melpaBuild { - pname = "wiki-nav"; - ename = "wiki-nav"; - version = "1.0.2"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "button-lock"; - rev = "86c514d20b9b67c1e87112a574f65c7d53aec2ec"; - sha256 = "0yy4z9k30prsjaig39x20f925dbl2svs8n3lgshcbv5aijffkq07"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b/recipes/wiki-nav"; - sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; - name = "recipe"; - }; - packageRequires = [ button-lock nav-flash ]; - meta = { - homepage = "https://melpa.org/#/wiki-nav"; - license = lib.licenses.free; - }; - }) {}; - win-switch = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "win-switch"; - ename = "win-switch"; - version = "1.1.4"; - src = fetchFromGitHub { - owner = "genovese"; - repo = "win-switch"; - rev = "954eb5e4c5737f0c06368c42a7f1c3dd374d782f"; - sha256 = "1xpx4sc1g1w8w0yc39k2dys83m8skrpvi745bfrzdl47jngrf54h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/win-switch"; - sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/win-switch"; - license = lib.licenses.free; - }; - }) {}; - window-end-visible = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-end-visible"; - ename = "window-end-visible"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "rolandwalker"; - repo = "window-end-visible"; - rev = "bdc3d182e5f76e75f1b8cc49357194b36e48b67c"; - sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c9db386ab3910940addae6e925b2ac17e64e0f87/recipes/window-end-visible"; - sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-end-visible"; - license = lib.licenses.free; - }; - }) {}; - window-layout = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-layout"; - ename = "window-layout"; - version = "1.4"; - src = fetchFromGitHub { - owner = "kiwanami"; - repo = "emacs-window-layout"; - rev = "cd2e4f967b610c2bbef53182829e47250d027056"; - sha256 = "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/window-layout"; - sha256 = "061mvxcj4mg2pmkln7nn6gyscs08aid4cfc6xck0x5gzr1snr639"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-layout"; - license = lib.licenses.free; - }; - }) {}; - window-numbering = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "window-numbering"; - ename = "window-numbering"; - version = "1.1.2"; - src = fetchFromGitHub { - owner = "nschum"; - repo = "window-numbering.el"; - rev = "653afce73854d629c2b9d63dad73126032d6a24c"; - sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ce1dc80f69894736b276885e4ec3ce571a8612c9/recipes/window-numbering"; - sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/window-numbering"; - license = lib.licenses.free; - }; - }) {}; - window-purpose = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , imenu-list - , let-alist - , lib - , melpaBuild }: - melpaBuild { - pname = "window-purpose"; - ename = "window-purpose"; - version = "1.7"; - src = fetchFromGitHub { - owner = "bmag"; - repo = "emacs-purpose"; - rev = "a302340e183d20baa4445858d321f43449298829"; - sha256 = "1dpy8hkjn87wbdkzyabhay4jx4dgc0ab2flyf0rjq1qaazk393sc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5813120ab674f6db7d0a486433d8faa6cfec1727/recipes/window-purpose"; - sha256 = "1y70jrba3gf9fyf2qdihfshbsblzb88yv9fkcswdzrpq5kmgwp84"; - name = "recipe"; - }; - packageRequires = [ emacs imenu-list let-alist ]; - meta = { - homepage = "https://melpa.org/#/window-purpose"; - license = lib.licenses.free; - }; - }) {}; - windsize = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "windsize"; - ename = "windsize"; - version = "0.1"; - src = fetchFromGitHub { - owner = "grammati"; - repo = "windsize"; - rev = "014b0836f9ffe45fa7e0ccc84576fbef74815a59"; - sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/windsize"; - sha256 = "1fzqf86d7pimnc87xdgvpv4hnv7j6ngmk1sjvazj6726xygswkyv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/windsize"; - license = lib.licenses.free; - }; - }) {}; - winring = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winring"; - ename = "winring"; - version = "5.1"; - src = fetchFromGitLab { - owner = "warsaw"; - repo = "winring"; - rev = "f2d072bd446b73e93b127523f19ea82b99b9267f"; - sha256 = "1j0g52panhx91hqw5glnlv5vnnpnjyx49xc8xif8mjf0m27723fv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/2476a28c33502f908b7161c5a9c63c86b8d7b57d/recipes/winring"; - sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/winring"; - license = lib.licenses.free; - }; - }) {}; - winum = callPackage ({ cl-lib ? null - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "winum"; - ename = "winum"; - version = "2.1.0"; - src = fetchFromGitHub { - owner = "deb0ch"; - repo = "emacs-winum"; - rev = "efcb14fd306afbc738666e6b2e5a8a1bb5904392"; - sha256 = "0v1qmw3svydk7dlqbcymy1g1bygkfpb2h4b97zdp12xvd8mww9ny"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/c1caa7a54a910a44322fdee300e8cce6ddcde071/recipes/winum"; - sha256 = "0yyvjmvqif6glh9ri6049nxcmgib9mxdhy6816kjhsaqr570f9pw"; - name = "recipe"; - }; - packageRequires = [ cl-lib dash ]; - meta = { - homepage = "https://melpa.org/#/winum"; - license = lib.licenses.free; - }; - }) {}; - wispjs-mode = callPackage ({ clojure-mode - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wispjs-mode"; - ename = "wispjs-mode"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "krisajenkins"; - repo = "wispjs-mode"; - rev = "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f"; - sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/a628330ee8deeab2bd5c2d4b61b33f119c4549d8/recipes/wispjs-mode"; - sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; - name = "recipe"; - }; - packageRequires = [ clojure-mode ]; - meta = { - homepage = "https://melpa.org/#/wispjs-mode"; - license = lib.licenses.free; - }; - }) {}; - with-editor = callPackage ({ async - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "with-editor"; - ename = "with-editor"; - version = "2.8.3"; - src = fetchFromGitHub { - owner = "magit"; - repo = "with-editor"; - rev = "66bec91c859f305445b766394eb25248c1172426"; - sha256 = "1z2h9casyw1b93ikq2mf9xixyvbl90zddf0s66lqfiyj2y376pq3"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8c52c840dc35f3fd17ec660e113ddbb53aa99076/recipes/with-editor"; - sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; - name = "recipe"; - }; - packageRequires = [ async emacs ]; - meta = { - homepage = "https://melpa.org/#/with-editor"; - license = lib.licenses.free; - }; - }) {}; - with-simulated-input = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s - , seq }: - melpaBuild { - pname = "with-simulated-input"; - ename = "with-simulated-input"; - version = "2.2"; - src = fetchFromGitHub { - owner = "DarwinAwardWinner"; - repo = "with-simulated-input"; - rev = "9efeb236c8f6887a8591d6241962c37266d8e726"; - sha256 = "1v8c85ahsk9pz3zndh0c9xba4c78f4b1j97hbv62jirvr75b079g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e4ddf16e19f5018106a423327ddc7e7499cf9248/recipes/with-simulated-input"; - sha256 = "0113la76nbp18vaffsd7w7wcw5k2sqwgnjq1gslf4khdfqghrkwk"; - name = "recipe"; - }; - packageRequires = [ emacs s seq ]; - meta = { - homepage = "https://melpa.org/#/with-simulated-input"; - license = lib.licenses.free; - }; - }) {}; - with-venv = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "with-venv"; - ename = "with-venv"; - version = "0.0.1"; - src = fetchFromGitHub { - owner = "10sr"; - repo = "with-venv-el"; - rev = "d12341b93420f4acd7a277ed0cd4a54767bc5bd6"; - sha256 = "0knv2ybf4sbn31zyg9ms44mxvmvg7b51krq320g8fpcpa1bq28s6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/555a2e49f18fbae59913459466babf8d55bd2151/recipes/with-venv"; - sha256 = "090jird410wn2w9pwr2d9pjw5xghcdxc4l578zay2akygg3c6blm"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/with-venv"; - license = lib.licenses.free; - }; - }) {}; - wn-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wn-mode"; - ename = "wn-mode"; - version = "1.4"; - src = fetchFromGitHub { - owner = "luismbo"; - repo = "wn-mode"; - rev = "6e7029b0d5773a79914a289937be068784931cad"; - sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6213c01e6954985daff8cd1a5a3ef004431f0477/recipes/wn-mode"; - sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wn-mode"; - license = lib.licenses.free; - }; - }) {}; - wolfram = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wolfram"; - ename = "wolfram"; - version = "1.1.1"; - src = fetchFromGitHub { - owner = "hsjunnesson"; - repo = "wolfram.el"; - rev = "6b5dceae3fd6cdb4d7562510deeafa02c93c010b"; - sha256 = "1ijyjw2793i7n00i30ma8lw4fzi9w63m6k0xgjx6j78r5y7pfj2g"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/785b5b1ec73e6376f2f2bb405707a1078398fa3a/recipes/wolfram"; - sha256 = "02xp1916v9rydh0586jkx71v256qdg63f87s3m0agc2znnrni9h4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wolfram"; - license = lib.licenses.free; - }; - }) {}; - wonderland = callPackage ({ dash - , dash-functional - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , multi }: - melpaBuild { - pname = "wonderland"; - ename = "wonderland"; - version = "0.1.1"; - src = fetchFromGitHub { - owner = "kurisuwhyte"; - repo = "emacs-wonderland"; - rev = "28cf6b37000c395ece9519db53147fb826a42bc4"; - sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08/recipes/wonderland"; - sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; - name = "recipe"; - }; - packageRequires = [ dash dash-functional emacs multi ]; - meta = { - homepage = "https://melpa.org/#/wonderland"; - license = lib.licenses.free; - }; - }) {}; - wordgen = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wordgen"; - ename = "wordgen"; - version = "0.1.4"; - src = fetchFromGitHub { - owner = "Fanael"; - repo = "wordgen.el"; - rev = "aacad928ae99a953e034a831dfd0ebdf7d52ac1d"; - sha256 = "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5cfdc64a9aa79575dad8057c4cd747d2cdd460aa/recipes/wordgen"; - sha256 = "0vlrplm3pmpwwa8p8j6lck97b875gzzm7vxxc8l9l18vs237cz1m"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/wordgen"; - license = lib.licenses.free; - }; - }) {}; - wordsmith-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wordsmith-mode"; - ename = "wordsmith-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "istib"; - repo = "wordsmith-mode"; - rev = "45df3bca3b49f7ee9d59278e4f6662d63d1dec33"; - sha256 = "0yxhw6kv12ny1fg5k0j9k7z3f54hnaq6h6b454197lssm9xjgg2b"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3b5fda506e5b388cd6824d433b89032ed46858dc/recipes/wordsmith-mode"; - sha256 = "0s6b6dfqn31jdcgs2mlmvwgpr5a4zs4xi8m002ly11c6sn035xb1"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wordsmith-mode"; - license = lib.licenses.free; - }; - }) {}; - worf = callPackage ({ ace-link - , fetchFromGitHub - , fetchurl - , hydra - , lib - , melpaBuild - , swiper }: - melpaBuild { - pname = "worf"; - ename = "worf"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "worf"; - rev = "f36755447b588b739b2bf6ab0fb5eb5f4d8db3df"; - sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/f00f8765e35c21dd1a4b5c01c239ed4d15170ab7/recipes/worf"; - sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; - name = "recipe"; - }; - packageRequires = [ ace-link hydra swiper ]; - meta = { - homepage = "https://melpa.org/#/worf"; - license = lib.licenses.free; - }; - }) {}; - workgroups2 = callPackage ({ anaphora - , cl-lib ? null - , dash - , f - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "workgroups2"; - ename = "workgroups2"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "pashinin"; - repo = "workgroups2"; - rev = "928d509157ec8a4a2e343b6115dff034c3243a7a"; - sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4f9cfb740cce05a6805d9a047e4c1380305da4df/recipes/workgroups2"; - sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; - name = "recipe"; - }; - packageRequires = [ anaphora cl-lib dash f ]; - meta = { - homepage = "https://melpa.org/#/workgroups2"; - license = lib.licenses.free; - }; - }) {}; - wrap-region = callPackage ({ dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wrap-region"; - ename = "wrap-region"; - version = "0.7.3"; - src = fetchFromGitHub { - owner = "rejeep"; - repo = "wrap-region.el"; - rev = "5a910ad23ebb0649e644bf62ad042587341da5da"; - sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/wrap-region"; - sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; - name = "recipe"; - }; - packageRequires = [ dash ]; - meta = { - homepage = "https://melpa.org/#/wrap-region"; - license = lib.licenses.free; - }; - }) {}; - writegood-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "writegood-mode"; - ename = "writegood-mode"; - version = "2.0.3"; - src = fetchFromGitHub { - owner = "bnbeckwith"; - repo = "writegood-mode"; - rev = "b71757ec337e226909fb0422f0224e31acc71733"; - sha256 = "038gliy6l931r02bf2dbhmp188sgk1rq46ngg9nhf5q5rkf3pi8p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/75c5a4304999fc3f5a02235a1c2c904238d2ce4f/recipes/writegood-mode"; - sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/writegood-mode"; - license = lib.licenses.free; - }; - }) {}; - writeroom-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , visual-fill-column }: - melpaBuild { - pname = "writeroom-mode"; - ename = "writeroom-mode"; - version = "3.8"; - src = fetchFromGitHub { - owner = "joostkremers"; - repo = "writeroom-mode"; - rev = "ebe522ba5a0367cf82ed03ffeb63fe597b84f4a1"; - sha256 = "0w2lmkkij79khjpswk2zxj371fa9ws94j9dqzrgzf37lnimgnsff"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4e39cd8e8b4f61c04fa967def6a653bb22f45f5b/recipes/writeroom-mode"; - sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; - name = "recipe"; - }; - packageRequires = [ emacs visual-fill-column ]; - meta = { - homepage = "https://melpa.org/#/writeroom-mode"; - license = lib.licenses.free; - }; - }) {}; - ws-butler = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ws-butler"; - ename = "ws-butler"; - version = "0.6"; - src = fetchFromGitHub { - owner = "lewang"; - repo = "ws-butler"; - rev = "323b651dd70ee40a25accc940b8f80c3a3185205"; - sha256 = "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/ws-butler"; - sha256 = "1k5nhj37r51i0czrlafra53wir73p0nbq83jjccqmw4p4xk6axl3"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ws-butler"; - license = lib.licenses.free; - }; - }) {}; - wsd-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wsd-mode"; - ename = "wsd-mode"; - version = "0.5.0"; - src = fetchFromGitHub { - owner = "josteink"; - repo = "wsd-mode"; - rev = "b5e8ea0daeaa52f2ea6349e09902bd3216e96258"; - sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/04867a574773e8794335a2664d4f5e8b243f3ec9/recipes/wsd-mode"; - sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/wsd-mode"; - license = lib.licenses.free; - }; - }) {}; - wttrin = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , xterm-color }: - melpaBuild { - pname = "wttrin"; - ename = "wttrin"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "bcbcarl"; - repo = "emacs-wttrin"; - rev = "36375c46220aae42aa2c3fe20cf1c252e8ecad87"; - sha256 = "1vjcfqqm6xwinwmi973n45jillc5j77da436wlv1ax0095xck4nl"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1b2b6876562f1fadd4af1ea9b279ac4dc1b21660/recipes/wttrin"; - sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; - name = "recipe"; - }; - packageRequires = [ emacs xterm-color ]; - meta = { - homepage = "https://melpa.org/#/wttrin"; - license = lib.licenses.free; - }; - }) {}; - wucuo = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "wucuo"; - ename = "wucuo"; - version = "0.0.4"; - src = fetchFromGitHub { - owner = "redguardtoo"; - repo = "wucuo"; - rev = "4e988c101fe82f2e8c7b3710d15982fe28b8d32d"; - sha256 = "0g558miz9f4g8jlq532fs9yxj3il62zajgcjfndall2853hn54af"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/819cacef2c31d750829980f3f6c3bfb72f36bbdd/recipes/wucuo"; - sha256 = "084fcv4dkflpka9vmxmxqdl0cgmjjh9wc6axr65j1ffmqd933y4a"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/wucuo"; - license = lib.licenses.free; - }; - }) {}; - x86-lookup = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "x86-lookup"; - ename = "x86-lookup"; - version = "1.2.0"; - src = fetchFromGitHub { - owner = "skeeto"; - repo = "x86-lookup"; - rev = "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf"; - sha256 = "19zgq7mcc3wx847xc911fibvphbsws99m2l3k54xdjp8mb5qfdzm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/27757b9b5673f5581e678e8cad719138db654415/recipes/x86-lookup"; - sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/x86-lookup"; - license = lib.licenses.free; - }; - }) {}; - xbm-life = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xbm-life"; - ename = "xbm-life"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "xbm-life"; - rev = "bde2b3730a02d237f7d95a8e3f3722f23f2d9201"; - sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6cb4c55583338dafee61fd9c266d2ee7cae2b1ed/recipes/xbm-life"; - sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xbm-life"; - license = lib.licenses.free; - }; - }) {}; - xcode-project = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xcode-project"; - ename = "xcode-project"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "nhojb"; - repo = "xcode-project"; - rev = "f5548a26a1afc0b0d873556c25f6d8b6b9c2aa8c"; - sha256 = "0xb1cvjaw7zjnw6c5aq315vvlc3cncris62jis44jb8s5r8gxcrv"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/49b866ebf7e707bc74525f83dd5038e6e860fcef/recipes/xcode-project"; - sha256 = "0igp30f6ypmp4l8zmdfpa5bza4avm7mq2gj8v7b3ii655v91n6vi"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/xcode-project"; - license = lib.licenses.free; - }; - }) {}; - xcscope = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xcscope"; - ename = "xcscope"; - version = "1.4"; - src = fetchFromGitHub { - owner = "dkogan"; - repo = "xcscope.el"; - rev = "57bff67460c587acf60f513de622b4c7ab312081"; - sha256 = "1l1k85wlmjb2mgzx1la9f0p7j3q0mzj4hlrs98pf4bbfkdbqg7a7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/068c7846e70b91ce7e88330937fc64a60281802a/recipes/xcscope"; - sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xcscope"; - license = lib.licenses.free; - }; - }) {}; - xkcd = callPackage ({ fetchFromGitHub - , fetchurl - , json ? null - , lib - , melpaBuild }: - melpaBuild { - pname = "xkcd"; - ename = "xkcd"; - version = "1.1"; - src = fetchFromGitHub { - owner = "vibhavp"; - repo = "emacs-xkcd"; - rev = "2c538d41a9728939cc5e8292faa78ed50997877d"; - sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xkcd"; - sha256 = "0gy2952zg1rq5gl10x7iwbchz5jibfcvikd3chifqbmil80wh6b5"; - name = "recipe"; - }; - packageRequires = [ json ]; - meta = { - homepage = "https://melpa.org/#/xkcd"; - license = lib.licenses.free; - }; - }) {}; - xml-rpc = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xml-rpc"; - ename = "xml-rpc"; - version = "1.6.12"; - src = fetchFromGitHub { - owner = "hexmode"; - repo = "xml-rpc-el"; - rev = "0ab093d60140d19e31d217c8abdc7dbdac944486"; - sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/547d773e07d6229d2135d1b081b5401039ffad39/recipes/xml-rpc"; - sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xml-rpc"; - license = lib.licenses.free; - }; - }) {}; - xmlgen = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xmlgen"; - ename = "xmlgen"; - version = "0.5"; - src = fetchFromGitHub { - owner = "philjackson"; - repo = "xmlgen"; - rev = "dba66681f0c5e621a9e70e8afb34903c9ffe93c4"; - sha256 = "096i29v0badx0a6339h9ckdz78zj59gbjdp7vj7vhkq9d830392s"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/xmlgen"; - sha256 = "0c77la6kl02qkapfzbjmhac60f8p837kwg8bp0686ylxh5s31zsh"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xmlgen"; - license = lib.licenses.free; - }; - }) {}; - xquery-tool = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xquery-tool"; - ename = "xquery-tool"; - version = "0.1.11"; - src = fetchFromGitHub { - owner = "paddymcall"; - repo = "xquery-tool.el"; - rev = "dc939a6d779e83fa06c4486e53dbeb3846c38c02"; - sha256 = "10rp8wbvbab2z3rcyfsb2jxyj3fphq9g25wmai8c610z4s8rldlq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2/recipes/xquery-tool"; - sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xquery-tool"; - license = lib.licenses.free; - }; - }) {}; - xref-js2 = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , js2-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "xref-js2"; - ename = "xref-js2"; - version = "1.5"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "xref-js2"; - rev = "7e2bc6a8dad08a493d11d3554f6374584846b9e6"; - sha256 = "1mmd27miv32sl8cj7qhy09yfh7v1zgw7rv4fdwk96msvd4qfdkqd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b5dab444ead98210b4ab3a6f9a61d013aed6d5b7/recipes/xref-js2"; - sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; - name = "recipe"; - }; - packageRequires = [ emacs js2-mode ]; - meta = { - homepage = "https://melpa.org/#/xref-js2"; - license = lib.licenses.free; - }; - }) {}; - xresources-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xresources-theme"; - ename = "xresources-theme"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "cqql"; - repo = "xresources-theme"; - rev = "5239acb51aa2dfa89a207e57012108d8fcf60562"; - sha256 = "13pls0f85n5rpbrbqcmrmcznv9hxiaglrnwpzivrli33cba92fpm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/35763febad20f29320d459394f810668db6c3353/recipes/xresources-theme"; - sha256 = "1vsbvg9w5g6y2qlb8ssn12ax31r7fbslfi9vcgvmjydcr8r1z0zs"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/xresources-theme"; - license = lib.licenses.free; - }; - }) {}; - xterm-color = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xterm-color"; - ename = "xterm-color"; - version = "1.8"; - src = fetchFromGitHub { - owner = "atomontage"; - repo = "xterm-color"; - rev = "a452ab38a7cfae97078062ff8885b5d74fd1e5a6"; - sha256 = "02kpajb993yshhjhsizpfcbrcndyzkf4dqfipifhxxng50dhp95i"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b34a42f1bf5641871da8ce2b688325023262b643/recipes/xterm-color"; - sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/xterm-color"; - license = lib.licenses.free; - }; - }) {}; - xtest = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "xtest"; - ename = "xtest"; - version = "1.1.0"; - src = fetchFromGitHub { - owner = "promethial"; - repo = "xtest"; - rev = "b227414d714e7baddef79bd306a43024b9a34d45"; - sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/378fe14c66072ecb899a074c56f95077dfc9667e/recipes/xtest"; - sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/xtest"; - license = lib.licenses.free; - }; - }) {}; - yafolding = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yafolding"; - ename = "yafolding"; - version = "0.4.0"; - src = fetchFromGitHub { - owner = "zenozeng"; - repo = "yafolding.el"; - rev = "57c015ddd7c3454571c80825bc5391d7a10fa1d7"; - sha256 = "144v8nn4l8ngfdrsgj5nrxp09391gnfrqf950y956cbmqvnlw7z8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/yafolding"; - sha256 = "1yb1rlxa5f1y1xjqs7ndr5jnf9j5cv0ccqdpbrx4l9xkm3npw9zl"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yafolding"; - license = lib.licenses.free; - }; - }) {}; - yagist = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yagist"; - ename = "yagist"; - version = "0.8.12"; - src = fetchFromGitHub { - owner = "mhayashi1120"; - repo = "yagist.el"; - rev = "97723a34750ccab5439eb9f6a2f67e4e0e234167"; - sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/97ea1250ffbf159d7870710b9348ef26616dbedb/recipes/yagist"; - sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/yagist"; - license = lib.licenses.free; - }; - }) {}; - yaml-imenu = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yaml-mode }: - melpaBuild { - pname = "yaml-imenu"; - ename = "yaml-imenu"; - version = "1.0.1"; - src = fetchFromGitHub { - owner = "knu"; - repo = "yaml-imenu.el"; - rev = "78a383098807014d9e7f2941196d8271677158cd"; - sha256 = "1f85m0h19wjb0xrwkxrh7vrpphm8l5nkrv82zsl097dqw3ijj3f1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/71e7c2df9e34093ad2634d5a56133fa30126fb5c/recipes/yaml-imenu"; - sha256 = "03r7020gyr96m1z7p947nb7z8szzlkqv21g1hm10sqa8qp7k0qli"; - name = "recipe"; - }; - packageRequires = [ emacs yaml-mode ]; - meta = { - homepage = "https://melpa.org/#/yaml-imenu"; - license = lib.licenses.free; - }; - }) {}; - yaml-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yaml-mode"; - ename = "yaml-mode"; - version = "0.0.13"; - src = fetchFromGitHub { - owner = "yoshiki"; - repo = "yaml-mode"; - rev = "2ace378bef2047a980fba0e42e3e6b5d990f2c66"; - sha256 = "1wx4gqkg0v0mcykimiihrp4lg2s9qac31w8rw5frbs1r37v3l8x7"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/cae2ac3513e371a256be0f1a7468e38e686c2487/recipes/yaml-mode"; - sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yaml-mode"; - license = lib.licenses.free; - }; - }) {}; - yang-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yang-mode"; - ename = "yang-mode"; - version = "0.9.9"; - src = fetchFromGitHub { - owner = "mbj4668"; - repo = "yang-mode"; - rev = "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded"; - sha256 = "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/bb42ab9b5f118baaf6766c478046552b686981a1/recipes/yang-mode"; - sha256 = "0rl90xbcf3383ls95g1dixh2dr02kc4g60d324cqbb4h59wffp40"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yang-mode"; - license = lib.licenses.free; - }; - }) {}; - yankpad = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yankpad"; - ename = "yankpad"; - version = "1.6"; - src = fetchFromGitHub { - owner = "Kungsgeten"; - repo = "yankpad"; - rev = "d2ea6920a2444f1ce6f53947640446b8e16f84b7"; - sha256 = "1lw2d25rwszk35bi3gm3bg0cb30b8c2bf3p32b89shnsmwylw52m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e64746d10f9e0158621a7c4dc41dc2eca6ad573c/recipes/yankpad"; - sha256 = "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yankpad"; - license = lib.licenses.free; - }; - }) {}; - yapfify = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yapfify"; - ename = "yapfify"; - version = "0.0.6"; - src = fetchFromGitHub { - owner = "JorisE"; - repo = "yapfify"; - rev = "9e63a9135bd8dbfbee55819837a3aa0d119c5e6f"; - sha256 = "1bf09hah2g8x0jbrdh4fm1v01qjymiv38yvv8a5qmfpv5k93lcrc"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/060c32d8e9fdc56fe702d265a935d74d76082f86/recipes/yapfify"; - sha256 = "0scl8lk1c5i7jp1qj5gg8zf3zyi8lkb57ijkmvcs4czzlyv3y9bm"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yapfify"; - license = lib.licenses.free; - }; - }) {}; - yard-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yard-mode"; - ename = "yard-mode"; - version = "0.1"; - src = fetchFromGitHub { - owner = "pd"; - repo = "yard-mode.el"; - rev = "28015f600c38efed37df025b76705f7edbf963ea"; - sha256 = "1p1f1cdq1km2zlk1z8s2yhw9mgf3kdx48pgp7bhd0l2ybxh5kc85"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/afad2677f901b8d27922389afb1d235d5c8edc39/recipes/yard-mode"; - sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yard-mode"; - license = lib.licenses.free; - }; - }) {}; - yarn-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yarn-mode"; - ename = "yarn-mode"; - version = "1.0"; - src = fetchFromGitHub { - owner = "anachronic"; - repo = "yarn-mode"; - rev = "99891000efe31214b065fa9446cd5e68c5c42ed8"; - sha256 = "0cg06ba9yfgjzprq78cvhvvl06av0p2vhnmynddzbpgjgjnwskfy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/860fa2a8fdb22be374fa64a5277af3ab484a047a/recipes/yarn-mode"; - sha256 = "08a3lrz670jsf531mn1hwhh7fg5dby6i749cscd6d4dyvkzpz5dg"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/yarn-mode"; - license = lib.licenses.free; - }; - }) {}; - yascroll = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yascroll"; - ename = "yascroll"; - version = "0.1"; - src = fetchFromGitHub { - owner = "m2ym"; - repo = "yascroll-el"; - rev = "0a8b531b3a3c8afe7235c8c212e08bfe2021a629"; - sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/yascroll"; - sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yascroll"; - license = lib.licenses.free; - }; - }) {}; - yasnippet = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yasnippet"; - ename = "yasnippet"; - version = "0.13.0"; - src = fetchFromGitHub { - owner = "joaotavora"; - repo = "yasnippet"; - rev = "5a29fe67d70de3749e30ebb37206395b4d1a51a8"; - sha256 = "0fkkplycrw8f8r30hjjxl1wm7p2irq2ipzzc1g7cc52abaal796p"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5d1927dc3351d3522de1baccdc4ce200ba52bd6e/recipes/yasnippet"; - sha256 = "1r37vz5b8nj6hr6c2ki9fdbrs3kkb4zwimh8r4ixm10kdkk5jqds"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/yasnippet"; - license = lib.licenses.free; - }; - }) {}; - yasnippet-snippets = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "yasnippet-snippets"; - ename = "yasnippet-snippets"; - version = "0.11"; - src = fetchFromGitHub { - owner = "AndreaCrotti"; - repo = "yasnippet-snippets"; - rev = "69cc1c19c7d67780d9f0f910462b818e8c0a570e"; - sha256 = "1j71vr52hndgqj00qsh4p2b5j0s9jcs174slk1p0745a5xac77p0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/42490bbdac871bce302fbc9a0488ff7de354627e/recipes/yasnippet-snippets"; - sha256 = "0daawvlw78ya38bbi95swjq8qk5jf5shsyv164m81y2gd8i5c183"; - name = "recipe"; - }; - packageRequires = [ yasnippet ]; - meta = { - homepage = "https://melpa.org/#/yasnippet-snippets"; - license = lib.licenses.free; - }; - }) {}; - yatemplate = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , yasnippet }: - melpaBuild { - pname = "yatemplate"; - ename = "yatemplate"; - version = "3.0"; - src = fetchFromGitHub { - owner = "mineo"; - repo = "yatemplate"; - rev = "caa8734afc559a28eb4ec5dc3f240434e51cafc9"; - sha256 = "0zzmhkadyyw56j1z6dgj3x81sb5mxd0s2r20vy5mrfm18cyvsdd1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8ba3cdb74f121cbf36b6d9d5a434c363905ce526/recipes/yatemplate"; - sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; - name = "recipe"; - }; - packageRequires = [ emacs yasnippet ]; - meta = { - homepage = "https://melpa.org/#/yatemplate"; - license = lib.licenses.free; - }; - }) {}; - yaxception = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yaxception"; - ename = "yaxception"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "aki2o"; - repo = "yaxception"; - rev = "21a36020c6a5319ea6461f4524aa3a0589df3bbd"; - sha256 = "06fnm2c17hmlfp40mq8lxk1blmcy10z0xxdpy8ykyv1r1r6syjf8"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/1da5261081fc66910d935b81e52391c071e52379/recipes/yaxception"; - sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yaxception"; - license = lib.licenses.free; - }; - }) {}; - ycmd = callPackage ({ cl-lib ? null - , dash - , deferred - , emacs - , fetchFromGitHub - , fetchurl - , let-alist - , lib - , melpaBuild - , pkg-info - , request - , request-deferred - , s }: - melpaBuild { - pname = "ycmd"; - ename = "ycmd"; - version = "1.2"; - src = fetchFromGitHub { - owner = "abingham"; - repo = "emacs-ycmd"; - rev = "d042a673b4d717c3ca9d641f120bfe16c994c740"; - sha256 = "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4b25378540c64d0214797348579671bf2b8cc696/recipes/ycmd"; - sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; - name = "recipe"; - }; - packageRequires = [ - cl-lib - dash - deferred - emacs - let-alist - pkg-info - request - request-deferred - s - ]; - meta = { - homepage = "https://melpa.org/#/ycmd"; - license = lib.licenses.free; - }; - }) {}; - ydk-mode = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "ydk-mode"; - ename = "ydk-mode"; - version = "1.0.0"; - src = fetchFromGitHub { - owner = "jacksonrayhamilton"; - repo = "ydk-mode"; - rev = "3de9ef27dbdf5887f05092895e4ba93e7659e0ec"; - sha256 = "1kc1qsblfxfxrbgv3ksqf87gzic463136k2v7ryaj3x2r9mc0j3l"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/865b9ee86ca28fc1cedc0a432a292400184711ae/recipes/ydk-mode"; - sha256 = "1z9digf39d7dd736svp0cy6773l3nklzc263q23gwfcg0jswbdyg"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/ydk-mode"; - license = lib.licenses.free; - }; - }) {}; - yesql-ghosts = callPackage ({ cider - , dash - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , s }: - melpaBuild { - pname = "yesql-ghosts"; - ename = "yesql-ghosts"; - version = "0.1.0"; - src = fetchFromGitHub { - owner = "magnars"; - repo = "yesql-ghosts"; - rev = "bd834e97f263f9f981758c1462bc6297a83ca852"; - sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3c652657be0f9b9dcb236e01c3abd2fd717190d7/recipes/yesql-ghosts"; - sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; - name = "recipe"; - }; - packageRequires = [ cider dash s ]; - meta = { - homepage = "https://melpa.org/#/yesql-ghosts"; - license = lib.licenses.free; - }; - }) {}; - yoshi-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "yoshi-theme"; - ename = "yoshi-theme"; - version = "6.2.0"; - src = fetchFromGitHub { - owner = "ryuslash"; - repo = "yoshi-theme"; - rev = "70365870ff823b954aa85972217d8f116c45d939"; - sha256 = "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/6e9a549e31c4097ee24b4bff12ec5d20d3beac68/recipes/yoshi-theme"; - sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/yoshi-theme"; - license = lib.licenses.free; - }; - }) {}; - youdao-dictionary = callPackage ({ chinese-word-at-point - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild - , names - , popup }: - melpaBuild { - pname = "youdao-dictionary"; - ename = "youdao-dictionary"; - version = "0.4"; - src = fetchFromGitHub { - owner = "xuchunyang"; - repo = "youdao-dictionary.el"; - rev = "a6e44e4fb93cc1b9f1067f10cf854b0bfc3fe732"; - sha256 = "1m4zri7kiw70062w2sp4fdqmmx2vmjisamjwmjdg6669dzvnpawq"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/712bdf83f71c2105754f9b549a889ffc5b7ba565/recipes/youdao-dictionary"; - sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; - name = "recipe"; - }; - packageRequires = [ chinese-word-at-point emacs names popup ]; - meta = { - homepage = "https://melpa.org/#/youdao-dictionary"; - license = lib.licenses.free; - }; - }) {}; - zel = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , frecency - , lib - , melpaBuild }: - melpaBuild { - pname = "zel"; - ename = "zel"; - version = "0.1.2"; - src = fetchFromGitHub { - owner = "rudolfochrist"; - repo = "zel"; - rev = "1d938ac01a42e7a985a3f92f5e97bc09e057676e"; - sha256 = "1hk84x4aqcfd3jggk9san1v4kr58v2zhikbv9sh3dcii6x5w2nv0"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/25b445a1dea5e8f1042bed6b5372471c25129fd8/recipes/zel"; - sha256 = "0fwc1fghsw2rg4fv10kgc9d6rhbq20xa9diqcvp1f1cqs12rfhpd"; - name = "recipe"; - }; - packageRequires = [ emacs frecency ]; - meta = { - homepage = "https://melpa.org/#/zel"; - license = lib.licenses.free; - }; - }) {}; - zenburn-theme = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zenburn-theme"; - ename = "zenburn-theme"; - version = "2.6"; - src = fetchFromGitHub { - owner = "bbatsov"; - repo = "zenburn-emacs"; - rev = "fdb1a9ca91ba04ed76a85af39890e1943774706b"; - sha256 = "15g8dk5qdx8r54ccawy6gyprvms7zp7cgf5pwf24b829l2mrrs6r"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/091dcc3775ec2137cb61d66df4e72aca4900897a/recipes/zenburn-theme"; - sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zenburn-theme"; - license = lib.licenses.free; - }; - }) {}; - zephir-mode = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zephir-mode"; - ename = "zephir-mode"; - version = "0.3.3"; - src = fetchFromGitHub { - owner = "sergeyklay"; - repo = "zephir-mode"; - rev = "b031c56753cef349484d53d2f3f29bd8080f4dc5"; - sha256 = "1gxz2khyl14z4hg1gxscv14gsqgnrz0343yy3lla0cc9i64c65ih"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/5bd901c93ce7f64de6082e801327adbd18fd4517/recipes/zephir-mode"; - sha256 = "0nxm6w7z89q2vvf3bp1p6hb6f2axv9ha85jyiv4k02l46sjprf4j"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zephir-mode"; - license = lib.licenses.free; - }; - }) {}; - zerodark-theme = callPackage ({ all-the-icons - , fetchFromGitHub - , fetchurl - , flycheck - , lib - , magit - , melpaBuild }: - melpaBuild { - pname = "zerodark-theme"; - ename = "zerodark-theme"; - version = "4.5"; - src = fetchFromGitHub { - owner = "NicolasPetton"; - repo = "zerodark-theme"; - rev = "ceb46240636865e86f3fe26906957943ba7bd73c"; - sha256 = "0nnlxzsmhsbszqigcyxak9i1a0digrd13gv6v18ck4h760mihh1m"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/d00b78ead693e844e35c760fe2c39b8ed6cb0d81/recipes/zerodark-theme"; - sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; - name = "recipe"; - }; - packageRequires = [ all-the-icons flycheck magit ]; - meta = { - homepage = "https://melpa.org/#/zerodark-theme"; - license = lib.licenses.free; - }; - }) {}; - zmq = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zmq"; - ename = "zmq"; - version = "0.10.9"; - src = fetchFromGitHub { - owner = "dzop"; - repo = "emacs-zmq"; - rev = "eb96b39696229424efc2a5ffdaf59c55f1ae931d"; - sha256 = "1ddaf8n1gndkyb46ivchychgyc5cqd5hf56325z3rf412xi4zrk1"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/72f4dcc2723de826bf1af7235ac6d9119a243c63/recipes/zmq"; - sha256 = "14bbh00a58xgxyxl8zjxl57rf6351fnwsnk4cvvy341fvf86dklc"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/zmq"; - license = lib.licenses.free; - }; - }) {}; - zombie-trellys-mode = callPackage ({ cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , haskell-mode - , lib - , melpaBuild }: - melpaBuild { - pname = "zombie-trellys-mode"; - ename = "zombie-trellys-mode"; - version = "0.2.1"; - src = fetchFromGitHub { - owner = "david-christiansen"; - repo = "zombie-trellys-mode"; - rev = "03b8d3635f65dbf38f9a19b5d1a8dfdcb38ba423"; - sha256 = "0rp615k41v5v9m9g3ydyzgwr6a7wqrmsdkz3pc2frl1zij8jpjm4"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/e66db80ab82a69542688cd57c9e0ec10e6616c87/recipes/zombie-trellys-mode"; - sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; - name = "recipe"; - }; - packageRequires = [ cl-lib emacs haskell-mode ]; - meta = { - homepage = "https://melpa.org/#/zombie-trellys-mode"; - license = lib.licenses.free; - }; - }) {}; - zone-nyan = callPackage ({ esxml - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zone-nyan"; - ename = "zone-nyan"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "wasamasa"; - repo = "zone-nyan"; - rev = "e36875d83ad3dce14f23864688959fa0d98ba410"; - sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/855ea20024b606314f8590129259747cac0bcc97/recipes/zone-nyan"; - sha256 = "1g7i5p26gb9gny64b84x6zqml7fly5q9aykmc6l6c1kfl6pqxs94"; - name = "recipe"; - }; - packageRequires = [ esxml ]; - meta = { - homepage = "https://melpa.org/#/zone-nyan"; - license = lib.licenses.free; - }; - }) {}; - zoom = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoom"; - ename = "zoom"; - version = "0.2.2"; - src = fetchFromGitHub { - owner = "cyrus-and"; - repo = "zoom"; - rev = "578295532fb1c4ad2a2e95894e65cce02f812b54"; - sha256 = "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/3fe094c99756ad29eda9bc51f31bb70c4ddc4131/recipes/zoom"; - sha256 = "09bk0nnfj72an2b3rravd6qp21gdgcm1m55qnf2r8rzbgqymq5ls"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zoom"; - license = lib.licenses.free; - }; - }) {}; - zoom-window = callPackage ({ emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoom-window"; - ename = "zoom-window"; - version = "0.5"; - src = fetchFromGitHub { - owner = "syohex"; - repo = "emacs-zoom-window"; - rev = "eefe36d26e04a9f89aad27671d1f06e9d4736ac6"; - sha256 = "08splg49ncgfsap3ivpc974wmg22ikshwv33l0i6advjjv9cskhm"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/8a55cc66cc0deb1c24023f638b8e920c9d975859/recipes/zoom-window"; - sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; - name = "recipe"; - }; - packageRequires = [ emacs ]; - meta = { - homepage = "https://melpa.org/#/zoom-window"; - license = lib.licenses.free; - }; - }) {}; - zop-to-char = callPackage ({ cl-lib ? null - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zop-to-char"; - ename = "zop-to-char"; - version = "1.1"; - src = fetchFromGitHub { - owner = "thierryvolpiatto"; - repo = "zop-to-char"; - rev = "816ea90337db0545a2f0a5079f4d7b3a2822af7d"; - sha256 = "14waf3g7b92k3qd5088w4pn0wcspxjfkbswlzf7nnkjliw1yh0kf"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b0a9277f1a5f1aef8886e739c73dea91d3f81dc5/recipes/zop-to-char"; - sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; - name = "recipe"; - }; - packageRequires = [ cl-lib ]; - meta = { - homepage = "https://melpa.org/#/zop-to-char"; - license = lib.licenses.free; - }; - }) {}; - zotelo = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zotelo"; - ename = "zotelo"; - version = "1.3"; - src = fetchFromGitHub { - owner = "vspinu"; - repo = "zotelo"; - rev = "56eaaa76f80bd15710e68af4a1e585394af987d3"; - sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zotelo"; - sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zotelo"; - license = lib.licenses.free; - }; - }) {}; - zotxt = callPackage ({ fetchFromGitLab - , fetchurl - , lib - , melpaBuild - , request-deferred }: - melpaBuild { - pname = "zotxt"; - ename = "zotxt"; - version = "0.1.34"; - src = fetchFromGitLab { - owner = "egh"; - repo = "zotxt-emacs"; - rev = "43c0c6d23b31126bac6b14bb85608180fd9c866f"; - sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/b633453e77a719f6b6b6564e66c1c1260db38aa6/recipes/zotxt"; - sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; - name = "recipe"; - }; - packageRequires = [ request-deferred ]; - meta = { - homepage = "https://melpa.org/#/zotxt"; - license = lib.licenses.free; - }; - }) {}; - zoutline = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zoutline"; - ename = "zoutline"; - version = "0.2.0"; - src = fetchFromGitHub { - owner = "abo-abo"; - repo = "zoutline"; - rev = "63756846f8540b6faf89d885438186e4fe1c7d8a"; - sha256 = "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/4a26341f491145938aee9b531cd861200bfa2f6d/recipes/zoutline"; - sha256 = "1yyww84b58ymbx0w1gkgd0csr0cwlghdmnxk0jbzwc45g9g42k1m"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zoutline"; - license = lib.licenses.free; - }; - }) {}; - zygospore = callPackage ({ fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zygospore"; - ename = "zygospore"; - version = "0.0.3"; - src = fetchFromGitHub { - owner = "LouisKottmann"; - repo = "zygospore.el"; - rev = "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8"; - sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7fabdb05de9b8ec18a3a566f99688b50443b6b44/recipes/zygospore"; - sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; - name = "recipe"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/zygospore"; - license = lib.licenses.free; - }; - }) {}; - zzz-to-char = callPackage ({ avy - , cl-lib ? null - , emacs - , fetchFromGitHub - , fetchurl - , lib - , melpaBuild }: - melpaBuild { - pname = "zzz-to-char"; - ename = "zzz-to-char"; - version = "0.1.3"; - src = fetchFromGitHub { - owner = "mrkkrp"; - repo = "zzz-to-char"; - rev = "e571da33a0dde629314847338eedec84b40e9c32"; - sha256 = "03i5bdq7d8la9kbvykgi7aa7v3c35nibgcd4pam99l47pm599ili"; - }; - recipe = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/7063cbc1f1501ce81552d7ef1d42d1309f547c42/recipes/zzz-to-char"; - sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; - name = "recipe"; - }; - packageRequires = [ avy cl-lib emacs ]; - meta = { - homepage = "https://melpa.org/#/zzz-to-char"; - license = lib.licenses.free; - }; - }) {}; - } \ No newline at end of file diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix index 49486df9a3f..8f52f2d3489 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-packages.nix @@ -4,22 +4,23 @@ To update the list of packages from MELPA, -1. Clone https://github.com/ttuegel/emacs2nix. -2. Clone https://github.com/milkypostman/melpa. -3. Run `./melpa-stable-packages.sh --melpa PATH_TO_MELPA_CLONE` from emacs2nix. -4. Copy the new `melpa-stable-generated.nix` file into Nixpkgs. -5. Check for evaluation errors: `nix-instantiate ./. -A emacsPackagesNg.melpaStablePackages`. -6. `git add pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix && git commit -m "melpa-stable-packages $(date -Idate)"` + +1. Run ./update-melpa +2. Check for evaluation errors: +env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPackagesNg.melpaStablePackages +env NIXPKGS_ALLOW_BROKEN=1 nix-instantiate --show-trace ../../../../ -A emacsPackagesNg.melpaPackages +3. `git commit -m "melpa-packages: $(date -Idate)" recipes-archive-melpa.json` */ -{ external }: +{ lib, external }: self: let - imported = import ./melpa-stable-generated.nix { inherit (self) callPackage; }; - + inherit (import ./libgenerated.nix lib self) melpaDerivation; + imported = lib.listToAttrs (map (melpaDerivation "stable") + (lib.importJSON ./recipes-archive-melpa.json)); super = imported; dontConfigure = pkg: pkg.override (args: { @@ -28,11 +29,11 @@ self: }); }); - markBroken = pkg: pkg.override (args: { + markBroken = pkg: if pkg != null then pkg.override (args: { melpaBuild = drv: args.melpaBuild (drv // { meta = (drv.meta or {}) // { broken = true; }; }); - }); + }) else null; overrides = { # Expects bash to be at /bin/bash @@ -205,6 +206,28 @@ self: # upstream issue: missing file header window-numbering = markBroken super.window-numbering; + + # Map legacy renames from emacs2nix since code generation was ported to emacs lisp + _0blayout = super."0blayout"; + _0xc = super."0xc"; + _2048-game = super."2048-game"; + _4clojure = super."4clojure"; + at = super."@"; + desktop-plus = super."desktop+"; + ghub-plus = super."ghub+"; + git-gutter-plus = super."git-gutter+"; + git-gutter-fringe-plus = super."git-gutter-fringe+"; + ido-completing-read-plus = super."ido-completing-read+"; + image-plus = super."image+"; + image-dired-plus = super."image-dired+"; + markdown-mode-plus = super."markdown-mode+"; + package-plus = super."package+"; + rect-plus = super."rect+"; + term-plus = super."term+"; + term-plus-key-intercept = super."term+key-intercept"; + term-plus-mux = super."term+mux"; + xml-plus = super."xml+"; + }; melpaStablePackages = super // overrides; diff --git a/pkgs/applications/editors/emacs-modes/recipes-archive-melpa.json b/pkgs/applications/editors/emacs-modes/recipes-archive-melpa.json new file mode 100644 index 00000000000..d0f1ce982ce --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/recipes-archive-melpa.json @@ -0,0 +1,96458 @@ +[ + { + "ename": "0blayout", + "commit": "6521ec44ae8b0ba2e0523517f0f3d5b94ddbe1be", + "sha256": "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92", + "fetcher": "github", + "repo": "etu/0blayout-mode", + "unstable": { + "version": [ + 20190703, + 527 + ], + "commit": "fd9a8f353dbd45b4628b5f84b8d8c2525ebf571d", + "sha256": "18jkq140s2hwgdxs5s13hprjmq2qnxnqhrmdiyrhvl176r3wbh37" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "b8bb44b5336965b5519b9a826a0f46f8ee31c471", + "sha256": "1apv5zd3zzni2llj9is7h2bzq1xxbx67kr7c07dfjd26n7l0zvfi" + } + }, + { + "ename": "0xc", + "commit": "3fbb2c86a50a8df9a3967787fc10f33beab2c933", + "sha256": "0lxcz1x1dymsh9idhkn7jn8vphr724d6sb88a4g55x2m1rlmzg3w", + "fetcher": "github", + "repo": "AdamNiederer/0xc", + "unstable": { + "version": [ + 20190219, + 117 + ], + "deps": [ + "s" + ], + "commit": "167e93ce863381a58988655927042514d984ad49", + "sha256": "0msx29il7c01njlc4pwxs3f3qcvyakgjcivxaa287jibf67yg0ph" + } + }, + { + "ename": "2048-game", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0", + "fetcher": "bitbucket", + "repo": "zck/2048.el", + "unstable": { + "version": [ + 20151026, + 1933 + ], + "commit": "ea6c3bce8ac1c17dae5ac711ae4e931c0495e455", + "sha256": "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l" + } + }, + { + "ename": "4clojure", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk", + "fetcher": "github", + "repo": "losingkeys/4clojure.el", + "unstable": { + "version": [ + 20131014, + 2207 + ], + "deps": [ + "json", + "request" + ], + "commit": "3cdfd356c24cd3518397d29ae833f56a4d20b4ca", + "sha256": "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq" + } + }, + { + "ename": "@", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0da0xqk8fhz8aij3zmpp4bz3plpvfq2riyy17i7ny4ralxb3g08z", + "fetcher": "github", + "repo": "skeeto/at-el", + "unstable": { + "version": [ + 20181225, + 1438 + ], + "commit": "0a6189f8be42dbbc5d9358cbd447d471236135a2", + "sha256": "11s46n3j6ij0ynxwl35wxbzg97pkmnhxh43l5vvaz9kizf6mhpbj" + } + }, + { + "ename": "a", + "commit": "a226f1d81cd1ae81b91c1102fbe40aac2eddcaa8", + "sha256": "1xqja47iw1c78kiv4854z47iblvvzrc1l35zjdhmhkh9hh10z886", + "fetcher": "github", + "repo": "plexus/a.el", + "unstable": { + "version": [ + 20180907, + 953 + ], + "commit": "18966975db7110d0aac726be95b593e2fc3d44ed", + "sha256": "0d8ffpc8r7xial9q0miyxab6mbh9rm6sckvw9g10cgp8f1rrk7h4" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "8583685c32069a73ccae0100e990e7b39c901737", + "sha256": "00v9w6qg3bkwdhypq0ssf0phdh0f4bcq59c20lngd6vhk0204dqi" + } + }, + { + "ename": "aa-edit-mode", + "commit": "20d00f782f2db87264c7fb1aac7455e44b8b24e7", + "sha256": "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn", + "fetcher": "github", + "repo": "zonuexe/aa-edit-mode", + "unstable": { + "version": [ + 20170119, + 320 + ], + "deps": [ + "navi2ch" + ], + "commit": "1dd801225b7ad3c23ad09698f5e77f0df7012a65", + "sha256": "17kxpyfprdyj96c4ivv8bxwyls69cgh2r3gwrgj6bwinbiszh9rr" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "navi2ch" + ], + "commit": "2e56f3b627f0f19fbfce4968180b4d736f7afb5d", + "sha256": "1rh9n97z1vi7w60qzam5vc025wwm346fgzym2zs1cm7ykyfh3mgd" + } + }, + { + "ename": "abc-mode", + "commit": "aaee9dc5de06747374f311d86a550d3cc15beed1", + "sha256": "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx", + "fetcher": "github", + "repo": "mkjunker/abc-mode", + "unstable": { + "version": [ + 20171020, + 1019 + ], + "commit": "15691b32431b50f9106cb9fa50ee7244957a8ac8", + "sha256": "089l4rmxrnm4fmrbgw98rjigy3hzkx4lkw9hv8gn36cv2fp61h71" + }, + "stable": { + "version": [ + 20140225, + 944 + ], + "commit": "6b5ab7402287dab5a091e94fec9982dc45d9d287", + "sha256": "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv" + } + }, + { + "ename": "abgaben", + "commit": "2b0aa60aa0edf33205e0fcb309be779ad8da08ec", + "sha256": "1xywghyp6aahzin1ygwzqfg9640dliycl4g02jz3gpix8hd3g8gy", + "fetcher": "gitlab", + "repo": "akoehn/abgaben", + "unstable": { + "version": [ + 20171119, + 646 + ], + "deps": [ + "f", + "pdf-tools", + "s" + ], + "commit": "20d14830f07d66e2a04bcad1498a4a6fbf4b4451", + "sha256": "0apcbfaa70kgrpjjsfbr0lg9lcfiijpx5bms4sbzc606vlnxxn0d" + } + }, + { + "ename": "abl-mode", + "commit": "70a52edb381daa9c4dcc9f7e511175b38fc141be", + "sha256": "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb", + "fetcher": "github", + "repo": "afroisalreadyinu/abl-mode", + "unstable": { + "version": [ + 20190403, + 904 + ], + "commit": "44b7d946bc3a693f5a931c4a62c0a67d42e8d4dc", + "sha256": "070c408bq5pliq0xbd1861l6db4sbfpnj3r6aknbqh2vb7l4yimb" + } + }, + { + "ename": "abs-mode", + "commit": "aabccc4061e7764069796e12ee9688b67651cf70", + "sha256": "148y99iaxcnjaacw017chwq0sq05ywgy5jx1lhp9ly7innrl9i1k", + "fetcher": "github", + "repo": "abstools/abs-mode", + "unstable": { + "version": [ + 20190404, + 2304 + ], + "deps": [ + "erlang", + "flymake", + "maude-mode" + ], + "commit": "31fb36f9206203062b8c618fef6ad484e44af226", + "sha256": "0h0zsjqhjm18ppmaqv2kn4q1mchc1igcz80zwz8523n2w2gk9bri" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "erlang", + "flymake", + "maude-mode" + ], + "commit": "a9a512992f681669dc59fe9ca86f12b9688b5454", + "sha256": "0v6d7cxnj4mil7c7y4m1csiznl6rmzxg9snwhhv6wdqfw112kn8j" + } + }, + { + "ename": "abyss-theme", + "commit": "f390e5153b6360a27abc74983f5fef11226634f3", + "sha256": "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c", + "fetcher": "github", + "repo": "mgrbyte/emacs-abyss-theme", + "unstable": { + "version": [ + 20170808, + 1345 + ], + "commit": "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14", + "sha256": "07z0djv7h3yrv4iw9n633j6dxzxb4nnzijsqkmz22ik6fbwxg5mh" + }, + "stable": { + "version": [ + 0, + 7 + ], + "commit": "18791c6e8d9cc2b4815c9f08627a2e94fc0eeb14", + "sha256": "07z0djv7h3yrv4iw9n633j6dxzxb4nnzijsqkmz22ik6fbwxg5mh" + } + }, + { + "ename": "ac-alchemist", + "commit": "ef9037aa41a8d9467838495bb235db32c19cc417", + "sha256": "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0", + "fetcher": "github", + "repo": "syohex/emacs-ac-alchemist", + "unstable": { + "version": [ + 20150908, + 656 + ], + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ], + "commit": "b1891c3d41aed83f61d78a609ea97be5cc2758d9", + "sha256": "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "alchemist", + "auto-complete", + "cl-lib" + ], + "commit": "31114f3e1e7cc1e101d0b81819d7876d8861df92", + "sha256": "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5" + } + }, + { + "ename": "ac-c-headers", + "commit": "d7736fb9ea3a59c36c0b8b824d83bb1bb0099d43", + "sha256": "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv", + "fetcher": "github", + "repo": "zk-phi/ac-c-headers", + "unstable": { + "version": [ + 20151021, + 834 + ], + "deps": [ + "auto-complete" + ], + "commit": "de13a1d35b311e6601556d8ef163de102057deea", + "sha256": "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y" + } + }, + { + "ename": "ac-capf", + "commit": "929da263f57b904c50f5f17b09d4c4b480999c97", + "sha256": "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm", + "fetcher": "github", + "repo": "syohex/emacs-ac-capf", + "unstable": { + "version": [ + 20151101, + 217 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "17571dba0a8f98111f2ab758e9bea285b263781b", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "17571dba0a8f98111f2ab758e9bea285b263781b", + "sha256": "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da" + } + }, + { + "ename": "ac-cider", + "commit": "e8adefaf2e284ef91baec3dbd3e10c868de69926", + "sha256": "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6", + "fetcher": "github", + "repo": "clojure-emacs/ac-cider", + "unstable": { + "version": [ + 20161006, + 719 + ], + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ], + "commit": "fa13e067dd9c8c76151c7d140a2803da1d109b84", + "sha256": "1pklmjldnm8bf34f5q8x983d1m72l3kf51ns9vh6z704mkhv658f" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "auto-complete", + "cider", + "cl-lib" + ], + "commit": "4be034e5f82421b0a836ec7ff45815c67caffcee", + "sha256": "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj" + } + }, + { + "ename": "ac-clang", + "commit": "ffe0485048b85825f5e8ba95917d8c9dc64fe5de", + "sha256": "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4", + "fetcher": "github", + "repo": "yaruopooner/ac-clang", + "unstable": { + "version": [ + 20180710, + 546 + ], + "deps": [ + "auto-complete", + "cl-lib", + "pos-tip", + "yasnippet" + ], + "commit": "3294b968eb1a8317049190940193f9da47c085ef", + "sha256": "160hda911vsc2zcs56560cpv7kj0966vjzwmc0md6fkz3wrj7w0n" + }, + "stable": { + "version": [ + 2, + 1, + 3 + ], + "deps": [ + "auto-complete", + "cl-lib", + "pos-tip", + "yasnippet" + ], + "commit": "3294b968eb1a8317049190940193f9da47c085ef", + "sha256": "160hda911vsc2zcs56560cpv7kj0966vjzwmc0md6fkz3wrj7w0n" + } + }, + { + "ename": "ac-dcd", + "commit": "64142a4b14531409f45f02a8053ed8948f48221d", + "sha256": "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r", + "fetcher": "github", + "repo": "atilaneves/ac-dcd", + "unstable": { + "version": [ + 20190425, + 907 + ], + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ], + "commit": "9d444523ffa92a763ea8f532b8001829a51a2557", + "sha256": "1fkpvr7mix9wvhd6pgbcj6mrmhrffvlh5sp8wp5m48j0qc3wx7mi" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "auto-complete", + "flycheck-dmd-dub" + ], + "commit": "4cb14b1e9fcfc4bf4a084765bc1eb10abfbbbd49", + "sha256": "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn" + } + }, + { + "ename": "ac-emacs-eclim", + "commit": "1e9d3075587fbd9ca188535fd945a7dc451c6d7e", + "sha256": "0bkh7x6zj5drdvm9ji4vwqdxv7limd9a1idy8lsg0lcca3rjq3s5", + "fetcher": "github", + "repo": "emacs-eclim/emacs-eclim", + "unstable": { + "version": [ + 20180911, + 1121 + ], + "deps": [ + "auto-complete", + "eclim" + ], + "commit": "23f5b294f833ce58516d7b9ae08a7792d70022a1", + "sha256": "17q972354nkkynfjmwih4vp7s5dzdvr3nf7ni3ci095lzb0zzf4g" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "auto-complete", + "eclim" + ], + "commit": "8203fbf8544e65324a948a67718f7a16ba2d52e6", + "sha256": "10bbbxhvlwm526g1wib1f87grnayirlg8jbsvmpzxr9nmdjgikz3" + } + }, + { + "ename": "ac-emmet", + "commit": "39861b4f0a458c8ccf02f7a3443c54b0e74daa11", + "sha256": "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x", + "fetcher": "github", + "repo": "yasuyk/ac-emmet", + "unstable": { + "version": [ + 20131015, + 1558 + ], + "deps": [ + "auto-complete", + "emmet-mode" + ], + "commit": "88f24876ee3b759978d4614a758280b5d512d543", + "sha256": "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g" + } + }, + { + "ename": "ac-emoji", + "commit": "15f591f9cba367b071046fef5ae01bbbd0475ce3", + "sha256": "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw", + "fetcher": "github", + "repo": "syohex/emacs-ac-emoji", + "unstable": { + "version": [ + 20150823, + 711 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "40a639764eb654f1b4bb705c817b66032a26ff2b", + "sha256": "1gk84bv6w9lg5wrygd7cfab3h46j84k1dwmhzr7jay6n02q6y499" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "53677f754929ead403ccde64b714ebb6b8fc808e", + "sha256": "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg" + } + }, + { + "ename": "ac-etags", + "commit": "fda9c7def8bc54af4ab17dc049dd94324c8f10fa", + "sha256": "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb", + "fetcher": "github", + "repo": "syohex/emacs-ac-etags", + "unstable": { + "version": [ + 20161001, + 1507 + ], + "deps": [ + "auto-complete" + ], + "commit": "7983e631c226fe0fa53af3b2d56bf4eca3d785ce", + "sha256": "1vvgcy5hybrip4jn4pj9r3fahr6rc70k28w5aw951h0x7g7laipr" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "auto-complete" + ], + "commit": "8cd188b2e4908285ba8178bbd18a555edd7282e8", + "sha256": "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2" + } + }, + { + "ename": "ac-geiser", + "commit": "586ef409e3ae758b459b625d4bf0108f0525a085", + "sha256": "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx", + "fetcher": "github", + "repo": "xiaohanyu/ac-geiser", + "unstable": { + "version": [ + 20130929, + 647 + ], + "deps": [ + "auto-complete", + "geiser" + ], + "commit": "502d18a8a0bd4b5fdd495a99299ba2a632c5cd9a", + "sha256": "0h2kakb4f5hgzf5l2kpqngalcmc4402lkg1pvs88c8z4rqp2vfvz" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "auto-complete", + "geiser" + ], + "commit": "0e2e36532336f27e3dc3b01fff55ad1a4329817d", + "sha256": "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn" + } + }, + { + "ename": "ac-haskell-process", + "commit": "98bd259b6bfd9b49a8ae421807a4ab3821f09608", + "sha256": "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw", + "fetcher": "github", + "repo": "purcell/ac-haskell-process", + "unstable": { + "version": [ + 20150423, + 1402 + ], + "deps": [ + "auto-complete", + "haskell-mode" + ], + "commit": "0362d4323511107ec70e7165cb612f3ab01b712f", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "auto-complete", + "haskell-mode" + ], + "commit": "0362d4323511107ec70e7165cb612f3ab01b712f", + "sha256": "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41" + } + }, + { + "ename": "ac-helm", + "commit": "50427d365c79aff84ac759d19ce177b4f7ed2751", + "sha256": "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq", + "fetcher": "github", + "repo": "yasuyk/ac-helm", + "unstable": { + "version": [ + 20160319, + 233 + ], + "deps": [ + "auto-complete", + "cl-lib", + "helm", + "popup" + ], + "commit": "baf2b1e04bcffa835084389c0fab415f26efbf32", + "sha256": "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "auto-complete", + "helm", + "popup" + ], + "commit": "f2110576b0eb35850a7f638c1a991a9fa0c8da3a", + "sha256": "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34" + } + }, + { + "ename": "ac-html", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1vidmvylwwvraf8k63dvxv47ism49n6pp0f38l5rl4iaznhkdr84", + "fetcher": "github", + "repo": "zhangkaiyulw/ac-html", + "unstable": { + "version": [ + 20151005, + 731 + ], + "deps": [ + "auto-complete", + "dash", + "f", + "s" + ], + "commit": "668154cba123c321d1b07c2dc8b26d14092253b8", + "sha256": "0lz1a8a4bqxiw20jh65r7cg7jnid3vz4h8b7dkfcrzwn0agx8frw" + }, + "stable": { + "version": [ + 0, + 31 + ], + "deps": [ + "auto-complete", + "web-completion-data" + ], + "commit": "415a78c3b84855b0c0411832d21a0fb63239b184", + "sha256": "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz" + } + }, + { + "ename": "ac-html-angular", + "commit": "0805ba6674d1298d730770e8ea46b9bbd68cd1d3", + "sha256": "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s", + "fetcher": "github", + "repo": "osv/ac-html-angular", + "unstable": { + "version": [ + 20151225, + 719 + ], + "deps": [ + "web-completion-data" + ], + "commit": "6bafe09afe03112ca4183d58461c1a6f6c2b3c67", + "sha256": "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny" + } + }, + { + "ename": "ac-html-bootstrap", + "commit": "6cf8aed547ca2390395dcf52d6c542b6944697af", + "sha256": "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1", + "fetcher": "github", + "repo": "osv/ac-html-bootstrap", + "unstable": { + "version": [ + 20160302, + 1701 + ], + "deps": [ + "web-completion-data" + ], + "commit": "481e6e441cd566554ce71cd8cb28c9e7ebb1c24b", + "sha256": "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq" + }, + "stable": { + "version": [ + 0, + 9, + 3 + ], + "deps": [ + "web-completion-data" + ], + "commit": "591e1e996c820da218ea1eee0a500c556769f128", + "sha256": "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a" + } + }, + { + "ename": "ac-html-csswatcher", + "commit": "fba8b9bf212e6fa389eae8394d0b3bbce9eb0f92", + "sha256": "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn", + "fetcher": "github", + "repo": "osv/ac-html-csswatcher", + "unstable": { + "version": [ + 20151208, + 2113 + ], + "deps": [ + "web-completion-data" + ], + "commit": "b0f3e7e1a3fe49e88b6eb6432377232fc715f221", + "sha256": "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr" + }, + "stable": { + "version": [ + 0, + 1, + 7 + ], + "deps": [ + "web-completion-data" + ], + "commit": "dadc3c595cf1708291096c03987f1981f3cabc6b", + "sha256": "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f" + } + }, + { + "ename": "ac-inf-ruby", + "commit": "1a72abe0fe1253149afb45b0d9e81b6846a926c0", + "sha256": "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr", + "fetcher": "github", + "repo": "purcell/ac-inf-ruby", + "unstable": { + "version": [ + 20131115, + 1150 + ], + "deps": [ + "auto-complete", + "inf-ruby" + ], + "commit": "ee53fc9c61950da9a96df3ff5ef186f9a9faf151", + "sha256": "13xgv1c4gr075gffq95njra7bw1fkb5yp3xdlh3qndzw4bpary1l" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "auto-complete", + "inf-ruby" + ], + "commit": "3e22b66d3d3e2712a0fe783b5cdd0583a0d4c318", + "sha256": "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm" + } + }, + { + "ename": "ac-ispell", + "commit": "b41acb7387ebef9af2906fa16298b64d6431bfb0", + "sha256": "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67", + "fetcher": "github", + "repo": "syohex/emacs-ac-ispell", + "unstable": { + "version": [ + 20151101, + 226 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "22bace7387e9012002a6a444922f75f9913077b0", + "sha256": "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "auto-complete", + "cl-lib" + ], + "commit": "a8c84f7f0b96dc091abc51b1698f24e9c994e6aa", + "sha256": "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l" + } + }, + { + "ename": "ac-js2", + "commit": "255588a330e4c9a03517885092d5678375aa7850", + "sha256": "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa", + "fetcher": "github", + "repo": "ScottyB/ac-js2", + "unstable": { + "version": [ + 20190101, + 933 + ], + "deps": [ + "js2-mode", + "skewer-mode" + ], + "commit": "2b56d09a16c1a0ce514cc1b85d64cb1be4502723", + "sha256": "11q4aaiqr4xnw5j0yqj35gc4a290az75qdyhadj09xr2j2jay35x" + } + }, + { + "ename": "ac-math", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl", + "fetcher": "github", + "repo": "vspinu/ac-math", + "unstable": { + "version": [ + 20141116, + 2127 + ], + "deps": [ + "auto-complete", + "math-symbol-lists" + ], + "commit": "c012a8f620a48cb18db7d78995035d65eae28f11", + "sha256": "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6" + } + }, + { + "ename": "ac-mozc", + "commit": "4b3f74039d397037e640cc371d24bdb60ac90bf1", + "sha256": "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f", + "fetcher": "github", + "repo": "igjit/ac-mozc", + "unstable": { + "version": [ + 20150227, + 1619 + ], + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ], + "commit": "4c6c8be4701010d9362184437c0f783e0335c631", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "auto-complete", + "cl-lib", + "mozc" + ], + "commit": "4c6c8be4701010d9362184437c0f783e0335c631", + "sha256": "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5" + } + }, + { + "ename": "ac-octave", + "commit": "634bd324148d6b74e1098362e06dc512456cde31", + "sha256": "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z", + "fetcher": "github", + "repo": "coldnew/ac-octave", + "unstable": { + "version": [ + 20180406, + 334 + ], + "deps": [ + "auto-complete" + ], + "commit": "fe0f931f2024f43de3c4fff4b1ace672413adeae", + "sha256": "1yj5fapbp79k88k1cxrmmf91fb0j6s4s7f2dhk2afcf7z83mqkwb" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "auto-complete" + ], + "commit": "6d09b94a86f43de84c60e9a699b5e1be61c0f138", + "sha256": "1kg5q0bw0ymynsn3j7bjavb6wr8b0bjwm6jfj254g80y1inn4bp4" + } + }, + { + "ename": "ac-php", + "commit": "ac283f1b65c3ba6278e9d3236e5a19734e42b123", + "sha256": "1wqwwgdln98snlq5msdx94b7985krvqfn264hxs1h94r85kgn1ba", + "fetcher": "github", + "repo": "xcwen/ac-php", + "unstable": { + "version": [ + 20190424, + 222 + ], + "deps": [ + "ac-php-core", + "auto-complete", + "yasnippet" + ], + "commit": "19b34b56ebc0eaabf9b1f4a8ac6819bde9855d2b", + "sha256": "02j0dwzbvi744ybdqwx8dan1ahl2yar7cw20n619vbmxn0r6pml2" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "deps": [ + "ac-php-core", + "auto-complete", + "yasnippet" + ], + "commit": "710aca14d2d5035f338b8e76ed042d3bc7524e95", + "sha256": "01hrsxq1m9rxmsn1xfmj8k8w19gf9xj4hqy0aqrqs0cx2f74rxrw" + } + }, + { + "ename": "ac-php-core", + "commit": "ac283f1b65c3ba6278e9d3236e5a19734e42b123", + "sha256": "0vk3jsxb7dgk5a6pap3bdqkqwpszil0rck1c3y0wyxrlj2y1jcvn", + "fetcher": "github", + "repo": "xcwen/ac-php", + "unstable": { + "version": [ + 20190601, + 622 + ], + "deps": [ + "dash", + "f", + "php-mode", + "popup", + "s", + "xcscope" + ], + "commit": "19b34b56ebc0eaabf9b1f4a8ac6819bde9855d2b", + "sha256": "02j0dwzbvi744ybdqwx8dan1ahl2yar7cw20n619vbmxn0r6pml2" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "deps": [ + "dash", + "f", + "php-mode", + "popup", + "s", + "xcscope" + ], + "commit": "710aca14d2d5035f338b8e76ed042d3bc7524e95", + "sha256": "01hrsxq1m9rxmsn1xfmj8k8w19gf9xj4hqy0aqrqs0cx2f74rxrw" + } + }, + { + "ename": "ac-racer", + "commit": "e4318daf4dbb6864ee41f41287c89010fb811641", + "sha256": "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp", + "fetcher": "github", + "repo": "syohex/emacs-ac-racer", + "unstable": { + "version": [ + 20170114, + 809 + ], + "deps": [ + "auto-complete", + "racer" + ], + "commit": "4408c2d652dec0432e20c05e001db8222d778c6b", + "sha256": "01154kqzh3pjy57vxhv27nm69p85a1fwl7r95c7pzmzxgxigfz1p" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "auto-complete", + "racer" + ], + "commit": "4408c2d652dec0432e20c05e001db8222d778c6b", + "sha256": "01154kqzh3pjy57vxhv27nm69p85a1fwl7r95c7pzmzxgxigfz1p" + } + }, + { + "ename": "ac-rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "1w9v32di9135mm598c4506gxf0xr5jyz8dyd9dhga5d60q7g9641", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20181117, + 1949 + ], + "deps": [ + "auto-complete", + "rtags" + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "deps": [ + "auto-complete", + "rtags" + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "ac-skk", + "commit": "1d9d8268d2db4b38ca18156964483b0b067f6f5d", + "sha256": "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z", + "fetcher": "github", + "repo": "myuhe/ac-skk.el", + "unstable": { + "version": [ + 20141230, + 119 + ], + "deps": [ + "auto-complete", + "cl-lib", + "ddskk", + "tinysegmenter" + ], + "commit": "d25a265930430d080329789fb253d786c01dfa24", + "sha256": "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm" + } + }, + { + "ename": "ac-slime", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg", + "fetcher": "github", + "repo": "purcell/ac-slime", + "unstable": { + "version": [ + 20171027, + 2100 + ], + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ], + "commit": "6c80cb602ddad46486288f94ad7546396c6e4b1a", + "sha256": "11w1z653klghi6inv9n92cigz8m3c67j3r18mdk39inc3izwplkj" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "auto-complete", + "cl-lib", + "slime" + ], + "commit": "df6c4e88b5ba2d15d47a651ecf7edc0986624112", + "sha256": "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88" + } + }, + { + "ename": "ac-sly", + "commit": "bb26741e841d4886c14f0a059a52805732f179b1", + "sha256": "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx", + "fetcher": "github", + "repo": "qoocku/ac-sly", + "unstable": { + "version": [ + 20170728, + 1027 + ], + "deps": [ + "auto-complete", + "cl-lib", + "sly" + ], + "commit": "bf69c687c4ecf1994349d20c182e9b567399912e", + "sha256": "09g6v2yp3wl566488zsb79lklqpai9dgz6xwv1y5h6zkghxvkhpy" + } + }, + { + "ename": "academic-phrases", + "commit": "fe4323043fb875c0252861800e61fdd0a51ed453", + "sha256": "18y6lff7xwg6hczwgavwp32848gnlmc30afra9x7m8wmdddps1bh", + "fetcher": "github", + "repo": "nashamri/academic-phrases", + "unstable": { + "version": [ + 20180723, + 1021 + ], + "deps": [ + "dash", + "ht", + "s" + ], + "commit": "25d9cf67feac6359cb213f061735e2679c84187f", + "sha256": "0m32jpg6n0azz2f4y57y92zfvzm54ankx5cm06gli2zw2v1218fw" + } + }, + { + "ename": "ace-flyspell", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1zgywb90cg64nllbbk0x9ipm6znyc5yh7vkajrrnw06r5vabyp9y", + "fetcher": "github", + "repo": "cute-jumper/ace-flyspell", + "unstable": { + "version": [ + 20170309, + 509 + ], + "deps": [ + "avy" + ], + "commit": "538d4f8508d305262ba0228dfe7c819fb65b53c9", + "sha256": "1yplf5klgjjzx3cb1ihqb9f9cwn898l0vhasc3cwiqz6ldyq2na8" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "avy" + ], + "commit": "044d38fb8eb390ef1f51cf92cfe5c4ffd103044c", + "sha256": "0yy7g2903v78a8pavhxi8c7vqbmifn2sjk84zhw5aygihp3d6vf0" + } + }, + { + "ename": "ace-isearch", + "commit": "344f0cf784a027cde196b7d766024fb415fa1968", + "sha256": "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm", + "fetcher": "github", + "repo": "tam17aki/ace-isearch", + "unstable": { + "version": [ + 20190630, + 1552 + ], + "commit": "e296077a5f74782a2d103b08551e0d673217393f", + "sha256": "05cd35rnglz5a1z03s7iqa4sbar1b35mwrx821y7pg7mxl5xbb14" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "ace-jump-mode", + "avy", + "helm-swoop" + ], + "commit": "7e041d058492c5c35ec70de0e7c5586043e7e5ec", + "sha256": "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9" + } + }, + { + "ename": "ace-jump-buffer", + "commit": "31100b5b899e942de7796bcbf6365625d1b62574", + "sha256": "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi", + "fetcher": "github", + "repo": "waymondo/ace-jump-buffer", + "unstable": { + "version": [ + 20171031, + 1550 + ], + "deps": [ + "avy", + "dash" + ], + "commit": "0d335064230caf3efdd5a732e8fbd67e3948ed6a", + "sha256": "04rlg8mlx3kggn04krvi3zgx263j1ysbgfccawaarzixas2r9gd9" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "avy", + "dash" + ], + "commit": "02797c22c10a817dbbdfbd8fddceeba6c4f0499a", + "sha256": "13wq92ia18q9vyhmvnz1grl1l18hxnaisb7hv13dhfc06alcsrw2" + } + }, + { + "ename": "ace-jump-helm-line", + "commit": "8925f3daa92ff39776b55642aa9ec0e49245c0c7", + "sha256": "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9", + "fetcher": "github", + "repo": "cute-jumper/ace-jump-helm-line", + "unstable": { + "version": [ + 20160918, + 1836 + ], + "deps": [ + "avy", + "helm" + ], + "commit": "1483055255df3f8ae349f7520f05b1e43ea3ed37", + "sha256": "191a2g1if1jliikbxkpwmvlp4v1sp541j71xrlymili8ygm0idq5" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "avy", + "helm" + ], + "commit": "8779050e4794279946892b6a156d0086554a9c9e", + "sha256": "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1" + } + }, + { + "ename": "ace-jump-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6", + "fetcher": "github", + "repo": "winterTTr/ace-jump-mode", + "unstable": { + "version": [ + 20140616, + 815 + ], + "commit": "8351e2df4fbbeb2a4003f2fb39f46d33803f3dac", + "sha256": "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "a62a6867811cd739dd98a5e00a2d2e17edfb5b71", + "sha256": "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb" + } + }, + { + "ename": "ace-jump-zap", + "commit": "3b435db3b79333a20aa27a72f33c431f0a019ba1", + "sha256": "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb", + "fetcher": "github", + "repo": "waymondo/ace-jump-zap", + "unstable": { + "version": [ + 20170717, + 1849 + ], + "deps": [ + "ace-jump-mode", + "dash" + ], + "commit": "52b5d4c6c73bd0fc833a0dcb4e803a5287d8cae8", + "sha256": "1iw90mk6hdrbskxgv67xj27qd26w5dlh4s6a6xqqsj8ld56nzbvr" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "ace-jump-mode", + "dash" + ], + "commit": "1a9bf779d8f9225ede9ec482b840942bb58111df", + "sha256": "0r875w4aq3p091hcrpkpqsivn1q9hmq2ppa1rvxzdaq0rhl9kfz4" + } + }, + { + "ename": "ace-link", + "commit": "68032f40c0ce4170a22db535be4bfa7099f61f85", + "sha256": "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5", + "fetcher": "github", + "repo": "abo-abo/ace-link", + "unstable": { + "version": [ + 20190716, + 920 + ], + "deps": [ + "avy" + ], + "commit": "9b6d02564650e963ce05d124f83ced17e0027d7f", + "sha256": "06jac3nlmnsbw9hiyqjxmf7igjs8xxcvdih6nf63lbnvm0qnazyn" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "avy" + ], + "commit": "7b9bc8d916b60a501c32b63ce81f315486ad44e9", + "sha256": "147dz79vg4ym5wg3d544bw2khdb2j3hr73rw4qfm64wf0q2dj0vk" + } + }, + { + "ename": "ace-mc", + "commit": "62e3a5f23ce219b16081cb0bba9fc4699e11fafa", + "sha256": "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8", + "fetcher": "github", + "repo": "mm--/ace-mc", + "unstable": { + "version": [ + 20190206, + 749 + ], + "deps": [ + "ace-jump-mode", + "dash", + "multiple-cursors" + ], + "commit": "6877880efd99e177e4e9116a364576def3da391b", + "sha256": "180licc7w5b6f42ifwvllbnmf3aq8cbr8jhkbk37lzick4sv10d2" + } + }, + { + "ename": "ace-pinyin", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1b3asvzm3k66lsdkmlsgmnf8xlyic8zv294j1iahzkwm6bzqj8wd", + "fetcher": "github", + "repo": "cute-jumper/ace-pinyin", + "unstable": { + "version": [ + 20190123, + 402 + ], + "deps": [ + "avy", + "pinyinlib" + ], + "commit": "4915b2413359d85002918e322dbc90c4984b4277", + "sha256": "1yv3445p6w10wj310ffla2ghh81fynwgmxpsfkwgbcsbcjx9hmsl" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "deps": [ + "ace-jump-mode", + "avy", + "pinyinlib" + ], + "commit": "c444d8d6861dafd06dd41e694dc9db32652e3b7c", + "sha256": "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn" + } + }, + { + "ename": "ace-popup-menu", + "commit": "53742e2242101c4b3b3901f5c74e24facf62c7d6", + "sha256": "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s", + "fetcher": "github", + "repo": "mrkkrp/ace-popup-menu", + "unstable": { + "version": [ + 20190713, + 1337 + ], + "deps": [ + "avy-menu" + ], + "commit": "708e160747870657ea46815e3913f2c4805737e1", + "sha256": "186464acrg1k80s4mnmi2dj9fjn03a6knb9hzm85prk65wigy2cs" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "avy-menu" + ], + "commit": "e7cc8bace9dda5c9fbe545c6fbd41c12679c3d7d", + "sha256": "1khqh5b9c7ass3q2gc04ayc8idanabkyfpaqvfnag063x16fv40c" + } + }, + { + "ename": "ace-window", + "commit": "42fe131d3c2ea498e4df30ba539a6b91c00f5b07", + "sha256": "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa", + "fetcher": "github", + "repo": "abo-abo/ace-window", + "unstable": { + "version": [ + 20190708, + 933 + ], + "deps": [ + "avy" + ], + "commit": "a5344925e399e1f015721cda6cf5db03c90ab87a", + "sha256": "18jm8gfgnf6ja9aarws5650lw2zfi3wdwc5j8r5ijn5fcqhfy7rc" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "avy" + ], + "commit": "eef897e590c4ce63c28fd29ebff3c97aec8a69ae", + "sha256": "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6" + } + }, + { + "ename": "achievements", + "commit": "83ec19a4ebac6b2d0fd84939b393848f82620978", + "sha256": "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr", + "fetcher": "bitbucket", + "repo": "gvol/emacs-achievements", + "unstable": { + "version": [ + 20150530, + 1826 + ], + "deps": [ + "keyfreq" + ], + "commit": "18a422131c12aff723dde17bae08989efd93232e", + "sha256": "0nk1zhqx0lvckjc98b36125148zgx1l2axln8gvkdwlhrd2cc6vj" + } + }, + { + "ename": "ack-menu", + "commit": "8ff331ed45e5b7697e4862e723408602ecc98bc7", + "sha256": "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9", + "fetcher": "github", + "repo": "chumpage/ack-menu", + "unstable": { + "version": [ + 20150504, + 2022 + ], + "deps": [ + "mag-menu" + ], + "commit": "f77be93a4697926ecf3195a355eb69580f695f4d", + "sha256": "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm" + } + }, + { + "ename": "actionscript-mode", + "commit": "2c11e74f2156f109b713380cebf83022d7159d4a", + "sha256": "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq", + "fetcher": "github", + "repo": "austinhaas/actionscript-mode", + "unstable": { + "version": [ + 20180527, + 1701 + ], + "commit": "65abd58e198458a8e46748c5962c41d80d60c4ea", + "sha256": "0cb8kkhh43wg63abjx6d4x55f0l3r6ziqcaz8rz1zr12jffnac8z" + }, + "stable": { + "version": [ + 7, + 2, + 2 + ], + "commit": "fddd7220342d29e7eca734f6b798b7a2849717a5", + "sha256": "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3" + } + }, + { + "ename": "activity-watch-mode", + "commit": "9780c413da8001651191fb8f9708fe9691d714cf", + "sha256": "0k0ai6658gb43c4ylrq66zqzrfh6ksvkf0kxj2qx8a5a1aw9bd4d", + "fetcher": "github", + "repo": "pauldub/activity-watch-mode", + "unstable": { + "version": [ + 20190423, + 1529 + ], + "deps": [ + "cl", + "json", + "projectile", + "request" + ], + "commit": "c2ad321952524d88dd34842a6989b6e2d8acb646", + "sha256": "1fan25w5zb33i8mbd06iwz8vjac0alcv1r73h9hyzdkn8ivl6k3s" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "projectile", + "request" + ], + "commit": "27a0841b32dfd2b691a1dcf3a4a50d74660676b1", + "sha256": "1hfmll3g33529pshzvh2gxqr0h53p1v68wq0zlq2h2wfml89bzr9" + } + }, + { + "ename": "adafruit-wisdom", + "commit": "18483af52c26f719fbfde626db84a67750bf4754", + "sha256": "0ckh420cirspwg2yd5q9y1az03j2l1jzd67g8dpvqjkgdp485gad", + "fetcher": "github", + "repo": "gonewest818/adafruit-wisdom.el", + "unstable": { + "version": [ + 20180225, + 52 + ], + "commit": "aafc01726f1b3160321d40160298a0e1b054b382", + "sha256": "18p55zghycsx88dn0iw610fklkhi5chzycrpjb4xzs5x1l5l2v08" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "2b353f9029f359eb4eb4f0364bd2fbbedf081e42", + "sha256": "0zyqnwmrj7yigk1z9baqxmzxnwhpxfjz9r1gl090harl69hdp67d" + } + }, + { + "ename": "add-hooks", + "commit": "901f846aef46d512dc0a1770bab7f07c0ae330cd", + "sha256": "09a5b3prznibkb5igfn8x3vsjrlkh3534zycs8g25g4li87mcb6p", + "fetcher": "github", + "repo": "nickmccurdy/add-hooks", + "unstable": { + "version": [ + 20171217, + 123 + ], + "commit": "1845137703461fc44bd77cf24014ba58f19c369d", + "sha256": "02s9mv26ycypn4qfshrh17v1hsys2q9vffxj3g4lgq0lykplvkkm" + }, + "stable": { + "version": [ + 3, + 1, + 1 + ], + "commit": "a1043b7cdb1ea98055a2c99f8d37584a553ca362", + "sha256": "1jv9fpcsm572zg0j1mbpbfkqgdlqapy89xhhj19pswkhjns1y2wl" + } + }, + { + "ename": "add-node-modules-path", + "commit": "63e99d8fc0678d7b1831cae8940e9e6547780861", + "sha256": "0gbl875fgqr5np6r4cs8njs6fil1qmy8a5wir88x78ybdwwxsmbl", + "fetcher": "github", + "repo": "codesuki/add-node-modules-path", + "unstable": { + "version": [ + 20180710, + 2342 + ], + "commit": "f31e69ccb681f882aebb806ce6e9478e3ac39708", + "sha256": "0p106bqmvdr8by5iv02bshm339qbrjcch2d15mrm4h3nav03v306" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "commit": "6f7801b2c41e3711406b7e1654257ad5557f5bb3", + "sha256": "1pfgy1k7vp34k4zb9835y3x4jmf81na60vsf80wlgvfafwk170z6" + } + }, + { + "ename": "addressbook-bookmark", + "commit": "a497aec6e27efa627068542cae5a16c01c3c6d3c", + "sha256": "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r", + "fetcher": "github", + "repo": "thierryvolpiatto/addressbook-bookmark", + "unstable": { + "version": [ + 20190612, + 1638 + ], + "commit": "d8e502fc2f3d3ab1508ce9e50ebf8a9addc6e5b3", + "sha256": "1bgx4vn7q3nqfawip2m4a8wdm91vjnz1nv8957c748707x7rlkrr" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "ad3c73369b804a48803fdfdf2ab613e6220260de", + "sha256": "012kfqkmpagn8jrp09acpx631qmjim7b33j0pahv1fcqhin89pn6" + } + }, + { + "ename": "adoc-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0jd3zr4zpb4qqn504azl0y02cryv7n9wphv64b0fbpipr7w5hm2c", + "fetcher": "github", + "repo": "sensorflo/adoc-mode", + "unstable": { + "version": [ + 20160314, + 2130 + ], + "deps": [ + "markup-faces" + ], + "commit": "745884359a1b8826ede2c4cfd2f0b5478953ac40", + "sha256": "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8" + }, + "stable": { + "version": [ + 0, + 6, + 6 + ], + "deps": [ + "markup-faces" + ], + "commit": "995785538489e573ad208f73c4e833ba60c5cfdb", + "sha256": "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm" + } + }, + { + "ename": "aes", + "commit": "33ca3106852f82624b36c7e3f03f5c0c620f304f", + "sha256": "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v", + "fetcher": "github", + "repo": "Sauermann/emacs-aes", + "unstable": { + "version": [ + 20171029, + 623 + ], + "commit": "b7d5da89c3443292e4f0b1c9d254d459933cf5af", + "sha256": "0nz1lf77qr3vm90rm02d4inw8glav722rxsiqds76m4xsjrq02m7" + }, + "stable": { + "version": [ + 0, + 9 + ], + "commit": "b7d5da89c3443292e4f0b1c9d254d459933cf5af", + "sha256": "0nz1lf77qr3vm90rm02d4inw8glav722rxsiqds76m4xsjrq02m7" + } + }, + { + "ename": "afternoon-theme", + "commit": "583256b7fa48501c8bfad305d76d2e16b6441539", + "sha256": "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj", + "fetcher": "github", + "repo": "osener/emacs-afternoon-theme", + "unstable": { + "version": [ + 20140104, + 1859 + ], + "commit": "89b1d778a1f8b385775c122f2bd1c62f0fbf931a", + "sha256": "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb" + } + }, + { + "ename": "ag", + "commit": "67f410ac3a58a038e194bcf174bc0a8ceceafb9a", + "sha256": "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g", + "fetcher": "github", + "repo": "Wilfred/ag.el", + "unstable": { + "version": [ + 20190726, + 9 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "bd81d68466e44301505629454dfc689b6c17d94b", + "sha256": "1p918y24vcn2pdliaymd210xp9fvhd4a1srqbv2lfiqrh59yjidx" + }, + "stable": { + "version": [ + 0, + 47 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "f2cfea210b165564e8d44f4c980b2fedac2462c1", + "sha256": "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r" + } + }, + { + "ename": "aggressive-fill-paragraph", + "commit": "982f5936f2d83222263df2886ca0b629076366bb", + "sha256": "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja", + "fetcher": "github", + "repo": "davidshepherd7/aggressive-fill-paragraph-mode", + "unstable": { + "version": [ + 20180910, + 816 + ], + "deps": [ + "dash" + ], + "commit": "2d65d925318006e2f6fa261ad192fbc2d212877b", + "sha256": "0x4630lz9s59hidpf4pqc3697fgd09ac3zjax0xq3kk1993hrpa2" + } + }, + { + "ename": "aggressive-indent", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2", + "fetcher": "github", + "repo": "Malabarba/aggressive-indent-mode", + "unstable": { + "version": [ + 20190218, + 2331 + ], + "deps": [ + "cl-lib" + ], + "commit": "3803f24020ef0a656dc5345713c4964073aec9a8", + "sha256": "0dbg4lmzq0r7pvqx0wqxdcnmqz76nk9sdbwg276cmflqj9m0q7z1" + }, + "stable": { + "version": [ + 1, + 9, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "d6778ae89cd2d40949aa076a43e327f7acff59c3", + "sha256": "0xya19w1bwpqrrqvmms0lfhqb168iv7j6kvnn49zbynnf9dhgr9w" + } + }, + { + "ename": "agtags", + "commit": "eb6677262303a0cad2d844db77693c00d9bc575a", + "sha256": "07kpdbchplkbspid8gnjsprbdwf244nr2q596pw6jl17bysbbbk7", + "fetcher": "github", + "repo": "vietor/agtags", + "unstable": { + "version": [ + 20190709, + 950 + ], + "commit": "f81b70412216277f4a3a78a9ad9042279d624e6f", + "sha256": "0481zjrmg834d2ik0vpdan9l083q17ln13rcg4hnbhl1dmzz960p" + } + }, + { + "ename": "ahg", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4", + "fetcher": "bitbucket", + "repo": "agriggio/ahg", + "unstable": { + "version": [ + 20190708, + 1358 + ], + "commit": "f5ffd8f592ce9038f1dd30594124ad83e2976fdf", + "sha256": "06k7hyvizhg8xrlckxcgsd5lmlqk2skhah4z914n21759yhzvf61" + } + }, + { + "ename": "ahk-mode", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0jx5vhlfw5r6l4125bjjbf7dl1589ac6j419swx26k3p8p58d93r", + "fetcher": "github", + "repo": "ralesi/ahk-mode", + "unstable": { + "version": [ + 20190323, + 623 + ], + "commit": "66e02a3b44d672787b1f13a30008801a9efca65b", + "sha256": "15x1hwar0i89y2vbjrfp7d0b2fj48zqribfm4323k1fc18hbzrb7" + }, + "stable": { + "version": [ + 1, + 5, + 6 + ], + "commit": "bf3205efe7b7a40f3c8978f68f14ea3a939cffa8", + "sha256": "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn" + } + }, + { + "ename": "ahungry-theme", + "commit": "520295978fd7de3f4266dd69cc30d0b4fdf09db0", + "sha256": "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy", + "fetcher": "github", + "repo": "ahungry/color-theme-ahungry", + "unstable": { + "version": [ + 20180131, + 328 + ], + "commit": "a038d91ec593d1f1b19ca66a0576d59bbc24c523", + "sha256": "0f86xp7l8bv4z5dgf3pamjgqyiq3kfx9gbi9wcw0m6lbza8db15a" + }, + "stable": { + "version": [ + 1, + 10, + 0 + ], + "commit": "45bf75f17752c8e8dd4c8a4531c0aa419cdccb84", + "sha256": "03xypgq6vy7819r42g23kgn7p775bc0v9blzhi0zp5c61p4cw8v3" + } + }, + { + "ename": "aio", + "commit": "95744cc13e7ac8d9acd794004d951f62e5880fa4", + "sha256": "0sd8g2w4n9r2ndmp353v89xvky8043vmd92v2ggbl45chhpjl5zw", + "fetcher": "github", + "repo": "skeeto/emacs-aio", + "unstable": { + "version": [ + 20190601, + 753 + ], + "commit": "0e8a18f1bbb5f7be0f88d8e02ef13494736d63bc", + "sha256": "1aikvka4s97p5s26vclrnamgj8agx1j8ls6q3x7mxf8mhpv4ghqz" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "077722896e649e7a33dcafbc4585686a29423979", + "sha256": "1y7j10j74r3fy0rcb8g3cm9nlls34qb0pz9xkia7psp77syrlz54" + } + }, + { + "ename": "airline-themes", + "commit": "addeb923176132a52807308fa5e71d41c9511802", + "sha256": "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih", + "fetcher": "github", + "repo": "AnthonyDiGirolamo/airline-themes", + "unstable": { + "version": [ + 20180411, + 406 + ], + "deps": [ + "powerline" + ], + "commit": "8b528fbae0e557461315bed82883275d58df41f2", + "sha256": "1xydgf9w0i2anpmjhy8m0zv1hql4gb37i11xfn6xzwna572z1ml9" + }, + "stable": { + "version": [ + 1, + 7 + ], + "deps": [ + "powerline" + ], + "commit": "bd9624a94618f4144762032a93549f53ffc1e7b3", + "sha256": "1rlszg7z5k8c6fmjk4sjgrc9xgcjc1jah6c7kdl9kypha7y8s4bq" + } + }, + { + "ename": "airplay", + "commit": "b7f9d8229e4c91f4e3e8925b07e59d2a81cc745e", + "sha256": "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f", + "fetcher": "github", + "repo": "gongo/airplay-el", + "unstable": { + "version": [ + 20130212, + 1226 + ], + "deps": [ + "deferred", + "request", + "simple-httpd" + ], + "commit": "bd690aafcae3a887946e1bba8327597932d964ad", + "sha256": "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7" + } + }, + { + "ename": "alan-mode", + "commit": "6e52314db81dad3517ab400099b032260c3e3e6f", + "sha256": "1528rh26kr9zj43djbrfb7vmq78spfay3k3ps5apc580ipx1a4hg", + "fetcher": "github", + "repo": "M-industries/AlanForEmacs", + "unstable": { + "version": [ + 20190407, + 555 + ], + "deps": [ + "flycheck", + "s" + ], + "commit": "a5a705b64230bb14ad1d19bcc0613e3261e8cbe5", + "sha256": "1jhsrb26fpm9yykp974rx77ika76zq3gq7pcjgixw4d4ga737d95" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "0089e7c874c6d35e55be6ecd479ada2b97688a1f", + "sha256": "0mw9ja0f2jsj0vqk1zqwpzxm9j2yfahiibd8xkhx0wan0dggx592" + } + }, + { + "ename": "alarm-clock", + "commit": "440fe05fa0d10d54e9c52e2e54e71a1321325376", + "sha256": "1cgrj6dzpx0q15qzr9d342wg8w92c2r4zmk7rif2h87qxr66fbrg", + "fetcher": "github", + "repo": "wlemuel/alarm-clock", + "unstable": { + "version": [ + 20190212, + 507 + ], + "deps": [ + "f" + ], + "commit": "5fb19ed061d6ee92ac0df1f1ec766c155d50867d", + "sha256": "0w43s1rh7j2qnm32db6pzqr04z7jm2lfbdz0lzrx4j61hnwmsx9g" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "f" + ], + "commit": "2621d3a492d7f4e10a34d9d1d4af015df55a2b1b", + "sha256": "1l1q9hkip9yikvppxscf6vy6wls16ryhgyp1x8640v81xh1jy8jb" + } + }, + { + "ename": "alchemist", + "commit": "6616dc61d17c5bd89bc4d226baab24a1f8e49b3e", + "sha256": "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369", + "fetcher": "github", + "repo": "tonini/alchemist.el", + "unstable": { + "version": [ + 20180312, + 1304 + ], + "deps": [ + "company", + "dash", + "elixir-mode", + "pkg-info", + "s" + ], + "commit": "6f99367511ae209f8fe2c990779764bbb4ccb6ed", + "sha256": "12f95rwxs11sqf1w9pnf6cxc2lh2jz4nqkq33p8b5yamnl8cq9kg" + }, + "stable": { + "version": [ + 1, + 8, + 2 + ], + "deps": [ + "company", + "dash", + "elixir-mode", + "pkg-info" + ], + "commit": "34caeed1bd231c7dfa8d2b9aa5c5de2b2a059601", + "sha256": "1cci0sq568ghx6x7my96m0iiwvqz2f4dh6k3gn3mmfyvi7bmrpww" + } + }, + { + "ename": "alda-mode", + "commit": "848cb17d871287c401496e4483e400b44696e89d", + "sha256": "0qvaxh4392rpxikylcnn31z13wabaydj5aa4jyn499ggqdz7liw9", + "fetcher": "gitlab", + "repo": "jgkamat/alda-mode", + "unstable": { + "version": [ + 20180608, + 605 + ], + "commit": "1692b9003d2c3de403251ec452c6ce43ec819c84", + "sha256": "0kz0b2c1np088wbmnlvznizsv8nwiidgs67cn4dz46k66g9yg3g5" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "97c20b1fd9ad3f138e1100e3a837d05108c4c564", + "sha256": "1wsvs756cbwbxlaxij352kman7196m39684m6sqnfb685cfrwzdj" + } + }, + { + "ename": "alect-themes", + "commit": "84c25a290ae4bcc4674434c83c66ae128e4c4282", + "sha256": "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8", + "fetcher": "github", + "repo": "alezost/alect-themes", + "unstable": { + "version": [ + 20190506, + 1440 + ], + "commit": "da7305075d292cc1909bf26dc5634bc3cc8d2603", + "sha256": "06nsfmydlcdqi4fp3nn6yz4xys38f3q196pf3bmmdqgg7pbcm259" + }, + "stable": { + "version": [ + 0, + 9 + ], + "commit": "a24065dc780738e914140d617bfe119c889d9c78", + "sha256": "0nffxpdm0sa7bynwi0rmlwpc4qmvbda5ankhzz7fmk4ap9fkjxv9" + } + }, + { + "ename": "alert", + "commit": "113953825ac4ff98d90a5375eb48d8b7bfa224e7", + "sha256": "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118", + "fetcher": "github", + "repo": "jwiegley/alert", + "unstable": { + "version": [ + 20190607, + 1635 + ], + "deps": [ + "cl-lib", + "gntp", + "log4e" + ], + "commit": "ee1326aa8f1a0146ea10dc6f91d0a72584fa8b18", + "sha256": "1h7b606wcmasqxcfbgxfq1m06zns9yi1vi3smp1qgj5rpkrlhxz0" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib", + "gntp", + "log4e" + ], + "commit": "9f329be87820474925f29b52a1131084c8ea95b9", + "sha256": "0lc0p5cl4hfrzw1z2ghb11k1lvljn5m08jw5fmgwgxv667kwh49r" + } + }, + { + "ename": "alert-termux", + "commit": "d43e98a7142cf0edc89fa9e2f2817787c073667f", + "sha256": "19dfxbpp1kn1ara0fj9xr0ishpk1yiykg2al8g43rcy615vkpk8j", + "fetcher": "github", + "repo": "gergelypolonkai/alert-termux", + "unstable": { + "version": [ + 20181119, + 951 + ], + "commit": "47c414285c2f5971f3be52aaf0a4066ea6989238", + "sha256": "1gxw730b865zlaz0fdh95y7jhfwjpc3j2pkw0s3zz2xah9y0751b" + } + }, + { + "ename": "align-cljlet", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih", + "fetcher": "github", + "repo": "gstamp/align-cljlet", + "unstable": { + "version": [ + 20160112, + 2101 + ], + "deps": [ + "clojure-mode" + ], + "commit": "602d72a7ad52788a0265e3c6da519464a98166b8", + "sha256": "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1" + } + }, + { + "ename": "all-ext", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql", + "fetcher": "github", + "repo": "rubikitch/all-ext", + "unstable": { + "version": [ + 20170115, + 205 + ], + "deps": [ + "all" + ], + "commit": "9f4ef84a147cf4e0af6ef45826d6cb3558db6b88", + "sha256": "0gdrsi9n9i1ibijkgk5kyjdjdmnsccfbpifpv679371glap9f68b" + } + }, + { + "ename": "all-the-icons", + "commit": "604c01aa15927bd122260529ff0f4bb6a8168b7e", + "sha256": "00ba4gkfvg38l4s0gsb4asvv1hfw9yjl2786imybzy7bkg9f9x3q", + "fetcher": "github", + "repo": "domtronn/all-the-icons.el", + "unstable": { + "version": [ + 20190320, + 1809 + ], + "deps": [ + "memoize" + ], + "commit": "f996fafa5b2ea072d0ad1df9cd98acc75820f530", + "sha256": "0yc07xppgv78l56v7qwqp4sf3p44znkv5l0vlvwg8x1dciksxgqw" + }, + "stable": { + "version": [ + 3, + 2, + 0 + ], + "deps": [ + "memoize" + ], + "commit": "52d1f2d36468146c93aaf11399f581401a233306", + "sha256": "1sdl33117lccznj38021lwcdnpi9nxmym295q6y460y4dm4lx0jn" + } + }, + { + "ename": "all-the-icons-dired", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1qj639z24ln29hv6c51g1vsa2jsy4qrlhf8c7d5w9bxcrcn2fnr9", + "fetcher": "github", + "repo": "jtbm37/all-the-icons-dired", + "unstable": { + "version": [ + 20170418, + 2131 + ], + "deps": [ + "all-the-icons" + ], + "commit": "980b7747d6c4a7992a1ec56afad908956db0a519", + "sha256": "1pvbgyxfj4j205nj1r02045f1y4wgavdsk7f45hxkkhms1rj8jyy" + } + }, + { + "ename": "all-the-icons-gnus", + "commit": "f8ed74d39d165343c81c2a21aa47e3d3895d8119", + "sha256": "0vdqhpa49p8vzbad426gl0dvniapyk73kbscvjv7mdl4bwhcr309", + "fetcher": "github", + "repo": "nlamirault/all-the-icons-gnus", + "unstable": { + "version": [ + 20180511, + 654 + ], + "deps": [ + "all-the-icons", + "dash" + ], + "commit": "27f78996da0725943bcfb2d18038e6f7bddfa9c7", + "sha256": "0yi3nbhx7cdxq2192kh5ra2n0a3qg20p342prz3a0bm3w7q2ym11" + } + }, + { + "ename": "all-the-icons-ivy", + "commit": "9496e6bb6f03f35444fb204860bc50e5e1b36214", + "sha256": "1xv67gxd2sqj6zld4i3qcid0x5qsbd7baz55m93y1ivdqi7x7gr2", + "fetcher": "github", + "repo": "asok/all-the-icons-ivy", + "unstable": { + "version": [ + 20190508, + 1803 + ], + "deps": [ + "all-the-icons", + "ivy" + ], + "commit": "babea626db20773de4c408acb2788e2b9c8277e3", + "sha256": "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "all-the-icons", + "ivy" + ], + "commit": "b768b83716100701a5cda9c071da2bcac34bd6a4", + "sha256": "03fssygwia1gv35y6mzifnkg5cb4klaq240jfqmyfji9jq95jzrd" + } + }, + { + "ename": "almost-mono-themes", + "commit": "71ca87a0dd28f911dd988e1c208896b1ec5bfcc7", + "sha256": "1lv7c63lii8463mmsmxnldkwark2c6n46j9zvf990dhacwl4q1mg", + "fetcher": "github", + "repo": "cryon/almost-mono-themes", + "unstable": { + "version": [ + 20190527, + 654 + ], + "commit": "c3a85c1a665530a5d830665969725cdba8eceb75", + "sha256": "034k32xkr5ma415hlkbl35z0jxc4sa1inf87hg3y6lrlfl83fyjh" + } + }, + { + "ename": "alt-codes", + "commit": "693e11e8a99697ff8da1fe7cd9209af4e415fecb", + "sha256": "0kh6fz38bzvqh78b17qa6riwnz6xvkw5w8rrlj413j4ypm464zxq", + "fetcher": "github", + "repo": "elpa-host/alt-codes", + "unstable": { + "version": [ + 20190701, + 1246 + ], + "commit": "7dcd9cdcc41cfb991801ea1e2f5b3c925a5309ee", + "sha256": "19xg4ng3p49zvn1y7vagrfiiwvc2fynwibr6cmj7qam1y64lw90c" + } + }, + { + "ename": "amd-mode", + "commit": "e4d6e9935e4935c9de769c7bf1c1b6dd256e10da", + "sha256": "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06", + "fetcher": "github", + "repo": "NicolasPetton/amd-mode.el", + "unstable": { + "version": [ + 20180111, + 1402 + ], + "deps": [ + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s", + "seq" + ], + "commit": "01fd19e0d635ccaf8e812364d8720733f2e84126", + "sha256": "040g07k2hcwqspansjqfpng0lxzkmip26ipz26q6mvkpwm2wilv4" + }, + "stable": { + "version": [ + 2, + 8 + ], + "deps": [ + "f", + "js2-mode", + "js2-refactor", + "makey", + "projectile", + "s", + "seq" + ], + "commit": "977b53e28b3141408fff4814be8b67ee23650cac", + "sha256": "0m80bwar80qsga735cqrn6rbvfz4w9a036zh8inhsigylv3vwqjv" + } + }, + { + "ename": "ameba", + "commit": "043b5acb0552272c523d642fd9f9dca438087068", + "sha256": "1c2bmv04g30108qhcr0a67s1acmwzaz39dbvb03b7llhgmn5s92y", + "fetcher": "github", + "repo": "crystal-ameba/ameba.el", + "unstable": { + "version": [ + 20190720, + 1845 + ], + "commit": "8383f07d760a31a0737be9b7bdaff2f1cff67bfd", + "sha256": "066ccpaszidjvwy18bvkrf37ws60363cnbvcl1sfd7k6nynbdar6" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "ca5faaa0d5115dc2c301e06e062e653a7b9cb927", + "sha256": "07207h1643amlairnmpf8lnnkgf69kc04z3ri9k6fm4gmh6c9dy0" + } + }, + { + "ename": "ammonite-term-repl", + "commit": "cf0ece0efb1fcf0ea7364df0d35fca69862f5e9a", + "sha256": "004cvhyh4afgpb31m1q31g98x8c9m6lmsb5fzc4a1r5pb4p3iimp", + "fetcher": "github", + "repo": "zwild/ammonite-term-repl", + "unstable": { + "version": [ + 20190618, + 1517 + ], + "deps": [ + "s", + "scala-mode" + ], + "commit": "9b3fe36654f03f6ab461bbec413f9ea014829a49", + "sha256": "09n9b1zkhaq0ikbgklnlxpgyyjf8hs9f7dcpgx5jjwi4pj0wzvi9" + } + }, + { + "ename": "ample-regexps", + "commit": "6a5c72dfb52d55b2b22c91f115b32fff14f2f61e", + "sha256": "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2", + "fetcher": "github", + "repo": "immerrr/ample-regexps.el", + "unstable": { + "version": [ + 20151023, + 1000 + ], + "commit": "cbe91e148cac1ee8e223874dc956ed4cf607f046", + "sha256": "1mm4icrwx4mscp7kbbmlc34995r164dhrfczn5ybkyxjzzf76jn1" + } + }, + { + "ename": "ample-theme", + "commit": "d448c03202137a461ed814ce87acfac23faf676e", + "sha256": "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry", + "fetcher": "github", + "repo": "jordonbiondo/ample-theme", + "unstable": { + "version": [ + 20180207, + 1745 + ], + "commit": "536966adf882446165a1f756830028faa792c7a9", + "sha256": "07bpv8dag40qjnm5000pgzpazj4whfxf93x2vprz26sg3mjfx0nf" + } + }, + { + "ename": "ample-zen-theme", + "commit": "b3b8c21f5dfbe9d4845a01548c8b7d9ddfe172a7", + "sha256": "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3", + "fetcher": "github", + "repo": "mjwall/ample-zen", + "unstable": { + "version": [ + 20150119, + 2154 + ], + "commit": "b277bb7abd4b6624e8d59f02474b79af50a007bd", + "sha256": "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa" + } + }, + { + "ename": "amx", + "commit": "c55bfad05343b2b0f3150fd2b4adb07a1768c1c0", + "sha256": "1ikhjvkca0lsb9j719yf6spg6nwc0qaydkd8aax162sis7kp9fap", + "fetcher": "github", + "repo": "DarwinAwardWinner/amx", + "unstable": { + "version": [ + 20190419, + 330 + ], + "deps": [ + "s" + ], + "commit": "b46e77d8ef9d1edf225e67055001f7e85048f842", + "sha256": "0hrgq6kmfqx21y0dpvhwd82rap75lnn2lzlhria893yvqc7phzn5" + }, + "stable": { + "version": [ + 3, + 2 + ], + "deps": [ + "s" + ], + "commit": "260e7c013690d412ec8d965c282572505596636d", + "sha256": "0bb8y1dmzyqkrb4mg6zndcsxppby3glridv2aap2pv05gv8kx7mj" + } + }, + { + "ename": "anaconda-mode", + "commit": "e03b698fd3fe5b80bdd24ce01f7fba28e9da0da8", + "sha256": "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r", + "fetcher": "github", + "repo": "proofit404/anaconda-mode", + "unstable": { + "version": [ + 20190616, + 1019 + ], + "deps": [ + "dash", + "f", + "pythonic", + "s" + ], + "commit": "24aa81ba62f13d7bb505a03fe244181c461fec68", + "sha256": "166szgnm8mkw4gqcn87b6k4f2s1fv2k20zc9fkwif2mr2bk88c1v" + }, + "stable": { + "version": [ + 0, + 1, + 12 + ], + "deps": [ + "dash", + "f", + "pythonic", + "s" + ], + "commit": "6be586123f606317c51e62239490af9843ba2d13", + "sha256": "1vydyyxd5n0pz0jlib3yvw8vnklp15nvyyj7qkm4wcyssi70q1rf" + } + }, + { + "ename": "anaphora", + "commit": "8505db1945071a15ba0f2bb74b58d4a6875ca7d6", + "sha256": "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2", + "fetcher": "github", + "repo": "rolandwalker/anaphora", + "unstable": { + "version": [ + 20180618, + 2200 + ], + "commit": "3b2da3f759b244975852e79721c4a2dbad3905cf", + "sha256": "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "commit": "3b2da3f759b244975852e79721c4a2dbad3905cf", + "sha256": "11fgiy029sqz7nvdm7dcal95lacryz9zql0x5h05z48nrrcl4bib" + } + }, + { + "ename": "android-env", + "commit": "570ad0e94736d9fd16f3909bcfa928a9153ea703", + "sha256": "1gfxrfg42rn2rzh5fr4w6h8ngczhl56jghfgrffz9x8wcxxmqgpr", + "fetcher": "github", + "repo": "fernando-jascovich/android-env.el", + "unstable": { + "version": [ + 20190720, + 1927 + ], + "commit": "dcb0bff0e77257266201cf1ccf17e7ca94e67fb1", + "sha256": "132fshzb4f0miqn3ijvwfdigldrvx7dsx06dczr9z9v9xw61ar8j" + } + }, + { + "ename": "android-mode", + "commit": "77633aa340803a433570327943fbe31b396f4355", + "sha256": "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc", + "fetcher": "github", + "repo": "remvee/android-mode", + "unstable": { + "version": [ + 20190109, + 1014 + ], + "commit": "d60c88bfbd2dc5122bd2fde7dc11ec1e6848a5db", + "sha256": "1hd7wxp8f67cnbyjs4bv9x18nvzn16qjy4pi7bkbcymfpwj33r38" + }, + "stable": { + "version": [ + 0, + 5, + 1 + ], + "commit": "f8cabafaa266b56fcf4b3c6942b3ae062735251a", + "sha256": "0npx54w565mkxkgkpv02dgmfc44i1256p0w331pf3nfxq145xh27" + } + }, + { + "ename": "angry-police-captain", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld", + "fetcher": "github", + "repo": "rolpereira/angry-police-captain-el", + "unstable": { + "version": [ + 20120829, + 1252 + ], + "commit": "d11931c5cb63368dcc4a48797962428cca6d3e9d", + "sha256": "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a" + } + }, + { + "ename": "angular-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0pq4lyhppzi806n1k07n0gdhr8z8z71ri12my0pl81rl5j2z69l2", + "fetcher": "github", + "repo": "rudolfolah/angularjs-mode", + "unstable": { + "version": [ + 20151201, + 2127 + ], + "commit": "8720cde86af0f1859ccc8580571e8d0ad1c52cff", + "sha256": "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "7c0fb37f59dfd9e69f00b50e90a0e88c4e25d8c2", + "sha256": "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp" + } + }, + { + "ename": "angular-snippets", + "commit": "96a0ad5fdbc52f803846e580856fb9c58181c020", + "sha256": "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c", + "fetcher": "github", + "repo": "magnars/angular-snippets.el", + "unstable": { + "version": [ + 20140514, + 523 + ], + "deps": [ + "dash", + "s" + ], + "commit": "af5ae0a4a8603b040446c28afcf6ca01a8b4bd7b", + "sha256": "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "dash", + "s" + ], + "commit": "8f737c2cf5fce758a7a3833ebad2952b5398568d", + "sha256": "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a" + } + }, + { + "ename": "anki-editor", + "commit": "8155d649e4b129d0c72da6bb2b1aac66c8483491", + "sha256": "18c5p82llq11vg1svqvbjrcnm7695nbbc6pwwl9jdjplasar585l", + "fetcher": "github", + "repo": "louietan/anki-editor", + "unstable": { + "version": [ + 20190608, + 1621 + ], + "deps": [ + "dash", + "request" + ], + "commit": "3e9f957ac59c19f1ca8c06d16c98a280a0c0474a", + "sha256": "1gkxpl4r4j547rwifp5597424arlya0k676sdkcz625b9jk65ypn" + } + }, + { + "ename": "anki-mode", + "commit": "fc02d06e7c7e9230e4b082923b889e1e83676263", + "sha256": "1d429ws6kmswcyk0dnb303z01kq475n60a520hj258x23vp8802q", + "fetcher": "github", + "repo": "davidshepherd7/anki-mode", + "unstable": { + "version": [ + 20181106, + 1837 + ], + "deps": [ + "dash", + "markdown-mode", + "request", + "s" + ], + "commit": "365fcfff45ed543f3df0d4110415f6f818ec2727", + "sha256": "021wvz0vxbpiigrdhgilbpkbxmwwjy127g1lrp0wmnqg5m3rl5rg" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "markdown-mode", + "request", + "s" + ], + "commit": "06dd1bd49b7a2b43cf9b744dd5caf67809f39d74", + "sha256": "0ryyyihvvrcipj2bkx24cx1ibgcymnsbn79ibvmhb3wbad3hr072" + } + }, + { + "ename": "annotate", + "commit": "3aae88b8e3b080501195d291012deab31aaf35f7", + "sha256": "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy", + "fetcher": "github", + "repo": "bastibe/annotate.el", + "unstable": { + "version": [ + 20190519, + 706 + ], + "commit": "09d0cd89e458779ca375ac28bc664ee2e20db530", + "sha256": "141pqfrrzbqaxxcr6m6ri9r6k1mg5i3cv8v2kili365cypnjdg1y" + }, + "stable": { + "version": [ + 0, + 4, + 7 + ], + "commit": "e6af7f8ef7d241fdc9f866d57dce24beb4bb6b87", + "sha256": "19a419rnqqsmvrcl2vwy3gl7mvbfg669vyin2h2xpm56rxsinvy1" + } + }, + { + "ename": "annotate-depth", + "commit": "bb37bd77aea642ca72d74112bdd8a02eab8d1a80", + "sha256": "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4", + "fetcher": "github", + "repo": "netromdk/annotate-depth", + "unstable": { + "version": [ + 20160520, + 2040 + ], + "commit": "fcb24fa36287250e40d195590c4ca4a8a696277b", + "sha256": "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl" + } + }, + { + "ename": "annoying-arrows-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1vswlfypn6ijn0wwa3dsqkz5n3pillpmli2ha4q9snhd3a667vyh", + "fetcher": "github", + "repo": "magnars/annoying-arrows-mode.el", + "unstable": { + "version": [ + 20161024, + 646 + ], + "deps": [ + "cl-lib" + ], + "commit": "3c42e9807d7696da2da2a21b63beebf9cdb3f5dc", + "sha256": "06gs5ln3w1xvq8f8k9225rwiipbh9cs0dzyyb7z05717rmqixcc4" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "fe59f3fd464e7a87cc43fb8a1f135b3bdf8a2fb3", + "sha256": "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02" + } + }, + { + "ename": "ansi", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89", + "fetcher": "github", + "repo": "rejeep/ansi.el", + "unstable": { + "version": [ + 20150703, + 826 + ], + "deps": [ + "dash", + "s" + ], + "commit": "12b4c5d91b3da1902838f421e5af6d40e2cd57dd", + "sha256": "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "dash", + "s" + ], + "commit": "a042c5954453bab9a74177e2b78ad17a824caebc", + "sha256": "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g" + } + }, + { + "ename": "ansible", + "commit": "8e45bf58b980ff542a5e887707a6361eb5ac0492", + "sha256": "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g", + "fetcher": "github", + "repo": "k1LoW/emacs-ansible", + "unstable": { + "version": [ + 20190619, + 1255 + ], + "deps": [ + "f", + "s" + ], + "commit": "2d35aa1280ace3cae404ea9e1231a8b26c7b9eb4", + "sha256": "1yv33bw2q87am4bi2dasrbya28l6p3y4nr8rs0yl5nsvdbk4vbpg" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "f", + "s" + ], + "commit": "8a097176d6772b6667254dbbe19c5fb64527bf5d", + "sha256": "1m2cb88jb1wxa9rydkbn5llx2gql453l87b4cgzsjllha6j1488k" + } + }, + { + "ename": "ansible-doc", + "commit": "1daaaa7462f0b83c15ed9d9e7e6d0ee94434b8e9", + "sha256": "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w", + "fetcher": "github", + "repo": "lunaryorn/ansible-doc.el", + "unstable": { + "version": [ + 20160924, + 824 + ], + "commit": "86083a7bb2ed0468ca64e52076b06441a2f8e9e0", + "sha256": "0lap404ch74w99n3xip176jr42b38xhyzkfnkyqg0g3wk2cd3aq8" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "bc8128a85a79b14f4a121105d87a5eddc33975ad", + "sha256": "0z3y69sfzka764wjbx31dywdq4d6bfsafv2gmmbpmxqmwfmy8sz4" + } + }, + { + "ename": "ansible-vault", + "commit": "2bff0da29a9b883e53a3d211c5577a3e0bc263a0", + "sha256": "0pmsvpc866rgcajb2ihhb62g3rwhda7vvq2kxkvr566y609vv021", + "fetcher": "github", + "repo": "zellio/ansible-vault-mode", + "unstable": { + "version": [ + 20190126, + 1936 + ], + "commit": "4fe490f524b79748c9f23026bb88d8f516b4ef40", + "sha256": "17kbjlssxa9b2fcp8vf2xs2k5y6jgpw277mj2gbv173b0i7v1fjd" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "commit": "57cf7e6da30250587c28ebf592d7bca9a3bae1df", + "sha256": "1m9r3vicmljypq6mhgr86lzgi26dnnlp7g0jbl9bjdk48xfg79wb" + } + }, + { + "ename": "ant", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa", + "fetcher": "github", + "repo": "apg/ant-el", + "unstable": { + "version": [ + 20160211, + 1543 + ], + "commit": "510b5a3f57ee4b2855422d88d359a28922c1ab70", + "sha256": "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab" + } + }, + { + "ename": "anti-zenburn-theme", + "commit": "6f6f803dc99a1b1fdb5b4e79f1c9cf72b702d091", + "sha256": "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk", + "fetcher": "github", + "repo": "m00natic/anti-zenburn-theme", + "unstable": { + "version": [ + 20180712, + 1838 + ], + "commit": "dbafbaa86be67c1d409873f57a5c0bbe1e7ca158", + "sha256": "1h4lachmrpjiblah4rjd2cpvz6n6qh3i5cdp4wra2dk177h7kj6h" + }, + "stable": { + "version": [ + 2, + 5, + 1 + ], + "commit": "c80cc51bb1aaf11dd53b9d08e01d61bc9b32622f", + "sha256": "1c97d2jkh7iawgsbcg19gha9ffnxypbcfz0sgcsgf9vy4bvnc350" + } + }, + { + "ename": "anx-api", + "commit": "2e3b329ff11818a1553c74a02475cb4110173076", + "sha256": "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r", + "fetcher": "github", + "repo": "rmloveland/emacs-appnexus-api", + "unstable": { + "version": [ + 20140208, + 1514 + ], + "commit": "b2411ebc966ac32c3ffc61bc22bf183834df0fa0", + "sha256": "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1" + } + }, + { + "ename": "anybar", + "commit": "5516e309df9ac8bf0fafb9ec9037094d82913b67", + "sha256": "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm", + "fetcher": "github", + "repo": "tie-rack/anybar-el", + "unstable": { + "version": [ + 20160816, + 1421 + ], + "commit": "7a0743e0d31bcb36ab1bb2e351f3e7139c422ac5", + "sha256": "1s7vnp2xzffdj4pqdqn6mrirw33ms0yqlpxzz5pwj6xrbp2x5r6s" + } + }, + { + "ename": "anyins", + "commit": "a367da2cb71fc0b144f9e608dc4857624991f19c", + "sha256": "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c", + "fetcher": "github", + "repo": "antham/anyins", + "unstable": { + "version": [ + 20131229, + 1041 + ], + "commit": "83844c17ac9b5b6c7655ee556b75689e4c8ea663", + "sha256": "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "1ff4673ca197c9bf64c65f718573bf7d478fc562", + "sha256": "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721" + } + }, + { + "ename": "anzu", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "181hzwy9bc0zfhax26p20q9cjibrmi9ngps5fa3ja5g6scxfs9g1", + "fetcher": "github", + "repo": "syohex/emacs-anzu", + "unstable": { + "version": [ + 20190303, + 1701 + ], + "commit": "592f8ee6d0b1bc543943b36a30063c2d1aac4b22", + "sha256": "123zbnl36vi0gkffd6m6mkskhmjmm0am23j45w1mbmfyq03r1d8b" + }, + "stable": { + "version": [ + 0, + 62 + ], + "deps": [ + "cl-lib" + ], + "commit": "3328619fec138862302bbe1b9acf2eea624a4c5e", + "sha256": "1lzvc0ihcbplir4hqfyxfqpsd78arz15gk92kmq4f8ggbkl37fan" + } + }, + { + "ename": "aozora-view", + "commit": "c6c13f8a0dd90c1c1f39711a5de69c1e0b785601", + "sha256": "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w", + "fetcher": "github", + "repo": "kawabata/aozora-view", + "unstable": { + "version": [ + 20140310, + 1317 + ], + "commit": "b0390616d19e45f15f9a2f5d5688274831e721fd", + "sha256": "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l" + } + }, + { + "ename": "apache-mode", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "0wzfx3kaiwvya30ihq3vpdhy6znkzf25w5x43x457ifdn2vrh9zi", + "fetcher": "github", + "repo": "emacs-php/apache-mode", + "unstable": { + "version": [ + 20190711, + 1111 + ], + "commit": "a66dc1f246cd4ce0960773989bc43188f0394948", + "sha256": "0d0wc2zhwxy6ag8hh6g6k7dqpxf5yilxkaziy26pp5khryb7j7p9" + }, + "stable": { + "version": [ + 2, + 2, + 0 + ], + "commit": "354f9302a8d805ac80d846adcd1cef10830b3d51", + "sha256": "1grs2x51k8pa6sgfa82s5pwwdfv7zw46ccw0zvd2rvzbhpq21p2z" + } + }, + { + "ename": "apel", + "commit": "4976446a8ae40980d502186615902fc05c15ec7c", + "sha256": "0zrm8m66p3aqr0108s3cj6z4xqbg2hx37z1pam4c65bqlhh74s8y", + "fetcher": "github", + "repo": "wanderlust/apel", + "unstable": { + "version": [ + 20190407, + 1056 + ], + "commit": "d146ddbf8818e81d3577d5eee7825d377bec0c73", + "sha256": "04ic76gzn3m4rnmm2xjc72vrxazxjvsjabd3lbxvwj6c1fb11fnw" + } + }, + { + "ename": "apib-mode", + "commit": "dc2ebb04f975d8226a76260895399c937d6a1940", + "sha256": "0y3n0xmyc4gkypq07v4sp0i6291qaj2m13zkg6mxp61zm669v2fb", + "fetcher": "github", + "repo": "w-vi/apib-mode", + "unstable": { + "version": [ + 20170520, + 1358 + ], + "deps": [ + "markdown-mode" + ], + "commit": "6cc7c6f21b8e415b1718bb6a07ab2182e9e9dde6", + "sha256": "1717f78kaqkmbhfwb9kzsv5wi2zabcbwb4wh1jklhcaalvmk3z7d" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "markdown-mode" + ], + "commit": "6cc7c6f21b8e415b1718bb6a07ab2182e9e9dde6", + "sha256": "1717f78kaqkmbhfwb9kzsv5wi2zabcbwb4wh1jklhcaalvmk3z7d" + } + }, + { + "ename": "apiwrap", + "commit": "0197fd3657e65e3826375d9b6f19da3058366c91", + "sha256": "0n50n1n5pvcgcp1gmna3ci36pnbanjdbjpgv7zyarlb80hywbiyw", + "fetcher": "github", + "repo": "vermiculus/apiwrap.el", + "unstable": { + "version": [ + 20180602, + 2231 + ], + "commit": "e4c9c57d6620a788ec8a715ff1bb50542edea3a6", + "sha256": "0xpb8mmssajy42r2h1m9inhv1chx19wkp5p0p63nwpk7mhjj8bis" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "e4c9c57d6620a788ec8a715ff1bb50542edea3a6", + "sha256": "0xpb8mmssajy42r2h1m9inhv1chx19wkp5p0p63nwpk7mhjj8bis" + } + }, + { + "ename": "apples-mode", + "commit": "5ca765a6a2f312f585624ec8b82dc9eb6b9bbc0c", + "sha256": "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s", + "fetcher": "github", + "repo": "tequilasunset/apples-mode", + "unstable": { + "version": [ + 20110121, + 418 + ], + "commit": "83a9ab0d6ba82496e2f7df386909b1a55701fccb", + "sha256": "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "fac47b6255e79a373c5d5e1abe66ea5d74588e9f", + "sha256": "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy" + } + }, + { + "ename": "applescript-mode", + "commit": "576e42b33a5245e1aae0f0d879fd18762342db32", + "sha256": "0rj03xw8yx79xj9ahdwfxicxna0a0lykn2n39xng5gnm4bh2n6z4", + "fetcher": "github", + "repo": "ieure/applescript-mode", + "unstable": { + "version": [ + 20090321, + 632 + ], + "commit": "8f888cd80af1e0902b5609143facd3051bc94892", + "sha256": "0d3bqx6346vmniv001jgd6wggp80kv1kqc38sdgd88862gkqnqyg" + } + }, + { + "ename": "aproject", + "commit": "de10c48976352f273e8363c2f6fa60602ee86c9b", + "sha256": "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2", + "fetcher": "github", + "repo": "vietor/aproject", + "unstable": { + "version": [ + 20190724, + 600 + ], + "commit": "a044d8e612a8973f958b6a4e03cefca2194874de", + "sha256": "1gpwx704bvza8ccly1vph9b3c146pxry2rldln8g66hfp3v49fw0" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "702caf5392288dfd821b1e744fef0bb4fd9f9281", + "sha256": "18n3gsghj7sxxd6kpp21b2p7qwv93giwyr1zfvgbs8pzsbc8i9rx" + } + }, + { + "ename": "apropospriate-theme", + "commit": "1da33013f15825ab656260ce7453b8127e0286f4", + "sha256": "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9", + "fetcher": "github", + "repo": "waymondo/apropospriate-theme", + "unstable": { + "version": [ + 20190724, + 1729 + ], + "commit": "c46432a5559630380abee9ead387eba2db28ad15", + "sha256": "102i0qq3p28rgc870j4nviw7ns5ldxxybq3lg4y723idrim71ypc" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "0d918da74a7a225fe5a586e26f5d834e579c5323", + "sha256": "0hqsq7y89crcmqcfbgn885dlvj7f7b0zd9q6adbhyscphk7kasjw" + } + }, + { + "ename": "apt-sources-list", + "commit": "141a22e593415302d64cf8ebd2635a1baf35eb38", + "sha256": "1gnl6zqv6imk2qpv4lj7qyjgf1ldxib3k14gsmwqm0c1zwjsid3j", + "fetcher": "git", + "url": "https://git.korewanetadesu.com/apt-sources-list.git", + "unstable": { + "version": [ + 20180527, + 1241 + ], + "commit": "5289443ceff230dfc8a2c1c6b524c90560eb08a5", + "sha256": "1svicgmiibnim47fhlik3fgs0d6427and5h61s3rhvfj3352d9li" + } + }, + { + "ename": "arc-dark-theme", + "commit": "f8c9060669b262f0588643bd8758edac578834bc", + "sha256": "0a61kxdyzm6gf8gf8fniqz5mqkxk24k8hpxww3996v9mqs1bn05s", + "fetcher": "github", + "repo": "cfraz89/arc-dark-theme", + "unstable": { + "version": [ + 20190314, + 1632 + ], + "commit": "ee17dcca35dd0304145efc468b3f25af6907a59d", + "sha256": "0cfj5c6rz68095wxs8m733lwc5ymbgi5v82drxhjqcascvrdr1v1" + } + }, + { + "ename": "arch-packer", + "commit": "6d1796688ed0d6957557d960ca28e450f9bcb6cf", + "sha256": "04kv22vpcpjhc047yz6k6dizmwwdjk6vcm8imri76gi9ns1w5n5z", + "fetcher": "github", + "repo": "brotzeit/arch-packer", + "unstable": { + "version": [ + 20170730, + 1321 + ], + "deps": [ + "async", + "dash", + "s" + ], + "commit": "940e96f7d357c6570b675a0f942181c787f1bfd7", + "sha256": "0m80ka51m7a1797q6br41x96znvqfmpwzh3vk4mz66mdx2r4xk77" + } + }, + { + "ename": "archive-region", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3", + "fetcher": "github", + "repo": "rubikitch/archive-region", + "unstable": { + "version": [ + 20140201, + 2342 + ], + "commit": "0d357d4c42a6a248c457f358f81b20fd20fede2f", + "sha256": "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264" + } + }, + { + "ename": "archive-rpm", + "commit": "e5f5653e62afdc022eac30bda3d21bd2d2625d2e", + "sha256": "0s53zbn71lb008gw3f0b5w4q0pw0vgiqbffgnyib24sh03ijl7z7", + "fetcher": "github", + "repo": "legoscia/archive-rpm", + "unstable": { + "version": [ + 20180706, + 1232 + ], + "commit": "59f83caebbd2f92fd634f6968e6d17b50ffa3dc7", + "sha256": "11ssqaax4jl7r3z5agzmc74sjsfvl0m3xvp015ncqzpzysla47g3" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "59f83caebbd2f92fd634f6968e6d17b50ffa3dc7", + "sha256": "11ssqaax4jl7r3z5agzmc74sjsfvl0m3xvp015ncqzpzysla47g3" + } + }, + { + "ename": "arduino-mode", + "commit": "2db785f52c2facc55459e945ccb4d4b088506747", + "sha256": "1amqah0sx95866ikdlc7h7n9hmrwaqizc0rj0gliv15kjjggv55v", + "fetcher": "github", + "repo": "stardiviner/arduino-mode", + "unstable": { + "version": [ + 20180509, + 36 + ], + "deps": [ + "cl-lib", + "spinner" + ], + "commit": "23ae47c9f28f559e70b790b471f20310e163a39b", + "sha256": "08vnbz9gpah1l93fzfd87aawrhcnh2v1kyfxgsn88pdwg8awz8rx" + } + }, + { + "ename": "aria2", + "commit": "89a55e7c313066ae1bc0db0af5c289814c85fcb1", + "sha256": "1gsqdqs3q86k7q88rf7qamc0sp5ca00xn9kr1r717vf6qq6a0c3c", + "fetcher": "gitlab", + "repo": "ukaszg/aria2", + "unstable": { + "version": [ + 20141107, + 2317 + ], + "commit": "7a944c5100812269369225af7aa9580fedab175f", + "sha256": "1pwnx6k7b35xhwqvzd3rl6rf5ydvbrrdmbadns8w0iyz2yafdxji" + } + }, + { + "ename": "ariadne", + "commit": "89635cd11621b04a8575629ec1bf196fb3ea5d43", + "sha256": "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p", + "fetcher": "github", + "repo": "manzyuk/ariadne-el", + "unstable": { + "version": [ + 20131117, + 1711 + ], + "deps": [ + "bert" + ], + "commit": "6fe401c7f996bcbc2f685e7971324c6f5e5eaf15", + "sha256": "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h" + } + }, + { + "ename": "arjen-grey-theme", + "commit": "ed9804061cfadd26c69bb1bfe63dbe22f916f723", + "sha256": "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7", + "fetcher": "github", + "repo": "credmp/arjen-grey-theme", + "unstable": { + "version": [ + 20170522, + 2047 + ], + "commit": "4cd0be72b65d42390e2105cfdaa408a1ead8d8d1", + "sha256": "1n5axwn498ahb6984ir1zfl8vvwgbvq9bbrdfzydkmjljhgrp0rd" + } + }, + { + "ename": "artbollocks-mode", + "commit": "22b237ab91ddd3c17986ea12e6a32f2ce62d3a79", + "sha256": "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp", + "fetcher": "github", + "repo": "sachac/artbollocks-mode", + "unstable": { + "version": [ + 20170524, + 422 + ], + "commit": "33a41ca4f8206f57e5498a526d3b0ea18d08bb93", + "sha256": "06a2dp6nwy8xjr01k6d2c611qr2n9m7hdkrz9fci9r4rv1ikx5xv" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "583c7048a1b09cd79554423d5115f5ddd129d190", + "sha256": "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91" + } + }, + { + "ename": "arview", + "commit": "31574cd756f4f93e2c6bcad5eca33a3294cccd54", + "sha256": "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y", + "fetcher": "github", + "repo": "afainer/arview", + "unstable": { + "version": [ + 20160419, + 2109 + ], + "commit": "5437b4221b64b238c273a651d4792c577dba6d45", + "sha256": "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "5437b4221b64b238c273a651d4792c577dba6d45", + "sha256": "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j" + } + }, + { + "ename": "asilea", + "commit": "858e673c66e876d80f41d47d307c944d7bdb147d", + "sha256": "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j", + "fetcher": "github", + "repo": "Fanael/asilea", + "unstable": { + "version": [ + 20150105, + 1525 + ], + "deps": [ + "cl-lib" + ], + "commit": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "2aab1cc63b64ef08d12e84fd7ba5c94065f6039f", + "sha256": "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597" + } + }, + { + "ename": "asn1-mode", + "commit": "b694baceceb54810be8f8c7152b2ac0b4063f01c", + "sha256": "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy", + "fetcher": "github", + "repo": "kawabata/asn1-mode", + "unstable": { + "version": [ + 20170729, + 226 + ], + "deps": [ + "s" + ], + "commit": "d5d4a8259daf708411699bcea85d322f18beb972", + "sha256": "067khpi4ghzyifrk1vhi57n3alp67qks4k4km11hasiavi5gsjmp" + } + }, + { + "ename": "assess", + "commit": "6f917a34506193f2674b195569dfd3c13ba62c1d", + "sha256": "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr", + "fetcher": "github", + "repo": "phillord/assess", + "unstable": { + "version": [ + 20190102, + 1011 + ], + "deps": [ + "m-buffer" + ], + "commit": "0781fd79c4040dbceed42dc79edab4ec661c2593", + "sha256": "15ismdk8fl6xjgkjh9nkn8kgg7rpy2ra7924r1iddlfs2q8l8p4w" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "m-buffer" + ], + "commit": "0781fd79c4040dbceed42dc79edab4ec661c2593", + "sha256": "15ismdk8fl6xjgkjh9nkn8kgg7rpy2ra7924r1iddlfs2q8l8p4w" + } + }, + { + "ename": "async", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0s2qrmkqqfgi1ilzbj0rfk27f89p4dycdl1lqkbsm23j0zya53w4", + "fetcher": "github", + "repo": "jwiegley/emacs-async", + "unstable": { + "version": [ + 20190503, + 656 + ], + "commit": "bd68cc1ab1ac6af890e250bdaa12ffb1cb9649be", + "sha256": "02n46dqbpdjlj65s1aka6ky49rgv2rpn06lzpfxwxl7kkzclc5f8" + }, + "stable": { + "version": [ + 1, + 9, + 3 + ], + "commit": "caad15ce64c1aac5e17d480c59ee6c85ebcb6bb2", + "sha256": "1zsnb6dy8p6y68xgidv3dfxaga4biramfw8fq7wac0sc50vc98vq" + } + }, + { + "ename": "async-await", + "commit": "9d74ecf94e5dbb46a939d26833b7cd0efd159ca1", + "sha256": "1534rhr4j74qbndafdj9q2wggcn8gphhjn3id8p27wyxr5sh93ms", + "fetcher": "github", + "repo": "chuntaro/emacs-async-await", + "unstable": { + "version": [ + 20170208, + 1150 + ], + "deps": [ + "promise" + ], + "commit": "56ab90e4019ed1f81fd4ad9e8701b5cec7ffa795", + "sha256": "1k6wisls6dqn63r4f4brnhrjbvzqpigw2zxdl9v8g1qcw49spk5s" + } + }, + { + "ename": "atom-dark-theme", + "commit": "d1f565871559d6ea4ca4bb2fbaebce58f2f383eb", + "sha256": "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f", + "fetcher": "github", + "repo": "whitlockjc/atom-dark-theme-emacs", + "unstable": { + "version": [ + 20181022, + 1602 + ], + "commit": "5c8610d0b45a536b8f7f9777297c86362685a357", + "sha256": "15mjn5z7f7x8k4lbab5xv2r88s9ch9b58znv6vwpqakp63rx8hsx" + } + }, + { + "ename": "atom-one-dark-theme", + "commit": "3ba1c4625c9603372746a6c2edb69d65f0ef79f5", + "sha256": "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw", + "fetcher": "github", + "repo": "jonathanchu/atom-one-dark-theme", + "unstable": { + "version": [ + 20190705, + 554 + ], + "commit": "623fc08252e30174401750a09168279571288c7f", + "sha256": "09y4zh0i07vq8njvi4y1vmjqip057y3w2rhd7qzz6326bjz75cxk" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "c2ae343971f8cda7f5b5392552ce9281f52e53de", + "sha256": "1xyn8qiikng6vf5rbpfqz9ac10c69aip0w6v9l46w0qxsy8svyaj" + } + }, + { + "ename": "atomic-chrome", + "commit": "35785773942a5510e2317ded5bdf872ffe434e8c", + "sha256": "0dx12mjdc4vhbvrcl61a7j247mgs71vvy0qqj6czbpfawfl46am9", + "fetcher": "github", + "repo": "alpha22jp/atomic-chrome", + "unstable": { + "version": [ + 20180617, + 724 + ], + "deps": [ + "let-alist", + "websocket" + ], + "commit": "a505f638866f9e7b913784be0dc84f338e9ad449", + "sha256": "081465ahis2rvlklzn2vakbwn5dgr43ks4csp3arnlj11b43f3ai" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "let-alist", + "websocket" + ], + "commit": "38ce9127285e1ff45f0f39b9da36a682103bdb96", + "sha256": "01zwpdmq13iy3hsgijnqsg0yahjxngfbrnn1dd2x1bzpmr8hpxnz" + } + }, + { + "ename": "attrap", + "commit": "b7420eca80a8c1776d68b1f121511cc265cc70dc", + "sha256": "1gxnrlsn9xcnnx0nhjxnhrz9bdpk2kpzjhj8jhjmwws9y361fimh", + "fetcher": "github", + "repo": "jyp/attrap", + "unstable": { + "version": [ + 20190207, + 1410 + ], + "deps": [ + "dash", + "f", + "flycheck", + "s" + ], + "commit": "3b092bb8f6755a97e6ecb7623b9d2dde58beba4a", + "sha256": "05d32980saji8ja1pcv65l0s3dq7w0n5hpikbf246hciy1x067pp" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash", + "f", + "flycheck", + "s" + ], + "commit": "a971acb251e343d4c6b0253f69dcce0c2cee0fac", + "sha256": "0p93y151730ga7v9xa5gkp306s32qw53086i829fcbxf83c2wslv" + } + }, + { + "ename": "auctex-latexmk", + "commit": "3f48af615c56f093dff417a5d3b705f9993c518f", + "sha256": "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327", + "fetcher": "github", + "repo": "tom-tan/auctex-latexmk", + "unstable": { + "version": [ + 20170618, + 1636 + ], + "deps": [ + "auctex" + ], + "commit": "4d353522650d7685acbf1d38f7dbc504f734bd84", + "sha256": "0qvscgffmzqk8lkcg3yk91vciim5ygk2m4crk02qn72ipkw5q13m" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "auctex" + ], + "commit": "4d353522650d7685acbf1d38f7dbc504f734bd84", + "sha256": "0qvscgffmzqk8lkcg3yk91vciim5ygk2m4crk02qn72ipkw5q13m" + } + }, + { + "ename": "auctex-lua", + "commit": "102c7b05f5bfff12ac2820cae58c0205ca450559", + "sha256": "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf", + "fetcher": "github", + "repo": "vermiculus/auctex-lua", + "unstable": { + "version": [ + 20151121, + 1610 + ], + "deps": [ + "auctex", + "lua-mode" + ], + "commit": "799cd8ac10c96991bb63d9aa60528ae5d8c786b5", + "sha256": "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz" + } + }, + { + "ename": "audio-notes-mode", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h", + "fetcher": "github", + "repo": "Malabarba/audio-notes-mode", + "unstable": { + "version": [ + 20170611, + 2159 + ], + "commit": "fa38350829c7e97257efc746a010471d33748a68", + "sha256": "1srg6rg3j9ri2cyr4g78dfqq3fhpn6hf3mq4iz2jfqjayppfv38b" + } + }, + { + "ename": "aurel", + "commit": "d1612acd2cf1fea739739608113923ec51d307e9", + "sha256": "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl", + "fetcher": "github", + "repo": "alezost/aurel", + "unstable": { + "version": [ + 20170114, + 937 + ], + "deps": [ + "bui", + "dash" + ], + "commit": "fc7ad208f43f8525f84a18941c9b55f956df8961", + "sha256": "0mcbw8p4wrnnr39wzkfz9kc899w0k1jb00q1926mchf202cmnz94" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "bui", + "dash" + ], + "commit": "fc7ad208f43f8525f84a18941c9b55f956df8961", + "sha256": "0mcbw8p4wrnnr39wzkfz9kc899w0k1jb00q1926mchf202cmnz94" + } + }, + { + "ename": "aurora-config-mode", + "commit": "10a44bed8edee646bf68abf7dffbe352a137a278", + "sha256": "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c", + "fetcher": "github", + "repo": "bdd/aurora-config-mode.el", + "unstable": { + "version": [ + 20180216, + 2302 + ], + "commit": "8273ec7937a21b469b9dbb6c11714255b890f410", + "sha256": "1dlhf35hhjgkd9bqbpwrb825g1z6nh14mg31jg2avv55s28j0riy" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "0a7ca7987c3a0824e25470389c7d25c337a81593", + "sha256": "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28" + } + }, + { + "ename": "auth-source-pass", + "commit": "5e268441634a6e58a00e577d6e2292fa226c11b8", + "sha256": "0icwdwz2zy3f9ynksr81pgq482iapsbx8lpyssiklyw0xgd1k8ak", + "fetcher": "github", + "repo": "DamienCassou/auth-password-store", + "unstable": { + "version": [ + 20190628, + 650 + ], + "commit": "a40196e4bff7cfe1139dd744dc6a76f9404552cb", + "sha256": "19d97rphr0wcd7mh2wy74abfzi7g24iblcmhimwrycbf9qxbfgvp" + }, + "stable": { + "version": [ + 5, + 0, + 0 + ], + "commit": "df074612114c3cc2fa1c3023f26ff182f9b1190a", + "sha256": "0qnqqdpbfr06nqw4hq7c1s7yh7zyrv4gqjj06v70cavjml7pagp6" + } + }, + { + "ename": "auto-async-byte-compile", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg", + "fetcher": "github", + "repo": "rubikitch/auto-async-byte-compile", + "unstable": { + "version": [ + 20160916, + 454 + ], + "commit": "8681e74ddb8481789c5dbb3cafabb327db4c4484", + "sha256": "1g98gla9qdqmifsxakhkbxlljy2ln1s3wfahk9zycrwgzfjlsdf4" + } + }, + { + "ename": "auto-auto-indent", + "commit": "2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f", + "sha256": "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7", + "fetcher": "github", + "repo": "sabof/auto-auto-indent", + "unstable": { + "version": [ + 20131106, + 1903 + ], + "deps": [ + "cl-lib", + "es-lib" + ], + "commit": "0139378577f936d34b20276af6f022fb457af490", + "sha256": "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7" + } + }, + { + "ename": "auto-compile", + "commit": "57a2fb9524df3fdfdc54c403112e12bd70888b23", + "sha256": "08k9wqk4yysps8n5n50v7lpadwsnm553pv9p7m242fwbgbsgz6nf", + "fetcher": "github", + "repo": "emacscollective/auto-compile", + "unstable": { + "version": [ + 20181230, + 2216 + ], + "deps": [ + "packed" + ], + "commit": "f043133f37fe6d707fa03a1ec4ba619da24c2f35", + "sha256": "0h41vykrdn1jrwzn5db9idw5j3d77xhn616kwfv1syka7hvmyaq4" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "deps": [ + "packed" + ], + "commit": "e6bbb1371324c8884af3b201e9adbc9296eb2ff4", + "sha256": "1jyn7yvbvk7cydy3pzwqlb0yxf5cxdiipa1gnigdk9wdbj68wjjk" + } + }, + { + "ename": "auto-complete", + "commit": "083fb071191bccd6feb3fb84569373a597440fb1", + "sha256": "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3", + "fetcher": "github", + "repo": "auto-complete/auto-complete", + "unstable": { + "version": [ + 20170125, + 245 + ], + "deps": [ + "cl-lib", + "popup" + ], + "commit": "2e83566ddfa758c69afe50b8a1c62a66f47471e3", + "sha256": "1rkqjq7wr4aavg08i8mq13w85z14xdhfmpbipj5mhwlpyrrci4bk" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "deps": [ + "cl-lib", + "popup" + ], + "commit": "0655b7f1e6c0f8475adc55f2b86404a877f26a77", + "sha256": "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb" + } + }, + { + "ename": "auto-complete-auctex", + "commit": "77167fb2e84bed32ace9490c1ed4148719e4cf8e", + "sha256": "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh", + "fetcher": "github", + "repo": "monsanto/auto-complete-auctex", + "unstable": { + "version": [ + 20140223, + 1758 + ], + "deps": [ + "auto-complete", + "yasnippet" + ], + "commit": "855633f668bcc4b9408396742a7cb84e0c4a2f77", + "sha256": "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2" + } + }, + { + "ename": "auto-complete-c-headers", + "commit": "0174b70fec45ddec9c1e9555adc82fef59054135", + "sha256": "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7", + "fetcher": "github", + "repo": "mooz/auto-complete-c-headers", + "unstable": { + "version": [ + 20150912, + 323 + ], + "deps": [ + "auto-complete" + ], + "commit": "52fef720c6f274ad8de52bef39a343421006c511", + "sha256": "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n" + } + }, + { + "ename": "auto-complete-chunk", + "commit": "306e2528638d97c28372df55a9376750d3fde1d4", + "sha256": "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3", + "fetcher": "github", + "repo": "tkf/auto-complete-chunk", + "unstable": { + "version": [ + 20140225, + 946 + ], + "deps": [ + "auto-complete" + ], + "commit": "a9aa77ffb84a1037984a7ce4dda25074272f13fe", + "sha256": "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li" + } + }, + { + "ename": "auto-complete-clang", + "commit": "eab7d88a893fdf76c22f0aa5ac3577efd60fc9b4", + "sha256": "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva", + "fetcher": "github", + "repo": "brianjcj/auto-complete-clang", + "unstable": { + "version": [ + 20140409, + 752 + ], + "deps": [ + "auto-complete" + ], + "commit": "a195db1d0593b4fb97efe50885e12aa6764d998c", + "sha256": "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1" + } + }, + { + "ename": "auto-complete-clang-async", + "commit": "23aa24b025216359c5e600eee2f2cd4ecc7556e3", + "sha256": "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh", + "fetcher": "github", + "repo": "Golevka/emacs-clang-complete-async", + "unstable": { + "version": [ + 20130526, + 1514 + ], + "commit": "5d9c5cabbb6b31e0ac3637631c0c8b25184aa8b4", + "sha256": "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "a5114e3477793ccb9420acc5cd6a1cb26be65964", + "sha256": "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj" + } + }, + { + "ename": "auto-complete-distel", + "commit": "90fff35dd9709b06802edef89d1fe6a96b7115a6", + "sha256": "0ca242gl8dl4rmg8qqyhgxvf46fprl2npbq2w8f6s546s9nql4jk", + "fetcher": "github", + "repo": "sebastiw/distel-completion", + "unstable": { + "version": [ + 20180827, + 1344 + ], + "deps": [ + "auto-complete", + "distel-completion-lib" + ], + "commit": "acc4c0a5521904203d797fe96b08e5fae4233c7e", + "sha256": "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3" + } + }, + { + "ename": "auto-complete-exuberant-ctags", + "commit": "1cc9786ed8cea2461b592f860d8e2a0897c57068", + "sha256": "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd", + "fetcher": "github", + "repo": "k1LoW/auto-complete-exuberant-ctags", + "unstable": { + "version": [ + 20140320, + 724 + ], + "deps": [ + "auto-complete" + ], + "commit": "ff6121ff8b71beb5aa606d28fd389c484ed49765", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0" + }, + "stable": { + "version": [ + 0, + 0, + 7 + ], + "deps": [ + "auto-complete" + ], + "commit": "ff6121ff8b71beb5aa606d28fd389c484ed49765", + "sha256": "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0" + } + }, + { + "ename": "auto-complete-nxml", + "commit": "c89dcbf03a802a4361e44174a332a312e352be36", + "sha256": "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a", + "fetcher": "github", + "repo": "aki2o/auto-complete-nxml", + "unstable": { + "version": [ + 20140221, + 458 + ], + "deps": [ + "auto-complete" + ], + "commit": "ac7b09a23e45f9bd02affb31847263de4180163a", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "auto-complete" + ], + "commit": "ac7b09a23e45f9bd02affb31847263de4180163a", + "sha256": "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y" + } + }, + { + "ename": "auto-complete-pcmp", + "commit": "f5c53a8aeaaab23e032a8e7cb5cad7e531a1662c", + "sha256": "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna", + "fetcher": "github", + "repo": "aki2o/auto-complete-pcmp", + "unstable": { + "version": [ + 20140227, + 651 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "2595d3dab1ef3549271ca922f212928e9d830eec", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "2595d3dab1ef3549271ca922f212928e9d830eec", + "sha256": "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26" + } + }, + { + "ename": "auto-complete-rst", + "commit": "4c948dc47f67aa47a1607cbdacdc95241d1a658f", + "sha256": "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6", + "fetcher": "github", + "repo": "tkf/auto-complete-rst", + "unstable": { + "version": [ + 20140225, + 944 + ], + "deps": [ + "auto-complete" + ], + "commit": "4803ce41a96224e6fa54e6741a5b5f40ebed7351", + "sha256": "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8" + } + }, + { + "ename": "auto-complete-sage", + "commit": "f1cd78dcd58d559c47873f8fcfcab089a8493dd6", + "sha256": "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1", + "fetcher": "github", + "repo": "stakemori/auto-complete-sage", + "unstable": { + "version": [ + 20160514, + 751 + ], + "deps": [ + "auto-complete", + "sage-shell-mode" + ], + "commit": "51b8e3905196d266e1f8aa47881189833151b398", + "sha256": "139in1jgxg43v7ji4i1qmxbgspr71h95lzlz0fvdk78vkxc5842b" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "auto-complete", + "sage-shell-mode" + ], + "commit": "a61a4e58b14134712e0737280281c0b10e56da93", + "sha256": "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3" + } + }, + { + "ename": "auto-dictionary", + "commit": "1711d710ac09fe407fde89ee351ccdcb78555d35", + "sha256": "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16", + "fetcher": "github", + "repo": "nschum/auto-dictionary-mode", + "unstable": { + "version": [ + 20150410, + 1610 + ], + "commit": "b364e08009fe0062cf0927d8a0582fad5a12b8e7", + "sha256": "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "0e3567a81f7bb0ad53ed9f20c7d3d1ac40c26ad1", + "sha256": "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk" + } + }, + { + "ename": "auto-dim-other-buffers", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh", + "fetcher": "github", + "repo": "mina86/auto-dim-other-buffers.el", + "unstable": { + "version": [ + 20180612, + 2341 + ], + "commit": "ec74b4803adeadf06296c84595fb6ccf4e1b4a3f", + "sha256": "0l08kx12k97nag8khb63rz5fl1r9gahgmjg5073h25lypl74895n" + } + }, + { + "ename": "auto-highlight-symbol", + "commit": "fdf73ee62f0a4e762e3a1aa94284abea8da8ce7c", + "sha256": "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66", + "fetcher": "github", + "repo": "gennad/auto-highlight-symbol", + "unstable": { + "version": [ + 20130313, + 943 + ], + "commit": "26573de912d760e04321b350897aea70958cee8b", + "sha256": "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c" + } + }, + { + "ename": "auto-indent-mode", + "commit": "49af78177278e7072c70fde0eaa5bb82490ebe9d", + "sha256": "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz", + "fetcher": "github", + "repo": "mattfidler/auto-indent-mode.el", + "unstable": { + "version": [ + 20171222, + 506 + ], + "commit": "28069360a7f89ad0286fd6a53db550752ec58488", + "sha256": "14sqmv320ryfljpxbjw9xphj6bz1ccjk3ih4cm1r8aryyhxiacii" + }, + "stable": { + "version": [ + 0, + 126 + ], + "commit": "ad7032ee058a74405d04d775b0b384351536bc53", + "sha256": "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y" + } + }, + { + "ename": "auto-minor-mode", + "commit": "b3ab5f048034777551e344101d8415cac92362c8", + "sha256": "1dpdylrpw1pvlmhh229b3lqs07drx9kdhw4vcv5a48qah14dz6qa", + "fetcher": "github", + "repo": "joewreschnig/auto-minor-mode", + "unstable": { + "version": [ + 20180527, + 1123 + ], + "commit": "e0e2ceb471a14a3e1763b47619fa4b8faef0be07", + "sha256": "1m96gs55jsjxj4mbx1wv080b809fjw53by67jv3ny70i4xjk36kp" + }, + "stable": { + "version": [ + 20180527, + 1 + ], + "commit": "c62f4e04c7b73835c399f0348bea0ade2720bcbb", + "sha256": "0vqqy6nbb884h8qhzqvjycvfqbm9pbhqxr3dlxrhfx8m6c3iasq1" + } + }, + { + "ename": "auto-org-md", + "commit": "39f934f86b5dc04078c204bcbd268af60857e268", + "sha256": "1yh9g8407kym6r0b8kr18qshxlrkw47ac17a9lvql0ksshfmnqvk", + "fetcher": "github", + "repo": "jamcha-aa/auto-org-md", + "unstable": { + "version": [ + 20180213, + 2343 + ], + "commit": "9318338bdb7fe8bd698d88f3af89b2d6413efdd2", + "sha256": "1dzxc1f4yvj8xww5drcpzmn3fyi8ziimh1cmy6l3i399l1zl0njj" + } + }, + { + "ename": "auto-package-update", + "commit": "78f549a299a06941edce13381f597f3a61e8c723", + "sha256": "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k", + "fetcher": "github", + "repo": "rranelli/auto-package-update.el", + "unstable": { + "version": [ + 20180712, + 2045 + ], + "deps": [ + "dash" + ], + "commit": "55870d313fbe9db40b1a2b59dbc420ba66a9297e", + "sha256": "06hnr7id7w774adip0yffxh6c2xk27j2kch03r8y0v19mnfrvb39" + }, + "stable": { + "version": [ + 1, + 6, + 1 + ], + "deps": [ + "dash" + ], + "commit": "cdef79f9fc6f8347fdd05664978fb9a948ea0410", + "sha256": "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2" + } + }, + { + "ename": "auto-pause", + "commit": "275d1b1bf1eb47cd9c769286c03b2b9aff9d74dd", + "sha256": "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc", + "fetcher": "github", + "repo": "lujun9972/auto-pause", + "unstable": { + "version": [ + 20160426, + 1216 + ], + "commit": "a4d778de774ca3895542cb559a953e0d98657338", + "sha256": "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2" + } + }, + { + "ename": "auto-read-only", + "commit": "189e394eb9fac09783c75ff1b64facdd745a0454", + "sha256": "1cvh2c7pgdxgnl0fr1lymz9pf573hj6dn8cjcb64wdczkrci7yk5", + "fetcher": "github", + "repo": "zonuexe/auto-read-only.el", + "unstable": { + "version": [ + 20170306, + 443 + ], + "deps": [ + "cl-lib" + ], + "commit": "79654f8fc024f383ae7af05487c1345738236500", + "sha256": "123822s9xkzw25swn1h1szxmmajnn9rq85vasygvy5cn2l6lar3l" + } + }, + { + "ename": "auto-rename-tag", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "0ysm559b2p2v2v39cssx5cviy2qb78cjvhmy76hih09qimg2azrz", + "fetcher": "github", + "repo": "elpa-host/auto-rename-tag", + "unstable": { + "version": [ + 20190525, + 628 + ], + "commit": "4bd41b3107d3971c9533f9d0c8718c299669cb78", + "sha256": "1g6kllnl625h6vmnps15a7ivpxq3k6s4vdxj50dj2i76g19wi2cn" + } + }, + { + "ename": "auto-save-buffers-enhanced", + "commit": "d221a217e9f6a686fa2a8b120a1f0b43c4482ce6", + "sha256": "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb", + "fetcher": "github", + "repo": "kentaro/auto-save-buffers-enhanced", + "unstable": { + "version": [ + 20161109, + 710 + ], + "commit": "461e8c816c1b7c650be5f209078b381fe55da8c6", + "sha256": "0ckjijjpqpbv9yrqfnl3x9hcdwwdgvm5r2vyx1a9nk4d3i0hd9i5" + } + }, + { + "ename": "auto-shell-command", + "commit": "ea710bfa77fee7c2688eea8258ca9d2105d1896e", + "sha256": "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j", + "fetcher": "github", + "repo": "ongaeshi/auto-shell-command", + "unstable": { + "version": [ + 20180817, + 1502 + ], + "deps": [ + "deferred", + "popwin" + ], + "commit": "a8f9213e3c773b5687b81881240e6e648f2f56ba", + "sha256": "1b0kgqh521y16cx84rbsr244i4fs3l8h4wqjy2zdpwbpbikx1hxk" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "deferred", + "popwin" + ], + "commit": "59d4abce779a3ce3e920592bf5696b54b2e192c7", + "sha256": "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6" + } + }, + { + "ename": "auto-sudoedit", + "commit": "7cf6bc8bb7b618d74427622b9b2812daa79a3767", + "sha256": "1clp52fqxsilyi62p1cabhan55lbwax6fqlhccyjbl36yrdig3fh", + "fetcher": "github", + "repo": "ncaq/auto-sudoedit", + "unstable": { + "version": [ + 20180915, + 706 + ], + "deps": [ + "f" + ], + "commit": "6e30a349fc8865ffd99b077140611820bf3e48ef", + "sha256": "1mi158sg275ln2drlwqzm28jka96fqkhkylqhay27vgrddnnqyda" + } + }, + { + "ename": "auto-virtualenv", + "commit": "ccb91515d9a8195061429ed8df3471867d211f9a", + "sha256": "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk", + "fetcher": "github", + "repo": "marcwebbie/auto-virtualenv", + "unstable": { + "version": [ + 20170125, + 1917 + ], + "deps": [ + "cl-lib", + "pyvenv", + "s" + ], + "commit": "3826db66b417788e2b2eb138717255b1f52a55c3", + "sha256": "12691m4z0zr3prmdhmjlpcx0ajj1ddrbj9gy827xmgr0vaqbr7b2" + } + }, + { + "ename": "auto-virtualenvwrapper", + "commit": "02a209ae8f9fc68feb3bb64d32d129fedef2b80b", + "sha256": "1v82z922d9sadwvyrl4iddsa19f5k43s6iwn8w146jcl0v42bkmd", + "fetcher": "github", + "repo": "robert-zaremba/auto-virtualenvwrapper.el", + "unstable": { + "version": [ + 20181006, + 937 + ], + "deps": [ + "cl-lib", + "s", + "virtualenvwrapper" + ], + "commit": "72cc9168db475e8328019f9592493560dab832a5", + "sha256": "1cvc2k5x0ircnpppwwmm813h7c59pyswz4dfgwqqrk325zcnp80f" + } + }, + { + "ename": "auto-yasnippet", + "commit": "d33c0aee6a5d27217bbae28fc8f448c3badc8a4b", + "sha256": "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa", + "fetcher": "github", + "repo": "abo-abo/auto-yasnippet", + "unstable": { + "version": [ + 20190326, + 958 + ], + "deps": [ + "yasnippet" + ], + "commit": "624b0d9711222073a2a3f2186e2605eb99fc83c9", + "sha256": "15g8wi067f345xhpi0c12w0h04p4f4lpccwmdjdfj8hzfl4gyxy9" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "yasnippet" + ], + "commit": "5cc54edbe03c0061bf69883a3e39d3bb16019e0f", + "sha256": "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq" + } + }, + { + "ename": "autobookmarks", + "commit": "e40e6ebeb30b3f23ad37a695e011431a48c5a62e", + "sha256": "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp", + "fetcher": "github", + "repo": "Fuco1/autobookmarks", + "unstable": { + "version": [ + 20180531, + 1906 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "e971aa49d97da9f7ed760b37e0b674e45f1c5673", + "sha256": "04453h3s9g7ka028s4f97z606czq3vsvphrmba533jkl8lk3hpi8" + } + }, + { + "ename": "autodisass-java-bytecode", + "commit": "a094845521d76754a29435012af5fba9f7975a8e", + "sha256": "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc", + "fetcher": "github", + "repo": "gbalats/autodisass-java-bytecode", + "unstable": { + "version": [ + 20151005, + 1612 + ], + "commit": "3d61dbe266133c950b39e880f78d142751c7dc4c", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "3d61dbe266133c950b39e880f78d142751c7dc4c", + "sha256": "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s" + } + }, + { + "ename": "autodisass-llvm-bitcode", + "commit": "657e8f6bd0e44f11db8480ca42fb29d85fc3ec29", + "sha256": "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01", + "fetcher": "github", + "repo": "gbalats/autodisass-llvm-bitcode", + "unstable": { + "version": [ + 20150411, + 125 + ], + "commit": "d2579e3a1427af2dc947c343e49eb3434078bf04", + "sha256": "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "14bb1bfe2be3b04d6e0c87a7a9d1e88ce15506d0", + "sha256": "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85" + } + }, + { + "ename": "automargin", + "commit": "0937e63ec686cc3e183bddb029a514c64934fc81", + "sha256": "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8", + "fetcher": "github", + "repo": "zk-phi/automargin", + "unstable": { + "version": [ + 20131112, + 814 + ], + "commit": "4901d969ad69f5244e6300baab4ba04efed800c3", + "sha256": "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962" + } + }, + { + "ename": "autopair", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0l2ypsj3dkasm0lj9jmnaqjs3rv97ldfw8cmayv77mzfd6lhjmh3", + "fetcher": "github", + "repo": "joaotavora/autopair", + "unstable": { + "version": [ + 20160304, + 1237 + ], + "deps": [ + "cl-lib" + ], + "commit": "2b6d72bccb0ebba6e7e711528872b898b0c65b0a", + "sha256": "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "2d1eb81d12f71248ad305e70cceddf08d4fe2b39", + "sha256": "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq" + } + }, + { + "ename": "autotest", + "commit": "5fc2c4a590cbeccfb43003972a78f5d76ec4a9e7", + "sha256": "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy", + "fetcher": "github", + "repo": "zenspider/elisp", + "unstable": { + "version": [ + 20190331, + 2230 + ], + "commit": "d52853e93b40fc54ffd4552df9b8c07ad5446013", + "sha256": "0jdy1lqg3s01dxlpigqm0ss4kid2kzrhhyqm15rlj9s0ghdrbnby" + } + }, + { + "ename": "autotetris-mode", + "commit": "4c5c698b7dfb179f43b9fdf4652b96e2d7f8e7c6", + "sha256": "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb", + "fetcher": "github", + "repo": "skeeto/autotetris-mode", + "unstable": { + "version": [ + 20141114, + 1646 + ], + "deps": [ + "cl-lib" + ], + "commit": "0c3a746dcc304a67d2a6e7ad4ef93f512486343a", + "sha256": "055kzs1qgx8jbwsxrnnqzbl8hgmaigkz3mqll2i0fdac5a605vxc" + } + }, + { + "ename": "autothemer", + "commit": "9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7", + "sha256": "0wahmbihyr3dx4lgiwi7041gvmmqlzlv7ss25fw90srs9n2h05gj", + "fetcher": "github", + "repo": "jasonm23/autothemer", + "unstable": { + "version": [ + 20180920, + 923 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "69488c71dfc182cf2e7be2d745037f230ade678e", + "sha256": "0l3xsnp5j46jcjc1nkfbfg0pyzdi94rn0h5idfpqikj6f3ralh10" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "8c467f57571c154129d660dfccebd151c998f2d9", + "sha256": "0cd2pqh6k32sjidkcd8682y4l6mx52xw4a05f38kk8nsrk28m74k" + } + }, + { + "ename": "autumn-light-theme", + "commit": "52a7598dc550c76f4e081fe1c4a6d8697bd30561", + "sha256": "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a", + "fetcher": "github", + "repo": "aalpern/emacs-color-theme-autumn-light", + "unstable": { + "version": [ + 20150515, + 1447 + ], + "commit": "1e3b2a43a3001e4a97a5ff073ba3f0d2ea3888f9", + "sha256": "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9" + } + }, + { + "ename": "avandu", + "commit": "e1344e49e6a41ce390a047cb8d48090160b37b50", + "sha256": "174bd3vbvh0l9282bg8575nqc71zkg90bwbxbv1b7dz8qaaczhcy", + "fetcher": "github", + "repo": "ryuslash/avandu", + "unstable": { + "version": [ + 20170101, + 1903 + ], + "commit": "f44588d8e747fa880411cb4542cc39962252b90a", + "sha256": "097wls9k6qrf12nn8mpszfbqsaqc81956yqxns1sjs6dmjqi0c7z" + } + }, + { + "ename": "avk-emacs-themes", + "commit": "ef362a76a3881c7596dcc2639df588227b3713c0", + "sha256": "0yimnfm50qsq505fc67b3qnxx2aiyz5a7bw87zkjrdnar12vv144", + "fetcher": "github", + "repo": "avkoval/avk-emacs-themes", + "unstable": { + "version": [ + 20181128, + 745 + ], + "commit": "cadbfb4c9cd6812d63b69076a9d90514bfd2db66", + "sha256": "07isy168fnvyy25z1wwyr6740bmwmff6c3yfcdy7dnypcj9whllr" + } + }, + { + "ename": "avy", + "commit": "77fac7a702d4086fb860514e377037acedc60412", + "sha256": "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag", + "fetcher": "github", + "repo": "abo-abo/avy", + "unstable": { + "version": [ + 20190630, + 1538 + ], + "deps": [ + "cl-lib" + ], + "commit": "66886e265cf41c6061dc70440eb5b61fad8f48e0", + "sha256": "101qbj6cx3358r1hr0jj8y1bsz24ci5qbc8k4lcw35llcsdvaivw" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "f2cf43b5372a6e2a7c101496c47caaf03338de36", + "sha256": "09qdni1s74i5pv8741szl5g4ynj8fxn0x65qmwa9rmfkbimnc0fs" + } + }, + { + "ename": "avy-flycheck", + "commit": "05755bed49219072d2ec98f0be5ecba4deda7cd1", + "sha256": "0xvgysbx8yxhypms6639kk3cn0x6y6njnhnn9lf6hxsi96wd9y96", + "fetcher": "github", + "repo": "magicdirac/avy-flycheck", + "unstable": { + "version": [ + 20160720, + 1500 + ], + "deps": [ + "avy", + "flycheck", + "seq" + ], + "commit": "5522f3bbbed1801d9278ed696ec0cbba38352985", + "sha256": "1nwc8xid0k6bnnpgsrrlwx71a04llkiapjsbchp9jgcf11l5mghw" + } + }, + { + "ename": "avy-menu", + "commit": "2f0b4cfb30c405d44803b36ebcaccef0cf87fe2d", + "sha256": "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw", + "fetcher": "github", + "repo": "mrkkrp/avy-menu", + "unstable": { + "version": [ + 20190713, + 1348 + ], + "deps": [ + "avy" + ], + "commit": "e1d0097edbfc7c1b056323732e341482551ca660", + "sha256": "0kc98ksm7cfpsf21b3hb2xfkiq0y1hnk1i8900gch7gws2q2fml8" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "avy" + ], + "commit": "71b71e64900d0637e17013781042e086e9bf56e7", + "sha256": "1mxrq2fpx3qa9vy121wnv02r43sb7djc2j8z7c2vh8x56h8bpial" + } + }, + { + "ename": "avy-migemo", + "commit": "6a02db29eb3e4b76b4a9cdbc966df5a1bd35dec0", + "sha256": "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296", + "fetcher": "github", + "repo": "momomo5717/avy-migemo", + "unstable": { + "version": [ + 20180716, + 1455 + ], + "deps": [ + "avy", + "migemo" + ], + "commit": "922a6dd82c0bfa316b0fbb56a9d4dd4ffa5707e7", + "sha256": "1a4421h15ba7lsnbh8kqm3hvs06fp830wb1nvwgpsk7vmqqi2qgl" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "avy", + "migemo" + ], + "commit": "ce87777bea76c45be5f185e9fe356a8efe5c2d16", + "sha256": "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9" + } + }, + { + "ename": "avy-zap", + "commit": "10a2a57c78ac1d8ab621031caa21e8574daeb9a0", + "sha256": "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx", + "fetcher": "github", + "repo": "cute-jumper/avy-zap", + "unstable": { + "version": [ + 20190801, + 329 + ], + "deps": [ + "avy" + ], + "commit": "7c8d1f40e43d03e2f6c1696bfa547526528ce8cb", + "sha256": "1b9yc8wkcddd81060r03myxcdxas6vdhgybl44da412p0hx4bccb" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "avy" + ], + "commit": "67fed60d0dfe9087ca4fe3332f4a78e775b8d239", + "sha256": "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309" + } + }, + { + "ename": "aws-ec2", + "commit": "90ac00160cbf692baa1f3953122ac828356944e0", + "sha256": "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd", + "fetcher": "github", + "repo": "Yuki-Inoue/aws.el", + "unstable": { + "version": [ + 20161007, + 1914 + ], + "deps": [ + "dash", + "tblui" + ], + "commit": "5601d4f268fc34b86a02ca90cde7d3771619a368", + "sha256": "15idbbxsghzn737s9jppnx820nnm1srcl1418458hwfy3wqhq38g" + } + }, + { + "ename": "aws-snippets", + "commit": "485aa401a6a14cd4a916474d9a7df12cdf45d591", + "sha256": "1p2il4ig3nafsapa87hgghw6ri9d5qqi0hl8zjyypa06rcnag9g9", + "fetcher": "github", + "repo": "baron42bba/aws-snippets", + "unstable": { + "version": [ + 20190207, + 1047 + ], + "deps": [ + "yasnippet" + ], + "commit": "9cb1edaaa86609b51a7fbf39ec643cc5ae80eaa1", + "sha256": "1rzfzb19h5d0ikysxi0xcbyvv733kdmcmydpc7wwq9qkb31wck56" + } + }, + { + "ename": "axiom-environment", + "commit": "8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf", + "sha256": "1hzfxdwhgv0z9136k7bdjhqjrkawsjmvqch6za6p7nkpd9ikr2zb", + "fetcher": "git", + "url": "https://bitbucket.org/pdo/axiom-environment", + "unstable": { + "version": [ + 20190323, + 1924 + ], + "commit": "505d85ffc051a7725344c960b1255597dab17780", + "sha256": "1251xc58nc2h6n4dibfdp7z85y609dkpc499ga8j9s0nwif009fs" + } + }, + { + "ename": "babel", + "commit": "b0d748fa06b3cbe336cb01a7e3ed7b0421d885cc", + "sha256": "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c", + "fetcher": "github", + "repo": "juergenhoetzel/babel", + "unstable": { + "version": [ + 20181201, + 919 + ], + "commit": "c25dedb5c7f2465b122102f02cd9845668818c20", + "sha256": "1ydb8zbg8n56wf5hb8i3i2s40mspqfkszfdd8v8jjqb5wm8q32rc" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "65b55ad89017c9b3a1c8c241ac4b4541eabdaf5f", + "sha256": "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7" + } + }, + { + "ename": "babel-repl", + "commit": "dfd4ac01ea16fcbc6e9343a953a2f278c5874d3d", + "sha256": "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x", + "fetcher": "github", + "repo": "hung-phan/babel-repl", + "unstable": { + "version": [ + 20160504, + 2201 + ], + "commit": "e619c16e349a1ee7bd0ee0d7f3650d33bff73fc3", + "sha256": "1174r0gjpn5z3pnf32qlpqhmdfvskcd2vqgicvmqzjsrysj3fypn" + } + }, + { + "ename": "back-button", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85", + "fetcher": "github", + "repo": "rolandwalker/back-button", + "unstable": { + "version": [ + 20150804, + 2004 + ], + "deps": [ + "list-utils", + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ], + "commit": "98d92984a740acd1547bd7ed05cca0affdb21c3e", + "sha256": "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l" + }, + "stable": { + "version": [ + 0, + 6, + 6 + ], + "deps": [ + "nav-flash", + "pcache", + "persistent-soft", + "smartrep", + "ucs-utils" + ], + "commit": "c7b50a3e087a8dc5588d7292379cd387a1afff87", + "sha256": "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf" + } + }, + { + "ename": "backlight", + "commit": "4b33ef75760ff02983d8c4c6f98621bb441751c3", + "sha256": "0gzshxs9vw5wrb6pnxdaw5q4c8i0vsmc7wb0y2jyhxsr81mlxdpi", + "fetcher": "github", + "repo": "mschuldt/backlight.el", + "unstable": { + "version": [ + 20180629, + 2159 + ], + "commit": "096e632bf100d318754d6c961c90ebb0ef29dce5", + "sha256": "0w9ng4rhsawcf96mnpy71h50j4mankmvjnfknxlmwiwlmx4sp0f1" + } + }, + { + "ename": "backline", + "commit": "f252e45e8bd6e8af1267755d108f378a974ddaf1", + "sha256": "0y5y048s6r3mcgjfxpmwarnhn6lh00j9cla6qjsd83f79hw5cq4y", + "fetcher": "github", + "repo": "tarsius/backline", + "unstable": { + "version": [ + 20181111, + 832 + ], + "deps": [ + "outline-minor-faces" + ], + "commit": "cfaaaed812674d7e474a8800a7452b4a5ba6d637", + "sha256": "12n4401sbwxq08ifidmxmbpg5877n308lwhwz4f8xbx9yijd0sas" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "outline-minor-faces" + ], + "commit": "ac58abcf0fa818392f5810ffba1243416caf0ae6", + "sha256": "0pzz7dr46k0b0i7f3vi9y3jgx83kcx3shsvaizccg83wz1rhz505" + } + }, + { + "ename": "backup-each-save", + "commit": "caa478356d20b5b0e9a450f7b4a8b25937e583a4", + "sha256": "1l7lx3vd27qypkxa0cdm8zbd9fv08xn1bf6xj6g9c49ql95xbyiv", + "fetcher": "github", + "repo": "conornash/backup-each-save", + "unstable": { + "version": [ + 20180227, + 557 + ], + "commit": "3c414b9d6b278911c95c5b8b71819e6af6f8a02a", + "sha256": "13pliz2ra020hhxcidkyhfa0767n188l1w5r0vpvv6zqyc2p414i" + } + }, + { + "ename": "backup-walker", + "commit": "9428a70292cf6b796d7d994ad6b73d7d45970c19", + "sha256": "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd", + "fetcher": "github", + "repo": "lewang/backup-walker", + "unstable": { + "version": [ + 20130720, + 1516 + ], + "commit": "934a4128c122972ac32bb9952addf279a60a94da", + "sha256": "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v" + } + }, + { + "ename": "backward-forward", + "commit": "cb44d7b604c50d4e07404c0dff071fbc66ea903d", + "sha256": "0kpy761xdk2s21s92cw03fgw5xq9glybrhnjv2v89xrg16vdvamf", + "fetcher": "gitlab", + "repo": "vancan1ty/emacs-backward-forward", + "unstable": { + "version": [ + 20161229, + 550 + ], + "commit": "58489957a62a0da25dfb5df902624d2548d800b4", + "sha256": "14v9q58vd0iggs8x8hjh24cv58g2pbwnr6zghd2anaygbj74ij24" + } + }, + { + "ename": "badger-theme", + "commit": "298e43769c6cd855526d847e8e3b237912360777", + "sha256": "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf", + "fetcher": "github", + "repo": "ccann/badger-theme", + "unstable": { + "version": [ + 20140717, + 232 + ], + "commit": "493d672d5a5478976da7d5ca752008cc7837c57f", + "sha256": "0mrn3sl1xq19k6v4mw98zqgs11fidnarvidmxayx805k21pana6v" + } + }, + { + "ename": "badwolf-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "15n33l0iaq2pk70rpw7qdm8dlwcinfclpnlr3bs7vcb1dknp4g9v", + "fetcher": "github", + "repo": "bkruczyk/badwolf-emacs", + "unstable": { + "version": [ + 20161004, + 715 + ], + "commit": "ea01a3d9358e968f75e3ed15dec6a2a96ce3d9a1", + "sha256": "0a6adsxvmw3mgji17is75jrq3ifmzpch8rwqqyfgc99xzndvab7l" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "24a557f92a702f632901a5b7bee59945a0a8cde9", + "sha256": "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j" + } + }, + { + "ename": "bang", + "commit": "d9830cce42339243091f4463490954a8a955c65f", + "sha256": "1dx1130095ij09ix20jyqradkjw9gpdfpw0d9f3krrx6xjqfn2sk", + "fetcher": "git", + "url": "https://git.sr.ht/~zge/bang", + "unstable": { + "version": [ + 20190727, + 2122 + ], + "commit": "55f3e2a7fc240bf7754dc3de47514095c76f89be", + "sha256": "1mcyvwzbbghz3k9ww0iml55awkkndk57bdvl6apcljwgjqd6rkrb" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "253d4bc87ec6beb12e5c6f5569a354907adb8679", + "sha256": "0gjzzqj46fc2ifzrp33cy4q0wbqdjmwmnc6mq042n1imdg5s0hg3" + } + }, + { + "ename": "banner-comment", + "commit": "4bb69f15cb6be38a86abf4d15450a29c9a819068", + "sha256": "0i5nkfdwfr9mcir2ijdhw563azmr5p7hyl6rfy1r04fzs8j7w2pc", + "fetcher": "github", + "repo": "WJCFerguson/banner-comment", + "unstable": { + "version": [ + 20190606, + 1809 + ], + "commit": "35d3315683d3f97605207691b77e9f447af18fe2", + "sha256": "0f48mvzy5wxx5f975hsqp00p9vmjda2wlxsprws5jgmpn95hbbs8" + }, + "stable": { + "version": [ + 2, + 7 + ], + "commit": "ac52f6b24e590787a385c08cc3751d6f2ddca815", + "sha256": "1630py97ldh3w71s26jbcxk58529g03sl0padnzqj0rbqy82yw8w" + } + }, + { + "ename": "bap-mode", + "commit": "05b1b5885a9d5e3bda38bc8a2f987bffd9353cc0", + "sha256": "1n0sv6d6vnv40iks18vws16psbv83v401pdd8w2d2cfhhsmmi4ii", + "fetcher": "github", + "repo": "fkie-cad/bap-mode", + "unstable": { + "version": [ + 20190401, + 1546 + ], + "commit": "9f493b4ec852ec126c80afefa784f8a8d020e309", + "sha256": "0q4grzhrg52i2a3hq9dgsp9i38wi7jcsr09a6k4sxszrf90n030d" + } + }, + { + "ename": "bar-cursor", + "commit": "932e7b128f092ec724ebf18c9c5ca84e16edc82c", + "sha256": "0f7z3mlnh3p28pmn1bnqbszcy1j68dwm8xra1wz8jgykvrdlyf2s", + "fetcher": "github", + "repo": "ajsquared/bar-cursor", + "unstable": { + "version": [ + 20180227, + 45 + ], + "commit": "20cb59bedc3532a712fe7feeff3660ebd72a8107", + "sha256": "06b0nkcp8yjixps72nrgk2zmljc9f71cdr96jdpgssydfhn4pcdf" + } + }, + { + "ename": "bart-mode", + "commit": "8f9cb09c07cb9fdef15de3e8dbfb6725d97dff6f", + "sha256": "0wyfsf7kqfghnci9rlk9x0rkai6x7hy3vfzkgh7s2yz081p1kfam", + "fetcher": "github", + "repo": "mschuldt/bart-mode", + "unstable": { + "version": [ + 20190601, + 1004 + ], + "commit": "f70b6c42452e47c0c6b3ebd4c90e555a9bedeec7", + "sha256": "0s47ijlnspndia6f1116g6nr6hnirmba6fkvdcvw4qm7mhn5xrc9" + } + }, + { + "ename": "base16-theme", + "commit": "30862f6be74882cfb57fb031f7318d3fd15551e3", + "sha256": "115dhr3gfvdz5wv76fwpv3b4dywiwbk69qrhkfhij8vpcfybrpzx", + "fetcher": "github", + "repo": "belak/base16-emacs", + "unstable": { + "version": [ + 20190722, + 1950 + ], + "commit": "6e7d80859c364c74b6848c3f7679de53620daf43", + "sha256": "1dr1f9w1ysz40m0vra2ig6sr0wh6jbpcwwgnwf5rf5qi3d8g5nxi" + }, + "stable": { + "version": [ + 2, + 2 + ], + "commit": "10180e88d6d9434cec367b6c91222dd2fc3bd8ae", + "sha256": "01w89g413s1da6rf94y1xnhw79cjy2bqb01yfjs58cy492cm0vr6" + } + }, + { + "ename": "bash-completion", + "commit": "8b528544841995045fb1f8344aaaa38946bb3915", + "sha256": "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj", + "fetcher": "github", + "repo": "szermatt/emacs-bash-completion", + "unstable": { + "version": [ + 20190516, + 1854 + ], + "commit": "61592a1ce11efdff1d18bb7675c651a8f914c10d", + "sha256": "09chkvcwy12h24wlb92hjyanrsfc1nc735h8bpi0ffy1i8lxmlfm" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "commit": "6aedd690006e07199b2fcd319b9b840a527650e5", + "sha256": "1a1wxcqzh0javjmxwi3lng5i99xiylm8lm04kv4q1lh9bli6vmv0" + } + }, + { + "ename": "basic-c-compile", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0g595d1vd97b5qqydpb6cr3ibgcm08cw8c154h35vz3cl4w86mwd", + "fetcher": "github", + "repo": "nick96/basic-c-compile", + "unstable": { + "version": [ + 20170302, + 1112 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "0129786aeee50d7bb0020d9fc2b7508875d403e8", + "sha256": "0q6scyva1psyam7jzygqcr1wayf70vrp237hm01q5i9cin8j4j1z" + } + }, + { + "ename": "basic-mode", + "commit": "71801bdc0720f150edeab6796487c753c6e7c3f5", + "sha256": "1l0ylzww7jg6l804fdrklhay4is0wx1drfi9l9wn7gcdjh76mr6g", + "fetcher": "github", + "repo": "dykstrom/basic-mode", + "unstable": { + "version": [ + 20180919, + 1752 + ], + "deps": [ + "seq" + ], + "commit": "812f078240f9de09491701853569335ba6d9b5ff", + "sha256": "1492klgbkxb46x02kmhngccx4p9fmjvf6m4ay89j7pyaixvcqj8v" + } + }, + { + "ename": "basic-theme", + "commit": "451d1b67fefec5d3a346b1261d1284e8df6927a0", + "sha256": "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27", + "fetcher": "github", + "repo": "fgeller/basic-theme.el", + "unstable": { + "version": [ + 20160817, + 827 + ], + "commit": "e2a855bd39f4b78296228d4b790f9123156f7d7e", + "sha256": "1dfk73bkyhmhxnizbcp5zky8qyrgl7cf0dl9y6drqqc1lrcgz3jl" + } + }, + { + "ename": "bats-mode", + "commit": "d742fb825e163beb33c3873aa48a1c411711e312", + "sha256": "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w", + "fetcher": "github", + "repo": "dougm/bats-mode", + "unstable": { + "version": [ + 20160514, + 615 + ], + "commit": "d519f7c89f5ae17dfc33400596df4564b478315f", + "sha256": "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv" + } + }, + { + "ename": "battle-haxe", + "commit": "75781ee881a8f3215ab40d47273c8a9d1fed7949", + "sha256": "02x7hchk3jninas4mybn98m09wn1bfqqdjfq45b6rgw1am6mvvwz", + "fetcher": "github", + "repo": "AlonTzarafi/battle-haxe", + "unstable": { + "version": [ + 20190729, + 1219 + ], + "deps": [ + "async", + "cl-lib", + "company", + "dash", + "dash-functional", + "f", + "helm", + "s" + ], + "commit": "8c6760969fdc2de0598e22b48c7f14202e08519f", + "sha256": "0vrbayhrsb5rvlbrh7wkbgzzx9iwf0cqh04k330diibh9jcn76f4" + } + }, + { + "ename": "bazel-mode", + "commit": "3945f7eba7d5f248cace11a7946262ac2500b01a", + "sha256": "10590pbpg6mwkcwlm01nxf0ypw694h1b57frvn5rnc53al87i586", + "fetcher": "github", + "repo": "codesuki/bazel-mode", + "unstable": { + "version": [ + 20190606, + 800 + ], + "commit": "f07e75fc2dd97ba20e40806927409357aaad2496", + "sha256": "0grbvzqy4x6wh2951jsh5mmbhwbd6j5figqj7v9q5px5alprjqsl" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "6103da2dd9c9461e35a45fc0544ddf33410baa25", + "sha256": "0lbiih6lj7qf2h1l2nxcwfkhdzccrs01lcdqsyhp5hysp0zdcr66" + } + }, + { + "ename": "bbcode-mode", + "commit": "57c307eecfc0fccfdc525ce6ff63a69ff3b78874", + "sha256": "0rrhvwb4hrg2sbjbpgdghcgrc6gwpq3vax28r5mlacn5w5x31qjb", + "fetcher": "github", + "repo": "lassik/emacs-bbcode-mode", + "unstable": { + "version": [ + 20190304, + 2122 + ], + "deps": [ + "cl-lib" + ], + "commit": "e16619c80ea21154b4a4ccc2e13d0077e97c9caf", + "sha256": "0l7jygskxmbckf3xhbjzgwzkrj2m6z1n3i2l7qc9ii4i3mhpx0ai" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "e16619c80ea21154b4a4ccc2e13d0077e97c9caf", + "sha256": "0l7jygskxmbckf3xhbjzgwzkrj2m6z1n3i2l7qc9ii4i3mhpx0ai" + } + }, + { + "ename": "bbdb", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "0mm8n3dbi8lap3pjr97n2f675iy7sg476sm1vxygbc3j67rq1zb2", + "fetcher": "git", + "url": "https://git.savannah.nongnu.org/git/bbdb.git", + "unstable": { + "version": [ + 20190609, + 316 + ], + "commit": "1d26869d2787803672dd412cf658158d6bef0c7b", + "sha256": "1l503z8fklrxxawxf00xbwbw1wyx7bsn2mhm5249h49ckxnqhgcx" + }, + "stable": { + "version": [ + 3, + 2 + ], + "commit": "f18720ff5cd963a0bf6fc0e41293e50c0172b8ae", + "sha256": "1s5qi8njiqdpgnzlik36islzh13zfhybnynqisr61p602pn4ghk7" + } + }, + { + "ename": "bbdb-", + "commit": "01e7a8cc1dde506cb2fcfd9270f15dc61c43ec17", + "sha256": "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf", + "fetcher": "github", + "repo": "aki2o/bbdb-", + "unstable": { + "version": [ + 20140221, + 2354 + ], + "deps": [ + "bbdb", + "log4e", + "yaxception" + ], + "commit": "2839e84c894de2513af41053e80a277a1b483d22", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "bbdb", + "log4e", + "yaxception" + ], + "commit": "2839e84c894de2513af41053e80a277a1b483d22", + "sha256": "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp" + } + }, + { + "ename": "bbdb-csv-import", + "commit": "76ac7178ee5381e08ae881f3fc6061106eeb1c1d", + "sha256": "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm", + "fetcher": "gitlab", + "repo": "iankelling/bbdb-csv-import", + "unstable": { + "version": [ + 20180122, + 49 + ], + "deps": [ + "bbdb", + "dash", + "pcsv" + ], + "commit": "dbc2e0fe9e8ae65e494011044d905ae79b3cee3e", + "sha256": "0n52arydcsmarkpqqwxvw686cypl7iz73kzizirdjhcqmzimx9pl" + } + }, + { + "ename": "bbdb-ext", + "commit": "b1ba0575cb6f0270bab8bf00726842b2a4d0bef3", + "sha256": "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li", + "fetcher": "github", + "repo": "vapniks/bbdb-ext", + "unstable": { + "version": [ + 20151220, + 2013 + ], + "deps": [ + "bbdb" + ], + "commit": "fee97b1b3faa83edaea00fbc5ad3cbca5e791a55", + "sha256": "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g" + } + }, + { + "ename": "bbdb-vcard", + "commit": "dd5d9027c49beae89f78d2a30dfa4bd070dff1bd", + "sha256": "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj", + "fetcher": "github", + "repo": "tohojo/bbdb-vcard", + "unstable": { + "version": [ + 20190410, + 2054 + ], + "deps": [ + "bbdb" + ], + "commit": "853cbcd882be137a5488c70328c25f5982aca657", + "sha256": "0r8xcxvzalf5g12mqy6w7yv34nxd8n2wcqa5ib06nf40n162nrwg" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "9e11fafef1a94bc6395bd1eeacd00f94848ac560", + "sha256": "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df" + } + }, + { + "ename": "bbdb2erc", + "commit": "04867a574773e8794335a2664d4f5e8b243f3ec9", + "sha256": "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd", + "fetcher": "github", + "repo": "unhammer/bbdb2erc", + "unstable": { + "version": [ + 20170221, + 1354 + ], + "deps": [ + "bbdb" + ], + "commit": "15db2bd29df0f6ee32c499fdeffb960b6a7f97a0", + "sha256": "0jlm6qffhh84vy5wmkxmsm5i4dp87cfh7zr5kvrw72zyww986kn4" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "bbdb" + ], + "commit": "f39a36351e1e6f1105c9e32970e7502b77b0dbcd", + "sha256": "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs" + } + }, + { + "ename": "bbyac", + "commit": "92c10c13a1bd19c8bdbca128852d1c91b76f7002", + "sha256": "1pb12b8xrcgyniwqc90z3kr3rq9kkzxjawwcz7xwzymq39fx0897", + "fetcher": "github", + "repo": "baohaojun/bbyac", + "unstable": { + "version": [ + 20180206, + 1441 + ], + "deps": [ + "browse-kill-ring", + "cl-lib" + ], + "commit": "9f0de9cad13801891ffb590dc09f51ff9a7cb225", + "sha256": "0q0i1j8ljfd61rk6d5fys7wvdbym9pz5nhwyfvmm0ijmy19d1ppz" + } + }, + { + "ename": "bdo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1n2kpaps6992nxl0v1003czcbw1k4xq906an56694wkh05az505j", + "fetcher": "github", + "repo": "chrisdone/bdo", + "unstable": { + "version": [ + 20140126, + 901 + ], + "commit": "c96cb6aa9e97fa3491185c50dee0f77a13241010", + "sha256": "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm" + } + }, + { + "ename": "beacon", + "commit": "d09cfab21be800831644218e9c8c4433087951c0", + "sha256": "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq", + "fetcher": "github", + "repo": "Malabarba/beacon", + "unstable": { + "version": [ + 20190104, + 1931 + ], + "deps": [ + "seq" + ], + "commit": "bde78180c678b233c94321394f46a81dc6dce1da", + "sha256": "19m90jjbsjzhzf7phlg79l8d2kxgrqnrrg1ipa3sf7vzxxkmsdld" + }, + "stable": { + "version": [ + 1, + 3, + 4 + ], + "deps": [ + "seq" + ], + "commit": "729338b02a0e331a4faf475da9f54771a3470106", + "sha256": "0mypzfasclq7bmw0i8hfyp8c1ycd3kdgd5h1faygzh9r0phh7ciy" + } + }, + { + "ename": "beeminder", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww", + "fetcher": "github", + "repo": "Sodaware/beeminder.el", + "unstable": { + "version": [ + 20180413, + 1929 + ], + "deps": [ + "org" + ], + "commit": "3fcee7a7003a37171ddb59171c7f4b5dd4b34349", + "sha256": "0phiyv4n5y052fgxngl3yy74akb378sr6manx21s360gnxzcblwd" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "org" + ], + "commit": "3e95a669474e27cd51a16caea030456377f83062", + "sha256": "1bj9yzjvglnb0f4glh8fg478xlm5nqmd9jqm1casdj5m30i4kafn" + } + }, + { + "ename": "beginend", + "commit": "31c1157d4fd9e47a780bbd91075252acdc7899dd", + "sha256": "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq", + "fetcher": "github", + "repo": "DamienCassou/beginend", + "unstable": { + "version": [ + 20190708, + 1856 + ], + "commit": "66e9fbf77fbe248e15a17bd095645a48d40560b4", + "sha256": "0d373cfc6wkb4b5aq42vwr12i47ravhhsyi5zdq90wlqm6c7fbvj" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "a06a479c2279da9e852cf42628b6dfa466fff0bd", + "sha256": "1jbhg73g1rrkbwql5vi2b0ys9avfazmwzwgd90gkzwavw0ch9cvl" + } + }, + { + "ename": "belarus-holidays", + "commit": "6987c5fbafc602ff6b48c347b4e3e7c4471681e8", + "sha256": "0ls4y0bjdz37zvzp2xppsa4qdgmpwkz2l6ycjf9134brdnhm9gqy", + "fetcher": "git", + "url": "https://bitbucket.org/EugeneMakei/belarus-holidays.el", + "unstable": { + "version": [ + 20190102, + 1343 + ], + "commit": "35a18273e19edc3b4c761030ffbd11116483b83e", + "sha256": "1mddjgv2q0sr5v4gxvrzz8y0ybj2bjb5klqsrjajcpbpgbim1qgf" + } + }, + { + "ename": "benchmark-init", + "commit": "54b9ae6fc10b0c56fcc7a0ad73743ffc85a3e9a0", + "sha256": "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal", + "fetcher": "github", + "repo": "dholm/benchmark-init-el", + "unstable": { + "version": [ + 20150905, + 938 + ], + "commit": "7a0f263282bbc86b01b662636306f22813082647", + "sha256": "1kyn1izm5sbqbp9whnhk9dn3yc7zy8bz5san5w3ivi3rpx15fh94" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "7a0f263282bbc86b01b662636306f22813082647", + "sha256": "1kyn1izm5sbqbp9whnhk9dn3yc7zy8bz5san5w3ivi3rpx15fh94" + } + }, + { + "ename": "benchstat", + "commit": "d9180fbedf95f9b1f5810bbf4929dfee513f89e3", + "sha256": "0h2zi4gh23bas1zfj7j2x994lwgd3xyys96ipg1vq7z2b06572k9", + "fetcher": "github", + "repo": "Quasilyte/benchstat.el", + "unstable": { + "version": [ + 20171014, + 312 + ], + "commit": "a5b67cf7972ca2bbc9f5bc6a0f521ab02b76d4f0", + "sha256": "02v5l9qvzcr58qr973phgj1c846pqp3cj16khn4h9v3f3gb180n1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "b39a97f3072c2d3c1d3f86790b9e134d05b8d7e6", + "sha256": "0j508n860dp4in1psnkcriqck6by1jvnscalyff5na8hx6xgyysm" + } + }, + { + "ename": "bert", + "commit": "89635cd11621b04a8575629ec1bf196fb3ea5d43", + "sha256": "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7", + "fetcher": "github", + "repo": "manzyuk/bert-el", + "unstable": { + "version": [ + 20131117, + 1014 + ], + "commit": "a3eec6980a725aa4abd2019e4c00246450260490", + "sha256": "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf" + } + }, + { + "ename": "better-defaults", + "commit": "7bb729c1ad8602a5c0c27e81c9442981a54a924a", + "sha256": "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm", + "fetcher": "github", + "repo": "technomancy/better-defaults", + "unstable": { + "version": [ + 20190224, + 1816 + ], + "commit": "0937ac9a813632c48d114cf959768cda9676db3a", + "sha256": "0zwixak4aysj6hckg7h7qj6ha6n7fb9v66drfpgjcg4ylg500anr" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "90df5752a0a0602feb47aadfd3542aa7fc841bd8", + "sha256": "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr" + } + }, + { + "ename": "better-jumper", + "commit": "b08970e3bd5d64e640158d98d7e3ab5031d82895", + "sha256": "0javbi799yijc3lb4dzkjwj4f4wxxrga9iixik544z98412ia8an", + "fetcher": "github", + "repo": "gilbertw1/better-jumper", + "unstable": { + "version": [ + 20190510, + 1647 + ], + "commit": "2c04d4bc09da88c5b8b276c87d3f9f56e517144e", + "sha256": "1gzmhgr17mvxj1qvcisfq74dbb2rsgzx2wrbjf36jrwfzx7sdjxw" + } + }, + { + "ename": "better-shell", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0si8nj18i3jlhdb8m6f21rmi0lxians34vhw4xhvxw2yr9l85lj6", + "fetcher": "github", + "repo": "killdash9/better-shell", + "unstable": { + "version": [ + 20180625, + 1316 + ], + "commit": "cfcd9d57f87ad68cd72bf4935fd1aaa1d9f059a9", + "sha256": "1z2c2w7p9clijzsfjhcghl76ycy6s0lyymxglzzk7js5np8idmdr" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "f231404b6f8efce33b48e31e5b1566108d0ba000", + "sha256": "1g5bljvigga856ksyvgix9hk0pp9nzic088kp0bqx0zqvcl82v0b" + } + }, + { + "ename": "bf-mode", + "commit": "f7fe1763891c7343c0ad0c7970b8a3c9035b4e8a", + "sha256": "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9", + "fetcher": "github", + "repo": "emacs-jp/bf-mode", + "unstable": { + "version": [ + 20130403, + 1442 + ], + "commit": "7cc4d09aed64d9db6be95646f5f5067de68f8895", + "sha256": "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n" + } + }, + { + "ename": "bfbuilder", + "commit": "3e77dd911b850846f1719b2ee943b74028d94f04", + "sha256": "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7", + "fetcher": "github", + "repo": "zk-phi/bfbuilder", + "unstable": { + "version": [ + 20150924, + 1650 + ], + "deps": [ + "cl-lib" + ], + "commit": "49560bdef131fa5672dab660e0c62376dbdcd906", + "sha256": "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17" + } + }, + { + "ename": "bibclean-format", + "commit": "a96cc66b22e7ec145ffa3031089a3d60e77b8c42", + "sha256": "1lvi1r612jb6w0j6mbq93gk9f7hmb1pn42lfs47gvf0prmjf1zyb", + "fetcher": "github", + "repo": "peterwvj/bibclean-format", + "unstable": { + "version": [ + 20190302, + 2017 + ], + "deps": [ + "reformatter" + ], + "commit": "b4003950a925d1c659bc359ab5e88e4441775d77", + "sha256": "1x5hbs9j4ms93p080267kjyqpk81il3x7q87awf6qzz5xhc20d3b" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "reformatter" + ], + "commit": "b4003950a925d1c659bc359ab5e88e4441775d77", + "sha256": "1x5hbs9j4ms93p080267kjyqpk81il3x7q87awf6qzz5xhc20d3b" + } + }, + { + "ename": "biblio", + "commit": "c5fbaa8c59b0e64d13beb0e0f18b0734afa84f51", + "sha256": "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g", + "fetcher": "github", + "repo": "cpitclaudel/biblio.el", + "unstable": { + "version": [ + 20190624, + 1408 + ], + "deps": [ + "biblio-core" + ], + "commit": "efeeab720cb8e3f95ddb4298d0cc62393cf237e9", + "sha256": "1ikp1899sn8v46ng561nfj7j7vg234l3n8l8xx3gg7yxp2l9g8ms" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "biblio-core" + ], + "commit": "a5a68fcf677f286f205f32dc7486f6c9f66aa6af", + "sha256": "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz" + } + }, + { + "ename": "biblio-bibsonomy", + "commit": "e4867fd81cf56c8a74dcc71774790aa602b068a7", + "sha256": "0xfycxsslmr5si636l9pv9w5s5hmlk3253wq2vg8dm7b7ag5gr4s", + "fetcher": "github", + "repo": "andreasjansson/biblio-bibsonomy.el", + "unstable": { + "version": [ + 20190105, + 1200 + ], + "deps": [ + "biblio-core" + ], + "commit": "778cc944db3c6dababe2e7fec5877fba42e8c00d", + "sha256": "0141nphan49br71bx89ias78wvchfsir3snssn3kf6l97ha1afgn" + } + }, + { + "ename": "biblio-core", + "commit": "f4f086d3e8fd6a95ce198e148cd3ede35dd73fb8", + "sha256": "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97", + "fetcher": "github", + "repo": "cpitclaudel/biblio.el", + "unstable": { + "version": [ + 20190624, + 1408 + ], + "deps": [ + "dash", + "let-alist", + "seq" + ], + "commit": "efeeab720cb8e3f95ddb4298d0cc62393cf237e9", + "sha256": "1ikp1899sn8v46ng561nfj7j7vg234l3n8l8xx3gg7yxp2l9g8ms" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "dash", + "let-alist", + "seq" + ], + "commit": "a5a68fcf677f286f205f32dc7486f6c9f66aa6af", + "sha256": "1gxjind6r235az59dr8liv03d8994mqb8a7m28j3c12q7p70aziz" + } + }, + { + "ename": "bibliothek", + "commit": "8b8308e72c4437237fded29db1f60b3eba0edd26", + "sha256": "011wnya65vfnn17fn1vhq0sk8c1mli81x0nb44yi6zl1hwxivb55", + "fetcher": "github", + "repo": "cadadr/elisp", + "unstable": { + "version": [ + 20190124, + 1828 + ], + "deps": [ + "a", + "pdf-tools" + ], + "commit": "1c4b082f6f19c2563dbfbc48b996a915843624bb", + "sha256": "10ys10m6mxyh7hblsqcpjmglnh9lwzl9b6bmbcankpvrl0zh094z" + } + }, + { + "ename": "bibretrieve", + "commit": "e548e0cf8babaf32f1db58099599a72cebdbb84d", + "sha256": "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii", + "fetcher": "github", + "repo": "pzorin/bibretrieve", + "unstable": { + "version": [ + 20190725, + 1539 + ], + "deps": [ + "auctex" + ], + "commit": "3a21f5b349b7c83fc9dcaf8773ee7b4749599f0d", + "sha256": "0ppaajc559lv9aqk3jlcjm2id2wj6qiby9hq9kmc1avfns25cp30" + } + }, + { + "ename": "bibslurp", + "commit": "67f473e839d6325f193c641792671f43fbf83b6d", + "sha256": "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp", + "fetcher": "github", + "repo": "mkmcc/bibslurp", + "unstable": { + "version": [ + 20151202, + 2346 + ], + "deps": [ + "dash", + "s" + ], + "commit": "aeba96368f2a06959e4fe945375ce2a54d34b189", + "sha256": "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823" + } + }, + { + "ename": "bibtex-utils", + "commit": "5764b6a880e8143db66e9011cc1c2bf0bcd61082", + "sha256": "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l", + "fetcher": "github", + "repo": "plantarum/bibtex-utils", + "unstable": { + "version": [ + 20190703, + 2117 + ], + "commit": "26a8f0909b6adbf545a2b5e57ce7f779bf7a65af", + "sha256": "19p9v49j7yq41wifw34nwxhqnv18zjqzy6z8xbwm1j7fn78lafk3" + } + }, + { + "ename": "bicycle", + "commit": "ec9b4138ffaf81b556e01b85ce4b112e77909260", + "sha256": "16ikqbmsjyknj3580wdnp8ffs85bq9idf9hvxm0ihgw5gy469xqj", + "fetcher": "github", + "repo": "tarsius/bicycle", + "unstable": { + "version": [ + 20180909, + 2126 + ], + "commit": "ab81d259a71827ff54872c64d13d56aedc9a212e", + "sha256": "1hjd7syqvg13yji2w5a6fjgg4gjka2rk7lc7m1d7w05dw1ad76jh" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "42a5db3514019d539500a67f913411f5533a1eb3", + "sha256": "1nanf0dp7kqzs2mc8gzr9qzn9v6q86sdr35pzysdl41xqydxpsrd" + } + }, + { + "ename": "bifocal", + "commit": "79e71995bd8452bad2e717884f148ec74c9735fc", + "sha256": "07qrxsby611l3cwsmw3d53h1n7cd1vg53j4vlc2isg56l2m4qks5", + "fetcher": "github", + "repo": "riscy/bifocal-mode", + "unstable": { + "version": [ + 20190623, + 2236 + ], + "commit": "c354fc32b0a666203f5c546bb2d2c397cb003391", + "sha256": "0wzsbrj1rhfl6qgjnphbh6ijfbjdr2wid7mqzz49ykcb9ldm7kjj" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "commit": "add30c678488cec04976a85ba8cda20805938a01", + "sha256": "01j8s6c3qm4scxy1dk07l41y0n55gz83zzfi254kc2vyx02vqg7f" + } + }, + { + "ename": "binclock", + "commit": "95dfa38d795172dca6a09cd02e21630747723949", + "sha256": "1s0072kcd1xp8355j8aph94gb3a1wqmzx1hhfp9d6bzqf6cij8gk", + "fetcher": "github", + "repo": "davep/binclock.el", + "unstable": { + "version": [ + 20170802, + 1116 + ], + "deps": [ + "cl-lib" + ], + "commit": "87042230d7f3fe3e9a77fae0dbab7d8f7e7794ad", + "sha256": "0bbcn3aif3qvmgbga7znivcbgn1n79278x7xvbha52zpj584xp8d" + }, + "stable": { + "version": [ + 1, + 11 + ], + "deps": [ + "cl-lib" + ], + "commit": "b964e437311e5406a31c0ec7038b3bf1fd02b876", + "sha256": "0ljxb70vx7x0yn8y1ilf4phk0hamprl43dh23fm3njqqgw60hzbk" + } + }, + { + "ename": "bind-chord", + "commit": "6240afa625290187785e4b7535ee7b0d7aad8969", + "sha256": "1hyhs3iypyg5730a20axcfzrrglm4nbgdz8x1ifkaa0iy5zc9hb0", + "fetcher": "github", + "repo": "jwiegley/use-package", + "unstable": { + "version": [ + 20171204, + 2010 + ], + "deps": [ + "bind-key", + "key-chord" + ], + "commit": "1d5ffb2e0d1427066ced58febbba68c1328bf001", + "sha256": "1a8zpi9pkgp8qkm6qxyzaj3k1s25z3x034mgjqp2mpd7ij76mk8v" + }, + "stable": { + "version": [ + 2, + 4 + ], + "deps": [ + "bind-key", + "key-chord" + ], + "commit": "39a8b8812c2c9f6f0b299e6a04e504ef393694ce", + "sha256": "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y" + } + }, + { + "ename": "bind-key", + "commit": "d39d33af6b6c9af9fe49bda319ea05c711a1b16e", + "sha256": "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm", + "fetcher": "github", + "repo": "jwiegley/use-package", + "unstable": { + "version": [ + 20180513, + 430 + ], + "commit": "1d5ffb2e0d1427066ced58febbba68c1328bf001", + "sha256": "1a8zpi9pkgp8qkm6qxyzaj3k1s25z3x034mgjqp2mpd7ij76mk8v" + }, + "stable": { + "version": [ + 2, + 4 + ], + "commit": "39a8b8812c2c9f6f0b299e6a04e504ef393694ce", + "sha256": "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y" + } + }, + { + "ename": "bind-map", + "commit": "f58800af5965a6e7c9314aa00e971196ea0d036e", + "sha256": "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358", + "fetcher": "github", + "repo": "justbur/emacs-bind-map", + "unstable": { + "version": [ + 20161207, + 1511 + ], + "commit": "bf4181e3a41463684adfffc6c5c305b30480e30f", + "sha256": "0vrk17yg3jbww92p433p64ijmjf7cjg2wmzi9w418235w1xdfzz8" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "bf4181e3a41463684adfffc6c5c305b30480e30f", + "sha256": "0vrk17yg3jbww92p433p64ijmjf7cjg2wmzi9w418235w1xdfzz8" + } + }, + { + "ename": "bing-dict", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1cqjndq8xm2bwjvdj95dn377bp9r6rrkp1z4a45faj408mipahli", + "fetcher": "github", + "repo": "cute-jumper/bing-dict.el", + "unstable": { + "version": [ + 20190723, + 122 + ], + "commit": "52718ae3a3abfa5e5457239ee7ddf8f0c23a79a7", + "sha256": "1kn8kmljn0pj0hz7dj7r7nxw43xd6acndaqq92d02mla12hiqayz" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "commit": "52718ae3a3abfa5e5457239ee7ddf8f0c23a79a7", + "sha256": "1kn8kmljn0pj0hz7dj7r7nxw43xd6acndaqq92d02mla12hiqayz" + } + }, + { + "ename": "birds-of-paradise-plus-theme", + "commit": "3932853232c269f158806aebe416b456c752a9bb", + "sha256": "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m", + "fetcher": "github", + "repo": "jimeh/birds-of-paradise-plus-theme.el", + "unstable": { + "version": [ + 20130419, + 2129 + ], + "commit": "bb9f9d4ef7f7872a388ec4eee1253069adcadb6f", + "sha256": "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "ba2c4443388a73f2c5e2de0c24d3106676aeb6fa", + "sha256": "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn" + } + }, + { + "ename": "bison-mode", + "commit": "d08592cabbc0779c67c260f9648d2273c0dd9e3e", + "sha256": "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66", + "fetcher": "github", + "repo": "Wilfred/bison-mode", + "unstable": { + "version": [ + 20160617, + 552 + ], + "commit": "314af3b7af7eb897fd3932616cb8600a85228cea", + "sha256": "0ymjgwyi73vl81i7v1g2ad09lxp4mhp47r6zcijqa5hbx9l1skik" + } + }, + { + "ename": "bitbake", + "commit": "da099b66180ed537f8962ab4ca727d2441f9691d", + "sha256": "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah", + "fetcher": "github", + "repo": "canatella/bitbake-el", + "unstable": { + "version": [ + 20190107, + 1155 + ], + "deps": [ + "dash", + "mmm-mode", + "s" + ], + "commit": "4896ff48712a6be37009605ba697a7104462e2fd", + "sha256": "0hrqgi3xck8sfs56igxhmvb3vpwm8kj00sqi6f13r7szpxy6cnrq" + } + }, + { + "ename": "bitbucket", + "commit": "9cf87389e6a5d868850d27e077202e1e52eaf4aa", + "sha256": "1d0v6hvmxky3k2m89b7xm1igx9fmzvhdpn1bi8zln61m4zgr3yz0", + "fetcher": "github", + "repo": "tjaartvdwalt/bitbucket.el", + "unstable": { + "version": [ + 20170405, + 446 + ], + "deps": [ + "request", + "s" + ], + "commit": "5e663da1bd38a14c1ecf4d66a79d4321ac833bcf", + "sha256": "1sikayb6i1k40zdl4j9n04xcmsf74py5vmcjbvli7k8b3ar7l5l5" + } + }, + { + "ename": "bitlbee", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f", + "fetcher": "github", + "repo": "pjones/bitlbee-el", + "unstable": { + "version": [ + 20151203, + 0 + ], + "commit": "3a92a4119e0c007df2c7dcf1b1c3a5f23ee40e05", + "sha256": "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9" + } + }, + { + "ename": "blackboard-bold-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "08fmzm5lblkk503zr4d6hkp45075pwwd8zinngasrsf1r01isksj", + "fetcher": "github", + "repo": "grettke/blackboard-bold-mode", + "unstable": { + "version": [ + 20160813, + 206 + ], + "deps": [ + "cl-lib" + ], + "commit": "5299cb064ba71baa3e331b8560bf8dd38cbbc4ed", + "sha256": "00xbcgx4snz4sd7q7ys24rsnf5wdxjn402v8y5dgn4ayx88y1rrj" + } + }, + { + "ename": "blackboard-theme", + "commit": "eca8cbcc1282bb061f769daf86b1938d1f30f704", + "sha256": "19cnfxrm85985ic55y5x7nwxdynjp7djyd33dhj8r7s92cs25fn7", + "fetcher": "github", + "repo": "don9z/blackboard-theme", + "unstable": { + "version": [ + 20161216, + 656 + ], + "commit": "d8b984f2541bb86eb4363a2b4c94631e49843d4a", + "sha256": "1jh2960yab6rhdq7ci1slpmnr43619cza0g8bfbq759yz5b7xryh" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "d8b984f2541bb86eb4363a2b4c94631e49843d4a", + "sha256": "1jh2960yab6rhdq7ci1slpmnr43619cza0g8bfbq759yz5b7xryh" + } + }, + { + "ename": "blacken", + "commit": "69d9802996a338be937d61678f2cadf3497f6b85", + "sha256": "16lbs76jkhcq0vg09x1n8mrd4pgz5bdjsprr9260xr7g3dx8xacc", + "fetcher": "github", + "repo": "proofit404/blacken", + "unstable": { + "version": [ + 20190521, + 841 + ], + "commit": "1874018ae242176d0780cdcd0109e8f9a123a914", + "sha256": "1zgx7j4cp51r2cdlyf744jgfpid4lz7fwwjxbm6cvcp9hv57v7wz" + } + }, + { + "ename": "blgrep", + "commit": "e78ed9dc4a7ff57524e79213973157ab364ae14d", + "sha256": "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm", + "fetcher": "github", + "repo": "ataka/blgrep", + "unstable": { + "version": [ + 20150401, + 1416 + ], + "deps": [ + "clmemo" + ], + "commit": "605beda210610a5829750a987f5fcebea97af546", + "sha256": "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0" + } + }, + { + "ename": "blimp", + "commit": "4fe28626950659c5ba4aa9cc7ba6126ce4737fb7", + "sha256": "1k70x0gs9ns7652ahq2b8fhmichsmajzqmm46v1imji238zr7kb1", + "fetcher": "github", + "repo": "walseb/blimp", + "unstable": { + "version": [ + 20180903, + 2240 + ], + "deps": [ + "eimp" + ], + "commit": "a4c538c52f2371f4a184e4c905584c6decf7b407", + "sha256": "1vzpigvkzcglanardsy0pi8ficsdxrfgwnh1jyx12pnxzqyb879m" + } + }, + { + "ename": "bliss-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh", + "fetcher": "github", + "repo": "emacsfodder/emacs-bliss-theme", + "unstable": { + "version": [ + 20170808, + 1307 + ], + "commit": "c3cf6d8a666ab26909b7da158f9e94df71a5fbbf", + "sha256": "1bpyhsjfdjfa1iw9kv7fsl30vz48qllqgjg1rsxdl3vcripcbc9z" + } + }, + { + "ename": "bln-mode", + "commit": "ee12ef97df241b7405feee69c1e66b3c1a67204b", + "sha256": "0w4abaqx9gz04ls1hn1qz8qg9jpvi80b9jb597ddjcbnwqq9z83r", + "fetcher": "github", + "repo": "mgrachten/bln-mode", + "unstable": { + "version": [ + 20181121, + 918 + ], + "commit": "a601b0bf975dd1432f6552ab6afe3f4f71133b4a", + "sha256": "19y1fs5bzp2sqvh6svmj0cpvgq13zmsn852027hi11zvwi6dzqz8" + } + }, + { + "ename": "blockdiag-mode", + "commit": "2a0adb94f2a435e846944a1c544e6591b131a10e", + "sha256": "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya", + "fetcher": "github", + "repo": "xcezx/blockdiag-mode", + "unstable": { + "version": [ + 20160427, + 524 + ], + "commit": "f3b21ba433d60327cebd103ae4492200750e24a9", + "sha256": "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy" + } + }, + { + "ename": "blog-admin", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk", + "fetcher": "github", + "repo": "CodeFalling/blog-admin", + "unstable": { + "version": [ + 20170923, + 1409 + ], + "deps": [ + "cl-lib", + "ctable", + "f", + "names", + "s" + ], + "commit": "b5f2e1dad7d68ec903619f7280bb0bcb7e398a1e", + "sha256": "0fgzmmjxhl8i9yqx1bvb7hgkk9w4ylx73xy990qf1bl7fg21v636" + } + }, + { + "ename": "blog-minimal", + "commit": "56217a33b0669a782621dd65d83419ae371ed60a", + "sha256": "1qj25b6n3slvmbqvzfd37v4xmy1vvz37686jdr29bw5qk4prgxff", + "fetcher": "github", + "repo": "thiefuniverse/blog-minimal", + "unstable": { + "version": [ + 20181021, + 849 + ], + "deps": [ + "ht", + "mustache", + "org", + "s", + "simple-httpd" + ], + "commit": "356c878322258159021eecdd15757e11cf02e335", + "sha256": "1phiraki6l6bp7mw90spw0r99wahl47ycpz0lxr3zljb5ip8jddp" + } + }, + { + "ename": "bm", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g", + "fetcher": "github", + "repo": "joodland/bm", + "unstable": { + "version": [ + 20190527, + 2110 + ], + "commit": "637dacf4cb9112fdfb949706a704dd53cbe79c7e", + "sha256": "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn" + }, + "stable": { + "version": [ + 201905 + ], + "commit": "637dacf4cb9112fdfb949706a704dd53cbe79c7e", + "sha256": "180b3rc13asrmsdh7v405d54jkrininvaj52xhp71vw91ng51dkn" + } + }, + { + "ename": "bmx-mode", + "commit": "7f456d2b2b8f5a33bcb0f2ffd19e6e0276950f24", + "sha256": "04g8l4cw20k3yhbija9mz1l4nx3bzhzj7nb35s0xdyvwbc2mhrwb", + "fetcher": "github", + "repo": "josteink/bmx-mode", + "unstable": { + "version": [ + 20180929, + 1132 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "s" + ], + "commit": "536b332edc3b98cc97588c937c7368803ba5961c", + "sha256": "0hbkh4fb1cb1fd7fq1999i9rffr2xc0l16b0m5sajcrsir3gq4nr" + } + }, + { + "ename": "bnf-mode", + "commit": "217bde4ccd2d68dc14b1bfee22fbc99cd4109952", + "sha256": "027pn2lvqsxyj9ii5svql2sw4xm9wrd9zy7ms8vayv737w5xd3n1", + "fetcher": "github", + "repo": "sergeyklay/bnf-mode", + "unstable": { + "version": [ + 20190611, + 519 + ], + "deps": [ + "cl-lib" + ], + "commit": "eb1a2edb2d798e9fb84fcefb7b646f1c5edc18e9", + "sha256": "0s7rq0mhc2kxczs3v2k71zq9imndxw8b4aw1m8zzgbbnq9qn0q3f" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "2f217ecf76fa775da4b28de7dd2b615460d9f8ad", + "sha256": "17nhy9mwaji230d3dhi3d40wibqviapa5h60mlm20mc5b2vb0vyd" + } + }, + { + "ename": "bnfc", + "commit": "7871b6372a391ace76edea40c6f92ceb10b70bf9", + "sha256": "0h6qhyi7vcikg7zhv8lywdz033kp27a8z1ymq5wgs4aqs184igm6", + "fetcher": "github", + "repo": "jmitchell/bnfc-mode", + "unstable": { + "version": [ + 20160605, + 1927 + ], + "commit": "1b58df1dd0cb9b81900632fb2843a03b94f56fdb", + "sha256": "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "1b58df1dd0cb9b81900632fb2843a03b94f56fdb", + "sha256": "0lmqrcy80nw6vmf81kh6q39x8pwhzrj6lbk31xpl8mvwnpqaykmn" + } + }, + { + "ename": "bog", + "commit": "19fd0bf2f8e52c79120c492a6dcabdd51b465d35", + "sha256": "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl", + "fetcher": "github", + "repo": "kyleam/bog", + "unstable": { + "version": [ + 20180815, + 2213 + ], + "deps": [ + "cl-lib" + ], + "commit": "b5df3647f55359f8546dcfa991a351673a069a49", + "sha256": "1rfv036wzlrbqbki5i24871a9f2h6zk7yqd1lq6gnqrc4y7m477c" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "6ed4d3edbe771e586d873b826330f3ef23aa1611", + "sha256": "0s4jwlaq3mqyzkyg3x4nh4nx7vw825jhz7ggakay7a2cfvpa4i2j" + } + }, + { + "ename": "bolt-mode", + "commit": "ec9e35f0e37db90d906fccd08fb25b673c88d3b8", + "sha256": "03x89k8v0m9kv1fhyys2gwympb70qlmg7gdib8wsmdxs34ys5igz", + "fetcher": "github", + "repo": "mpontus/bolt-mode", + "unstable": { + "version": [ + 20180310, + 810 + ], + "commit": "85a5a752bfbebb4aed884326c25db64c000e9934", + "sha256": "03nxcmpm5n8jcca39ivrl7cjqz3gzsl3w6qc30hcp278qf2jq6va" + } + }, + { + "ename": "bongo", + "commit": "692428769cd792dc0644641682c2793103dd00c6", + "sha256": "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv", + "fetcher": "github", + "repo": "dbrock/bongo", + "unstable": { + "version": [ + 20190722, + 1644 + ], + "deps": [ + "cl-lib" + ], + "commit": "9afbf269d33cd3196962423a2c261824611cffe4", + "sha256": "1nszph9mn98flyhn1jq3y6mdh6jymjkvj5ng36ql016dj92apvhv" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "9afbf269d33cd3196962423a2c261824611cffe4", + "sha256": "1nszph9mn98flyhn1jq3y6mdh6jymjkvj5ng36ql016dj92apvhv" + } + }, + { + "ename": "bonjourmadame", + "commit": "34c4cfd7bbf5b442a9304598ba0a23ba9b8dfae4", + "sha256": "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn", + "fetcher": "github", + "repo": "pierre-lecocq/bonjourmadame", + "unstable": { + "version": [ + 20170919, + 1134 + ], + "commit": "d3df185fce78aefa689fded8e56a654f0fde4ac0", + "sha256": "1acn63hd7s2z8viy52hmhncdic7m86rcqczxnz9aivikqy4hfnsi" + } + }, + { + "ename": "boogie-friends", + "commit": "5bdd06b82d002677c046876642efe1dc01bc3e77", + "sha256": "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7", + "fetcher": "github", + "repo": "boogie-org/boogie-friends", + "unstable": { + "version": [ + 20190710, + 2300 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "flycheck", + "yasnippet" + ], + "commit": "a7536291e4ef1e97d369b1b76b6a31906ef5e348", + "sha256": "1cq2dg71lavn4xp2pmvz784ir0lqyb4hhsj2893kllvm912hw3a6" + } + }, + { + "ename": "bool-flip", + "commit": "f56377a7c3f4b75206ad9ba570c35dbf752079e9", + "sha256": "1xfspqxshx7m8gh6g1snkaahka9f71fnq7hx81nik4s9s8pmxj9c", + "fetcher": "github", + "repo": "michaeljb/bool-flip", + "unstable": { + "version": [ + 20161215, + 1539 + ], + "commit": "f58a9a7b9ab875bcfbd57c8262697ae404eb4485", + "sha256": "06q86a6dhc7jvq25yqqq3dsmrbm67h0ayb6nhd0q5l90yrmfqfjh" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "0f7cc9b387429239fb929896511727d4e49a795b", + "sha256": "1051gy7izy25jwh079231d4lh9azchbqc6nvfrkv8s9ck407a65a" + } + }, + { + "ename": "boon", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb", + "fetcher": "github", + "repo": "jyp/boon", + "unstable": { + "version": [ + 20190720, + 2129 + ], + "deps": [ + "dash", + "expand-region", + "multiple-cursors" + ], + "commit": "e482b889cc652b25508c3ac0ddeff35f3140bf73", + "sha256": "12axjkmcnclpzbzvf6nfaswjdj7r68gjx3x5lkk08w9361f4yxz1" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash", + "expand-region", + "multiple-cursors" + ], + "commit": "d9f0545708bbbbe3df23b2b91cdd2824beb0df56", + "sha256": "0crqwyhzkwpi7c0rqcgmgqx6g4f8fw9gd9nh0ii6p5agiw140yj8" + } + }, + { + "ename": "borg", + "commit": "878ab90d444f3a1fd2c9f9068ca7b477e218f1da", + "sha256": "0gn4hf7hn190gl0kg59nr6jzjnb39c0hy9b3brrsfld9hyxga9jr", + "fetcher": "github", + "repo": "emacscollective/borg", + "unstable": { + "version": [ + 20190717, + 1753 + ], + "deps": [ + "dash", + "epkg", + "magit" + ], + "commit": "c177e602cc41dca7b885f0d443d3cb46577f92cd", + "sha256": "15zn7var3cjd479snw4mw0z92lsmm4k3l68nkjmnxih9y5dhhiah" + }, + "stable": { + "version": [ + 3, + 1, + 1 + ], + "deps": [ + "dash", + "epkg", + "magit" + ], + "commit": "940af3d437b299ef81ce73da4e4ec8c2f52d7a79", + "sha256": "0lg2inxzfz6pcblynna4fyi5lxnmbrpl095d6574d0pnn22zdx5a" + } + }, + { + "ename": "borland-blue-theme", + "commit": "f2ff5916fd2caee778479bc2ad3ef13ee514052c", + "sha256": "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx", + "fetcher": "github", + "repo": "fourier/borland-blue-theme", + "unstable": { + "version": [ + 20160117, + 1321 + ], + "commit": "db74eefebbc89d3c62575f8f50b319e87b4a3470", + "sha256": "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5" + } + }, + { + "ename": "boron-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81", + "fetcher": "github", + "repo": "emacsfodder/emacs-boron-theme", + "unstable": { + "version": [ + 20170808, + 1308 + ], + "commit": "87ae1a765e07429fec25d2f29b004f84b52d2e0a", + "sha256": "1kdf71af1s67vshgwkdgi7swxx942i605awhmhrhdjbkra29v4yn" + } + }, + { + "ename": "boxquote", + "commit": "d2148f8f17b16154bfc337df69a5ad31e25a9b05", + "sha256": "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s", + "fetcher": "github", + "repo": "davep/boxquote.el", + "unstable": { + "version": [ + 20170802, + 1117 + ], + "deps": [ + "cl-lib" + ], + "commit": "7e47e0e2853bc1215739b2e28f260e9eed93b2c5", + "sha256": "1aqhg24gajvllbqxb0zxrnx6sddas37k2ldfinqyszd856sjhsg3" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "b6a4ad3ee5b327bd3b1bf65f8733bd301fe59883", + "sha256": "1f61k3sw9zvn6jq60ygi6p66blr52497fadimzcaspa79k9y1cfm" + } + }, + { + "ename": "bpe", + "commit": "1a99263c2672d4c2433835cf948101130126e14b", + "sha256": "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm", + "fetcher": "github", + "repo": "yuutayamada/bpe", + "unstable": { + "version": [ + 20141228, + 2205 + ], + "commit": "7b5b25f83506e6c9f4075d3803fa32404943a189", + "sha256": "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0" + } + }, + { + "ename": "bpftrace-mode", + "commit": "560a126db20ff4da100eeb3edaa0716d7a27eb94", + "sha256": "1p1d5xnypfq1lbrkn9i9sdwkyxyrg92f069r21f7nf6a4r2dlf9s", + "fetcher": "gitlab", + "repo": "jgkamat/bpftrace-mode", + "unstable": { + "version": [ + 20190608, + 2201 + ], + "commit": "587b39ea7a1d786df5c04796d51bf2a5a4eda0d7", + "sha256": "0bvg2vpak2bv3s7wc0zzrqb3pys5s7vi6rs7k7l4fmaj5amaq9vb" + } + }, + { + "ename": "bpr", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2", + "fetcher": "github", + "repo": "ilya-babanov/emacs-bpr", + "unstable": { + "version": [ + 20180220, + 1844 + ], + "commit": "7f3c787ed80ac0e83447192ac5450dfa7110ade1", + "sha256": "1jb14vd1d35jk3mnb2ja293p2l57yvi7w1idrajapz41ggvfyqbb" + } + }, + { + "ename": "bracketed-paste", + "commit": "6446db573d97ceb21cd39ce05fb39627113bbd74", + "sha256": "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j", + "fetcher": "github", + "repo": "hchbaw/bracketed-paste.el", + "unstable": { + "version": [ + 20160407, + 2348 + ], + "commit": "843ce3bbb63d560face889e13a57a2f7543957d5", + "sha256": "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m" + } + }, + { + "ename": "brainfuck-mode", + "commit": "279ae8faabbfa2f894999e1534a964606722a150", + "sha256": "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd", + "fetcher": "github", + "repo": "tom-tan/brainfuck-mode", + "unstable": { + "version": [ + 20150113, + 842 + ], + "deps": [ + "langdoc" + ], + "commit": "36e69552bb3b97a4f888d362c59845651bd0d492", + "sha256": "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd" + } + }, + { + "ename": "broadcast", + "commit": "6ed51896112e702a8b853059884aad50d37738c2", + "sha256": "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib", + "fetcher": "github", + "repo": "killdash9/broadcast.el", + "unstable": { + "version": [ + 20151205, + 212 + ], + "commit": "f6f9cd2e0e3f8c31d6b8e7446c27eb0e50b25f16", + "sha256": "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj" + } + }, + { + "ename": "browse-at-remote", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0s088ba047azba60rlfn3jbqr321vnm953i7dqw2gj9xml90kbm4", + "fetcher": "github", + "repo": "rmuslimov/browse-at-remote", + "unstable": { + "version": [ + 20190213, + 1929 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "1a9392e9d1fad4e1aafb25b68b4e6857fde8f564", + "sha256": "1shpkzyg0lf3s5199qhy7kcanx55yk27sgbsc1pbkv0crkh8dv14" + }, + "stable": { + "version": [ + 0, + 10, + 0 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "47bab994640f086939c30cc6416e770ad067e950", + "sha256": "0vhia7xmszcb3lxrb8wh93a3knjfzj48h8nhj4fh8zj1pjz6args" + } + }, + { + "ename": "browse-kill-ring", + "commit": "294dc32a672e6b6b0ebfc46cdf0ff9ceacf73e89", + "sha256": "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4", + "fetcher": "github", + "repo": "browse-kill-ring/browse-kill-ring", + "unstable": { + "version": [ + 20171219, + 1908 + ], + "commit": "8debc43e41d7e51532698331c6f283905890b904", + "sha256": "18yg35raks0kbzg5wjay6liingdcv4glyzl9n14sgr9vzc7h96f9" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "2a7acf98c348c4f405a6b2ab216224ca14915be8", + "sha256": "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b" + } + }, + { + "ename": "browse-url-dwim", + "commit": "a082c2dc0458e3007a947923f5b97e88217199e8", + "sha256": "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf", + "fetcher": "github", + "repo": "rolandwalker/browse-url-dwim", + "unstable": { + "version": [ + 20140731, + 1922 + ], + "deps": [ + "string-utils" + ], + "commit": "3d611dbb167c286109ac53995ad68286d87aafb9", + "sha256": "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy" + }, + "stable": { + "version": [ + 0, + 6, + 8 + ], + "deps": [ + "string-utils" + ], + "commit": "11f1c53126619c7ef1bb5f5d6914ce0b3cce0e30", + "sha256": "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y" + } + }, + { + "ename": "brutalist-theme", + "commit": "ec889956a5685c3a60003ad2bfa04b03b57aa8e8", + "sha256": "0dg0432r3cpjgdlpz583vky4hj5vld9d25dvaj6nxlir2ph9g9hn", + "fetcher": "git", + "url": "https://git.madhouse-project.org/algernon/brutalist-theme.el.git", + "unstable": { + "version": [ + 20181023, + 1222 + ], + "commit": "8899f4f4a7faf0080977cd137e0ad7b00c40f1e8", + "sha256": "0ghq8n0lnidjz5m0i2wsmdrk2nwbwh6l8imxfhkva7qpaha4jqyq" + } + }, + { + "ename": "bshell", + "commit": "cf0ed51304f752af3e1f56caf2856d1521d782a4", + "sha256": "1ds8xvh74i6wqswjp8i30knr74l4gbalkb2jil8qjb9wp9l1gw9z", + "fetcher": "github", + "repo": "plandes/bshell", + "unstable": { + "version": [ + 20190617, + 238 + ], + "deps": [ + "buffer-manage" + ], + "commit": "5cdffa393ec3f923736bc6459bc958829a321327", + "sha256": "0nfj00fgg7lsd5201qds7pniyn9lbnmmdbps5lkiqmbp6phksba9" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "buffer-manage" + ], + "commit": "8d359f8a76749dcd5ca046b280a11fdb3f87cd23", + "sha256": "10nidam7zyqxc085v6f4mzz5d62p92k88vvcrv95i1sbzma7lz4f" + } + }, + { + "ename": "btc-ticker", + "commit": "f78796a8835ec44f4d13c99559fd4d113c6f4f29", + "sha256": "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1", + "fetcher": "github", + "repo": "niedbalski/emacs-btc-ticker", + "unstable": { + "version": [ + 20151113, + 1459 + ], + "deps": [ + "json", + "request" + ], + "commit": "845235b545f070d0812cd1654cbaa4997565824f", + "sha256": "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z" + } + }, + { + "ename": "bts", + "commit": "0d2f9c2f465b06c97cd03c5644155cd6c7fade24", + "sha256": "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3", + "fetcher": "github", + "repo": "aki2o/emacs-bts", + "unstable": { + "version": [ + 20151109, + 1333 + ], + "deps": [ + "dash", + "log4e", + "pos-tip", + "s", + "widget-mvc", + "yaxception" + ], + "commit": "df42d58a36447697f93b56e69f5e700b2baef1f9", + "sha256": "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w" + } + }, + { + "ename": "bts-github", + "commit": "6f3e87699181877e50d75a89e2ee76e403fc9317", + "sha256": "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln", + "fetcher": "github", + "repo": "aki2o/emacs-bts-github", + "unstable": { + "version": [ + 20170401, + 1249 + ], + "deps": [ + "bts", + "gh" + ], + "commit": "ef2cf9202dc2128e5efdb613bfde9276a8cd95ad", + "sha256": "173i9n4c8mg93gpc7ljxh3nhm4lq2c04yhrvjz6fwwwqvmnkha5f" + } + }, + { + "ename": "bubbleberry-theme", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1mjygck5ra30j44msccqas8v6gkpyv74p6y6hidm8v4f8n6m8dcz", + "fetcher": "github", + "repo": "emacsfodder/emacs-bubbleberry-theme", + "unstable": { + "version": [ + 20141017, + 944 + ], + "commit": "22e9adf4586414024e4592972022ec297321b320", + "sha256": "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28" + } + }, + { + "ename": "buckwalter", + "commit": "7dd38487731cc978e104afa39f8954cfc33ba27f", + "sha256": "08pnmfy910n5l00kmkn4533x48m3scsxzyra0nl6iry2n39y2kr1", + "fetcher": "github", + "repo": "joehakimrahme/buckwalter.el", + "unstable": { + "version": [ + 20190204, + 1451 + ], + "commit": "d4a7785eef05491ac4eb3150b75c473480bb51cb", + "sha256": "1i0kkn2qziakpy0ax8rc1pjdb6r881gybqhl5dwmwsd8gkfhddy5" + } + }, + { + "ename": "buffer-buttons", + "commit": "d518e81c8342a93455108e769c8b42747982c924", + "sha256": "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6", + "fetcher": "github", + "repo": "rpav/buffer-buttons", + "unstable": { + "version": [ + 20150106, + 1439 + ], + "commit": "2feb8494fa7863b98256bc85da670d74a3a8a975", + "sha256": "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq" + } + }, + { + "ename": "buffer-flip", + "commit": "3924870cac1392a7eaeeda34b92614c26c674d63", + "sha256": "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098", + "fetcher": "github", + "repo": "killdash9/buffer-flip.el", + "unstable": { + "version": [ + 20180307, + 2251 + ], + "commit": "e093360e05164c78255866c1ac8f966aa38ba514", + "sha256": "1s35llycdhhclf9kl1q9l7zzzfqrnnvbiqv5csfw0mngfj0lz77f" + }, + "stable": { + "version": [ + 2, + 1 + ], + "commit": "e093360e05164c78255866c1ac8f966aa38ba514", + "sha256": "1s35llycdhhclf9kl1q9l7zzzfqrnnvbiqv5csfw0mngfj0lz77f" + } + }, + { + "ename": "buffer-manage", + "commit": "28f8f376df810e6ebebba9fb2c93eabbe3526cc9", + "sha256": "0fwri332faybv2apjh8zajqpryi0g4kk3and8djibpvci40l42jb", + "fetcher": "github", + "repo": "plandes/buffer-manage", + "unstable": { + "version": [ + 20190622, + 317 + ], + "deps": [ + "choice-program", + "dash" + ], + "commit": "e6b896aca7f62a6587b593c500b31624d4414eca", + "sha256": "10mkss1dmnx1qzgra4xf1jl7gjv61rjdrszkcwwnhf65wa2pjhbk" + }, + "stable": { + "version": [ + 0, + 10 + ], + "deps": [ + "choice-program", + "dash" + ], + "commit": "f21bac39b3c890704a7b1b50e8d6bc39e6417a3d", + "sha256": "0hs3glwwp1b0i1gxp0ypyjwaw8pyi26a66y9dqv7sz0xsvnm3zbs" + } + }, + { + "ename": "buffer-move", + "commit": "e30e053eab078a8bef73e42b90299231ea0997ee", + "sha256": "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg", + "fetcher": "github", + "repo": "lukhas/buffer-move", + "unstable": { + "version": [ + 20160615, + 1803 + ], + "commit": "cb517ecf8409b5fdcda472d7190c6021f0c49751", + "sha256": "0gxy58v8nyv6pmzfn8552m8a14f5lzcbkndp5xpzq4g9qvmifmj6" + }, + "stable": { + "version": [ + 0, + 6, + 2 + ], + "commit": "9bf3ff940011c7af3fdd172fa3ea2511c7a8a190", + "sha256": "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c" + } + }, + { + "ename": "buffer-sets", + "commit": "61d07bbe7201fc991c7ab7ee6299a89d63ddb5e5", + "sha256": "1xj9fn2x4kbx8kp999wvz1j68znp7j81zl6rnbaipbx7hjpqrsin", + "fetcher": "git", + "url": "https://git.flintfam.org/swf-projects/buffer-sets.git", + "unstable": { + "version": [ + 20170718, + 340 + ], + "deps": [ + "cl-lib" + ], + "commit": "4a4ccb0d6916c3e9fba737bb7b48e8aac921954e", + "sha256": "1rg6iwswi82w8938pavwhvvr2z3ismb42asam2fkad47h2sgn0gz" + } + }, + { + "ename": "buffer-utils", + "commit": "a082c2dc0458e3007a947923f5b97e88217199e8", + "sha256": "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2", + "fetcher": "github", + "repo": "rolandwalker/buffer-utils", + "unstable": { + "version": [ + 20140512, + 1400 + ], + "commit": "685b13457e3a2085b7584e41365d2aa0779a1b6f", + "sha256": "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "b4d325543e25518d725a2122b49cd72a0d6a079a", + "sha256": "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5" + } + }, + { + "ename": "buffer-watcher", + "commit": "c8681776d467951d14d8247e6939bd9a6f2a80ec", + "sha256": "0v096021xk7k821bxb5zddw6sljqa6fs8f7s8j0w3pv6lmhra1ln", + "fetcher": "github", + "repo": "NicolasPetton/buffer-watcher", + "unstable": { + "version": [ + 20170913, + 839 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "b32c67c8a5d724257d759f4c903d0dedc32246ef", + "sha256": "0mygs48mk2z8cw1csz2wfyn7kln9662d16hwpmbxs5x8k71aq8jx" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "f" + ], + "commit": "353d76882c65d44341b6f28bd86279dda00c3440", + "sha256": "0x9bcnya47pf78p6ksdvs1ca5arvbgyi1q8b9yxq55fg3k9523ln" + } + }, + { + "ename": "bufshow", + "commit": "543a734795eed11aa47a8e1348d14e362b341af0", + "sha256": "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h", + "fetcher": "github", + "repo": "pjones/bufshow", + "unstable": { + "version": [ + 20130726, + 1838 + ], + "commit": "d60a554e7239e6f7520d9c3436d5ecdbc9cf6957", + "sha256": "1rh848adjqdl42rw8yf1fqbr143m0pnbrlznx0d97v4vszvbby2s" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "d8424e412d63dcc721c64fbd2ddd2420a03b4e8b", + "sha256": "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy" + } + }, + { + "ename": "bug-reference-github", + "commit": "5dfce86371692dddef78a6c1d772138b487b82cb", + "sha256": "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6", + "fetcher": "github", + "repo": "arnested/bug-reference-github", + "unstable": { + "version": [ + 20180128, + 1314 + ], + "commit": "f570a0532bfb44f095b42cf68ab1f69799101137", + "sha256": "09rbxgrk7jp9xajya6nccj0ak7fc48wyxq4sfmjmy3q1qfszdsc3" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f570a0532bfb44f095b42cf68ab1f69799101137", + "sha256": "09rbxgrk7jp9xajya6nccj0ak7fc48wyxq4sfmjmy3q1qfszdsc3" + } + }, + { + "ename": "bui", + "commit": "38b7c9345de75a707b4a73e8bb8e2f213e4fd739", + "sha256": "0a4g55k02hi3cwvk4d35lk2x5kc4fabskl2025i83hx0rqw4w3f1", + "fetcher": "github", + "repo": "alezost/bui.el", + "unstable": { + "version": [ + 20181218, + 1830 + ], + "deps": [ + "dash" + ], + "commit": "508577a7225b3d07eaefa9444064410af2518675", + "sha256": "0d9s0gdy5wda86jn8hjs1rq9rbwz5syvr8jxdks3iy27k4hp4wil" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "deps": [ + "dash" + ], + "commit": "9162c24b75799857d54838d961c60776ffcd657e", + "sha256": "0sszdl4kvqbihdh8d7mybpp0d8yw2p3gyiipjcxz9xhvvmw3ww4x" + } + }, + { + "ename": "build-farm", + "commit": "bc97bf56ea50788ecbbbb1f46e188e8487370936", + "sha256": "0dbq3sc1x0cj06hv3mlk0zw0cijdwjszicylv14m1wahal33xjrw", + "fetcher": "github", + "repo": "alezost/build-farm.el", + "unstable": { + "version": [ + 20181218, + 2002 + ], + "deps": [ + "bui", + "magit-popup" + ], + "commit": "5c268a3c235ace0d79ef1ec82c440120317e06f5", + "sha256": "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "bui", + "magit-popup" + ], + "commit": "5c268a3c235ace0d79ef1ec82c440120317e06f5", + "sha256": "0i0bwbav5861j2y15j9nd5m9rdqg9q97zgcbld8pivr9nyxy63lz" + } + }, + { + "ename": "build-helper", + "commit": "af56cde18ae0efb0ae91c818e6804c55cdb3b8c2", + "sha256": "1asgpf2k4i7p88ask1i6ra4krhsxr6j2d2qv0gfxlsa5p330mmgh", + "fetcher": "github", + "repo": "afonso360/build-helper", + "unstable": { + "version": [ + 20161009, + 1755 + ], + "deps": [ + "projectile" + ], + "commit": "7a6fe71125a26ed1c492dab77cc688a7fe1d68ac", + "sha256": "0pipdzjf7arli6b88fp21as5d4v8ylsy19hixywhfgb7917qsrkv" + } + }, + { + "ename": "build-status", + "commit": "23bbe012f313cf0cf4c45a66eb0bee9361ced564", + "sha256": "0ckyf0asll50gifx1v0qqzpimjms8i1rgw9bnqiyj861qn5hch92", + "fetcher": "github", + "repo": "sshaw/build-status", + "unstable": { + "version": [ + 20171111, + 1947 + ], + "deps": [ + "cl-lib" + ], + "commit": "ef44185d9dd748ea578d68398f3f729a8adb45b5", + "sha256": "00zcmmdccgzb5cp1nd9kjpiqs3zd9rh0z7aj9kmwsffaq339g55n" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "c29a0146c5d0be274f5e17921e01698f572c23a1", + "sha256": "03f0h7sp0sr9kjyhvcx7i34lvc26f5x8nikfidihgzhrqpprv2b6" + } + }, + { + "ename": "bundler", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1jvcrxwsf9yd5vhirfdmjl52n6hffr1vikd386qbn32vgqcsba7a", + "fetcher": "github", + "repo": "endofunky/bundler.el", + "unstable": { + "version": [ + 20190701, + 1013 + ], + "deps": [ + "cl-lib", + "inf-ruby" + ], + "commit": "05a91d68e21e129b6c4d5462c888ea249c2ea001", + "sha256": "0x37bilxl3shx5mdm00d3m2z5srfsy3y588w9971i8r7y2sfngna" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "inf-ruby" + ], + "commit": "4cb4fafe092d587cc9e58ff61cf900fb7f409adf", + "sha256": "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h" + } + }, + { + "ename": "bury-successful-compilation", + "commit": "f66e2e23c7a1fa0ce6fa8a0e814242b7c46c299c", + "sha256": "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3", + "fetcher": "github", + "repo": "EricCrosson/bury-successful-compilation", + "unstable": { + "version": [ + 20181106, + 403 + ], + "commit": "674644c844184605a1bb4f9487a60f7a780a6fe7", + "sha256": "13ilv4zbzwb5rz0gf69z8pvxazvwlmb5shkb055l42ksxslp49hh" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "064817b44a431476305099301311def0a2d9d543", + "sha256": "13ilv4zbzwb5rz0gf69z8pvxazvwlmb5shkb055l42ksxslp49hh" + } + }, + { + "ename": "buster-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0nylkxy9qlj1h5v0pja4g315xcj5qzvkys4dsnzbh3xq4xzyj6xj", + "fetcher": "github", + "repo": "magnars/buster-mode", + "unstable": { + "version": [ + 20140928, + 1213 + ], + "commit": "de6958ef8369400922618b8d1e99abfa91b97ac5", + "sha256": "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi" + } + }, + { + "ename": "buster-snippets", + "commit": "67dabf33096113e68fe282309246094711751e1f", + "sha256": "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x", + "fetcher": "github", + "repo": "magnars/buster-snippets.el", + "unstable": { + "version": [ + 20151125, + 1010 + ], + "deps": [ + "yasnippet" + ], + "commit": "bb8769dae132659858e74d52f3f4e8790399423a", + "sha256": "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6" + } + }, + { + "ename": "busybee-theme", + "commit": "36e2089b998d98575aa6dd3cc79fb7f6847f7aa3", + "sha256": "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10", + "fetcher": "github", + "repo": "mswift42/busybee-theme", + "unstable": { + "version": [ + 20170719, + 928 + ], + "commit": "66b2315b030582d0ebee605cf455d386d8c30fcd", + "sha256": "1cvj5m45f5ky3w86khh6crvdqrdjxg2z6b34jlm32qpgmn0s5g45" + } + }, + { + "ename": "butler", + "commit": "c86e3f5083e59568afac69eed9aa8c1a0bd76e2e", + "sha256": "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq", + "fetcher": "github", + "repo": "AshtonKem/Butler", + "unstable": { + "version": [ + 20150812, + 8 + ], + "deps": [ + "deferred", + "json" + ], + "commit": "8ceb35737107572455cca9a61ff46b3ff78f1016", + "sha256": "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "deps": [ + "deferred", + "json" + ], + "commit": "0e91e0f01ac9c09422f076a096ee567ee138e7a4", + "sha256": "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj" + } + }, + { + "ename": "buttercup", + "commit": "d4b187cb5b3cc5b546bfa6b94b6792e6363242d1", + "sha256": "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb", + "fetcher": "github", + "repo": "jorgenschaefer/emacs-buttercup", + "unstable": { + "version": [ + 20181202, + 1607 + ], + "commit": "810fa6fb8dab06610dbf2b5ccbc64b4d0ecc7485", + "sha256": "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1" + }, + "stable": { + "version": [ + 1, + 16 + ], + "commit": "810fa6fb8dab06610dbf2b5ccbc64b4d0ecc7485", + "sha256": "0dckgcyzsav6ld78bcyrrygy1cz1jvqgav6vy8f6klpmk3r8xrl1" + } + }, + { + "ename": "buttercup-junit", + "commit": "f1030960afe994da338d78607233319b3f7f0c8b", + "sha256": "1v848vbwxqrw9sdsvjaggkspavmbwkmqshf321m4n8srvi51383w", + "fetcher": "git", + "url": "https://bitbucket.org/olanilsson/buttercup-junit", + "unstable": { + "version": [ + 20181111, + 2058 + ], + "deps": [ + "buttercup" + ], + "commit": "f95f91ac61137ed78b65642160bfe107f0ad8973", + "sha256": "1jazvil9zzc7g5hp6f43ba7k99kwriidhan20ig4nx1wgmngdzhr" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "buttercup" + ], + "commit": "0bae5577c7dd026b11a75dc5a565e74c9422b958", + "sha256": "0x0ndyhmria7mg0pxbpkar7sgvgv9hklsflwkhnjy6gxrc330zx1" + } + }, + { + "ename": "button-lock", + "commit": "83459421dd2eb3d60ec668c3d5bb38d99ee64aff", + "sha256": "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp", + "fetcher": "github", + "repo": "rolandwalker/button-lock", + "unstable": { + "version": [ + 20150223, + 1354 + ], + "commit": "f9082feb329432fcf2ac49a95e64bed9fda24d58", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2" + } + }, + { + "ename": "buttons", + "commit": "3b8f9437268a51654b2bebdd024c35060b078962", + "sha256": "0pp7x4z6vzdfav5ljxsk1q6xby7gcxnkyl5fcbsd4r98ja4zmyq4", + "fetcher": "github", + "repo": "erjoalgo/emacs-buttons", + "unstable": { + "version": [ + 20190319, + 41 + ], + "deps": [ + "cl-lib" + ], + "commit": "a14d0c21cc30d33b57481f535f2a838d65b2032f", + "sha256": "17b6km8qvkh43g276fmv552lffd2jq5x863fc7zm7xf2khwmpwbh" + } + }, + { + "ename": "c-c-combo", + "commit": "da105eab0e7a5a3a1fc562973d99cbbbe9019b5f", + "sha256": "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn", + "fetcher": "github", + "repo": "CestDiego/c-c-combo.el", + "unstable": { + "version": [ + 20151224, + 255 + ], + "commit": "a261a833499a7fdc29610863b3aafc74818770ba", + "sha256": "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5" + } + }, + { + "ename": "c-eldoc", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm", + "fetcher": "github", + "repo": "nflath/c-eldoc", + "unstable": { + "version": [ + 20181109, + 439 + ], + "commit": "e35c0e40f71c25804919f6c01fd27e95c2e2adb7", + "sha256": "0rwxlq8w6507lkvvj0krwvg4ai1wyj466nhns1f857kry7cssnzy" + } + }, + { + "ename": "c0-mode", + "commit": "268115452d9c22a6f2627cec1eb122b47e85b88c", + "sha256": "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4", + "fetcher": "github", + "repo": "catern/c0-mode", + "unstable": { + "version": [ + 20151110, + 1852 + ], + "commit": "c214093c36864d6208fcb9e6a72413ed17ed5d60", + "sha256": "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx" + } + }, + { + "ename": "cabledolphin", + "commit": "0c8bd2715aec4793abc37d6899adabd568955a08", + "sha256": "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03", + "fetcher": "github", + "repo": "legoscia/cabledolphin", + "unstable": { + "version": [ + 20160204, + 938 + ], + "deps": [ + "seq" + ], + "commit": "fffc192cafa61558e924323d6da8166fe5f2a6f9", + "sha256": "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk" + } + }, + { + "ename": "cache", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "15pj7f4n0lk8qqsfafdj19iy0hz4xpfcf2fnby7ziq2dldyqrax9", + "fetcher": "github", + "repo": "nflath/cache", + "unstable": { + "version": [ + 20111019, + 2300 + ], + "commit": "7499586b6c8224df9f5c5bc4dec96b008258d580", + "sha256": "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby" + } + }, + { + "ename": "cacoo", + "commit": "2bd55f5c29876c2483001cd9deaca68cab5054b9", + "sha256": "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z", + "fetcher": "github", + "repo": "kiwanami/emacs-cacoo", + "unstable": { + "version": [ + 20120319, + 2359 + ], + "deps": [ + "concurrent" + ], + "commit": "c9fa04fbe97639b24698709530361c2bb5f3273c", + "sha256": "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx" + }, + "stable": { + "version": [ + 2, + 1, + 2 + ], + "deps": [ + "concurrent" + ], + "commit": "c2e6a8830144810cd4e51de3646cb8200bcebbc6", + "sha256": "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx" + } + }, + { + "ename": "caddyfile-mode", + "commit": "ec771222056dcb6c67e133cd6aa6b4e4d03ac264", + "sha256": "12d57xcpp78lmcr95nfp0r9g7lkw8kfxf9c3rc7g53kh5xaaj4i2", + "fetcher": "github", + "repo": "Schnouki/caddyfile-mode", + "unstable": { + "version": [ + 20181204, + 858 + ], + "deps": [ + "loop" + ], + "commit": "976ad0664c3f44bfa11cb9b8787ddfb094d0a666", + "sha256": "1k9nkqgnighwj0jj4yl8v2vncy5cnlayx3vw4884hf9amkbv6bg1" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "b0371063adc18d3cbd6dd673ea4fe39d27825d1b", + "sha256": "1w0jfh8z9q2b0av66gckmb9d9dvx0wqmjf54avgynlmh3a7gv7lz" + } + }, + { + "ename": "cake-inflector", + "commit": "77c46238b632047160d6dfac9b257f57b0c4283b", + "sha256": "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf", + "fetcher": "github", + "repo": "k1LoW/emacs-cake-inflector", + "unstable": { + "version": [ + 20140415, + 858 + ], + "deps": [ + "s" + ], + "commit": "a1d338ec4840b1b1bc14f7f9298c07e2c1d2d8fc", + "sha256": "0m8ss9aky24f5i6b8fyy8mhv9ygj158crjyddnj9xx73vsjf96bs" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "s" + ], + "commit": "40bf11890842ba305954528694e1c39a8b73737b", + "sha256": "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far" + } + }, + { + "ename": "cakecrumbs", + "commit": "c970907affeb4a21fa1b7c350edf171dbdcd8de5", + "sha256": "1s5j8w0y47qpdq4f34l7hmdhxp560wg1lgzqz6p3p3lg1l89sv47", + "fetcher": "github", + "repo": "kuanyui/cakecrumbs.el", + "unstable": { + "version": [ + 20180929, + 139 + ], + "commit": "cf8c1df885eee004602f73c4f841301e200e5850", + "sha256": "0s5ga39dpn9rjxjk5inkylqh56w3qgaq2wmwwgv5gsydqdyil31f" + } + }, + { + "ename": "cal-china-x", + "commit": "c1098d34012fa72f8c8c30d5f0f495fdbe1d3d65", + "sha256": "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka", + "fetcher": "github", + "repo": "xwl/cal-china-x", + "unstable": { + "version": [ + 20190518, + 1057 + ], + "deps": [ + "cl-lib" + ], + "commit": "177f60e011606126f23c8ffed69458439f1c12e0", + "sha256": "1a0qdiihyc5qwz5j68hnpfp0fx3qbzgvzflrbfv072r7ldxzfi57" + } + }, + { + "ename": "calendar-norway", + "commit": "c5d01230027d5cec9da2545a9ce9270a611f6567", + "sha256": "1i23ks0bnq62bvn3szvqf0ikcam4s92yvr998mkjxhdhc94zd19c", + "fetcher": "github", + "repo": "unhammer/calendar-norway.el", + "unstable": { + "version": [ + 20180906, + 1502 + ], + "commit": "8d1fda8268caa74ba5e712c7675ed3c34e46e2d4", + "sha256": "011c8pz1g805a7c3djai39yasd2idfp4c2dcrvf7kbls27ayrl6d" + }, + "stable": { + "version": [ + 0, + 9, + 4 + ], + "commit": "8d1fda8268caa74ba5e712c7675ed3c34e46e2d4", + "sha256": "011c8pz1g805a7c3djai39yasd2idfp4c2dcrvf7kbls27ayrl6d" + } + }, + { + "ename": "calfw", + "commit": "cc64274abdc7c8fb904b43d2d036aac98e738131", + "sha256": "0am1nafc16zax8082gjlz0pi85lryjhrx0v80nzgr23iybj5mfx4", + "fetcher": "github", + "repo": "kiwanami/emacs-calfw", + "unstable": { + "version": [ + 20180118, + 45 + ], + "commit": "03abce97620a4a7f7ec5f911e669da9031ab9088", + "sha256": "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" + } + }, + { + "ename": "calfw-cal", + "commit": "cc64274abdc7c8fb904b43d2d036aac98e738131", + "sha256": "1wylkd7jl1ifq56jj04l5b9wfrjkhwncxzrjgnbgg1cl2klf6v4m", + "fetcher": "github", + "repo": "kiwanami/emacs-calfw", + "unstable": { + "version": [ + 20170320, + 1206 + ], + "commit": "03abce97620a4a7f7ec5f911e669da9031ab9088", + "sha256": "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" + } + }, + { + "ename": "calfw-gcal", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0pzjs8kvf9vxdzziq7zd59vniq21k4a6yygpv4fz2by3s3bvnrid", + "fetcher": "github", + "repo": "myuhe/calfw-gcal.el", + "unstable": { + "version": [ + 20120111, + 1000 + ], + "commit": "14aab20687d6cc9e6c5ddb9e11984c4e14c3d870", + "sha256": "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi" + } + }, + { + "ename": "calfw-howm", + "commit": "cc64274abdc7c8fb904b43d2d036aac98e738131", + "sha256": "08cv16cq211sy2v1i0gk7d81f0gyywv0i9szmamnrbjif3rrv2m0", + "fetcher": "github", + "repo": "kiwanami/emacs-calfw", + "unstable": { + "version": [ + 20170704, + 4 + ], + "commit": "03abce97620a4a7f7ec5f911e669da9031ab9088", + "sha256": "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" + } + }, + { + "ename": "calfw-ical", + "commit": "cc64274abdc7c8fb904b43d2d036aac98e738131", + "sha256": "1bh9ahwp9b5knjxph79kl19fgs48x3w7dga299l0xvbxq2jhs95q", + "fetcher": "github", + "repo": "kiwanami/emacs-calfw", + "unstable": { + "version": [ + 20150703, + 819 + ], + "commit": "03abce97620a4a7f7ec5f911e669da9031ab9088", + "sha256": "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" + } + }, + { + "ename": "calfw-org", + "commit": "cc64274abdc7c8fb904b43d2d036aac98e738131", + "sha256": "1cfpjh08djz3k067w3580yb15p1csks3gzch9c4cbrbcjvg8inh5", + "fetcher": "github", + "repo": "kiwanami/emacs-calfw", + "unstable": { + "version": [ + 20160303, + 258 + ], + "commit": "03abce97620a4a7f7ec5f911e669da9031ab9088", + "sha256": "0wiggihw9ackjdssqgp2cqccd3sil13n3pfn33d3r320fmxfjbch" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "c538d3746449b4f0e16b16aad3073d4f7379d805", + "sha256": "0r42cagvmvvib76kd15nd9ix55ys6i549vxnls4z16s864695zpa" + } + }, + { + "ename": "call-graph", + "commit": "a6acf099e2510c82b4b03e2f35051afc3d28af45", + "sha256": "0cklr79gqqrb94jq8aq65wqriamay78vv9sd3jrvp86ixl3ig5xc", + "fetcher": "github", + "repo": "beacoder/call-graph", + "unstable": { + "version": [ + 20190709, + 444 + ], + "deps": [ + "anaconda-mode", + "cl-lib", + "hierarchy", + "ivy", + "tree-mode" + ], + "commit": "ef4845e7bd8ae577f9b919b6a74380493bca5de8", + "sha256": "1sypqnlwsv5gmrvcfz7dgfc81b24672njjw2va3yycvpv68pbii7" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "hierarchy", + "ivy", + "tree-mode" + ], + "commit": "0bbe292b1b9c7ba1d8a65ed5e475f6a53f5f9f27", + "sha256": "0kckjs7yg8d04nir5z3f00k05272kgma98794g0ycgfn1vrck0h0" + } + }, + { + "ename": "calmer-forest-theme", + "commit": "edb51491e575ef64a705cd0b972de07993f185cf", + "sha256": "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p", + "fetcher": "github", + "repo": "caldwell/calmer-forest-theme", + "unstable": { + "version": [ + 20130926, + 510 + ], + "commit": "87ba7bae389084d13fe3bc34e0c923017eda6ba0", + "sha256": "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h" + } + }, + { + "ename": "camcorder", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi", + "fetcher": "github", + "repo": "Malabarba/camcorder.el", + "unstable": { + "version": [ + 20190317, + 2138 + ], + "deps": [ + "cl-lib", + "names" + ], + "commit": "b11ca61491a27681bb3131b72b51c105fd996bed", + "sha256": "11p42cmk9sj2ilpx6nnlbzff85qi0m27wk49da2ipal28wcx2452" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib", + "names" + ], + "commit": "b11ca61491a27681bb3131b72b51c105fd996bed", + "sha256": "11p42cmk9sj2ilpx6nnlbzff85qi0m27wk49da2ipal28wcx2452" + } + }, + { + "ename": "caml", + "commit": "42667ee0d64bce19ad9081a4fae163a9655641d4", + "sha256": "0hpxvvgq9nxcbxq9dm1sia3ph2h7p07pp48jz77pr786lrw67la0", + "fetcher": "github", + "repo": "ocaml/caml-mode", + "unstable": { + "version": [ + 20190413, + 1205 + ], + "commit": "38ebde12d3d529e6ef8078967997d32226e69e82", + "sha256": "13gz0s7bnjsnab7wn8mk0zva7756hf68izqp9agd8vqnm0c75nlp" + }, + "stable": { + "version": [ + 4, + 7, + 1 + ], + "commit": "9803cf37ac52bbfa5130fde0f228dc51c4590c2d", + "error": [ + "exited abnormally with code 1\n", + "", + "warning: unknown setting 'system-features'\nerror: unable to download 'https://github.com/ocaml/caml-mode/archive/9803cf37ac52bbfa5130fde0f228dc51c4590c2d.tar.gz': HTTP error 404 (curl error: No error)\n" + ] + } + }, + { + "ename": "cangjie", + "commit": "ed79fc972f7fe69d7bad5d1cdde3a276885a9fe8", + "sha256": "0gdp6dlkzkkd8r3cmwakwxlxsbysb351n1lr9sq4d60gbbskklln", + "fetcher": "github", + "repo": "kisaragi-hiu/cangjie.el", + "unstable": { + "version": [ + 20190322, + 1134 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "f4dcb691e3bda6971cb89b07f368dd285179a8ff", + "sha256": "0hvwaj1g1szyhjvyxhwflq45bbcvvgv391wa7qkwlxmrvvfhp9k2" + }, + "stable": { + "version": [ + 0, + 7, + 2 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "f4dcb691e3bda6971cb89b07f368dd285179a8ff", + "sha256": "0hvwaj1g1szyhjvyxhwflq45bbcvvgv391wa7qkwlxmrvvfhp9k2" + } + }, + { + "ename": "capture", + "commit": "bdfe43be6c5f77845e82745534a1b1a9eb190466", + "sha256": "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2", + "fetcher": "github", + "repo": "pashinin/capture.el", + "unstable": { + "version": [ + 20130828, + 1644 + ], + "commit": "1bb26060311da76767f70096218313fc93b0c806", + "sha256": "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z" + } + }, + { + "ename": "carbon-now-sh", + "commit": "b79bb8af3c149b2d131813c5308141e0e06adccf", + "sha256": "1casq1b71rlwanayixs6rrn96jn1w7bzkq77lg0ini5hrfd3w18p", + "fetcher": "github", + "repo": "veelenga/carbon-now-sh.el", + "unstable": { + "version": [ + 20180331, + 1735 + ], + "deps": [ + "dash" + ], + "commit": "71dee6bc4f2a2cb02b9b7b5e643c4c92b880e6a4", + "sha256": "1aij3590c7fqga7sla5f4hibyq7m77kxfyiiviv6xrdzwrd98w37" + } + }, + { + "ename": "cargo", + "commit": "e997b356b009b3d2ab467fe49b79d728a8cfe24b", + "sha256": "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx", + "fetcher": "github", + "repo": "kwrooijen/cargo.el", + "unstable": { + "version": [ + 20190729, + 708 + ], + "deps": [ + "markdown-mode", + "rust-mode" + ], + "commit": "626fd89986eab229e2fe36b38ac60697ed7a805b", + "sha256": "0aa57v2gxmj67i7dlqhg934nj023ldfn32pzjs2hnqnq3w3srnfv" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "rust-mode" + ], + "commit": "b0487f95a7de7a1d6f03cdd05220f633977d65a2", + "sha256": "0r9v7q7hkdw2q3iifyrb6n9jrssz2rcv2xcc7n1nmg1v40av3ijd" + } + }, + { + "ename": "caroline-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "178nxcz73lmvnjcr6x6as25d8m5knc21jpr66b4rg0rmlmhchkal", + "fetcher": "github", + "repo": "xjackk/caroline-theme", + "unstable": { + "version": [ + 20160318, + 520 + ], + "commit": "222fd483db304509f9e422dc82883d808e023ceb", + "sha256": "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n" + } + }, + { + "ename": "caseformat", + "commit": "ba158fbeebcda6b6122b18c97ab8042b1c0a0bc0", + "sha256": "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk", + "fetcher": "github", + "repo": "HKey/caseformat", + "unstable": { + "version": [ + 20160115, + 1615 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "92a31f6a7cae0b4e2af106cd6f2b0abe6c2d8921", + "sha256": "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "72707c9f0f0819b4e2aa45876432a293aa07f814", + "sha256": "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g" + } + }, + { + "ename": "cask", + "commit": "69e996727e40fa28cb5356f664ffdc3d5aca21b2", + "sha256": "0c1fxikcba3xcd3xpspnjhaahyl5n3r91c2b40xvadyjarkhxhgc", + "fetcher": "github", + "repo": "cask/cask", + "unstable": { + "version": [ + 20190718, + 2055 + ], + "deps": [ + "ansi", + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ], + "commit": "1d031f77d3dcd540038e24151dbaf0a91de01db5", + "sha256": "1wz57lqmn9vzh8dlvb639lmfxh2h6m3f6kr9bglr2mf1hc3zrij1" + }, + "stable": { + "version": [ + 0, + 8, + 4 + ], + "deps": [ + "cl-lib", + "dash", + "epl", + "f", + "package-build", + "s", + "shut-up" + ], + "commit": "ba5f6eb78178deb954ab9ac02e0e370315097ebe", + "sha256": "1p37lq8xpyq0rc7phxgsw3b73h8vf9rkpa5959rb5k46w6ps9686" + } + }, + { + "ename": "cask-mode", + "commit": "2d8bc1afaf69b4f29ba1bb0243c25574bc1197cc", + "sha256": "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6", + "fetcher": "github", + "repo": "Wilfred/cask-mode", + "unstable": { + "version": [ + 20160410, + 1449 + ], + "commit": "7c6719d3bb4fe552958634bd5a11abc56681f3a7", + "sha256": "0gywc2mzdzq3ny0jjffa3151vi7zb9i8ddy5d63x4yhicf5sxlh1" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5203b1beac4dd2ee07a6e993bc86719f5f35dbbf", + "sha256": "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5" + } + }, + { + "ename": "cask-package-toolset", + "commit": "ed71e45389626e700b93b29d5e2659b6706274d8", + "sha256": "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g", + "fetcher": "github", + "repo": "AdrieanKhisbe/cask-package-toolset.el", + "unstable": { + "version": [ + 20170921, + 2256 + ], + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "f", + "s", + "shut-up" + ], + "commit": "2c74cd827e88c7f8360581a841e45f0b794510e7", + "sha256": "1hk5q6p1j7cqg5srr3v21xfyy7aas4hfj1a66h21c2xvfjra3hxw" + }, + "stable": { + "version": [ + 0, + 9, + 2 + ], + "deps": [ + "ansi", + "cl-lib", + "commander", + "dash", + "f", + "s", + "shut-up" + ], + "commit": "2c74cd827e88c7f8360581a841e45f0b794510e7", + "sha256": "1hk5q6p1j7cqg5srr3v21xfyy7aas4hfj1a66h21c2xvfjra3hxw" + } + }, + { + "ename": "caskxy", + "commit": "1d61aea505e4913879f68081497e85542e9fd786", + "sha256": "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s", + "fetcher": "github", + "repo": "aki2o/caskxy", + "unstable": { + "version": [ + 20140513, + 1539 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "dc18dcab7ed526070ab76de071c9c5272e6ac40e", + "sha256": "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "279f3ab79bd77fe69cb3148a79896b9bf118a9b3", + "sha256": "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a" + } + }, + { + "ename": "catmacs", + "commit": "e62e45ea234a574ed602f27c3c6bc240bcd4fa43", + "sha256": "0ym1szmq9ib75yiyy5jw647fcs7gg0d5dkskqc293pg81qf3im50", + "fetcher": "git", + "url": "https://bitbucket.org/pymaximus/catmacs", + "unstable": { + "version": [ + 20170826, + 1157 + ], + "commit": "65d3e0563abe6ff9577202cf2278074d4130fbdd", + "sha256": "0954qck9j417c17niy28ccrhmsbjyh95z4dbqc5j4mib06j37587" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "c6e8277bd2aab3f5fbf10d419111110f3b33564f", + "sha256": "0kdlmmqgpgmhbbvafywllqdwkkd5a41rf8zhfmxhs3ydza86hmlg" + } + }, + { + "ename": "cbm", + "commit": "f28dbc97dc23cdb0b4c74f8805775c787635871e", + "sha256": "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn", + "fetcher": "github", + "repo": "akermu/cbm.el", + "unstable": { + "version": [ + 20171116, + 1240 + ], + "deps": [ + "cl-lib" + ], + "commit": "5b41c936ba9f6d170309a85ffebc9939c1050b31", + "sha256": "091ln3d0jhdgahbwfdm1042b19886n3kwipw5gk8d0jnq5vwrkws" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "5b41c936ba9f6d170309a85ffebc9939c1050b31", + "sha256": "091ln3d0jhdgahbwfdm1042b19886n3kwipw5gk8d0jnq5vwrkws" + } + }, + { + "ename": "cc-cedict", + "commit": "368aaef30c5c4f38d9d2dd09f966e3dcc2463e11", + "sha256": "1h8i9nfd66ayka5vkm1lp5crr4nm1bzi4sak0xid85fzgmx364vr", + "fetcher": "github", + "repo": "xuchunyang/cc-cedict.el", + "unstable": { + "version": [ + 20181217, + 1112 + ], + "commit": "0dd9bcd5337c8f16fc9c8d27daba4a9362695c99", + "sha256": "16qp0r413lqrym2xh2vpx0hg295g8mr428fg6q07w1hnzz10dpc2" + } + }, + { + "ename": "ccc", + "commit": "7375cab750a67ede1a021b6a4371b678a7b991b0", + "sha256": "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq", + "fetcher": "github", + "repo": "skk-dev/ddskk", + "unstable": { + "version": [ + 20151205, + 1343 + ], + "commit": "ad61579af269291b4446f4bab0a58522cc454f1c", + "sha256": "0aisilp9wl9w8l6nsiy963wvja38pp57g3skdf6qbm5ak8bb3244" + } + }, + { + "ename": "ccls", + "commit": "be27a4022d58860917a659fce2b7d7791fbea4e2", + "sha256": "0kiv0n6pdpa75wjcimpwccwbjbhga4gjnphjrkpj4qz5qv42rbnm", + "fetcher": "github", + "repo": "MaskRay/emacs-ccls", + "unstable": { + "version": [ + 20190720, + 935 + ], + "deps": [ + "dash", + "lsp-mode", + "projectile" + ], + "commit": "9061ebbf9d5ec3ee7e88dbd226c77017cf0447b1", + "sha256": "106jh25ivq0ydiz37p51agk5zbpai7fv91pwn6dpqzsq5g281ls7" + } + }, + { + "ename": "cd-compile", + "commit": "bca4c9e8b071497ac50a85741bf46be6eaae2135", + "sha256": "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv", + "fetcher": "github", + "repo": "jamienicol/emacs-cd-compile", + "unstable": { + "version": [ + 20141108, + 1957 + ], + "commit": "10284ccae86afda4a37b09ba90acd1e2efedec9f", + "sha256": "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c" + } + }, + { + "ename": "cdb", + "commit": "b48fe069ecd95ea0f9768ecad969e0838344e45d", + "sha256": "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf", + "fetcher": "github", + "repo": "skk-dev/ddskk", + "unstable": { + "version": [ + 20151205, + 1343 + ], + "commit": "ad61579af269291b4446f4bab0a58522cc454f1c", + "sha256": "0aisilp9wl9w8l6nsiy963wvja38pp57g3skdf6qbm5ak8bb3244" + } + }, + { + "ename": "cdlatex", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "021gj0jw93r8gk0cacw1ldfibpwr6fpkcrnign7b4nqqnb3135k9", + "fetcher": "github", + "repo": "cdominik/cdlatex", + "unstable": { + "version": [ + 20190130, + 1419 + ], + "commit": "90d785a94c0db7aa0043ea62f5807af3df155438", + "sha256": "1yhry3wrqh1ijc0n7140pnbwcamrgi89a75pg03zx0cqb5g6c8i6" + }, + "stable": { + "version": [ + 4, + 7 + ], + "commit": "b7183c2200392b6d85fca69390f4a65fac7a7b19", + "sha256": "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d" + } + }, + { + "ename": "cdnjs", + "commit": "66e4ce4e2c7e4aaac9dc0ce476c4759b000ff5d6", + "sha256": "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7", + "fetcher": "github", + "repo": "yasuyk/cdnjs.el", + "unstable": { + "version": [ + 20161031, + 1522 + ], + "deps": [ + "dash", + "deferred", + "f", + "pkg-info" + ], + "commit": "ce19880d3ec3d81e6c665d0b1dfea99cc7a3f908", + "sha256": "02j45ngddx7n5gvy42r8y3s22bmxlnvg2pqjfh0li8m599fnd11h" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "dash", + "deferred", + "f", + "pkg-info" + ], + "commit": "ce19880d3ec3d81e6c665d0b1dfea99cc7a3f908", + "sha256": "02j45ngddx7n5gvy42r8y3s22bmxlnvg2pqjfh0li8m599fnd11h" + } + }, + { + "ename": "cedit", + "commit": "0de4796054f0c616849904bacf05c74c7d2cdcf6", + "sha256": "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m", + "fetcher": "github", + "repo": "zk-phi/cedit", + "unstable": { + "version": [ + 20141231, + 1614 + ], + "commit": "0878d851b6307c162bfbddd2bb02789e5e27bc2c", + "sha256": "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v" + } + }, + { + "ename": "celery", + "commit": "4b896b2b89d990a7ce2f4bf4ce0aee0d126f3e55", + "sha256": "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h", + "fetcher": "github", + "repo": "ardumont/emacs-celery", + "unstable": { + "version": [ + 20170225, + 924 + ], + "deps": [ + "dash-functional", + "deferred", + "s" + ], + "commit": "51197d74f5eaa8ae09144af7663a2f4277f07d16", + "sha256": "1845qz0ih30z1jgm1zi11q4gvw9gy6w3vyj2mc1aiv5r170qj8as" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "dash-functional", + "deferred", + "s" + ], + "commit": "163ebede3f6a7f59202ff319675b0873dd1de365", + "sha256": "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7" + } + }, + { + "ename": "celestial-mode-line", + "commit": "cdb1d057f76166ba32d5028f18eec7d09857f990", + "sha256": "1s6vn71mxfvvafjs25j12z1gnmxnkvnw716zy5ifx1bs8s5960kq", + "fetcher": "github", + "repo": "ecraven/celestial-mode-line", + "unstable": { + "version": [ + 20180518, + 822 + ], + "commit": "3f5794aca99b977f1592cf1ab4516ae7922196a1", + "sha256": "01kdpfjnfnjll40n1zdp641gw8pk2vnv93a59lyx1mw1f30yvfr6" + } + }, + { + "ename": "centaur-tabs", + "commit": "6685b1fa14f8b0b2ca1eacb426ca6856ada72190", + "sha256": "1dxngm93k6jaf6nvr8wwyh5y1yxlki8y0b8ls02x7lb7nfgdgj7n", + "fetcher": "github", + "repo": "ema2159/centaur-tabs", + "unstable": { + "version": [ + 20190729, + 1510 + ], + "deps": [ + "cl-lib", + "powerline" + ], + "commit": "2e033e3aacab147f730f122509088d82304302f1", + "sha256": "1nh0zzc4g80m6np4r17ghrkbvz6bmd23l0m2piysgm25iwylya4f" + } + }, + { + "ename": "centered-cursor-mode", + "commit": "9a7a28caba49a20413dec3c3d0cc9c36b859834d", + "sha256": "1yy50p3xprkqiak3vfly5s5kpbbdmxmw6fhgz13fw97553hr3w5x", + "fetcher": "github", + "repo": "andre-r/centered-cursor-mode.el", + "unstable": { + "version": [ + 20190306, + 1006 + ], + "commit": "90e6d68a74d134f67c32d0621d64db90703c46eb", + "sha256": "05x1hppnmhinb92zblkwdpwkf0bhk7jsj2mms8mi1gl27pn7zg14" + } + }, + { + "ename": "centered-window", + "commit": "58bfd795d4d620f0c83384fb03008e129c71dc09", + "sha256": "0w6na4ld79bpmkiv6glbrphc32v6g2rcrpi28259i94jhgy1kxqk", + "fetcher": "github", + "repo": "anler/centered-window-mode", + "unstable": { + "version": [ + 20171127, + 949 + ], + "commit": "24f7c5be9def20879f46659082d497e67b55d7af", + "sha256": "0387x0z2l0yvbhkvh3rf3h2ddk7bvwgkpvpngwhhsjbc4hh4k3hz" + } + }, + { + "ename": "centimacro", + "commit": "de048d6e5d11a42d92de1938fd74fd37146a5a89", + "sha256": "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6", + "fetcher": "github", + "repo": "abo-abo/centimacro", + "unstable": { + "version": [ + 20140306, + 1427 + ], + "commit": "1b97a9b558ed9c49d5da1bfbf29b2506575c2742", + "sha256": "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh" + } + }, + { + "ename": "cerbere", + "commit": "4145e270a2113f30f8bb4d0f6c335f1c76f77b1c", + "sha256": "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06", + "fetcher": "github", + "repo": "nlamirault/cerbere", + "unstable": { + "version": [ + 20181113, + 1641 + ], + "deps": [ + "pkg-info" + ], + "commit": "c667c165d9c1657f13d2d46f09ba21b61f9402cc", + "sha256": "0kqwcy96fy9mdhwsxh1zj2zn5qr7wvss22qq2ij2kpyh3jh8gxya" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "f", + "go-mode", + "pkg-info", + "s" + ], + "commit": "11de1e7ec5126083ae697f5a9993facdb9895f9d", + "sha256": "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl" + } + }, + { + "ename": "ceylon-mode", + "commit": "09cd1a2ccf33b209a470780a66d54e1b1d597a86", + "sha256": "0dgqmmb8qmvzn557h0fw1mx4y0p96870l8f8glizkk3fifg7wgq4", + "fetcher": "github", + "repo": "lucaswerkmeister/ceylon-mode", + "unstable": { + "version": [ + 20180606, + 1324 + ], + "commit": "948515672bc596dc118e8e3ede3ede5ec6a3c95a", + "sha256": "1a9f9h5kywfy8c2kmaxc9vf5zcykbhghpi3ra2l3z5hm0knq54ay" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "00f790b3ed5ec48e2461e20a4d466ba45c634e13", + "sha256": "08zk6aspy59gv3989zxz0ibxxwkbjasa83ilpzvpcwszrzq8x640" + } + }, + { + "ename": "cfengine-code-style", + "commit": "c737839aeda583e61257ad40157e24df7f918b0f", + "sha256": "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a", + "fetcher": "github", + "repo": "cfengine/core", + "unstable": { + "version": [ + 20171115, + 2108 + ], + "commit": "d00cbe3643230f71ad108d0037b9e1d72b60dc79", + "sha256": "1x3v28fs4d2r8mqfkhrmi1slrb2z8hz30ginv020bq6y20v3na6x" + }, + "stable": { + "version": [ + 3, + 14, + 0 + ], + "commit": "44c447317b7ab87f973f21170a9c17a58b1c75c8", + "sha256": "0fk4x7qn7dsc7jqgbr3bpnphq7a1s4faqjci1j08cnigb3b5x585" + } + }, + { + "ename": "cff", + "commit": "c4e056132be11481aa26e89d5af1cd03925f92d1", + "sha256": "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc", + "fetcher": "github", + "repo": "fourier/cff", + "unstable": { + "version": [ + 20160118, + 2018 + ], + "deps": [ + "cl-lib" + ], + "commit": "b6ab2a28e64ef06f281ec74cfe3114e450644dfa", + "sha256": "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r" + } + }, + { + "ename": "cfml-mode", + "commit": "0d28507e1109195004a371fa201d914b995c2b4e", + "sha256": "0q88lxhkzzab4jjihk0livdpn6lsmd8l2s4brcbl8402m285sylp", + "fetcher": "github", + "repo": "am2605/cfml-mode", + "unstable": { + "version": [ + 20190617, + 1130 + ], + "commit": "b06d7cee2af0ed5d55a94f0db80fc1f429a1829a", + "sha256": "0gzkjyai3njllbifm66mjwndy8xl06ph1957l75il9797jzxw4sc" + } + }, + { + "ename": "cframe", + "commit": "6e39555b2538cc8a955766c5533871396e8fe712", + "sha256": "0pngdaflk1pk2xmwbij4b520b3mlacnjab4r3jby0phah44ziv4l", + "fetcher": "github", + "repo": "plandes/cframe", + "unstable": { + "version": [ + 20190616, + 1946 + ], + "deps": [ + "buffer-manage", + "dash" + ], + "commit": "38026cbd004231c5525bea31723ced39311bb408", + "sha256": "1j5g1gdd1fhqfwxgjjvy7ywhb3cfvdl5rxlklacy5qfs4dva8z06" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "buffer-manage", + "dash" + ], + "commit": "bb99672502046e87c8f029ce98c637f762a4fc54", + "sha256": "088px3wlvr4km913y7hajrjqnxnv6n325rk6353bkbah2d75vxq4" + } + }, + { + "ename": "cfrs", + "commit": "3ce16d27a9d73a5eaffebf7b0ff36d90c292248f", + "sha256": "03mi5iz0yny2ddvp41l3yc49583zw0wqsv33rkycjfj562903syx", + "fetcher": "github", + "repo": "Alexander-Miller/cfrs", + "unstable": { + "version": [ + 20190618, + 1458 + ], + "deps": [ + "dash", + "posframe", + "s" + ], + "commit": "de83b587affe374d1cf6e6c2d747696e6c33a817", + "sha256": "130g09i38k77y2kyirg54dglksl6vrypdhh4h2j8hzy1mipc5a43" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "dash", + "posframe", + "s" + ], + "commit": "de83b587affe374d1cf6e6c2d747696e6c33a817", + "sha256": "130g09i38k77y2kyirg54dglksl6vrypdhh4h2j8hzy1mipc5a43" + } + }, + { + "ename": "cg", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "1xffjilr9f2s3w7j8f3clq7qvsnr0lr8gadlybpzzy8x5fbmk4n3", + "fetcher": "github", + "repo": "emacsmirror/cg", + "unstable": { + "version": [ + 20190316, + 2206 + ], + "commit": "9349600829ca1758306e703a649874f8c63955fa", + "sha256": "1s3s37g99x19zxnq0xbiy95kjhm2hb09saxic2basapcp0sdfbwh" + } + }, + { + "ename": "challenger-deep-theme", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "02k0irp27wv1b5g2a6g86zp7cdprv17c0mlhkjsq2brls274ch3y", + "fetcher": "github", + "repo": "challenger-deep-theme/emacs", + "unstable": { + "version": [ + 20181205, + 1834 + ], + "commit": "96b7b1e2a9a3f8ffcbc36a1f37251b1232539d89", + "sha256": "1wvxblnn9qp75r33w3mlbjgqlq8dbh6m38snwkc45071vdqfkyk0" + } + }, + { + "ename": "change-inner", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "09y076vhhvp21jsvw9f5z4yk6cnmmjavg7600flxg5g27ydgix57", + "fetcher": "github", + "repo": "magnars/change-inner.el", + "unstable": { + "version": [ + 20150707, + 1544 + ], + "deps": [ + "expand-region" + ], + "commit": "52c543a4b9808c0d15b565fcdf646c9779de33e8", + "sha256": "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z" + } + }, + { + "ename": "chapel-mode", + "commit": "ff32db72ad55a7191b5105192480e17535c7edde", + "sha256": "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz", + "fetcher": "github", + "repo": "russel/Emacs-Chapel-Mode", + "unstable": { + "version": [ + 20160504, + 808 + ], + "commit": "6e095edd7639f5f0a81e14d6412410b49466697e", + "sha256": "0r3yja2ak3z62lav2s8vimmjyi4rd5s82fbs8r6p2k0shm6lj7hz" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "936a76a26bdc4f9570c4d54369f74bcd1cb0a698", + "sha256": "0n93qz5hzsnrs6c3y5yighfpdpkkmabxyi5i755hfcs5007v199v" + } + }, + { + "ename": "char-menu", + "commit": "f6676747e853045b3b19e7fc9524c793c6a08303", + "sha256": "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l", + "fetcher": "github", + "repo": "mrkkrp/char-menu", + "unstable": { + "version": [ + 20190713, + 1343 + ], + "deps": [ + "avy-menu" + ], + "commit": "e73949b26406a397a70624f6086183cb41ce1353", + "sha256": "1v3zqazw89i0v68ga262s1ljf3g7s838vx6hirdy1xc2qxfqqmlk" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "avy-menu" + ], + "commit": "f4d8bf8fa6787e2aaca2ccda5223646541d7a4b2", + "sha256": "0zyi1ha17jk3zz7nirasrrx43j3jkrsfz7ypbc4mk44w7hsvx2hj" + } + }, + { + "ename": "charmap", + "commit": "11c549fca81c4276054f614d86d17fa7af4ab32e", + "sha256": "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84", + "fetcher": "github", + "repo": "lateau/charmap", + "unstable": { + "version": [ + 20160309, + 946 + ], + "commit": "bd4b3e466d7a9433cf35167e3a68ec74fe631bb2", + "sha256": "0vqsfk83lg3gvcv62jsgxxwz7icpkpswgg30hmcq0qfg0dfwwcl9" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "165193d91ef96f563ae8366ed4c1a2df5a4eaed2", + "sha256": "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6" + } + }, + { + "ename": "chatwork", + "commit": "77ae72e62b8771e890525c063522e7091ca8f674", + "sha256": "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p", + "fetcher": "github", + "repo": "ataka/chatwork", + "unstable": { + "version": [ + 20170511, + 442 + ], + "commit": "fea231d479f06bf40dbfcf45de143eecc9ed744c", + "sha256": "163xr18lm4awfgh4lcp7pr04jirpvlk8w1g4445zbxbpjfvv268z" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "fea231d479f06bf40dbfcf45de143eecc9ed744c", + "sha256": "163xr18lm4awfgh4lcp7pr04jirpvlk8w1g4445zbxbpjfvv268z" + } + }, + { + "ename": "cheat-sh", + "commit": "ebac62fb3828d81e30145b9948d60e781e20eda2", + "sha256": "0f6wqyh3c3ap0l6khikqlw8sqqi6fsl468gn157faza4x63j9z80", + "fetcher": "github", + "repo": "davep/cheat-sh.el", + "unstable": { + "version": [ + 20170802, + 1118 + ], + "commit": "e90445124f3f145a047779e42d070a3c5e150f70", + "sha256": "06avap8w833syhz7pdpsm73nbsgbwzmpagd7f3khzaf6r6c90jmn" + }, + "stable": { + "version": [ + 1, + 7 + ], + "commit": "6409bb66241255cc9a0362f2acdcb0b34344f9f2", + "sha256": "1nmsja1s45fs93v2vbalfralixvzp88rgv47vf9p80i7x6w2149m" + } + }, + { + "ename": "cheatsheet", + "commit": "0d2cd657fcadb2dd3fd12864fe94a3465f8c9bd7", + "sha256": "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq", + "fetcher": "github", + "repo": "darksmile/cheatsheet", + "unstable": { + "version": [ + 20170126, + 2150 + ], + "deps": [ + "cl-lib" + ], + "commit": "e4f8e0110167ea16a17a74517d1f10cb7ff805b8", + "sha256": "1vy2qmx9872hfrfcycpsmy0si481rwv4q4gwiy8f2w04zb92szbn" + } + }, + { + "ename": "checkbox", + "commit": "81c4a9d10238836865716f5ea45f8e0e625a87c6", + "sha256": "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa", + "fetcher": "github", + "repo": "camdez/checkbox.el", + "unstable": { + "version": [ + 20141117, + 58 + ], + "deps": [ + "cl-lib" + ], + "commit": "335afa4404adf72973195a580458927004664d98", + "sha256": "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "2afc2011fa35ccfa0ce9ef46cb1896911fa340d1", + "sha256": "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj" + } + }, + { + "ename": "chee", + "commit": "25b445a1dea5e8f1042bed6b5372471c25129fd8", + "sha256": "1sw84qaca2cwgrw332wfqjp3kg3axgi9n6wx5a6h2n3liq5yr1wj", + "fetcher": "github", + "repo": "eikek/chee", + "unstable": { + "version": [ + 20171123, + 2233 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "669ff9ee429f24c3c2d03b83d9cb9aec5f86bb8b", + "sha256": "1k64mjzqmjirsld40dvmpq4llpb7ggx80r1hvsjqazc4mr16pbri" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "beeaa5bb2ce92f1a745440c7ff7468e5f6524701", + "sha256": "1n0n6rnhms2mgh9yjc5whhf3n37y5lp9jk3ban6f6hn55f8p1gmk" + } + }, + { + "ename": "cheerilee", + "commit": "da435df8d78b7c8d4834e00e35c69248a7043c0a", + "sha256": "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv", + "fetcher": "github", + "repo": "Vannil/cheerilee.el", + "unstable": { + "version": [ + 20160313, + 1835 + ], + "deps": [ + "xelb" + ], + "commit": "41bd81b5b0bb657241ceda5be6af5e07254d7376", + "sha256": "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1" + } + }, + { + "ename": "chef-mode", + "commit": "4044056af824d552a2852ef1f2e7166899f56d8c", + "sha256": "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr", + "fetcher": "github", + "repo": "mpasternacki/chef-mode", + "unstable": { + "version": [ + 20180628, + 1453 + ], + "commit": "048d691cb63981ae235763d4a6ced4af5c729924", + "sha256": "1niin51xwkd8q3wbwcgb0gyk3sw1829qj2p2zv7fm8ljy1jicn2d" + } + }, + { + "ename": "cherry-blossom-theme", + "commit": "401ae22f11f7ee808eb696a4c1f869cd824702c0", + "sha256": "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w", + "fetcher": "github", + "repo": "inlinestyle/emacs-cherry-blossom-theme", + "unstable": { + "version": [ + 20150622, + 342 + ], + "commit": "eea7653e00f35973857ee23b27bc2fae5e753e50", + "sha256": "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd" + } + }, + { + "ename": "chicken-scheme", + "commit": "03f4992471185bf41720ff6fc725fd5fa1291a41", + "sha256": "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr", + "fetcher": "github", + "repo": "dleslie/chicken-scheme.el", + "unstable": { + "version": [ + 20141116, + 1939 + ], + "commit": "19b0b08b5592063e852cae094b394c7d1f923639", + "sha256": "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5" + } + }, + { + "ename": "chinese-conv", + "commit": "a798158829f8fd84dd3e5e3ec5987d98ff54e641", + "sha256": "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr", + "fetcher": "github", + "repo": "gucong/emacs-chinese-conv", + "unstable": { + "version": [ + 20170807, + 2128 + ], + "deps": [ + "cl-lib" + ], + "commit": "b56815bbb163d642e97fa73093b5a7e87cc32574", + "sha256": "1bc3yn8y60y6a4vpqv39arn1pkcpl4s4n0sz9446f6m1lcal4c3r" + } + }, + { + "ename": "chinese-number", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0cjfxhd5izahkncs2nzpdv8brsxlwr2dx4hi07ymr62cr0hh0jgy", + "fetcher": "github", + "repo": "zhcosin/chinese-number", + "unstable": { + "version": [ + 20161008, + 509 + ], + "commit": "7311c2a0c5eea5f016a90d733dfe75144c302fb2", + "sha256": "01i7nycjnx4cpfgwakj14jv9dwybjl5jnslcxic9pr1n77mz53wk" + } + }, + { + "ename": "chinese-wbim", + "commit": "3b6b1d100ddf29d6936569d61bf4be19a24d002d", + "sha256": "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb", + "fetcher": "github", + "repo": "zilongshanren/chinese-wbim", + "unstable": { + "version": [ + 20190727, + 854 + ], + "commit": "5d496364b0b6bbaaf0f9b37e5a6d260d4994f260", + "sha256": "1gmdklcldnzngki0rwa7f7lc71wb6qbyxcwlyqdw908ppkk40vbl" + } + }, + { + "ename": "chinese-word-at-point", + "commit": "c9b7785eca577218feade982c979694389f37ec3", + "sha256": "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4", + "fetcher": "github", + "repo": "xuchunyang/chinese-word-at-point.el", + "unstable": { + "version": [ + 20170811, + 941 + ], + "deps": [ + "cl-lib" + ], + "commit": "8223d7439e005555b86995a005b225ae042f0538", + "sha256": "13gva1ld4f9wwb2m4fpk6bd9342qvvmaf5i1r3x3h84czmk0nq1r" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "36a03cce32fe059d2b581cb2e029715c0be81074", + "sha256": "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j" + } + }, + { + "ename": "chinese-yasdcv", + "commit": "b6d727c30d2ec0f885a927a16a442fe220a740d5", + "sha256": "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm", + "fetcher": "github", + "repo": "tumashu/chinese-yasdcv", + "unstable": { + "version": [ + 20171015, + 144 + ], + "deps": [ + "cl-lib", + "pyim" + ], + "commit": "5ab830daf1273d5a5cddcb94b56a9737f12d996f", + "sha256": "1mv1n6m73aamxj18i851ww53q7p4ydiqgaapxyvjbm6sx8ddz9ak" + } + }, + { + "ename": "chocolate-theme", + "commit": "77ad3eb92e1f7016ed703705697b3cdfe811c387", + "sha256": "14slzm0c1lwclmk73ivhflf2kkwmxr3fxy3c2h9r6x7p1z4l32d7", + "fetcher": "github", + "repo": "SavchenkoValeriy/emacs-chocolate-theme", + "unstable": { + "version": [ + 20190724, + 702 + ], + "deps": [ + "autothemer" + ], + "commit": "7d9be4a0516d5ccab61c21af1e2a1555c4cee456", + "sha256": "01rk3ls2ji59mmr5s1ijbc92186m4hc3mv43j24sbcbci64h21k0" + } + }, + { + "ename": "choice-program", + "commit": "6e39555b2538cc8a955766c5533871396e8fe712", + "sha256": "0a21yd3b8sb15vms9mclaa7xnnk0as08p6q38mwdwjp9sgcfyh1b", + "fetcher": "github", + "repo": "plandes/choice-program", + "unstable": { + "version": [ + 20190721, + 1854 + ], + "deps": [ + "cl-lib" + ], + "commit": "215e8ab6acc47f240b12bd11ab387da7f5de885d", + "sha256": "14sp47l7j7sv3bsrnwzqz6mzn3wwv4s75r5my6vjh39pn0qshfh1" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "215e8ab6acc47f240b12bd11ab387da7f5de885d", + "sha256": "14sp47l7j7sv3bsrnwzqz6mzn3wwv4s75r5my6vjh39pn0qshfh1" + } + }, + { + "ename": "chronometer", + "commit": "b20fa4885e2cdc0429d988c76b365bf34d9343db", + "sha256": "1kgfq9srch0amdgb4cvizlrg5xqq0hkkdq85yjr2xwsljh09m83k", + "fetcher": "github", + "repo": "marcelotoledo/chronometer", + "unstable": { + "version": [ + 20190304, + 1528 + ], + "commit": "8457b296ef87be339cbe47730b922757d60bdcd5", + "sha256": "1apzb0jccw91gdynqa1722bbalzj4kp9fq25zzw1rxsrgh3mgmc5" + } + }, + { + "ename": "chronos", + "commit": "53648c5699fc03e50774270f9560c727e2c22873", + "sha256": "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d", + "fetcher": "github", + "repo": "dxknight/chronos", + "unstable": { + "version": [ + 20150602, + 1529 + ], + "commit": "b360d9dae57aa553cf2a14ffa0756a51ad71de09", + "sha256": "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4" + } + }, + { + "ename": "chruby", + "commit": "1989a3c6fa4cd7aaf6b0b202f197eb7db51936b9", + "sha256": "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk", + "fetcher": "github", + "repo": "plexus/chruby.el", + "unstable": { + "version": [ + 20180114, + 1652 + ], + "deps": [ + "cl-lib" + ], + "commit": "42bc6d521f832eca8e2ba210f30d03ad5529788f", + "sha256": "06pvjw40qk017py9km26vjrh90acycnkr5r04nxf664qqkjlg2mc" + } + }, + { + "ename": "chyla-theme", + "commit": "5c55eebf8df165360ce1e5d18e484c90f296fe52", + "sha256": "1mgr6483bjjwk8bi6kijyw61s52nq6g2svhy5n1jnffi3gaw7hl5", + "fetcher": "github", + "repo": "chyla/ChylaThemeForEmacs", + "unstable": { + "version": [ + 20180302, + 1658 + ], + "commit": "ae5e7ecace2ab474151eb0ac5ef07fba2dc32f8a", + "sha256": "1gqzwwr3fnhd9iqn7zmqpxgxvmrhq7g849ndjwizksk0bfj3b596" + } + }, + { + "ename": "cider", + "commit": "55a937aed818dbe41530037da315f705205f189b", + "sha256": "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx", + "fetcher": "github", + "repo": "clojure-emacs/cider", + "unstable": { + "version": [ + 20190720, + 1656 + ], + "deps": [ + "clojure-mode", + "parseedn", + "pkg-info", + "queue", + "seq", + "sesman", + "spinner" + ], + "commit": "dd6d4c4236c6a7beb2ad755f9ef65e6243092fd8", + "sha256": "16hmgy7gwfqdcahy0q5vwjhgrsv6k8jf8mlijb30pxsn6jlrwmc9" + }, + "stable": { + "version": [ + 0, + 21, + 0 + ], + "deps": [ + "clojure-mode", + "pkg-info", + "queue", + "seq", + "sesman", + "spinner" + ], + "commit": "200c88adb1314b5811ba749af42ffb6817c1ca1b", + "sha256": "0lbrwj67fnvynkdkzvnzp3p8vqlz0ldrcs317vg60bqfhx7hvqkj" + } + }, + { + "ename": "cider-decompile", + "commit": "0b7f7f23bb15922ce7a7dad1ae23093db72aa10c", + "sha256": "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4", + "fetcher": "github", + "repo": "clojure-emacs/cider-decompile", + "unstable": { + "version": [ + 20151122, + 537 + ], + "deps": [ + "cider", + "javap-mode" + ], + "commit": "5d87035f3c3c14025e8f01c0c53d0ce2c8f56651", + "sha256": "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac" + } + }, + { + "ename": "cider-eval-sexp-fu", + "commit": "947f4d106d70f95ca8aac124ab0d90b2975208df", + "sha256": "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq", + "fetcher": "github", + "repo": "clojure-emacs/cider-eval-sexp-fu", + "unstable": { + "version": [ + 20190311, + 2152 + ], + "deps": [ + "eval-sexp-fu" + ], + "commit": "7fd229f1441356866aedba611fd0cf4e89b50921", + "sha256": "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "eval-sexp-fu" + ], + "commit": "7fd229f1441356866aedba611fd0cf4e89b50921", + "sha256": "01gky548v3758fyr317lkwsc9aacab6m9d9vk1mrr3qyvmciwd51" + } + }, + { + "ename": "cider-hydra", + "commit": "51d5e6471f88337c478ee5c189f037aaec937f56", + "sha256": "1qjgfrj3ck70vkyc9c00mif0jq5hc2yan2hql31qzbpqzg3pi2r7", + "fetcher": "github", + "repo": "clojure-emacs/cider-hydra", + "unstable": { + "version": [ + 20181015, + 727 + ], + "deps": [ + "cider", + "hydra" + ], + "commit": "5956c3909cd9beae11f64973e4f0d830cea7860d", + "sha256": "1hnari85c4y5sc8cdv2idkg2qv058crz54xdidnphr1wgw5zhvpk" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cider", + "hydra" + ], + "commit": "5956c3909cd9beae11f64973e4f0d830cea7860d", + "sha256": "1hnari85c4y5sc8cdv2idkg2qv058crz54xdidnphr1wgw5zhvpk" + } + }, + { + "ename": "ciel", + "commit": "9c70c007a557ea9fb9eb4d3f8b7adbe4dac39c8a", + "sha256": "0rz7z3shhsvky91b581nn3hw760nlsc94fl35flm1973kvm9lvdp", + "fetcher": "github", + "repo": "cs14095/ciel.el", + "unstable": { + "version": [ + 20180914, + 815 + ], + "commit": "429773a3c551691a463ecfddd634b8bae2f48503", + "sha256": "0xykdwsjgx44c0l5v9swkjjv0xa673krzlc71b1sc4dw9l526s4m" + } + }, + { + "ename": "cil-mode", + "commit": "ccbf4a7c9df3c85207c7160ee68ecc4ba4f3801a", + "sha256": "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y", + "fetcher": "github", + "repo": "ForNeVeR/cil-mode", + "unstable": { + "version": [ + 20160622, + 1430 + ], + "commit": "a78a88ca9a66a82f069329a96e34b67478ae2d9b", + "sha256": "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "a78a88ca9a66a82f069329a96e34b67478ae2d9b", + "sha256": "06p6hz6jrnvnlbxdr1pjgf5wh4n34kf6al4589qg1s88r2lf86bl" + } + }, + { + "ename": "cinspect", + "commit": "1e5b5bdbfeb59ed8e98e50d0cc773d78c72d1699", + "sha256": "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj", + "fetcher": "github", + "repo": "inlinestyle/cinspect-mode", + "unstable": { + "version": [ + 20150716, + 233 + ], + "deps": [ + "cl-lib", + "deferred", + "python-environment" + ], + "commit": "4e199a90f89b335cccda1518aa0963e0a1d4fbab", + "sha256": "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw" + } + }, + { + "ename": "circadian", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1xxrhifw371yc4i2cddzcdmqh5dfc905wyl88765098685q8k4bp", + "fetcher": "github", + "repo": "guidoschmidt/circadian.el", + "unstable": { + "version": [ + 20181024, + 1256 + ], + "commit": "414127acad8e2e0092ca60918e6a7cb89da6e28a", + "sha256": "08cfhk33xawj0jbgywfn1w0j7gjyj9bcghbrwn96fd7wwj3wh5j2" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "commit": "9894361dcd6ffb6d4629b4cbbabda2153699eb8e", + "sha256": "0wpsykmai3idz0bgfl07hwl9nr4x9sgprvqgw8jln4dz2wf5gdic" + } + }, + { + "ename": "circe", + "commit": "a2b295656d53fddc76cacc86b239e5648e49e3a4", + "sha256": "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07", + "fetcher": "github", + "repo": "jorgenschaefer/circe", + "unstable": { + "version": [ + 20190322, + 1242 + ], + "deps": [ + "cl-lib" + ], + "commit": "6ccd4b494cbae9d28091217654f052eaea321007", + "sha256": "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd" + }, + "stable": { + "version": [ + 2, + 11 + ], + "deps": [ + "cl-lib" + ], + "commit": "6ccd4b494cbae9d28091217654f052eaea321007", + "sha256": "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd" + } + }, + { + "ename": "circe-notifications", + "commit": "76c0408423c4e0728789de7b356b2971d6c446c7", + "sha256": "06y525x5yc0xgbw0cf16mc72ca9bv8j8z4gpgznbad2qp7psf53c", + "fetcher": "github", + "repo": "eqyiel/circe-notifications", + "unstable": { + "version": [ + 20180102, + 2318 + ], + "deps": [ + "alert", + "circe" + ], + "commit": "291149ac12877bbd062da993479d3533a26862b0", + "sha256": "18mva5nn919c86sgk6kdh437vdnlh9bk7fg10xqcpics1yv3viaw" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "alert", + "circe" + ], + "commit": "80c44441ecd3ae04ae63760aa20afa837c1ed05b", + "sha256": "0s0iw5vclciziga78f1lvj6sdg84a132in39k4vz0pj598ypin1w" + } + }, + { + "ename": "citeproc", + "commit": "20aa56e9a4809cee1082224b1b4e65921a48bda1", + "sha256": "1qphg2bg7vvjzgvnsscbyf40llxxh4aa2s2ffk8vsbfd4p8208cq", + "fetcher": "github", + "repo": "andras-simonyi/citeproc-el", + "unstable": { + "version": [ + 20190422, + 2017 + ], + "deps": [ + "dash", + "f", + "org", + "queue", + "s", + "string-inflection" + ], + "commit": "abab214473b7486f662c147f1c36b2a6b4b0302d", + "sha256": "0x4pjmjvi53ysfz1c0l1vi8fvd49fsdmn1j9g8zdry5b2kv36siw" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "dash", + "f", + "queue", + "s", + "string-inflection" + ], + "commit": "6d68f52ebd150e035b33dcaa59d9e2aceab69b84", + "sha256": "04xz3y3j8k1pv5v6v9wqscqlpmgqi85fs3igrv8c9y0xagild29k" + } + }, + { + "ename": "cl-format", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "09jwy0fgaz2f04dvcdns6w859s6izvrkp8ib4lws3x8kx8z918fy", + "fetcher": "github", + "repo": "alvinfrancis/cl-format", + "unstable": { + "version": [ + 20160413, + 45 + ], + "commit": "4380cb8009c47cc6d9098b383082b93b1aefa460", + "sha256": "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "4380cb8009c47cc6d9098b383082b93b1aefa460", + "sha256": "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h" + } + }, + { + "ename": "cl-lib-highlight", + "commit": "696c79669478b0d1c9769cc6f0fe581ee056cf32", + "sha256": "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8", + "fetcher": "github", + "repo": "skeeto/cl-lib-highlight", + "unstable": { + "version": [ + 20140127, + 2112 + ], + "deps": [ + "cl-lib" + ], + "commit": "fd1b308e6e989791d1df14438efa6b77d20f7c7e", + "sha256": "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "c117451df8455769701af6c8e92a8fb29c05e1fa", + "sha256": "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw" + } + }, + { + "ename": "cl-libify", + "commit": "22088f8779652072871d5c472c67f34bd0470129", + "sha256": "0p3b57vfzhk348hb7bcnkq4ihi4qzsy4hcdvwa1h85i84vwyzk5d", + "fetcher": "github", + "repo": "purcell/cl-libify", + "unstable": { + "version": [ + 20181130, + 230 + ], + "commit": "e205b96f944a4f312fd523804cbbaf00027a3c8b", + "sha256": "03xmpgpd4zw9x4shkz9aa744ifnwfblnq369qsp3r1awjacksrg3" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "f7df5d868ada173bc81860ef81ece359f13ae4e4", + "sha256": "1xp0zajp4rsnxkfzrmz0m5bihk0n1hgwc1cm9q163b2azsvixxmw" + } + }, + { + "ename": "clang-format", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "0v8nvgjadzmsz088q6cgli5s99z45bz9qb508qln1yips42zn258", + "fetcher": "github", + "repo": "emacsmirror/clang-format", + "unstable": { + "version": [ + 20180406, + 1514 + ], + "deps": [ + "cl-lib" + ], + "commit": "1469728c61dcba8fa09c456e841f97e9eb75fa85", + "sha256": "0w6pd47pfs8jna076xjz0xz1f7bxdgvyglpllkm62fifiy2n994l" + } + }, + { + "ename": "clean-aindent-mode", + "commit": "ee9dac7c10e652f026643620418dfea9237a0d23", + "sha256": "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4", + "fetcher": "github", + "repo": "pmarinov/clean-aindent-mode", + "unstable": { + "version": [ + 20171017, + 2043 + ], + "commit": "a97bcae8f43a9ff64e95473e4ef0d8bafe829211", + "sha256": "07dgx09j6nn5dl9vpqfcs5yqm79kza3h3r1lb7r09wpkmrg0c2cr" + } + }, + { + "ename": "clean-buffers", + "commit": "7fcabd17d7de9af443198ac9c2996bfbd94324de", + "sha256": "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj", + "fetcher": "github", + "repo": "lujun9972/clean-buffers", + "unstable": { + "version": [ + 20160529, + 2259 + ], + "deps": [ + "cl-lib" + ], + "commit": "1be6c54e3095761b6b64bf749faae3dfce94e72a", + "sha256": "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l" + } + }, + { + "ename": "clear-text", + "commit": "d2ae86a3001587ba753fcd0ca5137cb65d38910d", + "sha256": "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv", + "fetcher": "github", + "repo": "xuchunyang/clear-text.el", + "unstable": { + "version": [ + 20160406, + 2043 + ], + "commit": "b50669b6077d6948f72cb3c649281d206e0c2f2b", + "sha256": "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka" + } + }, + { + "ename": "clevercss", + "commit": "ec88232feb9d0a04278d5f615bb0ee0833ecb8ca", + "sha256": "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0", + "fetcher": "github", + "repo": "jschaf/CleverCSS-Mode", + "unstable": { + "version": [ + 20131229, + 155 + ], + "commit": "b8a3c0dd674367c62b1a1ffec84d88fe0c0219bc", + "sha256": "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx" + } + }, + { + "ename": "click-mode", + "commit": "1859bb26e3efd66394d7d9f4d2296cbeeaf5ba4d", + "sha256": "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r", + "fetcher": "github", + "repo": "bmalehorn/click-mode", + "unstable": { + "version": [ + 20180611, + 44 + ], + "commit": "b94ea8cce89cf0e753b2ab915202d49ffc470fb6", + "sha256": "0bz0wp40khha96k74g9vgnzm7xzsrh0wh4vks205pjhaxabhb5vh" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "commit": "c074e7b5b0a88434d0d3411f18884d1f6e288b33", + "sha256": "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb" + } + }, + { + "ename": "cliphist", + "commit": "82d86dae4ad8efc8ef342883c164c56e43079171", + "sha256": "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29", + "fetcher": "github", + "repo": "redguardtoo/cliphist", + "unstable": { + "version": [ + 20181229, + 1411 + ], + "deps": [ + "ivy" + ], + "commit": "232ab0b3f6d502de61ebe76681a6a04d4223b877", + "sha256": "0is772r0b7i8rvra9zb94g9aczv8b6q0dmdk67wbli5rv5drfjyq" + }, + "stable": { + "version": [ + 0, + 5, + 6 + ], + "deps": [ + "ivy" + ], + "commit": "232ab0b3f6d502de61ebe76681a6a04d4223b877", + "sha256": "0is772r0b7i8rvra9zb94g9aczv8b6q0dmdk67wbli5rv5drfjyq" + } + }, + { + "ename": "clipmon", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0qhav3scmk3zsa7v3hg3zczps0as3mzrz3cl34n3xlvf4f6ifd9k", + "fetcher": "github", + "repo": "bburns/clipmon", + "unstable": { + "version": [ + 20180129, + 1054 + ], + "commit": "95dc56c7ed84a654ec90f4740eb6df1050de8cf1", + "sha256": "0mfb4k0i71y49hn0xk5a1mv4zaj249qcan0y0nzvgf7mmvr32n9w" + } + }, + { + "ename": "clippy", + "commit": "e3743596c4b6387351684b1bf00f17275b8e59e8", + "sha256": "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg", + "fetcher": "github", + "repo": "Fuco1/clippy.el", + "unstable": { + "version": [ + 20161028, + 1954 + ], + "deps": [ + "pos-tip" + ], + "commit": "e77f6b63e54d74e243be98accad474e38f7e2a86", + "sha256": "052xqscb63kjj6z9m0kk5jlfsy84g848lnpcn5yhz3km2r6nigqm" + } + }, + { + "ename": "clips-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1ckk8ajr1x8y2h8jx2q233xs69nip3kjn0wp3xgfbwx7hjcbk7kr", + "fetcher": "github", + "repo": "clips-mode/clips-mode", + "unstable": { + "version": [ + 20170909, + 823 + ], + "commit": "dd38e2822640a38f7d8bfec4f69d8dd24be27074", + "sha256": "1q2jz72wi8d2pdrjic9kwqixp5sczjkkx8rf67rgaz37ysjpcbf6" + }, + "stable": { + "version": [ + 0, + 7 + ], + "commit": "a3ab4a3e958d54a16544ec38fe6338f27df20817", + "sha256": "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd" + } + }, + { + "ename": "clj-refactor", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "05x0820x34pidcz03z96qs685y2700g7ha0dx4vy1xr7fg356c3z", + "fetcher": "github", + "repo": "clojure-emacs/clj-refactor.el", + "unstable": { + "version": [ + 20190618, + 716 + ], + "deps": [ + "cider", + "clojure-mode", + "edn", + "hydra", + "inflections", + "multiple-cursors", + "paredit", + "seq", + "yasnippet" + ], + "commit": "50d2d8aad5e0bd8002173b300f8419d72ceab7af", + "sha256": "012mck2bqngx7s11d37q1h8ig5c167bn5b5rg40jn4vsybhyp2f5" + }, + "stable": { + "version": [ + 2, + 4, + 0 + ], + "deps": [ + "cider", + "clojure-mode", + "edn", + "hydra", + "inflections", + "multiple-cursors", + "paredit", + "s", + "seq", + "yasnippet" + ], + "commit": "3d5d1fbf28bfcc00f917cd96d6784968dcbbc962", + "sha256": "1z9278syijnzxfwlghz7bps3jp4cdl0fxg6igwpjfl8ln56hxazk" + } + }, + { + "ename": "cljr-helm", + "commit": "d99b67e295ef59916211bf22b57b4d093e3d53ab", + "sha256": "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc", + "fetcher": "github", + "repo": "philjackson/cljr-helm", + "unstable": { + "version": [ + 20160913, + 828 + ], + "deps": [ + "cl-lib", + "clj-refactor", + "helm-core" + ], + "commit": "f2fc7b698a56e4a44d5dfbc6a55d77a93c0fa9a4", + "sha256": "0jy6hkz8sr1bplymwxnjg4q408cw2dgfrv70chlw3y5ddc4cingj" + }, + "stable": { + "version": [ + 0, + 11 + ], + "deps": [ + "cl-lib", + "clj-refactor", + "helm-core" + ], + "commit": "f2fc7b698a56e4a44d5dfbc6a55d77a93c0fa9a4", + "sha256": "0jy6hkz8sr1bplymwxnjg4q408cw2dgfrv70chlw3y5ddc4cingj" + } + }, + { + "ename": "cljsbuild-mode", + "commit": "d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba", + "sha256": "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214", + "fetcher": "github", + "repo": "kototama/cljsbuild-mode", + "unstable": { + "version": [ + 20160402, + 1700 + ], + "commit": "fa2315660cb3ce944b5e16c679dcf5afd6a97f4c", + "sha256": "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc" + } + }, + { + "ename": "clmemo", + "commit": "e98b438990dc0dbda264fb4bf7a3237a2661baab", + "sha256": "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs", + "fetcher": "github", + "repo": "ataka/clmemo", + "unstable": { + "version": [ + 20160326, + 1623 + ], + "commit": "846a81b984d71edf8278a4d9f9b886e44d5b8365", + "sha256": "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz" + } + }, + { + "ename": "cloc", + "commit": "0dd7a641efd13aa0bd7509d8a5b0a28e3a0493c8", + "sha256": "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a", + "fetcher": "github", + "repo": "cosmicexplorer/cloc-emacs", + "unstable": { + "version": [ + 20170728, + 1824 + ], + "deps": [ + "cl-lib" + ], + "commit": "f30f0472e465cc8d433d2473e9d3b8dfe2c94491", + "sha256": "0g8hklc0914dsi3ks7g251w58ixa78qsh87dx914cc8sahpc0ws2" + } + }, + { + "ename": "clocker", + "commit": "dadd3f5abad2e1f7863c4d654ff065f641395f64", + "sha256": "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k", + "fetcher": "github", + "repo": "roman/clocker.el", + "unstable": { + "version": [ + 20190214, + 1833 + ], + "deps": [ + "dash", + "projectile", + "spaceline" + ], + "commit": "c4d76968a49287ce3bac0832bb5d5d076054c96f", + "sha256": "1wp74fmnk21n5lrpmyk9j25dc79jffbmmhbgg5avzv63az6ffkdk" + }, + "stable": { + "version": [ + 0, + 0, + 11 + ], + "deps": [ + "dash", + "projectile" + ], + "commit": "4a4831ed4e42e18976edd16b844cb16cb78f3c17", + "sha256": "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0" + } + }, + { + "ename": "clojars", + "commit": "7f766319c3e18a41017684ea503b0382e96ab31b", + "sha256": "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1", + "fetcher": "github", + "repo": "joshuamiller/clojars.el", + "unstable": { + "version": [ + 20180825, + 1951 + ], + "deps": [ + "request-deferred" + ], + "commit": "696c5b056e45067512a7d6dcce2515f3c639f61b", + "sha256": "0qkkdlifii6wkfxaj95zphiw3psmf9qnds3whmp6jq2lq9wpd74f" + } + }, + { + "ename": "clojure-mode", + "commit": "5e3cd2e6ee52692dc7b2a04245137130a9f521c7", + "sha256": "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np", + "fetcher": "github", + "repo": "clojure-emacs/clojure-mode", + "unstable": { + "version": [ + 20190725, + 654 + ], + "commit": "f23eb209a8bedec95e0ad0542762bd13998ba048", + "sha256": "1ighmb00qxk8fzc6g2n5pg4x7l079w9wazsd8kbvk6z09lpip5cs" + }, + "stable": { + "version": [ + 5, + 11, + 0 + ], + "commit": "721287c7a756678d5fe8fa0dcb2d8dc846d239a2", + "sha256": "1x1yszp6waa778ki6sw66w1pzcz389wd01gkcldfxxnd7z89ad5d" + } + }, + { + "ename": "clojure-mode-extra-font-locking", + "commit": "5e3cd2e6ee52692dc7b2a04245137130a9f521c7", + "sha256": "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n", + "fetcher": "github", + "repo": "clojure-emacs/clojure-mode", + "unstable": { + "version": [ + 20190712, + 639 + ], + "deps": [ + "clojure-mode" + ], + "commit": "f23eb209a8bedec95e0ad0542762bd13998ba048", + "sha256": "1ighmb00qxk8fzc6g2n5pg4x7l079w9wazsd8kbvk6z09lpip5cs" + }, + "stable": { + "version": [ + 5, + 11, + 0 + ], + "deps": [ + "clojure-mode" + ], + "commit": "721287c7a756678d5fe8fa0dcb2d8dc846d239a2", + "sha256": "1x1yszp6waa778ki6sw66w1pzcz389wd01gkcldfxxnd7z89ad5d" + } + }, + { + "ename": "clojure-quick-repls", + "commit": "e618430057eb3ac235ab4a44767524919c870036", + "sha256": "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0", + "fetcher": "github", + "repo": "symfrog/clojure-quick-repls", + "unstable": { + "version": [ + 20150814, + 736 + ], + "deps": [ + "cider", + "dash" + ], + "commit": "730311dd3ac4e0aceb0204f818b422017873467f", + "sha256": "1qxhgqldvzzbpr3cxkj3a1zhpjck04pcqli9nnnb75hawi7vi8si" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cider", + "dash" + ], + "commit": "90f82e294cfdfb65231adc456177580cd69bfc00", + "sha256": "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d" + } + }, + { + "ename": "clojure-snippets", + "commit": "4898fc6746b30b0d0453b3b56d02479bfb0f70b9", + "sha256": "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij", + "fetcher": "github", + "repo": "mpenet/clojure-snippets", + "unstable": { + "version": [ + 20180314, + 1308 + ], + "deps": [ + "yasnippet" + ], + "commit": "6068dca90467a0f4ebc2cd39338a173d6f5ddc04", + "sha256": "0vvadcydpsz4b17dlm1jd4fbddzfqibh3mlzv3k4gvp67vv10cqy" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "yasnippet" + ], + "commit": "83785faa607884308a42b81f160854f2cecfd098", + "sha256": "1sdgf1avfw7w3m3i7nqb9m9nhqk8lr0bri686lrkq23ds2b44454" + } + }, + { + "ename": "clomacs", + "commit": "345f9797e87e3f5f957c167a5e3d33d1e31b50a3", + "sha256": "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh", + "fetcher": "github", + "repo": "clojure-emacs/clomacs", + "unstable": { + "version": [ + 20190313, + 1517 + ], + "deps": [ + "cider", + "s", + "simple-httpd" + ], + "commit": "461be59e5f480af292c84fd6f7d88f1f885371a5", + "sha256": "1kglhcid32vxs8nc7j2jjbd0cbwxx2rc0y2wlhmcxpd3gsk2lwp3" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "cider", + "s", + "simple-httpd" + ], + "commit": "d9783d42dbab9710afff5654bf931b00e9df4ac1", + "sha256": "0jwnsyg0vi9ghn9yfd97rjj9j9ja3ig8h63n4zjw71ww3bcdldc6" + } + }, + { + "ename": "closql", + "commit": "2df16abf56e53d4a1cc267a78797419520ff8a1c", + "sha256": "13ybna20w2d1b3n0y5p1ybhkw0j0zh5nd43p1yvf8h1haj983l87", + "fetcher": "github", + "repo": "emacscollective/closql", + "unstable": { + "version": [ + 20190716, + 1430 + ], + "deps": [ + "emacsql-sqlite" + ], + "commit": "f2f1d7bc76153ec257cb13452075f51feb99f14e", + "sha256": "0264sg0dwlwrfflj4wjxlf9lsbhd28gahgcyi1drvhpb0nr6d82r" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "emacsql-sqlite" + ], + "commit": "012b94f8695e194455111fd54eff0b94dd0dd0db", + "sha256": "1xhpfjjkjqfc1k2rj77cscclz5r7gpvv3hi202x178vdcpipjwar" + } + }, + { + "ename": "closure-lint-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "11kxgvfwngdjryrrihlpn0509axwv4zwkxzs4h1pw5vi7sv1n6xd", + "fetcher": "github", + "repo": "r0man/closure-lint-mode", + "unstable": { + "version": [ + 20101118, + 2124 + ], + "commit": "bc3d2fd5c35580bf1b8af43b12484c95a343b4b5", + "sha256": "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na" + } + }, + { + "ename": "cloud-theme", + "commit": "2b003217d0d518b23385e9486c84db7036a479ad", + "sha256": "1q0y04rx4xj251fbnv01shk0l7xvqqsr4xm3m2m5q5gf18s66hrp", + "fetcher": "github", + "repo": "vallyscode/cloud-theme", + "unstable": { + "version": [ + 20190723, + 2316 + ], + "commit": "6fa1274f3f09e43c6749e658c88bb8237fc3d168", + "sha256": "0hkbajihpczagywmbf7a5jbbv2696gj86glyk58j7i28c7vw8x45" + } + }, + { + "ename": "cloud-to-butt-erc", + "commit": "b12354152cce6e9a281dc26018c763b6f93e3cee", + "sha256": "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f", + "fetcher": "github", + "repo": "leathekd/cloud-to-butt-erc", + "unstable": { + "version": [ + 20130627, + 2308 + ], + "commit": "6710c03d1bc91736435cbfe845924940cae34e5c", + "sha256": "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf" + } + }, + { + "ename": "clues-theme", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "0b0gypmxx8qjd8hgxf4kbvci1nwacsxl7rm5s1bcnk9cwc6k2jpr", + "fetcher": "github", + "repo": "emacsfodder/emacs-clues-theme", + "unstable": { + "version": [ + 20161213, + 1127 + ], + "commit": "abd61f2b7f3e98de58ca26e6d1230e70c6406cc7", + "sha256": "118k5bnlk9sc2n04saaxjncmc1a4m1wlf2y7xyklpffkazbd0m72" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "abd61f2b7f3e98de58ca26e6d1230e70c6406cc7", + "sha256": "118k5bnlk9sc2n04saaxjncmc1a4m1wlf2y7xyklpffkazbd0m72" + } + }, + { + "ename": "cm-mode", + "commit": "42dda804ec0c7338c39c57eec6ba479609a38555", + "sha256": "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x", + "fetcher": "github", + "repo": "joostkremers/criticmarkup-emacs", + "unstable": { + "version": [ + 20170203, + 2107 + ], + "deps": [ + "cl-lib" + ], + "commit": "276d49c859822265070ae5dfbb403fd7d8d06436", + "sha256": "0mqbjw9wiaq735v307hd7g0g6i3a4k7h71bi4g9rr2jbgiljmql4" + }, + "stable": { + "version": [ + 1, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "276d49c859822265070ae5dfbb403fd7d8d06436", + "sha256": "0mqbjw9wiaq735v307hd7g0g6i3a4k7h71bi4g9rr2jbgiljmql4" + } + }, + { + "ename": "cmake-font-lock", + "commit": "383a7f191c10916ad40284fba94f967765ffeb7e", + "sha256": "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0", + "fetcher": "github", + "repo": "Lindydancer/cmake-font-lock", + "unstable": { + "version": [ + 20190728, + 1901 + ], + "deps": [ + "cmake-mode" + ], + "commit": "e0ceaaae19c13b66f781512e3295bfc6707b56f4", + "sha256": "03gsyn95dlmsn15bl353bphi3qy7ccn5bss3f7n97kf38bllh0yf" + } + }, + { + "ename": "cmake-ide", + "commit": "17e8a8a5205d222950dc8e9245549a48894b864a", + "sha256": "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg", + "fetcher": "github", + "repo": "atilaneves/cmake-ide", + "unstable": { + "version": [ + 20190731, + 1009 + ], + "deps": [ + "cl-lib", + "levenshtein", + "s", + "seq" + ], + "commit": "e3aa1ded10c079337826b40586111df7114f6379", + "sha256": "1s1z3m3qaf6ayp69w7h95ad3k4bs2iqqzsvjf94h5wd233mqlp2v" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "cl-lib", + "levenshtein", + "seq" + ], + "commit": "a2e476ad42e61075cae9beb35fb83e3c1bf8619e", + "sha256": "0n169i4y2c450bk5r284bakjk3hsg74pply5fqxvdm6p5p1z2vr1" + } + }, + { + "ename": "cmake-mode", + "commit": "9b95a562119259839dcaa08d27871282a5ca5391", + "sha256": "1nhnrkyfd8f2vgxvl5y78vvmjjhqjjpxqcdl7i7kwm243l2zy5g3", + "fetcher": "git", + "url": "https://gitlab.kitware.com/cmake/cmake.git", + "unstable": { + "version": [ + 20190710, + 1319 + ], + "commit": "33d9a691306956750bffb10be9d0b17a47c0ec0b", + "sha256": "0hgri0dpj7km0xnfw7j0fm4g4952qqg47mv64wkx1gmd3ahbcvpb" + }, + "stable": { + "version": [ + 3, + 15, + 1 + ], + "commit": "f43a7d76c737c5bb9b903a2b1be5186c081ec21e", + "sha256": "1335nx2nxjq3hc9nsrl86yjifgbflaz6l1v4ga6piww1qfniky70" + } + }, + { + "ename": "cmake-project", + "commit": "0857c4db1027981ea73bc32bcaa15e5df53edea3", + "sha256": "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3", + "fetcher": "github", + "repo": "alamaison/emacs-cmake-project", + "unstable": { + "version": [ + 20171121, + 1115 + ], + "commit": "d3f408f226eff3f77f7e00dd519f4efc78fd292d", + "sha256": "1r8a3arpkkn91k619z4b6ywnq15glc4n1ji33l0q2m59f5sfk8mp" + }, + "stable": { + "version": [ + 0, + 7 + ], + "commit": "ec61f687772cccdb699f64ebe1e8dc8ba83f790f", + "sha256": "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk" + } + }, + { + "ename": "cmd-to-echo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1b4mw1ips4695ixgw2hyinq9ry3bx4d1842kr7k6155a1v34s4zh", + "fetcher": "github", + "repo": "mallt/cmd-to-echo", + "unstable": { + "version": [ + 20161203, + 2133 + ], + "deps": [ + "s", + "shell-split-string" + ], + "commit": "e0e874fc0e1ad6d291e39ed76023445297ad438a", + "sha256": "0wi097yk9p1xcfmps1g58xvvlv60akwky4y0pxdz6pa31w9jd1q8" + } + }, + { + "ename": "cmm-mode", + "commit": "07579854200302cf69e120648f4983961e628f7d", + "sha256": "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h", + "fetcher": "github", + "repo": "bgamari/cmm-mode", + "unstable": { + "version": [ + 20150225, + 746 + ], + "commit": "c3ad514dff3eb30434f6b20d953276d4c00de1ee", + "sha256": "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx" + } + }, + { + "ename": "cnfonts", + "commit": "0d5787ffeeee68ffa41f3e777071815084e0ed7a", + "sha256": "1pryn08fkdrdj7w302205nj1qhfbk1jzqxx6717crrxakkdqmn9w", + "fetcher": "github", + "repo": "tumashu/cnfonts", + "unstable": { + "version": [ + 20190314, + 1132 + ], + "commit": "c31d13cc3c320fd5bf24bf8309c6d982a25c49ee", + "sha256": "0c50xacgcbk3kbkxbg713bmaidpmkhnsb89pn9v8p8rk5nz06b89" + }, + "stable": { + "version": [ + 0, + 9, + 1 + ], + "commit": "cbe1ddd49e33b790a568c55351146aa5b909f173", + "sha256": "11d44lf0m0kbzq1mvyqkl4aprys0xqaarp08nij57xnynin1rynx" + } + }, + { + "ename": "cobalt", + "commit": "b2435d98e7564d333c8224b67ac6ad9c95debda1", + "sha256": "0r3fx1xx24x4qapbj2p8krc67rjmrjm88y89baf1x2swk7xdza92", + "fetcher": "github", + "repo": "cobalt-org/cobalt.el", + "unstable": { + "version": [ + 20180304, + 1155 + ], + "commit": "634ace275697e188746ca22a30ff94380ec756be", + "sha256": "1mrydmzldgabkkdpmlwfrfb6iddj4by7scc14k9bak5y6hj6ix7l" + } + }, + { + "ename": "cobra-mode", + "commit": "e986942c391f50fb633097f2f31969a8aeecb99e", + "sha256": "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89", + "fetcher": "github", + "repo": "Nekroze/cobra-mode", + "unstable": { + "version": [ + 20140116, + 2116 + ], + "commit": "acd6e53f6286af5176471d01f25257e5ddb6dd01", + "sha256": "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp" + } + }, + { + "ename": "code-archive", + "commit": "a8d0832eff966874d90e1d5ac1043c03e96b1c25", + "sha256": "0rj7cvwzhgam25jxjw5aqx9cxa86008gx2mwcyjlbnjrkhcbi97a", + "fetcher": "github", + "repo": "mschuldt/code-archive", + "unstable": { + "version": [ + 20190612, + 308 + ], + "commit": "1ad9af6679d0294c3056eab9cad673f29c562721", + "sha256": "0s0zakrmbx9gr7ippnyqngc09xj9f7bsv0mv11p062a8pkilg219" + } + }, + { + "ename": "code-library", + "commit": "197bdc508c4fd9712125553a108ca6c9fedcaefc", + "sha256": "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj", + "fetcher": "github", + "repo": "lujun9972/code-library", + "unstable": { + "version": [ + 20160426, + 1218 + ], + "deps": [ + "gist" + ], + "commit": "32d59c5c845d6dbdda18f9bd1c03a58d55417fc5", + "sha256": "1n00bb39jgx02zdgla85zx0a338xir0zh0af6xca14kg5bx07vsv" + } + }, + { + "ename": "code-stats", + "commit": "20af5580926e9975605c0a245f6ac15c25f4921e", + "sha256": "0mwjlhpmrbh3mbw3hjlsbv1fr4mxh068c9g0zcxq7wkksxx707if", + "fetcher": "github", + "repo": "xuchunyang/code-stats-emacs", + "unstable": { + "version": [ + 20190407, + 236 + ], + "deps": [ + "request" + ], + "commit": "15242297279cb0dee01fbb93ef7536e337e20bb7", + "sha256": "1f2fmxpijggk804pa2m86z2n9kp11n4w5k83a7l2qw6c855ax8lx" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "request" + ], + "commit": "20d60ded0743f01206c3c2e92ab73788def9adcb", + "sha256": "0g8pqqpwmc646krdpfkri8q7pwnj8sb3pma5mfkwg8lvj6ddcx27" + } + }, + { + "ename": "codebug", + "commit": "35cd654bd7b390518eb5ddca8842bdfcc9e9e6f1", + "sha256": "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj", + "fetcher": "github", + "repo": "shano/emacs-codebug", + "unstable": { + "version": [ + 20140929, + 2137 + ], + "commit": "ac0e4331ba94ccb5203fa492570e1ca6b90c3d52", + "sha256": "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp" + } + }, + { + "ename": "codesearch", + "commit": "0da1c6971ac2d3e9ee67731d00a9e8ca2d169826", + "sha256": "1zm7fqwiknk07c8aks1silnkxifkfbdzvbzg77wrap48k8mnw03l", + "fetcher": "github", + "repo": "abingham/emacs-codesearch", + "unstable": { + "version": [ + 20181006, + 1431 + ], + "deps": [ + "log4e" + ], + "commit": "f6eb96f034a925444412cfa03e45e0ccbbafe3f2", + "sha256": "1xdkm1f04z1h3ivd6zm8hckf3n3fbi5rwybg4dwi5mim6w84i7j9" + } + }, + { + "ename": "codic", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn", + "fetcher": "github", + "repo": "syohex/emacs-codic", + "unstable": { + "version": [ + 20150926, + 1127 + ], + "deps": [ + "cl-lib" + ], + "commit": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "52bbb6997ef4ab9fb7fea43bbfff7f04671aa557", + "sha256": "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz" + } + }, + { + "ename": "coffee-fof", + "commit": "9024e5a71c992509a1dea5f673a31b806d5e175e", + "sha256": "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc", + "fetcher": "github", + "repo": "yasuyk/coffee-fof", + "unstable": { + "version": [ + 20131012, + 1230 + ], + "deps": [ + "coffee-mode" + ], + "commit": "211529594bc074721c6cbc4edb73a63cc05f89ac", + "sha256": "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p" + } + }, + { + "ename": "coffee-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1", + "fetcher": "github", + "repo": "defunkt/coffee-mode", + "unstable": { + "version": [ + 20170324, + 940 + ], + "commit": "86ab8aae8662e8eff54d3013010b9c693b16eac5", + "sha256": "0hf06wp6cpsm7fivwkph6xvc2r39xww8q3aibp4nprlrwcmmv2al" + }, + "stable": { + "version": [ + 0, + 6, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "adfb7ae73d6ee2ef790c780dd3c967e62930e94a", + "sha256": "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg" + } + }, + { + "ename": "coin-ticker", + "commit": "fd783998658b69159e39d9440da7a0dd04135e49", + "sha256": "0v4zyswhghknlsal9xfsgwf8ckjwrjkjrg8w7p6yjqrxmfsbw93b", + "fetcher": "github", + "repo": "eklitzke/coin-ticker-mode", + "unstable": { + "version": [ + 20170611, + 727 + ], + "deps": [ + "request" + ], + "commit": "9efab90fe4e6f29464af14e0d8fd1e20c0147b80", + "sha256": "0xnrh6v4s2s3fgvw0v9fl48dlk4r2p6axp7xf41gzb1ai81yczhv" + } + }, + { + "ename": "colemak-evil", + "commit": "0f0750a3f9537782ee61d6e56c51ce7b86def12e", + "sha256": "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z", + "fetcher": "github", + "repo": "patbl/colemak-evil", + "unstable": { + "version": [ + 20171015, + 2307 + ], + "deps": [ + "evil" + ], + "commit": "192c779281ae1fbf2405dcdb55b3c5b2a1d0b3d1", + "sha256": "1clnvr7n6mx5b8pq1c6zchq7n1g8ip8hwgzc61ywrmiyv0v8rnc6" + } + }, + { + "ename": "colonoscopy-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q", + "fetcher": "github", + "repo": "emacsfodder/emacs-colonoscopy-theme", + "unstable": { + "version": [ + 20170808, + 1309 + ], + "commit": "64bbb322b13dae91ce9f1e3581f836f94f800ead", + "sha256": "1r0is6zjkzikm565fvmj0gx8ms5ig9l5xihnka4fig7jy6ak33z5" + } + }, + { + "ename": "color-identifiers-mode", + "commit": "5c735755e414fdf169aca5ec6f742533d21472e0", + "sha256": "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq", + "fetcher": "github", + "repo": "ankurdave/color-identifiers-mode", + "unstable": { + "version": [ + 20181120, + 1951 + ], + "deps": [ + "dash" + ], + "commit": "4ba39f0274e1f85e50c956c507f942d950891a20", + "sha256": "102vyyal2zv8smbc7a362ibk5kl5nylplfjjx9w8r5pyapygq7mq" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "dash" + ], + "commit": "536151410dbb198b328dc62b829d9692cec0b1bd", + "sha256": "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh" + } + }, + { + "ename": "color-moccur", + "commit": "19105272fd8def5c7b22bfe5eeed5212e6ccae9c", + "sha256": "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq", + "fetcher": "github", + "repo": "myuhe/color-moccur.el", + "unstable": { + "version": [ + 20141223, + 35 + ], + "commit": "4f1c59ffd1ccc2ab1a171cd6b721e8cb9e002fb7", + "sha256": "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x" + } + }, + { + "ename": "color-theme", + "commit": "90fc6a19838f8e5ffe3b96747784d2f5628f7434", + "sha256": "0sgjyiqi65ylvd926ywfjzh752bpch3szvx4z3la1r9gpkrnwspd", + "fetcher": "github", + "repo": "emacsattic/color-theme", + "unstable": { + "version": [ + 20190220, + 1115 + ], + "commit": "3a2f6b615f5e2401e30d93a3e0adc210bbb4b7aa", + "sha256": "09imx996afh3j207163kg8sc92hd7wljkpban1pnn6f67bgyrvlv" + } + }, + { + "ename": "color-theme-approximate", + "commit": "f10631b740eea56e7209d7e84f0da8613274ef1d", + "sha256": "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1", + "fetcher": "github", + "repo": "tungd/color-theme-approximate", + "unstable": { + "version": [ + 20140228, + 436 + ], + "commit": "f54301ca39bc5d2ffb000f233f8114184a3e7d71", + "sha256": "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq" + } + }, + { + "ename": "color-theme-buffer-local", + "commit": "e43060d80b3345ef4e8df9f5a9d66af8a44a9c41", + "sha256": "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0", + "fetcher": "github", + "repo": "vic/color-theme-buffer-local", + "unstable": { + "version": [ + 20170126, + 601 + ], + "deps": [ + "color-theme" + ], + "commit": "e606dec66f16a06140b9aad625a4fd52bca4f936", + "sha256": "0c04fy3hc8wc0aabilqx9mcipmd41rmshqjxc3z8m1w0bm4288g1" + } + }, + { + "ename": "color-theme-modern", + "commit": "2db82e101916d8709b711034da5ca6e4072e1077", + "sha256": "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm", + "fetcher": "github", + "repo": "emacs-jp/replace-colorthemes", + "unstable": { + "version": [ + 20161219, + 1144 + ], + "commit": "42a79266f1d7b473e9328e67a455e505e6c3eff5", + "sha256": "0mw5rnzzc4yfcflg59viy81ziws680r44xr05qg032b5x02l8ar9" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "7107540d22e8ff045e0707de84c8b179fd829302", + "sha256": "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9" + } + }, + { + "ename": "color-theme-sanityinc-solarized", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf", + "fetcher": "github", + "repo": "purcell/color-theme-sanityinc-solarized", + "unstable": { + "version": [ + 20190206, + 59 + ], + "deps": [ + "cl-lib" + ], + "commit": "54daf1e5a0fbee6682cade1f59171daf185239e3", + "sha256": "0z9p9lbngrv8yx9asmz6x89183gw2v75l990hr8m0aydfbfn6gnz" + }, + "stable": { + "version": [ + 2, + 29 + ], + "commit": "554e941131d009c0a5d7129ed96796182b4cc590", + "sha256": "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc" + } + }, + { + "ename": "color-theme-sanityinc-tomorrow", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd", + "fetcher": "github", + "repo": "purcell/color-theme-sanityinc-tomorrow", + "unstable": { + "version": [ + 20190801, + 1755 + ], + "commit": "3648bb7d0e85e2d980c8a1f42ae400735c974fce", + "sha256": "0j1rllrjzpj3kvzd7sv883lnbbfd1ad3nnq6sp4j2v40n7smin8i" + }, + "stable": { + "version": [ + 1, + 17 + ], + "commit": "81d8990085960824f700520d08027e6aca58feaa", + "sha256": "1x3aq6hadp158vh8mf9hmj5rikq0qz7a1frv7vbl39xr3wcnjj23" + } + }, + { + "ename": "color-theme-x", + "commit": "321900baf4149f8b58b075b9fb27716cf708f2a2", + "sha256": "0nb2hqmmj1rhqjcbv5m8r9g2bf993lp45ka9rrxqp0pkmyd9fvs2", + "fetcher": "github", + "repo": "ajsquared/color-theme-x", + "unstable": { + "version": [ + 20180227, + 46 + ], + "deps": [ + "cl-lib" + ], + "commit": "6c2264aa6c5d9a72caeae67ebaa4472090e70350", + "sha256": "1fyz8bampcqzpbyg0l1g0nvv2m5n8000xy5yl05217dlxb448nnd" + } + }, + { + "ename": "colorless-themes", + "commit": "996d2a04de493d6ce8f5638df4500774010dcfe9", + "sha256": "1f3yz20379hx7gb5621apd1qvfv8kapgkcpni06p870w5p7ppmcl", + "fetcher": "git", + "url": "https://git.sr.ht/~lthms/colorless-themes.el", + "unstable": { + "version": [ + 20190720, + 752 + ], + "commit": "2ae9a1e5e7bd073154f1557000b8535a113eddfc", + "sha256": "0h73zgwfl8v8x75lbxz4s5z50njv97whrj0nh435cjnjm85c13b2" + } + }, + { + "ename": "colormaps", + "commit": "f4c795d9e323b08bc8354a6933a061644705a2ec", + "sha256": "16plhgpfz1wb58p6h8wxjhplhgv0mbj3f2xj34p6vydh44l8w8q2", + "fetcher": "github", + "repo": "lepisma/colormaps.el", + "unstable": { + "version": [ + 20171008, + 2224 + ], + "commit": "19fbb64a6288d505b9cf45c9b5a3eed0bfb135e2", + "sha256": "0kbhy8bpxqdr1kjczz2vm7chfpjprx2frpbh1gh9i1gwwx5k4myp" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "3a88961ba66b09a49ea5aa92b2b8776b2c92d68c", + "sha256": "083hks2zzalizdsgabiwc1kd114r748v5i3w3kfk8pv37i2gay35" + } + }, + { + "ename": "column-enforce-mode", + "commit": "91bebef8e97665a5d076c557d559367911a25ea2", + "sha256": "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg", + "fetcher": "github", + "repo": "jordonbiondo/column-enforce-mode", + "unstable": { + "version": [ + 20171030, + 1900 + ], + "commit": "2341a2b6a33d4b8b74c35062ec9cfe1bffd61944", + "sha256": "0rcxb7daxxrp5f1i5cbv25viwawbbsn4ij1mnlclp5wz7ilcy2rs" + } + }, + { + "ename": "com-css-sort", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "153yhyqrlmarz8rpcvb0rr7f388fhyb2val4qx2pzpsimklrwrcb", + "fetcher": "github", + "repo": "elpa-host/com-css-sort", + "unstable": { + "version": [ + 20190723, + 1714 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "e3c6a3a88c8f7e3ce7a5c6756b47a7aba7ffe149", + "sha256": "0c3pcgr95nhf2yx66hxiwwl6k2fqz8cpmr0y0fxzahkmvc4c9zi6" + } + }, + { + "ename": "comb", + "commit": "1b236a1f3953475cbd7eb5c4289b092818ae08cf", + "sha256": "0n4pkigr07hwj5nb0ngs6ay80psqv7nppp82rg5w38qf0mjs3pkp", + "fetcher": "github", + "repo": "cyrus-and/comb", + "unstable": { + "version": [ + 20180831, + 721 + ], + "commit": "69d59284e19428794b5c0aaa9be0e7d2770cc846", + "sha256": "17kcj0bkarr9biyjf1kkj4l1n9qfh6lkhwfd32qlr5k7pnwnbirb" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "8a68d313bf429763eb8aa78ece00230a668f2a1f", + "sha256": "1hh1lkan1ch5xyzrpfgzibf8dxmvaa1jfwlxyyhpnfs5h69h3245" + } + }, + { + "ename": "comint-intercept", + "commit": "7d38188ec2d6e16714de9bb24ebd1ea89c7df3da", + "sha256": "1m2fn02n7aphlqmiaxgwp8jqg60sq4001cnkdxn5wb3w1hxy5qvq", + "fetcher": "github", + "repo": "hying-caritas/comint-intercept", + "unstable": { + "version": [ + 20170317, + 1228 + ], + "commit": "a329abf01fa8e0c6b02b46b29bcb421a21120dc5", + "sha256": "0qswlafav415fh1dwqjsjmqlbnsjdl9gl3nzzya76ql5f0gb7svb" + } + }, + { + "ename": "command-log-mode", + "commit": "8426ca3c543178018f7feae6f0076af67a898483", + "sha256": "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj", + "fetcher": "github", + "repo": "lewang/command-log-mode", + "unstable": { + "version": [ + 20160413, + 447 + ], + "commit": "af600e6b4129c8115f464af576505ea8e789db27", + "sha256": "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii" + } + }, + { + "ename": "command-queue", + "commit": "8fd6a70036e88039c850d280fbac782d04790a5f", + "sha256": "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k", + "fetcher": "github", + "repo": "Yuki-Inoue/command-queue", + "unstable": { + "version": [ + 20160328, + 1725 + ], + "commit": "f327c6f852592229a755ec6de0c62c6aeafd6659", + "sha256": "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc" + } + }, + { + "ename": "commander", + "commit": "8b308e05dd85856addbc04a9438f5026803cebd7", + "sha256": "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393", + "fetcher": "github", + "repo": "rejeep/commander.el", + "unstable": { + "version": [ + 20140120, + 1852 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ], + "commit": "c93985dc318fe89e5a29abc21d19fb41e2fd14d2", + "sha256": "0mlabiraagqwl17payils5589fr2mivvkzrfic6ndsipryab6rfc" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ], + "commit": "2c8a57b9c619e29ccbe2d5a85921b9c689e95bf9", + "sha256": "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45" + } + }, + { + "ename": "comment-dwim-2", + "commit": "4ac6ac97875117013515a36c9a4452fbd6c0d74c", + "sha256": "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj", + "fetcher": "github", + "repo": "remyferre/comment-dwim-2", + "unstable": { + "version": [ + 20190105, + 1653 + ], + "commit": "3dfdd58495c46a37708344a57c5c52beca6b2c1c", + "sha256": "08pi3y12i6wx69aj09nk5qd6lplwxq5wz3m7w5701988q39x62xl" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "commit": "3dfdd58495c46a37708344a57c5c52beca6b2c1c", + "sha256": "08pi3y12i6wx69aj09nk5qd6lplwxq5wz3m7w5701988q39x62xl" + } + }, + { + "ename": "comment-or-uncomment-sexp", + "commit": "d1e87e59e1a7c7c7d6eab7dd6b37114e567e5c13", + "sha256": "150gg1i593wgfzy0bg8jwgfc7a6hjnz84m2digjf3fpggvwv0rf8", + "fetcher": "github", + "repo": "Malabarba/comment-or-uncomment-sexp", + "unstable": { + "version": [ + 20190225, + 1122 + ], + "commit": "bec730d3fc1e6c17ff1339eb134af16c034a4d95", + "sha256": "1jhyr854qraza75hjza8fjz2s06iydmdsa61vf5bf2kj5g1bfqkj" + } + }, + { + "ename": "comment-tags", + "commit": "6ac71f4ffc19bce4f571001f9270d5be855dfc3c", + "sha256": "13slv150zch0b7zpxa2dbqjzpqh0iy559m6rc0zs0dwdagzryp3i", + "fetcher": "github", + "repo": "vincekd/comment-tags", + "unstable": { + "version": [ + 20170910, + 1735 + ], + "commit": "7d914097f0a03484af71e621db533737fc692f58", + "sha256": "0s86a7078arck9z4gzkp2hnxyklprl0zh5hsw7nkyyscjydly80i" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "pkg-info" + ], + "commit": "293a30026d7750f6657d6c2e6d6428abf1d7db5a", + "sha256": "06s0phgqpzkkv81gl0cm6x8rjs53lhs8b2j56xamflqiydq0fz7n" + } + }, + { + "ename": "commentary-theme", + "commit": "852b5f83c9870209080d2ed39fede3215ae43e64", + "sha256": "1s3g40f0r0v8m1qqldvw64vs43i5xza7rwkvhxqcqmj6p1a7mqqw", + "fetcher": "github", + "repo": "pzel/commentary-theme", + "unstable": { + "version": [ + 20181213, + 1045 + ], + "commit": "9a825ae98166c9dbbf106e7be62ee69dd9f0342f", + "sha256": "1x30iyvvxggbh7xvp8lwpirvpqijchqf2fdaw4xrlbw5vajlaxcx" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "9a825ae98166c9dbbf106e7be62ee69dd9f0342f", + "sha256": "1x30iyvvxggbh7xvp8lwpirvpqijchqf2fdaw4xrlbw5vajlaxcx" + } + }, + { + "ename": "commenter", + "commit": "437afab17b22c0c559617afa06923b5bc73a3ae8", + "sha256": "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3", + "fetcher": "github", + "repo": "yuutayamada/commenter", + "unstable": { + "version": [ + 20160219, + 1627 + ], + "deps": [ + "let-alist" + ], + "commit": "6d1885419434ba779270c6fda0e30d390bb074bd", + "sha256": "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb" + }, + "stable": { + "version": [ + 0, + 5, + 2 + ], + "deps": [ + "let-alist" + ], + "commit": "6d1885419434ba779270c6fda0e30d390bb074bd", + "sha256": "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb" + } + }, + { + "ename": "commify", + "commit": "fec4b048e1dc78a07acce7d2e6527b9f417d06d5", + "sha256": "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m", + "fetcher": "github", + "repo": "ddoherty03/commify", + "unstable": { + "version": [ + 20161106, + 2334 + ], + "deps": [ + "s" + ], + "commit": "78732c2fa6c1a10288b7436d7c561ec9ebdd41be", + "sha256": "1kb3cbjp69niq8ravh273dma0mnkf1v2ja372ahxfsq1janrkkm6" + } + }, + { + "ename": "common-lisp-snippets", + "commit": "48d0166ccd3dcdd3df4719349778c6c5ab6872ca", + "sha256": "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl", + "fetcher": "github", + "repo": "mrkkrp/common-lisp-snippets", + "unstable": { + "version": [ + 20180226, + 1523 + ], + "deps": [ + "yasnippet" + ], + "commit": "c82ebf18f4ad49f390dd96ffcc59f8683c1a868b", + "sha256": "0xz4jv0l7vgq7rivx8c1m3hahyyk7cj9cadrq3rg9rybhzski57d" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "yasnippet" + ], + "commit": "fc5c2683952328927a6d1c1f2694b85ddf7e9053", + "sha256": "1835kg05794p1wdi7fsmpzlnnqy79dgfnfrxjfjj2j1gzcwmynsw" + } + }, + { + "ename": "company", + "commit": "96e7b4184497d0d0db532947f2801398b72432e4", + "sha256": "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4", + "fetcher": "github", + "repo": "company-mode/company-mode", + "unstable": { + "version": [ + 20190430, + 1852 + ], + "commit": "ad6ff0eecca99dc5ac8b6a8a6174df7d2ad88ae7", + "sha256": "0cps5sl9iij1wrpcnhi7xqv58cqsrswhc8r7hj1c00w8288z978w" + }, + "stable": { + "version": [ + 0, + 9, + 10 + ], + "commit": "3eda0ba23921d43b733f7975e56d490a34b9f30b", + "sha256": "0shmv48bq9l5xm60dwx9lqyq6b39y3d7qjxdlah7dpipv5vhra42" + } + }, + { + "ename": "company-anaconda", + "commit": "0eb23a75c8b57b4af1737c0508f03e66430e6076", + "sha256": "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl", + "fetcher": "github", + "repo": "proofit404/company-anaconda", + "unstable": { + "version": [ + 20181025, + 1305 + ], + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ], + "commit": "0ab70de1740e67cee451abcf3685c7525ff9e95a", + "sha256": "182cijh6l82jj1r7iwd93h3np9c8fvcibjhv7860rk9ik41n7wil" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "anaconda-mode", + "cl-lib", + "company", + "dash", + "s" + ], + "commit": "182a8fdabc01630f255beeb2708728c0cd5c6316", + "sha256": "1rqf9i4l32njpwx4aiwxqr994g3jzispwprs6nwjfvg70xkvm4m0" + } + }, + { + "ename": "company-ansible", + "commit": "7b44cd4bd9f9a7c942ca3f3bd88b2ce61ffff130", + "sha256": "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d", + "fetcher": "github", + "repo": "krzysztof-magosa/company-ansible", + "unstable": { + "version": [ + 20190301, + 2111 + ], + "deps": [ + "company" + ], + "commit": "c31efced8a9b461de5982ed94c234fda3df96f10", + "sha256": "0d2c3ckmwn36fwhvwfvqg86hfd2jwkg2n301chhxzs03v0mc03mx" + }, + "stable": { + "version": [ + 0, + 7, + 1 + ], + "deps": [ + "company" + ], + "commit": "c6dc714e3a15f89671ae5e8fe668858b20ef63e8", + "sha256": "01nly13i2bs77lrvkm26i96vrrigbxpb9cakski9fv3xrvfxq9bv" + } + }, + { + "ename": "company-arduino", + "commit": "45350f816c4f5249792d29f97ef91f8c0685b983", + "sha256": "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws", + "fetcher": "github", + "repo": "yuutayamada/company-arduino", + "unstable": { + "version": [ + 20160306, + 1739 + ], + "deps": [ + "arduino-mode", + "cl-lib", + "company", + "company-c-headers", + "company-irony", + "irony" + ], + "commit": "d7e369702b8eee63e6dfdeba645ce28b6dc66fb1", + "sha256": "06v7y7gxlxrxdaqy8c93niy1di80r738cq7rkghnhqi174pwl1wv" + } + }, + { + "ename": "company-auctex", + "commit": "189e1a60894db0787a4468b120fbab84be1b5d59", + "sha256": "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4", + "fetcher": "github", + "repo": "alexeyr/company-auctex", + "unstable": { + "version": [ + 20180725, + 1912 + ], + "deps": [ + "auctex", + "company", + "yasnippet" + ], + "commit": "48c42c58ce2f0e693301b0cb2d085055410c1b25", + "sha256": "10qn7frn5wcmrlci3v6iliqzj7r9dls87h9zp3xkgrgn4bqprfp8" + } + }, + { + "ename": "company-axiom", + "commit": "8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf", + "sha256": "061n8zn11r5a9m96sqnw8kx252n1m401cmcyqla8n9valjbnvsag", + "fetcher": "git", + "url": "https://bitbucket.org/pdo/axiom-environment", + "unstable": { + "version": [ + 20171024, + 2010 + ], + "deps": [ + "axiom-environment", + "company" + ], + "commit": "505d85ffc051a7725344c960b1255597dab17780", + "sha256": "1251xc58nc2h6n4dibfdp7z85y609dkpc499ga8j9s0nwif009fs" + } + }, + { + "ename": "company-bibtex", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1b96p5qyxl6jlq0kz0dbma5pwvgqcy4x4gmpknjqrjabafbq1ynn", + "fetcher": "github", + "repo": "gbgar/company-bibtex", + "unstable": { + "version": [ + 20171105, + 644 + ], + "deps": [ + "cl-lib", + "company", + "parsebib" + ], + "commit": "da67faf3a6faba8e7f1b222dedfc5521b02c7655", + "sha256": "0p1kwcpjd2rya6dlp1w48pxd5x0qxyyamrfzwha5wbd5y7m2lh62" + } + }, + { + "ename": "company-box", + "commit": "a54879f4dd4dcb6867680567731547d604ad02bb", + "sha256": "0v39gja3jp8b2xfn9da93xsh8mihizwbg0gqp2yyczaxjm8ga23i", + "fetcher": "github", + "repo": "sebastiencs/company-box", + "unstable": { + "version": [ + 20190311, + 1745 + ], + "deps": [ + "company", + "dash", + "dash-functional" + ], + "commit": "8fc6168f2d3a0275156dd3fdf46ba496adbab226", + "sha256": "0mmn7lzl69hmy8rlzhwqb2ffgk29mb2ybb149cdpk7ydv1h63hqn" + } + }, + { + "ename": "company-c-headers", + "commit": "d97b5c53967e0ff767b3654c52622f4b5ddf1985", + "sha256": "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a", + "fetcher": "github", + "repo": "randomphrase/company-c-headers", + "unstable": { + "version": [ + 20180814, + 1730 + ], + "deps": [ + "company" + ], + "commit": "41331192b3961c8e3a51540678e1d11eaa346f03", + "sha256": "1hl14pv8splirzr9riak8m48ngxy1c6wa2q6ds6aq849zx9dafqh" + } + }, + { + "ename": "company-cabal", + "commit": "ee888b1ba57b6af3a3330607898810cd248862db", + "sha256": "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra", + "fetcher": "github", + "repo": "iquiw/company-cabal", + "unstable": { + "version": [ + 20170917, + 1317 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "62112a7259e24bd6c08885629a185afe512b7d3d", + "sha256": "1gf45xwjzdm8i4q6c6khk4dbg1mmp2r0awz2sjr4dcr2dbd1n7mg" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "f458de88cad16ed48a605e8347e56433e73dcef8", + "sha256": "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0" + } + }, + { + "ename": "company-coq", + "commit": "7f89e3097c654774981953ef125679fec0b5b7c9", + "sha256": "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa", + "fetcher": "github", + "repo": "cpitclaudel/company-coq", + "unstable": { + "version": [ + 20190425, + 1851 + ], + "deps": [ + "cl-lib", + "company", + "company-math", + "dash", + "yasnippet" + ], + "commit": "779dabd2925fc786dc278270a20f2ff05a3c673c", + "sha256": "00rn79i2vackrxhqmbf0miw0k2z6s6gmqb1nj9dj0pfml5yac875" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "cl-lib", + "company", + "company-math", + "dash", + "yasnippet" + ], + "commit": "a4e0625725e4f54d202e746bb41b8bc14c14ddef", + "sha256": "0dxi4h8xqq5647k7h89s4pi8nwyj3brlhsckrv3p3b1g4dr6mk3b" + } + }, + { + "ename": "company-dcd", + "commit": "ad5be8c53911271fba03a88da7e9d518c6508ffe", + "sha256": "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd", + "fetcher": "github", + "repo": "tsukimizake/company-dcd", + "unstable": { + "version": [ + 20190116, + 256 + ], + "deps": [ + "cl-lib", + "company", + "flycheck-dmd-dub", + "ivy", + "popwin", + "yasnippet" + ], + "commit": "11e90949e546fcff1b1cd40887ad7b6701aa1653", + "sha256": "1n4f2hqmvwysbb1l6c5ah58b1bq8vxznk3ysszz8rs5gpqsizqd4" + } + }, + { + "ename": "company-dict", + "commit": "212c077def5b4933c6001056132181e1a5850a7c", + "sha256": "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0", + "fetcher": "github", + "repo": "hlissner/emacs-company-dict", + "unstable": { + "version": [ + 20190302, + 5 + ], + "deps": [ + "company", + "parent-mode" + ], + "commit": "cd7b8394f6014c57897f65d335d6b2bd65dab1f4", + "sha256": "11whnjmy5dyg4wkwabpip8hqsmqys193m7aqbd7jl4hmq24hrwsw" + }, + "stable": { + "version": [ + 1, + 2, + 8 + ], + "deps": [ + "company", + "parent-mode" + ], + "commit": "cd7b8394f6014c57897f65d335d6b2bd65dab1f4", + "sha256": "11whnjmy5dyg4wkwabpip8hqsmqys193m7aqbd7jl4hmq24hrwsw" + } + }, + { + "ename": "company-distel", + "commit": "90fff35dd9709b06802edef89d1fe6a96b7115a6", + "sha256": "1jklxwkm2dvpcasmy9vl48dxq3q9s4dlk159ica39z0kqpkpzmgw", + "fetcher": "github", + "repo": "sebastiw/distel-completion", + "unstable": { + "version": [ + 20180827, + 1344 + ], + "deps": [ + "distel-completion-lib" + ], + "commit": "acc4c0a5521904203d797fe96b08e5fae4233c7e", + "sha256": "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3" + } + }, + { + "ename": "company-edbi", + "commit": "5d881ff0927d5bd7f8192f58927ceabb9bad4beb", + "sha256": "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm", + "fetcher": "github", + "repo": "proofit404/company-edbi", + "unstable": { + "version": [ + 20160221, + 1923 + ], + "deps": [ + "cl-lib", + "company", + "edbi", + "s" + ], + "commit": "ffaeff75d0457285d16d11db772881542a6026ad", + "sha256": "16v4wzb9sp9ryfhgl3rk108pqvam2v6rh6hl6008083g557nmhq1" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib", + "company", + "edbi", + "s" + ], + "commit": "08dc69ccfbcf10ca83f7075e9b735c6885cd7e11", + "sha256": "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai" + } + }, + { + "ename": "company-emacs-eclim", + "commit": "1e9d3075587fbd9ca188535fd945a7dc451c6d7e", + "sha256": "1l56hcy0y3cr38z1pjf0ilsdqdzvj3zwd40markm6si2xhdr8xig", + "fetcher": "github", + "repo": "emacs-eclim/emacs-eclim", + "unstable": { + "version": [ + 20180911, + 1121 + ], + "deps": [ + "cl-lib", + "company", + "eclim" + ], + "commit": "23f5b294f833ce58516d7b9ae08a7792d70022a1", + "sha256": "17q972354nkkynfjmwih4vp7s5dzdvr3nf7ni3ci095lzb0zzf4g" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "company", + "eclim" + ], + "commit": "8203fbf8544e65324a948a67718f7a16ba2d52e6", + "sha256": "10bbbxhvlwm526g1wib1f87grnayirlg8jbsvmpzxr9nmdjgikz3" + } + }, + { + "ename": "company-emoji", + "commit": "5733dccdffe97911a30352fbcda2900c33d79810", + "sha256": "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3", + "fetcher": "github", + "repo": "dunn/company-emoji", + "unstable": { + "version": [ + 20180925, + 2008 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "f0d91d5be0077b20b418a3ba37d36f431fae322f", + "sha256": "0aqqi1ksyglx7w347a99flpfa9pm1jakdvsgk4jr2ahv6j13nawg" + }, + "stable": { + "version": [ + 2, + 5, + 1 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "271909be44f86bcc294739ca45992cdc3caee39f", + "sha256": "1rihgld1wxwfdpqv7d9gcgd8xpnms5kpw61z30y18fmkxhhmid3c" + } + }, + { + "ename": "company-erlang", + "commit": "ca96ed0b5d6f8aea4de56ddeaa003b9c81d96219", + "sha256": "0qlc89c05523kjzsb7j3yfi022la47kgixl74ggkafhn60scwdm7", + "fetcher": "github", + "repo": "s-kostyaev/company-erlang", + "unstable": { + "version": [ + 20170123, + 538 + ], + "deps": [ + "company", + "ivy-erlang-complete" + ], + "commit": "bc0524a16f17b66c7397690e4ca0e004f09ea6c5", + "sha256": "04wm3i65fpzln7sdcny88hfjfm0n7wy44ffsr3697x4l95d0bnyh" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "company", + "ivy-erlang-complete" + ], + "commit": "bc0524a16f17b66c7397690e4ca0e004f09ea6c5", + "sha256": "04wm3i65fpzln7sdcny88hfjfm0n7wy44ffsr3697x4l95d0bnyh" + } + }, + { + "ename": "company-flow", + "commit": "63d346c14af1c5c138d14591a4d6dbc44d9bc429", + "sha256": "07brjfgiwv4dxjf0sca84allcy3qlp4jrkz7ki1qc5wmb5sd209l", + "fetcher": "github", + "repo": "aaronjensen/company-flow", + "unstable": { + "version": [ + 20180225, + 2159 + ], + "deps": [ + "company", + "dash" + ], + "commit": "76ef585c70d2a3206c2eadf24ba61e59124c3a16", + "sha256": "0zs9cblnbkxa0dxw4lyllmybqizxcdx96gv8jlhx20nrjpi78piw" + } + }, + { + "ename": "company-flx", + "commit": "f27d718ee67f8c91b208a35adbbcdac67bbb89ce", + "sha256": "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn", + "fetcher": "github", + "repo": "PythonNut/company-flx", + "unstable": { + "version": [ + 20180103, + 518 + ], + "deps": [ + "company", + "flx" + ], + "commit": "16ca0d2f84e8e768bf2db8c5cfe421230a00bded", + "sha256": "09zaaqi8587n1fv5pxnrdmdll319s8f66xkc41p51gcs2p7qa5w1" + } + }, + { + "ename": "company-ghc", + "commit": "28f6a983444f796c81df7e5ee94d74c480b21298", + "sha256": "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn", + "fetcher": "github", + "repo": "iquiw/company-ghc", + "unstable": { + "version": [ + 20170918, + 833 + ], + "deps": [ + "cl-lib", + "company", + "ghc" + ], + "commit": "8b264b5c3c0e42c0d0c4e9315559896c9b0edfdc", + "sha256": "0cmyrz251ls6ygyas455mj4pnmzfdqag1sp8v5zggw74wsl5wm23" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cl-lib", + "company", + "ghc" + ], + "commit": "64e4f9d0cf9377138a8dee34c69e7d578fd71090", + "sha256": "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r" + } + }, + { + "ename": "company-ghci", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "11sygcn8jb4rcc1hfiadhsyanbhsmnalpz2qvh5iaba0l165bsgg", + "fetcher": "github", + "repo": "orimh/company-ghci", + "unstable": { + "version": [ + 20190707, + 311 + ], + "deps": [ + "company", + "haskell-mode" + ], + "commit": "a1d25652583ab4666c5a78cac18cd8039776b50d", + "sha256": "0sbkmsrvjikf6y53nsd5n0zhdp4hms7cw88w9qln136xjp5vgxqj" + } + }, + { + "ename": "company-glsl", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1wzfdp6xz4nydfdcba8vs1za60lbfa0v4b8007dzn2fyg26rl326", + "fetcher": "github", + "repo": "guidoschmidt/company-glsl", + "unstable": { + "version": [ + 20171015, + 1749 + ], + "deps": [ + "company", + "glsl-mode" + ], + "commit": "a262c12c3bcd0807718c4edcaf2b054e30ef0e26", + "sha256": "0338bym8ifvkgpbc4vyzf3nmlp6rc8lihyxcbym5m08612ln78mk" + } + }, + { + "ename": "company-go", + "commit": "ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3", + "sha256": "1zhdckq1c9jzi5cf90w2m77fq6l67rjri4lnf8maq82gxqzk6wa5", + "fetcher": "github", + "repo": "mdempsky/gocode", + "unstable": { + "version": [ + 20190203, + 19 + ], + "deps": [ + "company", + "go-mode" + ], + "commit": "7fb65232883f19a8305706b4b4ff32916ffbcaf5", + "sha256": "09yqziccv9mg5jlmhw8gslpcwwiiah0hs05nq0qnsbdnvc8bs4lr" + }, + "stable": { + "version": [ + 20150303 + ], + "deps": [ + "company" + ], + "commit": "eef10fdde96a12528a6da32f51bf638b2863a3b1", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3" + } + }, + { + "ename": "company-inf-ruby", + "commit": "ec0f597ceed00c68faa030ff0bc5676c513919f1", + "sha256": "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm", + "fetcher": "github", + "repo": "company-mode/company-inf-ruby", + "unstable": { + "version": [ + 20140805, + 2054 + ], + "deps": [ + "company", + "inf-ruby" + ], + "commit": "fe3e4863bc971fbb81edad447efad5795ead1b17", + "sha256": "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m" + } + }, + { + "ename": "company-irony", + "commit": "d2b6a8d57b192325dcd30fddc9ff8dd1516ad680", + "sha256": "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km", + "fetcher": "github", + "repo": "Sarcasm/company-irony", + "unstable": { + "version": [ + 20190124, + 2346 + ], + "deps": [ + "cl-lib", + "company", + "irony" + ], + "commit": "b44711dfce445610c1ffaec4951c6ff3882b216a", + "sha256": "0s8v6kfgngpz6ic0g0l6xi6j9692xpmcamidmbk3l2blb172mggr" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cl-lib", + "company", + "irony" + ], + "commit": "52aca45bcd0f2cb0648fcafa2bbb4f8ad4b2fee7", + "sha256": "1qgyam2vyjw90kpxns5cd6bq3qiqjhzpwrlvmi18vyb69qcgqd8a" + } + }, + { + "ename": "company-irony-c-headers", + "commit": "9f9f62d8ef438a9ba4872bd7731768eddc5905de", + "sha256": "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8", + "fetcher": "github", + "repo": "hotpxl/company-irony-c-headers", + "unstable": { + "version": [ + 20151018, + 909 + ], + "deps": [ + "cl-lib", + "company", + "irony" + ], + "commit": "72c386aeb079fb261d9ec02e39211272f76bbd97", + "sha256": "1f462v8xq2hdsr4ks4i79icpfz6fjpb4q7khnx6si55agxj3rvaq" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib", + "company", + "irony" + ], + "commit": "ba304fe7eebdff90bbc7dea063b45b82638427fa", + "sha256": "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i" + } + }, + { + "ename": "company-jedi", + "commit": "bded1840a39fbf1e014c01276eb2f9c5a4fc218f", + "sha256": "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj", + "fetcher": "github", + "repo": "syohex/emacs-company-jedi", + "unstable": { + "version": [ + 20151217, + 321 + ], + "deps": [ + "cl-lib", + "company", + "jedi-core" + ], + "commit": "2f54e791e10f5dc0ff164bfe97f1878359fab6f6", + "sha256": "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "company", + "jedi-core" + ], + "commit": "ad49407451c7f28fe137f9c8f3a7fc89e8693a1b", + "sha256": "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1" + } + }, + { + "ename": "company-lean", + "commit": "42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde", + "sha256": "1hqkn7w5dyznf7i3r3132q8x31r74q188jsm5kdrjqgbwak2p91a", + "fetcher": "github", + "repo": "leanprover/lean-mode", + "unstable": { + "version": [ + 20171102, + 1454 + ], + "deps": [ + "company", + "dash", + "dash-functional", + "f", + "lean-mode", + "s" + ], + "commit": "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499", + "sha256": "0r8vfklrdw3f11cpk279jg3mnfbqm60m6klisqndkvir7vsrshni" + } + }, + { + "ename": "company-lsp", + "commit": "5125f53307c1af3d9ccf2bae3c25e7d23dfe1932", + "sha256": "09nbi6vxw8l26gfgsc1k3bx4m8i1px1b0jxaywszky5bv4fdy03l", + "fetcher": "github", + "repo": "tigersoldier/company-lsp", + "unstable": { + "version": [ + 20190612, + 1553 + ], + "deps": [ + "company", + "dash", + "lsp-mode", + "s" + ], + "commit": "f921ffa0cdc542c21dc3dd85f2c93df4288e83bd", + "sha256": "0dd2plznnnc2l1gqhsxnvrs8n1scp6zbcd4457wrq9z2f7pb5ig2" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "company", + "dash", + "lsp-mode", + "s" + ], + "commit": "4eb6949f19892be7bf682381cde005791a48583a", + "sha256": "1hy1x2w0yp5brm7714d1hziz3rpkywb5jp3yj78ibmi9ifny9vri" + } + }, + { + "ename": "company-lua", + "commit": "c8191ab2aaa72041be46091e363d216cf1b73fde", + "sha256": "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c", + "fetcher": "github", + "repo": "ptrv/company-lua", + "unstable": { + "version": [ + 20171108, + 2306 + ], + "deps": [ + "company", + "f", + "lua-mode", + "s" + ], + "commit": "29f6819de4d691e5fd0b62893a9f4fbc1c6fcb52", + "sha256": "0ny2dcc7c585p7v3j6q0rpkbj1qmf2ismy8a5020jpr585xvz0hh" + } + }, + { + "ename": "company-math", + "commit": "fadff01600d57f5b9ea9c0c47ed109e058114998", + "sha256": "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87", + "fetcher": "github", + "repo": "vspinu/company-math", + "unstable": { + "version": [ + 20190507, + 2006 + ], + "deps": [ + "company", + "math-symbol-lists" + ], + "commit": "600e49449644f6835f9dc3501bc58461999e8ab9", + "sha256": "1ps2lpkzn8mjbpcbvvy1qz3xbgrh6951x8y9bsd1fm32drdph9lh" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "company", + "math-symbol-lists" + ], + "commit": "7e7f8c71f57b12f9bcbbf01f2bbcc59343ad76d4", + "sha256": "0akqhhjvzsg0lbqx4bbkfkzijidwgi3bb32sxl3yxz7zfm9pbhn2" + } + }, + { + "ename": "company-nand2tetris", + "commit": "90421372b3f60b59762279ac805c61a984606d11", + "sha256": "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886", + "fetcher": "github", + "repo": "CestDiego/nand2tetris.el", + "unstable": { + "version": [ + 20171201, + 1813 + ], + "deps": [ + "cl-lib", + "company", + "nand2tetris" + ], + "commit": "33acee34d24b1c6a87db833b7d23449cf858f64f", + "sha256": "0sfa674g1qm280s0pc3n6qiiphj5i9ibknckx5capkrkxb5cwpkw" + } + }, + { + "ename": "company-nginx", + "commit": "fb8843cddfa9133ea9e2790e8a1d8051cd4dabea", + "sha256": "15pxz0v3zpshwri0v15yh995k7ih9h46y81n4xywlyyh34wys3sj", + "fetcher": "github", + "repo": "stardiviner/company-nginx", + "unstable": { + "version": [ + 20180604, + 2 + ], + "commit": "3074a5d322562f36867ef67bffeb25f1c0d8aca9", + "sha256": "04nq6cihb5kymi3rjfx53337fx4g042cw1jxiv016sq88z24lznx" + } + }, + { + "ename": "company-ngram", + "commit": "937e6a23782450525c4a90392c414173481e101b", + "sha256": "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx", + "fetcher": "github", + "repo": "kshramt/company-ngram", + "unstable": { + "version": [ + 20170129, + 1913 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "09a68b802e64799e95f205b438d469bbd78cd2e6", + "sha256": "0qg1ws7xi418lbnx130xqkwgpsl0p218gqxwy0fpwky01iahwcw9" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "d15182df3eac72b29772802759b77c9eafef5066", + "sha256": "05108s2a3c857n9j3c34hdni3fyq149pva4m3f51lis4wqrm4zv7" + } + }, + { + "ename": "company-nixos-options", + "commit": "6846c7d86e70a9dd8300b89b61435aa7e146be96", + "sha256": "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0", + "fetcher": "github", + "repo": "travisbhartwell/nix-emacs", + "unstable": { + "version": [ + 20160215, + 857 + ], + "deps": [ + "cl-lib", + "company", + "nixos-options" + ], + "commit": "45c8d90748304c90e1503c9fa8db0443f3d4bd89", + "sha256": "0hsr8acsvfb42drb8f2wkpgqyh3csny7l82qv4k2l83xf022cs1d" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "cl-lib", + "company", + "nixos-options" + ], + "commit": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld" + } + }, + { + "ename": "company-php", + "commit": "ac283f1b65c3ba6278e9d3236e5a19734e42b123", + "sha256": "1gnhklfkg17vxfx7fw65lr4nr07jx71y84mhs9zszwcr9p840hh5", + "fetcher": "github", + "repo": "xcwen/ac-php", + "unstable": { + "version": [ + 20190424, + 222 + ], + "deps": [ + "ac-php-core", + "cl-lib", + "company" + ], + "commit": "19b34b56ebc0eaabf9b1f4a8ac6819bde9855d2b", + "sha256": "02j0dwzbvi744ybdqwx8dan1ahl2yar7cw20n619vbmxn0r6pml2" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "deps": [ + "ac-php-core", + "cl-lib", + "company" + ], + "commit": "710aca14d2d5035f338b8e76ed042d3bc7524e95", + "sha256": "01hrsxq1m9rxmsn1xfmj8k8w19gf9xj4hqy0aqrqs0cx2f74rxrw" + } + }, + { + "ename": "company-phpactor", + "commit": "dc6edd22befea0aee9b11bc8df7d42c400e12f43", + "sha256": "1a6szs85hmxm2xpkmc3dyx2daap7bjvpnrl4gcmbq26zbz2f0z0a", + "fetcher": "github", + "repo": "emacs-php/phpactor.el", + "unstable": { + "version": [ + 20190403, + 216 + ], + "deps": [ + "company", + "phpactor" + ], + "commit": "fcdbae4b12735d6d1595f76275e5a6a589a20c7a", + "sha256": "1kx9pk6a4kc3x58qfv35fvh9hkp2xgw2yxj98n065xr82yzzd6m1" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "61e4eab638168b7034eef0f11e35a89223fa7687", + "sha256": "0dsa1mygb96nlz5gppf0sny3lxaacvmvnkg84c0cs6x223s6zfx8" + } + }, + { + "ename": "company-plsense", + "commit": "9cf9d671d81e07c704676c557a9f0d686067ce5c", + "sha256": "0k8k2vpkknd4nyxzwdj7698lgm5d85byxd49x7w5nrxmh2h1w3c7", + "fetcher": "github", + "repo": "CeleritasCelery/company-plsense", + "unstable": { + "version": [ + 20180118, + 58 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "s" + ], + "commit": "b48e3181e08ec597269621d621aa06636f02d883", + "sha256": "14rawd5xfgnkhdpp43mz4a5mf480949ny5hr5w6v5djmsibqxw5s" + } + }, + { + "ename": "company-pollen", + "commit": "97bda0616abe3bb632fc4231e5317d9472dfd14f", + "sha256": "1pz5d8j7scrv2ci9mxvyikwsk8badkrbp8dznnb5qq1ycqv24bl1", + "fetcher": "github", + "repo": "lijunsong/pollen-mode", + "unstable": { + "version": [ + 20160812, + 1510 + ], + "deps": [ + "company", + "pollen-mode" + ], + "commit": "819edf830e9519f8ca57e9cef31211e3f444d11a", + "sha256": "0c06kfbyk2g0kxwlh6g3r7ij06ip6x9ni0bin24drwr0qj2vis2d" + } + }, + { + "ename": "company-posframe", + "commit": "68c1203ae710e5f7af3f0e5e2877aba6deaf1ac8", + "sha256": "1pd68m3hcn6wggw8a026x5kxn73f3zs278vs96q6cb5gbxyyhirs", + "fetcher": "github", + "repo": "tumashu/company-posframe", + "unstable": { + "version": [ + 20190626, + 759 + ], + "deps": [ + "company", + "posframe" + ], + "commit": "849867a05efdc1a93ef989e3a0f8944522bf16b3", + "sha256": "1q1iflh9sx90g53hl5hkgv5g09jm3am87mg3nysq1rjkm40d1nc1" + } + }, + { + "ename": "company-prescient", + "commit": "b92c34e493bbefab1d7747b0855d1ab2f984cb7c", + "sha256": "0cp918ihbjqxfgqnifknl5hphmvq5bl42dhp5ylvijsfa8kvbsb9", + "fetcher": "github", + "repo": "raxod502/prescient.el", + "unstable": { + "version": [ + 20190706, + 1917 + ], + "deps": [ + "company", + "prescient" + ], + "commit": "ea8e9fea4385272924d09c91220c7f2e9ac95b3f", + "sha256": "1apb9v31ajq586f7mqachv238yv40gacrjmh2s8mnk45xil72swy" + }, + "stable": { + "version": [ + 3, + 2 + ], + "deps": [ + "company", + "prescient" + ], + "commit": "653ca4b66954b7f1b6e4635a574234dd316c11a3", + "sha256": "0d60h4rfm5jcf8cf11z91wjqp0xcrviskqzyqhfliqvy2i2yl6ks" + } + }, + { + "ename": "company-qml", + "commit": "5b53477eaba4ef62f8317c9454e15ac015442fed", + "sha256": "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx", + "fetcher": "github", + "repo": "cute-jumper/company-qml", + "unstable": { + "version": [ + 20170428, + 1708 + ], + "deps": [ + "company", + "qml-mode" + ], + "commit": "4af4f32a7ad86d86bb9293fb0b675aec513b5736", + "sha256": "09d733r07gr4cxp7npyhi93xchvirxh1v00fr487v4a0mdaahpxf" + } + }, + { + "ename": "company-quickhelp", + "commit": "022cc4fee54bb0194822947c70058145e2980b94", + "sha256": "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g", + "fetcher": "github", + "repo": "expez/company-quickhelp", + "unstable": { + "version": [ + 20180525, + 1003 + ], + "deps": [ + "company", + "pos-tip" + ], + "commit": "479676cade80a9f03802ca3d956591820ed5c537", + "sha256": "0hbqpnaf4hnin3nmdzmfj3v22kk9a97b6zssqs96ns36d9h52xcp" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "company", + "pos-tip" + ], + "commit": "b2953c725654650677e3d66eaeec666826d5f65f", + "sha256": "08ccsfvwdpzpj0gai3xrdb2bv1nl6myjkxsc5774pbvlq9nkfdvr" + } + }, + { + "ename": "company-racer", + "commit": "c4671a674dbc1620a41e0ff99508892a25eec2ad", + "sha256": "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4", + "fetcher": "github", + "repo": "emacs-pe/company-racer", + "unstable": { + "version": [ + 20171205, + 310 + ], + "deps": [ + "cl-lib", + "company", + "deferred" + ], + "commit": "a00381c9d416f375f783fcb6ae8d40669ce1f567", + "sha256": "13m3yzn4xbyl13z7h1cl6vqjbzikjycy7wydpy4a44yhr466zjr5" + } + }, + { + "ename": "company-reftex", + "commit": "84c938612d46d45b5bb05ee35178eaa2284023e0", + "sha256": "0xfl8cfpd2bdk91aj0nygp5gm808pnbi7zjdp4z6l21dsrawhbxz", + "fetcher": "github", + "repo": "TheBB/company-reftex", + "unstable": { + "version": [ + 20181222, + 906 + ], + "deps": [ + "company", + "s" + ], + "commit": "33935e96540201adab43f3a765d62289eba9e286", + "sha256": "1sp4109fbj6cxq6v9lmkpkrlr6is340ibaqpslkkjyacjv6sv4cm" + } + }, + { + "ename": "company-restclient", + "commit": "3dd063bc3789772fdcc6a8555817588962e60825", + "sha256": "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb", + "fetcher": "github", + "repo": "iquiw/company-restclient", + "unstable": { + "version": [ + 20190426, + 1312 + ], + "deps": [ + "cl-lib", + "company", + "know-your-http-well", + "restclient" + ], + "commit": "e5a3ec54edb44776738c13e13e34c85b3085277b", + "sha256": "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "company", + "know-your-http-well", + "restclient" + ], + "commit": "e5a3ec54edb44776738c13e13e34c85b3085277b", + "sha256": "0yp0hlrgcr6yy1xkjvfckys2k24x9xg7y6336ma61bdwn5lpv0x0" + } + }, + { + "ename": "company-rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "0dicxbp3xn02pflrpfndj7hs494prvz64llsk1xpc2z23kfarp6f", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20180730, + 338 + ], + "deps": [ + "company", + "rtags" + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "deps": [ + "company", + "rtags" + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "company-shell", + "commit": "bbaa05d158f3806b9f79a2c826763166dbee56ca", + "sha256": "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz", + "fetcher": "github", + "repo": "Alexander-Miller/company-shell", + "unstable": { + "version": [ + 20170518, + 541 + ], + "deps": [ + "cl-lib", + "company", + "dash" + ], + "commit": "6ae625f80d90e0779c79de38e8f83a336c1d00fa", + "sha256": "0da9y7x1xvaahsslcmgji6hr3cbn779i504cfrmsabbr3wmkn3fy" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "deps": [ + "cl-lib", + "company", + "dash" + ], + "commit": "acdbf8cba6ad9831d81a77bab7bbfd50f19edd86", + "sha256": "1dk927da7g4a39sva9bda978bx6hpiz5kf341fj8sb7xhryvh5r2" + } + }, + { + "ename": "company-solidity", + "commit": "e561d869f4e32bad5d1a8678f67e591ff586d6de", + "sha256": "1rkja48j2m0g0azc34i715ckkqwjkb44y3b4a9vlxs8cjqza4w7q", + "fetcher": "github", + "repo": "ethereum/emacs-solidity", + "unstable": { + "version": [ + 20181117, + 1518 + ], + "deps": [ + "cl-lib", + "company", + "solidity-mode" + ], + "commit": "47f15b2663a6cf92ae6ebf655841a9509ad79017", + "sha256": "0zhr5fcv8vlkcnya36y9smpgw7ylb0fkx0px8zr0zhr2f9xgjmph" + }, + "stable": { + "version": [ + 0, + 1, + 9 + ], + "deps": [ + "cl-lib", + "company" + ], + "commit": "d0ff4dea49540f37301d869f2797fca2492f55d5", + "sha256": "1wcy5z4wggn3zs9h1kyvm0ji51ppjcqdmym3mmxbrhan6a0kq724" + } + }, + { + "ename": "company-sourcekit", + "commit": "45969cd5cd936ea61fbef4722843b0b0092d7b72", + "sha256": "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs", + "fetcher": "github", + "repo": "nathankot/company-sourcekit", + "unstable": { + "version": [ + 20170126, + 1153 + ], + "deps": [ + "company", + "dash", + "dash-functional", + "sourcekit" + ], + "commit": "abf9bc5a0102eb666d3aa6d6bf22f6efcc852781", + "sha256": "1g8a4fgy2c5nqk8gysbnzn5jvfw6ynmfhc6j3hkrbswgf9188v5n" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "company", + "dash", + "dash-functional", + "sourcekit" + ], + "commit": "8ba62ac25bf533b7f148f333bcb5c1db799f749b", + "sha256": "01dh0wdaydiai4v13r8g05rpiwqr5qqi34wif8vbk2mrr25wc7i9" + } + }, + { + "ename": "company-statistics", + "commit": "89d05b43f31ec157ce8e7bfba4b7c9119bda6dd2", + "sha256": "1fl4ldj17m3xhi6xbw3bp9c2jir34xv3jh9daiw8g912fv2l5dcj", + "fetcher": "github", + "repo": "company-mode/company-statistics", + "unstable": { + "version": [ + 20170210, + 1933 + ], + "deps": [ + "company" + ], + "commit": "e62157d43b2c874d2edbd547c3bdfb05d0a7ae5c", + "sha256": "12mwviz1mwx4ywks2lkmybbgh1wny67wkzlq5y3ml8gvyc288n3i" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "company" + ], + "commit": "906d8137224c1a5bd1dc913940e0d32ffecf5523", + "sha256": "0c98kfg7gimjx9cf8dmbk9mdsrybhphshrdl8dhif3zqvn6gxyd7" + } + }, + { + "ename": "company-suggest", + "commit": "9579e3366db055364829e20d3ce228bf17060b0a", + "sha256": "1w5fp4mydc4av14sjb8di6jjvzfqwnasnxpf9720pk0rsj05i972", + "fetcher": "github", + "repo": "juergenhoetzel/company-suggest", + "unstable": { + "version": [ + 20180527, + 1631 + ], + "deps": [ + "company" + ], + "commit": "e1fa663b48639c76d91d1f5ac3b23215aa3dabc3", + "sha256": "0jn7rx4m3121lx6hhabvnfq73vd0rj2364hbvza2myylw4f4qav9" + } + }, + { + "ename": "company-tabnine", + "commit": "94476897a71a271b985967334632836252eb131b", + "sha256": "1x37xacrscmh9hq9mljbgdcl3pwfn2kmn567qv0jqys8ihbzi3v7", + "fetcher": "github", + "repo": "TommyX12/company-tabnine", + "unstable": { + "version": [ + 20190723, + 2214 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "s", + "unicode-escape" + ], + "commit": "8123d33951144fd3da10240dfa7f274cac0ac8ad", + "sha256": "0sfn2q2vpnjdw209n4fvaqgwq176r3aqiir3bvab5gwwk6wnqy09" + } + }, + { + "ename": "company-tern", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh", + "fetcher": "github", + "repo": "proofit404/company-tern", + "unstable": { + "version": [ + 20161004, + 1847 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ], + "commit": "10ac058b065ae73c1f30e9fb7d969dd1a79387be", + "sha256": "1pjyiy95axv92yxzks4ac871vcqxjnp7n2116nkdrdzzpmlb1x9h" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "dash-functional", + "s", + "tern" + ], + "commit": "b20b3e490bf277c8480712210e3c92ea489859ef", + "sha256": "1l4b54rqwsb32r8zwwrag7s35zc3kpviafdrqkq8r1nyshg2yccm" + } + }, + { + "ename": "company-terraform", + "commit": "1d9732da975dcf59d3b311b19e20abbb29c33656", + "sha256": "198ppqn6f7y9bg582z5s4cl9gg1q9ibsr7mmn68b50zvma7ankzh", + "fetcher": "github", + "repo": "rafalcieslak/emacs-company-terraform", + "unstable": { + "version": [ + 20190607, + 1037 + ], + "deps": [ + "company", + "terraform-mode" + ], + "commit": "2d11a21fee2f298e48968e479ddcaeda4d736e12", + "sha256": "0hxilq7289djrn6kgw7n926zpz0pr7iyd1wm6cy8yfhxf546a4px" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "company", + "terraform-mode" + ], + "commit": "2d11a21fee2f298e48968e479ddcaeda4d736e12", + "sha256": "0hxilq7289djrn6kgw7n926zpz0pr7iyd1wm6cy8yfhxf546a4px" + } + }, + { + "ename": "company-try-hard", + "commit": "d65c26aee15a27cbf27fa81110b607bf38099079", + "sha256": "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj", + "fetcher": "github", + "repo": "Wilfred/company-try-hard", + "unstable": { + "version": [ + 20150902, + 2206 + ], + "deps": [ + "company", + "dash" + ], + "commit": "70b94cfc40c576af404e743133979048e1bd2610", + "sha256": "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2" + } + }, + { + "ename": "company-web", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1q2am684l4d038a3ymyy6gg2ds9lq5mcfc4in8dmvap5grdhia4b", + "fetcher": "github", + "repo": "osv/company-web", + "unstable": { + "version": [ + 20180402, + 1155 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ], + "commit": "f0cc9187c9c34f72ad71f5649a69c74f996bae9a", + "sha256": "1xcwwcy2866vzaqgn7hrl7j8k48mk74i4shm40v7ybacws47s9nr" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "cl-lib", + "company", + "dash", + "web-completion-data" + ], + "commit": "f0cc9187c9c34f72ad71f5649a69c74f996bae9a", + "sha256": "1xcwwcy2866vzaqgn7hrl7j8k48mk74i4shm40v7ybacws47s9nr" + } + }, + { + "ename": "company-ycm", + "commit": "44e168f757cb51249db2deb9f781eff99cf6fb7c", + "sha256": "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina", + "fetcher": "github", + "repo": "neuromage/ycm.el", + "unstable": { + "version": [ + 20140904, + 1817 + ], + "deps": [ + "ycm" + ], + "commit": "4da8a14abcd0f4fa3235042ade2e12b5068c0601", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj" + } + }, + { + "ename": "company-ycmd", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1dycbp2q8grvv94mwp9n8s7xpz2zjs05l3lf471j3nlbk6xfsn5d", + "fetcher": "github", + "repo": "abingham/emacs-ycmd", + "unstable": { + "version": [ + 20180520, + 1053 + ], + "deps": [ + "company", + "dash", + "deferred", + "f", + "let-alist", + "s", + "ycmd" + ], + "commit": "6f4f7384b82203cccf208e3ec09252eb079439f9", + "sha256": "1bl86x8nqw4jqzb8pfm6hm316hmk1bx8v3qz7wq9z92hb67ck2kn" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "company", + "dash", + "deferred", + "f", + "let-alist", + "s", + "ycmd" + ], + "commit": "d042a673b4d717c3ca9d641f120bfe16c994c740", + "sha256": "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0" + } + }, + { + "ename": "composable", + "commit": "1fc0f076198e4be46a33a26eea9f2d273dda12b8", + "sha256": "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy", + "fetcher": "github", + "repo": "paldepind/composable.el", + "unstable": { + "version": [ + 20190728, + 1527 + ], + "commit": "b2139cd6f4434197ae0c678091c78b72fd022fed", + "sha256": "043g55gzvxvdplgxz1w1gl367k0nnblmi6ifdg98gl4z4xlqfc1j" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "4739b6a730498e7526d06222810c3ccf3723d509", + "sha256": "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq" + } + }, + { + "ename": "composer", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "01w9cywhfngkrl9az8kfpzm12nc0zwmax01pyxlbi2l2icmvp5s1", + "fetcher": "github", + "repo": "emacs-php/composer.el", + "unstable": { + "version": [ + 20180923, + 1140 + ], + "deps": [ + "f", + "php-runtime", + "request", + "s", + "seq" + ], + "commit": "6c1578b2352c81cc9a22616a70db2a14b7d2b67f", + "sha256": "0fijw3kcl4vyc5x7a1syqslsj13mwkq1k3bs4p60v2jg1fxqarrb" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "f", + "php-runtime", + "request", + "s", + "seq" + ], + "commit": "d88741009cf7cae0a75e3cc7a19dd9143fcc92f9", + "sha256": "0iqm8997pl3pni7a49igj8q6sp37bjdshjwl6d95bqrjkjf9ll08" + } + }, + { + "ename": "concurrent", + "commit": "8bc29a8d518ce7a584277089bd4654f52ac0f358", + "sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf", + "fetcher": "github", + "repo": "kiwanami/emacs-deferred", + "unstable": { + "version": [ + 20161229, + 330 + ], + "deps": [ + "deferred" + ], + "commit": "2239671d94b38d92e9b28d4e12fd79814cfb9c16", + "sha256": "0vz59lm7pfz0gbsgrb44y555js85wbdjn0zm6p8wfqjiqf63ds3i" + }, + "stable": { + "version": [ + 0, + 5, + 1 + ], + "deps": [ + "deferred" + ], + "commit": "d012a1ab50edcc2c44e3e49006f054dbff47cb6c", + "sha256": "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h" + } + }, + { + "ename": "conda", + "commit": "fcf762e34837975f5440a1d81a7f09699778123e", + "sha256": "1hi292h6ccl7vkvyxcwwcdxw8q2brv3hy0mnlikzj2qy5pbnfg4y", + "fetcher": "github", + "repo": "necaris/conda.el", + "unstable": { + "version": [ + 20190607, + 1625 + ], + "deps": [ + "dash", + "f", + "pythonic", + "s" + ], + "commit": "d65f6d2a47c96e1ff1c7af0e83aee1f5acfe858e", + "sha256": "1bx60bipglviphxd9cj0q8jvml2ibd38daz44l2bwkcrp8jznf94" + }, + "stable": { + "version": [ + 0, + 0, + 9 + ], + "deps": [ + "dash", + "f", + "pythonic", + "s" + ], + "commit": "64b804c33f2667e8232689770a9f2e332c2dd0ab", + "sha256": "1w1p1m2d0mwi3frkah5cnphyqsix7fp1li8glhlwf923cg48cxfq" + } + }, + { + "ename": "config-general-mode", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1pqivnyb1yljzs3fd554s0971wr9y6g1dx3lgym9gi5jhpyza38z", + "fetcher": "github", + "repo": "TLINDEN/config-general-mode", + "unstable": { + "version": [ + 20171024, + 1840 + ], + "commit": "b4a8e6ba0bb027a77e4a0f701409f3e57bb2e4c0", + "sha256": "115sk0h6i1bfnxw1v11719926cvnq7gyisjcysvkam40hp3d5fx5" + } + }, + { + "ename": "config-parser", + "commit": "8fc040eebe72b278e3bd69212b207446cf4a5f06", + "sha256": "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah", + "fetcher": "github", + "repo": "lujun9972/el-config-parser", + "unstable": { + "version": [ + 20160426, + 1219 + ], + "commit": "85d559e7889d8f5b98b8794b79426ae25ec3caa5", + "sha256": "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p" + } + }, + { + "ename": "confluence", + "commit": "30de78c9cf83de30093a5647976eeaf552d4b2cb", + "sha256": "0xa2g168mm31kh5h7smhx35cjsk1js88nzs19yakjljf56b1khlf", + "fetcher": "github", + "repo": "emacsorphanage/confluence", + "unstable": { + "version": [ + 20151021, + 128 + ], + "deps": [ + "xml-rpc" + ], + "commit": "4518d270a07760644c4204985c83d234ece4738b", + "sha256": "1lrq23cxlp2vkyv7g56r06bp7chhw10kii3ymkydf24y4pyn1zpg" + } + }, + { + "ename": "conkeror-minor-mode", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933", + "fetcher": "github", + "repo": "Malabarba/conkeror-minor-mode", + "unstable": { + "version": [ + 20150114, + 1604 + ], + "commit": "476e81c27b056e21c192391fe674a2bf875466b0", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx" + }, + "stable": { + "version": [ + 1, + 6, + 2 + ], + "commit": "476e81c27b056e21c192391fe674a2bf875466b0", + "sha256": "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx" + } + }, + { + "ename": "conllu-mode", + "commit": "444f943baddfeafe29708d6d68aeeeedbb7aa7bd", + "sha256": "1wffvvs8d0xcnz6mcm9rbr8imyj4npyc148yh0gzfzlgjm0fiz1v", + "fetcher": "github", + "repo": "odanoburu/conllu-mode", + "unstable": { + "version": [ + 20190215, + 2043 + ], + "deps": [ + "cl-lib", + "flycheck", + "hydra", + "s" + ], + "commit": "1eb5ab3bad5cf36d30a557e64dc218b5fee735bf", + "sha256": "092wvxkscmpfrkpaw33r9qxrp4b2vcah3x61r7wry4f6v7jhd9hw" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib", + "flycheck", + "hydra", + "s" + ], + "commit": "d1b5b682e0a481ab74caed20bbca6177edb83080", + "sha256": "1n98aqh3pyvaz1lwsqpcpv1nzrij79r342iiw2h90v4mf2r665dy" + } + }, + { + "ename": "connection", + "commit": "5b08ed7b90e3283e177eff57cb02b12a093dc258", + "sha256": "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q", + "fetcher": "github", + "repo": "myrkr/dictionary-el", + "unstable": { + "version": [ + 20140718, + 329 + ], + "commit": "6edc1d0a4156d33c3da0c1649c308b809fda46e1", + "sha256": "0g95q3yggzxr8d2gjxamfwx8xbzf182naxpb265r7v9awd35bqk5" + }, + "stable": { + "version": [ + 1, + 10 + ], + "commit": "9ef1672ecd367827381bbbc9af93685980083c5c", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s" + } + }, + { + "ename": "constant-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "13m4r37gscnqg3qmb0rs2r8sslp0irm7n4p6p496mmvljvjmpv6b", + "fetcher": "github", + "repo": "Jannis/emacs-constant-theme", + "unstable": { + "version": [ + 20180921, + 1012 + ], + "commit": "23543a09729569b566175abe1efbe774048d3fa8", + "sha256": "1456kydn5k5sq8dgaf45nzqaw1035945dhwkh07vz11ivvcrz3xs" + } + }, + { + "ename": "contextual", + "commit": "de20db067590624bbd2ca5a7a537b7f11ada84f2", + "sha256": "1xwjjchmn3xqxbgvqishh8i75scc4kjgdzlp5j64d443pfgyr56a", + "fetcher": "github", + "repo": "e-user/contextual", + "unstable": { + "version": [ + 20180726, + 800 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "e3c0de4a2e06757a0e8407c3c6e75930026191e3", + "sha256": "1nl2748s5x252f6sx4xpgzfdcas9ky38bnqfdx9l562agmcp9615" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "8134a2d8034c624f4fdbbb0b3893de12f4257909", + "sha256": "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av" + } + }, + { + "ename": "contextual-menubar", + "commit": "cba21d98f3abbf1f45d1fdd9164d4660b7d3e368", + "sha256": "0r9bsnvf45h7gsdfhsz7h02nskjvflfa2yjarjv9fcl7aipz8rr6", + "fetcher": "github", + "repo": "aaronjensen/contextual-menubar", + "unstable": { + "version": [ + 20180205, + 709 + ], + "commit": "f76f55232ac07df76ef9a334a0c527dfab97c40b", + "sha256": "0zks4w99nbhz1xvr67isgg6yjghpzbh5s5wd839zi0ly30x4riqf" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "cc2e7c952b59401188b81d84be81dead9d0da3db", + "sha256": "01mk5xzsg52vfqjri1my193y6jczg2dp3pa2d0v0vw11m1k433h3" + } + }, + { + "ename": "contrast-color", + "commit": "7a13602e10a5fa889d0e094eff5b74a39023a477", + "sha256": "0pa88mfla7g7wpia0q1lkv2dncw63ivvh83hf73f75a22rvl8jcx", + "fetcher": "github", + "repo": "yuutayamada/contrast-color-el", + "unstable": { + "version": [ + 20160903, + 1807 + ], + "deps": [ + "cl-lib" + ], + "commit": "c5fb77a211ebbef3185ada37bea7420534c33f94", + "sha256": "06grlp93n50d7c5z43fia0d6r1hmfpnqa062fzrz8gypy5kqxi1f" + } + }, + { + "ename": "control-mode", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6", + "fetcher": "github", + "repo": "stephendavidmarsh/control-mode", + "unstable": { + "version": [ + 20160624, + 1710 + ], + "commit": "72d6179b60adc438aada74083b2bf4264b575de3", + "sha256": "0pqdh9bx2j9kla57sn349m90azk02wajapmazdm26cjdc2npw7jh" + } + }, + { + "ename": "copy-as-format", + "commit": "42fe8a2113d1c15701abe7a7e0a68e939c3d789b", + "sha256": "1yij5mqm0dg6326yms0a2w8gs42kdxq0ih8dhkpdar54r0bk3m8k", + "fetcher": "github", + "repo": "sshaw/copy-as-format", + "unstable": { + "version": [ + 20190523, + 258 + ], + "deps": [ + "cl-lib" + ], + "commit": "a0962b670e26b723ce304b14e3397da453aef84e", + "sha256": "0amgnl9d9sh69dh76vfb7ar6m995nka5zs3swa1pmqqnrmp8nr1w" + }, + "stable": { + "version": [ + 0, + 0, + 8 + ], + "deps": [ + "cl-lib" + ], + "commit": "d2376c64334fe3de65d89d6d138a2187f9bf802f", + "sha256": "0i158bkra7zgq75j08knq2camvlhbs2v8zrsxiyp0mc4q949xysd" + } + }, + { + "ename": "copy-file-on-save", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "1mcwgkhd241aijnmzrrqqn9f7hiq5k1w4fj83v50aixrcs049gc3", + "fetcher": "github", + "repo": "emacs-php/emacs-auto-deployment", + "unstable": { + "version": [ + 20180604, + 1419 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "5af6d5fcc35ddf9050eada96fd5f334bf0661b62", + "sha256": "1q9liby1dmwwmg2jz13gx2ld47bpcqb9c7vx4qgky75wb5c2q1xz" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "5af6d5fcc35ddf9050eada96fd5f334bf0661b62", + "sha256": "1q9liby1dmwwmg2jz13gx2ld47bpcqb9c7vx4qgky75wb5c2q1xz" + } + }, + { + "ename": "copyit", + "commit": "69bd50fd1f3865d48cec9fe2680d260d746248e5", + "sha256": "1m28irqixzl44c683dxvc5x6l3qcqlpy6jzk6629paqkdi5mx1c0", + "fetcher": "github", + "repo": "zonuexe/emacs-copyit", + "unstable": { + "version": [ + 20161126, + 1229 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "f50d033b129d467fb517a351adf3f16cabd82a62", + "sha256": "1s1ddwxgvig7skibicm9j8jii651n1v5ivfj4j6d1kkc79lpq69n" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "c973d3650208a033aaf845989d023f9c6e572ddd", + "sha256": "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w" + } + }, + { + "ename": "copyit-pandoc", + "commit": "69bd50fd1f3865d48cec9fe2680d260d746248e5", + "sha256": "03v448gh6glq126r95w4y6s2p08jgjhkc6zgsplx0v9d5f2mwaqk", + "fetcher": "github", + "repo": "zonuexe/emacs-copyit", + "unstable": { + "version": [ + 20160624, + 2028 + ], + "deps": [ + "copyit", + "pandoc" + ], + "commit": "f50d033b129d467fb517a351adf3f16cabd82a62", + "sha256": "1s1ddwxgvig7skibicm9j8jii651n1v5ivfj4j6d1kkc79lpq69n" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "copyit", + "pandoc" + ], + "commit": "c973d3650208a033aaf845989d023f9c6e572ddd", + "sha256": "1fwndjbzwhl4dzrw5jxbq66yggxkl81ga3cnnl7rm3s63pkb6l3w" + } + }, + { + "ename": "coq-commenter", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1d6a40f8b4r8x08sy7qs335c9z744xmll326qzsjmxiqdkjv7h2k", + "fetcher": "github", + "repo": "Ailrun/coq-commenter", + "unstable": { + "version": [ + 20170822, + 2309 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "7fe9a2cc0ebdb0b1e54a24eb7971d757fb588ac3", + "sha256": "1rq0j6ds9snv21k2lzyja96qxxz8nrai5aj1k1si9zshld28mapx" + } + }, + { + "ename": "corral", + "commit": "7b0d7e326f0401de0488b77d39af7bd7b8e8fdd4", + "sha256": "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da", + "fetcher": "github", + "repo": "nivekuil/corral", + "unstable": { + "version": [ + 20160502, + 701 + ], + "commit": "e7ab6aa118e46b93d4933d1364bc273f57cd6911", + "sha256": "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7" + }, + "stable": { + "version": [ + 0, + 3, + 20 + ], + "commit": "e7ab6aa118e46b93d4933d1364bc273f57cd6911", + "sha256": "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7" + } + }, + { + "ename": "cosmo", + "commit": "3ab914dfefcddf6ecd65261bc11bd3eb12929c79", + "sha256": "1pk34d0kv1jm2fq72qa5lj0y39x1yf2nbkjjg8jcj8ari28h9vfk", + "fetcher": "gitlab", + "repo": "montanari/cosmo-el", + "unstable": { + "version": [ + 20170922, + 744 + ], + "commit": "dd83b09a49a2843606b28279b674b2207040b36b", + "sha256": "0phcg81g3dy67s1hfymvj0lkcpwygwql8iixf940nv31qllgzvd7" + } + }, + { + "ename": "counsel", + "commit": "06c50f32b8d603db0d70e77907e36862cd66b811", + "sha256": "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6", + "fetcher": "github", + "repo": "abo-abo/swiper", + "unstable": { + "version": [ + 20190731, + 46 + ], + "deps": [ + "swiper" + ], + "commit": "4389a261b30c8fbfc6e31228b33b1764221daac7", + "sha256": "153a9nn0m6q5a4psw2vvnmqixkny56dlbrfvvw45zc9ikdd1wv2b" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "deps": [ + "swiper" + ], + "commit": "85d1e2e779ca92e6ef8e47d08f866b13d4d87aee", + "sha256": "0xgngn3jhmyn6mlkk9kmgfgh0w5i50b27syr4cgfgarg6p77j05w" + } + }, + { + "ename": "counsel-bbdb", + "commit": "0ed9bcdb1f25a6dd743c1dac2bb6cda73a5a5dc2", + "sha256": "14d9mk44skpmyj0zkqwz97j80r630j7s5hfrrhlsafdpl5aafjxp", + "fetcher": "github", + "repo": "redguardtoo/counsel-bbdb", + "unstable": { + "version": [ + 20181128, + 1320 + ], + "deps": [ + "ivy" + ], + "commit": "df2890deb73b09f8055243bd91942ea887d9b7a1", + "sha256": "0bki658mvlchqf3prkzxz4217a95cxm58c1qmf84yp2n8h6gd0d8" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "ivy" + ], + "commit": "df2890deb73b09f8055243bd91942ea887d9b7a1", + "sha256": "0bki658mvlchqf3prkzxz4217a95cxm58c1qmf84yp2n8h6gd0d8" + } + }, + { + "ename": "counsel-codesearch", + "commit": "d3404c3cdfa6654ad80378ab258f0df68a6beeb9", + "sha256": "0y547cfxjq59zvi36av0rd1wdydf8d96ma438ja0x726f53nxd3g", + "fetcher": "github", + "repo": "abingham/emacs-counsel-codesearch", + "unstable": { + "version": [ + 20180925, + 803 + ], + "deps": [ + "codesearch", + "counsel", + "ivy" + ], + "commit": "b7989fad3e06f301c31d5e896c42b6cc549a0e0c", + "sha256": "1qv82nvj0kddmajm6pniadnz96mqz8rhl0g2w2z5834r48higxqv" + } + }, + { + "ename": "counsel-css", + "commit": "519a05a9f0e43f3e1dfac75759346476bfc40772", + "sha256": "1sckfq8kv68q1anqmslrvhcf83m7b5r0clny6q33b9x0qypkv9xp", + "fetcher": "github", + "repo": "hlissner/emacs-counsel-css", + "unstable": { + "version": [ + 20180302, + 1036 + ], + "deps": [ + "cl-lib", + "counsel" + ], + "commit": "0536af00236cdce1ed08b40dd46c917e8b4b8869", + "sha256": "04qm5dqxnl4s0axbrin7a7dpj3h8rx096q01bwzfs10qsdx3l7c0" + } + }, + { + "ename": "counsel-dash", + "commit": "0f8af4d854f972bfed3d2122b4c089f72d8b5f2a", + "sha256": "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk", + "fetcher": "github", + "repo": "nathankot/counsel-dash", + "unstable": { + "version": [ + 20190510, + 708 + ], + "deps": [ + "cl-lib", + "counsel", + "dash-docs" + ], + "commit": "5856b8766956428c183a2df911a05f845d014041", + "sha256": "1x0y6w5ivicckllznvljad42hgmbnilkrx9bz7rs4clr1baxzvyh" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "counsel", + "dash", + "dash-functional", + "helm-dash" + ], + "commit": "a342340bbd8e50e4d1015e0b91d8ecd8f6cdf9f2", + "sha256": "1ma67lc4y9y3byrz8v6635w8q2scp6f2cqagq09k723k5nnwisfj" + } + }, + { + "ename": "counsel-etags", + "commit": "87528349a3ab305bfe98f30c5404913272817a38", + "sha256": "1h3dlczm1m21d4h41vz9ngg5fi02g6f95qalfxdnsvz0d4w4yxk0", + "fetcher": "github", + "repo": "redguardtoo/counsel-etags", + "unstable": { + "version": [ + 20190801, + 1416 + ], + "deps": [ + "counsel", + "ivy" + ], + "commit": "77ac96ed2ebedd334057b4f4ef3bf5755544f7fe", + "sha256": "1r6vydmdxfs7mpqnxk6lb91hyd8w4ljqj069hnpa17b7s2rqvy3r" + }, + "stable": { + "version": [ + 1, + 8, + 8 + ], + "deps": [ + "counsel", + "ivy" + ], + "commit": "2dbc3f24c6150ce581a55a122321c54019800211", + "sha256": "0iaa75h9phinzcawj12rj3d16dpwd8h0jgnv6d7d01wdg582dldc" + } + }, + { + "ename": "counsel-ffdata", + "commit": "f91f760ed71543b9c11661ab8131206a13d2e6e3", + "sha256": "0pmlvlpz22j7jk96456j2l365sq47rq0i9k5byfmzvm1s2p8nqvl", + "fetcher": "github", + "repo": "cireu/counsel-ffdata", + "unstable": { + "version": [ + 20190725, + 1630 + ], + "deps": [ + "counsel", + "emacsql" + ], + "commit": "33f37112b068d72d866011461c6a4e9a0d43fc12", + "sha256": "00svf7b3an4dfcl7w2xycn5a6ib78p5xip6wy675w9k6v16sag73" + } + }, + { + "ename": "counsel-gtags", + "commit": "fe8fe6af7826a4b73ac784fde8859130b9ad7096", + "sha256": "1vxxcqijn3nab4146p06vhw6dn8zwb7arbk1610bajsvkyid428y", + "fetcher": "github", + "repo": "FelipeLema/emacs-counsel-gtags", + "unstable": { + "version": [ + 20190422, + 1501 + ], + "deps": [ + "counsel", + "seq" + ], + "commit": "3ebfd4159856e9dbd9531b2a43410f72175a90bb", + "sha256": "08n11nvf7p6clmha8r50r2fzp9f4nmrcm8j6byvn99vazdvych7p" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "counsel" + ], + "commit": "8066dd4cd6eb157345fb43788bacf2c5d746b497", + "sha256": "07kxv56p340a913673h30q65814ji7lwc6gsn9vcr18rsdaj7qwi" + } + }, + { + "ename": "counsel-notmuch", + "commit": "54fe0be4e8e8b90cd2dc3cc8b9c573694c8f773b", + "sha256": "1n4jp9fa5fbv55am0w1b832ncdih8gi6xflwabpwqqj4k5mj94p1", + "fetcher": "github", + "repo": "fuxialexander/counsel-notmuch", + "unstable": { + "version": [ + 20181203, + 935 + ], + "deps": [ + "ivy", + "notmuch", + "s" + ], + "commit": "a4a1562935e4180c42524c51609d1283e9be0688", + "sha256": "01k1321d961kc2i660a5595bqk0d85f16snsxngsn5si6y83kqr7" + } + }, + { + "ename": "counsel-org-capture-string", + "commit": "380d58ac9487f2fb1d4a791008fa60fb7165e7e3", + "sha256": "1jqp4qscv8shx1kfnrm6642a83ba3rpzm7v9hz46j3aw6f3psw9g", + "fetcher": "github", + "repo": "akirak/counsel-org-capture-string", + "unstable": { + "version": [ + 20180816, + 724 + ], + "deps": [ + "ivy" + ], + "commit": "0fd5d72397a9268a89dd26de2a6c355f127453ac", + "sha256": "19ijjiidxxysvkz9vnsgiymxd7w7zcs5bazn7dmahp5yaprlsjld" + } + }, + { + "ename": "counsel-org-clock", + "commit": "d21e10ba82b4ae0f8101031be16bc5f7e80ba5d5", + "sha256": "16pai05qqaw31ghdy1h164qy56mqsdsf2925i0qhlhysslkki8gh", + "fetcher": "github", + "repo": "akirak/counsel-org-clock", + "unstable": { + "version": [ + 20190407, + 348 + ], + "deps": [ + "dash", + "ivy" + ], + "commit": "ddf6b89652e4dbc0be5e8719213e7673c83959f1", + "sha256": "1fd8ll7jcfmy2dhhhsqh1l6wqfklma54bqpb4jnxmdn2w9p3ndmn" + } + }, + { + "ename": "counsel-osx-app", + "commit": "926d0ab3d62d7114d6997944521b66ab969f6830", + "sha256": "0zc74szalyazbvi0lh3zy08kb8kzlwcwnc8d1sj5n23ymvvs5nn3", + "fetcher": "github", + "repo": "d12frosted/counsel-osx-app", + "unstable": { + "version": [ + 20160821, + 809 + ], + "deps": [ + "ivy" + ], + "commit": "b1c54cbc033c4939966910d85ce035503079e108", + "sha256": "0p3j60hjai3v8yny9zlzbxppy0pl9s3yf4x6z5rac6n86xx0iix8" + } + }, + { + "ename": "counsel-projectile", + "commit": "389f16f886a385b02f466540f042a16eea8ba792", + "sha256": "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl", + "fetcher": "github", + "repo": "ericdanan/counsel-projectile", + "unstable": { + "version": [ + 20190724, + 1903 + ], + "deps": [ + "counsel", + "projectile" + ], + "commit": "90d3792ab90559a9de6ad419dbfb2435a36a224d", + "sha256": "0m1rcmk9qnwr5zlsw8wzyvs3an1jqy5nvlm7lcsvzfkvzpn52ad0" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "counsel", + "projectile" + ], + "commit": "d64e5275c578a494102852c466a3696bde466739", + "sha256": "1inc4ndl0ysfwvxk4avbgpj4qi9rc93da6476a5c81xmwpsv8wmq" + } + }, + { + "ename": "counsel-pydoc", + "commit": "110939c12b4e042a486e97be4c2a2426c5978ca6", + "sha256": "1a3vwh4jf5y03z95bd4blk75n6wjd24l6yw6vpr3991bi4qrxclz", + "fetcher": "github", + "repo": "co-dh/pydoc_utils", + "unstable": { + "version": [ + 20171018, + 2042 + ], + "deps": [ + "ivy" + ], + "commit": "1d8ff8ca3b9d69453cde423b1887fbb490a95c9e", + "sha256": "06kf93y8wb9nwvs70xi4lkd5x4g6sl8f83diy2wl7ha657dwx3m8" + } + }, + { + "ename": "counsel-spotify", + "commit": "b386462518a5ebb6454f4d01582df98395239bcc", + "sha256": "1xs4km5vjhn6dnlmrscz7airip07n1ppybp8mr17hinb8scfpv47", + "fetcher": "github", + "repo": "Lautaro-Garcia/counsel-spotify", + "unstable": { + "version": [ + 20190406, + 2025 + ], + "deps": [ + "ivy" + ], + "commit": "f484e6efd3994704cfd16c87c298fbfa12d442cc", + "sha256": "0b5hykw3n96f0m50176hk639sbzdykhnp52xlp8g6l7p807x27w9" + } + }, + { + "ename": "counsel-tramp", + "commit": "e1822b735b6bd533f658bd64ddccda29e19e9a5e", + "sha256": "1ga57v6whnpigciw54k3hs0idq4cbl35qrysarik72f46by859v5", + "fetcher": "github", + "repo": "masasam/emacs-counsel-tramp", + "unstable": { + "version": [ + 20190616, + 122 + ], + "deps": [ + "counsel" + ], + "commit": "da451df4c5f0ba32056ec600e8eb6a2c7ca4df08", + "sha256": "18qlwyjqxap2qfbz14ma6yqp4p3v4q2y8idc355s4szjdd2as2lr" + }, + "stable": { + "version": [ + 0, + 7, + 5 + ], + "deps": [ + "counsel" + ], + "commit": "da451df4c5f0ba32056ec600e8eb6a2c7ca4df08", + "sha256": "18qlwyjqxap2qfbz14ma6yqp4p3v4q2y8idc355s4szjdd2as2lr" + } + }, + { + "ename": "counsel-world-clock", + "commit": "7d9da8c45e7d06647f9591d80e83f851a7f3af85", + "sha256": "151vm7g7g0jwjlp0wrwlxrjnh9qsckc10whkfgaz9czzvvmsf4cv", + "fetcher": "github", + "repo": "kchenphy/counsel-world-clock", + "unstable": { + "version": [ + 20190709, + 2211 + ], + "deps": [ + "ivy", + "s" + ], + "commit": "674e4c6b82a92ea765af97cc5f017b357284c7dc", + "sha256": "1wm6g6g5jlk3k2h2zb6mjzdnl95yr3x7hk8x1ikpbpfd4xdc64kb" + } + }, + { + "ename": "countdown", + "commit": "ce30233b21be706ab3aaeeb61d5110143fa47c89", + "sha256": "0rjhc54f5dj55442b44yhvpicg98jg1jj1n0bv6alx699575vmym", + "fetcher": "github", + "repo": "xuchunyang/countdown.el", + "unstable": { + "version": [ + 20190626, + 244 + ], + "deps": [ + "stream" + ], + "commit": "139dea91fc818d65944aca5f16c9626abbdfbf04", + "sha256": "0khwqwwsp2zhz7x2w7qcsdh5vmk3ybshj9isa6zr2ygag8aag13h" + } + }, + { + "ename": "cov", + "commit": "d0f35ce436ac157955d6f92de96e14bef9ad69e3", + "sha256": "02wk8ikanl5lcwqb9wqc8xx5vwzhn2hpqpxdchg5mdi7fifa1rni", + "fetcher": "github", + "repo": "AdamNiederer/cov", + "unstable": { + "version": [ + 20180415, + 2031 + ], + "deps": [ + "elquery", + "f", + "s" + ], + "commit": "7c72a949b9628296af97cc7e4df0af6c3824d66e", + "sha256": "0rddchwanrshfpjiigmz6a0zz1sz9kxbbgvszvja2r4w0m6irb80" + } + }, + { + "ename": "coverage", + "commit": "cd70e138534551dd12ba4d165ba56fbd1e033241", + "sha256": "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm", + "fetcher": "github", + "repo": "trezona-lecomte/coverage", + "unstable": { + "version": [ + 20180227, + 457 + ], + "deps": [ + "cl-lib", + "ov" + ], + "commit": "c73d984168955ca0f47f44b0464aa45282df42b6", + "sha256": "1kn61j91x4r4kc498y2jas5il4pc4qzhkj8392g2qiq5m3lbv4vl" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib", + "ov" + ], + "commit": "c73d984168955ca0f47f44b0464aa45282df42b6", + "sha256": "1kn61j91x4r4kc498y2jas5il4pc4qzhkj8392g2qiq5m3lbv4vl" + } + }, + { + "ename": "coverlay", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1n0fblacwps94mhbdwpi22frhqp3pxg4323ghb79rvszb7in9i8j", + "fetcher": "github", + "repo": "twada/coverlay.el", + "unstable": { + "version": [ + 20190414, + 940 + ], + "deps": [ + "cl-lib" + ], + "commit": "0beae208d0e7d746a94385428bd61aa5cd7ea828", + "sha256": "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh" + }, + "stable": { + "version": [ + 3, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "0beae208d0e7d746a94385428bd61aa5cd7ea828", + "sha256": "1qf1s0997n6bfx50bd0jln25p7z6y8pfibijnbqcg2011xmv5dqh" + } + }, + { + "ename": "cp5022x", + "commit": "761fcb0ff07d9746d68e9946c8b46e50c67cd1d8", + "sha256": "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl", + "fetcher": "github", + "repo": "awasira/cp5022x.el", + "unstable": { + "version": [ + 20120323, + 2335 + ], + "commit": "ea7327dd75e54539576916f592ae1be98179ae35", + "sha256": "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz" + } + }, + { + "ename": "cpanfile-mode", + "commit": "673e828a076ad806cdb69102a9d55f80ace45670", + "sha256": "1sflykfrhx9sn5dqlaa4s7w34nczh4xqwcig5rmlpwj9yl2mk2dm", + "fetcher": "github", + "repo": "zakame/cpanfile-mode", + "unstable": { + "version": [ + 20161001, + 710 + ], + "commit": "eda675703525198df1f76ddf250bffa40217ec5d", + "sha256": "07xivp1i9f884gs17lhp5jm0zk916c7gwazxnkm6m8rl3z2mcq0l" + } + }, + { + "ename": "cpp-auto-include", + "commit": "5323c0ab6d3e471951738a00ce7036e6ff2665d2", + "sha256": "1a1zv7zbd1l2vbgi42zd60mqnsv7a35is4drf2dmp5dw1nh08z73", + "fetcher": "github", + "repo": "syohex/emacs-cpp-auto-include", + "unstable": { + "version": [ + 20160426, + 412 + ], + "deps": [ + "cl-lib" + ], + "commit": "f3b9bfa668fcd38da8a9dbef0e33a536be239468", + "sha256": "1qnmmk97963j92d4h7vjf27dmiwnjk6q2ls0xy0xx5rg0y7firjf" + } + }, + { + "ename": "cpp-capf", + "commit": "7a456977e00708d2a0b764553048f3be11d96ebc", + "sha256": "0gc5grf9viiqsjwydyv3q3qgjwkla4n54d48dc7m6mq6fl8f3p23", + "fetcher": "git", + "url": "https://git.sr.ht/~zge/cpp-capf", + "unstable": { + "version": [ + 20190723, + 1158 + ], + "commit": "ca6d50f3853e1226a0ccad435aa8fbd7852c2149", + "sha256": "19vhayxy3ha3kkncz8vy5as2pdc17k4mycqszi2g0wywllnirhvv" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "bee4a7d5e9a52d955325396121a901a7679295b2", + "sha256": "0lk6q8jy53iqn9gzh7nd1qpfn5lmsc1h1qn8b6br82v0i1wd96gb" + } + }, + { + "ename": "cpputils-cmake", + "commit": "9b84a159e97f7161d0705da5dd5e8c34ae5cb848", + "sha256": "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60", + "fetcher": "github", + "repo": "redguardtoo/cpputils-cmake", + "unstable": { + "version": [ + 20181006, + 328 + ], + "commit": "64b2b05eff5398b4cd522e66efaf14553ab18ff4", + "sha256": "0kmqk0ba9cacss3m34a8sdnmdir4ci7mv3j176ylm5af0x9yqc45" + }, + "stable": { + "version": [ + 5, + 5 + ], + "commit": "55e5c69554379632692a0fa20bfadeef9194fbdd", + "sha256": "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i" + } + }, + { + "ename": "cql-mode", + "commit": "1084dd0ec0f2e8fe6fa8e97b322833c14e8e59d1", + "sha256": "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88", + "fetcher": "github", + "repo": "Yuki-Inoue/cql-mode", + "unstable": { + "version": [ + 20190315, + 225 + ], + "commit": "d400c046850d3cf404778b2c47d6be4ff84ca04b", + "sha256": "016fs984fbn9k6q17mpxq8gbpspai71r52da8aq31f3jijxmrh5a" + } + }, + { + "ename": "cquery", + "commit": "3cd3bffff0d2564c39735f844f9a02a660272caa", + "sha256": "01mw6aqiazpzcn6h5h5xcnra8a04yg1ibvpfajx70m5iw9f5w6l6", + "fetcher": "github", + "repo": "cquery-project/emacs-cquery", + "unstable": { + "version": [ + 20190118, + 542 + ], + "deps": [ + "dash", + "lsp-mode" + ], + "commit": "555e50984ebda177421fdcdc8c76cb29235d9694", + "sha256": "1d1m1lgc93fkg7dxb8d6ch68vh6w1zp3yy31bv78vaz8siqrmk16" + } + }, + { + "ename": "crappy-jsp-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "17m404kdz9avihz52xd7hn5qx06a6k74gmn0gbhly4gl84w3zc6y", + "fetcher": "github", + "repo": "magnars/crappy-jsp-mode", + "unstable": { + "version": [ + 20140311, + 931 + ], + "commit": "6c45ab92b452411cc0fab9bcee2f456276b4fc40", + "sha256": "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb" + } + }, + { + "ename": "creamsody-theme", + "commit": "488f95b9e425726d641120130d894babcc3b3e85", + "sha256": "0l3mq43bszxrz0bxmxb76drp4c8721cw8akgk3l5a800wqbfp2l7", + "fetcher": "github", + "repo": "emacsfodder/emacs-theme-creamsody", + "unstable": { + "version": [ + 20170222, + 1058 + ], + "deps": [ + "autothemer" + ], + "commit": "32fa3f4e461da92700523b1b20e7b28974c19a26", + "sha256": "01q1l8ajw6lpp1bb4yp8r70d86hcl4hy0mz7x1hzqsvb7flhppp0" + }, + "stable": { + "version": [ + 0, + 3, + 7 + ], + "deps": [ + "autothemer" + ], + "commit": "32fa3f4e461da92700523b1b20e7b28974c19a26", + "sha256": "01q1l8ajw6lpp1bb4yp8r70d86hcl4hy0mz7x1hzqsvb7flhppp0" + } + }, + { + "ename": "creds", + "commit": "81b032049ccc3837e8693f010b39716912f76bba", + "sha256": "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk", + "fetcher": "github", + "repo": "ardumont/emacs-creds", + "unstable": { + "version": [ + 20140510, + 1706 + ], + "deps": [ + "dash", + "s" + ], + "commit": "b059397a7d59481f05fbb1bb9c8d3c2c69226482", + "sha256": "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa" + }, + "stable": { + "version": [ + 0, + 0, + 6, + 1 + ], + "deps": [ + "dash", + "s" + ], + "commit": "00ebefd10005c170b790a01380cb6a98f798ce5c", + "sha256": "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs" + } + }, + { + "ename": "creole", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1q1c6f953g39xal1p7rj8dlcx2crk5cz1q07zp8bgp5jx4nd2z9n", + "fetcher": "github", + "repo": "nicferrier/elwikicreole", + "unstable": { + "version": [ + 20140924, + 1500 + ], + "deps": [ + "kv", + "noflet" + ], + "commit": "7d5cffe93857f6c75ca09ac79c0e47b8d4410e53", + "sha256": "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv" + } + }, + { + "ename": "creole-mode", + "commit": "f04f93ab9482dbabfdbe3f0c8186c62a9a80c8b3", + "sha256": "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s", + "fetcher": "github", + "repo": "nicferrier/creole-mode", + "unstable": { + "version": [ + 20130722, + 50 + ], + "commit": "b5e79b2ec5f19fb5aacf689b5febc3e0b61515c4", + "sha256": "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h" + } + }, + { + "ename": "cricbuzz", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "18nmr7rpbylqgfx5q3ps38wx9q1ndj06msgyjyc8lqpipbsz0pip", + "fetcher": "github", + "repo": "lepisma/cricbuzz.el", + "unstable": { + "version": [ + 20180804, + 2254 + ], + "deps": [ + "dash", + "enlive", + "f", + "s" + ], + "commit": "0b95d45991bbcd2fa58d96ce921f6a57ba42c153", + "sha256": "1s77a2lfy7nnaxm3ai9dg8lbdxp0892z4gr0yxqrgzawc4qcbb3x" + }, + "stable": { + "version": [ + 0, + 3, + 6 + ], + "deps": [ + "dash", + "enlive", + "f", + "s" + ], + "commit": "0b95d45991bbcd2fa58d96ce921f6a57ba42c153", + "sha256": "1s77a2lfy7nnaxm3ai9dg8lbdxp0892z4gr0yxqrgzawc4qcbb3x" + } + }, + { + "ename": "crm-custom", + "commit": "5e0752ba601a8d518d3c7fb54fd008602e7dc19f", + "sha256": "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c", + "fetcher": "github", + "repo": "DarwinAwardWinner/crm-custom", + "unstable": { + "version": [ + 20160117, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "f1aaccf64306a5f99d9bf7ba815d7ea41c15518d", + "sha256": "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "f1aaccf64306a5f99d9bf7ba815d7ea41c15518d", + "sha256": "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r" + } + }, + { + "ename": "crontab-mode", + "commit": "0831d0f869cad4681b22296225307aa5bf185f3f", + "sha256": "1lwkj5c8435xgqi9d4zgnp9dzi06byibf69fv9p3x79kv565g3gd", + "fetcher": "github", + "repo": "emacs-pe/crontab-mode", + "unstable": { + "version": [ + 20190304, + 1423 + ], + "commit": "090ed61e919df6391df45a7645a0d8d5b0dae1cb", + "sha256": "1yz9vvh2x6s2y02n1z8aqgb40bxgs2s2mxmy1vmp2piffq81d09y" + } + }, + { + "ename": "crux", + "commit": "575e3442a925500a5806e0b900208c1e6bfd11ae", + "sha256": "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c", + "fetcher": "github", + "repo": "bbatsov/crux", + "unstable": { + "version": [ + 20181108, + 827 + ], + "deps": [ + "seq" + ], + "commit": "308f17d914e2cd79cbc809de66d02b03ceb82859", + "sha256": "0rf84finwlvmy0xpgyljjvnrijlmkzjyw9rh97svgxp9c1rzfk0x" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "seq" + ], + "commit": "5b3c8155a9e9fe6f189645d175976026a2dc7b8d", + "sha256": "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7" + } + }, + { + "ename": "cryptol-mode", + "commit": "de12333bb429d84b2c214ac7ebb0219f67838f4f", + "sha256": "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2", + "fetcher": "github", + "repo": "thoughtpolice/cryptol-mode", + "unstable": { + "version": [ + 20190531, + 2051 + ], + "commit": "81ebbde83f7cb75b2dfaefc09de6a1703068c769", + "sha256": "1y24hssckqi8bapm24b6zw7lagdsh3gaacvq5pscgnjbqpk2rlvp" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "a54d000d24757fad2a91ae2853b16a97ebe52771", + "sha256": "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w" + } + }, + { + "ename": "crystal-mode", + "commit": "d4b9b47d7deecf0cf24a42b26d50021cb1219a69", + "sha256": "1fgpz7zab6nc6kvjzjsbvrbg8shf4by0f20cvjvyky8kym72q0hk", + "fetcher": "github", + "repo": "crystal-lang-tools/emacs-crystal-mode", + "unstable": { + "version": [ + 20190604, + 1254 + ], + "commit": "34124f546ff5c1136aed95bf0059015f9f6a1d60", + "sha256": "09cmbw190w6aiwwc2bg349xx6vcv9b9ajw8m70ajb3653qnq3mw4" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "0fe6815201bebe4c5ff6857bd541d95b05132b10", + "sha256": "0r75dvc0jqcqi1qjns8zj132dnm0s6mvqlqynkis16nigbawix8m" + } + }, + { + "ename": "crystal-playground", + "commit": "3e8d3a41e3307f415a144ff55e7a5fa95216cd6c", + "sha256": "0789x443qrvxgrcha6rag11fwyr0aj1ixw6xc0l4d34fsy76ppwh", + "fetcher": "github", + "repo": "jasonrobot/crystal-playground", + "unstable": { + "version": [ + 20180830, + 501 + ], + "deps": [ + "crystal-mode" + ], + "commit": "fb3691b1281207b459c5be50015a626f356dc40d", + "sha256": "19bla2xhvr34vi33cibr2pc8jgasbwjj24vwnwx25w9471sbaszi" + } + }, + { + "ename": "csgo-conf-mode", + "commit": "2298e3f840da549707ec3270c8303f4f63a674dc", + "sha256": "0djx6jraqlh9da2jqagj72vjnc8n3px2jp23jdy9rk40z10m5sbr", + "fetcher": "github", + "repo": "wynro/emacs-csgo-conf-mode", + "unstable": { + "version": [ + 20161209, + 1619 + ], + "commit": "57e7224f87a3ccc76b5564cc95fa0ff43bb6807c", + "sha256": "14wzh3rlq7xb8djncbjkfiq9hl5frp7gp42sz2ic7aky4qajbcdv" + } + }, + { + "ename": "csharp-mode", + "commit": "736716bbcfd9c9fb1d10ce290cb4f66fe1c68f44", + "sha256": "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0", + "fetcher": "github", + "repo": "josteink/csharp-mode", + "unstable": { + "version": [ + 20190717, + 1024 + ], + "commit": "e7e96e3b0cb69d98b4e12eda269719c9b23453ed", + "sha256": "0zpq404x8022rybfsmp5s1kvxfalfih6i9jjp9fnq0g8j6869qp8" + }, + "stable": { + "version": [ + 0, + 9, + 2 + ], + "commit": "5e47b7764b3f4c97c260a902e8072d444dbd0f1b", + "sha256": "1dnhpxcinrwc7dmwgzbg4lnly05h38f00zrfsjincvii6d8rjiw0" + } + }, + { + "ename": "csound-mode", + "commit": "c940d29de11e43b4abf2901c466c94d426a21818", + "sha256": "047a78nhkn6qycsz8w9a0r1xyz5wyf4rds3z5yx9sn5wkv54w95d", + "fetcher": "github", + "repo": "hlolli/csound-mode", + "unstable": { + "version": [ + 20190321, + 1559 + ], + "deps": [ + "multi", + "shut-up" + ], + "commit": "f4bc9236bbc5a696f7ff32d9402749536a332546", + "sha256": "0ds6cigm3pncsa5blqzfgisjn9v898ayj6nq2va6ssg73k0qfx1r" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "multi", + "shut-up" + ], + "commit": "5a892e6ad72e7844e8e14c0da04fcb6bc125fe5e", + "sha256": "1gzg2r7agllz2asp7dbxykydpnw3861whs2pfhr3fwwb39xf1pva" + } + }, + { + "ename": "csproj-mode", + "commit": "49823bd653c3599bbc6662c99d0406e9886f1bab", + "sha256": "08w22bfk6fs6cxyqxrcv3314vwmh868200axss5fsdfgbggs4vy1", + "fetcher": "github", + "repo": "omajid/csproj-mode", + "unstable": { + "version": [ + 20190514, + 1858 + ], + "commit": "889334f8cd08dc79d133149b4504e0e001f5a769", + "sha256": "0j330rrj6abr7xay1h2kajwa22npij0fdh30fk5z7zgas7jz735h" + } + }, + { + "ename": "css-autoprefixer", + "commit": "122e3813a5b8a57303345e9cd855f4d85eced6f0", + "sha256": "0q40k8jvs4nc57kcljsx5qzylz9ms0kbr3dic3mr3bj0w062b1qg", + "fetcher": "github", + "repo": "kkweon/emacs-css-autoprefixer", + "unstable": { + "version": [ + 20180311, + 1600 + ], + "commit": "386a5defc8543a3b87820f1761c075c7d1d93b38", + "sha256": "0ymba9bhzfi7kkrha4d4sn0hrc3sid4b5k8lhakwwdwafhym0jjb" + } + }, + { + "ename": "css-comb", + "commit": "0afc24de7f847feaa128168d0fd8b2110242cca6", + "sha256": "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf", + "fetcher": "github", + "repo": "channikhabra/css-comb.el", + "unstable": { + "version": [ + 20160416, + 559 + ], + "commit": "6fa45e5af8a8bd3af6c1154cde3540e32c4206ee", + "sha256": "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk" + } + }, + { + "ename": "css-eldoc", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0k0yzpqwfh5rg8sbv60simdslag514768i0naimm8vyrvv87fzny", + "fetcher": "github", + "repo": "zenozeng/css-eldoc", + "unstable": { + "version": [ + 20150125, + 323 + ], + "commit": "c558ac4c470742c98a37290e6b409db28183df30", + "sha256": "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx" + } + }, + { + "ename": "cssh", + "commit": "da3fcf6252f83d80de8a3ec564244e6cd22391eb", + "sha256": "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk", + "fetcher": "github", + "repo": "dimitri/cssh", + "unstable": { + "version": [ + 20150810, + 1709 + ], + "commit": "2fe2754235225a59b63f08b130cfd4352e2e1c3f", + "sha256": "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a" + } + }, + { + "ename": "csv", + "commit": "233f9de5f65fd8374f2c1912503c30905aa6691d", + "sha256": "1rvi5p27lsb284zqgv4cdqkbqc9r92axmvg7sv52rm7qcj8njwqd", + "fetcher": "gitlab", + "repo": "u11/csv.el", + "unstable": { + "version": [ + 20161113, + 1510 + ], + "commit": "aa1dfa1263565d5fac3879c21d8ddf5f8915e411", + "sha256": "1vmazjrfcsa9aa9aw8bq5sazdhqvhxyj837dyw5lmh8gk7z0xdaa" + }, + "stable": { + "version": [ + 2, + 1 + ], + "commit": "aa1dfa1263565d5fac3879c21d8ddf5f8915e411", + "sha256": "1vmazjrfcsa9aa9aw8bq5sazdhqvhxyj837dyw5lmh8gk7z0xdaa" + } + }, + { + "ename": "ctable", + "commit": "8bc29a8d518ce7a584277089bd4654f52ac0f358", + "sha256": "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1", + "fetcher": "github", + "repo": "kiwanami/emacs-ctable", + "unstable": { + "version": [ + 20171006, + 11 + ], + "commit": "b8830d1ca95abb100a81bc32011bd17d5ecba000", + "sha256": "0pg303pnqscrsbx9579hc815angszsgf9vpd2z2f8p4f4ka6a00h" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "08a017bde6d24ea585e39ce2637bebe28774d316", + "sha256": "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3" + } + }, + { + "ename": "ctags-update", + "commit": "e5d0c347ff8cf6e0ade80853775fd6b84f387fa5", + "sha256": "07548jjpx4var2817y47i6br8iicjlj66n1b33h0av6r1h514nci", + "fetcher": "github", + "repo": "jixiuf/ctags-update", + "unstable": { + "version": [ + 20190609, + 613 + ], + "commit": "67faf248b92388442958a069263c62a345425a1b", + "sha256": "0442jdxvn33i0bnb4fspvpdn66gxqyazyc6n3wqjmpn3fqvzwsrp" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "67faf248b92388442958a069263c62a345425a1b", + "sha256": "0442jdxvn33i0bnb4fspvpdn66gxqyazyc6n3wqjmpn3fqvzwsrp" + } + }, + { + "ename": "ctl-mode", + "commit": "38d2279fd05bb48f0d0e2276c605cd92892d0196", + "sha256": "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj", + "fetcher": "github", + "repo": "yyr/emacs-grads", + "unstable": { + "version": [ + 20151202, + 1006 + ], + "commit": "1a13051db21b999c7682a015b33a03096ff9d891", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31" + } + }, + { + "ename": "ctune", + "commit": "927ecd888bc00abff13f5fc335a88dffc2bf6779", + "sha256": "1ymy508h19w6c7z93nww9fzirzk84w24j3dpbj08d08bifndhj1q", + "fetcher": "github", + "repo": "maurooaranda/ctune", + "unstable": { + "version": [ + 20190709, + 1309 + ], + "commit": "ae298d617237c65ddebc52d236230be11fd4126d", + "sha256": "1w6rljq4aqr7m9j18s7zaw7alllxmk819938pzmgl9pkjscmva0k" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5633024d14957cd6eff03574b2044bb8e9b55710", + "sha256": "1gxhjgh4rs1gnva3a33wr2si594r4qywv20087hfbjlgli7114n0" + } + }, + { + "ename": "ctxmenu", + "commit": "6fc4f51bb6ce8fa9e37c0aeb51696b1980aece0c", + "sha256": "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp", + "fetcher": "github", + "repo": "aki2o/emacs-ctxmenu", + "unstable": { + "version": [ + 20140303, + 2142 + ], + "deps": [ + "log4e", + "popup", + "yaxception" + ], + "commit": "5c2376859562b98c07c985d2b483658e4c0e888e", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "log4e", + "popup", + "yaxception" + ], + "commit": "5c2376859562b98c07c985d2b483658e4c0e888e", + "sha256": "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb" + } + }, + { + "ename": "cubicaltt", + "commit": "1be42b49c206fc4f0df6fb50fed80b3d9b76710b", + "sha256": "1wgy6965cnw201wx4a2pn71sa40mh2712y0d0470klr156krj0n9", + "fetcher": "github", + "repo": "mortberg/cubicaltt", + "unstable": { + "version": [ + 20171108, + 1402 + ], + "deps": [ + "cl-lib" + ], + "commit": "a5c6f94bfc0da84e214641e0b87aa9649ea114ea", + "sha256": "1jwyqc86fyrxx9vkirgg97v6d1zdyg2f1l9nhvpjzm7zf77vmb98" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "3257eadf70826fb3ef060c46f85b7a4d60464b1d", + "sha256": "1c5nfzsj4bi2rk3d3r2iw03kkpc5dg9p3q3xzj7cxfg2wmg1xaxk" + } + }, + { + "ename": "cubicle-mode", + "commit": "81c29c912b83cbb536d30ba04130b39c0e5e5969", + "sha256": "0xcmd0s6dfryl1ihfaqq0pfqc906yzzwk3d3nv8g6b6w78pv1lzv", + "fetcher": "github", + "repo": "cubicle-model-checker/cubicle", + "unstable": { + "version": [ + 20171009, + 1957 + ], + "commit": "c2fba597da83b9ddc1195f1c8710d5330db24735", + "sha256": "0gprqhm38y5dcpkmhy1i6rv7pa5l8271b71284p1g90p2iyvm89g" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "b043b0247bf9b144a5c3360e5096a4b141dd1fb6", + "sha256": "0zsfz1h68xpbgdb1ln8l081vwrgd7i01ap4rjlyrsk8j3q3ry5wz" + } + }, + { + "ename": "cucumber-goto-step", + "commit": "d78d7abccfd9bcebf6888032639923327ad25309", + "sha256": "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8", + "fetcher": "github", + "repo": "gstamp/cucumber-goto-step", + "unstable": { + "version": [ + 20131210, + 519 + ], + "deps": [ + "pcre2el" + ], + "commit": "f2713ffb26ebe1b757d1f2ea80e900b55e5895aa", + "sha256": "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx" + } + }, + { + "ename": "cuda-mode", + "commit": "d21cf17a4a9ae391e2e9cf9be3399095fa23ef55", + "sha256": "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300", + "fetcher": "github", + "repo": "chachi/cuda-mode", + "unstable": { + "version": [ + 20151214, + 321 + ], + "commit": "9ae9eacfdba3559b5456342d0d03296290df8ff5", + "sha256": "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "c8cf7d92b8039cdd0bd525c258ab42f49a0f91cf", + "sha256": "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn" + } + }, + { + "ename": "cursor-test", + "commit": "6439f7561cfab4f6f3beb132d2a65e94b3deba9e", + "sha256": "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1", + "fetcher": "github", + "repo": "ainame/cursor-test.el", + "unstable": { + "version": [ + 20131207, + 1732 + ], + "commit": "e09956e048b88fd2ee8dd90b5678baed8b04d31b", + "sha256": "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l" + } + }, + { + "ename": "cwl-mode", + "commit": "2309764cd56d9631dd97981a78b50b9fe793a280", + "sha256": "0x8akxxmphpgsc2m78h6b0fs6vvcfvmi1q2jrz8hwlmai8f7zi9j", + "fetcher": "github", + "repo": "tom-tan/cwl-mode", + "unstable": { + "version": [ + 20171205, + 945 + ], + "deps": [ + "yaml-mode" + ], + "commit": "bdeb9c0734126f940db80bfb8b1dc735dab671c7", + "sha256": "0x9rvyhgy7ijq2r9pin94jz7nisrw6z91jch7d27lkhrmyb1rwk3" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "deps": [ + "yaml-mode" + ], + "commit": "bdeb9c0734126f940db80bfb8b1dc735dab671c7", + "sha256": "0x9rvyhgy7ijq2r9pin94jz7nisrw6z91jch7d27lkhrmyb1rwk3" + } + }, + { + "ename": "cyberpunk-2019-theme", + "commit": "1821a436d3d9f7c46cbd198f93951aa35bbf6ad7", + "sha256": "09bg3avrsca308y3g86mrzi6klzr4ky8k5y2nbsmwarrarv29qyy", + "fetcher": "github", + "repo": "the-frey/cyberpunk-2019", + "unstable": { + "version": [ + 20190722, + 1332 + ], + "commit": "5b30794c4f906da6e48600ffc56443151cae45d1", + "sha256": "1vb04zff9231yvlxflgp6qicpjxqp40gzgpp70b4rrffbfk6hays" + } + }, + { + "ename": "cyberpunk-theme", + "commit": "4c632d1e501d48dab54432ab111ce589aa229125", + "sha256": "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9", + "fetcher": "github", + "repo": "n3mo/cyberpunk-theme.el", + "unstable": { + "version": [ + 20190717, + 1509 + ], + "commit": "9779fc4c9f89b14c8c8bb238dd4ed6428ed30ba9", + "sha256": "1pgam947hcan24s2p0vswvjvg3kn39z8qmzpz433ilxd4wd2qz1c" + }, + "stable": { + "version": [ + 1, + 21 + ], + "commit": "17f68f8ac70b712d2870ecb6adb3841b992074fa", + "sha256": "05mfgr9aj7knn7niadv9p6z3qrfpq2lbbi2wxxx62xywim9maw2y" + } + }, + { + "ename": "cycbuf", + "commit": "39f1919271df023898e60f5e7635928dc905083f", + "sha256": "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw", + "fetcher": "github", + "repo": "martinp26/cycbuf", + "unstable": { + "version": [ + 20131203, + 2037 + ], + "commit": "1079b41c3eb27d65b66d4399959bb6253f84858e", + "sha256": "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w" + } + }, + { + "ename": "cycle-resize", + "commit": "8806af6662c8250c7533f643fe1c277ff0466651", + "sha256": "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi", + "fetcher": "github", + "repo": "pierre-lecocq/cycle-resize", + "unstable": { + "version": [ + 20160521, + 1557 + ], + "commit": "7d255d6fe85f12c967a0f7fcfcf18633be194c88", + "sha256": "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k" + } + }, + { + "ename": "cycle-themes", + "commit": "f24c358fd616a86f6594001deddee4d62dbb0bc6", + "sha256": "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc", + "fetcher": "github", + "repo": "toroidal-code/cycle-themes.el", + "unstable": { + "version": [ + 20150403, + 309 + ], + "deps": [ + "cl-lib" + ], + "commit": "6e125d11fdbc6b78fc9f219eb2609a5e29815898", + "sha256": "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am" + } + }, + { + "ename": "cyphejor", + "commit": "ad7cacfa39d8f85e26372ef21898663aebb68e43", + "sha256": "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g", + "fetcher": "github", + "repo": "mrkkrp/cyphejor", + "unstable": { + "version": [ + 20190713, + 1339 + ], + "commit": "f72f6a564ff32ec9af83df5c474de0374e29a266", + "sha256": "0vr44v674nsv7jsglmxvwcdm254rmvz4bxkak99rv39lkq2rvc09" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "d7842388a1872b165489624a1a68f536de97e28d", + "sha256": "1gi7rp0vf3iahljzjhs3rj9c0rvfcfs93hr8a3hl0ch3h9qq8ng2" + } + }, + { + "ename": "cypher-mode", + "commit": "ef558e7425adfe87202475babfbc1a679dc4cde5", + "sha256": "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0", + "fetcher": "github", + "repo": "fxbois/cypher-mode", + "unstable": { + "version": [ + 20151110, + 1142 + ], + "commit": "ce8543d7877c736c574a17b49874c9dcdc7a06d6", + "sha256": "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf" + } + }, + { + "ename": "cython-mode", + "commit": "be9bfabe3f79153cb859efc7c3051db244a63879", + "sha256": "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i", + "fetcher": "github", + "repo": "cython/cython", + "unstable": { + "version": [ + 20190111, + 2150 + ], + "commit": "ac1c9fe47491d01fb80cdde3ccd3e61152a973c7", + "sha256": "1b1k4f22f4kcx606gii0rmn2rslz66rh711jjvkl5s21q9amyzwr" + }, + "stable": { + "version": [ + 0, + 29, + 13 + ], + "commit": "d4610f39a43a658cee1862c899a9696d8a9c9f5f", + "sha256": "0ljf2rhyhzih28x2rp95xyajvvjsmk6lirfshf6h6nlcwbh5i9c7" + } + }, + { + "ename": "czech-holidays", + "commit": "7224fd77b3d8a37fac2fe0cf832e3487513afd8c", + "sha256": "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84", + "fetcher": "github", + "repo": "hydandata/czech-holidays", + "unstable": { + "version": [ + 20160113, + 1752 + ], + "commit": "d136fa09a152b3cd80db6d55c7b4ddfe07b90fbf", + "sha256": "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6" + } + }, + { + "ename": "d-mode", + "commit": "3c13e9ccc358743de660b1f0e89d6bb709c42bff", + "sha256": "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2", + "fetcher": "github", + "repo": "Emacs-D-Mode-Maintainers/Emacs-D-Mode", + "unstable": { + "version": [ + 20181205, + 607 + ], + "commit": "b5d936dfd4c1d0b68a0d911aadd4ba25df7af0e4", + "sha256": "0915kb9jcaixgindhj85fmykkhvj31ckp1yg6746fznwdgfrlifv" + }, + "stable": { + "version": [ + 2, + 0, + 9 + ], + "commit": "98af62e67026fee1dda9155e1a463917fc83802e", + "sha256": "0fzplvi1sm8k2sabfdvrd7j2xypwqh0g9v1mxa75dajdmcd85zpj" + } + }, + { + "ename": "dactyl-mode", + "commit": "72d503380511d2d6580b9522b6e0bd2d800bdebe", + "sha256": "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm", + "fetcher": "github", + "repo": "luxbock/dactyl-mode", + "unstable": { + "version": [ + 20140906, + 1725 + ], + "commit": "cc55fe6b987271d9647492b8df4c812d884f661f", + "sha256": "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm" + } + }, + { + "ename": "dad-joke", + "commit": "484d571b2737f7c613816333afdde6460c64e635", + "sha256": "1cg8iaq79w5zx1s3dirdl7ymcp162mmsy5c4vly90v20yrijblad", + "fetcher": "github", + "repo": "davep/dad-joke.el", + "unstable": { + "version": [ + 20170928, + 658 + ], + "commit": "bee47e7b746b403228fa7d7361cb095de19ac9ba", + "sha256": "14snnnjs28jg6k8x6g90m3dbcx10306ipcd256d3l6czk9p17vpd" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "bee47e7b746b403228fa7d7361cb095de19ac9ba", + "sha256": "14snnnjs28jg6k8x6g90m3dbcx10306ipcd256d3l6czk9p17vpd" + } + }, + { + "ename": "daemons", + "commit": "1f780485e72ae2885f698fdab0156855f70831f1", + "sha256": "14givkrw9p0m261hawahzi0n8jarapb63kv1s62faq57mqnq23jr", + "fetcher": "github", + "repo": "cbowdon/daemons.el", + "unstable": { + "version": [ + 20190202, + 1528 + ], + "commit": "fd7925b0c113e5bad2e4692430ce049405794910", + "sha256": "07l8k41ly92m3wkzlzyb9nmq4pd34xkpn7cjrdap7zfppd3iiq2r" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "dcf42cb3178d7245d6d49de346d5e2b44e5b7498", + "sha256": "00bkzfaw3bqykcks610vk9wlpa2z360xn32bpsrycacwfv29j7g4" + } + }, + { + "ename": "dakrone-light-theme", + "commit": "f3a88022a5f68d2fe01e08c2e99cfe380e3697b7", + "sha256": "1njlpvfa4ar14zn51fdmby55vjgfkpskizg5rif2f3zn6y4np2xw", + "fetcher": "github", + "repo": "dakrone/dakrone-light-theme", + "unstable": { + "version": [ + 20170808, + 2140 + ], + "commit": "06f198dc8b4ca7421990b30a23d89c8e0b8c5de4", + "sha256": "01vqlsv44h2ah79c8jqv8vkqvgmhqx2w3qbq07l7fx3zkpgjfmpy" + } + }, + { + "ename": "dakrone-theme", + "commit": "dcc07077b47d7c710c7f2d4919d791ed16ed5b26", + "sha256": "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814", + "fetcher": "github", + "repo": "dakrone/dakrone-theme", + "unstable": { + "version": [ + 20170801, + 1933 + ], + "commit": "232ad1be5f3572dcbdf528f1655109aa355a6937", + "sha256": "0p51zni42hv090vv6mk9v0v88achmgxlsmlr40y8y6ng57w51r4s" + } + }, + { + "ename": "danneskjold-theme", + "commit": "557244a3b60c7cd3ca964ff843aa1e9d5a1e32ec", + "sha256": "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl", + "fetcher": "github", + "repo": "rails-to-cosmos/danneskjold-theme", + "unstable": { + "version": [ + 20190731, + 917 + ], + "commit": "f88bf1d8c3d26ad03b3faf0d91c1ad8521c7feef", + "sha256": "0biv8aglzj2g77dq1y6pad7k1nihgzb54am4wslvh2b3d6r25rnd" + } + }, + { + "ename": "dante", + "commit": "5afa8226077cbda4b76f52734cf8e0b745ab88e8", + "sha256": "1j0qwjshh2227k63vd06bvrsccymqssx26yfzams1xf7bp6y0krs", + "fetcher": "github", + "repo": "jyp/dante", + "unstable": { + "version": [ + 20190629, + 652 + ], + "deps": [ + "company", + "dash", + "f", + "flycheck", + "haskell-mode", + "lcr", + "s" + ], + "commit": "8090286a5dd498de281ce1b1c14a47b9913198c8", + "sha256": "0yq03jk34if8qzxxbxvgszw0rly0l3k13rkc2msq0hx5j98z0yrj" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "company", + "dash", + "f", + "flycheck", + "haskell-mode", + "lcr", + "s" + ], + "commit": "3bd1bfdd775a309565a850e37dfbd42f1b33068e", + "sha256": "0f76snwsy735r7pl3gdzvajsmpd12qkj03lyjxq1x44a79a1gfwk" + } + }, + { + "ename": "dap-mode", + "commit": "67942b34975015dd6f2b5f6b43829cc13b1832c6", + "sha256": "041mmla70ld5783gn8g360klk3cw39pir5d41544zf3yssk12qpn", + "fetcher": "github", + "repo": "emacs-lsp/dap-mode", + "unstable": { + "version": [ + 20190722, + 1641 + ], + "deps": [ + "bui", + "dash", + "dash-functional", + "f", + "lsp-mode", + "s", + "tree-mode" + ], + "commit": "7d22cf541d7a23d6366a36b33bc8a36d4b583d66", + "sha256": "1h7a01rjc7cm66dcsvgm2icrk3c7gach0l6xg72gg2gwv6wrcj4x" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "bui", + "dash", + "dash-functional", + "f", + "lsp-mode", + "s", + "tree-mode" + ], + "commit": "240da34149e2d8893b647f15ff30f217aba4ac89", + "sha256": "1y3s28xb66w8yynwlavn6d7ysjv0d5ziyga5fjyj0jk1037mjg6y" + } + }, + { + "ename": "darcsum", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "1qr3jh05awxxh2qi1sv542vkryfja44zswa5wxwj7g2dr6ck9jr1", + "fetcher": "github", + "repo": "emacsmirror/darcsum", + "unstable": { + "version": [ + 20190316, + 2215 + ], + "commit": "6a8b690539d133c5e3d17cb23fe4365fbb6fb493", + "sha256": "1ajdm0p8rdyaqy0wwfslb1mqj9b2dpk8xkljjw6ddacph5hflhcm" + } + }, + { + "ename": "darcula-theme", + "commit": "23c8f10205187babb17e3abc3dc40eb1938e6640", + "sha256": "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3", + "fetcher": "gitlab", + "repo": "fommil/emacs-darcula-theme", + "unstable": { + "version": [ + 20171227, + 1845 + ], + "commit": "d9b82b58ded9014985be6658f4ab17e26ed9e93e", + "sha256": "1y8rsc63nl4n43pvn283f1vcpqyjnv6xl60fwyscwrqaz19bsnl1" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "2ecd466ffa7a3157b9ddcd7545b6fb8ad308c976", + "sha256": "1h5lssnc1am54hkprnp61bsj5fnm8j556q2gbhljfjgrdwnqv8ky" + } + }, + { + "ename": "dark-krystal-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j", + "fetcher": "github", + "repo": "emacsfodder/emacs-dark-krystal-theme", + "unstable": { + "version": [ + 20170808, + 1300 + ], + "commit": "79084b99665dc9ffb0ec62cc092349a5ecebebbc", + "sha256": "1d3cdsaba71qxdqrbj1jrlq8a0iw3h50l5grcdjvxixdnf5nsa4c" + } + }, + { + "ename": "dark-mint-theme", + "commit": "de74e734ae75df051475e60e79d4f5ad5bc128ae", + "sha256": "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m", + "fetcher": "github", + "repo": "shaunvxc/dark-mint-theme", + "unstable": { + "version": [ + 20160302, + 642 + ], + "commit": "95c30a26de31549cd341184ba9ab2be8fdc67eba", + "sha256": "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1" + } + }, + { + "ename": "dark-souls", + "commit": "535577ce57bd772aca9f66e27485b0f58a7d35c5", + "sha256": "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc", + "fetcher": "github", + "repo": "tomjakubowski/dark-souls.el", + "unstable": { + "version": [ + 20140314, + 1128 + ], + "commit": "94122b1215423e58dcf18584a2bd022029d54d4b", + "sha256": "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r" + } + }, + { + "ename": "darkburn-theme", + "commit": "a04dd517e02bc4b4a62d956aa901a727354202b0", + "sha256": "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w", + "fetcher": "github", + "repo": "gorauskas/darkburn-theme", + "unstable": { + "version": [ + 20170423, + 1652 + ], + "commit": "0af794ff7fac19778ac8a7efb92455c6f6c2158f", + "sha256": "0nv917r8pbj6mfncjl8d7hq4763c69q491d4iwnff1n3wzlcp42s" + } + }, + { + "ename": "darkmine-theme", + "commit": "e527d1335f5fd2aba5b00255a7d69adbc20585ff", + "sha256": "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5", + "fetcher": "github", + "repo": "pierre-lecocq/darkmine-theme", + "unstable": { + "version": [ + 20160406, + 624 + ], + "commit": "7f7e82ca03bcad52911fa41fb3e204e32d6ee63e", + "sha256": "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz" + } + }, + { + "ename": "darkokai-theme", + "commit": "81387a5a70f7c42fbae16b52db765136795a37e1", + "sha256": "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf", + "fetcher": "github", + "repo": "sjrmanning/darkokai", + "unstable": { + "version": [ + 20190603, + 1919 + ], + "commit": "a53815fbfb06604d7f51519c62cc11e507204a70", + "sha256": "01jd3y3kr4fplvdv32smbaxqa2dafs8vvp967jma7xm7r1frnbdw" + } + }, + { + "ename": "darktooth-theme", + "commit": "b7f62ac1566ced7332e83253f79078dc30cb7889", + "sha256": "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs", + "fetcher": "github", + "repo": "emacsfodder/emacs-theme-darktooth", + "unstable": { + "version": [ + 20190412, + 142 + ], + "deps": [ + "autothemer" + ], + "commit": "5cc7fbfb08d2f1a33b85eac92b6450407b915119", + "sha256": "164y8hrdz46gg1b6sfi7gdv7pj54hrin0lcmhxp6gc9x5dg3l354" + }, + "stable": { + "version": [ + 0, + 3, + 10 + ], + "deps": [ + "autothemer" + ], + "commit": "ae14a9be19b6fbd287e0f5ad156e7942cd6a5bc6", + "sha256": "1jisiz0blksjl6d8q7bnvnlfrwalqfpd93fs66i8pgllhf5z7j19" + } + }, + { + "ename": "dart-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0zpvp86067a6l63wrpqxsm9fhv3n4ggbq8pg21vgiz54hk4x1xpp", + "fetcher": "github", + "repo": "bradyt/dart-mode", + "unstable": { + "version": [ + 20190629, + 2353 + ], + "deps": [ + "cl-lib", + "dash", + "flycheck", + "s" + ], + "commit": "31861e81fdc21cb562942bf3a69f6c5aec2050ec", + "sha256": "1paqzicfngw9vhmjw21cv8rwnrrzw28gvgrc4zr7434h1nrs4h3n" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "deps": [ + "cl-lib", + "dash", + "flycheck", + "s" + ], + "commit": "d78c5c796da53108a824967932cf6c773426e10f", + "sha256": "1x04vhmwg0hn54dfskwp8dnghjyyn8rha3vpfqw37qjchf3js3f0" + } + }, + { + "ename": "dash", + "commit": "57eed8767c3e98614259c408dc0b5c54d3473883", + "sha256": "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz", + "fetcher": "github", + "repo": "magnars/dash.el", + "unstable": { + "version": [ + 20190424, + 1804 + ], + "commit": "77f3bf40c9c85386a50f2dab3dc950513f6f88bd", + "sha256": "1h1v12f94i4a4kbcqi3njlf60p8n0601pp3vyahg0k06ms2aj46i" + }, + "stable": { + "version": [ + 2, + 16, + 0 + ], + "commit": "258c324d9840901db83b2cabef3fa75bba57c1ba", + "sha256": "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v" + } + }, + { + "ename": "dash-alfred", + "commit": "5c93798af21ba97773ccb761841a54650ffec6d7", + "sha256": "10s7gfzpzdhvr5v3w4mqkaqjr2xs9j6p8n4mqwi4xw4aps8p0mnr", + "fetcher": "github", + "repo": "xuchunyang/dash-alfred.el", + "unstable": { + "version": [ + 20190720, + 415 + ], + "commit": "ec8d9970fa00ee38bca798673c10cae44419541d", + "sha256": "1asa3cmncl2jvc89jzlvb4karpc4zdihsjvig0zjia6nbj46pqsr" + } + }, + { + "ename": "dash-at-point", + "commit": "0b2b0c544a76802df5ff3b1bf68a0418a653ea98", + "sha256": "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m", + "fetcher": "github", + "repo": "stanaka/dash-at-point", + "unstable": { + "version": [ + 20180710, + 1356 + ], + "commit": "4d795a23a8428c421d5107f1b005c9d8e0d1816c", + "sha256": "09rxyr22qxc9pdrkg0c4smifh2r797ggz5hg74q8j8jybvixsbls" + } + }, + { + "ename": "dash-docs", + "commit": "2f597ec52f4bf55a748231751b6e51328e8f6f59", + "sha256": "0vms4yr67l95rybvavd34a9gm57j7524swlf1c0rj8fff1wrmhn0", + "fetcher": "github", + "repo": "gilbertw1/dash-docs", + "unstable": { + "version": [ + 20190516, + 1702 + ], + "deps": [ + "async", + "cl-lib" + ], + "commit": "111fd9b97001f1ad887b45e5308a14ddd68ce70a", + "sha256": "0sckb7z0ylflva212bns7iq9mfnffgjghi0qspsbfwra35zb9xng" + } + }, + { + "ename": "dash-functional", + "commit": "57eed8767c3e98614259c408dc0b5c54d3473883", + "sha256": "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p", + "fetcher": "github", + "repo": "magnars/dash.el", + "unstable": { + "version": [ + 20180107, + 1618 + ], + "deps": [ + "dash" + ], + "commit": "77f3bf40c9c85386a50f2dab3dc950513f6f88bd", + "sha256": "1h1v12f94i4a4kbcqi3njlf60p8n0601pp3vyahg0k06ms2aj46i" + }, + "stable": { + "version": [ + 2, + 16, + 0 + ], + "deps": [ + "dash" + ], + "commit": "258c324d9840901db83b2cabef3fa75bba57c1ba", + "sha256": "150k48llqz2mb66vbznpyj47r6g16amfl7hbg8q46djq8mp7zc2v" + } + }, + { + "ename": "dashboard", + "commit": "ef3c6af6ff5d880e6336f8db32b22b64b182794e", + "sha256": "19l7mv57ra3i8bz35zfq0wrrp8mk0bzhng6wqpbf9dax4pq3pnp9", + "fetcher": "github", + "repo": "emacs-dashboard/emacs-dashboard", + "unstable": { + "version": [ + 20190721, + 504 + ], + "deps": [ + "page-break-lines" + ], + "commit": "7a71e6ca4c32fdadde0c8624ea4e2e7c11474e7d", + "sha256": "09fgzw93x90bhq918p4i8hrfy8yxyp236rc118cr6hma9bh05hii" + }, + "stable": { + "version": [ + 1, + 6, + 0 + ], + "deps": [ + "page-break-lines" + ], + "commit": "5b66b65c4c7536f43e8e58b3f7055e5bd6381cda", + "sha256": "1g6g8vad1kdmv1zxp95a8sn70idl26isqjb3xk1r95pqnx1cn591" + } + }, + { + "ename": "dashboard-hackernews", + "commit": "a5ba74a9b76458bfd53e9cea7bd704d1488c9c98", + "sha256": "0j5ai05g84cl6dhzw1cjvvhchg0sy7zwv355x87c5mg1kx0mrdpk", + "fetcher": "github", + "repo": "hyakt/emacs-dashboard-hackernews", + "unstable": { + "version": [ + 20190109, + 205 + ], + "deps": [ + "dashboard", + "request" + ], + "commit": "b71814716d8f78181b9d1990f06072460de0797e", + "sha256": "1dvv10xn2mh0nh85cd78y23cn8p9ygdhj4k7xs4fa6r7bhp0xvqm" + } + }, + { + "ename": "dashboard-project-status", + "commit": "dfc05873c6532c866d89c4cc07eb84b447a25c70", + "sha256": "1r25xmscz3lrjm6jjix416py26za5l1ck3xa77qbyrr4rf1gsakg", + "fetcher": "github", + "repo": "functionreturnfunction/dashboard-project-status", + "unstable": { + "version": [ + 20190202, + 1354 + ], + "deps": [ + "dashboard", + "git" + ], + "commit": "7675c138e9df8fe2c626e7ba9bbb8b6717671a41", + "sha256": "1sbjrc1l57q2ifmw6pf3n105qk3q7rskqy9811qijpsbcl1m819d" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "dashboard", + "git" + ], + "commit": "42fc624937b965d05c9f9d017661fa0420164df7", + "sha256": "07n1xqwgmsdiv55fg2vwbg17nyq5jij1ml6mrbzjn726bm88zz4w" + } + }, + { + "ename": "date-at-point", + "commit": "a6dbeddd236f312fac1d5542dfd2edf81df8fad2", + "sha256": "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0", + "fetcher": "github", + "repo": "alezost/date-at-point.el", + "unstable": { + "version": [ + 20150308, + 1243 + ], + "commit": "38df823d05df08ec0748a4185113fae5f99090e9", + "sha256": "024jx6q0dik4w2wb8nrk1q73asvjgrsl5mslns0ci3zsya343rch" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "662f8350a83311503dc0aae47a28752f9f1270c9", + "sha256": "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k" + } + }, + { + "ename": "date-field", + "commit": "fe790729a67d2210cbccefce43805daa20db647d", + "sha256": "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk", + "fetcher": "github", + "repo": "aki2o/emacs-date-field", + "unstable": { + "version": [ + 20141129, + 105 + ], + "deps": [ + "dash", + "log4e", + "yaxception" + ], + "commit": "11c9170d1f7b343233f7716d4c0a62be024c1654", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "dash", + "log4e", + "yaxception" + ], + "commit": "11c9170d1f7b343233f7716d4c0a62be024c1654", + "sha256": "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w" + } + }, + { + "ename": "date2name", + "commit": "b62dc50387e7f432ca470042f10c9a310981f64d", + "sha256": "0xlhq0k8ww7br3xqzn7wkscnsf1d948x3x4li60a9r4287ngjj3l", + "fetcher": "github", + "repo": "DerBeutlin/date2name.el", + "unstable": { + "version": [ + 20190630, + 933 + ], + "commit": "ca8e3bd421ac59adf5bdd279ccf007f04dd61c1e", + "sha256": "1mx295zh3mf5arj63bswkm8ypjrdiwfxm27746nr2kblwjliy9px" + } + }, + { + "ename": "datetime", + "commit": "91ef4352603cc69930ab3d63f0a90eee63f5f328", + "sha256": "0c000fnqg936dhjw5qij4lydzllw1x1jgnyy960zh6r61pk062xj", + "fetcher": "github", + "repo": "doublep/datetime", + "unstable": { + "version": [ + 20190404, + 1837 + ], + "deps": [ + "extmap" + ], + "commit": "8c6d6fc991766e6bf9cefc4ea4b04eeae8116a84", + "sha256": "0c5y304pvns8jhy4fpz4jmbfxdgz8ms04hgrnsb0g168szc9g0s9" + }, + "stable": { + "version": [ + 0, + 6, + 4 + ], + "deps": [ + "extmap" + ], + "commit": "8c6d6fc991766e6bf9cefc4ea4b04eeae8116a84", + "sha256": "0c5y304pvns8jhy4fpz4jmbfxdgz8ms04hgrnsb0g168szc9g0s9" + } + }, + { + "ename": "datetime-format", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "19qccjz2lzh01glgkixya7bxd6pvyjqgmw8bmqlwag6cb68bwsyv", + "fetcher": "github", + "repo": "emacs-php/emacs-datetime", + "unstable": { + "version": [ + 20160612, + 1715 + ], + "commit": "e6427538b547cbe02e1bd6ed4b765c73620bdae8", + "sha256": "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r" + } + }, + { + "ename": "datomic-snippets", + "commit": "4da8ec133ec5e1204966c1b12c9bc0ca1b50d643", + "sha256": "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r", + "fetcher": "github", + "repo": "magnars/datomic-snippets", + "unstable": { + "version": [ + 20180817, + 1045 + ], + "deps": [ + "dash", + "s", + "yasnippet" + ], + "commit": "4a14228840d5252e13d2bf6209670f26345bbb84", + "sha256": "1nvng479sy7ykwy9a86qq48yzv8n0903g724srhf42v9c81fc9s7" + } + }, + { + "ename": "dayone", + "commit": "a7c34ae046b75994cf04d16642bf28d4645d1821", + "sha256": "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l", + "fetcher": "github", + "repo": "mori-dev/emacs-dayone", + "unstable": { + "version": [ + 20160105, + 1240 + ], + "deps": [ + "ht", + "mustache", + "uuid" + ], + "commit": "ab628274f0806451f23bce16f62a6a11cbf91a2b", + "sha256": "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms" + } + }, + { + "ename": "db", + "commit": "79ac40439b65c217e1caaa7175d26556b6a6c889", + "sha256": "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n", + "fetcher": "github", + "repo": "nicferrier/emacs-db", + "unstable": { + "version": [ + 20140421, + 2111 + ], + "deps": [ + "kv" + ], + "commit": "b3a423fb8e72f9013009cbe033d654df2ce31438", + "sha256": "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k" + } + }, + { + "ename": "db-pg", + "commit": "c4eb90ea7b8ed5c529c74c3faeaf3eac3955eb31", + "sha256": "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg", + "fetcher": "github", + "repo": "nicferrier/emacs-db-pg", + "unstable": { + "version": [ + 20130131, + 1902 + ], + "deps": [ + "db", + "pg" + ], + "commit": "7d5ab86b74b05fe003b3b434d4835f37f3f3eded", + "sha256": "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a" + } + }, + { + "ename": "ddskk", + "commit": "6eccccb79881eaa04af3ed6395cd2ab981d9c894", + "sha256": "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9", + "fetcher": "github", + "repo": "skk-dev/ddskk", + "unstable": { + "version": [ + 20190423, + 1234 + ], + "deps": [ + "ccc", + "cdb" + ], + "commit": "ad61579af269291b4446f4bab0a58522cc454f1c", + "sha256": "0aisilp9wl9w8l6nsiy963wvja38pp57g3skdf6qbm5ak8bb3244" + } + }, + { + "ename": "ddskk-posframe", + "commit": "24a819d5032b4f0c72a68ef05a2dd1d0272decea", + "sha256": "1b98pkwxmmgngzsqmlmlyr1llml67alkanl34dfvhyyqvmm6p5v2", + "fetcher": "github", + "repo": "conao3/ddskk-posframe.el", + "unstable": { + "version": [ + 20190623, + 1529 + ], + "deps": [ + "ddskk", + "posframe" + ], + "commit": "3505204b7bb96872312055bdc8ee5fb419b247e3", + "sha256": "0gn0vfi2pi0wykl2p3cjck89aprw659fgfwn3jm4dc8baqidip4c" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "ddskk" + ], + "commit": "322a9ef8cdb7416dd137e7d2b1be1120126c05fc", + "sha256": "0d8ng5m8y88zda286qdjmj0m0wdm3xnv1jzl6m7yv8z8967lj1az" + } + }, + { + "ename": "deadgrep", + "commit": "93389fae7233b83ea904e17bdaf83f8247cda3d8", + "sha256": "01m5ds7lic9g11a5iwzw86k6xcv56wbbzjm1343ckbbi255h9i09", + "fetcher": "github", + "repo": "Wilfred/deadgrep", + "unstable": { + "version": [ + 20190516, + 2159 + ], + "deps": [ + "dash", + "s", + "spinner" + ], + "commit": "caeb37b8d6ab83f0eba353d6bbb29678190d4419", + "sha256": "158fqha8nilwfzmw15lcsq8b099j8wclzq303md0j4mfr2q2gfvs" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "dash", + "s", + "spinner" + ], + "commit": "1d64c113f562a80147cdb6041a2dd48e5ba2da5d", + "sha256": "025xj4hc1k87wmbx2imvxb9brfnajclpd4rj7j1yg85gbk7a99v5" + } + }, + { + "ename": "debian-el", + "commit": "1a381ec81eb160365f478c6a3af638c14558d7d6", + "sha256": "0x74a4nm2p4w82kzrdqy90969sminsrhdzppld2mg63jg0wxb8ga", + "fetcher": "git", + "url": "https://salsa.debian.org/emacsen-team/debian-el.git", + "unstable": { + "version": [ + 20181020, + 1513 + ], + "commit": "a499822afc2154ca83edf6a605ed22c5a932fa12", + "sha256": "0bfgh6v0q93lfd0q628r11jd45cys89z4874a19w61cb0mfpvks0" + }, + "stable": { + "version": [ + 37, + 4 + ], + "commit": "9690c4adb71e0fc7d00fea24b49ba944f913f4f5", + "sha256": "118yyhmfwpdlqvz5xjqfr4mmpjznkja3jn63n43z66q0apfhhk61" + } + }, + { + "ename": "debpaste", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0h3hx3vgdhchmndabmzprddq3bxd80jnv4xvma9v6k1v07bl721v", + "fetcher": "github", + "repo": "alezost/debpaste.el", + "unstable": { + "version": [ + 20160113, + 2347 + ], + "deps": [ + "xml-rpc" + ], + "commit": "6f2a400665062468ebd03a2ce1de2a73d9084958", + "sha256": "1wi70r56pd5z0x4dp4m58p9asq03j74kdm4fi9vai83vsl2z9amq" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "xml-rpc" + ], + "commit": "6f2a400665062468ebd03a2ce1de2a73d9084958", + "sha256": "1wi70r56pd5z0x4dp4m58p9asq03j74kdm4fi9vai83vsl2z9amq" + } + }, + { + "ename": "debug-print", + "commit": "aaaaa43f6ce7db654b651969797978164143b269", + "sha256": "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm", + "fetcher": "github", + "repo": "kenoss/debug-print", + "unstable": { + "version": [ + 20140126, + 19 + ], + "commit": "d817fd9ea2d3f8d2c1ace4d8af155684f3a99dc5", + "sha256": "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp" + } + }, + { + "ename": "decide", + "commit": "6adcd300e2ac2c718989cf855fd7b3eef654df00", + "sha256": "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc", + "fetcher": "github", + "repo": "lifelike/decide-mode", + "unstable": { + "version": [ + 20190201, + 2137 + ], + "commit": "4bfcc826dd5b1c30caec455d8baa4f363159eac6", + "sha256": "07rwflgqlsgqrw2v7rbshrbcr1qkgsx59y904jspvj310s8bsczg" + }, + "stable": { + "version": [ + 0, + 7 + ], + "commit": "90133687118c236142b8110571c463304b3192f9", + "sha256": "04yakjnh9c165ssmcwkkm03lnlhgfx5bnk0v3cm73kmwdmfd2q7s" + } + }, + { + "ename": "decl", + "commit": "8c2ecd46180643a0c493e05ec86fe50bc1e55146", + "sha256": "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k", + "fetcher": "github", + "repo": "preetpalS/decl.el", + "unstable": { + "version": [ + 20171212, + 1458 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "ff7f8a4f1225cbdf141c86172104e67a4cf58c86", + "sha256": "1ns1ni6aalr541df3a0ylqy0gj68fcsxdfvm4m1ga5532kxnswnj" + } + }, + { + "ename": "dedicated", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9", + "fetcher": "github", + "repo": "emacsorphanage/dedicated", + "unstable": { + "version": [ + 20151202, + 110 + ], + "commit": "f47b504c0c56fa5ab9d1028417ca1f65a713a2f0", + "sha256": "08ggrfdx8j7zqbid35ph0k8jramm4yf95rjilycywb82n3y6wynz" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "8275fb672f9cc4ba6682ebda0ef91db827e32992", + "sha256": "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414" + } + }, + { + "ename": "dedukti-mode", + "commit": "767a685fbe8ae86177e90a17dac3815d41d74df4", + "sha256": "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9", + "fetcher": "github", + "repo": "rafoo/dedukti-mode", + "unstable": { + "version": [ + 20171103, + 1212 + ], + "commit": "d7c3505a1046187de3c3aeb144455078d514594e", + "sha256": "1842wikq24c8rg0ac84vb1qby9ng1nssxswyyni4kq85lng5lcrp" + } + }, + { + "ename": "default-text-scale", + "commit": "db5e0b70e2d9c80aa41ae2c397f822789c2d3cc2", + "sha256": "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi", + "fetcher": "github", + "repo": "purcell/default-text-scale", + "unstable": { + "version": [ + 20190615, + 247 + ], + "commit": "dc7e2004be736544149643de2673a5506c83dbaf", + "sha256": "15y3yxv6r8480cir4i97f6j5z2yxx002w9h73xng37w24s105l5w" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "f425d3765c4dea3f2e550720278f9d424579ee5d", + "sha256": "0h42jiwxrxjmk7ccwh3h25n7dy2rq61ncm5wx27jhkncc5jdm4h6" + } + }, + { + "ename": "deferred", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1i8jfapzmw86iqwhnnlqmcj6zh4hyhizdcwjxcnxdj6kvxmwyysm", + "fetcher": "github", + "repo": "kiwanami/emacs-deferred", + "unstable": { + "version": [ + 20170901, + 1330 + ], + "commit": "2239671d94b38d92e9b28d4e12fd79814cfb9c16", + "sha256": "0vz59lm7pfz0gbsgrb44y555js85wbdjn0zm6p8wfqjiqf63ds3i" + }, + "stable": { + "version": [ + 0, + 5, + 1 + ], + "commit": "d012a1ab50edcc2c44e3e49006f054dbff47cb6c", + "sha256": "0xy9zb6wwkgwhcxdnslqk52bq3z24chgk6prqi4ks0qcf2bwyh5h" + } + }, + { + "ename": "define-word", + "commit": "e318b30d8b2b89981f4b89d78e5a46e77d3de412", + "sha256": "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a", + "fetcher": "github", + "repo": "abo-abo/define-word", + "unstable": { + "version": [ + 20190506, + 1525 + ], + "commit": "11bfee628aee082a9a3a2fd5f083cbdb05d5d00a", + "sha256": "1yrhrvqiyp4cv6bpvdrkc5zfwflb1jx8kmivjkpv6765pnr11zp8" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "38e2f94779652fc6280a51b68dc910431513a8e1", + "sha256": "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g" + } + }, + { + "ename": "defproject", + "commit": "86465b351e668d6c19a6fc8e1b1a4aa7904cd139", + "sha256": "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm", + "fetcher": "github", + "repo": "kotfic/defproject", + "unstable": { + "version": [ + 20151201, + 2219 + ], + "commit": "674d48a5e34cb4bba76faa38ee901322ec649086", + "sha256": "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr" + } + }, + { + "ename": "defrepeater", + "commit": "f0d9cf994233ad098826c6933dfd57665044f598", + "sha256": "1zlp206dy5qipb7m3m77j4har258rxgwxg5ipflym4jj183maa39", + "fetcher": "github", + "repo": "alphapapa/defrepeater.el", + "unstable": { + "version": [ + 20180830, + 410 + ], + "deps": [ + "s" + ], + "commit": "9c027a2561fe141dcfb79f75fcaee36cd0386ec1", + "sha256": "1fync4i8ds718pdr2v25ily71jng0506hw5k9qpa0a533nsh7p30" + } + }, + { + "ename": "deft", + "commit": "1e2a0e4698d4e71ec28656594f6a83504a823490", + "sha256": "0f6z9hsigbwdsmg0abk1ddl9j19d0rpj4gzkl0d5arcpqbla26hp", + "fetcher": "github", + "repo": "jrblevin/deft", + "unstable": { + "version": [ + 20181226, + 1534 + ], + "commit": "f54e8a65a7e75a029657364055420374df45656d", + "sha256": "1vas6jgwli0jcxmxmcwvzwv4414q8kkmhqfz5m96r7l4lpgcrhdr" + }, + "stable": { + "version": [ + 0, + 8 + ], + "commit": "c4b30d780bfa732ff52d85f0311e4a045f44a7b4", + "sha256": "0z7cilgiz6krvl5h2z72hkch43qxmypb0k6p5vxn5lx1p6v0mrf2" + } + }, + { + "ename": "delim-kill", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig", + "fetcher": "github", + "repo": "thomas11/delim-kill", + "unstable": { + "version": [ + 20100517, + 620 + ], + "commit": "1dbe47344f2d2cbc8c54beedf0cf0bf10fd203c1", + "sha256": "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf" + } + }, + { + "ename": "demangle-mode", + "commit": "6ced9f4ffb051a8474d3f72695156416cf2dd8be", + "sha256": "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk", + "fetcher": "github", + "repo": "liblit/demangle-mode", + "unstable": { + "version": [ + 20190528, + 306 + ], + "deps": [ + "cl-lib" + ], + "commit": "06903d731dfde110e10b979dcc7624ef6dbb5ac8", + "sha256": "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "06903d731dfde110e10b979dcc7624ef6dbb5ac8", + "sha256": "1j0fszql941kmbd3sf3rjynm4g01cgpkq20lvy9ayj3f2cy46ad4" + } + }, + { + "ename": "demo-it", + "commit": "1dec5877db00c29d81d76be0ee2504399bad9cc4", + "sha256": "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7", + "fetcher": "github", + "repo": "howardabrams/demo-it", + "unstable": { + "version": [ + 20180404, + 332 + ], + "commit": "2760d2eed88ef854ce489a5f77627aa641af12bf", + "sha256": "1acfpkdwx8pvfhsqa7dp1n4q3cz5vks7b4gj5nc9rgvlmkv10j5c" + } + }, + { + "ename": "describe-number", + "commit": "d5ed9063f7e9f540bc90c1df4e3604d4af9bcfe5", + "sha256": "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji", + "fetcher": "github", + "repo": "netromdk/describe-number", + "unstable": { + "version": [ + 20151101, + 55 + ], + "deps": [ + "yabin" + ], + "commit": "40618345a37831804b29589849a785ef5aa5ac24", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "yabin" + ], + "commit": "40618345a37831804b29589849a785ef5aa5ac24", + "sha256": "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq" + } + }, + { + "ename": "desktop+", + "commit": "0b009b42c73490d56d4613dcf5a57447fb4ccab4", + "sha256": "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8", + "fetcher": "github", + "repo": "ffevotte/desktop-plus", + "unstable": { + "version": [ + 20170107, + 2132 + ], + "deps": [ + "dash", + "f" + ], + "commit": "88055cee526a000056201898499cebbd35e3ea76", + "sha256": "1nkljslx8cwmm4z18mhnwrc1lmd6lxdyhk8bwhzms7g1p6yi99d8" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "dash", + "f" + ], + "commit": "a9cb8dd0af5071d9f148211b408c54306239381c", + "sha256": "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf" + } + }, + { + "ename": "desktop-environment", + "commit": "dfe988e0dd4a1272ecf7b2fe758ef0c81e2acad2", + "sha256": "0iai1awpkv4n8k263854mx95c8yh2vvif6z91mgn6hck8774v9zp", + "fetcher": "github", + "repo": "DamienCassou/desktop-environment", + "unstable": { + "version": [ + 20190701, + 1306 + ], + "commit": "a3707e9fcf4371fe586e0d35a79331d1cf7309c9", + "sha256": "01xd5hhk66firnnmc18fa87ialcn1cr8b1vhgjrfa1p87hf496s1" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "284c38fcb5b10746255ee4123eaa549e028df0c8", + "sha256": "14ija2rrz3zjhjbzxg84j5fq6xph4ah7w9bkqnq37by040cydvhw" + } + }, + { + "ename": "desktop-registry", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v", + "fetcher": "github", + "repo": "ryuslash/desktop-registry", + "unstable": { + "version": [ + 20140119, + 2143 + ], + "commit": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd", + "sha256": "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "commit": "244c2e7f9f0a1050aa8a47ad0b38f4e4584682dd", + "sha256": "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp" + } + }, + { + "ename": "detour", + "commit": "010af7946b10ded846225a19d375434b5d9427a8", + "sha256": "0w63vqlzkvx54y8y71gzzdyxzm4430bqfyapzyrzrsmxh773hnmn", + "fetcher": "github", + "repo": "ska2342/detour", + "unstable": { + "version": [ + 20181122, + 2138 + ], + "commit": "1ff23c236e18971ed1077840daf047cde79a45ee", + "sha256": "0pi0r443yh8xspqbjy2splksws38j8mwrgzjlsp6fizx2warn6y6" + } + }, + { + "ename": "devdocs", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "14vab71fy5i1ccmzgfdg37lfs1ix3qwhcyk9lvbahcmwnbnimlzm", + "fetcher": "github", + "repo": "xuchunyang/DevDocs.el", + "unstable": { + "version": [ + 20170731, + 850 + ], + "commit": "a2d51e824f0cc48a9dd611cc740bc8b86143e611", + "sha256": "0nzh7pgvj4cs5d29lrrmbas29xdslgqzsqjmpapzqzbnrgprnbx8" + } + }, + { + "ename": "dfmt", + "commit": "a343a752d25185b30b10805c4012f3b21a03651e", + "sha256": "06g9yimw6q4wl2prspr8vjyv2pxk8bb0451wplpp70h5ajfwy3dz", + "fetcher": "github", + "repo": "qsimpleq/elisp-dfmt", + "unstable": { + "version": [ + 20170728, + 1023 + ], + "commit": "21b9094e907b7ac53f5ecb4ff4539613a9d12434", + "sha256": "11r1i8nlz98z49fqb447abg1pv6838q54ly19wyg82k52875ms7m" + } + }, + { + "ename": "dhall-mode", + "commit": "c7ab435077b2f47d75ddc0ff10c64ee2b46044e2", + "sha256": "1zkspjwllcw9k4nlnif6jdwzl08ki39vmx90apw029n87xhvx7mp", + "fetcher": "github", + "repo": "psibi/dhall-mode", + "unstable": { + "version": [ + 20190526, + 2113 + ], + "deps": [ + "reformatter" + ], + "commit": "1b71e8e7123647761d8f35916c06b7280b2929ea", + "sha256": "12xpzaby75fczxj885ij9wgrc9pn05mg5s7abgfr1irvkq7s467n" + } + }, + { + "ename": "dianyou", + "commit": "059b003c74acdfdd917ecb6fecb782a0f54d155b", + "sha256": "1mz3nvr62gfkhbayw7784c8kn8drbiq9hlqv1g5vd9pdfhxqs8jl", + "fetcher": "github", + "repo": "redguardtoo/dianyou", + "unstable": { + "version": [ + 20190604, + 1215 + ], + "commit": "46d3328998ed20b37c4b52722d52d4d579e4f5d3", + "sha256": "1n437mjk9j4jdn0jzrra1m5q6x3wmk1r54rcafhbfnl6b8ji81jl" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "1a1fe6da3196f91db7b76b6c552ca4f2629e36bf", + "sha256": "1bgyq4zrhzlqmfgv3az4csgsrqidlshwjbx4r9l2rydk3k3gl78n" + } + }, + { + "ename": "diary-manager", + "commit": "a014f4d862a2480f7edb1266f79ce0801cca13c2", + "sha256": "1sk0pvadx4jmv93dj796ysn3jh2wvywayd7dd20v22kdvnlii73d", + "fetcher": "github", + "repo": "raxod502/diary-manager", + "unstable": { + "version": [ + 20190702, + 2148 + ], + "commit": "97f37cfb27ca85eec2f30c630ed356f2fd1f65e3", + "sha256": "0xqag57bmgwxvkz1k458xlrxnp3vg1kvaaapxpr3zb1dwqvvcyn8" + }, + "stable": { + "version": [ + 2, + 0, + 2 + ], + "commit": "919f724bb58e36b8626dd8d7c8475f71c0c54443", + "sha256": "12zg022bhfn4gsclb5wk8wh0bqyy0v5j37369haq6rb5jcc6x5fb" + } + }, + { + "ename": "dic-lookup-w3m", + "commit": "30de78c9cf83de30093a5647976eeaf552d4b2cb", + "sha256": "1kwbmzzf8sj4bn5kicmlp2hzv8ydcikwmdy7s40ggkgf1mk9zvqr", + "fetcher": "github", + "repo": "emacsorphanage/dic-lookup-w3m", + "unstable": { + "version": [ + 20180526, + 1621 + ], + "deps": [ + "stem", + "w3m" + ], + "commit": "3254ab10cbf0078c7162557dd1f68dac28459cf9", + "sha256": "0g8kzaxjka7n9jdldh45m22nizgv0m0v94ns7vmmhf1hpsf3zfxz" + } + }, + { + "ename": "dictcc", + "commit": "5e867df96915a0c4f22fdccd4e2096878895bda6", + "sha256": "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm", + "fetcher": "github", + "repo": "cqql/dictcc.el", + "unstable": { + "version": [ + 20190118, + 2002 + ], + "deps": [ + "cl-lib", + "ivy" + ], + "commit": "3244897515db954eafeed9648e7a0011b89c3ce2", + "sha256": "1nlgz3i8kynhl6d6h5rszja14z5n7ri83mm5ks90nbdhjcqwk3qd" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "cl-lib", + "ivy" + ], + "commit": "3244897515db954eafeed9648e7a0011b89c3ce2", + "sha256": "1nlgz3i8kynhl6d6h5rszja14z5n7ri83mm5ks90nbdhjcqwk3qd" + } + }, + { + "ename": "dictionary", + "commit": "5b08ed7b90e3283e177eff57cb02b12a093dc258", + "sha256": "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w", + "fetcher": "github", + "repo": "myrkr/dictionary-el", + "unstable": { + "version": [ + 20190403, + 1918 + ], + "deps": [ + "connection", + "link" + ], + "commit": "6edc1d0a4156d33c3da0c1649c308b809fda46e1", + "sha256": "0g95q3yggzxr8d2gjxamfwx8xbzf182naxpb265r7v9awd35bqk5" + }, + "stable": { + "version": [ + 1, + 10 + ], + "commit": "9ef1672ecd367827381bbbc9af93685980083c5c", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s" + } + }, + { + "ename": "diff-hl", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "135jgjfaiq6kj72ji5k22v4pqc8gjjmcv80r5rkjbjigzlvcvvj2", + "fetcher": "github", + "repo": "dgutov/diff-hl", + "unstable": { + "version": [ + 20190707, + 2243 + ], + "deps": [ + "cl-lib" + ], + "commit": "374b1d4b34876219218da7a539e7301259b56958", + "sha256": "0i7x6qgr3nydcwhw72sbc8z9x9dfhgkf0dqj9nakvx36vn1bblbq" + }, + "stable": { + "version": [ + 1, + 8, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "374b1d4b34876219218da7a539e7301259b56958", + "sha256": "0i7x6qgr3nydcwhw72sbc8z9x9dfhgkf0dqj9nakvx36vn1bblbq" + } + }, + { + "ename": "difflib", + "commit": "df1924ddff6fd1b5fa32481d3b3d6fbe89a127d3", + "sha256": "07bm5hib3ihrrx0lhfsl6km9gfckl73qd4cb37h93zw0hc9xwhy6", + "fetcher": "github", + "repo": "dieggsy/difflib.el", + "unstable": { + "version": [ + 20171227, + 1518 + ], + "deps": [ + "cl-generic", + "ht", + "s" + ], + "commit": "b08850251812d71e62fd6956081299590acdf37b", + "sha256": "03k5iy610f1m2nmkdk69p49fcfqfyxmy3h6fqvqsr2v1hix8i54a" + }, + "stable": { + "version": [ + 0, + 3, + 8 + ], + "deps": [ + "cl-generic", + "ht", + "s" + ], + "commit": "b08850251812d71e62fd6956081299590acdf37b", + "sha256": "03k5iy610f1m2nmkdk69p49fcfqfyxmy3h6fqvqsr2v1hix8i54a" + } + }, + { + "ename": "diffscuss-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1mycjis38gqwha7jgj05fzv0041ghk6khy5d2dlcyy2nh3bb68rb", + "fetcher": "github", + "repo": "tomheon/diffscuss", + "unstable": { + "version": [ + 20141014, + 2357 + ], + "commit": "e0aacd8b3d9f886f27222c1397f0655e849e0af7", + "sha256": "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr" + } + }, + { + "ename": "diffview", + "commit": "0ea5dd4c9c114618ac20f565c878f509ce8d9872", + "sha256": "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k", + "fetcher": "github", + "repo": "mgalgs/diffview-mode", + "unstable": { + "version": [ + 20150929, + 511 + ], + "commit": "031b70913e755c5e55222680f80185032a7d1728", + "sha256": "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "471dc36af93e68849bf2da0db991e186283b3546", + "sha256": "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6" + } + }, + { + "ename": "digistar-mode", + "commit": "851fa17152b664df99b80a654e5c055bb5227181", + "sha256": "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s", + "fetcher": "github", + "repo": "retroj/digistar-mode", + "unstable": { + "version": [ + 20160218, + 1955 + ], + "commit": "15288b1e1a04b79b5ab7097fdd26d48b2ff41076", + "sha256": "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "0dcde58ec6e473042e55d4f283b223554546de5b", + "sha256": "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6" + } + }, + { + "ename": "digit-groups", + "commit": "eea9d435c7c1889b16549a0ef3f66483b2de3605", + "sha256": "1wy1hf15qi9v0wz2rykpf40v3g2n4mha6h207m0zn8l8rb79hwjq", + "fetcher": "bitbucket", + "repo": "adamsmd/digit-groups", + "unstable": { + "version": [ + 20160817, + 226 + ], + "deps": [ + "dash" + ], + "commit": "ee1d6de372600cb9e1aa481b7ed0eb7ca37c5246", + "sha256": "0rkajjlw820gfx1kclkcvdq7milhiid2yzvn9hd275ydskrhhwlp" + } + }, + { + "ename": "digitalocean", + "commit": "bc81950b42e4fdc9e6710ba1b859f0fba98be3fa", + "sha256": "086v4wrzkjgjks6lfp2hn97pcbplxmc7y7bbiriw4gixgqds6yx9", + "fetcher": "gitlab", + "repo": "olymk2/emacs-digitalocean", + "unstable": { + "version": [ + 20190607, + 726 + ], + "deps": [ + "request" + ], + "commit": "6c32d3593286e2a62d9afab0057c829407b0d1e8", + "sha256": "08708nfqfgcd6hzh91li0yhr4kz9lxw6i80brlnis9bfk3cs4m9x" + } + }, + { + "ename": "digitalocean-helm", + "commit": "bc81950b42e4fdc9e6710ba1b859f0fba98be3fa", + "sha256": "0q1ir6i9x1ql5c8vg1bff9px2jpwb0rxfiavk9fj3mqbjdifrz0w", + "fetcher": "gitlab", + "repo": "olymk2/emacs-digitalocean-helm", + "unstable": { + "version": [ + 20180610, + 746 + ], + "deps": [ + "digitalocean", + "helm" + ], + "commit": "b125c9882eded7d73ec109d152b26625f333440b", + "sha256": "072v1800gjv566fqjxp8dvzkilwhbvl7lc5fqc0mr4xw8lpldkx9" + } + }, + { + "ename": "dim", + "commit": "3a740ab40cab3a1890f56df808f41a2d541aa77c", + "sha256": "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52", + "fetcher": "github", + "repo": "alezost/dim.el", + "unstable": { + "version": [ + 20160818, + 949 + ], + "commit": "79b81724b951fedffdd3113f473c18990af837a9", + "sha256": "1fclhpcrsi09z2np7q3dq3hhb3pqxsvv1l2dqis27afxnb1zshr3" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "0c19a510580ebdc77e6db536f0f8ed2840b9b33e", + "sha256": "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1" + } + }, + { + "ename": "dim-autoload", + "commit": "66b1a81dfd09a2859ae996d5d8e3d704857a340f", + "sha256": "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9", + "fetcher": "github", + "repo": "tarsius/dim-autoload", + "unstable": { + "version": [ + 20180318, + 2027 + ], + "commit": "2d879932741ac8e3afd4dd03071b61170eae353d", + "sha256": "0nw9q569771z6y8zkpmcg5flr71732s6kckywjvpixqnxxa579iy" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "commit": "788320fe089fafbdf1cb09d2ab4d29d64a804e21", + "sha256": "0iyhjww7p274x418n1iw1xj2fkmn5k9icav0jyzbwmy83a2nmr52" + } + }, + { + "ename": "diminish", + "commit": "1bfb4acb381cada46458cf60eae9b88d007294d5", + "sha256": "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43", + "fetcher": "github", + "repo": "myrjola/diminish.el", + "unstable": { + "version": [ + 20170419, + 1736 + ], + "commit": "565a983a39d2e2cffab5df13b34f3b6116723208", + "sha256": "173lzj9l7a4wcfvdq6akvfyyyriy5c30b4vhhv51hs051dmn02d0" + }, + "stable": { + "version": [ + 0, + 45 + ], + "commit": "0211de96b7cfba9c9dc8d2d392dbd4ccdb22bc65", + "sha256": "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6" + } + }, + { + "ename": "dimmer", + "commit": "8ae80e9202d69ed3214325dd15c4b2f114263954", + "sha256": "0w8n5svckk1jp8856pg2gkws9798prqjjkdqf8ili2hjcqnd1a3r", + "fetcher": "github", + "repo": "gonewest818/dimmer.el", + "unstable": { + "version": [ + 20180218, + 411 + ], + "commit": "d033fdda154e688e45cca35902dbff9915351b98", + "sha256": "1d457029zyabfjhzrgayibdmxfmia5yr7rqn50kc16k3aavw32f7" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "12fc52a6570ec25020281735f5a0ca780a9105af", + "sha256": "1jv9rrv15nb5hpwcaqlpjj932gyisrkwbv11czkg3v0bn7qn6yif" + } + }, + { + "ename": "dionysos", + "commit": "890445eca3c555acd2639a6f509c8e83b687f2bd", + "sha256": "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz", + "fetcher": "github", + "repo": "nlamirault/dionysos", + "unstable": { + "version": [ + 20160810, + 1056 + ], + "deps": [ + "alert", + "cl-lib", + "dash", + "libmpdee", + "pkg-info", + "s" + ], + "commit": "0aac21caadabc5a7f09e18a9dcb02f3dec26588b", + "sha256": "1g6p9cr3p85i7ay3jmvn7f8c5k8d49fcynb3ymns7rgsf3ypvpyc" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "deps": [ + "alert", + "cl-lib", + "dash", + "libmpdee", + "pkg-info", + "s" + ], + "commit": "98bc789d20e41020d6e62d63d3c78f8032fa4bf2", + "sha256": "1hma72dyn3w6cwd3vrgg4hdlrxgwqs55cjyxb05vs9csz7r42208" + } + }, + { + "ename": "dircmp", + "commit": "b146db5977003cb48bc37317f3df19b8a8c7fc30", + "sha256": "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c", + "fetcher": "github", + "repo": "matthewlmcclure/dircmp-mode", + "unstable": { + "version": [ + 20141204, + 1756 + ], + "commit": "558ee0b601c2de9d247612085aafe2926f56a09f", + "sha256": "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s" + } + }, + { + "ename": "dired-atool", + "commit": "0fe7b0857828a041ee06b30edd2cd488cc3394c7", + "sha256": "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w", + "fetcher": "github", + "repo": "HKey/dired-atool", + "unstable": { + "version": [ + 20181228, + 1422 + ], + "commit": "09dbb769fe02f546da470369a12468ab4a0cceb2", + "sha256": "0j2dz4vy4i22185hhlwg2kprpis97xb12qvfdhvdcnz2vwy61sxa" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "commit": "09dbb769fe02f546da470369a12468ab4a0cceb2", + "sha256": "0j2dz4vy4i22185hhlwg2kprpis97xb12qvfdhvdcnz2vwy61sxa" + } + }, + { + "ename": "dired-avfs", + "commit": "568e524b7bdf91b31655bdbb30fe9481d7a0ffbf", + "sha256": "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20161012, + 1104 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-collapse", + "commit": "6aab23df1451682ff18d9ad02c35cb7ec612bc38", + "sha256": "1k8h5cl8r68rnr1a3jnbc0ydflzm5mad7v7f1q60wks5hv61dsd1", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20190515, + 1210 + ], + "deps": [ + "dash", + "dired-hacks-utils", + "f" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-dups", + "commit": "6d01ad74959e17b5708ba9fa6a4958d4cda4e232", + "sha256": "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71", + "fetcher": "github", + "repo": "vapniks/dired-dups", + "unstable": { + "version": [ + 20130527, + 2125 + ], + "commit": "694ad128c822c59348ced16c4a0c1356d43da47a", + "sha256": "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni" + } + }, + { + "ename": "dired-efap", + "commit": "5669ca2adc48f3349eb59276850e6174e37f9de7", + "sha256": "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00", + "fetcher": "github", + "repo": "juan-leon/dired-efap", + "unstable": { + "version": [ + 20140122, + 1656 + ], + "commit": "624757b2e54d9a13e2183118d6c113e37684b90c", + "sha256": "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv" + }, + "stable": { + "version": [ + 0, + 8 + ], + "commit": "2b849bc5c09d0b752a177495ea1b851ee821f5bf", + "sha256": "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv" + } + }, + { + "ename": "dired-explorer", + "commit": "acd40e02185847dfdcd70b3cacea703133e4356d", + "sha256": "12mymmcl663ci543vqzg8jai8kgfbb3gw5wsbcm4ln3j8d5fgzd9", + "fetcher": "github", + "repo": "jidaikobo-shibata/dired-explorer", + "unstable": { + "version": [ + 20180607, + 221 + ], + "deps": [ + "cl-lib" + ], + "commit": "3ade0a31b5340271d05e9bf443f2504960f6c6dd", + "sha256": "0lbm326na005k3pa11rqq5nbhvm55dydi2a7fzs3bzlqwbx7d6fq" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "3ade0a31b5340271d05e9bf443f2504960f6c6dd", + "sha256": "0lbm326na005k3pa11rqq5nbhvm55dydi2a7fzs3bzlqwbx7d6fq" + } + }, + { + "ename": "dired-fdclone", + "commit": "8a0ddc10b11772d72a473e8d24ab4641bf4239a4", + "sha256": "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9", + "fetcher": "github", + "repo": "knu/dired-fdclone.el", + "unstable": { + "version": [ + 20180403, + 608 + ], + "commit": "903d7a736d240ef7352989a4e5d0ff9129c2ee3c", + "sha256": "0vkdsm29g1cvvv1j8xgjwr94x20zx8k2wvmncrpakcwq6d47cfxw" + }, + "stable": { + "version": [ + 1, + 5, + 4 + ], + "commit": "903d7a736d240ef7352989a4e5d0ff9129c2ee3c", + "sha256": "0vkdsm29g1cvvv1j8xgjwr94x20zx8k2wvmncrpakcwq6d47cfxw" + } + }, + { + "ename": "dired-filetype-face", + "commit": "4e6c8015af3d5f013272308a97e089a4e3ca847d", + "sha256": "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6", + "fetcher": "github", + "repo": "jixiuf/dired-filetype-face", + "unstable": { + "version": [ + 20180907, + 1339 + ], + "commit": "7ade7f7e8c2d7518c65f3f0343a10c272da0f47e", + "sha256": "0s8mqz331iw2bk4xdvj9zljklqj8dxv0yaw100lddg37qmdf7lgl" + } + }, + { + "ename": "dired-filter", + "commit": "568e524b7bdf91b31655bdbb30fe9481d7a0ffbf", + "sha256": "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20190211, + 2020 + ], + "deps": [ + "cl-lib", + "dash", + "dired-hacks-utils", + "f" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-hacks-utils", + "commit": "568e524b7bdf91b31655bdbb30fe9481d7a0ffbf", + "sha256": "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20190522, + 950 + ], + "deps": [ + "dash" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-hide-dotfiles", + "commit": "ba64a50f85fdb0ad54149dfed4051b4c1a719cbb", + "sha256": "0yy131cvj9a9sz02ari7pzwf22r5y7acyg757h3jvih317v6jyp0", + "fetcher": "github", + "repo": "mattiasb/dired-hide-dotfiles", + "unstable": { + "version": [ + 20170314, + 2039 + ], + "commit": "b715f643ec805b3b8aca334595e6589320f04a49", + "sha256": "1n6l25lrhp1x8nhc54kqal96wq96kkfyvz5yzvlw1qd3yk4s567i" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "32cf3b6f90dc56f6ff271c28d827aab303bc6221", + "sha256": "1fpzgmvbgfgl6wdrynlpvvdlbm8npgrmnzfz2133zvf5x3zfzq6r" + } + }, + { + "ename": "dired-icon", + "commit": "8a96249947cba52cd75515b3dc83b0842fedf624", + "sha256": "0nyiqcywc1p8kw3psisl4zxwmf2g0x82kanka85zxxdz15s509j1", + "fetcher": "gitlab", + "repo": "xuhdev/dired-icon", + "unstable": { + "version": [ + 20170223, + 526 + ], + "commit": "f60e10757a5011235b519231ad35974ff25963ed", + "sha256": "0r9qmr2l5kjwh1frp0k87nyaf13f7f9fjjf9yf9z92djqapfm9dd" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "dbace8d2250f84487d31b39050fcdc260fcde804", + "sha256": "1d9105ibaw858gqp19rx2m6xm3hl57vzsmdqir883cy46qpvwhki" + } + }, + { + "ename": "dired-imenu", + "commit": "e346de86b7f7fd5dad548f0936cde54ac11e3f79", + "sha256": "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1", + "fetcher": "github", + "repo": "DamienCassou/dired-imenu", + "unstable": { + "version": [ + 20140109, + 1610 + ], + "commit": "610e21fe0988c85931d34894d3eee2442c79ab0a", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "610e21fe0988c85931d34894d3eee2442c79ab0a", + "sha256": "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid" + } + }, + { + "ename": "dired-k", + "commit": "7f8a828b2fbfa11c4b74192d9d0cfa0ad34b3da7", + "sha256": "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8", + "fetcher": "github", + "repo": "syohex/emacs-dired-k", + "unstable": { + "version": [ + 20170313, + 1503 + ], + "commit": "c50e8f73358060a448bff66db2d330b52bbeffc1", + "sha256": "14yvsv7cvfviszii0bj0qf094rmnwzssinrqrkpxg4jil2n4bb9d" + }, + "stable": { + "version": [ + 0, + 19 + ], + "commit": "3f0b9315f87b0f930d51089e311d41282d5f8b15", + "sha256": "09xh097v3fd0mjxqlmbfwjlr1v4a99mj4rvwdb6kqgajmlhgi9hx" + } + }, + { + "ename": "dired-launch", + "commit": "31c9a4945d65aa6afc371c447a572284d38d4d71", + "sha256": "0vhf0iai60mp8sp7snishz6nrw0bcriq4cx64f41lk1adjb2mqaw", + "fetcher": "github", + "repo": "thomp/dired-launch", + "unstable": { + "version": [ + 20180607, + 1841 + ], + "commit": "ad45940f76ef2f6c3bb55e998829b311de191dae", + "sha256": "057nqlvqnq30gxfidmynp33040bgdq4gbwk0qdm294c5ap2af5yj" + } + }, + { + "ename": "dired-narrow", + "commit": "8994330f90a925df17ae425ccdc87865df8e19cd", + "sha256": "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20181114, + 1723 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-open", + "commit": "568e524b7bdf91b31655bdbb30fe9481d7a0ffbf", + "sha256": "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20180922, + 1113 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-quick-sort", + "commit": "4d278178128deb03a7b1d2e586dc38da2c7af857", + "sha256": "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l", + "fetcher": "gitlab", + "repo": "xuhdev/dired-quick-sort", + "unstable": { + "version": [ + 20161208, + 2112 + ], + "deps": [ + "hydra" + ], + "commit": "1845f978d313f750a5b70b832457ed803c4ffbdb", + "sha256": "014frvpszixn8cx7rdx704glmjbslv3py3kw0pb0xqf50k4scynf" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "hydra" + ], + "commit": "fe39cfb2d4a7ba6b30f98134548b4e4bac67c469", + "sha256": "1a9r1kz5irpvb2byabbf27sy7rjzaygfpqimpag41sj955wlgy9a" + } + }, + { + "ename": "dired-rainbow", + "commit": "568e524b7bdf91b31655bdbb30fe9481d7a0ffbf", + "sha256": "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20190722, + 1109 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-ranger", + "commit": "c03f6f8c779c8784f52adb20b266404cb537113a", + "sha256": "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20180401, + 2206 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-recent", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1qvw7m6wzahc0xmf37cyl9lv1k9442j0kkzx6dl6f0wclw0v6hgs", + "fetcher": "github", + "repo": "Vifon/dired-recent.el", + "unstable": { + "version": [ + 20180921, + 2238 + ], + "commit": "7c5a818ab88fdfa779674931cc6d9466308fcd86", + "sha256": "1pxa17rxc43yam0j8xi7ji8kxv0jq96jk0j3p3brj9nss2gfw48f" + } + }, + { + "ename": "dired-rifle", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1x6i68i7f1c3k0w3w4zph16s046ccajyb2641fx0j8dl5367qgbc", + "fetcher": "github", + "repo": "Vifon/dired-rifle.el", + "unstable": { + "version": [ + 20181012, + 2131 + ], + "commit": "a4f7b1e798397688b9c00d3507fcd395ece17a40", + "sha256": "09jp54drbx1hb4fj6bzh8ava7nk56pp500xsa9712vscg1f38fpz" + } + }, + { + "ename": "dired-rmjunk", + "commit": "75d501ae9b64d9aa083f43358881a467a7cd2a04", + "sha256": "1m07z6gcsd5i1xshgfxqrpcrqpl0ffa9ls2443za5wkgbalhxx47", + "fetcher": "git", + "url": "https://git.sr.ht/~jakob/dired-rmjunk", + "unstable": { + "version": [ + 20190526, + 2029 + ], + "commit": "6a9fa6a35498e53e8c57282e3b08dedc896d880d", + "sha256": "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "6a9fa6a35498e53e8c57282e3b08dedc896d880d", + "sha256": "0kpkd7qasrb303d0b01d62r82prhrmaasxqa14nf5lh01c213nr4" + } + }, + { + "ename": "dired-rsync", + "commit": "ce9f41ad832cef527dde97f829a8b8339e6ac48b", + "sha256": "0lykj7nfpaspwn90macvr7iir4jlrx88i0s9spii7iic2fnm51ql", + "fetcher": "github", + "repo": "stsquad/dired-rsync", + "unstable": { + "version": [ + 20190508, + 1605 + ], + "deps": [ + "dash", + "s" + ], + "commit": "d7eb558c4efa73d9e1f50709dbd2374041c0f1a9", + "sha256": "074xy2wipdn2lvm7kxyf7rpsgp7hc62f7h1n77am7p4i7j5alw1f" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "dash", + "s" + ], + "commit": "9233e7c2afe0ff654a63ce6a0546a06c3e921494", + "sha256": "0jzbn0izxqgz719gb6fpr60zbcb6w1ama13ngpvrig82nlhs37fv" + } + }, + { + "ename": "dired-sidebar", + "commit": "30e15c8361b01195f198197e704828fbcac0e8d6", + "sha256": "19a4gsx9wmpc94jd992c7dj5mxfnnij2nc6qnb2lhk8ad69h1lmc", + "fetcher": "github", + "repo": "jojojames/dired-sidebar", + "unstable": { + "version": [ + 20190516, + 159 + ], + "deps": [ + "dired-subtree" + ], + "commit": "2c742326a6b7a76e36666586809aaf5efa150b3f", + "sha256": "0s2d8lirv8s9az8a7g97yzg7na2n1340a8vg6zja315d43qljis9" + } + }, + { + "ename": "dired-single", + "commit": "41669decbb7ad5c4dbe152a863f16d87e7bba493", + "sha256": "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf", + "fetcher": "github", + "repo": "crocket/dired-single", + "unstable": { + "version": [ + 20180824, + 312 + ], + "commit": "b0ccca83df0542c5525c047ae283c0eadf500f5c", + "sha256": "14q8lp1x1b78ra9mk90n6dyrm1j9ny5pr7valgpkg8agqyqn7xmn" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "5b002927fd8c7f954eec187227ac59dcaa8edfa3", + "sha256": "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j" + } + }, + { + "ename": "dired-subtree", + "commit": "d6a947ac9476f10b95a3c153ec784d2a8330dd4c", + "sha256": "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk", + "fetcher": "github", + "repo": "Fuco1/dired-hacks", + "unstable": { + "version": [ + 20180922, + 1615 + ], + "deps": [ + "dash", + "dired-hacks-utils" + ], + "commit": "886befe113fae397407c804f72c45613d1d43535", + "sha256": "1cvibg90ggyrivpjmcfprpi2fx7dpa68f8kzg08s88gw5ib75djl" + } + }, + { + "ename": "dired-toggle", + "commit": "17ae4c5ff42e0c48e53d93c88853f649f59034e6", + "sha256": "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5", + "fetcher": "github", + "repo": "fasheng/dired-toggle", + "unstable": { + "version": [ + 20190616, + 303 + ], + "commit": "b694ba91a45d0762bd032ff1bb4109e4c62ca686", + "sha256": "0kcyd6a3c46dz54c2h74bxm62c0shl85rgi1dhy9gmjshlmwn24k" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "commit": "5bcdd9f13c0b0149c5125004e93bc2dfd22f3fce", + "sha256": "0dghbrx364fihzp5r8ar6vxkavd7mn74qjkijy1wvy34vl0b4911" + } + }, + { + "ename": "dired-toggle-sudo", + "commit": "5cdee2d52c0c53566fdd77a5d42edf365764acff", + "sha256": "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va", + "fetcher": "github", + "repo": "renard/dired-toggle-sudo", + "unstable": { + "version": [ + 20151109, + 1006 + ], + "commit": "02449dbda4e168f99fe5352c9628df5d39e11483", + "sha256": "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "02449dbda4e168f99fe5352c9628df5d39e11483", + "sha256": "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2" + } + }, + { + "ename": "diredfl", + "commit": "3da86e18d423198766455929da1dcb3a9a3be381", + "sha256": "0cybq15yq07x2mnrnwapy020d598yymcy8y9wwf1m7f59p3h9hvn", + "fetcher": "github", + "repo": "purcell/diredfl", + "unstable": { + "version": [ + 20190629, + 231 + ], + "commit": "ec17789d2f72355e0fb6e31029c6ffa686337e2e", + "sha256": "1blnib2ckljdxqpn0fnihyn9akc1pm8zbfw4hqy0xz2xqmyfqxi1" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "45e9c46f58c655694758d4986b9195c8bb40ddf3", + "sha256": "1zb2lz7rp58zqvpniqcsmqabi7nqg2d8bfd0hgmq68bn2hd25b5z" + } + }, + { + "ename": "diredful", + "commit": "76f3d178e7c3982b53c7ee0096c839397534d732", + "sha256": "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x", + "fetcher": "github", + "repo": "thamer/diredful", + "unstable": { + "version": [ + 20160529, + 2017 + ], + "commit": "c08e163d9d6c62f7b07e94d54c96c2e364e67e0e", + "sha256": "1h2hnm8r3anfbk5x7d2dnv38bdllsbwaam6ivpbgzn12r23wrsr2" + }, + "stable": { + "version": [ + 1, + 10 + ], + "commit": "b17b3087e0084a5571a9ac4d47ccfc36d96b109e", + "sha256": "1d8n8wj5k82a1sfg93kn3ajci804mpp9j206x5f185zd48wb25z8" + } + }, + { + "ename": "direnv", + "commit": "5419809ee62b920463e359c8e1314cd0763657c1", + "sha256": "0zzmi5m6fh42kyf8dyjrjyrl03pkbipnh4mnssrhp83ljczxkyhd", + "fetcher": "github", + "repo": "wbolster/emacs-direnv", + "unstable": { + "version": [ + 20190622, + 1853 + ], + "deps": [ + "dash" + ], + "commit": "fcec20c52fc37008d40a07c6dd0818c69e8be5f2", + "sha256": "0r1ryz1swafl1s1bwcwnc1wm5nga2kma0059x132rsglm4bla41n" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "dash" + ], + "commit": "468f2fb20d825dd7134e4efbaff3666917cd4ec3", + "sha256": "005ibyzsx1fdyrl5iyhqpb1bg83mphzahq7zvw58x00syyqi2z49" + } + }, + { + "ename": "direx", + "commit": "a4b0903466d63b1c87abc002b0e064e36a8cddd3", + "sha256": "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm", + "fetcher": "github", + "repo": "m2ym/direx-el", + "unstable": { + "version": [ + 20170422, + 1327 + ], + "commit": "a79bfdb5980cf6ed7bfb3b41ddc471a7b6c0ede4", + "sha256": "0fl9hdnrq54awx43635p6pmc8bqyppa02gs1d76nifi0q4g9v4m7" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "423caeed13249e37afc937dc8134cb3c53e0f111", + "sha256": "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f" + } + }, + { + "ename": "direx-grep", + "commit": "6a88a29090a0d6c636f4aeb5214433db66367d9e", + "sha256": "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2", + "fetcher": "github", + "repo": "aki2o/direx-grep", + "unstable": { + "version": [ + 20140515, + 1506 + ], + "deps": [ + "direx" + ], + "commit": "1109a512a80b2673a70b18b8568514049017faad", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "direx" + ], + "commit": "1109a512a80b2673a70b18b8568514049017faad", + "sha256": "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h" + } + }, + { + "ename": "dirtree", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1fm003rix3sdfx8fq3ab5s8b2q65gbkjsn1j3fg5qmhv56p7lrs9", + "fetcher": "github", + "repo": "emacsorphanage/dirtree", + "unstable": { + "version": [ + 20140129, + 832 + ], + "deps": [ + "tree-mode", + "windata" + ], + "commit": "ba55f1e716e386fdd37cb8e7f48616e405dc7251", + "sha256": "0abs3r4zzfnf4igiakrv3bpyxz7qlnw26l57rynsk7c3w3s5ya29" + } + }, + { + "ename": "dirtree-prosjekt", + "commit": "6d359ec827573dd8c871c4f23df5d1737f1830e7", + "sha256": "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk", + "fetcher": "github", + "repo": "abingham/prosjekt", + "unstable": { + "version": [ + 20140129, + 904 + ], + "deps": [ + "dirtree", + "prosjekt" + ], + "commit": "a864a8be5842223043702395f311e3350c28e9db", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3" + } + }, + { + "ename": "disable-mouse", + "commit": "dbbc396373212fdf731e135cde391f27708ff015", + "sha256": "0c0ps39s6wg3grspvgck0cwxnas73nfaahfa87l0mmgsrsvas5m7", + "fetcher": "github", + "repo": "purcell/disable-mouse", + "unstable": { + "version": [ + 20181225, + 2206 + ], + "commit": "74f520e8e8064d5e3f4cb33149f840fe59839c38", + "sha256": "1rj4qw34rzc085d1sra0hnc01dkj1xaxd1xyds45mxh41407zzfl" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "81639930bcaeedadbcc19728e91719afcac84613", + "sha256": "0l6mai68ns3qw3rlvjvzsnqwdy7bxqiy0vdwflq0l1plxb1vazyc" + } + }, + { + "ename": "disaster", + "commit": "a4654b3646b96f967e2c75440e664a417cd0f517", + "sha256": "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn", + "fetcher": "github", + "repo": "jart/disaster", + "unstable": { + "version": [ + 20171016, + 2152 + ], + "commit": "10a785facc60d89d78e0d5177985ab1af1741bb4", + "sha256": "0iz43jdkh5qdllqdchliys84gn9bpj6688rpc4jnycp64141m6cx" + } + }, + { + "ename": "discourse", + "commit": "f5e64fc3fa3fc7d0ac14e7e5d324ee1ca77ea4c3", + "sha256": "0j11pyly7qni3gqgywd9bkzfm1dfvhbfjc7pls9n9s26nbqdzcw9", + "fetcher": "github", + "repo": "lujun9972/discourse-api", + "unstable": { + "version": [ + 20160911, + 819 + ], + "deps": [ + "cl-lib", + "request", + "s" + ], + "commit": "a86c7e608851e186fe12e892a573994f08c8e65e", + "sha256": "1p4crd7v94hmqzqh8bc7jx1pfhallmj4kn36f8l22z4r2mkyycxc" + } + }, + { + "ename": "discover", + "commit": "688e32e98758aa6fd31218e98608bd54a76c3e83", + "sha256": "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga", + "fetcher": "github", + "repo": "mickeynp/discover.el", + "unstable": { + "version": [ + 20140103, + 2139 + ], + "deps": [ + "makey" + ], + "commit": "7b0044bbb3b3bd5d811fdfb0f5ac6ec8de1239df", + "sha256": "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "makey" + ], + "commit": "bbfda2b4e429985a8fa7971d264c942767cfa816", + "sha256": "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18" + } + }, + { + "ename": "discover-clj-refactor", + "commit": "3311371cadf00b00bfbece4e4b2f96c226f0e27d", + "sha256": "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r", + "fetcher": "github", + "repo": "maio/discover-clj-refactor.el", + "unstable": { + "version": [ + 20150328, + 1459 + ], + "deps": [ + "clj-refactor", + "discover" + ], + "commit": "3fbd5c1162739e606d7cf5d4f5d7426547d99647", + "sha256": "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4" + } + }, + { + "ename": "discover-js2-refactor", + "commit": "b84129a8a90f8f66a513c11c299e0acb5f3fbd3a", + "sha256": "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki", + "fetcher": "github", + "repo": "NicolasPetton/discover-js2-refactor", + "unstable": { + "version": [ + 20140129, + 1552 + ], + "deps": [ + "discover", + "js2-refactor" + ], + "commit": "3812abf61f39f3e73a9f3daefa6fed4f21a429ba", + "sha256": "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn" + } + }, + { + "ename": "discover-my-major", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "1b10bwhls5bx83hzhqq1ylc2civ3bsivd6db46f3s5hpgvr4q17n", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/discover-my-major.git", + "unstable": { + "version": [ + 20180606, + 511 + ], + "deps": [ + "makey" + ], + "commit": "c592e5e67454f0d1b68669ac0c270073164b16b3", + "sha256": "1lhjrknxw928vmw5h59q98sarh5pwjn0fpdyr38sql5zyv0ikc6w" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "makey" + ], + "commit": "57d76fd21ec54706289cf9396fc871250569951e", + "sha256": "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4" + } + }, + { + "ename": "disk", + "commit": "e6e75695594ce17b618ad8786c8a04e283f68b11", + "sha256": "1jzkqgjw8xl0jc6ssl5bsdjp2dxw88nss6szvjv7frrhsncaq28h", + "fetcher": "github", + "repo": "kensanata/disk", + "unstable": { + "version": [ + 20171116, + 731 + ], + "commit": "283e54e3be7d08f959076240b2ab324e25632137", + "sha256": "15fkfl9kjlpsg9p5g0xhm384ipvrzclwxvqk8vz1zixq0wam2ajm" + } + }, + { + "ename": "dispass", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "09c9v41rh63hjpdh377rbfvpial33r41dn5bss3632fi34az5l9n", + "fetcher": "github", + "repo": "ryuslash/dispass.el", + "unstable": { + "version": [ + 20140202, + 1531 + ], + "deps": [ + "dash" + ], + "commit": "b6e8f89040ebaaf0e7609b04bc27a8979f0ae861", + "sha256": "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "38b880e72cfe5e65179b16791903b0900c73eff4", + "sha256": "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl" + } + }, + { + "ename": "display-theme", + "commit": "4dd76f49f1c10656ea0004a654d73666e1d188db", + "sha256": "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa", + "fetcher": "github", + "repo": "kawabata/emacs-display-theme", + "unstable": { + "version": [ + 20140115, + 1556 + ], + "commit": "b180b3be7a74ae4799a14e7e4bc2fe10e3ff7a15", + "sha256": "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa" + } + }, + { + "ename": "dist-file-mode", + "commit": "dd10fbed2810a642600dba9dfe320fa6299e6d34", + "sha256": "1gbnkb0537gw8flv4gdi4jzb7y9dnbf9cfj2jw8y84axyfzbb4mf", + "fetcher": "github", + "repo": "emacs-php/dist-file-mode.el", + "unstable": { + "version": [ + 20180830, + 418 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "e1ce8f592bc5d4d86d2f09e334728ac0d524c761", + "sha256": "09rp83d81y9mm81isrwvacl21vgah7nhi5r4j2xbp13kgdn7my1w" + } + }, + { + "ename": "distel-completion-lib", + "commit": "90fff35dd9709b06802edef89d1fe6a96b7115a6", + "sha256": "0b06z3k30b4x5zpzk0jgcs7kcaix64xx81iskm1kys57r3gskzpa", + "fetcher": "github", + "repo": "sebastiw/distel-completion", + "unstable": { + "version": [ + 20180827, + 1344 + ], + "commit": "acc4c0a5521904203d797fe96b08e5fae4233c7e", + "sha256": "0yvp3dwa9mwfyrqla27ycwyjad4bp1267bxv0chxcr4528hnygl3" + } + }, + { + "ename": "distinguished-theme", + "commit": "8d969e91bbba522a31d6ae7a81c7783034c15b9b", + "sha256": "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4", + "fetcher": "github", + "repo": "Lokaltog/distinguished-theme", + "unstable": { + "version": [ + 20151216, + 2015 + ], + "commit": "9b1d25ac59465a5016d187ea84b7614c95a29b3b", + "sha256": "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm" + } + }, + { + "ename": "ditz-mode", + "commit": "02e2a2a25f42929626d7237511136ba6826dad33", + "sha256": "0shzm9l31n4ffjs1d26ykxsycd478lhlpl8xcwzbjryywg4gf5nd", + "fetcher": "bitbucket", + "repo": "zondo/ditz-mode", + "unstable": { + "version": [ + 20150729, + 940 + ], + "commit": "beac4c1f3b7ef82014bb77ad8752dace482897da", + "sha256": "1cbsy4lchl41zmyxfq828cjpl3h2dwvn8xf1qgf2lbscdb6cwbwb" + } + }, + { + "ename": "dix", + "commit": "149eeba213b82aa0bcda1073aaf1aa02c2593f91", + "sha256": "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq", + "fetcher": "github", + "repo": "unhammer/dix", + "unstable": { + "version": [ + 20181210, + 1200 + ], + "deps": [ + "cl-lib" + ], + "commit": "b973de948deb7aa2995b1895e1e62bbe3129b5a5", + "sha256": "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "b973de948deb7aa2995b1895e1e62bbe3129b5a5", + "sha256": "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45" + } + }, + { + "ename": "dix-evil", + "commit": "d9dcceb57231bf2082154cab394064a59d84d3a5", + "sha256": "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3", + "fetcher": "github", + "repo": "unhammer/dix", + "unstable": { + "version": [ + 20170105, + 1423 + ], + "deps": [ + "dix", + "evil" + ], + "commit": "b973de948deb7aa2995b1895e1e62bbe3129b5a5", + "sha256": "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "dix", + "evil" + ], + "commit": "b973de948deb7aa2995b1895e1e62bbe3129b5a5", + "sha256": "1bjxyidcp7y309asbk4pfb4mzgb8j62fmp3w3zl2nahdgv1rja45" + } + }, + { + "ename": "dizzee", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "14y10k8s65cyn86m1z77817436m89l0xpwd1wr4d7qp3x2mmn215", + "fetcher": "github", + "repo": "davidmiller/dizzee", + "unstable": { + "version": [ + 20171201, + 916 + ], + "commit": "e3cf1c2ea5d0fc00747524b6f3c5b905d0a8c8e1", + "sha256": "1i32msin8ra963w7af6612d038gxb25m1gj97kbjymjq1r8zbdrv" + } + }, + { + "ename": "django-commands", + "commit": "fd217a23a9670c7eb826360b34df1a06ab3e450f", + "sha256": "17k9bnig2cfnxbbz6k9vdk5k5gzhvn1h5j9wvww7n137c9vv0qmk", + "fetcher": "github", + "repo": "muffinmad/emacs-django-commands", + "unstable": { + "version": [ + 20190320, + 722 + ], + "commit": "1b19436a1160d1552207d4356d5e78793dabe100", + "sha256": "1zb8mf0dgdr83n61a54m5grhdr6nz75zrgwczpzfl3f66xkvfci9" + }, + "stable": { + "version": [ + 1, + 3, + 2 + ], + "commit": "1b19436a1160d1552207d4356d5e78793dabe100", + "sha256": "1zb8mf0dgdr83n61a54m5grhdr6nz75zrgwczpzfl3f66xkvfci9" + } + }, + { + "ename": "django-manage", + "commit": "66f88d30a1ab9b7f9281a2b5939c7ab2711b966a", + "sha256": "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh", + "fetcher": "github", + "repo": "gopar/django-manage", + "unstable": { + "version": [ + 20160819, + 212 + ], + "deps": [ + "hydra" + ], + "commit": "876fb2cb627d465adfdc905841279784bcdd7ee8", + "sha256": "0yi38aif1n0s9yp87wimdbnq7vr7k5gbshfprj9ansibrjxnb6xk" + } + }, + { + "ename": "django-mode", + "commit": "bdc46811612ff96cb1e09552b9f095d68528dcb3", + "sha256": "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara", + "fetcher": "github", + "repo": "myfreeweb/django-mode", + "unstable": { + "version": [ + 20170522, + 714 + ], + "deps": [ + "helm-make", + "projectile", + "s" + ], + "commit": "a71b8dd984e7f724b8321246e5c353a4ae5c986e", + "sha256": "0xf33ri5phy2mrb1dwvqb8waba33gj9bwmf6jhl6n0ksm43x0z40" + } + }, + { + "ename": "django-snippets", + "commit": "bdc46811612ff96cb1e09552b9f095d68528dcb3", + "sha256": "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw", + "fetcher": "github", + "repo": "myfreeweb/django-mode", + "unstable": { + "version": [ + 20131229, + 1611 + ], + "deps": [ + "yasnippet" + ], + "commit": "a71b8dd984e7f724b8321246e5c353a4ae5c986e", + "sha256": "0xf33ri5phy2mrb1dwvqb8waba33gj9bwmf6jhl6n0ksm43x0z40" + } + }, + { + "ename": "django-theme", + "commit": "4ede3b4fb214b915a8230e7f220ffe71c73ad7c4", + "sha256": "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf", + "fetcher": "github", + "repo": "andrzejsliwa/django-theme.el", + "unstable": { + "version": [ + 20131022, + 902 + ], + "commit": "86c8142b3eb1addd94a43aa6f1d98dab06401af0", + "sha256": "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w" + } + }, + { + "ename": "djangonaut", + "commit": "0c1281f59add99abf57bc858d6e0f9b2ae5b3c5c", + "sha256": "0038zqazzhxz82q8l1phxc3aiiwmzksz9c15by9v0apzwpmdkj38", + "fetcher": "github", + "repo": "proofit404/djangonaut", + "unstable": { + "version": [ + 20180727, + 1544 + ], + "deps": [ + "f", + "magit-popup", + "pythonic", + "s" + ], + "commit": "3e154709def09020a9b9eb29d330fb1f833a8250", + "sha256": "0lfh55disvc1ngysljvcccv5hl3k2xj3czy6h3chwqp7py33i1kc" + } + }, + { + "ename": "djinni-mode", + "commit": "e6e88f64e21275c6755f2589d1afa16eb4e575b8", + "sha256": "19222702dr7hfl7ffqp5z4sslg949p88rwvmg2al82i1a0wkgc98", + "fetcher": "github", + "repo": "danielmartin/djinni-mode", + "unstable": { + "version": [ + 20190303, + 139 + ], + "commit": "6f84bc60d078725cc8b922a259ec5f4c7de83681", + "sha256": "1x77f0a0gz9xfmlma6bdvm0x5rn4w08fkmdbjqvllqvca1630s12" + } + }, + { + "ename": "dkdo", + "commit": "2d4f75f6f6349b81ddbaaf35fb5d7ddeb4cde622", + "sha256": "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300", + "fetcher": "github", + "repo": "davidkeegan/dkdo", + "unstable": { + "version": [ + 20131110, + 1119 + ], + "deps": [ + "dkmisc" + ], + "commit": "fd6bb105e8331fafb6385c5238c988c4c5bbe2da", + "sha256": "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459" + } + }, + { + "ename": "dkl", + "commit": "e8bd9cf21473f676aa54e142b6f0bf0427f40d29", + "sha256": "0bcv4ld8bfj2sk3sh4j1m9qqybw3l0a6b3d12qwy8lc3b8197lr0", + "fetcher": "github", + "repo": "flexibeast/dkl", + "unstable": { + "version": [ + 20161005, + 7 + ], + "commit": "6b4584f86037bda3383960c678d51f340229fb91", + "sha256": "1xpidgj5xk0g4ajpglhbhi02s5il8qqcvh2ccf4ac9daa1r34kxp" + } + }, + { + "ename": "dklrt", + "commit": "71f980fdb2180df2429c898e1507dd3b989a5a2c", + "sha256": "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561", + "fetcher": "github", + "repo": "davidkeegan/dklrt", + "unstable": { + "version": [ + 20131110, + 1341 + ], + "deps": [ + "dkmisc", + "ledger-mode" + ], + "commit": "5d6c99f8018335256ab934b4c1049708ae2d48ba", + "sha256": "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs" + } + }, + { + "ename": "dkmisc", + "commit": "71f980fdb2180df2429c898e1507dd3b989a5a2c", + "sha256": "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z", + "fetcher": "github", + "repo": "davidkeegan/dkmisc", + "unstable": { + "version": [ + 20131110, + 1115 + ], + "commit": "fe3d49c6f8322b6f89466361acd97585bdfe0608", + "sha256": "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49" + } + }, + { + "ename": "dmenu", + "commit": "98bcdd71a160b9c04f83cc5b939031c9e7b5eb59", + "sha256": "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0", + "fetcher": "github", + "repo": "lujun9972/el-dmenu", + "unstable": { + "version": [ + 20190706, + 951 + ], + "deps": [ + "cl-lib" + ], + "commit": "93c09c04441ad96902ba2aab2bdb556f7e34a53b", + "sha256": "0dm9z05980l7z2k4p0j5n6f4sis1va5am3hk1zsaa9z7fvhpbci3" + } + }, + { + "ename": "dna-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "06vprwv1v4jzqzi2nj9hbhnypnvqxmixls8yf91hzwlk3fdkdywf", + "fetcher": "github", + "repo": "jhgorrell/dna-mode-el", + "unstable": { + "version": [ + 20170804, + 814 + ], + "commit": "471d374de22c33eaddd8e41dd8ae29753fab2f6a", + "sha256": "05zsaypyavyn7gs0jk63chkxkm2rl4nbrqgv6zxrbqcar7gv86am" + } + }, + { + "ename": "docbook-snippets", + "commit": "07b832b72773ab41f9cbdefabd30dc1aa29d04c5", + "sha256": "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq", + "fetcher": "github", + "repo": "jhradilek/emacs-docbook-snippets", + "unstable": { + "version": [ + 20150714, + 1625 + ], + "deps": [ + "yasnippet" + ], + "commit": "b06297fdec039a541aaa6312cb328a11062cfab4", + "sha256": "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq" + } + }, + { + "ename": "docean", + "commit": "d4827fa337d7d25f2aaf67aca3081fbdaeacbcbf", + "sha256": "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9", + "fetcher": "github", + "repo": "emacs-pe/docean.el", + "unstable": { + "version": [ + 20180605, + 1744 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "bbe2298fd21f7876fc2d5c52a69b931ff59df979", + "sha256": "1fzs6k76nyz2xjvydks6v6d2ib7qqj181s7c8r57w9ylr2zqfacj" + } + }, + { + "ename": "docker", + "commit": "6c74bf8a41c17bc733636f9e7c05f3858d17936b", + "sha256": "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk", + "fetcher": "github", + "repo": "Silex/docker.el", + "unstable": { + "version": [ + 20190730, + 711 + ], + "deps": [ + "dash", + "docker-tramp", + "json-mode", + "magit-popup", + "s", + "tablist" + ], + "commit": "df80f8010c86658f1a9ed0e8ba298f34940123bf", + "sha256": "06b45abmifrad9kk84lg5fp5ncg2jqmcfcfdjqcgzcys93ysm00z" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "dash", + "docker-tramp", + "json-mode", + "magit-popup", + "s", + "tablist" + ], + "commit": "e127a157f8d0d9ffd465075ecf6558f36d2d3b24", + "sha256": "1g8r1faqp0z0vqp9qrl8m84pa0v2ddvc91klphdkfmldwv7rfipw" + } + }, + { + "ename": "docker-api", + "commit": "3924914124370fc028a7b1ecdc154a53e73037a7", + "sha256": "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0", + "fetcher": "github", + "repo": "Silex/docker-api.el", + "unstable": { + "version": [ + 20160525, + 720 + ], + "deps": [ + "dash", + "request", + "s" + ], + "commit": "206144346b7fa4165223349cfeb64a75d47ddd1b", + "sha256": "0phmpranrgdi2gi89nxr1ii9xbr7h2ccpx1mkpnfxnjlzkdzq2fb" + } + }, + { + "ename": "docker-cli", + "commit": "5664de22600c428b7931085985e6fe779e8876b2", + "sha256": "1pyrnxa9iwzp0a810250xy191xcbaq68c76fc5plh70c37gzribp", + "fetcher": "github", + "repo": "bosko/docker-cli", + "unstable": { + "version": [ + 20190524, + 1624 + ], + "commit": "c4b02894466d8642ad3d49df4c4a80e023a672aa", + "sha256": "0q1c943m0ncxbwi5mb1vf7lavkcz0dbx14m3i8a981pqkaksl1lw" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "328429219574555c5fb831a421b4b5d9a2338561", + "sha256": "15jsp1jsb13qv394js9pd6407ya7dgqk7blzbnyf9i9abyyr0v67" + } + }, + { + "ename": "docker-compose-mode", + "commit": "37dd4c1fc11d22598c6faf03ccc860503a68b950", + "sha256": "1hldddl86h0i1ysxklkr1kyz44lzic1zr68x3vb0mha4n5d6bl5g", + "fetcher": "github", + "repo": "meqif/docker-compose-mode", + "unstable": { + "version": [ + 20180324, + 1752 + ], + "deps": [ + "dash", + "yaml-mode" + ], + "commit": "c9f131d2c90d652435d407fd36c40feebfed1dad", + "sha256": "0d5d46i6hplmy7q2ihbvcrnk9jrwa2mswgbf8yca3m4k44wgk6la" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "dash", + "yaml-mode" + ], + "commit": "7f4cd0b1718df2ab93d51bd395b2f37df9482265", + "sha256": "1fbcxwfvm33xcdj3cs26d9i1zyrryyjjkv7sc3mfxd45nq8d3ivj" + } + }, + { + "ename": "docker-tramp", + "commit": "6c74bf8a41c17bc733636f9e7c05f3858d17936b", + "sha256": "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w", + "fetcher": "github", + "repo": "emacs-pe/docker-tramp.el", + "unstable": { + "version": [ + 20170207, + 325 + ], + "deps": [ + "cl-lib" + ], + "commit": "8e2b671eff7a81af43b76d9dfcf94ddaa8333a23", + "sha256": "1lgjvrss25d4hwgygr1amsbkh1l4kgpsdjpxxpyfgil1542haan1" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "d8b510365d8e65551f4f792f251e7212411708c3", + "sha256": "0lxvzmfg52fhxrhbvp92zwp7cv4i1rlxnkyyzgngj3sjm7y60yvg" + } + }, + { + "ename": "dockerfile-mode", + "commit": "1406f5a24115d29e3b140c360a51b977a369e4f9", + "sha256": "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa", + "fetcher": "github", + "repo": "spotify/dockerfile-mode", + "unstable": { + "version": [ + 20190505, + 1807 + ], + "deps": [ + "s" + ], + "commit": "ed73e82dcc636dad00d1a8c3b32a49136d25ee60", + "sha256": "0lri2rnx4lr23vqfphkpq39cd4xfgzkvz1xsz7ccdvl4qj0k7fdl" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "9a75fcd119c5b2a1d723d440bbe4b1db56df90cc", + "sha256": "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2" + } + }, + { + "ename": "dokuwiki", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0d92il37z1m1hgcgb6c6zaifllznzk1na4yv4bfsfqg25l0mid75", + "fetcher": "github", + "repo": "accidentalrebel/emacs-dokuwiki", + "unstable": { + "version": [ + 20180102, + 59 + ], + "deps": [ + "xml-rpc" + ], + "commit": "594c4d4904dcc2796bbbd2c0845d9e7c09ccf6f7", + "sha256": "0vqx8npw0i02dhw2yb7s4z7njw60r3xyncw4z8l6fj99pp6pfh15" + } + }, + { + "ename": "dokuwiki-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v", + "fetcher": "github", + "repo": "kai2nenobu/emacs-dokuwiki-mode", + "unstable": { + "version": [ + 20170223, + 1301 + ], + "commit": "e4e116f6fcc373e3f5937c1a7daa5c2c9c6d3fa1", + "sha256": "0bmcm7lvzm8sg2l1j7bg02jasxb8g81q9ilycblmsl1ckbfwq0yp" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "e4e116f6fcc373e3f5937c1a7daa5c2c9c6d3fa1", + "sha256": "0bmcm7lvzm8sg2l1j7bg02jasxb8g81q9ilycblmsl1ckbfwq0yp" + } + }, + { + "ename": "dollaro", + "commit": "b8195000cffa1913060266b17801eb7c1e472a83", + "sha256": "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h", + "fetcher": "github", + "repo": "laynor/dollaro", + "unstable": { + "version": [ + 20151123, + 1302 + ], + "deps": [ + "s" + ], + "commit": "500127f0172ac7a1eec627e026b59136580a74ac", + "sha256": "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj" + } + }, + { + "ename": "doneburn-theme", + "commit": "7fc483d5f487f462567bba22d611f90fc8a1a709", + "sha256": "0j8fyb6wcjrfhfjp06w0bzp5vrcvydhjwkzg4c4s4j54xaw6laxx", + "fetcher": "github", + "repo": "manuel-uberti/doneburn-theme", + "unstable": { + "version": [ + 20181110, + 1857 + ], + "commit": "6421d9e28d57cb73212c61ab7304abfe6f950ec9", + "sha256": "1j9ibjg6fx5iqlhxjqjcr9j9jy1n75cwcqslddzlp80p4qz9ms1k" + } + }, + { + "ename": "doom", + "commit": "0960deb3b1d106ad2ffa95a44f34cb9efc026f01", + "sha256": "1ji2fdiw5b13n76nv2wvkz6v155b0qgh1rxwmv3m5nnrbmklfjh5", + "fetcher": "github", + "repo": "kensanata/doom", + "unstable": { + "version": [ + 20180301, + 2308 + ], + "deps": [ + "cl-lib" + ], + "commit": "e59040aefc92dd9b3134eb623624307fb9e4327b", + "sha256": "14lwq30m0s7pkwkbn6vm5gdlkww7sszc6pdhxyinkhj67b0bxpin" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "5e2d3f54e5b84eaa533cbdb6cf17b1b6009f0730", + "sha256": "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73" + } + }, + { + "ename": "doom-modeline", + "commit": "f4f610757f85fb01bd9b1dd212ddbea8f34f3ecd", + "sha256": "0pscrhhgk4wpz1f2r94ficgan4f9blbhqzvav1wjahwp7fn5m29j", + "fetcher": "github", + "repo": "seagle0128/doom-modeline", + "unstable": { + "version": [ + 20190801, + 1802 + ], + "deps": [ + "all-the-icons", + "dash", + "shrink-path" + ], + "commit": "ada38ab4d8ea0e234a6a242e3ae53b6c1174e620", + "sha256": "1l3bg6ihcrf48fx6mhc30wgq9csyaqri4a3fv440qa527l4wf8p0" + }, + "stable": { + "version": [ + 2, + 4, + 1 + ], + "deps": [ + "all-the-icons", + "dash", + "shrink-path" + ], + "commit": "6ecda37e4550e85cfa5e4957d0a05bd393e6a4b3", + "sha256": "1dlrq4p0jl30n786nxfnnm7mw4c1978kbrll7w9snsclm6crw99s" + } + }, + { + "ename": "doom-themes", + "commit": "c5084bc2c3fe378af6ff39d65e40649c6359b7b5", + "sha256": "0plqhis9ki3ck1pbv4hiqk4x428fps8qsfx72mamdayyx2nncdrs", + "fetcher": "github", + "repo": "hlissner/emacs-doom-themes", + "unstable": { + "version": [ + 20190731, + 1645 + ], + "deps": [ + "cl-lib" + ], + "commit": "7015afb483397a0fadba3c638e2af4edfb84a344", + "sha256": "1is81xnibql3g8ix8swpwrknjxyq10r341ngpad8pz7286cw487s" + }, + "stable": { + "version": [ + 2, + 1, + 6 + ], + "deps": [ + "all-the-icons", + "cl-lib" + ], + "commit": "39e6971e81181b86a57f65cd0ea31376203a9756", + "sha256": "042pzcdhxi2z07jcscgjbaki9nrrm0cbgbbrnymd1r4q8ckkn8l9" + } + }, + { + "ename": "dot-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "039ylmbvw0wb3i2w4qn3dhckz7y3swbid4hwjcxljy4szc709p6k", + "fetcher": "github", + "repo": "wyrickre/dot-mode", + "unstable": { + "version": [ + 20180312, + 2300 + ], + "commit": "6ca22b73bcdae2363ee9641b822a60685df16a3e", + "sha256": "10lmwra48ihxqxyl54m3yn1zy0q5w6cxqd2n5pbs4lva1yck0z4w" + } + }, + { + "ename": "dotenv-mode", + "commit": "9fc022c54b90933e70dcedb6a85167c2d9d7ba79", + "sha256": "1lwfzfri6vywcjkc9wassrz0rdrg0kvljxsm6b4smlnphp6pdbbs", + "fetcher": "github", + "repo": "preetpalS/emacs-dotenv-mode", + "unstable": { + "version": [ + 20180207, + 1914 + ], + "commit": "f4c52bcd5313379b9f2460db7f7a33119dfa96ea", + "sha256": "1fplkhxnsgdrg10iqsmw162zny2idz4vvv35spsb9j0hsk8imclc" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "commit": "f4c52bcd5313379b9f2460db7f7a33119dfa96ea", + "sha256": "1fplkhxnsgdrg10iqsmw162zny2idz4vvv35spsb9j0hsk8imclc" + } + }, + { + "ename": "dotnet", + "commit": "6ef473594ec57a747ad7d9d57d7287bcacf4b446", + "sha256": "06k1ikwg9bis9kk4r41bm0a0d8a31wscqyr6n99d7836p1h4jfki", + "fetcher": "github", + "repo": "julienXX/dotnet.el", + "unstable": { + "version": [ + 20190415, + 1237 + ], + "commit": "932d776ed739d20d57dbd6ba49f61d1b450571fc", + "sha256": "1h7y9vz64bv4slz9mpd7cjyyaxgqk92jn11y5ycfyncq70wyd3j4" + } + }, + { + "ename": "double-saber", + "commit": "19f5c0195ad9b278a7aaa3fd8e70c0004cc03500", + "sha256": "0zsmyvlxm3my3xbj7m38539vk2dl7azi1v7jb41kdiavj2cc55zg", + "fetcher": "github", + "repo": "dp12/double-saber", + "unstable": { + "version": [ + 20190325, + 1917 + ], + "commit": "22937754c6c4f3cfc432175de86f70e826ae7470", + "sha256": "1pjmj0mkh0xiaggzp1xq84ckzq8hkvvmsxpvlnbsxngbz6k34sa5" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "5555dc28cbaa228fa8f9390738a4200e071380b8", + "sha256": "06ykn84hp4yvf6z2457jqgyck70y30361l8617ilb7g337hk15xl" + } + }, + { + "ename": "download-region", + "commit": "7801d9fac121f213609a802fe9d88bdc5364d1f3", + "sha256": "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl", + "fetcher": "github", + "repo": "zk-phi/download-region", + "unstable": { + "version": [ + 20180124, + 133 + ], + "deps": [ + "cl-lib" + ], + "commit": "bbba3ecd80818d5d940d41fe89a6e2ec5dd2c53c", + "sha256": "1cwlbdmdils5rzhjpc3fqjmd3dhalk6i7bxskpahbrr9xxfq0iw4" + } + }, + { + "ename": "downplay-mode", + "commit": "50d67ea3c4d92b4093373d5e4ff07b7d5a3dc537", + "sha256": "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b", + "fetcher": "github", + "repo": "tobias/downplay-mode", + "unstable": { + "version": [ + 20151125, + 2009 + ], + "commit": "4a2c3addc73c8ca3816345c3c11c08af265baedb", + "sha256": "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "225a4b3ca09e6f463dfdd54941c98b02be8d574c", + "sha256": "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb" + } + }, + { + "ename": "dpaste", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0wrfy9w0yf5m15vmhg4l880v92cy557g332xniqs77ab0sga4vgc", + "fetcher": "github", + "repo": "gregnewman/dpaste.el", + "unstable": { + "version": [ + 20160303, + 2112 + ], + "commit": "5ebabb466a6ae70882549855b6b2194fc32189f8", + "sha256": "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk" + } + }, + { + "ename": "dpaste_de", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0022dd8l7jsyl0lv9x6iz882ln71js8brqcbiqz001zv45yrgvy0", + "fetcher": "github", + "repo": "theju/dpaste_de.el", + "unstable": { + "version": [ + 20131015, + 1225 + ], + "deps": [ + "web" + ], + "commit": "f0c39e8864299f735642f7d9fa490689398ce39d", + "sha256": "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z" + } + }, + { + "ename": "dpkg-dev-el", + "commit": "3e057df3608780a6191f761b9a81262c2eaa053c", + "sha256": "1cgfzxlw4m3wsl5fhck08pc2w7fw91mxk58yaprk9lkw4jxd1yjy", + "fetcher": "git", + "url": "https://salsa.debian.org/emacsen-team/dpkg-dev-el.git", + "unstable": { + "version": [ + 20181022, + 8 + ], + "deps": [ + "debian-el" + ], + "commit": "a80f8ac5d81720cce90cf3bc5fbb45d50b1953d7", + "sha256": "0358c6gvyb85zr5r79ar3q46c83gz39rawyhgcg1h1hqxgj6a2lx" + }, + "stable": { + "version": [ + 37, + 1 + ], + "deps": [ + "debian-el" + ], + "commit": "54b137309b078ec39f4b982368c500df04d4bd5f", + "sha256": "03yawrzds5jc5ckck3w7l9rszv4vcibydi15hqnxwfcszyp8wrdn" + } + }, + { + "ename": "dr-racket-like-unicode", + "commit": "6e612ede00c4b44ace741d2b6baabc61571af15c", + "sha256": "0cqcbn4hmv99d8z03xc0rqw4yh5by6g09y33h75dhl9nh95rybgf", + "fetcher": "github", + "repo": "david-christiansen/dr-racket-like-unicode", + "unstable": { + "version": [ + 20161021, + 1211 + ], + "commit": "4953f1c8a68472e157a0dcd0a7e35a4ec2577133", + "sha256": "1i7k7d2gnzd2izplhdmjbkcxvkwnc3y3y0hrcp2rq60bjpkcl1gv" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "4953f1c8a68472e157a0dcd0a7e35a4ec2577133", + "sha256": "1i7k7d2gnzd2izplhdmjbkcxvkwnc3y3y0hrcp2rq60bjpkcl1gv" + } + }, + { + "ename": "dracula-theme", + "commit": "d63cb8906726f106e65f7d9895b49a38ffebf8d5", + "sha256": "1px162v7h7136rasafq875yzw0h8n6wvzbyh73c3w093kd30bmh8", + "fetcher": "github", + "repo": "dracula/emacs", + "unstable": { + "version": [ + 20190107, + 2016 + ], + "commit": "66e429f4d576346661ae3a111bafaa06febc1d94", + "sha256": "0lyy8vjzzcfcj4hm7scxl4cg4qm67rprzdj7dmyc3907yad4n023" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "commit": "66e429f4d576346661ae3a111bafaa06febc1d94", + "sha256": "0lyy8vjzzcfcj4hm7scxl4cg4qm67rprzdj7dmyc3907yad4n023" + } + }, + { + "ename": "draft-mode", + "commit": "cbfefacda071c0f5ee698a4c345a2d6fea6a0d24", + "sha256": "19lq1a3rj6fck3xq2vcz8fk30hpx25kyfz6c7hmq36kx4lv0mjpa", + "fetcher": "gitlab", + "repo": "gaudecker/draft-mode", + "unstable": { + "version": [ + 20140609, + 1456 + ], + "commit": "4779fb32daf53746459da2def7e08004492d4f18", + "sha256": "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "4779fb32daf53746459da2def7e08004492d4f18", + "sha256": "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y" + } + }, + { + "ename": "drag-stuff", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4", + "fetcher": "github", + "repo": "rejeep/drag-stuff.el", + "unstable": { + "version": [ + 20161108, + 749 + ], + "commit": "6d06d846cd37c052d79acd0f372c13006aa7e7c8", + "sha256": "1fsj88n1j50cxjzx62khzxrajsvf33si8iwgbaz6z7z8pwh91qcd" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "d49fe376d24f0f8ac5ade67b6d7fccc2487c81db", + "sha256": "1jrr59iazih3imkl9ja1lbni9v3xv6b8gmqs015g2mxhlql35jka" + } + }, + { + "ename": "drawille", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0nkhy00jx06a7899dgyajidah29p9536mvjr7cyqm99ari70m7y9", + "fetcher": "github", + "repo": "josuah/drawille-el", + "unstable": { + "version": [ + 20160418, + 1838 + ], + "deps": [ + "cl-lib" + ], + "commit": "d914845725719d8293e2f0dea3c9c7e0a1e0e62a", + "sha256": "1ynjxfvx8b6rq6d4gm1sl96rmlk5pi8j5s1rd1y0p8x2lwqcfv77" + } + }, + { + "ename": "drill-instructor-AZIK-force", + "commit": "fb5ee8a113b98e8df8368c5e17c6d762decf8f5b", + "sha256": "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f", + "fetcher": "github", + "repo": "myuhe/drill-instructor-AZIK-force.el", + "unstable": { + "version": [ + 20151123, + 514 + ], + "deps": [ + "popup" + ], + "commit": "008cea202dc31d7d6fb1e7d8e6334d516403b7a5", + "sha256": "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127" + } + }, + { + "ename": "drone", + "commit": "3b62e697798627b07000ac72c19ecd1d89c22229", + "sha256": "0wjbmgic715i4nxk90nasfamk04lskl8dll9y5klk32w1lsj546q", + "fetcher": "github", + "repo": "olymk2/emacs-drone", + "unstable": { + "version": [ + 20161106, + 918 + ], + "commit": "1d4ee037ad3208847a4235426edf0c4a3e7b1899", + "sha256": "1dwxgzf32cvfi7b6zw3qzamj82zs2c0ap6i1w0jqqgzmkz20dqvf" + } + }, + { + "ename": "dropbox", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1dqjsn7wkjjvbwq3kgdd7bvwrirappwnhcwkj2ai19dpx6jd8wym", + "fetcher": "github", + "repo": "pavpanchekha/dropbox.el", + "unstable": { + "version": [ + 20190714, + 1721 + ], + "deps": [ + "json", + "oauth" + ], + "commit": "2a143087aff0a69a8ff4df40f87335501945346e", + "sha256": "0xf6lsrrv4n9acbglhccikv5lrgfqmkqvz7bbw91rmwx5wvjs1f7" + } + }, + { + "ename": "drupal-mode", + "commit": "13e16af340868048eb1f51f9865dfc707e57abe8", + "sha256": "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn", + "fetcher": "github", + "repo": "arnested/drupal-mode", + "unstable": { + "version": [ + 20171120, + 2309 + ], + "deps": [ + "php-mode" + ], + "commit": "47fda0a38a5b197f4606137d9c3b7d44aaeaa886", + "sha256": "1rg46prsymxc9lyhk7cbr53089p970mmmybiir2qsyx2s4m6mnfl" + }, + "stable": { + "version": [ + 0, + 7, + 3 + ], + "deps": [ + "php-mode" + ], + "commit": "49ce63c659aa0af7a2daf0c9e74e58fbce6deb71", + "sha256": "1l2xc24y037b3z62yxmq2bx1x3qqv56d15bf3qmb3mpgm4gh85j6" + } + }, + { + "ename": "drupal-spell", + "commit": "bb859d9755bde3fd852bc7d08f2fab2429ba31b3", + "sha256": "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3", + "fetcher": "github", + "repo": "arnested/drupal-spell", + "unstable": { + "version": [ + 20130520, + 1655 + ], + "commit": "cddf1dbc71fb4c5c4c50317db6830467fa97cff0", + "sha256": "0fr275b7k66widp0mmbm7mjmk76hgxk89h3rcfva4wwkflhymhhl" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "a69f5e3b62c4c0da74ce26c1d00d5b8f7395e4ae", + "sha256": "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd" + } + }, + { + "ename": "dsvn", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "189navhhakmkhfc2afsls1jiaxg62wxvpmmn00jlnwlgjm97gdk3", + "fetcher": "github", + "repo": "emacsmirror/dsvn", + "unstable": { + "version": [ + 20190316, + 2201 + ], + "commit": "c37d2412ba92aad647bcf5aeb151e620e8069f8d", + "sha256": "1bv4ivv9j5r0ax4vay1kmwv753y44qj6qprr38yh7ky0fpsml34c" + } + }, + { + "ename": "dtk", + "commit": "39333468fb6e9493deb86511f0032610a412ec8a", + "sha256": "005x3j5q8dhphhh4c48l6qx7qi3jz9k02m86ww1bzwfzji55p9sp", + "fetcher": "github", + "repo": "dtk01/dtk", + "unstable": { + "version": [ + 20190722, + 1307 + ], + "deps": [ + "cl-lib", + "dash", + "s", + "seq" + ], + "commit": "01ae65c601be9906047ee490f52966427e3efd62", + "sha256": "177lmi4kza3lavr5zlmm5679g5ghqg93j69flkisz6jv92ynr98d" + } + }, + { + "ename": "dtrace-script-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "00ar2qahgqpf4an6v9lbzgj73ylbavvigsm8kqdq94ghm4awxi4z", + "fetcher": "github", + "repo": "dotemacs/dtrace-script-mode", + "unstable": { + "version": [ + 20150214, + 623 + ], + "commit": "801af1ef16075d31a19830ebb8404bbf3a322f10", + "sha256": "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf" + } + }, + { + "ename": "dtrt-indent", + "commit": "61bcbcfa6c0f38a1d87f5b6913b8be6c50ef2994", + "sha256": "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5", + "fetcher": "github", + "repo": "jscheid/dtrt-indent", + "unstable": { + "version": [ + 20190128, + 2101 + ], + "commit": "9ab9cb9d7f391fb09f61c9289c51c36374ddbcbb", + "sha256": "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z" + }, + "stable": { + "version": [ + 0, + 8 + ], + "commit": "9ab9cb9d7f391fb09f61c9289c51c36374ddbcbb", + "sha256": "0pgf0pvqd8k4yzhdn2df9lp0y8hmlm2ccrh07jivwlccs95pcz7z" + } + }, + { + "ename": "dts-mode", + "commit": "864a7ec64c46a0357710bc80ad4880dd35b2fda1", + "sha256": "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234", + "fetcher": "github", + "repo": "bgamari/dts-mode", + "unstable": { + "version": [ + 20161103, + 1223 + ], + "commit": "9ee0854446dcc6c53d2b8d2941051768dba50344", + "sha256": "1k8lljdbc90nd29xrhdrsscxavzdq532wq2mg7ljc94krj7538b1" + } + }, + { + "ename": "ducpel", + "commit": "2d64adac965e1dac0f29dab9a587cd6ce9c3bb3a", + "sha256": "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc", + "fetcher": "github", + "repo": "alezost/ducpel", + "unstable": { + "version": [ + 20140702, + 1154 + ], + "deps": [ + "cl-lib" + ], + "commit": "b53b935ab95c02b82ccf38f63c89e39e99477a55", + "sha256": "07cgwkfi69xjjxx9hs5rdblsil1h3bpbx9k7hwyv1dg3ivihm04s" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "ece785baaa102bd2e9d54257af3a92bacc5757bc", + "sha256": "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b" + } + }, + { + "ename": "dumb-diff", + "commit": "cf7fa0b4235247d82569ed078f92774f10afa45c", + "sha256": "1h1dvxbj85kgi04lxh0bpx81f6sl1fd56lhjmq1cw9biwqw0sm0c", + "fetcher": "github", + "repo": "jacktasia/dumb-diff", + "unstable": { + "version": [ + 20171211, + 2122 + ], + "commit": "1a2331d283049b71a07c1b06b1e0627a950d55f4", + "sha256": "05gmpp4s9y2ql27vb5vpqn3xh35qjfxgq9gzyvg86df43qfl8wvl" + } + }, + { + "ename": "dumb-jump", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1j90n8gydsp2v07rysz1k5vf6hspybcl27214sib1iz3hbimid1w", + "fetcher": "github", + "repo": "jacktasia/dumb-jump", + "unstable": { + "version": [ + 20190801, + 1558 + ], + "deps": [ + "dash", + "f", + "popup", + "s" + ], + "commit": "5e3e47fce8e24c42ad65fb9e6e5f92086834b3c6", + "sha256": "1a0zs58j1027pllssb3pai2654wbvdbf2g0y3dqbg35gfqanaizp" + }, + "stable": { + "version": [ + 0, + 5, + 2 + ], + "deps": [ + "dash", + "f", + "popup", + "s" + ], + "commit": "260054500d4731c36574b6cbc519de29fdd22f43", + "sha256": "00ph85vp8sa3k99qrdxfz4l8zx121q9xf47vvspzg26bk9l4nwin" + } + }, + { + "ename": "dummyparens", + "commit": "e1f6199a9afece4d6eb581dc8e513601d55a5833", + "sha256": "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk", + "fetcher": "github", + "repo": "snosov1/dummyparens", + "unstable": { + "version": [ + 20141009, + 1024 + ], + "commit": "9798ef1d0eaa24e4fe66f8aa6022a8c62714cc89", + "sha256": "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh" + } + }, + { + "ename": "dune", + "commit": "06648d1d37767cbdc7588d7a8f709d679d478a3b", + "sha256": "1lqza4fjm9xxmdn8040bvsl467qzjy709dlmiq2241gfhxpmvvr7", + "fetcher": "github", + "repo": "ocaml/dune", + "unstable": { + "version": [ + 20190723, + 1011 + ], + "commit": "7d0414b4801b52eeb385908221ffcab567b853be", + "sha256": "0lj80vllx4kn6iaxg042j465lpa5ngmbkfpzx5cijcjljw0213bz" + }, + "stable": { + "version": [ + 1, + 11, + 0 + ], + "commit": "bb7449b87ce9311b610c0c5f95de9ae1a4f3e365", + "sha256": "1w5g024sfh3scxm0ivc3mwldk6i2pai404ps1060lh05h94h2fsz" + } + }, + { + "ename": "duplicate-thing", + "commit": "be28db1bfbd663af5b5c24bad50372fddd341982", + "sha256": "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4", + "fetcher": "github", + "repo": "ongaeshi/duplicate-thing", + "unstable": { + "version": [ + 20181031, + 1500 + ], + "commit": "9d8fd05e3e5caa35d3f2a0c0032c92f0c0908e21", + "sha256": "05lflc0r84c95vb81wbn44kh11cbgm42zn3y4ss0ychbf13mzdb5" + } + }, + { + "ename": "dut-mode", + "commit": "ecf49ceab8b25591fab2ed6574cba0e6634d1539", + "sha256": "0hlr5qvqcqdh2k1nyq621z6vq2yiflj4jy0pgg6lbiy3j6819mai", + "fetcher": "github", + "repo": "dut-lang/dut-mode", + "unstable": { + "version": [ + 20170729, + 2111 + ], + "commit": "9235c7acaa6690942e9de8b7acd1e4be0c859dc1", + "sha256": "0fpqsm6y23anyx57gp4c6whzxrn8x03cp76iwx27c4gkq6ph1z8n" + } + }, + { + "ename": "dyalog-mode", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0w61inyfvxiyihx5z9fk1ckawcd3cr6xiradbbwzmn25k99gkbgr", + "fetcher": "bitbucket", + "repo": "harsman/dyalog-mode", + "unstable": { + "version": [ + 20190721, + 1411 + ], + "deps": [ + "cl-lib" + ], + "commit": "47f53d844b0862f7474714e1ed8f2fea5001e3f2", + "sha256": "03qz5mrq2i52lrj045fwk1l06ax6yl2dyj271p2zp5kv1fcbph6a" + } + }, + { + "ename": "dylan-mode", + "commit": "94481ba3ebba6a99f11efab5a33e8bc6ea2d857a", + "sha256": "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy", + "fetcher": "github", + "repo": "dylan-lang/dylan-mode", + "unstable": { + "version": [ + 20190109, + 300 + ], + "commit": "9a6ad5ff83f2dfc25ce3deee9d3ef71ed53964b5", + "sha256": "1d6krgiabkrj3mryaz79vmiqy0vkr5s8ji34yjd14v73ikzwxwkp" + } + }, + { + "ename": "dynamic-fonts", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q", + "fetcher": "github", + "repo": "rolandwalker/dynamic-fonts", + "unstable": { + "version": [ + 20140731, + 1226 + ], + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ], + "commit": "ab0c65accbdb59acaed5b263327e22ec019b3e82", + "sha256": "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh" + }, + "stable": { + "version": [ + 0, + 6, + 4 + ], + "deps": [ + "font-utils", + "pcache", + "persistent-soft" + ], + "commit": "d318498b377d8941c7420f51616c78e3440d00f5", + "sha256": "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f" + } + }, + { + "ename": "dynamic-ruler", + "commit": "926c43867120db429807ff5aaacc8af65a1738c8", + "sha256": "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc", + "fetcher": "github", + "repo": "rocher/dynamic-ruler", + "unstable": { + "version": [ + 20160602, + 808 + ], + "commit": "c9c0de6fe5721f06b50e01d9b4684b519c71b367", + "sha256": "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296" + }, + "stable": { + "version": [ + 0, + 1, + 6 + ], + "commit": "c9c0de6fe5721f06b50e01d9b4684b519c71b367", + "sha256": "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296" + } + }, + { + "ename": "dynamic-spaces", + "commit": "e0b59ce66132cbe2b1f41b665dcb30bdd04bc48b", + "sha256": "0l4hwqivzv51j7h5sgd91dxb5slylmrfrvf7r6w0k04bhld6ry0c", + "fetcher": "github", + "repo": "Lindydancer/dynamic-spaces", + "unstable": { + "version": [ + 20171027, + 1851 + ], + "commit": "97ae8480c257ba573ca3d06dbf602f9b23c41d38", + "sha256": "0qs7gqjl6ilwwmd21663345az6766j7h1pv7wvd2kyh24yfs1xkj" + } + }, + { + "ename": "e2ansi", + "commit": "5e655a3fdfae80ea120cdb2ce84dd4fd36f9a71e", + "sha256": "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94", + "fetcher": "github", + "repo": "Lindydancer/e2ansi", + "unstable": { + "version": [ + 20190517, + 1902 + ], + "deps": [ + "face-explorer" + ], + "commit": "6e1bb4e4e27885d1786db08b091cfa13b184fb54", + "sha256": "1rbbwz8a6gqyxkkh5fapzlbnny816yzqj4170fzrswhib610mcvz" + } + }, + { + "ename": "e2wm", + "commit": "8da85815c39f58552a968ae68ee07c08c53b0f61", + "sha256": "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la", + "fetcher": "github", + "repo": "kiwanami/emacs-window-manager", + "unstable": { + "version": [ + 20170215, + 36 + ], + "deps": [ + "window-layout" + ], + "commit": "4353d3394c77a49f8f0291c239858c8c5e877549", + "sha256": "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "window-layout" + ], + "commit": "4353d3394c77a49f8f0291c239858c8c5e877549", + "sha256": "12midsrx07pdrsr1qbl2rpi7xyhxqx08bkz7n7gf8vsmqkpfp56s" + } + }, + { + "ename": "e2wm-R", + "commit": "9a3ba9843bdf275815b149e4c4b0a947bbc5e614", + "sha256": "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh", + "fetcher": "github", + "repo": "myuhe/e2wm-R.el", + "unstable": { + "version": [ + 20151230, + 926 + ], + "deps": [ + "e2wm", + "ess", + "inlineR" + ], + "commit": "4350601ee1a96bf89777b3f09f1b79b88e2e6e4d", + "sha256": "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "e2wm" + ], + "commit": "fe17906bf48324032a1beaec9af32b9b49ea9125", + "sha256": "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp" + } + }, + { + "ename": "e2wm-bookmark", + "commit": "45488849da42ac775e532f30f588bfabb7af3cae", + "sha256": "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5", + "fetcher": "github", + "repo": "myuhe/e2wm-bookmark.el", + "unstable": { + "version": [ + 20151123, + 521 + ], + "deps": [ + "e2wm" + ], + "commit": "bad816b6d8049984d69bcd277b7d325fb84d55eb", + "sha256": "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0" + } + }, + { + "ename": "e2wm-direx", + "commit": "8320cf626050cf455c97ef22e7a8ccfb253e3243", + "sha256": "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg", + "fetcher": "github", + "repo": "aki2o/e2wm-direx", + "unstable": { + "version": [ + 20170509, + 1301 + ], + "deps": [ + "direx", + "e2wm" + ], + "commit": "b47f19d15436cc28233a812a1150689f61d11046", + "sha256": "0lihc02b0792kk61vcmhi0jwb7c4w2hi19g6a0q1598b3rci82nf" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "direx", + "e2wm" + ], + "commit": "f319625b56c44e601af7c17fc6dbb88e5d70ebae", + "sha256": "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia" + } + }, + { + "ename": "e2wm-pkgex4pl", + "commit": "8f84b421cb1673d2a9fe820cee11dc4a6e72adad", + "sha256": "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil", + "fetcher": "github", + "repo": "aki2o/e2wm-pkgex4pl", + "unstable": { + "version": [ + 20140525, + 1047 + ], + "deps": [ + "e2wm", + "plsense-direx" + ], + "commit": "7ea994450727190c4f3cb46cb429ba41b692ecc0", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "e2wm", + "plsense-direx" + ], + "commit": "7ea994450727190c4f3cb46cb429ba41b692ecc0", + "sha256": "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d" + } + }, + { + "ename": "e2wm-svg-clock", + "commit": "784f5598910ecf208a68fa97448e148a8ebefa32", + "sha256": "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms", + "fetcher": "github", + "repo": "myuhe/e2wm-svg-clock.el", + "unstable": { + "version": [ + 20150106, + 1306 + ], + "deps": [ + "e2wm", + "svg-clock" + ], + "commit": "d425925e3afffcbe2ff74edc80b714e4319d4c94", + "sha256": "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f" + } + }, + { + "ename": "e2wm-sww", + "commit": "cc873e8271e9f372e08da5d0e4b77c8ba0e3a8cb", + "sha256": "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8", + "fetcher": "github", + "repo": "aki2o/e2wm-sww", + "unstable": { + "version": [ + 20140524, + 858 + ], + "deps": [ + "e2wm" + ], + "commit": "1063f9854bd34db5ac771cd1036cecc89834729d", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "e2wm" + ], + "commit": "1063f9854bd34db5ac771cd1036cecc89834729d", + "sha256": "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g" + } + }, + { + "ename": "e2wm-term", + "commit": "c9a800f5af893cb670cedb47e4a723c407be8429", + "sha256": "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g", + "fetcher": "github", + "repo": "aki2o/e2wm-term", + "unstable": { + "version": [ + 20141009, + 1308 + ], + "deps": [ + "e2wm", + "log4e", + "yaxception" + ], + "commit": "65b5ac88043d5c4048920a048f3599904ca55981", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "e2wm", + "log4e", + "yaxception" + ], + "commit": "65b5ac88043d5c4048920a048f3599904ca55981", + "sha256": "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw" + } + }, + { + "ename": "eacl", + "commit": "8223bec7eed97f0bad300af9caa4c8207322d39a", + "sha256": "16afsf3diz498jb63q85lm5ifvm487clfl838qzagl1l4aywhlwr", + "fetcher": "github", + "repo": "redguardtoo/eacl", + "unstable": { + "version": [ + 20190801, + 213 + ], + "deps": [ + "ivy" + ], + "commit": "8b54294af9c0ad8d6e40932b2b384fe760e56209", + "sha256": "1iyw3gs0ab6vi5x2r6m0caf984yg0fqbn3mmsqmnap2pk1cr259w" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "deps": [ + "ivy" + ], + "commit": "ba6a95838422ec33191beaa12b3e43b67c105abc", + "sha256": "0ksn11sm3g1ja5lpjz3hrzzw8b480mfcb3q589m52qjgvvn5iyfv" + } + }, + { + "ename": "easy-after-load", + "commit": "384ffc463cc6edb4806f8da68bd251e662718e65", + "sha256": "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys", + "fetcher": "github", + "repo": "pd/easy-after-load", + "unstable": { + "version": [ + 20170817, + 1231 + ], + "commit": "29e20145da49ac9ea40463c552130777408040de", + "sha256": "00xgd39qc760lmxpbggzn98aks5nad08b5ry54pkszjlmh37yqj7" + } + }, + { + "ename": "easy-escape", + "commit": "c39e3b867fa3143e9dc7c2fefa57b5755f70b433", + "sha256": "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk", + "fetcher": "github", + "repo": "cpitclaudel/easy-escape", + "unstable": { + "version": [ + 20161209, + 1544 + ], + "commit": "a6449f22cb97160ee1c90121968de89e193268df", + "sha256": "1spbavcs4a3vn1ggdcgwgb2wvq4lbk74xyfagr4y5b5w2azlkh51" + } + }, + { + "ename": "easy-hugo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1m7iw6njxxsk82agyqay277iql578b3wz6z9wjs8ls30ps8s2b8g", + "fetcher": "github", + "repo": "masasam/emacs-easy-hugo", + "unstable": { + "version": [ + 20190729, + 454 + ], + "deps": [ + "popup", + "request" + ], + "commit": "2e2eb5720792512bb8a2ab2a7d9eb9ce86de8df9", + "sha256": "0zram35da92gvv72fdj1mpyxasagvv0i20rrqilawyvah7kr1njg" + }, + "stable": { + "version": [ + 3, + 8, + 42 + ], + "deps": [ + "popup", + "request" + ], + "commit": "2e2eb5720792512bb8a2ab2a7d9eb9ce86de8df9", + "sha256": "0zram35da92gvv72fdj1mpyxasagvv0i20rrqilawyvah7kr1njg" + } + }, + { + "ename": "easy-jekyll", + "commit": "c3f281145bad12c27bdbef32ccc07b6a5f13b577", + "sha256": "16jj70fr23z5qsaijv4d4xfiiypny2cama8rsaci9fk9haq19lxv", + "fetcher": "github", + "repo": "masasam/emacs-easy-jekyll", + "unstable": { + "version": [ + 20190609, + 146 + ], + "deps": [ + "request" + ], + "commit": "8b83e491b0db4aa75a07662577a2526a698adc21", + "sha256": "1y8d90b2nh6l9cxyddhdggmhl913fhlzzgqa0pabqry6fqfz51la" + }, + "stable": { + "version": [ + 2, + 2, + 22 + ], + "deps": [ + "request" + ], + "commit": "9b065ac1bc5a85c6ad41a7b97553eeaa9e30c791", + "sha256": "1pj2hafyx1lq8ifahfg0j90z72swixi1pma52j6701vrn8a5aqw6" + } + }, + { + "ename": "easy-kill", + "commit": "7d0a74c2a7d8859e9311bc8d71f5e6cf5a8063b6", + "sha256": "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i", + "fetcher": "github", + "repo": "leoliu/easy-kill", + "unstable": { + "version": [ + 20181114, + 2330 + ], + "deps": [ + "cl-lib" + ], + "commit": "2a6309d98aa6b71df6bbbcdf15cab3187c521a6b", + "sha256": "1j8hl0f52fqb21775xn94sf9g12yqyg6z0ibgmxzmnl02ir4xr86" + }, + "stable": { + "version": [ + 0, + 9, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "e3b2442e2096cefff94ea8656e49af07fee58f47", + "sha256": "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m" + } + }, + { + "ename": "easy-kill-extras", + "commit": "7b55d93f78fefde47a2bd4ebbfd93c028fab1f40", + "sha256": "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy", + "fetcher": "github", + "repo": "knu/easy-kill-extras.el", + "unstable": { + "version": [ + 20180920, + 1334 + ], + "deps": [ + "easy-kill" + ], + "commit": "b8ce8350cc86e0229f195082557970cd51def960", + "sha256": "1f8db92zzk8g8yyj0g334mdbgqmzrs8xamm1d24jai1289hm29xa" + }, + "stable": { + "version": [ + 0, + 9, + 6 + ], + "deps": [ + "easy-kill" + ], + "commit": "b8ce8350cc86e0229f195082557970cd51def960", + "sha256": "1f8db92zzk8g8yyj0g334mdbgqmzrs8xamm1d24jai1289hm29xa" + } + }, + { + "ename": "easy-repeat", + "commit": "f1f5e0d19043f6a24ab4069c9c850e96cbe61a8f", + "sha256": "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06", + "fetcher": "github", + "repo": "xuchunyang/easy-repeat.el", + "unstable": { + "version": [ + 20150516, + 848 + ], + "commit": "060f0e6801c82c40c06961dc0528a00e18947a8c", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "060f0e6801c82c40c06961dc0528a00e18947a8c", + "sha256": "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq" + } + }, + { + "ename": "ebal", + "commit": "629aa451162a0085488caad4052a56366b7ce392", + "sha256": "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg", + "fetcher": "github", + "repo": "mrkkrp/ebal", + "unstable": { + "version": [ + 20180101, + 616 + ], + "deps": [ + "f" + ], + "commit": "1740118125ae7aa6ba82d36e1fe0e69065a6fcaa", + "sha256": "1i5r8m34zf7ya1kzgm8hsx707phq5smf2x6y2a1ykbnfkk39gmbf" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "f" + ], + "commit": "4d19565516785348894c4911e757e33a270b3efd", + "sha256": "1wj9h8ypi70az387c7pcrpc59lpf89dkp2q4df2ighxw3l648mb7" + } + }, + { + "ename": "ebf", + "commit": "22e2f6383f2a7a01778c0524af19a68af57796ae", + "sha256": "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb", + "fetcher": "github", + "repo": "rexim/ebf", + "unstable": { + "version": [ + 20160211, + 1758 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional" + ], + "commit": "4cd9c26354d8be6571354b2954d21fba882e78a2", + "sha256": "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional" + ], + "commit": "d0bd4fe1abbe327e7d9228eff09927fec57e8378", + "sha256": "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw" + } + }, + { + "ename": "ebib", + "commit": "4e39cd8e8b4f61c04fa967def6a653bb22f45f5b", + "sha256": "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid", + "fetcher": "github", + "repo": "joostkremers/ebib", + "unstable": { + "version": [ + 20190718, + 2011 + ], + "deps": [ + "parsebib" + ], + "commit": "603451582c3471c90fbf795baa2f53043ce5ddb0", + "sha256": "01s1aghyc83372nkccjfx3yn65hqx5hrxbsj1dcbb6z1y5aqbwdj" + }, + "stable": { + "version": [ + 2, + 16, + 5 + ], + "deps": [ + "parsebib" + ], + "commit": "eb6e7bf8cc525c41150bf5913d965e89e1fbf48d", + "sha256": "0jys32kvbcjrc65dwgfzz21g4fnycdhm0pybgk3akb80rv00x1vf" + } + }, + { + "ename": "ecb", + "commit": "4db5183f35bedbc459843ad9f442f9cb6608c5fc", + "sha256": "0z61p9zgv7gcx04m4jv16a3mn9kjvnw0rdd65kpvbmzkgls0nk8d", + "fetcher": "github", + "repo": "ecb-home/ecb", + "unstable": { + "version": [ + 20170728, + 1921 + ], + "commit": "1330a44cf3c171781083b0b926ab7622f64e6e81", + "sha256": "0nx1blkvnzrxd2l7ckdihm9fvq5vkcghf6qccagkjzk4zbdalz30" + } + }, + { + "ename": "eclim", + "commit": "1e9d3075587fbd9ca188535fd945a7dc451c6d7e", + "sha256": "1n60ci6kjmzy2khr3gs7s8gf21j1f9zjaj5a1yy2dyygsarbxw7b", + "fetcher": "github", + "repo": "emacs-eclim/emacs-eclim", + "unstable": { + "version": [ + 20181108, + 1134 + ], + "deps": [ + "cl-lib", + "dash", + "json", + "popup", + "s", + "yasnippet" + ], + "commit": "23f5b294f833ce58516d7b9ae08a7792d70022a1", + "sha256": "17q972354nkkynfjmwih4vp7s5dzdvr3nf7ni3ci095lzb0zzf4g" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "dash", + "json", + "popup", + "s", + "yasnippet" + ], + "commit": "8203fbf8544e65324a948a67718f7a16ba2d52e6", + "sha256": "10bbbxhvlwm526g1wib1f87grnayirlg8jbsvmpzxr9nmdjgikz3" + } + }, + { + "ename": "eclipse-theme", + "commit": "81fcf3536ead18a91400f6936b3f789b4b594b9c", + "sha256": "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx", + "fetcher": "github", + "repo": "abo-abo/eclipse-theme", + "unstable": { + "version": [ + 20190716, + 916 + ], + "commit": "0239fa7bbbb5fb61ac1e96fc772974240d2a8996", + "sha256": "1dldf1qsf2j62i0gi9r3ax7w749yaj09q0vw5xlk49m4qpi50ga3" + } + }, + { + "ename": "ecukes", + "commit": "14cf66e6929db2a0f377612e786aaed9eb12b799", + "sha256": "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0", + "fetcher": "github", + "repo": "ecukes/ecukes", + "unstable": { + "version": [ + 20190731, + 1558 + ], + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ], + "commit": "73f1b07dace22eff692568b9d29f9755d4138f30", + "sha256": "0w6ja73a3gnpnf58v3dmk04sb22gnwxdsn3wpvp5hlhsvkxrar6j" + }, + "stable": { + "version": [ + 0, + 6, + 17 + ], + "deps": [ + "ansi", + "commander", + "dash", + "espuds", + "f", + "s" + ], + "commit": "3a77ba9f1064c2bca47b401974c009e65727c46e", + "sha256": "1isscwz4h3nx62lwfrj899lp2yc27zk1ndgr441d848495ccmshn" + } + }, + { + "ename": "edbi", + "commit": "238a11afa52d2c01d69eb16ffd7d07ccd6dff403", + "sha256": "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr", + "fetcher": "github", + "repo": "kiwanami/emacs-edbi", + "unstable": { + "version": [ + 20160225, + 141 + ], + "deps": [ + "concurrent", + "ctable", + "epc" + ], + "commit": "6f50aaf4bde75255221f2292c7a4ad3fa9d918c0", + "sha256": "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "concurrent", + "ctable", + "epc" + ], + "commit": "39b833d2e51ae5ce66ebdec7c5425ff0d34e02d2", + "sha256": "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s" + } + }, + { + "ename": "edbi-database-url", + "commit": "e25bf3d65ef2fb09eb0802cfd3e3faee86a5cfdb", + "sha256": "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn", + "fetcher": "github", + "repo": "proofit404/edbi-database-url", + "unstable": { + "version": [ + 20160221, + 1923 + ], + "deps": [ + "edbi" + ], + "commit": "d56c580268cd93651998c4c6b1c5558e6b6ca90f", + "sha256": "1nkfl8jngkdz8h951jig39af1wh5vrc5lqk58l2i4lc2znprj9lx" + } + }, + { + "ename": "edbi-django", + "commit": "10dd853022ab93e345761b04d760b3763f4d2384", + "sha256": "02vcbqgkvhlw9msf65777f85c8myxr95g2dz199nlfmz4vpqrkgq", + "fetcher": "github", + "repo": "proofit404/edbi-django", + "unstable": { + "version": [ + 20190212, + 1417 + ], + "deps": [ + "edbi", + "pythonic" + ], + "commit": "9b73db66c02a222fc62dc3bc590962f58c5b43d8", + "sha256": "1yinm4qzwpdmr4a0isbkiw6ny23gllajcppwh7g0d62di3v242dm" + } + }, + { + "ename": "edbi-minor-mode", + "commit": "5fb878b60c7ecbb1e3a47aef1d9765061c510644", + "sha256": "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi", + "fetcher": "github", + "repo": "proofit404/edbi-minor-mode", + "unstable": { + "version": [ + 20160706, + 1447 + ], + "deps": [ + "edbi" + ], + "commit": "566a2141a6eb9d9d5d7e1bd7c251d1c5e8f0d2ec", + "sha256": "1g6mlmrwl8p5ffj9q298vymd9xi2kpp7mhbmz4by4f6a3g831c88" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "edbi" + ], + "commit": "566a2141a6eb9d9d5d7e1bd7c251d1c5e8f0d2ec", + "sha256": "1g6mlmrwl8p5ffj9q298vymd9xi2kpp7mhbmz4by4f6a3g831c88" + } + }, + { + "ename": "edbi-sqlite", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y", + "fetcher": "github", + "repo": "proofit404/edbi-sqlite", + "unstable": { + "version": [ + 20160221, + 1923 + ], + "deps": [ + "edbi" + ], + "commit": "52cb9ca1af7691b592f2cfd2f007847e7a4ccd5f", + "sha256": "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51" + } + }, + { + "ename": "ede-compdb", + "commit": "3b70138b7d82aec2d60f4a7c0cd21e734a1fc52a", + "sha256": "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7", + "fetcher": "github", + "repo": "randomphrase/ede-compdb", + "unstable": { + "version": [ + 20150920, + 2033 + ], + "deps": [ + "cl-lib", + "ede", + "semantic" + ], + "commit": "d6d8466cd62876fc90adeff5875a1a584fd846cd", + "sha256": "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m" + } + }, + { + "ename": "ede-php-autoload", + "commit": "afc7ddfcf16e92889e54f30599b576a24823f60d", + "sha256": "1255a1drpb50650i0yijahbp97chpw89mi9fvdrk3vf64xlysamq", + "fetcher": "github", + "repo": "emacs-php/ede-php-autoload", + "unstable": { + "version": [ + 20180901, + 1255 + ], + "commit": "8a4eeeaa93b8d87b65a107c4ebcbeb14528d9449", + "sha256": "109cys3d4pfaa2c6gb33p5b40cd6wmisx63w20cxpj86drx8iabf" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "28a989232c276ee7fc5112c9050b1c29f628be9f", + "sha256": "0kc51bb5jxrsra9ycg43n35dd8kngby321qbcixaj68cksf0whrm" + } + }, + { + "ename": "ede-php-autoload-composer-installers", + "commit": "6e0e9058593b32b8d9fd7873d4698b4dd516930f", + "sha256": "0s7dv81niz4h8kj0648x2nbmz47hqxchfs2rjmjpy2lcbifvj268", + "fetcher": "github", + "repo": "xendk/ede-php-autoload-composer-installers", + "unstable": { + "version": [ + 20170221, + 2026 + ], + "deps": [ + "ede-php-autoload", + "f", + "s" + ], + "commit": "7840439802c7d11ee086bbf465657f3da12f9f66", + "sha256": "1dkq0py1sybmpy59h3szafa59g5g3jp8l9az22l15qgmkpbqydh4" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "ede-php-autoload", + "f", + "s" + ], + "commit": "f9942e07d0773444040084ac84652e69f0fd46d5", + "sha256": "04gw8ma5c898ai7haxvdagmxx8zw9ncc9v0cv8a5ddg6arvzkl1z" + } + }, + { + "ename": "ede-php-autoload-drupal", + "commit": "532fec4788350cc11893c32e3895f06510a39d35", + "sha256": "139sr7jy5hb8h5zmw5mw01r0dy7yvbbyaxzj62m1a589n8w6a964", + "fetcher": "github", + "repo": "xendk/ede-php-autoload-drupal", + "unstable": { + "version": [ + 20170316, + 2158 + ], + "deps": [ + "ede-php-autoload", + "f", + "s" + ], + "commit": "54a04241d94fabc4f4d16ae4dc8ba4f0c6e3b435", + "sha256": "1ckfja95zk4f7fgvycia7nxhxjgz4byrz30ic63f6kcq4dx78scs" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "ede-php-autoload", + "f", + "s" + ], + "commit": "6b62ffa7a69f52aab79067eaed80b2720f7e3fc2", + "sha256": "001yhxngr6h7v1sjz0wskd5dv6fiby7m1mbc8vdz1h93150wzahp" + } + }, + { + "ename": "edebug-x", + "commit": "204e40cd450f4223598be1f385f08ec82b44f70c", + "sha256": "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql", + "fetcher": "github", + "repo": "ScottyB/edebug-x", + "unstable": { + "version": [ + 20130616, + 625 + ], + "commit": "a2c2c42553d3bcbd5ac11898554865acbed1bc46", + "sha256": "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2" + } + }, + { + "ename": "edit-at-point", + "commit": "a63b22f357b2d08b12fb86c27261ab4d687c5f7f", + "sha256": "1mijasr4ww6vcjfyk7jdv4mh7w2rrspqbbmqayiy2918qg2x01df", + "fetcher": "github", + "repo": "enoson/edit-at-point.el", + "unstable": { + "version": [ + 20150716, + 1324 + ], + "commit": "3b800c11685102e1eab62ec71c5fc1589ebb81a7", + "sha256": "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w" + } + }, + { + "ename": "edit-color-stamp", + "commit": "2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f", + "sha256": "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8", + "fetcher": "github", + "repo": "sabof/edit-color-stamp", + "unstable": { + "version": [ + 20130529, + 1733 + ], + "deps": [ + "cl-lib", + "es-lib" + ], + "commit": "32dc1ca5bcf3dcf83fad5e39b55dc5b77becb3d3", + "sha256": "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r" + } + }, + { + "ename": "edit-indirect", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439", + "fetcher": "github", + "repo": "Fanael/edit-indirect", + "unstable": { + "version": [ + 20180422, + 1807 + ], + "commit": "de645d8144e8a08f039a9c88185121ec81d957ef", + "sha256": "0xg6p3ccch9k920xhhpyhn5mkgc0sfyxsn8l1wsc6vbbp5h7wlad" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "commit": "032ac0ec690d4999d564fd882588c7a197efe8dd", + "sha256": "0by1x53pji39fjrj5bd446kz831nv0vdgw2jqasbym4pc1p2947r" + } + }, + { + "ename": "edit-indirect-region-latex", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ys0fpfk259g14wvg0nnkc3wk1dbjjd2n4a636jblgq63w6g3h79", + "fetcher": "github", + "repo": "niitsuma/edit-indirect-region-latex", + "unstable": { + "version": [ + 20161129, + 645 + ], + "deps": [ + "edit-indirect", + "ht" + ], + "commit": "05043f2c0c9838947d3ca4b51b695deb7c47612e", + "sha256": "0dgac0nk9x4sz4lisxb5badrzpcjqjwgi79hhl1y6mafzm0ncqs2" + } + }, + { + "ename": "edit-list", + "commit": "6c8aa348ce5289a8b1238f186affac1d544af755", + "sha256": "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv", + "fetcher": "github", + "repo": "emacsmirror/edit-list", + "unstable": { + "version": [ + 20100930, + 1443 + ], + "commit": "f460d3f9e208a4e606fe6ded307f1b011916ca71", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "f460d3f9e208a4e606fe6ded307f1b011916ca71", + "sha256": "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9" + } + }, + { + "ename": "edit-server", + "commit": "d98d69008b5ca8b92fa7a6045b9d1af86f269386", + "sha256": "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0", + "fetcher": "github", + "repo": "stsquad/emacs_chrome", + "unstable": { + "version": [ + 20181016, + 1125 + ], + "commit": "af46de40e2991b046f04856c18a6483badce38aa", + "sha256": "1lfdfnc7cx3lqa69mpn72jhsz4dwmfnrfpzrnk6lfh10h65yfdiw" + }, + "stable": { + "version": [ + 1, + 15 + ], + "commit": "4e959de2f78268b348d2eaac4e43c846792d345f", + "sha256": "0xxby3ghs38i1l7kag12rnzlzcg9297pm8k6kqq3aqzsg9d2950y" + } + }, + { + "ename": "edit-server-htmlize", + "commit": "219b037401a81ce70bd2106dabffa16d8b0c7cef", + "sha256": "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj", + "fetcher": "github", + "repo": "frobtech/edit-server-htmlize", + "unstable": { + "version": [ + 20130329, + 2248 + ], + "deps": [ + "edit-server" + ], + "commit": "e7f8dadfabe869c77ca241cd6fbd4c52bd908392", + "sha256": "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3" + } + }, + { + "ename": "editorconfig", + "commit": "50d4f2ed288ef38153a7eab44c036e4f075b51d0", + "sha256": "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc", + "fetcher": "github", + "repo": "editorconfig/editorconfig-emacs", + "unstable": { + "version": [ + 20190703, + 336 + ], + "deps": [ + "cl-lib" + ], + "commit": "f24f651245344f5f97c348246ce035843419b322", + "sha256": "0djicwnbz7awzsnr6z1xggb9d7l83mf2h3xw3l1f9pv87m7mgndn" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "4b6c34d5d77025a11ae68462af9bf0a822a13242", + "sha256": "1b2cpqz75pivl323bs60j5rszwi787x6vy68csycikqz9mhpmjn9" + } + }, + { + "ename": "editorconfig-charset-extras", + "commit": "62f27dad806fa135209289933f2131ee4ce8f8bf", + "sha256": "15p9qpdwradcnjr0nf0ibhy94yi73l18xz7zxf6khmdirsirpwgh", + "fetcher": "github", + "repo": "10sr/editorconfig-charset-extras-el", + "unstable": { + "version": [ + 20180223, + 457 + ], + "deps": [ + "editorconfig" + ], + "commit": "ddf60923c6f4841cb593b2ea04c9c710a01d262f", + "sha256": "1v5a6s4x7cm6i0bxaqdpsg8vqj479lp5h45glx4ipk0icdq8cvd9" + } + }, + { + "ename": "editorconfig-custom-majormode", + "commit": "fcd47bf4630442ad1a941ad432cef64c7746aa71", + "sha256": "0ykvjg3gwxky6w5cm0y5s63q9820b7d25fy9plw8sarxwy2a5lxy", + "fetcher": "github", + "repo": "10sr/editorconfig-custom-majormode-el", + "unstable": { + "version": [ + 20180816, + 244 + ], + "deps": [ + "editorconfig" + ], + "commit": "13ad1c83f847bedd4b3a19f9df7fd925853b19de", + "sha256": "1zagd6cliwm8xyhzfvpi7n7m58k78wv4ihc2snq00v7321jjh9bp" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "editorconfig" + ], + "commit": "ae613f0a56364afbbab19d4377c108406d5cfc7c", + "sha256": "0sm3xdysnqzc6nc2n7rcnr478l7qdy7bv8rhq500240aprzv63y4" + } + }, + { + "ename": "editorconfig-domain-specific", + "commit": "831a7dd7ef853ca44709eabfd48ee97113705319", + "sha256": "1rkan6q7z0qfq28zg114iik71nghd7fbs4g8qppzhgr3pwbpn73q", + "fetcher": "github", + "repo": "lassik/editorconfig-emacs-domain-specific", + "unstable": { + "version": [ + 20180505, + 924 + ], + "deps": [ + "cl-lib", + "editorconfig" + ], + "commit": "e9824160fb2e466afa755240ee3ab7cc5657fb04", + "sha256": "0gkwhvywfpnay7rxb2bmsnywcd89qw710bsp53sk5fvilgfwfpkj" + } + }, + { + "ename": "editorconfig-generate", + "commit": "dc1cfe5ce6bc3d247c5b7730ac6cb2d6c6198a0c", + "sha256": "1xfm3vnr5ngi1vihs7cack8a6zyipvdq260v43cr0y8dqg3sn89i", + "fetcher": "github", + "repo": "10sr/editorconfig-generate-el", + "unstable": { + "version": [ + 20190513, + 433 + ], + "commit": "47a31f928f46d2a0188db8e2cffa5d6354a81573", + "sha256": "01bv064rzxjpqvcs0x62qfqn51js51wmkbg04v28pvmwlmnigkg0" + } + }, + { + "ename": "edn", + "commit": "305dd770d9db86d5ee602e6bd571b7c4f6c4ddbe", + "sha256": "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg", + "fetcher": "github", + "repo": "expez/edn.el", + "unstable": { + "version": [ + 20160215, + 1219 + ], + "deps": [ + "cl-lib", + "peg" + ], + "commit": "be9e32d1b49e35247b263b0243df7cfdc8d413ab", + "sha256": "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "cl-lib", + "dash", + "peg", + "s" + ], + "commit": "bb035dcbeccccdb2c899d2cce8e81486764d0ad7", + "sha256": "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd" + } + }, + { + "ename": "edts", + "commit": "782db7fba2713bfa17d9305ae15b0a9e1985445b", + "sha256": "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr", + "fetcher": "github", + "repo": "tjarvstrand/edts", + "unstable": { + "version": [ + 20171030, + 709 + ], + "deps": [ + "auto-complete", + "auto-highlight-symbol", + "dash", + "erlang", + "f", + "popup", + "s" + ], + "commit": "6ef4bdf571235ee1b078db321402270cabff7fda", + "sha256": "1nzf8wdv0hs4kp69cy3blwxh18c2bkxr4d4y6ggdp0vmwv41j3zi" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "61855db6f1315ea45f97ed95b47a3f182ec4c6be", + "sha256": "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1" + } + }, + { + "ename": "efire", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0dhgms6s0c889xx75khn1mqfn8i32z4rjlx2w7i0chm2abxbgd3m", + "fetcher": "github", + "repo": "joaotavora/efire", + "unstable": { + "version": [ + 20151009, + 2031 + ], + "deps": [ + "circe" + ], + "commit": "91a644662afb352475efad0b377713656f131e5c", + "sha256": "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v" + } + }, + { + "ename": "eg", + "commit": "3d2b6b92b2a71486f260571885bf149ad6afc551", + "sha256": "1ic6qzk0zmay3vvbb8jg35irqkc0k68dmgbq4j9isiawy449zvp7", + "fetcher": "github", + "repo": "davep/eg.el", + "unstable": { + "version": [ + 20170830, + 815 + ], + "deps": [ + "cl-lib" + ], + "commit": "1c7f1613d2aaae728ef540305f6ba030616f86bd", + "sha256": "1g2ha6q9k6dmi63i2p4aypwf5mha699wr7yy5dsck39mqk15hx0f" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "0791452498719afb7409d1f723dbea2ec26d56f1", + "sha256": "1y16pah8f4jp117vihvlcwvsw2i85gdk45h9y9r1w9mslb24faac" + } + }, + { + "ename": "egalgo", + "commit": "904fac56b9acc8218d0a61ce9953a29f146bb57a", + "sha256": "1dhy3m546grpmxwfnvkgpd0hbh9iydag7n5a6arm7ik7sglb9jvd", + "fetcher": "github", + "repo": "ROCKTAKEY/egalgo", + "unstable": { + "version": [ + 20190706, + 1611 + ], + "deps": [ + "dash" + ], + "commit": "d98524799f95c6c6bd972e52790e7e6b9003725c", + "sha256": "1zyni0z4bnns37f7ylxm99pdgggd8942lkwjkl8x4qglpb9ibiri" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "dash" + ], + "commit": "85c8c01c3424e69528f4111a384092dfa721196a", + "sha256": "0fdqzv111d37cbl5wzasrppkhkxqgk3aslac7bjpq7jpj5gabwr2" + } + }, + { + "ename": "egg", + "commit": "a1c97870c2641d73685f07a12f010530cc186544", + "sha256": "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i", + "fetcher": "github", + "repo": "byplayer/egg", + "unstable": { + "version": [ + 20181126, + 500 + ], + "commit": "00e768a78ac3d25f457eed667d02cac568480bf9", + "sha256": "1ak23v9gqj6x104mzgihn0hi7w0kr76q1sl929wmbb9h8s3a54q8" + }, + "stable": { + "version": [ + 1, + 1, + 4 + ], + "commit": "00e768a78ac3d25f457eed667d02cac568480bf9", + "sha256": "1ak23v9gqj6x104mzgihn0hi7w0kr76q1sl929wmbb9h8s3a54q8" + } + }, + { + "ename": "egison-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0bch4863l9wxrss63fj46gy3nx3hp635709xr4c2arw0j7n82lzd", + "fetcher": "github", + "repo": "egison/egison", + "unstable": { + "version": [ + 20190714, + 236 + ], + "commit": "d884df820099e5b128b553bd06904ff31d57b28f", + "sha256": "0l72rzwvlzwjdgag2cqkfrjajnsad7lp8flq957m980v9b88nqsg" + }, + "stable": { + "version": [ + 3, + 9, + 0 + ], + "commit": "6ddf45cb589c6a191df21f8debb3a6b8d0fa41ee", + "sha256": "1krkba41vczhghz31dww1dw41r1l2h3di5564pqhs6c00shmds01" + } + }, + { + "ename": "eglot", + "commit": "6c644530eca56f93d94fac2c9d7663c35c2b8c01", + "sha256": "17w39hcgv4p49g841qaicjdx7xac72yxvsc83jf1rrakg713pj7y", + "fetcher": "github", + "repo": "joaotavora/eglot", + "unstable": { + "version": [ + 20190718, + 1936 + ], + "deps": [ + "flymake", + "jsonrpc" + ], + "commit": "f45fdc6674a6cda16dc71966334f5346500e9498", + "sha256": "18n4w2cxzhc6yyr7bdggb19hmzk2h7m1d6r7nnr90ldryb05yyf0" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "flymake", + "jsonrpc" + ], + "commit": "35597d262b53bde52faa46ee6ae8c597d93114e8", + "sha256": "1qx3ixaaaffhmbh3ifi5041lp7xp4ab4x4n1mal3wcpp70asxvdp" + } + }, + { + "ename": "ego", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "09k33ggc6n7wgykaawbmh6hyrl9dqp0azaq9zcjhjbc88nszj7fj", + "fetcher": "github", + "repo": "emacs-china/EGO", + "unstable": { + "version": [ + 20180301, + 104 + ], + "deps": [ + "dash", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ], + "commit": "719809679c1a60887735db41abae53b61f08ef59", + "sha256": "10f179kl53la4dyikzl1xysccx4gk04skzwaw3w1pgr8f5fjppxc" + } + }, + { + "ename": "eide", + "commit": "a42244392719c620b47bc43a7a8501dab4b6f74e", + "sha256": "1962shxcfn3v1ljann7182ca6ciy5xfbcd6l9l8rc8gikp55qv8m", + "fetcher": "git", + "url": "https://framagit.org/eide/eide.git", + "unstable": { + "version": [ + 20190501, + 2122 + ], + "commit": "0554252de694d01210e40cf071f212b6ca45e88e", + "sha256": "1ac8408m0rqyhda22b1c6jcn62mrmpvcn5d3nr2miiv7akvykvl9" + }, + "stable": { + "version": [ + 2, + 1, + 3 + ], + "commit": "7e4f101923d1aaa4ad4626ff60375ece8dd13e1d", + "sha256": "0j343hdarrlgznc4f59gbix20zlpr4wv5b8db6m0262ajc5q5zfb" + } + }, + { + "ename": "eimp", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd", + "fetcher": "github", + "repo": "nicferrier/eimp", + "unstable": { + "version": [ + 20120826, + 2039 + ], + "commit": "2e7536fe6d8f7faf1bad7a8ae37faba0162c3b4f", + "sha256": "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra" + } + }, + { + "ename": "ein", + "commit": "215e163755fe391ce1f049622e7b9bf9a8aea95a", + "sha256": "14blq1cbrp00rq0ilk7z9qppqfj0r4n3jidw3abcpchvh5ln086r", + "fetcher": "github", + "repo": "millejoh/emacs-ipython-notebook", + "unstable": { + "version": [ + 20190729, + 20 + ], + "deps": [ + "auto-complete", + "dash", + "deferred", + "markdown-mode", + "polymode", + "request", + "s", + "skewer-mode", + "websocket" + ], + "commit": "ce419a12a5149d86cec235773f4f9ecc1d88c038", + "sha256": "1v1fsj3142w548cwvxg4s52l83qg7zw4cldds2grl5y8xhhbzlhw" + }, + "stable": { + "version": [ + 0, + 16, + 1 + ], + "deps": [ + "auto-complete", + "dash", + "deferred", + "markdown-mode", + "polymode", + "request", + "s", + "skewer-mode", + "websocket" + ], + "commit": "43107fc5c85722899534700daa7f5e73fe59a933", + "sha256": "05ns2ddr012dmw3x651lr4bhn9x0vrphivymdmhzc4bsxsisbd32" + } + }, + { + "ename": "ein-mumamo", + "commit": "bd8fcf7f6332f94dc37697f9412c8043da8d4f76", + "sha256": "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w", + "fetcher": "github", + "repo": "millejoh/ein-mumamo", + "unstable": { + "version": [ + 20150302, + 28 + ], + "deps": [ + "ein" + ], + "commit": "028fefec499598add1a87b92ed991891f38f0c7b", + "sha256": "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570" + } + }, + { + "ename": "eink-theme", + "commit": "a1349c3f93ab60983f77c28f97048fa258b612a6", + "sha256": "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn", + "fetcher": "github", + "repo": "maio/eink-emacs", + "unstable": { + "version": [ + 20190219, + 858 + ], + "commit": "326b07523dcb076d6209cdbc7fdbb73df296dbdb", + "sha256": "1s5w45p0in2ljrbhc7nsc0ppff5wybzwrwv60z1a6dnd8d679qfj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "93d25c097b105594472c4f99d693f439b4b709f0", + "sha256": "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0" + } + }, + { + "ename": "ejc-sql", + "commit": "e01655679087504db1206b22435ba8eb7050aa23", + "sha256": "13i55l6hwsxbmdxmvh6aajayivgskw4iagmj9in1qkd9rnrykhn9", + "fetcher": "github", + "repo": "kostafey/ejc-sql", + "unstable": { + "version": [ + 20190730, + 1837 + ], + "deps": [ + "auto-complete", + "clomacs", + "dash", + "direx", + "spinner" + ], + "commit": "ffda6d74f7b83c338953cc33de5a520722f544d9", + "sha256": "042aba3wlaxygyzjs55r42s91mp8c2sx9y0r804a4xxx7ykp9gmv" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "deps": [ + "auto-complete", + "clomacs", + "dash", + "direx", + "spinner" + ], + "commit": "ad6473ba40bcc0b300baa83eda13523b9cd2cd2c", + "sha256": "18ik1r18yc904048l1yalqm9m7ll4vln73q483yqqywda9hm8saq" + } + }, + { + "ename": "ejson-mode", + "commit": "f932205e18fa8955ecaf439306a0bf3c411ee8d4", + "sha256": "1mimixdaldkd8kswhrrvs4v126nyf7zhh1j5ynyrdmg33m0mir1m", + "fetcher": "github", + "repo": "dantecatalfamo/ejson-mode", + "unstable": { + "version": [ + 20190720, + 2138 + ], + "commit": "9630dfac9549779711dbe89e621f516bb4b3a354", + "sha256": "1j4v34m7jfiivbpps2pdvzl9q2gwj7rzcna9x93pj0qkw1xaqc3l" + } + }, + { + "ename": "el-autoyas", + "commit": "cc4845343dbb8f8294394f6850788e4f1fe6b99b", + "sha256": "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c", + "fetcher": "github", + "repo": "mattfidler/el-autoyas.el", + "unstable": { + "version": [ + 20120918, + 1317 + ], + "commit": "bde0251ecb504f585dfa27c205c8e312655310cc", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "bde0251ecb504f585dfa27c205c8e312655310cc", + "sha256": "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n" + } + }, + { + "ename": "el-fly-indent-mode", + "commit": "237311b98eec4b577409f55e16d8e640936d41a2", + "sha256": "00iqiawbzijm515lswbkzxf1m6ys242xrg6lzf8k40g2ygyd1q1r", + "fetcher": "github", + "repo": "jiahaowork/el-fly-indent-mode.el", + "unstable": { + "version": [ + 20180422, + 243 + ], + "commit": "4917f486a7be7482dedfea0a7ac3d01cab4ce21c", + "sha256": "19ap5l2i0ydkl2whzy44rxc8cgjgrrwi4w7i429ga3pjkac9170g" + } + }, + { + "ename": "el-get", + "commit": "1c61197a2b616d6d3c6b652248cb166196846b44", + "sha256": "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz", + "fetcher": "github", + "repo": "dimitri/el-get", + "unstable": { + "version": [ + 20181006, + 225 + ], + "commit": "e8bdc7be1a61faf61787d4a3c0b80dafc37d2ef4", + "sha256": "09mb43cdl711dva0hv7jln35nz0r4q0m6r3zbv563s8wnqpza7ig" + }, + "stable": { + "version": [ + 5, + 1 + ], + "commit": "bfffd553f4c72b818e9ee94f05458eae7a16056b", + "sha256": "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz" + } + }, + { + "ename": "el-init", + "commit": "f0c18cc62ffaaf839284ed7b261cc6f375fab813", + "sha256": "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5", + "fetcher": "github", + "repo": "HKey/el-init", + "unstable": { + "version": [ + 20150728, + 920 + ], + "deps": [ + "anaphora", + "cl-lib" + ], + "commit": "65c48ec47fea84d16ff2d1ef7015b4d220fcf5ff", + "sha256": "0awx7ry9xnzw7n9aqiy7i2lfj453jkj15wfy38nlgw9qxv9bri9j" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "anaphora", + "cl-lib" + ], + "commit": "25fd21d820bca1cf576b8f70c8d5a3bc76792597", + "sha256": "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n" + } + }, + { + "ename": "el-init-viewer", + "commit": "f90e6be757783352c4a7732177ff2e2c0a066247", + "sha256": "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m", + "fetcher": "github", + "repo": "HKey/el-init-viewer", + "unstable": { + "version": [ + 20150303, + 828 + ], + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init" + ], + "commit": "8a2ab457586962bde0da2a1c56a37ce6363ae690", + "sha256": "08ni8hmszryf75h1c13q3yrrxgh41as6r8r4vq4gih0jbiz0wx8w" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "anaphora", + "cl-lib", + "ctable", + "dash", + "el-init" + ], + "commit": "dcc595ba51b5aff972292278aa528c7ddb46f1b5", + "sha256": "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l" + } + }, + { + "ename": "el-mock", + "commit": "b1989beb927657c0ff7e79fe448f62ac58c11be7", + "sha256": "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l", + "fetcher": "github", + "repo": "rejeep/el-mock.el", + "unstable": { + "version": [ + 20170824, + 1954 + ], + "commit": "5df1d3a956544f1d3ad0bcd81daf47fff33ab8cc", + "sha256": "06ldnrpqvbdxfzr8v7pj9xacgvkp36xjlhvjkpxldmqj1l5v8a6w" + }, + "stable": { + "version": [ + 1, + 25, + 1 + ], + "commit": "3069931de75bb6704ecf565af5390009dc4dae00", + "sha256": "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7" + } + }, + { + "ename": "el-patch", + "commit": "2f4f57e0edbae35597aa4a7744d22d2f971d5de5", + "sha256": "1imijmsni8c8fxjrzprnanf94c1pma3h5w9p75c4y99l8l3xmj7g", + "fetcher": "github", + "repo": "raxod502/el-patch", + "unstable": { + "version": [ + 20190702, + 2147 + ], + "commit": "1ea0645280f8e3d9a6858ec9050f4e260b52f6ce", + "sha256": "025yglv0wkm2gx4yncyqwgvl9h5zcnap3508qb824jncla5jnb92" + }, + "stable": { + "version": [ + 2, + 2, + 3 + ], + "commit": "ef56cbc6950dffd91de93009bafe51efb81eb84f", + "sha256": "18djslz177q6q33y82zmg2v6n9236a76kiqfvxdk4vbqzjbq82f7" + } + }, + { + "ename": "el-pocket", + "commit": "ef362a76a3881c7596dcc2639df588227b3713c0", + "sha256": "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw", + "fetcher": "github", + "repo": "pterygota/el-pocket", + "unstable": { + "version": [ + 20170922, + 1249 + ], + "deps": [ + "web" + ], + "commit": "a80abfb67efe68ada1d7d0a73aecee57e763baaa", + "sha256": "0q4nsgqpjmmxml5pcb6im1askk6q7c3ykzv6fgf1w8jgkvdifa6f" + } + }, + { + "ename": "el-spec", + "commit": "407e344bf4e4b3885ebb7df02ebb37feee5e2515", + "sha256": "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh", + "fetcher": "github", + "repo": "uk-ar/el-spec", + "unstable": { + "version": [ + 20121018, + 704 + ], + "commit": "1dbc465401d4aea5560318c4f13ff30920a0718d", + "sha256": "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az" + } + }, + { + "ename": "el-spice", + "commit": "4666eee9f6837d6d9dba77e04aa4c8c4a93b47b5", + "sha256": "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg", + "fetcher": "github", + "repo": "vedang/el-spice", + "unstable": { + "version": [ + 20180128, + 1721 + ], + "commit": "4e0852ebf5d8e9cbb3eaaa6ae9c53d126b53f58c", + "sha256": "08mkn4qfxax3fgppw79117phm05hihifwj4pgll9ivrilbf75lb8" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "972dace20ec61cd27b9322432d0c7a688c6f061a", + "sha256": "1wrb46y4s4v0lwwyriz2qn1j1l804jyb4dmadf462jxln85rml70" + } + }, + { + "ename": "el-sprunge", + "commit": "547209532faf45b35b55350783ccee532ce2bcbb", + "sha256": "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a", + "fetcher": "github", + "repo": "eschulte/el-sprunge", + "unstable": { + "version": [ + 20140107, + 139 + ], + "deps": [ + "htmlize", + "web-server" + ], + "commit": "37855ec60aeb4d565c49a4d711edc7341e9a22cb", + "sha256": "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc" + } + }, + { + "ename": "el-spy", + "commit": "7a90318a38c35e648152ec5fb2dd86c432af9553", + "sha256": "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n", + "fetcher": "github", + "repo": "uk-ar/el-spy", + "unstable": { + "version": [ + 20131226, + 2008 + ], + "commit": "b1dead9d1877660856ada22d906ac4e54695aec7", + "sha256": "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn" + } + }, + { + "ename": "el-x", + "commit": "0346f6349cf39a0414cd055b06d8ed193f4972d4", + "sha256": "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g", + "fetcher": "github", + "repo": "sigma/el-x", + "unstable": { + "version": [ + 20140111, + 2201 + ], + "commit": "e7c333d4fc31a90f4dca951efe21129164b42605", + "sha256": "00wp2swrmalcifx9fsvhz9pgbf6ixvn8dpz1lq6k6pj9h24pq7wh" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "e96541c1f32e0a3aca4ad0a0eb382bd898250163", + "sha256": "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5" + } + }, + { + "ename": "el2markdown", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1bpfddcvg9wgc5g14clj6wyiw8rsh45rgibvlmyan2m0gmwvmqx6", + "fetcher": "github", + "repo": "Lindydancer/el2markdown", + "unstable": { + "version": [ + 20170630, + 1858 + ], + "commit": "368d99313683cd943c99feaffca356be60bdb636", + "sha256": "1h0cr8qcvj9r3acb6bf5nyglvi5gdglwflkfl5jbzp0nm1p9iqcg" + } + }, + { + "ename": "el2org", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "02kyvzpjws2mrp414i4zm4fmrnzgkaax6bnrlyhp17a8aqaggbnh", + "fetcher": "github", + "repo": "tumashu/el2org", + "unstable": { + "version": [ + 20190504, + 1114 + ], + "commit": "fbb2c5bff78564111ff1826976101555314bfc53", + "sha256": "17d85fdckbzj551j98j0hrhdj0ag8ba2kpk2ix8fmvdnssxdnvm0" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "commit": "4a33469cd305e581603d7ef63bc2a1f2156f2e2e", + "sha256": "0mzddqny6wpg1fv99xrvlv7rxmaifvmy5bvj4in4pldhm4cx4q1b" + } + }, + { + "ename": "elbank", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1i1cdywcbdj9ykfczbagrqdpgf3c88f1kc0mdlj8mzyvjixx7mhk", + "fetcher": "github", + "repo": "NicolasPetton/elbank", + "unstable": { + "version": [ + 20180316, + 1343 + ], + "deps": [ + "seq" + ], + "commit": "fa9bc7dec0a8fd489e90b9f178719344cc8d315a", + "sha256": "08jxxkbgn2z4kvqkhbimf3lj999yxmyi14wpq8wgbhgcf6q6zx8a" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "seq" + ], + "commit": "f494716105b1a9f4f52f43bc3dd37c9cd0309bf5", + "sha256": "0bvx6nq0gjjbjs0mzd1x1ajyjpa181z0n4kv4aknh3is210gbpbb" + } + }, + { + "ename": "elcontext", + "commit": "12bcb0bfc89c1f235e4ac5d7e308e41905725dc6", + "sha256": "1firdsrag7r02qb3kjxc3j8l9psvh117z3qwycazhxdz82z0isw7", + "fetcher": "github", + "repo": "rollacaster/elcontext", + "unstable": { + "version": [ + 20180526, + 1304 + ], + "deps": [ + "f", + "ht", + "hydra", + "osx-location", + "uuidgen" + ], + "commit": "f434ffc655e6349a4dd52285ff68a9194bcfc949", + "sha256": "0gbbnx969asq73ypc5lp4qpi4iwwfzm1mmxb1fdifl2lf18p8qwv" + } + }, + { + "ename": "elcord", + "commit": "cf2c52366a8f60b68a33a40ea92cc96e7f0933d2", + "sha256": "0a1f99mahaixx6j3lylc7w2zlq8f614m6xhd0x927afv3a6n50l6", + "fetcher": "github", + "repo": "Mstrodl/elcord", + "unstable": { + "version": [ + 20190713, + 2309 + ], + "commit": "1e1cf35cd9f0a5d6f4a3757860e066d7ac482c39", + "sha256": "0mfsd4f7494k9p9wm6wn7abcacxv8lxsfjnj6cbin7b8992rgq01" + } + }, + { + "ename": "elcouch", + "commit": "b5d9a35dd5a272a592d248993ea7e5dda8fdf0ab", + "sha256": "1dp7chvnz6gadqgyqbvdxpva3hm3sx60izsa690mp2rifjyxgqf1", + "fetcher": "github", + "repo": "DamienCassou/elcouch", + "unstable": { + "version": [ + 20180809, + 936 + ], + "deps": [ + "json-mode", + "libelcouch" + ], + "commit": "ae9b6261c5167d538914bfdbc4d34a36e50b5bc2", + "sha256": "0z9ypk2f0q38cxq6fb53kbi0flq7bi09yhzs5mkd65kxgcsicl43" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "json-mode", + "libelcouch" + ], + "commit": "d22e8cab9328966b2e2d5bc4fc17a4abbb222736", + "sha256": "0l9ah3ijlidjshwkazfcdasm3hmigw8dcyqgi9pmpv0kw9096y64" + } + }, + { + "ename": "eldoc-box", + "commit": "aac2e64f9e0d06b95bdf0dece214263f75470ea8", + "sha256": "11720hi2gvjwc4x2yrxnrhh76wf3sj3yd0vaa3sc22xa5g1wi40r", + "fetcher": "github", + "repo": "casouri/eldoc-box", + "unstable": { + "version": [ + 20190711, + 1226 + ], + "commit": "8aa2b6d35a557864ff64762774fd5b4960cbeff0", + "sha256": "08h42a3mrhcn4qi77fz2s8yz5sbsfcm8vxyc707lhj8cvl8qp9c2" + }, + "stable": { + "version": [ + 1, + 9, + 1 + ], + "commit": "8aa2b6d35a557864ff64762774fd5b4960cbeff0", + "sha256": "08h42a3mrhcn4qi77fz2s8yz5sbsfcm8vxyc707lhj8cvl8qp9c2" + } + }, + { + "ename": "eldoc-cmake", + "commit": "e19f92097e6003a893907aa46a2df755d2bf0b87", + "sha256": "1y47zhxgisvsk0kgvlwrlspmjb2a6wrxwkiahxp9fkdc58r9w7v0", + "fetcher": "github", + "repo": "ikirill/eldoc-cmake", + "unstable": { + "version": [ + 20190419, + 2244 + ], + "commit": "4453c03b5c95ff32842f13db2fc317fb0fe2f79e", + "sha256": "01jhfglj1v4p3qmhiri4k05p0dg10k59pj5608hjls6zsmxf2wbg" + } + }, + { + "ename": "eldoc-eval", + "commit": "63ba2004d3db4c5a71676dca82ad880328cf6073", + "sha256": "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c", + "fetcher": "github", + "repo": "thierryvolpiatto/eldoc-eval", + "unstable": { + "version": [ + 20190423, + 1858 + ], + "commit": "a67fe3637378dcb6c5f9e140acc8131f0d2346b3", + "sha256": "0504yyzxp1rk0br6f25395n4aa4w8ixf59vqxxb55a7agxplfpjc" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "deca5e39f31282a06531002d289258cd099433c0", + "sha256": "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk" + } + }, + { + "ename": "eldoc-overlay", + "commit": "f865b248002d6d3ba9653c2221072a4aa54cd740", + "sha256": "0nn6i89xbw8vkd5ybsnc1zpnf3ra4s8pf01jdj2i59ayjs64s28x", + "fetcher": "github", + "repo": "stardiviner/eldoc-overlay", + "unstable": { + "version": [ + 20190223, + 543 + ], + "deps": [ + "inline-docs", + "quick-peek" + ], + "commit": "cfec077d9a699c88265af2e9480d5e76a3b3f833", + "sha256": "0c16i6y7675rzif5gj9s6rz3nc59339yp4fn27a56sly42qfnh9f" + } + }, + { + "ename": "electric-case", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ch108ljzg5xkk4pkfpfxm8v2yzqk79q3h2zhzzqhsydq7r07bdn", + "fetcher": "github", + "repo": "zk-phi/electric-case", + "unstable": { + "version": [ + 20150417, + 1112 + ], + "commit": "bac64e772107e3dc721a9819f63b9ebdc28a81f7", + "sha256": "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8" + } + }, + { + "ename": "electric-operator", + "commit": "906cdf8647524bb76f644373cf8b65397d9053a5", + "sha256": "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2", + "fetcher": "github", + "repo": "davidshepherd7/electric-operator", + "unstable": { + "version": [ + 20190710, + 858 + ], + "deps": [ + "dash" + ], + "commit": "97f600ccd9244f99ac802bf8cbd4a8241fbcb892", + "sha256": "08dpn776jcypibi3x7mlkxcpsd0i65dws206zwjc19nl3qan4a11" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "dash", + "names" + ], + "commit": "21e6b84754118912768263a393442a7aefb4742b", + "sha256": "1bgz5vn4piax8jm0ixqlds0qj5my26zczaxs21fah11pwbdc0xyk" + } + }, + { + "ename": "electric-spacing", + "commit": "a78c0044f8b7a0df1af1aba407be4d7865c98c59", + "sha256": "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg", + "fetcher": "github", + "repo": "xwl/electric-spacing", + "unstable": { + "version": [ + 20161209, + 1957 + ], + "commit": "9d0f8a213133f2619a4e9dfbba3b00d4348c07b0", + "sha256": "1wzf8q2k2iwnm9b5kj16bwif7g0qc7ll3cjs20gbmcnq5xmhwx9f" + } + }, + { + "ename": "elein", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "01y5yrmm3biyrfgnl3qjfpn1xvjk2nabwjr8cls53ds697qpz5x2", + "fetcher": "github", + "repo": "remvee/elein", + "unstable": { + "version": [ + 20120120, + 1116 + ], + "commit": "d4c0c0491dbb7c90e953d7a16172107c37103605", + "sha256": "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw" + } + }, + { + "ename": "elf-mode", + "commit": "368d1ff91f310e5ffe68f872ab0a91584a41a66e", + "sha256": "0xwpaqg4mc0a0d8a4dxbd1sqzvi01gfhwr75f7i3sjzx0fj8vcwd", + "fetcher": "github", + "repo": "abo-abo/elf-mode", + "unstable": { + "version": [ + 20161009, + 748 + ], + "commit": "cd280d683cd3341d8bb31af6db7e3b74a133e6ab", + "sha256": "0cbvjbk2893ag1iy8ggixpirfiyhssm7fii96hb9jqdz874cdl0k" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "cd280d683cd3341d8bb31af6db7e3b74a133e6ab", + "sha256": "0cbvjbk2893ag1iy8ggixpirfiyhssm7fii96hb9jqdz874cdl0k" + } + }, + { + "ename": "elfeed", + "commit": "407ae027fcec444622c2a822074b95996df9e6af", + "sha256": "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9", + "fetcher": "github", + "repo": "skeeto/elfeed", + "unstable": { + "version": [ + 20190721, + 1410 + ], + "commit": "40f0be457c7b9c0ff724eafd8fa07989d24eb1a2", + "sha256": "0dqmayp0aizkvvs4h83vai3wb0rdhcg2lw1gmiqijwbwhdk7yyfi" + }, + "stable": { + "version": [ + 3, + 1, + 0 + ], + "commit": "3d1c6ecbe585f9fe6ca5a97a3fc352d68f303f9e", + "sha256": "1bzpl6lc7kq9bph4bfz1fn19207blrnhjr2g7yinhn0nnnjmxi8i" + } + }, + { + "ename": "elfeed-goodies", + "commit": "e6ebb8d23961fd9bfe101f7917caa3b405493f31", + "sha256": "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi", + "fetcher": "github", + "repo": "algernon/elfeed-goodies", + "unstable": { + "version": [ + 20190128, + 1631 + ], + "deps": [ + "ace-jump-mode", + "cl-lib", + "elfeed", + "noflet", + "popwin", + "powerline" + ], + "commit": "95b4ea632fbd5960927952ec8f3394eb88da4752", + "sha256": "0mfigkp77acqlnkj07vjzbcamwxp37zqxramp1qdf95psnz177q7" + } + }, + { + "ename": "elfeed-org", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0rnxr2q2ib6xrdx41ams1z2ivw5zhcsmqdylyvbw62h20rlmlgm8", + "fetcher": "github", + "repo": "remyhonig/elfeed-org", + "unstable": { + "version": [ + 20181015, + 1100 + ], + "deps": [ + "cl-lib", + "dash", + "elfeed", + "org", + "s" + ], + "commit": "77b6bbf222487809813de260447d31c4c59902c9", + "sha256": "0a2ibka82xq1dhy2z7rd2y9zhcj8rna8357881yz49wf55ccgm53" + } + }, + { + "ename": "elfeed-protocol", + "commit": "3f1eef8add7cd2cfefe6fad6d8e69d65696e9677", + "sha256": "1gd2ny764qsnnqf3j7rbdqhh7hqd5c0fzwxx6wacd0dpbq4w56qi", + "fetcher": "github", + "repo": "fasheng/elfeed-protocol", + "unstable": { + "version": [ + 20190616, + 301 + ], + "deps": [ + "cl-lib", + "elfeed" + ], + "commit": "92961499adfdef3c038af3dff24b435e9fb4bc1a", + "sha256": "0sybvs9wwf8bvf9615pvhgswz3g6d34hic22smcy7byrlq8hrba5" + }, + "stable": { + "version": [ + 0, + 5, + 9 + ], + "deps": [ + "cl-lib", + "elfeed" + ], + "commit": "c5faca15ccfe7e03dc4ee1372a07671c20015737", + "sha256": "1cdg111dgpphlpv2csv9nr5p2zjk3qss7bf0y8485nnzcin4ip9f" + } + }, + { + "ename": "elfeed-web", + "commit": "62459d16ee44d5fcf170c0ebc981ca2c7d4672f2", + "sha256": "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n", + "fetcher": "github", + "repo": "skeeto/elfeed", + "unstable": { + "version": [ + 20180829, + 1716 + ], + "deps": [ + "elfeed", + "simple-httpd" + ], + "commit": "40f0be457c7b9c0ff724eafd8fa07989d24eb1a2", + "sha256": "0dqmayp0aizkvvs4h83vai3wb0rdhcg2lw1gmiqijwbwhdk7yyfi" + }, + "stable": { + "version": [ + 3, + 1, + 0 + ], + "deps": [ + "elfeed", + "simple-httpd" + ], + "commit": "3d1c6ecbe585f9fe6ca5a97a3fc352d68f303f9e", + "sha256": "1bzpl6lc7kq9bph4bfz1fn19207blrnhjr2g7yinhn0nnnjmxi8i" + } + }, + { + "ename": "elgrep", + "commit": "0d9ab623b2d634936a79ff6f4b98b31825d44b6d", + "sha256": "0b8dma52zv57sh1jbrabfy6k5lzixs7f541s8dsqyrg0fzlq460j", + "fetcher": "github", + "repo": "TobiasZawada/elgrep", + "unstable": { + "version": [ + 20190729, + 811 + ], + "deps": [ + "async" + ], + "commit": "7a4e8f3c99c8a50b92881f0bf0f29a3cd6098324", + "sha256": "0v6f91y43q4hfd4rhwgwh5wqw2hmzdf1rc4rkngg1qh554ml5glz" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "c2c5858f335ac1d0013dc631e5bc2dc16d9b3198", + "sha256": "1rlj9cniwk8fzfn1i4apffrikv08r9c2dmwxhqc6nmrhfjr2rf1k" + } + }, + { + "ename": "elhome", + "commit": "527cc08a3424f87fe2e99119b931530840ad07ba", + "sha256": "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh", + "fetcher": "github", + "repo": "demyanrogozhin/elhome", + "unstable": { + "version": [ + 20161025, + 2042 + ], + "deps": [ + "initsplit" + ], + "commit": "e789e806469af3e9705f72298683c21f6c3a516d", + "sha256": "1q9glli1czbfp62aalblaak55j8rj2nl8bm8nifnnb8jrzj1qrn0" + } + }, + { + "ename": "elisp-def", + "commit": "1f027b844efdc5946d2ad80d7052a8f3b96aac3d", + "sha256": "1y29nsgjv9nb03g0jc5hb1a8k23r54ivdlv9h0a384cig8i91hsz", + "fetcher": "github", + "repo": "Wilfred/elisp-def", + "unstable": { + "version": [ + 20180806, + 723 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "368b04da68783601b52e3169312183381871cf9e", + "sha256": "0l1kj7xd4332xk821z24c14lhkpcmca5gmivpb8shlk10cvjvxjw" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "5e0d766a5db537f4e7145c2053c22829d736ceba", + "sha256": "0l9az09yw40rr2xrvf01c3idfqplddr1kk880qscnzj8v9p06l4x" + } + }, + { + "ename": "elisp-demos", + "commit": "e1bd1c7a4576d4874a8c5fc8ab2dbc65f0e5bc8c", + "sha256": "1571l826x8ixlqd3nkqgizkzrq37af13ihrm1rvgaf5gl0va9ik8", + "fetcher": "github", + "repo": "xuchunyang/elisp-demos", + "unstable": { + "version": [ + 20190720, + 1301 + ], + "commit": "8a517e8457c42735538c38555c6ac799f33855ef", + "sha256": "1wrq69sqkzkmlfrjci7wiwlfsnpwmc100hhg9a419w121kljsabc" + }, + "stable": { + "version": [ + 2019, + 7, + 20 + ], + "commit": "8a517e8457c42735538c38555c6ac799f33855ef", + "sha256": "1wrq69sqkzkmlfrjci7wiwlfsnpwmc100hhg9a419w121kljsabc" + } + }, + { + "ename": "elisp-depend", + "commit": "7ea159f0cc8c6e4b8483401a6e6687ab4ed73b7f", + "sha256": "0zpafwnm52g6v867f1ghfb492nnmm66imcwlhm5v9hhgwy3z17jm", + "fetcher": "github", + "repo": "emacsorphanage/elisp-depend", + "unstable": { + "version": [ + 20190325, + 1114 + ], + "commit": "6679da9a6be5a845bb4804224c8394a9bc62168f", + "sha256": "09xbrk1li76fwa85kvd5xpr0zswrkh51p7a62sb8g422wpaqxiwx" + } + }, + { + "ename": "elisp-docstring-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0mdh3ikn6zfd3fbmifvivqih2fsijvlzalljdvm32crs9cy6fa96", + "fetcher": "github", + "repo": "Fuco1/elisp-docstring-mode", + "unstable": { + "version": [ + 20170304, + 1615 + ], + "commit": "f512e509dd690f65133e55563ebbfd2dede5034f", + "sha256": "0al8m75p359h4n82rf0dsl22qfdg9cwwywn5pn7x6gb96c7qrqaa" + } + }, + { + "ename": "elisp-format", + "commit": "ff353f4228529c51577f7104cdf52c677be8a500", + "sha256": "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8", + "fetcher": "github", + "repo": "Yuki-Inoue/elisp-format", + "unstable": { + "version": [ + 20160508, + 952 + ], + "commit": "03cc293eb2f78ec58fc1d84279af06816a04b979", + "sha256": "17l2xsixx3p93dmx9jsg0a3xqdg19nwp1di2pymlg41pw0kdf3x3" + } + }, + { + "ename": "elisp-lint", + "commit": "61595c78ac7f15eef47bf28636ad796f74741509", + "sha256": "13cxcn0qp63f2nkv37c3w47dby9cqm4l1f8xilgpczdaxd86kd63", + "fetcher": "github", + "repo": "gonewest818/elisp-lint", + "unstable": { + "version": [ + 20180224, + 2042 + ], + "commit": "04b0d36ec0e4dc1bb54c2bf4c2d16b2af8cf6a39", + "sha256": "04hxpfgvkh4ivaxqbhnp3j68i1kqzg1v19bssnvcagll2mm4r3xg" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "9d894e99377859171ee54cb7d2b2e7f2cc7c267c", + "sha256": "11pvqskjhxxsyxmy8wllqwa0qg0j9280h0m5rzjghgsdcnlisyvq" + } + }, + { + "ename": "elisp-refs", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1pj3dm2z6m24179ibl7zhr8lhan2v2rjnm3abfciwp228piz1sfz", + "fetcher": "github", + "repo": "Wilfred/elisp-refs", + "unstable": { + "version": [ + 20190323, + 1331 + ], + "deps": [ + "dash", + "loop", + "s" + ], + "commit": "0a254e6a4dc7fa12857f8334fe6eefa72e49d1c9", + "sha256": "05lw10c11svqp5bi5pfga9iian7c3ikrsxzcr1qwcnhs3c5qjq9c" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "dash", + "loop", + "s" + ], + "commit": "0b6fcdee29d8156ef37477f4e128a148e295c62b", + "sha256": "0w7k91xf69zc0zkjrw8h8sjdjf9xq9qs5zhvajhd718lzf93564b" + } + }, + { + "ename": "elisp-sandbox", + "commit": "4b0e7c52ff8034a1c0d1e5d7bc0c58f166986b28", + "sha256": "1bazm1cf9ghh9b7jzqqgyfcalnrfg7vmxqbn4fiy2c76gbzlr2bp", + "fetcher": "github", + "repo": "joelmccracken/elisp-sandbox", + "unstable": { + "version": [ + 20131116, + 1842 + ], + "commit": "d894d68934ef09c42f72ac4e1173a0bedc23f139", + "sha256": "0r70axda1piwxznksygby9vid49q4lzjwcrhx7gl5midjs961531" + } + }, + { + "ename": "elisp-slime-nav", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c", + "fetcher": "github", + "repo": "purcell/elisp-slime-nav", + "unstable": { + "version": [ + 20160128, + 1909 + ], + "deps": [ + "cl-lib" + ], + "commit": "34938422929800839e2f935aca890cd4a229ca99", + "sha256": "00v8iqlf6pk8a0656s14jd0gv5msqy6q2af15q21f2nl4j0gl9qj" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "0e96d9f1f0d334f09414b509d44d5c000b51f432", + "sha256": "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih" + } + }, + { + "ename": "elixir-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0d25p6sal1qg1xsq5yk343afnrxa0lzpx5gsh72khnx2i8pi40vz", + "fetcher": "github", + "repo": "elixir-editors/emacs-elixir", + "unstable": { + "version": [ + 20190422, + 155 + ], + "deps": [ + "pkg-info" + ], + "commit": "694d133e847e9a6db6abd1c19850cec6d867ccce", + "sha256": "0fl3i8cxnrn70l68328jyhabgccmqbislkgp4k4ih5yll3plz31n" + }, + "stable": { + "version": [ + 2, + 3, + 1 + ], + "deps": [ + "pkg-info" + ], + "commit": "a1f4d60ec555574c945201359d2e32b183c69f4b", + "sha256": "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg" + } + }, + { + "ename": "elixir-yasnippets", + "commit": "6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c", + "sha256": "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579", + "fetcher": "github", + "repo": "hisea/elixir-yasnippets", + "unstable": { + "version": [ + 20150417, + 1239 + ], + "deps": [ + "yasnippet" + ], + "commit": "980ca7626c14ef0573bec0035ec7942796062783", + "sha256": "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "yasnippet" + ], + "commit": "6b55c88ce483932f226b6bca0212b589d1d393ea", + "sha256": "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz" + } + }, + { + "ename": "elm-mode", + "commit": "5d1a4d786b137f61ed3a1dd4ec236d0db120e571", + "sha256": "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1", + "fetcher": "github", + "repo": "jcollard/elm-mode", + "unstable": { + "version": [ + 20190222, + 2125 + ], + "deps": [ + "dash", + "f", + "let-alist", + "reformatter", + "s", + "seq" + ], + "commit": "b59b66a5369816c3a6d47b3702b9007431b7b4cf", + "sha256": "13y4xhf4czir4fdl36lk9zhn6292x0lbxhdywpq55fy9ivz4pk6q" + }, + "stable": { + "version": [ + 0, + 20, + 3 + ], + "deps": [ + "f", + "let-alist", + "s" + ], + "commit": "29f50a940113d793a21998f3bb414fdd9b0c5daa", + "sha256": "02c7xl9w81140l7p9kywr5qwsdyv92nxdhzqcxjk0r09x7s0cvsk" + } + }, + { + "ename": "elm-test-runner", + "commit": "064db8f60438927255458a7fbd8ae871f8264d67", + "sha256": "1axzp93a0xmbprskql4bdfnxnmcpfnq6xf7c4x7cgn5pbd1p6inz", + "fetcher": "github", + "repo": "juanedi/elm-test-runner", + "unstable": { + "version": [ + 20190105, + 1923 + ], + "commit": "a31d567a64d86d36e3675347abd696824a731e0c", + "sha256": "15kgz44ylni4anz461hihrhvg24jvd7jzykqdjacsznyphfv94m9" + } + }, + { + "ename": "elm-yasnippets", + "commit": "340664dd1c57b539de191dd6faa9eb8ed9ae6914", + "sha256": "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb", + "fetcher": "github", + "repo": "abingham/elm-yasnippets", + "unstable": { + "version": [ + 20160401, + 524 + ], + "deps": [ + "yasnippet" + ], + "commit": "45a11a0cef0c36633fb3477d3dc4167e82779ba4", + "sha256": "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968" + } + }, + { + "ename": "elmacro", + "commit": "566cc5bc0f71c5a4191ad93b917dc268f6e1a2da", + "sha256": "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz", + "fetcher": "github", + "repo": "Silex/elmacro", + "unstable": { + "version": [ + 20180628, + 1411 + ], + "deps": [ + "dash", + "s" + ], + "commit": "89b9b0feabafd01fee48111d67131c4c9b5fed9a", + "sha256": "06wkzafh6vbcjf0m3sl253mgcq32p8cdv7vsfmyx51baa36938ha" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "9ed19a362b63d9c7436a78feb91bc694194cfefe", + "sha256": "00qqa9p9z50gxna4qrsvph4nj41gldl1qj210ywk3lgwn0jjm0k9" + } + }, + { + "ename": "elmine", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1xkx1wwrzd2dl13z8n4qh3gl202j0i9crab5b3788z8mq0g4v4bn", + "fetcher": "github", + "repo": "leoc/elmine", + "unstable": { + "version": [ + 20190212, + 1740 + ], + "deps": [ + "s" + ], + "commit": "2f020e41940b182deeca39786a3092a2d68b5eb7", + "sha256": "0x2av6zjd4kkyzxm2hcwjx9x8j2fzqg85pka57hqpk2fhfhsmy3s" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "091f61c70c9e7630a74b7b127488051d143a35e7", + "sha256": "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3" + } + }, + { + "ename": "elnode", + "commit": "987a93afa134fdda466fbdc6dd9c48a572b0be61", + "sha256": "11avrs18cjlk6v2y4y202ay38375pdzh49lizy7w1w2mwy0q40am", + "fetcher": "github", + "repo": "jcaw/elnode", + "unstable": { + "version": [ + 20190702, + 1509 + ], + "deps": [ + "creole", + "dash", + "db", + "fakir", + "kv", + "noflet", + "s", + "web" + ], + "commit": "29ef0f51a65a24fca7fdcdb4140d2e4556e4bb29", + "sha256": "1bks7aakhvdab56gbsa44ca9kbilajisdd9bns485d9wr62d2lgj" + } + }, + { + "ename": "elog", + "commit": "4f3d560bf56b1b4e7540dc5ae16258895c106f1f", + "sha256": "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd", + "fetcher": "github", + "repo": "lujun9972/elog", + "unstable": { + "version": [ + 20160724, + 2255 + ], + "deps": [ + "eieio" + ], + "commit": "a67237d9813c7591614d95e2ef31cc5e5ed3f31b", + "sha256": "0alg5nbmq56zsc032pvah92h5fw155fbfjc275k9vbh915hs6y0w" + } + }, + { + "ename": "elogcat", + "commit": "4855c75dc22a7089cf9e4fa80dbe0ccd2830fe83", + "sha256": "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia", + "fetcher": "github", + "repo": "youngker/elogcat.el", + "unstable": { + "version": [ + 20151121, + 41 + ], + "deps": [ + "dash", + "s" + ], + "commit": "4f311b7a07565b0d060334bc68edb36f2bff703f", + "sha256": "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15" + } + }, + { + "ename": "eloud", + "commit": "f1e80fba9bc541594129756f5c668f3192919bc8", + "sha256": "1h8wd5mfi1cn9bzrckgc5mdrr5jkqsx92ay008p650wvjl689rn2", + "fetcher": "github", + "repo": "smythp/eloud", + "unstable": { + "version": [ + 20190706, + 1707 + ], + "commit": "b8f4af1f652268d73281de91fb333b5984970847", + "sha256": "0sdzn8546ww3x4q4c9h69i9wdr51mjq19vi6r3bbba8iwl2rf67w" + } + }, + { + "ename": "elpa-audit", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "18a8n22g53d8fxzr3snb2px28gvxbkx44grrx8lywaprz1f1lwdi", + "fetcher": "github", + "repo": "purcell/elpa-audit", + "unstable": { + "version": [ + 20141023, + 1331 + ], + "commit": "727da50e626977351aff2675b6540a36818bbbe6", + "sha256": "0wlhdzsrlj266jfvp925zrgzg2mxfba93klgky0hc8zialmmb50b" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "a7a1806278c73ea6cb6d235714e7bc8088971df5", + "sha256": "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7" + } + }, + { + "ename": "elpa-clone", + "commit": "11861edd9c7f9deebd44fd1f8ef648e7a04caf2b", + "sha256": "172gpmpwf75y41n3v05l47w34x83vy63bqk97fd8a6b4dkj91lqa", + "fetcher": "github", + "repo": "dochang/elpa-clone", + "unstable": { + "version": [ + 20190109, + 2340 + ], + "deps": [ + "cl-lib" + ], + "commit": "5dddbab4c27ec6aca541a1f8e9792617f10fc325", + "sha256": "17lbdgwg97x8q8dbghylr2j0nwb72mpfl679qb0pl9184ih27qfc" + }, + "stable": { + "version": [ + 0, + 0, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "5dddbab4c27ec6aca541a1f8e9792617f10fc325", + "sha256": "17lbdgwg97x8q8dbghylr2j0nwb72mpfl679qb0pl9184ih27qfc" + } + }, + { + "ename": "elpa-mirror", + "commit": "d64ce7042c45f29fb394be25ce415912182bac8b", + "sha256": "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8", + "fetcher": "github", + "repo": "redguardtoo/elpa-mirror", + "unstable": { + "version": [ + 20190622, + 730 + ], + "commit": "468adfff8dedb024b90af0e66434dc50de259714", + "sha256": "0cr8pqbbjaxx48zal8cmmjddhapzjg4mvaspn8d3pygz4q7z5lba" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "commit": "83a38b5721c459d311833522903de96f874e1a4e", + "sha256": "0j2nk1nhbihfqajkmzp3501mhv5617qhb7qbj46qz8azs8a1dvri" + } + }, + { + "ename": "elpher", + "commit": "df2162816fed4d5da7ee5adafbf547eed8815418", + "sha256": "1csy26ra6kgm2rnf1s6bj254r18zkaf6y7kb3rrjm1msw3vjvvr2", + "fetcher": "github", + "repo": "tgvaughan/elpher", + "unstable": { + "version": [ + 20190710, + 755 + ], + "commit": "f0b76ab6fa09b0e29ff68ff72a7d5c73dcca6adb", + "sha256": "0aryai4m2ngffgwbr3dvi27jqcdnzj48w7f54wh5lr703wjmqpig" + }, + "stable": { + "version": [ + 1, + 4, + 6 + ], + "commit": "0e8eb2e0c919a07aa5db733d02e7669ccfb4276d", + "sha256": "07xansmhn4l0b9ghzf56vyx8cqg0q01aq3pz5ikx2i19v5f0rc66" + } + }, + { + "ename": "elpl", + "commit": "b1e3a1b614f6ad19bcfaa414d9faf0b70236aa3d", + "sha256": "0lzxl19mr56p28jh99k1sp1f1r9idl32im6b847sbw6mqx47p5mx", + "fetcher": "github", + "repo": "twlz0ne/elpl", + "unstable": { + "version": [ + 20190704, + 1130 + ], + "commit": "341dd89aa2a0315ec63d476d79057be8b5f5386f", + "sha256": "04m9dinhgwgqry7yblc9wryv8sikprqflijjfdk8319c7kiddl3h" + } + }, + { + "ename": "elpy", + "commit": "1d8fcd8745bb15402c9f3b6f4573ea151415237a", + "sha256": "1ri3dwnkw005plj1g5grmmq9np41sqk4s2v18pwsvr18ysnq6nnr", + "fetcher": "github", + "repo": "jorgenschaefer/elpy", + "unstable": { + "version": [ + 20190725, + 2259 + ], + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "s", + "yasnippet" + ], + "commit": "7acdd14eaec4b123ae1c16ead59c91adcf7f9775", + "sha256": "182zs3b7s0n4wsz0k1wybmd3fa4x9m7q5j8n7jpbwa3m0v3vvyk7" + }, + "stable": { + "version": [ + 1, + 29, + 1 + ], + "deps": [ + "company", + "find-file-in-project", + "highlight-indentation", + "pyvenv", + "s", + "yasnippet" + ], + "commit": "d98ee26f564e33c9acf233862734e72200bd3703", + "sha256": "19sd5p03rkp5yibq1ilwisq8jlma02ks2kdc3swy6r27n4hy90xf" + } + }, + { + "ename": "elpygen", + "commit": "e670bd79a85c4e2a9ca3355feb8aaefa709f49cb", + "sha256": "01fak1dz9mna3p4c2r0scb0j10qk3lvpq270jy6rvzlcbwri4akl", + "fetcher": "github", + "repo": "vkazanov/elpygen", + "unstable": { + "version": [ + 20171225, + 1736 + ], + "deps": [ + "yasnippet" + ], + "commit": "21929c997a05968f9eefe52b85a76ceaab3b0d81", + "sha256": "093ck4dkdvbgafb1bmkmszg1ba81ns5kjbk2iq2b5p9dvfcjjr3k" + } + }, + { + "ename": "elquery", + "commit": "121f7d2091b83143402b44542db12e8f78275103", + "sha256": "19yik9w4kcj7i9d3bwwdszznwcrh75hxd0540iqk5by861z5f3zr", + "fetcher": "github", + "repo": "AdamNiederer/elquery", + "unstable": { + "version": [ + 20180917, + 2217 + ], + "deps": [ + "dash", + "s" + ], + "commit": "eac429d8550fbf1582c57d5e16fed9f320d6eb30", + "sha256": "1jkbrv5r5vzqjhadb4dcgks47gaj7aavzdkzc5gjn5zv5fmm1in2" + } + }, + { + "ename": "elsa", + "commit": "f126c49fe01a1c21aca0f45643d44ecf4c3ad95b", + "sha256": "0g8l61fg9krqakp6fjvm6jr1lss3mll707rknhm5d2grr6ik3lvl", + "fetcher": "github", + "repo": "emacs-elsa/Elsa", + "unstable": { + "version": [ + 20190331, + 1558 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "trinary" + ], + "commit": "eb88fb357e14777cf4ae71054791d1482aaeef29", + "sha256": "0lh30zm5k7x7sq6yyzf91f5ajp71bi0nqqb0f6ns25bjpc6vz45l" + } + }, + { + "ename": "elscreen", + "commit": "e6140694c1dea0a573586d23d1f63d46c9b22936", + "sha256": "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s", + "fetcher": "github", + "repo": "knu/elscreen", + "unstable": { + "version": [ + 20181009, + 451 + ], + "commit": "cc58337faf5ba1eae7e87f75f6ff3758675688f2", + "sha256": "15kffci7qlhjwz1rlr0zg0z9rq0vlsxy295dvg96wiiz4fvs4jk2" + }, + "stable": { + "version": [ + 20180321 + ], + "commit": "cc58337faf5ba1eae7e87f75f6ff3758675688f2", + "sha256": "15kffci7qlhjwz1rlr0zg0z9rq0vlsxy295dvg96wiiz4fvs4jk2" + } + }, + { + "ename": "elscreen-buffer-group", + "commit": "9c6fedb7b6ef58089da4b35ad115f699b4b24ff2", + "sha256": "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v", + "fetcher": "github", + "repo": "jeffgran/elscreen-buffer-group", + "unstable": { + "version": [ + 20190621, + 225 + ], + "deps": [ + "cl-lib", + "elscreen" + ], + "commit": "c78fc19b8a80415997b191fc08bf6768449ea12e", + "sha256": "1g8dm3vqgws9grhl435s7f1n26vpgyp5kvfryv98idqa7aqj3wvq" + } + }, + { + "ename": "elscreen-fr", + "commit": "18730986df5eb9816eec7ad479abe1e338d3c66f", + "sha256": "1kmga1zz9mb3hxd2sxja2vz45pix5a52yl0g9z4vmak32x9rgqrm", + "fetcher": "github", + "repo": "rocher/elscreen-fr", + "unstable": { + "version": [ + 20160920, + 953 + ], + "deps": [ + "elscreen", + "seq" + ], + "commit": "6dc77e1d3f17b3f76da5ccf92b715572aa55fb85", + "sha256": "18d4mz6sk1zvcl80115fy0ar358dqkwb3khgxsn71a67yxg9db15" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "elscreen", + "seq" + ], + "commit": "b9c11f80d277086d5d5bf88623e15fc7adbbbe3c", + "sha256": "1dz8jqd2agh06hya59vbybrmgyhyz2rk6c9panrm49w37v0bwksb" + } + }, + { + "ename": "elscreen-mew", + "commit": "47404ea3cfb591b780ca7e31095951a708b0a6b7", + "sha256": "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4", + "fetcher": "github", + "repo": "masutaka/elscreen-mew", + "unstable": { + "version": [ + 20160504, + 1835 + ], + "deps": [ + "elscreen" + ], + "commit": "c90a23441d836da14a1cb12788432308ba58e2b6", + "sha256": "167kgbnh5q3pqirv0f7wpjn7yc76k8mz9qx45i7d4scmx8952d2g" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "elscreen" + ], + "commit": "89871fad690ae161dc076e16ef481b1965612077", + "sha256": "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c" + } + }, + { + "ename": "elscreen-multi-term", + "commit": "7a24477cf83df7da931fa33c622ef720839529d2", + "sha256": "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n", + "fetcher": "github", + "repo": "wamei/elscreen-multi-term", + "unstable": { + "version": [ + 20151022, + 233 + ], + "deps": [ + "elscreen", + "multi-term" + ], + "commit": "7b6048a0dd80f69460a62bbc6f1af8856141a5ea", + "sha256": "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51" + } + }, + { + "ename": "elscreen-separate-buffer-list", + "commit": "9f5e5c8e2cd45a25e47c74bef59b9114aa7685eb", + "sha256": "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk", + "fetcher": "github", + "repo": "wamei/elscreen-separate-buffer-list", + "unstable": { + "version": [ + 20161107, + 358 + ], + "deps": [ + "elscreen" + ], + "commit": "7652d827aa1b8c1b04303c5b4b0bda5e8f85565e", + "sha256": "1cpmpms3r9lywmxgciz4xq7vjw2c1mxmpd89shssqck16563zwxf" + } + }, + { + "ename": "elscreen-tab", + "commit": "06a8348c6911936e16a98cf216578ea148e20e5d", + "sha256": "18krbs462cwi3pf72kn1zf1jf4gv9n3ffdg4v5bgb19i69sq7spi", + "fetcher": "github", + "repo": "aki-s/elscreen-tab", + "unstable": { + "version": [ + 20190203, + 1619 + ], + "deps": [ + "dash", + "elscreen" + ], + "commit": "da79fb0b9ead2402662ff8e163039635aaae2413", + "sha256": "18zzp7ziawb2qb5qlmn9b85pfx4h6ldfxdhv9nr72njgrfp1q5al" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "dash", + "elscreen" + ], + "commit": "29d7a65c3e134dd476049c9aebc8d029238e71f7", + "sha256": "0303i61m1qg65d3i3hsy7pzdhw0icpx3im99qkfmy6lxi4h9nd0p" + } + }, + { + "ename": "elvish-mode", + "commit": "0fc724072702a565af471f9ae523a1e6e48e3f04", + "sha256": "1f5pyadmbh2ldd51srvlhbjq2849f1f0s8qmpjnsz9bc986yga34", + "fetcher": "github", + "repo": "ALSchwalm/elvish-mode", + "unstable": { + "version": [ + 20180809, + 1612 + ], + "commit": "c3a7e31564256b9755b1ab9fb40d32ad78cd1ad2", + "sha256": "0dxa8g49fq4h1ab3sawnbgy1fxaxxsdac3l6im34qfw4km8brp9y" + } + }, + { + "ename": "elwm", + "commit": "0eb45a6141b797243973695be4c0582c9ad6965d", + "sha256": "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9", + "fetcher": "github", + "repo": "Fuco1/elwm", + "unstable": { + "version": [ + 20150817, + 1007 + ], + "deps": [ + "dash" + ], + "commit": "c33b183f006ad476c3a44dab316f580f8b369930", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "dash" + ], + "commit": "c33b183f006ad476c3a44dab316f580f8b369930", + "sha256": "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2" + } + }, + { + "ename": "elx", + "commit": "57a2fb9524df3fdfdc54c403112e12bd70888b23", + "sha256": "008nwa2gn3d2ayr8023pxyvph52gh9m56f77h41hp8hcw6hbdwrz", + "fetcher": "github", + "repo": "emacscollective/elx", + "unstable": { + "version": [ + 20190710, + 1415 + ], + "commit": "457fca9d4bb0429b08c8f4e675f8b1f3e48297e3", + "sha256": "0vpvdnmg95nk9bmrjysbpfwbyzxhipdqh9xfphxi2n63sd0vzk7z" + }, + "stable": { + "version": [ + 1, + 2, + 8 + ], + "commit": "457fca9d4bb0429b08c8f4e675f8b1f3e48297e3", + "sha256": "0vpvdnmg95nk9bmrjysbpfwbyzxhipdqh9xfphxi2n63sd0vzk7z" + } + }, + { + "ename": "emacs-setup", + "commit": "abb7101b2d48af56af09d1dc85c540300dba7b3c", + "sha256": "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh", + "fetcher": "github", + "repo": "echosa/emacs-setup", + "unstable": { + "version": [ + 20120727, + 1426 + ], + "commit": "c783ec13e3b39093fffb6f6d64dccdce8ce4d375", + "sha256": "1crpjcxwanbrd1yd4lbb5lmqwvx1mczya7ff2qr3phk497czpsqm" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "cc36ad5318c6c0e65d1b9ff8dff5ea2437675de2", + "sha256": "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8" + } + }, + { + "ename": "emacsagist", + "commit": "07612d46faebb28e1eeb8ddae2ac20e2dc0175f6", + "sha256": "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64", + "fetcher": "github", + "repo": "echosa/emacsagist", + "unstable": { + "version": [ + 20140331, + 1830 + ], + "deps": [ + "cl-lib" + ], + "commit": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "aba342ba59c254a88017f25e9fb7a8cd6f2fda83", + "sha256": "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2" + } + }, + { + "ename": "emacsc", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk", + "fetcher": "github", + "repo": "knu/emacsc", + "unstable": { + "version": [ + 20161028, + 1706 + ], + "commit": "421e0c567358769e32f670ae8e949d99abae0c28", + "sha256": "0zmb1qdbdlrycari1r1g65c9px357wz4f2gvmcacg83504mmf3d8" + }, + "stable": { + "version": [ + 1, + 2, + 20131027 + ], + "commit": "69607bdc3a0c070e924a3bcac93180f917992368", + "sha256": "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j" + } + }, + { + "ename": "emacsist-view", + "commit": "d2157e14d68fa2875c6d5c40c20a39b9a2431c10", + "sha256": "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99", + "fetcher": "github", + "repo": "lujun9972/emacsist-view", + "unstable": { + "version": [ + 20160426, + 1223 + ], + "commit": "f67761259ed779a9bc95c9a4e0474522990c5c6b", + "sha256": "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6" + } + }, + { + "ename": "emacsql", + "commit": "9c3b6175b5c64f03b0b9dfdc10f393081d681309", + "sha256": "0c2d0kymzr53wh87fq1wy2x5ahfsymz0cw8qbrqx0k613l3mpr38", + "fetcher": "github", + "repo": "skeeto/emacsql", + "unstable": { + "version": [ + 20190625, + 1859 + ], + "commit": "a118b6c95af1306f0288a383d274b5dd93efbbda", + "sha256": "1qz74rk2pskpc1k6kdpqv823i5zc39i885rww05n8lrqw456cpn0" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "commit": "8c5f095458aa37e4146b80d9319ee63571734127", + "sha256": "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g" + } + }, + { + "ename": "emacsql-mysql", + "commit": "9cc47c05fb0d282531c9560252090586e9f6196e", + "sha256": "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy", + "fetcher": "github", + "repo": "skeeto/emacsql", + "unstable": { + "version": [ + 20171219, + 227 + ], + "deps": [ + "emacsql" + ], + "commit": "a118b6c95af1306f0288a383d274b5dd93efbbda", + "sha256": "1qz74rk2pskpc1k6kdpqv823i5zc39i885rww05n8lrqw456cpn0" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "emacsql" + ], + "commit": "8c5f095458aa37e4146b80d9319ee63571734127", + "sha256": "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g" + } + }, + { + "ename": "emacsql-psql", + "commit": "9cc47c05fb0d282531c9560252090586e9f6196e", + "sha256": "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3", + "fetcher": "github", + "repo": "skeeto/emacsql", + "unstable": { + "version": [ + 20171219, + 227 + ], + "deps": [ + "emacsql" + ], + "commit": "a118b6c95af1306f0288a383d274b5dd93efbbda", + "sha256": "1qz74rk2pskpc1k6kdpqv823i5zc39i885rww05n8lrqw456cpn0" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "emacsql" + ], + "commit": "8c5f095458aa37e4146b80d9319ee63571734127", + "sha256": "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g" + } + }, + { + "ename": "emacsql-sqlite", + "commit": "3cfa28c7314fa57fa9a3aaaadf9ef83f8ae541a9", + "sha256": "1y81nabzzb9f7b8azb9giy23ckywcbrrg4b88gw5qyjizbb3h70x", + "fetcher": "github", + "repo": "skeeto/emacsql", + "unstable": { + "version": [ + 20190727, + 1710 + ], + "deps": [ + "emacsql" + ], + "commit": "a118b6c95af1306f0288a383d274b5dd93efbbda", + "sha256": "1qz74rk2pskpc1k6kdpqv823i5zc39i885rww05n8lrqw456cpn0" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "emacsql" + ], + "commit": "8c5f095458aa37e4146b80d9319ee63571734127", + "sha256": "1c84gxr1majqj4b59wgdy3lzm3ap66w9qsrnkx8hdbk9895ak81g" + } + }, + { + "ename": "emacsshot", + "commit": "d94b48f1d01c6f0e7bb2169a4a3181eae3f79c23", + "sha256": "1v5cd278fls5hib6f4arv0g5mzjhv22lslbb9s2p274dk4pn1ggc", + "fetcher": "gitlab", + "repo": "marcowahl/emacsshot", + "unstable": { + "version": [ + 20190715, + 1808 + ], + "commit": "1b5c080135b963c9a7f2d34230b3134a9fb3d345", + "sha256": "0bklypf31y374xqhq3b24srfbr95bi3km9nrxy2wwcak8ia20pg5" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "f2f8996d877ece5469c459c9bb7f33fe43c95822", + "sha256": "00q344vgihl2s0snibfwsjvxqkbvy2jlqnnid7qw5gcni673b2hl" + } + }, + { + "ename": "emamux", + "commit": "6de1ed3dfccb9f7e7b8586e8334af472a4988840", + "sha256": "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz", + "fetcher": "github", + "repo": "syohex/emacs-emamux", + "unstable": { + "version": [ + 20170227, + 337 + ], + "commit": "39f57786b2cdd3844888df42d71c7bd251f07158", + "sha256": "184669qynz1m93s9nv5pdc8m4bnvqa56wz472nsq4xhixz44jjsv" + }, + "stable": { + "version": [ + 0, + 14 + ], + "commit": "573dd1cf18584a1fd240efb16c7726b6fd790b73", + "sha256": "19y69qw79miim9cz5ji54gwspjkcp9g2c1xr5s7jj2fiabnxax6b" + } + }, + { + "ename": "emamux-ruby-test", + "commit": "f11759710881bdf5a77bd309acb03a6699cc7fd6", + "sha256": "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm", + "fetcher": "github", + "repo": "syohex/emamux-ruby-test", + "unstable": { + "version": [ + 20130812, + 1639 + ], + "deps": [ + "emamux", + "projectile" + ], + "commit": "23b73c650573b340351a919da3da416acfc2ac84", + "sha256": "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn" + } + }, + { + "ename": "emaps", + "commit": "4faeda02aabc0b6c5003cdf5d1fdfca0fd71b0d7", + "sha256": "151rh6lyqi0ps2w022shzjj67nkg6y4m1nfj90qyc7jgl64qb9qw", + "fetcher": "github", + "repo": "GuiltyDolphin/emaps", + "unstable": { + "version": [ + 20180712, + 1916 + ], + "commit": "823b8f72e6459c9f1a5dd62451ee4005ef71d955", + "sha256": "1g9637j8f65q3l6k4aw5p847m891irh74kg3pa2p9w0ppsa6n3jm" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "823b8f72e6459c9f1a5dd62451ee4005ef71d955", + "sha256": "1g9637j8f65q3l6k4aw5p847m891irh74kg3pa2p9w0ppsa6n3jm" + } + }, + { + "ename": "ember-mode", + "commit": "9ac1eef4ad87b1b6b6d8e63d340ba03dc013425b", + "sha256": "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx", + "fetcher": "github", + "repo": "madnificent/ember-mode", + "unstable": { + "version": [ + 20190403, + 1652 + ], + "deps": [ + "cl-lib" + ], + "commit": "3510afc5023d760a66aef260ba601c15a31dc878", + "sha256": "06y5nd2fs0xskjxhd1dn4g9y03i7xamv7jiwq8cm0c2mli5pjpr1" + } + }, + { + "ename": "ember-yasnippets", + "commit": "6c37a13d56e9a0a4e7e2c11349ed87610a0f6b2c", + "sha256": "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6", + "fetcher": "github", + "repo": "ronco/ember-yasnippets.el", + "unstable": { + "version": [ + 20160526, + 1658 + ], + "deps": [ + "yasnippet" + ], + "commit": "3b5bd01569646237bf1b540d097e12f9118b67f4", + "sha256": "0g7hp1aq0zznbhd234dpbblnagn34fxdasc5v4lfhm5ykw5xyb5x" + } + }, + { + "ename": "embrace", + "commit": "e8f07e3b5ba4ec4b0b79fba5a2cca5a3986218b6", + "sha256": "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc", + "fetcher": "github", + "repo": "cute-jumper/embrace.el", + "unstable": { + "version": [ + 20171031, + 1833 + ], + "deps": [ + "cl-lib", + "expand-region" + ], + "commit": "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2", + "sha256": "1m0qyipkp5ydgcav8d0m58fbj1gilipbj7g8mg40iajr8wfqcjdc" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "cl-lib", + "expand-region" + ], + "commit": "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2", + "sha256": "1m0qyipkp5ydgcav8d0m58fbj1gilipbj7g8mg40iajr8wfqcjdc" + } + }, + { + "ename": "emidje", + "commit": "5d64b3b42b4b9acd3e9d84921df287f3217db83e", + "sha256": "1p2aa4wl2465gm7ljgr5lbvxfgx0g1w1170zdv3596hi07mccabs", + "fetcher": "github", + "repo": "nubank/emidje", + "unstable": { + "version": [ + 20190209, + 1726 + ], + "deps": [ + "cider", + "magit-popup", + "seq" + ], + "commit": "7e92f053964d925c97dc8cca8d4d70a3030021db", + "sha256": "0xg2bw9vzwvkx6xh4k2n6qhyhqg5iifl6aa0s7svvdnw35x00hv2" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cider", + "seq" + ], + "commit": "e8577698bade8a8ea6bf394ab9a441e982058f19", + "sha256": "1yz84dnd7jmnhgyssk405mw1c4p55fvfxwx03libj4ik1wq8nj8i" + } + }, + { + "ename": "emlib", + "commit": "46b3738975c8082d9eb6da9fe733edb353aa7069", + "sha256": "02l135v3pqpf6ngfq11h4rc843iwh3dgi4rr3gcc63pjl4ws2w2c", + "fetcher": "github", + "repo": "narendraj9/emlib", + "unstable": { + "version": [ + 20161126, + 1523 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "dea2af00f551ea580c641d86dd69219f7d4f3685", + "sha256": "0p52pkq3wvnhg0l7cribhc39zl1cjjxgw9qzpmwd0jw1g1lslwbm" + } + }, + { + "ename": "emmet-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr", + "fetcher": "github", + "repo": "smihica/emmet-mode", + "unstable": { + "version": [ + 20180613, + 341 + ], + "commit": "1acb821e0142136344ccf40c1e5fb664d7db2e70", + "sha256": "1p25h191bm0h5b3w5apg7wks51k7pb7h4dlww4jbl9ri4d33fzcl" + }, + "stable": { + "version": [ + 1, + 0, + 8 + ], + "commit": "bf76d717c60f33d223cdac35513105e9f9244885", + "sha256": "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi" + } + }, + { + "ename": "emms", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "1xpry8h96gvjnc0v8x0vk5dnmlq1r7m3ljpampdwv9pfwl95fh94", + "fetcher": "git", + "url": "https://git.savannah.gnu.org/git/emms.git", + "unstable": { + "version": [ + 20190620, + 1526 + ], + "deps": [ + "cl-lib" + ], + "commit": "e70459caaadeb715116abb45ddf5e98921d46c14", + "sha256": "1b5krxc55ac5jsvbsikczh1shl5jgra58b306lhhsidmbmlisyx6" + }, + "stable": { + "version": [ + 5, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "2253146e5607e12f62b0c1c474fded1219da2d5d", + "sha256": "0r0ai788mn5f3kf5wrp6jywncl2z3gpjif41pm5m0892y7l0vh9i" + } + }, + { + "ename": "emms-bilibili", + "commit": "533f96d1e68eda20b2d2e7f8eb3e7fa118904970", + "sha256": "1mx3fn2x526np8awjn0ydsqh59b4aznf3sig410fbr6wk6pa6y47", + "fetcher": "github", + "repo": "0xDEATHCODE/emms-bilibili", + "unstable": { + "version": [ + 20180103, + 418 + ], + "deps": [ + "cl-lib" + ], + "commit": "294bca3dfc42fe3a55fb326ab39bc0fcfc8c5090", + "sha256": "0q8z3q1agwgb3d0kpvac7a98p3q4ljjnv404cf9kihjjfxvh4vm5" + } + }, + { + "ename": "emms-info-mediainfo", + "commit": "d08c28c6ff4caf14f0bf4b0f40f16660dac2d5d9", + "sha256": "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w", + "fetcher": "github", + "repo": "fgallina/emms-info-mediainfo", + "unstable": { + "version": [ + 20131223, + 1300 + ], + "deps": [ + "emms" + ], + "commit": "bce16eae9eacd38719fea62a9755225a888da59d", + "sha256": "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n" + } + }, + { + "ename": "emms-mark-ext", + "commit": "36b7292160d3dab1a684d09c848a6b0f68b31add", + "sha256": "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081", + "fetcher": "github", + "repo": "vapniks/emms-mark-ext", + "unstable": { + "version": [ + 20130529, + 327 + ], + "deps": [ + "emms" + ], + "commit": "ec68129e3e9e469e5bf160c6a1b7030e322f3541", + "sha256": "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l" + } + }, + { + "ename": "emms-mode-line-cycle", + "commit": "dab676acd774616a32a0373f30647f3cb4522afc", + "sha256": "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca", + "fetcher": "github", + "repo": "momomo5717/emms-mode-line-cycle", + "unstable": { + "version": [ + 20160221, + 1120 + ], + "deps": [ + "emms" + ], + "commit": "2c2f395e484a1d345050ddd61ff5fab71a92a6bc", + "sha256": "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "deps": [ + "emms" + ], + "commit": "2c2f395e484a1d345050ddd61ff5fab71a92a6bc", + "sha256": "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp" + } + }, + { + "ename": "emms-player-mpv-jp-radios", + "commit": "09ba6da5057061f055d4a3212d167f9666618d4f", + "sha256": "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv", + "fetcher": "github", + "repo": "momomo5717/emms-player-mpv-jp-radios", + "unstable": { + "version": [ + 20180325, + 1117 + ], + "deps": [ + "cl-lib", + "emms", + "emms-player-simple-mpv" + ], + "commit": "f6b37f5878c741124d5fca43c5b80af873541edd", + "sha256": "1sxzh1bhdwln7kcn07agayyhmgyrbmmhgc3f85336xybc6ljpqs8" + } + }, + { + "ename": "emms-player-simple-mpv", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1lv1rhd5vya068mnnaysfh56raar79hf2g413ysrk3yhyajk6316", + "fetcher": "github", + "repo": "momomo5717/emms-player-simple-mpv", + "unstable": { + "version": [ + 20180316, + 1549 + ], + "deps": [ + "cl-lib", + "emms" + ], + "commit": "101d120ccdee1c2c213fd2f0423c858b21649c00", + "sha256": "1i6rxkm0ra0jbkkwgkwxg3vk5xfl794h1gkgnlpscynz0v94b6ll" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "cl-lib", + "emms" + ], + "commit": "bcc056364df5f405716006a8b7bb90102a57f62f", + "sha256": "0kz31qsn3nrpi8r31nlxlkkkah0qcdkq9a9i9ypv4ky7pvnzx6m5" + } + }, + { + "ename": "emms-soundcloud", + "commit": "19e423525255371cf479842885eca07e801f6d00", + "sha256": "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi", + "fetcher": "github", + "repo": "osener/emms-soundcloud", + "unstable": { + "version": [ + 20131221, + 1145 + ], + "deps": [ + "emms", + "json" + ], + "commit": "87e5cbf9609d1f26c24dc834fdeb78b33d453c2b", + "sha256": "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld" + } + }, + { + "ename": "emms-state", + "commit": "8f2798e22c6ccbadf73e65d8a8d901e47f55cb83", + "sha256": "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i", + "fetcher": "github", + "repo": "alezost/emms-state.el", + "unstable": { + "version": [ + 20160504, + 805 + ], + "deps": [ + "emms" + ], + "commit": "77930300222333b71eafd495cc1fee3a3585eb23", + "sha256": "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "emms" + ], + "commit": "77930300222333b71eafd495cc1fee3a3585eb23", + "sha256": "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi" + } + }, + { + "ename": "emoji-cheat-sheet-plus", + "commit": "ffbfae9577673ef8d50b55624f94288e315deba4", + "sha256": "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv", + "fetcher": "github", + "repo": "syl20bnr/emacs-emoji-cheat-sheet-plus", + "unstable": { + "version": [ + 20150617, + 1331 + ], + "deps": [ + "helm" + ], + "commit": "96a003127d646a2683d81ca906a17eace0a6413e", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "deps": [ + "helm" + ], + "commit": "96a003127d646a2683d81ca906a17eace0a6413e", + "sha256": "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk" + } + }, + { + "ename": "emoji-display", + "commit": "2c34abbda5acbd52f4e79ce9f87f9ae0fa1e48d5", + "sha256": "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9", + "fetcher": "github", + "repo": "ikazuhiro/emoji-display", + "unstable": { + "version": [ + 20140117, + 1013 + ], + "commit": "bb4217f6400151a9cfa6d4524b8427f01feb5193", + "sha256": "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229" + } + }, + { + "ename": "emoji-fontset", + "commit": "60df435eb82fcc9a8a02a0a271bb6a2d5a161bc4", + "sha256": "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d", + "fetcher": "github", + "repo": "zonuexe/emoji-fontset.el", + "unstable": { + "version": [ + 20160726, + 1924 + ], + "commit": "10be897fa5165fd40fd35a89e38c759e008fa775", + "sha256": "1aanl5dd2m8jlyq27ymhc6l9i00cpi30wwhpaf67dlvk9gk89f64" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "e460c9a08e48ec4103e38a7a04acae20880149a9", + "sha256": "0xdlqsrwdf0smi5z9rjj46nwrrfpl0gzanf0jmdg8zzn62l6ldck" + } + }, + { + "ename": "emoji-recall", + "commit": "8f03b34d3e8e5edf9888c71b6e4bd2e1a5aec016", + "sha256": "06cahk2h6q3vlw2p4jmjrpzycxpm884p31yhbp77lagkqhs2fzbk", + "fetcher": "github", + "repo": "lujun9972/emoji-recall.el", + "unstable": { + "version": [ + 20160723, + 2208 + ], + "commit": "d9122f8fb1467309260109a1985cd14f18fdf631", + "sha256": "13ajzafm9wmddch8ipjjkv2p13fmyd0ghdr479lll5c7xff2051x" + } + }, + { + "ename": "emojify", + "commit": "488d2751b5fd3bf00f5a6f0545530f44563b86d7", + "sha256": "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp", + "fetcher": "github", + "repo": "iqbalansari/emacs-emojify", + "unstable": { + "version": [ + 20190613, + 607 + ], + "deps": [ + "ht", + "seq" + ], + "commit": "a16199dcf9b4688839eba00f1e356d9beac46cfe", + "sha256": "1j5i617lps6vv4f88qzghzd4gdrngnyis8m8gabgqxbmx9z9hjd7" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "ht", + "seq" + ], + "commit": "302d16e9bac72faf94984e0c48ecd0e4b8d66738", + "sha256": "1fqnj5x7ivjkm5y927dqqnm85q5hzczlb0hrfpjalrhasa6ijsrm" + } + }, + { + "ename": "emojify-logos", + "commit": "114d5596a7b36f47c150c413c6ecc74de36ca239", + "sha256": "0kgci1svi80xnz44bvh19si8bcjllrkm9rbd8761h77iylkqs3q5", + "fetcher": "github", + "repo": "mxgoldstein/emojify-logos", + "unstable": { + "version": [ + 20180814, + 917 + ], + "deps": [ + "emojify" + ], + "commit": "a3e78bcbdf863092d4c9b026ac08bf7d1c7c0e8b", + "sha256": "1fhxf3nky9wlcn54q60f9254iawcccsrxw370q7cgpsrl1gj3dgp" + } + }, + { + "ename": "empos", + "commit": "461f7849e7be986994dd1e7cf109b66e8c37c719", + "sha256": "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4", + "fetcher": "github", + "repo": "dimalik/empos", + "unstable": { + "version": [ + 20151011, + 1916 + ], + "commit": "7b99ad30e56937adb7e6349777e5a2045597d564", + "sha256": "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n" + } + }, + { + "ename": "emr", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "02a7yzv6vxdazi26wk1ijadrjffd4iaf1abhpv642xib86pgpfd6", + "fetcher": "github", + "repo": "Wilfred/emacs-refactor", + "unstable": { + "version": [ + 20190724, + 2350 + ], + "deps": [ + "cl-lib", + "clang-format", + "dash", + "iedit", + "list-utils", + "paredit", + "popup", + "projectile", + "s" + ], + "commit": "eea1ea70d371de543be1c82c39bf97233c8adda5", + "sha256": "1yb7dbl321ip9pgch1krxs3manvkczq0b97797kq0hdbyiwpzi9b" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "clang-format", + "dash", + "iedit", + "list-utils", + "paredit", + "popup", + "projectile", + "s" + ], + "commit": "2b3606252d2dd29898d0ef702918eb13081b6c1a", + "sha256": "1yky7vlv91501xb43xk19rr8mxlvrsxhawsc98jivf64nad5dqay" + } + }, + { + "ename": "enclose", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6", + "fetcher": "github", + "repo": "rejeep/enclose.el", + "unstable": { + "version": [ + 20121008, + 1614 + ], + "commit": "2747653e84af39017f503064bc66ed1812a77259", + "sha256": "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim" + } + }, + { + "ename": "encourage-mode", + "commit": "1e90146c03a3f85313e3d338c48547ccfb73f605", + "sha256": "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63", + "fetcher": "github", + "repo": "halbtuerke/encourage-mode.el", + "unstable": { + "version": [ + 20151128, + 905 + ], + "commit": "99edacf2d94d168d3da0609860dc7253db7c9815", + "sha256": "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8" + } + }, + { + "ename": "engine-mode", + "commit": "ea1b5dfb6628cf17e77369f25341835aad425f54", + "sha256": "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c", + "fetcher": "github", + "repo": "hrs/engine-mode", + "unstable": { + "version": [ + 20181222, + 2027 + ], + "deps": [ + "cl-lib" + ], + "commit": "117a9c0cbc1ff8ade7f17cd40d1d2f5eb24f51a3", + "sha256": "1pm6xi0bcab3mpmvy8g449d5iv8s3cjqqvm2rcnlz1d6223pszh0" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "243d04691475b47a4453ad7106d8268ca14d9f28", + "sha256": "02xas46nl28mascqsyr1zcd4hn15bh0fjv2xlxv1kmrj0pis94ml" + } + }, + { + "ename": "enh-ruby-mode", + "commit": "cd1ac1ce69b77b11f34c4175611a852e7ec0806c", + "sha256": "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns", + "fetcher": "github", + "repo": "zenspider/enhanced-ruby-mode", + "unstable": { + "version": [ + 20190513, + 254 + ], + "commit": "f334c42986e93c60fba144d732becfcbdb13bb7d", + "sha256": "0xfdiajm2blkddxillnvn0mnik2i1q5zwgb5zc60i7p5dg1fj176" + }, + "stable": { + "version": [ + 20190408 + ], + "commit": "5c5ea7532bfff3c12c2a554d68c5def1dd984a40", + "sha256": "1asr52rg3230avq2bwl06nnrgkym98i7gas0xrs2vqyyaxbcpb1h" + } + }, + { + "ename": "enlive", + "commit": "388fa2580e687d9608b11cdc069841831b414b29", + "sha256": "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz", + "fetcher": "github", + "repo": "zweifisch/enlive", + "unstable": { + "version": [ + 20170725, + 1417 + ], + "commit": "604a8ca272b6889f114e2b5a13adb5b1dc4bae86", + "sha256": "1iwfb5hxhnp4rl3rh5yayik0xl2lg82klxkvqf29536pk8ip710m" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "60facaf8bc48b660d209551c0ce4d17e5c907ab8", + "sha256": "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63" + } + }, + { + "ename": "eno", + "commit": "a63b22f357b2d08b12fb86c27261ab4d687c5f7f", + "sha256": "1pcbvka3g32j1a2j7slw4jm80qpsk3ldziy5n4l02xpnqw6iwy6q", + "fetcher": "github", + "repo": "enoson/eno.el", + "unstable": { + "version": [ + 20160110, + 1034 + ], + "deps": [ + "dash", + "edit-at-point" + ], + "commit": "40075bb1ed9e62f42c5799f3d3721734742ed417", + "sha256": "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in" + } + }, + { + "ename": "enotify", + "commit": "f10631b740eea56e7209d7e84f0da8613274ef1d", + "sha256": "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi", + "fetcher": "github", + "repo": "laynor/enotify", + "unstable": { + "version": [ + 20130407, + 1348 + ], + "commit": "7fd2f48ef4ff32c8f013c634ea2dd6b1d1409f80", + "sha256": "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "75c84b53703e5d52cb18acc9251b87ffa400f388", + "sha256": "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5" + } + }, + { + "ename": "ensime", + "commit": "502faab70af713f50dd8952be4f7a5131075e78e", + "sha256": "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby", + "fetcher": "github", + "repo": "ensime/ensime-emacs", + "unstable": { + "version": [ + 20180615, + 1330 + ], + "deps": [ + "company", + "dash", + "popup", + "s", + "sbt-mode", + "scala-mode", + "yasnippet" + ], + "commit": "34eb11dac3ec9d1c554c2e55bf056ece6983add7", + "sha256": "0hgbxd538xjzna97843014xkbpgs20nz7xpb6smls7rdxp5a1fpd" + }, + "stable": { + "version": [ + 2, + 0, + 2 + ], + "deps": [ + "company", + "dash", + "popup", + "s", + "sbt-mode", + "scala-mode", + "yasnippet" + ], + "commit": "3d3ab18436ad6089496b3bce1d49c64a86965431", + "sha256": "0p821zwpiznjh736af5avnx9abssx0zbb9xhs74yhh1mcdi1whq7" + } + }, + { + "ename": "envdir", + "commit": "79c1497f709f6d23e4886359e09ab0456ed61777", + "sha256": "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8", + "fetcher": "github", + "repo": "proofit404/envdir-mode", + "unstable": { + "version": [ + 20160221, + 1923 + ], + "deps": [ + "dash", + "f" + ], + "commit": "f29346c55ccf11d8c75628edc6d430ed63c36917", + "sha256": "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6" + } + }, + { + "ename": "eopengrok", + "commit": "2b87ea158a6fdbc6b4e40fd7c0f6814d135f8545", + "sha256": "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av", + "fetcher": "github", + "repo": "youngker/eopengrok.el", + "unstable": { + "version": [ + 20160904, + 659 + ], + "deps": [ + "cl-lib", + "dash", + "magit", + "s" + ], + "commit": "78f734328aaf19c52720415c037708ece1944c4c", + "sha256": "1c5kzq3h7gr0459z364dyq5m8vq0ydclw5wphqj9fyg28mxjj6ns" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "magit", + "s" + ], + "commit": "11c99f7e1e2c1c7d70cbda496cb5b6c7f6e4082a", + "sha256": "1c5kzq3h7gr0459z364dyq5m8vq0ydclw5wphqj9fyg28mxjj6ns" + } + }, + { + "ename": "epc", + "commit": "8bc29a8d518ce7a584277089bd4654f52ac0f358", + "sha256": "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx", + "fetcher": "github", + "repo": "kiwanami/emacs-epc", + "unstable": { + "version": [ + 20140610, + 534 + ], + "deps": [ + "concurrent", + "ctable" + ], + "commit": "e1bfa5ca163273859336e3cc89b4b6460f7f8cda", + "sha256": "15nkrjgi64f829isfd6xrhl4zw8jirr8pkas7nisrbk1av868hx0" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "concurrent", + "ctable" + ], + "commit": "16e975efad63093a1f1f7b59f8fda5a3cf34f2a0", + "sha256": "0smk23f23jdnvmrisj5d4isna36sr15bbvh53dq5261y8ddxlkvw" + } + }, + { + "ename": "epic", + "commit": "7c7162791d560846fe386746c00a9fe88c8007bb", + "sha256": "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf", + "fetcher": "github", + "repo": "yoshinari-nomura/epic", + "unstable": { + "version": [ + 20170210, + 23 + ], + "deps": [ + "htmlize" + ], + "commit": "a41826c330eb0ea061d58a08cc861b0c4ac8ec4e", + "sha256": "0mvg52f2y3725hlzqcn2mh8jihnbg68wlqmq951sa3qfma7m40pp" + } + }, + { + "ename": "epkg", + "commit": "2df16abf56e53d4a1cc267a78797419520ff8a1c", + "sha256": "0vvkjjaffvwvsvld3c6hwd18icmp2lc7f9yqvclifpadi98dhpww", + "fetcher": "github", + "repo": "emacscollective/epkg", + "unstable": { + "version": [ + 20190717, + 1420 + ], + "deps": [ + "closql", + "dash" + ], + "commit": "dca082baf1a99e43ec0152117d9947107c3841d5", + "sha256": "084p2fvm5ml1kbbabmm3l5kaiwc77x0prs6nm4zn6lhl60ash11j" + }, + "stable": { + "version": [ + 3, + 2, + 1 + ], + "deps": [ + "closql", + "dash" + ], + "commit": "1aaa64402bf91575ee81bf240c4c52320f68088d", + "sha256": "0ij44yp72y1flcjp2q6yfbrnr4bnzjflgcsksl3djr9nhb73cd5a" + } + }, + { + "ename": "epl", + "commit": "9c6cf24e86d8865bd2e4b405466118de1894851f", + "sha256": "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn", + "fetcher": "github", + "repo": "cask/epl", + "unstable": { + "version": [ + 20180205, + 2049 + ], + "deps": [ + "cl-lib" + ], + "commit": "78ab7a85c08222cd15582a298a364774e3282ce6", + "sha256": "0ksilx9gzdazngxfni5i632jpb1nprcxplsbhgqirs2xdl53q8v8" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "fd906d3f92d58ecf24169055744409886ceb06ce", + "sha256": "0d3z5z90ln8ipk1yds1n1p8fj9yyh2kpspqjs7agl38indra3nb4" + } + }, + { + "ename": "epm", + "commit": "e12e8ae2e8e8aff7cbd75a951dd328cb9ccf58b0", + "sha256": "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08", + "fetcher": "github", + "repo": "xuchunyang/epm", + "unstable": { + "version": [ + 20190509, + 443 + ], + "deps": [ + "epl" + ], + "commit": "6375ddbf93c5f25647f6ebb25b54045b3c93a5be", + "sha256": "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "epl" + ], + "commit": "6375ddbf93c5f25647f6ebb25b54045b3c93a5be", + "sha256": "1m0l0szrwljzsch4xj9a42nflpqfii68g8clizsjwv323h6xff4n" + } + }, + { + "ename": "epresent", + "commit": "150487558ecda0520c637ffed1ffe2fbf2dc5811", + "sha256": "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8", + "fetcher": "github", + "repo": "dakrone/epresent", + "unstable": { + "version": [ + 20160411, + 201 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "6c8abedcf46ff08091fa2bba52eb905c6290057d", + "sha256": "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5" + } + }, + { + "ename": "eprime-mode", + "commit": "37b4f3dce033fa18d23202ca4c36bc85754d547d", + "sha256": "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g", + "fetcher": "github", + "repo": "AndrewHynes/eprime-mode", + "unstable": { + "version": [ + 20140513, + 1816 + ], + "commit": "17a481af26496be91c07139a9bfc05cfe722506f", + "sha256": "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw" + } + }, + { + "ename": "eproject", + "commit": "d7e82668617a9b599f8994c720f3f123ba1e008a", + "sha256": "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4", + "fetcher": "github", + "repo": "jrockway/eproject", + "unstable": { + "version": [ + 20180312, + 1642 + ], + "deps": [ + "helm" + ], + "commit": "068218d2cf2138cb2e8fc29b57e773a0097a7e8b", + "sha256": "110b8gn47m5kafmvxr8q9zzrj0pdn6ikw9xsx4z1rc58i02jy307" + } + }, + { + "ename": "equake", + "commit": "2a4a0ec11a9c720d7ed90addcb31d0a9d5594f5b", + "sha256": "17r10d3acmhixbi24k19rx720qi8ss4v53n107arqmr04rkd1v2y", + "fetcher": "gitlab", + "repo": "emacsomancer/equake", + "unstable": { + "version": [ + 20190630, + 319 + ], + "deps": [ + "dash", + "tco" + ], + "commit": "7eddc025ee61b83029363e22219af228b8c20681", + "sha256": "1c55pbqak3d02sw6z1139baxzy401b90g0gxzcc3j6sgplz6sc6w" + } + }, + { + "ename": "erc-colorize", + "commit": "e69214e89ec0e00b36609fce3efe22b5c1add1f9", + "sha256": "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a", + "fetcher": "github", + "repo": "thisirs/erc-colorize", + "unstable": { + "version": [ + 20170107, + 1339 + ], + "commit": "d026a016dcb9d63d9ac66d30627a92a8f1681bbd", + "sha256": "1zzmsrlknrpw26kizd4dm1g604y9nkgh85xal9la70k94qcgv138" + } + }, + { + "ename": "erc-crypt", + "commit": "a1a71b46c0370d2ed25aa3f39983048a04576ad5", + "sha256": "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3", + "fetcher": "github", + "repo": "atomontage/erc-crypt", + "unstable": { + "version": [ + 20190318, + 2350 + ], + "deps": [ + "cl-lib" + ], + "commit": "043b109409ee5b17bf06956fa46e1beb66d06ca4", + "sha256": "1k4y203m7d7cbgdyin3yq70ai9yw0rfln2v61xd7xa5zxvgvj2v2" + }, + "stable": { + "version": [ + 1, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "1c8b1caed52a5994aab8bd4dd196881ed537d3aa", + "sha256": "0w1b4pqipzdlkak9807k8xgzlc6vvni86ab92snm07909kby9xd0" + } + }, + { + "ename": "erc-hipchatify", + "commit": "b60e01e7064ce486fdac3d1b39fd4a1296b0dac5", + "sha256": "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x", + "fetcher": "bitbucket", + "repo": "seanfarley/erc-hipchatify", + "unstable": { + "version": [ + 20170314, + 1637 + ], + "deps": [ + "alert", + "request", + "s" + ], + "commit": "a532275136920aa1a66a1817cfc5880a01974dab", + "sha256": "0av0y65hz7fbiiqzmk5mmw6jv7fivhcd1w3s2xn5y5jpgps56mrc" + } + }, + { + "ename": "erc-hl-nicks", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "03hxsknf31vrja2amfa317ig4c34i5jpdq35zczrp00ap0s31nbq", + "fetcher": "github", + "repo": "leathekd/erc-hl-nicks", + "unstable": { + "version": [ + 20180415, + 1946 + ], + "commit": "756c4438a8245ccd3e389bf6c9850ee8453783ec", + "sha256": "0c82rxpl5v7bbxirf1ksg06xv5xcddh8nkrpj7i6nvfarwdfnk4f" + }, + "stable": { + "version": [ + 1, + 3, + 3 + ], + "commit": "756c4438a8245ccd3e389bf6c9850ee8453783ec", + "sha256": "0c82rxpl5v7bbxirf1ksg06xv5xcddh8nkrpj7i6nvfarwdfnk4f" + } + }, + { + "ename": "erc-image", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1k5llh2jg2wxy9v03qrhwqa6g7apkqiqa47jm24z0ydqinm6zl83", + "fetcher": "github", + "repo": "kidd/erc-image.el", + "unstable": { + "version": [ + 20180522, + 1424 + ], + "commit": "82fb3871f02e24b1e880770b9a3d187aab43d0f0", + "sha256": "1q8mkf612fb4fjp8h4kbr107wn083iqfdgv8f80pcmil8y33dw9i" + } + }, + { + "ename": "erc-scrolltoplace", + "commit": "848cb17d871287c401496e4483e400b44696e89d", + "sha256": "0632i1p26z3f633iinkqka0x2dd55x02xidk9qr66jh0dzfs6q3i", + "fetcher": "gitlab", + "repo": "jgkamat/erc-scrolltoplace", + "unstable": { + "version": [ + 20180608, + 606 + ], + "deps": [ + "switch-buffer-functions" + ], + "commit": "feb0fbf1fd4bdf220ae2d31ea7c066d8e62089f9", + "sha256": "1wb3xm45g77daw2ncs8a8w0m8d2hi591jmzwy5xli1zgrr5mm8h3" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "switch-buffer-functions" + ], + "commit": "7539654e4a72edcc5bba07a101961e5bf0a9d449", + "sha256": "11zpqwh1mlfifbgnvhc63bvnhg340jgxssm3m43hr1sxsyb52lh6" + } + }, + { + "ename": "erc-social-graph", + "commit": "9f347636c417aaf91728e56fd32313854fde3684", + "sha256": "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h", + "fetcher": "github", + "repo": "vibhavp/erc-social-graph", + "unstable": { + "version": [ + 20150508, + 1204 + ], + "commit": "e6ef3416a1c5064054bf054d9f0c1c7bf54a9cd0", + "sha256": "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa" + } + }, + { + "ename": "erc-status-sidebar", + "commit": "29631de8ec4140a8e35cc500902b58115faa3955", + "sha256": "04qh70ih74vbavq7ccwj1ixpd8s3g8rck9bxv6zhm1yv34bslw5d", + "fetcher": "github", + "repo": "drewbarbs/erc-status-sidebar", + "unstable": { + "version": [ + 20171223, + 2124 + ], + "deps": [ + "seq" + ], + "commit": "ea4189a1dbfe60117359c36e681ad7c389e2968c", + "sha256": "1hwlhzgx03z8891sblz56zdp8zj0izh72kxykgcnz5rrkyc3vfi3" + } + }, + { + "ename": "erc-terminal-notifier", + "commit": "f2ba978b1ba63fac3b7f1e9776ddc3b054455ac4", + "sha256": "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c", + "fetcher": "github", + "repo": "julienXX/erc-terminal-notifier.el", + "unstable": { + "version": [ + 20140115, + 1024 + ], + "commit": "a3dacb935845e4a20031212bbd82b2170f68d2a8", + "sha256": "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670" + } + }, + { + "ename": "erc-track-score", + "commit": "671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f", + "sha256": "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx", + "fetcher": "github", + "repo": "jd/erc-track-score.el", + "unstable": { + "version": [ + 20130328, + 1215 + ], + "commit": "5b27531ea6b1a4c4b703b270dfa9128cb5bfdaa3", + "sha256": "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2" + } + }, + { + "ename": "erc-tweet", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0nmh3r8s69hfmkz0jycn7w2icb5gnw2qbf8xjd52kigkdb2s646c", + "fetcher": "github", + "repo": "kidd/erc-tweet.el", + "unstable": { + "version": [ + 20150920, + 1258 + ], + "commit": "91fed61e139fa788d66a7358f0d50acc896414b8", + "sha256": "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n" + } + }, + { + "ename": "erc-twitch", + "commit": "46f8640b24bade45cc729eeb370adf959f99526f", + "sha256": "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia", + "fetcher": "github", + "repo": "vibhavp/erc-twitch", + "unstable": { + "version": [ + 20170427, + 606 + ], + "deps": [ + "erc", + "json" + ], + "commit": "53c6af0cb72e56d897d30a40e7e5066668d6b5ec", + "sha256": "0qirx38czv8m7sgj3rm1zncmyd8z6k4xhd8ixwxl7nigfpqvvv4c" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "erc", + "json" + ], + "commit": "6938191c787d66fef4c13674e0a98a9d64eff364", + "sha256": "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk" + } + }, + { + "ename": "erc-view-log", + "commit": "0c0176d8e26014f7b62d14ac3adffa21a84b5741", + "sha256": "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf", + "fetcher": "github", + "repo": "Niluge-KiWi/erc-view-log", + "unstable": { + "version": [ + 20140227, + 2039 + ], + "commit": "c5a25f0cbca84ed2e4f72068c02b66bd0ea3b266", + "sha256": "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y" + } + }, + { + "ename": "erc-youtube", + "commit": "a80ee9617a30a8ad1d457a0b0c7f35e6ec1c0bb2", + "sha256": "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx", + "fetcher": "github", + "repo": "kidd/erc-youtube.el", + "unstable": { + "version": [ + 20150603, + 2136 + ], + "commit": "97054ba8475b442e2aa81e5a291f668b7f28697f", + "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "97054ba8475b442e2aa81e5a291f668b7f28697f", + "sha256": "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w" + } + }, + { + "ename": "erc-yt", + "commit": "ece0a6185a36d52971c35a35f5aa76ddafec3ced", + "sha256": "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc", + "fetcher": "github", + "repo": "yhvh/erc-yt", + "unstable": { + "version": [ + 20150426, + 1249 + ], + "deps": [ + "dash" + ], + "commit": "43e7d49325b17a3217a6ffb4a9daf75c5ff4e6f8", + "sha256": "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9" + } + }, + { + "ename": "ercn", + "commit": "a12f264653d79224adeb5d0ae76518dc408ff1e9", + "sha256": "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp", + "fetcher": "github", + "repo": "leathekd/ercn", + "unstable": { + "version": [ + 20150523, + 1503 + ], + "commit": "79a4df5609046ae2e2e3375998287be6dda80615", + "sha256": "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "73b00dadf83b97dd9edd8381a4b27f583c08b7f6", + "sha256": "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480" + } + }, + { + "ename": "ereader", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ai27lyb9xcmjjcnppzzhb6ilsvq9d9g9z7h79lp7axq761vind4", + "fetcher": "github", + "repo": "bddean/emacs-ereader", + "unstable": { + "version": [ + 20170810, + 501 + ], + "deps": [ + "dash", + "s", + "xml+" + ], + "commit": "f3bbd3f13195f8fba3e3c880aab0e4c60430dcf3", + "sha256": "18yqqqxsivnq2m8mxz7ifp0bfmn3q9m11w3abryxg2snh4vb5sy6" + } + }, + { + "ename": "eredis", + "commit": "63f06713d06911f836fe2a4bf199b0794ac89cf0", + "sha256": "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8", + "fetcher": "github", + "repo": "justinhj/eredis", + "unstable": { + "version": [ + 20181119, + 131 + ], + "deps": [ + "dash" + ], + "commit": "07ae21ff7102a8d2c2f088387e114d5b49ff9b34", + "sha256": "1mlzgn53ngswjn7vdinnrmhji9jxs5nyqlvb6xm6cznkn97xiy2a" + }, + "stable": { + "version": [ + 0, + 9, + 6 + ], + "deps": [ + "dash" + ], + "commit": "cfbfc25832f6fbc507bdd56b02e3a0b851a3c368", + "sha256": "1f2f57c0bz3c6p11hr69aar6z5gg33zvfvsm76ma11vx21qilz6i" + } + }, + { + "ename": "erefactor", + "commit": "18063e16a6f556b1871e1a5b74e353a85a794e63", + "sha256": "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-erefactor", + "unstable": { + "version": [ + 20160121, + 959 + ], + "deps": [ + "cl-lib" + ], + "commit": "bf68085e5635eb94fd85709f8e1355c1f5534745", + "sha256": "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "fde3fd42c815c76e8015f69518a92f6bfcfde990", + "sha256": "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i" + } + }, + { + "ename": "ergoemacs-mode", + "commit": "02920517987c7fc698de9952cbb09dfd41517c40", + "sha256": "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62", + "fetcher": "github", + "repo": "ergoemacs/ergoemacs-mode", + "unstable": { + "version": [ + 20190527, + 348 + ], + "deps": [ + "cl-lib", + "undo-tree" + ], + "commit": "7d3656541a00cc04ba4cefa31c0d127adb5a260a", + "sha256": "1rw237xiw5nz736l5jdmlsa11l14qvzdac0wqymi80a0rfwqikga" + }, + "stable": { + "version": [ + 5, + 16, + 10, + 12 + ], + "deps": [ + "cl-lib", + "undo-tree" + ], + "commit": "ac70b2563fb6e3d69ea382fddc87b5721c20c292", + "sha256": "0ydxyylijdd6da4n9by441352shphrpfyk2631ld5aq3gz27z9gi" + } + }, + { + "ename": "ergoemacs-status", + "commit": "f4af9606cfe09cdd294fae6b4b1f477f7861fdb7", + "sha256": "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb", + "fetcher": "github", + "repo": "ergoemacs/ergoemacs-status", + "unstable": { + "version": [ + 20160318, + 538 + ], + "deps": [ + "mode-icons", + "powerline" + ], + "commit": "d952cc2361adf6eb4d6af60950ad4ab699c81320", + "sha256": "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71" + } + }, + { + "ename": "erlang", + "commit": "d9cd526f43981e0826af59cdc4bb702f644781d9", + "sha256": "1cs768xxbyrr78ln50k4yknmpbcc1iplws3k07r0gx5f3ca73iaq", + "fetcher": "github", + "repo": "erlang/otp", + "unstable": { + "version": [ + 20190404, + 928 + ], + "commit": "cd7cad8d6ad6234bab004af800d9b28aa03aeff1", + "sha256": "195flsyi33pz7j6svza4l6ymxw5gcmbi2l8i9fjclij1958w5m14" + }, + "stable": { + "version": [ + 22, + 0, + 7 + ], + "commit": "3967d28c05dae77db30b15e56eb4ececf4f1afef", + "sha256": "1jk78b674cvi6fh6fj5jqqnqv4452x9bn6h79yrdm5nws1nh84am" + } + }, + { + "ename": "erlstack-mode", + "commit": "6ee61c1c5f116082b37fb13d15052ed9bbbc1dac", + "sha256": "0b7mj0rs8k3hdv4v3v5vmdqs0y26mss7dzc0sjjxj4d095yddqqf", + "fetcher": "github", + "repo": "k32/erlstack-mode", + "unstable": { + "version": [ + 20190722, + 952 + ], + "deps": [ + "dash" + ], + "commit": "b8a2027808177fb0aa74e6767a867c0e20c57d84", + "sha256": "09bn6ldnz7mgc16h818rdbs4a5vs7a72183din5xvbw5ygfhwhjs" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "07398e929978b0eaf2bf119e97cba7b9f9e90d2a", + "sha256": "1gf9k3z9v1s7d01s551ys87j05xh3lpnvv86dq86rz8xinc09kac" + } + }, + { + "ename": "eros", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0l79bn72x5m2lzglrwwngz3hax9pf8wv7ci86y5pkwaa8frxycww", + "fetcher": "github", + "repo": "xiongtx/eros", + "unstable": { + "version": [ + 20180415, + 618 + ], + "commit": "dd8910279226259e100dab798b073a52f9b4233a", + "sha256": "08chj3a0lw4ygi2sv7wj0i6ihfbi8jhylr8p92inif8b88r6wg3k" + } + }, + { + "ename": "ert-async", + "commit": "2ec669e3fc73b0b499b84cec87d0f8621274732e", + "sha256": "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5", + "fetcher": "github", + "repo": "rejeep/ert-async.el", + "unstable": { + "version": [ + 20151011, + 1359 + ], + "commit": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "f64a7ed5b0d2900c9a3d8cc33294bf8a79bc8526", + "sha256": "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9" + } + }, + { + "ename": "ert-expectations", + "commit": "84f836338818946a6bb31d35d6ae959571128ed5", + "sha256": "07mp0azb6wsa1z4s6q8jyh7dpzils0wh2bamfmxzy4gjqjwv8ncn", + "fetcher": "github", + "repo": "emacsorphanage/ert-expectations", + "unstable": { + "version": [ + 20121009, + 734 + ], + "commit": "aed70e002c4305b66aed7f6d0d48e9addd2dc1e6", + "sha256": "0qgi3rj49k0hz4azg7ghcj6385p5s9gakqjhrjnhih7dxvihcgxi" + } + }, + { + "ename": "ert-junit", + "commit": "27c627eacab54896a1363dbabc56250a65343dd8", + "sha256": "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g", + "fetcher": "git", + "url": "https://bitbucket.org/olanilsson/ert-junit", + "unstable": { + "version": [ + 20181118, + 2256 + ], + "deps": [ + "ert" + ], + "commit": "a910ab288e108c61fa3cd035d93df91f2e19e367", + "sha256": "0k3j7nsfg88nbm546bcyh6q4yaxc027a1xh8kg8hx3nb17lxc03r" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "ert" + ], + "commit": "b0649e94460aff5176dee5b33f28946bffb602d5", + "sha256": "0hj85hz4s1q4dalinhgahn8jn97s2pdpv41d9qqbvbdzwhhw2mrk" + } + }, + { + "ename": "ert-modeline", + "commit": "3b3a301889d6eea2470017519b080519efbe1bec", + "sha256": "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b", + "fetcher": "github", + "repo": "chrisbarrett/ert-modeline", + "unstable": { + "version": [ + 20140115, + 1015 + ], + "deps": [ + "dash", + "projectile", + "s" + ], + "commit": "e7be2b81191afb437b70368a819770f8f750e4af", + "sha256": "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq" + } + }, + { + "ename": "ert-runner", + "commit": "0a1acc68f296e80b6ed99a1783e9f67be54ffac9", + "sha256": "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48", + "fetcher": "github", + "repo": "rejeep/ert-runner.el", + "unstable": { + "version": [ + 20180831, + 1145 + ], + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ], + "commit": "90b8fdd5970ef76a4649be60003b37f82cdc1a65", + "sha256": "04nxmyzncacj2wmzd84vv9wkkr2dk9lcb10dvygqmg3p1gadnwzz" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "deps": [ + "ansi", + "commander", + "dash", + "f", + "s", + "shut-up" + ], + "commit": "00056c37817f15b1870ccedd13cedf102e3194dd", + "sha256": "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf" + } + }, + { + "ename": "es-lib", + "commit": "f10631b740eea56e7209d7e84f0da8613274ef1d", + "sha256": "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n", + "fetcher": "github", + "repo": "sabof/es-lib", + "unstable": { + "version": [ + 20141111, + 1830 + ], + "deps": [ + "cl-lib" + ], + "commit": "753b27363e39c10edc9e4e452bdbbbe4d190df4a", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "753b27363e39c10edc9e4e452bdbbbe4d190df4a", + "sha256": "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b" + } + }, + { + "ename": "es-mode", + "commit": "9912193f73c4beae03b295822bf41cb2298756e2", + "sha256": "0zp84k5idqkrvc9qci49ains0b86kpk97lk1jcwyj75s4xsfyp1y", + "fetcher": "github", + "repo": "dakrone/es-mode", + "unstable": { + "version": [ + 20190512, + 1216 + ], + "deps": [ + "cl-lib", + "dash", + "request", + "s", + "spark" + ], + "commit": "8de1452e1b9181a4f6778c0aaefc011aef58b25d", + "sha256": "0p9k30a1ar9hpw63cxr46afk7l3b7j79jpgrjcpsicd17rhjbcs8" + }, + "stable": { + "version": [ + 4, + 3, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "spark" + ], + "commit": "996730ebce57d810d2c275c7fadb11c2b1134dea", + "sha256": "1qhfnd5anp5qrmravv7ks5ix763xnki2f5jwcyj70qyxwr0l60cg" + } + }, + { + "ename": "es-windows", + "commit": "944d4cd54e040d2a58e1778cb282727deee83f92", + "sha256": "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx", + "fetcher": "github", + "repo": "sabof/es-windows", + "unstable": { + "version": [ + 20140211, + 904 + ], + "deps": [ + "cl-lib" + ], + "commit": "239e30408cb1adb4bc8bd63e2df34711fa910b4f", + "sha256": "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "7ebe6c6e0831373847d7adbedeaa2e506b54b2af", + "sha256": "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9" + } + }, + { + "ename": "esa", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0y4mbq0z6vp0faxq6dq5hhxnsbi685amxqbvpxkxahl1nckp76lb", + "fetcher": "github", + "repo": "nabinno/esa.el", + "unstable": { + "version": [ + 20180403, + 1525 + ], + "deps": [ + "cl-lib" + ], + "commit": "417e0ac55abe9b17e0b7165d0df26bc018aff42e", + "sha256": "0hib8q9fslvw02i1y19z78fv6yy88q09lhfdfmbdyn6yal21855q" + }, + "stable": { + "version": [ + 0, + 8, + 13 + ], + "deps": [ + "cl-lib" + ], + "commit": "0f69f9f45ac15018c48853509ac38e68286f9c0e", + "sha256": "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9" + } + }, + { + "ename": "esh-autosuggest", + "commit": "dc3776068d6928fc1661a27cccaeb8fb85577099", + "sha256": "1rcng1dhy4yw95qg909ck33svpdxhv9v5k7226d29gp4y54dwyrx", + "fetcher": "github", + "repo": "dieggsy/esh-autosuggest", + "unstable": { + "version": [ + 20190228, + 401 + ], + "deps": [ + "company" + ], + "commit": "972094808d231a86dc6e43862191167b1997d840", + "sha256": "1nkf3n20bc8fhdw8vmmnrwhaddhmqpjsrxm304ci6r6b4zz71nq6" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "deps": [ + "company" + ], + "commit": "a6d5eb3337d010bd2a2d677ff304cd53adc291a0", + "sha256": "0l2nnlr3b6df1xn0qjf5d5ryy1wcs1jczyfy795vsasd5gm3g0xh" + } + }, + { + "ename": "esh-buf-stack", + "commit": "61e8f75aa0d5446c61aadc7ac22371e44a3761b8", + "sha256": "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg", + "fetcher": "github", + "repo": "tom-tan/esh-buf-stack", + "unstable": { + "version": [ + 20140107, + 1018 + ], + "commit": "ce0ea5aadca3150eaa9d2e6ec20296add4e99176", + "sha256": "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q" + } + }, + { + "ename": "esh-help", + "commit": "ab94c66d1ed7cfdbc437ee239984ba70408fd28a", + "sha256": "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w", + "fetcher": "github", + "repo": "tom-tan/esh-help", + "unstable": { + "version": [ + 20170830, + 411 + ], + "deps": [ + "dash" + ], + "commit": "8a8a9d4d9852f8bd96da3b94e95ff57097ac8ec6", + "sha256": "02fybhmqm2qmy5qdig7xvwxazqi499pw32kh5mrsbdr14srg9fhs" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "dash" + ], + "commit": "8a8a9d4d9852f8bd96da3b94e95ff57097ac8ec6", + "sha256": "02fybhmqm2qmy5qdig7xvwxazqi499pw32kh5mrsbdr14srg9fhs" + } + }, + { + "ename": "eshell-autojump", + "commit": "68bd1a8ec9d17eff2d23e15b3686f7c0b8723126", + "sha256": "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5", + "fetcher": "github", + "repo": "coldnew/eshell-autojump", + "unstable": { + "version": [ + 20150927, + 724 + ], + "commit": "c6a8b81a16576df9875e721fbbfe6690d04e7e43", + "sha256": "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "c0866d7f2789831665ebb01b812bae89d085bff0", + "sha256": "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc" + } + }, + { + "ename": "eshell-bookmark", + "commit": "e7bf4702a907727990fcc676980f2b219e22ab0c", + "sha256": "1bybxlq1h5chrjxqjb23kq8dmgw2xrjwkrnvpbphblqzpdy5ck0s", + "fetcher": "github", + "repo": "Fuco1/eshell-bookmark", + "unstable": { + "version": [ + 20170922, + 1514 + ], + "commit": "99a491c77e27ecc4626bdd4ad453ac71aa2654d4", + "sha256": "0imn9x7lylnzprg54mdmf21nxld1cq3r1037jzix0pq39bgz0vk7" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "deda4b848b2fb979dbe73ead2cb866610e3596ed", + "sha256": "14dmsnixf9vqdhsixw693sml0fn80zcf0b37z049fb40cmppqxdw" + } + }, + { + "ename": "eshell-did-you-mean", + "commit": "a7649eca21a21ddbbc7131f29cbbd91a00a84060", + "sha256": "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz", + "fetcher": "github", + "repo": "xuchunyang/eshell-did-you-mean", + "unstable": { + "version": [ + 20150915, + 1952 + ], + "deps": [ + "cl-lib" + ], + "commit": "7cb6ef8e2274d0a50a9e114d412307a6543533d5", + "sha256": "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "7cb6ef8e2274d0a50a9e114d412307a6543533d5", + "sha256": "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg" + } + }, + { + "ename": "eshell-fixed-prompt", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0mhrfxf19p4qqnlnnfc0z70324c7qiiv63riaz4cn5jj1ps3v0iy", + "fetcher": "github", + "repo": "mallt/eshell-fixed-prompt-mode", + "unstable": { + "version": [ + 20190111, + 2235 + ], + "deps": [ + "s" + ], + "commit": "2c860029354bf1f69edc1f12e4a0d9aeb9054f5d", + "sha256": "1j1m661rgbfr04357wq2a7vhm04s3vrbw4r6y1k2cx2ap9amkb25" + } + }, + { + "ename": "eshell-fringe-status", + "commit": "9efd9fefab5d449b9f70d9f548aadfea52d66bc0", + "sha256": "1vavidnijxzhr4v39q4bxi645vsfcj6vp0wnlhznpxagshr950lg", + "fetcher": "github", + "repo": "ryuslash/eshell-fringe-status", + "unstable": { + "version": [ + 20170117, + 2316 + ], + "commit": "adc6997c68e39c0d52a2af1b2fd5cf2057783797", + "sha256": "1cwn4cvjjd4l5kk7s6cxzafjmdv3s7k78i73fvscmsnpwx9p2wj0" + } + }, + { + "ename": "eshell-git-prompt", + "commit": "5272280b19579c302ba41b53c77e42bc5e8ccbda", + "sha256": "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s", + "fetcher": "github", + "repo": "xuchunyang/eshell-git-prompt", + "unstable": { + "version": [ + 20170909, + 1452 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "b6bb2d7bd4e393b4170b29891cfefb72ae020aab", + "sha256": "02i00an9wa8ns66xq900la68m7pd4hwv95g83cvf22bypivx7p2y" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "b6bb2d7bd4e393b4170b29891cfefb72ae020aab", + "sha256": "02i00an9wa8ns66xq900la68m7pd4hwv95g83cvf22bypivx7p2y" + } + }, + { + "ename": "eshell-prompt-extras", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0zkdb9a8dibk832b5hzb6wjich3l0lah5p64805rgd4qskzj10gx", + "fetcher": "github", + "repo": "kaihaosw/eshell-prompt-extras", + "unstable": { + "version": [ + 20181229, + 1418 + ], + "commit": "5a328e1b9112c7f31ce2da7cde340f96626546b6", + "sha256": "0fwlvrzjygs12dcp89wy3rb3wa03mrvbzpmpvmz4x6dfpr7csznk" + }, + "stable": { + "version": [ + 0, + 96 + ], + "commit": "7581c109673c40aceff278cd524273f50ffe170d", + "sha256": "1m1jisjz974cfz89i6l2zq666yzhsqipc6dmqlrm8mw81fxsfm1h" + } + }, + { + "ename": "eshell-toggle", + "commit": "b7a3cf4c5ed3bb0995eac9dcce939b518a0ef987", + "sha256": "06cxjh0cqcafb4skw317f8wria9gv77wbwpc62a276s3zrv961qf", + "fetcher": "github", + "repo": "4DA/eshell-toggle", + "unstable": { + "version": [ + 20190526, + 1452 + ], + "deps": [ + "dash" + ], + "commit": "2eb91974047f5caf8df3bf3af5014be2cc95ddac", + "sha256": "1iblhp0jvki2lm1jg1g93r3zvxvpjv3pi0xssivypq3bpy22v6cr" + } + }, + { + "ename": "eshell-up", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1jyaaw950isissjjgqflfn2bllgdfcyphpbi7il06mv9p0dzpwvy", + "fetcher": "github", + "repo": "peterwvj/eshell-up", + "unstable": { + "version": [ + 20170425, + 1737 + ], + "commit": "9c100bae5c3020e8d9307e4332d3b64e7dc28519", + "sha256": "00zdbcncjabgj5mp47l1chymx5na18v2g4kj730dgmj3rnl3iz2q" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "653121392acd607d5dfbca0832927e06806a2d39", + "sha256": "05mfwp8zira7p2ip1rmqa08arlbkv7w1mbx7s5saj655scg7jaq3" + } + }, + { + "ename": "eshell-z", + "commit": "8079cecaa59ad2ef22812960838123effc46a9b3", + "sha256": "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d", + "fetcher": "github", + "repo": "xuchunyang/eshell-z", + "unstable": { + "version": [ + 20170117, + 438 + ], + "deps": [ + "cl-lib" + ], + "commit": "c9334cbc1552234df3437f35d98e32f4d18446b8", + "sha256": "1zja4hb2lj4m5w4j9mpc7xyqgg2ivpslllffjsg8x1w8xsxpj8fh" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "96ec3f5f8a801c893d2c6a6b140e333ef2bfd8b5", + "sha256": "1aac4m814jgxwpz7lbyx5r4z5dmawp4sk7pwbx0zqpnbcsaq5wwc" + } + }, + { + "ename": "eslint-fix", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ry271jlv95nhdqx6qxmvkpa10lpwkg1q6asnliviwplq2mxw2da", + "fetcher": "github", + "repo": "codesuki/eslint-fix", + "unstable": { + "version": [ + 20180514, + 700 + ], + "commit": "f81f3b47a47460611fbdbdae1d23275ec78f2f8d", + "sha256": "0k3asz3mdz4nm8lq37x9rgx4wb8hsfyr0hlfyhzwdb10x57jfzns" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "be90d1e78b1dfd43b6b3b1c06868539e2ac27d3a", + "sha256": "1l7pm0ywjby0giilyn6qsz1zh54sgmvmii7y9jhrva13c5kgg9an" + } + }, + { + "ename": "eslintd-fix", + "commit": "c72d2b3ee9b8066d51d09e165e58e9846ca879cc", + "sha256": "0lv4xpp9bm1yyn9mj7hpgw1v46yyxr0nlwggbav78jbg4v7ai04v", + "fetcher": "github", + "repo": "aaronjensen/eslintd-fix", + "unstable": { + "version": [ + 20180429, + 1455 + ], + "deps": [ + "dash" + ], + "commit": "90e451af4daa190d6c0e29fb714b0501a7cce89a", + "sha256": "01jysgdd4im4kf4afzwd4mm8x9vlpibb1w4yi2jvc0hglqddnr2g" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "dash" + ], + "commit": "97e8aa9b106e3e4b3a44c775ca972bdd2feda9ec", + "sha256": "1g6bv58m1052x2f5ffs17ryyqv0ay8vii5bwqs7dyfhlpppsn6c8" + } + }, + { + "ename": "esonify", + "commit": "8a05dadbf515af6202d1cb96d4fdceb07bb7a6da", + "sha256": "0facvhl6p4v1h3magvp6lzahdzbgg7a15hbj9rgfncvfzfjzlq5a", + "fetcher": "github", + "repo": "oflatt/esonify", + "unstable": { + "version": [ + 20190110, + 1621 + ], + "deps": [ + "cl-lib", + "deferred" + ], + "commit": "bdc79d4ab2e3c449b5bef46e5cabc552beeed5c6", + "sha256": "03xl6a49pg3y1g3dl7fglrn956ynzj2vlviwlv08ngflvbn5shai" + } + }, + { + "ename": "espresso-theme", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "1njc1ppi1jvb3mdckr19kbk7g0a3dx8j4d6j101ygszzrr24ycmv", + "fetcher": "github", + "repo": "dgutov/espresso-theme", + "unstable": { + "version": [ + 20181025, + 826 + ], + "commit": "d2fa034eb833bf37cc6842017070725e0da9b046", + "sha256": "0fds36w6l2aaa88wjkd2ck561i0wwpxgz5ldadhbi5lvfwj9386m" + } + }, + { + "ename": "espuds", + "commit": "14cf66e6929db2a0f377612e786aaed9eb12b799", + "sha256": "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c", + "fetcher": "github", + "repo": "ecukes/espuds", + "unstable": { + "version": [ + 20160905, + 1300 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "78fc53feaf77a98d63894cd410faee2a18107b00", + "sha256": "04479z1397vaz48bxx3f1xdvxnq1p01gg1y5f3hcbswjl8j3ahmr" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "1405972873339e056517217136de4ad3202d744a", + "sha256": "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg" + } + }, + { + "ename": "espy", + "commit": "184718ee62f25b2bfed7d5126e02bce3290c50c4", + "sha256": "1icyiygw7brn4lrp28szmk4kk94n5q1zlrzrl6z7y0hdhdsjflgg", + "fetcher": "github", + "repo": "walseb/espy", + "unstable": { + "version": [ + 20180929, + 1602 + ], + "commit": "b64a99185c96c20d4d4caa3daf1f5510b039bd6a", + "sha256": "1i8wc55rihah39i95w0rryp5scq8v3zyk4cayw5pz8g5bbl8w4zb" + } + }, + { + "ename": "esqlite", + "commit": "bbec16cd1682ac15a81304f351f9c4e6b3b70fa9", + "sha256": "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-esqlite", + "unstable": { + "version": [ + 20151206, + 1206 + ], + "deps": [ + "pcsv" + ], + "commit": "bc4047e09b8f6c34802db86095cd465935670dce", + "sha256": "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn" + } + }, + { + "ename": "esqlite-helm", + "commit": "bbec16cd1682ac15a81304f351f9c4e6b3b70fa9", + "sha256": "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-esqlite", + "unstable": { + "version": [ + 20151116, + 850 + ], + "deps": [ + "esqlite", + "helm" + ], + "commit": "bc4047e09b8f6c34802db86095cd465935670dce", + "sha256": "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn" + } + }, + { + "ename": "ess", + "commit": "678b5515b5194da6ca605c2070ce1f3ed730f008", + "sha256": "0nw56mjp17xw7ay2ka10rxa0sa764spsvzjrh5hscn7x02qychy9", + "fetcher": "github", + "repo": "emacs-ess/ESS", + "unstable": { + "version": [ + 20190729, + 2339 + ], + "deps": [ + "julia-mode" + ], + "commit": "0786929aaabf8ce90ad48e6e90c98d19bee9aac4", + "sha256": "1h41i157hkagminm356fg6saxbjs5ccn74xgsvqvvlyhay1xh53x" + }, + "stable": { + "version": [ + 18, + 10, + 2 + ], + "deps": [ + "julia-mode" + ], + "commit": "0728c6fdf8e13f10ee50b27fb3f39e7c229f05b1", + "sha256": "1yq41l2bicwjrc0b731iic20cpcnz6ppigri1jn621qv2qv22vy3" + } + }, + { + "ename": "ess-R-data-view", + "commit": "492c90bd0ee97c0b895efa0c5e647b2becc6db11", + "sha256": "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0", + "fetcher": "github", + "repo": "myuhe/ess-R-data-view.el", + "unstable": { + "version": [ + 20130509, + 1158 + ], + "deps": [ + "ctable", + "ess", + "popup" + ], + "commit": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "ctable", + "ess", + "popup" + ], + "commit": "d6e98d3ae1e2a2ea39a56eebcdb73e99d29562e9", + "sha256": "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x" + } + }, + { + "ename": "ess-smart-equals", + "commit": "4403cf87e05311d7fe0360f35f9634b9fdfc6f81", + "sha256": "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp", + "fetcher": "github", + "repo": "genovese/ess-smart-equals", + "unstable": { + "version": [ + 20190204, + 449 + ], + "deps": [ + "ess" + ], + "commit": "746cf9e78c3b86cbbf78d69c335a8a4ff3da79d6", + "sha256": "1by8bzw3yl86mqzh7lwz5dca243n956jnd2rz4vilpgbh5cka2l3" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "ess" + ], + "commit": "746cf9e78c3b86cbbf78d69c335a8a4ff3da79d6", + "sha256": "1by8bzw3yl86mqzh7lwz5dca243n956jnd2rz4vilpgbh5cka2l3" + } + }, + { + "ename": "ess-smart-underscore", + "commit": "b4d6166f5c80cf37c79256402fa633ad2274d065", + "sha256": "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2", + "fetcher": "github", + "repo": "mattfidler/ess-smart-underscore.el", + "unstable": { + "version": [ + 20190309, + 101 + ], + "deps": [ + "ess" + ], + "commit": "aa871c5b0448515db439ea9bed6a8574e82ddb47", + "sha256": "0knb4zfva2m0vd8awcfy5kyd21rjdhxnc1n74qazr9y82l5w7i9b" + }, + "stable": { + "version": [ + 0, + 81 + ], + "deps": [ + "ess" + ], + "commit": "ed4b37e8976124a182196a721068a8e334b6aa97", + "sha256": "00hkq5q1ra9mqjj08f357m1lg1wx1sj4nm0rb382vhf31mlj15m7" + } + }, + { + "ename": "ess-view", + "commit": "96960a8799138187b748a47ac007dc25d739fe10", + "sha256": "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4", + "fetcher": "github", + "repo": "GioBo/ess-view", + "unstable": { + "version": [ + 20181001, + 1730 + ], + "deps": [ + "ess", + "f", + "s" + ], + "commit": "d4e5a340b7bcc58c434867b97923094bd0680283", + "sha256": "1yzki5f2k7gmj4m0871h4h46zalv2x71rbpa6glkfx7bm9kyc193" + } + }, + { + "ename": "esup", + "commit": "b9d2948a42da5d4864404d2d11a924a4f235fc3b", + "sha256": "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0", + "fetcher": "github", + "repo": "jschaf/esup", + "unstable": { + "version": [ + 20180727, + 342 + ], + "deps": [ + "cl-lib" + ], + "commit": "0877d7831d0bf60e33097df135a889da153243c8", + "sha256": "0c9g9nhszxzyab57y48vj95wqzdjj441vvm2pnx1dyij7g0abqpl" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "53355b13dc9f1636ba681ffff830162ebbd3b223", + "sha256": "1a4b8390azimlrr5ayxvaks1w7009vfbm56q11ybx00xxrd26v43" + } + }, + { + "ename": "esxml", + "commit": "db6556fe1b2403d1bcdade263986fd0faf0d9087", + "sha256": "1375gryii984l33gc8f8yhl3vncjmw1w9k6xpvjgmnpx2fwr1vbq", + "fetcher": "github", + "repo": "tali713/esxml", + "unstable": { + "version": [ + 20171129, + 807 + ], + "commit": "5548ceba17deae0c3c6d0092672edc4de3c75ce3", + "sha256": "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "commit": "5548ceba17deae0c3c6d0092672edc4de3c75ce3", + "sha256": "00vv8a75wdklygdyr4km9mc2ismxak69c45jmcny41xl44rp9x8m" + } + }, + { + "ename": "etable", + "commit": "afee0fed80f4fa444116b12653c034d760f5f1fb", + "sha256": "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32", + "fetcher": "github", + "repo": "Fuco1/ETable", + "unstable": { + "version": [ + 20161028, + 2009 + ], + "deps": [ + "dash", + "interval-list" + ], + "commit": "d502141f0c69bf95256ba5cb9cd15350c7e942d2", + "sha256": "0k0g58qzkkzall715k0864v3b7p5jnfwxqgmkj087x34frcf388k" + } + }, + { + "ename": "eterm-256color", + "commit": "e556383f7e18c0215111aa720d4653465e91eff6", + "sha256": "1mxc2hqjcj67jq5k4621a7f089qahcqw7f0dzqpaxn7if11w333b", + "fetcher": "github", + "repo": "dieggsy/eterm-256color", + "unstable": { + "version": [ + 20190123, + 401 + ], + "deps": [ + "f", + "xterm-color" + ], + "commit": "0f0dab497239ebedbc9c4a48b3ec8cce4a47e980", + "sha256": "00ins8n92p5aspr6bjrvn5y5w0ximakk22yklsfmkav4h10al4as" + }, + "stable": { + "version": [ + 0, + 3, + 13 + ], + "deps": [ + "f", + "xterm-color" + ], + "commit": "dab96af559deb443c4c9c00e23389926e1607192", + "sha256": "0ysxblc90kjcz84siprnyxwh94scflivqbxylzkvjm7hbx93rsh1" + } + }, + { + "ename": "ethan-wspace", + "commit": "9454f3a58e3416fa60d8411b0db19c408935408f", + "sha256": "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws", + "fetcher": "github", + "repo": "glasserc/ethan-wspace", + "unstable": { + "version": [ + 20190522, + 1448 + ], + "commit": "0f110fc26b829093c352e8dc9e50ba51a4e483ac", + "sha256": "1w26cczq58xyzgmpsks11dnl58kvzk0av2y4bg46cgma4fdg9pb1" + }, + "stable": { + "version": [ + 0, + 7, + 1 + ], + "commit": "e055ee6730c0b03525d32e67511ef6c51e4c29e4", + "sha256": "0ik3y60xd3ap1pg5dr5ab6bq4qh8gblpgz1iiprmv7acr3ckzc41" + } + }, + { + "ename": "euslisp-mode", + "commit": "b04fffe5e52f26e92930a112a64531228f94e340", + "sha256": "0v92lry9ynkvsvx060njaw1j5lj9sb1i3srs2hfqqwyqni5ldkri", + "fetcher": "github", + "repo": "iory/euslisp-mode", + "unstable": { + "version": [ + 20170830, + 1929 + ], + "deps": [ + "exec-path-from-shell", + "helm-ag", + "s" + ], + "commit": "db62a2d148482317794727982576494596365a55", + "sha256": "187ij4s7mzppgmh0ifny70mw8w31nq86rhsrmnflz26iywnkp8x2" + } + }, + { + "ename": "eval-expr", + "commit": "f56c5312cc8ffc1a8b31fc342e8e2b8827eff846", + "sha256": "0zkphbx7ph4p7qkfxqyr6p8420j9qkvx5wghd1sza6y0kb456872", + "fetcher": "github", + "repo": "jwiegley/eval-expr", + "unstable": { + "version": [ + 20120619, + 647 + ], + "commit": "a0e69e83de41df8dbccefc1962ab4f02206a3328", + "sha256": "08zw3qrhqmnv2wxmbf74svk2cx5by4831kyw6rx13imkc4x8kngx" + } + }, + { + "ename": "eval-in-repl", + "commit": "0bee5fb7a7874dd20babd1de7f216c5bda3e0115", + "sha256": "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63", + "fetcher": "github", + "repo": "kaz-yos/eval-in-repl", + "unstable": { + "version": [ + 20171122, + 1343 + ], + "deps": [ + "ace-window", + "dash", + "paredit" + ], + "commit": "fea05a5b81d74ac53cb2a83aa83a73d9526bcc42", + "sha256": "0xm1ggdaihy1cyg4b3b9x1n93bp4qiv30p1mfzmmqm6w89z1agf0" + }, + "stable": { + "version": [ + 0, + 9, + 6 + ], + "deps": [ + "ace-window", + "dash", + "paredit" + ], + "commit": "7e2b42570b449b2a3c2922f3036a027d1e393a60", + "sha256": "0x97flv356kd7j6wbhacz0lmsrdd9as87b0n6nliq5n0y30my8dy" + } + }, + { + "ename": "eval-sexp-fu", + "commit": "4b1a896521cac1f54f7571ad5837ff215d01044d", + "sha256": "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs", + "fetcher": "github", + "repo": "hchbaw/eval-sexp-fu.el", + "unstable": { + "version": [ + 20190109, + 809 + ], + "deps": [ + "cl-lib" + ], + "commit": "e1d7165383c941b3f11c2715707adc3d91d129a0", + "sha256": "01mpnpgmlnfbi2yw9dxz5iw72mw3lk223bj172i4fnx3xdrrxbij" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "e1d7165383c941b3f11c2715707adc3d91d129a0", + "sha256": "01mpnpgmlnfbi2yw9dxz5iw72mw3lk223bj172i4fnx3xdrrxbij" + } + }, + { + "ename": "evalator", + "commit": "544a503d72c0a501f9ca854cd11181a7783294a3", + "sha256": "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk", + "fetcher": "github", + "repo": "seanirby/evalator", + "unstable": { + "version": [ + 20160213, + 128 + ], + "deps": [ + "helm-core" + ], + "commit": "f30da4da48c0b3f3cfa1fc1c7cfdb53ffe79df36", + "sha256": "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "helm-core" + ], + "commit": "edf3840f5aa025cf38d0c2677b2f88f59079409e", + "sha256": "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679" + } + }, + { + "ename": "evalator-clojure", + "commit": "5f57089f3e5c8342092128d44451b338af8a769f", + "sha256": "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3", + "fetcher": "github", + "repo": "seanirby/evalator-clojure", + "unstable": { + "version": [ + 20160208, + 2148 + ], + "deps": [ + "cider", + "evalator" + ], + "commit": "caa4e0a137bdfada86593128a654e16aa617ad50", + "sha256": "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7" + } + }, + { + "ename": "eve-mode", + "commit": "e0f197adfe64ef88d90d24dfd6532bf52a5bce0d", + "sha256": "1ch50bm452g8k1xnqcbpmpwkmg8amzv7bq0hphk3y0kiqkwd1gdh", + "fetcher": "github", + "repo": "witheve/emacs-eve-mode", + "unstable": { + "version": [ + 20170822, + 2231 + ], + "deps": [ + "markdown-mode", + "polymode" + ], + "commit": "a4661114d9c18725691b76321d72167ca5a9070a", + "sha256": "19s6cid42q0lm2w94a7f6sxvmy3zpjdj5r5dbwcxxp5n3qfs7nip" + } + }, + { + "ename": "evil", + "commit": "440482c0edac8ee8bd4fe22f6bc5c1607f34c7ad", + "sha256": "1d36r6mi5nvrwnk4a9338wmhr72fcbrwj0r8gmvivpjdngjy4k39", + "fetcher": "github", + "repo": "emacs-evil/evil", + "unstable": { + "version": [ + 20190729, + 704 + ], + "deps": [ + "cl-lib", + "goto-chg", + "undo-tree" + ], + "commit": "874beba2cb243c325eca08fb7badff567f3c9494", + "sha256": "1h7s3bapv7g1z87ygmrsisbjjzpwhbsds5ywj2srpifd4llrxa4m" + }, + "stable": { + "version": [ + 1, + 2, + 14 + ], + "deps": [ + "cl-lib", + "goto-chg", + "undo-tree" + ], + "commit": "3766a521a60e6fb0073220199425de478de759ad", + "sha256": "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q" + } + }, + { + "ename": "evil-anzu", + "commit": "06b0609b56016d938b28d56d9eeb6305116b38af", + "sha256": "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70", + "fetcher": "github", + "repo": "syohex/emacs-evil-anzu", + "unstable": { + "version": [ + 20170124, + 718 + ], + "deps": [ + "anzu", + "evil" + ], + "commit": "9bca6ca14d865e7e005bc02a28a09b4ae74facc9", + "sha256": "1y0jiglcazxnvggs5ljys2iizljsihlgr46svbbwgf45ibdrw392" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "anzu", + "evil" + ], + "commit": "64cc08a3546373f28cd7bfd76a3e93bd78efa251", + "sha256": "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr" + } + }, + { + "ename": "evil-args", + "commit": "0976c82a22f1a8701b9da0b8ba4753ed48191376", + "sha256": "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w", + "fetcher": "github", + "repo": "wcsmith/evil-args", + "unstable": { + "version": [ + 20180908, + 2157 + ], + "deps": [ + "evil" + ], + "commit": "758ad5ae54ad34202064fec192c88151c08cb387", + "sha256": "0k35glgsirc3cph8v5hhjrqfh4ndwh8a28qbr03y3jl8s453xcj7" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "evil" + ], + "commit": "2a88b4d19953a11227cc1e91973b92149116f44c", + "sha256": "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq" + } + }, + { + "ename": "evil-avy", + "commit": "f86bccc9f2190cfa5487cf8e9c9b7938774533ed", + "sha256": "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd", + "fetcher": "github", + "repo": "louy2/evil-avy", + "unstable": { + "version": [ + 20150908, + 748 + ], + "deps": [ + "avy", + "cl-lib", + "evil" + ], + "commit": "2dd955cc3ecaa7ddeb67b295298abdc6d16dd3a5", + "sha256": "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l" + } + }, + { + "ename": "evil-better-visual-line", + "commit": "c46640394c29643eea4e59066bab9963db67b8d7", + "sha256": "00l6gd66apf0gphlx5hk9lcl7rmj7ag8kf558psyzcyvhpmff2bq", + "fetcher": "github", + "repo": "YourFin/evil-better-visual-line", + "unstable": { + "version": [ + 20181026, + 1028 + ], + "deps": [ + "evil" + ], + "commit": "15f77e67fcc3c48db323ccd8c8c4bc249e2911b8", + "sha256": "05wzq663p3irrmd5b2yg001qf8m9wmaj3mnsc76fad184m03g81r" + } + }, + { + "ename": "evil-cleverparens", + "commit": "e3b3637d6527b16ea0d606fd87b01004be446b09", + "sha256": "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799", + "fetcher": "github", + "repo": "luxbock/evil-cleverparens", + "unstable": { + "version": [ + 20170718, + 413 + ], + "deps": [ + "dash", + "evil", + "paredit", + "smartparens" + ], + "commit": "8c45879d49bfa6d4e414b6c1df700a4a51cbb869", + "sha256": "0lhnybpnk4n2yhlcnj9zxn0vi5hpjfaqfhvyfy7ckzz74g8v7iyw" + } + }, + { + "ename": "evil-colemak-basics", + "commit": "945417d19faf492fb678aee3ba692d14e7518d85", + "sha256": "1sbbli0hdmpc23f3g5n95svqfdg3rlvf71plyvpv1a6va9jhi83k", + "fetcher": "github", + "repo": "wbolster/evil-colemak-basics", + "unstable": { + "version": [ + 20170425, + 1209 + ], + "deps": [ + "evil", + "evil-snipe" + ], + "commit": "7844079b47f47bb1dc24c885b0ac2e67524fa960", + "sha256": "0phspmd31pcxana2lp6mqywmghhdpj6ydsrl1bjn4b1gcp1fqsy2" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "evil", + "evil-snipe" + ], + "commit": "7844079b47f47bb1dc24c885b0ac2e67524fa960", + "sha256": "0phspmd31pcxana2lp6mqywmghhdpj6ydsrl1bjn4b1gcp1fqsy2" + } + }, + { + "ename": "evil-colemak-minimal", + "commit": "828c744062069027f19fe5f2f233179f9149dc16", + "sha256": "0qi5k17b9k227zz9binbrd22cwmlqxkay98by9yxcbyhl4hjhdyy", + "fetcher": "github", + "repo": "bmallred/evil-colemak-minimal", + "unstable": { + "version": [ + 20171006, + 1317 + ], + "deps": [ + "evil" + ], + "commit": "6d98b6da60f414524a0d718f76024c26dce742b3", + "sha256": "0pd05jq4qkw5xx7xqzxzx62fsm77vjz0ry9ayaqgqw5831rbp553" + } + }, + { + "ename": "evil-collection", + "commit": "fbc35279115f6fdf1ce7d1ecef3b413c7ca9c4f1", + "sha256": "1l6x782ix873n90k9g00i9065h31dnhv07bgzrp28l7y7bivqwl7", + "fetcher": "github", + "repo": "emacs-evil/evil-collection", + "unstable": { + "version": [ + 20190725, + 213 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "f8cf811d658da2618359391436e194bb41b95ae5", + "sha256": "1yayphihwm8nsp3mryxdckaki21xmqn1vjb59z5kl8mashfsm2v2" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "733f8d0d289fcbb58705acd1049b618826a3c011", + "sha256": "01hr5wf693s2djs6l83nfpq6wyyws99c5nwil6hpqhvrwp4f5h95" + } + }, + { + "ename": "evil-commentary", + "commit": "fe5b05152c919d49ddd920b1bd5ffc351141fa0d", + "sha256": "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz", + "fetcher": "github", + "repo": "linktohack/evil-commentary", + "unstable": { + "version": [ + 20170413, + 1451 + ], + "deps": [ + "evil" + ], + "commit": "395f91014b69844b81660c155f42eb9b1b3d199d", + "sha256": "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "deps": [ + "evil" + ], + "commit": "395f91014b69844b81660c155f42eb9b1b3d199d", + "sha256": "0zjs9zyqfygnpxapvf0ymmiid40i06cxbhjzd81zw33nafgkf6r4" + } + }, + { + "ename": "evil-dvorak", + "commit": "69abca9985339c59ee0e2334cabf3c99e1ba1349", + "sha256": "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn", + "fetcher": "github", + "repo": "jbranso/evil-dvorak", + "unstable": { + "version": [ + 20160416, + 1841 + ], + "deps": [ + "evil" + ], + "commit": "824f7c56980d72a0ff04c662223540cd66f13754", + "sha256": "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20" + } + }, + { + "ename": "evil-easymotion", + "commit": "e67955ead0b9d69acab40d66d4e0b821229d635c", + "sha256": "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv", + "fetcher": "github", + "repo": "PythonNut/evil-easymotion", + "unstable": { + "version": [ + 20180114, + 654 + ], + "deps": [ + "avy", + "cl-lib" + ], + "commit": "79c13ed3bce018ac09d358e642e5bd7025e93603", + "sha256": "0496dnbciq8gbivihas1y58gwd4nbfz767rr98zpwgkz8l2jvy73" + } + }, + { + "ename": "evil-ediff", + "commit": "b3eff8cd4bedff3e2111d96743d94be5053826f1", + "sha256": "0yglhxm670996hd7305q38y5f47y87n75hh0q7qlm2vra2m2wa5s", + "fetcher": "github", + "repo": "emacs-evil/evil-ediff", + "unstable": { + "version": [ + 20170724, + 1923 + ], + "deps": [ + "evil" + ], + "commit": "50d26cb0654fca8f8fd7227410e5cbf0b8f681cf", + "sha256": "0x81ws1kaiklqnsywvjyv5pifsj5hd3wsl1wq11aqik34kjxfy2g" + } + }, + { + "ename": "evil-embrace", + "commit": "d4886f068766514deab5673b4366d6bdd311e3b6", + "sha256": "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7", + "fetcher": "github", + "repo": "cute-jumper/evil-embrace.el", + "unstable": { + "version": [ + 20160519, + 1829 + ], + "deps": [ + "embrace", + "evil-surround" + ], + "commit": "4379adea032b25e359d01a36301b4a5afdd0d1b7", + "sha256": "0rj1ippc6yi560xalhd91r7a00lk3d0jk13w464myznkpnasfw3a" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "embrace", + "evil-surround" + ], + "commit": "4379adea032b25e359d01a36301b4a5afdd0d1b7", + "sha256": "0rj1ippc6yi560xalhd91r7a00lk3d0jk13w464myznkpnasfw3a" + } + }, + { + "ename": "evil-escape", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0jiwsgcqw8m6z4z82gx0m0r0vbvkcxc0czhn4mqjwkhhglwzgi8l", + "fetcher": "github", + "repo": "syl20bnr/evil-escape", + "unstable": { + "version": [ + 20180910, + 1234 + ], + "commit": "f4e9116bfbaac8c9d210c17ad488e0982291245f", + "sha256": "1whppnlzkjig1yrz0fjvp8cy86215gjahgh88166nzk95wlc3pvf" + }, + "stable": { + "version": [ + 3, + 14 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "b4d44fc5015341e484495fc86b73d09b2ac062ec", + "sha256": "0s8lmmm25qabicwaj9jybpbd8mkc62yl7jnhk1lpablydjkv3w2i" + } + }, + { + "ename": "evil-ex-fasd", + "commit": "8ebdddebb0272765ebbf72073da8c2158a05f624", + "sha256": "1zljsrpbsimldpc1wviw87vgm6941zz4wy8vhpplwkfbnywiwnp7", + "fetcher": "github", + "repo": "yqrashawn/evil-ex-fasd", + "unstable": { + "version": [ + 20180903, + 612 + ], + "deps": [ + "evil", + "fasd" + ], + "commit": "ed8fbbe23a8a268d9dcbf1a6132e928ba2c655c5", + "sha256": "0fr57nlg7m65gzhnrwnqi5bgy4vzl0l0mxk63sr3561r8fnm8hbc" + } + }, + { + "ename": "evil-ex-shell-command", + "commit": "6d4205a35cc0c4518ab1424d91bbc627e8cdae42", + "sha256": "1lbk31l7g6n6lqm8rvsfqbagqvhkp0s2v6wz8x4fnrjj0ymd4syf", + "fetcher": "github", + "repo": "yqrashawn/evil-ex-shell-command", + "unstable": { + "version": [ + 20181226, + 226 + ], + "deps": [ + "evil" + ], + "commit": "a6ca6d27c07f6a0807abfb5b8f8865f1d17f54aa", + "sha256": "0jx2cj6p8wag7aphbgf3ij5v71prxkbxpfia8nmcpmrpvjqpsb74" + } + }, + { + "ename": "evil-exchange", + "commit": "9b06397c032d24a8da4074ad97cdb30d0c468e20", + "sha256": "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r", + "fetcher": "github", + "repo": "Dewdrops/evil-exchange", + "unstable": { + "version": [ + 20170511, + 259 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "47691537815150715e64e6f6ec79be7746c96120", + "sha256": "0bjpn4yqig17ddym6wqq5fm1b294q74hzcbj9a6gs97fqiwf88xa" + } + }, + { + "ename": "evil-expat", + "commit": "f08f6396e66479eb9510727968c5bb01ac239476", + "sha256": "03niji6wymhlfkvdg90gasccs4683djxcj925c8k0vdgmfr8sx32", + "fetcher": "github", + "repo": "edkolev/evil-expat", + "unstable": { + "version": [ + 20190521, + 714 + ], + "deps": [ + "evil" + ], + "commit": "f4fcd0aa3edc359adb5c986b5dd9188d220d84e2", + "sha256": "0872ix682hkdz0k8pn6sb54rqkx00rz5fxpd5j2snx406yagpaxz" + } + }, + { + "ename": "evil-extra-operator", + "commit": "fc0b157c3adf8a2899c4dd2ce98e8a81e4f403a3", + "sha256": "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5", + "fetcher": "github", + "repo": "Dewdrops/evil-extra-operator", + "unstable": { + "version": [ + 20161213, + 403 + ], + "deps": [ + "evil" + ], + "commit": "e16a9b36f9901254da9af8a73871061616410fc3", + "sha256": "116srvfck3b244shxm9cmw3yvpprjgr840fvcv6jwwpfaphafxw4" + } + }, + { + "ename": "evil-find-char-pinyin", + "commit": "8755d2fca519f23f11c5cbb53443a2ad4340220e", + "sha256": "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79", + "fetcher": "github", + "repo": "cute-jumper/evil-find-char-pinyin", + "unstable": { + "version": [ + 20160514, + 2041 + ], + "deps": [ + "evil", + "pinyinlib" + ], + "commit": "04e277946d658f1a73c68dcbbadea9c21097a31c", + "sha256": "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d" + } + }, + { + "ename": "evil-fringe-mark", + "commit": "70dcc07c389d5454de64fb08cd666d489d6d5483", + "sha256": "1ahlbp31ll24vzah4bv1xx58gn8y8fsjb0n9a135zwb3fjla9drb", + "fetcher": "github", + "repo": "Andrew-William-Smith/evil-fringe-mark", + "unstable": { + "version": [ + 20190320, + 453 + ], + "deps": [ + "evil", + "fringe-helper", + "goto-chg" + ], + "commit": "a1689fddb7ee79aaa720a77aada1208b8afd5c20", + "sha256": "0pf8bl7bmcn1l0dlxkgbgwb1n2fxpzxwcr4jf06gzyrrmmwah526" + } + }, + { + "ename": "evil-god-state", + "commit": "46b8586e9a821efb67539155f783a32867084bfa", + "sha256": "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf", + "fetcher": "github", + "repo": "gridaphobe/evil-god-state", + "unstable": { + "version": [ + 20141117, + 255 + ], + "deps": [ + "evil", + "god-mode" + ], + "commit": "3d44197dc0a1fb40e7b7ff8717f8a8c339ce1d40", + "sha256": "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h" + } + }, + { + "ename": "evil-goggles", + "commit": "811b1261705b4c525e165fa9ee23ae191727a623", + "sha256": "151xvawyhcjp98skaif08wbxqaw602f51zgwm604hp25a111qmnq", + "fetcher": "github", + "repo": "edkolev/evil-goggles", + "unstable": { + "version": [ + 20181123, + 1946 + ], + "deps": [ + "evil" + ], + "commit": "78454a7e8bd609edf0d93cb0a7f9ed576dd33546", + "sha256": "1yn72wmrda670h0bz3gdqh6k44ja60wkk9f4hijh9w1hw0vazk20" + } + }, + { + "ename": "evil-iedit-state", + "commit": "b0b6b7d09c023cfe34da65fa1eb8f3fdbe7b1290", + "sha256": "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl", + "fetcher": "github", + "repo": "syl20bnr/evil-iedit-state", + "unstable": { + "version": [ + 20180607, + 558 + ], + "deps": [ + "evil", + "iedit" + ], + "commit": "f75cff4ecbd5beaa9ca64a6c157c4105f078daec", + "sha256": "0f6m5wi1q6ac9mkvalm62rlnlkjz1c315a4sa93p6iw9x12llkgw" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "evil", + "iedit" + ], + "commit": "eab7d5e3e7d25c4a852fedb6c0c7f50dd9e9bd7c", + "sha256": "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss" + } + }, + { + "ename": "evil-indent-plus", + "commit": "992ea3d372fa3569ad9f838aa2818eaee8b8033a", + "sha256": "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12", + "fetcher": "github", + "repo": "TheBB/evil-indent-plus", + "unstable": { + "version": [ + 20151109, + 1906 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "0c7501e6efed661242c3a20e0a6c79a6455c2c40", + "sha256": "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6" + } + }, + { + "ename": "evil-indent-textobject", + "commit": "63cfc9c2962780dd5d27da670d5540a0441e7ca2", + "sha256": "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09", + "fetcher": "github", + "repo": "cofi/evil-indent-textobject", + "unstable": { + "version": [ + 20130831, + 2219 + ], + "deps": [ + "evil" + ], + "commit": "70a1154a531b7cfdbb9a31d6922482791e20a3a7", + "sha256": "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz" + } + }, + { + "ename": "evil-leader", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6", + "fetcher": "github", + "repo": "cofi/evil-leader", + "unstable": { + "version": [ + 20140606, + 1243 + ], + "deps": [ + "evil" + ], + "commit": "39f7014bcf8b36463e0c7512c638bda4bac6c2cf", + "sha256": "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3" + }, + "stable": { + "version": [ + 0, + 4, + 3 + ], + "deps": [ + "evil" + ], + "commit": "753b01eb4958370ae2226b3780ff31fe157c2852", + "sha256": "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5" + } + }, + { + "ename": "evil-ledger", + "commit": "500e99a1b92f0a0c144f843cd7645872034d9fbb", + "sha256": "13idy2kbzhckzfwrjnzjrf8h2881w3v8pmhlcj26xcyf4ch0dq9r", + "fetcher": "github", + "repo": "atheriel/evil-ledger", + "unstable": { + "version": [ + 20180802, + 1612 + ], + "deps": [ + "evil", + "ledger-mode" + ], + "commit": "7a9f9f5d39c42fffdba8004f8982642351f2b233", + "sha256": "010r1qn9l3clqqrlia0y25bqjbrixvf8i409v10yxqb949jvw1vk" + } + }, + { + "ename": "evil-lion", + "commit": "8a7a0691775afec6d2c7be3d6739b55bd1d2053d", + "sha256": "1rwmpc5ifblb41c1yhhv26ayff4nk9iza7w0wb5ganny2r82fg2v", + "fetcher": "github", + "repo": "edkolev/evil-lion", + "unstable": { + "version": [ + 20170811, + 614 + ], + "deps": [ + "evil" + ], + "commit": "6b03593f5dd6e7c9ca02207f9a73615cf94c93ab", + "sha256": "1a162hynp0jcsn50c1w5a02mrw9w3q05c7lkqzqd25px3d0p772q" + } + }, + { + "ename": "evil-lisp-state", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16h6zi0kkq2zlrwqiz6avnw2ady3h9gmxyinvk5gbkskxf12d1pz", + "fetcher": "github", + "repo": "syl20bnr/evil-lisp-state", + "unstable": { + "version": [ + 20160404, + 248 + ], + "deps": [ + "bind-map", + "evil", + "smartparens" + ], + "commit": "3c65fecd9917a41eaf6460f22187e2323821f3ce", + "sha256": "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh" + }, + "stable": { + "version": [ + 8, + 2 + ], + "deps": [ + "bind-map", + "evil", + "smartparens" + ], + "commit": "3c65fecd9917a41eaf6460f22187e2323821f3ce", + "sha256": "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh" + } + }, + { + "ename": "evil-lispy", + "commit": "377d43f3717b8e17c3adce886aaf3e579383ec64", + "sha256": "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld", + "fetcher": "github", + "repo": "sp3ctum/evil-lispy", + "unstable": { + "version": [ + 20190502, + 739 + ], + "deps": [ + "evil", + "hydra", + "lispy" + ], + "commit": "ed317f7fccbdbeea8aa04a91b1b1f48a0e2ddc4e", + "sha256": "0izgd9zwfwykmznv6wjrq9czmjqc1hkw41szrjmrcxy5kbz1p5c0" + } + }, + { + "ename": "evil-magit", + "commit": "50315ec837d2951bf5b2bb75809a35dd7ffc8fe8", + "sha256": "02ncki7qrl22804576h76xl4d5lvvk32lzn9gvxn63hb19r0s980", + "fetcher": "github", + "repo": "emacs-evil/evil-magit", + "unstable": { + "version": [ + 20190620, + 153 + ], + "deps": [ + "evil", + "magit" + ], + "commit": "6a32e4359cbd2803bafb7134cb6df312644ac986", + "sha256": "0i8xpa6vr30vjy3iilcx9g65srrprg1igk3f4xp6lwcc6pkc2mbj" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "deps": [ + "evil", + "magit" + ], + "commit": "a24186be7cc2cdab24b56f6dcc4665eeb8349c1a", + "sha256": "12hr2w5r2hgagb3hqbi59v73rxpjml5prc3m7dw3wzsm0rf1rwh3" + } + }, + { + "ename": "evil-mark-replace", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "14j2d46288shlixb57nh5vlqdi3aiv20djvcbhiw1cm9ar2c3y4v", + "fetcher": "github", + "repo": "redguardtoo/evil-mark-replace", + "unstable": { + "version": [ + 20150424, + 718 + ], + "deps": [ + "evil" + ], + "commit": "56cf191724a3e82239ca47a17b071c20aedb0617", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "evil" + ], + "commit": "56cf191724a3e82239ca47a17b071c20aedb0617", + "sha256": "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv" + } + }, + { + "ename": "evil-matchit", + "commit": "aeab4a998bffbc784e8fb23927d348540baf9951", + "sha256": "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq", + "fetcher": "github", + "repo": "redguardtoo/evil-matchit", + "unstable": { + "version": [ + 20190801, + 140 + ], + "deps": [ + "evil" + ], + "commit": "2143844e2bdf53ed7aac3dc599ab4bc8d6947783", + "sha256": "1vvw6rkm6301qrcf04slhbadm5mc5fiv3lr3q2dglyw1vlpb6xac" + }, + "stable": { + "version": [ + 2, + 3, + 2 + ], + "deps": [ + "evil" + ], + "commit": "2143844e2bdf53ed7aac3dc599ab4bc8d6947783", + "sha256": "1vvw6rkm6301qrcf04slhbadm5mc5fiv3lr3q2dglyw1vlpb6xac" + } + }, + { + "ename": "evil-mc", + "commit": "96770d778a03ab012fb82a3a0122983db6f9b0c4", + "sha256": "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs", + "fetcher": "github", + "repo": "gabesoft/evil-mc", + "unstable": { + "version": [ + 20190321, + 1606 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "5205fe671803465149e578849bbbe803c23a8e4e", + "sha256": "03pxpjjxbai4dwp84bgxh52ahh0f6ac58xi2mds1kl4v93nm7v42" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "be2259b8cedd62011b25ddbcc1774bbbe9a66c61", + "sha256": "0p435ykkq41nksd40qczlhz6kvs2zpkxch661wy0w93wffwnq3b9" + } + }, + { + "ename": "evil-mc-extras", + "commit": "cd7c9aa0f4c17e7f27836e75a0b83c44a68ad744", + "sha256": "1px4akqaddqgfd03932d03d3rrvjr5lv5nc94xc448kqcbfn7yjk", + "fetcher": "github", + "repo": "gabesoft/evil-mc-extras", + "unstable": { + "version": [ + 20170202, + 1649 + ], + "deps": [ + "cl-lib", + "evil", + "evil-mc", + "evil-numbers" + ], + "commit": "8c1af3232dd1e15b2ea38360b8cd1e857e11c416", + "sha256": "0f67ky9w2qapah0l0ym2c6x1j3ngf8whp1ls42f3kzb9gfi36fpn" + } + }, + { + "ename": "evil-mu4e", + "commit": "332f3f9c6dc106e58345abbc2d8fd99056d518c0", + "sha256": "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq", + "fetcher": "github", + "repo": "JorisE/evil-mu4e", + "unstable": { + "version": [ + 20180613, + 1039 + ], + "deps": [ + "evil" + ], + "commit": "5b22c1e30246318f233264506272d770f63897ca", + "sha256": "17qppyw9sx8y6caiwraxnbs4fkhvjsfk4brda7jy9wd0i074mwk4" + } + }, + { + "ename": "evil-multiedit", + "commit": "997f5a6999d1add57fae33ba8eb3e3bc60d7bb56", + "sha256": "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp", + "fetcher": "github", + "repo": "hlissner/evil-multiedit", + "unstable": { + "version": [ + 20190103, + 715 + ], + "deps": [ + "cl-lib", + "evil", + "iedit" + ], + "commit": "cb35914ffabb4f65d22ab2f812ff6e7622cc5c26", + "sha256": "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3" + }, + "stable": { + "version": [ + 1, + 3, + 9 + ], + "deps": [ + "cl-lib", + "evil", + "iedit" + ], + "commit": "cb35914ffabb4f65d22ab2f812ff6e7622cc5c26", + "sha256": "19h3kqylqzbjv4297wkzzxdmn9yxbg6z4ga4ssrqri90xs7m3rw3" + } + }, + { + "ename": "evil-nerd-commenter", + "commit": "a3e1ff69e7cc95a5b5d628524ad836833f4ee736", + "sha256": "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d", + "fetcher": "github", + "repo": "redguardtoo/evil-nerd-commenter", + "unstable": { + "version": [ + 20190801, + 148 + ], + "commit": "7132693a4cc684dff232839fed45a8a54d832646", + "sha256": "0kw9ikdax8b55g19c61n8aznavzms61rqr6lwiw37dsc1589nr3k" + }, + "stable": { + "version": [ + 3, + 3, + 8 + ], + "commit": "f510a491c17192ce235bb7ce7589cacf99db8482", + "sha256": "0qd5a89mzvdyhd8lm13iwp220vzpd6dajwx54frlc5bzsxdmg6vc" + } + }, + { + "ename": "evil-nl-break-undo", + "commit": "a43ea989f52cebadc68c8e9c0f87f8f2e23b0974", + "sha256": "0q6b459z06h4l47b5lcxlqbksf8sbazkk569r3h2577zpc56prfn", + "fetcher": "github", + "repo": "VanLaser/evil-nl-break-undo", + "unstable": { + "version": [ + 20181125, + 2054 + ], + "commit": "4a8f2bf99c978a109eeb92965a72a17bedb68762", + "sha256": "0xnjzdbn0rzzr1vkd31swdhxj2vm7xijhn5s5gigmsm3i0n4k0sa" + } + }, + { + "ename": "evil-numbers", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2", + "fetcher": "github", + "repo": "cofi/evil-numbers", + "unstable": { + "version": [ + 20140606, + 1251 + ], + "commit": "6ea1c8c3a9b37bed63d48f1128e9a4910e68187e", + "sha256": "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "8834eb2e8bd93561a706363946701d0d90546a9f", + "sha256": "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8" + } + }, + { + "ename": "evil-opener", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0cld853pyzlaa306rpypw2wm4953i6y06irlk96bql9aa1zx977g", + "fetcher": "github", + "repo": "0robustus1/opener.el", + "unstable": { + "version": [ + 20161207, + 1810 + ], + "deps": [ + "evil", + "opener" + ], + "commit": "c384f67278046fdcd220275fdd212ab85672cbeb", + "sha256": "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "evil", + "opener" + ], + "commit": "c384f67278046fdcd220275fdd212ab85672cbeb", + "sha256": "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h" + } + }, + { + "ename": "evil-org", + "commit": "1768558ed0a0249421437b66fe45018dd768e637", + "sha256": "18glpsnpxap4dvnvkl59h9pnwlp20libsfbbkmvrbzsvbdyspg6z", + "fetcher": "github", + "repo": "Somelauw/evil-org-mode", + "unstable": { + "version": [ + 20180323, + 2306 + ], + "deps": [ + "evil" + ], + "commit": "b6d652a9163d3430a9e0933a554bdbee5244bbf6", + "sha256": "176hrw7y7nczffbyhsa167b8rvfacsmcafm2gpkrdjqlrikbmrhl" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "evil", + "org" + ], + "commit": "2d7c58dbeca0d4ac7b4eab5f47b77946951f27e9", + "sha256": "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7" + } + }, + { + "ename": "evil-paredit", + "commit": "88db86e1351410bcff6f3ed80681946afcec9959", + "sha256": "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy", + "fetcher": "github", + "repo": "roman/evil-paredit", + "unstable": { + "version": [ + 20150413, + 2048 + ], + "deps": [ + "evil", + "paredit" + ], + "commit": "e058fbdcf9dbf7ad6cc77f0172d7517ef233d55f", + "sha256": "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p" + } + }, + { + "ename": "evil-python-movement", + "commit": "130e6d17735ff86b962859528d7e50869f683251", + "sha256": "1qs0z93rpi9dz6hy64816afdr4k5gssyw2dhaxcn152ylg1yzkg3", + "fetcher": "git", + "url": "https://bitbucket.org/FelipeLema/evil-python-movement.el", + "unstable": { + "version": [ + 20180724, + 1420 + ], + "deps": [ + "cl-lib", + "dash", + "evil", + "s" + ], + "commit": "9936b3b7f8d96415d517c1f3604637889484a637", + "sha256": "11ivb95ilsw3svpna9n07yf8s9q3w36ia6js2qv6wf0d0dp2xb9r" + } + }, + { + "ename": "evil-quickscope", + "commit": "ec118caf243c74d243f533c9e12f7de0d6c43bc4", + "sha256": "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489", + "fetcher": "github", + "repo": "blorbx/evil-quickscope", + "unstable": { + "version": [ + 20160202, + 1924 + ], + "deps": [ + "evil" + ], + "commit": "37a20e4c56c6058abf186ad4013c155e695e876f", + "sha256": "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "evil" + ], + "commit": "37a20e4c56c6058abf186ad4013c155e695e876f", + "sha256": "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7" + } + }, + { + "ename": "evil-rails", + "commit": "ff526fe800b0535067431f1ae78c4a4b5594b23d", + "sha256": "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj", + "fetcher": "github", + "repo": "antono/evil-rails", + "unstable": { + "version": [ + 20190512, + 1517 + ], + "deps": [ + "evil", + "projectile-rails" + ], + "commit": "b0f1c5de6720714febeb76c4b569b71bb891938c", + "sha256": "0mypsbf0mg2b4746r9b9ybj51qkrlxz48lf9g53kzbk3wdf6p5vi" + } + }, + { + "ename": "evil-replace-with-char", + "commit": "0ac1b487e0fe193cc46c8b489686972ed6db3973", + "sha256": "0lgazw53j44rc72czwqxs6yaz67l9i1v52wbi7l9w958fnjra84r", + "fetcher": "github", + "repo": "ninrod/evil-replace-with-char", + "unstable": { + "version": [ + 20180324, + 2206 + ], + "deps": [ + "evil" + ], + "commit": "ed4a12d5bff11163eb03ad2826c52fd30f51a8d3", + "sha256": "1nhnwl39wsi7akzcjqszxxw2b6j9i5y4qabcd8p387zajjpgscwk" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "evil" + ], + "commit": "dddbbafdd620cc48dd0a257baf4010e1b415ebe8", + "sha256": "0gcmva2q1bxqp3p8cl1nf19kh4nkgfdm64havyzhnkwq18q84pxi" + } + }, + { + "ename": "evil-replace-with-register", + "commit": "b1bd98aebefc13da5a129d1d3f1c8878e4a70654", + "sha256": "0qyym6vwjs0aqf2p28rh96v30pgxg060pxyij0vrfj469wzmlrj9", + "fetcher": "github", + "repo": "Dewdrops/evil-ReplaceWithRegister", + "unstable": { + "version": [ + 20170713, + 925 + ], + "deps": [ + "evil" + ], + "commit": "91cc7bf21a94703c441cc9212214075b226b7f67", + "sha256": "14rpn76qrf287s3y2agmddcxi27r226i53ixjvd694ss039g0r11" + } + }, + { + "ename": "evil-rsi", + "commit": "24f438b47e8ede0ef84261424c122d2ac28b90cb", + "sha256": "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345", + "fetcher": "github", + "repo": "linktohack/evil-rsi", + "unstable": { + "version": [ + 20160221, + 2104 + ], + "deps": [ + "evil" + ], + "commit": "65ae60866be494e4622fe383e23975e04d2a42a3", + "sha256": "0cc2yxck5brnicllcadb4m5zlzczvdy6v38q34hj8bri1kxfzslz" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "evil" + ], + "commit": "236bf6ed1e2285698db808463e5f2f69f5f5e7c0", + "sha256": "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f" + } + }, + { + "ename": "evil-search-highlight-persist", + "commit": "f2e91974ddb219c88229782b70ade7e14f20c0b5", + "sha256": "08l8ymrp9vkpwprq9gp4562yvcnd4hfc3z7n4n5lz7h6ffv3zym3", + "fetcher": "github", + "repo": "naclander/evil-search-highlight-persist", + "unstable": { + "version": [ + 20170523, + 334 + ], + "deps": [ + "highlight" + ], + "commit": "979d2dec58d3b9c5ca5fdf4bb802a0209913794e", + "sha256": "0ak8r7cgz5xnjyfg3w9mwxhvaw8ny3hy0i2bqn3vf5dps649iy7i" + }, + "stable": { + "version": [ + 1, + 8 + ], + "deps": [ + "highlight" + ], + "commit": "0e2b3d4e3dec5f38ae95f62519eb2736f73c0b85", + "sha256": "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk" + } + }, + { + "ename": "evil-smartparens", + "commit": "850898fbfc8e0aeb779e8feae56476d989110e79", + "sha256": "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza", + "fetcher": "github", + "repo": "expez/evil-smartparens", + "unstable": { + "version": [ + 20171210, + 1513 + ], + "deps": [ + "evil", + "smartparens" + ], + "commit": "026d4a3cfce415a4dfae1457f871b385386e61d3", + "sha256": "05habba44zls2d20kgzshrq2psagay16cnvcnkqgrbhvj1rxfmrk" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "evil", + "smartparens" + ], + "commit": "9fe4eed1c6327197afe6c13bb0771e18908aff00", + "sha256": "1di4qz5fbrlwbg16c2j0m7y8zqfxw027qd7zqmc3rwk9znbhg7wl" + } + }, + { + "ename": "evil-snipe", + "commit": "6748f3febbe2f098761e967b4dc67791186d0aa7", + "sha256": "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn", + "fetcher": "github", + "repo": "hlissner/evil-snipe", + "unstable": { + "version": [ + 20180731, + 1731 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "8dd076cc56eb9b04494e4e303b86a959b048350b", + "sha256": "05zlmkyl1gms7pk2izh67j7xk4mb5y94jpyx63lg59yc391p5p07" + }, + "stable": { + "version": [ + 2, + 0, + 8 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "dc62ac317fd29f018e9785c1b3b7dd7ad57b3938", + "sha256": "18j33smlajj7ynigfgm64z3kfys5idbxin2gd93civ2564n85r33" + } + }, + { + "ename": "evil-space", + "commit": "4e5a4b9427038f90898ac0e237e71ba7152501f5", + "sha256": "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23", + "fetcher": "github", + "repo": "linktohack/evil-space", + "unstable": { + "version": [ + 20151208, + 1228 + ], + "deps": [ + "evil" + ], + "commit": "a9c07284d308425deee134c9d88a2d538dd229e6", + "sha256": "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "deps": [ + "evil" + ], + "commit": "f77860fa00662e2def3e1885adac777f051e1e61", + "sha256": "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk" + } + }, + { + "ename": "evil-string-inflection", + "commit": "0720a0f5b775fcee8d1cfa0defe80048e2dd0972", + "sha256": "0w9x49c0gmv4waspa9fvbhf2adm19cixkwx7a7la9v4qy7da6akh", + "fetcher": "github", + "repo": "ninrod/evil-string-inflection", + "unstable": { + "version": [ + 20180313, + 1755 + ], + "deps": [ + "evil", + "string-inflection" + ], + "commit": "008b74a9b2994abfb4ff5b679b8a5a26fd45e98a", + "sha256": "0lwwrd9n0ha2xn5a053s8a1l05zya4smf61yc5c1s4fqv0xai9fj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "evil", + "string-inflection" + ], + "commit": "f6a3eca0f0fa8e56e6938e1dd48537eef1fae05f", + "sha256": "1akk0yylwcw4f91hprrrsijhbdcmrx1nnpgfyzpl4k5d4b30y8d5" + } + }, + { + "ename": "evil-surround", + "commit": "2c9dc47a4c837c44429a74fd998fe468c00639f2", + "sha256": "0aphv5zinb0lzdx22qbzcr7fn6jbpkdczar7py3df6mzxw5wvcm1", + "fetcher": "github", + "repo": "emacs-evil/evil-surround", + "unstable": { + "version": [ + 20190403, + 418 + ], + "deps": [ + "evil" + ], + "commit": "5ad01dfa86424c4b22cd1dfa375f13bd8c656f43", + "sha256": "1ajsi6xn8mliwzl24h6pp9rd91z7f20yvkphr9q7k6zpjrd7fb9q" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "deps": [ + "evil" + ], + "commit": "5ad01dfa86424c4b22cd1dfa375f13bd8c656f43", + "sha256": "1ajsi6xn8mliwzl24h6pp9rd91z7f20yvkphr9q7k6zpjrd7fb9q" + } + }, + { + "ename": "evil-swap-keys", + "commit": "2abff8e3d54ac13c4fe90692a56437844accca25", + "sha256": "12cx95mjm4ymggidvf41gh3a364z32h655jmhk417v0ga9jk9fv6", + "fetcher": "github", + "repo": "wbolster/evil-swap-keys", + "unstable": { + "version": [ + 20170726, + 1820 + ], + "commit": "56bc201e265a6bd482a7c41a7c81d2238341ef3a", + "sha256": "0n0hl0plaghz9rjssabxwfzm46kr6564hpfh6hn8lzla4rf1q5zs" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "56bc201e265a6bd482a7c41a7c81d2238341ef3a", + "sha256": "0n0hl0plaghz9rjssabxwfzm46kr6564hpfh6hn8lzla4rf1q5zs" + } + }, + { + "ename": "evil-tabs", + "commit": "61eea3ae1c89163736b806aa8ca4f44d17daaba3", + "sha256": "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62", + "fetcher": "github", + "repo": "krisajenkins/evil-tabs", + "unstable": { + "version": [ + 20160217, + 1520 + ], + "deps": [ + "elscreen", + "evil" + ], + "commit": "53d3314a810017b6056ab6796aef671f5ea1c063", + "sha256": "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93" + } + }, + { + "ename": "evil-terminal-cursor-changer", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16p9a1dybbqr8r717c5ssfd3p5392bqxxzqs4n0xc7v7g8v1m0cd", + "fetcher": "github", + "repo": "7696122/evil-terminal-cursor-changer", + "unstable": { + "version": [ + 20170401, + 842 + ], + "deps": [ + "evil" + ], + "commit": "b49ca4393d2f3cc6014174950059b36a5cb22949", + "sha256": "1zra2h0x20whshbc4sfyj6w73jv6ak435mr9n6r6s7brqqqgpa36" + } + }, + { + "ename": "evil-test-helpers", + "commit": "87da8c50f9167ad9c3844b23becb6904f809611d", + "sha256": "0l4skyznzgr76z518q22lf90ymlsfcs02w8vqkg8az1nfl3ch7fs", + "fetcher": "github", + "repo": "emacs-evil/evil", + "unstable": { + "version": [ + 20190104, + 1026 + ], + "deps": [ + "evil" + ], + "commit": "874beba2cb243c325eca08fb7badff567f3c9494", + "sha256": "1h7s3bapv7g1z87ygmrsisbjjzpwhbsds5ywj2srpifd4llrxa4m" + }, + "stable": { + "version": [ + 1, + 2, + 14 + ], + "deps": [ + "evil" + ], + "commit": "3766a521a60e6fb0073220199425de478de759ad", + "sha256": "1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q" + } + }, + { + "ename": "evil-text-object-python", + "commit": "0d0893b07bc4a057561a1c1a85b7520c50f31e12", + "sha256": "0jdzs1yn8nrxq890427yjrxdvnzj8jy7bs3jj4w4c0fik26ngqhm", + "fetcher": "github", + "repo": "wbolster/evil-text-object-python", + "unstable": { + "version": [ + 20181126, + 1324 + ], + "deps": [ + "evil" + ], + "commit": "9a064fe6475429145cbcc3b270fcc963b67adb15", + "sha256": "074zpm6mmr1wfl6d5xdf8jk1fs4ccpbzf4ahhkwga9g71xiplszv" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "evil" + ], + "commit": "3b3fb01e7ad7eeeeae1143695547fe75148cc44f", + "sha256": "1alin2rmx1xa1w3b1nb76bplmg10il55jxxm6jj7qs6z1izzllci" + } + }, + { + "ename": "evil-textobj-anyblock", + "commit": "36b734960313d4cb484cebaac0f112781436631c", + "sha256": "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa", + "fetcher": "github", + "repo": "noctuid/evil-textobj-anyblock", + "unstable": { + "version": [ + 20170905, + 1907 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "ff00980f0634f95bf2ad9956b615a155ea8743be", + "sha256": "0wn5lp7kh3ip1bmqi12c9ivpjj0x602h8d7ag39qw36smv4jqvnb" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib", + "evil" + ], + "commit": "068d26a625cd6202aaf70a8ff399f9130c0ffa68", + "sha256": "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj" + } + }, + { + "ename": "evil-textobj-column", + "commit": "de7d6dc0d9c42a89be2959d015efa30960df2de7", + "sha256": "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h", + "fetcher": "github", + "repo": "noctuid/evil-textobj-column", + "unstable": { + "version": [ + 20170905, + 1905 + ], + "deps": [ + "evil", + "names" + ], + "commit": "835d7036d0bc9a6e44fc9b7c54ccf2a7c01428cd", + "sha256": "0g9d62sgcpzvhbrdk4hf3phphfss74mjz6xv4wd9895rzjsziwkf" + } + }, + { + "ename": "evil-textobj-entire", + "commit": "e1da0063a17d53f30e041e08161ad8fbc9942270", + "sha256": "0hkdnkv03b31330pnkijhhbyw00m7bxfvs3cgzfazsvvcsha4gmi", + "fetcher": "github", + "repo": "supermomonga/evil-textobj-entire", + "unstable": { + "version": [ + 20150422, + 1254 + ], + "deps": [ + "evil" + ], + "commit": "5b3a98f3a69edc3a788f539f6ffef4a0ef5e853d", + "sha256": "0m3krfmc9llpywr0lbya36b2jbnzx1pylvhj0p1ss5rh735m00jy" + } + }, + { + "ename": "evil-textobj-line", + "commit": "24bf766525ffdaded519ac9f78ae89d8ab5108ef", + "sha256": "158w524qzj0f03ihid2fisxyf1g7vwpv3ckfkzi7c2l549jnsdsa", + "fetcher": "github", + "repo": "syohex/evil-textobj-line", + "unstable": { + "version": [ + 20150729, + 1522 + ], + "deps": [ + "evil" + ], + "commit": "3d401b6831bdbeec967ec8e64177a8950251e812", + "sha256": "1vnk27bizzi321mdq3k39zxv8w20ifxbhxabiy685nyk89cq3mbj" + } + }, + { + "ename": "evil-textobj-syntax", + "commit": "0dba37e5a2ba5ef1f397b37d6845acdc4872e5f2", + "sha256": "0d0fg71xmbqhx91ljnkxmakcc0qn3341wjjmzax33qilz5syp3m9", + "fetcher": "github", + "repo": "laishulu/evil-textobj-syntax", + "unstable": { + "version": [ + 20181210, + 1213 + ], + "deps": [ + "evil", + "names" + ], + "commit": "2d9ba8c75c754b409aea7469f46a5cfa52a872f3", + "sha256": "031p5i3274dazp7rz6m5y38shfgszm1clmkcf58qfqlvy978ammc" + } + }, + { + "ename": "evil-traces", + "commit": "29f1f13a99b065f4510f6967d0cfce37eaa59178", + "sha256": "1h8mi0qa5aaahhlkaf91ynsddj5fm11yimkqj14xmjyig1m98yyd", + "fetcher": "github", + "repo": "mamapanda/evil-traces", + "unstable": { + "version": [ + 20190721, + 2136 + ], + "deps": [ + "evil" + ], + "commit": "b41b7432b8110378c199a3d25af464083777f453", + "sha256": "0a15f2saynz9fws1h5s7py3cshsk4xs1kwgwj1m5rsin36g0j6hc" + } + }, + { + "ename": "evil-tutor", + "commit": "4b7bfffdc34e181893b8cf4d1cc091f6c3f91126", + "sha256": "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn", + "fetcher": "github", + "repo": "syl20bnr/evil-tutor", + "unstable": { + "version": [ + 20150103, + 650 + ], + "deps": [ + "evil" + ], + "commit": "4e124cd3911dc0d1b6817ad2c9e59b4753638f28", + "sha256": "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "evil" + ], + "commit": "909273bac88b98a565f1b89bbb13d523b7edce2b", + "sha256": "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2" + } + }, + { + "ename": "evil-tutor-ja", + "commit": "2c98605fd21b38aaa200c6a0ec4c18f8575b0d7a", + "sha256": "1yd8aij9q1jdmb387f1zjiq5mf68jvbgbyp5b49hmag4hw5h7vm2", + "fetcher": "github", + "repo": "kenjimyzk/evil-tutor-ja", + "unstable": { + "version": [ + 20160917, + 132 + ], + "deps": [ + "evil", + "evil-tutor" + ], + "commit": "99af7d82e02ce3bcdfaff47c5c80b57327a7ea8d", + "sha256": "1cms98cy4p5dxwfc1zhgdaln8vr2nxzcj0d31imyabb4mwliabfw" + } + }, + { + "ename": "evil-vimish-fold", + "commit": "fcd51e24f88ebbbd3fddfc7c6f3b667d5104cf2b", + "sha256": "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6", + "fetcher": "github", + "repo": "alexmurray/evil-vimish-fold", + "unstable": { + "version": [ + 20171030, + 1151 + ], + "deps": [ + "evil", + "vimish-fold" + ], + "commit": "c617fecb91303f8c63f85a6101a503fdc88aae84", + "sha256": "05zm0gngdamfs5cqnjq4lh7253hdj0lggdgfphl56ynblhf8qf36" + } + }, + { + "ename": "evil-visual-mark-mode", + "commit": "293cdd3387f26e4c8f21582d75a194963ac9cff7", + "sha256": "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48", + "fetcher": "github", + "repo": "roman/evil-visual-mark-mode", + "unstable": { + "version": [ + 20190116, + 1557 + ], + "deps": [ + "dash", + "evil" + ], + "commit": "ac5997971972a9251f140b5542d82790ca4a43b4", + "sha256": "1gh5614l4zf15109zc64pnnc5rp5ilah9mavgr2rbv2874k3vs4n" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "dash", + "evil" + ], + "commit": "094ee37599492885ff3144918fcdd9b74dadaaa0", + "sha256": "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz" + } + }, + { + "ename": "evil-visual-replace", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1dq3bd9aqpk3jq1c9yzlpjyw6mi8l428l111vrmfg156k1w22v01", + "fetcher": "github", + "repo": "troyp/evil-visual-replace", + "unstable": { + "version": [ + 20171016, + 613 + ], + "deps": [ + "evil" + ], + "commit": "163fc827a1ffc106475da470c37fb26f4cc9b008", + "sha256": "1gfyrq7xfzmzh3x8k5f08n027dlbwi0pkkxf9c39fkxp4jngibsz" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "evil" + ], + "commit": "163fc827a1ffc106475da470c37fb26f4cc9b008", + "sha256": "1gfyrq7xfzmzh3x8k5f08n027dlbwi0pkkxf9c39fkxp4jngibsz" + } + }, + { + "ename": "evil-visualstar", + "commit": "578d33f3f8e68ef1b3ca3fb8af9b9ff77b649bd3", + "sha256": "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy", + "fetcher": "github", + "repo": "bling/evil-visualstar", + "unstable": { + "version": [ + 20160223, + 48 + ], + "deps": [ + "evil" + ], + "commit": "06c053d8f7381f91c53311b1234872ca96ced752", + "sha256": "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "evil" + ], + "commit": "eb996eca0081b6e8bab70b2c0a86ef1c71087bf6", + "sha256": "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk" + } + }, + { + "ename": "evm", + "commit": "bbcead697f745d197459f90ee05b172e35af2411", + "sha256": "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03", + "fetcher": "github", + "repo": "rejeep/evm.el", + "unstable": { + "version": [ + 20141007, + 1156 + ], + "deps": [ + "dash", + "f" + ], + "commit": "d0623b2355436a5fd9f7238b419782080c79196b", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "deps": [ + "dash", + "f" + ], + "commit": "d0623b2355436a5fd9f7238b419782080c79196b", + "sha256": "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb" + } + }, + { + "ename": "ewal", + "commit": "33592edc97154b396b469e2352779721d5df670b", + "sha256": "1i6j8dgbgj64wa08wl4kzf26q2x73zy2n4zfa4dzvdspm2bn0ddr", + "fetcher": "gitlab", + "repo": "jjzmajic/ewal", + "unstable": { + "version": [ + 20190720, + 829 + ], + "commit": "19fb4bdd0ba81ec17e36e06812e7bee7fb265b68", + "sha256": "0x08px30dcjl0dcszba6fbj1h4g1vsbn3glslwz4ya6r3c2cmhf9" + } + }, + { + "ename": "ewal-evil-cursors", + "commit": "ee7f9833a1dda00e12bcf45c7194ebc38e26168b", + "sha256": "177f5m1a3cvgjkgqz61w8gz3q272sk2cafq2z29rk88gcfbm2iqc", + "fetcher": "gitlab", + "repo": "jjzmajic/ewal", + "unstable": { + "version": [ + 20190720, + 829 + ], + "deps": [ + "ewal" + ], + "commit": "19fb4bdd0ba81ec17e36e06812e7bee7fb265b68", + "sha256": "0x08px30dcjl0dcszba6fbj1h4g1vsbn3glslwz4ya6r3c2cmhf9" + } + }, + { + "ename": "ewal-spacemacs-themes", + "commit": "5aebe80668479c02a694fef153cea0e9f9ca7eb0", + "sha256": "0a0xpjlw3yfqfn2wcyqzpdisyr5pm1x35k8rpcjhwn5lhh7njlfc", + "fetcher": "gitlab", + "repo": "jjzmajic/ewal", + "unstable": { + "version": [ + 20190720, + 829 + ], + "deps": [ + "ewal", + "spacemacs-theme" + ], + "commit": "19fb4bdd0ba81ec17e36e06812e7bee7fb265b68", + "sha256": "0x08px30dcjl0dcszba6fbj1h4g1vsbn3glslwz4ya6r3c2cmhf9" + } + }, + { + "ename": "ewmctrl", + "commit": "b2a7679f0961b171bf23080e628ae80f50c446e4", + "sha256": "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl", + "fetcher": "github", + "repo": "flexibeast/ewmctrl", + "unstable": { + "version": [ + 20170922, + 217 + ], + "commit": "3d0217c4d6cdb5c308b6cb4293574f470d4faacf", + "sha256": "0ilwvx0qryv3v6xf0gxqwnfm6pf96gxap8h9g3f6z6lk9ff4n1wi" + } + }, + { + "ename": "eww-lnum", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1hhc6q8zlj335v27j4dq6ms7frqpivfabs9w3vkaly5kjr60fw7c", + "fetcher": "github", + "repo": "m00natic/eww-lnum", + "unstable": { + "version": [ + 20150102, + 1512 + ], + "commit": "4b0ecec769919ecb05ca4fb15ec51911ba589929", + "sha256": "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "daef49974446ed4c1001e0549c3f74679bca6bd3", + "sha256": "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2" + } + }, + { + "ename": "exato", + "commit": "939efbcb9b40a2df5ef14e653fb242a8e37c72f9", + "sha256": "1h2dd3yhv1n0sznznw8ncx98g53hgi1rg1zkd0nmldih2rd5qisn", + "fetcher": "github", + "repo": "ninrod/exato", + "unstable": { + "version": [ + 20180305, + 1042 + ], + "deps": [ + "evil" + ], + "commit": "88266fa7fcfbef704032f671b94f756f2f98bd4f", + "sha256": "0nmm7pvs81429a4zpal6aidfd1n58yavv3skscrav5r0wnlbz773" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "deps": [ + "evil" + ], + "commit": "70f7ca2a4c6de0392e5e54ac4f16c96daa106be6", + "sha256": "0ns43whqcq3cv9vh8wbakj5fgs0lsn8f3q1rgl4rw4mfgbvv85pm" + } + }, + { + "ename": "exec-path-from-shell", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "014bfcs7znds4if1njyq4s5zrfnr6b3wj6722b4l5r58gh9mlrr5", + "fetcher": "github", + "repo": "purcell/exec-path-from-shell", + "unstable": { + "version": [ + 20190426, + 2227 + ], + "commit": "3cfedb8791397ed50ee66bc0a7cbee5b9d78245c", + "sha256": "1mrwsc12j44q9cv9sjz3hhr7pd4z4vj30ha320zlh7pcacs973js" + }, + "stable": { + "version": [ + 1, + 12 + ], + "commit": "76cd6e3fa8a7dac937af7e40507843dfae4f9184", + "sha256": "1ga8bpxngd3ph2hdiik92c612ki71qxw818i6rgx6f6a5r0sbf3p" + } + }, + { + "ename": "execline", + "commit": "118862adbbd26616a5fe110c29296f5ae53b199a", + "sha256": "1wjj826vglnxccyl95k7kqnsa185w8qirvimzqldp6j53asrd0vy", + "fetcher": "gitlab", + "repo": "KAction/emacs-execline", + "unstable": { + "version": [ + 20190711, + 2010 + ], + "deps": [ + "s" + ], + "commit": "c75dd9b2c54d8e59fc35fd4bd98d8e213948a3f5", + "sha256": "02q531c9wvdwflhggflnci4a36h2bb90bq25bbhw6i2lvrd9sk55" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "s" + ], + "commit": "c75dd9b2c54d8e59fc35fd4bd98d8e213948a3f5", + "sha256": "02q531c9wvdwflhggflnci4a36h2bb90bq25bbhw6i2lvrd9sk55" + } + }, + { + "ename": "exiftool", + "commit": "4835a76909d020781021e747fbc341111a94dbfa", + "sha256": "1zvcps64yvz8lsjhi1j0808983fv2s7kx67yjr8ps454mcl8bpab", + "fetcher": "git", + "url": "https://git.systemreboot.net/exiftool.el/", + "unstable": { + "version": [ + 20190520, + 1106 + ], + "commit": "e043df1bcef40cd5934a74c210e1e35d5eb0e5a6", + "sha256": "0am4g25mlmm1iqcm2kxzskrzhrm1f09cdwcqmvk4lidid5xcb6xc" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "commit": "c1058d99c34e62b99dbfca13ada47519fb51bf73", + "sha256": "0bv58is66cz21yhc0qqkp1z4nk13zfi2l7i6pjbhyi0g1n88qqyv" + } + }, + { + "ename": "exotica-theme", + "commit": "9182f92dd62e2f1775a76699a6c8f9c3e71e9030", + "sha256": "1fzf1zpllkddkq02hvabbi2bh6rnanlyinb6fjwsyh39wvzhsfhs", + "fetcher": "github", + "repo": "jbharat/exotica-theme", + "unstable": { + "version": [ + 20180212, + 2329 + ], + "commit": "ff3ef4f6fa38c93b99becad977c7810c990a4d2f", + "sha256": "1kp6q55g3dcya4y79x877vqwxa4z2rkkvhs49pkwr3wljf4af2pd" + } + }, + { + "ename": "expand-line", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0bzz7zrpfdxhjxs7nzlmzjb9jfajhxkivzr5sm87mg3zx8b6gjyi", + "fetcher": "github", + "repo": "zhangkaiyulw/expand-line", + "unstable": { + "version": [ + 20151006, + 207 + ], + "commit": "75a5d0241f35dd0748ab8ecb4ff16891535be372", + "sha256": "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z" + } + }, + { + "ename": "expand-region", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg", + "fetcher": "github", + "repo": "magnars/expand-region.el", + "unstable": { + "version": [ + 20190416, + 538 + ], + "commit": "1c31447730443d98f90f65dfcb752f347d46ad1b", + "sha256": "07jm8hm3zsm556l10gw83dw0mpm2d9d8x5blqbdmmp5zsf0y5kqb" + }, + "stable": { + "version": [ + 0, + 11, + 0 + ], + "commit": "0bc14fc7fbbcca5da4fdd9695cfd7cbd36eb3b96", + "sha256": "0h40dhc3kn8fq86xnwi5lz7ql8my8737y7wkqr897p15y90swr35" + } + }, + { + "ename": "express", + "commit": "9a97f5f81af13c49f5bea31455d7da0bf2c12e4f", + "sha256": "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9", + "fetcher": "github", + "repo": "rolandwalker/express", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "string-utils" + ], + "commit": "93dae7377eace4a5413ba99aecb6f26f90798725", + "sha256": "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "deps": [ + "string-utils" + ], + "commit": "e6dc9abdc395ef537408befebeb4fd3ed4ee5c60", + "sha256": "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y" + } + }, + { + "ename": "exsqlaim-mode", + "commit": "7f660d7629bc27144c99ebcba45f1b06b14c5745", + "sha256": "0ssn48wcn3x066nsl8y78y57ndasqv5x6ifxbifdxl3f5vjhyvg7", + "fetcher": "github", + "repo": "ahmadnazir/exsqlaim-mode", + "unstable": { + "version": [ + 20170607, + 1003 + ], + "deps": [ + "s" + ], + "commit": "a2e0a62ec8b87193d8eaa695774bfd689324b06c", + "sha256": "1gj1q2h1ja30jizkjql12cxlppj07ykr4wxqca9msy043zdhqnkk" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "s" + ], + "commit": "a2e0a62ec8b87193d8eaa695774bfd689324b06c", + "sha256": "1gj1q2h1ja30jizkjql12cxlppj07ykr4wxqca9msy043zdhqnkk" + } + }, + { + "ename": "extempore-mode", + "commit": "7bd3e57171f5283604e9375613a7a94416ee99a7", + "sha256": "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php", + "fetcher": "github", + "repo": "extemporelang/extempore-emacs-mode", + "unstable": { + "version": [ + 20180105, + 621 + ], + "commit": "ae5f40d4b0883a4519e460cd7720e5fcc3a68fa5", + "sha256": "1f888h7xv6zz6kq38ak1vpwjrjr2sqgwpfxwb9x0ldf3kkx4wf1w" + } + }, + { + "ename": "extend-dnd", + "commit": "f2d866ca12cb997b7fad878808c0966f3413b73d", + "sha256": "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417", + "fetcher": "github", + "repo": "mattfidler/extend-dnd", + "unstable": { + "version": [ + 20151122, + 1850 + ], + "commit": "80c966c93b82c9bb5c6225a432557c39144fc602", + "sha256": "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "a1923d57f8f5e862cc66c189b5e6627bc84a2119", + "sha256": "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d" + } + }, + { + "ename": "extmap", + "commit": "91ef4352603cc69930ab3d63f0a90eee63f5f328", + "sha256": "0c12gfd3480y4fc22ik02n7h85k6s70i5jv5i872h0yi68cgd01j", + "fetcher": "github", + "repo": "doublep/extmap", + "unstable": { + "version": [ + 20181028, + 1645 + ], + "commit": "1139b57d8f4276fe56b8416fdaf4745f2cdfe7c3", + "sha256": "0jgyscjfparnby0whrmbgvsab2a7qkaqhysmh3s3jh635fndm253" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "1139b57d8f4276fe56b8416fdaf4745f2cdfe7c3", + "sha256": "0jgyscjfparnby0whrmbgvsab2a7qkaqhysmh3s3jh635fndm253" + } + }, + { + "ename": "exunit", + "commit": "94e4fd4cf58b280d08d22aff4dd9c47201a29e72", + "sha256": "1wyxxy1hd50p17widf31sysp28adr09n8ksyd3hn6pnvyn2m0k81", + "fetcher": "github", + "repo": "ananthakumaran/exunit.el", + "unstable": { + "version": [ + 20190511, + 614 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "7aa008cb54e7935183a19d6b81d218de7ec38ca4", + "sha256": "0zp0sdnrb5mm6k1z6zqs7s042f6n24sg1y0wx6bw35za6r5f36cr" + } + }, + { + "ename": "exwm-edit", + "commit": "f247915e02e59ebd6a2a219e55870e034d41c938", + "sha256": "0bydkznywma0x293m105amppx4qx1iyjpqdfq6np73176xfy6kc5", + "fetcher": "github", + "repo": "agzam/exwm-edit", + "unstable": { + "version": [ + 20180905, + 743 + ], + "commit": "961c0f3ea45766b888c73d7353da13d329538034", + "sha256": "087pk5ckx753qrn6xpka9khhlp7iqlz76w7861x90av2f5cgy6fw" + } + }, + { + "ename": "exwm-firefox-core", + "commit": "745a2b98c48b00cd794dfb97be4072813ee67ada", + "sha256": "1d6j8nrlb7lsyki796vpfidj8y2cz5lnqf8zzfqsbqf92kj5v9zd", + "fetcher": "github", + "repo": "walseb/exwm-firefox-core", + "unstable": { + "version": [ + 20190608, + 2213 + ], + "deps": [ + "exwm" + ], + "commit": "86acbc4b4f50f497929508e59d054f97398a5218", + "sha256": "0s54hwa2k8g6ls5d0mbcq7kgzzghpqbi5p4rvwjx75h2hdf7adrk" + } + }, + { + "ename": "exwm-firefox-evil", + "commit": "09fa63c7bd639c0b7dda540504c74cdbbe4f9875", + "sha256": "0wg3jydgj2fi5gxv3kwm1dvpxvc3ypn28kxlzfp801xrrfc241ml", + "fetcher": "github", + "repo": "walseb/exwm-firefox-evil", + "unstable": { + "version": [ + 20190608, + 2230 + ], + "deps": [ + "evil", + "exwm", + "exwm-firefox-core" + ], + "commit": "69e8eff0e5443183713213386c450ebfef3b4d0a", + "sha256": "1h8h7v1cwbqbdk168vqz8ndb4zgxlkx28dyy0b315vib226vkxq6" + } + }, + { + "ename": "exwm-surf", + "commit": "4fc27fae2b58c7af87dadba9217cc05f8ab4890c", + "sha256": "066qbn1w63irh9b03qs0fv77x71cind22kdj6wygaznrpgwr0kny", + "fetcher": "github", + "repo": "ecraven/exwm-surf", + "unstable": { + "version": [ + 20171204, + 1140 + ], + "deps": [ + "exwm" + ], + "commit": "6c17e2c1597fe4b7b454a1dac23b9127ac951e94", + "sha256": "0rb921fq3pyzv0w1s6n0zx4j7cvv68mb50hfa8nqnppz5ii1k0lb" + } + }, + { + "ename": "exwm-x", + "commit": "a0e6e23bcffdcd1e17c70599c563609050e5de40", + "sha256": "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3", + "fetcher": "github", + "repo": "tumashu/exwm-x", + "unstable": { + "version": [ + 20190224, + 1152 + ], + "deps": [ + "bind-key", + "cl-lib", + "counsel", + "exwm", + "ivy", + "swiper", + "switch-window" + ], + "commit": "02ec31cd8996b1b3fe305405fef7334c4d08e72b", + "sha256": "18cgfnh7bp152gi4zv2skrkjbxs0v2zn6jk35rc48y8nfivps2f4" + }, + "stable": { + "version": [ + 1, + 9, + 0 + ], + "deps": [ + "bind-key", + "cl-lib", + "counsel", + "exwm", + "ivy", + "swiper", + "switch-window" + ], + "commit": "88c8b70be678ce0e9fa31e191ffd3f76bbfee61f", + "sha256": "03l3dl7s1qys1kkh40rm1sfx7axy1b8sf5f6nyksj9ps6d30p5i4" + } + }, + { + "ename": "eyebrowse", + "commit": "90d052bfc0b94cf177e33b2ffc01a45d254fc1b1", + "sha256": "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861", + "fetcher": "github", + "repo": "wasamasa/eyebrowse", + "unstable": { + "version": [ + 20190322, + 933 + ], + "deps": [ + "dash" + ], + "commit": "52e160997a1c4b1d463e8b9cc2ba3e27408c2a89", + "sha256": "0y2n08ykfc3hga5m969syysa2r4h3d2i1xfi0jjhpw3h7qrisbw8" + }, + "stable": { + "version": [ + 0, + 7, + 7 + ], + "deps": [ + "dash" + ], + "commit": "7294ed5fbf5f38407b599a10a335b8c4ec15a8d5", + "sha256": "1lhpf88042mg9q328w2d328ka9pild4ppdynbn3rsib9zgxp8waq" + } + }, + { + "ename": "eyuml", + "commit": "b09a8d723e357da67441e65047759ccfa9cb7ef6", + "sha256": "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx", + "fetcher": "github", + "repo": "antham/eyuml", + "unstable": { + "version": [ + 20141028, + 2227 + ], + "deps": [ + "request", + "s" + ], + "commit": "eb29c37316e44a14741f16e894fbcfcb7537dc80", + "sha256": "19n2dzr3m56g76igh57cvvhqwpbcicwr7r6r4i3l8vsjch99kp6m" + } + }, + { + "ename": "ez-query-replace", + "commit": "c40808c7687ace84e4c59bf8c25332c94b6fdd76", + "sha256": "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx", + "fetcher": "github", + "repo": "Wilfred/ez-query-replace.el", + "unstable": { + "version": [ + 20170814, + 1321 + ], + "deps": [ + "dash", + "s" + ], + "commit": "f5dbd2d3e5e62e6b7e7cc1a98fc4d0cd411e5afa", + "sha256": "14mikpxrsmjwdpya45cf47v2gjwxmql10xjk907x27iqqxmfif74" + } + }, + { + "ename": "eziam-theme", + "commit": "4e0411583bd4fdbe425eb07de98851136fa1eeb0", + "sha256": "0iz3r4r54ai8y4qhnix291ra7qfmk8dbr06f52pgmz3gzin1cqpb", + "fetcher": "github", + "repo": "thblt/eziam-theme-emacs", + "unstable": { + "version": [ + 20190720, + 1720 + ], + "commit": "a0cafce1c49f3830fe96dacd49f4732b53166603", + "sha256": "0vhmv47i07zrnvy5b6gd3ws2gnnviifv04b6dafa96xr3063n2cp" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "a0cafce1c49f3830fe96dacd49f4732b53166603", + "sha256": "0vhmv47i07zrnvy5b6gd3ws2gnnviifv04b6dafa96xr3063n2cp" + } + }, + { + "ename": "f", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "18qax8i24gpccif4xcxccclpwl00plxjf3zbq9dry37b1r4mj57s", + "fetcher": "github", + "repo": "rejeep/f.el", + "unstable": { + "version": [ + 20190109, + 906 + ], + "deps": [ + "dash", + "s" + ], + "commit": "8191672377816a1975414cc1f116fd3b94b30bd0", + "sha256": "1b9wq6r6v44y11ldcj8czmah4ciibkm2261q4z9awd7v7iqlzf07" + }, + "stable": { + "version": [ + 0, + 20, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "de6d4d40ddc844eee643e92d47b9d6a63fbebb48", + "sha256": "1a47xk3yp1rp17fqg7ldl3d3fb888h0fz3sysqfdz1bfdgs8a9bk" + } + }, + { + "ename": "f3", + "commit": "5b40de62a82d6895a37ff795d56f7d0f783461e6", + "sha256": "099wibgp9k6sgglaqigic5ay6qg7aqijnis5crwjl7b81ddqp610", + "fetcher": "github", + "repo": "cosmicexplorer/f3", + "unstable": { + "version": [ + 20180130, + 1158 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "000009ce4adf7a57eae80512f29c4ec2a1391ce5", + "sha256": "0q3ylw0i1bg7pzsv4gj72jcfjjfh57vsb3fnfnhhh5i5vladiqsf" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "19120dda2d760d3dd6c6aa620121d1de0a40932d", + "sha256": "1qg48zbjdjqimw4516ymrsilz41zkib9321q0caf9474s9xyp2bi" + } + }, + { + "ename": "fabric", + "commit": "83939d2a4d5874244a4916eee9ae6b327af18b5d", + "sha256": "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m", + "fetcher": "github", + "repo": "nlamirault/fabric.el", + "unstable": { + "version": [ + 20171116, + 656 + ], + "commit": "df79be341d0b34ed23850f9894136092fa5fea8c", + "sha256": "1mnz81k1jz2sa3zj68ihzgq66l9fcxvzb67ad62p8bvi2aksxx7z" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "004934318f63d8cf955022f87b2c33eb97ada280", + "sha256": "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5" + } + }, + { + "ename": "face-explorer", + "commit": "2370fdf6421dc518337e04bd2453a5f74e2df2b2", + "sha256": "1jfidkkizgwhkkrgvrmq5vrx5ir4zjw4zzc2alw9gkjn1ddq22q7", + "fetcher": "github", + "repo": "Lindydancer/face-explorer", + "unstable": { + "version": [ + 20190517, + 1857 + ], + "commit": "ad1300e13e5643e4c246cabfd91f833d39113052", + "sha256": "0nq36h6kwyi2sv1fklm42spfkllm6jlz0alh2qlpgy4ixq5sp2pv" + } + }, + { + "ename": "faceup", + "commit": "a10bf2928b93c3908e89ca8ad9649bb468ebca05", + "sha256": "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx", + "fetcher": "github", + "repo": "Lindydancer/faceup", + "unstable": { + "version": [ + 20170925, + 1946 + ], + "commit": "6c92dad56a133e14e7b27831e1bcf9b3a71ff154", + "sha256": "1yzmy7flrhrh0i10bdszx8idx6r8h6czm4vm4q0z6fp5fw94zwrx" + } + }, + { + "ename": "factlog", + "commit": "9075a42edee1ac7de0812d2eefcba5681859eb6e", + "sha256": "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7", + "fetcher": "github", + "repo": "tkf/factlog", + "unstable": { + "version": [ + 20130210, + 140 + ], + "deps": [ + "deferred" + ], + "commit": "6503d77ea882c995b051d22e72db336fb28770fc", + "sha256": "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "c834fdab81ec5b1bdc0ee2721a12cecb48a319bf", + "sha256": "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka" + } + }, + { + "ename": "faff-theme", + "commit": "0b35c169fe56a5612ff5a4242140f617fdcae14f", + "sha256": "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g", + "fetcher": "github", + "repo": "WJCFerguson/emacs-faff-theme", + "unstable": { + "version": [ + 20190506, + 1513 + ], + "commit": "de12f6a11711955fbbcdf7c042459aa2206f8deb", + "sha256": "193d6s759kmkwfmwc9367grkgf46gm9ppczppcrk2h3alzr1hba6" + }, + "stable": { + "version": [ + 2, + 5 + ], + "commit": "bb331f755f44f8d6db1b35c476948a080a4a40cf", + "sha256": "0llhsn79fp8c42hv57539k3zcyaqx0gc27hg21vq9nh8aa0jb6h2" + } + }, + { + "ename": "fakespace", + "commit": "778dbe1fd1d2ecebb499ad66bc950e586f231c52", + "sha256": "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27", + "fetcher": "github", + "repo": "skeeto/elisp-fakespace", + "unstable": { + "version": [ + 20120818, + 6 + ], + "commit": "d1bd1f4b14b2690d7a67f9a52622ec51ed84813a", + "sha256": "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs" + } + }, + { + "ename": "fakir", + "commit": "d0a8abd5fd77a14b957f53b5bc8474403cc1e18f", + "sha256": "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25", + "fetcher": "github", + "repo": "nicferrier/emacs-fakir", + "unstable": { + "version": [ + 20140729, + 1652 + ], + "deps": [ + "dash", + "kv", + "noflet" + ], + "commit": "1fca406ad7de80fece6319ff75d4230b648534b0", + "sha256": "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h" + } + }, + { + "ename": "fancy-battery", + "commit": "eae3af4145c534992d1c1ee5bb6420651c7c5d82", + "sha256": "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii", + "fetcher": "github", + "repo": "lunaryorn/fancy-battery.el", + "unstable": { + "version": [ + 20150101, + 1204 + ], + "commit": "9b88ae77a01aa3edc529840338bcb2db7f445822", + "sha256": "1k6prddw277iszh9hq145yqidwiiy9iqz656rpmqwn5hmr1vakhk" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "5b8115bbeb67c52d4202a12dcd5726fb66e0a1ff", + "sha256": "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g" + } + }, + { + "ename": "fancy-narrow", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv", + "fetcher": "github", + "repo": "Malabarba/fancy-narrow", + "unstable": { + "version": [ + 20171031, + 16 + ], + "commit": "c9b3363752c09045b8ce7a2635afae42d2ae63c7", + "sha256": "1icc43dlb38w9ip2077a4n8xk102f4l1wfy4c04vpjykxpda4sxv" + }, + "stable": { + "version": [ + 0, + 9, + 5 + ], + "commit": "c0f70b4333d4764323b7154e37a378adb1610ab7", + "sha256": "0vcr1gnqawvc1yclqs23jvxm6bqix8kpflf1c7znb0wzxmz9kx7y" + } + }, + { + "ename": "farmhouse-theme", + "commit": "3b0d427db8ab66d2fe323366b0837595b3b59afa", + "sha256": "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229", + "fetcher": "github", + "repo": "mattly/emacs-farmhouse-theme", + "unstable": { + "version": [ + 20160713, + 2244 + ], + "commit": "7ddc1ff13b4a3d5466bd0d33ecb86100352e83a7", + "sha256": "09k6agh205kr2lif354m38l3967b0jajm14rgpl7l1vlajh8wzfd" + } + }, + { + "ename": "fasd", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "0ssb1bbw3cwd4zdy08a0fymwjwgdnx0kil5x3x1b7k8kan942436", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/emacs-fasd.git", + "unstable": { + "version": [ + 20180606, + 505 + ], + "commit": "020c6a4b5fd1498a84ae142d2e32c7ff678fb029", + "sha256": "142zq0zz38j3akgc1gipqhgs05krlkig1i97pgzmi4jcqdgm3lx9" + } + }, + { + "ename": "fastdef", + "commit": "f6effb2fbccc71e8a44c53138e3c21f10dc55fbc", + "sha256": "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj", + "fetcher": "github", + "repo": "redguardtoo/fastdef", + "unstable": { + "version": [ + 20160713, + 1329 + ], + "deps": [ + "ivy", + "w3m" + ], + "commit": "0696f41dc150d35ce31fe8d2ea74f4173818bb55", + "sha256": "1p5vmbx7zdzxnyjzcp2vxscd3dwf7xk82wk9dfiv99svwqv2ki3w" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "ivy", + "w3m" + ], + "commit": "0696f41dc150d35ce31fe8d2ea74f4173818bb55", + "sha256": "1p5vmbx7zdzxnyjzcp2vxscd3dwf7xk82wk9dfiv99svwqv2ki3w" + } + }, + { + "ename": "fastnav", + "commit": "d2a7dce6617bf4ed250dba150e6787bf48891c64", + "sha256": "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5", + "fetcher": "github", + "repo": "gleber/fastnav.el", + "unstable": { + "version": [ + 20120211, + 1457 + ], + "commit": "1019ba2b61d1a070204099b23da347278a61bc89", + "sha256": "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx" + }, + "stable": { + "version": [ + 1, + 0, + 7 + ], + "commit": "54626e9e7cc7be5bc2bd01732e95ed2afc2312a1", + "sha256": "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1" + } + }, + { + "ename": "faust-mode", + "commit": "b362e7daeabd07c726ad9770d7d4941dfffd5b19", + "sha256": "0l8cbf5i6lv6i5vyqp6ngfmrm2y6z2070b8m10w4376kbbnr266z", + "fetcher": "github", + "repo": "rukano/emacs-faust-mode", + "unstable": { + "version": [ + 20180205, + 926 + ], + "commit": "7c31b22bdbfd2f8c16ec117d2975d56dd61ac15c", + "sha256": "0a3p69ay88da13cz2cqx00r3qs2swnn7vkcvchcqyrdybfjs7y4z" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "7c31b22bdbfd2f8c16ec117d2975d56dd61ac15c", + "sha256": "0a3p69ay88da13cz2cqx00r3qs2swnn7vkcvchcqyrdybfjs7y4z" + } + }, + { + "ename": "faustine", + "commit": "8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf", + "sha256": "1blmz993xrwkyr7snj7rm07s07imgpdlfqi6wxkm4ns6iwa2q60s", + "fetcher": "git", + "url": "https://bitbucket.org/yphil/faustine", + "unstable": { + "version": [ + 20171122, + 1202 + ], + "deps": [ + "faust-mode" + ], + "commit": "07a38963111518f86123802f9d477be0d4689a3f", + "sha256": "0dj35hwkm5v8758c4ssl873vkvplba5apjsh7l23nsmnzdji99zg" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "faust-mode" + ], + "commit": "f186461e2bc38ec8ae38bd5ab727cc769218a168", + "sha256": "16p7qmljjki4svci3mxzydmvpxaprbnfq6794b3adyyixkmgr6k7" + } + }, + { + "ename": "fcitx", + "commit": "e8c40f09d9397b3ca32a7ed37203f490497dc984", + "sha256": "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx", + "fetcher": "github", + "repo": "cute-jumper/fcitx.el", + "unstable": { + "version": [ + 20170914, + 200 + ], + "commit": "095332fbeb994c908c533fe2ad068c0728211c3d", + "sha256": "01sm50rqajylah2hx6n5ig0xmrrhxbamzs4bg97qzxzr4nlnjcaz" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "commit": "6d552ab44234ed78ce9a50f2412f56197266bc9f", + "sha256": "08l859rw1lwj6hdxrlxqlxf1cfxv8yv9h1jsgs5zfis3hp7nq39j" + } + }, + { + "ename": "fcopy", + "commit": "f9afd35b7c7075bef9ed878b7122ff9783fdd9fd", + "sha256": "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1", + "fetcher": "github", + "repo": "ataka/fcopy", + "unstable": { + "version": [ + 20150304, + 1403 + ], + "commit": "e355f6ec889d8ecbdb096019c2dc660b1cec4941", + "sha256": "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr" + } + }, + { + "ename": "fd-dired", + "commit": "1217e0d4f42df68cc22de9b4f27a36c0377509e3", + "sha256": "0g8zvg6b9hcxkmqn254y9khjm7jz2lz4mh7dhsxfcy64inaj0481", + "fetcher": "github", + "repo": "yqrashawn/fd-dired", + "unstable": { + "version": [ + 20180731, + 1049 + ], + "commit": "fd4c3f490b0b6727592b85f1635e57638dec8f91", + "sha256": "0vgwbdrs2f4lwpciwv4j544nqfqwdgli9fsr3ldr01wd4ghjib9m" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "d90ec902f417c194e44697f73a9d6cbfd0cf7216", + "sha256": "1fas0fpvym2lyzybwm44gly9jz6a2fpp72yxnwfbqqjkfgk9910y" + } + }, + { + "ename": "feature-mode", + "commit": "0a70991695f9ff305f12cfa45e0a597f4a782ba3", + "sha256": "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg", + "fetcher": "github", + "repo": "michaelklishin/cucumber.el", + "unstable": { + "version": [ + 20190801, + 1137 + ], + "commit": "11ae1671629bfedaa553c7b819676d64eb320992", + "sha256": "0yd4gkxz9xcbgibfgr8apsid3f83nmg5jgqk5nql0linj5gymc28" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "4bd8f19da816115094beb4b0e085822eb298ac37", + "sha256": "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7" + } + }, + { + "ename": "feebleline", + "commit": "782295d8c530878bd0e20cde7e7f7f8f640953dd", + "sha256": "0c604ahhv9c89r3hj7091zhhfpbykh4c23sn6ymqw4pp0dq4pgkj", + "fetcher": "github", + "repo": "tautologyclub/feebleline", + "unstable": { + "version": [ + 20190711, + 713 + ], + "commit": "fe971abb6e0142513a8c6e453e9d3b2eac6a3f08", + "sha256": "0zisc4sf2fi0fspfzkvs8crlrvzrzrc72b379p5ngv53hmdmvkhy" + } + }, + { + "ename": "fennel-mode", + "commit": "cda0732050a17b2dc70b80afd6fc6bb9cf8bb60f", + "sha256": "0lg69rjvbg7zl4jxc88m12r4rgv2mg2xdyz591mdmgvxwr2hfrv9", + "fetcher": "gitlab", + "repo": "technomancy/fennel-mode", + "unstable": { + "version": [ + 20190401, + 1808 + ], + "commit": "17678a7fc073c64cb0ec78f913154df377a42575", + "sha256": "0n2vz6vsi380gcgg3ihwjs3z2rc1hb8yh4xlzjwz01dhahj08p1x" + } + }, + { + "ename": "fetch", + "commit": "7e808952551936dd8eaf0158d6ca929d10712dc5", + "sha256": "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby", + "fetcher": "github", + "repo": "crshd/fetch.el", + "unstable": { + "version": [ + 20131201, + 730 + ], + "commit": "3f2793afcbbc32f320e572453166f9354ecc6d06", + "sha256": "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8" + } + }, + { + "ename": "fic-mode", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c", + "fetcher": "github", + "repo": "lewang/fic-mode", + "unstable": { + "version": [ + 20180603, + 2035 + ], + "commit": "a05fc36ed54ba0c6dc22ac216a6a72cf191ca13d", + "sha256": "074dfwdir2dx5cpbjk1ac8d3hkjkrylivy7agir5mnmzjm3bs9gw" + } + }, + { + "ename": "fifo-class", + "commit": "1b4fa87f7d5592bc264805760d191df2a3539cf1", + "sha256": "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h", + "fetcher": "github", + "repo": "mola-T/fifo-class", + "unstable": { + "version": [ + 20160425, + 558 + ], + "commit": "8fe4cf690727f4ac7b67f29c55f845df023c3f21", + "sha256": "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg" + } + }, + { + "ename": "figlet", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj", + "fetcher": "bitbucket", + "repo": "jpkotta/figlet", + "unstable": { + "version": [ + 20160218, + 2237 + ], + "commit": "70ca269d706eedd34838fe2435073c6860be470b", + "sha256": "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs" + } + }, + { + "ename": "filelock", + "commit": "bda76dfbf37eaa17bebb4b8c34006704862db433", + "sha256": "13ra697y0fhkjwsaqqlphcyfqkaiix5z59qw4q6rgix4k8ypj8db", + "fetcher": "github", + "repo": "DarwinAwardWinner/emacs-filelock", + "unstable": { + "version": [ + 20180524, + 2215 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "17a5ca6e0dee14d2e7d92c84be91143bca9d9663", + "sha256": "1smiad56626bc7q6vgj5gc710hnx814d4xlpxdlfzqlmj08y9dyk" + } + }, + { + "ename": "filetags", + "commit": "eabd1c808758bb46fbc25e124bd4532764b8d7da", + "sha256": "06qvwhg884plz0bk7lhnp3sb6qv5rypkb0jqq53vmnbw7nz0dlyv", + "fetcher": "github", + "repo": "DerBeutlin/filetags.el", + "unstable": { + "version": [ + 20190706, + 804 + ], + "commit": "504cb41eabded459de6990da6cddb3cb24474b39", + "sha256": "191ahvir06xv9ql3ynsx0nc884rlnxzdk1rvr2lp7vhxv7x0vgqw" + } + }, + { + "ename": "fill-column-indicator", + "commit": "4ea0c00a7784621fcca0391a9c8ea85e9dd43852", + "sha256": "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma", + "fetcher": "github", + "repo": "alpaker/Fill-Column-Indicator", + "unstable": { + "version": [ + 20171209, + 1924 + ], + "commit": "a284bb50789c97d7ef9021214260b3ce7cc220e3", + "sha256": "0cjnqw22vq760nzzq4pn9vf89s5w0kl877c5f9ks03c617q656nn" + }, + "stable": { + "version": [ + 1, + 90 + ], + "commit": "f7b3f99b41ff017f50a21ad53eed16f8ef5ab7ee", + "sha256": "0snjznxdwwfdgccdcvrnk467416r244r2r5qcm2sga8l0ha9gw9z" + } + }, + { + "ename": "fill-function-arguments", + "commit": "b78eab67517b19516e5d265018afcbff0acfa9ec", + "sha256": "1gigzzz2csl3a55jmjx391a5k3ymixnwpblsn0pfgkkk4p3674q0", + "fetcher": "github", + "repo": "davidshepherd7/fill-function-arguments", + "unstable": { + "version": [ + 20190710, + 929 + ], + "commit": "295d55d6056e6f79b68283f7631f6438ea8a7b5f", + "sha256": "0nx3krpqn1c0xvr81504m4s84bkxpq42s97igmg6jfsjy7dphp2k" + }, + "stable": { + "version": [ + 0, + 9 + ], + "commit": "e819fca19a138ae67201220e41fe1d4384fb2a42", + "sha256": "102aalb7bfvjgf1klqsx6mn5a4vfjq63kwn7wqs9cmlib1mp8vnf" + } + }, + { + "ename": "fillcode", + "commit": "85eb403503aa83799a6072bfe21bf66c8177ca73", + "sha256": "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2", + "fetcher": "github", + "repo": "snarfed/fillcode", + "unstable": { + "version": [ + 20171029, + 1625 + ], + "commit": "d0a9e20f5fcc24a786d09ea19bfb9237681ba823", + "sha256": "1mf2gfcjaqbw523vkfbzs2nl1y9bn9gbgmbvn2phbyj78gzq18za" + } + }, + { + "ename": "finalize", + "commit": "1b55869b5183644de02687d2e56f9b68854ccda3", + "sha256": "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq", + "fetcher": "github", + "repo": "skeeto/elisp-finalize", + "unstable": { + "version": [ + 20170418, + 1945 + ], + "deps": [ + "cl-generic", + "cl-lib", + "eieio" + ], + "commit": "846731531e7d1d80451787992e07bfe7dedbe9ff", + "sha256": "0kqsqmfvnh0slx0hmrsw66rh62sgzyhzck7ii9zylkq72wj60fgl" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "cl-generic", + "cl-lib", + "eieio" + ], + "commit": "0f7d47c4d50f1c76fc3b43bfc2d4886dd3e8ca27", + "sha256": "1gvlm4i62af5jscwz0jccc8ra0grprxpg2rlq91d5nn8dn5lpy79" + } + }, + { + "ename": "find-by-pinyin-dired", + "commit": "0aa68b4603bf4071d7d12b40de0138ecab1989d7", + "sha256": "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq", + "fetcher": "github", + "repo": "redguardtoo/find-by-pinyin-dired", + "unstable": { + "version": [ + 20180210, + 218 + ], + "deps": [ + "pinyinlib" + ], + "commit": "3b4781148dddc84a701ad76c0934ed991ecd59d5", + "sha256": "03fw1si115padxss6zb9fr0dsyq1bxlhxikgh4i5swp4jd4331k5" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "pinyinlib" + ], + "commit": "2c48434637bd63840fca4d2c6cf9ebd5dd44658f", + "sha256": "0ial0lbvg0xbrwn8cm68xc5wxj3xgp110y2zgypkdpak8gkv8b5h" + } + }, + { + "ename": "find-file-in-project", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy", + "fetcher": "github", + "repo": "technomancy/find-file-in-project", + "unstable": { + "version": [ + 20190720, + 313 + ], + "deps": [ + "ivy" + ], + "commit": "85f0fc4ab29e4339732c19be314a4920888803b2", + "sha256": "1skjbh7m0cck2rwmgzrrds51gipqf1jqghyfx15drc1n6kwivx3h" + }, + "stable": { + "version": [ + 5, + 7, + 7 + ], + "deps": [ + "ivy" + ], + "commit": "85f0fc4ab29e4339732c19be314a4920888803b2", + "sha256": "1skjbh7m0cck2rwmgzrrds51gipqf1jqghyfx15drc1n6kwivx3h" + } + }, + { + "ename": "find-file-in-repository", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "02rihpfpckppnf5a2zgd5s3dspdhq4mr6qchlrzg2fd4byjxra9s", + "fetcher": "github", + "repo": "h/find-file-in-repository", + "unstable": { + "version": [ + 20190404, + 828 + ], + "commit": "b44d78682082270dc6b59cdc911333d0d3e7edaa", + "sha256": "1icsxp2b3grvdbv6bh9hpxz1hrqa7vvjzajjwi2knvjbq41d99bn" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "8b888f85029a2ff9159a724b42aeacdb051c3420", + "sha256": "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md" + } + }, + { + "ename": "find-temp-file", + "commit": "c01efd0cb3e3bab4661a358c084b645dc7e31736", + "sha256": "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p", + "fetcher": "github", + "repo": "thisirs/find-temp-file", + "unstable": { + "version": [ + 20170107, + 1339 + ], + "commit": "513005d19d72d71f34481ee00158dd57bd93206f", + "sha256": "129jnn16vxmp6r9gx8k4rvv6spag5q0if52b5fhsybicnsl35mrz" + } + }, + { + "ename": "find-things-fast", + "commit": "3b63336dd150e791f3139d675af735b60054eb2b", + "sha256": "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m", + "fetcher": "github", + "repo": "eglaysher/find-things-fast", + "unstable": { + "version": [ + 20150519, + 2226 + ], + "commit": "efc7c189019ed65430e2f9e910e8e0a5ca9d2d03", + "sha256": "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx" + } + }, + { + "ename": "findr", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "0pw72bdpmc0ymlgjmwwrslhynij5a5b9sc3rx6vyprpv1ad4ac2c", + "fetcher": "github", + "repo": "emacsorphanage/findr", + "unstable": { + "version": [ + 20130127, + 2032 + ], + "commit": "1ddbc0464bb05dcda392b62666ad17239a2152d3", + "sha256": "0wx4hd4agrfvk0igyash658cbf7v3bv01rlspllsvzr59fl3faqq" + } + }, + { + "ename": "fingers", + "commit": "f2afd4983d1a5820daafb31e96d54b214a79849f", + "sha256": "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg", + "fetcher": "github", + "repo": "fgeller/fingers.el", + "unstable": { + "version": [ + 20160817, + 829 + ], + "commit": "fed0f742afb1d72eaef29d8da394467550a030fa", + "sha256": "1mx05zfdrkwb50l7f0iycsqw23b1gxzacfnssclb42xdjxxmyhdj" + } + }, + { + "ename": "fiplr", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca", + "fetcher": "github", + "repo": "grizzl/fiplr", + "unstable": { + "version": [ + 20140724, + 645 + ], + "deps": [ + "cl-lib", + "grizzl" + ], + "commit": "3f50159fd42125440d5b0eb9d6398560461f030b", + "sha256": "1m5rcyvfwfqslqn9km413s8wqpzc9z68qpz3584g9sqp37mp6clp" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "deps": [ + "grizzl" + ], + "commit": "100dfc33f43da8c49e50e8a2222b9d95532f6e24", + "sha256": "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07" + } + }, + { + "ename": "firecode-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739", + "fetcher": "github", + "repo": "emacsfodder/emacs-firecode-theme", + "unstable": { + "version": [ + 20170808, + 1311 + ], + "commit": "8b7b03ecdd41e70dab145b98906017e1392eaef4", + "sha256": "1vrpnv7555mbsksflgdkg7hc65fjcyzvzv2261y043rlh2qrn0sy" + } + }, + { + "ename": "firefox-controller", + "commit": "70a69c20f8dcf73c878f2172dcc9f1796fdc0408", + "sha256": "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6", + "fetcher": "github", + "repo": "cute-jumper/emacs-firefox-controller", + "unstable": { + "version": [ + 20160320, + 1847 + ], + "deps": [ + "cl-lib", + "moz", + "popwin" + ], + "commit": "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f", + "sha256": "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "cl-lib", + "moz", + "popwin" + ], + "commit": "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f", + "sha256": "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp" + } + }, + { + "ename": "fireplace", + "commit": "4c1ac52c1cfe7ccf46092c2d299ebbffdc1b7609", + "sha256": "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw", + "fetcher": "github", + "repo": "johanvts/emacs-fireplace", + "unstable": { + "version": [ + 20181211, + 1927 + ], + "commit": "571ffa7dd0ce46edca838df74d055aaa83da4d78", + "sha256": "1iw17rkihsn50p3zljag82v09zyav8bzgfn6mfa267fkf4f1fgjy" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "2b966ed65b714c613f79e9144d004dfa3b28f1ed", + "sha256": "1f5053bbvjdmm64zv6r2qkswkpwvx0s3qz4bwm9zya583a6g0nv8" + } + }, + { + "ename": "firestarter", + "commit": "5b046eb3b63220b937e1b70f633cb5424dc782a1", + "sha256": "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp", + "fetcher": "github", + "repo": "wasamasa/firestarter", + "unstable": { + "version": [ + 20161219, + 1323 + ], + "commit": "4d6b106f325ac1802eabce3c8a7cd0a4c7a32864", + "sha256": "13daz15v0sshl7lxcg1xcbpl64gklgh50pzk0qxmn5ygw7nlifn0" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "commit": "4d6b106f325ac1802eabce3c8a7cd0a4c7a32864", + "sha256": "13daz15v0sshl7lxcg1xcbpl64gklgh50pzk0qxmn5ygw7nlifn0" + } + }, + { + "ename": "firrtl-mode", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "19r7wbw9pr05p8fywcnbbpdpklic2vd2bsy80r7xrzgs4fcl12as", + "fetcher": "github", + "repo": "IBM/firrtl-mode", + "unstable": { + "version": [ + 20190224, + 344 + ], + "commit": "e55c555809037b7aaf2367ad2255f0a27addd23a", + "sha256": "1nsihyx9znblc4kxyk06r7alhd4wh67312zwp9discgyf4ksm572" + } + }, + { + "ename": "fish-completion", + "commit": "6d17ca0213ba5ef9dce92002e281e6f08c3492be", + "sha256": "1y7vwh7w0shnrnp8x1m1sa0p7kdyz5mg1mfs263gm38in2biym9i", + "fetcher": "gitlab", + "repo": "Ambrevar/emacs-fish-completion", + "unstable": { + "version": [ + 20190429, + 822 + ], + "commit": "e5b9b65a077319dfdb2faca9ef847db3ef55d0db", + "sha256": "1pjqnbyjmj64q5nwq1mrdxcls4fp5y0b6zqs785i0s6wdvrm4021" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "e5b9b65a077319dfdb2faca9ef847db3ef55d0db", + "sha256": "1pjqnbyjmj64q5nwq1mrdxcls4fp5y0b6zqs785i0s6wdvrm4021" + } + }, + { + "ename": "fish-mode", + "commit": "efac97c0f54a3300251020c4626056526c18b441", + "sha256": "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14", + "fetcher": "github", + "repo": "wwwjfy/emacs-fish", + "unstable": { + "version": [ + 20180827, + 303 + ], + "commit": "35fc7c1e243a7410823088a571ecf378e9f3efa6", + "sha256": "0rn08dm4gn0g0nz080zxm0am1z6hfkinvzqwqszv96qkxy250ghp" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "commit": "bac709ac1235751952d6022dddc6307d9135d096", + "sha256": "0a74ghmjjrxfdhk4mvq6lar4w6l6lc4iilabs99smqr2fn5rsslq" + } + }, + { + "ename": "fix-input", + "commit": "7d31f907997d1d07ec794a4f09824f43818f035c", + "sha256": "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p", + "fetcher": "github", + "repo": "mrkkrp/fix-input", + "unstable": { + "version": [ + 20190713, + 1349 + ], + "commit": "d4199bd1e2c4d4e1ff120fc683c526fda0877266", + "sha256": "18wbclnqwzgnab6jr32mfsldr1373ivf6v84f4xbj5j6k7n8b6q6" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "a70edfa7880ff9b082f358607d2a9ad6a8dcc8f3", + "sha256": "121m0h0nwxr27f9d2llbgl63ni1makcg66lnvg24wx07wggf0n8z" + } + }, + { + "ename": "fix-muscle-memory", + "commit": "c6b0501714a6d82657b88d11e3f79d75eea17d8e", + "sha256": "0qhasnjw0bj5hzw27r8vj6shhwc3zxcp3wmxijh1rpdw4773f7n8", + "fetcher": "github", + "repo": "jonnay/fix-muscle-memory", + "unstable": { + "version": [ + 20160823, + 439 + ], + "commit": "a123e04f8a1d2982cbf930efb909cad9522ac884", + "sha256": "0mm6dl7017x5l43jf89w4nn5hcyi4fm160d2rcqx5w6dwb6f0v27" + }, + "stable": { + "version": [ + 0, + 93 + ], + "commit": "df687aea23c6eac4b751f993893c2fd56e5a8a3b", + "sha256": "02nl4vz6fnbjc7w1lk1y9z0qw5bsxr407ww0b2wqw6h8spmcpcrc" + } + }, + { + "ename": "fix-word", + "commit": "22636390e8a15c09293a1506a901286dd72e565f", + "sha256": "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc", + "fetcher": "github", + "repo": "mrkkrp/fix-word", + "unstable": { + "version": [ + 20190713, + 1338 + ], + "deps": [ + "cl-lib" + ], + "commit": "53f8d77bfdb8087949a80a62e90a17ebefc9ce98", + "sha256": "1kwvjmp88yrbi2psnlv1kcg9gqxnx85qbhgnz8izpic0qnv76f1g" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "b3b3a3c8e33e425f9a8d0ec653adb6897c8efc03", + "sha256": "1nw9ih0knaqaban5nqp3anvr37mivylqs8sc8l3v1i9srlqnsj1m" + } + }, + { + "ename": "fixmee", + "commit": "f5d06db82e237e6c6babd92a1fd2b58c29662e4f", + "sha256": "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp", + "fetcher": "github", + "repo": "rolandwalker/fixmee", + "unstable": { + "version": [ + 20150223, + 1355 + ], + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ], + "commit": "1b8b3460f1e3c3c1784b2a63fb9f4fb3bb4dc084", + "sha256": "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic" + }, + "stable": { + "version": [ + 0, + 8, + 6 + ], + "deps": [ + "back-button", + "button-lock", + "nav-flash", + "smartrep", + "string-utils", + "tabulated-list" + ], + "commit": "aa3be8ad9fcc9c0c7ff15f70cda4ba77de96dd74", + "sha256": "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0" + } + }, + { + "ename": "flame", + "commit": "b7a14c14368de722855286c088020a5657f7cf8b", + "sha256": "1br9c48anscq9vbssr0gq8f5kbq755hjaglbljwwh9nd5riycv5v", + "fetcher": "github", + "repo": "mschuldt/flame", + "unstable": { + "version": [ + 20180303, + 2016 + ], + "commit": "a749b2a77b87e505572d0f1f5d59fac76348bb73", + "sha256": "1l9jbzavyi75li64jqfs000s1m8iw9xvsv8mg0bw1div6bc7vq7s" + } + }, + { + "ename": "flappymacs", + "commit": "a63b22f357b2d08b12fb86c27261ab4d687c5f7f", + "sha256": "1rp4r5ldhm8nrj26y1vm5d5fj3kl7v45cj1naxczrqbcgkd0r404", + "fetcher": "github", + "repo": "taksatou/flappymacs", + "unstable": { + "version": [ + 20171023, + 1004 + ], + "commit": "27f3e21acb22f786606481e3f4e5dc1edbaaaed4", + "sha256": "0zcwsbz93p1l2jb1fs6m4s5y9klcr5qg5nw10qg30j9l2bc1hda8" + } + }, + { + "ename": "flash-region", + "commit": "bf26329a30ec6e39b052e5815d3f113c05e72f84", + "sha256": "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c", + "fetcher": "github", + "repo": "Fuco1/flash-region", + "unstable": { + "version": [ + 20130923, + 1817 + ], + "commit": "261b3597b23cdd40e5c14262a5687bcc6c1d0901", + "sha256": "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f" + } + }, + { + "ename": "flatland-black-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da", + "fetcher": "github", + "repo": "emacsfodder/emacs-flatland-black-theme", + "unstable": { + "version": [ + 20170808, + 1312 + ], + "commit": "348c5d5fe615e6ea13cadc17f046e506e789ce07", + "sha256": "1g5jqxdk35ahx8qk4vi7whhcpi1qp7rbbjgiih974fs59cg5iki0" + } + }, + { + "ename": "flatland-theme", + "commit": "0a081fd0c5598fdf5bc0ab92f4d009f32132a29e", + "sha256": "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3", + "fetcher": "github", + "repo": "gchp/flatland-emacs", + "unstable": { + "version": [ + 20171113, + 1521 + ], + "commit": "a98a6f19ad4dff0fa3fad1ea487b7d0ef634a19a", + "sha256": "02gbzxd1v003aaj5rn3vr00n4390bhdx2jhpa7nb430fg3s1ppdy" + } + }, + { + "ename": "flatui-dark-theme", + "commit": "5f9dc5abeb37422c63cac74f9a006d54c4a7c5a5", + "sha256": "1mswmkhi43fm0cmdgf0ywpy9lmapy0syl65kqh68sa3jqbznhm6y", + "fetcher": "github", + "repo": "theasp/flatui-dark-theme", + "unstable": { + "version": [ + 20170513, + 1422 + ], + "commit": "5b959a9f743f891e4660b1b432086417947872ea", + "sha256": "0nz4ql7qf49cwsgjb7dg0jhipr5d472r4fddy6fhr1h17s1cd9qy" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "af5c84e2a2810748cc71a68ec7ba333097cc1f63", + "sha256": "0c0pm67d8w9jdraap0sswvx7ywly9ifimij2c5w9p4hiph8gisr9" + } + }, + { + "ename": "flatui-theme", + "commit": "96dc9a8b1f6e5cdd46fc94fc2979f2a1787f4d21", + "sha256": "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz", + "fetcher": "github", + "repo": "john2x/flatui-theme.el", + "unstable": { + "version": [ + 20160619, + 127 + ], + "commit": "9c15db5526c15c8dba55023f5698372b19c2a780", + "sha256": "0ybgpnbq3b0ml3lzgkispn667acpjww7z6cr7hgwg3j1zrqpwi75" + } + }, + { + "ename": "flex-autopair", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0w3l236psqxl7wqdi2aisz8wcv279kw6gdja72viiscrbcm78xh0", + "fetcher": "github", + "repo": "uk-ar/flex-autopair", + "unstable": { + "version": [ + 20120809, + 1218 + ], + "commit": "4bb757f2556a4a51828e2fed8fb81e31e83052cb", + "sha256": "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql" + } + }, + { + "ename": "flex-compile", + "commit": "259caeebc317e81ab9d532a371ea85656c2b1619", + "sha256": "1hlh4k7qgln87xajnjjhf1yyg6bgdwd0iczhlfw8gdwfj5xpjd38", + "fetcher": "github", + "repo": "plandes/flex-compile", + "unstable": { + "version": [ + 20190707, + 2000 + ], + "deps": [ + "buffer-manage", + "dash" + ], + "commit": "21f992b502309cb047d91a64de48958d565f751f", + "sha256": "1fqnaclmvv46ij5q8nmj571cjynsbgyp40idg8lcv1fvx56hj44c" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "buffer-manage", + "dash" + ], + "commit": "29caf6573eb9bb730a851dec2a234a7cfe912a13", + "sha256": "17s1v4xwgq98jfa3i57dbmy9ls29xsdhp5ng7bz46dhgmkrksbj5" + } + }, + { + "ename": "flex-isearch", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3", + "fetcher": "bitbucket", + "repo": "jpkotta/flex-isearch", + "unstable": { + "version": [ + 20170308, + 2010 + ], + "commit": "8b934ea6f1e4324088f055454a2e8b714961854a", + "sha256": "0xbwrzkfv4i91qxs80p0pfjlvj5pyigvidby8m5lammm8idwx9dh" + } + }, + { + "ename": "flim", + "commit": "94faf56ff9bf94f51ef5253e4c4244faec5eecfd", + "sha256": "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc", + "fetcher": "github", + "repo": "wanderlust/flim", + "unstable": { + "version": [ + 20190526, + 1034 + ], + "deps": [ + "apel" + ], + "commit": "e4bd54fd7d335215b54f7ef27ed974c8cd68d472", + "sha256": "0sl3skyqqzanjrp34hd1rh8wvdgsj2cm7k7hx5kc5ipggp77720r" + } + }, + { + "ename": "flimenu", + "commit": "0ffc67a266de3d58553b27325b7fc6937df425be", + "sha256": "1xr28kprkq9xwy2f7b3wnjr25a8avm2lfcyi8853jygkm2vmnsx1", + "fetcher": "github", + "repo": "IvanMalison/flimenu", + "unstable": { + "version": [ + 20170418, + 147 + ], + "deps": [ + "dash" + ], + "commit": "9351201d89b05cbdaec312a6ebd7fd10c38d6112", + "sha256": "1qb08j66a9mvybqhc2vyywwn16w3kkjb06k50rfqf6sbcmndz8va" + } + }, + { + "ename": "fliptext", + "commit": "e36776cbed8eab151f69d0edd5217a7bba7c2451", + "sha256": "1wbrvqrvrpk2lx7b6y30rrshr7a25b2191bnx4v8lm3cv16gv8p7", + "fetcher": "github", + "repo": "andre-r/fliptext.el", + "unstable": { + "version": [ + 20171124, + 2056 + ], + "commit": "fd821f645ffebae6ae3894afa7ba7fc06f91afc6", + "sha256": "1jf63kp1myxihv6r13cddxgr8cchxcnnmylj5dx50y42595ia4yh" + } + }, + { + "ename": "floobits", + "commit": "95c859e8440049579630b4c2bcc31e7eaa13b1f1", + "sha256": "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf", + "fetcher": "github", + "repo": "Floobits/floobits-emacs", + "unstable": { + "version": [ + 20180801, + 524 + ], + "deps": [ + "highlight", + "json" + ], + "commit": "489b294a7f30ecd2af2edc0823dead8102f27af6", + "sha256": "1pw88qn6s8ln626c8mgxgpfax39h7ww4m930dp7gg4aklxjbspkn" + }, + "stable": { + "version": [ + 1, + 9, + 3 + ], + "deps": [ + "highlight", + "json" + ], + "commit": "489b294a7f30ecd2af2edc0823dead8102f27af6", + "sha256": "1pw88qn6s8ln626c8mgxgpfax39h7ww4m930dp7gg4aklxjbspkn" + } + }, + { + "ename": "flow-js2-mode", + "commit": "3487c252f013f6937c6731b57f2a9c1e5227a81d", + "sha256": "05wx7z5f4mkiab8ahhhr3fi6awmsdl253fwapad5ag3kaimnmxv7", + "fetcher": "github", + "repo": "Fuco1/flow-js2-mode", + "unstable": { + "version": [ + 20190627, + 1240 + ], + "deps": [ + "flow-minor-mode", + "js2-mode" + ], + "commit": "c7a300d7fbe5d14b55deed11e31175ea3237c85d", + "sha256": "0x00472q6vz9i1zc9wplqcjis0xdn7a58jbggzvns9fbnva5b7pl" + } + }, + { + "ename": "flow-minor-mode", + "commit": "66504f789069922ea56f268f4da90fac52b601ff", + "sha256": "190dv225sb37jawzrasd7qkbznrmkrdnb90l44il63vrlmjv3r1s", + "fetcher": "github", + "repo": "an-sh/flow-minor-mode", + "unstable": { + "version": [ + 20180315, + 1824 + ], + "commit": "d1b32a7dd0d33c6a00a106da5f4b2323602cbd3e", + "sha256": "169r4ib9qg9q6fm3p0p23qs1qx4pa9pg1qvyq4ysr85i7kwygppl" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "50dded94ad201fdc9453656a8b15179981cd5acd", + "sha256": "1vaqml0ypbc14mnwycgm9slkds3bgg6x5qz99kck98acbcfijxk6" + } + }, + { + "ename": "flower", + "commit": "c8a731715d360aea9af2b898242fd4eee5419d14", + "sha256": "1cb9ppgspdrg4yrrlq4sfajpa6s7xiwvdf9b3947rmmxizgqgynd", + "fetcher": "github", + "repo": "PositiveTechnologies/flower", + "unstable": { + "version": [ + 20190215, + 1746 + ], + "deps": [ + "clomacs" + ], + "commit": "6ef1affa2d7090714ccc4494823de28cfc11da35", + "sha256": "1dp3g52j1i49bv802g27b7yszpxz0i28i4j74qp39qlld3k0gys0" + }, + "stable": { + "version": [ + 0, + 4, + 6 + ], + "deps": [ + "clomacs" + ], + "commit": "6ef1affa2d7090714ccc4494823de28cfc11da35", + "sha256": "1dp3g52j1i49bv802g27b7yszpxz0i28i4j74qp39qlld3k0gys0" + } + }, + { + "ename": "flucui-themes", + "commit": "77d06aa7405f0badf5ab425ddeeb7a754c17d2af", + "sha256": "0ki2vxjhccyi6w2y9qj6xbfqgvjd91wqkzn6qq8ig6ggqir7wc6a", + "fetcher": "github", + "repo": "MetroWind/flucui-theme", + "unstable": { + "version": [ + 20190321, + 2313 + ], + "commit": "921ff298da71366eca3d1e4fc410126d405d5366", + "sha256": "0gqsr0xsxrbxsdfn3yhf76wxpqp63m1652ryvc2hwskkgj41y3nl" + } + }, + { + "ename": "flutter", + "commit": "edfe2d6078e8e6231feb614f28a248f3a7b3d94c", + "sha256": "0dabx2jsdvbzic282b8q3m9nb44f4lcdyqj5011y2yk97gsg7vf7", + "fetcher": "github", + "repo": "amake/flutter.el", + "unstable": { + "version": [ + 20190729, + 444 + ], + "commit": "a5de449cd10f98e7ea4340940b7726f299a0854a", + "sha256": "0v20yirkg04szaw0l7abq8qpqnhqlhgpm5hg5i8dks01dlczw29h" + } + }, + { + "ename": "fluxus-mode", + "commit": "a3396e0da67153ad051b8551bf34630d32f974f4", + "sha256": "1xn2aw9gxwkmr1miam63lrdx6n0qxsgph3rlaqy9cbs0vkb254an", + "fetcher": "github", + "repo": "defaultxr/fluxus-mode", + "unstable": { + "version": [ + 20170210, + 1941 + ], + "deps": [ + "osc" + ], + "commit": "3661d4dfdaf249138e7f215f15f291c9391ede8d", + "sha256": "1dp974qs80agx9qcq5k5awdsr8p8smv8cdwkjz2d8xfd5wq2vhh9" + } + }, + { + "ename": "flx", + "commit": "63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a", + "sha256": "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9", + "fetcher": "github", + "repo": "lewang/flx", + "unstable": { + "version": [ + 20151030, + 1812 + ], + "deps": [ + "cl-lib" + ], + "commit": "46040d0b096a0340d91235561f27a959a61d0fef", + "sha256": "0zysqnxa6kgnyfgknsin7pk25a8dy8208qw2yzan93cabplgqszy" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc" + } + }, + { + "ename": "flx-ido", + "commit": "63bdf3ae2f861e333a8f9c5997f5cc52869d3b3a", + "sha256": "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc", + "fetcher": "github", + "repo": "lewang/flx", + "unstable": { + "version": [ + 20180117, + 1519 + ], + "deps": [ + "cl-lib", + "flx" + ], + "commit": "46040d0b096a0340d91235561f27a959a61d0fef", + "sha256": "0zysqnxa6kgnyfgknsin7pk25a8dy8208qw2yzan93cabplgqszy" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "deps": [ + "cl-lib", + "flx" + ], + "commit": "7fce6a4cdb65ac1b52e2b409ba548767581ce34c", + "sha256": "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc" + } + }, + { + "ename": "flx-isearch", + "commit": "2cd1438cc0821b8ae1d01e2a3bc8f07ca8a79134", + "sha256": "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd", + "fetcher": "github", + "repo": "PythonNut/flx-isearch", + "unstable": { + "version": [ + 20180103, + 514 + ], + "deps": [ + "cl-lib", + "flx" + ], + "commit": "f132fd6367e369885ab3a865fbfe20eee989bc0b", + "sha256": "1dcvfl4fyhgw0rhfhixzlzjfr99fisa83f7lmlwzz2zs96myhhkz" + } + }, + { + "ename": "flycheck", + "commit": "649f9c3576e81409ae396606798035173cc6669f", + "sha256": "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr", + "fetcher": "github", + "repo": "flycheck/flycheck", + "unstable": { + "version": [ + 20190709, + 1443 + ], + "deps": [ + "dash", + "let-alist", + "pkg-info", + "seq" + ], + "commit": "410103bb40db8684cb03756ab98ba813afbf214e", + "sha256": "1z2szbad80b4xx4sdp051i987mp4x4rr6v82s7ql5h510i1bv51r" + }, + "stable": { + "version": [ + 31 + ], + "deps": [ + "dash", + "let-alist", + "pkg-info", + "seq" + ], + "commit": "401b115d10e202a1b31f57340438420081af21ce", + "sha256": "141i6wzqlb0dslmca6930cal7q4y5wbwzmxrpjk3hgm6nxz483p8" + } + }, + { + "ename": "flycheck-ameba", + "commit": "043b5acb0552272c523d642fd9f9dca438087068", + "sha256": "0ix0rfsasnifn1l1m31242fyyg7ms251hd3k0mj1mgwrsjibyq3c", + "fetcher": "github", + "repo": "crystal-ameba/ameba.el", + "unstable": { + "version": [ + 20190720, + 1845 + ], + "deps": [ + "flycheck" + ], + "commit": "8383f07d760a31a0737be9b7bdaff2f1cff67bfd", + "sha256": "066ccpaszidjvwy18bvkrf37ws60363cnbvcl1sfd7k6nynbdar6" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "ca5faaa0d5115dc2c301e06e062e653a7b9cb927", + "sha256": "07207h1643amlairnmpf8lnnkgf69kc04z3ri9k6fm4gmh6c9dy0" + } + }, + { + "ename": "flycheck-apertium", + "commit": "7f6cec0d312f0e86e17829e6fd8f87acabc0174f", + "sha256": "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7", + "fetcher": "github", + "repo": "unhammer/flycheck-apertium", + "unstable": { + "version": [ + 20181211, + 1038 + ], + "deps": [ + "flycheck" + ], + "commit": "22b60a17836477ac1edd15dc85b14f88ca871ba9", + "sha256": "0313h4yh85xndzvy3yzznar79ys0ng3rdsz0xa237xqsf71ypg4z" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "e146ab1b929c50450ba0708e1bdd9fed85606964", + "sha256": "1g1m7pm84mkmjx7hdspb5k6n8aqphphxb5gya725qy1wqi950jqz" + } + }, + { + "ename": "flycheck-ats2", + "commit": "2d3605bdc402e6b13f53910eafb7f1428a5f749f", + "sha256": "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr", + "fetcher": "github", + "repo": "drvink/flycheck-ats2", + "unstable": { + "version": [ + 20170225, + 1636 + ], + "deps": [ + "flycheck" + ], + "commit": "9f77add8408462af35bdddf87e37a661880255e3", + "sha256": "1fv3r49i8dgszaq5rs8dwnwcj6rgx922ww01ikrq3b4c9y17srpz" + } + }, + { + "ename": "flycheck-bashate", + "commit": "54fd062e4ad012d846260c96801d3415756ce981", + "sha256": "1c8hf4893zb74g61afr02wqhmdaswxr3nwsnzzwmb8nrrygvfa8j", + "fetcher": "github", + "repo": "alexmurray/flycheck-bashate", + "unstable": { + "version": [ + 20160630, + 440 + ], + "deps": [ + "flycheck" + ], + "commit": "77fa03dbc578c34fe71ca44926bac2aff8f2b021", + "sha256": "1jcay4gncpr0fap6qlm6k4r5b94s18zj8j56w462hvxydaxxiql6" + } + }, + { + "ename": "flycheck-cask", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0d2m7mg91k1nazysayryxagql1vi975n7iv0snknhbw4wisqp82f", + "fetcher": "github", + "repo": "flycheck/flycheck-cask", + "unstable": { + "version": [ + 20160928, + 926 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "c3a51147eddeb7347de81f6a498fc96538bac499", + "sha256": "1jw8n6df2hpnjrsqzdd70j0ya3yjzkcy5gm6zx9acqfx88zlgb9m" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "b4667500dcf52f96ec7e0fa10dd07edf191cbf5b", + "sha256": "1wm5saf29gw0gp0qq5glf9qq3iras99npc2rip7bsnn0czr2mscy" + } + }, + { + "ename": "flycheck-checkbashisms", + "commit": "f5678ea5aef4dc8a517d6d9381a64f182645d344", + "sha256": "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz", + "fetcher": "github", + "repo": "Gnouc/flycheck-checkbashisms", + "unstable": { + "version": [ + 20190403, + 218 + ], + "deps": [ + "flycheck" + ], + "commit": "2e386775f1a0eb5d80e5d70e98474ee32ecafb24", + "sha256": "1ai4p0s6wh4sp972fxkjlc4mn6ai1zc27zh4vm63rfrayri1g31z" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "flycheck" + ], + "commit": "39362240b8e38e6ddc1da2e2c2229e3fecdf6057", + "sha256": "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3" + } + }, + { + "ename": "flycheck-checkpatch", + "commit": "193aaae5640434559cd479df1463ee44eab14d86", + "sha256": "1apjn26n663rjddv5iagfs65fdf22049ykmzggybbnprvnmasf55", + "fetcher": "github", + "repo": "zpp0/flycheck-checkpatch", + "unstable": { + "version": [ + 20170217, + 1025 + ], + "deps": [ + "flycheck" + ], + "commit": "6461fc7b0d493eb9863814055f8bce5fa35739de", + "sha256": "1651xmw01n5h7x81y3cvsamdmb67jcf385ax52dkp8miyq1a090r" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "flycheck" + ], + "commit": "aca98ea79f8b26a95f9dbdd4142b01fdd2def866", + "sha256": "0bs36dp1jy2z9zfq4mnrin9ik0ffl7023h6dx3qbfya1gcxs07py" + } + }, + { + "ename": "flycheck-clang-analyzer", + "commit": "8de7b717a1b0caf30f8f29d3e764b4756b93aeff", + "sha256": "0wby4vilvcmmncr6l6abh3v4wznx9m0zbk30vllj8bq98awfcy3a", + "fetcher": "github", + "repo": "alexmurray/flycheck-clang-analyzer", + "unstable": { + "version": [ + 20190724, + 542 + ], + "deps": [ + "flycheck" + ], + "commit": "223faa244502150d08a34898858a0b4806c92d4c", + "sha256": "1di3d9y0p8g8mndwkzkiiq2svsgk05rnzf7bzfnhig2fchg7ipap" + } + }, + { + "ename": "flycheck-clang-tidy", + "commit": "a289ac549a7735a12eec85521c32f915b9194b85", + "sha256": "0lhf5byydmd380y7qx5x34r0sq7gzrj286pcaxhl388p6j58cb4p", + "fetcher": "github", + "repo": "ch1bo/flycheck-clang-tidy", + "unstable": { + "version": [ + 20171024, + 808 + ], + "deps": [ + "flycheck" + ], + "commit": "b8ebd49693f67e08e420ba847cc88f6721ef9e3e", + "sha256": "0fnn1baw64f7x1zjb95adryr3mfynbblwppcd6ywh7pk0sq18b80" + } + }, + { + "ename": "flycheck-clangcheck", + "commit": "b42dd133e4fd5579dd1c6cdcbf733571bc890899", + "sha256": "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m", + "fetcher": "github", + "repo": "kumar8600/flycheck-clangcheck", + "unstable": { + "version": [ + 20150712, + 710 + ], + "deps": [ + "cl-lib", + "flycheck", + "seq" + ], + "commit": "24a9424c484420073a24443a829fd5779752362b", + "sha256": "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck" + } + }, + { + "ename": "flycheck-clj-kondo", + "commit": "20dca546bbad0fa7b713dc015d1b9a9b7caf5370", + "sha256": "0a61jq6g0arrsa97rl3frns8k9l9qxazb96ir99y9kskim4njl6r", + "fetcher": "github", + "repo": "borkdude/flycheck-clj-kondo", + "unstable": { + "version": [ + 20190619, + 1743 + ], + "deps": [ + "flycheck" + ], + "commit": "353e3481a20fbd577ad79db8bbc6113ce179c195", + "sha256": "1xgvz2mdacyr7jszrpxs9lm30y0p72ahin98lr385gvsa8gknmhm" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "flycheck" + ], + "commit": "353e3481a20fbd577ad79db8bbc6113ce179c195", + "sha256": "1xgvz2mdacyr7jszrpxs9lm30y0p72ahin98lr385gvsa8gknmhm" + } + }, + { + "ename": "flycheck-clojure", + "commit": "c9c642a234f93ed4cf5edcf27a552a8916984946", + "sha256": "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28", + "fetcher": "github", + "repo": "clojure-emacs/squiggly-clojure", + "unstable": { + "version": [ + 20190611, + 2351 + ], + "deps": [ + "cider", + "flycheck", + "let-alist" + ], + "commit": "1dc8fdd691bcf950e95a0f00b71b53854923543e", + "sha256": "12abxdr75rjf9qas3q0wk220l3413cmddj45habz2ml9a9f7i41y" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "cider", + "flycheck", + "let-alist" + ], + "commit": "fc0f1473c85b5287c8a62c1eee86894c98fbb84c", + "sha256": "0dqnv7l82h09janakq2b3ncz3jj99418pb91w0gabvfylww3pm21" + } + }, + { + "ename": "flycheck-clolyze", + "commit": "69fb1a2c590eb1a9a7cae09a7080b24185e49c74", + "sha256": "1181g7ni0xihq0mbk6g6h7wh31hrg9q2xxsyrg6gb1zf4qqp2zyv", + "fetcher": "github", + "repo": "DLaps/flycheck-clolyze", + "unstable": { + "version": [ + 20190422, + 2134 + ], + "deps": [ + "flycheck" + ], + "commit": "c8b27602dd505aeae6486feb6f584754079baf51", + "sha256": "163qlcjwzg8yg7ygg8h99484basz76fsqwdgv8s7v7kyfsclbjq8" + } + }, + { + "ename": "flycheck-color-mode-line", + "commit": "02b5b60b74581ff0d1815155223e0c6e94a851a1", + "sha256": "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq", + "fetcher": "github", + "repo": "flycheck/flycheck-color-mode-line", + "unstable": { + "version": [ + 20171122, + 707 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "cc474804d4e8088a627485faaf4217a5781aec7d", + "sha256": "0lk8p0wb7g9lvxjv9rl59hd9f0m0ksw9rgspis8qshpz8pj5785f" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "c85319f8d2579e770c9060bfef11bedc1370d8be", + "sha256": "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5" + } + }, + { + "ename": "flycheck-coverity", + "commit": "55e8df91adbcf8b059096e02aba2781424250381", + "sha256": "1knd1sqgjkgb5zs8hgsi6lyvkqmrcrdjgx81f26nhg40qv5m2p5l", + "fetcher": "github", + "repo": "alexmurray/flycheck-coverity", + "unstable": { + "version": [ + 20170704, + 59 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "cb211e3dd50413a5042eb20175be518214591c9d", + "sha256": "17c5lppa5axw6wga3k8zqmn5f2syadlqbavrqgsi8k8nlcckxy1x" + } + }, + { + "ename": "flycheck-credo", + "commit": "88dfffe034135cc46d661f8173e8b14e0fb7f240", + "sha256": "0xmnbib7lx6v10pd3pkr69c4jb4sn3nmjk16qzvscwjgf2dypyax", + "fetcher": "github", + "repo": "aaronjensen/flycheck-credo", + "unstable": { + "version": [ + 20170526, + 1545 + ], + "deps": [ + "flycheck" + ], + "commit": "e88f11ead53805c361ec7706e44c3dfee1daa19f", + "sha256": "04i7fbqpkjpsfa8vjpkdhg1sj5isczxwncdp4vr9x3vll3svblm7" + } + }, + { + "ename": "flycheck-crystal", + "commit": "c718f809af30226611358f9aaed7519e52923fd3", + "sha256": "04avxav2rayprm09xkphs1ni10j1kk10j7m77afcac0gnma5rwyn", + "fetcher": "github", + "repo": "crystal-lang-tools/emacs-crystal-mode", + "unstable": { + "version": [ + 20180627, + 242 + ], + "deps": [ + "flycheck" + ], + "commit": "34124f546ff5c1136aed95bf0059015f9f6a1d60", + "sha256": "09cmbw190w6aiwwc2bg349xx6vcv9b9ajw8m70ajb3653qnq3mw4" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "0fe6815201bebe4c5ff6857bd541d95b05132b10", + "sha256": "0r75dvc0jqcqi1qjns8zj132dnm0s6mvqlqynkis16nigbawix8m" + } + }, + { + "ename": "flycheck-css-colorguard", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16qgn12jdps61mlbvhji5l8qrqigv382wyiv79rj2bwvdzbl653f", + "fetcher": "github", + "repo": "Simplify/flycheck-css-colorguard", + "unstable": { + "version": [ + 20161031, + 1122 + ], + "deps": [ + "flycheck" + ], + "commit": "ae94fa0396acd99f9ec36d9572459df793f37fe8", + "sha256": "1vy5yjf98b7dk9lniz3rgk33agg8f1x8488lvm28ljdq3jfdgcfw" + } + }, + { + "ename": "flycheck-cstyle", + "commit": "5970f4f0967dc3a10dc9554a8f5f06b703872878", + "sha256": "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909", + "fetcher": "github", + "repo": "alexmurray/flycheck-cstyle", + "unstable": { + "version": [ + 20160905, + 2341 + ], + "deps": [ + "flycheck" + ], + "commit": "207285140a353d08cf1fc450cacab158bc98ba82", + "sha256": "19wwv4r3nh79bdfcqp55qmknl0gwicy7dcaz28hm3sswbjpfv3rw" + } + }, + { + "ename": "flycheck-cython", + "commit": "2d963eb1b8f8f863b37a96803b00d395e9d85e94", + "sha256": "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4", + "fetcher": "github", + "repo": "lbolla/emacs-flycheck-cython", + "unstable": { + "version": [ + 20170724, + 958 + ], + "deps": [ + "flycheck" + ], + "commit": "ecc4454d35ab5317ab66a04406f36f0c1dbc0b76", + "sha256": "1v17skw0wn7a7nkc1vrs0bbzihnjw0dwvyyd0lydsihzxl5z2r5g" + } + }, + { + "ename": "flycheck-d-unittest", + "commit": "b86c666ee9b0620390a250dddd42b17cbec2409f", + "sha256": "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2", + "fetcher": "github", + "repo": "flycheck/flycheck-d-unittest", + "unstable": { + "version": [ + 20160522, + 417 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "3e614f23cb4a5566fd7988dbcaaf254af81c7718", + "sha256": "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym" + } + }, + { + "ename": "flycheck-dedukti", + "commit": "732832e88a65a8866fa3872ff5f29eb8a26438f2", + "sha256": "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8", + "fetcher": "github", + "repo": "rafoo/flycheck-dedukti", + "unstable": { + "version": [ + 20171103, + 1212 + ], + "deps": [ + "dedukti-mode", + "flycheck" + ], + "commit": "3dbff5646355f39d57a3ec514f560a6b0082a1cd", + "sha256": "1ffpxnwl3wx244n44mbw81g00nhnykd0lnid29f4aw1av7w6nw8l" + } + }, + { + "ename": "flycheck-demjsonlint", + "commit": "9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7", + "sha256": "0bcfkc9fch1h6gva64j71kb9l8fc9rz6wk0s9w1c1chx1z4nlill", + "fetcher": "github", + "repo": "uqix/flycheck-demjsonlint", + "unstable": { + "version": [ + 20161115, + 718 + ], + "deps": [ + "flycheck" + ], + "commit": "a3dfe1df8ecdea76c076c0849901427567356228", + "sha256": "0zra3rl0kn70kn30wx1lqh9218k06mq3j8jadax61nnynw7bzsa5" + } + }, + { + "ename": "flycheck-dialyxir", + "commit": "fa49551b8f726c235e03ea377bb09a8be37b9f32", + "sha256": "0pacxidpgwp7wij17c5r0fm5w3nga3lp4mcim365k3y5r4ralc0c", + "fetcher": "github", + "repo": "aaronjensen/flycheck-dialyxir", + "unstable": { + "version": [ + 20170515, + 1525 + ], + "deps": [ + "flycheck" + ], + "commit": "adfb73374cb2bee75724822972f405f2ec371199", + "sha256": "1kzvq99f052mdj4ml1m6nvxhv0kqqblmpdgnwcm89krf0qfl4gjg" + } + }, + { + "ename": "flycheck-dialyzer", + "commit": "bc84fb9fabfac4c008fe0eecb0b59933bfbf95c6", + "sha256": "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2", + "fetcher": "github", + "repo": "lbolla/emacs-flycheck-dialyzer", + "unstable": { + "version": [ + 20160326, + 1430 + ], + "deps": [ + "flycheck" + ], + "commit": "a5df0db95ac69f397b5f85d325a6d88cf8974f64", + "sha256": "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf" + } + }, + { + "ename": "flycheck-dmd-dub", + "commit": "a812594901c1099283bdf51fbea1aa077cfc588d", + "sha256": "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm", + "fetcher": "github", + "repo": "atilaneves/flycheck-dmd-dub", + "unstable": { + "version": [ + 20180625, + 1635 + ], + "deps": [ + "f", + "flycheck" + ], + "commit": "d7df2895d7d27cc39916816e3c32a60ce0e1d2d9", + "sha256": "11p1r8gfii7mbh65nrm5hzrz50bmfgx5c4a0zmy6wr219syiggnl" + }, + "stable": { + "version": [ + 0, + 12 + ], + "deps": [ + "f", + "flycheck" + ], + "commit": "41a839e18eb7159175c59a2f8b2f5f283191e33f", + "sha256": "0a78np6nb9ciz440n9ks6kybwggkq99knzv7swbmvngvhg96khbx" + } + }, + { + "ename": "flycheck-dogma", + "commit": "1dd7601c55206fd0b9b59f98e861c52b9d640278", + "sha256": "0mpmmz0ssdd3a4fnqzy5kf9r3ddcs9kcl0chhilkw5k8480j3dcy", + "fetcher": "github", + "repo": "aaronjensen/flycheck-dogma", + "unstable": { + "version": [ + 20170125, + 721 + ], + "deps": [ + "flycheck" + ], + "commit": "eea1844a81e87e2488b05e703a93272d0fc3bc74", + "sha256": "0wmp4q1jzb6giwrv8ajgqriy155mcc7jnj5sycpfk3hw6q74js66" + } + }, + { + "ename": "flycheck-dtrace", + "commit": "cdcdd10fbcd58a5c67e4d07632212e7dedf42dbe", + "sha256": "14sg7zkq9f5zbcfn8app8m9mdc8cnwcxh7h4glsz32yaqc1dj7h8", + "fetcher": "github", + "repo": "juergenhoetzel/flycheck-dtrace", + "unstable": { + "version": [ + 20180903, + 1630 + ], + "deps": [ + "flycheck" + ], + "commit": "951fab3a15c11d92b9fac1ea4791a80dfe034a00", + "sha256": "1qkzir3lzz4lc5kn55qb52cm5y7iy8w1ljq6xxzcjxfbk9980y0y" + } + }, + { + "ename": "flycheck-elixir", + "commit": "da2ab73ab1426f71ea2b2bea2b418941856b3454", + "sha256": "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld", + "fetcher": "github", + "repo": "lbolla/emacs-flycheck-elixir", + "unstable": { + "version": [ + 20180810, + 642 + ], + "deps": [ + "flycheck" + ], + "commit": "11998d7e3e63a33453e934d25b3673f7c558e579", + "sha256": "1hdbg0hvb6hwzjma9mxy0h888c8j2z4g38gwixrdixzbw5727r75" + } + }, + { + "ename": "flycheck-elm", + "commit": "78bdcdaa660beda29acecb51761b95d8664d28ac", + "sha256": "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4", + "fetcher": "github", + "repo": "bsermons/flycheck-elm", + "unstable": { + "version": [ + 20181107, + 146 + ], + "deps": [ + "flycheck", + "let-alist", + "seq" + ], + "commit": "debd0af563cb6c2944367a691c7fa3021d9378c1", + "sha256": "1vl0lss2n50pz5wscqj6vhjwb4hbg8xx2chh5vafsrnn0a3fryrd" + } + }, + { + "ename": "flycheck-elsa", + "commit": "2a15c49d2fc800a6b69304edd6dbad90aaa5053f", + "sha256": "07a07hmy7cibm7263dw4x8kkv17g5hby8isaks7n2814ifblf30r", + "fetcher": "github", + "repo": "emacs-elsa/flycheck-elsa", + "unstable": { + "version": [ + 20190211, + 1921 + ], + "deps": [ + "cask", + "seq" + ], + "commit": "c0a226d2520681bb0c16cd31504b620e43ee743c", + "sha256": "07605v5insay9jgj274ysdksk4cck49y5gsqzjz7js8f6p526k75" + } + }, + { + "ename": "flycheck-ensime", + "commit": "c8d1ef354566c7f337c62accbd1d2f86ffcbd98a", + "sha256": "11h7xwm8vwi8nca7yy9q0y30jcj77s07aa45xqz7n8rsqp6wdp3z", + "fetcher": "github", + "repo": "ncaq/flycheck-ensime", + "unstable": { + "version": [ + 20190212, + 1042 + ], + "deps": [ + "ensime", + "flycheck" + ], + "commit": "9fe000e7004725bc8c3b7554237d717bca9cd9ac", + "sha256": "0fl6p2hvcm1f5snx8a82h53kkfnbgycik0d5a7krcjgiby6w7wam" + } + }, + { + "ename": "flycheck-flawfinder", + "commit": "e67a84d1a8c890ea56bd842549d70d9841d1e7a7", + "sha256": "1nabj00f5p1klzh6509ywnazxx2m017isdjdzzixg94g5mp0kv5i", + "fetcher": "github", + "repo": "alexmurray/flycheck-flawfinder", + "unstable": { + "version": [ + 20170116, + 327 + ], + "deps": [ + "flycheck" + ], + "commit": "7d964d38023b088adf3ffc2fddeead81f4491a45", + "sha256": "0y023brz8adwa6gdaaixk6dnrq4kj2i5h56rj54cxrjkagyklfxl" + } + }, + { + "ename": "flycheck-flow", + "commit": "4d18fb21d8ef9b33aa84bc26f5918e636c5771e5", + "sha256": "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3", + "fetcher": "github", + "repo": "lbolla/emacs-flycheck-flow", + "unstable": { + "version": [ + 20190304, + 1459 + ], + "deps": [ + "flycheck", + "json" + ], + "commit": "9e8e52cfc98af6a23fd906f9cb5d5d470d8cf82d", + "sha256": "14qldlisbmxzammr500gyha2hiv2xgyzfc6mysqii06kbcqn1ik1" + } + }, + { + "ename": "flycheck-ghcmod", + "commit": "b6ed620e038f361c41115430a1fc119a04cf4f20", + "sha256": "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp", + "fetcher": "github", + "repo": "scturtle/flycheck-ghcmod", + "unstable": { + "version": [ + 20150114, + 632 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "6bb7b7d879f05bbae54e99eb04806c877adf3ccc", + "sha256": "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d" + } + }, + { + "ename": "flycheck-golangci-lint", + "commit": "fffbecd6cb43866fc9f37ba2d2c998ef6186c6d5", + "sha256": "1vg80q4axbzb147fglli2w19n70bc934hb3hfl1r4shhpbfjlcgj", + "fetcher": "github", + "repo": "weijiangan/flycheck-golangci-lint", + "unstable": { + "version": [ + 20190330, + 1412 + ], + "deps": [ + "flycheck" + ], + "commit": "8e446c68311048f0b87febf8ef0379e29d358851", + "sha256": "0xxxqk8ag082nwwq3dvhzvnbgn9c90mbda7qvi2y4qbh1p1nccqc" + } + }, + { + "ename": "flycheck-gometalinter", + "commit": "8bfe9f2d030c04fb292297eb9226072bfea2ac64", + "sha256": "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2", + "fetcher": "github", + "repo": "favadi/flycheck-gometalinter", + "unstable": { + "version": [ + 20180424, + 941 + ], + "deps": [ + "flycheck" + ], + "commit": "422f6e4b77b27fd7370f0c88437ac5072c9d3413", + "sha256": "16117njpia9046snp1y2yapqmnzgbsan5dvaw3ih5pqmnqjjqdkd" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "flycheck" + ], + "commit": "2e863429cc953cf4c14783e249df56d1ae669868", + "sha256": "07r2csy2psflvg0pl6n9scfwhnp9mv7hs02hz861v5kbkfx0ajzw" + } + }, + { + "ename": "flycheck-gradle", + "commit": "382d9afd2bbb0c137719c308a67d185b86d84331", + "sha256": "0zd92lx0mqjqwzclvvhfwwahq80qspyv9k7qcxjc0bl3avjk6a47", + "fetcher": "github", + "repo": "jojojames/flycheck-gradle", + "unstable": { + "version": [ + 20190315, + 234 + ], + "deps": [ + "flycheck" + ], + "commit": "1ca08bbc343362a923cbdc2010f66e41655e92ab", + "sha256": "14zvx7f2nszf8p14aibqa4pdg3ly7yw66a58bw2whjw9zfi9rnr0" + } + }, + { + "ename": "flycheck-grammalecte", + "commit": "fdd82aa0568d998a3d176b5ee47b8a227438ea09", + "sha256": "0xqg995a42cl6mvmpi68ay56fgs636cbzg65q5si5yc1yzgl74nv", + "fetcher": "git", + "url": "https://git.deparis.io/flycheck-grammalecte/", + "unstable": { + "version": [ + 20190801, + 1813 + ], + "deps": [ + "flycheck" + ], + "commit": "0ca2659c18f1e7e4963afbff8dcb9e5fef238f3b", + "sha256": "056hs0abyisqh9wsnykj1y05rw8qn8n6j1wgijy2k97yvg3rq7x3" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "flycheck" + ], + "commit": "8ba9d41dad0c9c96760614ce7594ceb823f560de", + "sha256": "1l2n3vi7krd61bgwj7dg7qpkccimwfx3m0946fmxgrp0k6q41fn0" + } + }, + { + "ename": "flycheck-haskell", + "commit": "6ca601613788ae830655e148a222625035195f55", + "sha256": "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7", + "fetcher": "github", + "repo": "flycheck/flycheck-haskell", + "unstable": { + "version": [ + 20181207, + 1646 + ], + "deps": [ + "dash", + "flycheck", + "haskell-mode", + "let-alist", + "seq" + ], + "commit": "32ddff87165a7d3a35e7318bee997b5b4bd41278", + "sha256": "10pgsbagq6qj4mshq5sypv0q0khck92b30sc793b4g1pfpsxvgjn" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "dash", + "flycheck", + "haskell-mode", + "let-alist", + "seq" + ], + "commit": "ee3401d97cc5e8edc216f2369e9dea3d363e462c", + "sha256": "0yryd346cp5zir3icldkhjzwjb0bkq8rlidbr62dry1cw9bic6z0" + } + }, + { + "ename": "flycheck-hdevtools", + "commit": "9e210eb2405cc85dd1d03e9119d2249178950398", + "sha256": "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93", + "fetcher": "github", + "repo": "flycheck/flycheck-hdevtools", + "unstable": { + "version": [ + 20160926, + 702 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "eab1fc184854341a56154623a131cab6ff0ce18c", + "sha256": "0prmrix9a95zr39ybajp7fha03wknxyhrf1kfxsms1brxsc8bqim" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flycheck" + ], + "commit": "fbf90b9a7d2d90f69ac55b57d18f0f4a47afed61", + "sha256": "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3" + } + }, + { + "ename": "flycheck-ini-pyinilint", + "commit": "c2a1d0b4be0dd3e238ad2e3a157b11ecc82c0639", + "sha256": "028ksrlrrsn2wsz7kqf3qk4pp3scs7zvp74c4xj52rm4hh7ycbl7", + "fetcher": "gitlab", + "repo": "danieljrmay/flycheck-ini-pyinilint", + "unstable": { + "version": [ + 20190312, + 1931 + ], + "deps": [ + "flycheck" + ], + "commit": "e1c3adfc148caf721691a55cae686b5f31209204", + "sha256": "0b8hs7cdywqblbf5dkgck00x18xirlxi7kqd21cqfd276wvn8wyp" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flycheck" + ], + "commit": "54744a78d06373404933fedc3ca836916e83de51", + "sha256": "1zdvan6l2s97s7swnccq21z1ja8vl64l757j3hg50ipq8j5yy9dl" + } + }, + { + "ename": "flycheck-inline", + "commit": "a9ecc3a4696d2b3b0f0b8b1ca6e5285380ac046a", + "sha256": "14ph2f5aj2mpyxbbq4v0rk5zdz7773lf2m83m30h3r1cbh5jmddj", + "fetcher": "github", + "repo": "flycheck/flycheck-inline", + "unstable": { + "version": [ + 20190320, + 1611 + ], + "deps": [ + "flycheck" + ], + "commit": "cf9eceabff8370f3b834b943a5777b9f914583f9", + "sha256": "1sk8r90iqxpzrg0lpq4vd8ywdi08i0bbmgdivmr510jw2bpi3wp4" + } + }, + { + "ename": "flycheck-irony", + "commit": "1e367afce9a792c168ef1e7e20cc5903f7b570d8", + "sha256": "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z", + "fetcher": "github", + "repo": "Sarcasm/flycheck-irony", + "unstable": { + "version": [ + 20180604, + 2152 + ], + "deps": [ + "flycheck", + "irony" + ], + "commit": "42dbecd4a865cabeb301193bb4d660e26ae3befe", + "sha256": "00ggn7v1nj2zb7rvwmjrhybd1vcp07n74krdy28z9xwh7w59wyq7" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck", + "irony" + ], + "commit": "34940ae5ab8f4c721d9c1118ebfc3496d7e67a84", + "sha256": "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996" + } + }, + { + "ename": "flycheck-jest", + "commit": "31e2ac9de5f28ee9d847097cdeb60afa99476a51", + "sha256": "19dg8v0xzni7x6zn472n4ach1c1jv4syzarfi8ba8r6n26vz9ss4", + "fetcher": "github", + "repo": "jojojames/flycheck-jest", + "unstable": { + "version": [ + 20180411, + 328 + ], + "deps": [ + "flycheck" + ], + "commit": "08f27c5ed97c83c445f99fab58f0b6c826f14449", + "sha256": "1ipr1yyk5vf2i8q7923r18a216sgf759x5f6j5776jcjkhp98c98" + } + }, + { + "ename": "flycheck-joker", + "commit": "599bf33a5d4a4a590b355001e532cab4e1ee9ef6", + "sha256": "0war80zdljpjhfihqrind8471ic7l4z7j74zmrysybxvnd5nr7l3", + "fetcher": "github", + "repo": "candid82/flycheck-joker", + "unstable": { + "version": [ + 20180913, + 504 + ], + "deps": [ + "flycheck" + ], + "commit": "51e99e697761ee8dab863930910abdba7607c1bd", + "sha256": "07pxfvnrgp7f3rb27j1zrq04pncvga4291krqqy3dzwazsjplz48" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "51e99e697761ee8dab863930910abdba7607c1bd", + "sha256": "07pxfvnrgp7f3rb27j1zrq04pncvga4291krqqy3dzwazsjplz48" + } + }, + { + "ename": "flycheck-julia", + "commit": "4e964e3c6f737d0102b4fd7440fa9d434e6382bf", + "sha256": "0340bv0lifs8pajk7gh7rngdjg62vaggn5biyysng642dlg5fwqs", + "fetcher": "github", + "repo": "gdkrmr/flycheck-julia", + "unstable": { + "version": [ + 20170729, + 2141 + ], + "deps": [ + "flycheck" + ], + "commit": "213b60a5a9a1cb7887260e1d159b5bb27167cbb6", + "sha256": "0wk8mc8j67dmc3mxzrhypgxmyywwrjh5q5llj4m2mgf0j7yp2576" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "flycheck" + ], + "commit": "213b60a5a9a1cb7887260e1d159b5bb27167cbb6", + "sha256": "0wk8mc8j67dmc3mxzrhypgxmyywwrjh5q5llj4m2mgf0j7yp2576" + } + }, + { + "ename": "flycheck-kotlin", + "commit": "f158727cc8892aadba0a613dd08e65e2fc791b48", + "sha256": "0vh4f3ap1ciddf2fvfnjz668d6spyx49xs2wfp1hrzxn5yqpnra5", + "fetcher": "github", + "repo": "whirm/flycheck-kotlin", + "unstable": { + "version": [ + 20170122, + 1137 + ], + "deps": [ + "flycheck" + ], + "commit": "cbb9fbf70dbe8efcc3971b3606ee95c97469b1fe", + "sha256": "0bxjx7xcpscv6vv4yxll8hh43aabv2dnrvkymb47jm3yvjr9cs1c" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flycheck" + ], + "commit": "cbb9fbf70dbe8efcc3971b3606ee95c97469b1fe", + "sha256": "0bxjx7xcpscv6vv4yxll8hh43aabv2dnrvkymb47jm3yvjr9cs1c" + } + }, + { + "ename": "flycheck-ledger", + "commit": "dc715e6849aa5d6017e2478514c4a0d84c7ddbe5", + "sha256": "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl", + "fetcher": "github", + "repo": "purcell/flycheck-ledger", + "unstable": { + "version": [ + 20180819, + 321 + ], + "deps": [ + "flycheck" + ], + "commit": "8d7f52a4c7f80ca396ef0fc6c7d8e9f005778dfc", + "sha256": "0m5zhyzrh4lx7vzwdgdwcfkipdvi3y8kavhckbd7vd9zwx539ij1" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "flycheck" + ], + "commit": "9401b6c83f60bfd29edfc62fee76f75e17a3a41e", + "sha256": "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6" + } + }, + { + "ename": "flycheck-lilypond", + "commit": "da99de90193c9ad362afdbbae28dfba52ef3676e", + "sha256": "0yx0jbilr8z58df13wcssp3p95skcvl8mnhhr6lijak44sd7klbf", + "fetcher": "github", + "repo": "hinrik/flycheck-lilypond", + "unstable": { + "version": [ + 20171203, + 1332 + ], + "deps": [ + "flycheck" + ], + "commit": "cc1b7677a932c42e5dab1661ad7b923d4aae744c", + "sha256": "1yfsg52z4nhbh33fbsig24c9s0mc4xm72ll36h6ibld9fvqsgv6k" + } + }, + { + "ename": "flycheck-liquidhs", + "commit": "d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda", + "sha256": "07dn2ifj49z2jj9zw0f0ydp5rxx9wfmah4fh4vx8slnpjby367yh", + "fetcher": "github", + "repo": "ucsd-progsys/flycheck-liquidhs.el", + "unstable": { + "version": [ + 20170412, + 2326 + ], + "deps": [ + "flycheck" + ], + "commit": "c27252ac24d77f4b6eec76a4ba9cd61761a3fba9", + "sha256": "1v5s252w2ai0rrci0rkq6wsx110pw8hp60n67990jg6l6lpvir2s" + } + }, + { + "ename": "flycheck-mercury", + "commit": "a775d12d9b9b6f27a44aeffbbb18de46a9e1b532", + "sha256": "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h", + "fetcher": "github", + "repo": "flycheck/flycheck-mercury", + "unstable": { + "version": [ + 20181118, + 1952 + ], + "deps": [ + "dash", + "flycheck", + "s" + ], + "commit": "b6807a8db70981e21a91a93324c31e49de85c89f", + "sha256": "15pjqglpcwm4wy0cxk1man3ar0n56qi1bjrr1fxfjq2xwsgsfagh" + } + }, + { + "ename": "flycheck-mix", + "commit": "fd2a4d71b7f4c0082b687a23fd367d55186625a9", + "sha256": "1wp8lp45lc519w3xsws2c91jlbfmc0pc8764kxsifk74akwcizfl", + "fetcher": "github", + "repo": "tomekowal/flycheck-mix", + "unstable": { + "version": [ + 20190714, + 958 + ], + "deps": [ + "elixir-mode", + "flycheck" + ], + "commit": "04681608e52ac660f74989a045579da75bc489f2", + "sha256": "0lszvz83xkzna349vmks7p63v5r7039lmk22m796gd7ynhw7k7qy" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "elixir-mode", + "flycheck" + ], + "commit": "c565ebb12a48fcd49cc65656d79295c3288fcb84", + "sha256": "1yncail979sfljmib7b1m9aw376xd4b76apz4d50hj83lrfy169c" + } + }, + { + "ename": "flycheck-mmark", + "commit": "2fd10423ab80e32245bb494005c8f87a8987fffb", + "sha256": "0lnw7pz40hijcpi9b92vjxvvyh9v50ww2f2r8z9pyhl9mjy2245x", + "fetcher": "github", + "repo": "mmark-md/flycheck-mmark", + "unstable": { + "version": [ + 20190713, + 1323 + ], + "deps": [ + "flycheck" + ], + "commit": "c796a2f18884bfc2afeec1fb2060da0f4044ddee", + "sha256": "09q676m4izyr50c49rsk8dsq7bys227d782x9r2kdld0fr7c7hpd" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "b73b40cb9c5cf6bc6fa501aa87a4c30b210c0c5f", + "sha256": "1w75accl67i0qwadwp7dgpxaj0i8zwckvv5isyn93vknzw5dz66x" + } + }, + { + "ename": "flycheck-mypy", + "commit": "b1f5ad8263ee33b8950ff68e39dca5b1f1748c1b", + "sha256": "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f", + "fetcher": "github", + "repo": "lbolla/emacs-flycheck-mypy", + "unstable": { + "version": [ + 20180907, + 1016 + ], + "deps": [ + "flycheck" + ], + "commit": "6f99166f5229c7b4298cff1818b7eaece1c9c8bd", + "sha256": "06rdwjljhficbdf74qzlxsy02xhd8msp79fx75nwbxbd84q6dr5w" + } + }, + { + "ename": "flycheck-nim", + "commit": "68747db46761f28aa2fdf13494d7cecc334cb604", + "sha256": "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az", + "fetcher": "github", + "repo": "ALSchwalm/flycheck-nim", + "unstable": { + "version": [ + 20160715, + 428 + ], + "deps": [ + "dash", + "flycheck" + ], + "commit": "6d27349b66e44578851e6148299709d64d2bde41", + "sha256": "08rjrh7rjx71fsxf931hhfcga7m6a8sd6bvvr4qbsmhldnzd1aa7" + } + }, + { + "ename": "flycheck-nimsuggest", + "commit": "cb4170f002dbcd1906e81836f3ce035b1e81c379", + "sha256": "099mlzramm6z66zyjb6ypn7qb0hpvwbbgk9ydsanj8sni0dd66hv", + "fetcher": "github", + "repo": "yuutayamada/flycheck-nimsuggest", + "unstable": { + "version": [ + 20171027, + 2208 + ], + "deps": [ + "flycheck" + ], + "commit": "dc9a5de1cb3ee05db5794d824610959a1f603bc9", + "sha256": "1bf65hrz0s6f180kn2ir8l5qn7in789w8pyy96b9gqn21z50vb9d" + }, + "stable": { + "version": [ + 0, + 8, + 1 + ], + "deps": [ + "flycheck", + "nim-mode" + ], + "commit": "8b1c69e9aa924368bc4dadd4cde818ff158cd3f0", + "sha256": "0vnwy7b3xs2smbr6ah6yk8hq7vvsciq7d6m1qr91nfnazdgvxmvg" + } + }, + { + "ename": "flycheck-objc-clang", + "commit": "4ff4412f507371b93cfb85fc744e54110cd87338", + "sha256": "07mzwd04a69d7xpkjmhfmf95j69h6accnf9bb9br7jb1hi9vdalp", + "fetcher": "github", + "repo": "GyazSquare/flycheck-objc-clang", + "unstable": { + "version": [ + 20190421, + 1049 + ], + "deps": [ + "flycheck" + ], + "commit": "b46ad43637cebf8467cf596d3e7b5f5d371789e9", + "sha256": "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "b46ad43637cebf8467cf596d3e7b5f5d371789e9", + "sha256": "0qiva3sfxy0ilf062yd5kyirmimlc5nnl6954ijmf7r31z57n64z" + } + }, + { + "ename": "flycheck-ocaml", + "commit": "8ce9283eb1285953a2578eb7c4d280b4d98c801f", + "sha256": "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7", + "fetcher": "github", + "repo": "flycheck/flycheck-ocaml", + "unstable": { + "version": [ + 20170730, + 2153 + ], + "deps": [ + "flycheck", + "let-alist", + "merlin" + ], + "commit": "8707a7bf545a8639a6a5c600a98d9a2ea1487dc9", + "sha256": "13vzxkjq6v1f1i9zgxgjbwpiba04k9frkcl2wx6a9h3vgd7jyay0" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flycheck", + "let-alist", + "merlin" + ], + "commit": "9b4cd83ad2a87cc94b5d4e1ac26ac235475f1e6c", + "sha256": "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l" + } + }, + { + "ename": "flycheck-package", + "commit": "d17ec69c9f192625e74dfadf03b11d0d7dc575e7", + "sha256": "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d", + "fetcher": "github", + "repo": "purcell/flycheck-package", + "unstable": { + "version": [ + 20161111, + 2251 + ], + "deps": [ + "flycheck", + "package-lint" + ], + "commit": "6d99248b45eea1e5236062f38e524230efdb1a84", + "sha256": "00wyi2adiv9cb3x8bid2fhg3cjqlkc7z70i18vldbpmrpppjg4x5" + }, + "stable": { + "version": [ + 0, + 12 + ], + "deps": [ + "flycheck", + "package-lint" + ], + "commit": "afe8a49343d90d08ee72ac6f993d424dcc39cc38", + "sha256": "19pz8h01yacfqsyh5940pam6vigvavsqg6qd84994d7mmzl534qa" + } + }, + { + "ename": "flycheck-pact", + "commit": "0ffc77b2ddcd4f9c27a2306459cf2fcde7880e3e", + "sha256": "1nxmh6p2id4cxzs7jxdrk88g8qmvk33nbzmrqhm7962iqizlvnrw", + "fetcher": "github", + "repo": "kadena-io/flycheck-pact", + "unstable": { + "version": [ + 20180920, + 2052 + ], + "deps": [ + "flycheck", + "pact-mode" + ], + "commit": "0e10045064ef89ec8b6f5a473073d47b976a2ca3", + "sha256": "072jc0vrjg531ydk5bjrjpmbvdk81yw75jqjnvb7alkib6jn5f9r" + } + }, + { + "ename": "flycheck-perl6", + "commit": "2f6ecdb2ce6bc74a27dca01ab4942778e986ac8f", + "sha256": "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4", + "fetcher": "github", + "repo": "hinrik/flycheck-perl6", + "unstable": { + "version": [ + 20180509, + 2201 + ], + "deps": [ + "flycheck" + ], + "commit": "b804702305d7a6e26f762ff98cfdeec2e9dd4cb7", + "sha256": "0gys38rlx9lx35bia6nj7kfhz1v5xfrirgf8adwk7b2hfjazrsib" + } + }, + { + "ename": "flycheck-phpstan", + "commit": "5a2b6cc39957e6d7185bd2bdfa3755e5b1f474a6", + "sha256": "1dr0h6cnwxdjmhlackv4gpsljwzs27gk41p8q99r0m44dada9gaf", + "fetcher": "github", + "repo": "emacs-php/phpstan.el", + "unstable": { + "version": [ + 20190626, + 1902 + ], + "deps": [ + "flycheck", + "phpstan" + ], + "commit": "e8d33c75f6ab466ac15406fac5f2db6666d79deb", + "sha256": "1n6f4ibjdzrgll5zvikxc5gcfbpypq9nc2dhfxv011kllj22hpyc" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "flycheck", + "phpstan" + ], + "commit": "525792fc4a9ecb5dc577a7c416e298e0c45c6183", + "sha256": "02cgcqkgwl0rbxhndcyjd8fj57g84n8x4n9rkh671rg3r7p7c71j" + } + }, + { + "ename": "flycheck-pkg-config", + "commit": "5b2e88f2f126c9ff8b4261d6adb4c0d8d3049f33", + "sha256": "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6", + "fetcher": "github", + "repo": "Wilfred/flycheck-pkg-config", + "unstable": { + "version": [ + 20180430, + 2243 + ], + "deps": [ + "dash", + "flycheck", + "s" + ], + "commit": "e72e4c1b8153611ed82695673af84096f4d52795", + "sha256": "07zyrbib9qzy4kj3p7kljcfi53qhb28nf0sjhhkqzdj09iv2k9wf" + } + }, + { + "ename": "flycheck-plantuml", + "commit": "65f050860a0efda8cf472c2945b79a0a57651556", + "sha256": "01l22isiym635471628b951n025ls3lm6gfhfp6f8n8w7v1sb986", + "fetcher": "github", + "repo": "alexmurray/flycheck-plantuml", + "unstable": { + "version": [ + 20171018, + 111 + ], + "deps": [ + "flycheck", + "plantuml-mode" + ], + "commit": "183be89e1dbba0b38237dd198dff600e0790309d", + "sha256": "1fbdbpwrlkvbgv693ndr3zamkf3gp28v94jg911fsav8bk08f6pq" + } + }, + { + "ename": "flycheck-pony", + "commit": "0ef333f9ea8ec691b65e7fbd286fb7f1ddbe5381", + "sha256": "0y5nwfjyb3cvyq7a22r5cwfasfnzalsqvbv61bvdirdamn290nc3", + "fetcher": "github", + "repo": "ponylang/flycheck-pony", + "unstable": { + "version": [ + 20190227, + 235 + ], + "deps": [ + "flycheck" + ], + "commit": "43421fb43ab4fec759061a11e9d9166bb7da013d", + "sha256": "03byayxvhrkm88s7157cfzi91ziggs872yis9ys04ndk1pdf940f" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "flycheck" + ], + "commit": "9356cbcd404eaf381ab0c4b0f9c47232f723fa7e", + "sha256": "1rzz3cl0pxn3hhrkxcdiy17wl4dzbn8kxm3hq90zmhag1gbfy4zz" + } + }, + { + "ename": "flycheck-popup-tip", + "commit": "9b2269ee9532bb092756ae0c0693cb44b73820e8", + "sha256": "1j8pgljnxcbfh08qpbr9jkw56l7d6k8lmdcsjbi6jd7jmyqbqvnx", + "fetcher": "github", + "repo": "flycheck/flycheck-popup-tip", + "unstable": { + "version": [ + 20170812, + 2351 + ], + "deps": [ + "flycheck", + "popup" + ], + "commit": "ef86aad907f27ca076859d8d9416f4f7727619c6", + "sha256": "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6" + }, + "stable": { + "version": [ + 0, + 12, + 2 + ], + "deps": [ + "flycheck", + "popup" + ], + "commit": "ef86aad907f27ca076859d8d9416f4f7727619c6", + "sha256": "1bi6f9nm4bylsbjv4qnkar35s6xzdf2cc2cxi3g691p9527apdz6" + } + }, + { + "ename": "flycheck-pos-tip", + "commit": "698843f75e17b9e6160487c0153f9d6b4af288f6", + "sha256": "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9", + "fetcher": "github", + "repo": "flycheck/flycheck-pos-tip", + "unstable": { + "version": [ + 20180610, + 1615 + ], + "deps": [ + "flycheck", + "pos-tip" + ], + "commit": "909113977d37739387c7f099d74a724cfe6efcec", + "sha256": "0rfbhvl8n656a9d58bjyzki9r3si3ypylbyjn67rnla4jzzi22v8" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flycheck", + "pos-tip" + ], + "commit": "3f1d5297fdff44a14ee624160eefdc678e2bd0bd", + "sha256": "0qxx3xdgk5l793yg5ffbi5qhrxrf6akwdz93n2vibpkdjkvzyh2y" + } + }, + { + "ename": "flycheck-posframe", + "commit": "124f2a7833e3386a0bf57c8111d782ae7a7ee02e", + "sha256": "02ym2isn761w2nsfxiqjh0jk4md9wy3hk9na2aw7pyycm5cgmfwp", + "fetcher": "github", + "repo": "alexmurray/flycheck-posframe", + "unstable": { + "version": [ + 20190712, + 515 + ], + "deps": [ + "flycheck", + "posframe" + ], + "commit": "13f8c7c7b3b51c9e7e518ae47500755642315a0e", + "sha256": "0q66shznczxvbzhq4n88lyl9lsw5dlqxfbl5k4pf7li23q8qsn9v" + } + }, + { + "ename": "flycheck-prospector", + "commit": "45475a408ff287f4f9d2a8bc729b995635579c84", + "sha256": "1z028qi40pk7jh0m8w332kr5qi6k6sw1kbymqdxxfakh1976fww9", + "fetcher": "github", + "repo": "chocoelho/flycheck-prospector", + "unstable": { + "version": [ + 20180524, + 450 + ], + "deps": [ + "flycheck" + ], + "commit": "92f2680573290ba4a69a2d6e140f44680efce6a8", + "sha256": "00jlw18y68yq0fyvfzhvw89a4nmv1ah4c8h4d6g79rl5djnb48hk" + } + }, + { + "ename": "flycheck-pycheckers", + "commit": "af36dca316b318d25d65c9e842f15f736e19ea63", + "sha256": "18ski3bp8x33589pc273i5ia3hffvlb4czrd97wkfgr4k59ww6yq", + "fetcher": "github", + "repo": "msherry/flycheck-pycheckers", + "unstable": { + "version": [ + 20190715, + 1807 + ], + "deps": [ + "flycheck" + ], + "commit": "680ed9bc1bfb6dc043294b705f5b6d87ca5a1700", + "sha256": "1d2caskc87kdclj6gsymnf8bxhyn4n9r9816z76hx88pn16xxqh5" + }, + "stable": { + "version": [ + 0, + 13 + ], + "deps": [ + "flycheck" + ], + "commit": "680ed9bc1bfb6dc043294b705f5b6d87ca5a1700", + "sha256": "1d2caskc87kdclj6gsymnf8bxhyn4n9r9816z76hx88pn16xxqh5" + } + }, + { + "ename": "flycheck-pyflakes", + "commit": "05e6f3041151006e44f91e5bcbaa7be3750fb403", + "sha256": "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1", + "fetcher": "github", + "repo": "Wilfred/flycheck-pyflakes", + "unstable": { + "version": [ + 20170330, + 2311 + ], + "deps": [ + "flycheck" + ], + "commit": "61b045939e3743b2162b7e4e73249c66fc2b8f65", + "sha256": "03p0666vpprp6ijkvx9ypaw58bdq42gh533270plv2k5l8r22cl1" + } + }, + { + "ename": "flycheck-pyre", + "commit": "aca6199ebfbf93f844c8f7a3db785dec079ef8af", + "sha256": "0h7ccxw9ymlmr2vq3p61cbfxfcjs8pzm73654s13c18rbl6dzfxv", + "fetcher": "github", + "repo": "linnik/flycheck-pyre", + "unstable": { + "version": [ + 20190215, + 1222 + ], + "deps": [ + "cl-lib", + "flycheck" + ], + "commit": "0560122caae207d99d8af1ac2b4e5d6f6a1ce444", + "sha256": "0f58127197q6yfylz53nigyn7v91pcsdd91ywfgq5lrl0f5fvmdy" + } + }, + { + "ename": "flycheck-rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "00v6shfs7piqapmyqyi0fk3182rcfa3p8wr2cm5vqlrana13kbw4", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20180619, + 824 + ], + "deps": [ + "flycheck", + "rtags" + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "deps": [ + "flycheck", + "rtags" + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "flycheck-rust", + "commit": "68d8cdf3d225b13ebbbe5ce81a01366f33266aed", + "sha256": "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w", + "fetcher": "github", + "repo": "flycheck/flycheck-rust", + "unstable": { + "version": [ + 20190319, + 1546 + ], + "deps": [ + "dash", + "flycheck", + "let-alist", + "seq" + ], + "commit": "a139cd53c5062697e9ed94ad80b803c37d999600", + "sha256": "1fh6j5w2387nh2fwwjphkhq17cgj5m2q5k0fhidvgc2w65lzbr1r" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "dash", + "flycheck", + "let-alist", + "seq" + ], + "commit": "a139cd53c5062697e9ed94ad80b803c37d999600", + "sha256": "1fh6j5w2387nh2fwwjphkhq17cgj5m2q5k0fhidvgc2w65lzbr1r" + } + }, + { + "ename": "flycheck-soar", + "commit": "15cae578c5ba5152be0726f046b5f2dc4719a387", + "sha256": "14xpq3pdfwacmhl9x8fdzcsanpf6zljdzh6gwclw724k720acbdl", + "fetcher": "github", + "repo": "tszg/flycheck-soar", + "unstable": { + "version": [ + 20181106, + 852 + ], + "deps": [ + "flycheck" + ], + "commit": "d2f03a0af9b625a645f3194dc24cfeee94d92760", + "sha256": "02ll2nw2x45nfmxdj1ps62jr663spy01vy8gfg1qh2rl1pjviwqw" + } + }, + { + "ename": "flycheck-stack", + "commit": "b77f55989d11d1efacbad0fd3876dd27006f2679", + "sha256": "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf", + "fetcher": "github", + "repo": "chrisdone/flycheck-stack", + "unstable": { + "version": [ + 20160520, + 944 + ], + "deps": [ + "flycheck", + "haskell-mode" + ], + "commit": "f04235e00998000ee2c305f5a3ee72bb5dbbc926", + "sha256": "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr" + } + }, + { + "ename": "flycheck-status-emoji", + "commit": "5abd6aaa8d2bf55ae75cd217820763531f91958b", + "sha256": "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p", + "fetcher": "github", + "repo": "liblit/flycheck-status-emoji", + "unstable": { + "version": [ + 20180330, + 2325 + ], + "deps": [ + "cl-lib", + "flycheck", + "let-alist" + ], + "commit": "4bd113ab42dec9544b66e0a27ed9008ce8148433", + "sha256": "0ldy9lhh6mirjz02pnrf7z235jz55k4sdysbqxjhfidsszvp9v6w" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib", + "flycheck", + "let-alist" + ], + "commit": "4bd113ab42dec9544b66e0a27ed9008ce8148433", + "sha256": "0ldy9lhh6mirjz02pnrf7z235jz55k4sdysbqxjhfidsszvp9v6w" + } + }, + { + "ename": "flycheck-swift", + "commit": "fd99bea06079c4231363c37e3361bd9e5b1ba490", + "sha256": "1s6rn4wyz9la6bw228jfxx8dxjyk5hf8r3vbmq0k808p772zki0z", + "fetcher": "github", + "repo": "swift-emacs/flycheck-swift", + "unstable": { + "version": [ + 20170129, + 549 + ], + "deps": [ + "flycheck" + ], + "commit": "4c5ad401252400a78da395fd56a71e67ff8c2761", + "sha256": "094vpmpjq0skhkq634p3zgj3nmsiq1dl8k0z7hzafnaw2y157z1s" + }, + "stable": { + "version": [ + 2, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "822d1415eabfd464adc52063f9c44da1c87f0ff9", + "sha256": "0gf7cxrsrf62kamm4xy1fi4v264szm6qk607ifg4bi5dmdc10b0k" + } + }, + { + "ename": "flycheck-swift3", + "commit": "f1fb8c731c118327dc0bbb726e046fec46bcfb82", + "sha256": "05yfrn42svcvdkr8mx16ii8llhzn33lxdawksjqiqg671s6fgdpa", + "fetcher": "github", + "repo": "GyazSquare/flycheck-swift3", + "unstable": { + "version": [ + 20190421, + 110 + ], + "deps": [ + "flycheck" + ], + "commit": "811a765a0106bbdc8d6a721b22a2a97f3527df7c", + "sha256": "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "811a765a0106bbdc8d6a721b22a2a97f3527df7c", + "sha256": "0gsiisshqml1s56p9k8lw5fd3mlnk2i9j886ybc7ahkkpq8sfdwz" + } + }, + { + "ename": "flycheck-swiftlint", + "commit": "7e2a979726507e974a0a19dfc2ca6884157025be", + "sha256": "1nwxv4l3ml9hlc8qf8a8x1bnnvdj80sb8nfbkcfiqwak315wihr4", + "fetcher": "github", + "repo": "jojojames/flycheck-swiftlint", + "unstable": { + "version": [ + 20180830, + 340 + ], + "deps": [ + "flycheck" + ], + "commit": "8861ddbd9c1c2a951630d9ea29162ad0916580cb", + "sha256": "0v1n9q5kcncd9dyfl0xwr378in8law41ciazdfd38ks0xjjppqvh" + } + }, + { + "ename": "flycheck-tcl", + "commit": "fafc86df6c15348711f16302bb86c0ee08c08454", + "sha256": "0rmc7rk0n4mgk11jgza1dn1nkjyi7rqs79d3p0cj1081znyj56f3", + "fetcher": "github", + "repo": "nwidger/flycheck-tcl", + "unstable": { + "version": [ + 20180327, + 1259 + ], + "deps": [ + "flycheck" + ], + "commit": "7ca23f4673e178b9f5dcc8a82b86cf05b15d7236", + "sha256": "17mmj0yx7d7cwyq35ll1lw4j0yyha172375apvanrkpgpzjpnvrq" + } + }, + { + "ename": "flycheck-tip", + "commit": "024f1e588e94014734fa252ee7bdb00b4991ede9", + "sha256": "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656", + "fetcher": "github", + "repo": "yuutayamada/flycheck-tip", + "unstable": { + "version": [ + 20171020, + 1048 + ], + "deps": [ + "flycheck", + "popup" + ], + "commit": "9b0072d92e6b4a52834bf5a34120a0f5e1c8c2fd", + "sha256": "1adcxz2chy0qcv5z79hhj05gdzk4l0jijy5iy9nd3sg8sclxf6nq" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "flycheck", + "popup" + ], + "commit": "0bfddf52ae4ec48d970324f8336a5d62986bbc9e", + "sha256": "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s" + } + }, + { + "ename": "flycheck-title", + "commit": "2996b70645cd6fd093e3b31b9586ce5acb036cf6", + "sha256": "1cxid9qmzy8pl8qkvr6kgvfqm05pjw8cxpz66x619hbkw2vr7sza", + "fetcher": "github", + "repo": "Wilfred/flycheck-title", + "unstable": { + "version": [ + 20170216, + 2346 + ], + "deps": [ + "flycheck" + ], + "commit": "6faea67be8661faf8152217869d16e993cc2bc49", + "sha256": "08b2cq5bzmq9aa8b8glx5js2nhfpgdsd0r2sgvi0ij937yz8lf37" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "2b7a11c39420e517a07d0c95126455c1617f2c61", + "sha256": "07p3bwf4mvsdxvqwl9zd35rm6ax6ywqiy8gsh1ag3ygqbmd94cwy" + } + }, + { + "ename": "flycheck-vale", + "commit": "7693eeb536e601589b49f96d0e2734cd08fad4f2", + "sha256": "1ny30q81hq62s178rj3jjwsf9f3988dd6pl82r0vq53z3asnsxyd", + "fetcher": "github", + "repo": "abingham/flycheck-vale", + "unstable": { + "version": [ + 20190609, + 1533 + ], + "deps": [ + "flycheck", + "let-alist" + ], + "commit": "f08249535348d046d0974b9c20fe1b7dd3cd2660", + "sha256": "0xjaxckl5rajlxq9a4c9n8l4605n2xkkyd2sdj38kd9w9a428wvz" + } + }, + { + "ename": "flycheck-vdm", + "commit": "f246b9dcf7915a845b9e2cd44cc1a0833b412c8f", + "sha256": "15ng1l8gfp8iz50yb5d39dy57763gd2x8j6z6rz0byiykgxhl9zg", + "fetcher": "github", + "repo": "peterwvj/vdm-mode", + "unstable": { + "version": [ + 20190304, + 839 + ], + "deps": [ + "flycheck", + "vdm-mode" + ], + "commit": "89e7db6ee1a89b8c1f7ce36ce6800c32b5c4ba2d", + "sha256": "1vfqkfw39yg7379s6b28n8nyswv1jq7caljfbnyrndsag6z4j50k" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "flycheck", + "vdm-mode" + ], + "commit": "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa", + "sha256": "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5" + } + }, + { + "ename": "flycheck-xcode", + "commit": "5fc66203fdd1721bf1a6f8dcec51694c57d2e690", + "sha256": "0n86hn6rf0mrx1385pwxgkx28xrbnksarlzb07h9d63s0yb5shaa", + "fetcher": "github", + "repo": "jojojames/flycheck-xcode", + "unstable": { + "version": [ + 20180122, + 651 + ], + "deps": [ + "flycheck" + ], + "commit": "b76f872c8985801951a095b8b3c1572b94189f9e", + "sha256": "1mihq4w8vbcrazx81svx81dnb84ba5h93jxyvaxly5nxxjw1i5bj" + } + }, + { + "ename": "flycheck-yamllint", + "commit": "932ee0a1f13a52d53102b90911da79145208cbb5", + "sha256": "1q2sy0hsbnwdlwq99wk8n5gi9fd8bs4jvi859np8bylbhhb3kj8m", + "fetcher": "github", + "repo": "krzysztof-magosa/flycheck-yamllint", + "unstable": { + "version": [ + 20170325, + 1735 + ], + "deps": [ + "flycheck" + ], + "commit": "c2b273d84f15bd03464d6722391e595d7c179a5c", + "sha256": "0snj6kkshk8bivwsnhp7kiyhzcn7x6952vw098wgzwqw2hgdkq97" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "flycheck" + ], + "commit": "aa211b1243168a4f752888c0014c5b9d2da178b1", + "sha256": "1dg2lymb53vp16isdc6k0gq1a43h7vjpksbacskyd4nwmsxaf2bm" + } + }, + { + "ename": "flycheck-yang", + "commit": "e58b4f4294d11424918b399898c0044f5b76ab14", + "sha256": "0agfmirjwlz13aq1jh94agav0y1rxkyhj7mngdgys7mwjxy0ac9h", + "fetcher": "github", + "repo": "andaru/flycheck-yang", + "unstable": { + "version": [ + 20180312, + 1831 + ], + "deps": [ + "flycheck", + "yang-mode" + ], + "commit": "47881fc42ef0163c47064b72b5d6dbef4f83d778", + "sha256": "0bkbl1pas44bl6s3xjdb5zjbd6bmfjk39md5ds1ix4wchnkjm3iy" + } + }, + { + "ename": "flycheck-ycmd", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "114k5y3jy470g5zzhxy03036gcayc08n6g61cidlr2zlyq80glyr", + "fetcher": "github", + "repo": "abingham/emacs-ycmd", + "unstable": { + "version": [ + 20181016, + 618 + ], + "deps": [ + "dash", + "flycheck", + "let-alist", + "ycmd" + ], + "commit": "6f4f7384b82203cccf208e3ec09252eb079439f9", + "sha256": "1bl86x8nqw4jqzb8pfm6hm316hmk1bx8v3qz7wq9z92hb67ck2kn" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "dash", + "flycheck", + "let-alist", + "ycmd" + ], + "commit": "d042a673b4d717c3ca9d641f120bfe16c994c740", + "sha256": "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0" + } + }, + { + "ename": "flymake-coffee", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d", + "fetcher": "github", + "repo": "purcell/flymake-coffee", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "dee295acf30820ed15fe0de17137d50bc27fc80c", + "sha256": "0706jbi3jcmffxmcpvh8w3007q8sh48kgrcjip5c9hhfqpagayld" + }, + "stable": { + "version": [ + 0, + 12 + ], + "deps": [ + "flymake-easy" + ], + "commit": "d4ef325255ea36d1dd622f29284fe72c3fc9abc0", + "sha256": "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc" + } + }, + { + "ename": "flymake-cppcheck", + "commit": "2a83d56c6e150de5d4fdbd89f271f18e5304afd8", + "sha256": "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d", + "fetcher": "github", + "repo": "senda-akiha/flymake-cppcheck", + "unstable": { + "version": [ + 20140415, + 1257 + ], + "deps": [ + "flymake-easy" + ], + "commit": "7eac8c7b9c74ebb5e600686f1f3891767dc87bb2", + "sha256": "1xwpznllgz47f6h7mzwy601179sxdj6i8qvnfa6fn4cx4dz5z3iv" + } + }, + { + "ename": "flymake-css", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5", + "fetcher": "github", + "repo": "purcell/flymake-css", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "de090163ba289910ceeb61b13368ce42d0f2dfd8", + "sha256": "18rqzah8p7mqwkddaav1d4r146amvn8jppazvsvc5vs01syj83m9" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flymake-easy" + ], + "commit": "3e56d47d3c53e39741aa4f702bb9fb827cce22ed", + "sha256": "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa" + } + }, + { + "ename": "flymake-cursor", + "commit": "a02597edee67c84bef259d7fc5c5b61bd39a5b86", + "sha256": "0v5abg3h9kmybr0cyr7hqy4rn88h84snzxbsmqcbjw24s10v9p0s", + "fetcher": "github", + "repo": "flymake/emacs-flymake-cursor", + "unstable": { + "version": [ + 20120322, + 1757 + ], + "deps": [ + "flymake" + ], + "commit": "ecc539082c3fc9e91bba33d72c26989217411593", + "sha256": "0cdf5m3rfwsim505qjyyml0r5zzqx7jrlc8ayfvix70f3bmxnibs" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "flymake" + ], + "commit": "5cac5045398b1436ceb143d48961b50d38ae1396", + "sha256": "0xaq8zfd90kqqwg8ik081jblrdyj6p3fh2xpf6a4sdj8826ry93v" + } + }, + { + "ename": "flymake-diagnostic-at-point", + "commit": "b7ae169ca3b59d3b876d52148dac573b7f083ac3", + "sha256": "0cdxb9w5sq6z6wramj1bss5vwqzxkmdyzb1di39rghyh243cdrzx", + "fetcher": "github", + "repo": "meqif/flymake-diagnostic-at-point", + "unstable": { + "version": [ + 20180815, + 1004 + ], + "deps": [ + "popup" + ], + "commit": "379616b1c6f5ebeaf08fbe54ae765008a78b3be7", + "sha256": "1wbzrxxz5z1xg2lwmqgglvixxf1xm3gl6mdyj9idsbym05azm3hg" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "deps": [ + "popup" + ], + "commit": "379616b1c6f5ebeaf08fbe54ae765008a78b3be7", + "sha256": "1wbzrxxz5z1xg2lwmqgglvixxf1xm3gl6mdyj9idsbym05azm3hg" + } + }, + { + "ename": "flymake-easy", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0y7nm2p5x1f0nqfj73zr6xzbpf4wrzx8sn8154yx0qm0qh3id39v", + "fetcher": "github", + "repo": "purcell/flymake-easy", + "unstable": { + "version": [ + 20140818, + 755 + ], + "commit": "de41ea49503f71f997e5c359a2ad08df696c0147", + "sha256": "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc" + }, + "stable": { + "version": [ + 0, + 10 + ], + "commit": "2a24f260cdc3b9c8f9263b653a475d90efa1d392", + "sha256": "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c" + } + }, + { + "ename": "flymake-elixir", + "commit": "05dae578f0dd6b5185f666431b3f36aad3aeffa1", + "sha256": "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792", + "fetcher": "github", + "repo": "syl20bnr/flymake-elixir", + "unstable": { + "version": [ + 20130810, + 1417 + ], + "commit": "3810566cffe35d04cc3f01e27fe397d68d52f802", + "sha256": "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn" + } + }, + { + "ename": "flymake-eslint", + "commit": "1b607c3b859f4564e316532a256a299c73e5f6f0", + "sha256": "0avirxxgjk3k8hqpnhay83ij7s3xr4ha4wz5lji1zyx6f6im6gyb", + "fetcher": "github", + "repo": "orzechowskid/flymake-eslint", + "unstable": { + "version": [ + 20190720, + 1501 + ], + "commit": "5624f61c782c91710014620ebbaadab44a7e2b1f", + "sha256": "113hbdsgp950safyry3a2bpml3h2jjhypmfyjjyj3fibiigx9fmi" + }, + "stable": { + "version": [ + 1, + 3, + 4 + ], + "commit": "d4be92ea779ea333b599fd125817f943a676a63a", + "sha256": "1x0ipsg0gd5lflx7kyyaz7zv6xnjzmhh1k32f01qr69zarf31nw0" + } + }, + { + "ename": "flymake-gjshint", + "commit": "b4673825b15519e9eb2204ade5cc045751771c52", + "sha256": "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44", + "fetcher": "github", + "repo": "yasuyk/flymake-gjshint-el", + "unstable": { + "version": [ + 20130327, + 1232 + ], + "commit": "dc957c14cb060819585de8aedb330e24efa4b784", + "sha256": "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "commit": "71495ee5303de18293decd57ab9f9abdbaabfa05", + "sha256": "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd" + } + }, + { + "ename": "flymake-go", + "commit": "b42b8b34388803439c249f16fdf14257ef182ed6", + "sha256": "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1", + "fetcher": "github", + "repo": "robert-zaremba/flymake-go", + "unstable": { + "version": [ + 20150714, + 733 + ], + "commit": "ae83761aa908c1a50ff34af04f00dcc46bca2ce9", + "sha256": "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q" + } + }, + { + "ename": "flymake-go-staticcheck", + "commit": "5c358f178a2debf621e11050334d5def87439230", + "sha256": "1rm63fgsn5iss1nbc33wc19g3lzzvrm97wgq9hgxvwq2j8m2y87i", + "fetcher": "github", + "repo": "s-kostyaev/flymake-go-staticcheck", + "unstable": { + "version": [ + 20190708, + 1325 + ], + "commit": "130079fcd29c3e2a72f8325f3041042bcc6286f1", + "sha256": "1wxsk6vy9hm8gi5cvhmxmqv9415q8k2yp8636s4fb1xcp1zalysk" + } + }, + { + "ename": "flymake-google-cpplint", + "commit": "01f8e5c2b63e80f0411860fde38bf694df3bfc8f", + "sha256": "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3", + "fetcher": "github", + "repo": "senda-akiha/flymake-google-cpplint", + "unstable": { + "version": [ + 20140205, + 1325 + ], + "deps": [ + "flymake-easy" + ], + "commit": "426e56ae1278d7a078c368e9d495003825ada0bd", + "sha256": "1gckz68050pj9pg7yn3wwn13x2nrv6y4ggswkgcyijxi7x0sqana" + } + }, + { + "ename": "flymake-gradle", + "commit": "7cccc8537324e0faf7fd35325e3ccd3b2e05771a", + "sha256": "00wpymzw2j2zx37nq8qf77pk04r0hxlmlwykcj6yzq9bfgi75wnf", + "fetcher": "github", + "repo": "jojojames/flymake-gradle", + "unstable": { + "version": [ + 20190315, + 233 + ], + "commit": "dbedd29b78d4828ef57d4de20867be5df3eaab99", + "sha256": "0g6h09lz68b4dvqv5sksr7gkab0599fbm07xnc2mk01lzbas43b0" + } + }, + { + "ename": "flymake-haml", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1", + "fetcher": "github", + "repo": "purcell/flymake-haml", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "22a81e8484734552d461e7ae7305664dc244447e", + "sha256": "0pgp2gl3wdwrzcik5b5csn4qp8iv6pc51brx8p7jrwn7bz4lkb82" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "flymake-easy" + ], + "commit": "343449920866238db343d61343bc845cc8bc5e1b", + "sha256": "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni" + } + }, + { + "ename": "flymake-haskell-multi", + "commit": "e879eca5eb11b2ae77ee2cb8d8150d85e9e93ebd", + "sha256": "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij", + "fetcher": "github", + "repo": "purcell/flymake-haskell-multi", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "b564a94312259885b1380272eb867bf52a164020", + "sha256": "1h21hy5fjwa5qxl31rq3jjp3wwkipdwaliq0ci184rw48kw51xjh" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "flymake-easy" + ], + "commit": "d2c9aeffd33440d360c1ea0c5aef6d1f171599f9", + "sha256": "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz" + } + }, + { + "ename": "flymake-hlint", + "commit": "17820f32d46e845cc44b237d0bfd5c2d898721de", + "sha256": "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x", + "fetcher": "github", + "repo": "purcell/flymake-hlint", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "f910736b26784efc9a2fa29503f45c1f1dd0aa38", + "sha256": "157f2l6hllwl12h8f502rq2kl33s202k9bcyfy2cmnn6vhky1b8s" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "flymake-easy" + ], + "commit": "d540e250a80a09da3036c16bf86f9deb6d738c9c", + "sha256": "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31" + } + }, + { + "ename": "flymake-jshint", + "commit": "144511ce3378b468751b1ee627b77a2d22fe8dfc", + "sha256": "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j", + "fetcher": "github", + "repo": "Wilfred/flymake-jshint.el", + "unstable": { + "version": [ + 20140319, + 2200 + ], + "deps": [ + "flymake-easy" + ], + "commit": "79dd554c227883c487db38ac111306c8d5382c95", + "sha256": "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a" + } + }, + { + "ename": "flymake-jslint", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm", + "fetcher": "github", + "repo": "purcell/flymake-jslint", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "8edb82be605542b0ef62d38d818adcdde335eecb", + "sha256": "0i6bqpbibsbqhpqfy9zl0awiqkmddi3q8xlrslcjd429f0g5f1ad" + }, + "stable": { + "version": [ + 0, + 23 + ], + "commit": "30693f75059bab53a9d2eb676c68751f4d8b091c", + "sha256": "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri" + } + }, + { + "ename": "flymake-json", + "commit": "acb0a4d29159aa6d74f754911f63152dac3425bd", + "sha256": "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d", + "fetcher": "github", + "repo": "purcell/flymake-json", + "unstable": { + "version": [ + 20180511, + 911 + ], + "deps": [ + "flymake-easy" + ], + "commit": "ae58795f948402e987cda4c15f10354f8ec2d0fd", + "sha256": "1hr35xxj6w34h7xs13n6sxs69j3z3i0r1qim3hgyiym797xjsa0p" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "flymake-easy" + ], + "commit": "ad8e482db1ad29e23bdd9d089b9bc3615649ce65", + "sha256": "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv" + } + }, + { + "ename": "flymake-ktlint", + "commit": "7b2e630e5e16044fb8ffe251f4fa58fb8f3d6bb9", + "sha256": "07v90pkhmrz59m6hf1lzxq4h3kk4qblihw4qgz5phbj4l5pahivd", + "fetcher": "github", + "repo": "jojojames/flymake-ktlint", + "unstable": { + "version": [ + 20180831, + 346 + ], + "commit": "56aab6f2d22061999050783dbc3166cdb456d0bb", + "sha256": "1nri5rq28plaq69a5k5kx65rzk8yyppyqpjhjicr7dqaa00ibnwy" + } + }, + { + "ename": "flymake-less", + "commit": "6d4eae8b7b7d81ebf4d85f38fc3a17b4bc918318", + "sha256": "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0", + "fetcher": "github", + "repo": "purcell/flymake-less", + "unstable": { + "version": [ + 20151111, + 738 + ], + "deps": [ + "flymake-easy", + "less-css-mode" + ], + "commit": "32d3c28a9a5c52b82d1741ff9d715013b6498421", + "sha256": "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "less-css-mode" + ], + "commit": "8cbb5e41c8f4b988cee3ef4449cfa9aea3540893", + "sha256": "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z" + } + }, + { + "ename": "flymake-lua", + "commit": "63889df90a8cd4a39871cc43ccc559eff7b8dd5f", + "sha256": "05q6bifr1ywirk6sdn0pr812nlrzsi79bpbgn6ay4jyzmhhfi9z0", + "fetcher": "github", + "repo": "sroccaserra/flymake-lua", + "unstable": { + "version": [ + 20170129, + 154 + ], + "commit": "84589f20066921a5b79cf3a1f914a223a2552d2a", + "sha256": "1f4nigl65g1g5w15ddf33ypk2b07xph964pkdq1bw81451vmvzhn" + } + }, + { + "ename": "flymake-perlcritic", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1i0bc81cby2nsala2mhghzv7clhbf1gpp54vdxiq2wdanqy25vmk", + "fetcher": "github", + "repo": "flymake/emacs-flymake-perlcritic", + "unstable": { + "version": [ + 20120328, + 814 + ], + "deps": [ + "flymake" + ], + "commit": "edfaa86500ddfa8a6a6f51f5581a81a821277df6", + "sha256": "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "deps": [ + "flymake" + ], + "commit": "0692d6ad5495f6e5438bde0a10345829b8e1def8", + "sha256": "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq" + } + }, + { + "ename": "flymake-php", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk", + "fetcher": "github", + "repo": "purcell/flymake-php", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "c045d01e002ba5e09b05f40e25bf5068d02126bc", + "sha256": "03fk8kzlwbs9k91ra91r7djxlpv5mhbha33dnyz50sqwa52cg8ck" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "flymake-easy" + ], + "commit": "91f867e209011af31a2ca2d8f6874b994403bcb2", + "sha256": "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh" + } + }, + { + "ename": "flymake-phpcs", + "commit": "6e4d444198f593cfb03c7ca84f3e90db13ef5a01", + "sha256": "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9", + "fetcher": "github", + "repo": "senda-akiha/flymake-phpcs", + "unstable": { + "version": [ + 20140713, + 631 + ], + "deps": [ + "flymake-easy" + ], + "commit": "bba25dbda15955b609ceae0893cf3be74ec67230", + "sha256": "1z6m3bggd3gmxvx92j16jmqm5h9jjxnmsd7adyf12ziy5n5rqcbc" + } + }, + { + "ename": "flymake-puppet", + "commit": "302dbe34e7949da9c65e9c7bf2ab924db91b968f", + "sha256": "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv", + "fetcher": "github", + "repo": "benprew/flymake-puppet", + "unstable": { + "version": [ + 20170801, + 554 + ], + "deps": [ + "flymake-easy" + ], + "commit": "8a772395f4ccc59d883712ab53a92a17c1d9a429", + "sha256": "00w87qa7r8rigmpv58vpjwpn9x13sv7db5m6z4cqh76qkgkghgqi" + } + }, + { + "ename": "flymake-python-pyflakes", + "commit": "49091c0eca4158b80269b6ff5f7f3fc8e981420b", + "sha256": "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497", + "fetcher": "github", + "repo": "purcell/flymake-python-pyflakes", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "1d65c26bf65a5dcbd29fcd967e2feb90e1e7a33d", + "sha256": "0hsvw6rxg3k1ymrav0bf5q3siqr9v2jp4c4h1f98szrj2lp200fm" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "flymake-easy" + ], + "commit": "78806a25b0f01f03df4210a79a6eaeec59511d7a", + "sha256": "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh" + } + }, + { + "ename": "flymake-racket", + "commit": "67f2b469ea8df6d0db6b9ece91f544c0e7dd3ab2", + "sha256": "173dyn8bxggyh0g97gg5f0si3905116i3k6s3islsblgrz00gjcn", + "fetcher": "github", + "repo": "jojojames/flymake-racket", + "unstable": { + "version": [ + 20180912, + 109 + ], + "commit": "d20fa60d66db3f7c2df0133814564ee5b36d2aba", + "sha256": "0fdrlzvznpqfyzy6v7rz4cj83fhdcpyhy37l7jjbb91cqqk2hjc2" + } + }, + { + "ename": "flymake-ruby", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr", + "fetcher": "github", + "repo": "purcell/flymake-ruby", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "6c320c6fb686c5223bf975cc35178ad6b195e073", + "sha256": "0hzyxhg6y1rknvgj2ycivwrlrw7fznw9jrin5n9z627mzpjpfcnk" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "flymake-easy" + ], + "commit": "e14e8e2abda223bd3920dbad0eefd5af5973ae6d", + "sha256": "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0" + } + }, + { + "ename": "flymake-rust", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32", + "fetcher": "github", + "repo": "jxs/flymake-rust", + "unstable": { + "version": [ + 20170729, + 2139 + ], + "deps": [ + "flymake-easy" + ], + "commit": "2f42d1f2dad73ec9de460eda6176e3ab25c446f0", + "sha256": "02fgkv9hxwrv8n5h6izb5jyjcpazlf86pjjj4zkv1ycpa6gyzzwn" + } + }, + { + "ename": "flymake-sass", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d", + "fetcher": "github", + "repo": "purcell/flymake-sass", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "2de28148e92deb93bff3d55fe14e7c67ac476056", + "sha256": "05v83l05knqv2inharmhjvzmjskjlany7dnwp5dz44bvy0jhnm39" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "flymake-easy" + ], + "commit": "1c7664818db539de7f3dab396c013528a3f5b8b4", + "sha256": "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8" + } + }, + { + "ename": "flymake-shell", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i", + "fetcher": "github", + "repo": "purcell/flymake-shell", + "unstable": { + "version": [ + 20170723, + 146 + ], + "deps": [ + "flymake-easy" + ], + "commit": "a16cf453056b9849cc7c912bb127fb0b08fc6dab", + "sha256": "1ki0zk5ijfkf4blavl62b55jnjzxw2b7blaxg51arpvvbflqmmlh" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "flymake-easy" + ], + "commit": "ec097bd77db5523a04ceb15a128e01689d36fb90", + "sha256": "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc" + } + }, + { + "ename": "flymake-shellcheck", + "commit": "8dccb106ff6c9cb4b14440be9026c3e427dddff2", + "sha256": "1gvm4sh1sga3gkkg0zi7ynvp9b09sx16cclj2qzawmgfv2c111vy", + "fetcher": "github", + "repo": "federicotdn/flymake-shellcheck", + "unstable": { + "version": [ + 20181214, + 24 + ], + "commit": "e22385a9e752e58b18d4c6371e6ff1602bb764f2", + "sha256": "0gfk2wsi72n4zkgjpqasdn83zrxlzm735q6c3gs1sfqd7h1jqnwq" + } + }, + { + "ename": "flymake-solidity", + "commit": "3b13f57b77f6648336a049a8dda37757d4dafd90", + "sha256": "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3", + "fetcher": "github", + "repo": "kootenpv/flymake-solidity", + "unstable": { + "version": [ + 20170805, + 644 + ], + "deps": [ + "flymake-easy" + ], + "commit": "48bfe9525f764d8a68cc0270905dbf45bfd00bb8", + "sha256": "0v8sf5m0mygqahjyadxgffdf7p59wb0qnghyxajhc69sbg58hnnd" + } + }, + { + "ename": "flymake-vala", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1fs4alyf3dckdf1pm6vgh4wjpl22wrlhfx9nv072l0dg48zgyw16", + "fetcher": "github", + "repo": "daniellawrence/flymake-vala", + "unstable": { + "version": [ + 20150326, + 531 + ], + "deps": [ + "flymake-easy" + ], + "commit": "c3674f461fc84fb0300cd3a562fb903a59782745", + "sha256": "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf" + } + }, + { + "ename": "flymake-vnu", + "commit": "0cfb4c70ebb75088ef6fb39efde91429802b4671", + "sha256": "05i6sfylg716cr0k0hyvkmag25qcqh51plljv6sw8250fwxwn0xn", + "fetcher": "github", + "repo": "theneosloth/flymake-vnu", + "unstable": { + "version": [ + 20181128, + 216 + ], + "commit": "7c4ab9d12611756ad5a80d866890b2f9b73fb611", + "sha256": "1jzdypfbvdbm9z6ankl35bzlpf32iymzlvxmdykddzwzbhkj1npf" + } + }, + { + "ename": "flymake-yaml", + "commit": "888bcbcb24866abd990abd5b467461a1e1fc13fa", + "sha256": "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7", + "fetcher": "github", + "repo": "yasuyk/flymake-yaml", + "unstable": { + "version": [ + 20130423, + 1548 + ], + "deps": [ + "flymake-easy" + ], + "commit": "24cb5b744a1796e554e6dbfc6eeb237d06a00b10", + "sha256": "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm" + } + }, + { + "ename": "flymd", + "commit": "07e4121f4cfaf4c33828f84b6b06f9cf2b64a0a2", + "sha256": "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk", + "fetcher": "github", + "repo": "mola-T/flymd", + "unstable": { + "version": [ + 20160617, + 1214 + ], + "deps": [ + "cl-lib" + ], + "commit": "84d5a68bcfed4a295952c33ffcd11e880978d9d7", + "sha256": "0j2mmr9f0d3zkhb92zc820iw4vkz958rm3ca7l9k3gx37cc4sn2l" + } + }, + { + "ename": "flyparens", + "commit": "8c4565ae5b84eb8733cb7fd28cf6a087fd1fedab", + "sha256": "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a", + "fetcher": "github", + "repo": "jiyoo/flyparens", + "unstable": { + "version": [ + 20140723, + 1846 + ], + "commit": "af9b8cfd647d0e5f97684d613dc2eea7cfc19398", + "sha256": "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb" + } + }, + { + "ename": "flyspell-correct", + "commit": "fa06fbe3bc40ae5e3f6d10dee93a9d49e9288ba5", + "sha256": "0d2205h234na9s942s83yvkq89l9w9jnl5yfrxkkdiq8pw0dvymd", + "fetcher": "github", + "repo": "d12frosted/flyspell-correct", + "unstable": { + "version": [ + 20190408, + 1010 + ], + "commit": "a0852074bab130a711ba6b4696a7cb8059dac8db", + "sha256": "088cnxz4gnm0ps5myns861cjdnskvbxj70p5bimwbb4cvlp3v322" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "a9b53c52ab350aead0851e140d813cfd7b1bd680", + "sha256": "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd" + } + }, + { + "ename": "flyspell-correct-helm", + "commit": "ef7b9302d8f804c77eb81fee7ed27f13cb1176f6", + "sha256": "18s2bzszy6x31avqg7j2lsll2cf4asb8njwhmx4mm215agack976", + "fetcher": "github", + "repo": "d12frosted/flyspell-correct", + "unstable": { + "version": [ + 20181205, + 1932 + ], + "deps": [ + "flyspell-correct", + "helm" + ], + "commit": "a0852074bab130a711ba6b4696a7cb8059dac8db", + "sha256": "088cnxz4gnm0ps5myns861cjdnskvbxj70p5bimwbb4cvlp3v322" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "flyspell-correct", + "helm" + ], + "commit": "a9b53c52ab350aead0851e140d813cfd7b1bd680", + "sha256": "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd" + } + }, + { + "ename": "flyspell-correct-ivy", + "commit": "ef7b9302d8f804c77eb81fee7ed27f13cb1176f6", + "sha256": "1n5iyab6bj761w6vxncyqvqzwh9k60pzq5f2n00ifrz74pqs537i", + "fetcher": "github", + "repo": "d12frosted/flyspell-correct", + "unstable": { + "version": [ + 20181205, + 1932 + ], + "deps": [ + "flyspell-correct", + "ivy" + ], + "commit": "a0852074bab130a711ba6b4696a7cb8059dac8db", + "sha256": "088cnxz4gnm0ps5myns861cjdnskvbxj70p5bimwbb4cvlp3v322" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "flyspell-correct", + "ivy" + ], + "commit": "a9b53c52ab350aead0851e140d813cfd7b1bd680", + "sha256": "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd" + } + }, + { + "ename": "flyspell-correct-popup", + "commit": "ef7b9302d8f804c77eb81fee7ed27f13cb1176f6", + "sha256": "1fr8ajwldcl58i8xm31dz1mjwbi9f4q8s58x5jrqhqha0x4p4h9l", + "fetcher": "github", + "repo": "d12frosted/flyspell-correct", + "unstable": { + "version": [ + 20181205, + 1932 + ], + "deps": [ + "flyspell-correct", + "popup" + ], + "commit": "a0852074bab130a711ba6b4696a7cb8059dac8db", + "sha256": "088cnxz4gnm0ps5myns861cjdnskvbxj70p5bimwbb4cvlp3v322" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "flyspell-correct", + "popup" + ], + "commit": "a9b53c52ab350aead0851e140d813cfd7b1bd680", + "sha256": "1r9hmz7sihhy7npv6nxp04sy57glzmfax5d67mwn96fdnc0yhlnd" + } + }, + { + "ename": "flyspell-lazy", + "commit": "a082c2dc0458e3007a947923f5b97e88217199e8", + "sha256": "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y", + "fetcher": "github", + "repo": "rolandwalker/flyspell-lazy", + "unstable": { + "version": [ + 20180224, + 2106 + ], + "commit": "3ebf68cc9eb10c972a2de8d7861cbabbbce69570", + "sha256": "1n67y90vm041mz172gjqypw3b5za5f18sic54h7wz4a9naynwyb6" + }, + "stable": { + "version": [ + 0, + 6, + 10 + ], + "commit": "31786fe04a4732d2f845e1c7e96fcb030182ef10", + "sha256": "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm" + } + }, + { + "ename": "flyspell-popup", + "commit": "186d00724137c055b521a5f5c54acf71c4b16c32", + "sha256": "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql", + "fetcher": "github", + "repo": "xuchunyang/flyspell-popup", + "unstable": { + "version": [ + 20170529, + 815 + ], + "deps": [ + "popup" + ], + "commit": "29311849bfd253b9b689bf331860b4c4d3bd4dde", + "sha256": "0x7jilwb0fgzsr7ma59sgd0d4122cl0hwzr28vi3z5s8wdab7nc4" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "popup" + ], + "commit": "29311849bfd253b9b689bf331860b4c4d3bd4dde", + "sha256": "0x7jilwb0fgzsr7ma59sgd0d4122cl0hwzr28vi3z5s8wdab7nc4" + } + }, + { + "ename": "fm-bookmarks", + "commit": "1ca020aff7f19cc150cd6968ae7c441372e240c2", + "sha256": "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj", + "fetcher": "github", + "repo": "kuanyui/fm-bookmarks.el", + "unstable": { + "version": [ + 20170104, + 1716 + ], + "deps": [ + "cl-lib" + ], + "commit": "11dacfd16a926bfecba96a94c6b13e162c7717f7", + "sha256": "0is4617ivga8qrw19y7fy883fgczzdxvrl15ja1dydzj2cbn5d97" + } + }, + { + "ename": "fn", + "commit": "6d2929604b6dd21d6cf425643927a9c216801dc1", + "sha256": "0cb98rxdb6sd0kws6bc4pa536kiyw3yk0hlfqcm3ps81hcgqjhhn", + "fetcher": "github", + "repo": "troyp/fn.el", + "unstable": { + "version": [ + 20170210, + 204 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional" + ], + "commit": "f685fd0c08ec3b1d1b9974b37e62edd78a000cb8", + "sha256": "1k8pwlpcvlwr4pavg85ja8hdc7rrbafqs1mhhqr5gbq8cp822sja" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional" + ], + "commit": "2842e3c6d1b5c96184fa638c37b25ce5b347a1a6", + "sha256": "0kxpy87f44gkfzrnhcrprca0irkpddpbw7wbrm4aidw0synpab91" + } + }, + { + "ename": "focus", + "commit": "4e8f1217224514f9b048b7101c89e3b1a305821e", + "sha256": "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8", + "fetcher": "github", + "repo": "larstvei/Focus", + "unstable": { + "version": [ + 20190318, + 242 + ], + "deps": [ + "cl-lib" + ], + "commit": "ab42b8779929beeb7878c7fb3d3ccd80d9327c7f", + "sha256": "079v1syid7h2vr2ya6hs6hl0pgj60qdsw60mqw4cj2zllmkrkwj4" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "75202c9445f52eab6fb82f00006f37cd20dae6b2", + "sha256": "1v9y3dp7sd4rsm31myp3l1jxpwjw3madajb6yz9rw0yhdirfwgbg" + } + }, + { + "ename": "focus-autosave-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd", + "fetcher": "github", + "repo": "Vifon/focus-autosave-mode.el", + "unstable": { + "version": [ + 20160519, + 2116 + ], + "commit": "2e0844fabb6f0dc9e0f31928e4785febf38b9e35", + "sha256": "08wibc6rzy5qj3anzd076ncjd8wwr4vpak7fdjv29aai1gkzsc9j" + } + }, + { + "ename": "foggy-night-theme", + "commit": "65b3f5959241e601fdf9469e407d153cebcbe24c", + "sha256": "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4", + "fetcher": "github", + "repo": "mswift42/foggy-night-theme", + "unstable": { + "version": [ + 20190123, + 1614 + ], + "commit": "14894e06ee5c6e14db36f2cb07387ee971c1736f", + "sha256": "1rjhb8gjlnw002y8sjn2d976qdsjgvp9hsrlca1h5wmmkfha9knp" + } + }, + { + "ename": "fold-dwim", + "commit": "62064e272a658d998b1ccf13dc3c2e3e454acade", + "sha256": "1k5186s69qahwbzvwq70af3bkcglls9a82c5jw5mdw3ic8k631sh", + "fetcher": "github", + "repo": "emacsattic/fold-dwim", + "unstable": { + "version": [ + 20140208, + 1637 + ], + "commit": "c46f4bb2ce91b4e307136320e72c28dd50b6cd8b", + "sha256": "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "4764b0246a722d37eb8ec9f204ffaccaad1755d0", + "sha256": "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726" + } + }, + { + "ename": "fold-dwim-org", + "commit": "97d22d9feaf521ce576b80d2933ecbc166c1dbe7", + "sha256": "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn", + "fetcher": "github", + "repo": "mattfidler/fold-dwim-org", + "unstable": { + "version": [ + 20131203, + 1351 + ], + "deps": [ + "fold-dwim" + ], + "commit": "c09bb2b46d65afbd1d0febc6fded7495be7a3037", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "fold-dwim" + ], + "commit": "c09bb2b46d65afbd1d0febc6fded7495be7a3037", + "sha256": "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw" + } + }, + { + "ename": "fold-this", + "commit": "9853fcb99bd8717c77fa2b3bafb6e85d0d5d491c", + "sha256": "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d", + "fetcher": "github", + "repo": "magnars/fold-this.el", + "unstable": { + "version": [ + 20190723, + 811 + ], + "commit": "74752dc6b6c0e73826b33198a552bb440b04f275", + "sha256": "01lv0ibkcimlyg3g7ffzw0fqfmvbshj30gg8j7niq6m3rkphxk4a" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "90b41d7b588ab1c3295bf69f7dd87bf31b543a6a", + "sha256": "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn" + } + }, + { + "ename": "folding", + "commit": "1912296b7879019bea5ba8353d511496e3a9ca2d", + "sha256": "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y", + "fetcher": "github", + "repo": "jaalto/project-emacs--folding-mode", + "unstable": { + "version": [ + 20190524, + 1632 + ], + "commit": "a1361aa154b27bd4db2e1cfe6c3b81b4fc1fdc9a", + "sha256": "0ghj0nw2zlrppsgl6x2nda9fj4w04rz6647v9823wxhfirrgnd5z" + } + }, + { + "ename": "font-lock-profiler", + "commit": "b372892a29376bc3f0101ea5865efead41e1df26", + "sha256": "089r74jgi5gwjk9w1bc600vkj0p5ac84rgcl7aqcpqfbh9ylwcp9", + "fetcher": "github", + "repo": "Lindydancer/font-lock-profiler", + "unstable": { + "version": [ + 20170208, + 2008 + ], + "commit": "6e096458416888a4f63cca0d6bc5965a052753c8", + "sha256": "186fvyfbakz54fr8j1l7cijvaklw96m1hfbjyw7nha08zc2m1hw5" + } + }, + { + "ename": "font-lock-studio", + "commit": "f8046fef1ac09cac1113dd5d0a6e1bf8e0c77bb1", + "sha256": "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq", + "fetcher": "github", + "repo": "Lindydancer/font-lock-studio", + "unstable": { + "version": [ + 20170127, + 2051 + ], + "commit": "12c35967b31233e06946c70627aa3152dacfe261", + "sha256": "0q0s6f5vi3sfifj7vq2nnsmgyyivp1sd3idk32858md5ri71qif0" + } + }, + { + "ename": "font-utils", + "commit": "2af0a1644116e89c5a705ffe0885ffe3ee874eaf", + "sha256": "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5", + "fetcher": "github", + "repo": "rolandwalker/font-utils", + "unstable": { + "version": [ + 20150806, + 1751 + ], + "deps": [ + "pcache", + "persistent-soft" + ], + "commit": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055" + }, + "stable": { + "version": [ + 0, + 7, + 8 + ], + "deps": [ + "pcache", + "persistent-soft" + ], + "commit": "9192d3f8ee6a4e75f34c3fed10378674cc2b11d3", + "sha256": "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055" + } + }, + { + "ename": "fontawesome", + "commit": "93b92f10802ceffc353db3d220dccfd47ea7fa41", + "sha256": "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3", + "fetcher": "github", + "repo": "syohex/emacs-fontawesome", + "unstable": { + "version": [ + 20170305, + 1356 + ], + "commit": "a743f80bfd53767ca9ee32da34c5ca032172a480", + "sha256": "1mkyd2bbyd9avw2qaidkzkpv8i7lfiv9189bj49dxklg92823sip" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "helm-core" + ], + "commit": "72b4f2f83c7fdacd225aee58f93acefc53166626", + "sha256": "1icwjd1rbyr1g8ifyhvpi21wjff2qrddq2rmp5lmiajnwrlfli0d" + } + }, + { + "ename": "fontify-face", + "commit": "72bd6750dd5a7d9ed6e408e690f76c260ffd7d9e", + "sha256": "1w7xlkladqkbh7gpnkbi53a7k9p5wzma4y9jgwbc58hng9ggm1k0", + "fetcher": "github", + "repo": "Fuco1/fontify-face", + "unstable": { + "version": [ + 20180420, + 1624 + ], + "commit": "30ec0134f04d2b156bbc772e94edfa1a31ef0a58", + "sha256": "1i7hc436230dn68q2r7das7rgg8x0j3h43sv23krrg4qr0n0v07y" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "fc3325c98427523d86f0b411e0515cec51ac3d8a", + "sha256": "1zfld9a17xhisfwhmfxvx1x63ksl6jg5g99kbivj4nq70sf26dpw" + } + }, + { + "ename": "forecast", + "commit": "a7ea18a56370348715dec91f75adc162c800dd10", + "sha256": "0zng8xdficpfccq484pghzg8yylihcy8aq0vpxd1w6l40m2qf6zn", + "fetcher": "github", + "repo": "cadadr/elisp", + "unstable": { + "version": [ + 20190124, + 1828 + ], + "commit": "1c4b082f6f19c2563dbfbc48b996a915843624bb", + "sha256": "10ys10m6mxyh7hblsqcpjmglnh9lwzl9b6bmbcankpvrl0zh094z" + } + }, + { + "ename": "foreign-regexp", + "commit": "d05514013948a520cf0dcaf1dc2ef2300dd55e98", + "sha256": "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7", + "fetcher": "github", + "repo": "k-talo/foreign-regexp.el", + "unstable": { + "version": [ + 20180224, + 1121 + ], + "commit": "2ec5c44f27c2396ee487aa0ed77ae47d143fa5aa", + "sha256": "0zww0q8x99sfwzf05pk7blsi3v8xiw4xgmlwnv1qlf2qxjkz1xhb" + } + }, + { + "ename": "foreman-mode", + "commit": "edeeb2b52ac70f8bdad38d3af62a7e434853c504", + "sha256": "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv", + "fetcher": "github", + "repo": "zweifisch/foreman-mode", + "unstable": { + "version": [ + 20170725, + 1422 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ], + "commit": "22b3bb13134b617870ed1e888af739f4818be929", + "sha256": "01qanhif24czcmhpdfkcjs019ss4r79f7y2wfbzmj6w4z7g3rikk" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ], + "commit": "e90d2b56e83ab914f9ba9e78126bd7a534d5b8fb", + "sha256": "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9" + } + }, + { + "ename": "forest-blue-theme", + "commit": "49b8686c31f863dde58d56cddf0baa7757a0c453", + "sha256": "1pcpwil883k4n5na7jpq7h8a8gw6mily1cj5n5rf25lqqnsz6fxa", + "fetcher": "github", + "repo": "olkinn/forest-blue-emacs", + "unstable": { + "version": [ + 20160627, + 842 + ], + "commit": "58096ce1a25615d2bae806c3775bae3e2775019d", + "sha256": "1qm74cfnc13wgv0c3657nd3xbgn492r24m5m2i0ipnpq49cddccf" + } + }, + { + "ename": "forge", + "commit": "58c5ca46286712b2aa43e07bb5dcbc8b5eb321e8", + "sha256": "1ykpjgbi2yak9ww54wnm1gxj9zff2ggldg9msg3219r8frzjcnjv", + "fetcher": "github", + "repo": "magit/forge", + "unstable": { + "version": [ + 20190726, + 1558 + ], + "deps": [ + "closql", + "dash", + "emacsql-sqlite", + "ghub", + "let-alist", + "magit", + "markdown-mode", + "transient" + ], + "commit": "1b940e5ac3ec98c7bd5e9b2364a3c5b1d61d3ffd", + "sha256": "0prx5kckaiwc1h4lvjwh70g930jy0v90zl3gswkynpibcgfacii7" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "closql", + "dash", + "emacsql-sqlite", + "ghub", + "graphql", + "let-alist", + "magit", + "magit-popup", + "markdown-mode" + ], + "commit": "f5fc99935e2059ddede9766ce4bb96d99dcd203b", + "sha256": "0jipyqj3r4gkdwpcy0m5ij7x510r2admi8fbzwfysqyrwahs60nv" + } + }, + { + "ename": "form-feed", + "commit": "468503d8103766e8196e977325e3bcb696219f6b", + "sha256": "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh", + "fetcher": "github", + "repo": "wasamasa/form-feed", + "unstable": { + "version": [ + 20160102, + 2253 + ], + "commit": "799ca3e72b20a59a755a094b8cead57f654f3170", + "sha256": "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "eac6724c093458745e9ae0e37221077fa2ad0ff6", + "sha256": "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2" + } + }, + { + "ename": "format-all", + "commit": "f53143ebd42ef5be793b86d50b23f0a57617d6cc", + "sha256": "1kmnv8ypxvgm3p79cc1wk8032fh7bl1pripys180vw89r2748qs9", + "fetcher": "github", + "repo": "lassik/emacs-format-all-the-code", + "unstable": { + "version": [ + 20190721, + 1032 + ], + "deps": [ + "cl-lib" + ], + "commit": "dbed2d1ea8ee9a86d6e5e5f2aab4e73aaa88e918", + "sha256": "1v12b067dca73qy4s3ladhrqdkhfiih1d1hkbgxh0x9q0yhci871" + } + }, + { + "ename": "format-sql", + "commit": "085c03104aa5a809a112525547eec51100b6fb09", + "sha256": "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj", + "fetcher": "github", + "repo": "paetzke/format-sql.el", + "unstable": { + "version": [ + 20150422, + 1333 + ], + "commit": "97f475c245cd6c81a72a265678e2087cee66ac7b", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "97f475c245cd6c81a72a265678e2087cee66ac7b", + "sha256": "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0" + } + }, + { + "ename": "format-table", + "commit": "e307ead5e8a291cb5dfe316f3b13144e71b6a1b7", + "sha256": "1fwjilx0n9m8q0macq231i73zvridjfgqlhw7d1xblw4qp82rzvp", + "fetcher": "github", + "repo": "functionreturnfunction/format-table", + "unstable": { + "version": [ + 20181223, + 1616 + ], + "deps": [ + "dash" + ], + "commit": "dfcae3a867e574577fc09a43b045889ff155b58f", + "sha256": "1z9l1qmv5hw7bgchi5f68nzsz9arjwsazvd6viq6k6jmjzncli6q" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "dash" + ], + "commit": "dfcae3a867e574577fc09a43b045889ff155b58f", + "sha256": "1z9l1qmv5hw7bgchi5f68nzsz9arjwsazvd6viq6k6jmjzncli6q" + } + }, + { + "ename": "forth-mode", + "commit": "e46832079ee34c655835f06bf565ad5a5ab48ebd", + "sha256": "0j60abi5qyy94f4as90zhmkb12jdirysdbq4ajs5h91vi6gb1g3i", + "fetcher": "github", + "repo": "larsbrinkhoff/forth-mode", + "unstable": { + "version": [ + 20170527, + 1930 + ], + "commit": "522256d98d1a909983bcfd3ae20c65226d5929b6", + "sha256": "110ycl8zkimy2818rhp3hk3mn2y25m695shdsy6dwxnrv90agss6" + } + }, + { + "ename": "fortpy", + "commit": "73b277e19f5f9f6605f3e9b7afac95152dac0599", + "sha256": "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj", + "fetcher": "github", + "repo": "rosenbrockc/fortpy-el", + "unstable": { + "version": [ + 20150715, + 2032 + ], + "deps": [ + "auto-complete", + "epc", + "pos-tip", + "python-environment" + ], + "commit": "c614517e9396ef7a78be3b8786fbf303879cf43b", + "sha256": "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y" + } + }, + { + "ename": "fortune-cookie", + "commit": "ab0d56626c9bf847c693b4d9ddb08acee636054f", + "sha256": "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78", + "fetcher": "github", + "repo": "andschwa/fortune-cookie", + "unstable": { + "version": [ + 20181223, + 842 + ], + "commit": "6c1c08f5be83822c0b762872ab25e3dbee96f333", + "sha256": "0gnidiryappk9naazwv0dd3b1dyd284zkwnhy2b1z3zkc9i7awfq" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "bad99a2cd090f6646c7ee1125b95dd98744939c6", + "sha256": "1kiflisiabc39lxi5hcazfvcwrpasl01lqsi2sri6pyrcrjyh8mf" + } + }, + { + "ename": "fraktur-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0hy2cncbgpp7ysp7qwfpj0r075rxrc77bmc70bw7hf8m1xiw124k", + "fetcher": "github", + "repo": "grettke/fraktur-mode", + "unstable": { + "version": [ + 20160815, + 227 + ], + "deps": [ + "cl-lib" + ], + "commit": "514baf5546aed12a0d9fa0fe66e87cdcc7843b08", + "sha256": "169d9j7jk3li96fkn2sr257835flkcpml24l4bmzp8j3q57a7wxw" + } + }, + { + "ename": "frame-local", + "commit": "556179857e2b46f5a48b45e1b71cd460ffd9f7d7", + "sha256": "1lz4xmz67l99xbyg9gvgzl06yqh61xhr29vfhv68kq5pg5m881vs", + "fetcher": "github", + "repo": "sebastiencs/frame-local", + "unstable": { + "version": [ + 20180330, + 940 + ], + "commit": "7ee1106c3bcd4022f48421f8cb1ef4f995da816e", + "sha256": "0zfxsxdh3bd3fd566zl0byp13p5b8f4cgkwl637imvarvahczigp" + } + }, + { + "ename": "frame-mode", + "commit": "1e83da89eeee834cc14c0b128d55ef3634f76fd0", + "sha256": "0ch58x07fnsx3v3r9cvcmqrqws121m8achjilhqk988hkg7y47c8", + "fetcher": "github", + "repo": "IvanMalison/frame-mode", + "unstable": { + "version": [ + 20190710, + 2030 + ], + "deps": [ + "s" + ], + "commit": "ae2366969927c9f89ea07c999bef382b0b47cac1", + "sha256": "0fr4rc6axgk98sinsmqr6zhd2ba4djijmbpkha2vs1qn31p1z4g7" + } + }, + { + "ename": "frame-purpose", + "commit": "033bd36a2419f4521944ccbfe8ce1eb56af20472", + "sha256": "0mvzryfakz5g8smsg4ciaa0bs0jp692rnjbahp9vl62ml5dp62fz", + "fetcher": "github", + "repo": "alphapapa/frame-purpose.el", + "unstable": { + "version": [ + 20190114, + 1403 + ], + "deps": [ + "dash", + "dash-functional" + ], + "commit": "78f978f13589ec5c5370187c008c8aa83e6e71b4", + "sha256": "0zd981jsbf8fj5a3s7agbg32f6x3s7g87jlz13msgpgmkfhpx3gx" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash", + "dash-functional" + ], + "commit": "60778ef3c02cb09a7ccc323732c89bf374dfbffe", + "sha256": "0jq2aam1yvccw887ighd1wm2xkvk5bv53ffiz3crcl16a255aj4q" + } + }, + { + "ename": "frame-tag", + "commit": "e69899b53c158903b9b147754021acf1a6136eda", + "sha256": "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q", + "fetcher": "github", + "repo": "liangzan/frame-tag.el", + "unstable": { + "version": [ + 20170111, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "73d6163568c7d32952175e663318b872f995a4e5", + "sha256": "1ks8qw1vq30mjp7bpgrk3f11jhm9viibiap6zjk8r5rykjzl1ifv" + } + }, + { + "ename": "frames-only-mode", + "commit": "1e628416ad9420b3ac5bbfacf930a86d98958ac8", + "sha256": "17p04l16ghz9kk096xk37yjpi4rmla86gp7c8ysjf6q6nyh0608h", + "fetcher": "github", + "repo": "davidshepherd7/frames-only-mode", + "unstable": { + "version": [ + 20190524, + 1439 + ], + "deps": [ + "dash", + "s" + ], + "commit": "ce55b3ad3b3cb4c4253a0172bb8e9461814b2d64", + "sha256": "1sw1s2k4wch32h5r0z6bfyiw4qcwjz93lq36ix17r968r505djc2" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "seq" + ], + "commit": "5a2947d797a5d6f74d3a9c97f8c0ab6cff115b28", + "sha256": "0y0sdjixaxvywrlp2sw51wnczhk51q1svl5aghbk9rkxpwv9ys9v" + } + }, + { + "ename": "frameshot", + "commit": "e5cfaa4b5fda97054d45691fad9d79b559f2df14", + "sha256": "1z5f988m9s25miyxbhaxk6m4af9afvblb2p5mdidva04szjklr70", + "fetcher": "github", + "repo": "tarsius/frameshot", + "unstable": { + "version": [ + 20181219, + 2100 + ], + "commit": "d0b76e4a5d9d112690bf27155f7c34a1ae5548b4", + "sha256": "149v1lxxl6kz0pwb68x65vj0fghrsfyir00qrcsl90vc5yp76ra3" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "3830aae976603ff4e41e09fdca7554594075694c", + "sha256": "1sbxr78gl822gl0ky7iz1wb558ch9gp7igg4aq63gjlq6wfx2v93" + } + }, + { + "ename": "framesize", + "commit": "c53062af16b26b6f64bd63fa62d7e9db264768f3", + "sha256": "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf", + "fetcher": "github", + "repo": "nicferrier/emacs-framesize", + "unstable": { + "version": [ + 20131017, + 2132 + ], + "deps": [ + "key-chord" + ], + "commit": "f2dbf5d2513b2bc45f2085370a55c1754b6025da", + "sha256": "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk" + } + }, + { + "ename": "frecency", + "commit": "d7a6e855d01e0b1c9a23c006af67c487719c50bd", + "sha256": "033zhzwvh23igfqxbiy68cq6i1wflna19pbg81r0hh9kcfg2afpa", + "fetcher": "github", + "repo": "alphapapa/frecency.el", + "unstable": { + "version": [ + 20170909, + 631 + ], + "deps": [ + "a", + "dash" + ], + "commit": "31ef9ff4af1a4fed3dcc24ea74037feea8795c87", + "sha256": "051aihjdg3x22svaxhwylpi8i6s2x9j8syvsj1jgilgjjdy15l6j" + } + }, + { + "ename": "free-keys", + "commit": "55067e899ba618d4394ad9657322c92a667a0774", + "sha256": "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj", + "fetcher": "github", + "repo": "Fuco1/free-keys", + "unstable": { + "version": [ + 20160726, + 2050 + ], + "deps": [ + "cl-lib" + ], + "commit": "edfd69dc369b2647447b7c28c7c1163b1ddf45b4", + "sha256": "0xgifa7s9n882f9ymyyz9gc11xfbj3vfpnxiq1fqfm5hmwx9pwbc" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "edfd69dc369b2647447b7c28c7c1163b1ddf45b4", + "sha256": "0xgifa7s9n882f9ymyyz9gc11xfbj3vfpnxiq1fqfm5hmwx9pwbc" + } + }, + { + "ename": "freeradius-mode", + "commit": "a93de3f3933441b94303cd6dd25dabbade04dcc5", + "sha256": "1lk7px2v5rpfg7kakqcsg31pg69pk64x9j0j9bjwpkxc49bnk1w2", + "fetcher": "github", + "repo": "VersBinarii/freeradius-mode", + "unstable": { + "version": [ + 20190401, + 1743 + ], + "commit": "cf8bf0359cf6c77848facbd24b764b3e111b4c2d", + "sha256": "0ggkflx4lhyxqr7sgf1f3z0i3glmqyvl4bn16clh9ybl14q22rli" + } + }, + { + "ename": "fringe-current-line", + "commit": "eaaa6f7f2f753a7c8489415ae406c4169eda9fa8", + "sha256": "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8", + "fetcher": "github", + "repo": "kyanagi/fringe-current-line", + "unstable": { + "version": [ + 20140111, + 411 + ], + "commit": "0ef000bac76abae30601222e6f06c7d133ab4942", + "sha256": "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231" + } + }, + { + "ename": "fringe-helper", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1i5wra4j0rvrsl9vbg7fzga8cadw43ka2rwdj1m11wq8m3cs8g7m", + "fetcher": "github", + "repo": "nschum/fringe-helper.el", + "unstable": { + "version": [ + 20140620, + 2109 + ], + "commit": "ef4a9c023bae18ec1ddd7265f1f2d6d2e775efdd", + "sha256": "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "0f10a196c6e57222b8d4c94eafc40a96e7b20f1b", + "sha256": "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj" + } + }, + { + "ename": "frog-jump-buffer", + "commit": "8dbb470b4041c58650088b0a1d8af8bac498a573", + "sha256": "0nd59k8jnry2w3c32ww3494fnsqp01q570508bwqmg203lksdwf9", + "fetcher": "github", + "repo": "waymondo/frog-jump-buffer", + "unstable": { + "version": [ + 20190715, + 151 + ], + "deps": [ + "avy", + "dash", + "frog-menu" + ], + "commit": "257c5b8ffe523850904d0445a00c72213ebed2fd", + "sha256": "0xlxcw2k8c0gl2kikvqbi2ypzf1rn49vb0r94qlcbzprhymjggnn" + } + }, + { + "ename": "fsbot-data-browser", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "14d4d8lasvgj520rmqgnzk6mi16znzcdvja9p8164fr9l41wnzgd", + "fetcher": "github", + "repo": "Benaiah/fsbot-data-browser", + "unstable": { + "version": [ + 20160921, + 1533 + ], + "commit": "6bca4f7de63e31839d2542f6c678b79931dec344", + "sha256": "0lvpgfp89sz6f6rn576g1g88s0q3ibj5ghydjwfcg9w6h7vx5b5s" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "6bca4f7de63e31839d2542f6c678b79931dec344", + "sha256": "0lvpgfp89sz6f6rn576g1g88s0q3ibj5ghydjwfcg9w6h7vx5b5s" + } + }, + { + "ename": "fsharp-mode", + "commit": "dc45611e2b629d8bc5f74555368f964420b79541", + "sha256": "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z", + "fetcher": "github", + "repo": "rneatherway/emacs-fsharp-mode-bin", + "unstable": { + "version": [ + 20190609, + 1317 + ], + "deps": [ + "company", + "company-quickhelp", + "dash", + "flycheck", + "popup", + "pos-tip", + "s" + ], + "commit": "e2a63296681d65969d9c21144a22c6fd2f9dd57d", + "sha256": "0llv82jhfmxnblhihnc07z343780dsd2167xjm4vrpcqvlpp50g8" + }, + "stable": { + "version": [ + 1, + 9, + 14 + ], + "deps": [ + "company", + "company-quickhelp", + "dash", + "flycheck", + "popup", + "pos-tip", + "s" + ], + "commit": "e2a63296681d65969d9c21144a22c6fd2f9dd57d", + "sha256": "0llv82jhfmxnblhihnc07z343780dsd2167xjm4vrpcqvlpp50g8" + } + }, + { + "ename": "fstar-mode", + "commit": "c58ace42342c3d3ff5a56d86a16206f2ecb45f77", + "sha256": "1kwa6gqh91265vpp4gcady2brkizfkfjj0gnya9lar6x7rn4gj7s", + "fetcher": "github", + "repo": "FStarLang/fstar-mode.el", + "unstable": { + "version": [ + 20190626, + 1238 + ], + "deps": [ + "company", + "company-quickhelp", + "dash", + "flycheck", + "quick-peek", + "yasnippet" + ], + "commit": "ddb653cb3d6ba6568ffaf531ca57c9ea3e7498f5", + "sha256": "0mr48y24p81srv2m4glif1d7iy6i7jpx98lbv9577xry22d3vvhb" + }, + "stable": { + "version": [ + 0, + 9, + 4, + 0 + ], + "deps": [ + "dash" + ], + "commit": "3a9be64827bbed8e34d38803b5c44d8d4f6cd688", + "sha256": "0manmkd66355g1fw2q1q96ispd0vxf842i8dcr6g592abrz5lhi7" + } + }, + { + "ename": "fuel", + "commit": "1e2a0e4698d4e71ec28656594f6a83504a823490", + "sha256": "08hzzg5dhqkl5c5lfhwcwmx8m8z3k1nxshn2wlpqf5gch8f2nj6z", + "fetcher": "github", + "repo": "factor/factor", + "unstable": { + "version": [ + 20190611, + 1350 + ], + "deps": [ + "cl-lib" + ], + "commit": "d8c1eef9f3ab07bae25ddf2b337553ae523961ce", + "sha256": "1238b3zj2wpnpfh32g4cgwfjn74sdq52i75j5asgyqd8nacp1xq3" + }, + "stable": { + "version": [ + 0, + 98 + ], + "deps": [ + "cl-lib" + ], + "commit": "7999e72aecc3c5bc4019d43dc4697f49678cc3b4", + "sha256": "0d8zs78xnk1wqh821hs8zyjv9lphj2xmxclnr969y1d9axcblaxj" + } + }, + { + "ename": "fuff", + "commit": "4d0fc6d19559a9ea1bb7fce0c26a2dd65fc71603", + "sha256": "080a2lz6mv629c68z44qrrww080gy2iggfzajdq54rr8i23y14vf", + "fetcher": "github", + "repo": "joelmo/fuff", + "unstable": { + "version": [ + 20170202, + 1503 + ], + "deps": [ + "seq" + ], + "commit": "278e849913df87bd8756c59382282d87474802c3", + "sha256": "12s25c0abvghkhfbxcf77d2dc20y3xn9df7mfk8mkfwnlwdss2ga" + } + }, + { + "ename": "full-ack", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309", + "fetcher": "github", + "repo": "nschum/full-ack", + "unstable": { + "version": [ + 20140223, + 1732 + ], + "commit": "761d846e105b150f8e6d13d7a8983f0248313a45", + "sha256": "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "0aef4be1686535f83217cafb1524818071bd8325", + "sha256": "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq" + } + }, + { + "ename": "fullframe", + "commit": "13d1dc5c39543b65c6bb4150c3690211872c00dc", + "sha256": "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a", + "fetcher": "github", + "repo": "tomterl/fullframe", + "unstable": { + "version": [ + 20170816, + 1003 + ], + "deps": [ + "cl-lib" + ], + "commit": "d6a5217f7f2a5a5edcb75140f3fa69b3a50f1cdd", + "sha256": "0m43qnhp6ibsskpjkxc86p3lrjsjc0ndqml3lbd65s79x4x7i3fi" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "d6a5217f7f2a5a5edcb75140f3fa69b3a50f1cdd", + "sha256": "0m43qnhp6ibsskpjkxc86p3lrjsjc0ndqml3lbd65s79x4x7i3fi" + } + }, + { + "ename": "function-args", + "commit": "80688d85a34b77783140ad2b8a47ef60c762b084", + "sha256": "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak", + "fetcher": "github", + "repo": "abo-abo/function-args", + "unstable": { + "version": [ + 20171031, + 1704 + ], + "deps": [ + "ivy" + ], + "commit": "609b25305670fff08d5e357298e7128e4f4e3497", + "sha256": "1xymwk42n2l7c7iaigz23i4l580qpjgq8nqhgr4mnw6invdsgg2c" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "deps": [ + "ivy" + ], + "commit": "0b07db81c0c1fa88d1ec763219ee57640858f79d", + "sha256": "0lg9bhwn3za4jvz38zld389gdl48qf34nqqqrzj0r119g1jqdrg1" + } + }, + { + "ename": "fuo", + "commit": "25fb625becf7f582d2a8d53726d6f01d9ea89ecc", + "sha256": "02mvgz2cxrdn5kp5dw0c57rl5nfavqli5yqbxczmbsih164ljdxf", + "fetcher": "github", + "repo": "cosven/emacs-fuo", + "unstable": { + "version": [ + 20180314, + 1648 + ], + "commit": "5318bef9d935b53031e6312652554920def69af2", + "sha256": "02f4kl1y277pry13hz1jscdh2nrbn3xp7zm1dmqyn8yfhn1s1yx2" + } + }, + { + "ename": "furl", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f", + "fetcher": "github", + "repo": "nex3/furl-el", + "unstable": { + "version": [ + 20150509, + 316 + ], + "commit": "014438271e0ef27333dfcd599cb247f12a20d870", + "sha256": "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb" + } + }, + { + "ename": "futhark-mode", + "commit": "97210774b450b7611d2bfdf36e04a425835d86b9", + "sha256": "1sck984a8m0i9n07jnhpnin6k060756g73ix34ghzd65j5f0pvlw", + "fetcher": "github", + "repo": "diku-dk/futhark-mode", + "unstable": { + "version": [ + 20190724, + 2151 + ], + "deps": [ + "cl-lib" + ], + "commit": "f7b674b549f19a0cf936fe56ddeac4502c7b980d", + "sha256": "1i6hhpdz5pyv07jr3wikrajnw270fm27nmrji2rz31z8b20nn4z0" + } + }, + { + "ename": "fuzzy", + "commit": "9e0197df173fbd7ec1e7e35c47476fcf2aaa483f", + "sha256": "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h", + "fetcher": "github", + "repo": "auto-complete/fuzzy-el", + "unstable": { + "version": [ + 20150730, + 337 + ], + "commit": "534d723ad2e06322ff8d9bd0ba4863d243f698e7", + "sha256": "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "939f4e9a3f08d83925b41dd3d23b2321f3f6b09c", + "sha256": "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss" + } + }, + { + "ename": "fvwm-mode", + "commit": "ac39130f8a031d6fe7df4411a5f94f2cdf652449", + "sha256": "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb", + "fetcher": "github", + "repo": "theBlackDragon/fvwm-mode", + "unstable": { + "version": [ + 20160411, + 1138 + ], + "commit": "6832a1c1f68bf6249c3fd6672ea8e27dc7a5c79e", + "sha256": "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20" + }, + "stable": { + "version": [ + 1, + 6, + 4 + ], + "commit": "d48a309bb7db21f5404b6619c6ee861fe0457704", + "sha256": "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv" + } + }, + { + "ename": "fwb-cmds", + "commit": "fe40cdeb5e19628937820181479897acdad40200", + "sha256": "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx", + "fetcher": "github", + "repo": "tarsius/fwb-cmds", + "unstable": { + "version": [ + 20180318, + 2219 + ], + "commit": "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f", + "sha256": "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "90258a5c7dbbaa2ac227e0fb4ff6c7d5aec3628f", + "sha256": "1xwvv8wjgdaz96v1x1xc5w697bfvcanlcixd0n5qbx6ryakqrb72" + } + }, + { + "ename": "fxrd-mode", + "commit": "796eb6b2126ec616c0de6af6abb7598900557c12", + "sha256": "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r", + "fetcher": "github", + "repo": "msherry/fxrd-mode", + "unstable": { + "version": [ + 20170728, + 1801 + ], + "deps": [ + "s" + ], + "commit": "18a603474abb5a786a8d9f20c283d5f7beed3540", + "sha256": "1yprlpxxh7bbxg8filgb00lqqlavbz03h7hqf4280aiypkwi0y86" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "s" + ], + "commit": "795b969346982b75e24b5c8619b46197982fbb4d", + "sha256": "0aha13vqj6ygyr7bflrxll837g4z6wrmrhh5rhcd0vphqg70frgn" + } + }, + { + "ename": "fyure", + "commit": "27f4188f460060277ad2f5422bc2bde8e6fd3ff3", + "sha256": "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x", + "fetcher": "github", + "repo": "mooz/fyure", + "unstable": { + "version": [ + 20130216, + 1314 + ], + "commit": "b6977f1eb148e8b63259f7233b55bb050e44d9b8", + "sha256": "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd" + } + }, + { + "ename": "fzf", + "commit": "1671e17c99ef1932c6a2e83fc4fa2e4eb6674bc8", + "sha256": "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0", + "fetcher": "github", + "repo": "bling/fzf.el", + "unstable": { + "version": [ + 20180619, + 145 + ], + "commit": "521d18933cb586337c4e34281bdc71ac07202c98", + "sha256": "0fpzjslbhhwvs4nh5dxj9cyxyiw6n8qmg76mvq73k5mc8pk7d4ir" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "383a050920e9b99d37c21d041deb7f38b202485c", + "sha256": "14drm6b6rxbcdilcms1jlqyrqbipcqbdil6q06ni9pgafi7xp8hz" + } + }, + { + "ename": "gams-ac", + "commit": "ca2681b39ac5a985c2f70b4b84ee3c10af1a7ca4", + "sha256": "03w9ffscwaaspwxmrqhrfws0qjk3xxzz63k5wkrhx37899w75qha", + "fetcher": "github", + "repo": "ShiroTakeda/gams-ac", + "unstable": { + "version": [ + 20180423, + 926 + ], + "deps": [ + "auto-complete", + "gams-mode" + ], + "commit": "66d04ff36033f54205c19bc1d893e926d4dbf02e", + "sha256": "1hjbzwgzwqwpyfm8db1r1q14bbk42hrl5469gqfzjq0423wy7szw" + } + }, + { + "ename": "gams-mode", + "commit": "c895a716636b00c2a158d33aab18f664a8601833", + "sha256": "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci", + "fetcher": "github", + "repo": "ShiroTakeda/gams-mode", + "unstable": { + "version": [ + 20181112, + 601 + ], + "commit": "210bd355dd2075bde3fd76c880aa489a25a54cb5", + "sha256": "1xvga0hjwcjvz9vpdn2pxq84wp6f3hrq8g55hhpr4gqxx7yg1bwj" + }, + "stable": { + "version": [ + 6, + 5 + ], + "commit": "3022e9f8411628e6a210fb5843d858b15a7513f5", + "sha256": "06hc8yy1g2vyvib8yrhwzs8fvgxnrxlw6iyzi7phjp9fgr3cp504" + } + }, + { + "ename": "gandalf-theme", + "commit": "4354bbc1ec16783dd286d69fd6e4682ae63e28f9", + "sha256": "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p", + "fetcher": "github", + "repo": "ptrv/gandalf-theme-emacs", + "unstable": { + "version": [ + 20130809, + 947 + ], + "commit": "4e472fc851431458537d458d09c1f5895e338536", + "sha256": "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v" + } + }, + { + "ename": "gap-mode", + "commit": "83ec19a4ebac6b2d0fd84939b393848f82620978", + "sha256": "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2", + "fetcher": "bitbucket", + "repo": "gvol/gap-mode", + "unstable": { + "version": [ + 20180809, + 445 + ], + "commit": "00f251070b10ba72d0548955ca125498fcaaf40c", + "sha256": "0rk5smpzpdqzpmb5cp2l40042i51z3f40fkd3hma40id0ql2gy2w" + } + }, + { + "ename": "gather", + "commit": "595e40c7102294684badf86deb72d86bbc3c1426", + "sha256": "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-gather", + "unstable": { + "version": [ + 20141230, + 1338 + ], + "commit": "50809fbc22d70a1c724c2dd99ac5a1f818ffeb6b", + "sha256": "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "303af57dd2ae0fc1363a3d1a84d475167f58c84a", + "sha256": "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6" + } + }, + { + "ename": "gcmh", + "commit": "e478bee9aade9cdac22f9935b937978f3a3e1d3c", + "sha256": "0h5l02k01dv74n04ybnm1416dfhr5sm3h3maq0pypxqdfz1anhsg", + "fetcher": "gitlab", + "repo": "koral/gcmh", + "unstable": { + "version": [ + 20190626, + 750 + ], + "commit": "1953d913b5aa8822b83db8e20e17145470e01d79", + "sha256": "1s130fypags36240qlifify6645rpxlnfhar9akf22y2zywaxfhq" + } + }, + { + "ename": "gdscript-mode", + "commit": "52f99eafb2e80a7fa13a98add98b03a147f35e8b", + "sha256": "0v4ab5xxpq1kya2is5qq61fmfgxgvbigyz7wp907z3mc00kg2818", + "fetcher": "github", + "repo": "AdamBark/gdscript-mode", + "unstable": { + "version": [ + 20180118, + 456 + ], + "commit": "31af5283eaec207bc864022a28e2824132471eaf", + "sha256": "0f24zsklkhhvj6qdyid2j1qcyhjnncxjma93zhr0klvn5j1z3aar" + } + }, + { + "ename": "geben", + "commit": "6f8648609e160f7dcefe4a963e8b00475f2fff78", + "sha256": "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf", + "fetcher": "github", + "repo": "ahungry/geben", + "unstable": { + "version": [ + 20170801, + 1251 + ], + "deps": [ + "cl-lib" + ], + "commit": "ec3f5e9376cf1ea5615990bd8c212543d57f033b", + "sha256": "0860nnarbm76jp40v7p5d2wdnq12p03paiw17g3h5p27wnaj611d" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "003abd23a7468daa133dfbc7ef85d0d61a0410dc", + "sha256": "15ck23xv3dz9i4w5xd9lkg0c6rlsyxdz465xrpkr77fq9qw0c4dg" + } + }, + { + "ename": "geben-helm-projectile", + "commit": "b7d28c45304a69e6ca78b3d00df2563171c027ee", + "sha256": "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r", + "fetcher": "github", + "repo": "ahungry/geben-helm-projectile", + "unstable": { + "version": [ + 20160611, + 59 + ], + "deps": [ + "geben", + "helm-projectile" + ], + "commit": "31ce0faca5dcc71924884f03fd5a7a25d00ccd9b", + "sha256": "0a1srhwfbgkvndjfi9irg5s6snlxyqrw1vwyqg1sn8aqnbpgib04" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "geben", + "helm-projectile" + ], + "commit": "31ce0faca5dcc71924884f03fd5a7a25d00ccd9b", + "sha256": "0a1srhwfbgkvndjfi9irg5s6snlxyqrw1vwyqg1sn8aqnbpgib04" + } + }, + { + "ename": "geeknote", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "03q0ca8m110qw8wczyyx94gwqymwnmamahw30j7fqkq6ry19yqsm", + "fetcher": "github", + "repo": "avendael/emacs-geeknote", + "unstable": { + "version": [ + 20160717, + 1249 + ], + "commit": "8ed607c76864afcc9c338972ab093caf4501cbf8", + "sha256": "1dadsyvkzf0rg6immjdjkb0k7iaqh3hm1w9qhap94j54j7v75w2q" + } + }, + { + "ename": "geiser", + "commit": "67dc8d6e33f3522043f96761b23ea68c9c27084e", + "sha256": "1g7z6c3lfa7slwrxk7q8awqs39qibcv2kc4c2fwlwvgbcfhkw085", + "fetcher": "gitlab", + "repo": "jaor/geiser", + "unstable": { + "version": [ + 20190624, + 1807 + ], + "commit": "fbdfbee56a03a1a0396d61fdc8f0b0af87273fc9", + "sha256": "1xzmsvw0wnq1yyyi6ya25hrn1537qq60cd556y0c1cg9i3qqm4vq" + }, + "stable": { + "version": [ + 0, + 10 + ], + "commit": "775d1d734a677274fbbf4af780592bb3768d3f9b", + "sha256": "086qlii1w7sqxwnxwxvc4d6d71p829jabhgwvi0l0bjkxn7bx8pq" + } + }, + { + "ename": "general", + "commit": "d86383b443622d78f6d8ff7b8ac74c8d72879d26", + "sha256": "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc", + "fetcher": "github", + "repo": "noctuid/general.el", + "unstable": { + "version": [ + 20190719, + 140 + ], + "deps": [ + "cl-lib" + ], + "commit": "ff18b7b05b91c5af7a4069df618608c3c4487377", + "sha256": "1r74mb368p6ahcklz58468hzncxzvhnwdz998lbz0f0adk9cn56s" + } + }, + { + "ename": "genrnc", + "commit": "dd2d908ba5fa96d90643091573939e54d9165aaa", + "sha256": "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm", + "fetcher": "github", + "repo": "aki2o/emacs-genrnc", + "unstable": { + "version": [ + 20140612, + 1237 + ], + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ], + "commit": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "concurrent", + "deferred", + "log4e", + "yaxception" + ], + "commit": "da75b1966a73ad215ec2ced4522c25f4d0bf1f9a", + "sha256": "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn" + } + }, + { + "ename": "german-holidays", + "commit": "bf5b3807ff989b13f95e8d6fad2f26a42ff0643c", + "sha256": "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn", + "fetcher": "github", + "repo": "rudolfochrist/german-holidays", + "unstable": { + "version": [ + 20181213, + 644 + ], + "commit": "a8462dffccaf2b665f2032e646b5370e993a386a", + "sha256": "1rf8p42pl7jmmdiibfcamlbr3kg6kslffv8vbpwn20xm2ii13rxz" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "8388b3bf5b5c38f9b9fcc9216ca26ef0640c6edc", + "sha256": "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701" + } + }, + { + "ename": "gerrit-download", + "commit": "18725e799efd1694ff2397b6c877f926ac5f4ce8", + "sha256": "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp", + "fetcher": "github", + "repo": "chmouel/gerrit-download.el", + "unstable": { + "version": [ + 20150714, + 1408 + ], + "deps": [ + "magit" + ], + "commit": "d568acc7c5935188c9bc19ba72719a6092d9f6fd", + "sha256": "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4" + } + }, + { + "ename": "gf", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "0vk866gy97zk8dbx48azjlpnrnf0snc50zlhbzv1is97d9frjici", + "fetcher": "github", + "repo": "GrammaticalFramework/gf-emacs-mode", + "unstable": { + "version": [ + 20181028, + 1542 + ], + "deps": [ + "ht", + "s" + ], + "commit": "30b3127f229e0db522c7752f6957ca01b2ea2821", + "sha256": "1znskia2rvmpag8hs4z8d4m1yzn90ibaab94xd9qyk40f53nk4nl" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "ht", + "s" + ], + "commit": "49fa46db67634530499be969ffd3c436a22d4404", + "sha256": "0q234wzzmq1r53dv7z798liwkcbpnvc8mnxvkyfxd94f6za9ylgz" + } + }, + { + "ename": "ggo-mode", + "commit": "e055994c3c3042eab11f11ec916ad5b56689809f", + "sha256": "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p", + "fetcher": "github", + "repo": "mkjunker/ggo-mode", + "unstable": { + "version": [ + 20130524, + 1143 + ], + "commit": "e326899d9ed8217c7a4ea6cfdc4dd7aea61d6c1b", + "sha256": "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp" + }, + "stable": { + "version": [ + 20130521 + ], + "commit": "ea5097f87072309c7b77204888d459d084bf630f", + "sha256": "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz" + } + }, + { + "ename": "ggtags", + "commit": "b158bb1bc2fbe3de61a6b21174eac7b1457edda2", + "sha256": "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw", + "fetcher": "github", + "repo": "leoliu/ggtags", + "unstable": { + "version": [ + 20190320, + 2208 + ], + "commit": "4d9000034d352cd983ae6626f560e434d0b3e9ca", + "sha256": "1h89prfxdr50drsira3qqvh1mb7v09p4w8jpb7aapq2jl5fl2knc" + }, + "stable": { + "version": [ + 0, + 8, + 13 + ], + "deps": [ + "cl-lib" + ], + "commit": "17a121af1b375a6a5c5acec52f2ffd2b9715d244", + "sha256": "10hryphjjyi13gvk8sy8r5y7nvs0hbw8ycjqj9snai0c1f9xrdsa" + } + }, + { + "ename": "gh", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0", + "fetcher": "github", + "repo": "sigma/gh.el", + "unstable": { + "version": [ + 20180308, + 2138 + ], + "deps": [ + "logito", + "marshal", + "pcache" + ], + "commit": "f029fc11f345ef04ab62ee91c38657e29c462fea", + "sha256": "1rgdpi8ld5hi2rp30p8sxbrl6z95nvq80jfp3zsr7cmsniwz0vv3" + }, + "stable": { + "version": [ + 0, + 10, + 0 + ], + "deps": [ + "logito", + "pcache" + ], + "commit": "d0471dd1ba279072cbf8caf6368f3008d7120f25", + "sha256": "099msgsxdqyjrd18jv2mfkpaylp2scq18782354lcpr3fbp8vbsl" + } + }, + { + "ename": "gh-md", + "commit": "2794e59d5fea812ce5b376d3d9609f50f6bca40e", + "sha256": "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm", + "fetcher": "github", + "repo": "emacs-pe/gh-md.el", + "unstable": { + "version": [ + 20151207, + 1740 + ], + "commit": "693cb0dcadff70e813e1a9d303d227aff7898557", + "sha256": "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0" + } + }, + { + "ename": "ghc", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5", + "fetcher": "github", + "repo": "DanielG/ghc-mod", + "unstable": { + "version": [ + 20180121, + 1218 + ], + "deps": [ + "haskell-mode" + ], + "commit": "391e187a5dfef4421aab2508fa6ff7875cc8259d", + "sha256": "1z142vgv72yfly7nyknzlcpm51sx5zqi26by3c7g68dbb4dxhq57" + }, + "stable": { + "version": [ + 5, + 8, + 0, + 0 + ], + "deps": [ + "haskell-mode" + ], + "commit": "35690941aadbe44d9401102ab44a39753e0bb2b5", + "sha256": "0fcaxj2lhkhkm2h91d9fdqas2b99wblwl74l2y6ckpf05hrc4w1q" + } + }, + { + "ename": "ghc-imported-from", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "063kbymk4r1yrg5ks660d2byrnia6gs6nimjzrvqfi2ib1psc7jc", + "fetcher": "github", + "repo": "david-christiansen/ghc-imported-from-el", + "unstable": { + "version": [ + 20141124, + 1932 + ], + "commit": "fcff08628a19f5d26151564659218cc677779b79", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "fcff08628a19f5d26151564659218cc677779b79", + "sha256": "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi" + } + }, + { + "ename": "ghci-completion", + "commit": "804aa2f9088dfc1b48b59aaa72a61f82fb5be971", + "sha256": "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll", + "fetcher": "github", + "repo": "manzyuk/ghci-completion", + "unstable": { + "version": [ + 20151125, + 1257 + ], + "deps": [ + "cl-lib" + ], + "commit": "c47e23d585d2a3c7b13aac163693fdc4f2bb90e5", + "sha256": "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q" + } + }, + { + "ename": "gherkin-mode", + "commit": "82d80becedead8db441eed6f7856ca64d78815e2", + "sha256": "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv", + "fetcher": "github", + "repo": "candera/gherkin-mode", + "unstable": { + "version": [ + 20171224, + 1353 + ], + "commit": "0313492e7da152f0aa73ddf96c0287ded8f51253", + "sha256": "15m9a2dcxgmbj0ni2qcxg3vpxvs50pyjvlacm3xd2xhm9wd484hr" + } + }, + { + "ename": "ghost-blog", + "commit": "4a906d461bcb2aa07050b72669feb5787414d809", + "sha256": "0c591cx5kkfmhhqh8jall470iicxdv01mm3m13irq5xhmp3i5kjy", + "fetcher": "github", + "repo": "javaguirre/ghost-blog-emacs", + "unstable": { + "version": [ + 20171023, + 742 + ], + "deps": [ + "markdown-mode" + ], + "commit": "71b358643cc9a2db1bf752281ff94aba9b59e4cc", + "sha256": "1fkh7zslkdi7a4x2xrk73acmigbi7yx9k6iaj75zbjfd49gyqj13" + } + }, + { + "ename": "ghq", + "commit": "a9daa3b0039f6b296b8176523cffbbe27506bb02", + "sha256": "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh", + "fetcher": "github", + "repo": "rcoedo/emacs-ghq", + "unstable": { + "version": [ + 20160803, + 1557 + ], + "commit": "aae4b8cb22fd6c24d2c9e3962c7e8e9dac6d9825", + "sha256": "0rh2k93c3a0vl073a3s3a3h6gkw454v1lyd7y8l3pd24vw9hc628" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "aae4b8cb22fd6c24d2c9e3962c7e8e9dac6d9825", + "sha256": "0rh2k93c3a0vl073a3s3a3h6gkw454v1lyd7y8l3pd24vw9hc628" + } + }, + { + "ename": "ghub", + "commit": "f403587f77380d1db214aa34933a9b5cce1ef2bd", + "sha256": "15kjyi8ialpr1zjqvw68w9pa5sigcwy2szq21yvcy295z7ylzy4i", + "fetcher": "github", + "repo": "magit/ghub", + "unstable": { + "version": [ + 20190710, + 2214 + ], + "deps": [ + "dash", + "let-alist", + "treepy" + ], + "commit": "a8191c6a63dfa630af418105b58434266859d21b", + "sha256": "1y1pfqzyn28j0b6w1xrrxwx24fc022r5grw4jn6bs6qqcdh73qd7" + }, + "stable": { + "version": [ + 3, + 2, + 0 + ], + "deps": [ + "dash", + "graphql", + "let-alist", + "treepy" + ], + "commit": "b04c7d9a3318316ef67a5d360582d990dc9f6098", + "sha256": "0lp52qygyavddl1lrgsyb6mq7hcf9h89dy2pzya3mb2va49f0vvl" + } + }, + { + "ename": "ghub+", + "commit": "03a412fd25218ff6f302734e078a699ff0234e36", + "sha256": "0xx7nwmjx3f7z6z164x1lb9arbb3m3d16mpn92v66w572rhbr34n", + "fetcher": "github", + "repo": "vermiculus/ghub-plus", + "unstable": { + "version": [ + 20181113, + 32 + ], + "deps": [ + "apiwrap", + "ghub" + ], + "commit": "51ebffe549286b3c0b0565a373f44f4d64fc57af", + "sha256": "11fr6ri95a9wkc0mqrkhjxz1fm2cb52151fc88k73l93mggib3ak" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "apiwrap", + "ghub" + ], + "commit": "b4a9662f5a6562f8d1dfdda2f009ec78a107c9a2", + "sha256": "0xi7xhdla64xbcfqi8x8yzqc6v6rrqxd4q8lcrv7sw08ap5ykfas" + } + }, + { + "ename": "gif-screencast", + "commit": "6d17ca0213ba5ef9dce92002e281e6f08c3492be", + "sha256": "05l46bsnjdnvcgwx5rc5y7ry9p0hvmkf09rlpalgnrp8qpy8xw0q", + "fetcher": "gitlab", + "repo": "Ambrevar/emacs-gif-screencast", + "unstable": { + "version": [ + 20190326, + 849 + ], + "commit": "248d1e158405e6cba2c65ecaed40e2c59b089cd8", + "sha256": "19xqi5mgalnnhb4hw0fh7py2s2dllldx1xxbhwhknkdpifai8hl8" + } + }, + { + "ename": "gift-mode", + "commit": "c4c9081a60bdbf4e5fe1ccc4809c0f6f396d11e4", + "sha256": "0sybrjmcg90cjaax7lzzqvacirn5l23hqy9d843c660fsv98scg1", + "fetcher": "github", + "repo": "csrhodes/gift-mode", + "unstable": { + "version": [ + 20180530, + 1235 + ], + "commit": "b0441ae6e02f343be3b611a2d4b40495ecd932f0", + "sha256": "0dwpmvjsczcdzwhjvpfxrkfha513538z8wq3gr3l1zc1kdggx2bk" + } + }, + { + "ename": "gildas-mode", + "commit": "f43d3aec955d31023056baba971805f0ebbb6702", + "sha256": "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv", + "fetcher": "github", + "repo": "smaret/gildas-mode", + "unstable": { + "version": [ + 20181022, + 649 + ], + "deps": [ + "polymode" + ], + "commit": "d0c9e997e2aa0bcd9b8b7db082d69100448cb1b2", + "sha256": "11290b6daly9nn73iw0s6386hzjk3q2iywdhiazxscxaxzhx2c8c" + } + }, + { + "ename": "gist", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3", + "fetcher": "github", + "repo": "defunkt/gist.el", + "unstable": { + "version": [ + 20171128, + 406 + ], + "deps": [ + "gh" + ], + "commit": "314fe6ab80fae35b95f0734eceb82f72813b6f41", + "sha256": "0vbyzww9qmsvdpdc6d6wq6drlq1r9y92807fjhs0frgzmq6dg0rh" + }, + "stable": { + "version": [ + 1, + 4, + 0 + ], + "deps": [ + "gh" + ], + "commit": "a03f142455e8b39f77fbd57ee1c1e44478c1f9e2", + "sha256": "1xisjaxr54zrxzxj8cp8f90kzphd5v3j56d14534fm5r1f5343vp" + } + }, + { + "ename": "git", + "commit": "ce19d2716416295966716db47241a0e37b412ab5", + "sha256": "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5", + "fetcher": "github", + "repo": "rejeep/git.el", + "unstable": { + "version": [ + 20140128, + 1041 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "a3396a7027a7d986598c6a2d6d5599bac918f3da", + "sha256": "10siqf21ay6vl1r1v2c93rajzyjc67m4wq9q88pbij0z18vkq2f0" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "8b7f1477ef367b5b7de452589dd9a8ab30150d0a", + "sha256": "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5" + } + }, + { + "ename": "git-annex", + "commit": "9c91e16bb9e92db9dc9be6a7af3944c3290d2f14", + "sha256": "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l", + "fetcher": "github", + "repo": "jwiegley/git-annex-el", + "unstable": { + "version": [ + 20190625, + 2118 + ], + "commit": "1324d3f23c534fe79391a2c256bb8803054e383b", + "sha256": "1lfky2nsrlndlbvk6vwbswnvbvkz1sxgg0n3r5q6xykdkjym0lrh" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "7d41775a1709b5754a7779e9f64f15d336ea5c8c", + "sha256": "0fm62lm29wp1ljgyi6pqqkzwzps53cjjbj5j3y0c2013ry7va6c5" + } + }, + { + "ename": "git-attr", + "commit": "3417e4bc586df60b5e6239b1f7683b87953f5b7c", + "sha256": "084l3zdcgy1ka2wq1fz9d6ryhg38gxvr52njlv43gwibzvbqniyi", + "fetcher": "github", + "repo": "arnested/emacs-git-attr", + "unstable": { + "version": [ + 20180925, + 2003 + ], + "commit": "8f6290c76e7827d5a198e7dc04516bcfb2128c06", + "sha256": "0ns6m856i9j18fsg96mm66k0xwdxrnnmnzgr296f4f6gqvx7kia8" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "3e43a0cf616b00a4bbd3c6b49fd2397f3103796f", + "sha256": "1alpr4gnkikwzljz0fdbrx5hs3zy5s2fz7qyxdz0nx9hv8zb5ir5" + } + }, + { + "ename": "git-auto-commit-mode", + "commit": "5660fb76ce93e5fe56227698d079c6994ef3305f", + "sha256": "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl", + "fetcher": "github", + "repo": "ryuslash/git-auto-commit-mode", + "unstable": { + "version": [ + 20190716, + 1936 + ], + "commit": "e533166a228a4969cbd391734301957c9d4fe7b6", + "sha256": "1diw1mwqy5x92a7f01vzynxcs5f2pb17d2hwx83ny2gp7k2gwfha" + }, + "stable": { + "version": [ + 4, + 4, + 0 + ], + "commit": "075e5f9ded66c2035581a7b216896556cc586814", + "sha256": "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh" + } + }, + { + "ename": "git-blamed", + "commit": "87bc01218964a01cfd471ee068ed75976793a568", + "sha256": "08az5mwg8kv8xsivs63y4sym54l1n34zc9z6k0iwpfixv9f8bk9p", + "fetcher": "github", + "repo": "tsgates/git-emacs", + "unstable": { + "version": [ + 20161028, + 1926 + ], + "commit": "cef196abf398e2dd11f775d1e6cd8690567408aa", + "sha256": "1n6x69z1s3hk6m6w8gpmqyrb2cxfzhi9w7q94d46c3z6r75v18vz" + } + }, + { + "ename": "git-command", + "commit": "8a55d697bc95a7026c7788c13e4765e1b71075e3", + "sha256": "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg", + "fetcher": "github", + "repo": "10sr/git-command-el", + "unstable": { + "version": [ + 20190311, + 511 + ], + "deps": [ + "term-run", + "with-editor" + ], + "commit": "89169f4b8e8d2546cac81d38bf584764e630812e", + "sha256": "1dgy9c7q0lxx5k5vdjcil6405qjpqpyq3s0ndh8fn6ybbhap9jda" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "git-ps1-mode", + "term-run", + "with-editor" + ], + "commit": "6cc5c17ca3cc1967b5402bb9a0538fb90933428d", + "sha256": "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9" + } + }, + { + "ename": "git-commit", + "commit": "cec5af50ae7634cc566adfbfdf0f95c3e2951c0c", + "sha256": "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2", + "fetcher": "github", + "repo": "magit/magit", + "unstable": { + "version": [ + 20190717, + 29 + ], + "deps": [ + "dash", + "with-editor" + ], + "commit": "9e2df13e5338b7bde31dceca4e64494bc0fd68a8", + "sha256": "0pxqbwd6fwhnr844m3k82yy26f74favmj5jzidypim0f1x2rmr82" + }, + "stable": { + "version": [ + 2, + 90, + 1 + ], + "deps": [ + "dash", + "with-editor" + ], + "commit": "791901b2f1d26fa0a383147fe77948a9abc753da", + "sha256": "1kw94sdczswsyzn1zlk5s5aplpdv4qd7qcqc5zfxsmsfwm3jacl4" + } + }, + { + "ename": "git-commit-insert-issue", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0xhlchr7dbm0hp4cjba3x1fdf7lnfc97id327i2fqgkdc4yn9fax", + "fetcher": "gitlab", + "repo": "emacs-stuff/git-commit-insert-issue", + "unstable": { + "version": [ + 20171102, + 1841 + ], + "deps": [ + "bitbucket", + "github-issues", + "gitlab", + "projectile", + "s" + ], + "commit": "f986923b04b587206ce7ee8e0c456768600e8be7", + "sha256": "1gffjf6byasisa9jdcv9n4n5zqalvzfsxv7z75zl0g3ph7wc7bbm" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "bitbucket", + "github-issues", + "gitlab", + "helm", + "projectile", + "s" + ], + "commit": "5f08c17bf93b17915415d435ee41923d924fe20b", + "sha256": "11my5apnyhdqh0pmq9wdjd1iah415a5nw87sk586cb3vxnbn5qas" + } + }, + { + "ename": "git-dwim", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl", + "fetcher": "github", + "repo": "rubikitch/emacs-git-dwim", + "unstable": { + "version": [ + 20170126, + 1214 + ], + "commit": "485c732130686c2f28a026e385366006435394b9", + "sha256": "0rcrsjx4ifa9y3rd5l4498kvqkh58zx21gl7mqp053jdsqqq1yrx" + } + }, + { + "ename": "git-gutter", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg", + "fetcher": "github", + "repo": "syohex/emacs-git-gutter", + "unstable": { + "version": [ + 20161105, + 1356 + ], + "commit": "00c05264af046b5ce248e5b0bc42f117d9c27a09", + "sha256": "1c7byzv27sqcal0z7113s1897prxhynk6y89mq1fjlxmr0g20vzb" + }, + "stable": { + "version": [ + 0, + 90 + ], + "deps": [ + "cl-lib" + ], + "commit": "a786465bd527c13e32c73c02b95086560c1be878", + "sha256": "1abagq0psip7cgsqbfjv72qy60ywsny0ibsfcn74ldj6a9v17mz5" + } + }, + { + "ename": "git-gutter+", + "commit": "b2db25d23c2a1a4f38867aac25d687a150e95c2b", + "sha256": "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0", + "fetcher": "github", + "repo": "nonsequitur/git-gutter-plus", + "unstable": { + "version": [ + 20151204, + 1723 + ], + "deps": [ + "dash", + "git-commit" + ], + "commit": "b7726997806d9a2da9fe84ff00ecf21d62b6f975", + "sha256": "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "git-commit" + ], + "commit": "f8daebb6569bb116086d8653da3505382e03d940", + "sha256": "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb" + } + }, + { + "ename": "git-gutter-fringe", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z", + "fetcher": "github", + "repo": "syohex/emacs-git-gutter-fringe", + "unstable": { + "version": [ + 20170113, + 533 + ], + "deps": [ + "cl-lib", + "fringe-helper", + "git-gutter" + ], + "commit": "16226caab44174301f1659f7bf8cc67a76153445", + "sha256": "1y77gjl0yznamdj0f55d418zb75k22izisjg7ikvrfsl2yfqf3pm" + }, + "stable": { + "version": [ + 0, + 23 + ], + "deps": [ + "cl-lib", + "fringe-helper", + "git-gutter" + ], + "commit": "dfc93d1064df154a809aab350942830408051da3", + "sha256": "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan" + } + }, + { + "ename": "git-gutter-fringe+", + "commit": "ad46c349d13f7d40db706b487319ede40b96b09c", + "sha256": "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc", + "fetcher": "github", + "repo": "nonsequitur/git-gutter-fringe-plus", + "unstable": { + "version": [ + 20140729, + 1103 + ], + "deps": [ + "fringe-helper", + "git-gutter+" + ], + "commit": "7a2f49d2455a3a872e90e5f7dd4e6b27f1d96cfc", + "sha256": "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "fringe-helper", + "git-gutter+" + ], + "commit": "ce9d594c0189e78d78df26a0c26bbcf886e373cd", + "sha256": "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9" + } + }, + { + "ename": "git-identity", + "commit": "ebad3a7a81fbf0293ac04ba319929c8b24bb98f5", + "sha256": "0kmpm5zp2x60r68in94x2bazq4wxx95n6zfc6mwiq8ln8m0164j0", + "fetcher": "github", + "repo": "akirak/git-identity.el", + "unstable": { + "version": [ + 20190706, + 442 + ], + "deps": [ + "dash", + "f", + "hydra" + ], + "commit": "9ef80401da9bfd8870888685e86330c864a2d554", + "sha256": "0hgsa8lm1f5a6c4k5gb93jg952p32kb5zm77rblrlrvjrmvrrp76" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "f", + "hydra" + ], + "commit": "fcfcb054c08b9a391add639123faf7f700b57af4", + "sha256": "1lyz4cwlskwfgh6jgvpbyc9c119znc651gwl4bchbqr97bgq2nqm" + } + }, + { + "ename": "git-io", + "commit": "a713197f227e3c43de3609dd505cf7cd226d94b9", + "sha256": "1acwc9iqchvlvx98fxh4xf3xphv0xzrnxpv8kkl8qaly41izfj0v", + "fetcher": "github", + "repo": "tejasbubane/emacs-git-io", + "unstable": { + "version": [ + 20180317, + 1752 + ], + "commit": "48753acba73b48b997bb678fb5e2a938ae63b5d6", + "sha256": "1zw24j6l0ap761q1knxjaxzdfz11kmfq29aag5av4n87m86rxzr8" + } + }, + { + "ename": "git-lens", + "commit": "a52b516b7b10bdada2f64499c8f43f85a236f254", + "sha256": "02a393b5y4vpmf9ixgyi3a4gbzk4146zql827ljlav3j0434ssw2", + "fetcher": "gitlab", + "repo": "pidu/git-lens", + "unstable": { + "version": [ + 20190319, + 1342 + ], + "commit": "f6cc0a37c9c5c422c49c32650e70bc4721707985", + "sha256": "05bkpg7xz8644np9imsj5ms821sbsb784ap5fjdnnn69kllz0d33" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "commit": "ea49e2e005af977a08331f8caa8f64d102b3b932", + "sha256": "0prx0xbnhhp46c09nnzpz07jgr3s5ngrw8zjksf48abr8acwywfv" + } + }, + { + "ename": "git-link", + "commit": "1385443585e628e3d4efb3badb7611e9d653e0c9", + "sha256": "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7", + "fetcher": "github", + "repo": "sshaw/git-link", + "unstable": { + "version": [ + 20190309, + 2326 + ], + "commit": "1dbabfed4c5c3c5ac6ffa9035a9c3d4c6cc7f885", + "sha256": "1b115d5rsb9m8lqjplg3qp0bxfc5cij5fgp0j21zspqwqvj7h0hq" + }, + "stable": { + "version": [ + 0, + 7, + 3 + ], + "commit": "1dbabfed4c5c3c5ac6ffa9035a9c3d4c6cc7f885", + "sha256": "1b115d5rsb9m8lqjplg3qp0bxfc5cij5fgp0j21zspqwqvj7h0hq" + } + }, + { + "ename": "git-messenger", + "commit": "e791293133f30e5d96c4b29e972f9016c06c476d", + "sha256": "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn", + "fetcher": "github", + "repo": "syohex/emacs-git-messenger", + "unstable": { + "version": [ + 20170102, + 440 + ], + "deps": [ + "popup" + ], + "commit": "83815915eb8c1cb47443ff34bca3fecf7d2edf3a", + "sha256": "1jkfzcn8gl3s5y2hwqkac7lm88q80hgcp66zvy7vnylka1scb6lz" + }, + "stable": { + "version": [ + 0, + 18 + ], + "deps": [ + "popup" + ], + "commit": "9297464c010dd8a2d584ac8e012876856655a8b5", + "sha256": "04fnby2nblk8l70gv09asxkmnn53fh1pdfs77ix44npp99fyw8ix" + } + }, + { + "ename": "git-msg-prefix", + "commit": "bd37811d17beaa54e08eb4968791da960d37b391", + "sha256": "0vicaj91yhbzda76wrwmbfby2ikaja52bcm923jx8brjh1wd99wr", + "fetcher": "github", + "repo": "kidd/git-msg-prefix.el", + "unstable": { + "version": [ + 20180118, + 1446 + ], + "deps": [ + "dash", + "s" + ], + "commit": "848f2c7475f5e4937b09f55e85ea89a3be5f8588", + "sha256": "0ab6qjq5nky15vj88j5s8sh7gp9lbwgxrfqsc08bg6gdf2rx2dvx" + } + }, + { + "ename": "git-ps1-mode", + "commit": "ea177b5ea168828881bd8dcd29ef6b4cb81317f0", + "sha256": "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6", + "fetcher": "github", + "repo": "10sr/git-ps1-mode-el", + "unstable": { + "version": [ + 20181115, + 349 + ], + "commit": "b9188e26a64fa6f8678da6cbf5e3e865065f4f04", + "sha256": "0l9y6x53li7fqfrwb4037psn92xciylanj0fmmy8jy6n51dlzxyn" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "288e5c4d0ff20a4e1ac9e72b6af632f67f1d7525", + "sha256": "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3" + } + }, + { + "ename": "git-time-metric", + "commit": "7f6f8839be619d3eeb6ab83b630441bf8c0ca024", + "sha256": "1lwpj3z1i532v59vcpkcp1bkad7i2gmlk2yspjhvyvsgp1slsxl1", + "fetcher": "github", + "repo": "c301/gtm-emacs-plugin", + "unstable": { + "version": [ + 20181116, + 2011 + ], + "commit": "287108ed1d6885dc795eb3bad4476aa08c626186", + "sha256": "0cq4jn2vvcm8hyzmmnnvbmffygxnnv0v71kqlgjm8lcil0xsf84d" + } + }, + { + "ename": "git-timemachine", + "commit": "a52b516b7b10bdada2f64499c8f43f85a236f254", + "sha256": "06xdzic7j3d3pqgwxp1q6fs8sf3mi02a9phjvhk90kyvbr8h94ck", + "fetcher": "gitlab", + "repo": "pidu/git-timemachine", + "unstable": { + "version": [ + 20190730, + 849 + ], + "deps": [ + "transient" + ], + "commit": "391eb61050de321101e631fcf373fc70ec6e7700", + "sha256": "1pz4l1xnq6s67w5yq9107vm8dg7rqf8n9dmbn90jys97c722g70n" + }, + "stable": { + "version": [ + 4, + 11 + ], + "deps": [ + "transient" + ], + "commit": "391eb61050de321101e631fcf373fc70ec6e7700", + "sha256": "1pz4l1xnq6s67w5yq9107vm8dg7rqf8n9dmbn90jys97c722g70n" + } + }, + { + "ename": "git-wip-timemachine", + "commit": "81b5dd5765f52efdb88fdc14f48af641a18b3dcb", + "sha256": "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw", + "fetcher": "github", + "repo": "itsjeyd/git-wip-timemachine", + "unstable": { + "version": [ + 20150408, + 1006 + ], + "deps": [ + "s" + ], + "commit": "ed4c7931a5f5233bf3e358b1e81647d063526460", + "sha256": "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "s" + ], + "commit": "7da7f2acec0b1d1252d7474b13190ae88e5b205d", + "sha256": "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx" + } + }, + { + "ename": "gitattributes-mode", + "commit": "4b4e2ddd2a80875afc0fc654052e6cbff2f3777f", + "sha256": "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x", + "fetcher": "github", + "repo": "magit/git-modes", + "unstable": { + "version": [ + 20180318, + 1956 + ], + "commit": "33c6a116a5b298e20eb39ebb154a51c4dd37c06d", + "sha256": "1l129z6hdqyzpmk6wcjlp9nxrlhfdgrq9ql8rqq57z28sa88abld" + }, + "stable": { + "version": [ + 1, + 2, + 8 + ], + "commit": "55468314a5f6b77d2c96be62c7005ac94545e217", + "sha256": "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72" + } + }, + { + "ename": "gitconfig", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0lqm04nfhhhsdagrjnnagkpg7vpswd8lkd3l52lmpdh0fy16kgrf", + "fetcher": "github", + "repo": "tonini/gitconfig.el", + "unstable": { + "version": [ + 20130718, + 935 + ], + "commit": "7612a37ca14009cac8fb8d6b6f54adad739a5741", + "sha256": "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "6c313a39e20702ddcebc12d146f69db1ce668901", + "sha256": "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v" + } + }, + { + "ename": "gitconfig-mode", + "commit": "44a37f59b87f59a587f6681e7aadfabf137c98d7", + "sha256": "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1", + "fetcher": "github", + "repo": "magit/git-modes", + "unstable": { + "version": [ + 20180318, + 1956 + ], + "commit": "33c6a116a5b298e20eb39ebb154a51c4dd37c06d", + "sha256": "1l129z6hdqyzpmk6wcjlp9nxrlhfdgrq9ql8rqq57z28sa88abld" + }, + "stable": { + "version": [ + 1, + 2, + 8 + ], + "commit": "55468314a5f6b77d2c96be62c7005ac94545e217", + "sha256": "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72" + } + }, + { + "ename": "github-browse-file", + "commit": "f8bca60348fc5e2ad55663e69b8690093cf861ca", + "sha256": "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr", + "fetcher": "github", + "repo": "osener/github-browse-file", + "unstable": { + "version": [ + 20160205, + 1427 + ], + "deps": [ + "cl-lib" + ], + "commit": "9742a5183af853788c6ecb83fb7ee0b00d1675ac", + "sha256": "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "fa5cc00a40869430fb44596792961a4cddf9c265", + "sha256": "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578" + } + }, + { + "ename": "github-clone", + "commit": "ba11d6a5cc2fbc76037687c842f90dc815a6468e", + "sha256": "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9", + "fetcher": "github", + "repo": "dgtized/github-clone.el", + "unstable": { + "version": [ + 20160623, + 310 + ], + "deps": [ + "gh", + "magit" + ], + "commit": "467b40ca60a6c26257466ebc43c74414df7f19cc", + "sha256": "1gdx9sl509vn4bagqg8vi1wvj1h3ryfvd5ggs2mv9rry6x9dg823" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "gh", + "magit" + ], + "commit": "ab048cf49d9ebda73acae803bc44e731e629d540", + "sha256": "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7" + } + }, + { + "ename": "github-elpa", + "commit": "81ec06e370f51b750ba3313b661d7386710cffb0", + "sha256": "1981dnz49l5r4qsn49i4dhy6x4ln0haff6gl2zx0p5p0zfkzbi7x", + "fetcher": "github", + "repo": "10sr/github-elpa", + "unstable": { + "version": [ + 20180831, + 811 + ], + "deps": [ + "commander", + "git", + "package-build" + ], + "commit": "279b6c352859cfd519ea8726eafed84d6875c418", + "sha256": "0qhsi6qayjxg15wyjbj4sjhq4y6nhb9vd8nhc8qx26qlmvmnd0mg" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "commander", + "git", + "package-build" + ], + "commit": "c5960375ed5d67465412be7eb0ac558082feebc7", + "sha256": "02710iy9zz4ymmb2ydrca5kbdc5i06fjg7212iyvpd58yfzxjj2m" + } + }, + { + "ename": "github-explorer", + "commit": "e224d2272892fb6751a093b0306f399057e6098a", + "sha256": "0s7k9wspdmvgmyd5sws3asp3kjp5a4nnzvbyn6jp8bcwd7girmr0", + "fetcher": "github", + "repo": "TxGVNN/github-explorer", + "unstable": { + "version": [ + 20190701, + 630 + ], + "commit": "6a05025663789e6daab80a5dd47c3efbe607795f", + "sha256": "1mkdsg1pzwgyyxdlizwcspppvh6kb7z1s55bszxwrfasnpqk30jl" + } + }, + { + "ename": "github-issues", + "commit": "f761e76236e9372d5fae6b5c5dcb1992c5d64d37", + "sha256": "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0", + "fetcher": "github", + "repo": "inkel/github-issues.el", + "unstable": { + "version": [ + 20160616, + 1841 + ], + "commit": "816f7712b0eb05bffec0add3507302862d2629c4", + "sha256": "1x6jbnx9lwgy64nl9lpp01xcj9cbx5fq435iwhiarjdsm4kvixb5" + } + }, + { + "ename": "github-modern-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "07xv4psw34mrpb1f5fsvj8vcm9k3xlm43zxr6qmj00p46b35z25r", + "fetcher": "github", + "repo": "philiparvidsson/GitHub-Modern-Theme-for-Emacs", + "unstable": { + "version": [ + 20171109, + 1251 + ], + "commit": "a7e7b8e5e9c122138e79e837caf9b7299e748d44", + "sha256": "0agfy3wiznb2ksfa00g7066mb0vps4g74mj6nl9wkvx847dzg34h" + } + }, + { + "ename": "github-notifier", + "commit": "c09f4e7e8a84a241881d214e8359f8a50ab14ddf", + "sha256": "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw", + "fetcher": "github", + "repo": "xuchunyang/github-notifier.el", + "unstable": { + "version": [ + 20180421, + 316 + ], + "commit": "274f3812926ea371346f639fcee98066f6e8c96f", + "sha256": "1qv66sdi8zm8nv1xc32lsmm2bgkxf03hb8sfz59mbvzhy6r7dxin" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "f8d011ebef9f626a94a27b5576c8ed06e6ff8987", + "sha256": "0glkn36fs93y2n1583k8v958qfhl212hbdk3cpkq432hj08wzjnr" + } + }, + { + "ename": "github-pullrequest", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1p5mwpl59iwd1aqczf1b5shcpzhlqwrcy2vp46c276mhqx15r8fr", + "fetcher": "github", + "repo": "jakoblind/github-pullrequest", + "unstable": { + "version": [ + 20170116, + 616 + ], + "deps": [ + "dash", + "magit", + "request" + ], + "commit": "6ae5c38b0fc15b638b5ba4490112d9822ce5e267", + "sha256": "1yr7v2wdrvwb1slks83bbh857qq1n207rdk48y8qwlcxbk4ygdr6" + } + }, + { + "ename": "github-review", + "commit": "3b57420d20c799c0472dae4ab7e017d53dafb262", + "sha256": "1vh24bmvafv9px80gwgcgk7d9z6pjxaadzz7fba8r3m3fzhv4v58", + "fetcher": "github", + "repo": "charignon/github-review", + "unstable": { + "version": [ + 20190327, + 732 + ], + "deps": [ + "dash", + "ghub", + "s" + ], + "commit": "9c3ffe30fba5d02e9951e76d1a5be2ed046663da", + "sha256": "078rv6f2p3wrznhgvmkhd071bwy72007f5l2m2a0r1k2i3vbfaja" + } + }, + { + "ename": "github-search", + "commit": "733a808400858513137e0e3d7d38b5b25e8ddc5a", + "sha256": "1pwrzbbwnq0il5494561fyvkr0vmm5jqlvpffgkk28c54vs7ms0b", + "fetcher": "github", + "repo": "IvanMalison/github-search", + "unstable": { + "version": [ + 20190624, + 436 + ], + "deps": [ + "gh", + "magit" + ], + "commit": "b73efaf19491010522b09db35bb0f1bad1620e63", + "sha256": "19qmvwki9nfbd2pz5ld36mzcbj8plfls7snmzssgkpw06n0y68j9" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "gh", + "magit" + ], + "commit": "1a5c1f8291f4d41e57367a8522699cb08eea8fc4", + "sha256": "1382hda3hgpx3c3d1kjzz8hs4l5hi3s7c485hsgihhr6xdd5wrgm" + } + }, + { + "ename": "github-stars", + "commit": "58df7d536f9711e10ecaa6e0a37b9ad255e8fca5", + "sha256": "1vljmrjid5xxmq5yfmsaq09js7zd75nmm4gd0kwm3lf71pb3lp6f", + "fetcher": "github", + "repo": "xuchunyang/github-stars.el", + "unstable": { + "version": [ + 20190517, + 1319 + ], + "deps": [ + "ghub" + ], + "commit": "a9f25ab2487c886f5d50d26693d49856bd51383b", + "sha256": "1wp1zfwa4ai0771pkmcsybw8z8zwbwmqazm9fszyg8dsdns5wz2f" + } + }, + { + "ename": "github-theme", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "132jahd8vvhzhhkm71dzq6x46wmaakbbxg9s7r9779bfwbrms9j9", + "fetcher": "github", + "repo": "philiparvidsson/GitHub-Theme-for-Emacs", + "unstable": { + "version": [ + 20170630, + 2201 + ], + "commit": "29f00a51d949a248a5f6355a97131e216747c797", + "sha256": "16ldfz1k0hxc1b785gzrf70hg0q88ijjxp39hb62iax1k1aw9vlw" + } + }, + { + "ename": "gitignore-mode", + "commit": "44a37f59b87f59a587f6681e7aadfabf137c98d7", + "sha256": "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn", + "fetcher": "github", + "repo": "magit/git-modes", + "unstable": { + "version": [ + 20180318, + 1956 + ], + "commit": "33c6a116a5b298e20eb39ebb154a51c4dd37c06d", + "sha256": "1l129z6hdqyzpmk6wcjlp9nxrlhfdgrq9ql8rqq57z28sa88abld" + }, + "stable": { + "version": [ + 1, + 2, + 8 + ], + "commit": "55468314a5f6b77d2c96be62c7005ac94545e217", + "sha256": "08hy7rbfazs6grkpk54i82bz0i0c74zcjk96cip8970h6jn3mj72" + } + }, + { + "ename": "gitignore-templates", + "commit": "4c9aa71eac2e68eb1925ed00a2c659c4375bd39c", + "sha256": "17zx52pmpd4yqlnj39v7ym728i710mdl0by3lc8zk6ljfz77933w", + "fetcher": "github", + "repo": "xuchunyang/gitignore-templates.el", + "unstable": { + "version": [ + 20180327, + 1326 + ], + "commit": "b0705b8de4cbdd631c64c4e0024d62ba4ad68052", + "sha256": "1f0lcyw7yrdfmv0h8b87kz0pdrzhy28fzv688z4aaw964qn8jz0k" + } + }, + { + "ename": "gitlab", + "commit": "1d012991188956f6e06c37d504b0d06ab31487b9", + "sha256": "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq", + "fetcher": "github", + "repo": "nlamirault/emacs-gitlab", + "unstable": { + "version": [ + 20180312, + 1647 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "8c2324c02119500f094c2f92dfaba4c9977ce1ba", + "sha256": "056c4fb5sj2y4h94klx2g24n1g3qdi7ifzs8ksw5v6hcj9lrkb1n" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "a1c1441ff5ffb290e695eb9ac05431e9385578f4", + "sha256": "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa" + } + }, + { + "ename": "gitlab-ci-mode", + "commit": "d7915ddcf21fdec539a86bb86c209cf0bbd378cb", + "sha256": "1jg6ihrgccrcwg30ysyqw9k7rmvfmsrp70skr2057hfamvccwn4f", + "fetcher": "gitlab", + "repo": "joewreschnig/gitlab-ci-mode", + "unstable": { + "version": [ + 20190425, + 2058 + ], + "deps": [ + "yaml-mode" + ], + "commit": "dac4e5125c78aa3ae12d2e35a66196d709676236", + "sha256": "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0" + }, + "stable": { + "version": [ + 20190425, + 11, + 10 + ], + "deps": [ + "yaml-mode" + ], + "commit": "dac4e5125c78aa3ae12d2e35a66196d709676236", + "sha256": "1jkp9mnbiccqnha9zs646znqyqvy5jjb81kah7ghbkzdqqk2avm0" + } + }, + { + "ename": "gitlab-ci-mode-flycheck", + "commit": "d7915ddcf21fdec539a86bb86c209cf0bbd378cb", + "sha256": "19ixd60yynsvmaj7mkppp6k73793x794vrnhx3hh6n7dap1rsjdh", + "fetcher": "gitlab", + "repo": "joewreschnig/gitlab-ci-mode-flycheck", + "unstable": { + "version": [ + 20190323, + 1829 + ], + "deps": [ + "flycheck", + "gitlab-ci-mode" + ], + "commit": "eba81cfb7224fd1fa4e4da90d11729cc7ea12f72", + "sha256": "1w1simnlffg56j79gal1qf1nlav9f8fmr2zfswfrmcv6cac6fhj9" + }, + "stable": { + "version": [ + 20180304, + 1 + ], + "deps": [ + "flycheck", + "gitlab-ci-mode" + ], + "commit": "388fd05f3ea88ed3ebafb09868fc021f6ecc7625", + "sha256": "0idpg4265rfx5i0i8cgfs6w3gncc766mbg81ldxqjhzvq3n28z39" + } + }, + { + "ename": "gitolite-clone", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0mv2bdfqqq47wgikkm5kwpr8gajylf1yzk2j6cxljz09amgq6c8q", + "fetcher": "github", + "repo": "IvanMalison/gitolite-clone", + "unstable": { + "version": [ + 20160609, + 2355 + ], + "deps": [ + "dash", + "pcache", + "s" + ], + "commit": "d8a4c2875c984e51137c980b5773f42703602721", + "sha256": "11i9hxj76869w1z9xn7wq370v56hx5hm4d7msn4zgp64glpa66j9" + } + }, + { + "ename": "gitpatch", + "commit": "e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953", + "sha256": "0qaswkk06z24v40nkjkv7f6gfv0dlsjd6wchkn0ppqw95883vhv1", + "fetcher": "github", + "repo": "tumashu/gitpatch", + "unstable": { + "version": [ + 20170722, + 410 + ], + "commit": "577d5adf65c8133caa325c10e89e1e2fc323c907", + "sha256": "1jj12pjwza6cq8a3kr8nqnmm3vxs0wam8h983irry4xr4ifywsn4" + }, + "stable": { + "version": [ + 0, + 5, + 1 + ], + "commit": "94d40a2ee2b7cd7b209546ea02568079176b0034", + "sha256": "1drf4fvmak7brf16axkh4nfz8pg44i7pjhfjz3dbkycbpp8y5vig" + } + }, + { + "ename": "gitter", + "commit": "b8076c3b4d60e4c505bb6f4e426ecc4f69d74684", + "sha256": "1ad5abqgfh6x2fcqbbdvgbg8xin69j0h93z7bav1hs3jla7mgwnv", + "fetcher": "github", + "repo": "xuchunyang/gitter.el", + "unstable": { + "version": [ + 20180122, + 856 + ], + "deps": [ + "let-alist" + ], + "commit": "11cb9b4b45f67bdc24f055a9bfac21d2bd19ea1a", + "sha256": "14ri86kxqz9qfhcr0bkgfyggy4bgg9imk9akhw6dfzqkl90gn2gy" + }, + "stable": { + "version": [ + 1 + ], + "deps": [ + "let-alist" + ], + "commit": "bd2ba457109dd5d3e4b419e3ef5cbd3b5c9498d6", + "sha256": "1fzl40bwdfbcq55p3kvbzjqr5w0703imzgrmqcf4f6jhav127zk6" + } + }, + { + "ename": "gl-conf-mode", + "commit": "e3117e62d429e44506f7d82fc64252d41bc1a4b6", + "sha256": "0lf8xmq309aqyf16ymqlr8gj2qawlsqagbdndj0kgj72dnnw4cfm", + "fetcher": "github", + "repo": "llloret/gitolite-emacs", + "unstable": { + "version": [ + 20170714, + 1310 + ], + "commit": "9136a9b737e0a5b6471a91571d104c487c43f35b", + "sha256": "0wls3sfplrf7wkg7g7fxx4s87cvm3p7myxw6k91np6pbfh8p0s9q" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "1a53e548277eb9c669bbeda4bee9be32be7a82ec", + "sha256": "059m30vvp71y630pcam6qfv5bxc35ygj26wcg28p56pccxxyj3q9" + } + }, + { + "ename": "glsl-mode", + "commit": "c416822d54df436f29dcf9a5f26398685fdc17a2", + "sha256": "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5", + "fetcher": "github", + "repo": "jimhourihan/glsl-mode", + "unstable": { + "version": [ + 20190514, + 145 + ], + "commit": "eaea63a45d0dcb04ddbf069b4bcfd99f10919e44", + "sha256": "0fb6as099y1k8inc39n8hkmb63j1l4sd5q9cbyqz4shfczma3546" + } + }, + { + "ename": "gmail-message-mode", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk", + "fetcher": "github", + "repo": "Malabarba/gmail-mode", + "unstable": { + "version": [ + 20160627, + 1847 + ], + "deps": [ + "ham-mode" + ], + "commit": "ec36672a9dc93c09ebe2f77597b498d11883d008", + "sha256": "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "ham-mode" + ], + "commit": "ec36672a9dc93c09ebe2f77597b498d11883d008", + "sha256": "0xcdd3abcrqr7nabdmmh0kgfar64hhgnrhsiwg3q201cymhnv49p" + } + }, + { + "ename": "gmail2bbdb", + "commit": "fb3c88b20a7614504165cd5fb459b0a9d5c73f60", + "sha256": "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j", + "fetcher": "github", + "repo": "redguardtoo/gmail2bbdb", + "unstable": { + "version": [ + 20170423, + 1144 + ], + "commit": "a84fa385cfaec7fc5f1518c368e52722da139f99", + "sha256": "1qbf3r8a66xlrbni3hv5q5b5v3izis5aid06228rfpc2hwa97hr7" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "commit": "181ef6039227bb30a02041d8cfdc435551a7d948", + "sha256": "0205ldrw1i7czq44pqdl374cl0rjp5w5zadrayw8brl7mmw92byn" + } + }, + { + "ename": "gmpl-mode", + "commit": "c89a523f87db358c477e5840b0e043e9f253e640", + "sha256": "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz", + "fetcher": "github", + "repo": "cute-jumper/gmpl-mode", + "unstable": { + "version": [ + 20171031, + 2054 + ], + "commit": "c5d362169819ee8b8e8954145daee7e260c54921", + "sha256": "00p2z6kbyc0bas21d1zygx7z49w6mf22y9kf1rcm9gqsnnadb4j9" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "25d20f9d24594e85cb6f80d35d7c73b7e82cbc71", + "sha256": "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1" + } + }, + { + "ename": "gn-mode", + "commit": "f5c6c27bce3d0aaf7e3791299a527d5f1fd69653", + "sha256": "1rn4xa1am1yd9k2hpi5b0zhs3pgq4hnhgxdgs258cmhszm8c6ii2", + "fetcher": "github", + "repo": "lashtear/gn-mode", + "unstable": { + "version": [ + 20190428, + 1812 + ], + "deps": [ + "cl-lib" + ], + "commit": "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2", + "sha256": "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "fcf8e1e500d953364e97e7ebc5708a2c00fa3cd2", + "sha256": "0dz5kgzbgsssr38z2kg6m915cvfys42ag1k42bsra3la2pixywfx" + } + }, + { + "ename": "gnome-calendar", + "commit": "8e497668d65f0eabd15e39b7492adb395a5a8e75", + "sha256": "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6", + "fetcher": "github", + "repo": "NicolasPetton/gnome-calendar.el", + "unstable": { + "version": [ + 20161110, + 1256 + ], + "commit": "489f9f15f7bb35696b1cc19db75b554ae8328df2", + "sha256": "1aca65g4rfpsm4yk5k2bj6kbb2wrf6s14m8jgv1p94mqmzkj7rlq" + } + }, + { + "ename": "gnomenm", + "commit": "dd98221d3498528efb0f2d943102d32ebd7b34b3", + "sha256": "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm", + "fetcher": "github", + "repo": "nicferrier/emacs-nm", + "unstable": { + "version": [ + 20150316, + 1918 + ], + "deps": [ + "dash", + "kv", + "s" + ], + "commit": "9065cda44ffc9e06239b8189a0154d31314c3b4d", + "sha256": "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2" + } + }, + { + "ename": "gntp", + "commit": "c69a148d3b72d1be6ea10100a8e0cbbd918baa9c", + "sha256": "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f", + "fetcher": "github", + "repo": "tekai/gntp.el", + "unstable": { + "version": [ + 20141025, + 250 + ], + "commit": "767571135e2c0985944017dc59b0be79af222ef5", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "767571135e2c0985944017dc59b0be79af222ef5", + "sha256": "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a" + } + }, + { + "ename": "gnu-apl-mode", + "commit": "369a55301bba0c4f7ce27f6e141944a523beaa0f", + "sha256": "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6", + "fetcher": "github", + "repo": "lokedhs/gnu-apl-mode", + "unstable": { + "version": [ + 20181217, + 854 + ], + "commit": "3b5b13abeb424e8ed399379fdefc168422664def", + "sha256": "0nhbfzfwl44ffvhzrnkjxaxz2nfrp1a7zcy6fg6cm13c2z40jslp" + } + }, + { + "ename": "gnuplot", + "commit": "78be03893e4b0502ce999375e5630d32bda56ac1", + "sha256": "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds", + "fetcher": "github", + "repo": "bruceravel/gnuplot-mode", + "unstable": { + "version": [ + 20141231, + 2137 + ], + "commit": "21f9046e3f5caad41b750b5c9cee02fa4fd20fb9", + "sha256": "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "commit": "aefd4f671485fbcea42511ce79a7a60e5e0110a3", + "sha256": "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn" + } + }, + { + "ename": "gnuplot-mode", + "commit": "d801a2e0ba5ae7c65b5d312fbf41261278a8b1ba", + "sha256": "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg", + "fetcher": "github", + "repo": "mkmcc/gnuplot-mode", + "unstable": { + "version": [ + 20171013, + 1616 + ], + "commit": "601f6392986f0cba332c87678d31ae0d0a496ce7", + "sha256": "14f0yh1rjqc3337j4sbqzfb7pjim2c8a7wk1a73xkrdkmjn82vgb" + } + }, + { + "ename": "gnus-alias", + "commit": "6176257e00ca09e79fdff03c6dd450af8eb83666", + "sha256": "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf", + "fetcher": "github", + "repo": "hexmode/gnus-alias", + "unstable": { + "version": [ + 20150316, + 42 + ], + "commit": "9447d3ccb4c0e75d0468899cccff7aa249657bac", + "sha256": "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4" + } + }, + { + "ename": "gnus-desktop-notify", + "commit": "c1cf98dff029d494007fe25d29bd8bcfecc5b8e6", + "sha256": "1cfcmmq0ywgp41g0rf8s5fabh3yqbv9iacxi7v74kqh59bqdnz3x", + "fetcher": "gitlab", + "repo": "wavexx/gnus-desktop-notify.el", + "unstable": { + "version": [ + 20180623, + 1538 + ], + "deps": [ + "gnus" + ], + "commit": "b438feb59136621a8ab979f0e2784f7002398d06", + "sha256": "0h7w5wrkrd0jw8nmgbkzq8wam7ynvy7flhjg4frphzmimlhysli2" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "gnus" + ], + "commit": "210c70f0021ee78e724f1d8e00ca96e1e99928ca", + "sha256": "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw" + } + }, + { + "ename": "gnus-recent", + "commit": "0b80d94cf1a8b8e2d4da5d45f65231aa4884a3a0", + "sha256": "14xac6bmn61bk0h6dby14111iijz0j254v4mh77lf0ydbz6wxjf1", + "fetcher": "github", + "repo": "unhammer/gnus-recent", + "unstable": { + "version": [ + 20190423, + 1146 + ], + "commit": "d9375cfad0054a05c910c1210f0f37aa601aebba", + "sha256": "19ggfisfxq2bk62axdi0nipwxymrvnnvmijcrwc9yglbnhiigdb5" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "df85e5810c02f613bfa6e236674de969d6e00ae1", + "sha256": "0hvsp9y0vzcr9c2wglh0wdavjmp2n2hbhlsr1bfvnfxk97ka0y5r" + } + }, + { + "ename": "gnus-select-account", + "commit": "e1746d87f65dc4b0d8f47c7d6ba4c7e0dfa35953", + "sha256": "1yini6kif7vp5msmhnnpfkab5m5px8y4wgvc0f0k79kdd17gvpsx", + "fetcher": "github", + "repo": "tumashu/gnus-select-account", + "unstable": { + "version": [ + 20170722, + 511 + ], + "commit": "ddc8c135eeaf90f5b6692a033af2badae36e68ce", + "sha256": "0csq8cqv028g3mrvk88l0nlj3dk5fh67c10hdjwvxbf7winv0391" + } + }, + { + "ename": "gnus-summary-ext", + "commit": "5ca4a905b5f81991074c7d3e41d4422c7e6713d5", + "sha256": "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf", + "fetcher": "github", + "repo": "vapniks/gnus-summary-ext", + "unstable": { + "version": [ + 20180113, + 1316 + ], + "commit": "025fd853fe9280ae696a89ec2c2cac9befd010aa", + "sha256": "07ww2nc03daz70f2ajw7b2gin22xa306001zclhrxkm1cpjif2fi" + } + }, + { + "ename": "gnus-summary-repo", + "commit": "0decb1e7d7fd32dc4ed7e07c751621eea0af0ab5", + "sha256": "0lwdhymayqs1cx76lnral2cs5dhrxwzlpc1ivchbyr1pj9x2nj6w", + "fetcher": "github", + "repo": "TxGVNN/gnus-summary-repo", + "unstable": { + "version": [ + 20190617, + 1419 + ], + "commit": "3968667bfded60fbbf33f2fba3170e2b6501ec43", + "sha256": "0rxaxc7b0dkhsd5547hngq24bdvnxig5a7xp9jir59fp2k8xd4aw" + } + }, + { + "ename": "gnus-x-gm-raw", + "commit": "263b87e40e32421ae56a99971a7e1baca0484778", + "sha256": "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg", + "fetcher": "github", + "repo": "aki2o/gnus-x-gm-raw", + "unstable": { + "version": [ + 20140610, + 731 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "978bdfcecc8844465b71641c2e909fcdc66b22be", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "978bdfcecc8844465b71641c2e909fcdc66b22be", + "sha256": "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril" + } + }, + { + "ename": "go", + "commit": "50e8d089f4e163eb459fc602cb90440b110b489f", + "sha256": "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h", + "fetcher": "github", + "repo": "eschulte/el-go", + "unstable": { + "version": [ + 20161111, + 249 + ], + "commit": "ff45fb44d9cb6579d8511d8b6156ed0b34d5ac97", + "sha256": "14av8zcxp9r4ka0h9x73i6gzwbf231wqkin65va3agrzwaf8swz1" + } + }, + { + "ename": "go-add-tags", + "commit": "55d3b893bd68d3d2d86ecdbb4ed442edd256516a", + "sha256": "0nvas44rsvqzk2ay5bhzkbrnzql13vnxq9pk4lp4mvp86dda9qim", + "fetcher": "github", + "repo": "syohex/emacs-go-add-tags", + "unstable": { + "version": [ + 20161123, + 1227 + ], + "deps": [ + "s" + ], + "commit": "54879945e46a0884c5f93d7fd6c866a9cdf401ac", + "sha256": "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "s" + ], + "commit": "54879945e46a0884c5f93d7fd6c866a9cdf401ac", + "sha256": "1gr65skrd41pk46ilfsbxfdng4br6h9c6blf1q1wx6i9ylhs0ak5" + } + }, + { + "ename": "go-autocomplete", + "commit": "ef45683cbfe82bf8a9d6f3f1c59e3cf340accbe3", + "sha256": "15ns1zzw6kblcbih7dmjvk1p0f6f3p2wpgx4gnd9ax0fcj65ghwi", + "fetcher": "github", + "repo": "mdempsky/gocode", + "unstable": { + "version": [ + 20150904, + 240 + ], + "deps": [ + "auto-complete" + ], + "commit": "7fb65232883f19a8305706b4b4ff32916ffbcaf5", + "sha256": "09yqziccv9mg5jlmhw8gslpcwwiiah0hs05nq0qnsbdnvc8bs4lr" + }, + "stable": { + "version": [ + 20150303 + ], + "deps": [ + "auto-complete" + ], + "commit": "eef10fdde96a12528a6da32f51bf638b2863a3b1", + "sha256": "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3" + } + }, + { + "ename": "go-capf", + "commit": "be3dc9ae83c9d11a4f04f79775b17c5a2b86e96d", + "sha256": "0k6s65bf8iwkpr93agw9hqaxfckqi43lanffdic6j4vjrk4inlwz", + "fetcher": "git", + "url": "https://git.sr.ht/~zge/go-capf", + "unstable": { + "version": [ + 20190629, + 727 + ], + "commit": "728e290b182239260937efcf816d904122c423ca", + "sha256": "0s8hwpd882gpxnmlz3y6987gc5c2kawsdkqic5d4kfd8v9yc0psx" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "de3b668b83a73da5ce189c536a58aa1d4f5d492c", + "sha256": "1y1dscqyd2jx5irj5pcy7sspzzp0nsy2j4zaqhln2snffpqa3hmf" + } + }, + { + "ename": "go-complete", + "commit": "4df81abbf3b16f06fa327c1626bef1245ea77758", + "sha256": "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4", + "fetcher": "github", + "repo": "vibhavp/go-complete", + "unstable": { + "version": [ + 20190409, + 516 + ], + "deps": [ + "cl-lib", + "go-mode" + ], + "commit": "056294014f37a1004958ec17ebd6748deed63502", + "sha256": "021mc1lq4xvmj8dvnpr6hhfs08cd0r07d520h498b345y6a6ihdg" + } + }, + { + "ename": "go-direx", + "commit": "032c0c3cd04f36f1bc66bb7d9d789d354c620a09", + "sha256": "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7", + "fetcher": "github", + "repo": "syohex/emacs-go-direx", + "unstable": { + "version": [ + 20150316, + 143 + ], + "deps": [ + "cl-lib", + "direx" + ], + "commit": "8f2206469328ee932c7f1892f5e1fb02dec98432", + "sha256": "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "direx" + ], + "commit": "aecb9fef4d56d04d230d37c75c260c8392b5ad9f", + "sha256": "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln" + } + }, + { + "ename": "go-dlv", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0lb5v9pmd6m8nvk4c9gcda5dmshrf5812gg1arq5p2g0nzg32mm8", + "fetcher": "github", + "repo": "benma/go-dlv.el", + "unstable": { + "version": [ + 20190413, + 1623 + ], + "deps": [ + "go-mode" + ], + "commit": "df03ade331d8fb46acc57ef358e696bc36129e04", + "sha256": "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "go-mode" + ], + "commit": "df03ade331d8fb46acc57ef358e696bc36129e04", + "sha256": "0sfx84cbxn8d3gsjg0zjam4yc7pjlyp3g94xa3xv91k71ncnijs1" + } + }, + { + "ename": "go-eldoc", + "commit": "6ce1190db06cc214746215dd27648eded5fe5140", + "sha256": "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk", + "fetcher": "github", + "repo": "syohex/emacs-go-eldoc", + "unstable": { + "version": [ + 20170305, + 1427 + ], + "deps": [ + "go-mode" + ], + "commit": "cbbd2ea1e94a36004432a9ac61414cb5a95a39bd", + "sha256": "1029qg6ida3cw4ynxll6ykpnqkpbrbrx12nnzcplhc25vqpz7hik" + }, + "stable": { + "version": [ + 0, + 30 + ], + "deps": [ + "go-mode" + ], + "commit": "f1ad302ec4073354801e613293be2f55ba770618", + "sha256": "0hkwhmgjyn5jxrd0k1nakrvy4d7cz7sxb1nw4hb1rqmz4yd14c8i" + } + }, + { + "ename": "go-errcheck", + "commit": "c874f608a55cafcc6e57ca2c80bdae6b1c2e47e9", + "sha256": "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs", + "fetcher": "github", + "repo": "dominikh/go-errcheck.el", + "unstable": { + "version": [ + 20160723, + 43 + ], + "commit": "9db21eccecedc2490793f176246094167164af31", + "sha256": "1ngzgkmcbk6qa3p97hch75k446h15515arsdfv7mqb4m5va6429h" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "1b0cd6af048a8b2074ace14ab51fb6c987beb430", + "sha256": "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3" + } + }, + { + "ename": "go-fill-struct", + "commit": "0c03d2382efd20e248b27b5505cdeed67d000f73", + "sha256": "19xxqb836saxigvwdqf4xv0y9zrl7csv97x0facgyjyiqmwhx3x7", + "fetcher": "github", + "repo": "s-kostyaev/go-fill-struct", + "unstable": { + "version": [ + 20171225, + 331 + ], + "commit": "a613d0b378473eef39e8fd5724abe790aea84321", + "sha256": "16bgfykvqc61hlx1hj55z15y83zgpavhb853sblds75m8w7mndqg" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "3c97c92e78f3629a7a1069404c7c641881c16d0e", + "sha256": "0ara9qqv31pr7dpcby6xp24llf79m0dmwrx4yv6w0bhxi197fmlx" + } + }, + { + "ename": "go-gen-test", + "commit": "0861c126161a2674f0e115eac6f948490b142b44", + "sha256": "1pj8n8xj9ccq9ips4wy4v6hdxxgwv11pwi671l6jjrig38v13dzr", + "fetcher": "github", + "repo": "s-kostyaev/go-gen-test", + "unstable": { + "version": [ + 20171023, + 358 + ], + "deps": [ + "s" + ], + "commit": "44c202ac97e728e93a35cee028a0ea8dd6e4292c", + "sha256": "1vi5xsf0xbcbvapi20hsjangwyp38cbgi8kiccpmingnq2kp8ghs" + } + }, + { + "ename": "go-gopath", + "commit": "1ca8d10b10b015c5bdafe1dbc8e53eb4c0d26d9c", + "sha256": "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal", + "fetcher": "github", + "repo": "iced/go-gopath", + "unstable": { + "version": [ + 20160705, + 1034 + ], + "deps": [ + "cl-lib" + ], + "commit": "5172fc53f21edbf9347d5ee7d1d745da1ec88a15", + "sha256": "0gqb3k33y42gchc89rw3k1pvb7ai9ka50ljfd4avk31fdpr4dln5" + } + }, + { + "ename": "go-guru", + "commit": "0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5", + "sha256": "01f0gz65z8d0iv8k49xl2sp6q4qnsvwhd4g8fb2irp7iclb0xmvk", + "fetcher": "github", + "repo": "dominikh/go-mode.el", + "unstable": { + "version": [ + 20181012, + 330 + ], + "deps": [ + "cl-lib", + "go-mode" + ], + "commit": "3ba198280bf8d5f2a4079618abfd3db2ebe04f58", + "sha256": "01fh1zx24ns06glmcw9l1fp9mlmysx60qnr7gn5gh6r48b6bx1rv" + }, + "stable": { + "version": [ + 1, + 5, + 0 + ], + "deps": [ + "cl-lib", + "go-mode" + ], + "commit": "35f6826e435c3004dabf134d0f2ae2f31ea7b6a2", + "sha256": "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf" + } + }, + { + "ename": "go-imenu", + "commit": "d602b6071787018e3e0a68b4852eb978b34acbea", + "sha256": "0s8rc7rkqlywrhnm2h8yygn87jhjc492wmsvnr1rxl62wf5cijms", + "fetcher": "github", + "repo": "brantou/go-imenu.el", + "unstable": { + "version": [ + 20181029, + 1029 + ], + "commit": "4f3f334ed0b6f6afaca6b9775636a52ad3843053", + "sha256": "1ar2fw7wnlxvdj61vhd9sfqrd0yrb65r7ldjvfdpp1jv9mg50vad" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "fc1566fbe396fc8c94f7de99d9c7191b47cd48d9", + "sha256": "0qygxqrzx009cd59b452ampakr9rwmj1skl8pic9an4wjz742qlg" + } + }, + { + "ename": "go-impl", + "commit": "aa1a0845cc1a6970018b397d13394aaa8147e5d0", + "sha256": "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx", + "fetcher": "github", + "repo": "syohex/emacs-go-impl", + "unstable": { + "version": [ + 20170125, + 1552 + ], + "deps": [ + "go-mode" + ], + "commit": "69f0d0ef05771487e15abec500cd06befd171abf", + "sha256": "1rmik6g3l9q1bqavmqx1fhcadz4pwswgfnkbaxl6c5b6g2sl26iq" + }, + "stable": { + "version": [ + 0, + 14 + ], + "deps": [ + "go-mode" + ], + "commit": "69f0d0ef05771487e15abec500cd06befd171abf", + "sha256": "1rmik6g3l9q1bqavmqx1fhcadz4pwswgfnkbaxl6c5b6g2sl26iq" + } + }, + { + "ename": "go-imports", + "commit": "4118ebf0db84cc047fab311c789bfbffd6eb2d92", + "sha256": "0xxlh4rmyvfxiynsdqng6wd3js7h3azhb8ii0ch7n0hhqkcnda4x", + "fetcher": "github", + "repo": "yasushi-saito/go-imports", + "unstable": { + "version": [ + 20190715, + 1647 + ], + "commit": "55681e815da93b6f927213c4aa352ae33db97c37", + "sha256": "12xgkhc5nqrj5x306ninysyd78dwa3p3bvf69qqi2g0a9ngl8d3x" + } + }, + { + "ename": "go-mode", + "commit": "0cede3a468b6f7e4ad88e9fa985f0fdee7d195f5", + "sha256": "0ghqm4lbkfla79plqiyb1lzf5kbz0380h9vf8px15zal00xrv0bl", + "fetcher": "github", + "repo": "dominikh/go-mode.el", + "unstable": { + "version": [ + 20190731, + 1751 + ], + "commit": "3ba198280bf8d5f2a4079618abfd3db2ebe04f58", + "sha256": "01fh1zx24ns06glmcw9l1fp9mlmysx60qnr7gn5gh6r48b6bx1rv" + }, + "stable": { + "version": [ + 1, + 5, + 0 + ], + "commit": "35f6826e435c3004dabf134d0f2ae2f31ea7b6a2", + "sha256": "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf" + } + }, + { + "ename": "go-playground", + "commit": "900aabb7bc2350698f8740d72a5fad69c9219c33", + "sha256": "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6", + "fetcher": "github", + "repo": "grafov/go-playground", + "unstable": { + "version": [ + 20190625, + 1855 + ], + "deps": [ + "go-mode", + "gotest" + ], + "commit": "508294fbc22b22b37f587b2dbc8f3a48a16a07a6", + "sha256": "18vsrckkazfzksjpyx1lbwg5hdgd43ndaj3csy3i3hk7p26x98lm" + }, + "stable": { + "version": [ + 1, + 6, + 1 + ], + "deps": [ + "go-mode", + "gotest" + ], + "commit": "508294fbc22b22b37f587b2dbc8f3a48a16a07a6", + "sha256": "18vsrckkazfzksjpyx1lbwg5hdgd43ndaj3csy3i3hk7p26x98lm" + } + }, + { + "ename": "go-playground-cli", + "commit": "3af0a72ee1222c133ccfd76f004a346fd6110eee", + "sha256": "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc", + "fetcher": "github", + "repo": "kosh04/emacs-go-playground", + "unstable": { + "version": [ + 20160503, + 914 + ], + "deps": [ + "cl-lib", + "deferred", + "f", + "let-alist", + "names", + "request", + "s" + ], + "commit": "60beebd98e3930641d41cee0189c579626f223bc", + "sha256": "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7" + } + }, + { + "ename": "go-projectile", + "commit": "3559a179be2a5cda71ee0a5a18bead4b3a1a8138", + "sha256": "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml", + "fetcher": "github", + "repo": "dougm/go-projectile", + "unstable": { + "version": [ + 20181023, + 2144 + ], + "deps": [ + "go-eldoc", + "go-guru", + "go-mode", + "go-rename", + "projectile" + ], + "commit": "7910884b4de560f3fc70b53752f658ef9cdc02cd", + "sha256": "03bh8k95qrc3q1sja05bbv3jszh6rgdv56jpi8g06yxk53457a1n" + } + }, + { + "ename": "go-rename", + "commit": "d806abe90da9a8951fdb0c31e2167bde13183c5c", + "sha256": "1cd2nfgwnqzylbry11ahahdip8w66w5hnrndrs65ip10s08w2xki", + "fetcher": "github", + "repo": "dominikh/go-mode.el", + "unstable": { + "version": [ + 20180627, + 648 + ], + "deps": [ + "go-mode" + ], + "commit": "3ba198280bf8d5f2a4079618abfd3db2ebe04f58", + "sha256": "01fh1zx24ns06glmcw9l1fp9mlmysx60qnr7gn5gh6r48b6bx1rv" + }, + "stable": { + "version": [ + 1, + 5, + 0 + ], + "deps": [ + "go-mode" + ], + "commit": "35f6826e435c3004dabf134d0f2ae2f31ea7b6a2", + "sha256": "1nd2h50yb0493wvf1h7fzplq45rmqn2w7kxpgnlxzhkvq99v8vzf" + } + }, + { + "ename": "go-scratch", + "commit": "1713e6f02f8908b828ac2722a3185ea7cceb0609", + "sha256": "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5", + "fetcher": "github", + "repo": "shosti/go-scratch.el", + "unstable": { + "version": [ + 20150810, + 440 + ], + "deps": [ + "go-mode" + ], + "commit": "3f68cbcce04f59eb8e83af109164731ec0454be0", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "go-mode" + ], + "commit": "3f68cbcce04f59eb8e83af109164731ec0454be0", + "sha256": "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm" + } + }, + { + "ename": "go-snippets", + "commit": "ca9f3022e7f4d5391be394cd56f6db75c9cff3b6", + "sha256": "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn", + "fetcher": "github", + "repo": "toumorokoshi/go-snippets", + "unstable": { + "version": [ + 20180113, + 611 + ], + "deps": [ + "yasnippet" + ], + "commit": "d437df148879566ffe7f2e503a3cf2602aa9fb28", + "sha256": "0rs2yj9bh0snf13hfj9bvyawl16j8416naz6h52l21q72ymd4b0k" + } + }, + { + "ename": "go-stacktracer", + "commit": "401996c585d2ccf97add1bc420250d96188b651a", + "sha256": "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy", + "fetcher": "github", + "repo": "samertm/go-stacktracer.el", + "unstable": { + "version": [ + 20150430, + 2142 + ], + "commit": "a2ac6d801b389f80ca4e2fcc1ab44513a9e55976", + "sha256": "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y" + } + }, + { + "ename": "go-tag", + "commit": "fc4cd3fd8fb0707912e205b9d71789ea8126c442", + "sha256": "18ff41i0gr708fl4gzzspf9cc09nv4wy21wsn609yhwlh7w0vs1f", + "fetcher": "github", + "repo": "brantou/emacs-go-tag", + "unstable": { + "version": [ + 20180227, + 411 + ], + "deps": [ + "go-mode" + ], + "commit": "59b243f2fa079d9de9d56f6e2d94397e9560310a", + "sha256": "0r72qk79q8yyidpxgq4r0295fm73id946p1r4s65bwyzii76rjyi" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "go-mode" + ], + "commit": "8dbcb7d42dccac046c7beb31bdf79bb09a0fef40", + "sha256": "1l20az4lhgbrh96sk6bpvp3w4bh29653fms4bimmiaqmhn2n14y2" + } + }, + { + "ename": "gobgen", + "commit": "8c9fed22bb8dbfb359e4fdb0d802ed4b5781f50d", + "sha256": "0fb0q9x7wj8gs1iyr87q1vpxmfa2d43zy6cgxpzmv2wc26x96vi7", + "fetcher": "github", + "repo": "gergelypolonkai/gobgen.el", + "unstable": { + "version": [ + 20161020, + 1523 + ], + "commit": "ed2c2b0d217deae293096f3cf14aa492791ddd4f", + "sha256": "1isda941gzrl9r2xxaxbsqjxq146cmnhl04m634m8m0q2d751pwk" + } + }, + { + "ename": "god-mode", + "commit": "2dff8dc08583048f9b7b4cb6d8f05a18dd4e8b42", + "sha256": "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa", + "fetcher": "github", + "repo": "chrisdone/god-mode", + "unstable": { + "version": [ + 20180117, + 1134 + ], + "commit": "344167ed9b4c212273dd056e7481cf1373b461d0", + "sha256": "0y7phh7amrdphv9dkf0304z2knyas745ir59ybngh1a55dfc2mf4" + } + }, + { + "ename": "godoctor", + "commit": "0e23e1362ff7d477ad9ce6cfff694db989dfb87b", + "sha256": "0k734hry9npsr6zhsplcvmcjqw6jdf79pv4k9dw0xvd598hkpazz", + "fetcher": "github", + "repo": "microamp/godoctor.el", + "unstable": { + "version": [ + 20180710, + 2152 + ], + "commit": "4b45ff3d0572f0e84056e4c3ba91fcc178199859", + "sha256": "12gga1ghc54r6f2adyaq30hm2yxspvgg54zd4k82c3d6cj51qwci" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "commit": "4b45ff3d0572f0e84056e4c3ba91fcc178199859", + "sha256": "12gga1ghc54r6f2adyaq30hm2yxspvgg54zd4k82c3d6cj51qwci" + } + }, + { + "ename": "gold-mode", + "commit": "6d1991b63067c581c7576df4b69b509ab5a44d5a", + "sha256": "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf", + "fetcher": "github", + "repo": "yuutayamada/gold-mode-el", + "unstable": { + "version": [ + 20140607, + 206 + ], + "deps": [ + "sws-mode" + ], + "commit": "6d3aa59602b1b835495271c8c9741ac344c2eab1", + "sha256": "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q" + } + }, + { + "ename": "golden-ratio", + "commit": "e87b2af052d0406431957d75aa3717899bdbc8ae", + "sha256": "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81", + "fetcher": "github", + "repo": "roman/golden-ratio.el", + "unstable": { + "version": [ + 20150819, + 1120 + ], + "commit": "72b028808b41d23fa3f7e8c0d23d2c475e7b46ae", + "sha256": "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "79b1743fc1a2f3462445e9ddd0a869f30065bb6d", + "sha256": "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm" + } + }, + { + "ename": "golden-ratio-scroll-screen", + "commit": "af044c4a28149362347c2477f0d8d0f8d1dc8c0d", + "sha256": "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5", + "fetcher": "github", + "repo": "jixiuf/golden-ratio-scroll-screen", + "unstable": { + "version": [ + 20170224, + 229 + ], + "commit": "44e947194d3e5cbe0fd2f3c4886a4e6e1a0c0791", + "sha256": "1wd19jskpp9w0lrg0ky3hvnliq9l09kmxy59hdp06hsdmvr31jwv" + } + }, + { + "ename": "goldendict", + "commit": "af87026905478d9134a4a036e792f6afd9c10768", + "sha256": "0zvrlz169pg9bj1bmks4lh5zn8cygqzwiyzg49na2a7wf2sk9m1f", + "fetcher": "github", + "repo": "stardiviner/goldendict.el", + "unstable": { + "version": [ + 20180121, + 920 + ], + "deps": [ + "cl-lib" + ], + "commit": "1aac19daaec811deb9afe45eea4929309c09ac8b", + "sha256": "1il432f6ayj2whl4s804n5wykgs51jhbx4xkcbfgqra58cbjrjhi" + } + }, + { + "ename": "golint", + "commit": "34f22d829257456abbc020c006b92da9c7a7860e", + "sha256": "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb", + "fetcher": "github", + "repo": "golang/lint", + "unstable": { + "version": [ + 20180221, + 2015 + ], + "commit": "959b441ac422379a43da2230f62be024250818b0", + "sha256": "1mgcv5f00pkzsbwnq2y7vqvd1b4lr5a3s47cphh2qv4indfk7pck" + } + }, + { + "ename": "gom-mode", + "commit": "0a1e5f505e048b36c12de36b23b779beeaefc45f", + "sha256": "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m", + "fetcher": "github", + "repo": "syohex/emacs-gom-mode", + "unstable": { + "version": [ + 20131008, + 253 + ], + "commit": "972e33df1d38ff323bc97de87477305826013701", + "sha256": "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb" + } + }, + { + "ename": "google", + "commit": "45237d37da807559498bb958184e05109f880070", + "sha256": "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq", + "fetcher": "github", + "repo": "hober/google-el", + "unstable": { + "version": [ + 20140416, + 1748 + ], + "commit": "3b3189a8b201c8d36fed6e61496274e530dd40bd", + "sha256": "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i" + } + }, + { + "ename": "google-c-style", + "commit": "b4e7f5f641251e17add561991d3bcf1fde23467b", + "sha256": "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r", + "fetcher": "github", + "repo": "google/styleguide", + "unstable": { + "version": [ + 20180130, + 1736 + ], + "commit": "9c6b371f419b1dd33c338846e3e7c1ce7304baff", + "sha256": "0yh9dqj7xrq1why1xnldb6zypvalralxx4sgzrn2w9m5g0jqv90v" + } + }, + { + "ename": "google-contacts", + "commit": "671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f", + "sha256": "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn", + "fetcher": "github", + "repo": "jd/google-contacts.el", + "unstable": { + "version": [ + 20180919, + 1314 + ], + "deps": [ + "cl-lib", + "oauth2" + ], + "commit": "2273582713712a58e71156a8a29972d42e8e690e", + "sha256": "1iw5khd3mcgq7vmpm2xw1s713glc8c569n4mgrmmggg73sjnj4kf" + } + }, + { + "ename": "google-maps", + "commit": "671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f", + "sha256": "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx", + "fetcher": "github", + "repo": "jd/google-maps.el", + "unstable": { + "version": [ + 20181121, + 1532 + ], + "commit": "2eb16ff609f5a9f8d02c15238a111fbb7db6c146", + "sha256": "1bl0dnksbf14d0xcnvdy9qpvzc5c8jwkxpmfvgayj6djikxnw2md" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "90151ab59e693243ca8da660ce7b9ce361ea5126", + "sha256": "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0" + } + }, + { + "ename": "google-this", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c", + "fetcher": "github", + "repo": "Malabarba/emacs-google-this", + "unstable": { + "version": [ + 20170810, + 1215 + ], + "commit": "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84", + "sha256": "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl" + }, + "stable": { + "version": [ + 1, + 12 + ], + "commit": "8a2e3ca5da6a8c89bfe99a21486c6c7db125dc84", + "sha256": "1dbra309w8awmi0g0pp7r2dm9nwrj2j9lpl7md8wa89rnzazwahl" + } + }, + { + "ename": "google-translate", + "commit": "e3c275e59cbfe6e40f9cd4c470fc66544c9a6d21", + "sha256": "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47", + "fetcher": "github", + "repo": "atykhonov/google-translate", + "unstable": { + "version": [ + 20190620, + 1416 + ], + "commit": "dc118de511c433750d4c98b9dd67350118c04fd6", + "sha256": "1kbiqisqyk31l94gxsirhnrdkj51ylgcb16fk2wf7zigmf13jqzp" + }, + "stable": { + "version": [ + 0, + 11, + 18 + ], + "commit": "dc118de511c433750d4c98b9dd67350118c04fd6", + "sha256": "1kbiqisqyk31l94gxsirhnrdkj51ylgcb16fk2wf7zigmf13jqzp" + } + }, + { + "ename": "goose-theme", + "commit": "e23a52e068ec0e6d457402254727673ea02bd407", + "sha256": "1nw948js678xc5vgrpdkykpcbn1b1id4k1clf87vfv7y5zssvd0x", + "fetcher": "github", + "repo": "tokenrove/goose-theme", + "unstable": { + "version": [ + 20160828, + 1245 + ], + "commit": "acd017b50ab25a75fd1331eb3de66467e2042e9c", + "sha256": "1mmdvjsgnwgs6akhyj96fgj30mz53djdq85dl5q4cmiznlbma7hy" + } + }, + { + "ename": "gopher", + "commit": "8c01e1c5009e8a4fefe5169c8e97ead53f8f6621", + "sha256": "01b1mr8nn5yrq65y067slc7mvxigansbim0nha41ckyrkh8mw4fs", + "fetcher": "github", + "repo": "msnyder-info/gopher.el", + "unstable": { + "version": [ + 20190512, + 1351 + ], + "deps": [ + "w3m" + ], + "commit": "6f4accac226698b22e8388e41ad5723b12553dde", + "sha256": "02093q9dwbqjyq47j05cmxmw12690f4qqpwsj7qnqz15m9n4b6xc" + } + }, + { + "ename": "gore-mode", + "commit": "de09fcf14f778efe4247a93fb887b77050258f39", + "sha256": "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3", + "fetcher": "github", + "repo": "sergey-pashaev/gore-mode", + "unstable": { + "version": [ + 20151123, + 1927 + ], + "deps": [ + "go-mode" + ], + "commit": "94d7f3e99104e06167967c98fdc201049c433c2d", + "sha256": "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz" + } + }, + { + "ename": "gorepl-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0xcjjh9hf3pv5jgv089c6bb00s215fc9qwn72fav1xbm5f49nkaq", + "fetcher": "github", + "repo": "manute/gorepl-mode", + "unstable": { + "version": [ + 20170905, + 945 + ], + "deps": [ + "f", + "hydra", + "s" + ], + "commit": "bbd27f6a0a77f484e2a3f082d70dc69da63ae52a", + "sha256": "01lqirxgw7svxy1fdv49mvcbhpslf64in6c4dk36b8xhngyqbilf" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "17e025951f5964a0542a4b353ddddbc734c01eed", + "sha256": "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b" + } + }, + { + "ename": "gotest", + "commit": "0670b42c0c998daa7bf01080757976ac3589ec06", + "sha256": "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9", + "fetcher": "github", + "repo": "nlamirault/gotest.el", + "unstable": { + "version": [ + 20180617, + 1333 + ], + "deps": [ + "f", + "go-mode", + "s" + ], + "commit": "36e09a6bf1face4c56d4a7707935c992786e0076", + "sha256": "1aqjyhp7qdss3iqfxamp45006fgfxdgvhf7lqjnjs2xqzvmvsq80" + }, + "stable": { + "version": [ + 0, + 14, + 0 + ], + "deps": [ + "f", + "go-mode", + "s" + ], + "commit": "8a5ef7363f83edb3b77c5e23876f13dd8c23b2b9", + "sha256": "1ksi37kmy9mnrjr5lf9f0ga5nvi3r2kc85g6yvdfj0mbsjm1pnp7" + } + }, + { + "ename": "gotham-theme", + "commit": "4b388de872be397864a1217a330ba80437c287c0", + "sha256": "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl", + "fetcher": "github", + "repo": "wasamasa/gotham-theme", + "unstable": { + "version": [ + 20171013, + 1916 + ], + "commit": "5e97554d1f9639698faedb0660e63694be33bd84", + "sha256": "18x0b2qmyzf9sddsv9ps1059pi4ndzq44rm4yl87slq03y75nxi9" + }, + "stable": { + "version": [ + 1, + 1, + 8 + ], + "commit": "417d61978d139cb5d089c5365fc8d3166d76d3ac", + "sha256": "0rc40cfj2mby1q7bk1pp1fxdi72nh9ip80spjdm1csvjjc4dbkwr" + } + }, + { + "ename": "goto-char-preview", + "commit": "b856d9304ba8814050634db54c8abb88e5dce772", + "sha256": "1h9lq9ka469day511nnv566kggja23pa8zhqxa805p6lp7132b4d", + "fetcher": "github", + "repo": "elpa-host/goto-char-preview", + "unstable": { + "version": [ + 20190418, + 829 + ], + "commit": "366cf84c30fc8e675e9cbab1091ead6f3cd0d399", + "sha256": "1y2ay0r0rqayvw8wlbf8advjbhvzz7sa16k272mxszxzp7xmnr71" + } + }, + { + "ename": "goto-chg", + "commit": "cf1fc176430fe3ab55ce537a0efc59780bb812be", + "sha256": "1yd4jq4zql4av9nr1sdk4nsnnk54c3brgjhpczndy1ipiaxlnydy", + "fetcher": "github", + "repo": "emacs-evil/goto-chg", + "unstable": { + "version": [ + 20190110, + 2114 + ], + "deps": [ + "undo-tree" + ], + "commit": "1829a13026c597e358f716d2c7793202458120b5", + "sha256": "1y603maw9xwdj3qiarmf1bp13461f9f5ackzicsbynl0i9la3qki" + }, + "stable": { + "version": [ + 1, + 7, + 3 + ], + "commit": "16a63aae80db90713fb1f7d378c5d591c2ce15ff", + "sha256": "0kpalpssfrwcqrmp47i3j2x04m01fm7cspwsm6fks8pn71lagcwm" + } + }, + { + "ename": "goto-gem", + "commit": "a52b516b7b10bdada2f64499c8f43f85a236f254", + "sha256": "0i79z1isdbnqmz5rlqjjys68l27nl90m1gzks4f9d6dsgfryhgwx", + "fetcher": "gitlab", + "repo": "pidu/goto-gem", + "unstable": { + "version": [ + 20140729, + 1845 + ], + "deps": [ + "s" + ], + "commit": "e3206f11f48bb7e798514a4ca2c2f60649613e5e", + "sha256": "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "s" + ], + "commit": "6f5bd405c096ef879fed1298c09d0daa0bae5dac", + "sha256": "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7" + } + }, + { + "ename": "goto-last-change", + "commit": "d68945f5845e5e44fb6c11726a56acd4dc56e101", + "sha256": "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx", + "fetcher": "github", + "repo": "camdez/goto-last-change.el", + "unstable": { + "version": [ + 20150109, + 1823 + ], + "commit": "58b0928bc255b47aad318cd183a5dce8f62199cc", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "commit": "58b0928bc255b47aad318cd183a5dce8f62199cc", + "sha256": "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5" + } + }, + { + "ename": "goto-last-point", + "commit": "20148869e301d236bbf335e8545131488ad57f27", + "sha256": "0lns0w7zvi8afsr64kcyn68arrjf7bqmpadw12zj100nnnvs40lh", + "fetcher": "github", + "repo": "manuel-uberti/goto-last-point", + "unstable": { + "version": [ + 20190525, + 1855 + ], + "commit": "7ea191df18ff4774cf1dc568e1726143dd54ea02", + "sha256": "1x8sr1xrarb7s7hxp4wg96ng7hb3li3ahixybkzcisz4ga9iwj8x" + } + }, + { + "ename": "goto-line-preview", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "1id3msndzav59ljwdp7xnh0glbzc8d12phpywlb89h5nclj0rzsl", + "fetcher": "github", + "repo": "elpa-host/goto-line-preview", + "unstable": { + "version": [ + 20190308, + 736 + ], + "commit": "772fb942777a321b4698add1b94cff157f23a93b", + "sha256": "16zil8kjv7lfmy11g88p1cm24j9db319fgkwzsgf2vzp1m15l0pc" + } + }, + { + "ename": "govc", + "commit": "92d6391318021c63b06fe39b0ca38f667bb45ae9", + "sha256": "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v", + "fetcher": "github", + "repo": "vmware/govmomi", + "unstable": { + "version": [ + 20180524, + 2023 + ], + "deps": [ + "dash", + "json-mode", + "magit-popup", + "s" + ], + "commit": "ee35ba9e79122df9873f2dc948bcce912a9c9d7f", + "sha256": "0ab5y8dcx7krphgjd21yd1f635lr6j1y5304pq9vxx1nw0g3c0f8" + }, + "stable": { + "version": [ + 0, + 21, + 0 + ], + "deps": [ + "dash", + "json-mode", + "magit-popup", + "s" + ], + "commit": "a0fef816799db3e430bb7a5ac951e7835fe4d56b", + "sha256": "0mig8w0szxqcii3gihrsm8n8hzziq9l6axc5z32nw9kiy9bi4130" + } + }, + { + "ename": "govet", + "commit": "7e4a5f5031c76056d8f1b64b27a39a512c7c59cd", + "sha256": "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy", + "fetcher": "github", + "repo": "meshelton/govet", + "unstable": { + "version": [ + 20170808, + 1724 + ], + "commit": "1c05817cf8b96589076c7ac4e52ee58a860a0cbf", + "sha256": "1n223i87xmk8p8h8dswnhhvazy0z53dzl36gmk9y7ck8bd9vz706" + } + }, + { + "ename": "gpastel", + "commit": "9b70e05ff0a074f9e2f1373e8495dc8df462deea", + "sha256": "0mjy4n26s89b481dby018l80glgfwfaacihmd7vhh2c75ns671a6", + "fetcher": "github", + "repo": "DamienCassou/gpastel", + "unstable": { + "version": [ + 20181229, + 1404 + ], + "commit": "d5fc55bc825203f998537c5834718e665bb87c29", + "sha256": "1ggyd2jy7j3kvqsdxbfcsk41r3d31b8bcyncwglm9m1dh4vx5qsr" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "8a5522b274f79d55d7c9a0b2aaf062526f9253c7", + "sha256": "01pnnqcxni55xr7r2lxcnsqiszm2w5iwnjcwp748p1faq6ywhi19" + } + }, + { + "ename": "grab-mac-link", + "commit": "e4cc8a72a9f161f024ed9415ad281dbea5f07a18", + "sha256": "1a4wyvx1mlgnd45nn99lwy3vaiwhi1nrphfln86pb6z939dxakj3", + "fetcher": "github", + "repo": "xuchunyang/grab-mac-link.el", + "unstable": { + "version": [ + 20190419, + 1307 + ], + "commit": "b52d29cd78a60cfe874667a8987ed10e8eb0f172", + "sha256": "15qznll0358cgqb9m9hpr2if2rsskr29mpsg7h32xb6njqnn741m" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "8bf05a69758fd10a4303c5c458cd91a49ab8b1b2", + "sha256": "12x47k3mm5hvhgn7fmfi7bqfa3naz8w1sx6fl3rmnbzvldb89i1k" + } + }, + { + "ename": "grab-x-link", + "commit": "64d4d4e6f9d6a3ea670757f248afd355baf1d933", + "sha256": "1kni49n1v716w4hjfm49mk25jshfc6idpby0k58qvngbfqk3kzy5", + "fetcher": "github", + "repo": "xuchunyang/grab-x-link", + "unstable": { + "version": [ + 20180205, + 1146 + ], + "deps": [ + "cl-lib" + ], + "commit": "d19f0c0da0ddc55005a4c1cdc2b8c5de8bea1e8c", + "sha256": "1l9jg2w8ym169b5dhg3k5vksbmicg4n1a55x7ddjysf8n887cpid" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "d19f0c0da0ddc55005a4c1cdc2b8c5de8bea1e8c", + "sha256": "1l9jg2w8ym169b5dhg3k5vksbmicg4n1a55x7ddjysf8n887cpid" + } + }, + { + "ename": "gradle-mode", + "commit": "771cc597daebf9b4aa308f8b350af91a515b44c9", + "sha256": "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g", + "fetcher": "github", + "repo": "jacobono/emacs-gradle-mode", + "unstable": { + "version": [ + 20150313, + 1905 + ], + "deps": [ + "s" + ], + "commit": "e4d665d5784ecda7ddfba015f07c69be3cfc45f2", + "sha256": "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc" + }, + "stable": { + "version": [ + 0, + 5, + 5 + ], + "deps": [ + "s" + ], + "commit": "579de06674551919cddac9cfe42129f4fb0155c9", + "sha256": "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782" + } + }, + { + "ename": "grails", + "commit": "be0196207245ea9d23fda09121d624db9ea6d83d", + "sha256": "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw", + "fetcher": "github", + "repo": "lifeisfoo/emacs-grails", + "unstable": { + "version": [ + 20160417, + 636 + ], + "commit": "fa638abe5c37f3f8af4fcd32f212453185ce50b1", + "sha256": "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "fa638abe5c37f3f8af4fcd32f212453185ce50b1", + "sha256": "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b" + } + }, + { + "ename": "grails-mode", + "commit": "3fe318b4e51a280a55c01fa30455e4a180df8bd6", + "sha256": "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4", + "fetcher": "github", + "repo": "Groovy-Emacs-Modes/groovy-emacs-modes", + "unstable": { + "version": [ + 20160504, + 911 + ], + "commit": "aa531c659758b896ff8fbd307080ce0d1d04ebfb", + "sha256": "0jcqldpgx9b0xsvxvj7lgqrb39cwn7adggrlxfcm0pgc40dpfwb4" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "d7b362e6186d263ec3eefc141dbb5b27a8773f24", + "sha256": "0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2" + } + }, + { + "ename": "grails-projectile-mode", + "commit": "35d49029c1f665ad40e543040d98d5a770bfea96", + "sha256": "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn", + "fetcher": "github", + "repo": "yveszoundi/grails-projectile-mode", + "unstable": { + "version": [ + 20160327, + 1324 + ], + "deps": [ + "cl-lib", + "projectile" + ], + "commit": "8efca50ce92b556fe9d467b157d7aec635bcc017", + "sha256": "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "cl-lib", + "projectile" + ], + "commit": "8efca50ce92b556fe9d467b157d7aec635bcc017", + "sha256": "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1" + } + }, + { + "ename": "grandshell-theme", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "1r0r0r0g116f4jp3rip8mjqqgdam4h5dr5qvdglr9xpirfcw6wq3", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/grandshell-theme.git", + "unstable": { + "version": [ + 20180606, + 517 + ], + "commit": "0ed8e4273607dd4fcaa742b4097259233b09eda6", + "sha256": "04vx5p1ffln5b9rxgfi15q735plxcjvskby3c5k4slgwf4p91bpq" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "22c8df52c0fb8899fa748fa2980947ab38b53380", + "sha256": "08556ci80iycm4qkvbnrci55wyv91b4fh6sjp0im0ywndmrq3yyc" + } + }, + { + "ename": "graphene", + "commit": "0206d6adcb7855c2174c3cd506b71c21def1209b", + "sha256": "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k", + "fetcher": "github", + "repo": "rdallasgray/graphene", + "unstable": { + "version": [ + 20180529, + 1112 + ], + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-completing-read+", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ], + "commit": "cc8477fcfb7771ea4e5bbaf3c01f9e679234c1c1", + "sha256": "0j0igcmfl61c4pakqmyxpwr4kjar9i81vkl84rw19phc7k9497nb" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "company", + "dash", + "exec-path-from-shell", + "flycheck", + "graphene-meta-theme", + "ido-completing-read+", + "ppd-sr-speedbar", + "smartparens", + "smex", + "sr-speedbar", + "web-mode" + ], + "commit": "cc8477fcfb7771ea4e5bbaf3c01f9e679234c1c1", + "sha256": "0j0igcmfl61c4pakqmyxpwr4kjar9i81vkl84rw19phc7k9497nb" + } + }, + { + "ename": "graphene-meta-theme", + "commit": "44af719ede73c9fe7787272d7868587ce8966e3d", + "sha256": "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q", + "fetcher": "github", + "repo": "rdallasgray/graphene-meta-theme", + "unstable": { + "version": [ + 20161204, + 1607 + ], + "commit": "62cc73fee31f1bd9474027b83a249feee050271e", + "sha256": "1ydl6dlg5z4infq8j09izwgs6n97yza6nbq5rs1xfv00zd9gr63c" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "commit": "8e75528529f460b1b5910467c4fc1f516e1a57b9", + "sha256": "03wllxivl95gsknjkmljm3kgjkwixwxaksaxv8i9c0zjrb2wwm24" + } + }, + { + "ename": "graphql", + "commit": "3e801ae56f11b64a5a3e52cf1a6c152940ab8c97", + "sha256": "139fng2psn535ymqa7c6hm1r7ja1gs5mdvb487jj6fh0bl9wq8la", + "fetcher": "github", + "repo": "vermiculus/graphql.el", + "unstable": { + "version": [ + 20180912, + 31 + ], + "commit": "e2b309689f4faf9225f290080f836e988c5a576d", + "sha256": "1hqvsr2s2lbdssbx3v8nqxdhhdvydx6hpbhh4rlnfcadhhs0f6nr" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "672dd9ebd7e67d8089388b0c484cd650e76565f3", + "sha256": "0sp0skc1rnhi39szfbq1i99pdgd3bhn4c15cff05iqhjy2d4hniw" + } + }, + { + "ename": "graphql-mode", + "commit": "3850073e6706d4d8151bc6ab12963a19deae8be9", + "sha256": "074dc8fgbrikb5inv837n9bpmz1ami7aaxsqcci1f94x3iw8i74i", + "fetcher": "github", + "repo": "davazp/graphql-mode", + "unstable": { + "version": [ + 20190731, + 1825 + ], + "commit": "e757919fe3cf6d687d5d970662964fc37115b1d6", + "sha256": "037f73giyjrr2iqxhfmw1k4qhww2f1vi4anl4fqf07rjy1k4674j" + } + }, + { + "ename": "graphviz-dot-mode", + "commit": "6e2f1e66b33fd95142be4622c996911e38d56281", + "sha256": "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2", + "fetcher": "github", + "repo": "ppareit/graphviz-dot-mode", + "unstable": { + "version": [ + 20181118, + 551 + ], + "commit": "243de72e09ddd5cdc4863613af8b749827a5e1cd", + "sha256": "10ss7mhlkqvxh7y2w7njzh3hiz3r7y49a3q9j41bwipia4yzq4n5" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "7301cc276206b6995d265bcb9eb308bb83c760be", + "sha256": "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0" + } + }, + { + "ename": "grapnel", + "commit": "dd482e4b2c45921b81c5fb3dfce53acfec3c3093", + "sha256": "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r", + "fetcher": "github", + "repo": "leathekd/grapnel", + "unstable": { + "version": [ + 20131001, + 1534 + ], + "commit": "fbd0f9a51139973d35e4014855964fa435e8ecaf", + "sha256": "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c" + }, + "stable": { + "version": [ + 0, + 5, + 3 + ], + "commit": "7387234eb3f0285a490fddb1e06a4bf029719fb7", + "sha256": "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5" + } + }, + { + "ename": "grass-mode", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v", + "fetcher": "bitbucket", + "repo": "tws/grass-mode.el", + "unstable": { + "version": [ + 20170503, + 1500 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "1ae8eae881173ddff64982d1fd0e14d4e7793fc1", + "sha256": "1sl3d5759fjm98pb50ykz2c05czb2298ipccwj2qz2hdzq63hfv8" + } + }, + { + "ename": "grayscale-theme", + "commit": "2993881c7285cfbfc590b4118db46bfd435817bc", + "sha256": "0jbzb1zxv5mg3pivii31d4kz75igm339nw4cmx9kgzia9zal5f1r", + "fetcher": "github", + "repo": "belak/emacs-grayscale-theme", + "unstable": { + "version": [ + 20171005, + 802 + ], + "commit": "53ad50e10e68f2f076ebfc96e10ecef7a932d38d", + "sha256": "034pa35cjl07bhqdyw3xrcl97xcdg7jg0jvgn034fs3hssmsyxgv" + } + }, + { + "ename": "greek-polytonic", + "commit": "bf0e6206be0e6f416c59323cf10bf052882863f3", + "sha256": "0rp5iwiznp95r8srxvq72hna2hgcqj4q1dvg2ma86cqzgqwr4xnw", + "fetcher": "github", + "repo": "jhanschoo/greek-polytonic", + "unstable": { + "version": [ + 20190303, + 1358 + ], + "commit": "114cba0f57cc077871693c799b807df2292341ec", + "sha256": "09prvjnhvirip6s0rlsp7pyyaj9xswvvjskxb2977ymki8ijxmqf" + } + }, + { + "ename": "green-is-the-new-black-theme", + "commit": "3e42528d5677fd90515cad47266c07ea3d4363fb", + "sha256": "03q0vj409icmawffy2kd9yl04r453q80cy1p9y4i3xk368z0362g", + "fetcher": "github", + "repo": "fredcamps/green-is-the-new-black-emacs", + "unstable": { + "version": [ + 20190724, + 1252 + ], + "commit": "34f0372878a07a23bf1d9418aa380c403d272457", + "sha256": "1gfp5n4lknbw2p5wik0kq5i80p90x9gwd1zif7sjz5g3ximmgg04" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "34f0372878a07a23bf1d9418aa380c403d272457", + "sha256": "1gfp5n4lknbw2p5wik0kq5i80p90x9gwd1zif7sjz5g3ximmgg04" + } + }, + { + "ename": "green-phosphor-theme", + "commit": "c6770f5d800232c152833d32efb814005e65ffc6", + "sha256": "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh", + "fetcher": "github", + "repo": "aalpern/emacs-color-theme-green-phosphor", + "unstable": { + "version": [ + 20150515, + 1447 + ], + "commit": "fa42f598626adfdc5450e5c380fa2d5df6110f28", + "sha256": "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp" + } + }, + { + "ename": "green-screen-theme", + "commit": "821744ca106f1b74941524782e4581fc93800fed", + "sha256": "0a45xcl74kp3v39bl169sq46mqxiwvvis6jzwcy6yrl2vqqi4mab", + "fetcher": "github", + "repo": "rbanffy/green-screen-emacs", + "unstable": { + "version": [ + 20180816, + 1502 + ], + "commit": "774e8f6c033786406267f71ec07319d906a30b75", + "sha256": "0f12lqgfi1vlhq8p5ia04vlmvmyb4f40q7dm2nbh5y8r6k89hisg" + }, + "stable": { + "version": [ + 1, + 0, + 26 + ], + "commit": "774e8f6c033786406267f71ec07319d906a30b75", + "sha256": "0f12lqgfi1vlhq8p5ia04vlmvmyb4f40q7dm2nbh5y8r6k89hisg" + } + }, + { + "ename": "gregorio-mode", + "commit": "34cdc536cd0509c5a151c16f44f4db2c5b44365f", + "sha256": "1x3z4gc88h13miz72a597lz9hcn2lxps9jvldl2j62s6nvr88pff", + "fetcher": "github", + "repo": "jsrjenkins/gregorio-mode", + "unstable": { + "version": [ + 20170705, + 1451 + ], + "commit": "736fd3d05fb67f707cca1a7ce24e3ee7ca5e9567", + "sha256": "1w13a3irak6i74kl7va8d2simd2kjvw5253s8jvapi1mg4ifw379" + } + }, + { + "ename": "grep-a-lot", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1cbl4gl91dx73q3i2glsivfxd8jkanrcrzy35zf6rb7raj7rc1bw", + "fetcher": "github", + "repo": "ZungBang/emacs-grep-a-lot", + "unstable": { + "version": [ + 20131006, + 1347 + ], + "commit": "9f9f645b9e308a0d887b66864ff97d0fca1ba4ad", + "sha256": "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw" + } + }, + { + "ename": "grep-context", + "commit": "41dbaf627ae4ef86c222d2b6b5d3523fdb9a4637", + "sha256": "175s9asbnk2wlgpzc5izcd3vlfvdj064n38myy9qf4awn12c2y1g", + "fetcher": "github", + "repo": "mkcms/grep-context", + "unstable": { + "version": [ + 20181002, + 1654 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "5a4e3efdf775755c1bbefcfe4b461c1166d81d7d", + "sha256": "00q7l4a3c0ay6g5ff9bfa2qgkiswsyh4s6pqnpg0zpzhvv5710f5" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "4c63d0f2654dee1e249c2054d118d674a757bd45", + "sha256": "0n2bc9q6bvbfpaqivp3ajy9ad1wr7hfdd98qhnspsap67p73kfn4" + } + }, + { + "ename": "greymatters-theme", + "commit": "d13621f3033b180d06852d90bd3ebe03276031f5", + "sha256": "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr", + "fetcher": "github", + "repo": "mswift42/greymatters-theme", + "unstable": { + "version": [ + 20150621, + 1123 + ], + "commit": "a7220a8c6cf18ccae2b76946b6f01188a7c9d5d1", + "sha256": "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp" + } + }, + { + "ename": "grin", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0rak710fp9c7wx39qn4dc9d0xfjr5w7hwklxh99v1x1ihkla9378", + "fetcher": "bitbucket", + "repo": "dariusp686/emacs-grin", + "unstable": { + "version": [ + 20110806, + 658 + ], + "commit": "f541aa22da52b8ff2f7af79bc5e4b58b9f5db8be", + "sha256": "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2" + } + }, + { + "ename": "grizzl", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb", + "fetcher": "github", + "repo": "grizzl/grizzl", + "unstable": { + "version": [ + 20160818, + 737 + ], + "deps": [ + "cl-lib" + ], + "commit": "1e917253ce2b846f0272b8356fad3dbff9cd513a", + "sha256": "1hw932zvhyxajdgd0h18vr3w0sr0vp4334phlr1aysv7rjfgnpkr" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "c775de1c34d1e5a374e2f40c1ae2396b4b003fe7", + "sha256": "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs" + } + }, + { + "ename": "groovy-imports", + "commit": "b18a6842805856062e9452dc32bf0fd458f7d51a", + "sha256": "09yjkwsm192lgala1pvxw47id4j7362sl3j1hn9ald2m8m3ddyfs", + "fetcher": "github", + "repo": "mbezjak/emacs-groovy-imports", + "unstable": { + "version": [ + 20161003, + 851 + ], + "deps": [ + "pcache", + "s" + ], + "commit": "e56d7dda617555ec6205644d32ffddf2e1fa43d9", + "sha256": "060zxl2y4p50g5fwgplgx07h5akfplp49rkv5cx09rqlcyzqhqwa" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "pcache", + "s" + ], + "commit": "e56d7dda617555ec6205644d32ffddf2e1fa43d9", + "sha256": "060zxl2y4p50g5fwgplgx07h5akfplp49rkv5cx09rqlcyzqhqwa" + } + }, + { + "ename": "groovy-mode", + "commit": "3fe318b4e51a280a55c01fa30455e4a180df8bd6", + "sha256": "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal", + "fetcher": "github", + "repo": "Groovy-Emacs-Modes/groovy-emacs-modes", + "unstable": { + "version": [ + 20190407, + 2314 + ], + "deps": [ + "dash", + "s" + ], + "commit": "aa531c659758b896ff8fbd307080ce0d1d04ebfb", + "sha256": "0jcqldpgx9b0xsvxvj7lgqrb39cwn7adggrlxfcm0pgc40dpfwb4" + }, + "stable": { + "version": [ + 2, + 0 + ], + "deps": [ + "s" + ], + "commit": "d7b362e6186d263ec3eefc141dbb5b27a8773f24", + "sha256": "0c1d4cbnlny8gpcd20zr1wxx6ggf28jgh7sgd5r1skpsvjpbfqx2" + } + }, + { + "ename": "gruber-darker-theme", + "commit": "87ade74553c04cb9dcfe16d03f263cc6f1fed046", + "sha256": "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi", + "fetcher": "github", + "repo": "rexim/gruber-darker-theme", + "unstable": { + "version": [ + 20180529, + 712 + ], + "commit": "c7687ec0511941db1371dcd70b31061d74aa5668", + "sha256": "1dn4vb07wrnc6w94563isx8jfv6vbpp04kh0jfqjmc7nbmyzpaf2" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "0c08d77e615aceb9e6e1ca66b1fbde275200cfe4", + "sha256": "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd" + } + }, + { + "ename": "grunt", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz", + "fetcher": "github", + "repo": "gempesaw/grunt.el", + "unstable": { + "version": [ + 20160316, + 1528 + ], + "deps": [ + "ansi-color", + "dash" + ], + "commit": "4c269e2738658643ec2ed9ef61a2a3d71b08d304", + "sha256": "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7" + }, + "stable": { + "version": [ + 1, + 3, + 2 + ], + "deps": [ + "ansi-color", + "dash" + ], + "commit": "e27dbb6b3de9b36c7fb28f69aa06b4b2ea32d4b9", + "sha256": "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k" + } + }, + { + "ename": "gruvbox-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "12z89fjfqcp9rx2f2x9wcffgxxv3kjn1dabyk0cjf286hgvmgz88", + "fetcher": "github", + "repo": "greduan/emacs-theme-gruvbox", + "unstable": { + "version": [ + 20190720, + 337 + ], + "deps": [ + "autothemer" + ], + "commit": "37548041b6c541b69ab6d18b53f7513781a1f2b3", + "sha256": "08cmwspkijrfr1k0p7ady44vxjv27yjp7kj3achp024j4g2jvybc" + }, + "stable": { + "version": [ + 1, + 28, + 0 + ], + "deps": [ + "autothemer" + ], + "commit": "69a6ddf6c7e8c84174b94900ba71ddd08ec0237f", + "sha256": "00qq92gp1g55pzm97rh7k0dgxy44pxziridl8kqm4rbpi31r7k9p" + } + }, + { + "ename": "gs-mode", + "commit": "bc1aa5335810e3d6572ebe9cd8949932b74d0f46", + "sha256": "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq", + "fetcher": "github", + "repo": "yyr/emacs-grads", + "unstable": { + "version": [ + 20151202, + 1006 + ], + "commit": "1a13051db21b999c7682a015b33a03096ff9d891", + "sha256": "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31" + } + }, + { + "ename": "gscholar-bibtex", + "commit": "9fa546d3dce59b07a623ee83e3befe139dc10481", + "sha256": "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az", + "fetcher": "github", + "repo": "cute-jumper/gscholar-bibtex", + "unstable": { + "version": [ + 20190130, + 555 + ], + "commit": "3b651e3de116860eb1f1aef9b547a561784871fe", + "sha256": "0wwjz4k1hsc1z489ygz4kh3dh23d7pnkgg2js07as7038hmhkjcb" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "commit": "ba4ce159e385d695d8560e8b06b3cbe48424861c", + "sha256": "0idnfhk17avp0r4706grjqqkz0xl98gs0bx7wrkvwym3y2gadlz2" + } + }, + { + "ename": "gsettings", + "commit": "ebdd0285684c712748d6353bd2a4774bd97dd521", + "sha256": "168zq3gp874k66jv8k78i6b1cb9042763aj9wpmcs9bz437hhw32", + "fetcher": "github", + "repo": "wbolster/emacs-gsettings", + "unstable": { + "version": [ + 20190513, + 1003 + ], + "deps": [ + "dash", + "gvariant", + "s" + ], + "commit": "3009335a077636347defd08d24fb092495d16d3e", + "sha256": "0xvj0p533laxvhv9jvgdzw5pix6zlai3jp43n2bi0kwmq21clwgz" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "dash", + "gvariant", + "s" + ], + "commit": "1dd9a6a3036d76d8e680b2764c35b31bf5e6aff7", + "sha256": "0bv6acy3b6pbjqm24yxgi7xdd3x0c2b7s5sq65sb3lxf8hy5gdf6" + } + }, + { + "ename": "gtk-pomodoro-indicator", + "commit": "a58f1acaafc459e055d751acdb68427e4b11275e", + "sha256": "1lkz1bk3zl51jdgp7pg6sr57drdwz8mlvl9ryky3iv73kr5i0q6c", + "fetcher": "github", + "repo": "abo-abo/gtk-pomodoro-indicator", + "unstable": { + "version": [ + 20171230, + 1640 + ], + "commit": "eb59b229de0dde307b20654075a9bbac69899a66", + "sha256": "0dmaazcscg9mdsmij26873af5jl2np4q9xf2klw1jmcl61wzggb0" + } + }, + { + "ename": "guess-language", + "commit": "6e78cb707943fcaaba0414d7af2af717efce84d0", + "sha256": "1p8j18hskvsv4pn3cal5s91l19hgshq8hpclmp84z9hlnj9g9fpm", + "fetcher": "github", + "repo": "tmalsburg/guess-language.el", + "unstable": { + "version": [ + 20190325, + 1436 + ], + "deps": [ + "cl-lib" + ], + "commit": "e64d88f287a547198e4c96e2fff543e103f2b456", + "sha256": "0dmbr7gylnc1dsjaldfw51nmli66lizs1w5a8p1zacpf7w5kf7x2" + } + }, + { + "ename": "guide-key", + "commit": "490b81308ae8132d8c3fd8c3951be88159719172", + "sha256": "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf", + "fetcher": "github", + "repo": "kai2nenobu/guide-key", + "unstable": { + "version": [ + 20150108, + 635 + ], + "deps": [ + "dash", + "popwin", + "s" + ], + "commit": "8f8b839f42edd53af13d588254f07727108ae312", + "sha256": "0awx1s5qsg92flha8i0j72zg4kax2h2vi62qikk19sniiwdlrv4i" + }, + "stable": { + "version": [ + 1, + 2, + 5 + ], + "deps": [ + "popwin" + ], + "commit": "626f3aacfe4561eddc46617570426246b88e9cab", + "sha256": "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g" + } + }, + { + "ename": "guide-key-tip", + "commit": "1f23db7563654ab58632d56e3b01d2f78276fc3e", + "sha256": "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06", + "fetcher": "github", + "repo": "aki2o/guide-key-tip", + "unstable": { + "version": [ + 20161011, + 823 + ], + "deps": [ + "guide-key", + "pos-tip" + ], + "commit": "02c5d4b0b65f3e91be5a47f0ff1ae5e86e00c64e", + "sha256": "1xkrfjmhprnj8i39a85wfcs5whm93fw8l57c606wdhiwqj719ciz" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "guide-key", + "pos-tip" + ], + "commit": "e08b2585228529aeaae5e0ae0948f898e83a6200", + "sha256": "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3" + } + }, + { + "ename": "guix", + "commit": "b3d8c73e8a946b8265487a0825d615d80aa3337d", + "sha256": "0h4jwc4h2jv09c6rngb614fc39qfy04rmvqrn1l54hn28s6q7sk9", + "fetcher": "github", + "repo": "alezost/guix.el", + "unstable": { + "version": [ + 20190507, + 1711 + ], + "deps": [ + "bui", + "dash", + "edit-indirect", + "geiser", + "magit-popup" + ], + "commit": "11e0dbf6491300d250efb3dc09d634b01e86b35b", + "sha256": "0j60v0h850cwxik1mhlnmqms47dkkqcnfx53qs66hi1zyp7pax5z" + }, + "stable": { + "version": [ + 0, + 5, + 1, + 1 + ], + "deps": [ + "bui", + "dash", + "edit-indirect", + "geiser", + "magit-popup" + ], + "commit": "c4c96663fefe7e007c372e7d24d6e7016b70e4ee", + "sha256": "1730q2dm84f15ycjdf3dgl2j8770mhr6qnyzxgac3zzkjr8pyvq7" + } + }, + { + "ename": "gulp-task-runner", + "commit": "34a2bede5ea70cf9df623c32e789d78205f9ebb0", + "sha256": "0211mws99bc9ipg7r3qqm1n7gszvwil31psinf0250wliyppjij7", + "fetcher": "github", + "repo": "NicolasPetton/gulp-task-runner", + "unstable": { + "version": [ + 20170718, + 2041 + ], + "commit": "877990e956b1d71e2d9c7c3e5a129ad199b9debb", + "sha256": "13qy4x4ap43qm5w2vrsy6w01z2s2kymfr9qvlj2yri4xk3r4vrps" + } + }, + { + "ename": "guru-mode", + "commit": "e60af6ccb902d8ef00cfecbb13cafebbe3b00d89", + "sha256": "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs", + "fetcher": "github", + "repo": "bbatsov/guru-mode", + "unstable": { + "version": [ + 20170730, + 731 + ], + "commit": "c180e05ebc1484764aad245c85b69de779826e4e", + "sha256": "0qb6yr6vbic0rh8ayrpbz5byq7jxmwm1fc9l4alpz7dhyb11z07v" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "62a9a0025249f2f8866b94683c4114c39f48e1fa", + "sha256": "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0" + } + }, + { + "ename": "gvariant", + "commit": "7a616ac75f77b1e61e1386bd905b6bcf3d8aaa3f", + "sha256": "1ycrnfq60z9fycgqmp1y8jna0l0c2b6mlg6ggimb0rml1ili6npm", + "fetcher": "github", + "repo": "wbolster/emacs-gvariant", + "unstable": { + "version": [ + 20190513, + 1005 + ], + "deps": [ + "parsec" + ], + "commit": "b162867c03ead58784c47996ae329355ecea2869", + "sha256": "0yqgj3zcpmga9v085l98yr02k8bhgd4bzshmyjl1x98s50n207jp" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "parsec" + ], + "commit": "79c34d11ee6a34f190f1641a133d34b0808a1143", + "sha256": "18ld0wv8r5wlbicqym8vdw33la0bn59s7bxm2fw0w97qwjka8g8k" + } + }, + { + "ename": "gvpr-mode", + "commit": "ab25afcf4232082dc0e48706734f141a308912a7", + "sha256": "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw", + "fetcher": "github", + "repo": "rodw/gvpr-lib", + "unstable": { + "version": [ + 20131208, + 1718 + ], + "commit": "3d6cc6f4416faf2a1913821d12ba6eb624362af0", + "sha256": "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s" + } + }, + { + "ename": "gxref", + "commit": "429b9150d4054fcadab8c5ca3b688921eeb19b78", + "sha256": "06qlfjclfx00m8pr7lk6baim3vjk5i0m75i1p4aihp2vflvgjaby", + "fetcher": "github", + "repo": "dedi/gxref", + "unstable": { + "version": [ + 20170411, + 1753 + ], + "commit": "380b02c3c3c2586c828456716eef6a6392bb043b", + "sha256": "1c5j28rwqx53qdsqglif8yblhm2bwm4qzpl2dg0l0g3pr8pk8zjk" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "15723a9d910d7dd9ea18cab0336332cf988aeceb", + "sha256": "1l5d1kh2dy3w42i8c3z63c7mzarxixxiby2g7ay2i809yxj10y1n" + } + }, + { + "ename": "habamax-theme", + "commit": "77386484ad0b31c2818fae52cd312821c4632cb8", + "sha256": "1rmir9gc1niwkshxg1826nkh8xxmpim5pbhp61wx1m273lfn2h69", + "fetcher": "github", + "repo": "habamax/habamax-theme", + "unstable": { + "version": [ + 20181001, + 850 + ], + "commit": "6e86a1b23b6e2aaf40d4374b5673da00a28be447", + "sha256": "0k96mdxg28bbm14d6rdlin8l4c75i9wicj3mxrd0bys0shxl9jm6" + } + }, + { + "ename": "habitica", + "commit": "cf9543db3564f4806440ed8c5c30fecbbc625fa1", + "sha256": "0g7rb8ip5d6xvlsfk8cvf81hgzlq5p4kw9pkisjq9ri8mvkfmxf3", + "fetcher": "github", + "repo": "abrochard/emacs-habitica", + "unstable": { + "version": [ + 20190721, + 1620 + ], + "deps": [ + "org" + ], + "commit": "c45c602ddf9d6cbb0e3baf5cb3e1b7ef90f2759d", + "sha256": "0wgnzn3z98bl28jgqi7xklw9fwx2wwgihj3mq0jb8ah4vn70d0j3" + } + }, + { + "ename": "hack-mode", + "commit": "27e238e5d2aaca810fd3fb6836ca49c9fa07cc87", + "sha256": "1zs7p6fczj526wz9kvyhmxqkgrkfkkrvm9ma4cg349sfpjpxwkbl", + "fetcher": "github", + "repo": "hhvm/hack-mode", + "unstable": { + "version": [ + 20190718, + 1518 + ], + "deps": [ + "s" + ], + "commit": "7f94e1fdc18b8722b56028e7532a68aa783138b5", + "sha256": "053xv6k9lplp68xnk465349khw7a4lfmff3fc4grdrxqjif11v70" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "s" + ], + "commit": "4e50d9f46b044c0d885af3a486bf6275c121f29e", + "sha256": "1s06m8bam7wlhqw0gbc443lfrz51mj05pzvbmjzqadqn4240v4jw" + } + }, + { + "ename": "hack-time-mode", + "commit": "6481dc9f487c5677f2baf1bffdf8f2297185345e", + "sha256": "0vz72ykl679a69sb0r2h9ymcr3xms7bij1w6vxndlfw5v9hg3hk5", + "fetcher": "gitlab", + "repo": "marcowahl/hack-time-mode", + "unstable": { + "version": [ + 20190529, + 855 + ], + "commit": "df8e86ab04beb655bf5b3860f8bea41cf1fbc3eb", + "sha256": "1n4kirb65r4s8k2kiga857fk8zylk14ibq0k2vdx5b8axbz71ggh" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "95ed4c8a2410e1232453b3a49274a46afb740b1e", + "sha256": "083b9kwhh4bq0dwn6iskrrmsgxicqg08p8k6n1m1xadgs61lgkjb" + } + }, + { + "ename": "hacker-typer", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0vf18hylhszvplam6c4yynr53zc3n816p9k36gywm6awwblfpyfb", + "fetcher": "github", + "repo": "dieggsy/emacs-hacker-typer", + "unstable": { + "version": [ + 20170206, + 1520 + ], + "commit": "d5a23714a4ccc5071580622f278597d5973f40bd", + "sha256": "13wp7cg9d9ij44inxxyk1knczglxrbfaq50wyhc4x5zfhz5yw7wx" + }, + "stable": { + "version": [ + 1, + 0, + 6 + ], + "commit": "d5a23714a4ccc5071580622f278597d5973f40bd", + "sha256": "13wp7cg9d9ij44inxxyk1knczglxrbfaq50wyhc4x5zfhz5yw7wx" + } + }, + { + "ename": "hackernews", + "commit": "c43a342e47e5ede468bcf51a60d4dea3926f51bd", + "sha256": "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a", + "fetcher": "github", + "repo": "clarete/hackernews.el", + "unstable": { + "version": [ + 20190529, + 1120 + ], + "commit": "2362d7b00e59da7caddc8c0adc24dccb42fddef9", + "sha256": "1hcc5b173yzcvvd2ls3jxrmsw2w9bi21m9hcpcirkn0nh93ywadv" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "json" + ], + "commit": "916c3da8da45c757f5ec2faeed57fa370513d4ac", + "sha256": "09bxaaczana1cfvxyk9aagjvdszkj0j1yldl5r4xa60b59lxihsg" + } + }, + { + "ename": "hal-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0nlan5f3llhn04p86a6l47dl9g83a51wzrchs2q8rvfcy4161nn4", + "fetcher": "github", + "repo": "machinekoder/hal-mode", + "unstable": { + "version": [ + 20160704, + 1746 + ], + "commit": "cd2f66f219ee520198d4586fb6b169cef7ad3f21", + "sha256": "0xibwmngijq0wv9hkahs5nh02qj3ma0bkczl07hx8wnl6j27f0nj" + } + }, + { + "ename": "ham-mode", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz", + "fetcher": "github", + "repo": "Malabarba/ham-mode", + "unstable": { + "version": [ + 20150811, + 1306 + ], + "deps": [ + "html-to-markdown", + "markdown-mode" + ], + "commit": "3a141986a21c2aa6eefb428983352abb8b7907d2", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "html-to-markdown", + "markdown-mode" + ], + "commit": "3a141986a21c2aa6eefb428983352abb8b7907d2", + "sha256": "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g" + } + }, + { + "ename": "hamburg-theme", + "commit": "465ac6063c4f91652e59a8bbb493897109791728", + "sha256": "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k", + "fetcher": "github", + "repo": "mswift42/hamburg-theme", + "unstable": { + "version": [ + 20160123, + 740 + ], + "commit": "aacefdf1501d97a5afc0e63c8ead4b2463323028", + "sha256": "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am" + } + }, + { + "ename": "hamburger-menu", + "commit": "e8017730403cc0e613e3939017f85074753c3778", + "sha256": "0ws9729i51arjqwpiywcpb7y3c5sm3c9wrq8q0k0m9hpq8h11wdb", + "fetcher": "gitlab", + "repo": "iain/hamburger-menu-mode", + "unstable": { + "version": [ + 20160825, + 2031 + ], + "commit": "3568159c693c30bed7f61580e4f3b6241253ad4e", + "sha256": "1nykpp8afa0c0wiax1qn8wf5hfjaixk5kn4yhcw40z00pb8i2z5f" + }, + "stable": { + "version": [ + 1, + 0, + 5 + ], + "commit": "fd37f013c2f2619a88d3ed5311a9d1308cc82614", + "sha256": "196ydb57h4mjagjaiflvb20my561i6mdc6v6694ibdik2yns2inm" + } + }, + { + "ename": "haml-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f", + "fetcher": "github", + "repo": "nex3/haml-mode", + "unstable": { + "version": [ + 20190219, + 2102 + ], + "deps": [ + "cl-lib" + ], + "commit": "bf5b6c11b1206759d2b28af48765e04882dd1fc4", + "sha256": "1zh19b9az4ql87vjmjm0j7y6c4ir6w3rh0n4sxzqqpnv8xpd4b44" + }, + "stable": { + "version": [ + 3, + 1, + 9 + ], + "deps": [ + "ruby-mode" + ], + "commit": "5e0baf7b795b9e41ac03b55f8feff6b51027c43b", + "sha256": "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988" + } + }, + { + "ename": "hamlet-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16cyfzv2yrf249jklxdahfmsy8rg6hargjpafy4fz4a532fcbw81", + "fetcher": "github", + "repo": "lightquake/hamlet-mode", + "unstable": { + "version": [ + 20131208, + 724 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "7362b955e556a3d007fa06945a27e5b99349527d", + "sha256": "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6" + } + }, + { + "ename": "handlebars-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0wizasjihnabnqzn1226vh4gb571rs7s86bffhvkfvbk95zkiafq", + "fetcher": "github", + "repo": "danielevans/handlebars-mode", + "unstable": { + "version": [ + 20150211, + 1749 + ], + "commit": "81f6b73fea8f397807781a1b51568397af21a6ef", + "sha256": "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p" + } + }, + { + "ename": "handlebars-sgml-mode", + "commit": "87aec68ed80545a61ad46b71e7bd9dbfc7634108", + "sha256": "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w", + "fetcher": "github", + "repo": "jacott/handlebars-sgml-mode", + "unstable": { + "version": [ + 20130623, + 2333 + ], + "commit": "c76df93a9a8c1b1b3efdcc4add32bf93304192a4", + "sha256": "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k" + } + }, + { + "ename": "handoff", + "commit": "bbdb89413b3f5de680e3f9fa625039c73a377e97", + "sha256": "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w", + "fetcher": "github", + "repo": "rejeep/handoff.el", + "unstable": { + "version": [ + 20150917, + 600 + ], + "commit": "75dc7a7e352f38679f65d0ca80ad158798e168bd", + "sha256": "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r" + } + }, + { + "ename": "hardcore-mode", + "commit": "b929b3343cd5925944665e4e09b4524bca873c95", + "sha256": "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd", + "fetcher": "github", + "repo": "magnars/hardcore-mode.el", + "unstable": { + "version": [ + 20151114, + 701 + ], + "commit": "b1dda19692b4a7a58a689e81784a9b35be39e70d", + "sha256": "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "5ab75594a7a0ca236e2ac87882ee439ff6155d96", + "sha256": "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl" + } + }, + { + "ename": "hardhat", + "commit": "081aa3e1d50c2c9e5a9b9ce0716258a93279f605", + "sha256": "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z", + "fetcher": "github", + "repo": "rolandwalker/hardhat", + "unstable": { + "version": [ + 20160414, + 1413 + ], + "deps": [ + "ignoramus" + ], + "commit": "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e", + "sha256": "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5" + }, + "stable": { + "version": [ + 0, + 4, + 6 + ], + "deps": [ + "ignoramus" + ], + "commit": "9038a49ab55cd4c502cf7f07ed0d1b9b6bc3626e", + "sha256": "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5" + } + }, + { + "ename": "harvest", + "commit": "c97d3f653057eab35c612109792884334be556fe", + "sha256": "1r6brld6iq03wsr1b3jhdkxwrcxa6g6fwa1jiy1kgjsr9dq1m51c", + "fetcher": "github", + "repo": "kostajh/harvest.el", + "unstable": { + "version": [ + 20170822, + 1746 + ], + "deps": [ + "hydra", + "s", + "swiper" + ], + "commit": "7acbc0564b250521b67131ee2a0a92720239454f", + "sha256": "0wzv67kkfyaw19ddw0ra45p6rja6bk6d1xi3ak5lkyzvgqvylr3b" + }, + "stable": { + "version": [ + 0, + 3, + 8 + ], + "deps": [ + "hydra", + "s", + "swiper" + ], + "commit": "69041907bdca68d3ab6802e08ec698c3448f28a1", + "sha256": "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4" + } + }, + { + "ename": "haskell-emacs", + "commit": "5daff329a96a6d10bca11d838bbc95d1c8bcfbd9", + "sha256": "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6", + "fetcher": "github", + "repo": "knupfer/haskell-emacs", + "unstable": { + "version": [ + 20160904, + 2026 + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + }, + "stable": { + "version": [ + 4, + 0, + 3 + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + } + }, + { + "ename": "haskell-emacs-base", + "commit": "5daff329a96a6d10bca11d838bbc95d1c8bcfbd9", + "sha256": "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb", + "fetcher": "github", + "repo": "knupfer/haskell-emacs", + "unstable": { + "version": [ + 20150714, + 1559 + ], + "deps": [ + "haskell-emacs" + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + }, + "stable": { + "version": [ + 4, + 0, + 3 + ], + "deps": [ + "haskell-emacs" + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + } + }, + { + "ename": "haskell-emacs-text", + "commit": "5daff329a96a6d10bca11d838bbc95d1c8bcfbd9", + "sha256": "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy", + "fetcher": "github", + "repo": "knupfer/haskell-emacs", + "unstable": { + "version": [ + 20150713, + 1416 + ], + "deps": [ + "haskell-emacs" + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + }, + "stable": { + "version": [ + 4, + 0, + 3 + ], + "deps": [ + "haskell-emacs" + ], + "commit": "a2c6a079175904689eed7c6c200754bfa85d1ed9", + "sha256": "1xpaqcj33vyzs5yv2w4dahw8a2vb6zcb3z7y2aqc5jdg3fx9ypam" + } + }, + { + "ename": "haskell-mode", + "commit": "7f18b4dcbad4192b0153a316cff6533272898f1a", + "sha256": "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp", + "fetcher": "github", + "repo": "haskell/haskell-mode", + "unstable": { + "version": [ + 20190801, + 50 + ], + "commit": "56d67ee282294c786a92e2d83c5bebf1a6d919c1", + "sha256": "1wschs4ny2b40bg8z86vc73zq32bv9mcxkyvgbmza44zvhqpdkwp" + }, + "stable": { + "version": [ + 16, + 1 + ], + "commit": "d2ea5239bf02f3917a78a5c2dcbc5b6f6dd1b359", + "sha256": "1qk36y0v9fzass6785il65c6wb5cfj4ihhwkvgnzmbafpa8p4dvq" + } + }, + { + "ename": "haskell-snippets", + "commit": "b5534e58ea66fd90ba4a69262f0b303c7fb85af4", + "sha256": "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2", + "fetcher": "github", + "repo": "haskell/haskell-snippets", + "unstable": { + "version": [ + 20160919, + 22 + ], + "deps": [ + "cl-lib", + "yasnippet" + ], + "commit": "07b0f460b946fd1be26c29652cb0468b47782f3a", + "sha256": "0a7y3awi9hcyahggf0ghsdwvsmrhr9yq634wy9lkqjzrm2hqj0ci" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "yasnippet" + ], + "commit": "bcf12cf33a67ddc2f023a55072859e637fe4fa25", + "sha256": "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6" + } + }, + { + "ename": "haskell-tab-indent", + "commit": "371f9f45e441cdf4e95557d1e9692619fab3024a", + "sha256": "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7", + "fetcher": "git", + "url": "https://git.spwhitton.name/haskell-tab-indent", + "unstable": { + "version": [ + 20170701, + 958 + ], + "commit": "b921c076c10ba996bcfb3b38654363d30567bfa5", + "sha256": "046wiccc4kg81jcqmxzxh5karfbdg2z1d8i4nzcbz7q3n27x0l5f" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "6d3b878765b9ef7a4b2c1f5dfd47309d4ab7c419", + "sha256": "07pcn244alqaiqwj9a5jcyh4hp5n71bsnhpilqy3xv0sn6ci1v2q" + } + }, + { + "ename": "hasklig-mode", + "commit": "15a60278102de9e078b613456126945737718ce9", + "sha256": "0gz0k9ahk0jpdp893ckbby9ilkac1zp95kpfqdnpfy0a036xfwm7", + "fetcher": "github", + "repo": "minad/hasklig-mode", + "unstable": { + "version": [ + 20181110, + 1859 + ], + "commit": "386c098c93a744f6b30ad937d193eebf0fd79e1b", + "sha256": "0m1cn59fzsfqc6j1892yaaddh6g6mwiqnp1ssxhic5fcm2xk00rz" + } + }, + { + "ename": "hasky-extensions", + "commit": "e3f73e3df8476fa231d04211866671dd74911603", + "sha256": "0ymigba1d0qkrk3ccd3cx754safzmx1v5d13976571rszgmkvr15", + "fetcher": "github", + "repo": "hasky-mode/hasky-extensions", + "unstable": { + "version": [ + 20190204, + 2016 + ], + "deps": [ + "avy-menu" + ], + "commit": "e5eb3cb72a3e86be9a682169885194941ce8ef40", + "sha256": "0mhlp053s7j632pckzsj585wkda6akg1pq70r4wj78mwmcrbm6qh" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "avy-menu" + ], + "commit": "65bf7bc3967cbda23789d6c505daf73eed9a43aa", + "sha256": "0r91hcm265xa8amdfi44pn0cqf4m9zigzqx1ldgg8qd6l9r2hbh7" + } + }, + { + "ename": "hasky-stack", + "commit": "c3faf544872478c3bccf2fe7dc51d406031e4d80", + "sha256": "08ds0v5p829s47lbhibswnbn1aqfnwf6xx7p5bc5062wxdvqahw8", + "fetcher": "github", + "repo": "hasky-mode/hasky-stack", + "unstable": { + "version": [ + 20190304, + 2248 + ], + "deps": [ + "f", + "magit-popup" + ], + "commit": "98bd4046a9fca6eb98a7466694871325d787ca57", + "sha256": "1jd69blrwafc3x3l663zwfck07nrvij1p8xsprzjvx3hzyci7bdb" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "f", + "magit-popup" + ], + "commit": "a3176aece9a9ab0a36ae795965f83f4c1fa243bf", + "sha256": "1j9cvy95wnmssg68y7hcjr0fh117ix1ypa0k7rxqn84na7hyhdpl" + } + }, + { + "ename": "haste", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "175kprxqbpmssjxavcm7lyzg1cwsxkrfg9pc72vgqyfmcmjyk34c", + "fetcher": "github", + "repo": "rlister/emacs-haste-client", + "unstable": { + "version": [ + 20141030, + 2034 + ], + "deps": [ + "json" + ], + "commit": "22d05aacc3296ab50a7361222ab139fb4d447c25", + "sha256": "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88" + } + }, + { + "ename": "haxe-imports", + "commit": "db7d2b08e914aab7719c6d3a951b142ec7252f34", + "sha256": "10xh57ir49f18pzw9ihpwffchm1mba0ck1zdqsfllh3p5gry1msg", + "fetcher": "github", + "repo": "accidentalrebel/emacs-haxe-imports", + "unstable": { + "version": [ + 20170330, + 2304 + ], + "deps": [ + "pcache", + "s" + ], + "commit": "f104a641f3dfe698359d9aca1f28d9383cf43e04", + "sha256": "09crkm4ibi4m23qw4saqm0nm2i4cv40md3p768j2vniamby2q78f" + } + }, + { + "ename": "haxe-mode", + "commit": "efc5f69915e5284b955c096d5128b4fbb1c5b64b", + "sha256": "17n94a12zzigq5bn3jxqrmy1h3vb3brc60j5ckhbp5pvlf906yr9", + "fetcher": "github", + "repo": "elpa-host/haxe-mode", + "unstable": { + "version": [ + 20190703, + 619 + ], + "commit": "ed99906a808ff4a00bf6b0e231c30c240a563954", + "sha256": "1lnx8qrqix2n3bvw8blqc7msghfy1w1dzyga9s8c9z5pawqrbm85" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "commit": "ed99906a808ff4a00bf6b0e231c30c240a563954", + "sha256": "1lnx8qrqix2n3bvw8blqc7msghfy1w1dzyga9s8c9z5pawqrbm85" + } + }, + { + "ename": "haxor-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ss0kkwjyc7z7vcb89qr02p70c6m2jarr34mxmdv6ipwil58jj1s", + "fetcher": "github", + "repo": "krzysztof-magosa/haxor-mode", + "unstable": { + "version": [ + 20160618, + 1129 + ], + "commit": "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91", + "sha256": "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "commit": "6fa25a8e6b6a59481bc0354c2fe1e0ed53cbdc91", + "sha256": "0pdfvqbz4wmjl15wi3k4h7myij8v63vmyiq8g9fai18f7ad2klp1" + } + }, + { + "ename": "hayoo", + "commit": "01c1b96a4d076323264b2762d2c5a61680e21cff", + "sha256": "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9", + "fetcher": "github", + "repo": "benma/hayoo.el", + "unstable": { + "version": [ + 20140831, + 1221 + ], + "deps": [ + "json" + ], + "commit": "3ca2fb0c4d5f337d0410c21b2702dd147014e984", + "sha256": "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l" + } + }, + { + "ename": "hc-zenburn-theme", + "commit": "01ccd40bd5fc2699a4756ebf503ac50f562cf600", + "sha256": "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y", + "fetcher": "github", + "repo": "edran/hc-zenburn-emacs", + "unstable": { + "version": [ + 20150928, + 1633 + ], + "commit": "fd0024a5191cdce204d91c8f1db99ba31640f6e9", + "sha256": "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk" + } + }, + { + "ename": "hcl-mode", + "commit": "66b441525dc300b364d9be0358ae1e0fa2a8b4fe", + "sha256": "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin", + "fetcher": "github", + "repo": "syohex/emacs-hcl-mode", + "unstable": { + "version": [ + 20170107, + 827 + ], + "commit": "0f2c5ec7e7bcf77c8548e8cac8721ea935ca1b5e", + "sha256": "0qggby20h8sir4cs5af9y6b2cibix3r067sadygsrvx9ml17indw" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "6a6daf37522188a2f2fcdebc60949fc3bdabbc06", + "sha256": "0jqrgq15jz6pvx38pnwkizzfiih0d3nxqphyrc92nqpcyimg8b6g" + } + }, + { + "ename": "headlong", + "commit": "826e9a8221d9378dd3b9fcc16ce5f50fd6ed2dce", + "sha256": "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6", + "fetcher": "github", + "repo": "abo-abo/headlong", + "unstable": { + "version": [ + 20150417, + 1526 + ], + "commit": "f6830f87f236eee88263cb6976125f72422abe72", + "sha256": "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq" + } + }, + { + "ename": "heaven-and-hell", + "commit": "685edd63bf65520be304cbd564db7f5974fc5ae1", + "sha256": "19r0p78r9c78ly8awkgc33xa5b75zkkrb5kwvxbagirxdgkjv74r", + "fetcher": "github", + "repo": "valignatev/heaven-and-hell", + "unstable": { + "version": [ + 20190713, + 1830 + ], + "commit": "e1febfd60d060c110a1e43c5f093cd8537251308", + "sha256": "1bgs638nsn9hyvc9wbc2jpqm5i3hblld1mhmf0h9z0j6fjr0aapx" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "commit": "e1febfd60d060c110a1e43c5f093cd8537251308", + "sha256": "1bgs638nsn9hyvc9wbc2jpqm5i3hblld1mhmf0h9z0j6fjr0aapx" + } + }, + { + "ename": "helm", + "commit": "7e8bccffdf69479892d76b9336a4bec3f35e919d", + "sha256": "03la01d0syikjgsjq0krlp3p894djwfxqfmd2srddwks7ish6xjf", + "fetcher": "github", + "repo": "emacs-helm/helm", + "unstable": { + "version": [ + 20190801, + 1347 + ], + "deps": [ + "async", + "helm-core", + "popup" + ], + "commit": "6836fdbe30d45207a1090907b290275bd37dbc84", + "sha256": "03ydgbih60jj0f5mlf9p28mczk4clx3sddmdms5j8mpv0kfladzm" + }, + "stable": { + "version": [ + 3, + 3 + ], + "deps": [ + "async", + "helm-core", + "popup" + ], + "commit": "12c50cf2a3748f44eb8c8ccad89ebd6e63fe99f6", + "sha256": "0fqhw7r9fcsja5d3pgbipw7pkw9nj534faav6hi45413hc3gyv92" + } + }, + { + "ename": "helm-R", + "commit": "ce6eb840368f8cbee66dc061478d5096b9dacb68", + "sha256": "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1", + "fetcher": "github", + "repo": "myuhe/helm-R.el", + "unstable": { + "version": [ + 20120820, + 14 + ], + "deps": [ + "ess", + "helm" + ], + "commit": "b0eb9d5f6a483a9dbe6eb6cf1f2024d4f5938bc2", + "sha256": "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr" + } + }, + { + "ename": "helm-ack", + "commit": "258d447778525c26c65a5819ba1edc00e2bb65e5", + "sha256": "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni", + "fetcher": "github", + "repo": "syohex/emacs-helm-ack", + "unstable": { + "version": [ + 20141030, + 1226 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "889bc225318d14c6e3be80e73b1d9d6fb30e48c3", + "sha256": "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5" + }, + "stable": { + "version": [ + 0, + 13 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "5982f3cb6ec9f460ebbe06ec0ce7b3590bca3118", + "sha256": "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21" + } + }, + { + "ename": "helm-ad", + "commit": "b44ec4e059ab830a3708697fa95fada5f6a30a91", + "sha256": "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi", + "fetcher": "github", + "repo": "tnoda/helm-ad", + "unstable": { + "version": [ + 20151209, + 1015 + ], + "deps": [ + "dash", + "helm" + ], + "commit": "8ac044705d8620ee354a9cfa8cc1b865e83c0d55", + "sha256": "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4" + } + }, + { + "ename": "helm-addressbook", + "commit": "4bb805b0f2d2055aa4e88bd41239d75ec34f5785", + "sha256": "1d8byi6sr5gz1rx3kglnkp47sn9dqdd83s12d84wyay06ix3cqqi", + "fetcher": "github", + "repo": "emacs-helm/helm-addressbook", + "unstable": { + "version": [ + 20170903, + 728 + ], + "deps": [ + "addressbook-bookmark", + "cl-lib", + "helm" + ], + "commit": "62497f72d46afd3a9f9f94b27d062a82fb232de4", + "sha256": "1lmq7j19qv3pabs5arapx3lv2xhf0sgn4b2hl0l0kzph52fvics7" + } + }, + { + "ename": "helm-ag", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf", + "fetcher": "github", + "repo": "syohex/emacs-helm-ag", + "unstable": { + "version": [ + 20170209, + 1545 + ], + "deps": [ + "helm" + ], + "commit": "2fc02c4ead29bf0db06fd70740cc7c364cb650ac", + "sha256": "1gnn0byywbld6afcq1vp92cjvy4wlag9d1wgymnqn86c3b1bcf21" + }, + "stable": { + "version": [ + 0, + 58 + ], + "deps": [ + "helm" + ], + "commit": "39ed137823665fca2fa5b215f7c3e8701173f7b7", + "sha256": "0a6yls52pkqsaj6s5nsi70kzpvssdvb87bfnp8gp26q2y3syx4ni" + } + }, + { + "ename": "helm-ag-r", + "commit": "6aa1cf029db913dafb561e4c8ccc1ca9099524de", + "sha256": "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9", + "fetcher": "github", + "repo": "yuutayamada/helm-ag-r", + "unstable": { + "version": [ + 20131123, + 1531 + ], + "deps": [ + "helm" + ], + "commit": "67de4ebafe9b088db950eefa5ef590a6d78b4ac8", + "sha256": "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa" + } + }, + { + "ename": "helm-aws", + "commit": "421182006b8af17dae8b5ad453cc11e2d990a053", + "sha256": "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5", + "fetcher": "github", + "repo": "istib/helm-aws", + "unstable": { + "version": [ + 20180514, + 1032 + ], + "deps": [ + "cl-lib", + "helm", + "s" + ], + "commit": "b36c744b3f00f458635a91d1f5158fccbb5baef6", + "sha256": "11683s12dabgi9j6cyx0i147pgz4jdd240xviry7w3cxgarqki8y" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "helm" + ], + "commit": "172a4a3427d31c999e27e9ee06aa8e3822364a8c", + "sha256": "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv" + } + }, + { + "ename": "helm-backup", + "commit": "5e6eba7b201e91211e43c39e501f6066f0afeb8b", + "sha256": "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3", + "fetcher": "github", + "repo": "antham/helm-backup", + "unstable": { + "version": [ + 20180911, + 614 + ], + "deps": [ + "cl-lib", + "helm", + "s" + ], + "commit": "691fe542f38fc7c8cca409997f6a0ff5d76ad6c2", + "sha256": "0zi1md5f1haqcrclqfk4ilvr6hbm389kl3ajnyx230rq22vmb9ca" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "cl-lib", + "helm", + "s" + ], + "commit": "45a86a41ac44f90d4db2c0e9339233ee7f0be0b8", + "sha256": "0pr4qd6mi9g91lndqnk4w26lq3w8pxcgxragxj3209dgwqsxps95" + } + }, + { + "ename": "helm-bbdb", + "commit": "7025c319fcabc64576c0c6554d0d572cef697693", + "sha256": "1wlacbfs23shvyaq616r1p84h8321zz1k5nzir5qg8nr6lssi8vp", + "fetcher": "github", + "repo": "emacs-helm/helm-bbdb", + "unstable": { + "version": [ + 20190728, + 1325 + ], + "deps": [ + "bbdb", + "helm" + ], + "commit": "db69114ff1af8bf48b5a222242e3a8dd6e101e67", + "sha256": "1yfz5s83589jazyfzyrzh84iv0db2akbwj796gadpb3yhn17pl4v" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "bbdb", + "helm" + ], + "commit": "20513422102fea4c08a0433d728a7783bb4968c8", + "sha256": "0ns537fimv774n1bq0r8k4qwdpapbw96linqyhx9mxp23zkhlg80" + } + }, + { + "ename": "helm-bibtex", + "commit": "f4118a7721435240cf8489daa4dd39369208855b", + "sha256": "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z", + "fetcher": "github", + "repo": "tmalsburg/helm-bibtex", + "unstable": { + "version": [ + 20190708, + 909 + ], + "deps": [ + "biblio", + "cl-lib", + "dash", + "f", + "helm", + "parsebib", + "s" + ], + "commit": "8978ba5236af767023976c5b793a2b3e29e43c7a", + "sha256": "00fw8j3mjrq8y3qbcgj0baxnspq94a8qgxlyvrc6siraryppw65h" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "biblio", + "cl-lib", + "dash", + "f", + "helm", + "parsebib", + "s" + ], + "commit": "d6a98ac6f28d2a6a05e203115211c98333d40aca", + "sha256": "0arhy051945lxjqg77b275ny9nsv60cqj0qfpmvd8xkc07lqfn23" + } + }, + { + "ename": "helm-bibtexkey", + "commit": "d35a2e5cb5232d16d5c98168706d8b6426fcfb44", + "sha256": "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj", + "fetcher": "github", + "repo": "kenbeese/helm-bibtexkey", + "unstable": { + "version": [ + 20140214, + 1504 + ], + "deps": [ + "helm" + ], + "commit": "aa1637ea5c8c5f1817e480fc2a3750cafab3d99f", + "sha256": "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9" + } + }, + { + "ename": "helm-bind-key", + "commit": "9ae8bfd320cdef6c65da2a00439f8108d7ffa7ce", + "sha256": "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid", + "fetcher": "github", + "repo": "myuhe/helm-bind-key.el", + "unstable": { + "version": [ + 20141109, + 515 + ], + "deps": [ + "bind-key", + "helm" + ], + "commit": "9da6ad8b7530e72fb4ac67be8c6a482898dddc25", + "sha256": "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y" + } + }, + { + "ename": "helm-bitbucket", + "commit": "8df73e21dee5144147f9432efe95ee576ac5f435", + "sha256": "19bflbnavkwipf7mcrkg3i64iz50jmzm64nl7y1ka349mpy5sm04", + "fetcher": "github", + "repo": "dragonwasrobot/helm-bitbucket", + "unstable": { + "version": [ + 20190422, + 1102 + ], + "deps": [ + "helm-core" + ], + "commit": "632495036c4a6ac30e408fc74ee9f209fd5ac429", + "sha256": "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "helm-core" + ], + "commit": "632495036c4a6ac30e408fc74ee9f209fd5ac429", + "sha256": "0rbgk982jlbqh1rhns3zmndfr3lpw7m2j9z7qylghkll4k8fcjpl" + } + }, + { + "ename": "helm-bm", + "commit": "115033d7b02d3ca42902195de933f62c5f927ae4", + "sha256": "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh", + "fetcher": "github", + "repo": "yasuyk/helm-bm", + "unstable": { + "version": [ + 20160321, + 1331 + ], + "deps": [ + "bm", + "cl-lib", + "helm", + "s" + ], + "commit": "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7", + "sha256": "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "bm", + "cl-lib", + "helm", + "s" + ], + "commit": "d66341f5646c23178d4d8bffb6cfebe3fb73f1d7", + "sha256": "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil" + } + }, + { + "ename": "helm-books", + "commit": "acba3db40f37e74e1bf9e30f2abed431c259ff50", + "sha256": "0xh53vji7nsnpi0b38cjh97x26ryxk61mj7bd6m63qwh8dyhs3yx", + "fetcher": "github", + "repo": "grugrut/helm-books", + "unstable": { + "version": [ + 20170325, + 631 + ], + "deps": [ + "helm" + ], + "commit": "625aadec1541a5ca36951e4ce1301f4b6fe2bf3f", + "sha256": "1d3nps765gxmadhbd1yqn4qvs23bczglwhxkciprky7ixm5lx53k" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "helm" + ], + "commit": "b4c57d2aed596faad41a753dccbcd0a31a717b76", + "sha256": "1yr5prp9xvd73balxbn4yn52zah2advq1186ba5aanj436pal0fh" + } + }, + { + "ename": "helm-bundle-show", + "commit": "2f10f7387cca102696c38af1d8dc0fe5da5e366f", + "sha256": "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7", + "fetcher": "github", + "repo": "masutaka/emacs-helm-bundle-show", + "unstable": { + "version": [ + 20190526, + 1401 + ], + "deps": [ + "helm" + ], + "commit": "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f", + "sha256": "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2" + }, + "stable": { + "version": [ + 1, + 1, + 6 + ], + "deps": [ + "helm" + ], + "commit": "70f1ca7d1847c7d5cd5a3e488562cd4a295b809f", + "sha256": "12wz98fcs8v8w74ck4jqbh47pp5956xxh9ld5kpym9zrm39adpq2" + } + }, + { + "ename": "helm-c-moccur", + "commit": "462a43341a5811822928bcac331d617a38b52e8a", + "sha256": "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b", + "fetcher": "github", + "repo": "myuhe/helm-c-moccur.el", + "unstable": { + "version": [ + 20151230, + 924 + ], + "deps": [ + "color-moccur", + "helm" + ], + "commit": "b0a906f85fa352db091f88b91a9c510de607dfe9", + "sha256": "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c" + } + }, + { + "ename": "helm-c-yasnippet", + "commit": "2fc20598a2cd22efb212ba43159c6728f0249e5e", + "sha256": "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90", + "fetcher": "github", + "repo": "emacs-jp/helm-c-yasnippet", + "unstable": { + "version": [ + 20170128, + 1542 + ], + "deps": [ + "cl-lib", + "helm", + "yasnippet" + ], + "commit": "65ca732b510bfc31636708aebcfe4d2d845b59b0", + "sha256": "1cbafjqlzxbg19xfdqsinsh7afq58gkf44rsg1qxfgm8g6zhr7f8" + }, + "stable": { + "version": [ + 0, + 6, + 7 + ], + "deps": [ + "cl-lib", + "helm-core", + "yasnippet" + ], + "commit": "1fa400233ba8e990066c47cca1e2af64bd192d4d", + "sha256": "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f" + } + }, + { + "ename": "helm-catkin", + "commit": "c6e88d2a2fc07c8d25f4e1d973147805522a3261", + "sha256": "1yr62riiva55c341s9x0fn9wdrv1j05s9a82xm2925jsyh5xzaxy", + "fetcher": "github", + "repo": "gollth/helm-catkin", + "unstable": { + "version": [ + 20190425, + 1520 + ], + "deps": [ + "helm", + "xterm-color" + ], + "commit": "d33c71cecd35616dfa7c3b81d8f51c128405977f", + "sha256": "0pggn78lxfq6gmvyxr9y1j5qbcnkfh5f8vavxjpnch6k9xq0591x" + } + }, + { + "ename": "helm-charinfo", + "commit": "6667774bba495c45703ef75261f1f14d89684e3a", + "sha256": "04k6crcwhv2k69f5w75g0dg0f5qsbhyxl93qzxxdb5bnr56ad7f6", + "fetcher": "github", + "repo": "mandoku/helm-charinfo", + "unstable": { + "version": [ + 20170810, + 1231 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "91798a49dc115342a7e01e48b264e9a0bf5ea414", + "sha256": "1ifj6zz5k7qjalg06fvfc7rdmlha0n9hll2hiq7mrcj7lfac6jga" + } + }, + { + "ename": "helm-chrome", + "commit": "7f6ca33fe8ec8a0af8fb166451050f5502838deb", + "sha256": "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz", + "fetcher": "github", + "repo": "kawabata/helm-chrome", + "unstable": { + "version": [ + 20160719, + 520 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "fd630ace4b4b4f33355a973743bbfe0c90ce4830", + "sha256": "0r8s85fs5lnwdn377z5zgi3d090k2n1mgiyxwgy49i8yirssgz51" + } + }, + { + "ename": "helm-chrome-control", + "commit": "ef7ab4aa5a95d14ef9bbe22a53410eab5d64822f", + "sha256": "1544zlf95iwgizq0kq0kp70kaqfqiwci1hhl4vhah01jl3ifrdxa", + "fetcher": "github", + "repo": "xuchunyang/helm-chrome-control", + "unstable": { + "version": [ + 20190707, + 1807 + ], + "deps": [ + "helm-core" + ], + "commit": "e6758763099959e961e218bb1122526323f7ee5e", + "sha256": "186m2zq978hzdixh4cbdjp6mfigdaiqhmx25895574vn3wv4xmj7" + } + }, + { + "ename": "helm-chrome-history", + "commit": "2948c9e1c926fd061f1ee0e6a0f7e31ee788ac49", + "sha256": "1nf4bx1vf78bb7ig6wk68lhyp4acj6asxlh0846fgv01c0m8plh5", + "fetcher": "github", + "repo": "xuchunyang/helm-chrome-history", + "unstable": { + "version": [ + 20190714, + 324 + ], + "deps": [ + "helm-core" + ], + "commit": "5c37ac3f1abdb02af80fc57878b22d872dfecc80", + "sha256": "0sjxjizcj4znhx64pvah6cdg5wy9v4zgrvj691y3fqw2ydb3467d" + } + }, + { + "ename": "helm-chronos", + "commit": "b6f5eef6ac62ed8d035f4dd272695655d00a4180", + "sha256": "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3", + "fetcher": "github", + "repo": "dxknight/helm-chronos", + "unstable": { + "version": [ + 20150528, + 2036 + ], + "deps": [ + "chronos", + "helm" + ], + "commit": "a14fc3d65dd96ce6616234b3f7b8b08b4c1817ef", + "sha256": "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i" + } + }, + { + "ename": "helm-cider", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ykhrvh6mix55sv4j8q6614sibksdlwaks736maamqwl3wk6826x", + "fetcher": "github", + "repo": "clojure-emacs/helm-cider", + "unstable": { + "version": [ + 20180307, + 458 + ], + "deps": [ + "cider", + "helm-core" + ], + "commit": "9363cc537f06233345aa3af5cd46aa5681ad607b", + "sha256": "0vfn4smqba1vsshz48ggkj8gs94la0sxb1sq4shrb41qj2x3dci7" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "cider", + "helm-core" + ], + "commit": "9a948b834dd31b3f60d4701d6dd0ecfab0adbb72", + "sha256": "0wssd9jv6xighjhfh3p8if1anz3rcrjr71a4j063v6gyknb7fv27" + } + }, + { + "ename": "helm-cider-history", + "commit": "31a9c900d57f2eeed4f0101af73f8a59c20e9a99", + "sha256": "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h", + "fetcher": "github", + "repo": "Kungi/helm-cider-history", + "unstable": { + "version": [ + 20150719, + 2120 + ], + "deps": [ + "cider", + "helm" + ], + "commit": "c391fcb2e162a02001605a0b9449783575a831fd", + "sha256": "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif" + } + }, + { + "ename": "helm-circe", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "07559rg55b0glxiw787xmvxrhms14jz21bvprc5n24b4j827g9xw", + "fetcher": "github", + "repo": "lesharris/helm-circe", + "unstable": { + "version": [ + 20160207, + 652 + ], + "deps": [ + "circe", + "cl-lib", + "helm" + ], + "commit": "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a", + "sha256": "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "circe", + "cl-lib", + "helm" + ], + "commit": "9091651d9fdd8d49d8ff6f9dcf3a2ae416c9f15a", + "sha256": "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122" + } + }, + { + "ename": "helm-clojuredocs", + "commit": "adb117e04c158b1c77a8c1174329477d7eaca838", + "sha256": "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk", + "fetcher": "github", + "repo": "mbuczko/helm-clojuredocs", + "unstable": { + "version": [ + 20160405, + 723 + ], + "deps": [ + "edn", + "helm" + ], + "commit": "5a7f0f2cb401be0b09e73262a1c18265ab9a3cea", + "sha256": "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl" + } + }, + { + "ename": "helm-cmd-t", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6", + "fetcher": "github", + "repo": "emacs-helm/helm-cmd-t", + "unstable": { + "version": [ + 20170125, + 1459 + ], + "commit": "7fa3d4a9f7271512e54c5de999079b27c9eec6bf", + "sha256": "06jdvkgnmwrgsdh9y2bwzdng7hy4331v3lh11jvdy4704w4khmak" + } + }, + { + "ename": "helm-codesearch", + "commit": "0a992824e46a4170e2f0915f7a507fcb8a9ef0a6", + "sha256": "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q", + "fetcher": "github", + "repo": "youngker/helm-codesearch.el", + "unstable": { + "version": [ + 20190412, + 1153 + ], + "deps": [ + "cl-lib", + "dash", + "helm", + "s" + ], + "commit": "72f1d1de746115ab7e861178b49fa3c0b6b58d90", + "sha256": "1qxpx8jmkvg59k4rx99bn9asnh4nl5rwkjvbhprdlqaicglm153q" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "helm", + "s" + ], + "commit": "a6bac6b8a063b91b444a72318b163b266742db9b", + "sha256": "0xmplh7q5wvrkfha8qc9hx7sjyc8dsms0wrvj2y7zg35siw1561l" + } + }, + { + "ename": "helm-commandlinefu", + "commit": "7eaf1e41ef2fa90b6bb6a80891ef1bf52ef1029b", + "sha256": "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd", + "fetcher": "github", + "repo": "xuchunyang/helm-commandlinefu", + "unstable": { + "version": [ + 20150611, + 545 + ], + "deps": [ + "helm", + "json", + "let-alist" + ], + "commit": "9ee7e018c5db23ae9c8d1c8fa969876f15b7280d", + "sha256": "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "helm", + "json", + "let-alist" + ], + "commit": "e11cd3e961c1c4c973b51d8d12592e7235a4971b", + "sha256": "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh" + } + }, + { + "ename": "helm-company", + "commit": "8acf7420f2ac8a36474594bc34316f187b43d771", + "sha256": "1wl1mzm1h9ig351y77yascdv4z0cka1gayi8cnnlayk763is7q34", + "fetcher": "github", + "repo": "Sodel-the-Vociferous/helm-company", + "unstable": { + "version": [ + 20190725, + 247 + ], + "deps": [ + "company", + "helm" + ], + "commit": "b8c214f92c1e4287174f51a042ca950d53c161de", + "sha256": "1x69ww7a3c91rwnxnvpjdv4dpngb0383g6wgra7ypcbgibxshc00" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "company", + "helm" + ], + "commit": "5b5c15745d92aff7280698c7619994e2481098b4", + "sha256": "1r5b24hamq8d5n418xpf80jn37s357hbc9rd5siw6gwkjn2jykx7" + } + }, + { + "ename": "helm-core", + "commit": "ef7a700c5665e6d72cb4cecf7fb5a2dd43ef9bf7", + "sha256": "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda", + "fetcher": "github", + "repo": "emacs-helm/helm", + "unstable": { + "version": [ + 20190801, + 708 + ], + "deps": [ + "async" + ], + "commit": "6836fdbe30d45207a1090907b290275bd37dbc84", + "sha256": "03ydgbih60jj0f5mlf9p28mczk4clx3sddmdms5j8mpv0kfladzm" + }, + "stable": { + "version": [ + 3, + 3 + ], + "deps": [ + "async" + ], + "commit": "12c50cf2a3748f44eb8c8ccad89ebd6e63fe99f6", + "sha256": "0fqhw7r9fcsja5d3pgbipw7pkw9nj534faav6hi45413hc3gyv92" + } + }, + { + "ename": "helm-cscope", + "commit": "3d2e3460df1ec750053bc8402ad6eb822c10c697", + "sha256": "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4", + "fetcher": "github", + "repo": "alpha22jp/helm-cscope.el", + "unstable": { + "version": [ + 20190615, + 41 + ], + "deps": [ + "cl-lib", + "helm", + "xcscope" + ], + "commit": "af1d9e7f4460a88d7400b5a74d5da68084089ac1", + "sha256": "1ynn49ngx3y4m9y820sf3rbyzw3k5gs0xf1bsxi3h8hdvyqd7j9p" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib", + "helm", + "xcscope" + ], + "commit": "b82db54071bd2d1c77db2e648f8b4e61b1abe288", + "sha256": "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c" + } + }, + { + "ename": "helm-css-scss", + "commit": "9b985973ff12135f893e6d2742223725c2143720", + "sha256": "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak", + "fetcher": "github", + "repo": "ShingoFukuyama/helm-css-scss", + "unstable": { + "version": [ + 20140627, + 25 + ], + "deps": [ + "helm" + ], + "commit": "ab8348aa98e0daa2f1b771e35bdb06bfacbe5016", + "sha256": "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph" + } + }, + { + "ename": "helm-ctest", + "commit": "1cc85ff5554df10fc2066eec4d90de3b25536923", + "sha256": "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm", + "fetcher": "github", + "repo": "danlamanna/helm-ctest", + "unstable": { + "version": [ + 20180821, + 1005 + ], + "deps": [ + "dash", + "helm-core", + "s" + ], + "commit": "0c73689692a290f56080e95325c15362e90d529b", + "sha256": "143vyd64w3gycc68jcsji474nz2ggda58hgwq6hyiwb7s0gm1gd3" + } + }, + { + "ename": "helm-dash", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "032hwwq4r72grzls5ww7bjyj39c82wkcgf3k7myfcrqd3lgblrwb", + "fetcher": "github", + "repo": "areina/helm-dash", + "unstable": { + "version": [ + 20190527, + 1118 + ], + "deps": [ + "cl-lib", + "dash-docs", + "helm" + ], + "commit": "6c76c794fec95586028633f24773451812af5df4", + "sha256": "0ajkflf6fzpxxgv2nzpxnc1d2rp32ba1lz9x4s2bini71krai88s" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "9a230125a7a11f5fa90aa048b61abd95eb78ddfe", + "sha256": "0xs3nq86qmvkiazn5w564npdgbcfjlnpw2f48g2jd43yznblz7ly" + } + }, + { + "ename": "helm-descbinds", + "commit": "447610a05422cd2f35399e43d98bf46410ff0408", + "sha256": "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7", + "fetcher": "github", + "repo": "emacs-helm/helm-descbinds", + "unstable": { + "version": [ + 20190501, + 935 + ], + "deps": [ + "helm" + ], + "commit": "b72515982396b6e336ad7beb6767e95a80fca192", + "sha256": "1bp2n32lvb1fhnwzk8s782i928m8mklv77jz5rq0ag1q7y740r31" + }, + "stable": { + "version": [ + 1, + 13 + ], + "deps": [ + "helm" + ], + "commit": "6d5ddc11e6cef86548bd6b3e0d840112d602659c", + "sha256": "03b79wdcp4im0fwadzhyc8jxl2wqvg8gmpflnznrwz3l71bi4sqq" + } + }, + { + "ename": "helm-describe-modes", + "commit": "23f0b2025073850c477ba4646c3821b3c7de6c42", + "sha256": "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb", + "fetcher": "github", + "repo": "emacs-helm/helm-describe-modes", + "unstable": { + "version": [ + 20160212, + 518 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "11fb36af119b784539d31c6160002de1957408aa", + "sha256": "1d5b85m33hsdb4wswh9wpid0ghsr2zrj3f6ky587lc32s4bs0w0z" + } + }, + { + "ename": "helm-dictionary", + "commit": "b8cc457b06ce271f7c19729cde7728286bb85528", + "sha256": "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n", + "fetcher": "github", + "repo": "emacs-helm/helm-dictionary", + "unstable": { + "version": [ + 20160817, + 2033 + ], + "deps": [ + "helm" + ], + "commit": "805ce850d4cbe811227d9c9b16cc51f652198f3f", + "sha256": "0ambb6i8ipz5y0mnc8jd07j3iiwb7ah87pw8x8pi3phv1r80l0k1" + } + }, + { + "ename": "helm-directory", + "commit": "d0c066d6f285ab6d572dab4549781101547cb704", + "sha256": "01c5a08v6rd867kdyrfwdvj05z4srzj9g6xy4scirlbwbff0q76n", + "fetcher": "github", + "repo": "masasam/emacs-helm-directory", + "unstable": { + "version": [ + 20170706, + 402 + ], + "deps": [ + "helm" + ], + "commit": "51bd7cd6e40a84a7efda894283ec76a0107830ad", + "sha256": "18lv8s7lw6zw97v4q5810f9cn43ybiygl139i2hf5p37p48d8fyy" + }, + "stable": { + "version": [ + 0, + 6, + 4 + ], + "deps": [ + "helm" + ], + "commit": "2c6d45404506ba744888dcdb65e9f63878f2da16", + "sha256": "1a5j4zzn249jdm4kcri64x1dxazhhk7g5dmgnhflrnbrc2kdwm8h" + } + }, + { + "ename": "helm-dired-history", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0qciafa42rbw0dxgkp5mbbwbrcziswmwdj2lszm0px1bip4x7yb8", + "fetcher": "github", + "repo": "jixiuf/helm-dired-history", + "unstable": { + "version": [ + 20170524, + 1046 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "281523f9fc46cf00fafd670ba5cd16552a607212", + "sha256": "1bqavj5ljr350dckyf39i9plkb0rbhyd17ka94n2g6daapgpq0x6" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "281523f9fc46cf00fafd670ba5cd16552a607212", + "sha256": "1bqavj5ljr350dckyf39i9plkb0rbhyd17ka94n2g6daapgpq0x6" + } + }, + { + "ename": "helm-dired-recent-dirs", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1rm47if91hk6hi4xil9vb6rs415s5kvhwc6zkrmcvay9hiw9vrpw", + "fetcher": "github", + "repo": "yynozk/helm-dired-recent-dirs", + "unstable": { + "version": [ + 20131228, + 1414 + ], + "deps": [ + "helm" + ], + "commit": "3bcd125b44f5a707588ae3868777d91192351523", + "sha256": "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110" + } + }, + { + "ename": "helm-dirset", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1bwgv1pm047xafidq23mdqj3sdc5bvqlw74s80dj88ybp3vrpvlk", + "fetcher": "github", + "repo": "k1LoW/helm-dirset", + "unstable": { + "version": [ + 20151209, + 12 + ], + "deps": [ + "cl-lib", + "f", + "helm", + "s" + ], + "commit": "eb30810cd26e1ee73d84a863e6b2667700e9aead", + "sha256": "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb" + } + }, + { + "ename": "helm-elscreen", + "commit": "dfe42a7fe2dc051c6c49aa75bce89bfe1b5fdbbb", + "sha256": "186k66kf2ak2ihha39989cz1aarqrvbgp213y1fwh9qsn1kxclnd", + "fetcher": "github", + "repo": "emacs-helm/helm-elscreen", + "unstable": { + "version": [ + 20170709, + 914 + ], + "deps": [ + "cl-lib", + "elscreen", + "helm" + ], + "commit": "b8212866939dc4a1e1dc23ad572407b688e130e3", + "sha256": "0gy6lbdngiwfl9vfw32clagbmv70f93slc9zkm3dz3mca37435kz" + } + }, + { + "ename": "helm-emmet", + "commit": "acbc5e9fab159ad2d63b10c0fa6ac18636bb2379", + "sha256": "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03", + "fetcher": "github", + "repo": "yasuyk/helm-emmet", + "unstable": { + "version": [ + 20160713, + 1231 + ], + "deps": [ + "emmet-mode", + "helm" + ], + "commit": "f0364e736b10cf44232053a78de04133a88185ae", + "sha256": "1zl6vhzbf29864q97q5v7c318x36y1a4cjm0i7kgj3hc6qla5j88" + } + }, + { + "ename": "helm-emms", + "commit": "db836b671705607f6cd9bce8229884b1f29b4a76", + "sha256": "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5", + "fetcher": "github", + "repo": "emacs-helm/helm-emms", + "unstable": { + "version": [ + 20190422, + 1522 + ], + "deps": [ + "cl-lib", + "emms", + "helm" + ], + "commit": "89ec04e6548f16c5848cc49ad506e0561cea87ab", + "sha256": "0cn1amwgf5nm73yjxnhjsl6dvfcvh8qb2j2rhsyd6i8kzzkyplf2" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib", + "emms", + "helm" + ], + "commit": "d7da090af0f63b92c5d735197992c732adbeef3d", + "sha256": "0fs0i33di3liyx1f55xpg5nmac1b750n37g3pkxw2mil7fx7dz32" + } + }, + { + "ename": "helm-esa", + "commit": "5813ef34f178c7549749b7440764b8aa8b142ade", + "sha256": "0bqj4lbh0q4g21xb35q2yqy0kzmm8rp1nmlcg2v9hagpx7996z0g", + "fetcher": "github", + "repo": "masutaka/emacs-helm-esa", + "unstable": { + "version": [ + 20190721, + 1429 + ], + "deps": [ + "helm", + "request" + ], + "commit": "d93b4af404346870cb2cf9c257d055332ef3f577", + "sha256": "1lqih8qadk1miwi8fv7syfd7i2rzbg669b96my177g0i57sah4mw" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "helm", + "request" + ], + "commit": "d93b4af404346870cb2cf9c257d055332ef3f577", + "sha256": "1lqih8qadk1miwi8fv7syfd7i2rzbg669b96my177g0i57sah4mw" + } + }, + { + "ename": "helm-etags-plus", + "commit": "e5d0c347ff8cf6e0ade80853775fd6b84f387fa5", + "sha256": "0lw21yp1q6iggzlb1dks3p6qdfppnqf50f3rijjs18lisp4izp99", + "fetcher": "github", + "repo": "jixiuf/helm-etags-plus", + "unstable": { + "version": [ + 20170113, + 1414 + ], + "deps": [ + "helm" + ], + "commit": "704f0991ee4a2298b01c33aafc224eef322e15e3", + "sha256": "03n7c9jlpqkz5z1gygx2s3yf46caav2l11d9xnmqhyhbvyimjqf9" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "helm" + ], + "commit": "99512856918e485862ceb21460476adb0349f525", + "sha256": "08ddxp1hm0ckx6gq9yl6dhh0jrfb6f747snchykl3z5p0ayknvlm" + } + }, + { + "ename": "helm-evil-markers", + "commit": "71e3618dc6a9f614397d251398c6304345949d9b", + "sha256": "12r5adwl9qanfvf3558niqdql67csg2lvyb6b6z3khdr34ac0sr6", + "fetcher": "github", + "repo": "xueeinstein/helm-evil-markers", + "unstable": { + "version": [ + 20190719, + 539 + ], + "deps": [ + "evil", + "helm" + ], + "commit": "bb04e3a25920c2fd676132703970c6879dade802", + "sha256": "1g944dv3ak064kxkbl30q1kaap0nzyh2v3klhyxmj8f6jc9x2wh8" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "evil", + "helm" + ], + "commit": "29f9288a73370f26fe431db1472ed948bd63190d", + "sha256": "13jd7kdb6qi4dkl2fr7132ijargjb2fcqhkfb72gr101a44xxg5p" + } + }, + { + "ename": "helm-eww", + "commit": "455a32c1d4642dc6752408c4f5055f5f4d1288eb", + "sha256": "0pl8s7jmk1kak13bal43kp2awjji9lgr3npq9m09zms121rh709w", + "fetcher": "github", + "repo": "emacs-helm/helm-eww", + "unstable": { + "version": [ + 20190315, + 907 + ], + "deps": [ + "helm", + "seq" + ], + "commit": "76ba59fda8dd6f32a1bc7c6df0b43c6f76169911", + "sha256": "0hpq1h0p69c9k6hkd2mjpprx213sc5475q7pr2zpmwrjdzgcv70z" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "helm", + "seq" + ], + "commit": "76ba59fda8dd6f32a1bc7c6df0b43c6f76169911", + "sha256": "0hpq1h0p69c9k6hkd2mjpprx213sc5475q7pr2zpmwrjdzgcv70z" + } + }, + { + "ename": "helm-ext", + "commit": "1ee74cb0aa3445bc9ae4226c2043ee4de3ac6cd3", + "sha256": "0la2i0b7nialib4wq26cxcak8nq1jzavsw8f0mvbavsb7hfwkpgw", + "fetcher": "github", + "repo": "cute-jumper/helm-ext", + "unstable": { + "version": [ + 20180526, + 350 + ], + "deps": [ + "helm" + ], + "commit": "90b788aced21ec467a234b6b77b5a6ebae6de75f", + "sha256": "11a27556slh95snzqyvy0rlf6p7f51nx8rxglnv0d34529h72508" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "helm" + ], + "commit": "c8ac56918b200239b3f73a4e6a031deecc2c5646", + "sha256": "08c6n4zr6s3h7y0kk6g51xqs6hs29hkfmn55jfjw6hpimbk3vi1j" + } + }, + { + "ename": "helm-exwm", + "commit": "8ecdf9e00cf19fabbeade12a66d66cd010561366", + "sha256": "0g15c4bg794vqigafl9g2w85jbs1lbw9qplaf8ffx0az4qwhnvqz", + "fetcher": "github", + "repo": "emacs-helm/helm-exwm", + "unstable": { + "version": [ + 20180827, + 837 + ], + "deps": [ + "exwm", + "helm" + ], + "commit": "e21c6ffabadd2fe8d6c7805b6027cc59a6f914e9", + "sha256": "11fyqk3h9cqynifc2zzqn0czrcj082wkdg1qhbj97nl4gcj787rl" + } + }, + { + "ename": "helm-file-preview", + "commit": "bf60b4c17c866cd89ff68b99aeb2941c6bc6d940", + "sha256": "0y3wkj98nj5nnf5v5iqaihipyx9p902i152gbcrsqcjbpgw3wlhz", + "fetcher": "github", + "repo": "elpa-host/helm-file-preview", + "unstable": { + "version": [ + 20190630, + 839 + ], + "deps": [ + "helm" + ], + "commit": "6c67cc9a17f6e951dd79cfcdc6997b6357f5bf3b", + "sha256": "0fvmdhhkpa079zrz15h1adrff01c1csxwww5im8kqn2hk4qdycv2" + } + }, + { + "ename": "helm-filesets", + "commit": "71c0d98ede6119e838e3db146dea5c16d8ba8ed8", + "sha256": "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f", + "fetcher": "github", + "repo": "gcla/helm-filesets", + "unstable": { + "version": [ + 20140929, + 1835 + ], + "deps": [ + "filesets+", + "helm" + ], + "commit": "b352910af4c3099267a8aa0169c7f743b35bb1fa", + "sha256": "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9" + } + }, + { + "ename": "helm-firefox", + "commit": "257e452d37768d2f3a6e0a5ccd062d128b2bc867", + "sha256": "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs", + "fetcher": "github", + "repo": "emacs-helm/helm-firefox", + "unstable": { + "version": [ + 20161202, + 1317 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "0ad34b7b5abc485a86cae6920c14de861cbeb085", + "sha256": "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "0ad34b7b5abc485a86cae6920c14de861cbeb085", + "sha256": "08mjsi2f9s29fkk35cj1rrparjnkm836qmbfdwdz7y51f9varjbs" + } + }, + { + "ename": "helm-flx", + "commit": "f1418d260f34d698cec611978001c7fd1d1a8a89", + "sha256": "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq", + "fetcher": "github", + "repo": "PythonNut/helm-flx", + "unstable": { + "version": [ + 20180103, + 516 + ], + "deps": [ + "flx", + "helm" + ], + "commit": "6640fac5cb16bee73c95b8ed1248a4e5e113690e", + "sha256": "1fh1dy6xpc476hs87mn9fwxhxi97h7clfnnm7dxb7hg43xmgsjjs" + } + }, + { + "ename": "helm-flycheck", + "commit": "9cce1662d4ca7b7d868685084294d22ebf6c39e9", + "sha256": "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b", + "fetcher": "github", + "repo": "yasuyk/helm-flycheck", + "unstable": { + "version": [ + 20160710, + 829 + ], + "deps": [ + "dash", + "flycheck", + "helm-core" + ], + "commit": "3cf7d3bb194acacc6395f88360588013d92675d6", + "sha256": "1a2yfxhz04klwhcandqvfzysxp6b7bxyxx1xk1x3kds5hif5fkl4" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "dash", + "flycheck", + "helm-core" + ], + "commit": "a15e62a6432c165c4f2c17388686873383400d7d", + "sha256": "0q9yksx66ry4x3vkcyyj437il225s2ad5h6vkxpyz04p62g3ysnx" + } + }, + { + "ename": "helm-flymake", + "commit": "d8547036dceaa466957f4c5a07eb0461f313b924", + "sha256": "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b", + "fetcher": "github", + "repo": "tam17aki/helm-flymake", + "unstable": { + "version": [ + 20160610, + 2 + ], + "deps": [ + "helm" + ], + "commit": "72cf18a1a1f843db9bb5d58301739ea9ccb1655b", + "sha256": "05wpclg4ibp0ida692m3s8nknx4aizfcdgxgfzlwczgdgw0922kn" + } + }, + { + "ename": "helm-flyspell", + "commit": "f8c5b91762d47a4d3024f1ed7f19666c6f2d5ce5", + "sha256": "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f", + "fetcher": "github", + "repo": "pronobis/helm-flyspell", + "unstable": { + "version": [ + 20170210, + 1901 + ], + "deps": [ + "helm" + ], + "commit": "8d4d947c687cb650cb149aa2271ad5201ea92594", + "sha256": "0q0xcgg8w9rrlsrrnk0l7qd8q7jc6x1agm2i769j21wpyfv1nbns" + } + }, + { + "ename": "helm-frame", + "commit": "febb2599e50518dadb30088bc9576aea2af092a7", + "sha256": "18wbwm4r3ra9214whhdbxnjrxzra4pn12wqgq5lxli1khylihm3i", + "fetcher": "gitlab", + "repo": "chee/helm-frame", + "unstable": { + "version": [ + 20170515, + 1950 + ], + "commit": "389e6461a423d649b7062ba99a2234bef7770059", + "sha256": "1z7iwgl1v8nkwyz3h610l97amgq9slrfxxiicsnigc9vgsqlh987" + } + }, + { + "ename": "helm-fuzzier", + "commit": "51dc6f01e0e5ee0593bea6616894bc0163878cd0", + "sha256": "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc", + "fetcher": "github", + "repo": "EphramPerdition/helm-fuzzier", + "unstable": { + "version": [ + 20160605, + 2145 + ], + "deps": [ + "helm" + ], + "commit": "8798dcf3583b863df5b9dea7fe3b0179ba1c35bc", + "sha256": "1250mh0ydap0sifcyrgs32dnr6c8d723v4c55yvwm23dzvzwycp8" + } + }, + { + "ename": "helm-fuzzy-find", + "commit": "34f76bb377ed31aa42663858c407cc5476e6fe1f", + "sha256": "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i", + "fetcher": "github", + "repo": "xuchunyang/helm-fuzzy-find", + "unstable": { + "version": [ + 20171106, + 400 + ], + "deps": [ + "helm" + ], + "commit": "de2abbf7ca13609587325bacd4a1ed4376b5c927", + "sha256": "1dacvnkqqiax02c627z9qi61iyqgr0j3qqmjp29h0v494czvrdbs" + } + }, + { + "ename": "helm-ghc", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0bv0sfpya1jyay9p80lv0w6h9kdp96r8lnp6nj15w660p1b51c0d", + "fetcher": "github", + "repo": "david-christiansen/helm-ghc", + "unstable": { + "version": [ + 20141105, + 1459 + ], + "deps": [ + "cl-lib", + "ghc", + "helm" + ], + "commit": "e5ee7b8d3b745d162553aecfbd41381c4de85f35", + "sha256": "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "ghc", + "helm" + ], + "commit": "d3603ee18299b789be255297dc42af16dd431869", + "sha256": "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn" + } + }, + { + "ename": "helm-ghq", + "commit": "e94eec646def7c77b15f6a6ac1841200848e62c7", + "sha256": "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6", + "fetcher": "github", + "repo": "masutaka/emacs-helm-ghq", + "unstable": { + "version": [ + 20190526, + 1409 + ], + "deps": [ + "helm" + ], + "commit": "d0d6aa0f407388e7012f0443df8ae657ece01779", + "sha256": "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082" + }, + "stable": { + "version": [ + 1, + 8, + 0 + ], + "deps": [ + "helm" + ], + "commit": "d0d6aa0f407388e7012f0443df8ae657ece01779", + "sha256": "08884pk0d6xplsn1z9slaf4b9mmam6s9dg4dcxi1na1inpi6y082" + } + }, + { + "ename": "helm-ghs", + "commit": "0f8d37030806905344a2ca56bfc469f5a238cd69", + "sha256": "0bzy2vr2h9c886cm4gd161n7laym952bzy5fhcibafhzm4abl4sh", + "fetcher": "github", + "repo": "iory/emacs-helm-ghs", + "unstable": { + "version": [ + 20170715, + 541 + ], + "deps": [ + "helm" + ], + "commit": "17a70bf16255d90d67c8350e88200ec8bfd47563", + "sha256": "1jc51anmkr44db4kbcwza17x3ln78ihpslrf2v9xs0sq0ggw1rva" + } + }, + { + "ename": "helm-git", + "commit": "707696fbec477027e675ff01c502e0b81096025c", + "sha256": "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8", + "fetcher": "github", + "repo": "maio/helm-git", + "unstable": { + "version": [ + 20120630, + 2103 + ], + "commit": "cb96a52b5aecadd3c27aba7749d14e43ab128d55", + "sha256": "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn" + } + }, + { + "ename": "helm-git-files", + "commit": "23bfa0b94f242f9da06366b4aefdf6ece72561e7", + "sha256": "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6", + "fetcher": "github", + "repo": "kenbeese/helm-git-files", + "unstable": { + "version": [ + 20141212, + 1317 + ], + "deps": [ + "helm" + ], + "commit": "43193960774069369ac6964bbf7c026900206fa8", + "sha256": "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw" + } + }, + { + "ename": "helm-git-grep", + "commit": "338d28c3fe201a7b2f15793be6d540f44819f4d8", + "sha256": "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi", + "fetcher": "github", + "repo": "yasuyk/helm-git-grep", + "unstable": { + "version": [ + 20170614, + 1411 + ], + "deps": [ + "helm-core" + ], + "commit": "744cea07dba6e6a5effbdba83f1b786c78fd86d3", + "sha256": "172m7wbgx9qnv9n1slbzpd9j24p6blddik49z6bq3zdg1vlnf3dv" + }, + "stable": { + "version": [ + 0, + 10, + 1 + ], + "deps": [ + "helm-core" + ], + "commit": "744cea07dba6e6a5effbdba83f1b786c78fd86d3", + "sha256": "172m7wbgx9qnv9n1slbzpd9j24p6blddik49z6bq3zdg1vlnf3dv" + } + }, + { + "ename": "helm-github-stars", + "commit": "2e77f4a75504ca3e1091cdc757e91fb1ae361fa7", + "sha256": "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy", + "fetcher": "github", + "repo": "Sliim/helm-github-stars", + "unstable": { + "version": [ + 20190428, + 1047 + ], + "deps": [ + "helm" + ], + "commit": "c891690218b0d8b957ea6cb45b1b6cffd15a6950", + "sha256": "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz" + }, + "stable": { + "version": [ + 1, + 3, + 7 + ], + "deps": [ + "helm" + ], + "commit": "c891690218b0d8b957ea6cb45b1b6cffd15a6950", + "sha256": "0050i3apv72klqi3s0zw5sv4r4sizx4vlw07l52i39ij7bzjhkzz" + } + }, + { + "ename": "helm-gitignore", + "commit": "3146b9309e8cbe464330dcd1f5b8a9fd8788ad6f", + "sha256": "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6", + "fetcher": "github", + "repo": "jupl/helm-gitignore", + "unstable": { + "version": [ + 20170211, + 8 + ], + "deps": [ + "cl-lib", + "gitignore-mode", + "helm", + "request" + ], + "commit": "2a2e7da7855a6db0ab3bb6a6a087863d7abd4391", + "sha256": "07770qhy56cf5l69mk6aq882sryjbfjd05kdk78v65mgmlwv806a" + } + }, + { + "ename": "helm-gitlab", + "commit": "1d012991188956f6e06c37d504b0d06ab31487b9", + "sha256": "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd", + "fetcher": "github", + "repo": "nlamirault/emacs-gitlab", + "unstable": { + "version": [ + 20180312, + 1647 + ], + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ], + "commit": "8c2324c02119500f094c2f92dfaba4c9977ce1ba", + "sha256": "056c4fb5sj2y4h94klx2g24n1g3qdi7ifzs8ksw5v6hcj9lrkb1n" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "dash", + "gitlab", + "helm", + "s" + ], + "commit": "a1c1441ff5ffb290e695eb9ac05431e9385578f4", + "sha256": "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa" + } + }, + { + "ename": "helm-go-package", + "commit": "449d272b94c189176305ca17652d76adac087ce5", + "sha256": "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6", + "fetcher": "github", + "repo": "yasuyk/helm-go-package", + "unstable": { + "version": [ + 20161103, + 153 + ], + "deps": [ + "deferred", + "go-mode", + "helm-core" + ], + "commit": "e42c563936c205ceedb930a687c11b4bb56447bc", + "sha256": "1169q25paz7x3hia5px4vmn06zzss179q9179x95vx8vfr43ny08" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "deferred", + "go-mode", + "helm-core" + ], + "commit": "7db5ea9ce97502152a6bb1fe38f8fabb5a49abd2", + "sha256": "08llqkswilzsigh28w9qjbqi5g5z0ylfabz5sqia7c18gjshvz0h" + } + }, + { + "ename": "helm-google", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "0hv7wfrahjn8j4914dp2p4fl2cj85pmxnyxf5cnmv6p97yis0ham", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/helm-google.git", + "unstable": { + "version": [ + 20180606, + 520 + ], + "deps": [ + "helm" + ], + "commit": "48e91a73d5f48c39d7a219022a24440cff548e1a", + "sha256": "05xj6bkr330glh56n8c63297zqh1cmlhxlyxpr04srjraifyzba1" + } + }, + { + "ename": "helm-grepint", + "commit": "26446d6a2215bfa622d86837b30f2754dd25eb4c", + "sha256": "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf", + "fetcher": "github", + "repo": "kopoli/helm-grepint", + "unstable": { + "version": [ + 20161001, + 1413 + ], + "deps": [ + "helm" + ], + "commit": "a62ca27515ff6a366b89b420500eb16d380cc653", + "sha256": "1v87v6a34zv998z1dwwcqx49476pvy9g5zml7w5vzfkms0l8l28w" + } + }, + { + "ename": "helm-growthforecast", + "commit": "7d92e66cad586d4dc6b1de12d1b41b818b5232c2", + "sha256": "1qlyp263rl0892hr53kgc16jlx3jylw2pplbzlx05a60k5348jjv", + "fetcher": "github", + "repo": "daichirata/helm-growthforecast", + "unstable": { + "version": [ + 20140120, + 344 + ], + "deps": [ + "helm" + ], + "commit": "0f94ac090d6c354058ad89a86e5c18385c136d9b", + "sha256": "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk" + } + }, + { + "ename": "helm-gtags", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl", + "fetcher": "github", + "repo": "syohex/emacs-helm-gtags", + "unstable": { + "version": [ + 20170116, + 529 + ], + "deps": [ + "helm" + ], + "commit": "108e93d0d099ebb7b98847388f368311cf177033", + "sha256": "0hfshcnzrrvf08yw4xz5c93g9pw6bvjp2bmv0s6acrsjqgwhx158" + }, + "stable": { + "version": [ + 1, + 5, + 6 + ], + "deps": [ + "helm" + ], + "commit": "dbe0d2d9d08058d469ad2d729bd782515b5b3b62", + "sha256": "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx" + } + }, + { + "ename": "helm-hatena-bookmark", + "commit": "3e9335ad16d4151dd4970c4a3ad1fee9a84404fa", + "sha256": "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id", + "fetcher": "github", + "repo": "masutaka/emacs-helm-hatena-bookmark", + "unstable": { + "version": [ + 20190609, + 1455 + ], + "deps": [ + "helm" + ], + "commit": "10b8bfbd7fc4c3f503b2bc01f0c062dac128059e", + "sha256": "17f7y7bw15y3x30j7b3ymp3gpnszfvnf8hmlgc1mkwafxvzv06i1" + }, + "stable": { + "version": [ + 2, + 4, + 3 + ], + "deps": [ + "helm" + ], + "commit": "10b8bfbd7fc4c3f503b2bc01f0c062dac128059e", + "sha256": "17f7y7bw15y3x30j7b3ymp3gpnszfvnf8hmlgc1mkwafxvzv06i1" + } + }, + { + "ename": "helm-hayoo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "06nbilb6vfa8959ss5d06zbcwqxlbyi3cb5jnbdag0jnpxvv1hqb", + "fetcher": "github", + "repo": "markus1189/helm-hayoo", + "unstable": { + "version": [ + 20151014, + 651 + ], + "deps": [ + "haskell-mode", + "helm", + "json" + ], + "commit": "dd4c0c8c87521026edf1b808c4de01fa19b7c693", + "sha256": "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "haskell-mode", + "helm", + "json" + ], + "commit": "f49a77e8b8704bb7eb0d1097eefb8010a6617664", + "sha256": "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp" + } + }, + { + "ename": "helm-helm-commands", + "commit": "f8bd33d5d5c8653df5373984d01c3ec87b30c51b", + "sha256": "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf", + "fetcher": "github", + "repo": "vapniks/helm-helm-commands", + "unstable": { + "version": [ + 20130902, + 1748 + ], + "deps": [ + "helm" + ], + "commit": "3a05aa19c976501343ad9ae630a36810921a85f6", + "sha256": "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn" + } + }, + { + "ename": "helm-hoogle", + "commit": "8ccc21c2acc76a6794aee94902b1bc4c14119901", + "sha256": "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x", + "fetcher": "github", + "repo": "jwiegley/helm-hoogle", + "unstable": { + "version": [ + 20161027, + 534 + ], + "deps": [ + "helm" + ], + "commit": "73969a9d46d2121a849a01a9f7ed3636d01f7bbc", + "sha256": "043bddm6lldl6wkifr1plqip7laai771z1a1l0x2h35l3g8c64h0" + } + }, + { + "ename": "helm-hunks", + "commit": "d61cbe53ad42f2405a66de9f551f5b870a60709f", + "sha256": "1fhb9sf7fpz3f3ylc906w5xa4zzfr0gix6m7zc4c8qmz33zbhbp5", + "fetcher": "github", + "repo": "torgeir/helm-hunks.el", + "unstable": { + "version": [ + 20171217, + 1933 + ], + "deps": [ + "helm" + ], + "commit": "6392bf716f618eac23ce81140aceb0dfacb9c6d0", + "sha256": "1ih2pgyhshv8nl7hhchd4h0pbjgj45irp5dy1fq2gy05v4rn7wi4" + } + }, + { + "ename": "helm-idris", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "04f1963ksbjdza1syajb5vkwwsc9gzk0az6c1m1zgvsianrq4rd9", + "fetcher": "github", + "repo": "david-christiansen/helm-idris", + "unstable": { + "version": [ + 20141202, + 1757 + ], + "deps": [ + "helm", + "idris-mode" + ], + "commit": "a2f45d6817974f318b55ad9b7fd19d5df132d47e", + "sha256": "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q" + } + }, + { + "ename": "helm-img", + "commit": "e0ea97a55f8f4183d375424c94705f372189d6ed", + "sha256": "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q", + "fetcher": "github", + "repo": "l3msh0/helm-img", + "unstable": { + "version": [ + 20151224, + 2321 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "aa3f8a5dce8d0413bf07584f07153a39015c2bfc", + "sha256": "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla" + } + }, + { + "ename": "helm-img-tiqav", + "commit": "f6a948f91dc58ce565e54967ab75fe572f37f616", + "sha256": "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0", + "fetcher": "github", + "repo": "l3msh0/helm-img-tiqav", + "unstable": { + "version": [ + 20151224, + 2322 + ], + "deps": [ + "helm-img" + ], + "commit": "33a7e9508bc8f37d53320b56c92b53d321a57bb0", + "sha256": "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp" + } + }, + { + "ename": "helm-ispell", + "commit": "edc42b26027dcd7daf0d6f2bd19ca4736fc12d6d", + "sha256": "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0", + "fetcher": "github", + "repo": "syohex/emacs-helm-ispell", + "unstable": { + "version": [ + 20151231, + 853 + ], + "deps": [ + "helm-core" + ], + "commit": "cb735695ab3a0e66c123c2f3f3e8911fb1c2d5fc", + "sha256": "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "helm-core" + ], + "commit": "640723ace794d21b8a5892012db99f963149415b", + "sha256": "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid" + } + }, + { + "ename": "helm-itunes", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf", + "fetcher": "github", + "repo": "anschwa/helm-itunes", + "unstable": { + "version": [ + 20151013, + 648 + ], + "deps": [ + "helm" + ], + "commit": "966de755a5aadbe02311a6cef77bd4790e84c263", + "sha256": "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w" + } + }, + { + "ename": "helm-j-cheatsheet", + "commit": "681b43eb224942155b97181bbb78bcd295347d04", + "sha256": "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm", + "fetcher": "github", + "repo": "abo-abo/helm-j-cheatsheet", + "unstable": { + "version": [ + 20170217, + 829 + ], + "deps": [ + "helm" + ], + "commit": "6c47e7162b9ba2de4b41221d01180146973d860b", + "sha256": "0ayv6aqmwjy95gc9cpyx0s71486rvlmn04iwgfn43mr192c38y9p" + } + }, + { + "ename": "helm-jira", + "commit": "b91a22c2117403e278a8116ea1180bed736ae1e3", + "sha256": "1fb2hk97zlr30gzln8b5x7xc3v119ki8kbiyh7shxnaqx7dy1ihs", + "fetcher": "github", + "repo": "DeX3/helm-jira", + "unstable": { + "version": [ + 20180802, + 815 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "75d6ed5bd7a041fa8c1adb21cbbbe57b5a7c7cc7", + "sha256": "08cczc4jnkdgvzs0s3wq2dqmhnsvyhpl65dydmi7pmayl7zg6jir" + } + }, + { + "ename": "helm-js-codemod", + "commit": "dd005bfb170df2f0c992043130a5e9588dcf4d77", + "sha256": "1m07xh97fjyah8di363yalg9f5g5rfr3k5mbjql3n67lfwgxrz94", + "fetcher": "github", + "repo": "torgeir/helm-js-codemod.el", + "unstable": { + "version": [ + 20171106, + 1044 + ], + "deps": [ + "helm-core", + "js-codemod" + ], + "commit": "18503d94e64418e8ea5c5854f197ae9f3009cdbf", + "sha256": "0d5fsvfa017gda0jryjdvva1q04nry6grc1433gvgrqqp6vxayxc" + } + }, + { + "ename": "helm-jstack", + "commit": "a92ffbc4de86248729773dd8729e6487bf56fbb0", + "sha256": "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz", + "fetcher": "github", + "repo": "raghavgautam/helm-jstack", + "unstable": { + "version": [ + 20150603, + 422 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "2064f7215dcf4ccbd6a7b8784223251507746da4", + "sha256": "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g" + } + }, + { + "ename": "helm-kythe", + "commit": "dd1a6d0b08ad750a0e44ebdf76109d29ab226bd3", + "sha256": "1yybpic3jzp3yy8xlfdn2jj12h087vn0lj3mqx6xxj2nxd9q4949", + "fetcher": "github", + "repo": "MaskRay/emacs-helm-kythe", + "unstable": { + "version": [ + 20170709, + 726 + ], + "deps": [ + "dash", + "helm" + ], + "commit": "eabbef4948f8ec7c7b2fac498e9145dfdb10ca82", + "sha256": "1ws7vl0pvznmxb7yj77kfv4l52xkzblhsl68lfkf9cdxcj9g6177" + } + }, + { + "ename": "helm-lastpass", + "commit": "a39f1b0a5b22e91eb9e298949def6c29e7bc5755", + "sha256": "0zgq3szds5l3ah39wiacqcc1j0dlbhwm0cjx64j28jx93300kx57", + "fetcher": "github", + "repo": "xuchunyang/helm-lastpass", + "unstable": { + "version": [ + 20180722, + 806 + ], + "deps": [ + "csv", + "helm" + ], + "commit": "82e1ffb6ae77d9d9e29c398eb013cd20ce963f77", + "sha256": "0pri9zsjg0zii7dpsr56dy5204q0mld5wi22iay3kqpiyxghhssv" + } + }, + { + "ename": "helm-lean", + "commit": "42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde", + "sha256": "0j5ax14lhlyd9mpqk1jwh7nfp090kj71r045v2qjfaw2fa23b7si", + "fetcher": "github", + "repo": "leanprover/lean-mode", + "unstable": { + "version": [ + 20171102, + 1454 + ], + "deps": [ + "dash", + "helm", + "lean-mode" + ], + "commit": "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499", + "sha256": "0r8vfklrdw3f11cpk279jg3mnfbqm60m6klisqndkvir7vsrshni" + } + }, + { + "ename": "helm-lib-babel", + "commit": "d6718da5d8849a8c3ec17188b89a1273cf963047", + "sha256": "0ddj6xrhz4n0npplkjmblqb43jnd6fmr4i4vv1cigrgb7zj6bjx4", + "fetcher": "github", + "repo": "dfeich/helm-lib-babel", + "unstable": { + "version": [ + 20180510, + 1324 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "41bc0cdea8a604c6c8dc83ed5066644d33688fad", + "sha256": "1jrpaip5v9kzk0rf8wivsq8irdfd39svxd7p3v80cwgrrl7546xj" + } + }, + { + "ename": "helm-lines", + "commit": "b0aee0be5f388a6d778cb22ce5ad930d21c6f521", + "sha256": "110y0vdmab4zr3ab6cpf93b6iidxhanq4rh1cfrzqjf7a7xik78h", + "fetcher": "github", + "repo": "torgeir/helm-lines.el", + "unstable": { + "version": [ + 20180601, + 2033 + ], + "deps": [ + "helm" + ], + "commit": "3bfe15a60c6405682085ab289de3eb364624c4e9", + "sha256": "1fi0khqx35v48s14jr59jp06bpnhx9dy2rdasj2wn1a34jwgd49i" + } + }, + { + "ename": "helm-lobsters", + "commit": "6247e3786131e5b2a7824804e49927ed65d266d5", + "sha256": "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp", + "fetcher": "github", + "repo": "julienXX/helm-lobste.rs", + "unstable": { + "version": [ + 20150213, + 1546 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "53c5b42baf72776dcba891fc3d7cd7d47721e9b0", + "sha256": "1ic0pcr7cfrfalb7760viixz5gfdg5hfazzwfhhw08vx44xx0jk4" + } + }, + { + "ename": "helm-ls-git", + "commit": "b487b4c0db9092bb7e32aad9265b79a9d18c8478", + "sha256": "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj", + "fetcher": "github", + "repo": "emacs-helm/helm-ls-git", + "unstable": { + "version": [ + 20190630, + 737 + ], + "deps": [ + "helm" + ], + "commit": "ab825ea050f88babf6f8d340424f9359f3c6036f", + "sha256": "1i71q2d7bv7hc6793is7c1qcykadad5ggpabspac8wg9db360g2b" + }, + "stable": { + "version": [ + 1, + 9, + 1 + ], + "deps": [ + "helm" + ], + "commit": "7b7b6dc2554603ad98412927f84a803625069ab3", + "sha256": "1s748a5abj58hd7cwzfggfnnmyzhj04gpbqqwqmskn8xlsq5qcdi" + } + }, + { + "ename": "helm-ls-hg", + "commit": "03a22c9ec281330c4603aec6feb04cf580dee340", + "sha256": "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh", + "fetcher": "github", + "repo": "emacs-helm/helm-ls-hg", + "unstable": { + "version": [ + 20150909, + 543 + ], + "deps": [ + "helm" + ], + "commit": "61b91a22fcfb62d0fc56e361ec01ce96973c7165", + "sha256": "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs" + }, + "stable": { + "version": [ + 1, + 8, + 0 + ], + "deps": [ + "helm" + ], + "commit": "61b91a22fcfb62d0fc56e361ec01ce96973c7165", + "sha256": "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs" + } + }, + { + "ename": "helm-ls-svn", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "10rbplwagmwp8lvhandzlinnzl1vcsvdlnjk9jpj3nw42x9wahx4", + "fetcher": "github", + "repo": "emacsmirror/helm-ls-svn", + "unstable": { + "version": [ + 20190316, + 2203 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "a6043e1187282f649e2cb9f0e722a42daf41294b", + "sha256": "0jh3q2nx3hn6v1qvip5sbfsvf9zy74ppn1rl037d0hlssh6qir9j" + } + }, + { + "ename": "helm-lsp", + "commit": "67942b34975015dd6f2b5f6b43829cc13b1832c6", + "sha256": "0hzwz243n45xcm3rnzmd6z8zrqy9660fy0l8mb940960cjzsxf3m", + "fetcher": "github", + "repo": "emacs-lsp/helm-lsp", + "unstable": { + "version": [ + 20190423, + 548 + ], + "deps": [ + "dash", + "helm", + "lsp-mode" + ], + "commit": "3a58ca4cfd94b9ab1e15e819d3b16ef568e8889b", + "sha256": "0wh5zai3s17ss2q8wcdd6d87hv1h3nbyrxxs4js9cas8m6y2ssjv" + } + }, + { + "ename": "helm-lxc", + "commit": "7a7717154a657bb7c27b25579ea2c1b31b5c0b5f", + "sha256": "0mhxbs99isbvls34g0415iy3fry7kanala6624gp5l5isbmn95rm", + "fetcher": "github", + "repo": "montag451/helm-lxc", + "unstable": { + "version": [ + 20190116, + 2050 + ], + "deps": [ + "cl-lib", + "helm", + "lxc-tramp" + ], + "commit": "a4e17dda329ec39a3dac5751ddcef1145b3d91c1", + "sha256": "1z6d752682b21ydp7s5a9jkhjqw7nbascv21qcs9418ydisl8q8d" + } + }, + { + "ename": "helm-make", + "commit": "0f25f066c60d4caff1fbf885bc944cac47515ec8", + "sha256": "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc", + "fetcher": "github", + "repo": "abo-abo/helm-make", + "unstable": { + "version": [ + 20190729, + 1221 + ], + "commit": "6f3d9a0feed47c1d6a9b82baef2e2663ac496514", + "sha256": "0xgx1qr3ypnqnv38850zxak7rga9mn3d428szz80r6438nl8hlb0" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "helm", + "projectile" + ], + "commit": "6558a79d20d04465419b312da198190be6832647", + "sha256": "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya" + } + }, + { + "ename": "helm-migemo", + "commit": "ce6eb840368f8cbee66dc061478d5096b9dacb68", + "sha256": "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x", + "fetcher": "github", + "repo": "emacs-jp/helm-migemo", + "unstable": { + "version": [ + 20151010, + 356 + ], + "deps": [ + "cl-lib", + "helm-core", + "migemo" + ], + "commit": "66c6a19d07c6a385daefd2090d0709d26b608b4e", + "sha256": "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix" + }, + "stable": { + "version": [ + 1, + 22 + ], + "deps": [ + "cl-lib", + "helm-core", + "migemo" + ], + "commit": "2d964309a5415cf47f5154271e6fe7b6a7fffec7", + "sha256": "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs" + } + }, + { + "ename": "helm-mode-manager", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "04yhqbb9cliv1922b0abpc1wrladvhyfmwn8ifqfkzaks4067rhl", + "fetcher": "github", + "repo": "istib/helm-mode-manager", + "unstable": { + "version": [ + 20151124, + 938 + ], + "deps": [ + "helm" + ], + "commit": "5d9c3ca4f8205d07ff4e03c4c3e88f596751c1fc", + "sha256": "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "helm" + ], + "commit": "1fc1d65a27bc57d3a5bbd359f3eb77a6353fa4a5", + "sha256": "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk" + } + }, + { + "ename": "helm-mt", + "commit": "e726bf0b9b3f371b21f1f0d75175e0dda62f6fb0", + "sha256": "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a", + "fetcher": "github", + "repo": "dfdeshom/helm-mt", + "unstable": { + "version": [ + 20160918, + 452 + ], + "deps": [ + "cl-lib", + "helm", + "multi-term" + ], + "commit": "d2bff4100118483bc398c56d0ff095294209265b", + "sha256": "1wci63y0vjvrvrylkhhrz8p9q0ml6la5cpj4rx5cwin9rkmislm6" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "cl-lib", + "helm", + "multi-term" + ], + "commit": "d2bff4100118483bc398c56d0ff095294209265b", + "sha256": "1wci63y0vjvrvrylkhhrz8p9q0ml6la5cpj4rx5cwin9rkmislm6" + } + }, + { + "ename": "helm-mu", + "commit": "63ee2e2aa622c96993c1b705d0fd223d6b36fd0f", + "sha256": "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2", + "fetcher": "github", + "repo": "emacs-helm/helm-mu", + "unstable": { + "version": [ + 20190410, + 1718 + ], + "deps": [ + "helm" + ], + "commit": "7793d96694505380c470cb7b31b4bd8a2781e529", + "sha256": "01410wi46ljpy1040wk9dp2k21nyhc3k6kwxpy35874bqhqn5r3i" + } + }, + { + "ename": "helm-navi", + "commit": "e5ffbc25c0eb30b9c96594d50f47cd0383aa8ebc", + "sha256": "0v3amm15pwja2y7zg92hsfhp3scmswwl0q0slg33g11rvj26iiks", + "fetcher": "github", + "repo": "emacs-helm/helm-navi", + "unstable": { + "version": [ + 20181226, + 29 + ], + "deps": [ + "helm", + "navi-mode", + "s" + ], + "commit": "3b9abcc39ce7c657bc2dcc054b850dc2a7cf0448", + "sha256": "1kxv8qx7s51fnzrslwqrgayqvyq30ycnb84p5qy7jf0rf69hxxjh" + } + }, + { + "ename": "helm-nixos-options", + "commit": "6846c7d86e70a9dd8300b89b61435aa7e146be96", + "sha256": "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933", + "fetcher": "github", + "repo": "travisbhartwell/nix-emacs", + "unstable": { + "version": [ + 20151013, + 2309 + ], + "deps": [ + "helm", + "nixos-options" + ], + "commit": "45c8d90748304c90e1503c9fa8db0443f3d4bd89", + "sha256": "0hsr8acsvfb42drb8f2wkpgqyh3csny7l82qv4k2l83xf022cs1d" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "helm", + "nixos-options" + ], + "commit": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld" + } + }, + { + "ename": "helm-notmuch", + "commit": "98667b3aa43d3e0f6174eeef82acaf71d7019aac", + "sha256": "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0", + "fetcher": "github", + "repo": "xuchunyang/helm-notmuch", + "unstable": { + "version": [ + 20190320, + 1048 + ], + "deps": [ + "helm", + "notmuch" + ], + "commit": "97a01497e079a7b6505987e9feba6b603bbec288", + "sha256": "1k038dbdpaa411gl4071x19fklhnizhr346plxw23lsnxir9dhqc" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "helm", + "notmuch" + ], + "commit": "97a01497e079a7b6505987e9feba6b603bbec288", + "sha256": "1k038dbdpaa411gl4071x19fklhnizhr346plxw23lsnxir9dhqc" + } + }, + { + "ename": "helm-open-github", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx", + "fetcher": "github", + "repo": "syohex/emacs-helm-open-github", + "unstable": { + "version": [ + 20170220, + 159 + ], + "deps": [ + "gh", + "helm-core" + ], + "commit": "2f03d97552a1233db7694116d5f80ecde7612756", + "sha256": "1nzi2m23mqvxkpa7wsd2j0rwvlv5pj0mcaz2ypgfd023k2vh9is1" + }, + "stable": { + "version": [ + 0, + 15 + ], + "deps": [ + "gh", + "helm-core" + ], + "commit": "553f3ab0fe0a028015e9b6cb7c35fb139ec222fc", + "sha256": "1xj5b44nkdvbxhk1bnllqm2qq393w22ccy708prrhiq8fmk53aa8" + } + }, + { + "ename": "helm-org-rifle", + "commit": "f39cc94dde5aaf0d6cfea5c98dd52cdb0bcb1615", + "sha256": "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3", + "fetcher": "github", + "repo": "alphapapa/helm-org-rifle", + "unstable": { + "version": [ + 20181216, + 1129 + ], + "deps": [ + "dash", + "f", + "helm", + "s" + ], + "commit": "23f4ae05f5a9d1894f4afdb9ef774c342eb7e787", + "sha256": "040jmacydgp56gd48ddfn1yk8bsdaawhdkpb0nr898q0bkk5arzj" + }, + "stable": { + "version": [ + 1, + 6, + 1 + ], + "deps": [ + "dash", + "f", + "helm", + "s" + ], + "commit": "f2c7f9e203287e3f6e5647406d21454218553e5a", + "sha256": "1r38xhwvgbv6kn5x159phz3xgss7f1rc7icq27rnr4d8aj91wm6k" + } + }, + { + "ename": "helm-orgcard", + "commit": "ce6eb840368f8cbee66dc061478d5096b9dacb68", + "sha256": "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p", + "fetcher": "github", + "repo": "emacs-jp/helm-orgcard", + "unstable": { + "version": [ + 20151001, + 1524 + ], + "deps": [ + "helm-core" + ], + "commit": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "helm-core" + ], + "commit": "9655ac340d1ccc5f3d1c0f7c49be8dd3556d4d0d", + "sha256": "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3" + } + }, + { + "ename": "helm-osx-app", + "commit": "fe3d52e2f699d68dfbcdbc2f9a3e3cfd99b79be8", + "sha256": "1qxh7hs8z7sp8dnpxirnjnyjynij9j6w5vq9l1w1sy4zbhr49l31", + "fetcher": "github", + "repo": "xuchunyang/helm-osx-app", + "unstable": { + "version": [ + 20190717, + 958 + ], + "deps": [ + "helm-core" + ], + "commit": "634ed5d721a20af265825a018e9df3ee6640daee", + "sha256": "04p2fp7mp2q1ava457cg1vm6ycag0ig11nmr23fybixdsp1j646j" + } + }, + { + "ename": "helm-pages", + "commit": "7a33cb19b6e71240896bbe5da07ab25f2ee11f0b", + "sha256": "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj", + "fetcher": "github", + "repo": "david-christiansen/helm-pages", + "unstable": { + "version": [ + 20161121, + 226 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "51dcb9374d1df9feaae85e60cfb39b970554ecba", + "sha256": "0znmj13nshzspysnzrn2x6k9fym21n9ywkpjibljy0s05m36nbs5" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "e334ca3312e51d6fdfa989df5d3ebe683d673c0e", + "sha256": "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf" + } + }, + { + "ename": "helm-pass", + "commit": "4a34e0ab66491540dd0c5b62c7f60684056b16d5", + "sha256": "153cj58x2xcmjs2n4fl1jsv8zir4z9jwg1w00ghv70k5j3rwsjkp", + "fetcher": "github", + "repo": "emacs-helm/helm-pass", + "unstable": { + "version": [ + 20190315, + 1335 + ], + "deps": [ + "auth-source-pass", + "helm", + "password-store" + ], + "commit": "ed5798f2d83937575e8f23fde33323bca9e85131", + "sha256": "0vglaknmir3yv4iwibwn8r40ran8d04gcyp99hx73ldmf3zqpnxv" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "auth-source-pass", + "helm", + "password-store" + ], + "commit": "ed5798f2d83937575e8f23fde33323bca9e85131", + "sha256": "0vglaknmir3yv4iwibwn8r40ran8d04gcyp99hx73ldmf3zqpnxv" + } + }, + { + "ename": "helm-perldoc", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb", + "fetcher": "github", + "repo": "syohex/emacs-helm-perldoc", + "unstable": { + "version": [ + 20160918, + 556 + ], + "deps": [ + "deferred", + "helm-core" + ], + "commit": "1979f9f67814c11ec9498502237c89a5e1153100", + "sha256": "0fvjw8sqnwnjx978y7fghvgp5dznx31hx0pjp4iih01xa1hcwbnc" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "cl-lib", + "deferred", + "helm" + ], + "commit": "18645f2065a07acce2c6b50a2f9d7a2554e532a3", + "sha256": "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g" + } + }, + { + "ename": "helm-perspeen", + "commit": "1ee26a57aacbd571da0cfaca2c31eec6ea86a543", + "sha256": "07cnsfhph807fqyai3by2c5ml9a40gxkq280f27disf8sc45rg1y", + "fetcher": "github", + "repo": "jimo1001/helm-perspeen", + "unstable": { + "version": [ + 20170228, + 1345 + ], + "deps": [ + "helm", + "perspeen" + ], + "commit": "7fe2922d85608bfa9e18269fc44181428b8849ff", + "sha256": "1m89c95vzmhsvrg5g7ixz5a5ckw2n983x58cwh8rkmaklavacgsy" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "helm", + "perspeen" + ], + "commit": "aec145d5196aed1689563d138a2aa37b139e1759", + "sha256": "1wv13mvm9149nl9p93znl3d2yfnq4rph440ja07w804cd61qjhq9" + } + }, + { + "ename": "helm-phpunit", + "commit": "96470d7190199bfb13dd54e7e8f5ea50cf0a5039", + "sha256": "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6", + "fetcher": "github", + "repo": "eric-hansen/helm-phpunit", + "unstable": { + "version": [ + 20160513, + 853 + ], + "deps": [ + "helm", + "phpunit" + ], + "commit": "739f26204ad2ba76c25f45e8eab1e5216f7c3518", + "sha256": "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw" + } + }, + { + "ename": "helm-posframe", + "commit": "a99c37bc50c371aae8ccc27de8120d4773981cf7", + "sha256": "16mhi17kl3cgwk7ymzg8crakwrwrzsg5p9ijgrdawa7px2z9ym78", + "fetcher": "github", + "repo": "tumashu/helm-posframe", + "unstable": { + "version": [ + 20180610, + 1748 + ], + "deps": [ + "helm", + "posframe" + ], + "commit": "d28f96ea92ee9393658901bb552723db10f40dc3", + "sha256": "1ycf5m06n32axqpm2vkvszff6gxdps1y8gm46682nf8mk2i3xa6f" + } + }, + { + "ename": "helm-proc", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "11mh8ny8mhdmp16s21vy9yyql56zxcgmj2aapqs5jy4yad5q62rz", + "fetcher": "github", + "repo": "markus1189/helm-proc", + "unstable": { + "version": [ + 20161006, + 305 + ], + "deps": [ + "helm" + ], + "commit": "576d31c2d74ba3897d56e2acd2b0993f52c2547c", + "sha256": "11xahzybwh02ds19y6h5hbpqdj278kcb4239vyykdl3wx8p048a7" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "helm" + ], + "commit": "0a75a86e4f381143134e0cdcd8c84c5b5b0fb2d6", + "sha256": "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2" + } + }, + { + "ename": "helm-project-persist", + "commit": "98780edaf8b1d97aec9e25d07d93289c90fd5069", + "sha256": "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld", + "fetcher": "github", + "repo": "Sliim/helm-project-persist", + "unstable": { + "version": [ + 20151210, + 1543 + ], + "deps": [ + "helm", + "project-persist" + ], + "commit": "357950fbac18090985a750e40d5d8b10ee9dcd53", + "sha256": "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "helm", + "project-persist" + ], + "commit": "df63a21b9118f9639f0f4a336127b4fb8ec6deec", + "sha256": "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik" + } + }, + { + "ename": "helm-projectile", + "commit": "8bc4e3a5af7ba86d277c73a1966a91c87d3d855a", + "sha256": "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a", + "fetcher": "github", + "repo": "bbatsov/helm-projectile", + "unstable": { + "version": [ + 20190731, + 1538 + ], + "deps": [ + "cl-lib", + "helm", + "projectile" + ], + "commit": "5328b74dddcee8d1913803ca8167868831a07463", + "sha256": "0a811cblrvc8llpv771b8dppgxs6bwjyvjy3qn2xns4nigvn93s0" + }, + "stable": { + "version": [ + 0, + 14, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "helm", + "projectile" + ], + "commit": "1a90f93732f1a1e8080098d65eadd6a1cd799e31", + "sha256": "0lph38p112fridighqcizpsyzjbv7qr3d8prbfj6w6q6gfl6cna4" + } + }, + { + "ename": "helm-prosjekt", + "commit": "6d359ec827573dd8c871c4f23df5d1737f1830e7", + "sha256": "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm", + "fetcher": "github", + "repo": "abingham/prosjekt", + "unstable": { + "version": [ + 20140129, + 717 + ], + "deps": [ + "helm", + "prosjekt" + ], + "commit": "a864a8be5842223043702395f311e3350c28e9db", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3" + } + }, + { + "ename": "helm-pt", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "1pvipzjw9h668jkbwwkmphvp806fs9q4mb2v2bjxpb0f3kn2qk3n", + "fetcher": "github", + "repo": "ralesi/helm-pt", + "unstable": { + "version": [ + 20160214, + 2342 + ], + "deps": [ + "helm" + ], + "commit": "8acc52911dad1ed0c3975f134a468762afe0b76b", + "sha256": "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "helm" + ], + "commit": "03e35e2bb5b683d79897d07acb57ee67009cc6cd", + "sha256": "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv" + } + }, + { + "ename": "helm-purpose", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16c9if636v7l8z5df011vdj4a3ci5kf3rdfk4g9hdbbl639yca79", + "fetcher": "github", + "repo": "bmag/helm-purpose", + "unstable": { + "version": [ + 20170114, + 1636 + ], + "deps": [ + "helm", + "window-purpose" + ], + "commit": "9ff4c21c1e9ebc7afb851b738f815df7343bb287", + "sha256": "1xh6v5xlf1prgk6mrvkc6qa0r0bz74s5f4z3dl7d00chsi7i2m5v" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "helm", + "window-purpose" + ], + "commit": "115a9d612aa07bb6f7f7b18f42b34918699660b9", + "sha256": "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz" + } + }, + { + "ename": "helm-pydoc", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7", + "fetcher": "github", + "repo": "syohex/emacs-helm-pydoc", + "unstable": { + "version": [ + 20160918, + 542 + ], + "deps": [ + "helm-core" + ], + "commit": "85480a29b56dacde425655bc8f5a597c785afdf5", + "sha256": "1wrs2d84xzjnsmw255bmnd1wcpwd36m0vyni48aa7661d4dh10x3" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "cl-lib", + "helm-core" + ], + "commit": "30f1814b5b16db0413ffe74b0d0420b38e153df9", + "sha256": "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs" + } + }, + { + "ename": "helm-qiita", + "commit": "37331f6cc8a95fd2b2ed5b20be0bcb604ea66dee", + "sha256": "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm", + "fetcher": "github", + "repo": "masutaka/emacs-helm-qiita", + "unstable": { + "version": [ + 20190526, + 1359 + ], + "deps": [ + "helm" + ], + "commit": "5f82010c595f8e122aa3f68148ba8d8ccb1333d8", + "sha256": "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68" + }, + "stable": { + "version": [ + 1, + 1, + 3 + ], + "deps": [ + "helm" + ], + "commit": "5f82010c595f8e122aa3f68148ba8d8ccb1333d8", + "sha256": "1vkm2h0ia0gqqjw6cnbyik0fv37zzjwwdzk1cnh7a3s5hsg60i68" + } + }, + { + "ename": "helm-rage", + "commit": "84f831fdc5a0e90c23ac11c79f193f4d3c1ebb04", + "sha256": "02pdmkzwnqhf1r0v7b498z5b2il3ng75ykdwgmwd60k6hiygj70x", + "fetcher": "github", + "repo": "bomgar/helm-rage", + "unstable": { + "version": [ + 20180118, + 1532 + ], + "deps": [ + "dash", + "helm", + "s" + ], + "commit": "5d0aefb53d859186181d4bdcfeff7d315339c7b8", + "sha256": "0msj3rrv9bwhhwz7r1ayr6qvnxjsq7374j0xfhqbrx49pix4qf3q" + } + }, + { + "ename": "helm-rails", + "commit": "3af52fd266364a81ff42eb6d08389fa549bd6c2c", + "sha256": "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6", + "fetcher": "github", + "repo": "asok/helm-rails", + "unstable": { + "version": [ + 20130424, + 1519 + ], + "deps": [ + "helm", + "inflections" + ], + "commit": "506d9948d45dfbc575c9c4c0d102c1ad2f511e82", + "sha256": "0i5ps5yds21bsrx86piy9bdgca95l1farsrbjpqz88ad8pq6xa9c" + } + }, + { + "ename": "helm-rb", + "commit": "7ba8e94755f5a96881bbf4c4ffbff67bec9b804a", + "sha256": "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr", + "fetcher": "github", + "repo": "yuutayamada/helm-rb", + "unstable": { + "version": [ + 20131123, + 1639 + ], + "deps": [ + "helm", + "helm-ag-r" + ], + "commit": "4949d646420a9849af234dacdd8eb34a77c662fd", + "sha256": "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid" + } + }, + { + "ename": "helm-rdefs", + "commit": "e1c7a20847513dc1153d54a3a700bc120f71dc6b", + "sha256": "0z3nrqrz63j9nxkbxdsjj3z8zhsqlik28iry3j1plgsxq1mhrn0y", + "fetcher": "github", + "repo": "saidie/emacs-helm-rdefs", + "unstable": { + "version": [ + 20161130, + 536 + ], + "deps": [ + "helm" + ], + "commit": "cd3a6b3af3015ee58ef30cb7c81c79ebe5fc867b", + "sha256": "0ji7ak9pkmw0wxzmw5a1amvn3pkj90v9jv1yi12w388njxn7qsvj" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "helm" + ], + "commit": "cd3a6b3af3015ee58ef30cb7c81c79ebe5fc867b", + "sha256": "0ji7ak9pkmw0wxzmw5a1amvn3pkj90v9jv1yi12w388njxn7qsvj" + } + }, + { + "ename": "helm-recoll", + "commit": "0a0d168f96470753c22b92ad863be98d8c421ccd", + "sha256": "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b", + "fetcher": "github", + "repo": "emacs-helm/helm-recoll", + "unstable": { + "version": [ + 20190729, + 453 + ], + "deps": [ + "helm" + ], + "commit": "219e517dd79a7879414ca36e8de28a159a49c78a", + "sha256": "0yjz8g8v839fs42lmmjbm5l4yzkq9npjlb6jxz6nv5j71xvz5lbf" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "helm" + ], + "commit": "8548b157f40f5e7a4940a54abe5ca0016fd9bdee", + "sha256": "1a3ja8j9nvddlyr04q1wn60r6pp83fcwmmn54dn0c3m3w5icflcw" + } + }, + { + "ename": "helm-rg", + "commit": "958fbafdcb214f1ec89fd0d84c6600c89890e0cf", + "sha256": "0gfq59540q9s6mr04q7dz638zqmqbqmbl1qaczddgmjn4vyjmf7v", + "fetcher": "github", + "repo": "cosmicexplorer/helm-rg", + "unstable": { + "version": [ + 20190130, + 1734 + ], + "deps": [ + "cl-lib", + "dash", + "helm" + ], + "commit": "785a80fe5cc87e27c5ea3d00a70049028d9e2847", + "sha256": "1cfdnwlgwil7fp228p5sb3jkwrgnhnad4p2m1vl2wn0fjb89dppp" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "helm" + ], + "commit": "96dcbeb366caa0b158668384113458ee5f7c4dfd", + "sha256": "1k9yv9iw694alf5w7555ygk2i1b26i90rqq7ny63a4nd3y5cbs5f" + } + }, + { + "ename": "helm-rhythmbox", + "commit": "8a81c43958308ad8035a9d0b2422fd094adc72f0", + "sha256": "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a", + "fetcher": "github", + "repo": "mrBliss/helm-rhythmbox", + "unstable": { + "version": [ + 20160524, + 1158 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "c92e1ded34ddd4e62e7e9a558259c232e05193fa", + "sha256": "1ng73dmligj38xbfdfr8sb69czppks7wfvh5q5xcm2pha828kcwm" + } + }, + { + "ename": "helm-robe", + "commit": "e7018f57f6f0e4bd71e172ae23c050b44276581b", + "sha256": "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw", + "fetcher": "github", + "repo": "syohex/emacs-helm-robe", + "unstable": { + "version": [ + 20151209, + 355 + ], + "deps": [ + "helm" + ], + "commit": "6e69543b4ee76c5f8f3f2510c76e6d9aed17a370", + "sha256": "1qcx036pgrg4xc1y74amd8jkjylnc0g1c4841cc3fbknnn1ap54g" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "helm" + ], + "commit": "7348d0bc0251b51979554ea678b970fd01c0efe9", + "sha256": "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg" + } + }, + { + "ename": "helm-ros", + "commit": "2c9ddf53b4060c33550a445f877aef37dffaeb7e", + "sha256": "1q9qqjchkj6anikaamhw998f5aaampc1z7085v9pigg3x11vv9fm", + "fetcher": "github", + "repo": "davidlandry93/helm-ros", + "unstable": { + "version": [ + 20160812, + 1752 + ], + "deps": [ + "cl-lib", + "helm", + "xterm-color" + ], + "commit": "92b0b215f6a017f0f57f1af15466cc0b2a5a0135", + "sha256": "1fgph8wsm2nakn53zj19r59mirzn25r601rljmdv2xpw5h3axywg" + } + }, + { + "ename": "helm-rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "1vv6wnniplyls344qzgcf1ivv25c8qilax6sbhvsf46lvrwnr48n", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20170813, + 411 + ], + "deps": [ + "helm", + "rtags" + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "deps": [ + "helm", + "rtags" + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "helm-rubygems-local", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh", + "fetcher": "github", + "repo": "hadashiA/helm-rubygems-local", + "unstable": { + "version": [ + 20130712, + 111 + ], + "deps": [ + "helm" + ], + "commit": "289cb33d41c703af9791d6da46b55f070013c2e3", + "sha256": "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d" + } + }, + { + "ename": "helm-rubygems-org", + "commit": "655be547d57d358eff968f42c13dcf4371529a72", + "sha256": "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs", + "fetcher": "github", + "repo": "neomantic/helm-rubygems-org", + "unstable": { + "version": [ + 20140826, + 1156 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "6aaed984f698cbdf9f9aceb0221404563e28764d", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "6aaed984f698cbdf9f9aceb0221404563e28764d", + "sha256": "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0" + } + }, + { + "ename": "helm-safari", + "commit": "553e27a3523ade9dc4951086d9340e8240d5d943", + "sha256": "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y", + "fetcher": "github", + "repo": "xuchunyang/helm-safari", + "unstable": { + "version": [ + 20160404, + 324 + ], + "deps": [ + "helm" + ], + "commit": "664c7f4488829228eed7e90cd53002e14bec555b", + "sha256": "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz" + } + }, + { + "ename": "helm-sage", + "commit": "09760a7f7b3cff6551c394fc7b2298567ca88eb0", + "sha256": "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj", + "fetcher": "github", + "repo": "stakemori/helm-sage", + "unstable": { + "version": [ + 20160514, + 745 + ], + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ], + "commit": "f14e9281d8f2162df7d8f9c2ad9ad1248a24803b", + "sha256": "0padb6mncgc52wib3dgvdc9r4dp591gf8nblbfnsnxx4zjrcwawb" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "cl-lib", + "helm", + "sage-shell-mode" + ], + "commit": "b42b4ba5fd1b17c4b54c30376a053281686beeb8", + "sha256": "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl" + } + }, + { + "ename": "helm-selected", + "commit": "acc087661e614d9f30c23fe4a65c020bd3656a29", + "sha256": "0ksyh0r59y4abwls6v6v519yxmcjnaryfnxlam48fqqfrsxv1j0h", + "fetcher": "github", + "repo": "takaxp/helm-selected", + "unstable": { + "version": [ + 20171223, + 210 + ], + "deps": [ + "helm", + "selected" + ], + "commit": "a9c769998bc56373d19f0ec9cbbbb4bd89a43c2d", + "sha256": "1n6sp6bhlz01b1d87cgrgxhap0ch1bkh7fl45dzidx5fjz9lccdf" + } + }, + { + "ename": "helm-sheet", + "commit": "010c5c5e6ad6e7b05e63936079229739963bf970", + "sha256": "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc", + "fetcher": "github", + "repo": "yasuyk/helm-sheet", + "unstable": { + "version": [ + 20130630, + 1239 + ], + "deps": [ + "helm" + ], + "commit": "d360b68d0ddb09aa1854e7b2f3cb39caeee26463", + "sha256": "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx" + } + }, + { + "ename": "helm-slime", + "commit": "c35d43a7a8219de4a7f675147f598966aaecb9db", + "sha256": "0qv4c1dd28zqbjxpshga967szrh75a4k51n4x86xkbax7ycca4hh", + "fetcher": "github", + "repo": "emacs-helm/helm-slime", + "unstable": { + "version": [ + 20190703, + 714 + ], + "deps": [ + "cl-lib", + "helm", + "slime" + ], + "commit": "e51f756f2a6e00231a34f2b46aba6c746a112624", + "sha256": "1aam9zxx7j3g2kp6n62hjrcw6rkdnyk90anihbm1z89kb2b00bgw" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "helm-core", + "slime" + ], + "commit": "ebe80eebd1dfba1f1c837876c8f73cefc8c4db87", + "sha256": "1qhb9446rpj17pm0hi3miy5gs5k3ld43bq29kzy0y26bf7ivfcjv" + } + }, + { + "ename": "helm-smex", + "commit": "85568bd732da952053148e07b95e53f7caf5f62c", + "sha256": "02jvq2hyq4wwc9v8gaxr9vkjldc60khdbjf71p8w2iny5w3k0jbj", + "fetcher": "github", + "repo": "ptrv/helm-smex", + "unstable": { + "version": [ + 20171004, + 2008 + ], + "deps": [ + "helm", + "smex" + ], + "commit": "2269375dfa452b88b5170d1a5d5849ebb2c1e413", + "sha256": "0n2ki7g0hygsq4bi5zkhp3v772ld7niiajfznxmv11dgn949a52s" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "helm", + "smex" + ], + "commit": "2269375dfa452b88b5170d1a5d5849ebb2c1e413", + "sha256": "0n2ki7g0hygsq4bi5zkhp3v772ld7niiajfznxmv11dgn949a52s" + } + }, + { + "ename": "helm-spaces", + "commit": "8c2ffb50643223b68a62fab348cd5aba24ce92e6", + "sha256": "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791", + "fetcher": "github", + "repo": "yasuyk/helm-spaces", + "unstable": { + "version": [ + 20161001, + 1409 + ], + "deps": [ + "helm-core", + "spaces" + ], + "commit": "877e2b5178926308d6a7c2a37477bb12c33a96d4", + "sha256": "1cz8aw6zprzfalagma7jmbycwll2chk2l4n5hkgqyhakdfm2ryzm" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "helm-core", + "spaces" + ], + "commit": "877e2b5178926308d6a7c2a37477bb12c33a96d4", + "sha256": "1cz8aw6zprzfalagma7jmbycwll2chk2l4n5hkgqyhakdfm2ryzm" + } + }, + { + "ename": "helm-spotify", + "commit": "1bf9eda57cba4742656f37a621b6d394483ff638", + "sha256": "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf", + "fetcher": "github", + "repo": "krisajenkins/helm-spotify", + "unstable": { + "version": [ + 20160905, + 2147 + ], + "deps": [ + "helm", + "multi" + ], + "commit": "f7a62d1ff88e3127de9be7cd3e818b0a92268ab3", + "sha256": "0q3h84zj63b1rnlvmsznrpmvvf0qbic5yb9xkdjcz4jz4h8p3h1w" + } + }, + { + "ename": "helm-spotify-plus", + "commit": "306aa9fd29f1495eef71476dfcba3b494223b0a9", + "sha256": "1f39g2kgx4jr7ahhhswkrj0m5rbsykvkgh00d7jy8czpp8r4dl20", + "fetcher": "github", + "repo": "wandersoncferreira/helm-spotify-plus", + "unstable": { + "version": [ + 20190706, + 1409 + ], + "deps": [ + "helm", + "multi" + ], + "commit": "0cf321dcc766d1f451ed667d4fba7fa36a8e09f1", + "sha256": "0bhvyaj136hnjbla4jkxpih1d9qa6pbwb2h8wgdag9zl3i2c3ryv" + } + }, + { + "ename": "helm-sql-connect", + "commit": "58347c583dcf4a915c1af1262a5348755f28fe03", + "sha256": "1av42580c68iq694yr532hhcq0jn7m58x3cib4ix5c8b4ljvnnvd", + "fetcher": "github", + "repo": "eric-hansen/helm-sql-connect", + "unstable": { + "version": [ + 20170319, + 1251 + ], + "deps": [ + "helm" + ], + "commit": "5aead55b6f8636140945714d8c332b287ab9ef10", + "sha256": "037gri2r9y135av8gbgi9d8k90qs8jlax0bimzcbwdkyhibhzrcp" + } + }, + { + "ename": "helm-swoop", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1b3nyh4h5kcvwam539va4gzxa3rl4a0rdcriif21yq340yifjbdx", + "fetcher": "github", + "repo": "ShingoFukuyama/helm-swoop", + "unstable": { + "version": [ + 20180215, + 1154 + ], + "deps": [ + "helm" + ], + "commit": "c66336b8245ddc51c4206f19c119f1081920985c", + "sha256": "0b23j1bkpg4pm310hqdhgnl4mxsj05gpl08b6kb2ja4fzrg6adsk" + }, + "stable": { + "version": [ + 1, + 7, + 4 + ], + "deps": [ + "helm" + ], + "commit": "c66336b8245ddc51c4206f19c119f1081920985c", + "sha256": "0b23j1bkpg4pm310hqdhgnl4mxsj05gpl08b6kb2ja4fzrg6adsk" + } + }, + { + "ename": "helm-system-packages", + "commit": "0c46cfb0fcda0500e15d04106150a072a1a75ccc", + "sha256": "01mndx2zzh7r7gmpn6gd1vy1w3l6dnhvgn7n2p39viji1r8b39s4", + "fetcher": "github", + "repo": "emacs-helm/helm-system-packages", + "unstable": { + "version": [ + 20190731, + 1551 + ], + "deps": [ + "helm", + "seq" + ], + "commit": "8f8f50a1b2ef0dfb0734057a737abe7e5d77bd86", + "sha256": "18rcr4mdspbsk8wrl9rnhfxr3c7isdhmiz4qf4qm1x79db1j0km2" + }, + "stable": { + "version": [ + 1, + 10, + 1 + ], + "deps": [ + "helm", + "seq" + ], + "commit": "2b4636dc861ffe2c4a2025b67ab40460f85b9563", + "sha256": "01by0c4lqi2cw8xmbxkjw7m9x78zssm31sx4hdpw5j35s2951j0f" + } + }, + { + "ename": "helm-systemd", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1m1by9i37ban3zkznyamp5vxizj8zsz06fdscdhmky1grf6ri4r8", + "fetcher": "github", + "repo": "Lompik/helm-systemd", + "unstable": { + "version": [ + 20180131, + 434 + ], + "deps": [ + "helm", + "with-editor" + ], + "commit": "96f5cd3ee3412539c2f8d145201f47c4f8e53b4f", + "sha256": "0wyabh76q2lighd7qxpkzp35fkblxlz8g7p4lpgfwvjid0ixmnvq" + } + }, + { + "ename": "helm-tail", + "commit": "74b235c2ecf8c8f8206670bca3b915deb4b77c2b", + "sha256": "0sw97fzpnrk335l3vjaj3nw87cajhzwsjsxx16r0x6npbiv51wd4", + "fetcher": "github", + "repo": "akirak/helm-tail", + "unstable": { + "version": [ + 20181124, + 439 + ], + "deps": [ + "helm" + ], + "commit": "1f5a6355aa3bdb00b9b0bc93db29c17f0d6701e3", + "sha256": "1ad0khw26m22xpdv0iyg5gac92i8m455sznsfh16vxaa98gq0c4q" + } + }, + { + "ename": "helm-taskswitch", + "commit": "3602b1f7b9a75cc82c4bde9ea12b2509465db30f", + "sha256": "01yvdbwlixif670f4lffpsk9kvlhgrmh95jw0vc568x0bd3j2a02", + "fetcher": "github", + "repo": "bdc34/helm-taskswitch", + "unstable": { + "version": [ + 20190304, + 1414 + ], + "deps": [ + "helm" + ], + "commit": "59f7cb99defa6e6bf6e7d599559fa8d5786cf8a9", + "sha256": "0bx9fvw0jv1f4xdvf94lgxdzhvx2lpab4gyx71w6dg5wvd5cxzq0" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "deps": [ + "helm" + ], + "commit": "de494738f8e5f7d6e681199dd3aad91e5bdb7691", + "sha256": "01a4z0x5p94hglcnakxdgi4cq0cvz48c3dg58b7y2cq1nwjdw8d7" + } + }, + { + "ename": "helm-themes", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j", + "fetcher": "github", + "repo": "syohex/emacs-helm-themes", + "unstable": { + "version": [ + 20160918, + 545 + ], + "deps": [ + "helm-core" + ], + "commit": "1160af42590b0d845a55e65e1e782d9e4027fd6e", + "sha256": "0856h8rnbgrxp3v3jpfmwq7kcdm1ymd4gcfvh0h27mk05113vz53" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "helm" + ], + "commit": "8c979f4efc6174eed7df5f3b62db955246202818", + "sha256": "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li" + } + }, + { + "ename": "helm-tramp", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0wqnabaywkhj1fnc3wpx7czrqbja1hsqwcpixmvv0fyrflmza517", + "fetcher": "github", + "repo": "masasam/emacs-helm-tramp", + "unstable": { + "version": [ + 20190616, + 125 + ], + "deps": [ + "helm" + ], + "commit": "924b5516270b3933e847562e8e14e3888dd24184", + "sha256": "19y97ia4zl50wd22gkb7kkhj713imd5jc92l2xnpw04b59b60di1" + }, + "stable": { + "version": [ + 1, + 3, + 9 + ], + "deps": [ + "helm" + ], + "commit": "924b5516270b3933e847562e8e14e3888dd24184", + "sha256": "19y97ia4zl50wd22gkb7kkhj713imd5jc92l2xnpw04b59b60di1" + } + }, + { + "ename": "helm-unicode", + "commit": "f720b9f9b667bf9ff3080938beab36aa0036dc92", + "sha256": "1j95qy2zwdb46dl30ankfx7013l0akc61m14s473j93w320j5224", + "fetcher": "github", + "repo": "bomgar/helm-unicode", + "unstable": { + "version": [ + 20180608, + 1407 + ], + "deps": [ + "helm" + ], + "commit": "fbeb0c5e741a6f462520884b744d43a9acbe1d34", + "sha256": "1aqwjw0jky07swagxnaqcn28inckavvpnlrwj62fljglip87zrc2" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "deps": [ + "helm" + ], + "commit": "3b2a61dd9d4c9e85946567e07d8e70e276c5136b", + "sha256": "1247ghg1jkslgvwbffzsaxabz5l6qszw14vrwgln9smsc42cxjy2" + } + }, + { + "ename": "helm-w32-launcher", + "commit": "fa678329a5081e1affa460c00239dabfd1b9dd82", + "sha256": "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri", + "fetcher": "github", + "repo": "Fanael/helm-w32-launcher", + "unstable": { + "version": [ + 20141223, + 2014 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "3e59ad62b89dd21d334af0203d445a83eb25dc5b", + "sha256": "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq" + }, + "stable": { + "version": [ + 0, + 1, + 6 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "01aa370a32900e7521330fba495474f2aa435e19", + "sha256": "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q" + } + }, + { + "ename": "helm-w3m", + "commit": "f683fc9c7990e9ecb8a94808a7d03eb90c5569b1", + "sha256": "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz", + "fetcher": "github", + "repo": "emacs-helm/helm-w3m", + "unstable": { + "version": [ + 20181029, + 726 + ], + "deps": [ + "cl-lib", + "helm", + "w3m" + ], + "commit": "c15d926631198d6d759ec8881837bcca5a64963b", + "sha256": "0qaqcwhwmckfmg3axiad35azn0l74k1niw4ix0v1bn2vqrxanqcw" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib", + "helm", + "w3m" + ], + "commit": "280673470672c9fbc57fd6a91defeb9f6641fc8a", + "sha256": "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz" + } + }, + { + "ename": "helm-wordnet", + "commit": "11626120951afc589beac4cf5a0f49bffa752349", + "sha256": "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f", + "fetcher": "github", + "repo": "raghavgautam/helm-wordnet", + "unstable": { + "version": [ + 20160128, + 1507 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "a36dbc6fcb570b812870bc1e190f203e0a0042fc", + "sha256": "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh" + } + }, + { + "ename": "helm-xcdoc", + "commit": "e3352ce89039fb48827b74f22fcf543722a27738", + "sha256": "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v", + "fetcher": "github", + "repo": "fujimisakari/emacs-helm-xcdoc", + "unstable": { + "version": [ + 20160116, + 1018 + ], + "deps": [ + "helm" + ], + "commit": "a85612149a6d8e18ab309b3db2d222ce39c42049", + "sha256": "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6" + } + }, + { + "ename": "helm-xref", + "commit": "6d1796688ed0d6957557d960ca28e450f9bcb6cf", + "sha256": "1wyh25gxqgsc151bv4j5l050z1cz0n3yq174m62ihi1fy1pkra4l", + "fetcher": "github", + "repo": "brotzeit/helm-xref", + "unstable": { + "version": [ + 20190721, + 1455 + ], + "deps": [ + "helm" + ], + "commit": "cc90ed9e04f848b252ba50951f332f4c4208651b", + "sha256": "0gzfmnnvjc42r0pk1jxlcacl0bmr3jqav6rnj7cfk2g05af10xli" + } + }, + { + "ename": "helm-youtube", + "commit": "7537f732091b96b6c1b96c0174895278eba6776a", + "sha256": "1qal5q83p06ghn482rflcfklr17mir582r0mvchxabb5ql60dy0b", + "fetcher": "github", + "repo": "maximus12793/helm-youtube", + "unstable": { + "version": [ + 20190101, + 1733 + ], + "deps": [ + "cl-lib", + "helm", + "request" + ], + "commit": "e7272f1648c7fa836ea5ac1a61770b4931ab4709", + "sha256": "062i1gkwa1rmxaw5mf20vc3nqsj6g6hfbggcglgd3wfn9rckvlqb" + } + }, + { + "ename": "helm-z", + "commit": "48c9b83fff8fc428d9d1ecf0005d47f2adb8cb00", + "sha256": "1m268zsr4z7a9l5wj0i8qpimv0kyl8glgm0yb3f08959538nlmd1", + "fetcher": "github", + "repo": "yynozk/helm-z", + "unstable": { + "version": [ + 20171204, + 325 + ], + "deps": [ + "helm" + ], + "commit": "37212220bebea8b9c238cb1bbacd8332b7f26c03", + "sha256": "1vz958yiva01yl1qj2pz84savcx8jgkvbywhcp4c3a8x3fikf0yl" + } + }, + { + "ename": "helm-zhihu-daily", + "commit": "27246ec2bad3c85f8bb76aa26ebcd800edfe0d70", + "sha256": "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r", + "fetcher": "github", + "repo": "xuchunyang/helm-zhihu-daily", + "unstable": { + "version": [ + 20160625, + 1145 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7", + "sha256": "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib", + "helm" + ], + "commit": "be27dcc6be1eb97663b65581a9a5c0fc81cfaba7", + "sha256": "1s8q97pra27bacvm5knj0sjgj7iqljlhxqiniaw8ij8w4fhcdh93" + } + }, + { + "ename": "help-find-org-mode", + "commit": "572003398d1bba572fa9f6332b25ade9306bf718", + "sha256": "149rd61bcvgrwhnhlqriw6fn6fr4pwr4ynmj2bwcp558nwf0py0b", + "fetcher": "github", + "repo": "EricCrosson/help-find-org-mode", + "unstable": { + "version": [ + 20181204, + 234 + ], + "commit": "aeda7f92c086dab9d8dfcd580fe80b332887a548", + "sha256": "18qj0ssmysfr5hlrayhw8m7a1nr1fpzsd5hn15kzbi7kzdnmc18w" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "c6fa2c8a8e9381572190010a9fa01f2be78f2790", + "sha256": "1szjqaw31r5070wpbj5rcai124c66bs32x35w1hsxyvzs5k85wg9" + } + }, + { + "ename": "helpful", + "commit": "889d34b654de13bd413d46071a5ff191cbf3d157", + "sha256": "17w9j5v1r2c8ka1fpzbr295cgnsbiw8fxlslh4zbjqzaazamchn2", + "fetcher": "github", + "repo": "Wilfred/helpful", + "unstable": { + "version": [ + 20190723, + 2348 + ], + "deps": [ + "dash", + "dash-functional", + "elisp-refs", + "f", + "s" + ], + "commit": "8ac851e7c0f8345046d053d136befe28fd75dcd9", + "sha256": "17kzflrkxcmhh480csaxjxy55gszcwy62yihd0hp73mdx6pw4g4x" + }, + "stable": { + "version": [ + 0, + 17 + ], + "deps": [ + "dash", + "dash-functional", + "elisp-refs", + "f", + "s" + ], + "commit": "429f1fb5f588cc6124513335e8eca3b4ef15735a", + "sha256": "0v2y0x9pwi08y2mgjjiw5brfb5haa7pbmy4540glw904ffxxcblj" + } + }, + { + "ename": "hemera-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "00d8dmmn7mhzj6ai0qgdkj4hy1qpdcyiriky97prydibjvljq239", + "fetcher": "github", + "repo": "guidoschmidt/emacs-hemera-theme", + "unstable": { + "version": [ + 20180916, + 924 + ], + "commit": "b67c902b210b37b00cac68726822404543147ba8", + "sha256": "1q31kz5p97pby26lyb6r0jfcx5pdyax3sfba4lp8dzmxpisz2g2p" + } + }, + { + "ename": "hemisu-theme", + "commit": "bb4dd85ccbd2c8936e59ca5c5e6234290b8bdf1b", + "sha256": "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph", + "fetcher": "github", + "repo": "andrzejsliwa/hemisu-theme", + "unstable": { + "version": [ + 20130508, + 1844 + ], + "commit": "5c206561aa2c844ecdf3e3b672c3235e559ddd7f", + "sha256": "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697" + } + }, + { + "ename": "heroku", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1wavsymviybfcmwdfrffbkdwbiydggx55jqg6ql79wf9bx7agacp", + "fetcher": "github", + "repo": "technomancy/heroku.el", + "unstable": { + "version": [ + 20120629, + 1813 + ], + "commit": "92af1c073b593c4def99c8777c869992aa4d0b3a", + "sha256": "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj" + } + }, + { + "ename": "heroku-theme", + "commit": "348f0e7aec86c3efd87ab06849a5f1ce90ba23e2", + "sha256": "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9", + "fetcher": "github", + "repo": "jonathanchu/heroku-theme", + "unstable": { + "version": [ + 20150523, + 219 + ], + "commit": "8083643fe92ec3a1c3eb82f1b8dc2236c9c9691d", + "sha256": "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx" + } + }, + { + "ename": "hexo", + "commit": "21de1b7db0fa4af4fc0014207d41893a0713d738", + "sha256": "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn", + "fetcher": "github", + "repo": "kuanyui/hexo.el", + "unstable": { + "version": [ + 20180815, + 219 + ], + "commit": "6bca18f911f6b2cd5c055ed73ddec98c385f9f86", + "sha256": "1zawz3nry832rhx80hyfqfs0gfw3hyrn96060zj3n75avx13rr8j" + } + }, + { + "ename": "hfst-mode", + "commit": "e324bb114997f9cc57d76d8a66fec4ff4d1d71fe", + "sha256": "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7", + "fetcher": "github", + "repo": "unhammer/hfst-mode", + "unstable": { + "version": [ + 20160708, + 1202 + ], + "commit": "ac1bb9dd92545d3e7fdc05c83996c227cc15c6b8", + "sha256": "0zsz8542kh51clzy8j7g29bwm8zcnfxm9sjzh3xjpqk2ziqf4ii6" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "ac1bb9dd92545d3e7fdc05c83996c227cc15c6b8", + "sha256": "0zsz8542kh51clzy8j7g29bwm8zcnfxm9sjzh3xjpqk2ziqf4ii6" + } + }, + { + "ename": "hg-histedit", + "commit": "ce252397ab16ff9cbb965a036710d8b843db267f", + "sha256": "0c09p4pvv53wpm68sn251x52lqz0zfxq98aazhwbpp7i3jxbzq2b", + "fetcher": "github", + "repo": "jojojames/hg-histedit", + "unstable": { + "version": [ + 20190707, + 11 + ], + "deps": [ + "with-editor" + ], + "commit": "2448d00bc390fed3e53091d968ec1222c8e7e35b", + "sha256": "0qp29yiyplv8h0z2yk5h0473a7nj401h14gi3fqsxqq9brx3s9jy" + } + }, + { + "ename": "hgignore-mode", + "commit": "f3e325c84d0a30789fab7e897b4fe5040c5093ba", + "sha256": "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj", + "fetcher": "github", + "repo": "omajid/hgignore-mode", + "unstable": { + "version": [ + 20160501, + 7 + ], + "commit": "7aa9f3b8a9c610dbd80b952061b40194e1d9c5bd", + "sha256": "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr" + } + }, + { + "ename": "hgrc-mode", + "commit": "31a24d95efce2f04f0b555ed16b8d3d5a3aa255a", + "sha256": "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf", + "fetcher": "github", + "repo": "omajid/hgrc-mode", + "unstable": { + "version": [ + 20150409, + 2043 + ], + "commit": "314e8320b82cc1ce74b1bd372f296252e7a23090", + "sha256": "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp" + } + }, + { + "ename": "hi2", + "commit": "ba880f0130707098e5b648f74d14e151b0110e4e", + "sha256": "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2", + "fetcher": "github", + "repo": "nilcons/hi2", + "unstable": { + "version": [ + 20141005, + 1931 + ], + "commit": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "c9d199727b5cdcb9e36a972b38131ce4611fd6c8", + "sha256": "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf" + } + }, + { + "ename": "hide-lines", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "18h5ygi6idpb5wjlmjjvjmwcw7xiljkfxdvq7pm8wnw75p705x4d", + "fetcher": "github", + "repo": "emacsorphanage/hide-lines", + "unstable": { + "version": [ + 20151127, + 1840 + ], + "commit": "331122bf19361130351cfe55968c2a7820329eb3", + "sha256": "183l0sx8zn3jv1fqa3xj7a6fd792sp50jyhm50j3hy7c54m4capf" + }, + "stable": { + "version": [ + 20130623, + 1701 + ], + "commit": "4bfb4c6f4769bd6c637e4c18bbf65506832fc9f0", + "sha256": "01cy7v9ql70bsvjz3idq23jpyb8jb61bs9ff8vf5y3fj45pc32ps" + } + }, + { + "ename": "hide-mode-line", + "commit": "2af28365f9fbc6ae71043a67966490c5d18a6095", + "sha256": "0yl6aicpib5h1ckqi3gyilh2nwvp8gf1017n1w1755j01gw1p9hl", + "fetcher": "github", + "repo": "hlissner/emacs-hide-mode-line", + "unstable": { + "version": [ + 20180302, + 1910 + ], + "commit": "86b9057391edad75467261c2e579603567e608f9", + "sha256": "0qmjmwhmlm008r22n2mv7lir4v1lpfz1c3yvqlwjgv0glbyvqd88" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "86b9057391edad75467261c2e579603567e608f9", + "sha256": "0qmjmwhmlm008r22n2mv7lir4v1lpfz1c3yvqlwjgv0glbyvqd88" + } + }, + { + "ename": "hideshow-org", + "commit": "3de48eee24a5cca9c8b7dba2d6d01dfbc679d8d6", + "sha256": "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc", + "fetcher": "github", + "repo": "shanecelis/hideshow-org", + "unstable": { + "version": [ + 20120223, + 2250 + ], + "commit": "16419e52e6cdd2f46f755144c0ab11ce00d1a626", + "sha256": "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r" + } + }, + { + "ename": "hierarchy", + "commit": "7aea238a2d14e9f58c0474251984b6c617b6854d", + "sha256": "0fh1a590pdq21b4mwh9wrfsmm2lw2faw18r35cdzy8fgyf89yimp", + "fetcher": "github", + "repo": "DamienCassou/hierarchy", + "unstable": { + "version": [ + 20190425, + 842 + ], + "commit": "a5bc6bf2e1bbd48cc17c508043134f24abb41944", + "sha256": "18y5xj8j07hca7qk5ygxqpiybv58qf4c85hqw52a59fkn0vvdbhg" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "commit": "4ab1372c252847c316f8978a81e2fe92ff79579e", + "sha256": "1kykbb1sil5cycfa5aj8dhsxc5yrx1641i2np5kwdjid6ahdlz5r" + } + }, + { + "ename": "highlight", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "11icn6f46synw6xvs2a266g43fvpnz8i7d7dyr0iywzjpbpyhsd2", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/highlight.el.git", + "unstable": { + "version": [ + 20181002, + 1151 + ], + "commit": "ea733e17884aeae19172407e20559fc693fdd3a7", + "sha256": "13ajbhpwvdmk0mzaffj45gxqmq13b57d81iqdpg9q2l2wjk95jq7" + } + }, + { + "ename": "highlight-blocks", + "commit": "eaf524488c408483ea8f2c3a71174b1b5fc3f5da", + "sha256": "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1", + "fetcher": "github", + "repo": "Fanael/highlight-blocks", + "unstable": { + "version": [ + 20190318, + 1557 + ], + "commit": "33cf3d36662faa36c86c8d53e4d5a3922efa3eb8", + "sha256": "04v5y04v4n06ig8zld6axrxpz07s70sn5ckxcy8gnz5qm0zvr7mx" + }, + "stable": { + "version": [ + 0, + 1, + 17 + ], + "commit": "33cf3d36662faa36c86c8d53e4d5a3922efa3eb8", + "sha256": "04v5y04v4n06ig8zld6axrxpz07s70sn5ckxcy8gnz5qm0zvr7mx" + } + }, + { + "ename": "highlight-context-line", + "commit": "00df721571ff67fe158251fa843c8f515ded3469", + "sha256": "0zmqcfsr2j0m2l76c8h6lmdqwrd1b38gi6yp5sdib0m4vj9d0pnd", + "fetcher": "github", + "repo": "ska2342/highlight-context-line", + "unstable": { + "version": [ + 20181122, + 2203 + ], + "commit": "6b334e8207c780835a05b6909b4d826898c33d26", + "sha256": "0pzb6pnshcglbjpfk7y2s8qissmldr27phyh1v3mvq2q09pyskb6" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "c3257c0ca9dba76167bbd7e0718a65ecd26ef26f", + "sha256": "10mv1hd33msafp3r62p9zhwivy0l876ci9xjh7nqc9621qxxd5rw" + } + }, + { + "ename": "highlight-defined", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms", + "fetcher": "github", + "repo": "Fanael/highlight-defined", + "unstable": { + "version": [ + 20181106, + 1718 + ], + "commit": "8e05be23e555ab05edc6fb188f5ce28ef495c946", + "sha256": "1xqs8shzka47ns4a60ba2i2kgjcq9vl9w1518ffhb4x2x41lr4ri" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "commit": "9cc03c7136b56c04ea053fbe08a3a4a6af26b90e", + "sha256": "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r" + } + }, + { + "ename": "highlight-doxygen", + "commit": "0153353e5abfa7513e74485049eaa384aaddbd58", + "sha256": "0jkzf2mqn7y465c77vglaj3mr0cpfy2z810mywd1q21d71lsqmbl", + "fetcher": "github", + "repo": "Lindydancer/highlight-doxygen", + "unstable": { + "version": [ + 20180829, + 1818 + ], + "commit": "53f2250018725fa19548e1771ee79fcc23641694", + "sha256": "0l6zh5cmp771h30i16bv3qvcq40pz9fxn3j7a8yx708vanb4d7kc" + } + }, + { + "ename": "highlight-escape-sequences", + "commit": "cd087f2c5a9524986b0f2c7fd7efd1f296363101", + "sha256": "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6", + "fetcher": "github", + "repo": "dgutov/highlight-escape-sequences", + "unstable": { + "version": [ + 20171117, + 1237 + ], + "commit": "08d846a7aa748209d65fecead2b6a766c3e5cb41", + "sha256": "05mc3w1f8ykf80914a1yddw6j8cmh0h57llm07xh89s53821v2is" + } + }, + { + "ename": "highlight-function-calls", + "commit": "2d1eed3f9af218d21ea8db37ee91888e23e59bd5", + "sha256": "0wmxijkhx74da3ygnvzsdvbh2iii4f7424wmm01b5skbr7qva690", + "fetcher": "github", + "repo": "alphapapa/highlight-function-calls", + "unstable": { + "version": [ + 20170908, + 500 + ], + "commit": "f7a1eaf95fc64cc0db4d0567f9ff79ec4ae04787", + "sha256": "1gbj1awjp69352a5p49ldimvij5mj8cngjp2sh45qw1cm5dpq653" + } + }, + { + "ename": "highlight-indent-guides", + "commit": "c8acca65a5c134d4405900a43b422c4f4e18b586", + "sha256": "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm", + "fetcher": "github", + "repo": "DarthFennec/highlight-indent-guides", + "unstable": { + "version": [ + 20190108, + 3 + ], + "commit": "0b10f38c54ffc099861ce8463e16a1b07ddbb203", + "sha256": "0fa41y9gdci60417zksj9bgjx1knwh781i3dfphkgr7qbx25iky7" + } + }, + { + "ename": "highlight-indentation", + "commit": "31c443de5088410c0fe1b1c18f664b33ad259277", + "sha256": "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6", + "fetcher": "github", + "repo": "antonj/Highlight-Indentation-for-Emacs", + "unstable": { + "version": [ + 20181204, + 839 + ], + "commit": "d03803f2c06749c430443a3d24e039cbafc9c58f", + "sha256": "1jq0gf4kcx9hvrw40rnw5c2qynjpjw1vsjbi2i4lqjbsnfnxn4wz" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "commit": "cd6d8168ccb04c6c0394f42e9512c58f23c01689", + "sha256": "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k" + } + }, + { + "ename": "highlight-leading-spaces", + "commit": "74a4af76be764896cef169e24994630498cf19c1", + "sha256": "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p", + "fetcher": "github", + "repo": "mrBliss/highlight-leading-spaces", + "unstable": { + "version": [ + 20151216, + 1222 + ], + "commit": "840db19d863dd97993fd9f893f5be501627b6354", + "sha256": "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl" + } + }, + { + "ename": "highlight-numbers", + "commit": "882e3a4877ddd22cc52f56f0ce3d55b6e4831c7a", + "sha256": "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv", + "fetcher": "github", + "repo": "Fanael/highlight-numbers", + "unstable": { + "version": [ + 20181013, + 1744 + ], + "deps": [ + "parent-mode" + ], + "commit": "8b4744c7f46c72b1d3d599d4fb75ef8183dee307", + "sha256": "075ip8h7bdin0yvvhn5nkwnz58arlaw1imr866ghp12q5rl4shmc" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "parent-mode" + ], + "commit": "b7adef0286aaa5bca8e98a12d0ffed3a880e25aa", + "sha256": "1r07mpyr7rhd7bkg778hx6vbhb4n9ixgzkpszhgks7ri6ia38pj8" + } + }, + { + "ename": "highlight-operators", + "commit": "e7bd74b7a3484e437c6db4f18613744ebae030f5", + "sha256": "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn", + "fetcher": "bitbucket", + "repo": "jpkotta/highlight-operators", + "unstable": { + "version": [ + 20170213, + 2220 + ], + "commit": "3938e88e78c592936fc8fc6eabbfaf7205a967c8", + "sha256": "1h5whrc1iphzq0g8x9mmkhjkbmbdg9i9bvr1y8zrwrs8za8k127y" + } + }, + { + "ename": "highlight-parentheses", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5", + "fetcher": "github", + "repo": "tsdh/highlight-parentheses.el", + "unstable": { + "version": [ + 20180704, + 1102 + ], + "commit": "f0bd58c8dadd2db703b7bfd09e911b5fda05b3df", + "sha256": "14jzh0vr2sig2ql1iq2x7svvk8ayvy9ahz04y407f53h70ifbmdl" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "5aa800a68e3795716de1e7f2722e836781190f31", + "sha256": "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9" + } + }, + { + "ename": "highlight-quoted", + "commit": "93b5ba18e4bc31ca60aee9cb4674586cd8523bcf", + "sha256": "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl", + "fetcher": "github", + "repo": "Fanael/highlight-quoted", + "unstable": { + "version": [ + 20140916, + 1822 + ], + "commit": "24103478158cd19fbcfb4339a3f1fa1f054f1469", + "sha256": "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "cdd7164f9ad3a9929387c08af641ef6f5f013f4f", + "sha256": "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb" + } + }, + { + "ename": "highlight-refontification", + "commit": "d6c59f2b5cf1594248e8365b6ce3324f493c5647", + "sha256": "0cm9p4d7yhkz5a88m0y4646a6b9lb2ha7q12fcrdikyckpmbkqss", + "fetcher": "github", + "repo": "Lindydancer/highlight-refontification", + "unstable": { + "version": [ + 20170211, + 2024 + ], + "commit": "32632897d88c4611fadb08517ca00ef5cbc989b6", + "sha256": "1k6af947h70ivkj31mk3nv2vkxlfpqvpwq8za53n2l7adsjdlf73" + } + }, + { + "ename": "highlight-stages", + "commit": "46884aa6588f55d6f688477a5e9f528f57673131", + "sha256": "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4", + "fetcher": "github", + "repo": "zk-phi/highlight-stages", + "unstable": { + "version": [ + 20161212, + 1457 + ], + "commit": "29cbc5b78261916da042ddb107420083da49b271", + "sha256": "0r6nbcrr0dqpgm8dir8ahzjy7rw4nrac48byamzrq96r7ajlxlv0" + } + }, + { + "ename": "highlight-symbol", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "01zw7xrkpgc89m55d60dx3s3kjajh5c164f64s2fzrgl9xj92h0r", + "fetcher": "github", + "repo": "nschum/highlight-symbol.el", + "unstable": { + "version": [ + 20160102, + 2009 + ], + "commit": "7a789c779648c55b16e43278e51be5898c121b3a", + "sha256": "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "6136dac6d4328c19077a838dfbae2efc4caa4db2", + "sha256": "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6" + } + }, + { + "ename": "highlight-thing", + "commit": "84b6cb403ff9a588771d051e472596f4e3cc974d", + "sha256": "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1", + "fetcher": "github", + "repo": "fgeller/highlight-thing.el", + "unstable": { + "version": [ + 20181229, + 1301 + ], + "commit": "561d08a26f78f18d405d4f371f1c813db094e2f3", + "sha256": "1mqxkcdac8qqzxi1jhnqqr98zj272rkk28m6r29v6x34hgdyjwdz" + } + }, + { + "ename": "highlight-unique-symbol", + "commit": "78b7caccef56cd2f1a9d8001417af52cc06d6573", + "sha256": "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx", + "fetcher": "github", + "repo": "hitode909/emacs-highlight-unique-symbol", + "unstable": { + "version": [ + 20130612, + 542 + ], + "deps": [ + "deferred" + ], + "commit": "4141bf86a94e30d94d9af9c29d40b16886226e1c", + "sha256": "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx" + } + }, + { + "ename": "highlight2clipboard", + "commit": "87afa08061dc406528e7666cd4ee16995839b2d9", + "sha256": "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0", + "fetcher": "github", + "repo": "Lindydancer/highlight2clipboard", + "unstable": { + "version": [ + 20151020, + 1840 + ], + "deps": [ + "htmlize" + ], + "commit": "6ce58a060d9c5843ccb8c79ec2bba7858c68ac15", + "sha256": "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6" + } + }, + { + "ename": "himp", + "commit": "51b31fb1fa7052d16d659313d249eef01ca3ee88", + "sha256": "1igzlvm4g4rcnlvnwi5kn1jfvyrw2vnmp1kpvfnv7w9n6d8kflla", + "error": "Not in archive", + "fetcher": "github", + "repo": "mkcms/himp" + }, + { + "ename": "hindent", + "commit": "9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7", + "sha256": "0az2zhdi73sa3h1q1c0bayqdk22a7ngrvsg9fr8b0i39sn3w8y07", + "fetcher": "github", + "repo": "commercialhaskell/hindent", + "unstable": { + "version": [ + 20180518, + 902 + ], + "deps": [ + "cl-lib" + ], + "commit": "1583be4a8a01b765841f7306284528ae713abb7b", + "sha256": "1l8v3vq3yw7zr1yxyscfw8lggcf0klnyszhv18505c6myybp2dkp" + }, + "stable": { + "version": [ + 5, + 3, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "1583be4a8a01b765841f7306284528ae713abb7b", + "sha256": "1l8v3vq3yw7zr1yxyscfw8lggcf0klnyszhv18505c6myybp2dkp" + } + }, + { + "ename": "hippie-exp-ext", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l", + "fetcher": "github", + "repo": "rubikitch/hippie-exp-ext", + "unstable": { + "version": [ + 20160502, + 2326 + ], + "commit": "4eda13f90da51ab217d024701f4c30f91ffcb90e", + "sha256": "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d" + } + }, + { + "ename": "hippie-expand-slime", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m", + "fetcher": "github", + "repo": "purcell/hippie-expand-slime", + "unstable": { + "version": [ + 20170723, + 146 + ], + "commit": "39bbae94896a62854d31754debdfae71d35fec62", + "sha256": "1l2j5k4jk8jpm1vdf0z5zwa287859afsgd3gda778sdsiy38l6r7" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "de31fbc9f9d55891a006463bcee7670b47084015", + "sha256": "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr" + } + }, + { + "ename": "hippie-namespace", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0", + "fetcher": "github", + "repo": "rolandwalker/hippie-namespace", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "d0d0f15c67ab8bef5e9d1e29a89ecd3613a60b49", + "sha256": "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc" + }, + "stable": { + "version": [ + 0, + 5, + 8 + ], + "commit": "79a662dfe9e61341e071b879f4f9101ca027ad10", + "sha256": "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0" + } + }, + { + "ename": "historian", + "commit": "f16dacf64c52767c0c8aef653ac5d1a7a3bd0883", + "sha256": "00cghcyb3liz2prgygjwsw82d9h70zjddnbf7dvglmj7ph9wn9ab", + "fetcher": "github", + "repo": "PythonNut/historian.el", + "unstable": { + "version": [ + 20190111, + 313 + ], + "commit": "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a", + "sha256": "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48" + } + }, + { + "ename": "history", + "commit": "f51d4cc6521546c99197adeb35459fcd53bd67d4", + "sha256": "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g", + "fetcher": "github", + "repo": "boyw165/history", + "unstable": { + "version": [ + 20160821, + 1602 + ], + "commit": "5317663fb45bbd5e96d258cb0807dcc266ce67ff", + "sha256": "1ghbpfmmp5p0wvivd79165dx5kia8qkmac3a6asg2d6l1h9y58n1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "adef53ecc2f6067bb61f020a2b66c5185a51632d", + "sha256": "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1" + } + }, + { + "ename": "historyf", + "commit": "a67279875c19475433fa13625c95ee5855962a59", + "sha256": "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s", + "fetcher": "github", + "repo": "k1LoW/emacs-historyf", + "unstable": { + "version": [ + 20151124, + 159 + ], + "commit": "196c058ceb092fdd56b0e4ce85b7e714d6f72224", + "sha256": "0fgm1m9mq1zn5gnrynf332hamif05qhh8haqci7gii7crzy47c0g" + }, + "stable": { + "version": [ + 0, + 0, + 9 + ], + "commit": "64ab6c9d2cd6dec6982622bf675326e011373cd2", + "sha256": "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z" + } + }, + { + "ename": "hive", + "commit": "b167265dff60950823a5e98a299462b2b535b9a9", + "sha256": "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya", + "fetcher": "github", + "repo": "r0man/hive-el", + "unstable": { + "version": [ + 20131217, + 1512 + ], + "deps": [ + "sql" + ], + "commit": "11b5172e081ad8079fc78758bef6f306f82ae32b", + "sha256": "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx" + } + }, + { + "ename": "hiwin", + "commit": "5f050fd2b1038dce05a1302d3670933546f86525", + "sha256": "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g", + "fetcher": "github", + "repo": "yoshida-mediba/hiwin-mode", + "unstable": { + "version": [ + 20150825, + 827 + ], + "commit": "6ee8ed051405653bd9b7332d7e9fbb591d954051", + "sha256": "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk" + } + }, + { + "ename": "hl-anything", + "commit": "f38d26ede4e2e1d495a02c68e3b5041702b032e8", + "sha256": "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa", + "fetcher": "github", + "repo": "hl-anything/hl-anything-emacs", + "unstable": { + "version": [ + 20160422, + 1708 + ], + "commit": "8696bc55a8cba408f0fc83a907a9ec529d79e558", + "sha256": "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm" + }, + "stable": { + "version": [ + 0, + 0, + 9 + ], + "commit": "de631c87d3a6602cdbf84c1623558334fda354fa", + "sha256": "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr" + } + }, + { + "ename": "hl-block-mode", + "commit": "d2fbba8cc73a5d567b525ce2c0a15f35379f29e8", + "sha256": "16z49k1rn8n1f64fidff0jyhn3h4pmklys9plr96nbd4lvm80msj", + "fetcher": "github", + "repo": "ideasman42/emacs-hl-block-mode", + "unstable": { + "version": [ + 20190520, + 30 + ], + "commit": "fcefe78a1df2dccb85821d23e6c6ea2a60eedcbc", + "sha256": "1r9p7lz0bidr499f7l3w5c9q2ypzhqxn7n1k95wmdmbg8l5jnxxd" + } + }, + { + "ename": "hl-fill-column", + "commit": "68c40d7b6af664e01083b78c60b6a8e66b278a4e", + "sha256": "1kv77zfz1rd60cajjgljn8b04j6szqwwc3ialfxf6wdzh1w28jd3", + "fetcher": "github", + "repo": "laishulu/hl-fill-column", + "unstable": { + "version": [ + 20190608, + 203 + ], + "deps": [ + "names" + ], + "commit": "612441e69772c24f9ce67ae73e47c84f29ee653d", + "sha256": "0b7770prp5sj4yinrdgzvblqky05vm245i40d38frcbghwqr2jl4" + } + }, + { + "ename": "hl-indent", + "commit": "3aa6ce8f3d1349e28dd9dea8396c38257e3cea2f", + "sha256": "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr", + "fetcher": "github", + "repo": "ikirill/hl-indent", + "unstable": { + "version": [ + 20170429, + 2104 + ], + "deps": [ + "cl-lib" + ], + "commit": "bdb2e0177a7c8b29af26998e688b856adc6ded93", + "sha256": "0fwb64ja5ij97308pnd7g6l5mascavcp7jcar8igxv9yyqnw6pfi" + } + }, + { + "ename": "hl-sentence", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs", + "fetcher": "github", + "repo": "milkypostman/hl-sentence", + "unstable": { + "version": [ + 20171018, + 1519 + ], + "commit": "86ae38d3103bd20da5485cbdd59dfbd396c45ee4", + "sha256": "1rzc74ckj06qs8kq2bd1cgqvgjd2qc3zxmk7bvgg6dy2m9nj52cm" + }, + "stable": { + "version": [ + 3 + ], + "commit": "f88882772f1a29fabb54194cc8aacd80d7f5b085", + "sha256": "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa" + } + }, + { + "ename": "hl-todo", + "commit": "7c262f6a1a10e8b3cc30151cad2e34ceb66c6ed7", + "sha256": "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4", + "fetcher": "github", + "repo": "tarsius/hl-todo", + "unstable": { + "version": [ + 20190720, + 1147 + ], + "commit": "3010adfe09ee64cf403c2c7806581e5ea6823d05", + "sha256": "1h426q8r4xn44hr4fk0mv5mmxiskw65p58i78ngkl6cnvq80hnyv" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "commit": "487d349b7b8d6738223d5dd10957dd10b45eb9f3", + "sha256": "07xcc04ivpl5sbgb55qz84mz6wa500h0awzw1zq1ba5mfjjq8hls" + } + }, + { + "ename": "hledger-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "15s8rqc94z70jzv13961nvcm9a9qadq04pf0m6xrzf8qqk71zn52", + "fetcher": "github", + "repo": "narendraj9/hledger-mode", + "unstable": { + "version": [ + 20190725, + 2115 + ], + "deps": [ + "async", + "htmlize", + "popup" + ], + "commit": "7b4921f67074bf759c9a83ce227802ed627c7cdf", + "sha256": "19g1ps1ljmm9d7805pilxzy92fvbgzzamqlxx8gqj1q55hccflp2" + } + }, + { + "ename": "hlint-refactor", + "commit": "384ffc463cc6edb4806f8da68bd251e662718e65", + "sha256": "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq", + "fetcher": "github", + "repo": "mpickering/hlint-refactor-mode", + "unstable": { + "version": [ + 20190115, + 900 + ], + "commit": "c4307f86aad6d02e32e9b30cb6edc115584c791c", + "sha256": "1c71w9s34n0i7mm4njchxn6s3ri1y6mh3akgbg4nq41d42h8iap3" + } + }, + { + "ename": "hlinum", + "commit": "41bca7b89a7ce52d4c9381b9a4046b7103996c4f", + "sha256": "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv", + "fetcher": "github", + "repo": "tom-tan/hlinum-mode", + "unstable": { + "version": [ + 20180422, + 412 + ], + "deps": [ + "cl-lib" + ], + "commit": "f17360fe93de6df99a05b4b64b0a1ca4ee45abb6", + "sha256": "01sfba4sd3mjc7bs1y4qdzryfawg1xzg3hbwy9afwfaz0w5czni8" + } + }, + { + "ename": "hmac", + "commit": "7cabf363dbdfc87f29ab3dcf63bfe39b9e0920f7", + "sha256": "0am8pbjwf43nvhqa2mppdgiyd7kil7jxnaq7hhi5214bsrqgxk31", + "fetcher": "github", + "repo": "grimnebulin/emacs-hmac", + "unstable": { + "version": [ + 20180429, + 2010 + ], + "deps": [ + "cl-lib" + ], + "commit": "30132cd3fee7d3d91a9f04709d49ca0dcb96d565", + "sha256": "0l4msj1i8amcn10dk1shcyh6hn49iphma1q03kp2h84ga79xdpi3" + } + }, + { + "ename": "hoa-mode", + "commit": "f8b91f35d06f9e7e17c9aaf2fb9ee43a77257113", + "sha256": "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv", + "fetcher": "git", + "url": "https://gitlab.lrde.epita.fr/spot/emacs-modes.git", + "unstable": { + "version": [ + 20151203, + 1650 + ], + "commit": "3c608e15b655d2375c5f81323ac561c7848dc029", + "sha256": "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x" + } + }, + { + "ename": "hoa-pp-mode", + "commit": "0c0d707dad9dc86bb3d6a829a60e21e92a5f3160", + "sha256": "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla", + "fetcher": "github", + "repo": "hoaproject/Contributions-Emacs-Pp", + "unstable": { + "version": [ + 20151027, + 736 + ], + "deps": [ + "names" + ], + "commit": "925b79930a3f4377b0fb2a36b3c6d5566d4b9a8e", + "sha256": "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "names" + ], + "commit": "a72104a191214fba502653643a0d166a8f5341d9", + "sha256": "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp" + } + }, + { + "ename": "holiday-pascha-etc", + "commit": "4108926b1fee78e54c9fa68445c7a2b1b20404ea", + "sha256": "0v2mhga1db6qy1160i730pzzrzisvhl3fjkazj4cjbkpjlshfc5j", + "fetcher": "github", + "repo": "hexmode/holiday-pascha-etc", + "unstable": { + "version": [ + 20160822, + 58 + ], + "commit": "eb198656f63cb8679fb0e3a8248782df071a0f3c", + "sha256": "1dd0k7r5kx15sph12vzakhq27zh7vy9r541qdp8w5051k6apw3pw" + } + }, + { + "ename": "home-end", + "commit": "f67c9cf33e0f11a9bd6e1521af86d180177111c4", + "sha256": "0xnpb0n4kd7b0m80g2a88ylfk5gbvkcgwb78nig98dmgjg48z2ly", + "fetcher": "github", + "repo": "Boruch-Baum/emacs-home-end", + "unstable": { + "version": [ + 20180817, + 855 + ], + "deps": [ + "keypress-multi-event" + ], + "commit": "30676ceec0d4ad84038cd0d65ee45ae810ab185c", + "sha256": "0czvnk74988p6gqz5jz83gkvvqdrdmzn4qz6cc8dmbyxk1zg6l8y" + } + }, + { + "ename": "homebrew-mode", + "commit": "1e4007f6d15574098722fb427b6a9903f77afb21", + "sha256": "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj", + "fetcher": "github", + "repo": "dunn/homebrew-mode", + "unstable": { + "version": [ + 20160615, + 1320 + ], + "deps": [ + "dash", + "inf-ruby" + ], + "commit": "d422307aee2f897d1a92e3b959c3214bc54cbe38", + "sha256": "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz" + }, + "stable": { + "version": [ + 1, + 3, + 6 + ], + "deps": [ + "dash", + "inf-ruby" + ], + "commit": "d422307aee2f897d1a92e3b959c3214bc54cbe38", + "sha256": "1z4d0niz8q24f2z8rnfnc2rlmkffkf7qc57qn4695jbkzb7galfz" + } + }, + { + "ename": "honcho", + "commit": "76487b6776d148325c0200d2f788815f115feac9", + "sha256": "1ywx67dmvackfx19p4fvrb8mm27a7pri3m3bwr2acwd29lrrid2x", + "fetcher": "github", + "repo": "emacs-pe/honcho.el", + "unstable": { + "version": [ + 20190623, + 2120 + ], + "deps": [ + "sudo-edit" + ], + "commit": "d5e6206dd23ff9305d976c52845c750a064aca4b", + "sha256": "0nh8n9rbd640rjpb3qz1mq3mgwj4dw5m98v4xypxpd954pr90afc" + } + }, + { + "ename": "hookify", + "commit": "aa04ccd0ac05beed5de8d51ed96ccbf0071fdea1", + "sha256": "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy", + "fetcher": "github", + "repo": "Silex/hookify", + "unstable": { + "version": [ + 20141216, + 2209 + ], + "deps": [ + "dash", + "s" + ], + "commit": "21baae7393b07257de5796402fde0ca72fb00d77", + "sha256": "0sg4h0m1ds3f6kpzd3vk30g6x2xl74r5j9bidw658f3mmai7m1l8" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "dash", + "s" + ], + "commit": "e76127230716f7fab6662410c03c3872d17a172b", + "sha256": "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc" + } + }, + { + "ename": "horoscope", + "commit": "180248c19160940a208b32fa7a9660a838f68de5", + "sha256": "1y2nzhdl7ghi5l3iyzb04xics7gr5981jmb5z5y8y1z04xhqpfs6", + "fetcher": "github", + "repo": "mschuldt/horoscope.el", + "unstable": { + "version": [ + 20180409, + 641 + ], + "commit": "f4c683e991adce0a8f9023f15050f306f9b9a9ed", + "sha256": "17k4j4q19l4ahxlzzic1jlbbh7l378j9vgnrcrvpm0lxa9ipclk0" + } + }, + { + "ename": "hound", + "commit": "90cfc34eb4e8be7bf887533b85feba91131a435b", + "sha256": "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v", + "fetcher": "github", + "repo": "ryoung786/hound.el", + "unstable": { + "version": [ + 20170627, + 1959 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "0c5a250ef82870dca737a429b6e9b9db93874ed3", + "sha256": "0kf2nhp5k3gk82ad1k9qi4aysqhw36x4mcdhg6kjckmcakfjw3g6" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "28cb804d99f9240d690d60098644e4300336b5fa", + "sha256": "1zyd6350mbah7wjz7qrwyh9pr4jpk5i1v8p7cfmdlja92fpqj9rh" + } + }, + { + "ename": "how-many-lines-in-project", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0rsl8f0ww2q5w87a8ddfjadw4mx4g2ahb62yb6xw7pzadmmz89f8", + "fetcher": "github", + "repo": "kaihaosw/how-many-lines-in-project", + "unstable": { + "version": [ + 20140807, + 442 + ], + "commit": "8a37ef885d004fe2ce231bfe05ed4867c6192d9b", + "error": [ + "exited abnormally with code 1\n", + "", + "warning: unknown setting 'system-features'\nerror: unable to download 'https://github.com/kaihaosw/how-many-lines-in-project/archive/8a37ef885d004fe2ce231bfe05ed4867c6192d9b.tar.gz': HTTP error 404 (curl error: No error)\n" + ] + } + }, + { + "ename": "howdoi", + "commit": "d08f4d6c8bdf16f47d2474f92273fd214179cb18", + "sha256": "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b", + "fetcher": "github", + "repo": "atykhonov/emacs-howdoi", + "unstable": { + "version": [ + 20150204, + 43 + ], + "commit": "5fbf7069ee160c597a328e5ce5fb32920e1ca88f", + "sha256": "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8" + } + }, + { + "ename": "howm", + "commit": "0099a1f9b0efb3fc3a1420cfe71a647ec6458998", + "sha256": "07wx3wmc51vm42s81km5sdbm600ax2pv83xg0116xsyn05za3bfn", + "fetcher": "git", + "url": "https://scm.osdn.net/gitroot/howm/howm.git", + "unstable": { + "version": [ + 20180929, + 1214 + ], + "deps": [ + "cl-lib" + ], + "commit": "374525133b96a801d7612cb65a026740a6d0361d", + "sha256": "06nwgwl165b5y7w5v6lgz0njapgn65fxbdxi0biw2qaswnz8vcwx" + } + }, + { + "ename": "hsluv", + "commit": "b74189f827ed54760c758f0364e573809ab32a22", + "sha256": "1g7g8434q2a4vpzxa4y5vrplzjali89px3gr8vhzfhscxg6mdcki", + "fetcher": "github", + "repo": "hsluv/hsluv-emacs", + "unstable": { + "version": [ + 20181127, + 1206 + ], + "deps": [ + "seq" + ], + "commit": "c3bc5228e30d66e7dee9ff1a0694c2b976862fc0", + "sha256": "19q8qlq4s2kfydpadkq1zd92611dvq7dr8vlhlbd9gplzpx7dhfd" + } + }, + { + "ename": "ht", + "commit": "6c7589bca1c1dfcc0fe76779f6847fda946ab981", + "sha256": "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd", + "fetcher": "github", + "repo": "Wilfred/ht.el", + "unstable": { + "version": [ + 20190611, + 2131 + ], + "deps": [ + "dash" + ], + "commit": "5650a8cd190badb49d28d21e72a2f55c9380de7b", + "sha256": "1hgd6nrj69283k240ngz7422776lw4fc9mvgwg7nvh41qb70vwgg" + }, + "stable": { + "version": [ + 2, + 2 + ], + "deps": [ + "dash" + ], + "commit": "a23a72342fda1eb3cc8d792f86efabe45eb0d1fd", + "sha256": "1p3qa7g0wa0wbviv2f8bda39cjys3naayk5xjm3nxxmqsyy8papx" + } + }, + { + "ename": "html-check-frag", + "commit": "a53c9877f6f4c4e72c565fb8bd7cbe81ddbc565c", + "sha256": "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a", + "fetcher": "github", + "repo": "TobiasZawada/html-check-frag", + "unstable": { + "version": [ + 20160131, + 535 + ], + "commit": "feb89765eafd69dfcf07afeebded8985dc456e7c", + "sha256": "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay" + } + }, + { + "ename": "html-script-src", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j", + "fetcher": "github", + "repo": "rejeep/html-script-src.el", + "unstable": { + "version": [ + 20120403, + 1815 + ], + "commit": "66460f8ab1b24656e6f3ce5bd50cff6a81be8422", + "sha256": "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh" + } + }, + { + "ename": "html-to-hiccup", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0gyghgdil14i4p0yv5mb6la1ajzf8xcgdm1si5i5w7cn72vfapmz", + "fetcher": "github", + "repo": "plexus/html-to-hiccup", + "unstable": { + "version": [ + 20161028, + 1401 + ], + "deps": [ + "dash", + "s" + ], + "commit": "99217a5058626d253ed8ada51a7642071fe54ba5", + "sha256": "1cvlh1iqjdmgwbw254g0rfdshsj7dhqjjp56gwqhn2fqkga44a7i" + } + }, + { + "ename": "html-to-markdown", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv", + "fetcher": "github", + "repo": "Malabarba/html-to-markdown", + "unstable": { + "version": [ + 20151105, + 840 + ], + "deps": [ + "cl-lib" + ], + "commit": "60c5498c801be186478cf7c05be05b4430c4a144", + "sha256": "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "commit": "0fa0effd71acd8981a425ef11e0e63d53aea3199", + "sha256": "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns" + } + }, + { + "ename": "html2org", + "commit": "771e6604edc90182697bbd4827c8c46c34b48289", + "sha256": "1lj4dwmjkc43dfmsc7z4nvydmmf6wrk5v9ms23zf0llnk9h3hvnk", + "fetcher": "github", + "repo": "lujun9972/html2org.el", + "unstable": { + "version": [ + 20170418, + 501 + ], + "commit": "6904aed40259ad8afccff079ebd8a07bff319ebc", + "sha256": "0dryk622fz0yj939pbs0fbb9i4m8qjnmkcxjsssws8f90plk06af" + } + }, + { + "ename": "htmlize", + "commit": "075aa00a0757c6cd1ad392f0300bf5f1b937648d", + "sha256": "16nvvsi4nxi0zzk5a6mwmp43p0ls20zdx9r18mxz6bsaw6jangh2", + "fetcher": "github", + "repo": "hniksic/emacs-htmlize", + "unstable": { + "version": [ + 20180923, + 1829 + ], + "commit": "8db0aa6aab77475a732b7363f0d57bd3933c18fd", + "sha256": "19hwcqla1mnp5k8mll4in1pimqpa8zmqd8yfmxkikldmwwsilaq0" + }, + "stable": { + "version": [ + 1, + 54 + ], + "commit": "a8b73f1393b2d73541ba4a8fd716c0d07ce50276", + "sha256": "1d5hj8wibp1lxs697y7i4yrpv9gqq821gxmpqqkn2jwrb70nsngl" + } + }, + { + "ename": "htmltagwrap", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "19vav9mpqfg6x017b2f4fkhixfw9fslhs03n780qq2n79abp77n9", + "fetcher": "github", + "repo": "elpa-host/htmltagwrap", + "unstable": { + "version": [ + 20190517, + 511 + ], + "commit": "3260d9267b51019328c30a6317f28e4a2dd7d522", + "sha256": "15rfg4z8lhwadgnr58r3skmzmkxs5phnqr1ap4bjd9pq618amdbn" + } + }, + { + "ename": "http", + "commit": "c7c63aaf27240706d84e464881d40cfb7cbe9ee3", + "sha256": "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm", + "fetcher": "github", + "repo": "emacs-pe/http.el", + "unstable": { + "version": [ + 20181008, + 2121 + ], + "deps": [ + "edit-indirect", + "request" + ], + "commit": "1bbfff5994e16ffc185c4ac28d792cb040da3351", + "sha256": "0bs2l487mn8zkx3h7zgynm5cq54w8wlr150izaxynqddcpkrr44h" + } + }, + { + "ename": "http-post-simple", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "0z3zphaqywbm7vn2g1f7fkrdamgsc26i8zydm9y53v9z9fmzch5s", + "fetcher": "github", + "repo": "emacsorphanage/http-post-simple", + "unstable": { + "version": [ + 20170715, + 940 + ], + "commit": "f53697fca278c741051aeb668b00466b5e0fd3fe", + "sha256": "0krdbvvvzn323vx554yw7947nddl3icfjk4wf5kfx7fim5v3mdn6" + } + }, + { + "ename": "http-twiddle", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1d8xnwhb8lp4p4xnnkryx5c6isd8ckalp0smx66lbi1pa4g6iqsh", + "fetcher": "github", + "repo": "hassy/http-twiddle", + "unstable": { + "version": [ + 20160801, + 1911 + ], + "commit": "4d0c73b7dcbde8b483d4f3a75c49c74d2fe3ca45", + "sha256": "0fxmk5b4ggi92n5gi2nim08a2gx1yg7jlp4hj4m0qazxqdcy38i1" + } + }, + { + "ename": "httpcode", + "commit": "906da23e26d44f8c71ba57ab59bb089caea673a9", + "sha256": "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh", + "fetcher": "github", + "repo": "rspivak/httpcode.el", + "unstable": { + "version": [ + 20121002, + 345 + ], + "commit": "a45e735082b09477cd704a99294d336cdbeb12ba", + "sha256": "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "2c8eb3b5455254ba70fb71f7178886bfc2d3af90", + "sha256": "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk" + } + }, + { + "ename": "httprepl", + "commit": "c49824f6e2dc2f3482e607c2d3a1e2d7685bf688", + "sha256": "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh", + "fetcher": "github", + "repo": "gregsexton/httprepl.el", + "unstable": { + "version": [ + 20141101, + 1734 + ], + "deps": [ + "dash", + "s" + ], + "commit": "cfa3693267a8ed1c96a86a126823f37dbfe077d8", + "sha256": "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "dash", + "s" + ], + "commit": "d2de8a676544deed1a5e084631a7799e487dbe55", + "sha256": "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9" + } + }, + { + "ename": "hugsql-ghosts", + "commit": "969fd5e51bf93b5eff6919956c43c041a3b24d1e", + "sha256": "1v1iypis5iyimdr9796qpqw0qmhzijap0nbr0mhhyp4001kakkwz", + "fetcher": "github", + "repo": "rkaercher/hugsql-ghosts", + "unstable": { + "version": [ + 20180425, + 1129 + ], + "deps": [ + "cider", + "dash", + "s" + ], + "commit": "f3ebc60c66204ad39058cb84eb4bd5facce091df", + "sha256": "0pcr39x8yxl5aa0sz20gw20ixz5imw5m19bzhzbzyn7slr65hlqn" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "cider", + "dash", + "s" + ], + "commit": "f3ebc60c66204ad39058cb84eb4bd5facce091df", + "sha256": "0pcr39x8yxl5aa0sz20gw20ixz5imw5m19bzhzbzyn7slr65hlqn" + } + }, + { + "ename": "hungarian-holidays", + "commit": "0c2dc20ce4b878a32c540744016a40f6cc2a657a", + "sha256": "1bdl0ynlni1i19hq4h48k8j9b2davv2kfgrpd2mrl2xqmjvhm1m2", + "fetcher": "github", + "repo": "gergelypolonkai/hungarian-holidays", + "unstable": { + "version": [ + 20161020, + 1138 + ], + "commit": "653108769279499d84a79267c90e640d98823872", + "sha256": "0jjparw5axydjf2lj8asccmksbbj9zgdiv2kc211h122q5712gvm" + } + }, + { + "ename": "hungry-delete", + "commit": "e33960d9b7e24f830ebe4e5a26a562422d52fe97", + "sha256": "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz", + "fetcher": "github", + "repo": "nflath/hungry-delete", + "unstable": { + "version": [ + 20170412, + 102 + ], + "commit": "0434458d3f6b2b585f332271feaa054bf4ec96d7", + "sha256": "04g8gdfqpzdhxf5rnl2k49f2klmzxwys79aib7xs30i0n8c8qb7d" + }, + "stable": { + "version": [ + 1, + 1, + 5 + ], + "commit": "78a787a87aceb821818bbe2a322fbf2e5cbf80c3", + "sha256": "171s7akqcpj0jcbm8w19b4n9kdzw0acf7cv0ymwdz5mmgmfiy292" + } + }, + { + "ename": "hy-mode", + "commit": "fc9ab5cf16b61bb27559cd8ec5cf665a5aab2154", + "sha256": "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m", + "fetcher": "github", + "repo": "hylang/hy-mode", + "unstable": { + "version": [ + 20190620, + 1804 + ], + "deps": [ + "dash", + "dash-functional", + "s" + ], + "commit": "8699b744c03e0399c049757b7819d69768cac3bc", + "sha256": "0axh3i1fga7znk466nqifkjf45ri7qkb9xvnkc9b5zl4f0z9b5gy" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "deps": [ + "dash", + "dash-functional", + "s" + ], + "commit": "27a9e6bee0df741f2699e00e64ea2c7a279b401d", + "sha256": "1jxximiznz7fw9ys5k6plw85zrbzvxidql7py1fdi425fdp4058z" + } + }, + { + "ename": "hyai", + "commit": "1dd9bd1cfd2f3b760b664a4677b0e4e617cbdfa6", + "sha256": "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s", + "fetcher": "github", + "repo": "iquiw/hyai", + "unstable": { + "version": [ + 20170301, + 1447 + ], + "deps": [ + "cl-lib" + ], + "commit": "9efad2ac6a57059b3be624588f649e276a96fdd4", + "sha256": "0fw6qh0aajsyxrp5gg4wnwf61h112k73vvdn14x0zvd8i4fkm6hw" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "7c644d31f62943c75ccf5a772e43450b462cc08f", + "sha256": "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm" + } + }, + { + "ename": "hydandata-light-theme", + "commit": "413c617f15947782891159a240e0c9014f1f7d11", + "sha256": "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60", + "fetcher": "github", + "repo": "hydandata/hydandata-light-theme", + "unstable": { + "version": [ + 20160816, + 418 + ], + "commit": "0fbc91678ef65e1f65d7ec6792ff0b2f104d16a9", + "sha256": "0bkj5cw173l829fkgigghs07mc2i84ngvs2y9g6kamrpg6zhq7g8" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "commit": "3b9bb5f213029a8331818b1d670194ef26d9505a", + "sha256": "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya" + } + }, + { + "ename": "hyde", + "commit": "151f5c1097e5020dbc13e41f2657aae781c5942b", + "sha256": "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3", + "fetcher": "github", + "repo": "nibrahim/Hyde", + "unstable": { + "version": [ + 20160508, + 308 + ], + "commit": "a8cd6ed00ecd8d7de0ded2f4867015b412b15b76", + "sha256": "14sk9gai7sscvwgbl7y3dzz8fdhrqynilscmdimlncpm15w56m6i" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "181f9d2f91c2678a22243c5485162fa7999fd893", + "sha256": "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4" + } + }, + { + "ename": "hydra", + "commit": "82d9e1bfd501ed2d1cd11319c5e1eb17482e8922", + "sha256": "1s1hj70jjbira054q8ly1pcr0818hh91qnhj0zwbv7milmvv2wwd", + "fetcher": "github", + "repo": "abo-abo/hydra", + "unstable": { + "version": [ + 20190617, + 859 + ], + "deps": [ + "cl-lib", + "lv" + ], + "commit": "a91dd72529aadd2d3cc14e132a3e0545eb2975a6", + "sha256": "1bbyj0l6176277qp20034lgs8ghx01fasnikkc76fndn3v4vsljn" + }, + "stable": { + "version": [ + 0, + 15, + 0 + ], + "deps": [ + "cl-lib", + "lv" + ], + "commit": "f27fce1b2f0a9162e159557bdeb2c0c94defb4d2", + "sha256": "0fapvhmhgc9kppf3bvkgry0cd7gyilg7sfvlscfrfjxpx4xvwsfy" + } + }, + { + "ename": "hyperspace", + "commit": "0696a12acba676015640de63fc6e011128bca71c", + "sha256": "0ya41c9bxvspj81n5209p9b4c9p1i6jcp710n9i9jawpahwpqlkw", + "fetcher": "github", + "repo": "ieure/hyperspace-el", + "unstable": { + "version": [ + 20190702, + 2331 + ], + "deps": [ + "s" + ], + "commit": "6441da7a816b4bf6faba21cb7b8cc1a1db6f35d5", + "sha256": "10l82fzp7m57bkzbqgmz1sp42mqkcmz4i6w9rv2hpzdp7ccgfr9v" + }, + "stable": { + "version": [ + 0, + 8, + 4 + ], + "deps": [ + "s" + ], + "commit": "5fdd680dc2e7b8a064cfdf93d6948546ff51afc2", + "sha256": "1r5h55zcm5n2vx126q16ndhgdchcj59qqcybhsqw69vk02x96arg" + } + }, + { + "ename": "i2b2-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1jnlisdnp9sz54p444vlq00y3080i4ljcvclri9fy382g1s5ags5", + "fetcher": "github", + "repo": "danlamanna/i2b2-mode", + "unstable": { + "version": [ + 20140710, + 104 + ], + "commit": "db10efcfc8bed369a516bbf7526ede41f98cb95a", + "sha256": "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm" + } + }, + { + "ename": "i3wm", + "commit": "2e12638554a13ef49ab24da08fe20ed2a53dbd11", + "sha256": "11246d71g82iv9zrd44013zwkmnf32m1x8zbrbb656dnzx7ps4rl", + "fetcher": "git", + "url": "https://git.flintfam.org/swf-projects/emacs-i3.git", + "unstable": { + "version": [ + 20170822, + 1438 + ], + "commit": "71391dc61063fee77ad174f3b2ca25c60b41009e", + "sha256": "16rwqfg517ask3y6mqxw689w8xx4i51nq8js5wnzbz9a55aj776n" + } + }, + { + "ename": "ialign", + "commit": "072f1f7ce17e2972863bce10af9c52b3c6502eab", + "sha256": "070a0fa2vbdfvbnpbzv4z0c7311lf8sy2zw2ifn9k548n4l8k62j", + "fetcher": "github", + "repo": "mkcms/interactive-align", + "unstable": { + "version": [ + 20181202, + 1146 + ], + "commit": "e1308c8f6aea05ad6dbcaa33b9bee4eb7e05ee39", + "sha256": "0b7a2z4v1nyyaw0lvql9xrakpsi1a6kflqr74k56ndm3ivmqwx09" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "commit": "7ad88c8f7922adc616b8f060b65fa1add8952ea1", + "sha256": "0bh03w91i622hbar5dcq631ndxx1y8kd3h655pgw1g0lqkv1mlnc" + } + }, + { + "ename": "iasm-mode", + "commit": "5c230ec10eb62d1b3f6df10c05c5dbc2e25d4507", + "sha256": "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv", + "fetcher": "github", + "repo": "RAttab/iasm-mode", + "unstable": { + "version": [ + 20171023, + 1422 + ], + "commit": "abbec7f308f9ce97beeb57e459fff35f559b4c18", + "sha256": "0hvpcckhlxab5f7w4s6iw5lhdbjrqn0l8gayg1w42rn6gssr3rap" + } + }, + { + "ename": "ibuffer-git", + "commit": "d341da1b9bac782c75ab931fd53a9525a85c702e", + "sha256": "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z", + "fetcher": "github", + "repo": "jrockway/ibuffer-git", + "unstable": { + "version": [ + 20110508, + 731 + ], + "commit": "d326319c05ddb8280885b31f9094040c1b365876", + "sha256": "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd" + } + }, + { + "ename": "ibuffer-project", + "commit": "895d692a678322e2d082ead155b679fa24a3a82d", + "sha256": "14lpjf9lsjzvkbp5ai95ymgl6h8waq80623hnamg6mv83vg7w135", + "fetcher": "github", + "repo": "muffinmad/emacs-ibuffer-project", + "unstable": { + "version": [ + 20181216, + 2125 + ], + "commit": "7424e71062f2cb969c3e9951203022414dea37fb", + "sha256": "02rr81ddpand0hb3yaskklhpknnqfjkcqaa2w77xi4xlzjdima01" + } + }, + { + "ename": "ibuffer-projectile", + "commit": "363a6a888945f2c8b02f5715539439ba744d737d", + "sha256": "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk", + "fetcher": "github", + "repo": "purcell/ibuffer-projectile", + "unstable": { + "version": [ + 20181202, + 352 + ], + "deps": [ + "projectile" + ], + "commit": "76496214144687cee0b5139be2e61b1e400cac87", + "sha256": "0vv9xwb1qd5x8zhqmmsn1nrpd11cql9hxb7483nsdhcfwl4apqav" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "projectile" + ], + "commit": "8b225dc779088ce65b81d8d86dc5d394baa53e2e", + "sha256": "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc" + } + }, + { + "ename": "ibuffer-rcirc", + "commit": "d8bcf68d54fce13fcb0fb0ae0b6aa975e8127a1f", + "sha256": "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc", + "fetcher": "github", + "repo": "fgallina/ibuffer-rcirc", + "unstable": { + "version": [ + 20150215, + 2118 + ], + "deps": [ + "cl-lib" + ], + "commit": "8a4409b1c679d65c819dee4085faf929840e79f8", + "sha256": "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m" + } + }, + { + "ename": "ibuffer-sidebar", + "commit": "19c7c36af8e30b9a9ccc4afda2a7b7e39e8d32ff", + "sha256": "0rzdybkqaf8r6v19isgw4wv0mwdqxvf55gq1ig4shscjc7ys22wp", + "fetcher": "github", + "repo": "jojojames/ibuffer-sidebar", + "unstable": { + "version": [ + 20180219, + 131 + ], + "commit": "7ddf1b5a158b33e9a7d3fe5dad7ea626a464d2bc", + "sha256": "18rl379bfilzvyi4f4kmy74l4vq2q8hhy5i8kflcgvn0ibipwqjz" + } + }, + { + "ename": "ibuffer-tramp", + "commit": "a1a7449b15cb2a89cf06ea3de2cfdc6bc387db3b", + "sha256": "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32", + "fetcher": "github", + "repo": "svend/ibuffer-tramp", + "unstable": { + "version": [ + 20151118, + 1739 + ], + "commit": "bcad0bda3a67f55d1be936bf8fa9ef735fe1e3f3", + "sha256": "1ry7nbhqhjy6gkxd10s97nbm6flk5nm0l5q8071fprx8xxphqj8f" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "bcad0bda3a67f55d1be936bf8fa9ef735fe1e3f3", + "sha256": "1ry7nbhqhjy6gkxd10s97nbm6flk5nm0l5q8071fprx8xxphqj8f" + } + }, + { + "ename": "ibuffer-vc", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla", + "fetcher": "github", + "repo": "purcell/ibuffer-vc", + "unstable": { + "version": [ + 20181225, + 2227 + ], + "deps": [ + "cl-lib" + ], + "commit": "64cb03887bcae6127e80f0d9342c33206e21d2d2", + "sha256": "1ayqa7l5ny7g01pb3917w2phnsdfw69scw3lk6bpa773pq00n2vi" + }, + "stable": { + "version": [ + 0, + 10 + ], + "deps": [ + "cl-lib" + ], + "commit": "b2bac7aa69335933ebb2e6f34259fa96d2c8d46a", + "sha256": "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8" + } + }, + { + "ename": "icsql", + "commit": "bf2a7e6572418d2f252d63068edd82c21eab874e", + "sha256": "1lsh5nfw7xki4cjln492b92v37k093633sl4fs4254qfpi25n94a", + "fetcher": "github", + "repo": "plandes/icsql", + "unstable": { + "version": [ + 20190710, + 306 + ], + "deps": [ + "buffer-manage", + "choice-program" + ], + "commit": "3d66e588556686563b8fb72d7654f840d88046c5", + "sha256": "0r6654zddbxsbqbrjdd9rbhvfvvdffbh4ggg67b3kcwmzwwjp92p" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "buffer-manage", + "choice-program" + ], + "commit": "415cfb7473537ea5a0f156c35f4dce0d2c49d124", + "sha256": "078cgskyzdx6sbyry20p6f3y5idd8fi8jhgm5bcyrj626nkf60f2" + } + }, + { + "ename": "id-manager", + "commit": "64a61b3801a0cafec87b1875eaec5950746f716d", + "sha256": "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm", + "fetcher": "github", + "repo": "kiwanami/emacs-id-manager", + "unstable": { + "version": [ + 20170320, + 1246 + ], + "commit": "14ebc35db298aac4dedc8aa188bc46bacab81f3b", + "sha256": "0k9b12gzvjw06y5ycjkigkj8vcmj4rz57d4hyzip27g1v93vvimc" + } + }, + { + "ename": "idea-darkula-theme", + "commit": "abf27cce70443010f996b5577d71fe78f7eab6fb", + "sha256": "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk", + "fetcher": "github", + "repo": "fourier/idea-darkula-theme", + "unstable": { + "version": [ + 20160416, + 2303 + ], + "commit": "52602d9b91883e1f297d000951aeed48bf60176e", + "sha256": "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr" + } + }, + { + "ename": "identica-mode", + "commit": "812b7c1fbc435f0530b7f66a1e65f62f5f00da01", + "sha256": "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q", + "fetcher": "github", + "repo": "gabrielsaldana/Emacs-Identica-mode", + "unstable": { + "version": [ + 20130204, + 2253 + ], + "commit": "cf9183ee11ac922e85c7c908f04e2d00b03111b3", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "cf9183ee11ac922e85c7c908f04e2d00b03111b3", + "sha256": "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk" + } + }, + { + "ename": "idle-highlight-in-visible-buffers-mode", + "commit": "b5a533be3b8dea556438d93ac48853dd3a9690f1", + "sha256": "0kv06qlv1zp5hwaya0l90z6d5lhxcg69qac6x24ky6kf97vcdq72", + "fetcher": "github", + "repo": "ignacy/idle-highlight-in-visible-buffers-mode", + "unstable": { + "version": [ + 20181027, + 1531 + ], + "commit": "8d8de309d5bd4b035c01bf7f0cfc6e079c79d898", + "sha256": "194r7f4ngwx03n74rs26hqn9wypn9idjizvmffpsjpxfr7wr9z7l" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "8d8de309d5bd4b035c01bf7f0cfc6e079c79d898", + "sha256": "194r7f4ngwx03n74rs26hqn9wypn9idjizvmffpsjpxfr7wr9z7l" + } + }, + { + "ename": "idle-highlight-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc", + "fetcher": "github", + "repo": "nonsequitur/idle-highlight-mode", + "unstable": { + "version": [ + 20120920, + 1648 + ], + "commit": "c466f2a9e291f9da1167dc879577b2e1a7880482", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv" + }, + "stable": { + "version": [ + 1, + 1, + 3 + ], + "commit": "c466f2a9e291f9da1167dc879577b2e1a7880482", + "sha256": "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv" + } + }, + { + "ename": "idle-org-agenda", + "commit": "de55ad7d9b8b3bed6a646f526a7b20c272eb4e26", + "sha256": "12g18gqwb520iqvs4v6jv0fjxsa3m6an1lq13saa4gwqixja1rrv", + "fetcher": "github", + "repo": "enisozgen/idle-org-agenda", + "unstable": { + "version": [ + 20190106, + 1844 + ], + "commit": "8e6052fc4923c30132052d67d794b76c92851c20", + "sha256": "0s9rql5izfc9bxg7xpv8406mirvj1r4djd8crknqsvc6gr0m1b1b" + } + }, + { + "ename": "idle-require", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "03z8d06ifzaf81h8b3h16ab69cp3ssky3my07spy81rbhbjl5nn3", + "fetcher": "github", + "repo": "nschum/idle-require.el", + "unstable": { + "version": [ + 20090715, + 2203 + ], + "commit": "33592bb098223b4432d7a35a1d65ab83f47c1ec1", + "sha256": "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam" + } + }, + { + "ename": "ido-at-point", + "commit": "6ffbfa66c4284a134265efc606fdc7652b0a7f75", + "sha256": "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0", + "fetcher": "github", + "repo": "katspaugh/ido-at-point", + "unstable": { + "version": [ + 20151021, + 757 + ], + "commit": "e5907bbe8a3d148d07698b76bd994dc3076e16ee", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "e5907bbe8a3d148d07698b76bd994dc3076e16ee", + "sha256": "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp" + } + }, + { + "ename": "ido-clever-match", + "commit": "add68b4815cdfe83402b217595a4a46068f83a2a", + "sha256": "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m", + "fetcher": "github", + "repo": "Bogdanp/ido-clever-match", + "unstable": { + "version": [ + 20151011, + 1726 + ], + "deps": [ + "cl-lib" + ], + "commit": "f173473e99c8b0756f12e4cc8f67e68fa59eadd3", + "sha256": "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6" + } + }, + { + "ename": "ido-complete-space-or-hyphen", + "commit": "59e11094068d3a0c0e4edc1f82158c43d3b15e0e", + "sha256": "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc", + "fetcher": "github", + "repo": "doitian/ido-complete-space-or-hyphen", + "unstable": { + "version": [ + 20180929, + 150 + ], + "commit": "ed60ebed113e4e1552efeab0c416f7c88428268e", + "sha256": "15h0alwi7qfqyi7w7gdl06ykxvafbx1p4614rg81kmzgs4dpqgy3" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "ad9baaec10e06be3f85db97b6c8fd970cf20df77", + "sha256": "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5" + } + }, + { + "ename": "ido-completing-read+", + "commit": "6104efc035bcf469d133ab9a2caf42c9d4482334", + "sha256": "0rxdv3cd0bg0p8c1bck5vichdq941dki934k23qf5p6cfgw8gw4z", + "fetcher": "github", + "repo": "DarwinAwardWinner/ido-completing-read-plus", + "unstable": { + "version": [ + 20190719, + 4 + ], + "deps": [ + "cl-lib", + "memoize", + "s" + ], + "commit": "41b42779e22c064192b95e4de855ff7ebad45af6", + "sha256": "088b50iajgj602wsm1280gn5pqirycazndhs27r1li5d84fm1nvj" + }, + "stable": { + "version": [ + 4, + 12 + ], + "deps": [ + "cl-lib", + "memoize", + "s" + ], + "commit": "d56125deac540a2ab396d6d71f7c1eeae7f37588", + "sha256": "11wn2xf7dbgfhwdrjazshf4c5im1yxnqpyvq8633fjc1cn9s7vxw" + } + }, + { + "ename": "ido-describe-bindings", + "commit": "31b8e255630f1348a5b5730f7b624ad550d219ad", + "sha256": "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2", + "fetcher": "github", + "repo": "danil/ido-describe-bindings", + "unstable": { + "version": [ + 20161023, + 1102 + ], + "deps": [ + "dash" + ], + "commit": "a142ff1c33df23ed9665497d0dcae2943b3c706a", + "sha256": "0967709jyp9s04i6gi90axgqzhz03cdf1j1w39yrkds6q1b6v7jw" + }, + "stable": { + "version": [ + 0, + 0, + 11 + ], + "deps": [ + "dash" + ], + "commit": "a142ff1c33df23ed9665497d0dcae2943b3c706a", + "sha256": "0967709jyp9s04i6gi90axgqzhz03cdf1j1w39yrkds6q1b6v7jw" + } + }, + { + "ename": "ido-exit-target", + "commit": "b815e7492eb0bd39c5d1be5a95784f9fe5612b62", + "sha256": "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi", + "fetcher": "github", + "repo": "waymondo/ido-exit-target", + "unstable": { + "version": [ + 20170717, + 1851 + ], + "commit": "e56fc6928649c87ccf39d56d84ab53ebaced1f73", + "sha256": "1a1bcvmihf22kr8rpv6kyp4b7x79hla5qdys48d6kl06m53gyckp" + } + }, + { + "ename": "ido-flex-with-migemo", + "commit": "1647d1ae7400ddbc8367c355ade16b5c360b42fc", + "sha256": "1w8f1r17l4r7w5bacckv9zfl9qynv2ivsw639rzr5acg2ndxagv7", + "fetcher": "github", + "repo": "ROCKTAKEY/ido-flex-with-migemo", + "unstable": { + "version": [ + 20190408, + 350 + ], + "deps": [ + "flx-ido", + "migemo" + ], + "commit": "aa93aa05947eb6c106bb9523ff3163b8574c4eac", + "sha256": "0k6zidi0ch4z9fg74k968pz7r0hzj56kccbf48k0is0fnzl4isxq" + } + }, + { + "ename": "ido-gnus", + "commit": "3c5cd46d72a3f99ef1344b5f1156f5bf7a5b9adc", + "sha256": "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg", + "fetcher": "github", + "repo": "vapniks/ido-gnus", + "unstable": { + "version": [ + 20140216, + 1646 + ], + "deps": [ + "gnus" + ], + "commit": "f5fe3f6aa8086f675ba216abace9e3d5f2e3a089", + "sha256": "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip" + } + }, + { + "ename": "ido-grid-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0sq1d2fwvv247rr9lqg9x87d5h910k5ifqr9cjyskc74mvhrcsr3", + "fetcher": "github", + "repo": "larkery/ido-grid-mode.el", + "unstable": { + "version": [ + 20160122, + 1139 + ], + "commit": "7cfca3988a6dc3ad18e28abe114218095ff2366f", + "sha256": "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb" + }, + "stable": { + "version": [ + 1, + 1, + 5 + ], + "commit": "8bbd66e365d4f6f352bbb17673be5869ab26d7ab", + "sha256": "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb" + } + }, + { + "ename": "ido-hacks", + "commit": "4ac3074d28e76133835366273219e180c6e75b18", + "sha256": "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0", + "fetcher": "github", + "repo": "scottjad/ido-hacks", + "unstable": { + "version": [ + 20190206, + 2153 + ], + "commit": "d2153a3e8d23436ee07ecae2a106f434361a10c5", + "sha256": "0rq5jmij691cccv4x8h8aiclnzx04v08axgz30prp6p71dxlrdms" + } + }, + { + "ename": "ido-load-library", + "commit": "baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b", + "sha256": "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj", + "fetcher": "github", + "repo": "rolandwalker/ido-load-library", + "unstable": { + "version": [ + 20140611, + 1600 + ], + "deps": [ + "pcache", + "persistent-soft" + ], + "commit": "e03b55957c93aa1a7dd190e173e16ec59dbb2ba7", + "sha256": "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "pcache", + "persistent-soft" + ], + "commit": "8589cb1e4303066eb333f1cfc789835d1cbe21df", + "sha256": "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf" + } + }, + { + "ename": "ido-migemo", + "commit": "8550601b8989f9838dfa7848977b2509b8e16175", + "sha256": "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi", + "fetcher": "github", + "repo": "myuhe/ido-migemo.el", + "unstable": { + "version": [ + 20150921, + 2244 + ], + "deps": [ + "migemo" + ], + "commit": "e71114a92dd69cb46abf3fb71a09ce27506fcf77", + "sha256": "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38" + } + }, + { + "ename": "ido-occasional", + "commit": "ed49d07aa36dfc742ca3fbfa83a6d624bf2fa525", + "sha256": "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2", + "fetcher": "github", + "repo": "abo-abo/ido-occasional", + "unstable": { + "version": [ + 20150214, + 1248 + ], + "commit": "d405f1795e1e0c63be411ee2825184738d29c33a", + "sha256": "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr" + } + }, + { + "ename": "ido-occur", + "commit": "8a576d8569bf82be01e7d50defcc99a90aab1436", + "sha256": "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji", + "fetcher": "github", + "repo": "danil/ido-occur", + "unstable": { + "version": [ + 20160820, + 1440 + ], + "deps": [ + "dash" + ], + "commit": "522af5d55b3d4cd6885f3b4100913566c202cec4", + "sha256": "0yh8px5ffx4pjmy97v1z9nwxb3qgzc5pdaj9nn6lsdxv9z7w5p3v" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash" + ], + "commit": "b0e67fe4835c162cbcf8a982bdf377955b9ac5ae", + "sha256": "13f21vx3q1qbnl13n3lx1rnr8dhq3zwch22pvy53h8q6sdf7r73a" + } + }, + { + "ename": "ido-select-window", + "commit": "775c8361322c2ba9026130dd60083e0255170b8f", + "sha256": "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23", + "fetcher": "github", + "repo": "pjones/ido-select-window", + "unstable": { + "version": [ + 20131220, + 2047 + ], + "commit": "a64707d8d154664d50d12e26417d586e4c3dd78b", + "sha256": "1iifpgdpa98si0g2ykr0xbxcbqrvzqfl6r1dv9zihmxhdr7hs9c8" + } + }, + { + "ename": "ido-skk", + "commit": "6da9bd69a646a8edfaf9dc7f2e31e5f057f44b6b", + "sha256": "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw", + "fetcher": "github", + "repo": "tsukimizake/ido-skk", + "unstable": { + "version": [ + 20151111, + 950 + ], + "deps": [ + "ddskk" + ], + "commit": "89a2e62799bff2841ff634517c86084c4ce69246", + "sha256": "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy" + } + }, + { + "ename": "ido-sort-mtime", + "commit": "36d2f7f1bb0d0694a25c1e83340781e08bee814b", + "sha256": "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2", + "fetcher": "github", + "repo": "pkkm/ido-sort-mtime", + "unstable": { + "version": [ + 20171121, + 859 + ], + "commit": "f638ff0c922af862f5211779f2311a27fde428eb", + "sha256": "0isy3rmw69664fsypg58rs42ql43drf27l90yvplnbcqd7nnnb21" + } + }, + { + "ename": "ido-springboard", + "commit": "409d847fb464a320e626fae56521a81a8e862a3e", + "sha256": "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv", + "fetcher": "github", + "repo": "jwiegley/springboard", + "unstable": { + "version": [ + 20170106, + 755 + ], + "commit": "687d1e5898a880878995dc9bffe93b4598366203", + "sha256": "0fn8c4hqblfjvcpg68kj2dmdjqsdnxddqbzgvakl43zckjg8pi01" + } + }, + { + "ename": "ido-vertical-mode", + "commit": "d4bbd212ea4606b9871cf583d06b5cee2f6ce0a9", + "sha256": "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm", + "fetcher": "github", + "repo": "creichert/ido-vertical-mode.el", + "unstable": { + "version": [ + 20180618, + 2101 + ], + "commit": "16c4c1a112796ee0bcf401ea39d3e2643a89feaf", + "sha256": "10cfm765qwba0bnablwy8c4mjxvb1lwm89d16svwhp1pn20an6a8" + }, + "stable": { + "version": [ + 0, + 1, + 6 + ], + "commit": "c3e0514405ba5c15b5527e7f8e2d42dff259788f", + "sha256": "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k" + } + }, + { + "ename": "ido-yes-or-no", + "commit": "e575f46b8597a34523df6b6a75da5a640f4c5a2e", + "sha256": "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana", + "fetcher": "github", + "repo": "DarwinAwardWinner/ido-yes-or-no", + "unstable": { + "version": [ + 20161108, + 2351 + ], + "deps": [ + "ido-completing-read+" + ], + "commit": "c55383b1fce5879e87e7ca6809fc60534508e182", + "sha256": "1p50ycsn1mcq5nqa16w10hm8v2pixibvandc91mj5l7s8zspanik" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "ido-completing-read+" + ], + "commit": "9ddee9e878ad62d58c9f4b3a7685f22b8e36e420", + "sha256": "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq" + } + }, + { + "ename": "idomenu", + "commit": "f856045bc5ab2aee4dd4ad9806917e27e56ec64c", + "sha256": "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h", + "fetcher": "github", + "repo": "birkenfeld/idomenu", + "unstable": { + "version": [ + 20141123, + 2120 + ], + "commit": "4b0152d606360c70204fb4c27f68de79ca885386", + "sha256": "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5daaf7e06e4704ae43c825488109d7eb8c049321", + "sha256": "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0" + } + }, + { + "ename": "idris-mode", + "commit": "17a86efca3bdebef7c92ba6ece2de214d283c627", + "sha256": "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s", + "fetcher": "github", + "repo": "idris-hackers/idris-mode", + "unstable": { + "version": [ + 20190427, + 1539 + ], + "deps": [ + "cl-lib", + "prop-menu" + ], + "commit": "acc8835449475d7cd205aba213fdd3d41c38ba40", + "sha256": "0n9xbknc68id0mf8hbfmawi8qpvrs47ix807sk9ffv2g3ik32kk6" + }, + "stable": { + "version": [ + 0, + 9, + 19 + ], + "deps": [ + "cl-lib", + "prop-menu" + ], + "commit": "314a0baea5752069de08e814bb134a9643fb675d", + "sha256": "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92" + } + }, + { + "ename": "ids-edit", + "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", + "sha256": "1n4gpcl3qj65cmaq9cdljsmrf84570z4chfvga6slsqjz5him8d1", + "fetcher": "github", + "repo": "kawabata/ids-edit", + "unstable": { + "version": [ + 20170818, + 1502 + ], + "commit": "8562a6cbfb3f2d44bc6f62ab15081a80f8fee502", + "sha256": "10h64c5n9piq9ly7ipqq33ji8x8vwh9j1h7r05yab8a2sn0h8587" + } + }, + { + "ename": "iedit", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0bh8ir6kspxjsvjww5y3b5hl3flbm2cc77jh8vnnva3z086f18mh", + "fetcher": "github", + "repo": "victorhge/iedit", + "unstable": { + "version": [ + 20190419, + 803 + ], + "commit": "e2c100cdd67b7d82835d281ac2cd1bf4f374bc8f", + "sha256": "0wr3w2id95wx2rma8n1ifjrv9rx37ly26ijc5zi58id0yrip3hnc" + }, + "stable": { + "version": [ + 0, + 9, + 9, + 9 + ], + "commit": "39919478f9472ce7a808ca601f4c19261ecc2f99", + "sha256": "1pwkrm98vlpzsy5iwwfksdaz3zzyi7bvdf5fglhsn4ssf47p787g" + } + }, + { + "ename": "ietf-docs", + "commit": "cedfdfe2c282d0484ea8239726f46a4861ef07ea", + "sha256": "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3", + "fetcher": "github", + "repo": "choppsv1/ietf-docs", + "unstable": { + "version": [ + 20190420, + 851 + ], + "commit": "ae157549eae5ec78dcbf215c2f48cb662b73abd0", + "sha256": "050c6fpf41xzx5kdpqcpa2rb0fk1a3h3009fdz77v0dp3bxv3a5d" + } + }, + { + "ename": "iflipb", + "commit": "fad6fc8bc3c0be0d5789a0d7626ebc3f298b4318", + "sha256": "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d", + "fetcher": "github", + "repo": "jrosdahl/iflipb", + "unstable": { + "version": [ + 20190427, + 1809 + ], + "commit": "47d310a4576ae2195777d755cf86d5ea7525ef74", + "sha256": "0s35iiki06302q7bn2p5gdfv03y7w3d8rkk84hxr5azwhw1v2hcg" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "a5ad1fbd1173cff5228dab265515c92c0778f86a", + "sha256": "0gyxd5d57j0x93mqnfwwdf28plp102xh0ag2d2iws7y1d5m99wm2" + } + }, + { + "ename": "ignoramus", + "commit": "ac5439afe2f9a902e615f0cf919ef7138559c0f0", + "sha256": "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9", + "fetcher": "github", + "repo": "rolandwalker/ignoramus", + "unstable": { + "version": [ + 20160414, + 1409 + ], + "commit": "b37dc7c07edd9d152436f9019c14df158b599be3", + "sha256": "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj" + }, + "stable": { + "version": [ + 0, + 7, + 4 + ], + "commit": "00385fcd0d42de3a470f61c1fdbe7e19fbef9c5b", + "sha256": "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q" + } + }, + { + "ename": "igv", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0vjqdyj9j26y0hhzmip6lpwc8g1c9vnmgya1p7v77bkgdicgl659", + "fetcher": "git", + "url": "https://bitbucket.org/sbarbit/eigv", + "unstable": { + "version": [ + 20141210, + 1227 + ], + "commit": "47ac6ceede252f451348a2c696398c0cb5279555", + "sha256": "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f" + } + }, + { + "ename": "image+", + "commit": "02d7400477a993b7a3cae327501dbf8db97dfa28", + "sha256": "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-imagex", + "unstable": { + "version": [ + 20150707, + 1616 + ], + "deps": [ + "cl-lib" + ], + "commit": "6834d0c09bb4df9ecc0d7a559bd7827fed48fffc", + "sha256": "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd" + }, + "stable": { + "version": [ + 0, + 6, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "967508a6c151e6ab6e97d3ac332dc5599011830d", + "sha256": "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv" + } + }, + { + "ename": "image-archive", + "commit": "17464f31b07f64da0e9db187cd6f5facee3ad7ce", + "sha256": "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-image-archive", + "unstable": { + "version": [ + 20150621, + 132 + ], + "deps": [ + "cl-lib" + ], + "commit": "8d29535bd832329ffeeac780aae7aa8919af1175", + "sha256": "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w" + }, + "stable": { + "version": [ + 0, + 0, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "699e967fa7b1dfcce2bf2ec878e74f4238bb6e45", + "sha256": "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8" + } + }, + { + "ename": "image-dired+", + "commit": "98f83f450804f1dc496a7bda17818cdae3f52151", + "sha256": "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-image-diredx", + "unstable": { + "version": [ + 20150430, + 544 + ], + "deps": [ + "cl-lib" + ], + "commit": "b68094625d963056ad64e0e44af0e2266b2eadc7", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29" + }, + "stable": { + "version": [ + 0, + 7, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "b68094625d963056ad64e0e44af0e2266b2eadc7", + "sha256": "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29" + } + }, + { + "ename": "imakado", + "commit": "ca131089c823065852f58347a88bd49217a22072", + "sha256": "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3", + "fetcher": "github", + "repo": "imakado/emacs-imakado", + "unstable": { + "version": [ + 20141024, + 923 + ], + "commit": "00a1e7eea2cb9e9066343a23927d6c747707902f", + "sha256": "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp" + } + }, + { + "ename": "imake", + "commit": "28de8f7f5302b27c7c6600ad65a998119518be43", + "sha256": "0j732fi6999n9990w4l28raw140fvqfbynyh4x65yilhw95r7c34", + "fetcher": "github", + "repo": "tarsius/imake", + "unstable": { + "version": [ + 20180318, + 2259 + ], + "commit": "a61f409c517ec274e1ec81f3f00c178108c226fb", + "sha256": "0l75z8i0zpl7jwbmv3jqh896dikdvjh1l8qgwn7xh2hi1zjwybwh" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "7df5fb9684a0288313ef5f64594078d477105959", + "sha256": "0xc19ir5ak1bfq0ag48ql5rj58zd565csgxhpa30s9lvvkc8kvr5" + } + }, + { + "ename": "imapfilter", + "commit": "2415894afa3404fbd73c84c58f8b8267187d6d86", + "sha256": "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz", + "fetcher": "github", + "repo": "tarsius/imapfilter", + "unstable": { + "version": [ + 20180318, + 2027 + ], + "commit": "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea", + "sha256": "0lqhwh8kav7f526a40rjdy2hzarzph1i3ig2dmbf02gp32sl7rg9" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "commit": "79bbbe918319bc1e8f42a0bef53dc7c77fe868ea", + "sha256": "0lqhwh8kav7f526a40rjdy2hzarzph1i3ig2dmbf02gp32sl7rg9" + } + }, + { + "ename": "imenu-anywhere", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq", + "fetcher": "github", + "repo": "vspinu/imenu-anywhere", + "unstable": { + "version": [ + 20190512, + 1939 + ], + "deps": [ + "cl-lib" + ], + "commit": "88b0e120284058b32252e4b0ed1a07c9fe44092f", + "sha256": "1w0n4hx29zc6n06qfq3ryc4dcfmk7wx3lw083yv7fi12hjj255vm" + }, + "stable": { + "version": [ + 1, + 1, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "fc7f0fd2f19e5ebee70156a99bf87393123893e3", + "sha256": "0g2gb7jrys81kphmhlvhvzwl8l75j36y6pqjawh9wmzzwad876q5" + } + }, + { + "ename": "imenu-list", + "commit": "86dea881a5b2d0458449f08b82c2614ad9abd068", + "sha256": "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s", + "fetcher": "github", + "repo": "bmag/imenu-list", + "unstable": { + "version": [ + 20190115, + 2130 + ], + "deps": [ + "cl-lib" + ], + "commit": "46008738f8fef578a763c308cf6695e5b4d4aa77", + "sha256": "14l3yw9y1nk103s7z5i1fmd6kvlb2p6ayi6sf9l1x1ydg9glrpl8" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "cl-lib" + ], + "commit": "27170d27c9594989587c03c23f753a809f6a0e10", + "sha256": "13xh9bdl3k6ccfq83wjmkpi4269qahv4davki4wq18dr4amrzhlx" + } + }, + { + "ename": "imenus", + "commit": "cc571105a8d7e2ea85391812f1fa639787fa7563", + "sha256": "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r", + "fetcher": "github", + "repo": "alezost/imenus.el", + "unstable": { + "version": [ + 20180505, + 1717 + ], + "deps": [ + "cl-lib" + ], + "commit": "149cfa579ee231014d3341a0e05add69759757a5", + "sha256": "00licvs457wzqq06a8cx7vw22kyqky20i7yq7a2nzf3cfl7vaya7" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "ee1bbd2228dbb86df2865dc9004d375421b171ba", + "sha256": "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx" + } + }, + { + "ename": "imgbb", + "commit": "89d363862890aa7f25db1a5fc5e209bccbadf0bf", + "sha256": "0p29pasq0f0b5x7yig4g4n1k0y82aiapxazz359pm7n4kjy2s6qp", + "fetcher": "github", + "repo": "ecraven/imgbb.el", + "unstable": { + "version": [ + 20180609, + 1649 + ], + "deps": [ + "request" + ], + "commit": "a524a46263835aa474f908827ebab4e8fa586001", + "sha256": "1fhhpz29x9vkhzms2qkxblic96kqzg0rqsxj71vgz6fpwdb4f9gy" + } + }, + { + "ename": "immaterial-theme", + "commit": "9a95d88bb00b1313da82929bc2733d726d2041d7", + "sha256": "15gwqjfpls7lqc37s70vnhycnry5g9grn6shk2wpijrxfnmyqjhj", + "fetcher": "github", + "repo": "petergardfjall/emacs-immaterial-theme", + "unstable": { + "version": [ + 20190412, + 1115 + ], + "commit": "176178a57c5b342b04bebd3107c29c6d12086cf5", + "sha256": "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "176178a57c5b342b04bebd3107c29c6d12086cf5", + "sha256": "0bsx0dh802x58vza9whgkkj6j16c6pcz7gdpvan50dmzs0h0pfz6" + } + }, + { + "ename": "immortal-scratch", + "commit": "1f9f4a59d88106ddfee740653abd28e305f6dfe0", + "sha256": "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6", + "fetcher": "bitbucket", + "repo": "jpkotta/immortal-scratch", + "unstable": { + "version": [ + 20160517, + 2118 + ], + "commit": "b354aba33d91a16a1878c87a931564505f6a0ee1", + "sha256": "1mx9f8pwnbrm6q9ngdyv64aqkw1izj83m0mf7zqlpww7yfhv1q9b" + } + }, + { + "ename": "immutant-server", + "commit": "d6e906492f9982e2cebd1e4838d7b7c81a295efa", + "sha256": "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i", + "fetcher": "github", + "repo": "leathekd/immutant-server.el", + "unstable": { + "version": [ + 20140311, + 2208 + ], + "commit": "2a21e65588acb6a976f2998e30b21fdabdba4dbb", + "sha256": "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "commit": "6f3d303354a229780a33e6bae64460a95bfefe60", + "sha256": "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x" + } + }, + { + "ename": "impatient-mode", + "commit": "aaa64c4d43139075d77f4518de94bcbe475d21fc", + "sha256": "07z5ds3zgzkxvxwaalp9i5x2rl5sq4jjk8ygk1rfmsl52l5y1z6j", + "fetcher": "github", + "repo": "skeeto/impatient-mode", + "unstable": { + "version": [ + 20181002, + 1231 + ], + "deps": [ + "cl-lib", + "htmlize", + "simple-httpd" + ], + "commit": "96f6a05f8de74e19d570217fe83f0734623ddb0c", + "sha256": "1qddy3b3fmxgkpl10p0hvmgrzhkrxyxg72sxxg5ndfwvjpf2rf91" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib", + "htmlize", + "simple-httpd" + ], + "commit": "96c068d5add95595dc5be42115d100cf99f908ba", + "sha256": "18fawpnqcm1yv7f83sz05pjihwydmafmccfmizyg0hlgayhj0izf" + } + }, + { + "ename": "import-js", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "00b2qv1y8879cf8ayplmwqd36w7sppx57myi2wjhy9i2rnvdbmgn", + "fetcher": "github", + "repo": "Galooshi/emacs-import-js", + "unstable": { + "version": [ + 20180709, + 1833 + ], + "deps": [ + "grizzl" + ], + "commit": "fb1f167e33c388b09a2afd32fbda90a67bfb2e40", + "sha256": "0if117lia2ykd6ai0cf5z4ddhsm9icijigwbrn079v7m9s8yl43p" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "grizzl" + ], + "commit": "0a1032894445062b87dbe4e2c8cdba35ac25c250", + "sha256": "0vx2k4k8ig1k74ifxaxvhbkmfmba683qza7f9pp08daa43mgr1r3" + } + }, + { + "ename": "import-popwin", + "commit": "a6f0629515f36e2e98839a6894ca8c0f58862dc2", + "sha256": "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy", + "fetcher": "github", + "repo": "syohex/emacs-import-popwin", + "unstable": { + "version": [ + 20170218, + 1407 + ], + "deps": [ + "popwin" + ], + "commit": "bb05a9e226f8c63fe7b18a3e92010357049ab5ba", + "sha256": "0jjm214zfq2kk8vzf67vala46lbbkjyms7qm27qv3yhcbc7ricvn" + }, + "stable": { + "version": [ + 0, + 10 + ], + "deps": [ + "popwin" + ], + "commit": "6a21efc7fd44f8c2484d22eadf298e4bfd4bc003", + "sha256": "1h4c3cib87hvgp37c30lx7cpyxvgdsb9hp7z0nfrkbbif0acrj2i" + } + }, + { + "ename": "importmagic", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1kpmgpll0zz3zlr3q863v1fq6wmwdwx7mn676x0r7g4iy1bdslmv", + "fetcher": "github", + "repo": "anachronic/importmagic.el", + "unstable": { + "version": [ + 20180520, + 303 + ], + "deps": [ + "epc", + "f" + ], + "commit": "bbc131278f8cd62f3e71b6f4a86b0c91792a3524", + "sha256": "19p4nrpk4g8lxh2rhkgsjrf4xaqi9yp4p2pxrf69lygb54rzbdly" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "epc", + "f" + ], + "commit": "c0360a8146ca65565a7fa66c6d72986edd916dd5", + "sha256": "0s6hp62kmhvmgj3m5jr3cfqc8yv3p8jfxk0piq8xbf2chr1hp6l5" + } + }, + { + "ename": "indent-guide", + "commit": "5d7110054801e3af5e5ef710a29f73116a2bc746", + "sha256": "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7", + "fetcher": "github", + "repo": "zk-phi/indent-guide", + "unstable": { + "version": [ + 20170221, + 1127 + ], + "commit": "d64f43011c72068e008621e620009ec592b35913", + "sha256": "1zjxfwbbmg95llpkvgbwdgk6cx7g9x48y3i4v75r8d4iy2xndgq8" + }, + "stable": { + "version": [ + 20160630 + ], + "commit": "feb207cb5610f351c7cdcf266e0c99117b2f786c", + "sha256": "0ykddzily3b6c6k7fvq274pqdjf3934n8p3nrmnsw6c93i1ndd4f" + } + }, + { + "ename": "indent-info", + "commit": "1274c0d871c51e358b3de577372dae8e3a04ead0", + "sha256": "0fa6p5fvyxib1iz025kqak7navb11jlfxw5x2jr47180vv9a1373", + "fetcher": "github", + "repo": "terlar/indent-info.el", + "unstable": { + "version": [ + 20180423, + 1912 + ], + "commit": "d218b4cb3726476caee91db6f6c920856ab992bc", + "sha256": "0z427rvvhw5raql5391sajm4rk1n2y8khsy2wqr7r66fdv5hg2mg" + } + }, + { + "ename": "indent-tools", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "12rawl9qaihgyascy53yxpkknp95wh8fiqygb5cgl7d761qizvp6", + "fetcher": "gitlab", + "repo": "emacs-stuff/indent-tools", + "unstable": { + "version": [ + 20190606, + 1642 + ], + "deps": [ + "hydra", + "s", + "yafolding" + ], + "commit": "c419874e6fb296ecdba94b2f4b73c9eecdd5329d", + "sha256": "1dwhn9ssirr7i08rfd97mih629cxc9jwnvncb74dxdbgn1bi2b9k" + } + }, + { + "ename": "indian-ext", + "commit": "04e29d1a745d46ff32ccd9ee787ce1fe92786ec6", + "sha256": "07mny5rd2bmj1v260zfs4imp795lw4gnwr06pcx0s1ml2km1a2k2", + "fetcher": "github", + "repo": "paddymcall/indian-ext", + "unstable": { + "version": [ + 20190424, + 1547 + ], + "commit": "a5450fe467393194bc2458c0d5e0a06c91bf117a", + "sha256": "0phbs9cx73vg9k9gp60vhlrn065skpva6gx0abp0g6rbzys2qx0b" + } + }, + { + "ename": "indicators", + "commit": "72c96bad0d0b5a4f738fd1b2afe5d302eded440d", + "sha256": "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss", + "fetcher": "github", + "repo": "Fuco1/indicators.el", + "unstable": { + "version": [ + 20161211, + 1126 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "f62a1201f21453e3aca93f48483e65ae8251432e", + "sha256": "0n933jigp0awba2hxg3kwscmfmmqn3jwbrxcw3vw9aj0a5rg5bq6" + } + }, + { + "ename": "indium", + "commit": "4292058cc6e31cabc0de575134427bce7fcef541", + "sha256": "024ljx7v8xahmr8jm41fiy8i5jbg48ybqp5n67k4jwg819cz8wvl", + "fetcher": "github", + "repo": "NicolasPetton/Indium", + "unstable": { + "version": [ + 20190715, + 1457 + ], + "deps": [ + "company", + "js2-mode", + "js2-refactor", + "seq" + ], + "commit": "971e310b8eec87afbf1f9bf927e12848deb1c058", + "sha256": "1rllgalxa73dcgmakbly23m8iwhszq44hnjpkwx5hn11zfdgx0wx" + }, + "stable": { + "version": [ + 2, + 1, + 2 + ], + "deps": [ + "company", + "js2-mode", + "js2-refactor", + "seq" + ], + "commit": "a55f3c2eaa6620c4ce2e61f1d1897db4080a2cd4", + "sha256": "07iah188fzmqyb3ag0rjygq68m317grpyibsgy64v8lzdrax0fbs" + } + }, + { + "ename": "indy", + "commit": "e997b356b009b3d2ab467fe49b79d728a8cfe24b", + "sha256": "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7", + "fetcher": "github", + "repo": "kwrooijen/indy", + "unstable": { + "version": [ + 20150610, + 1706 + ], + "commit": "4604867d8111f0e186a5351e68e054a77cb14abf", + "sha256": "17xvi39v358nff4h1f6l3l3xwjlcr9hzln5v8qmk0kq9b8gkzgxa" + } + }, + { + "ename": "inf-clojure", + "commit": "5d6112e06d1efcb7cb5652b0bec8d282d7f67bd9", + "sha256": "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl", + "fetcher": "github", + "repo": "clojure-emacs/inf-clojure", + "unstable": { + "version": [ + 20190531, + 1511 + ], + "deps": [ + "clojure-mode" + ], + "commit": "0fc23509a1e66bcc3e694066f5067fdbd7b7961d", + "sha256": "0w42ms5p5f1f7ir745srj73pj9jy1rfkbh3nf85ms05jgrs10fw9" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "clojure-mode" + ], + "commit": "247ca70f8ba5104be292aea20fbde6adb37e359f", + "sha256": "11hyva006bc4hbhzjwb4brilm6fb7qfm5h66nl0gmmyva40y6412" + } + }, + { + "ename": "inf-crystal", + "commit": "ff84c742eebb84577f362b2739f4bcf1434d58ac", + "sha256": "09ssq7i5c2fxxbrsp3nn1f1ah1yv2nb19n5s1iqyykkk316k2q26", + "fetcher": "github", + "repo": "brantou/inf-crystal.el", + "unstable": { + "version": [ + 20180119, + 211 + ], + "deps": [ + "crystal-mode" + ], + "commit": "02007b2a2a3bea44902d7c83c4acba1e39d278e3", + "sha256": "18627gvpgw2ay7zcbglw6gwpslgh69hbvynwcyqln4c17fk9h0kw" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "crystal-mode" + ], + "commit": "71a330f2d29e2fb4f51d223cf6230b88620a80af", + "sha256": "0vija33n2j4j5inzm29qk1bjzaxjm97zn263j15258pqxwkbddv3" + } + }, + { + "ename": "inf-mongo", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0f12yb3dgkjnpr4d36jwfnncqzz7kl3bnnrmjw7hv223p2ryzwpx", + "fetcher": "github", + "repo": "endofunky/inf-mongo", + "unstable": { + "version": [ + 20180408, + 1338 + ], + "commit": "2e498d1c88bd1904eeec18ed06b1a0cf8bdc2a92", + "sha256": "1m6skisj6r3fbxadpwwgf3a3934b2qvwb7zj975qksxq56ij0wkq" + } + }, + { + "ename": "inf-ruby", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp", + "fetcher": "github", + "repo": "nonsequitur/inf-ruby", + "unstable": { + "version": [ + 20190609, + 1126 + ], + "commit": "928b1dd2c24c62be1900476cb4b7219eb2350856", + "sha256": "0rm0ns3kqq0y05gskfkplbq0bz6lb1j92fx3hjgr340fm72ixb1c" + }, + "stable": { + "version": [ + 2, + 5, + 2 + ], + "commit": "d2cc45ac1a035286decb12c4f49c696ad5f03d27", + "sha256": "0a1hhvfbl6mq8rjsi77fg9fh5a91hi5scjrg9rjqc5ffbql67y0v" + } + }, + { + "ename": "inferior-spim", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "0p0g8diqijxpgr21890lnmzkyl74sv42ddgpfpv51b9fwnqky524", + "fetcher": "github", + "repo": "kaihaosw/inferior-spim", + "unstable": { + "version": [ + 20160826, + 1346 + ], + "commit": "fb9aa091f6058bf320793f1a608c1ed7322c1f47", + "error": [ + "exited abnormally with code 1\n", + "", + "warning: unknown setting 'system-features'\nerror: unable to download 'https://github.com/kaihaosw/inferior-spim/archive/fb9aa091f6058bf320793f1a608c1ed7322c1f47.tar.gz': HTTP error 404 (curl error: No error)\n" + ] + } + }, + { + "ename": "inflections", + "commit": "392c7616d27bf12b29ef3c2ea71e42ffaea81cc6", + "sha256": "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70", + "fetcher": "github", + "repo": "eschulte/jump.el", + "unstable": { + "version": [ + 20170913, + 916 + ], + "deps": [ + "cl-lib" + ], + "commit": "e4f1372cf22e811faca52fc86bdd5d817498a4d8", + "sha256": "0354b64drvv8v5g13xy5nc1klwx4hldz1b5mf1frhna7h2dqz0j9" + }, + "stable": { + "version": [ + 2, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "40a7ffdf734ffe7d1968909663146255d7ba69c8", + "sha256": "1ig1wdjg914p9ng1nir2fid4mb3xz2dbpmkdnfy1klq2zp0xw2s3" + } + }, + { + "ename": "info-beamer", + "commit": "e9da9aac33df6e53a8cbabcffd8e3a363298b9f3", + "sha256": "0jlwvn96diwnngjbabq6wzp5q6rvmwa6p36d80nv8r7x7ch0740q", + "fetcher": "github", + "repo": "dakra/info-beamer.el", + "unstable": { + "version": [ + 20180604, + 2122 + ], + "commit": "af443795af20481af91ac54a489b20f6a9d90b0a", + "sha256": "0r938pp10szrqiv37ryzfir4h5pg68farm56cpnh9hh8cnix6nrh" + } + }, + { + "ename": "info-buffer", + "commit": "3c44a1d69725b687444329d8af43c9799112b407", + "sha256": "1vkgkwgwym0j5xip7mai11anlpa2h7vd5m9i1xga1b23hcs9r1w4", + "fetcher": "github", + "repo": "llvilanova/info-buffer", + "unstable": { + "version": [ + 20170112, + 1422 + ], + "commit": "d35dad6e766c6e2ddb8dc6acb4ce5b6e10fbcaa7", + "sha256": "0czkp7cf7qmdm1jdn67gxyxz8b4qj2kby8if50d450xqwbx0da7x" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "d35dad6e766c6e2ddb8dc6acb4ce5b6e10fbcaa7", + "sha256": "0czkp7cf7qmdm1jdn67gxyxz8b4qj2kby8if50d450xqwbx0da7x" + } + }, + { + "ename": "info-colors", + "commit": "d671ae8dc27439eea427e1848fc11c96ec5aee64", + "sha256": "1mbabrfdy9xn7lpqivqm8prp83qmdv5r0acijwvxqd3a52aadc2x", + "fetcher": "github", + "repo": "ubolonton/info-colors", + "unstable": { + "version": [ + 20180205, + 1150 + ], + "deps": [ + "cl-lib" + ], + "commit": "a8ebb7b8efa314c08ea8110d8b1876afb562bb45", + "sha256": "0wvyf2w5s184kwacs6lbpjryx6hziayvdrl3crxir8gmg2kcv07m" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "13dd9b6a7288e6bb692b210bcb9cd72016658dae", + "sha256": "1h2q19574sc1lrxm9k78668pwcg3z17bnbgykmah01zlmbs264sx" + } + }, + { + "ename": "inherit-local", + "commit": "08b978724ff26b3ea7a134d307d888c80e2a92a9", + "sha256": "1v3q3s6qq64k1f4ck6rfgsy1arnf9cxg2kw6d1ahfrwr4ixsqm87", + "fetcher": "github", + "repo": "shlevy/inherit-local", + "unstable": { + "version": [ + 20170409, + 1649 + ], + "commit": "b1f4ff9c41f9d64e4adaf5adcc280b82f084cdc7", + "sha256": "1fargashyqn4ga420k3ikc1akf7mw3zcarpg24gh2591p4swa0ih" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "b1f4ff9c41f9d64e4adaf5adcc280b82f084cdc7", + "sha256": "1fargashyqn4ga420k3ikc1akf7mw3zcarpg24gh2591p4swa0ih" + } + }, + { + "ename": "ini-mode", + "commit": "000cca577d000bafe7bf5711d0bfe7593fb6975a", + "sha256": "0f6fbmg4wmlzghcibfbcx3z124b2017rhsasi5smgx9i2vkydzrm", + "fetcher": "github", + "repo": "Lindydancer/ini-mode", + "unstable": { + "version": [ + 20170424, + 909 + ], + "commit": "2194cfa2fd13196a37350ec20b3f00dcf6162b7c", + "sha256": "0s3dcqywrbggrcn9j5nibhcl4xbnhdndz5sibcp26qswd18jyrdk" + } + }, + { + "ename": "init-loader", + "commit": "e46e6ec79ff4c76fc85e13321e6dabd5797c5f45", + "sha256": "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r", + "fetcher": "github", + "repo": "emacs-jp/init-loader", + "unstable": { + "version": [ + 20160528, + 1315 + ], + "commit": "5d3cea1004c11ff96b33020e337b03b925c67c42", + "sha256": "17bg4s8yz7yz28m04fp2ff6ld0y01yl99wkn2k5rkg4j441xg3n2" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "128ee76adbf431f0b8c30a3a29cb20c9c5100cde", + "sha256": "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az" + } + }, + { + "ename": "init-open-recentf", + "commit": "4db8b6eced50726c788d7343137f6b4558575abf", + "sha256": "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r", + "fetcher": "github", + "repo": "zonuexe/init-open-recentf.el", + "unstable": { + "version": [ + 20161206, + 1445 + ], + "commit": "7d8fb124806291f7f6ef2ec3a664ea25899b6d68", + "sha256": "0vswa7304s7m6cirbaky9rmrxjb2aylvif2vg2p6l274k37c4jyh" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "a4f5338a14302d44fa5aebb1ddc7aff3dc9abbe3", + "sha256": "0iph5cpz2dva1rnvp5xynmkndny87z308pziadk1qgf05mc0i61d" + } + }, + { + "ename": "initsplit", + "commit": "5a908c8fad08cd4d7dbb586570d0f0b384bf9071", + "sha256": "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq", + "fetcher": "github", + "repo": "dabrahams/initsplit", + "unstable": { + "version": [ + 20160919, + 1818 + ], + "commit": "c941d436eb2b10b01c76a582c5a2b23fb30751aa", + "sha256": "0vz0pfm2m3v0zk65b4ikk6yfpk282nzbm99fbzj8w76yfg240dfn" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "950bdc568e3fd08e6106170953caf98ac582a431", + "sha256": "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g" + } + }, + { + "ename": "ink-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "02q95xay6z56i4l0j24dszxnfpjbxijlj4150nsadbv55m7nnjcf", + "fetcher": "github", + "repo": "Kungsgeten/ink-mode", + "unstable": { + "version": [ + 20160814, + 1116 + ], + "commit": "e35f26abbaf8ea23c5aa0a0c7ef15334cdfb7b48", + "sha256": "0ixqgk101gnm2q6f2bjk2pnqlrj41krqz56lss6fmf81xhxavmpp" + } + }, + { + "ename": "inkpot-theme", + "commit": "dd3e02aaf8865d8038b9c590c8545e7a1b21d620", + "sha256": "1m3iygb8vbqcnsxsnwr7g2mq1n2a9r7qxp3pgm1fpwz1lngvaagf", + "fetcher": "github", + "repo": "ideasman42/emacs-inkpot-theme", + "unstable": { + "version": [ + 20181119, + 706 + ], + "commit": "054c125b49247a08af5a391992817776fd0e8af6", + "sha256": "06g4xsirag4gjd9khii4yhca29g5z9507lyyxxk35k36ckarg07i" + } + }, + { + "ename": "inline-crypt", + "commit": "b04fffe5e52f26e92930a112a64531228f94e340", + "sha256": "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n", + "fetcher": "github", + "repo": "Sodel-the-Vociferous/inline-crypt-el", + "unstable": { + "version": [ + 20170824, + 900 + ], + "commit": "281385b383f850fd2e895926b1cef804dd052633", + "sha256": "0hjmq8j7y4wnjgk6z92w4ci0ag9fm6rn63z9mi3krvdv154vz2n0" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "commit": "497ce9dc29a8ccac0b6dd6854f5d120514350282", + "sha256": "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6" + } + }, + { + "ename": "inline-docs", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1imjcx4qgrs5llindgmnvkb73fagnlxfg04s72kckgcy47c4352p", + "fetcher": "github", + "repo": "stardiviner/inline-docs.el", + "unstable": { + "version": [ + 20170523, + 450 + ], + "commit": "b57f1681be6147f999cdc12abff414a0442e8897", + "sha256": "0ji8qgscs4fxp2i29l3v8z9y6i2glga6bysbcsn855pqsn00xkcv" + } + }, + { + "ename": "inlineR", + "commit": "3a7228e5f23a4e66f4510b2f6fc41c36aa791991", + "sha256": "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw", + "fetcher": "github", + "repo": "myuhe/inlineR.el", + "unstable": { + "version": [ + 20120520, + 1432 + ], + "commit": "29357186beca825e3d0451b700ec09b9ed65e37b", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "29357186beca825e3d0451b700ec09b9ed65e37b", + "sha256": "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q" + } + }, + { + "ename": "insert-kaomoji", + "commit": "216fcef758036cf466fa5b52599394709eed48b3", + "sha256": "1ip61cigz6b6hsj8ahgb6fxf7yab24r0rjjl11i10ykq7sb49k00", + "fetcher": "git", + "url": "https://git.sr.ht/~zge/kaomoji", + "unstable": { + "version": [ + 20190701, + 1823 + ], + "commit": "b144e48f02f29bb25651a63d9691e9de10f0171b", + "sha256": "0i5wx60hvkriyas6g0599x35xnln77v0136z2k1rp332m9450299" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "110186d2ebfae303b05d2d33a6939d30ce3ac995", + "sha256": "0cy2kj33lnb4d2bzjmgj216l1f63hsz4ssdq7hkb4d7jngb29g09" + } + }, + { + "ename": "insert-shebang", + "commit": "c257f4f5011cd7d0b2a5ef3adf13f9871bf0be92", + "sha256": "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v", + "fetcher": "github", + "repo": "psachin/insert-shebang", + "unstable": { + "version": [ + 20180403, + 1214 + ], + "commit": "7bfea92ba1dae9d13d442e2f84f9fb6c05a0a9bd", + "sha256": "01f2p58qsny7p9l6vrra0i2m2g1k05p39m0bzi906zm5awx7l0rr" + }, + "stable": { + "version": [ + 0, + 9, + 6 + ], + "commit": "adfa473f07443b231914d277c20a3419b30399b6", + "sha256": "10zy3vg5fr30hhv0q3jldffhjacg1yrv5d9gfkdz55ry277l3xz1" + } + }, + { + "ename": "insfactor", + "commit": "c9a76a6498c2a0b0d471d3df7ae3d510d027f08c", + "sha256": "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn", + "fetcher": "github", + "repo": "duelinmarkers/insfactor.el", + "unstable": { + "version": [ + 20141117, + 2 + ], + "commit": "7ef5446cebb08a17d4106d2e6f3c053e49e1e829", + "sha256": "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy" + } + }, + { + "ename": "instapaper", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn", + "fetcher": "bitbucket", + "repo": "jfm/emacs-instapaper", + "unstable": { + "version": [ + 20130104, + 1421 + ], + "commit": "8daa0058ede70025e9f020656abe0e0d01cd8f89", + "sha256": "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8" + } + }, + { + "ename": "intel-hex-mode", + "commit": "f1bf82134671b1383f5f4d4a3c180081bea66814", + "sha256": "02ffbrkr3zajqhrxc3grmqm632ji4fmgnfabn42islpcfq12q3i4", + "fetcher": "github", + "repo": "mschuldt/intel-hex-mode", + "unstable": { + "version": [ + 20180423, + 31 + ], + "commit": "e83c94e1c31a8435a88b3ae395f2bc842ef83217", + "sha256": "0jpc6wh3agdh38wdjr1x880iiaj6698nr8dkgx114fsfj1la6f7v" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "e83c94e1c31a8435a88b3ae395f2bc842ef83217", + "sha256": "0jpc6wh3agdh38wdjr1x880iiaj6698nr8dkgx114fsfj1la6f7v" + } + }, + { + "ename": "intellij-theme", + "commit": "cfe86071b2e84929476a771da99341f4a73cfd06", + "sha256": "1g8cninmq840sl8fmhq2hcsmz7nccbjmprzcl8w1zdavfp86b97g", + "fetcher": "gitlab", + "repo": "fommil/emacs-intellij-theme", + "unstable": { + "version": [ + 20171017, + 1415 + ], + "commit": "1bbfff8e6742d18e9b77ed796f44da3b7bd10606", + "sha256": "0ml1gi2cn6h3xm5c78vxwv327r0rgimia1vqqi9jb09yb6lckbgj" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "1bbfff8e6742d18e9b77ed796f44da3b7bd10606", + "sha256": "0ml1gi2cn6h3xm5c78vxwv327r0rgimia1vqqi9jb09yb6lckbgj" + } + }, + { + "ename": "interaction-log", + "commit": "b72951c339c601350a7f10aee05a7fb94bac37ea", + "sha256": "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j", + "fetcher": "github", + "repo": "michael-heerdegen/interaction-log.el", + "unstable": { + "version": [ + 20160305, + 1301 + ], + "deps": [ + "cl-lib" + ], + "commit": "a49a06746d4df6bcfceec3c48dece065d635f9f9", + "sha256": "1vmaj14k5idx1ykkp1yl0b9qr4fimwagz7p6c00xi9klvjsx566y" + } + }, + { + "ename": "interleave", + "commit": "6c43d4aaaf4fca17f2bc0ee90a21c51071886ae2", + "sha256": "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy", + "fetcher": "github", + "repo": "rudolfochrist/interleave", + "unstable": { + "version": [ + 20171004, + 624 + ], + "commit": "87549df30cbc681baf86b238bd14c7cf7ec11fc4", + "sha256": "07430hsyq9q90rjzxq7ifq4mlfc8k8b7l6b31s7xk1xm2snbky6b" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "6b28363eac939227c6cdc8a73a1d3ea5b002442d", + "sha256": "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h" + } + }, + { + "ename": "intero", + "commit": "1b56ca344ad944e03b669a9974e9b734b5b445bb", + "sha256": "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99", + "fetcher": "github", + "repo": "commercialhaskell/intero", + "unstable": { + "version": [ + 20190530, + 1308 + ], + "deps": [ + "company", + "flycheck", + "haskell-mode" + ], + "commit": "61caa798bd385acf918b3639cf03f336b618e78b", + "sha256": "0s6ik53anwljd858xs69awx42v70ifl3pcq8njx0msfqd4qalhlx" + }, + "stable": { + "version": [ + 0, + 1, + 40 + ], + "deps": [ + "company", + "flycheck", + "haskell-mode" + ], + "commit": "107640cc3a3ea12db24ae674ff7a820f6073f3d5", + "sha256": "0yr6g2f35rmym6nkdgm6wdczirc5b9f7sza2sad0mx02b81qmaci" + } + }, + { + "ename": "interval-list", + "commit": "afee0fed80f4fa444116b12653c034d760f5f1fb", + "sha256": "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf", + "fetcher": "github", + "repo": "Fuco1/interval-list", + "unstable": { + "version": [ + 20150327, + 1718 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "38af7ecf0a493ad8f487074938a2a115f3531177", + "sha256": "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz" + } + }, + { + "ename": "interval-tree", + "commit": "ca0f4b62aee7ff7c4457da29fd25860a5c768319", + "sha256": "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9", + "fetcher": "github", + "repo": "Fuco1/interval-tree", + "unstable": { + "version": [ + 20130325, + 1407 + ], + "deps": [ + "dash" + ], + "commit": "301302f480617091cf3ab6989caac385d52543dc", + "sha256": "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3" + } + }, + { + "ename": "inverse-acme-theme", + "commit": "1c44dbc8d3ca29d8715af755b845af7236e95406", + "sha256": "03g6h8dpn42qnr593ryhj22lj1h2nx4rdr1knhkvxygfv3c4lgh5", + "fetcher": "github", + "repo": "dcjohnson/inverse-acme-theme", + "unstable": { + "version": [ + 20170823, + 254 + ], + "deps": [ + "autothemer", + "cl-lib" + ], + "commit": "74d6f3e2f6534371509dd2d77006435156c276d6", + "sha256": "15fk60ky8kbj665yjylmgc4nn4qsk57fvarqzwv3fns64yfshkv3" + } + }, + { + "ename": "io-mode", + "commit": "29ac993c86f992a452784c75c1511d15c4718c91", + "sha256": "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q", + "fetcher": "github", + "repo": "superbobry/io-mode", + "unstable": { + "version": [ + 20161004, + 756 + ], + "commit": "fd65ae769093defcf554d6d637eba6e6dfc29f56", + "sha256": "1x3j4asbczfr9vrqd7bms57ngqzaik73sm2njcgjshf9c3js3aa9" + } + }, + { + "ename": "io-mode-inf", + "commit": "df121fc9f71af1d060c83555ec611c422cbe8d0d", + "sha256": "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc", + "fetcher": "github", + "repo": "slackorama/io-emacs", + "unstable": { + "version": [ + 20140128, + 1934 + ], + "commit": "6dd2bac3fd87484bb7d97e135b06c29d70b444b6", + "sha256": "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s" + } + }, + { + "ename": "ioccur", + "commit": "308c27227795560adf8c979ba1d046286549843d", + "sha256": "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6", + "fetcher": "github", + "repo": "thierryvolpiatto/ioccur", + "unstable": { + "version": [ + 20130822, + 548 + ], + "commit": "4c0ef992a6fcd2aed62e3866d56650463108ab5a", + "sha256": "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra" + } + }, + { + "ename": "iodine-theme", + "commit": "6893ce6309f1e3b3457c99e84611044e653b827a", + "sha256": "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj", + "fetcher": "github", + "repo": "srdja/iodine-theme", + "unstable": { + "version": [ + 20151031, + 1639 + ], + "commit": "02fb780e1d8d8a6b9c709bfac399abe1665c6999", + "sha256": "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3" + } + }, + { + "ename": "ipcalc", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0hw5g30pnqwzvbhf6kggyj6wij5iw7d8jgmr88pyw63kxach8vkv", + "fetcher": "github", + "repo": "dotemacs/ipcalc.el", + "unstable": { + "version": [ + 20170926, + 805 + ], + "deps": [ + "cl-lib" + ], + "commit": "2720f7e3e662e04e195f8338b81a499cf321296a", + "sha256": "1kmqbb9ca3sca59462ha21grbgxkl4wynz2lr4yqb4qk7cijgd6g" + } + }, + { + "ename": "iplayer", + "commit": "6e9a97667365f1c30f53a6aeeb7b909a78888eb1", + "sha256": "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r", + "fetcher": "github", + "repo": "csrhodes/iplayer-el", + "unstable": { + "version": [ + 20161120, + 2120 + ], + "commit": "b788fffa4b36bbd558047ffa6be51b1f0f462f23", + "sha256": "0x82mxbc6f5azzg7c4zrxz1q763k8i3y1kfb79xfspb2i64dgg5g" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "48b664e36e1a8e37eeb3eee80b91ff7126ed449a", + "sha256": "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6" + } + }, + { + "ename": "ipretty", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "0nlp7xmgqsipdq8xjld0xpw3q3qlxm31r2k52hxs32rx044y6c71", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/ipretty.git", + "unstable": { + "version": [ + 20180606, + 522 + ], + "commit": "042f5cc4e6f81d59115e8335c582bb5c571c2585", + "sha256": "0vk8k4zfqa0869fg1kzbzzgz65xg7six5m4jm8088pb2nvfn1lrr" + } + }, + { + "ename": "ipython-shell-send", + "commit": "9d3513d38f94de4d86124b5d5a33be8d5f0bfa43", + "sha256": "07im2f3890yxpcy4qz1bihi68aslam7qir4vqf05bhqlgaqzamv8", + "fetcher": "github", + "repo": "jackkamm/ipython-shell-send-el", + "unstable": { + "version": [ + 20190220, + 2246 + ], + "commit": "0faed86faff02a361f23ce5fc923d0e9b09bb2da", + "sha256": "1nx92rmxgrxy9hfi7f2ny3q4zqrzy6jalr85lall7r74aifprrkv" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "0faed86faff02a361f23ce5fc923d0e9b09bb2da", + "sha256": "1nx92rmxgrxy9hfi7f2ny3q4zqrzy6jalr85lall7r74aifprrkv" + } + }, + { + "ename": "iqa", + "commit": "a9bd2e952d98f7ac2dc823581b07b65e951e9e45", + "sha256": "02yrkizk4ssip44s6r62finsrf45hxj9cpil1xrvh8g4jbsmfsw4", + "fetcher": "github", + "repo": "a13/iqa.el", + "unstable": { + "version": [ + 20181024, + 2253 + ], + "commit": "b45614f5204ed851de0abe93907aa94de5e37379", + "sha256": "11wrmiwlp91x59cn9k2j2pqgvzbrnzvf81dqgm9l5ph5fym0jqsd" + } + }, + { + "ename": "ir-black-theme", + "commit": "5e725582bc322d03c9dca2b22e8606444fd8753c", + "sha256": "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v", + "fetcher": "github", + "repo": "jmdeldin/ir-black-theme.el", + "unstable": { + "version": [ + 20130303, + 755 + ], + "commit": "36e930d107604b5763c80294a6f92aaa02e6c272", + "sha256": "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "b1ca1d0778e3e6228ff756e7fdaf5f5982000fa2", + "sha256": "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy" + } + }, + { + "ename": "iregister", + "commit": "a12a51873444b84765758e18c9cf24d85a200e44", + "sha256": "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm", + "fetcher": "github", + "repo": "atykhonov/iregister.el", + "unstable": { + "version": [ + 20150515, + 2107 + ], + "commit": "6a48c66187289de5f300492be11c83e98410c018", + "sha256": "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5" + } + }, + { + "ename": "irony", + "commit": "d2b6a8d57b192325dcd30fddc9ff8dd1516ad680", + "sha256": "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a", + "fetcher": "github", + "repo": "Sarcasm/irony-mode", + "unstable": { + "version": [ + 20190703, + 1732 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "c7cca52b197babd023fd4745704ae4b695af0d10", + "sha256": "0iqjcgb2bg8g7fwsqigiifla8rc3air6ywvbpsrm91cb8a732mrc" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "79d5fc6152659f62b0f2e4df75665f5b625e9642", + "sha256": "09i2f99ysisv2d4a0cpn75c0azhbashvz6ja5xy09i2a5svzgzpx" + } + }, + { + "ename": "irony-eldoc", + "commit": "fc42459d5c1671bd478d781339f2572b3de2e7d0", + "sha256": "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6", + "fetcher": "github", + "repo": "ikirill/irony-eldoc", + "unstable": { + "version": [ + 20170502, + 1908 + ], + "deps": [ + "cl-lib", + "irony" + ], + "commit": "0df5831eaae264a25422b061eb2792aadde8b3f2", + "sha256": "1l5qpr66v1l12fb50yh73grb2rr85xxmbj19mm33b5rdrq2bqmmd" + } + }, + { + "ename": "isearch-dabbrev", + "commit": "b9dfc7c1112bac8744910c58f77a98a901fd8065", + "sha256": "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x", + "fetcher": "github", + "repo": "Dewdrops/isearch-dabbrev", + "unstable": { + "version": [ + 20141224, + 622 + ], + "deps": [ + "cl-lib" + ], + "commit": "1efe7abba4923015cbc2462395deaec5446a9cc8", + "sha256": "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb" + } + }, + { + "ename": "isearch-project", + "commit": "5c4f0a2f3080e9f4db82fb2bb9279418e4b9a7e2", + "sha256": "0f6f3lm5p4h8z9bnhbl27pzgwdjj58pp8lsvc5dic0yzykx7j2y8", + "fetcher": "github", + "repo": "elpa-host/isearch-project", + "unstable": { + "version": [ + 20190505, + 819 + ], + "deps": [ + "cl-lib" + ], + "commit": "462b8100451b947367aed2970c2669ea6d15edbd", + "sha256": "0b8ncpi6kps7fx3fmgfwd2czaal52laf2k6pn46yh110sz6dl30m" + } + }, + { + "ename": "isearch-symbol-at-point", + "commit": "5733de00a1800645674e83c5e21c80f2890c4e7c", + "sha256": "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8", + "fetcher": "github", + "repo": "re5et/isearch-symbol-at-point", + "unstable": { + "version": [ + 20130728, + 2221 + ], + "commit": "51a1029bec1ec414885f9edb7e5947603dffdab2", + "sha256": "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9" + } + }, + { + "ename": "isend-mode", + "commit": "8ef6e4dab78a4c333647a85ed07a81da8083ec0c", + "sha256": "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv", + "fetcher": "github", + "repo": "ffevotte/isend-mode.el", + "unstable": { + "version": [ + 20190201, + 832 + ], + "commit": "38ace354d579eb364d4f95b9ea16081c171ea604", + "sha256": "19k09bxlq5a8ba3xb68cajv66qad5vh12k391kq9wcj4gjlniyjv" + } + }, + { + "ename": "isgd", + "commit": "d5ff75b269fd57c5822277b9ed850c69b626f1a5", + "sha256": "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi", + "fetcher": "github", + "repo": "chmouel/isgd.el", + "unstable": { + "version": [ + 20150414, + 936 + ], + "commit": "764306dadd5a9213799081a48aba22f7c75cca9a", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "764306dadd5a9213799081a48aba22f7c75cca9a", + "sha256": "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach" + } + }, + { + "ename": "isolate", + "commit": "c8091f8d72c24a103f6dcaadc18bbec745c1c3d3", + "sha256": "1ldyvw01nq2ynxaaqmw9ihk9kwfss9rqpaydn9f41bqj15xrypjc", + "fetcher": "github", + "repo": "casouri/isolate", + "unstable": { + "version": [ + 20190206, + 329 + ], + "commit": "3bb82f52b0df39c9b57fb68ba622b2906d0eecff", + "sha256": "00h9d6d6l8cxih8ix6kckc6dhzmq9hbfmgfmfpmf6f67c4ikcv8m" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "700aa3c7945580c876d29c3c064282c33ebb365c", + "sha256": "0j96rzfabn6lgv9xxyndpq3d2nys5z1brrrd7bga786zzwlp78a9" + } + }, + { + "ename": "isortify", + "commit": "9d4ad18492e7f4a56a1515873bc0b66fa49829bb", + "sha256": "0nlpjd6mrhv8iccdny0x5lb41dpyp6l7kiax4xqra0rb2vq0chcs", + "fetcher": "github", + "repo": "proofit404/isortify", + "unstable": { + "version": [ + 20190315, + 2004 + ], + "deps": [ + "pythonic" + ], + "commit": "4d8ecfcadf58ea51368e66ecf6f2a95a95953fcf", + "sha256": "0gslib1r9d9dqd9r89dfg8npkybjw2bjdrbs0z2qcnfa82x4fq4z" + } + }, + { + "ename": "iss-mode", + "commit": "ecc9f618b9f065f593b91c1c1221a550ab752bae", + "sha256": "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc", + "fetcher": "github", + "repo": "rasmus-toftdahl-olesen/iss-mode", + "unstable": { + "version": [ + 20141001, + 1913 + ], + "commit": "3b517aff31529bab33f8d7b562bd17aff0107fd1", + "sha256": "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj" + } + }, + { + "ename": "itail", + "commit": "6b810bf1deeb79064144d8b684fab336686018ef", + "sha256": "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7", + "fetcher": "github", + "repo": "re5et/itail", + "unstable": { + "version": [ + 20171112, + 804 + ], + "commit": "6e43c20da03be3b9c6ece93b7dc3495975ec1888", + "sha256": "044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv" + } + }, + { + "ename": "itasca", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0j0lvs9x2j3z5yyhbgmymccswi40vv1gz3sl56bl857m1hlxzshz", + "fetcher": "github", + "repo": "jkfurtney/itasca-emacs", + "unstable": { + "version": [ + 20170601, + 1622 + ], + "commit": "3d15dd1b70d6db69b0f4758a3e28b8b506cc84ca", + "sha256": "0mfcl7ka7r5mx52xvf13i3799ddkdi9sq2q4p2rkgb96r37ia221" + } + }, + { + "ename": "iter2", + "commit": "d94316660051ee0ba0c12e380e6203986440368f", + "sha256": "0kl3z2wwpvk2ddsb3798g41pv0xycsf9dclhv00snpzsr61d9v65", + "fetcher": "github", + "repo": "doublep/iter2", + "unstable": { + "version": [ + 20190113, + 1424 + ], + "commit": "fc1fcea5379bc7728a25dd81546886213e3db6fa", + "sha256": "1gvm5gfgmcw4mibi8899x9ry1zqm3ij6yl0dnmdqmv9dbv1zlqp2" + }, + "stable": { + "version": [ + 0, + 9, + 10 + ], + "commit": "fc1fcea5379bc7728a25dd81546886213e3db6fa", + "sha256": "1gvm5gfgmcw4mibi8899x9ry1zqm3ij6yl0dnmdqmv9dbv1zlqp2" + } + }, + { + "ename": "iterator", + "commit": "66aa4c3b43083a0098ee3163005dcc36d7251146", + "sha256": "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z", + "fetcher": "github", + "repo": "thierryvolpiatto/iterator", + "unstable": { + "version": [ + 20170207, + 838 + ], + "deps": [ + "cl-lib" + ], + "commit": "9da54f9aed945b46866782cdf962c9e530419297", + "sha256": "0r50hdyr9s18p7ggiyv36g011jgg47bgszvjgcmpp23rz131mxyw" + } + }, + { + "ename": "ivariants", + "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", + "sha256": "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw", + "fetcher": "github", + "repo": "kawabata/emacs-ivariants", + "unstable": { + "version": [ + 20170823, + 224 + ], + "deps": [ + "ivs-edit" + ], + "commit": "ca0b74d32b5d2d77a45cc6ad6edc00be0ee85284", + "sha256": "16hygfx9gla6yhc3kaiy4m6g910m1hak3v86fnpf12kzvjjs9zfx" + } + }, + { + "ename": "ivs-edit", + "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", + "sha256": "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2", + "fetcher": "github", + "repo": "kawabata/ivs-edit", + "unstable": { + "version": [ + 20170818, + 1441 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "5db39c234aa7393b591168a4fd0a9a4cbbca347d", + "sha256": "1sdl83cf87zbv0ynvb6qlgbpm4d3dqhdn84jhhs5j247r5qzhmz6" + } + }, + { + "ename": "ivy", + "commit": "06c24112a5e17c423a4d92607356b25eb90a9a7b", + "sha256": "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci", + "fetcher": "github", + "repo": "abo-abo/swiper", + "unstable": { + "version": [ + 20190801, + 1148 + ], + "commit": "4389a261b30c8fbfc6e31228b33b1764221daac7", + "sha256": "153a9nn0m6q5a4psw2vvnmqixkny56dlbrfvvw45zc9ikdd1wv2b" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "commit": "85d1e2e779ca92e6ef8e47d08f866b13d4d87aee", + "sha256": "0xgngn3jhmyn6mlkk9kmgfgh0w5i50b27syr4cgfgarg6p77j05w" + } + }, + { + "ename": "ivy-bibtex", + "commit": "c23c09225c57a9b9abe0a0a770a9184ae2e58f7c", + "sha256": "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2", + "fetcher": "github", + "repo": "tmalsburg/helm-bibtex", + "unstable": { + "version": [ + 20190708, + 909 + ], + "deps": [ + "biblio", + "cl-lib", + "dash", + "f", + "parsebib", + "s", + "swiper" + ], + "commit": "8978ba5236af767023976c5b793a2b3e29e43c7a", + "sha256": "00fw8j3mjrq8y3qbcgj0baxnspq94a8qgxlyvrc6siraryppw65h" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "biblio", + "cl-lib", + "dash", + "f", + "parsebib", + "s", + "swiper" + ], + "commit": "d6a98ac6f28d2a6a05e203115211c98333d40aca", + "sha256": "0arhy051945lxjqg77b275ny9nsv60cqj0qfpmvd8xkc07lqfn23" + } + }, + { + "ename": "ivy-dired-history", + "commit": "ad37f6b04ff45fbffeadefc94db16baa27bcc2ac", + "sha256": "1vj073k5m0l8rx9iiisikzl053ad9mlhvbk30f5zmw9sw7b9blyl", + "fetcher": "github", + "repo": "jixiuf/ivy-dired-history", + "unstable": { + "version": [ + 20170626, + 556 + ], + "deps": [ + "cl-lib", + "counsel", + "ivy" + ], + "commit": "c9c67ea1ee5e68443f0e6006ba162d6c8d868b69", + "sha256": "1lim9zi57w011df5zppb18yjkaxkgfy796pc6i01p4dl32x0rpfv" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib", + "counsel", + "ivy" + ], + "commit": "3604840f85e4ff2d7ecab6233e820cb2ec5c8733", + "sha256": "0slisbnfcdx8jv0p67ag6s4l0m0jmrwcpm5a2jm6sai9x67ayn4l" + } + }, + { + "ename": "ivy-erlang-complete", + "commit": "ac1b9e350d3f066e4e56202ebb443134d5fc3669", + "sha256": "00fqjgrhvcn3ibpgiy4b0sr4x9p6ym5r1rvi4rdzsw2i3nxmgf3a", + "fetcher": "github", + "repo": "s-kostyaev/ivy-erlang-complete", + "unstable": { + "version": [ + 20190406, + 1736 + ], + "deps": [ + "async", + "counsel", + "erlang", + "ivy" + ], + "commit": "f3a7088ba62746932ac0084e254e4235b93febcc", + "sha256": "0sdxcx1ihb51khi5chdm80mzwh8ygfs86pndgh5gq8dzbqpi2ax4" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "async", + "counsel", + "erlang", + "ivy" + ], + "commit": "62e2b14ff25b0c143c882cb38d029b216acc3dd6", + "sha256": "0sbxmj3ap0navgi7lxlgwb9ykfb8khgh7nl1hmqfh2jn9vx2s568" + } + }, + { + "ename": "ivy-explorer", + "commit": "8b590a6e0d11fda3d93e4d92f847138f8968b332", + "sha256": "088ciy051b3kcd6anm66fnkg510c72hrfgdbgdf4mb9z4d9bk056", + "fetcher": "github", + "repo": "clemera/ivy-explorer", + "unstable": { + "version": [ + 20190722, + 845 + ], + "deps": [ + "ivy" + ], + "commit": "cb41a9e5df1cfad5877ab5429b9250e7ba082e4e", + "sha256": "0svlix3sr2jlr5awdvism1akmnca0vn0mq072s38w1q19q461cii" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "ivy" + ], + "commit": "14adb6164f1d1646f503c3e4bd9aa559805f93d7", + "sha256": "0ffajyl21vz4662738dgga140yrkkcfynhhnk42fzrn5z5zqlwp1" + } + }, + { + "ename": "ivy-feedwrangler", + "commit": "cf1c112939545f6d157111eabcb573738b09ef7c", + "sha256": "1mxm37biix8c0s32gfv4pidffvlgdz5i9325zk71fhgfzqwkf5vx", + "fetcher": "github", + "repo": "asimpson/ivy-feedwrangler", + "unstable": { + "version": [ + 20180618, + 1522 + ], + "commit": "051eac49cae32b16fab2e06ff0115cd8fb5dc499", + "sha256": "1irp76kbg8d7wmgvfjbb4c3wmd29bdrl503jkq4w52fl57g94cvj" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "commit": "051eac49cae32b16fab2e06ff0115cd8fb5dc499", + "sha256": "1irp76kbg8d7wmgvfjbb4c3wmd29bdrl503jkq4w52fl57g94cvj" + } + }, + { + "ename": "ivy-gitlab", + "commit": "35d4d4f22e4c567954287b2a1cabcb595497095a", + "sha256": "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y", + "fetcher": "github", + "repo": "nlamirault/emacs-gitlab", + "unstable": { + "version": [ + 20181228, + 826 + ], + "deps": [ + "dash", + "gitlab", + "ivy", + "s" + ], + "commit": "8c2324c02119500f094c2f92dfaba4c9977ce1ba", + "sha256": "056c4fb5sj2y4h94klx2g24n1g3qdi7ifzs8ksw5v6hcj9lrkb1n" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "dash", + "gitlab", + "ivy", + "s" + ], + "commit": "a1c1441ff5ffb290e695eb9ac05431e9385578f4", + "sha256": "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa" + } + }, + { + "ename": "ivy-historian", + "commit": "fb79cbc9af6cd443b9de97817d24bcc9050d5940", + "sha256": "0yzq3rr51q5d64pfc7x5jszz77x6nwpbjj0g74x5ga3bsw3i67d9", + "fetcher": "github", + "repo": "PythonNut/historian.el", + "unstable": { + "version": [ + 20190111, + 313 + ], + "deps": [ + "flx", + "historian", + "ivy" + ], + "commit": "64f4ef8cd4e417dfa090138a2d4ea1e72fd4456a", + "sha256": "0py43kml7fcf1k28pali7n9nhsjp003j02cpynqcz6hmk8zr7b48" + } + }, + { + "ename": "ivy-hydra", + "commit": "06c24112a5e17c423a4d92607356b25eb90a9a7b", + "sha256": "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx", + "fetcher": "github", + "repo": "abo-abo/swiper", + "unstable": { + "version": [ + 20190731, + 1602 + ], + "deps": [ + "hydra", + "ivy" + ], + "commit": "4389a261b30c8fbfc6e31228b33b1764221daac7", + "sha256": "153a9nn0m6q5a4psw2vvnmqixkny56dlbrfvvw45zc9ikdd1wv2b" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "deps": [ + "hydra", + "ivy" + ], + "commit": "85d1e2e779ca92e6ef8e47d08f866b13d4d87aee", + "sha256": "0xgngn3jhmyn6mlkk9kmgfgh0w5i50b27syr4cgfgarg6p77j05w" + } + }, + { + "ename": "ivy-lobsters", + "commit": "d9774fbf133ce8db3ce996b1a40c586309a2fec6", + "sha256": "1g8bwlh4nls21k16r1pmqmb633j19h3jnjbfl2vixyrh2na8ff1w", + "fetcher": "github", + "repo": "julienXX/ivy-lobsters", + "unstable": { + "version": [ + 20171202, + 2041 + ], + "deps": [ + "cl-lib", + "ivy" + ], + "commit": "4364df4b3685fd1b50865ac9360fb948c0288dd1", + "sha256": "1cfcy2ks0kb04crwlfp02052zcwg384cgz7xjyafwqynm77d35l0" + } + }, + { + "ename": "ivy-mpdel", + "commit": "bb25443752e18e47afc63d5497cc5052c388a607", + "sha256": "1v9xiy4bs7r24li6fwi5dfqav8dfr3dy0xhj3wnzvcgwxp5ji56r", + "fetcher": "github", + "repo": "mpdel/ivy-mpdel", + "unstable": { + "version": [ + 20190428, + 920 + ], + "deps": [ + "ivy", + "libmpdel", + "mpdel" + ], + "commit": "a42dcc943914c71975c115195d38c739f25e475c", + "sha256": "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "ivy", + "libmpdel", + "mpdel" + ], + "commit": "a42dcc943914c71975c115195d38c739f25e475c", + "sha256": "0zf007j3i9prlsqjaf0xw7ylaim463f867nfc63fpsr508xsn5rd" + } + }, + { + "ename": "ivy-omni-org", + "commit": "4eaad7323462d6c7fd343ede0d2df8c67885e542", + "sha256": "1mxdglp0frplv75bik2fl2ybbl0yqfd5r70alcgx1zmba18kaj20", + "fetcher": "github", + "repo": "akirak/ivy-omni-org", + "unstable": { + "version": [ + 20190620, + 1210 + ], + "deps": [ + "dash", + "ivy" + ], + "commit": "155acae1aa08d305731b292d62530e52711895f2", + "sha256": "0i2v3wj0s8mwx69iw7lgdamdi2p41gy5iaaphk6hvb1r4shhhw8k" + } + }, + { + "ename": "ivy-pages", + "commit": "93f1183beb74aa4a96de8cd043a2a8eefdd7ad7e", + "sha256": "0zz8nbjma8r6r7xxbg7xfz13202d77k1ybzpib41slmljzh7xgwv", + "fetcher": "github", + "repo": "igorepst/ivy-pages", + "unstable": { + "version": [ + 20160728, + 1920 + ], + "deps": [ + "ivy" + ], + "commit": "47b03a1f9384502cf22369ff31a2898c863d3aff", + "sha256": "0jv74s8jn1sdwdhxkx11gnaqcc49369gld1g6a1hl62521j897rc" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "ivy" + ], + "commit": "428a901f94c9625c8407fd2bf76f9d7714d40d87", + "sha256": "11lcv8dqlmfqvhn7n3wfp9idr5hf30312p213y5pvs4m70lbc9k2" + } + }, + { + "ename": "ivy-pass", + "commit": "7bfef855e071442d2b9d1e0ce9b5706937bffc53", + "sha256": "1sb29q22fsjqfxqznf73xcqhzy132bjd45w7r27sfmf825vcysci", + "fetcher": "github", + "repo": "ecraven/ivy-pass", + "unstable": { + "version": [ + 20170812, + 1955 + ], + "deps": [ + "ivy", + "password-store" + ], + "commit": "5b523de1151f2109fdd6a8114d0af12eef83d3c5", + "sha256": "18crb4zh2pjf0cmv3b913m9vfng27girjwfqc3mk7vqd1r5a49yk" + } + }, + { + "ename": "ivy-phpunit", + "commit": "93822c5588f81683e3d43f690785b80c207d331d", + "sha256": "1spvcf41lvjdmiwp6058wrpp0hfg1cjld6b7zm28m2ys6mn35ycs", + "fetcher": "github", + "repo": "12pt/ivy-phpunit", + "unstable": { + "version": [ + 20180219, + 915 + ], + "deps": [ + "ivy", + "phpunit" + ], + "commit": "ffedb0138d36564e8e36a28fd9bc71ea8944681f", + "sha256": "0kf1k3jqg2r20x985h6brg92sg7y47c5vkfjky8xp11gqyqw47bi" + } + }, + { + "ename": "ivy-posframe", + "commit": "9e7c6f7ca439683abf11dcaa38672ac139c0da4f", + "sha256": "1sv4xvdvb1g8g5m4f1f159lxbxaz96drsmvhh0k43hp1dh3bhj3b", + "fetcher": "github", + "repo": "tumashu/ivy-posframe", + "unstable": { + "version": [ + 20190727, + 959 + ], + "deps": [ + "ivy", + "posframe" + ], + "commit": "8ad466802de90d47992024394ea5f864c1cf0ac1", + "sha256": "013nsykqp50hdfady8j650lp3bfpmcl1ingf8b4pcwp6mcz2vg0w" + } + }, + { + "ename": "ivy-prescient", + "commit": "a92495d09689932ab9f0b716078ceeeb9cc154e0", + "sha256": "017ibpbj390q5d051k3wn50774wvcixzbwikvi5ifzqkhgixqk9c", + "fetcher": "github", + "repo": "raxod502/prescient.el", + "unstable": { + "version": [ + 20190728, + 1607 + ], + "deps": [ + "ivy", + "prescient" + ], + "commit": "ea8e9fea4385272924d09c91220c7f2e9ac95b3f", + "sha256": "1apb9v31ajq586f7mqachv238yv40gacrjmh2s8mnk45xil72swy" + }, + "stable": { + "version": [ + 3, + 2 + ], + "deps": [ + "ivy", + "prescient" + ], + "commit": "653ca4b66954b7f1b6e4635a574234dd316c11a3", + "sha256": "0d60h4rfm5jcf8cf11z91wjqp0xcrviskqzyqhfliqvy2i2yl6ks" + } + }, + { + "ename": "ivy-purpose", + "commit": "1fa2a37a1a6492eddf638216acec4b9d54d3498d", + "sha256": "0c5n7x3sa57wslwnldvc0i315xhyi1zndyhr07rzka1rhj8v1c4v", + "fetcher": "github", + "repo": "bmag/ivy-purpose", + "unstable": { + "version": [ + 20160724, + 1003 + ], + "deps": [ + "ivy", + "window-purpose" + ], + "commit": "0495f2f3aed64d7e0028125e76a9a68f8fc4107e", + "sha256": "1hiw7mnrr0cnnp0a2mh837pzdaknadwv0sk82vya6blx0a7m691g" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "ivy", + "window-purpose" + ], + "commit": "0495f2f3aed64d7e0028125e76a9a68f8fc4107e", + "sha256": "1hiw7mnrr0cnnp0a2mh837pzdaknadwv0sk82vya6blx0a7m691g" + } + }, + { + "ename": "ivy-rich", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1il1lhxxg694j9w65qwzjm4p4l3q1h1hfndybj6z1cb72ijw27fr", + "fetcher": "github", + "repo": "Yevgnen/ivy-rich", + "unstable": { + "version": [ + 20190707, + 107 + ], + "deps": [ + "ivy" + ], + "commit": "e78fc4b9d467da338471f234393a1c791a6b0e6b", + "sha256": "1y8lrzn24vg2pwck6l36w3s8qlpx1cpv54i6gf0jjncp6z9iwh4v" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "ivy" + ], + "commit": "25e36b10eff7fd299fcc03f15288b4fff33974e4", + "sha256": "070y28ldp5dvh12b7qv27mqdgxiq2dll7fx432hb2i6mk8lz5hpp" + } + }, + { + "ename": "ivy-rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "18f0jak643dd8lmx701wgk95miajabd8190ls35831slr28lqxsq", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20170523, + 454 + ], + "deps": [ + "ivy", + "rtags" + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "deps": [ + "ivy", + "rtags" + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "ivy-todo", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "06mn430zkisnqrmad81gn88pl7lz0m8rm1yvpngpakwwnhwm0q96", + "fetcher": "github", + "repo": "Kungsgeten/ivy-todo", + "unstable": { + "version": [ + 20171208, + 1609 + ], + "deps": [ + "ivy" + ], + "commit": "964e347cea1a6097854d7113f5b07f6c5ef81df0", + "sha256": "07208qdk1a77dgh9qmpn164x5mgkzvprsdvb7y35ax12r2q541b8" + } + }, + { + "ename": "ivy-xcdoc", + "commit": "d2fd855c098ca65293d84c3b526b0c39f7b07ade", + "sha256": "1my45325ys2m2l5y8pmi5jnbplqm16b1n7zll37163vv16zwnd53", + "fetcher": "github", + "repo": "hex2010/emacs-ivy-xcdoc", + "unstable": { + "version": [ + 20160917, + 1055 + ], + "deps": [ + "ivy" + ], + "commit": "5ea22af36c4c2737fb0bec53432c233482d8b314", + "sha256": "1m5ljx395yw70fx643pnf7pk709s9v5b77zvvv3j21d0cjnppqz5" + } + }, + { + "ename": "ivy-xref", + "commit": "a4cd8724e8a4119b61950a97b88219bf56ce3945", + "sha256": "1p5a0x83b0bc7b654j1d207s7vifffgwmp26pya2mz0czd68ywy8", + "fetcher": "github", + "repo": "alexmurray/ivy-xref", + "unstable": { + "version": [ + 20190611, + 1305 + ], + "deps": [ + "ivy" + ], + "commit": "1a35fc0f070388701b05b0a455cbe262e924d547", + "sha256": "0d71nm9d9ajp5i6dnl8h1hw9jqp8gd1ajgninb1h13i80rplzl9k" + } + }, + { + "ename": "ivy-yasnippet", + "commit": "8c76857d716afab46f5efe46e353935921d5f217", + "sha256": "180q6hrsnkssbf9x9bj74dyy26kym4akbsjlj81x4193nnmc5w67", + "fetcher": "github", + "repo": "mkcms/ivy-yasnippet", + "unstable": { + "version": [ + 20181002, + 1655 + ], + "deps": [ + "cl-lib", + "dash", + "ivy", + "yasnippet" + ], + "commit": "32580b4fd23ebf9ca7dde96704f7d53df6e253cd", + "sha256": "1wfg6mmd5gl1qgvayyzpxlkh9s7jgn20y8l1vh1zbj1czvv51xp8" + } + }, + { + "ename": "ivy-ycmd", + "commit": "22e925d1b66f53d25eb1b3a2746dea82e8555783", + "sha256": "0vlf75qv9m84gx83rxz0acnlx5lspq92d94q82ba2p4cc6yjyvj3", + "fetcher": "github", + "repo": "abingham/emacs-ivy-ycmd", + "unstable": { + "version": [ + 20180909, + 1225 + ], + "deps": [ + "dash", + "ivy", + "ycmd" + ], + "commit": "25bfee8f676e4ecbb645e4f30b47083410a00c58", + "sha256": "1ywrkx8ddncy4qhv5gh4qf1cpapyvny42i51p91j9ip7xmihy6lm" + } + }, + { + "ename": "ivy-youtube", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1masw9qc33valx55klfhzx0bg1hfazmn5yd9wh12q2gjsz8nxyw4", + "fetcher": "github", + "repo": "squiter/ivy-youtube", + "unstable": { + "version": [ + 20181126, + 1039 + ], + "deps": [ + "cl-lib", + "ivy", + "request" + ], + "commit": "849b6db7ef02b080a86c1b887488e2935c31059a", + "sha256": "0f90dq8qhmsnm2hvnvzyb20nq0vmgnqzqa693scq69dv5rdjgwyj" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "cl-lib", + "ivy", + "request" + ], + "commit": "23e1089d4c4fc32db20df14ba10078aabf117e87", + "sha256": "0m70vxjj49kf8bzni2qchgzgx808z1fcfh02cflkhjcb77dkq8d6" + } + }, + { + "ename": "ix", + "commit": "3a9d68fcf5bddbf07909b77682474dc592077051", + "sha256": "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3", + "fetcher": "github", + "repo": "theanalyst/ix.el", + "unstable": { + "version": [ + 20131027, + 1629 + ], + "deps": [ + "grapnel" + ], + "commit": "aea4c54a5cc5a6f26637353c16a3a0e70fc76963", + "sha256": "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "grapnel" + ], + "commit": "498dac674f4f1910d39087b1457c5da5465a0614", + "sha256": "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a" + } + }, + { + "ename": "iy-go-to-char", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz", + "fetcher": "github", + "repo": "doitian/iy-go-to-char", + "unstable": { + "version": [ + 20141029, + 1546 + ], + "commit": "04ab4f5f3a241cbbc9b8c178a22b412a62f632f9", + "sha256": "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1" + }, + "stable": { + "version": [ + 3, + 2, + 1 + ], + "commit": "77b40d64eef9dad11eca59f4e3fbc6e849de7434", + "sha256": "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i" + } + }, + { + "ename": "j-mode", + "commit": "410134ab2145adad3648b1024bfe4f6801df82c9", + "sha256": "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i", + "fetcher": "github", + "repo": "zellio/j-mode", + "unstable": { + "version": [ + 20171224, + 1856 + ], + "commit": "e8725ac8af95498faabb2ca3ab3bd809a8f148e6", + "sha256": "0icrwny3cif0iwgyf9i25sj9i5gy056cn9ic2wwwbzqjqb4xg6dd" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "caa55dfaae01d1875380929826952c2b3ef8a653", + "sha256": "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9" + } + }, + { + "ename": "jabber", + "commit": "ef7dbf3c2ffee5a4d71466ce037c618e0434a346", + "sha256": "04d2jdzs3c790ms70px8xvyip1liqvd3jy2mbs8qqbwyiccb74xx", + "fetcher": "git", + "url": "https://github.com/legoscia/emacs-jabber.git", + "unstable": { + "version": [ + 20180927, + 2325 + ], + "deps": [ + "fsm", + "srv" + ], + "commit": "fff33826f42e040dad7ef64ea312d85215d3b0a1", + "sha256": "1fif38qhiaxskfmqin82n9334bzrkgd1h5ip1djcm571i670gj74" + } + }, + { + "ename": "jabber-otr", + "commit": "9219f685c18c8e799cae3dc43cc1c740c0f67733", + "sha256": "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0", + "fetcher": "github", + "repo": "legoscia/emacs-jabber-otr", + "unstable": { + "version": [ + 20150918, + 1144 + ], + "deps": [ + "jabber" + ], + "commit": "2692b1530234e0ba9a0d6c1eaa1cbe8679f193c0", + "sha256": "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf" + } + }, + { + "ename": "jack-connect", + "commit": "c0f5c5f8051f3046baebb08f41b0ca0bf0d73c85", + "sha256": "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q", + "fetcher": "git", + "url": "https://bitbucket.org/sbarbit/jack-connect", + "unstable": { + "version": [ + 20190311, + 1920 + ], + "commit": "3be5f03ba39ffab65e974cf1624cf38588639dcb", + "sha256": "1lb7z060jrbr0ijzif5p3qg70lg21h1a6jyzyfqfhwf2iwa3mkcj" + } + }, + { + "ename": "jade-mode", + "commit": "877b5a3e612e1b1d6d51e60c66b0b79f231abdb2", + "sha256": "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94", + "fetcher": "github", + "repo": "brianc/jade-mode", + "unstable": { + "version": [ + 20160525, + 1441 + ], + "commit": "4dbde92542fc7ad61df38776980905a4721d642e", + "sha256": "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "4e7a20db492719062f40b225ed730ed50be5db56", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n" + } + }, + { + "ename": "jammer", + "commit": "cb82a6e936e2d5d1dd5930b600ede52dac3ceb33", + "sha256": "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z", + "fetcher": "github", + "repo": "wasamasa/jammer", + "unstable": { + "version": [ + 20160310, + 859 + ], + "commit": "48aa795df6df7ae6484518bcd0398293ca49d7c6", + "sha256": "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "1ba232b71507b468c60dc53c2bc8888bef36c858", + "sha256": "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh" + } + }, + { + "ename": "janet-mode", + "commit": "c94abb076bf1f3fd6654cc1857b7b3cfe5bf5e58", + "sha256": "1kr5ldrgqrl0hfpkf6x5a0kr0l4psykw771n5dx6ably6mnlpphh", + "fetcher": "github", + "repo": "ALSchwalm/janet-mode", + "unstable": { + "version": [ + 20190605, + 443 + ], + "commit": "d5555cc83c1893a1c0ea04d48857d5e71b138c06", + "sha256": "1lzs5zh4ipvyxi5vzbcpxrdjrrb0vddbcajzcbsi0784cs3ndzkk" + } + }, + { + "ename": "japanese-holidays", + "commit": "80088028a1322e99e5fc50bebe08fcb6d1a2a44d", + "sha256": "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9", + "fetcher": "github", + "repo": "emacs-jp/japanese-holidays", + "unstable": { + "version": [ + 20190317, + 1220 + ], + "deps": [ + "cl-lib" + ], + "commit": "45e70a6eaf4a555fadc58ab731d522a037a81997", + "sha256": "041rww8ngvjmgkiviqwq6wci8wgh4bs0wjjc8v8lqpwqhbzf65jy" + } + }, + { + "ename": "japanlaw", + "commit": "6192e1db76f017c3b1315453144cffc47cdd495d", + "sha256": "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa", + "fetcher": "github", + "repo": "mhayashi1120/japanlaw.el", + "unstable": { + "version": [ + 20160615, + 643 + ], + "deps": [ + "cl-lib" + ], + "commit": "1bbdef942f28c61a0adb89d1b3c2cca5b10ca2dc", + "sha256": "1vj5b551383acp77lawvlw5cfvnqidjhd52sig3kz8v4bzz73cch" + }, + "stable": { + "version": [ + 0, + 9, + 1 + ], + "commit": "d90b204b018893d5d75286c92948c0bddf94cce2", + "sha256": "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h" + } + }, + { + "ename": "jape-mode", + "commit": "b034024bd31c4be96c478a951b0ef63d8f89a1b7", + "sha256": "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly", + "fetcher": "github", + "repo": "tanzoniteblack/jape-mode", + "unstable": { + "version": [ + 20140903, + 1506 + ], + "commit": "85b9182850707b5d107391f6caee5bd401507a7d", + "sha256": "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj" + } + }, + { + "ename": "jar-manifest-mode", + "commit": "ed68a9120d4f1e2895606938d1a117fb01abd1bc", + "sha256": "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd", + "fetcher": "github", + "repo": "omajid/jar-manifest-mode", + "unstable": { + "version": [ + 20160501, + 26 + ], + "commit": "270dae14c481300f75ed96dad3a5ae42ca928a1d", + "sha256": "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21" + } + }, + { + "ename": "jasminejs-mode", + "commit": "8e58e8c102f6110f9a8bda47a4601197db47e743", + "sha256": "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52", + "fetcher": "github", + "repo": "stoltene2/jasminejs-mode", + "unstable": { + "version": [ + 20150527, + 5 + ], + "commit": "9f8044bf81ab5b4841a30b0bd099916e1b7ff54a", + "sha256": "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l" + } + }, + { + "ename": "jastadd-ast-mode", + "commit": "32d59dd9e796438f1752d36a30d4e062abbb6dd1", + "sha256": "1cwqxzmqx5wxaax12rq0hy0whpaivqncykym43p3an2sl9s6ngva", + "fetcher": "github", + "repo": "rudi/jastadd-ast-mode", + "unstable": { + "version": [ + 20161219, + 926 + ], + "commit": "a29fdb470cbf0a398164950a3b0d2217de48e0c0", + "sha256": "01fv0ixkshy7i6wzcgq6xvijvh3n402vyhmh3qzjwi9p0vxvdyxv" + } + }, + { + "ename": "java-imports", + "commit": "5f6f4e4c14c422c2066f2200bb9b8f35e2ecc896", + "sha256": "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98", + "fetcher": "github", + "repo": "dakrone/emacs-java-imports", + "unstable": { + "version": [ + 20170913, + 1410 + ], + "deps": [ + "pcache", + "s" + ], + "commit": "e96ff44ed48b362ab6227b8b802b84d84f78bcaa", + "sha256": "0nryawj8v6gj6hnb81yf6966kjnydcz49zsg2k355gldryqf4v5p" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "pcache", + "s" + ], + "commit": "275f354c245df741b45e88d085660722e81a12be", + "sha256": "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1" + } + }, + { + "ename": "java-snippets", + "commit": "ec561bb8ee3d6df0d493c20497dd8c5897bf1e5e", + "sha256": "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp", + "fetcher": "github", + "repo": "nekop/yasnippet-java-mode", + "unstable": { + "version": [ + 20160627, + 252 + ], + "deps": [ + "yasnippet" + ], + "commit": "6d0e2768823be27dbe07448f4cb244cd657a7136", + "sha256": "1mgpb7g28ppbrl6sbyyswz9brrx8b7xjxmv576ija2qlh3whv5gs" + } + }, + { + "ename": "javadoc-lookup", + "commit": "3d7d5f55c7d90181cc4eff68bb472f772f070a93", + "sha256": "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79", + "fetcher": "github", + "repo": "skeeto/javadoc-lookup", + "unstable": { + "version": [ + 20160214, + 31 + ], + "deps": [ + "cl-lib" + ], + "commit": "507a2dd443d60b537b8f779c1847e2cd0ccd1382", + "sha256": "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "507a2dd443d60b537b8f779c1847e2cd0ccd1382", + "sha256": "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj" + } + }, + { + "ename": "javap-mode", + "commit": "009ce356c410d980613f21fa7c9f1c97ee9af76f", + "sha256": "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay", + "fetcher": "github", + "repo": "hiredman/javap-mode", + "unstable": { + "version": [ + 20120223, + 2208 + ], + "commit": "864c1130e204b2072e1d19cd027b6fce8ebe6629", + "sha256": "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg" + } + }, + { + "ename": "jaword", + "commit": "00fe123ddc7fbcb9fd2b97e8a9fc8a8c5fabbf7f", + "sha256": "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d", + "fetcher": "github", + "repo": "zk-phi/jaword", + "unstable": { + "version": [ + 20170426, + 627 + ], + "deps": [ + "tinysegmenter" + ], + "commit": "ac062b0e5ab4bd3270497e80aa0f3ac033a0493f", + "sha256": "05kbscympb59njfrs94w4b2lwkc3057wzib65kq0l93bx4pcw2iy" + } + }, + { + "ename": "jazz-theme", + "commit": "da25345df9d8d567541ed6b0ec832310cde67115", + "sha256": "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g", + "fetcher": "github", + "repo": "donderom/jazz-theme", + "unstable": { + "version": [ + 20170411, + 1411 + ], + "commit": "b1cb78a97cc4050f19d88a89e455c3e52d98240e", + "sha256": "0q9gfa40qh9wypvzg3xrv4kh6l51az9swb39133961dc8zrrrinm" + } + }, + { + "ename": "jbeans-theme", + "commit": "6dd4bd78795ec7509d8744fec1e80426ce0557ec", + "sha256": "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl", + "fetcher": "github", + "repo": "synic/jbeans-emacs", + "unstable": { + "version": [ + 20180309, + 1625 + ], + "commit": "3caa95998d8492a2ca6c17971de499ca15609871", + "sha256": "0k8bd5j09753czl55dcwijs4j1vxir4zwcwlgsxli4b4f8sl2z8r" + } + }, + { + "ename": "jdecomp", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1vgjmz7rxvgy9lprzr5b018lzqy3h0zg8913la1bzgwlm3mr68y5", + "fetcher": "github", + "repo": "xiongtx/jdecomp", + "unstable": { + "version": [ + 20170224, + 2200 + ], + "commit": "692866abc83deedce62be8d6040cf24dda7fb7a8", + "sha256": "00l6mc643na97jrb0k595kwmfg8wc7m5iqjd9l9vvf3dal6389b8" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "1590b06f139f036c1041e1ce5c0acccaa24b31a7", + "sha256": "0sb9vzn6cycys31r98kxwgpn7v9aw5ck86nkskmn9hhhkrfsabii" + } + }, + { + "ename": "jdee", + "commit": "a6d2c98f3bf2075e33d95c7befe205df802e798d", + "sha256": "15n76w0ygjmsa2bym59bkmbbh0kpqx6nacp4zz32hlg48kgz1dx4", + "fetcher": "github", + "repo": "jdee-emacs/jdee", + "unstable": { + "version": [ + 20190418, + 1626 + ], + "deps": [ + "dash", + "flycheck", + "memoize", + "s" + ], + "commit": "b9ce633d68ece00dac03d3eeddc4477de53e5e38", + "sha256": "0gwcl9c0y2s9xyrajwrwiaklfd8as9hmmq0lbrd7fy4q0l0vpr98" + } + }, + { + "ename": "jedi", + "commit": "bded1840a39fbf1e014c01276eb2f9c5a4fc218f", + "sha256": "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4", + "fetcher": "github", + "repo": "tkf/emacs-jedi", + "unstable": { + "version": [ + 20160426, + 456 + ], + "deps": [ + "auto-complete", + "jedi-core" + ], + "commit": "d9b53d2ca103c46686f6fb4aa92d8af403107982", + "sha256": "0rcmcc8d1mfwb8c9bqk8pa1smrdyn7vjcvi7s9cp71p070d2hvqm" + }, + "stable": { + "version": [ + 0, + 2, + 7 + ], + "deps": [ + "auto-complete", + "jedi-core" + ], + "commit": "8da022c8cda511428c72a6dc4c5be3c0a0c88584", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7" + } + }, + { + "ename": "jedi-core", + "commit": "bded1840a39fbf1e014c01276eb2f9c5a4fc218f", + "sha256": "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f", + "fetcher": "github", + "repo": "tkf/emacs-jedi", + "unstable": { + "version": [ + 20190620, + 1820 + ], + "deps": [ + "cl-lib", + "epc", + "python-environment" + ], + "commit": "d9b53d2ca103c46686f6fb4aa92d8af403107982", + "sha256": "0rcmcc8d1mfwb8c9bqk8pa1smrdyn7vjcvi7s9cp71p070d2hvqm" + }, + "stable": { + "version": [ + 0, + 2, + 7 + ], + "deps": [ + "cl-lib", + "epc", + "python-environment" + ], + "commit": "8da022c8cda511428c72a6dc4c5be3c0a0c88584", + "sha256": "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7" + } + }, + { + "ename": "jedi-direx", + "commit": "a058c3007e63b2b651689fd17c789f7d69348f83", + "sha256": "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1", + "fetcher": "github", + "repo": "tkf/emacs-jedi-direx", + "unstable": { + "version": [ + 20140310, + 936 + ], + "deps": [ + "direx", + "jedi" + ], + "commit": "7a2e677400717ed12b959cb5988e7b3fb1c12117", + "sha256": "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap" + } + }, + { + "ename": "jeison", + "commit": "cd3a1dd8dc83c0fa8824036818a6a9b59adebb6c", + "sha256": "0day982ayqavwa91p3ng8a1wkkh49pzi3if4ddqm1xysldf5w9xg", + "fetcher": "github", + "repo": "SavchenkoValeriy/jeison", + "unstable": { + "version": [ + 20190721, + 1651 + ], + "deps": [ + "dash" + ], + "commit": "66e276c1f2f08ca54d2cd60f2c9f974c662aae8b", + "sha256": "11k0g077893pd831vbkyiakmvkxzcwgr1g6inx10cscl0yvciq62" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "dash" + ], + "commit": "4b68ba9e001594f3e33d98cf89580d0aee02b258", + "sha256": "0ixr51wmq0w89430070bb05dmd9ip29f6bpry05hs0pc6qzh8wj9" + } + }, + { + "ename": "jekyll-modes", + "commit": "6667529d56dc35c5c56e4b4a4d1f06b6172df677", + "sha256": "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si", + "fetcher": "github", + "repo": "fred-o/jekyll-modes", + "unstable": { + "version": [ + 20141117, + 1314 + ], + "deps": [ + "polymode" + ], + "commit": "7cb10b50fd2883e3f7b10fdfd98f19f2f0b2381c", + "sha256": "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c" + } + }, + { + "ename": "jemdoc-mode", + "commit": "49a8c0f885df0b91d758b4d7c92bd67368da8a56", + "sha256": "1bl8a9fcilrqjzh92q7nvd16pxjiwmbnj157q2bx36y7bxm60acv", + "fetcher": "github", + "repo": "drdv/jemdoc-mode", + "unstable": { + "version": [ + 20170704, + 2027 + ], + "commit": "529b4d4681e1198b9892f340fdd6c3f1592a047a", + "sha256": "1f8nn8mv18q3x3k32i6kjis9f3g1ybdjcfaw8hywqwy6k8dr734m" + } + }, + { + "ename": "jenkins", + "commit": "2ed2da33db5eaea1a37f86057da174a45cd37ea5", + "sha256": "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s", + "fetcher": "github", + "repo": "rmuslimov/jenkins.el", + "unstable": { + "version": [ + 20190521, + 400 + ], + "deps": [ + "dash", + "json" + ], + "commit": "9c7b9d4cb39eff7d6ac4d0cbd5ebc103dc86cac2", + "sha256": "1s49xmpc975q1ffb5c7cjrcwpa4a7kcakri26f5vqy3hn1h0c2v7" + } + }, + { + "ename": "jenkins-watch", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1mdmh62rq3b8p23xgaf4i0kzpgq3ldljdxsnk07wa8bp3p7jxvgs", + "fetcher": "github", + "repo": "ataylor284/jenkins-watch", + "unstable": { + "version": [ + 20121004, + 2326 + ], + "commit": "37b84dfbd98240a57ff798e1ff8bc7dba2913577", + "sha256": "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66" + } + }, + { + "ename": "jest", + "commit": "a656c058c423ea6396b831d45c6dbb9bce6c4881", + "sha256": "10xsqcjskh2s6mlh07vf10whaas3aqm18hk3w309r3n1qmqihf75", + "fetcher": "github", + "repo": "emiller88/emacs-jest", + "unstable": { + "version": [ + 20181216, + 459 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional", + "js2-mode", + "magit-popup", + "projectile", + "s" + ], + "commit": "4c3b718b6a6fd4bf1d6209be1beffa33f6156b90", + "sha256": "18hqsk81f846nrx5wcbm4c0v8a500aag9ki435ls4axsv0ka7n2b" + } + }, + { + "ename": "jetbrains", + "commit": "00dd4626e261d9831fc62d866d50b7257ee418c4", + "sha256": "0254dkzf2x5dj3j549xjash0lsadkn0bdcyjkjlrv8hqvdr1f1m7", + "fetcher": "github", + "repo": "emacs-php/jetbrains.el", + "unstable": { + "version": [ + 20180301, + 502 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "56f71a17d455581c10d48f6dbb31d9e2126227bf", + "sha256": "0v948k7xjm66px20ad331pskc7svpcrcffh3hbkjsksd4k0pggds" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "38e136079f3f2ddbe0e8b7dec01cf6b515e897d8", + "sha256": "1ji64qip5raf0lbv7fv36rd4fwa33zn0xi7sa0zrgf0kcsr0qasb" + } + }, + { + "ename": "jg-quicknav", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c", + "fetcher": "github", + "repo": "jeffgran/jg-quicknav", + "unstable": { + "version": [ + 20170809, + 130 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "c8d53e774d63e68a944092c08a026b57da741038", + "sha256": "0rdrryfppgj5smrds5gyyhc4z8x36aq3gxdpckq80rbl4s729chy" + } + }, + { + "ename": "jinja2-mode", + "commit": "b79196cf0dc0b436ff75eabea369a62f92825d9f", + "sha256": "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx", + "fetcher": "github", + "repo": "paradoxxxzero/jinja2-mode", + "unstable": { + "version": [ + 20141128, + 1007 + ], + "commit": "cfaa7bbe7bb290cc500440124ce89686f3e26f86", + "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "cfaa7bbe7bb290cc500440124ce89686f3e26f86", + "sha256": "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381" + } + }, + { + "ename": "jira-markup-mode", + "commit": "e7e0349bff91ed27ad14dfc12178719453a8df55", + "sha256": "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp", + "fetcher": "github", + "repo": "mnuessler/jira-markup-mode", + "unstable": { + "version": [ + 20150601, + 2109 + ], + "commit": "4fc534c47df26a2f402bf835ebe2ed89474a4062", + "sha256": "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx" + } + }, + { + "ename": "jiralib2", + "commit": "11b76e144ba79e2b8424b5ed6cea860173efa7e0", + "sha256": "14npnf2mdx75i2r9b4n4xph43b9skx0wla0gq541qj6ffd5a7z46", + "fetcher": "github", + "repo": "nyyManni/jiralib2", + "unstable": { + "version": [ + 20190720, + 1329 + ], + "deps": [ + "request" + ], + "commit": "9e3c238d96a98d6d156dbb38dcbaecf1450b9d2e", + "sha256": "1332jnn63wl00l9701qvjx9z6sxisygvn9bz366yhiq2racfrgb4" + } + }, + { + "ename": "jist", + "commit": "898bfa0b315240ef9335fde24ff0386a4c6c6595", + "sha256": "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar", + "fetcher": "github", + "repo": "emacs-pe/jist.el", + "unstable": { + "version": [ + 20161229, + 1721 + ], + "deps": [ + "dash", + "let-alist", + "magit", + "request", + "seq" + ], + "commit": "da0692452e312a99bb27d8708504b521798aca48", + "sha256": "13dic7bmj7a8vvjz47s1fnz8p5m22d2m2h2vlkmlq7322qwxxw6p" + } + }, + { + "ename": "jknav", + "commit": "3673aebf53a7a3d54aee4e979b9dc7e37842f4db", + "sha256": "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089", + "fetcher": "github", + "repo": "aculich/jknav.el", + "unstable": { + "version": [ + 20121006, + 2025 + ], + "commit": "861245715c728503dad6573278fdd75c271dbf8b", + "sha256": "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij" + } + }, + { + "ename": "jonprl-mode", + "commit": "d26b6aea2b0567b971c4f013b58b598e9eb76af6", + "sha256": "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z", + "fetcher": "github", + "repo": "david-christiansen/jonprl-mode", + "unstable": { + "version": [ + 20160819, + 59 + ], + "deps": [ + "cl-lib", + "yasnippet" + ], + "commit": "6059bb64891fae45827174e044d6a87ac07172d8", + "sha256": "0v4xiq3xf7c52rmyymw8a4ws85ij0xy7pr7625gf15359cs5chs9" + } + }, + { + "ename": "jpop", + "commit": "2a52a3cf909d12201196b92685435f9fa338b7ba", + "sha256": "00chh1aqnkkkhdp44sapdjx37cbn92g42wapdq7kcl8v1v0xmnjr", + "fetcher": "github", + "repo": "domtronn/jpop.el", + "unstable": { + "version": [ + 20170410, + 1250 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "7628b03260be96576b34459d45959ee77d8b2110", + "sha256": "1x7qha7xyn2j225h7axhskngc8icjhgm3f451iq3qysj22q8g4d6" + }, + "stable": { + "version": [ + 3, + 2, + 3 + ], + "deps": [ + "dash" + ], + "commit": "f3eed65e54dc2daaa7678e6eb169d35c4a7d1e63", + "sha256": "17wiv1b8c56c2zi9b9mjm37kl7yc735nk3188wnmq3fqjgdpwpwg" + } + }, + { + "ename": "jq-format", + "commit": "ce800af0c5dd7f1e4ab7ade92a863ce500c12fce", + "sha256": "1ljbpgcs1s1if9s5c10k12f23rad7172k7y3s38ipn7vl7wmarw0", + "fetcher": "github", + "repo": "wbolster/emacs-jq-format", + "unstable": { + "version": [ + 20190428, + 1434 + ], + "deps": [ + "reformatter" + ], + "commit": "47e1c5adb89b37b4d53fe01302d8c675913c20e7", + "sha256": "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "reformatter" + ], + "commit": "47e1c5adb89b37b4d53fe01302d8c675913c20e7", + "sha256": "1g9chp1b3lkrg46b39swrkvp5willi0ay3i177jdp6knbzhj4mq3" + } + }, + { + "ename": "jq-mode", + "commit": "318705966e26e58f87b53c115c519db95874ac1c", + "sha256": "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin", + "fetcher": "github", + "repo": "ljos/jq-mode", + "unstable": { + "version": [ + 20190718, + 913 + ], + "commit": "a439bd395e0ad6b6110789b8f10d0efbe1fe889d", + "sha256": "18r9igkxy7ymj5xran806f6cy099gb19mg8minchs98jsjjmka9g" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "d6bbd83baf0746f22564f7ae92db44e06da6e08c", + "sha256": "1sk603258gvnfrvl641xfmgapg67z44wnlx6qba73wn3f2055765" + } + }, + { + "ename": "jquery-doc", + "commit": "504d8cfac08f3fcd856610bc2caeb4d4178aeedf", + "sha256": "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj", + "fetcher": "github", + "repo": "ananthakumaran/jquery-doc.el", + "unstable": { + "version": [ + 20150812, + 758 + ], + "commit": "24032284919b942ec27707d929bdd8bf48420062", + "sha256": "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9" + } + }, + { + "ename": "js-auto-beautify", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0hpp6im24xy4g5l1n9kvpmpj26rnxxnf4snf7xgh5gxx6wsiicy1", + "fetcher": "github", + "repo": "Qquanwei/auto-beautify.el", + "unstable": { + "version": [ + 20161031, + 509 + ], + "deps": [ + "web-beautify", + "web-mode" + ], + "commit": "180d15af7b5dfaab4ee1954cca2fdc797932f9de", + "sha256": "0xwkjq41v32dqc5gq8hcmcvdjg2y38xq6hkw5pja0kyvyk92c82d" + } + }, + { + "ename": "js-auto-format-mode", + "commit": "2d3be16771b5b5fde639da3ee97890620354ee7a", + "sha256": "1gxf7xz1j3ga2pk5w8cgny7l8kid59zap2a97lhb50w1qczfqqzs", + "fetcher": "github", + "repo": "ybiquitous/js-auto-format-mode", + "unstable": { + "version": [ + 20180807, + 1352 + ], + "commit": "4c184256c4ccee3451357d3277c3e1bb16de2d98", + "sha256": "1mlqpzy5xg3wni1dchnmbs01dmlqimy167fknd6bsfb7ydf6ilqg" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "29d245b4d126a5fc5153a4d8f17396be4165b4a6", + "sha256": "1d0q59rk44jf87ppnn5bwr14p2vgcnfdr7pf6hdqkhb8gzr8bh7c" + } + }, + { + "ename": "js-codemod", + "commit": "81670a2467fa846a3f0e6c81e870e8ae140dd54e", + "sha256": "1m5wbyx12sc5qwbrh948ikskck10p6j05ahrrvmmflvfb3q4vpcj", + "fetcher": "github", + "repo": "torgeir/js-codemod.el", + "unstable": { + "version": [ + 20171104, + 1154 + ], + "commit": "014e56c846487d1eeaf8a91dd503b9d96eb1510a", + "sha256": "0s07ypjlqsx2pgq89wmr69w9p7ybc62abqp53kzf5gmdl6fdzgxq" + } + }, + { + "ename": "js-comint", + "commit": "bc9d20b95e369e5a73c85a4a9385d3a8f9edd4ca", + "sha256": "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1", + "fetcher": "github", + "repo": "redguardtoo/js-comint", + "unstable": { + "version": [ + 20190606, + 6 + ], + "commit": "ab8953bdf0176b1fadd7a3bb621f848ec5dc1f0c", + "sha256": "0li5za8zamwpr6cdz4b171wa0njana0ddmclrkbw1imkarb4yhp5" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "83e932e4a83d1a69098ee87e0ab911d299368e60", + "sha256": "1r2fwsdfkbqnm4n4dwlp7gc267ghj4vd0naj431w7pl529dmrb6x" + } + }, + { + "ename": "js-doc", + "commit": "5621f60b3f580db652c347719d004d7168944caa", + "sha256": "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk", + "fetcher": "github", + "repo": "mooz/js-doc", + "unstable": { + "version": [ + 20160715, + 434 + ], + "commit": "f0606e89d5aa89146f96edb38cf69af0068a9d1e", + "sha256": "1ffayl6hca9zanbznh6rkql7fbr53id1lyrj2vllx8zakfac4dyv" + } + }, + { + "ename": "js-format", + "commit": "0d6deaa93f7deaba9f5f36f1963522b6dc5c673a", + "sha256": "112zqb3q1gjlaa9zkmhx7vamh0g97dwp9j55215i1sx66lmp18iq", + "fetcher": "github", + "repo": "futurist/js-format.el", + "unstable": { + "version": [ + 20170119, + 102 + ], + "deps": [ + "js2-mode" + ], + "commit": "544bda9be72b74ec2d442543ba60cff727d96669", + "sha256": "18wr2z2w2fqgy51f5m5izrnywarxn6w4qs04lsgbwlsc6ahpwwpf" + } + }, + { + "ename": "js-import", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0r653ls1a4kr7i7249afgfj7vz365gadfm8bc1vmqfabxn8mysd4", + "fetcher": "github", + "repo": "jakoblind/js-import", + "unstable": { + "version": [ + 20190218, + 1319 + ], + "deps": [ + "dash", + "f", + "projectile" + ], + "commit": "2ab3b120cc94ebf4bee2d959c8869440bc4c7484", + "sha256": "1fv8lpjanyn6chf502lz0j438hfxhqz1b0z2kxsd4jgy20ixchmg" + } + }, + { + "ename": "js2-closure", + "commit": "61bf3e70ae38a78184f0b373ff6f0db234f51cb2", + "sha256": "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7", + "fetcher": "github", + "repo": "jart/js2-closure", + "unstable": { + "version": [ + 20170816, + 1918 + ], + "deps": [ + "js2-mode" + ], + "commit": "f59db386d7d0693935d0bf52babcd2c203c06d04", + "sha256": "09zfmxi9m883lzsafnws06ifpq92b2i9q05pxk085vgkdpq35nss" + }, + "stable": { + "version": [ + 2, + 2, + 1 + ], + "deps": [ + "js2-mode" + ], + "commit": "74a75f001a8bc2b9c02b9e8b4557f7ee3c5f84fb", + "sha256": "1gapx656s4ngy8s8y1p56xxnclwf4qqg83l3jizknxky7yhayyl9" + } + }, + { + "ename": "js2-highlight-vars", + "commit": "5f4a7c90be2e032277ae87b8de36d2e3f6146f09", + "sha256": "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475", + "fetcher": "github", + "repo": "unhammer/js2-highlight-vars.el", + "unstable": { + "version": [ + 20170418, + 1829 + ], + "deps": [ + "js2-mode" + ], + "commit": "e3bb177e50f76b272e8073a94d4f46be6512a163", + "sha256": "0yy8sqkn6c7r377qr2id4z550vw1x70xjd4i7yg0g1rj7q1kg98l" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "js2-mode" + ], + "commit": "bf38d12cf65eebc8b81866fd03f6a0389bb2a9ed", + "sha256": "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l" + } + }, + { + "ename": "js2-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv", + "fetcher": "github", + "repo": "mooz/js2-mode", + "unstable": { + "version": [ + 20190606, + 1008 + ], + "deps": [ + "cl-lib" + ], + "commit": "999c0e7d96f4d5be0950b6506d732dc3d7c53635", + "sha256": "0nwhw0qw1hbdh0jrdbsgzv4z9yc93x9yjfpan93cbcw0i9qfai8h" + }, + "stable": { + "version": [ + 20190219 + ], + "deps": [ + "cl-lib" + ], + "commit": "ed955e7f1608cfd2d2713129d65f5fd734842ae4", + "sha256": "0766bbr4piia9vfr4ivd2gwi8dxah654adv6h28ylz4q8xmfzm1b" + } + }, + { + "ename": "js2-refactor", + "commit": "8935264dfea9bacc89fef312215624d1ad9fc437", + "sha256": "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r", + "fetcher": "github", + "repo": "magnars/js2-refactor.el", + "unstable": { + "version": [ + 20190630, + 2108 + ], + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ], + "commit": "d4c40b5fc86d3edd7c6a7d83ac86483ee1cb7a28", + "sha256": "08b25y3raz0p98zxk9xdd8nj9shqd6mzrqhbq1gg4cwsmi7h7ly1" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "dash", + "js2-mode", + "multiple-cursors", + "s", + "yasnippet" + ], + "commit": "089c7800e3e7b0a89ee2392037ac07851bcee298", + "sha256": "1iwblf5i7k1i1ax9pjv7n8zv9q157krirdn0gwcib6dwza2i30jp" + } + }, + { + "ename": "js3-mode", + "commit": "805a7c7fee2bafd8785813963bf91ac1ca417fd1", + "sha256": "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r", + "fetcher": "github", + "repo": "thomblake/js3-mode", + "unstable": { + "version": [ + 20160515, + 1550 + ], + "commit": "229aeb374f1b1f3ee5c59b8ba3eebb6385c232cb", + "sha256": "0yd2lck1kq01pxk86jpxff5ih6fxx1a1wvl7v8b5ys7gi33fjqz2" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "5ccda46ba39998a74bd724fdffb34634be5b6563", + "sha256": "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n" + } + }, + { + "ename": "jscs", + "commit": "f59d039a199ff93d7280669511a752f12a74f0bd", + "sha256": "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv", + "fetcher": "github", + "repo": "papaeye/emacs-jscs", + "unstable": { + "version": [ + 20151015, + 1749 + ], + "deps": [ + "cl-lib" + ], + "commit": "9d39d0f2355e69a020bf76242504f3a33e013ccf", + "sha256": "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy" + } + }, + { + "ename": "jsfmt", + "commit": "4ddc99843dec18a295dfc36e7b429f0e1ab7fb71", + "sha256": "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd", + "fetcher": "github", + "repo": "brettlangdon/jsfmt.el", + "unstable": { + "version": [ + 20180920, + 1008 + ], + "commit": "ca141a135c7700eaedef92561d334e1fb7dc28a1", + "sha256": "13b2y6q6hqgdf32vyph407jlgki8xf5kflqz8zi0hcrmb8wkrd5x" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "c5d9742872509143db0250a77db705ef78f02cd0", + "sha256": "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x" + } + }, + { + "ename": "json-mode", + "commit": "03d0ff6c8d724cf39446fa27f52aa5cc1a3cefb6", + "sha256": "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70", + "fetcher": "github", + "repo": "joshwnj/json-mode", + "unstable": { + "version": [ + 20190123, + 422 + ], + "deps": [ + "json-reformat", + "json-snatcher" + ], + "commit": "0e819e519ae17a2686e0881c4ca51fa873fa9b83", + "sha256": "0m4i6b5qmakdc0h8npsyajdp06jq03cb1c5rkj6x0khnjw9fv2fl" + }, + "stable": { + "version": [ + 1, + 7, + 0 + ], + "deps": [ + "json-reformat", + "json-snatcher" + ], + "commit": "9ba01b868a6b138feeff82b9eb0abd331d29325f", + "sha256": "0i79lqzdg59vkqwjd3q092xxn9vhxspb1vn4pkis0vfvn46g01jy" + } + }, + { + "ename": "json-navigator", + "commit": "62d4d68bd473652b80988a68250e9190b886ad6e", + "sha256": "0yfl31cg0mkgsbpgx00m9h2cxnhsavcf7zlspb0qr4g2zq6ya1wx", + "fetcher": "github", + "repo": "DamienCassou/json-navigator", + "unstable": { + "version": [ + 20190131, + 1031 + ], + "deps": [ + "hierarchy" + ], + "commit": "f4cde60c4203fc70cc7ff22ed1d6579159ce2598", + "sha256": "0xrjbx6rkm8a6pmzhdph0r6l468hj827dvvq2hxhcm8v5gk6m690" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "hierarchy" + ], + "commit": "f4cde60c4203fc70cc7ff22ed1d6579159ce2598", + "sha256": "0xrjbx6rkm8a6pmzhdph0r6l468hj827dvvq2hxhcm8v5gk6m690" + } + }, + { + "ename": "json-reformat", + "commit": "f8c7976237f327fdfa58eea26ac8679f40ef3163", + "sha256": "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na", + "fetcher": "github", + "repo": "gongo/json-reformat", + "unstable": { + "version": [ + 20160212, + 853 + ], + "commit": "8eb6668ed447988aea06467ba8f42e1f2178246f", + "sha256": "11y11yybhb8wfj8qcj4gw8rhhly7kjs7ylyxwsh7qnfgq6f771qh" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "commit": "b9bd375ec1deb10d2ba09c409bdcf99c56d7a716", + "sha256": "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs" + } + }, + { + "ename": "json-rpc", + "commit": "82c6b97cdfe2970f028a00146b01e5734710291b", + "sha256": "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k", + "fetcher": "github", + "repo": "skeeto/elisp-json-rpc", + "unstable": { + "version": [ + 20180104, + 1528 + ], + "deps": [ + "cl-lib" + ], + "commit": "0992ae71964055230aa5d4d934a1b93b5dfd7eb4", + "sha256": "0nfccwxss3dz1ig6i3dig703xpsy90m7i96bm3pysrw2jfp4by9s" + } + }, + { + "ename": "json-rpc-server", + "commit": "c9b2ed94451c49997a0895cacdd177dc3534e4e3", + "sha256": "1cmpxg07n9x266q0j6d0ywlywrwkjxkn863npyh75mhixx361674", + "fetcher": "github", + "repo": "jcaw/json-rpc-server.el", + "unstable": { + "version": [ + 20190714, + 1521 + ], + "commit": "1623346b308dc8f593346dc947fdc4092d674834", + "sha256": "1kkn4xjn9i207x580902jfpcrhpkvpyzxk4jh1bclbryki9602zv" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "1623346b308dc8f593346dc947fdc4092d674834", + "sha256": "1kkn4xjn9i207x580902jfpcrhpkvpyzxk4jh1bclbryki9602zv" + } + }, + { + "ename": "json-snatcher", + "commit": "990de179e20c169aa02ffec42c89f18ce02239c8", + "sha256": "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4", + "fetcher": "github", + "repo": "Sterlingg/json-snatcher", + "unstable": { + "version": [ + 20150512, + 347 + ], + "commit": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "c4cecc0a5051bd364373aa499c47a1bb7a5ac51c", + "sha256": "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw" + } + }, + { + "ename": "jsonl", + "commit": "7b74404824208b80bfd47478d105e1f17235b36b", + "sha256": "1gng6jm4wnb7m11lcpc2rb239raskcjlbya0myzfb8cfr2v6z6h6", + "fetcher": "github", + "repo": "ebpa/jsonl.el", + "unstable": { + "version": [ + 20190623, + 509 + ], + "commit": "3dd0b7bb2b4bce9f9de7367941f0cc78f82049c9", + "sha256": "0c69yldiyg8q7dhqdcchkz20l44ckpmg8nri2740jg9wkwkj4wiz" + } + }, + { + "ename": "jsonnet-mode", + "commit": "ba17372732723f73e8eeb6e7c47abc0edeb20da4", + "sha256": "1aadys887szlc924qr645lby9f8vzvxkwhq6byhppk1b01h911ia", + "fetcher": "github", + "repo": "mgyucht/jsonnet-mode", + "unstable": { + "version": [ + 20181211, + 1853 + ], + "commit": "2b90b4e12a11c42df0f1e5db327a50555b6ff023", + "sha256": "0j1dggxq1rm47cbi7khask40sj1wrcd0jki4m7j15qaxw7ryihhm" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "efe768fdcff25d746674fbbf229b9e1a7efea4f1", + "sha256": "1a52266y83z9i3sg7hhc8sw7rhjy5i9wdy2bv7s2fv00lnngaj29" + } + }, + { + "ename": "jss", + "commit": "e3dc3607f512df378ba141327802820da4991a97", + "sha256": "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k", + "fetcher": "github", + "repo": "segv/jss", + "unstable": { + "version": [ + 20130508, + 1423 + ], + "deps": [ + "js2-mode", + "websocket" + ], + "commit": "41749257aecf13c7bd6ed489b5ab3304d06e40bc", + "sha256": "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83" + } + }, + { + "ename": "jst", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1kxf8ckhsh0sgc4xqkkyh7ghk17farqqz35ibvmyrkl9s19ydj1q", + "fetcher": "github", + "repo": "zhangkaiyulw/jst-mode", + "unstable": { + "version": [ + 20150604, + 1138 + ], + "deps": [ + "dash", + "f", + "pcache", + "s" + ], + "commit": "2a3fd16c992f7790dc67134ef06a814c3d20579c", + "sha256": "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy" + } + }, + { + "ename": "jsx-mode", + "commit": "7dea24e922f18c1f7e1b97da07ba2e4f33170557", + "sha256": "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b", + "fetcher": "github", + "repo": "jsx/jsx-mode.el", + "unstable": { + "version": [ + 20130908, + 1724 + ], + "commit": "47213429c09259126cddb5742482cfc444c70d50", + "sha256": "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh" + }, + "stable": { + "version": [ + 0, + 1, + 10 + ], + "commit": "1ca260b76f6e6251c528ed89501597a5b456c179", + "sha256": "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx" + } + }, + { + "ename": "jtags", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "1f3dw9fr31lcqmida14d9rsvy1r1b5d6ihqwdj9hbx5kv7d8jyj7", + "fetcher": "git", + "url": "https://git.code.sf.net/p/jtags/code", + "unstable": { + "version": [ + 20160211, + 2029 + ], + "commit": "b50daa48510f71e74ce0ec2eb85030896a79cf96", + "sha256": "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y" + } + }, + { + "ename": "julia-mode", + "commit": "3416586d4d782cdd61a56159c5f80a0ca9b3ddf4", + "sha256": "1f26j3nxspwrvnsk3kmam8rw4jwikwmi9a5zwsx9aa1rrasg58w3", + "fetcher": "github", + "repo": "JuliaEditorSupport/julia-emacs", + "unstable": { + "version": [ + 20190407, + 2119 + ], + "commit": "1eacdc608b6ce1947db0a86e61f2061f00a96bc1", + "sha256": "01bz57d8hnlr9g9xm987zaziyssgd5iacxcbgmg9lynksjgnpwsz" + } + }, + { + "ename": "julia-repl", + "commit": "9a2a494969a9caf2f4513b12504379c9685047dc", + "sha256": "1k8a54s7g64zasmmnywygr0ra3s3din5mkqb7b5van2l0d4hcmzn", + "fetcher": "github", + "repo": "tpapp/julia-repl", + "unstable": { + "version": [ + 20190420, + 1455 + ], + "commit": "71380e8139e28ea527a85ddb9146f2980d62c1f8", + "sha256": "1kmmk5wf0ifyn894qadqxfpwy2j6m397r0lg14sa73r01ql2j010" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "6eb58ef8b2e922e042fb0aee399547291fce06a4", + "sha256": "05siwlyafga6ihksmd4v7dlhn1c3f6vg4ns255apm7vnmfryzvkf" + } + }, + { + "ename": "julia-shell", + "commit": "a812c6a8498949d8bd9828a95433c539da87c1c8", + "sha256": "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410", + "fetcher": "github", + "repo": "dennisog/julia-shell-mode", + "unstable": { + "version": [ + 20161125, + 1910 + ], + "deps": [ + "julia-mode" + ], + "commit": "583a0b2ca20461ab4356929fd0f2212c22341b69", + "sha256": "182r7x7w3xnx7c54izz3rlz0khcwh7v21m89qpq99f9dvcs6273k" + } + }, + { + "ename": "jumblr", + "commit": "b47000c35a181c03263e85e8955eb4b4c9e69e4d", + "sha256": "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp", + "fetcher": "github", + "repo": "mkmcc/jumblr", + "unstable": { + "version": [ + 20170727, + 2043 + ], + "deps": [ + "dash", + "s" + ], + "commit": "34533dfb9db8538c005f4eaffafeff7ed193729f", + "sha256": "0nn2m27c70nykin4iakrna0c61qd1hr09czrfmfpk06k70iifjky" + } + }, + { + "ename": "jump", + "commit": "f0c791aebccc08b770b3969ce5d2e82cbe26f80e", + "sha256": "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364", + "fetcher": "github", + "repo": "eschulte/jump.el", + "unstable": { + "version": [ + 20161127, + 128 + ], + "deps": [ + "cl-lib", + "findr", + "inflections" + ], + "commit": "e4f1372cf22e811faca52fc86bdd5d817498a4d8", + "sha256": "0354b64drvv8v5g13xy5nc1klwx4hldz1b5mf1frhna7h2dqz0j9" + }, + "stable": { + "version": [ + 2, + 5 + ], + "deps": [ + "cl-lib", + "findr", + "inflections" + ], + "commit": "40a7ffdf734ffe7d1968909663146255d7ba69c8", + "sha256": "1ig1wdjg914p9ng1nir2fid4mb3xz2dbpmkdnfy1klq2zp0xw2s3" + } + }, + { + "ename": "jump-char", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1r6d1vhm87zafi7rr7z8jwyz3yy7i7s4774n84jsql24j1rzzwd4", + "fetcher": "github", + "repo": "lewang/jump-char", + "unstable": { + "version": [ + 20180601, + 1348 + ], + "commit": "1e31a3c687f2b3c71bbfab881c6d75915534bb9e", + "sha256": "1nzln2l6sy67qz30107sgyhhfacy85im9vdlbv1hp4fzdmxxkx84" + } + }, + { + "ename": "jump-to-line", + "commit": "4b6c700a28b65cbbad36a9bbaf88cc36c8191eb0", + "sha256": "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr", + "fetcher": "github", + "repo": "ongaeshi/jump-to-line", + "unstable": { + "version": [ + 20130122, + 1653 + ], + "commit": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "01ef8c3529d85e6c59cc20840acbc4a8e8325bc8", + "sha256": "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s" + } + }, + { + "ename": "jump-tree", + "commit": "fe6b08848929c83e3cdea623b331176c0f20cbe9", + "sha256": "1gknpwd1vjpd1jqpi2axhyi6sg4clarr32rfrfz6hi6kmzr848mj", + "fetcher": "github", + "repo": "yangwen0228/jump-tree", + "unstable": { + "version": [ + 20171014, + 1551 + ], + "commit": "282267dc6305889e31d46b405b7ad4dfe5923b66", + "sha256": "0r6cwpks4aylndvq5lcny3799fag05zm36gd11043wca7sgr90fz" + } + }, + { + "ename": "jumplist", + "commit": "b2b7c688b881615c5f0b00f3879b9469d380a4e6", + "sha256": "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf", + "fetcher": "github", + "repo": "ganmacs/jumplist", + "unstable": { + "version": [ + 20151120, + 345 + ], + "deps": [ + "cl-lib" + ], + "commit": "c482d137d95bc5e1bcd790cdbde25b7f729b2502", + "sha256": "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl" + } + }, + { + "ename": "jupyter", + "commit": "a63a933e193a52e60950331ec982c5f5cdfaa5d9", + "sha256": "0p83mkvip1gn5ag2j6s68wzfgg2sf15iyxh7ylads3yw44h26wvi", + "fetcher": "github", + "repo": "dzop/emacs-jupyter", + "unstable": { + "version": [ + 20190801, + 2126 + ], + "deps": [ + "cl-lib", + "simple-httpd", + "websocket", + "zmq" + ], + "commit": "6b1baf1fde00ce97ac9d2f96ea6147b68f297640", + "sha256": "0dlb7nn2ifiw0b8psq2kszlkm58mklc8avlnpby4bwfh0vb1bsjc" + }, + "stable": { + "version": [ + 0, + 8, + 1 + ], + "deps": [ + "cl-lib", + "simple-httpd", + "websocket", + "zmq" + ], + "commit": "6650dd35887e0e987385a4fb74b0a3c1661e149b", + "sha256": "152g22bm970px2mi3bfr6f59mvvbk2p8prv5vs5b9n0cmviqm50w" + } + }, + { + "ename": "jvm-mode", + "commit": "7cdb7d7d7b955405eb6357277b5d049df8aa85ce", + "sha256": "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w", + "fetcher": "github", + "repo": "martintrojer/jvm-mode.el", + "unstable": { + "version": [ + 20150422, + 708 + ], + "deps": [ + "dash" + ], + "commit": "3355dbaf5b0185aadfbad24160399abb32c5bea0", + "sha256": "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash" + ], + "commit": "16d84c8c80bb214367bae6ed30b08756521c27d6", + "sha256": "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83" + } + }, + { + "ename": "k8s-mode", + "commit": "44085c3f730315a5fc2a9a003ffa16d5df9f9a52", + "sha256": "14m4s0l61a2h38pdq6iczva24cl3mqdkw99k1q0drisdrvy57f33", + "fetcher": "github", + "repo": "TxGVNN/emacs-k8s-mode", + "unstable": { + "version": [ + 20181231, + 741 + ], + "deps": [ + "yaml-mode" + ], + "commit": "1580ffd6ec7749ec6d069ccea95f8c926ca5db15", + "sha256": "0sl8xyhfjnpg46l9f8c3wwwwnl551ly03sghi9a4mx42xpb1g5k0" + } + }, + { + "ename": "kaesar", + "commit": "201fac8639e59dc923ea31da1f84a99f83d51b47", + "sha256": "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-kaesar", + "unstable": { + "version": [ + 20160128, + 1008 + ], + "deps": [ + "cl-lib" + ], + "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", + "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8" + } + }, + { + "ename": "kaesar-file", + "commit": "201fac8639e59dc923ea31da1f84a99f83d51b47", + "sha256": "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-kaesar", + "unstable": { + "version": [ + 20160128, + 1008 + ], + "deps": [ + "kaesar" + ], + "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", + "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "kaesar" + ], + "commit": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8" + } + }, + { + "ename": "kaesar-mode", + "commit": "201fac8639e59dc923ea31da1f84a99f83d51b47", + "sha256": "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-kaesar", + "unstable": { + "version": [ + 20160128, + 1008 + ], + "deps": [ + "cl-lib", + "kaesar" + ], + "commit": "d087075cb1a46c2c85cd075220e09b2eaef9b86e", + "sha256": "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "deps": [ + "cl-lib", + "kaesar" + ], + "commit": "4fa74851cd928f30e9f2ee1aa27ee6074ad253ea", + "sha256": "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8" + } + }, + { + "ename": "kakapo-mode", + "commit": "a43f0f1f6a0773240a51d379ec786c20a9389e7b", + "sha256": "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss", + "fetcher": "github", + "repo": "listx/kakapo-mode", + "unstable": { + "version": [ + 20171004, + 451 + ], + "deps": [ + "cl-lib" + ], + "commit": "292e07203c676361a1d918deb5acf2123cd70eaf", + "sha256": "00rl5y7wra7kyp867ps2inx0vng9jrmym0sm4jhnk6pqj50c8i9y" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "fe3d579867f7465cd3ad04f29b4b2b3b820edc01", + "sha256": "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40" + } + }, + { + "ename": "kakoune", + "commit": "f7e554f20c378aabd9736fdd606e513d2cbf951f", + "sha256": "0ps904m3vb2v5jykc6mk9cb974imiac0pw6b7q1p9x5swk8h4jh5", + "fetcher": "github", + "repo": "jmorag/kakoune.el", + "unstable": { + "version": [ + 20190601, + 2338 + ], + "deps": [ + "expand-region", + "multiple-cursors", + "ryo-modal" + ], + "commit": "50488df2eeb6e8bfe72cfad4de24060819b148eb", + "sha256": "0ym3hbiwjraqsk3clcrkllr7jlj5zqsbxqq94ds2vj0x3f9i81fq" + } + }, + { + "ename": "kaleidoscope", + "commit": "148d47626879be1608f35827ef82a28274ff4de3", + "sha256": "0nfz207rzpnni7jyzvdvz5lr0zcpzy278a86821cmw8d5l81a3yp", + "fetcher": "github", + "repo": "algernon/kaleidoscope.el", + "unstable": { + "version": [ + 20170808, + 817 + ], + "deps": [ + "s" + ], + "commit": "52b5be3277f65cb5ca657973e9bd7f914b996356", + "sha256": "0g2n73habz844f64p1x66kxpvadv9zh34qmxhql34c3w2sm9mmwf" + } + }, + { + "ename": "kaleidoscope-evil-state-flash", + "commit": "148d47626879be1608f35827ef82a28274ff4de3", + "sha256": "17a4nmdi6h0z4va3kiw4ivaywiisblz6cicypk9d3g9sl92drcvq", + "fetcher": "github", + "repo": "algernon/kaleidoscope.el", + "unstable": { + "version": [ + 20170728, + 1020 + ], + "deps": [ + "evil", + "kaleidoscope", + "s" + ], + "commit": "52b5be3277f65cb5ca657973e9bd7f914b996356", + "sha256": "0g2n73habz844f64p1x66kxpvadv9zh34qmxhql34c3w2sm9mmwf" + } + }, + { + "ename": "kanban", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1j4qv3xcg0gk07yx3b4kayiy1n3w8yq1r78h07613iljx2ny91fz", + "fetcher": "bitbucket", + "repo": "ArneBab/kanban.el", + "unstable": { + "version": [ + 20170418, + 810 + ], + "commit": "dd11d722b20ae720f29b8aa93a3b1cad87650b33", + "sha256": "07g0spi9jf48vap76f9rgl61sg3jqy03qdxnmchzwlia8wvcsscb" + } + }, + { + "ename": "kanji-mode", + "commit": "c9f1fb16f2f7f677d0817fd63633dd071ba2cf12", + "sha256": "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5", + "fetcher": "github", + "repo": "wsgac/kanji-mode", + "unstable": { + "version": [ + 20160826, + 1139 + ], + "commit": "eda4f8666486689d36317db7dbda54fb73d3e3d2", + "sha256": "1m0s1kdgz1psiidpxcrzm8qmvmrmk5g2k8lz1lq357z482l4i7ll" + } + }, + { + "ename": "kaolin-themes", + "commit": "043a4e3bd5301ef8f4df2cbda0b3f4111eb399e4", + "sha256": "1pd2v54d578f1wbwvqzplkdz1qvy8w8s6na511b0v5y9sksgm2xw", + "fetcher": "github", + "repo": "ogdenwebb/emacs-kaolin-themes", + "unstable": { + "version": [ + 20190724, + 714 + ], + "deps": [ + "autothemer", + "cl-lib" + ], + "commit": "0c6d0cb40fd686686dcf08a4902f871066f8717e", + "sha256": "13jzcbgcxq1xix6vkiiz5dic4dk1sj7idrh4r6aqrz3hj6cjg0kj" + }, + "stable": { + "version": [ + 1, + 5, + 2 + ], + "deps": [ + "autothemer", + "cl-lib" + ], + "commit": "6b335f4cb203e40c7ee331ecc91f7d95feb23acb", + "sha256": "052lyf5dc6p70dla6ggb24941aaz7lsdzgmkyc7rqxvm0xhm8d2d" + } + }, + { + "ename": "kaomoji", + "commit": "140c65cb3cdf6c197b085ccf8ba079e1efd15f38", + "sha256": "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1", + "fetcher": "github", + "repo": "kuanyui/kaomoji.el", + "unstable": { + "version": [ + 20171227, + 440 + ], + "deps": [ + "helm-core" + ], + "commit": "90a1490743b2a30762f5454c9d9309018eff83dd", + "sha256": "1jc796nyrck3k50x6jb1wsaawk396y4gk87gkwb8yd5qks7ci35q" + } + }, + { + "ename": "kapacitor", + "commit": "db1f8cfcda2fa2b9be74a6cd9f95608e8b3f50bb", + "sha256": "108b3y71p7s3lcwbqxp7hy2l304yj4hxm2nq8iv7ljr8av1q7kn6", + "fetcher": "github", + "repo": "Manoj321/kapacitor-el", + "unstable": { + "version": [ + 20190414, + 1908 + ], + "deps": [ + "magit", + "magit-popup" + ], + "commit": "e3300d8b4017a2f66b0d929cb85bcc7ee2612072", + "sha256": "05vrfii2n2g2q60dzgw23ck6gxxm3d7fsabi4z0g3k9gc6wrsl5l" + } + }, + { + "ename": "karma", + "commit": "681e12556c3ab3e2a8376d5c7c33ee5a213de650", + "sha256": "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc", + "fetcher": "github", + "repo": "tonini/karma.el", + "unstable": { + "version": [ + 20160220, + 1245 + ], + "deps": [ + "pkg-info" + ], + "commit": "31d3e7708246183d7ed0686be92bf23140af348c", + "sha256": "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "f4ee856e7f59649e9d9021c46f872f9b4f5b7e6e", + "sha256": "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8" + } + }, + { + "ename": "kdeconnect", + "commit": "c363866d30fb86ae636d30def8c3847711ada762", + "sha256": "1bcwpnwmm1l2jzc5znw8z6f5knysinidsbm12v4r1j8v6v80ydw6", + "fetcher": "github", + "repo": "carldotac/kdeconnect.el", + "unstable": { + "version": [ + 20180126, + 2340 + ], + "commit": "ca0cbf9a628ba7b519b43fa85e0d988ca26bf853", + "sha256": "07aqzfg2nn35bkikrmk1lszqkc6h8vn2551m22mwc19lmdx94p2i" + } + }, + { + "ename": "kerl", + "commit": "166afdc776689b0da93576dbeaa71ff6dfb627db", + "sha256": "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss", + "fetcher": "github", + "repo": "correl/kerl.el", + "unstable": { + "version": [ + 20150424, + 2005 + ], + "commit": "1732ee26213f021bf040919c45ad276aafcaae14", + "sha256": "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9" + } + }, + { + "ename": "key-chord", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1g0jqmnn575h5n4figxbc5xs76zl8b1cdqa6wbi3d1p2rn3g8scr", + "fetcher": "github", + "repo": "emacsorphanage/key-chord", + "unstable": { + "version": [ + 20160227, + 1238 + ], + "commit": "72443e9ff3c4f1c3ccaced3130236801efde3d83", + "sha256": "15jfpysyydcvqlvdannxg2s4bh4i9z6i950fad1qlq43jfmq7k55" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "8468998946367157830df19a1e92785d22a34178", + "sha256": "10ldhwp9a21r9g72hzaig1h5yh2zblny0r36nf5nz6gzikfcq0cd" + } + }, + { + "ename": "key-combo", + "commit": "99b422ef5f7b9dda894207e3133791fb9963a092", + "sha256": "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf", + "fetcher": "github", + "repo": "uk-ar/key-combo", + "unstable": { + "version": [ + 20150324, + 1439 + ], + "commit": "2fb5c65bc82d5bd2964e2b163822429ab45d90a1", + "sha256": "1d445784mar1jrmrlswwxh3w52l3aym8kx3k4lgqwqa1p0i0pjqz" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "0bc0cf6466a4257047a21a6d01913e92e6862165", + "sha256": "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q" + } + }, + { + "ename": "key-intercept", + "commit": "ad758d865bde8c97d27c0d57cabe1606f8b36974", + "sha256": "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16", + "fetcher": "github", + "repo": "tarao/key-intercept-el", + "unstable": { + "version": [ + 20140211, + 749 + ], + "commit": "d9a60edb4ce893f2d3d94f242164fdcc62d43cf2", + "sha256": "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4" + } + }, + { + "ename": "key-leap", + "commit": "8b56e18063e6292bb2aca2acc7077b32f3d62262", + "sha256": "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj", + "fetcher": "github", + "repo": "MartinRykfors/key-leap", + "unstable": { + "version": [ + 20160831, + 1447 + ], + "commit": "b3f6ef15c8a13870475d5af159fa24b30f97dea0", + "sha256": "1f2k7jpxfvjirxzjc5c4s4lpg1hdgw8k7lfchx362jqijny1ipfp" + } + }, + { + "ename": "key-quiz", + "commit": "e87df606bf768e3a731234c444077a11601ecc4a", + "sha256": "0zcs4nm9jis60ghm0xi84yc945xm45n0q1xp8ic1ix48wf7jq7a0", + "fetcher": "github", + "repo": "federicotdn/key-quiz", + "unstable": { + "version": [ + 20190721, + 1357 + ], + "commit": "a243f0e0fdc9ee2b22ee19594de0c3b966b2445f", + "sha256": "0pzppcxzspx1k6r7vd88fn56r21d0g1jvq4w0ymlzm63vwda4p6i" + } + }, + { + "ename": "key-seq", + "commit": "0d54ab1b6973a44362e50559dd91344d0b17f513", + "sha256": "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74", + "fetcher": "github", + "repo": "vlevit/key-seq.el", + "unstable": { + "version": [ + 20150907, + 756 + ], + "deps": [ + "key-chord" + ], + "commit": "e29b083a6427d061638749194fc249ef69ad2cc0", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "key-chord" + ], + "commit": "e29b083a6427d061638749194fc249ef69ad2cc0", + "sha256": "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f" + } + }, + { + "ename": "keycast", + "commit": "aaaf62c586818f2493667ad6ec8877234a58da53", + "sha256": "19qq5y1zjp3029kfq0c59xl9xnxqmdn2pd04sblznchcr9jdy5id", + "fetcher": "github", + "repo": "tarsius/keycast", + "unstable": { + "version": [ + 20190317, + 135 + ], + "commit": "7bbebe6442720031e4f5d1fd909c5be2fbb1c1dc", + "sha256": "19a8vdzbfwk5klac5800aywlmrl41kfb7ansmfg4938i4gwnbak0" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "commit": "fe416461b15543138ad4fef8ef5e2c364a6b5b2c", + "sha256": "15q2kc7mlmr856ldh6bkba26zq8fwia26cv1gsqwj3jmhml6mlq1" + } + }, + { + "ename": "keychain-environment", + "commit": "4382c9e7e8dee2cafea9ee49965d0952ca359dd5", + "sha256": "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v", + "fetcher": "github", + "repo": "tarsius/keychain-environment", + "unstable": { + "version": [ + 20180318, + 2223 + ], + "commit": "d3643196de6dc79ea77f9f4805028350fd76100b", + "sha256": "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj" + }, + "stable": { + "version": [ + 2, + 4, + 1 + ], + "commit": "d3643196de6dc79ea77f9f4805028350fd76100b", + "sha256": "0wzs77nwal6apinc39d4arj3lralv2cb9aw9gkikk46fgk404hwj" + } + }, + { + "ename": "keydef", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992", + "fetcher": "github", + "repo": "emacsorphanage/keydef", + "unstable": { + "version": [ + 20090428, + 1931 + ], + "commit": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv" + }, + "stable": { + "version": [ + 1, + 15 + ], + "commit": "dff2be9f58d12d8c6a490ad0c1b2b10b55528dc0", + "sha256": "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv" + } + }, + { + "ename": "keyfreq", + "commit": "cd7157bad0f3039321b5b279a88e7e4fce895543", + "sha256": "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7", + "fetcher": "github", + "repo": "dacap/keyfreq", + "unstable": { + "version": [ + 20160516, + 1416 + ], + "deps": [ + "cl-lib" + ], + "commit": "9c665c8c219d18866403897936427bb408e3d6b9", + "sha256": "1dhdk4f6q340n0r9n8jld2n2fykp7m40x23n7sw4wpm8g151gxin" + }, + "stable": { + "version": [ + 1, + 8 + ], + "commit": "f3a96693e2e4c6893198a0223e3f3c648ae09cec", + "sha256": "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i" + } + }, + { + "ename": "keymap-utils", + "commit": "c03acebf1462dea36c81d4b9ab41e2e5739be3c3", + "sha256": "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9", + "fetcher": "github", + "repo": "tarsius/keymap-utils", + "unstable": { + "version": [ + 20180318, + 2237 + ], + "deps": [ + "cl-lib" + ], + "commit": "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7", + "sha256": "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8" + }, + "stable": { + "version": [ + 3, + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "1ad766dbc111ec78b1a292da97b9bd4856cd2ff7", + "sha256": "0imx8zp21bm066bzdynvasylrlhw0gr8mpk2bwkz8j1y5lsp54v8" + } + }, + { + "ename": "keypress-multi-event", + "commit": "fd02baaf1d49d55b066695d8fa9887c454bb1750", + "sha256": "07va7w6vgjf6jqrfzpsq8732b8aka07g29h661yh1xn4x6464hyp", + "fetcher": "github", + "repo": "Boruch-Baum/emacs-keypress-multi-event", + "unstable": { + "version": [ + 20190109, + 530 + ], + "commit": "9de65a27e10d8ae47aa6d28c02c3eb82ee8c0b2e", + "sha256": "1ybbayxfix63rwc8p5kl4wxxlk6vg53abw40fqrlkbc6qrr7nm5c" + } + }, + { + "ename": "keyset", + "commit": "7bad8a1f1b94fbfbde5d8035f7e22431e64a9eec", + "sha256": "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg", + "fetcher": "github", + "repo": "HKey/keyset", + "unstable": { + "version": [ + 20150220, + 530 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "41bbfc4dbed5de6ecf3ec1dba634c7c26241ca84", + "sha256": "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "25658ef79d26971ce41d9df207dff58d38daa091", + "sha256": "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv" + } + }, + { + "ename": "keystore-mode", + "commit": "7870d808fc19096ed6ecde5e9297b28254466210", + "sha256": "1r1my7jgjv2zvkhdwd8ml6489x48gzanz4lvdiw5m2hymb53fdg6", + "fetcher": "github", + "repo": "peterpaul/keystore-mode", + "unstable": { + "version": [ + 20190409, + 1946 + ], + "deps": [ + "origami", + "s", + "seq" + ], + "commit": "43bd5926348298d077c7221f37902c990df3f951", + "sha256": "06cznkqkm04zz5lqfb514aqvsr2p13arzysixv0ss0bqpvdq7cv7" + } + }, + { + "ename": "keyswap", + "commit": "ed8303f5009604ae3d83769063d38749e37fc5d8", + "sha256": "0ck9w2jr4vdk3yjlcdzblsbgw5w5x1cxbx7h1am5vkr6fhxh2hdi", + "fetcher": "github", + "repo": "hardenedapple/keyswap.el", + "unstable": { + "version": [ + 20160813, + 957 + ], + "commit": "cd682a7c4a8d64d6bae6a005db5045232e5e7b95", + "sha256": "191i2b2xx6180sly0dd6b1z6npsrzjqhxrbak9wm6yblx7alsgn2" + } + }, + { + "ename": "keyword-search", + "commit": "8ecdc51938f2300bf005e2d1b1819e0fa59e0bd7", + "sha256": "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa", + "fetcher": "github", + "repo": "keyword-search/keyword-search", + "unstable": { + "version": [ + 20180424, + 1102 + ], + "commit": "f8475ecaddb8804a9be6bee47678207c86ac8dee", + "sha256": "1ymqnpm9his2bkchq23vwazprwyw0d2sdgza7zjxvs3q0f4nj0vx" + } + }, + { + "ename": "kfg", + "commit": "2990f45632697ce23e7cd9db807d8ae2d3bf61d2", + "sha256": "0kj79wwj2ih2ba57y3hl2l9pwjpsqns5waa8vi5g7agmqva0mh5b", + "fetcher": "github", + "repo": "czipperz/kfg", + "unstable": { + "version": [ + 20140909, + 538 + ], + "deps": [ + "f" + ], + "commit": "d2c9dd26618fb2f7bf1e7b6eae193b1cceba3c97", + "sha256": "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c" + } + }, + { + "ename": "kibit-helper", + "commit": "f7fee551ca9ed226f1285dffe87027e1e1047f65", + "sha256": "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s", + "fetcher": "github", + "repo": "brunchboy/kibit-helper", + "unstable": { + "version": [ + 20150508, + 1533 + ], + "deps": [ + "s" + ], + "commit": "16bdfff785ee05d8e74a5780f6808506d990cef7", + "sha256": "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "s" + ], + "commit": "ec5f154db3bb0c838e86f527353f08644cede926", + "sha256": "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv" + } + }, + { + "ename": "kill-or-bury-alive", + "commit": "25016ed09b6333bd79b989a8f6b7b03cd92e08b3", + "sha256": "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8", + "fetcher": "github", + "repo": "mrkkrp/kill-or-bury-alive", + "unstable": { + "version": [ + 20190713, + 1340 + ], + "deps": [ + "cl-lib" + ], + "commit": "fec16e7e5bf603c6971230f344882ce7a0d04e90", + "sha256": "0p1zd1kyw48xf40zvbssmkf8cj6gb0lln4xdnx3v2hh1m2mr3xs5" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "51daf55565034b8cb6aa3ca2aa0a827e31751041", + "sha256": "1qbdxjni1brhsw6m4cvd2jjaf3y8v3fkbxxf0pvsb089mkpi7mpq" + } + }, + { + "ename": "kill-ring-search", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1jggi6r5j2dr9y17v4cyskc0wydfdpqgp1pib5dr2kg6n6w0s5xl", + "fetcher": "github", + "repo": "nschum/kill-ring-search.el", + "unstable": { + "version": [ + 20140422, + 1555 + ], + "commit": "23535b4a01a1cb1574604e36c49614e84e85c883", + "sha256": "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "3a5bc1767f742c91aa788df79ecec836a0946edb", + "sha256": "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93" + } + }, + { + "ename": "killer", + "commit": "bd8c3ec8fa272273128134dea96c0c999a524549", + "sha256": "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma", + "fetcher": "github", + "repo": "tarsius/killer", + "unstable": { + "version": [ + 20190128, + 10 + ], + "commit": "ace0547944933440384ceeb5876b1f68c082d540", + "sha256": "06nzxd9nc1d569354xj7w88i0y5l99pyag691aribsh771rxbfz4" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "ace0547944933440384ceeb5876b1f68c082d540", + "sha256": "06nzxd9nc1d569354xj7w88i0y5l99pyag691aribsh771rxbfz4" + } + }, + { + "ename": "kite", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "17bpk9ycx2xkwm3j1dxi5216lbzf5lgnscs8i4y0pkpicdn0wyr6", + "fetcher": "github", + "repo": "jscheid/kite", + "unstable": { + "version": [ + 20130201, + 1938 + ], + "deps": [ + "json", + "websocket" + ], + "commit": "7ed74d1147a6ddd152d3da65dc30df3517d53144", + "sha256": "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd" + } + }, + { + "ename": "kite-mini", + "commit": "a9b76d0ee09efc6652d0541cf72c9623760dda66", + "sha256": "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh", + "fetcher": "github", + "repo": "tungd/kite-mini.el", + "unstable": { + "version": [ + 20160508, + 1106 + ], + "deps": [ + "dash", + "websocket" + ], + "commit": "a68619dbc109c7989f3448426d8c1ee9e797c11f", + "sha256": "1qmg5mdf3zhmpa4kdvkh62y6if6mj4ag885dg7y6461dg2y6ymlh" + } + }, + { + "ename": "kivy-mode", + "commit": "688e2a114073958c413e56e1d117d48db9d16fb8", + "sha256": "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1", + "fetcher": "github", + "repo": "kivy/kivy", + "unstable": { + "version": [ + 20180702, + 2029 + ], + "commit": "68dade8a209d498721f425e1ffd7e8c4d9de532b", + "sha256": "1zffkh46gk5as18fkgmzzr5kr9x2jak5mrhrhqb3fhhvfj9dd3xs" + }, + "stable": { + "version": [ + 1, + 11, + 1 + ], + "commit": "39c17457bae91baf8fe710dc989791e45879f136", + "sha256": "1rl56b7j3d6d57hx4c155brfv988ngcvc342ma09i630lh7gxpf5" + } + }, + { + "ename": "kiwix", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0x5ld557kxzx5s8ziy5axgvm1fxlq81l9gvinfgs8f257vjlki07", + "fetcher": "github", + "repo": "stardiviner/kiwix.el", + "unstable": { + "version": [ + 20190325, + 352 + ], + "deps": [ + "cl-lib" + ], + "commit": "c662f3dc5d924a4b64b7af4af28f15f27b7cea1e", + "sha256": "0i11sfnqvjqqb625cgfzibs6yszx891y4dy7fd6wzmdpclcyzr8z" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "c662f3dc5d924a4b64b7af4af28f15f27b7cea1e", + "sha256": "0i11sfnqvjqqb625cgfzibs6yszx891y4dy7fd6wzmdpclcyzr8z" + } + }, + { + "ename": "kixtart-mode", + "commit": "672cfc166209b6c2ffcb0e549fd2416be7212a5a", + "sha256": "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp", + "fetcher": "github", + "repo": "ryrun/kixtart-mode", + "unstable": { + "version": [ + 20150611, + 1604 + ], + "commit": "1c2356797e7b766bbaaa2b341176a8b10499cd79", + "sha256": "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb" + } + }, + { + "ename": "klere-theme", + "commit": "07a3e348d69738ae59fce3570a61b0cdc565fdb8", + "sha256": "1lgvk6q2853rpk15i91zf917r8wmrb7bnagp4x02fws49x83hqrs", + "fetcher": "github", + "repo": "WammKD/emacs-klere-theme", + "unstable": { + "version": [ + 20180415, + 1823 + ], + "commit": "c064f9e5c44173c239fce239a62c8d5e61827672", + "sha256": "1rfdk35k1cj1z5gnsckcy93mqgj1amqzb13b89k11bnzc2m6r7zl" + } + }, + { + "ename": "know-your-http-well", + "commit": "2ab50ae6278022281b2b7297c086089e5e669c7a", + "sha256": "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q", + "fetcher": "github", + "repo": "for-GET/know-your-http-well", + "unstable": { + "version": [ + 20160208, + 2304 + ], + "commit": "3cc5ab6d2764ab7aacb1b6e026abaccbeb6c37f2", + "sha256": "0hni9xvv0759nqwhngijiqkvpiz7alyd4ydf0mvi2vkmbxkci8n1" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "c381a9735f3ea86ebc9667e35cdfeab0b67fefb7", + "sha256": "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k" + } + }, + { + "ename": "kodi-remote", + "commit": "08f06dd824e67250afafdecc25128ba794ca971f", + "sha256": "0f3n7b3plsw28xpz07lf5pv71b6s2xjhq2h23gpyg0r69v99chh5", + "fetcher": "github", + "repo": "spiderbit/kodi-remote.el", + "unstable": { + "version": [ + 20190622, + 1325 + ], + "deps": [ + "cl-lib", + "f", + "json", + "let-alist", + "request" + ], + "commit": "f5e932036c16e2b61a63020e006fc601e38d181e", + "sha256": "1gck7lvqxcr9ikrzlpvcf4408cq6i4s8ijgb0kdsbkfzv0w86934" + } + }, + { + "ename": "kolon-mode", + "commit": "b18f38d291303ff362e11ca711bb00bf411e2180", + "sha256": "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3", + "fetcher": "github", + "repo": "samvtran/kolon-mode", + "unstable": { + "version": [ + 20140122, + 1134 + ], + "commit": "5af0955e280ae991862189ebecd3937c5fc8fb9f", + "sha256": "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw" + } + }, + { + "ename": "kooten-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1zhrjli65pn5nshz8pqn5vbsndzk2h8mhbcldq9k0mc7ki2rrdlv", + "fetcher": "github", + "repo": "kootenpv/emacs-kooten-theme", + "unstable": { + "version": [ + 20161023, + 905 + ], + "commit": "d10197b4dd7af02cd14aeab2573c273a294798c3", + "sha256": "1vc97d3i7jh4fbpan7lfnmsm32c4gwgrg11j2vq7z3rwm42wkkyr" + } + }, + { + "ename": "korean-holidays", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1yf0z9vpiwhlsnyb0fy9wf5rz6f2fzzign96zgj0zd5hwmznbmyr", + "fetcher": "github", + "repo": "tttuuu888/korean-holidays", + "unstable": { + "version": [ + 20190102, + 1558 + ], + "commit": "3f90ed86f46f8e5533f23baa40e2513ac497ca2b", + "sha256": "0y88b4mr73qcshr87750jkjzz1mc2wwra6ca3y8spv4qc6cadwls" + } + }, + { + "ename": "kosmos-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0vj1z69hz0j7kxnzj13c4vck1qj5j1glr9lymk5ns2v8l56gakwb", + "fetcher": "github", + "repo": "habamax/kosmos-theme", + "unstable": { + "version": [ + 20170502, + 1850 + ], + "commit": "616456d2376a75dc31190ad65137d179fbad4336", + "sha256": "193zwgwfnj0lyk0msa16y0dfg7asp953p3jm56d9wdacggbcraj9" + } + }, + { + "ename": "kotlin-mode", + "commit": "9f2560e913b215821221c96069a1385fe4e19c3e", + "sha256": "08jn8r4nhhlck0f7n5agibwh049rigdiy12lpmijbwk1zmcvsqws", + "fetcher": "github", + "repo": "Emacs-Kotlin-Mode-Maintainers/kotlin-mode", + "unstable": { + "version": [ + 20190116, + 2055 + ], + "commit": "0e542ae2f78420618df8b0123dfe168a37dce333", + "sha256": "1rv3vxw3dx477sapfd0hj3pkl3x0sihdsyl671azbcr02z67xl6p" + } + }, + { + "ename": "kpm-list", + "commit": "6b7065d016e2da49277b165edf565bef5819d483", + "sha256": "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0", + "fetcher": "github", + "repo": "KMahoney/kpm-list", + "unstable": { + "version": [ + 20170924, + 1352 + ], + "commit": "e0f5112e5ce8ec1b603f4428fa51681c68bb28f5", + "sha256": "1achcr3v0d85narnxqpbfxy9qfk537kl83wiq5lyfy3lwqqf7dmp" + } + }, + { + "ename": "kroman", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0rcy3343pmlqzqzhmz2c3r0b44pn8fsyp39mvn9nmdnaxsn6q3k8", + "fetcher": "github", + "repo": "zhangkaiyulw/kroman-el", + "unstable": { + "version": [ + 20150827, + 2340 + ], + "commit": "90402b6ae40383e75d8ba97d66eee93eebf40f70", + "sha256": "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr" + } + }, + { + "ename": "ksp-cfg-mode", + "commit": "d49db5938fa4e3ab1176a955a4788b15c63d9e69", + "sha256": "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi", + "fetcher": "github", + "repo": "lashtear/ksp-cfg-mode", + "unstable": { + "version": [ + 20190414, + 2348 + ], + "deps": [ + "cl-lib" + ], + "commit": "faec8bd8456c67276d065eb68c88a30efcef59ef", + "sha256": "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "faec8bd8456c67276d065eb68c88a30efcef59ef", + "sha256": "192s6hz71i0d8bwxn2pdl9yggs2l5fd6jxlxmry8fpk04qg3lqrg" + } + }, + { + "ename": "kubel", + "commit": "f1c7ff1c44946f232730066d6c8c25d5b41ffda7", + "sha256": "1rm85bwpsqj600jvri508nn5i17ynyd84aanf8cqqxk5d2wf9x1n", + "fetcher": "github", + "repo": "abrochard/kubel", + "unstable": { + "version": [ + 20190627, + 246 + ], + "deps": [ + "transient" + ], + "commit": "4e5009540bb3305c9a0a298ffff25b933d6bbbdf", + "sha256": "08qshza3ph800n2wll4mdrgjv9mv41vq9aq7sa5v73ys3ghm4g7s" + } + }, + { + "ename": "kubernetes", + "commit": "16850227ea48f6f38102b9cdf80e0758766a24d2", + "sha256": "06357a8y3rpvid03r9vhmjgq97hmiah5g8gff32dij9424vidil9", + "fetcher": "github", + "repo": "chrisbarrett/kubernetes-el", + "unstable": { + "version": [ + 20190605, + 134 + ], + "deps": [ + "dash", + "magit", + "magit-popup" + ], + "commit": "95d5c934f2955388bdd2f568b8e5c706ce15c21b", + "sha256": "1kahnk2cy96zpxb35vj7f9zanb1nm79p3wxgq4cwgmi6h6gj0arq" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "deps": [ + "dash", + "magit" + ], + "commit": "d4ce5eb5da1ea0879b7d3266d97aecc8aee2807c", + "sha256": "1asjmxw24bvaapjaljj37pv9cbvqqw7577q1mds4lnicvnbdsxzi" + } + }, + { + "ename": "kubernetes-evil", + "commit": "16850227ea48f6f38102b9cdf80e0758766a24d2", + "sha256": "12ygfs6g9aivf2ws3lxwjm5xnd2kidhli889icpygd5v7gnk9pg8", + "fetcher": "github", + "repo": "chrisbarrett/kubernetes-el", + "unstable": { + "version": [ + 20171123, + 219 + ], + "deps": [ + "evil", + "kubernetes" + ], + "commit": "95d5c934f2955388bdd2f568b8e5c706ce15c21b", + "sha256": "1kahnk2cy96zpxb35vj7f9zanb1nm79p3wxgq4cwgmi6h6gj0arq" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "deps": [ + "evil", + "kubernetes" + ], + "commit": "d4ce5eb5da1ea0879b7d3266d97aecc8aee2807c", + "sha256": "1asjmxw24bvaapjaljj37pv9cbvqqw7577q1mds4lnicvnbdsxzi" + } + }, + { + "ename": "kubernetes-helm", + "commit": "269c73e26b3d0cc51bbac8b63bb3782f7428ab40", + "sha256": "0rik7qz5m2hxylmdsjdnrlj52sm7c669milxxp5i1a1c44621xa6", + "fetcher": "github", + "repo": "abrochard/kubernetes-helm", + "unstable": { + "version": [ + 20190201, + 320 + ], + "deps": [ + "yaml-mode" + ], + "commit": "bdf9280899b5efab6d55ffd96bad716c5f8e75bc", + "sha256": "05fsxknp2jpmchvz49hpvh8xvkwl70ksar6ccjqrp7nqcn7cvz2j" + } + }, + { + "ename": "kubernetes-tramp", + "commit": "8ea4b15e64a9dc33b9977650488693cacadd1ab1", + "sha256": "15nlx3w2v0gky0zgbx7n0w1mdr6yaj4dh028ay2k19wg8wbsckjq", + "fetcher": "github", + "repo": "gruggiero/kubernetes-tramp", + "unstable": { + "version": [ + 20181228, + 922 + ], + "deps": [ + "cl-lib" + ], + "commit": "8713571b66940f8f3f496b55baa23cdf1df7a869", + "sha256": "05xbpdgxglqw7s2chay32s5kmglpd446dg3vh02d1462lh474snf" + } + }, + { + "ename": "kurecolor", + "commit": "58a5ebdbf82e83e6602161bca049d468887abe02", + "sha256": "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f", + "fetcher": "github", + "repo": "emacsfodder/kurecolor", + "unstable": { + "version": [ + 20180401, + 1221 + ], + "deps": [ + "s" + ], + "commit": "a27153f6a01f38226920772dc4917b73166da5e6", + "sha256": "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955" + }, + "stable": { + "version": [ + 1, + 2, + 6 + ], + "deps": [ + "s" + ], + "commit": "a27153f6a01f38226920772dc4917b73166da5e6", + "sha256": "04av67q5841jli6rp39hav3a5gr2vcf3db4qsv553i23ffplb955" + } + }, + { + "ename": "kv", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0c10r7mhg517p62lc87ccqypsjrm28xh3bgv4f01fnx569jqgzgp", + "fetcher": "github", + "repo": "nicferrier/emacs-kv", + "unstable": { + "version": [ + 20140108, + 1534 + ], + "commit": "721148475bce38a70e0b678ba8aa923652e8900e", + "sha256": "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m" + } + }, + { + "ename": "kwin", + "commit": "04e6d622a1f1cb765c33297a99f06ed513985498", + "sha256": "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki", + "fetcher": "github", + "repo": "reactormonk/kwin-minor-mode", + "unstable": { + "version": [ + 20150308, + 1812 + ], + "commit": "d4f8f3593598b71ee596e0a87b2c1d6a912a9566", + "sha256": "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy" + } + }, + { + "ename": "lab-themes", + "commit": "c5817cb4cb3a573f93bacfb8ef340bef0e1c5df4", + "sha256": "10gvrrbqp6rxc9kwk8315pa1ldmja42vwr31xskjaq0l4fd28kx0", + "fetcher": "github", + "repo": "MetroWind/lab-theme", + "unstable": { + "version": [ + 20190320, + 1827 + ], + "commit": "d32477943ff6a2ea158c560a7b0c67537432bc2b", + "sha256": "1mlpdma7s4q54k54740q7r0ykkhkr3avxq8h5zmirc3lib7rrxv0" + } + }, + { + "ename": "labburn-theme", + "commit": "b1bfc9870fbe61f58f107b72fd7f16efba22c902", + "sha256": "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm", + "fetcher": "github", + "repo": "ksjogo/labburn-theme", + "unstable": { + "version": [ + 20170502, + 907 + ], + "commit": "e95334acd8a73fbe8e156f70e047014a87e92e66", + "sha256": "0ai8gr4an4d44lgin7kdzydn2d0a98jb8mv0n9b93bq160lbmkwj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "bfa1d9f1c7e107cb45754fe57e4e72a9be70e9d1", + "sha256": "1r221fwfigr6fk4p3xh00wgw9wxm2gpzvj17jf5pgd7cvyspchsy" + } + }, + { + "ename": "laguna-theme", + "commit": "58566386032a017c26ab07c551e72fbe1c20117d", + "sha256": "15ip30ssvp4sqy70998dkkik099mblx4gdsclwh17yc0vi03cg11", + "fetcher": "github", + "repo": "HenryNewcomer/laguna-theme", + "unstable": { + "version": [ + 20190714, + 1830 + ], + "commit": "66c613692b9f0c71050a236e98dbc54cb410946b", + "sha256": "0kms0m65mpmk9j5i1f4ag8a8hja1msn73z2f2gby440l07c8hcjy" + } + }, + { + "ename": "lammps-mode", + "commit": "8f5471a8e17977c17ad84b12a77fe80f37eda25e", + "sha256": "06i48pxp9vq4z7hffna0cndr6iblapim169659pmhidbc4pp7bm4", + "fetcher": "github", + "repo": "HaoZeke/lammps-mode", + "unstable": { + "version": [ + 20180801, + 1319 + ], + "commit": "a5b68d7a59975770b56ee8f6e66fa4f703a72ffe", + "sha256": "1ma33bszv7d6am47n5r74ja4ks7n46m8xfkkr3vcqymlfhbdpq73" + } + }, + { + "ename": "lang-refactor-perl", + "commit": "6bbbf89b71364720dd39e2cf902271108151b5ca", + "sha256": "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9", + "fetcher": "github", + "repo": "jplindstrom/emacs-lang-refactor-perl", + "unstable": { + "version": [ + 20131122, + 2127 + ], + "commit": "691bd69639de6b7af357e3b7143563ececd9c497", + "sha256": "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj" + } + }, + { + "ename": "langdoc", + "commit": "defe78f12dbd7137bed7b1a309caa579e220f7dc", + "sha256": "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7", + "fetcher": "github", + "repo": "tom-tan/langdoc", + "unstable": { + "version": [ + 20150218, + 645 + ], + "deps": [ + "cl-lib" + ], + "commit": "2c7223bacb116992d700ecb19a60df5c09c63424", + "sha256": "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff" + } + }, + { + "ename": "langtool", + "commit": "503845e79e67c921f1fde31447f3dd4da2b6f993", + "sha256": "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-langtool", + "unstable": { + "version": [ + 20190303, + 2227 + ], + "deps": [ + "cl-lib" + ], + "commit": "81f2b8a07b29bbdd558db4b68dd904f4c0eb10a4", + "sha256": "01w765n5bib060f0hci34f0vchf90b4r8gr1ng2c4yx20dvdjnqh" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "d93286722cff3fecf8641a4a6c3b0691f30362fe", + "sha256": "17xa055705n4jb7nafqvqgl0a6fdaxp3b3q8q0gsv5vzycsc74ga" + } + }, + { + "ename": "language-detection", + "commit": "ed2b68d0a11e5db0e7f2f5cbb2eb93c298bcb765", + "sha256": "1c613dj6j05idqyjd6ix7llw04d0327aicac04cicrb006km3r51", + "fetcher": "github", + "repo": "andreasjansson/language-detection.el", + "unstable": { + "version": [ + 20161123, + 1813 + ], + "deps": [ + "cl-lib" + ], + "commit": "54a6ecf55304fba7d215ef38a4ec96daff2f35a4", + "sha256": "0p8kim8idh7hg9398kpgjawkxq9hb6fraxpamdkflg8gjk0h5ppa" + } + }, + { + "ename": "language-id", + "commit": "d03af6375bc7ba4612c43dea805d7f392f046f87", + "sha256": "0p7hg005bmzy38sv2881fq1x2i7yjdhfjbki4y2av485c418rqz8", + "fetcher": "github", + "repo": "lassik/emacs-language-id", + "unstable": { + "version": [ + 20190207, + 1057 + ], + "deps": [ + "cl-lib" + ], + "commit": "9145c75eaa41a7a9deda928f704b99db056d3e9d", + "sha256": "10dwrb610jdal6ifpj34mmy8qqbca2sgfmvn4p4qpcc967sv4f1r" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "9145c75eaa41a7a9deda928f704b99db056d3e9d", + "sha256": "10dwrb610jdal6ifpj34mmy8qqbca2sgfmvn4p4qpcc967sv4f1r" + } + }, + { + "ename": "lastpass", + "commit": "46e5e8735baab7728bddce2693cea6bcee0e6360", + "sha256": "0x4c9c110nqv3v6kzcxdg9a9zcg7yn1hj6ffgrbsd8c3wbrdxrlj", + "fetcher": "github", + "repo": "storvik/emacs-lastpass", + "unstable": { + "version": [ + 20171208, + 1016 + ], + "deps": [ + "cl-lib", + "seq" + ], + "commit": "a4529ce70b8187ed9ac4972997df152af58ef2eb", + "sha256": "1h4h7swww2is7qblqi5r1vh26a9lfl52c0yq7rgwd1pqclffgc8m" + } + }, + { + "ename": "latex-extra", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj", + "fetcher": "github", + "repo": "Malabarba/latex-extra", + "unstable": { + "version": [ + 20170817, + 147 + ], + "deps": [ + "auctex", + "cl-lib" + ], + "commit": "82d99b8b0c2db20e5270749582e03bcc2443ffb5", + "sha256": "15m7zvdhg5z7d8alrw66p703wdp5r57lxrgq3zz7xc4hscwghlb1" + }, + "stable": { + "version": [ + 1, + 14 + ], + "deps": [ + "auctex", + "cl-lib" + ], + "commit": "82d99b8b0c2db20e5270749582e03bcc2443ffb5", + "sha256": "15m7zvdhg5z7d8alrw66p703wdp5r57lxrgq3zz7xc4hscwghlb1" + } + }, + { + "ename": "latex-math-preview", + "commit": "9e413b7684e9199510b00035825aa861d670e072", + "sha256": "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr", + "fetcher": "gitlab", + "repo": "latex-math-preview/latex-math-preview", + "unstable": { + "version": [ + 20190123, + 802 + ], + "commit": "90fd86da2d9514882146a5db40cb916fc533cf55", + "sha256": "063vnjhnxm2z9shkdv1j8kwyf37syczfkzxzh5z7w7aidvx55jzj" + }, + "stable": { + "version": [ + 0, + 7, + 3 + ], + "commit": "90fd86da2d9514882146a5db40cb916fc533cf55", + "sha256": "063vnjhnxm2z9shkdv1j8kwyf37syczfkzxzh5z7w7aidvx55jzj" + } + }, + { + "ename": "latex-pretty-symbols", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl", + "fetcher": "bitbucket", + "repo": "mortiferus/latex-pretty-symbols.el", + "unstable": { + "version": [ + 20151112, + 1044 + ], + "commit": "ef4ea64c09ea182f38ecb88dfb31d58ed5e6063e", + "sha256": "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b" + } + }, + { + "ename": "latex-preview-pane", + "commit": "bb3227f2e35d701915a8d3479d20581dcbe3a778", + "sha256": "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw", + "fetcher": "github", + "repo": "jsinglet/latex-preview-pane", + "unstable": { + "version": [ + 20181008, + 1822 + ], + "commit": "5297668a89996b50b2b62f99cba01cc544dbed2e", + "sha256": "1m4f5p53275k8i9p0y105kkrp9nx1bwn6726my9s5dwnjhr5dnp2" + } + }, + { + "ename": "latex-unicode-math-mode", + "commit": "9c021dfad8928c1a352e0ef5526eefa6c0a9cb37", + "sha256": "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr", + "fetcher": "github", + "repo": "Christoph-D/latex-unicode-math-mode", + "unstable": { + "version": [ + 20170123, + 1816 + ], + "commit": "eb4a5c9f9b00a58d2ca80f90782a851f4c8497b8", + "sha256": "1bsqaz14mb092cvq8fk4kkcgifhbpmnndlvvz8qhyfh8i5i92i8b" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "3b82347291edcb32e4062b0048c367a3079b3e8c", + "sha256": "1xylfg8xpyb2m0qnysf58cl05ibbg4drhgq7msiiql2qrdzvpx9f" + } + }, + { + "ename": "latexdiff", + "commit": "d164cf118a2c928c04e4d5cbfd47ac732e626fe0", + "sha256": "002frvk31q3plrqa6lldadchck51bch4n126y5l33fyfs0ipspfa", + "fetcher": "github", + "repo": "galaunay/latexdiff.el", + "unstable": { + "version": [ + 20180521, + 2232 + ], + "commit": "024ee7a4fd235695dacd9f53594fef3d79bee88b", + "sha256": "17xpkbrwfck0m6zp5d1b9b4slkgyvm8d92nzilb4s1rf9nqf9mvw" + } + }, + { + "ename": "launch", + "commit": "8e46ed1761fa2e69f0dc2f58e422ea1de8a8cb49", + "sha256": "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6", + "fetcher": "github", + "repo": "sfllaw/emacs-launch", + "unstable": { + "version": [ + 20130619, + 2204 + ], + "commit": "e7c3b573fc05fe4d3d322389079909311542e799", + "sha256": "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1" + } + }, + { + "ename": "launch-mode", + "commit": "876755fff14914b10a26d15f0c7ff32be7c51aa3", + "sha256": "1za0h16z84ls7da17qzqady0simzy5pk1mlw3mb0nhlg2cfmn060", + "fetcher": "github", + "repo": "iory/launch-mode", + "unstable": { + "version": [ + 20170106, + 512 + ], + "commit": "25ebd4ba77afcbe729901eb74923dbe9ae81c313", + "sha256": "1pjb4gwzkk6djzyfqqxf6y5xvrsh4bi5ijg60zrdlnhivggnfbvn" + } + }, + { + "ename": "launchctl", + "commit": "66d0d8c6f7cb66e56328a9cfe9cdef6dffc3c1be", + "sha256": "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9", + "fetcher": "github", + "repo": "pekingduck/launchctl-el", + "unstable": { + "version": [ + 20150518, + 1309 + ], + "commit": "73f8f52a5aa9a0be9bdcf68c29ad0fa2b4a115a4", + "sha256": "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj" + } + }, + { + "ename": "lavender-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1", + "fetcher": "github", + "repo": "emacsfodder/emacs-lavender-theme", + "unstable": { + "version": [ + 20170808, + 1313 + ], + "commit": "ef5e959b95d7fb8152137bc186c4c24e986c1e3c", + "sha256": "0pbpns387fmalkakbdl2q7d2y720m7ai7mnydsinjwlkdrshvj4g" + } + }, + { + "ename": "lcb-mode", + "commit": "fd1380a9ba363f62f297e3ab2995341258b51fd1", + "sha256": "184vd5ll0ms2lspzv8zz2zbairsr8i9p3gs28hrnnwm6mrpx4n18", + "fetcher": "github", + "repo": "peter-b/lcb-mode", + "unstable": { + "version": [ + 20160816, + 540 + ], + "commit": "be0768e9aa6f9b8e76f2230f4f7f4d152a766b9a", + "sha256": "0mgcqqhjadm8ckp6x37f9j4xcs61g73m9v8qr4zbw115yci2d0xk" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "be0768e9aa6f9b8e76f2230f4f7f4d152a766b9a", + "sha256": "0mgcqqhjadm8ckp6x37f9j4xcs61g73m9v8qr4zbw115yci2d0xk" + } + }, + { + "ename": "lcr", + "commit": "29374d3da932675b7b3e28ab8906690dad9c9cbe", + "sha256": "07syirjlrw8g95zk273953mnmg9x4bv8jpyvvzghhin4saiiiw3k", + "fetcher": "github", + "repo": "jyp/lcr", + "unstable": { + "version": [ + 20180902, + 1919 + ], + "deps": [ + "dash" + ], + "commit": "c14f40692292d59156c7632dbdd2867c086aa75f", + "sha256": "0mc55icihxqpf8b05990q1lc2nj2792wcgyr73xsiqx0963sjaj8" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "dash" + ], + "commit": "c14f40692292d59156c7632dbdd2867c086aa75f", + "sha256": "0mc55icihxqpf8b05990q1lc2nj2792wcgyr73xsiqx0963sjaj8" + } + }, + { + "ename": "leaf", + "commit": "24afe5b39979e2f17e104ae97d840645d2a5c2f1", + "sha256": "0h4v3fswbwa40hws8l29mmnka5wl9kyj6f01dnvadc725a34az38", + "fetcher": "github", + "repo": "conao3/leaf.el", + "unstable": { + "version": [ + 20190728, + 1307 + ], + "commit": "7868e13bc2b10259245dd4bfc4b830ddc136b4bd", + "sha256": "15899b2fpck7k7ksm1x2v5gcq6y3rb9l4xi5i8myj356lgk8ycv9" + }, + "stable": { + "version": [ + 3, + 3, + 0 + ], + "commit": "cecaaed04bd0f756b3ac98922768d61229ed2322", + "sha256": "1d70dfqlr5j2d5ns16dbdibhyfm6ss0khcj7hang3rhyiyrhpkra" + } + }, + { + "ename": "leaf-keywords", + "commit": "dfe671ccd5a87ba4157f55e2a16a39dfaa10c027", + "sha256": "0i5hn1051hfbppbsv2m5p7h1rrn9pbvsps6vsk84ssqvhj7ryvyb", + "fetcher": "github", + "repo": "conao3/leaf-keywords.el", + "unstable": { + "version": [ + 20190716, + 2321 + ], + "deps": [ + "leaf" + ], + "commit": "4191bab8346313c17a151bf98007781fb5f894df", + "sha256": "0f09d112fsj2gy5nfwsp39llpwl113y0f2jhfhhs20slxqi3hfcm" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "9352716f153582cdf801a13e17dc04cfcd2bb951", + "sha256": "146h2n71f22gsqgh221ghx56qb9cq9qac3p77gxji535l2s9hbvk" + } + }, + { + "ename": "lean-mode", + "commit": "42f4d6438c8aeb94ebc1782f2f5e2abd17f0ffde", + "sha256": "0rdraxsirkrzbinjwg4qam15iy3qiixqgwsckngzw8d9a4s9l6sj", + "fetcher": "github", + "repo": "leanprover/lean-mode", + "unstable": { + "version": [ + 20180906, + 1645 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "flycheck", + "s" + ], + "commit": "9d6b8471e2044310b4cd7cd3213b1fc8f78ec499", + "sha256": "0r8vfklrdw3f11cpk279jg3mnfbqm60m6klisqndkvir7vsrshni" + } + }, + { + "ename": "leanote", + "commit": "b00b806ae4562ca5a74f41c12ef35bfa597bcfa8", + "sha256": "1xnfv7bpkw3ir402962zbp856d56nas098nkf7bamnsnax6kkqw7", + "fetcher": "github", + "repo": "aborn/leanote-emacs", + "unstable": { + "version": [ + 20161223, + 139 + ], + "deps": [ + "async", + "cl-lib", + "let-alist", + "pcache", + "request", + "s" + ], + "commit": "d499e7b59bb1f1a2fabc0e4c26fb101ed62ebc7b", + "sha256": "1lg4zml26q97bx9jrmjikhnm3d74b12q2li5h8gpxx9m35wc360c" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "async", + "cl-lib", + "let-alist", + "pcache", + "request", + "s" + ], + "commit": "1bd49fdf13ef707bae7edaa724a1592aa7fb002f", + "sha256": "1k58rhk5p819cvfa6zg7j3ysvzhq6dc433fzhh1ff0gwga2vrqbz" + } + }, + { + "ename": "ledger-import", + "commit": "4a1e2a9546b8b40f5f880197cb8166a6a715451f", + "sha256": "1lcibmjk2d49vsa89wri7bbf695mjq2ikddz3nlzb6ljywsnqzm4", + "fetcher": "github", + "repo": "DamienCassou/ledger-import", + "unstable": { + "version": [ + 20190502, + 456 + ], + "deps": [ + "ledger-mode" + ], + "commit": "6911708e373e2cbdb3868df7711ef07925ed36bf", + "sha256": "15vz5fy5yr4m3b77nikqln3y5bihjdmrzgxbp56hz83dqkkcnc4l" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "ledger-mode" + ], + "commit": "2c199fcc8671c2ec82e62cea7716289426b7407c", + "sha256": "0szi5k05qja28nx0rnl3amh3qf2f470sycdjgmpazgqh4zpkngsp" + } + }, + { + "ename": "ledger-mode", + "commit": "1549048b6f57fbe9d1f7fcda74b78a7294327b7b", + "sha256": "10asbcb5syv3b75bngsab3c84dp2xmc0q7s29im6kf4mzv5zcfcf", + "fetcher": "github", + "repo": "ledger/ledger-mode", + "unstable": { + "version": [ + 20190709, + 548 + ], + "commit": "08462cdf1e9c58c45ce3d4909bed7e69a25ed52c", + "sha256": "04g305qnhj14vi54iq0w4mkw1gjbnbzvinw94kyss9w75rwm213g" + }, + "stable": { + "version": [ + 3, + 1, + 1 + ], + "commit": "96c4e81eed52e0ef514dc15a6ea6d877b3409a2a", + "sha256": "12q6wblwnb6y5c1882jz14742fqbm6p5jpzlvz7p90ylqfl7h989" + } + }, + { + "ename": "leerzeichen", + "commit": "5de7033e75bc28de6e50b2146511cdaac4542ad6", + "sha256": "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp", + "fetcher": "github", + "repo": "fgeller/leerzeichen.el", + "unstable": { + "version": [ + 20170422, + 1313 + ], + "commit": "5acf9855ecb2b2cd5da4402bb48df149e7525cc5", + "sha256": "1bx4pv51a9x8f51pjrms8jkfrpa3glwkh308svz05gnyi2g0r8hw" + } + }, + { + "ename": "leetcode", + "commit": "f1f35b9b63f3f04dfca7c5fe62d3530b47006d8f", + "sha256": "094klmrh2adj9fcpykswdbbxm714cfws1lqgz64b7gdf82m5nm8x", + "fetcher": "github", + "repo": "kaiwk/leetcode.el", + "unstable": { + "version": [ + 20190706, + 1622 + ], + "deps": [ + "graphql", + "request-deferred", + "spinner" + ], + "commit": "90324e6b57660c55f5c9fbf7bbb19e9855304206", + "sha256": "013bli8q39d280z1kknc29dsacq4g8wzk0119dhsl3acah5a168k" + } + }, + { + "ename": "legalese", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd", + "fetcher": "github", + "repo": "jorgenschaefer/legalese", + "unstable": { + "version": [ + 20150820, + 1724 + ], + "commit": "ec23e69d18329456beed9546a1d6c72f96db91cf", + "sha256": "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f" + } + }, + { + "ename": "lemon-mode", + "commit": "6163d4cf36031349480039b82de8cdc75c2db169", + "sha256": "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5", + "fetcher": "github", + "repo": "mooz/lemon-mode", + "unstable": { + "version": [ + 20130216, + 1304 + ], + "commit": "155bfced6c9afc8072a0133d3d1baa54c6d67430", + "sha256": "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7" + } + }, + { + "ename": "lenlen-theme", + "commit": "47d5b3c931cdbc2351e01d15e2b98c78081c9506", + "sha256": "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9", + "fetcher": "github", + "repo": "zk-phi/lenlen-theme", + "unstable": { + "version": [ + 20170329, + 245 + ], + "deps": [ + "color-theme-solarized" + ], + "commit": "b8a6412c81633b10fb98ba0930f55b25071c084a", + "sha256": "177fqqhd498v2h6wki6pgg982rp4jxhn4wrzajcqppjz4nidb1b7" + } + }, + { + "ename": "lentic", + "commit": "cbb6f9cc3c1040b80fbf3f2df2ac2c3c8d18b6b1", + "sha256": "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m", + "fetcher": "github", + "repo": "phillord/lentic", + "unstable": { + "version": [ + 20190102, + 2124 + ], + "deps": [ + "dash", + "f", + "m-buffer", + "s" + ], + "commit": "e6d013bf570bb235817f6c8f0abdd31d3b456d53", + "sha256": "0ksmb5mvcpa699bw62fkhrx1i8adgrzsbc2fivfsimq54y25rdd7" + }, + "stable": { + "version": [ + 0, + 11 + ], + "deps": [ + "dash", + "f", + "m-buffer", + "s" + ], + "commit": "8655ecd51e189bbdd6a4d8405dc3ea2e689c709a", + "sha256": "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf" + } + }, + { + "ename": "lentic-server", + "commit": "10b8cc0b4612d7d02be3a74c21b762cbf7613bd6", + "sha256": "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56", + "fetcher": "github", + "repo": "phillord/lentic-server", + "unstable": { + "version": [ + 20160717, + 2052 + ], + "deps": [ + "lentic", + "web-server" + ], + "commit": "8e809fafbb27a98f815b544d9d9ee15843eb6a36", + "sha256": "1wc1c6hqhbb5x4fi7lp30bsrfww9g12c41lphswy92qzlij4zbww" + } + }, + { + "ename": "less-css-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8", + "fetcher": "github", + "repo": "purcell/less-css-mode", + "unstable": { + "version": [ + 20161001, + 453 + ], + "commit": "c7fa3d56d83206b28657f2e56439dc62280a2bf2", + "sha256": "0nz2vhkpmishlx4gga6lljyjrz7lmnwj3vmvml9jykhiqgvnaf70" + }, + "stable": { + "version": [ + 0, + 21 + ], + "commit": "59bf174c4e9f053ec2a7ef8c8a8198490390f6fb", + "sha256": "1rkjamdy2a80w439vb2hhr7vqjj47wi2azlr7yq2xdz9851xsx9f" + } + }, + { + "ename": "letcheck", + "commit": "d6a0937f704e33bbb9ea8f101cd87c44e8050afb", + "sha256": "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2", + "fetcher": "github", + "repo": "Fuco1/letcheck", + "unstable": { + "version": [ + 20160202, + 1948 + ], + "commit": "edf188ca2f85349e971b83f164c6484264e79426", + "sha256": "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "e85b185993a2eaeec6490709f4c131fde2edd672", + "sha256": "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn" + } + }, + { + "ename": "letterbox-mode", + "commit": "1512e20962ea354e4311c0a2696a22576a099ba9", + "sha256": "117dj5xzf6givwjyqsciz6axhlcj7xbx0zj91ximm81kb5fswgda", + "fetcher": "github", + "repo": "pacha64/letterbox-mode", + "unstable": { + "version": [ + 20170702, + 125 + ], + "commit": "88c67a51d67216d569a28e8423200883fde096dd", + "sha256": "1xzzfr525pn2mj7x6xnvccxhls79bfpi5mqhl9ivisnlgj1bvdjw" + } + }, + { + "ename": "leuven-theme", + "commit": "b09451f4eb2be820e94d3fecbf4ec7cecd2cabdc", + "sha256": "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a", + "fetcher": "github", + "repo": "fniessen/emacs-leuven-theme", + "unstable": { + "version": [ + 20190308, + 1534 + ], + "commit": "916c0f3b562b5b0e4f4294b83decda941fb183b1", + "sha256": "1garn9rkn1jmv1w329qdw0mbn11j467kfp64902ncajl3590x2ly" + } + }, + { + "ename": "levenshtein", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1vdbgzs7gfy89a1dzf6z5l3f5jmly1i8lb2fqi2d08qyl5rhb8bl", + "fetcher": "github", + "repo": "emacsorphanage/levenshtein", + "unstable": { + "version": [ + 20090830, + 1040 + ], + "commit": "070925197ebf6b704e6e00c4f2d2ec783f3df38c", + "sha256": "1w6rhp723kn1ns7r0gcblp5q8bvncicnjjsgdangbib1a4l2xw79" + } + }, + { + "ename": "lexbind-mode", + "commit": "f3a493e642cc90bbe1c70a2d918793f0734464c9", + "sha256": "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl", + "fetcher": "github", + "repo": "spacebat/lexbind-mode", + "unstable": { + "version": [ + 20141027, + 1429 + ], + "commit": "fa0a6848c1cfd3fbf45db43dc2deef16377d887d", + "sha256": "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932" + } + }, + { + "ename": "lfe-mode", + "commit": "c44bdb00707c9ef90160e0a44f7148b480635132", + "sha256": "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs", + "fetcher": "github", + "repo": "rvirding/lfe", + "unstable": { + "version": [ + 20170121, + 1254 + ], + "commit": "0775432025f43cafbb7063b5923286bbd700cdf0", + "sha256": "0q6svybyd73zadr0ymq0a6qydsrg547c5ax4f8kpgla0mc086w9m" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "af14b1439097850ffa39935419ed83f5bcaa6d09", + "sha256": "0pgwi0h0d34353m39jin8dxw4yykgfcg90k6pc4qkjyrg40hh4l6" + } + }, + { + "ename": "libelcouch", + "commit": "209d5c507cfe42b152c21a4534c3ba549186420f", + "sha256": "1zfjyfyjd59z0ns32v2b0r5g9ypjxrlmkx3djmxsmzd4an8ciq3p", + "fetcher": "github", + "repo": "DamienCassou/libelcouch", + "unstable": { + "version": [ + 20180604, + 753 + ], + "deps": [ + "request" + ], + "commit": "1faa877fd83c31f612eacb1d12645b2b4cfb57ed", + "sha256": "01b72d98h00rkkrpdimm1c64f7470z92yjb46y8gv1r76n6zcfy8" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "request" + ], + "commit": "1396144ebbb9790d4c744db0d4aacc0211b8e8e6", + "sha256": "1r0wrqiqar3jw5xbp1qv7kj7m1fdzciyy9690hwiq99dcm8nlri3" + } + }, + { + "ename": "libgit", + "commit": "993a5abe3a9e8b160f0d68283eeca6af033abc79", + "sha256": "05yys8cjli2zhmhdh9w5qz287ibzplqabx5vyyjv9rpk6wgzkzik", + "fetcher": "github", + "repo": "magit/libegit2", + "unstable": { + "version": [ + 20190728, + 701 + ], + "commit": "72d6b273159dd034fa2fb7bffb1ebff5e7ccba11", + "sha256": "15vs68x7lcav5ihl27y3wwxv05whabahx6l7w3jbr9g5c8w38f8g" + } + }, + { + "ename": "libmpdee", + "commit": "fc91db6f80463a1baea9759f9863b551ae21e180", + "sha256": "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0", + "fetcher": "github", + "repo": "andyetitmoves/libmpdee", + "unstable": { + "version": [ + 20160117, + 2301 + ], + "commit": "a6ca3b7d6687f3ba60996b9b5044ad1d3b228290", + "sha256": "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr" + } + }, + { + "ename": "libmpdel", + "commit": "bb25443752e18e47afc63d5497cc5052c388a607", + "sha256": "0qi9g3czwzi9hhp7gjczpzjx9vgzz52xi91332l0sxcxmwbawjp1", + "fetcher": "github", + "repo": "mpdel/libmpdel", + "unstable": { + "version": [ + 20190427, + 528 + ], + "commit": "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe", + "sha256": "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "38633ef7a1a40740d1a9528c4f0f0d40d489d9fe", + "sha256": "1fk4irsx916q81qpy6d6iarg8q30r1xm9syz63i8pfdf08l6wphj" + } + }, + { + "ename": "lice", + "commit": "2508699ebfc846742940c5e4356b095b540e2405", + "sha256": "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x", + "fetcher": "github", + "repo": "buzztaiki/lice-el", + "unstable": { + "version": [ + 20170220, + 943 + ], + "commit": "4339929927c62bd636f89bb39ea999d18d269250", + "sha256": "0879z761b7gajkhq176ps745xpdrivch349crransv8fnsc759yb" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "69f2d87984f3f3d469db35e241fbbe979384cd03", + "sha256": "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl" + } + }, + { + "ename": "light-soap-theme", + "commit": "053be1123bb934d80b4d6db0e7e39b59771be035", + "sha256": "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk", + "fetcher": "github", + "repo": "mswift42/light-soap-theme", + "unstable": { + "version": [ + 20150607, + 1445 + ], + "commit": "76a787bd40c6b567ae68ced7f5d9f9f10725e00d", + "sha256": "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8" + } + }, + { + "ename": "line-reminder", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "0cm9cv7ak1ibm68d2xrz26smh80g79dxjlwxj5qd9zc3yjyksdvi", + "fetcher": "github", + "repo": "elpa-host/line-reminder", + "unstable": { + "version": [ + 20190716, + 715 + ], + "deps": [ + "cl-lib" + ], + "commit": "24b3916f7714039a704f11b450479f4e843bafe6", + "sha256": "04krsprkgl4k9cn0iywf21qphd7k8x6bg331mh4749mcbmmw8k9g" + } + }, + { + "ename": "line-up-words", + "commit": "28ac7764a19fee2e1e2a89d95569815f1940c5e4", + "sha256": "0agsrrkwwfmbiy4z3g4hkrpfr3nqgd5lwfn18qrdxynijd5rqs79", + "fetcher": "github", + "repo": "janestreet/line-up-words", + "unstable": { + "version": [ + 20180219, + 1024 + ], + "commit": "4abfd658dd0985b960da08a3ec426cd860d57d2a", + "sha256": "1fqgwydk5cw98nb7m9rq7cmmmmh3qfhwvq2b4lvv47ahk9113402" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "54d2c51c1c3da7e06be47b829bf465bf467ab53f", + "sha256": "0qda9i5yjjf2x5cpg6nxkzqwa8fzzjxk0yyc4295kbawwd83vglr" + } + }, + { + "ename": "lines-at-once", + "commit": "513d0f0c6976f685fc0df6b6bb0da3162f58f537", + "sha256": "1hiij6i47i9px82ll87dvx5pgp5jzz8qis7hdm8n6hd3c9rnabma", + "fetcher": "github", + "repo": "jiahaowork/lines-at-once.el", + "unstable": { + "version": [ + 20180422, + 247 + ], + "commit": "a018ba90549384d52ec58c2685fd14a0f65252be", + "sha256": "0bwc4d2gnfhaqzn455nzrvd9lys7z7ay2v1hxgwp99ndqq93ws6i" + } + }, + { + "ename": "lingr", + "commit": "bf5d29710ab17b1a98f9b559344e4dd40a2b9c08", + "sha256": "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff", + "fetcher": "github", + "repo": "lugecy/lingr-el", + "unstable": { + "version": [ + 20100807, + 1731 + ], + "commit": "4215a8704492d3c860097cbe2649936c22c196df", + "sha256": "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "c9c20dd9b4967aa2f8873d6890d6797e6a498d23", + "sha256": "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys" + } + }, + { + "ename": "linguistic", + "commit": "aedc03a846b873edf2426c422abb8c75732158f8", + "sha256": "0yhyrr7yknvky6fb6js0lfxbl13i6a218kya7cpj2dpzdckcbhca", + "fetcher": "github", + "repo": "andcarnivorous/linguistic", + "unstable": { + "version": [ + 20181129, + 2116 + ], + "commit": "23e47e98cdb09ee61883669b6d8a11bf6449862c", + "sha256": "1bz2w43v1w5xlkbmhmb423nisyhja6qkgwhl68r5vjxqj1gxn2xj" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "18e28a7e54efb140c17e16836bc5dac766c9522e", + "sha256": "12b9i3rdh16pq9q88bsg771y11rrbj9w74v2qr2bfymbp358qk17" + } + }, + { + "ename": "link", + "commit": "5b08ed7b90e3283e177eff57cb02b12a093dc258", + "sha256": "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8", + "fetcher": "github", + "repo": "myrkr/dictionary-el", + "unstable": { + "version": [ + 20140718, + 329 + ], + "commit": "6edc1d0a4156d33c3da0c1649c308b809fda46e1", + "sha256": "0g95q3yggzxr8d2gjxamfwx8xbzf182naxpb265r7v9awd35bqk5" + }, + "stable": { + "version": [ + 1, + 10 + ], + "commit": "9ef1672ecd367827381bbbc9af93685980083c5c", + "sha256": "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s" + } + }, + { + "ename": "link-hint", + "commit": "d24b48fe0bc127ae6ac4084be8059aacb8445afd", + "sha256": "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89", + "fetcher": "github", + "repo": "noctuid/link-hint.el", + "unstable": { + "version": [ + 20190721, + 1844 + ], + "deps": [ + "avy", + "cl-lib" + ], + "commit": "4db4e6fb82bfffd00f540e3a489013f6a8173871", + "sha256": "0rphww249vqk7lassihapw836h6f9w7qnz45qhb07j7d82bxy7pr" + } + }, + { + "ename": "linphone", + "commit": "c0ea68b186c813faceb6fc663633cb81df666f0e", + "sha256": "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7", + "fetcher": "github", + "repo": "zabbal/emacs-linphone", + "unstable": { + "version": [ + 20130524, + 1109 + ], + "commit": "99af3db941b7f4e5272bb48bff96c1ce4ceac302", + "sha256": "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n" + } + }, + { + "ename": "linum-off", + "commit": "c3774ed0cf6fb8c6d08553dc709c7e76a745b2e0", + "sha256": "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay", + "fetcher": "github", + "repo": "mattfidler/linum-off", + "unstable": { + "version": [ + 20160217, + 2137 + ], + "commit": "116e66ac259b183e0763b85616888316ab196822", + "sha256": "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0" + } + }, + { + "ename": "linum-relative", + "commit": "97ae01be4892a7c35aa0f82213433a2944041d87", + "sha256": "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj", + "fetcher": "github", + "repo": "coldnew/linum-relative", + "unstable": { + "version": [ + 20180124, + 1047 + ], + "commit": "c74a6981b688a5e1e6b8e0809363963ff558ce4d", + "sha256": "0svxi1l3s4rg1k1apfw25gzi127rsks56b5yfg79a48b5rf1xmkh" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "896df4b40c1e1eb59f55fcee48a1543f0ccd724e", + "sha256": "0b3n1gk2w1p72x0zfdz9l70winq2fnjpjrgq0awxx730xk7ypp5n" + } + }, + { + "ename": "liquid-types", + "commit": "d5921fde4068ff1bb288f6f9e2fe03f4a7fdbbda", + "sha256": "1g7zyak69l4lcsq952j2jy692xxnill9nqb1xfa17yzp547cgvf2", + "fetcher": "github", + "repo": "ucsd-progsys/liquid-types.el", + "unstable": { + "version": [ + 20151202, + 735 + ], + "deps": [ + "button-lock", + "dash", + "flycheck", + "flycheck-liquidhs", + "popup", + "pos-tip" + ], + "commit": "cc4bacbbf204ef9cf0756f78dfebee2c6ae14d7b", + "sha256": "06rnma2xj2vnbvy1bnls59cagk6qsf862bj1zp6xbmpr1a5l9m4z" + } + }, + { + "ename": "liso-theme", + "commit": "27b849f3a41a5ae3d497cef02a95c92fd479b93b", + "sha256": "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy", + "fetcher": "github", + "repo": "caisah/liso-theme", + "unstable": { + "version": [ + 20160410, + 2029 + ], + "commit": "844688245eb860d23043455e165ee24503454c81", + "sha256": "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd" + } + }, + { + "ename": "lisp-extra-font-lock", + "commit": "13e01d4faf9ecb4dde8b6eb4acdb0e48e3e5b6ea", + "sha256": "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk", + "fetcher": "github", + "repo": "Lindydancer/lisp-extra-font-lock", + "unstable": { + "version": [ + 20181008, + 1921 + ], + "commit": "4605eccbe1a7fcbd3cacf5b71249435413b4db4f", + "sha256": "152vcp3mdlv33jf5va4rinl1d0k960gnfhbrqqrafazgx9j3ya8w" + } + }, + { + "ename": "lispxmp", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "1a641v5cx4wy2v8a2swxzn1y9cz4g2bp4mn9q290n3ifpn5356dl", + "fetcher": "github", + "repo": "rubikitch/lispxmp", + "unstable": { + "version": [ + 20170926, + 23 + ], + "commit": "7ad077b4ee91ce8a42f84eeddb9fc7ea4eac7814", + "sha256": "1156jynii783v9sjj3a7s20ysa26mqaq22zk5nbia949hwbibx16" + } + }, + { + "ename": "lispy", + "commit": "e23c062ff32d7aeae486c01e29c56a74727dcf1d", + "sha256": "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g", + "fetcher": "github", + "repo": "abo-abo/lispy", + "unstable": { + "version": [ + 20190730, + 1215 + ], + "deps": [ + "ace-window", + "counsel", + "hydra", + "iedit", + "zoutline" + ], + "commit": "3d1afdd8ecca7c28ddb66268c9121a074a6752ba", + "sha256": "0w8m3x53ipyqny9b4yy34rsf588719p9q5n21dh3q1w4qidl2pjy" + }, + "stable": { + "version": [ + 0, + 27, + 0 + ], + "deps": [ + "ace-window", + "hydra", + "iedit", + "swiper", + "zoutline" + ], + "commit": "9c41bc011ae570283cb286659f75d12d38d437ea", + "sha256": "1cm7f4pyl73f3vhkb7ah6bbbrj2sa7n0p31g09k7dy4zgx04bgw6" + } + }, + { + "ename": "lispyscript-mode", + "commit": "bf912fa20edc9cff12645381b303e37f2de14976", + "sha256": "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr", + "fetcher": "github", + "repo": "krisajenkins/lispyscript-mode", + "unstable": { + "version": [ + 20170720, + 1917 + ], + "commit": "def632e3335b0c481fbcf5a17f18b0a8c58dd12f", + "sha256": "042nndsrv7kyq20v3lahrpr0x89xyayvhx59i0hx6pvkc9wgk5b6" + }, + "stable": { + "version": [ + 0, + 3, + 5 + ], + "commit": "9a4200085e2a15725a58616d131a56f5edce214b", + "sha256": "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk" + } + }, + { + "ename": "lispyville", + "commit": "b5d96d3603dc328467fcce29d3ac1b0a02833d51", + "sha256": "1pj41pd51x399gmy0j3qn9hr3ayw31pcg0h9pzbviqpnwmv2in6b", + "fetcher": "github", + "repo": "noctuid/lispyville", + "unstable": { + "version": [ + 20190719, + 141 + ], + "deps": [ + "cl-lib", + "evil", + "lispy" + ], + "commit": "e5e6cddb2cff93ee19f34d5dde8f46d010a90dad", + "sha256": "1v07s2l3pww30rsmq4dp4nxwmkz7cvdgfbjsyfxkny4i87v5figz" + } + }, + { + "ename": "list-environment", + "commit": "696cd1647731eb1a22afb95f558c96a1b4aa5121", + "sha256": "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h", + "fetcher": "github", + "repo": "dgtized/list-environment.el", + "unstable": { + "version": [ + 20151227, + 256 + ], + "commit": "b7ca30b05905047be2e55199a6475f8d98ce318b", + "sha256": "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4" + } + }, + { + "ename": "list-packages-ext", + "commit": "71c217d98c6967d979f57f89ca26200304b0fc37", + "sha256": "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk", + "fetcher": "github", + "repo": "laynor/list-packages-ext", + "unstable": { + "version": [ + 20151115, + 1716 + ], + "deps": [ + "ht", + "persistent-soft", + "s" + ], + "commit": "b4dd644e4369c9aa66f5bb8895ea49ebbfd0a27a", + "sha256": "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "ht", + "persistent-soft", + "s" + ], + "commit": "344719b313c208c644490f8f1130e21405402f05", + "sha256": "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq" + } + }, + { + "ename": "list-unicode-display", + "commit": "0c8e2a974a56665b97d7622b0428994edadc88a0", + "sha256": "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha", + "fetcher": "github", + "repo": "purcell/list-unicode-display", + "unstable": { + "version": [ + 20181121, + 2316 + ], + "commit": "0ecc2402b258990e7a0cf7e60847712c69444070", + "sha256": "008xa52pibd1z3cqz1sh83wldwwj5f11l5pl4pb5hwj60fh383b8" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "59770cf3572bd36c3e9ba044846dc420c0dca09b", + "sha256": "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww" + } + }, + { + "ename": "list-utils", + "commit": "f9fcd716cbb9f5a4de82a49e57bcb20c483d05f6", + "sha256": "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3", + "fetcher": "github", + "repo": "rolandwalker/list-utils", + "unstable": { + "version": [ + 20160414, + 1402 + ], + "commit": "acf18aca1131a90f8d673974673e3c5d8fdc6a86", + "sha256": "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz" + }, + "stable": { + "version": [ + 0, + 4, + 4 + ], + "commit": "acf18aca1131a90f8d673974673e3c5d8fdc6a86", + "sha256": "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz" + } + }, + { + "ename": "lit-mode", + "commit": "7a6a1c79c9bba7b17c150ea0663bc61936f15d83", + "sha256": "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59", + "fetcher": "github", + "repo": "HectorAE/lit-mode", + "unstable": { + "version": [ + 20141123, + 1736 + ], + "commit": "c61c403afc8333a5649c5421ab1a6341dc1c7d92", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "c61c403afc8333a5649c5421ab1a6341dc1c7d92", + "sha256": "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd" + } + }, + { + "ename": "litable", + "commit": "74f2190b653907985e49a96ded986ab11b4946d7", + "sha256": "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji", + "fetcher": "github", + "repo": "Fuco1/litable", + "unstable": { + "version": [ + 20160922, + 1559 + ], + "deps": [ + "dash" + ], + "commit": "b0278f3f8dcff424bfbdfdefb545b1fbff33206f", + "sha256": "0bny40hv9a024n01clxns351cs4j4ifhgcc7m4743xncqf612p7g" + } + }, + { + "ename": "litecoin-ticker", + "commit": "4976446a8ae40980d502186615902fc05c15ec7c", + "sha256": "14pjizgdckqhm31ihbz35j8g95jdpmf1rd4l5zz38fyx12zbcpx5", + "fetcher": "github", + "repo": "llcc/btcbox-ticker", + "unstable": { + "version": [ + 20160612, + 11 + ], + "deps": [ + "json" + ], + "commit": "3d8047c736e4ee0b8638953f8cc63eaefad34106", + "sha256": "03iggfi3r5xjh9yhhpr1pgyayriycyybf8qnrhqkqcamh77kq21f" + } + }, + { + "ename": "literal-string", + "commit": "6519bb53f409eeb0d557809b338849e473c193c4", + "sha256": "0ylv9dpw17w272f92vn5cldklyz1d8daihi1fsh5ylvxqpinyrkn", + "fetcher": "github", + "repo": "joodie/literal-string-mode", + "unstable": { + "version": [ + 20170301, + 1530 + ], + "deps": [ + "markdown-mode" + ], + "commit": "2ca4fc08b8e19e6183b1f1db747bb0a4aa4f98eb", + "sha256": "0wcz0lid05gnlmxpxm4ckw07cnxwjkyw6960nq7pylbjpg76g5ng" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "markdown-mode" + ], + "commit": "46dd2b620df70d681261616f1a26afa4a032e2d5", + "sha256": "02a1jvxk2m1lb21p3281cr9xyhzix31cn8a9la53w90sz569i66r" + } + }, + { + "ename": "literate-coffee-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "18fdgay7xfgza75z3xma666f414m9dn7d50w94wzzmv7ja74sp64", + "fetcher": "github", + "repo": "syohex/emacs-literate-coffee-mode", + "unstable": { + "version": [ + 20170211, + 1515 + ], + "deps": [ + "coffee-mode" + ], + "commit": "55ce0305495f4a38c8063c4bd63deb1e1252373d", + "sha256": "1gm89azjgsdg0c7z9yprpjbph211c5jnqv11pkf1i1r1wzx0wanj" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "coffee-mode" + ], + "commit": "39fe3bfa1f68a7b8b91160875589219b214a2cd6", + "sha256": "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8" + } + }, + { + "ename": "literate-elisp", + "commit": "fd4c1c4da2a5571babda9a29a56b8972ad0687c0", + "sha256": "10vc3m54jp2wqjrmn9plq6lb5zfiy6jy0acpp09q3z325z0sql9j", + "fetcher": "github", + "repo": "jingtaozf/literate-elisp", + "unstable": { + "version": [ + 20190609, + 840 + ], + "deps": [ + "cl-lib" + ], + "commit": "d00a7fe92c9e74aaa60574e9109fd38c471e606f", + "sha256": "018spl2zkm0nrm0d4f7i10jw72as29c45n61dfsl3966y0qy7kvx" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "d00a7fe92c9e74aaa60574e9109fd38c471e606f", + "sha256": "018spl2zkm0nrm0d4f7i10jw72as29c45n61dfsl3966y0qy7kvx" + } + }, + { + "ename": "literate-starter-kit", + "commit": "812860589cd92759fd2ae02d27f287de88f26863", + "sha256": "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy", + "fetcher": "github", + "repo": "eschulte/emacs24-starter-kit", + "unstable": { + "version": [ + 20150730, + 1854 + ], + "commit": "6dce1d01781966c14558aa553cfc85008c06e115", + "sha256": "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b" + } + }, + { + "ename": "live-code-talks", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ji4lww71dqxnn5c9inix8xqcmgc76wbps0ylxhhgs44ki4hlyrm", + "fetcher": "github", + "repo": "david-christiansen/live-code-talks", + "unstable": { + "version": [ + 20180907, + 1647 + ], + "deps": [ + "cl-lib", + "narrowed-page-navigation" + ], + "commit": "97f16a9ee4e6ff3e0f9291eaead772c66e3e12ae", + "sha256": "1clcm1yps38wdyj415hh7bl20fcpfin92hh5njsldqbvgcpndaqi" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "cl-lib", + "narrowed-page-navigation" + ], + "commit": "3a2ecdb49b2651d87999d4cad56ba8f1004c7a99", + "sha256": "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5" + } + }, + { + "ename": "live-preview", + "commit": "d4f928dd7c043fba36a48f0bb31693f0ec67d3ec", + "sha256": "17sayv5l3ihhs370c1qg6377rkph0ailkh1ara1xpj40ljjf158j", + "fetcher": "github", + "repo": "lassik/emacs-live-preview", + "unstable": { + "version": [ + 20190415, + 2214 + ], + "commit": "bc3f79b58c4e428485b2cf800278004220f7433d", + "sha256": "1xlaq07wsgwzh3c0x50wgpj9i13nyk5ig45w1fx4156kmc69vjk8" + } + }, + { + "ename": "live-py-mode", + "commit": "49697a8cf6258b80490789c277cceae4f57148af", + "sha256": "1abn2r81200nawyjrc8391sh64gf6j083n9p3h0yc7pl5z9w5zbx", + "fetcher": "github", + "repo": "donkirkby/live-py-plugin", + "unstable": { + "version": [ + 20190614, + 433 + ], + "commit": "4c378e4afdffb09ab3ca338d3b37d9a2b69d9584", + "sha256": "1rchbqcpvdlrz3f95l5ldivh1hnf8hk67k8rpdi9zs7zva1hkdzv" + }, + "stable": { + "version": [ + 2, + 25, + 1 + ], + "commit": "b0e4f264c464ece407be9b8ccaf2f82c026f7c47", + "sha256": "1fpkfplpgvacwl7jiziqlh46dasnh8j7d2aihrghac7kkqnrhk2c" + } + }, + { + "ename": "lively", + "commit": "3e4b01286dbc84f01b43955b693ca08e675ffa07", + "sha256": "1q8cbl3sr3dpvzk57985giy4xmz4lvg94jcw7shbhz1v9q05dr5g", + "fetcher": "github", + "repo": "purcell/lively", + "unstable": { + "version": [ + 20171005, + 754 + ], + "commit": "348675828c6a81bfa1ac311ca465aad813542c1b", + "sha256": "1j8w63hhk1wcxcfqz0wimqijp7p1m8a2n947gwqv8nk1wm40aqg3" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "6ec648fcde85e81393db1ed1364860f960179c92", + "sha256": "06sdaj2akwjg1a7yvmm3gsip66iaq9bhm3gr45szwg6z622q4gvf" + } + }, + { + "ename": "livereload", + "commit": "330731804c442226fa2faaa3da408e9253a1c051", + "sha256": "1z0dbg82l6znz1b03v19a8fnq6b1smikpvaplpxlgny82xrs9als", + "fetcher": "github", + "repo": "joaotavora/emacs-livereload", + "unstable": { + "version": [ + 20170629, + 650 + ], + "deps": [ + "websocket" + ], + "commit": "1e501d7e46dbd476c2c7cc9d20b5ac9d41fb1955", + "sha256": "1z1v2panxrqpam5ysnilx83y6b4dwxmxqhmbgjwfyd1bdmr4iya4" + } + }, + { + "ename": "livescript-mode", + "commit": "1727cd154c841219b1dff1c8714cb09692e2730f", + "sha256": "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj", + "fetcher": "github", + "repo": "yhisamatsu/livescript-mode", + "unstable": { + "version": [ + 20140613, + 421 + ], + "commit": "90a918d9686e256e6d4d439cc20f24dad8d3b804", + "sha256": "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg" + } + }, + { + "ename": "livid-mode", + "commit": "b14068485afbd888bf0d124aea089fe5fbd5038c", + "sha256": "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d", + "fetcher": "github", + "repo": "pandeiro/livid-mode", + "unstable": { + "version": [ + 20131116, + 1344 + ], + "deps": [ + "s", + "skewer-mode" + ], + "commit": "dfe5212fa64738bc4138bfebf349fbc8bc237c26", + "sha256": "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p" + } + }, + { + "ename": "lms", + "commit": "b8be8497494b8543a8257c9ea92444baf7674951", + "sha256": "1ckrh6qbh5y2y3yzl2iyq8nqlpy4qp6vzc72ijcgayvcflb01vr1", + "fetcher": "bitbucket", + "repo": "inigoserna/lms.el", + "unstable": { + "version": [ + 20181216, + 2246 + ], + "commit": "38302acf2aa3718ce62cc4c5f1fde96feb25a2ed", + "sha256": "0da14qr7lgkfxksnhf37ss5w6wxkw9qv5hvxk7z76jyzwqdc6w4x" + } + }, + { + "ename": "load-bash-alias", + "commit": "063fa99446bb54fadbbad1af90427462afe8bd8d", + "sha256": "1maq7wykhn3cvxl8fiws3d2d63zlkzgpd3d9jz3rhyi9rcjcjzak", + "fetcher": "github", + "repo": "daviderestivo/load-bash-alias", + "unstable": { + "version": [ + 20181220, + 1755 + ], + "deps": [ + "seq" + ], + "commit": "50df445bace7896318f10c58d26b673635704215", + "sha256": "0m84ylx4j4bp898xc43yrkrk3csr2ppv3c51nirx5gdc5hnhykxj" + } + }, + { + "ename": "load-env-vars", + "commit": "93835267005c49095a02fc1688b2b449f5acfb86", + "sha256": "0yc05qqhbva2zn2rrl4spp38jxblk4gh64q9fd7mgl7i50f2kk00", + "fetcher": "github", + "repo": "diasjorge/emacs-load-env-vars", + "unstable": { + "version": [ + 20180511, + 2210 + ], + "commit": "3808520efaf9492033f6e11a9bffd68eabf02a0f", + "sha256": "0yw1ihns914k8va5mhphch1zix09x22cpgrbw968mh8hviknyvzr" + } + }, + { + "ename": "load-relative", + "commit": "f052f201f7c308325c27cc2423e85cf6b9b67b4e", + "sha256": "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay", + "fetcher": "github", + "repo": "rocky/emacs-load-relative", + "unstable": { + "version": [ + 20190601, + 1221 + ], + "commit": "dbcd7cbcca6503ef93f4b8d19bf7a9efd7f6bf9b", + "sha256": "010f2mhvlzkxarw298850khqc6srzb01l2vay0jsp46dh3jfmdhf" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "5055bfd80644e306aef4e7a7e3e9e5d765b691a4", + "sha256": "1w2xvnihk607vnmlmqz7zsjksd3mscjx2igdadxsfz398bjwl0qd" + } + }, + { + "ename": "load-theme-buffer-local", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4", + "fetcher": "github", + "repo": "vic/color-theme-buffer-local", + "unstable": { + "version": [ + 20120702, + 2036 + ], + "commit": "e606dec66f16a06140b9aad625a4fd52bca4f936", + "sha256": "0c04fy3hc8wc0aabilqx9mcipmd41rmshqjxc3z8m1w0bm4288g1" + } + }, + { + "ename": "loc-changes", + "commit": "a5ce68d573d19f26ecfd190f8e6cd1f384ca3e8a", + "sha256": "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh", + "fetcher": "github", + "repo": "rocky/emacs-loc-changes", + "unstable": { + "version": [ + 20160801, + 1708 + ], + "commit": "4d1dcdf7631c23b1259ad4f72bf9686cf95fb46c", + "sha256": "0a81933l3rrsbi9vkvfb1g94vkhl5n3fkffpy4icis97q7qh08mc" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "8447baff7cb4839ef8d1d747a14e5da85d0cee5b", + "sha256": "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp" + } + }, + { + "ename": "loccur", + "commit": "72550b043794331e85bc4b124f6d8ab70d969eff", + "sha256": "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h", + "fetcher": "github", + "repo": "fourier/loccur", + "unstable": { + "version": [ + 20181203, + 2038 + ], + "commit": "194d70e6be82c4622b7460ca46ced38109ac0507", + "sha256": "136ixa0w94imwacdjispcn81v5i7pb0qqzy6bzgjw2cr9z9539bx" + } + }, + { + "ename": "lockfile-mode", + "commit": "12a383eb6c29acb007dae9dc777ace3ba84edac9", + "sha256": "13nr983xldja8m02a1rdnyqxc8g045hxjh6649wmqmqk4mk0m310", + "fetcher": "github", + "repo": "preetpalS/emacs-lockfile-mode", + "unstable": { + "version": [ + 20170625, + 507 + ], + "commit": "fcfef88460cb3cd67c4d83a1801d0326d282feac", + "sha256": "1dh41a8dj8h3lrhjajaz886vsimflshk6bc08w71rwvjyy2k8xil" + } + }, + { + "ename": "lodgeit", + "commit": "c82e72535aefade20e23e38931ca573e3459401e", + "sha256": "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq", + "fetcher": "github", + "repo": "ionrock/lodgeit-el", + "unstable": { + "version": [ + 20150312, + 1349 + ], + "commit": "ec9b8e5cbb17bcf8ac4bdddd1d361cb60e59384c", + "sha256": "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl" + } + }, + { + "ename": "log4e", + "commit": "90d0e451c5a8eb25db95990b058964a9acea4b89", + "sha256": "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34", + "fetcher": "github", + "repo": "aki2o/log4e", + "unstable": { + "version": [ + 20170401, + 1304 + ], + "commit": "c69424e407be0d9d0e54b427d8b18b1ac5a607e2", + "sha256": "1ng2cgqb83dhxm1hvsfdgzhfl80q9qkf07cr9hp7sxldy36hvxw8" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "6592682ab7de0e3d1915aa4d3c53e083be79fbeb", + "sha256": "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022" + } + }, + { + "ename": "log4j-mode", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "0311jb47fjji8dqy98anr487f7vnvi85p4mn5ymqvxs5c6972gms", + "fetcher": "git", + "url": "https://git.code.sf.net/p/log4j-mode/code", + "unstable": { + "version": [ + 20160108, + 1918 + ], + "commit": "26171b1e723502055e085393b0ecdcb6db406010", + "sha256": "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5" + } + }, + { + "ename": "logalimacs", + "commit": "ef9833a5ca4d455f1d33b9367860e2051d60662f", + "sha256": "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6", + "fetcher": "github", + "repo": "logaling/logalimacs", + "unstable": { + "version": [ + 20131021, + 1829 + ], + "deps": [ + "popup", + "popwin", + "stem" + ], + "commit": "8286e39502250fc6c3c6656a7f46a8eee8e9a713", + "sha256": "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "cfd7aaa925934f876eee6e8c550cf6e7a239a2ac", + "sha256": "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm" + } + }, + { + "ename": "logito", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0xi7zbxpialsn4pknj8aqmkbiwwsbapwynrrjb8avhli2hd4s3fl", + "fetcher": "github", + "repo": "sigma/logito", + "unstable": { + "version": [ + 20120225, + 2055 + ], + "deps": [ + "eieio" + ], + "commit": "824acb89d2cc18cb47281a4fbddd81ad244a2052", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "eieio" + ], + "commit": "824acb89d2cc18cb47281a4fbddd81ad244a2052", + "sha256": "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr" + } + }, + { + "ename": "lognav-mode", + "commit": "ad86b93f4982a0c6291c771e12c8f42ace3b88f9", + "sha256": "1941scifg3nn7gmnki3sa9zvwsbb84w5lw2xjmdx0sh8rbxaw8gb", + "fetcher": "bitbucket", + "repo": "ellisvelo/lognav-mode", + "unstable": { + "version": [ + 20190217, + 1632 + ], + "commit": "bec9f3eba66e1b58153f3d74ea21e6022d735791", + "sha256": "19axhlcny5i4hfrhxivalxrhpghy2czj92cflq0gb5b6ar6zgkyg" + } + }, + { + "ename": "logpad", + "commit": "5148207367bf236223e952a1e4fd600f90571b5e", + "sha256": "1r688z3y98wnr15fg6zzcs4c4yw0l6ygah07gjhblj8b7q7i2qgg", + "fetcher": "bitbucket", + "repo": "tux_/logpad.el", + "unstable": { + "version": [ + 20180607, + 1915 + ], + "commit": "506ace0e996f4d130ba9ccbc323caada7d516ff5", + "sha256": "0z9dq37hsrzjkd3pynqmm8gbiv1sbqnjxlqkyq6lpps5fd9n5vsz" + } + }, + { + "ename": "logstash-conf", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0djf2kl6jypxlfss4x8ij670v733vid1vbyg6yd96pc9781v3zrm", + "fetcher": "github", + "repo": "Wilfred/logstash-conf.el", + "unstable": { + "version": [ + 20170524, + 1929 + ], + "commit": "4e127f9aec190786613445aa88efa307ff7c6748", + "sha256": "119yb1wk1n5ycfzgpffcwy7yx8ar8k1gza0gvbq3r61ha5a9qijs" + } + }, + { + "ename": "logview", + "commit": "1df3c11ed7738f32e6ae457647e62847701c8b19", + "sha256": "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh", + "fetcher": "github", + "repo": "doublep/logview", + "unstable": { + "version": [ + 20181027, + 1757 + ], + "deps": [ + "datetime", + "extmap" + ], + "commit": "bd662d467dbd7c93cfe1e3058e4f11c49314fd6a", + "sha256": "03s4q5xdz84cjn4qkfhsc3l9y3v5avrl2i5dby4bgsg2zj7n7f73" + }, + "stable": { + "version": [ + 0, + 12 + ], + "deps": [ + "datetime", + "extmap" + ], + "commit": "bd662d467dbd7c93cfe1e3058e4f11c49314fd6a", + "sha256": "03s4q5xdz84cjn4qkfhsc3l9y3v5avrl2i5dby4bgsg2zj7n7f73" + } + }, + { + "ename": "lolcat", + "commit": "38e720f524b23b5742764186a695d143f983e179", + "sha256": "044y0s1wiwjwfw58nhx5zvrli527nim3d81dix2h60d8qwx0566a", + "fetcher": "github", + "repo": "xuchunyang/lolcat.el", + "unstable": { + "version": [ + 20190527, + 1145 + ], + "commit": "4855e587a3b9681c077dac4b9f166dd860f439a4", + "sha256": "0nbrc3wjmmy70ggwmzagkh5j1my7x6y67fyqgddkdrbnw543gly0" + } + }, + { + "ename": "lolcode-mode", + "commit": "572d31a0bd8627d8b5f6bab021c953a1fee31d2c", + "sha256": "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw", + "fetcher": "github", + "repo": "bodil/lolcode-mode", + "unstable": { + "version": [ + 20111002, + 847 + ], + "commit": "1914f1ba87587ecf5f175eeb2144c28e9f039317", + "sha256": "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb" + } + }, + { + "ename": "look-dired", + "commit": "ef66b97b2e9034cb0c62dd1e37b2577ffef60834", + "sha256": "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd", + "fetcher": "github", + "repo": "vapniks/look-dired", + "unstable": { + "version": [ + 20160729, + 2323 + ], + "deps": [ + "look-mode" + ], + "commit": "9bfa4e5e6f3810705b6426c88493ea0bf6b15640", + "sha256": "1yagp35ylznrh3a5ahpzrrxi6ma69ppwqsab3cwss54bi4f02ihn" + } + }, + { + "ename": "look-mode", + "commit": "bf3107730d959dc28b22760aca48bf8a7db35a23", + "sha256": "1b3s756k6r60p3bk5ldr0lawaqviwbvjw0db9r20982pcqgda8y9", + "fetcher": "github", + "repo": "petermao/look-mode", + "unstable": { + "version": [ + 20190212, + 2346 + ], + "commit": "d686e4cfafeac24e07e3efdb9763472f78d878f4", + "sha256": "1qh21z83qsvw1s9vhqcmwbvhd0q0lgj8hvpjb2rmn4kqkcvqbn2a" + } + }, + { + "ename": "loop", + "commit": "ba481ca96469b3bd518e4fd8f24947338c8af014", + "sha256": "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar", + "fetcher": "github", + "repo": "Wilfred/loop.el", + "unstable": { + "version": [ + 20160813, + 1407 + ], + "commit": "e22807f83a0890dc8a904c51ee0742c34efccc6c", + "sha256": "1c89hsi0h783s96d322mvqwlf00ndm2qnrc165wpxrdbns38kbbv" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "c3598bd3ad0677f66e061b3ba51a05d05275283e", + "sha256": "1gs95xnmnn8aa4794k7h8mw1sz1nfdh9v0caqj6yvnsdnwy74n5x" + } + }, + { + "ename": "lorem-ipsum", + "commit": "0c09f9b82430992d119d9148314c758f067832cd", + "sha256": "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h", + "fetcher": "github", + "repo": "jschaf/emacs-lorem-ipsum", + "unstable": { + "version": [ + 20140911, + 2108 + ], + "commit": "4b39f6fed455d67f635b3837cf5668bf74d0f6cd", + "sha256": "0a3b18p3vdjci89prsgdzjnfxsl8p67vjhf8ai4qdng7zvh50lir" + } + }, + { + "ename": "love-minor-mode", + "commit": "0f224c4c7519b3668b1270c957227e486896b7b6", + "sha256": "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m", + "fetcher": "github", + "repo": "ejmr/love-minor-mode", + "unstable": { + "version": [ + 20170727, + 536 + ], + "deps": [ + "lua-mode" + ], + "commit": "3ca8f3405338f2d6f4fbcdd5e89342a46378543a", + "sha256": "1hwm7yxbwvb27pa35cgcxyjfjdjhk2a33i417q2akc7vppdbcmzh" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "lua-mode" + ], + "commit": "3ca8f3405338f2d6f4fbcdd5e89342a46378543a", + "sha256": "1hwm7yxbwvb27pa35cgcxyjfjdjhk2a33i417q2akc7vppdbcmzh" + } + }, + { + "ename": "lsp-elixir", + "commit": "c875a05e68d09ecf37f7e13149f2624c70164ea3", + "sha256": "0mimb67swcq2yis0s6w2bkk7sgqv7lyvz1hrh48h2q6qr3ywmq0n", + "fetcher": "github", + "repo": "elixir-lsp/lsp-elixir.el", + "unstable": { + "version": [ + 20190105, + 2059 + ], + "deps": [ + "lsp-mode" + ], + "commit": "9fd091c092144a09c0df2d477257c1f4c37bb985", + "sha256": "0m5hxlx0cnx4rdcz5chxqp074z9h1wj1nvg8dzmilsnmg3kmsshx" + } + }, + { + "ename": "lsp-haskell", + "commit": "1a7b69312e688211089a23b75910c05efb507e35", + "sha256": "0pdcxnfp8ng24bfk695wpx5wcdqnjrjsfpks0xicih3mcdm1x9l8", + "fetcher": "github", + "repo": "emacs-lsp/lsp-haskell", + "unstable": { + "version": [ + 20190602, + 825 + ], + "deps": [ + "haskell-mode", + "lsp-mode" + ], + "commit": "8f2dbb6e827b1adce6360c56f795f29ecff1d7f6", + "sha256": "00j6d5rpsi7h5jz54zpjmbpg38fda4xy67xc4x67r834493ldzlq" + } + }, + { + "ename": "lsp-intellij", + "commit": "9d72cbb85fe4e0c6bea9a704dc1545f88efa56d2", + "sha256": "0l2ffxqsdzvddypdl3w9rd7qxy2kzw2iwfkr2w7czglyfbnyyg2b", + "fetcher": "github", + "repo": "Ruin0x11/lsp-intellij", + "unstable": { + "version": [ + 20180831, + 2051 + ], + "deps": [ + "lsp-mode" + ], + "commit": "cf30f0ac63bd0140e758840b8ab070e8313697b2", + "sha256": "0ghw2as9fbnfhrr1nbqk97jcl7yb451xpmfbksxh7mvjm3lhmyvz" + } + }, + { + "ename": "lsp-java", + "commit": "c03cb07862c5f35487fb4fb3cc44623774724717", + "sha256": "0rrl9mh25w1avvyww840d3yh8nw0shirspxl2nxqwwdaymbkg2wr", + "fetcher": "github", + "repo": "emacs-lsp/lsp-java", + "unstable": { + "version": [ + 20190726, + 817 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "ht", + "lsp-mode", + "markdown-mode", + "request" + ], + "commit": "f407a9a7742fb3890bf9e2d8b8a83a0b9b39ee78", + "sha256": "0yyvbw398fn7dpjq3hj7hpc79fi1xzq9ggwldrfmb3717b4ba680" + }, + "stable": { + "version": [ + 2, + 2 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "ht", + "lsp-mode", + "markdown-mode", + "request" + ], + "commit": "527e7b7abc11b51516b9bb52051201c2cdcd4a39", + "sha256": "0hcnvbyaqyypgby1bfj4zbrbq97amk8hfx0sj4w73rl46yf4jk3j" + } + }, + { + "ename": "lsp-javacomp", + "commit": "6b8a1c034554579a7e271409fa72020cfe441f68", + "sha256": "1gp8dlcpik2lmpicccq2kya498pmw9m8vz9m1fbd725p7wk58fhi", + "fetcher": "github", + "repo": "tigersoldier/lsp-javacomp", + "unstable": { + "version": [ + 20190124, + 1755 + ], + "deps": [ + "lsp-mode", + "s" + ], + "commit": "82aa4ad6ca03a74565c35e855b318b1887bcd89b", + "sha256": "0r0ig73hsa0gyx8s6hr1mbdgf9m1n2zh2v7yhq3405l4if08s5m6" + } + }, + { + "ename": "lsp-mode", + "commit": "1a7b69312e688211089a23b75910c05efb507e35", + "sha256": "0cklwllqxzsvs4wvvvsc1pqpmp9w99m8wimpby6v6wlijfg6y1m9", + "fetcher": "github", + "repo": "emacs-lsp/lsp-mode", + "unstable": { + "version": [ + 20190801, + 732 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "ht", + "markdown-mode", + "spinner" + ], + "commit": "720b8b6f2a11a8d7e783b905bc764573b93f5a87", + "sha256": "0548iqaq8q5jsajj08gxg9nls7iln80nzzm5wl2ff4v0ykf5w4gz" + }, + "stable": { + "version": [ + 6, + 0 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "ht", + "spinner" + ], + "commit": "789b672500dcbb2350bb5b667ffc0fd037a8b2e3", + "sha256": "1v1mq6ixzlgiazj8fmg4xaqhsqn3l89iqy74yndhvzh2rdf0pbkl" + } + }, + { + "ename": "lsp-origami", + "commit": "68b7cf8ce2eb256db9affb2126e895aa5ad1db15", + "sha256": "0pzccbglwwv73x3iyfidiwhwfs1dd9krvyjyqkbl5w734z3aaqqk", + "fetcher": "github", + "repo": "emacs-lsp/lsp-origami", + "unstable": { + "version": [ + 20190331, + 1723 + ], + "deps": [ + "lsp-mode", + "origami" + ], + "commit": "c7653602a2f2396b1a42d6053fd2be55fce8e0a2", + "sha256": "02qxqjiqfi82j0bqfr22a9ynxnbdw470whfky7405x90nis50k7l" + } + }, + { + "ename": "lsp-p4", + "commit": "53f0da8b3d2903adeffdbc3d8df7d630bfd9ff71", + "sha256": "0cd3n17lqwz08zfkm9g5cr1cj2asznlbhxrym2a7b7shdmn3yx5f", + "fetcher": "github", + "repo": "dmakarov/p4ls", + "unstable": { + "version": [ + 20190127, + 1049 + ], + "deps": [ + "lsp-mode" + ], + "commit": "156ba380cd6adc5df663420ae25c45046faeb68e", + "sha256": "0flp7a4lw9bfjw1g57kl6amnf0hzv7arnhjasibm1nq4w0p10pvr" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "lsp-mode" + ], + "commit": "9ebc597ba37e6f8fccbc08327cf57ca8ec793ffe", + "sha256": "0dd4n0c1rbqcy7hl6gb9nqjj7hfv4566d6ipdlnxjma0zjs84sjf" + } + }, + { + "ename": "lsp-pyre", + "commit": "5b243c6ab0a441531e02dc8fdd88c023ba505d25", + "sha256": "1v8yx062cv5wmpg3lalah5cy8hvhslvyrd4f3185gmc0ynz71fpi", + "fetcher": "github", + "repo": "jra3/lsp-pyre", + "unstable": { + "version": [ + 20190406, + 335 + ], + "deps": [ + "lsp-mode" + ], + "commit": "e177b8f5efd1a955b5753aeb5d1894e6d21be35a", + "sha256": "0g9vijpq7n38b7rvgbshh4s46m1387d7k2lcvy4md17sak5ivxrg" + } + }, + { + "ename": "lsp-python-ms", + "commit": "dd67aefa5a6df2d1388a7516e529e388615c8fe0", + "sha256": "1aifydzz7jv3bf9qfxj37isq40wirfgvd9h40cb5c9wq4v44j8ps", + "fetcher": "github", + "repo": "emacs-lsp/lsp-python-ms", + "unstable": { + "version": [ + 20190719, + 659 + ], + "deps": [ + "cl-lib", + "json", + "lsp-mode", + "python" + ], + "commit": "60b663c82a55613009632ee83aad8cdc1c410a84", + "sha256": "1kcdjk9j6qf5smbirc09m31i5fqzdv9d61ww745cc35jff6qygmc" + } + }, + { + "ename": "lsp-scala", + "commit": "fd494da0c0c2e2e58afc26d8e79aeeea41c6ee09", + "sha256": "1r8ha0q9gphcs6ihqswgvbhs9b6v6n1pvlqxwjnjwpdhsr5fsw1p", + "fetcher": "github", + "repo": "rossabaker/lsp-scala", + "unstable": { + "version": [ + 20190604, + 1237 + ], + "deps": [ + "lsp-mode", + "sbt-mode" + ], + "commit": "06f189aa5cafe93cecbdaa234bccd900def7bc68", + "sha256": "05l563j1wz01rqwd4r639i88ln3bkn0m4swvj3hs11d70brlw981" + } + }, + { + "ename": "lsp-sourcekit", + "commit": "a1e15078916dc053ca2413a6afae51df22321e9e", + "sha256": "1n3lkpyk2mb8a5qc2h00d6dgbp4ws8pwzqljplnnm35sqg6an76k", + "fetcher": "github", + "repo": "emacs-lsp/lsp-sourcekit", + "unstable": { + "version": [ + 20181216, + 1450 + ], + "deps": [ + "lsp-mode" + ], + "commit": "04d75b6a0be5894fea4a55fec0b2ccedf5b3be58", + "sha256": "09vvjb215qz4l31bs2pvwdnnahmyhh34zhf1ghymcr2d34zqiqn0" + } + }, + { + "ename": "lsp-treemacs", + "commit": "e1a78ef1dcec4ca9794002e6420108a7621efcfd", + "sha256": "0nq51n1h69mc4bn9pjimx12afba3k89cfsrbkcdmfypi433k1ga5", + "fetcher": "github", + "repo": "emacs-lsp/lsp-treemacs", + "unstable": { + "version": [ + 20190724, + 1649 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "ht", + "lsp-mode", + "treemacs" + ], + "commit": "e3e049cb441ec5a8f43730da93996f73f6a6db95", + "sha256": "14v8lww136np4pmaq1hqlrpqi6kkpi367cjvfy0s92m3dv7yywsf" + } + }, + { + "ename": "lsp-ui", + "commit": "b7c78c9b07ede9949d14df74b188d4c1a3365196", + "sha256": "0fylav8b54g020z039zm1mx26d257715bfn9nnpw9i0b97539lqi", + "fetcher": "github", + "repo": "emacs-lsp/lsp-ui", + "unstable": { + "version": [ + 20190523, + 1521 + ], + "deps": [ + "dash", + "dash-functional", + "lsp-mode", + "markdown-mode" + ], + "commit": "3ccc3e3386732c3ee22c151e6b5215a0e4c99173", + "sha256": "1k51lwrd3qy1d0afszg1i041cm8a3pz4qqdj7561sncy8m0szrwk" + }, + "stable": { + "version": [ + 6, + 0 + ], + "deps": [ + "dash", + "dash-functional", + "lsp-mode", + "markdown-mode" + ], + "commit": "a8c50a93952afae3cd8948fecf4c1a3dc7f3e094", + "sha256": "1r4327fd8cvjxfwkddp5c4bdskyncbs4sx9m3z2w4d773y2jrakc" + } + }, + { + "ename": "lua-mode", + "commit": "5f3938b668cd3f362016dc7ba0acdaf39e96fb64", + "sha256": "12m9s7axj7cp2i1qqv3kqa3banvyxw3yd8y30r8fc2d0jcq75234", + "fetcher": "github", + "repo": "immerrr/lua-mode", + "unstable": { + "version": [ + 20190113, + 1050 + ], + "commit": "95c64bb5634035630e8c59d10d4a1d1003265743", + "sha256": "0cawb544qylifkvqads307n0nfqg7lvyphqbpbzr2xvr5iyi4901" + }, + "stable": { + "version": [ + 20151025 + ], + "commit": "bdf121b2c05bc74d3d7961a91d7afeb6176e0f45", + "sha256": "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99" + } + }, + { + "ename": "luarocks", + "commit": "d5abd2b52a071ab206d40057dc85c891183204ea", + "sha256": "05srrk9gmv1vhq7m5bjhh2hl2siis04j15b31x0sgknxh3ybr33x", + "fetcher": "github", + "repo": "emacs-pe/luarocks.el", + "unstable": { + "version": [ + 20170430, + 2305 + ], + "deps": [ + "cl-lib" + ], + "commit": "cee27ba0716edf338077387969883226dd2b7484", + "sha256": "0rdsjmmi95agb859997qdhbk0dns2jyx2mlg8rync58wna70nmbn" + } + }, + { + "ename": "lush-theme", + "commit": "8b29b2f36852e711ce3520d71e83921a1dcb9ccf", + "sha256": "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p", + "fetcher": "github", + "repo": "andre-richter/emacs-lush-theme", + "unstable": { + "version": [ + 20180816, + 2200 + ], + "commit": "7cfc993709d712f75c51b505078608c9e1c11466", + "sha256": "0v17srm3l8p556d4j5im2bn7brxv7v0g2crlm4gb8x1cwjrbajzf" + } + }, + { + "ename": "lusty-explorer", + "commit": "efedaa3b1de5f6406c7dcd842eee42eefaf8ab50", + "sha256": "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps", + "fetcher": "github", + "repo": "sjbach/lusty-emacs", + "unstable": { + "version": [ + 20180628, + 1346 + ], + "commit": "fc4b2f0f8a07db107234490fdfbf72f8b76a6643", + "sha256": "014fivh9shi7p3x31bl22x48agrgygp0pf2lgzzflrxcynmprbnp" + }, + "stable": { + "version": [ + 3, + 0 + ], + "commit": "fc4b2f0f8a07db107234490fdfbf72f8b76a6643", + "sha256": "014fivh9shi7p3x31bl22x48agrgygp0pf2lgzzflrxcynmprbnp" + } + }, + { + "ename": "lv", + "commit": "5114349617617673d5055fe28cb8f8c86cf41f83", + "sha256": "1lkm40rwpj9hmckng9bz5g4jbx9g9i3wlqgl6rq0m6i14syr69v4", + "fetcher": "github", + "repo": "abo-abo/hydra", + "unstable": { + "version": [ + 20190716, + 1741 + ], + "commit": "a91dd72529aadd2d3cc14e132a3e0545eb2975a6", + "sha256": "1bbyj0l6176277qp20034lgs8ghx01fasnikkc76fndn3v4vsljn" + }, + "stable": { + "version": [ + 0, + 15, + 0 + ], + "commit": "f27fce1b2f0a9162e159557bdeb2c0c94defb4d2", + "sha256": "0fapvhmhgc9kppf3bvkgry0cd7gyilg7sfvlscfrfjxpx4xvwsfy" + } + }, + { + "ename": "lxc", + "commit": "7c16c08c388e3280f617d0768bc1cd75c5897768", + "sha256": "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka", + "fetcher": "github", + "repo": "nicferrier/emacs-lxc", + "unstable": { + "version": [ + 20140410, + 2022 + ], + "commit": "88bed56c954d1edd9ff5ce0ced2c02dcf9f71835", + "sha256": "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q" + } + }, + { + "ename": "lxc-tramp", + "commit": "2464020a5b3d89bddcd122cad81fed84ded9b117", + "sha256": "0rksh7k30kh3i23c98qinffz2zj6h1bshaw994hwy8qwgm38vx61", + "fetcher": "github", + "repo": "montag451/lxc-tramp", + "unstable": { + "version": [ + 20180523, + 2024 + ], + "deps": [ + "cl-lib" + ], + "commit": "1aab85fef50df2067902bff13e1bac5e6366908b", + "sha256": "066qwyk38r42xriifg1ik2f0am0m57wlfrk5278sycr8vbag6fc9" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "17fc5962e7c27ac4f0bcc4ed7312dd5709063341", + "sha256": "03h6aw98mbwwqj08bzpg147hanx97r8fr8jv790zw7iqqjp46hsm" + } + }, + { + "ename": "lxd-tramp", + "commit": "ef7778f5961eaaa356e5e383ef2323c5713e5bf2", + "sha256": "0i611z4pksrf4zf0h8wnradqbcad5f43dq8bg3dsik0jdcjlvg5p", + "fetcher": "github", + "repo": "onixie/lxd-tramp", + "unstable": { + "version": [ + 20181023, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "f335c76245f62b02cf67a9376eca6f3863c8a75a", + "sha256": "0byhafxcc4qw08b16fd00nkyqz1jmq7js0l5q4lda4xdpfgl1a65" + } + }, + { + "ename": "lyrics", + "commit": "b04c8f3dfa9fc07cc0ff3df5c4069f864b6db92e", + "sha256": "0kj8v8cg4yqnz0v1nhq41jxjgd4ivqd6lsr1v5cqhg4m0r7f2nzc", + "fetcher": "github", + "repo": "emacs-pe/lyrics.el", + "unstable": { + "version": [ + 20180812, + 1841 + ], + "deps": [ + "seq" + ], + "commit": "d0b920be634a5be81ad49418cfaada0f0a57d6cd", + "sha256": "0926avnlxi8qkr1faplk1aj4lji0ixa4lv81badi5zsmpyyrwmm7" + } + }, + { + "ename": "m-buffer", + "commit": "c34d02682e87c9978a3583bd903dcac5da5b41d5", + "sha256": "17smq7wlidsls870hla5b94xq2pwk24b88jvrbbcqw6f5z3ypf94", + "fetcher": "github", + "repo": "phillord/m-buffer-el", + "unstable": { + "version": [ + 20170407, + 2141 + ], + "deps": [ + "seq" + ], + "commit": "8681342aaffa187e5c54945ab91b812965a96d19", + "sha256": "040g7l0r4bxz4ynp4zxy80jsa6x2f48z8rylc41fqxiblasmh0af" + }, + "stable": { + "version": [ + 0, + 15 + ], + "deps": [ + "seq" + ], + "commit": "6eb1d2535a82707a83733173bc400a0d8e520c80", + "sha256": "1sx76i59razwccvn6x7rx5a124bfyjw9fcbxf4gj7nsg33qiq809" + } + }, + { + "ename": "mac-pseudo-daemon", + "commit": "6104efc035bcf469d133ab9a2caf42c9d4482334", + "sha256": "12fwrcnwzsfms42rzv4wif5yzx3gnsz8yzdcgkpl37kkx85iy8v0", + "fetcher": "github", + "repo": "DarwinAwardWinner/mac-pseudo-daemon", + "unstable": { + "version": [ + 20170728, + 1940 + ], + "deps": [ + "cl-lib" + ], + "commit": "d235680a72677f11925b912428ad1a57b664e3e8", + "sha256": "0gqknrwhfzr7cf5pgs33a5xh79y0yzxghs6wsvavvqkmf4cvck40" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "4d10e327cd8ee5bb7f006d68744be21c7097c1fc", + "sha256": "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2" + } + }, + { + "ename": "maces-game", + "commit": "2c9f33b926ecec48a43ba4f0484c687a7349ce50", + "sha256": "0wz91dsa0w4xlkl5lbdr8k4pgkgalsqcy27sd0i8xswq3wwiy0ip", + "fetcher": "github", + "repo": "pawelbx/maces-game", + "unstable": { + "version": [ + 20170903, + 1551 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "c0fb795f5642467ea528d2f04d904547e8a77ecd", + "sha256": "1sf1h5660fd3mfcca3h1fqk3xssgigkil26wz1kp1kvxfx9lm31m" + } + }, + { + "ename": "macro-math", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "072ycszl4cjc9nvv4axsgyfzz9djpgh4y1xqfr1nxi41nsdfc9kn", + "fetcher": "github", + "repo": "nschum/macro-math.el", + "unstable": { + "version": [ + 20130328, + 1604 + ], + "commit": "216e59371e9ee39c34117ba79b9acd78bb415750", + "sha256": "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "105e03c80290d1b88984b2d265a149a13d722920", + "sha256": "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj" + } + }, + { + "ename": "macrostep", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1h1gag21x05a14j0wbg0lg502fq2hbqfhjlg05kysw9f870whfq2", + "fetcher": "github", + "repo": "joddie/macrostep", + "unstable": { + "version": [ + 20161120, + 2106 + ], + "deps": [ + "cl-lib" + ], + "commit": "424e3734a1ee526a1bd7b5c3cd1d3ef19d184267", + "sha256": "1fm40mxdn289cyzgw992223dgrjmwxn4q8svyyxfaxjrpb38jhjz" + }, + "stable": { + "version": [ + 0, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "1e2593279f3722e31d8a8f07e297a5c546586cba", + "sha256": "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6" + } + }, + { + "ename": "madhat2r-theme", + "commit": "44a382a388821908306c0b8350fba91218515e1b", + "sha256": "0y588skd6c2ykyp54d38ibwrqglnaanr15d45d51cvcvp9k7x508", + "fetcher": "github", + "repo": "madhat2r/madhat2r-theme", + "unstable": { + "version": [ + 20170203, + 30 + ], + "commit": "6b387f09de055cfcc15d74981cd4f32f8f9a7323", + "sha256": "1nnjdqqbarzv62ic3ddc2z9wmh93zjia4nvfjmji8213dngrrf88" + } + }, + { + "ename": "mag-menu", + "commit": "00043412ffa4e434de9679204b9b3d2602e76ae0", + "sha256": "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2", + "fetcher": "github", + "repo": "chumpage/mag-menu", + "unstable": { + "version": [ + 20150505, + 1850 + ], + "deps": [ + "splitter" + ], + "commit": "9b9277021cd09fb1dba64b1d2a00705d20914bd6", + "sha256": "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g" + } + }, + { + "ename": "magic-filetype", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "0f0j8fgh2gpkarz9308pns0d89wc2dchyim6hbixkdpqzg9gskc3", + "fetcher": "github", + "repo": "emacs-php/magic-filetype.el", + "unstable": { + "version": [ + 20180219, + 1552 + ], + "deps": [ + "s" + ], + "commit": "019494add5ff02dd36cb3f500142fc51125522cc", + "sha256": "1hw77d4wgqrms8rvkv3xd50v4y9qjvm7cpz5rkgmvizs34pjqy22" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "s" + ], + "commit": "019494add5ff02dd36cb3f500142fc51125522cc", + "sha256": "1hw77d4wgqrms8rvkv3xd50v4y9qjvm7cpz5rkgmvizs34pjqy22" + } + }, + { + "ename": "magic-latex-buffer", + "commit": "07e240ebe71d389d314c4a27bbcfe1f88b215c3b", + "sha256": "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8", + "fetcher": "github", + "repo": "zk-phi/magic-latex-buffer", + "unstable": { + "version": [ + 20170531, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "c03277d5619d9adcd871f3e6480a1a27985810cb", + "sha256": "065xfj6asw7px4xmh5isbfs0y6m6818lrds1ca45rhkyfw98d2sb" + } + }, + { + "ename": "magik-mode", + "commit": "291cce8e8e3475348b446ba38833eb1e37d4db65", + "sha256": "1d6n7mpwavrajcgai6j0y5khhgc4jaag1ig1xx8w04mr48xrjxqk", + "fetcher": "github", + "repo": "roadrunner1776/magik", + "unstable": { + "version": [ + 20190730, + 1911 + ], + "commit": "e7e32dc29382e1a59bb8963315d70fcc30473d6e", + "sha256": "1nhmd94x3h047r08wnl7nlrx0g6d17zwnj0km0gxlli9m61qwczs" + } + }, + { + "ename": "magit", + "commit": "9f963950d69a944443d9b6a1658799f7860d0f93", + "sha256": "13fipghvlzbx2d4dwxmm1hhnnd28davdp8rjqhq8g4g0lcn3h8b1", + "fetcher": "github", + "repo": "magit/magit", + "unstable": { + "version": [ + 20190731, + 934 + ], + "deps": [ + "async", + "dash", + "git-commit", + "transient", + "with-editor" + ], + "commit": "9e2df13e5338b7bde31dceca4e64494bc0fd68a8", + "sha256": "0pxqbwd6fwhnr844m3k82yy26f74favmj5jzidypim0f1x2rmr82" + }, + "stable": { + "version": [ + 2, + 90, + 1 + ], + "deps": [ + "async", + "dash", + "ghub", + "git-commit", + "magit-popup", + "with-editor" + ], + "commit": "791901b2f1d26fa0a383147fe77948a9abc753da", + "sha256": "1kw94sdczswsyzn1zlk5s5aplpdv4qd7qcqc5zfxsmsfwm3jacl4" + } + }, + { + "ename": "magit-annex", + "commit": "cec5af50ae7634cc566adfbfdf0f95c3e2951c0c", + "sha256": "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys", + "fetcher": "github", + "repo": "magit/magit-annex", + "unstable": { + "version": [ + 20190421, + 241 + ], + "deps": [ + "cl-lib", + "magit" + ], + "commit": "d5d819c609256a3b7b11ccaf6664be61aa3597b6", + "sha256": "0bwbvwbnyp01vvp76fvn6capk17692c6ippw3z6pknlfiqcz3z0y" + }, + "stable": { + "version": [ + 1, + 7, + 1 + ], + "deps": [ + "cl-lib", + "magit" + ], + "commit": "21cb2927d672cc6bf631d8373a361b1766ccf004", + "sha256": "07r0d2i1hws63wfv1jys63r3lmrl4ywwi76gi7srwhzhqdr1af0n" + } + }, + { + "ename": "magit-circleci", + "commit": "b633d8ce52f85517f87ed00a65398af50058286b", + "sha256": "05aq0bnai8swpwh53p3a8a52n81friksjflssl0k1w7f5ffq84ya", + "fetcher": "github", + "repo": "abrochard/magit-circleci", + "unstable": { + "version": [ + 20190722, + 1533 + ], + "deps": [ + "magit", + "transient" + ], + "commit": "a423b12d3158982cccf39a3d72f6fa00c4c6f387", + "sha256": "00xwfqdnajrykj0l3kzh4y3hp4rrbmyaj8wrwffswyylsacf9kca" + } + }, + { + "ename": "magit-diff-flycheck", + "commit": "a5d28982425519157a6116c077fbc4be7cfa53be", + "sha256": "1gnjvhxy48ah84cglq6653wgb07g0gry0672334ad3cwc5b45kdk", + "fetcher": "github", + "repo": "ragone/magit-diff-flycheck", + "unstable": { + "version": [ + 20190524, + 551 + ], + "deps": [ + "flycheck", + "magit", + "seq" + ], + "commit": "28acf74f59e385865746cccf4b1e4c4025ae9433", + "sha256": "178yby09swm3hlj300vkk3366wjwwf6zijlvphn6drsiw7dmccqm" + } + }, + { + "ename": "magit-filenotify", + "commit": "ca5541d2ce3553e9ade2c1ec1c0d78103dfd0c4d", + "sha256": "1ihk5yi6psqkccpi2bq2h70kn7k874zl7wcinjaq21lirk4z7bvn", + "fetcher": "github", + "repo": "ruediger/magit-filenotify", + "unstable": { + "version": [ + 20151116, + 2340 + ], + "deps": [ + "magit" + ], + "commit": "c0865b3c41af20b6cd89de23d3b0beb54c8401a4", + "sha256": "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "magit" + ], + "commit": "575c4321f61fb8f25e4779f9ffd4514ac086ae96", + "sha256": "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal" + } + }, + { + "ename": "magit-find-file", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik", + "fetcher": "github", + "repo": "bradwright/magit-find-file.el", + "unstable": { + "version": [ + 20150702, + 830 + ], + "deps": [ + "dash", + "magit" + ], + "commit": "c3ea91bab37d10a814a829728ec972811f728d60", + "sha256": "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "dash", + "magit" + ], + "commit": "035da838b1a19e7a5ee135b4ca8475f4e235b61e", + "sha256": "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w" + } + }, + { + "ename": "magit-gerrit", + "commit": "f7cc000debed666ad6800e31c114eedb7384317c", + "sha256": "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4", + "fetcher": "github", + "repo": "terranpro/magit-gerrit", + "unstable": { + "version": [ + 20160226, + 930 + ], + "deps": [ + "magit" + ], + "commit": "ece6f369694aca17f3ac166ed2801b432acfe20d", + "sha256": "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "magit" + ], + "commit": "699c5c39c6dbdc8d730721eaf1491f982dd78142", + "sha256": "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb" + } + }, + { + "ename": "magit-gh-pulls", + "commit": "9b54fe4f51820c2f707e1f5d8a1128fff19a319c", + "sha256": "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d", + "fetcher": "github", + "repo": "sigma/magit-gh-pulls", + "unstable": { + "version": [ + 20180716, + 1636 + ], + "deps": [ + "gh", + "magit", + "pcache", + "s" + ], + "commit": "6949e973f3e951cb0bfe75d889e0fcccc33ba733", + "sha256": "0djr5lkv2wjs2c4dvb41xjkpjk9w6q888r4dlgw9w35z7h30b5vi" + }, + "stable": { + "version": [ + 0, + 5, + 3 + ], + "deps": [ + "gh", + "magit", + "pcache", + "s" + ], + "commit": "d526f4c9ee1709c79f8a4630699ce1f25ae054e7", + "sha256": "11fd3c7wnqy08khj6za8spbsm3k1rqqih21lbax2iwvxl8jv4dv0" + } + }, + { + "ename": "magit-gitflow", + "commit": "dfaeb33dec2c75d21733b6e51d063664c6544e4d", + "sha256": "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf", + "fetcher": "github", + "repo": "jtatarik/magit-gitflow", + "unstable": { + "version": [ + 20170929, + 824 + ], + "deps": [ + "magit", + "magit-popup" + ], + "commit": "cc41b561ec6eea947fe9a176349fb4f771ed865b", + "sha256": "0jz69wrrzvqadaphmjrr146nzvmphsbl7rmc3ccnpw1gw6gnz81f" + }, + "stable": { + "version": [ + 2, + 2, + 3 + ], + "deps": [ + "magit", + "magit-popup" + ], + "commit": "cc41b561ec6eea947fe9a176349fb4f771ed865b", + "sha256": "0jz69wrrzvqadaphmjrr146nzvmphsbl7rmc3ccnpw1gw6gnz81f" + } + }, + { + "ename": "magit-imerge", + "commit": "e78a5c27eedfc9b1d79e37e8d333c5d253f31a3c", + "sha256": "0rycmbsi2s7rjqfpcv794vhkybav7d8ikzdaxai36szxpg9pzhj4", + "fetcher": "github", + "repo": "magit/magit-imerge", + "unstable": { + "version": [ + 20190219, + 553 + ], + "deps": [ + "magit" + ], + "commit": "54f2e25eb5f9e9763a60808ecfc1edef7f276ce0", + "sha256": "0i16s3kc5k1sr2fgq72n0nmrwqphrg5zppmvri653120nga7b5lx" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "magit" + ], + "commit": "5b45efa65317886640c339d1c71d2b9e00e98b77", + "sha256": "02597aq00fq7b9284kq7s55ddrjb6xhh1l280gq3czi75658d3db" + } + }, + { + "ename": "magit-lfs", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1xc32f2k3dwpqncnrr3xyr2963ywa0006z3c01nypxgs1xkfsbdx", + "fetcher": "github", + "repo": "Ailrun/magit-lfs", + "unstable": { + "version": [ + 20190504, + 1909 + ], + "deps": [ + "dash", + "magit" + ], + "commit": "5ff5648158413aec01ba178f349c33862e6e140a", + "sha256": "1g1hawsmx2j69n25n2ip1lb8x3lshcyrn7f5w83dw56i5ywmyr0v" + } + }, + { + "ename": "magit-libgit", + "commit": "0580362be495894c61b99b7efb4cfa435cc0dd72", + "sha256": "0fi3w2f79qn3hf5rw5jp8128xbk5r0xwwwb56zcjn2na02dynfb1", + "fetcher": "github", + "repo": "magit/magit", + "unstable": { + "version": [ + 20190419, + 1545 + ], + "deps": [ + "libgit", + "magit" + ], + "commit": "9e2df13e5338b7bde31dceca4e64494bc0fd68a8", + "sha256": "0pxqbwd6fwhnr844m3k82yy26f74favmj5jzidypim0f1x2rmr82" + } + }, + { + "ename": "magit-org-todos", + "commit": "84480cad490cab2f087a484ed7b9d3d3064bbd29", + "sha256": "0yywgzm2jzvsccm9h0a0s1q8fag9dfajnznwk6iqz5pywq5mxijr", + "fetcher": "github", + "repo": "danielma/magit-org-todos.el", + "unstable": { + "version": [ + 20180709, + 1950 + ], + "deps": [ + "magit" + ], + "commit": "9ffa3efb098434d837cab4bacd1601fdfc6fe999", + "sha256": "0kxz5q8q5np4zm1ls4hx1h53vlnhj0mnmbq12p5nzk5zcxycbcpz" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "magit" + ], + "commit": "0bfa36bbc50e62de0a3406031cb93e2f57dcdc55", + "sha256": "07r5x256k1fjjxs1yfg41kc94nwvnjlk2vvknkra3j8v9p0j88m7" + } + }, + { + "ename": "magit-p4", + "commit": "440d47ca465845eaa601ca8a6e4b15fc197e522b", + "sha256": "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069", + "fetcher": "github", + "repo": "qoocku/magit-p4", + "unstable": { + "version": [ + 20170414, + 1246 + ], + "deps": [ + "cl-lib", + "magit", + "magit-popup", + "p4" + ], + "commit": "01e8bb24830861c50109878812550b4265cba82b", + "sha256": "169a6aq3m2xq2mvf5v8yix0052j2va78a3c4lirzc2ypbvch3fys" + } + }, + { + "ename": "magit-popup", + "commit": "0263ca6aea7bf6eae26a637454affbda6bd106df", + "sha256": "1pv5slspcfmi10bnnw6acpijn7vkn2h9iqww3w641v41d3p37jmv", + "fetcher": "github", + "repo": "magit/magit-popup", + "unstable": { + "version": [ + 20190223, + 2234 + ], + "deps": [ + "async", + "dash" + ], + "commit": "4250c3a606011e3ff2477e3b5bbde2b493f3c85c", + "sha256": "073x1yf96b623yphylnf0ysannr91vawzgjdv1smkcrgd4451hr3" + }, + "stable": { + "version": [ + 2, + 13, + 0 + ], + "deps": [ + "async", + "dash" + ], + "commit": "4250c3a606011e3ff2477e3b5bbde2b493f3c85c", + "sha256": "073x1yf96b623yphylnf0ysannr91vawzgjdv1smkcrgd4451hr3" + } + }, + { + "ename": "magit-rbr", + "commit": "10427817a1fc2fa8aaf11897719cbb851d9e4b15", + "sha256": "086vb7xrgyrazc3a7bpyhy219szvrvl59l8wlqakimx0mav7qipr", + "fetcher": "github", + "repo": "fanatoly/magit-rbr", + "unstable": { + "version": [ + 20181009, + 2016 + ], + "deps": [ + "magit" + ], + "commit": "029203b3e48537205052a058e964f058cd802c3c", + "sha256": "1z48m0al8bb4ppic483jvika9q47c67g7fazk25431sr5rv9h4d2" + } + }, + { + "ename": "magit-reviewboard", + "commit": "f3715fa1df69350205e4269b7090c46b343d8bf0", + "sha256": "1sxqij3370vn6ap52lf4hdlcxfj9mj17sb5r4kk5msjbw3bzdmzr", + "fetcher": "github", + "repo": "jtamagnan/magit-reviewboard", + "unstable": { + "version": [ + 20190211, + 2244 + ], + "deps": [ + "magit", + "request", + "s" + ], + "commit": "f3d5ed914243e3930f9c06f59021305e7e43e67d", + "sha256": "0xlhy328h2wxklpy71dhy1fk7zv6hs2v4jrl1mm9x5mnrbrdfvxx" + } + }, + { + "ename": "magit-stgit", + "commit": "72a38bbc5bba53dfb971f17213287caf0d190db0", + "sha256": "1spli6yq258zwx95y16s27hr7hlc2h0kc9mjnvjjl13y2l6shm0i", + "fetcher": "github", + "repo": "emacsorphanage/magit-stgit", + "unstable": { + "version": [ + 20190313, + 1158 + ], + "commit": "8294f34e4927798d9db883cafe946a9041b7e331", + "sha256": "16i67h0f2w6gaf34w6v50ahmb3358wqhgnijfmzyd6j19zw39d3d" + }, + "stable": { + "version": [ + 2, + 2, + 0 + ], + "commit": "8294f34e4927798d9db883cafe946a9041b7e331", + "sha256": "16i67h0f2w6gaf34w6v50ahmb3358wqhgnijfmzyd6j19zw39d3d" + } + }, + { + "ename": "magit-svn", + "commit": "a1ff188d509aec104e9d21a640cf5bc3addedf00", + "sha256": "1dww5fc5phai3wk9lp85h6y08ai3vxgggsqj78a3mlcn2adwwc01", + "fetcher": "github", + "repo": "emacsorphanage/magit-svn", + "unstable": { + "version": [ + 20190324, + 1459 + ], + "deps": [ + "magit" + ], + "commit": "f7dad9b0f6b81b23550ea5cca0f3219f184b746c", + "sha256": "1dpljj5l0jf28xsynj9wsgbn6wh6llx0wxvigrv37ccvrz4k2fgg" + }, + "stable": { + "version": [ + 2, + 2, + 1 + ], + "deps": [ + "magit" + ], + "commit": "c833903732a14478f5c4cfc561bae7c50671b36c", + "sha256": "01kcsc53q3mbhgjssjpby7ypnhqsr48rkl1xz3ahaypmlp929gl9" + } + }, + { + "ename": "magit-tbdiff", + "commit": "ad97eea866c8732e3adc17551d37a6d1ae511e6c", + "sha256": "1wydmw4f1072k8frk8mi8aaky7dndinq8n7kn10q583bjlxgw80r", + "fetcher": "github", + "repo": "magit/magit-tbdiff", + "unstable": { + "version": [ + 20190507, + 236 + ], + "deps": [ + "magit" + ], + "commit": "fcde2e718974acb2b8905b623e0eca74c58b6b0f", + "sha256": "0ks2fyiwxg4zqhplbysb9wv82nrd72ihqi911hf7m48a72w7assx" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "magit" + ], + "commit": "4273bfab1d2b620d68d890fbaaa78c56cf210059", + "sha256": "0d1cn0nshxnvgjvl9j7wsai75pvsxmrmkdj57xdpyggwxgcpl1m4" + } + }, + { + "ename": "magit-todos", + "commit": "b4544ab55d2c8b8c3b7eb739b9fb90ebb246d68b", + "sha256": "0vqmbw0qj8a5wf4ig9hgc0v3l1agdkvgprzjv178hs00297br2s8", + "fetcher": "github", + "repo": "alphapapa/magit-todos", + "unstable": { + "version": [ + 20190709, + 954 + ], + "deps": [ + "async", + "dash", + "f", + "hl-todo", + "magit", + "pcre2el", + "s" + ], + "commit": "8f634a29cbd1f2b7cd7f3f62c96f14437327f29b", + "sha256": "0jllwfzk895hx9x0mjiwzah701lhprdxl2mvvb4vzdrsycjz255w" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "async", + "dash", + "f", + "hl-todo", + "magit", + "pcre2el", + "s" + ], + "commit": "8faad07c26afead462b94c11873e2b6d2613966b", + "sha256": "0gfm6wn2a4v5i9lfsvvin0kwpr9n96ddm3z4yf50jd3kg2igzry1" + } + }, + { + "ename": "magit-topgit", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1194hdcphir4cmvzg9cxrjiyg70hr9zmml2rljih94vl7zrw7335", + "fetcher": "github", + "repo": "greenrd/magit-topgit", + "unstable": { + "version": [ + 20160313, + 1954 + ], + "deps": [ + "magit" + ], + "commit": "11489ea798bc88d0ea5244bbf725285eedfefbef", + "sha256": "1y7ss475ibjx354m73jn5dxd98g33jcijx48b30p45rbm6ha3i8q" + }, + "stable": { + "version": [ + 2, + 1, + 2 + ], + "deps": [ + "magit" + ], + "commit": "11489ea798bc88d0ea5244bbf725285eedfefbef", + "sha256": "1y7ss475ibjx354m73jn5dxd98g33jcijx48b30p45rbm6ha3i8q" + } + }, + { + "ename": "magithub", + "commit": "e555b46f5de7591aa8e10a7cf67421e26a676db8", + "sha256": "11par5rncsa866gazdw98d4902rvyjnnwbiwpndlyh06ak0lryab", + "fetcher": "github", + "repo": "vermiculus/magithub", + "unstable": { + "version": [ + 20190512, + 2316 + ], + "deps": [ + "ghub+", + "git-commit", + "magit", + "markdown-mode", + "s" + ], + "commit": "9fb9c653d0dad3da7ccff3ae321fa6e54c08f41b", + "sha256": "047dyiysdhf81qfcmmaxzixgxy35fjm9wyhwwv9630s5b83fh094" + }, + "stable": { + "version": [ + 0, + 1, + 7 + ], + "deps": [ + "ghub+", + "git-commit", + "magit", + "markdown-mode", + "s" + ], + "commit": "81e75cbbbac820a3297e6b6a1e5dc6d9cfe091d0", + "sha256": "1iq8c939c0a6v8gq31vcjw6nxwnz4fpavcd6xf4h2rb6rkmxmhvl" + } + }, + { + "ename": "magma-mode", + "commit": "59764a0aab7c3f32b5a872a3d10a7e144f273a7e", + "sha256": "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc", + "fetcher": "github", + "repo": "ThibautVerron/magma-mode", + "unstable": { + "version": [ + 20181205, + 1708 + ], + "deps": [ + "cl-lib", + "dash", + "f" + ], + "commit": "9b734abbdf15fddecb58dc9eed1cbc39b78be2e1", + "sha256": "0nmakba9gszi251z962jlggw9mbsk8jxyynangsd1yj4bdfs6sgg" + } + }, + { + "ename": "magnatune", + "commit": "6dfd5ae62718a32f8c5af4048af06cb53961d7df", + "sha256": "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d", + "fetcher": "github", + "repo": "eikek/magnatune.el", + "unstable": { + "version": [ + 20151030, + 1935 + ], + "deps": [ + "dash", + "s" + ], + "commit": "605b01505ba30589c77ebb4c96834b5072ccbdd4", + "sha256": "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y" + } + }, + { + "ename": "majapahit-theme", + "commit": "c9b793878de4107bb646652d09d8799aef8b97e8", + "sha256": "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s", + "fetcher": "gitlab", + "repo": "franksn/majapahit-theme", + "unstable": { + "version": [ + 20160817, + 1848 + ], + "commit": "77c96df7619666b2102d90d452eeadf04adc89a6", + "sha256": "0wnhfdk2zwxqfh8d74xmszqgibcgxiq825pq8381zg4nkz5cckfb" + } + }, + { + "ename": "major-mode-hydra", + "commit": "865917fcc75c4118afc89b8bcc20ebdb6302f15d", + "sha256": "0654wnsw38sca97kvp8p3k1h6r91iqs873gcjaaxd7a96sisvafd", + "fetcher": "github", + "repo": "jerrypnz/major-mode-hydra.el", + "unstable": { + "version": [ + 20190715, + 937 + ], + "deps": [ + "dash", + "pretty-hydra" + ], + "commit": "854827d0585a4fc9310708bfae2514957f4dc341", + "sha256": "0649wrm5zb68yfqxmim6rcg6ykv2dqxishjpas3hj3x62xn44qrb" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "pretty-hydra" + ], + "commit": "854827d0585a4fc9310708bfae2514957f4dc341", + "sha256": "0649wrm5zb68yfqxmim6rcg6ykv2dqxishjpas3hj3x62xn44qrb" + } + }, + { + "ename": "major-mode-icons", + "commit": "c8f551bec8bdc5dee4b31edea0c2f92b3c77ec56", + "sha256": "02p5h9q2j7z3wcmvkbqbbzzk3lyfdq43psppy9x9ypic9fij8j95", + "fetcher": "github", + "repo": "stardiviner/major-mode-icons", + "unstable": { + "version": [ + 20170301, + 714 + ], + "deps": [ + "all-the-icons", + "powerline" + ], + "commit": "e6117a236b2ad52e948576550b183053321dfc91", + "sha256": "0gpp9x23qz7ll8d7hlbvynv891hw907k38i7v0b08s8zh1ilvnwa" + } + }, + { + "ename": "make-color", + "commit": "bb765469c65589ae9d7dbc420a8edcf44c3be5d1", + "sha256": "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k", + "fetcher": "github", + "repo": "alezost/make-color.el", + "unstable": { + "version": [ + 20140625, + 1150 + ], + "commit": "5ca1383ca9228bca82120b238bdc119f302b75c0", + "sha256": "1wmpy1d966zzxwar2ng825zlch5fwsslsi1706ss9v7zl7i9wggd" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "b19cb40c0619e267f2948ed37aff67b712a6deed", + "sha256": "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx" + } + }, + { + "ename": "make-it-so", + "commit": "aad592089ed2200e2f8c5191e8adeac1db4bce54", + "sha256": "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73", + "fetcher": "github", + "repo": "abo-abo/make-it-so", + "unstable": { + "version": [ + 20190625, + 1036 + ], + "deps": [ + "swiper" + ], + "commit": "b73dfb640588123c9eece230ad72b37604f5c126", + "sha256": "0p6xhyinzzkrwzbpxqfm8hlii0ikvmmylya240bwsa77w0g1k6xq" + } + }, + { + "ename": "makefile-executor", + "commit": "08f8b4d680e4907dbd8ea46a75d98aa0e93c2bb9", + "sha256": "0889rq2a7ks2ynyq91xsa2kpzgd72kzbjxx0b34w8faknpj3b6hi", + "fetcher": "github", + "repo": "thiderman/makefile-executor.el", + "unstable": { + "version": [ + 20180720, + 832 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "9a7d78f814a4b372d8f8179819cb1b37b83b1973", + "sha256": "1sw8zqxzrcxs4v211bmlxz5xfrpckrawnbhf1fiji0971cv3hx0r" + } + }, + { + "ename": "makey", + "commit": "688e32e98758aa6fd31218e98608bd54a76c3e83", + "sha256": "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4", + "fetcher": "github", + "repo": "mickeynp/makey", + "unstable": { + "version": [ + 20131231, + 1430 + ], + "deps": [ + "cl-lib" + ], + "commit": "a61781e69d3b451551e269446e1c5f624ab81137", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "a61781e69d3b451551e269446e1c5f624ab81137", + "sha256": "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy" + } + }, + { + "ename": "malinka", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1zmnlgy9k1s1s2wgkhlwfsnknmhggy0rx3l495a5x1kqsx6i0c9y", + "fetcher": "github", + "repo": "LefterisJP/malinka", + "unstable": { + "version": [ + 20171202, + 1021 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ], + "commit": "d4aa517c7a9022eae16c758c7efdb3a0403542d7", + "sha256": "1rnzvx1nc01sw9fklm36lyllqm6dizj64gnlqbs4nammx7z0spi1" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "projectile", + "rtags", + "s" + ], + "commit": "81cf7dd81fbf124ceda31ee963cce8c3616f28f1", + "sha256": "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97" + } + }, + { + "ename": "mallard-mode", + "commit": "19c5543664ca685a70e53baa1357842e83cbf8f7", + "sha256": "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd", + "fetcher": "github", + "repo": "jhradilek/emacs-mallard-mode", + "unstable": { + "version": [ + 20131204, + 425 + ], + "commit": "c48170c1ace4959abcc5fb1df0d4cb149cff44c1", + "sha256": "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "152cd44d53c881457fe57c1aba77e8e2fca4d1b0", + "sha256": "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj" + } + }, + { + "ename": "mallard-snippets", + "commit": "57a31a6ac93a864cb5212c925fdfb0961d36b24a", + "sha256": "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8", + "fetcher": "github", + "repo": "jhradilek/emacs-mallard-snippets", + "unstable": { + "version": [ + 20131023, + 1851 + ], + "deps": [ + "mallard-mode", + "yasnippet" + ], + "commit": "70c5293f10722f2ace73bdf74d9a18f95b040edc", + "sha256": "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2" + } + }, + { + "ename": "malyon", + "commit": "54b3785cfcdb3b54307f60ee634a101e8bcd9989", + "sha256": "050kj4c1vp9f3fiskf8hld7w46092n4jipdga226x97igx575g3r", + "fetcher": "github", + "repo": "speedenator/malyon", + "unstable": { + "version": [ + 20161208, + 2125 + ], + "deps": [ + "cl-lib" + ], + "commit": "0d9882650720b4a791556f5e2d917388965d6fc0", + "sha256": "0an1yvp0p624rxd8n5phiwvznw35ripqhlwzwyv2bw7lc1rscllr" + } + }, + { + "ename": "man-commands", + "commit": "cefd80c8f65e1577ba36ea665b36c3a3d4032b4b", + "sha256": "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq", + "fetcher": "github", + "repo": "nflath/man-commands", + "unstable": { + "version": [ + 20151221, + 2221 + ], + "deps": [ + "cl-lib" + ], + "commit": "f4ba0c3790855d7544dff92d470d212f24de1d9d", + "sha256": "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk" + } + }, + { + "ename": "manage-minor-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ljdca9b08dw0kx679jmq0wc484xcpbmzwx8zkncw642pnbj9q0j", + "fetcher": "github", + "repo": "ShingoFukuyama/manage-minor-mode", + "unstable": { + "version": [ + 20140310, + 1600 + ], + "commit": "1bed33b0752380b548b822fe72e6858c5fe70c8e", + "sha256": "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07" + } + }, + { + "ename": "mandm-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0mvzn29ljd3az6axyqq88vkkf1vpcvslc1svlnbyrpdfinphd0mx", + "fetcher": "github", + "repo": "choppsv1/emacs-mandm-theme", + "unstable": { + "version": [ + 20180915, + 1940 + ], + "commit": "b560aa0129c55a2f4fcc5e67a7d6c66ee4dc3124", + "sha256": "17af3bs55c6bxf1izvfgg0kag5az64ncbabgbh6ry14nv3r9lwy6" + } + }, + { + "ename": "mandoku", + "commit": "1aac4ae2c908de2c44624fb22a3f5ccf0b7a4912", + "sha256": "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv", + "fetcher": "github", + "repo": "mandoku/mandoku", + "unstable": { + "version": [ + 20180403, + 1106 + ], + "deps": [ + "git", + "github-clone", + "magit", + "org" + ], + "commit": "d65dbaa329ecf931f4142be72862972ea6a24e63", + "sha256": "1iqwgzjy2vlrx0kdkjjfxxm097m17ay9r6966gyi8iiip99hjn50" + } + }, + { + "ename": "mandoku-tls", + "commit": "c97d3f653057eab35c612109792884334be556fe", + "sha256": "0zny1l548rvjsbbzj47wysz6gk1sqxvpj215r3w84vw5dyrn78bz", + "fetcher": "github", + "repo": "mandoku/mandoku-tls", + "unstable": { + "version": [ + 20171118, + 240 + ], + "deps": [ + "github-clone", + "helm", + "helm-charinfo", + "hydra", + "mandoku", + "org" + ], + "commit": "ffeebf5bd451ac1806ddfe1744fbbd036a56f902", + "sha256": "16399qifjj4hnfw4a62jwxfwnc7k8lmiy3bz8iwzlc91jjic7zdc" + } + }, + { + "ename": "map-progress", + "commit": "5ed3335eaf0be7368059bcdb52c46f5e47c0c1a5", + "sha256": "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7", + "fetcher": "github", + "repo": "tarsius/map-progress", + "unstable": { + "version": [ + 20190128, + 16 + ], + "deps": [ + "cl-lib" + ], + "commit": "1fb916159cd054c233ce3c80d9d01adfae640297", + "sha256": "1hbk35l9aljp4jqg8cv67q6b2jbcx0g665j90fygxqibrf6r52a8" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "1fb916159cd054c233ce3c80d9d01adfae640297", + "sha256": "1hbk35l9aljp4jqg8cv67q6b2jbcx0g665j90fygxqibrf6r52a8" + } + }, + { + "ename": "map-regexp", + "commit": "927314443ecc00d94e7125de669e82832c5a125c", + "sha256": "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj", + "fetcher": "github", + "repo": "tarsius/map-regexp", + "unstable": { + "version": [ + 20190128, + 18 + ], + "deps": [ + "cl-lib" + ], + "commit": "ae2d1c22f786ad987aef3e319925e80160a887a0", + "sha256": "1ybhizafdhzm7fg8s6gm13fbrz1vnrc7ifq8gvrrm89wl3qi5z7f" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "ae2d1c22f786ad987aef3e319925e80160a887a0", + "sha256": "1ybhizafdhzm7fg8s6gm13fbrz1vnrc7ifq8gvrrm89wl3qi5z7f" + } + }, + { + "ename": "marcopolo", + "commit": "936a1cff601594575c5b550c5eb16e7dafc8a5ab", + "sha256": "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0", + "fetcher": "github", + "repo": "nlamirault/marcopolo", + "unstable": { + "version": [ + 20160421, + 1004 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "9193aabdf12223087b5ed58f1507d5d8a24a4381", + "sha256": "1yc0sgzh1qprhdrzjqc88d6g4xvw80fblcvjl6yn6kihv1ymz091" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "ce6ad40d7feab0568924e3bd9659b76e3eecd55e", + "sha256": "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh" + } + }, + { + "ename": "mark-multiple", + "commit": "7efe1814aa552d44c3db2cd7304569f2aae66287", + "sha256": "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4", + "fetcher": "github", + "repo": "magnars/mark-multiple.el", + "unstable": { + "version": [ + 20121118, + 1554 + ], + "commit": "f6a53c7c5283d640ae718f4548b0fda78877a375", + "sha256": "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29" + } + }, + { + "ename": "mark-tools", + "commit": "9ca36020392807aca9658d13481868d8b6c23d51", + "sha256": "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq", + "fetcher": "github", + "repo": "stsquad/emacs-mark-tools", + "unstable": { + "version": [ + 20130614, + 1025 + ], + "commit": "a11b61effa90bd0abc876d12573674d36fc17f0c", + "sha256": "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "0e7ac2522ac84155cab341dc49f7f0b81067133c", + "sha256": "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw" + } + }, + { + "ename": "markdown-mode", + "commit": "74610ec93d4478e835f8b3b446279efc0c71d644", + "sha256": "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14", + "fetcher": "github", + "repo": "jrblevin/markdown-mode", + "unstable": { + "version": [ + 20190305, + 319 + ], + "deps": [ + "cl-lib" + ], + "commit": "115f77df9755c6a453f3e5d9623ff885d207ea82", + "sha256": "0a26gz2m5v0jkawlqb723yiqsns4sg7inalr8fk1x08khnckkzyz" + }, + "stable": { + "version": [ + 2, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "cde5c5d2bcce470c494b76e23cfe1364b6291c20", + "sha256": "1zm1j4w0f3h01bmmpsv4j4mh6i13nnl8fcqlj2hsa1ncy1lgi8q7" + } + }, + { + "ename": "markdown-mode+", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00", + "fetcher": "github", + "repo": "milkypostman/markdown-mode-plus", + "unstable": { + "version": [ + 20170320, + 2104 + ], + "deps": [ + "markdown-mode" + ], + "commit": "411d079f4430a33c34ec0bbcb1535fe1145a2509", + "sha256": "0427cxvykmz8kz1gnn27yc9c4z8djyy6m9qz6wbd4np1cgqlmly2" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "markdown-mode" + ], + "commit": "f35e63284c5caed19b29501730e134018a78e441", + "sha256": "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r" + } + }, + { + "ename": "markdown-preview-eww", + "commit": "d9b3ad97a193c41068ca184b4835fa7a7a0ebc9c", + "sha256": "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx", + "fetcher": "github", + "repo": "niku/markdown-preview-eww", + "unstable": { + "version": [ + 20160111, + 1502 + ], + "commit": "5853f836425c877c8a956501f0adda137ef1d3b7", + "sha256": "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4" + } + }, + { + "ename": "markdown-preview-mode", + "commit": "d3c5d222cf0d7eca6a4e3eb914907f8ca58e40f0", + "sha256": "1cam5wfxca91q3i1kl0qbdvnfy62hr5ksargi4430kgaz34bcbyn", + "fetcher": "github", + "repo": "ancane/markdown-preview-mode", + "unstable": { + "version": [ + 20181213, + 1339 + ], + "deps": [ + "cl-lib", + "markdown-mode", + "web-server", + "websocket" + ], + "commit": "f98d9114ca87e3e8e5ce70e601d13061eda15415", + "sha256": "1d1id99gagymvzdfa1mwqh8y3szm8ii47rpijkfi1qnifjg5jaq9" + }, + "stable": { + "version": [ + 0, + 9, + 2 + ], + "deps": [ + "cl-lib", + "markdown-mode", + "web-server", + "websocket" + ], + "commit": "f98d9114ca87e3e8e5ce70e601d13061eda15415", + "sha256": "1d1id99gagymvzdfa1mwqh8y3szm8ii47rpijkfi1qnifjg5jaq9" + } + }, + { + "ename": "markdown-toc", + "commit": "4db1e90be8e34d5ad0c898be10dfa5cd95ccb921", + "sha256": "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv", + "fetcher": "github", + "repo": "ardumont/markdown-toc", + "unstable": { + "version": [ + 20170711, + 1949 + ], + "deps": [ + "dash", + "markdown-mode", + "s" + ], + "commit": "7038f4f6d5c2bc7e4aea89699a607ac2b7dd16a8", + "sha256": "1kvf30ib1kxp29k1xwixkq6l4jjr3q3g1wpvh9yfzk5ld97zmry1" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "dash", + "markdown-mode", + "s" + ], + "commit": "15587c76bec43dd778a2034035f98a79ad29e96a", + "sha256": "00rvpbfcdy1npddxa7yynqpzwrx1h2bm69x9yh42dv6ss3vk1sjs" + } + }, + { + "ename": "markdownfmt", + "commit": "16cee5fe003e3afc7daf6858ed83843b52e44901", + "sha256": "1wzsw90z988bm94cw4jw5gzjcicgiz4qgn1nsdm8nim9rp43bj17", + "fetcher": "github", + "repo": "nlamirault/emacs-markdownfmt", + "unstable": { + "version": [ + 20160609, + 1241 + ], + "commit": "187a74eb4fd9e8520ce08da42d1d292b9af7f2b7", + "sha256": "01rxl997rb7f71mbvygavsxaq2vr17f2nnpbg7i551lg82xrsbb4" + } + }, + { + "ename": "markless", + "commit": "5542e142d47f6f52839a44b8ee16327f88869f50", + "sha256": "1a5kp46xj4b5kgcypacxcwhjjwi4m7f6shdda8l8my3s3x8ji5bj", + "fetcher": "github", + "repo": "shirakumo/markless.el", + "unstable": { + "version": [ + 20190306, + 1002 + ], + "commit": "75fdef45df96978e9326ea4d9bf4e534a250c4c0", + "sha256": "0fxvpd4gij78d53czyzskfly3wljnad84vnjv6lv14pcz2w9z3y0" + } + }, + { + "ename": "markup", + "commit": "a75c955ad6b2f68b8933329e545625d948f6f8f4", + "sha256": "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf", + "fetcher": "github", + "repo": "leoc/markup.el", + "unstable": { + "version": [ + 20170420, + 1129 + ], + "deps": [ + "cl-lib" + ], + "commit": "876da2d3f23473475bb0fd0a1480ae11d2671291", + "sha256": "0rggadka5aqgrik3qky6s75s5yb5bfj6fcpxjz1iyrwi0fka0akd" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "876da2d3f23473475bb0fd0a1480ae11d2671291", + "sha256": "0rggadka5aqgrik3qky6s75s5yb5bfj6fcpxjz1iyrwi0fka0akd" + } + }, + { + "ename": "markup-faces", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "06fawlv4ih2lsmk7x6h9p5rppl8vw2w3nvlss95kb8fj5fwf7mw9", + "fetcher": "github", + "repo": "sensorflo/markup-faces", + "unstable": { + "version": [ + 20141110, + 817 + ], + "commit": "98a807ed82473eb41c6a201ed7ef816d6bcd67b0", + "sha256": "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "c43612633c6c161857a3bab5752ae192bb03f5f3", + "sha256": "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk" + } + }, + { + "ename": "marmalade-client", + "commit": "834d6d8444169e1e9b66c963a4c2e03ff658e154", + "sha256": "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq", + "fetcher": "github", + "repo": "nicferrier/emacs-marmalade-upload", + "unstable": { + "version": [ + 20141231, + 2007 + ], + "deps": [ + "gh", + "kv", + "web" + ], + "commit": "f315dea57e4fbebd9ee0668c0bafd4c45c7b754a", + "sha256": "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr" + } + }, + { + "ename": "marshal", + "commit": "203f2061c5c7d4aefab3175de5e0538f12158ee3", + "sha256": "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl", + "fetcher": "github", + "repo": "sigma/marshal.el", + "unstable": { + "version": [ + 20180124, + 1239 + ], + "deps": [ + "eieio", + "ht", + "json" + ], + "commit": "f038689cbd5b3680b80b44edd0c7a63ca3038e26", + "sha256": "1n79im1r7h1ilvppn9alqwl96zhyxbm5hk7kbmqh022dggw0cx15" + }, + "stable": { + "version": [ + 0, + 8, + 2 + ], + "deps": [ + "eieio", + "ht", + "json" + ], + "commit": "d714219aeb388ded88582c47940f2c6febae333c", + "sha256": "1mr5p2yiad1k15byrlk0a784kj7rvibpn4li5phk4rnm0zg1xy9s" + } + }, + { + "ename": "maruo-macro-mode", + "commit": "d0c17243b6c62e179aefc25d5f2ca43e5f6c66c1", + "sha256": "1h7pclpqkkgi8z9yp5n79ffna809yf336bz6082l541xc06pmvcv", + "fetcher": "github", + "repo": "zonuexe/maruo-macro-mode.el", + "unstable": { + "version": [ + 20160616, + 1349 + ], + "commit": "8fc9a38ad051eafa8eb94038711acc52c5d1d8d5", + "sha256": "0r005yap50jf6b5jc7314ds17g1nn2irn1agidi74fbrwfbndxgm" + } + }, + { + "ename": "mastodon", + "commit": "809d963b69b154325faaf61e54ca87b94c1c9a90", + "sha256": "1bsyf4j6zs9gin0k7p22yv5gaqd6m3vdc2fiagfbs7gxsmhb6p4i", + "fetcher": "github", + "repo": "jdenen/mastodon.el", + "unstable": { + "version": [ + 20190305, + 344 + ], + "commit": "5095797ef32b922d2a624fa6beb970b5e9cf5ca0", + "sha256": "0hwax6y9dghqwsbnb6f1bnc7gh8xsh5cvcnayk2sn49x8b0zi5h1" + }, + "stable": { + "version": [ + 0, + 9, + 0 + ], + "commit": "5095797ef32b922d2a624fa6beb970b5e9cf5ca0", + "sha256": "0hwax6y9dghqwsbnb6f1bnc7gh8xsh5cvcnayk2sn49x8b0zi5h1" + } + }, + { + "ename": "material-theme", + "commit": "d31ababaa50061e767605c979a3f327a654e564b", + "sha256": "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq", + "fetcher": "github", + "repo": "cpaulik/emacs-material-theme", + "unstable": { + "version": [ + 20171123, + 1840 + ], + "commit": "b66838d220ad380a16da1d8878936974b26f815d", + "sha256": "128zn4078b2av3vs8vrqa73fb53vrm64lqg0ks6kymnnmyvcz8v2" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "b66838d220ad380a16da1d8878936974b26f815d", + "sha256": "128zn4078b2av3vs8vrqa73fb53vrm64lqg0ks6kymnnmyvcz8v2" + } + }, + { + "ename": "math-symbol-lists", + "commit": "fadff01600d57f5b9ea9c0c47ed109e058114998", + "sha256": "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27", + "fetcher": "github", + "repo": "vspinu/math-symbol-lists", + "unstable": { + "version": [ + 20190605, + 2058 + ], + "commit": "dc7531cff0c845d5470a50c24d5d7309b2ced7eb", + "sha256": "094m21i9rns6m59cmhxcivxxafbg52w8f8na4y3v47aq67zmhhqm" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "commit": "499986959356f7a905fd4f2a1609c17d7ff067c3", + "sha256": "1h6fwj2w77gm4wafqll5bd6r8xafh6f4a0piqmgjvcwxy2sxrk0q" + } + }, + { + "ename": "math-symbols", + "commit": "d7b0799bddbbbecd12bc1589b56a6250acf76407", + "sha256": "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx", + "fetcher": "github", + "repo": "kawabata/math-symbols", + "unstable": { + "version": [ + 20170818, + 1459 + ], + "deps": [ + "helm" + ], + "commit": "3f8b466f002e1b28ddbe9a6f236c9a1352adb17d", + "sha256": "0r63acgicb43p05gsiz98m7077sj72c1miz18fi8qbzi02p9qjr7" + } + }, + { + "ename": "matlab-mode", + "commit": "6f78cff288077e04f8c9e4c2e5be9f3c33d8ff49", + "sha256": "1q3sdmahf915ix4lrv65cxsfh6hrs91c8pmyixbqmbhifqi33d0q", + "fetcher": "git", + "url": "https://git.code.sf.net/p/matlab-emacs/src", + "unstable": { + "version": [ + 20180928, + 1526 + ], + "commit": "3fbca4259b2584bde08df07ba51944d7e3e2b4f4", + "sha256": "1diqx2k16iyj5a7kcc58kyl6mzw05cyq6ia4z3fciz716gkspgpi" + } + }, + { + "ename": "maude-mode", + "commit": "9c33b8bd62391767a63f57786750e38cbc262bda", + "sha256": "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3", + "fetcher": "github", + "repo": "rudi/maude-mode", + "unstable": { + "version": [ + 20160222, + 1607 + ], + "commit": "c9543bb8a172fa77af592388e7f520a4a6d38987", + "sha256": "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52" + } + }, + { + "ename": "maven-test-mode", + "commit": "bdc7f677c53431542cb8d7c95666d021dead2b98", + "sha256": "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm", + "fetcher": "github", + "repo": "rranelli/maven-test-mode", + "unstable": { + "version": [ + 20141220, + 557 + ], + "deps": [ + "s" + ], + "commit": "a19151861df2ad8ae4880a2e7c86ddf848cb569a", + "sha256": "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "s" + ], + "commit": "f79409907375591283291eb96af4754b1ccc0e6f", + "sha256": "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g" + } + }, + { + "ename": "maxframe", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1lxj60qcvv8vakdq79k1brzv3ki74kajrx8620dzx76bnfkryxk8", + "fetcher": "github", + "repo": "rmm5t/maxframe.el", + "unstable": { + "version": [ + 20170120, + 1705 + ], + "commit": "daeb5c35bb677a23df69336b4843ea59517e57ed", + "sha256": "1qpzha7j7g5fw1lazw5l6mspgrnsnqybqgpq48icbx2vvil9y3q7" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "4f1dbbe68048864037eae277b9280b90fd701ff1", + "sha256": "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y" + } + }, + { + "ename": "mb-url", + "commit": "dd9a8ff6e094b061a7b9d790df1fd4086c5d0a9d", + "sha256": "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h", + "fetcher": "github", + "repo": "dochang/mb-url", + "unstable": { + "version": [ + 20181225, + 1724 + ], + "deps": [ + "cl-lib" + ], + "commit": "23078f2e59808890268401f294d860ba51bc71d9", + "sha256": "07b9w9vd22ma4s3qhplmg84sylihz920byyi9qa7dwj7b59d4avf" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "23078f2e59808890268401f294d860ba51bc71d9", + "sha256": "07b9w9vd22ma4s3qhplmg84sylihz920byyi9qa7dwj7b59d4avf" + } + }, + { + "ename": "mbe", + "commit": "0a8a16e485d608dbd59151d77e252048a49f9d25", + "sha256": "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3", + "fetcher": "github", + "repo": "ijp/mbe.el", + "unstable": { + "version": [ + 20151126, + 1134 + ], + "deps": [ + "cl-lib" + ], + "commit": "bb10aa8f26bb7e9b1d5746934c94edb00402940c", + "sha256": "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "b022030d6e26198bb8a93a5b0bfe7aa891cd59ec", + "sha256": "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i" + } + }, + { + "ename": "mbo70s-theme", + "commit": "b8d0c1050b3319e136fe75903ae3612a52790189", + "sha256": "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb", + "fetcher": "github", + "repo": "emacsfodder/emacs-mbo70s-theme", + "unstable": { + "version": [ + 20170808, + 1315 + ], + "commit": "bed3db8965708ed4e9482b224a9b084765c052f2", + "sha256": "19hha9xwfqvdgsws69x0mcm93yfllp44hdl1xw9zlhj8f4ihizh5" + } + }, + { + "ename": "mbsync", + "commit": "3ef6ffa53bb0ce2ba796555e39f59534fc134aa5", + "sha256": "1q5g76mspi24zwbs7h4m8bmkhab4drskha4d9b516w1f1cyg6hb6", + "fetcher": "github", + "repo": "dimitri/mbsync-el", + "unstable": { + "version": [ + 20181002, + 640 + ], + "commit": "f549eccde6033449d24cd5b6148599484850c403", + "sha256": "1pdj41rq3pq4jdb5pma5j495xj7w7jgn8pnz1z1zwg75pn7ydfp0" + } + }, + { + "ename": "mc-extras", + "commit": "12747bb8603ebc09ce0873f3317a99e34d818313", + "sha256": "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym", + "fetcher": "github", + "repo": "knu/mc-extras.el", + "unstable": { + "version": [ + 20181109, + 1735 + ], + "deps": [ + "multiple-cursors" + ], + "commit": "053abc52181b8718559d7361a587bbb795faf164", + "sha256": "16y48qrd20m20vypvys5jp4v4gc1qrqlkm75s1pk1r68i9zrw481" + }, + "stable": { + "version": [ + 1, + 2, + 4 + ], + "deps": [ + "multiple-cursors" + ], + "commit": "f0ba639e9b18cc56e80ae45bbb2b694dbad9171a", + "sha256": "0d6ncj6zd0lfsdpffbh3l25ycjw5hn0rwi5znp5hpl06b1ycyk4s" + } + }, + { + "ename": "md-readme", + "commit": "5408d7c12c189d2b5ab9fbb02276de334851e3c8", + "sha256": "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3", + "fetcher": "github", + "repo": "thomas11/md-readme", + "unstable": { + "version": [ + 20160811, + 1646 + ], + "commit": "bf818dd847c8b06b3b5100c5d3cf24cf96662528", + "sha256": "0gyjadkv572v3zilxivbiz28pvqh0jmi5bh5la1hyim0qnxymli8" + } + }, + { + "ename": "md4rd", + "commit": "48d4a3b3337e16e68631409d1de0ce67ae22b837", + "sha256": "0ayr5qw0cz7bd46djfhm8slr2kfgssi5bsnzqcasr8n4lyg9jvfc", + "fetcher": "github", + "repo": "ahungry/md4rd", + "unstable": { + "version": [ + 20190313, + 240 + ], + "deps": [ + "cl-lib", + "dash", + "hierarchy", + "request", + "s", + "tree-mode" + ], + "commit": "443c8059af4925d11c93a1293663165c52472f08", + "sha256": "1n6g6k4adzkkn1g7z4j27s35xy12c1fg2r08gv345ddr3wplq4ri" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "hierarchy", + "request", + "s", + "tree-mode" + ], + "commit": "443c8059af4925d11c93a1293663165c52472f08", + "sha256": "1n6g6k4adzkkn1g7z4j27s35xy12c1fg2r08gv345ddr3wplq4ri" + } + }, + { + "ename": "mediawiki", + "commit": "865e0ba1dbace58784181d214000d090478173bd", + "sha256": "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6", + "fetcher": "github", + "repo": "hexmode/mediawiki-el", + "unstable": { + "version": [ + 20170813, + 555 + ], + "commit": "8473e12d1839f5287a4227586bf117dad820f867", + "sha256": "03rpj3yrk3i1l9yjnamnx38idn6y4zi9zg53bc83sx3g2b4m5v04" + }, + "stable": { + "version": [ + 2, + 2, + 9 + ], + "commit": "8473e12d1839f5287a4227586bf117dad820f867", + "sha256": "03rpj3yrk3i1l9yjnamnx38idn6y4zi9zg53bc83sx3g2b4m5v04" + } + }, + { + "ename": "meghanada", + "commit": "4c75c69b2f00be9a93144f632738272c1e375785", + "sha256": "10f1fxma3lqcyv78i0p9mjpi79jfjd5lq5q60ylpxqp18nrql1s4", + "fetcher": "github", + "repo": "mopemope/meghanada-emacs", + "unstable": { + "version": [ + 20190526, + 548 + ], + "deps": [ + "company", + "flycheck", + "yasnippet" + ], + "commit": "24813cf364f1c857c2ee412d0a088f0ceff53842", + "sha256": "1ripap7is2amk3i2mavwiiv5mfsx9k3gxpy9nyaz58pzgvyjqplc" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "deps": [ + "company", + "flycheck", + "yasnippet" + ], + "commit": "64518b54148092ceff58d45f062558a7dbfd3a03", + "sha256": "1ripap7is2amk3i2mavwiiv5mfsx9k3gxpy9nyaz58pzgvyjqplc" + } + }, + { + "ename": "melancholy-theme", + "commit": "8b8f708d1300d401697c099709718fcb70d5db1f", + "sha256": "1wihbv44234lwsgp5w4hmmi3pgxbcfjvs1nclv0yg600z9s8sn8w", + "fetcher": "github", + "repo": "techquila/melancholy-theme", + "unstable": { + "version": [ + 20190620, + 1001 + ], + "commit": "3140860d0b310b6ff51b0df11de992cd65135692", + "sha256": "1hp2ndbiqlb1p86m437r34rvrzsy8ag0bzvkiz4zf5rgvm8y48sk" + } + }, + { + "ename": "mellow-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0", + "fetcher": "github", + "repo": "emacsfodder/emacs-mellow-theme", + "unstable": { + "version": [ + 20170808, + 1317 + ], + "commit": "2bdf18f05f5212b6f269d9a94afe2cf201766891", + "sha256": "0cj9lkqgiaq1s2k9ky93jgv5pfbmjznsd54r3iqkiy1zshpkir68" + } + }, + { + "ename": "melpa-upstream-visit", + "commit": "c110538a1ae2419505ea8f144ef7de2d67cad568", + "sha256": "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf", + "fetcher": "github", + "repo": "laynor/melpa-upstream-visit", + "unstable": { + "version": [ + 20130720, + 1033 + ], + "deps": [ + "s" + ], + "commit": "7310c74fdead3c0f86ad6eff76cf989e63f70f66", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "s" + ], + "commit": "7310c74fdead3c0f86ad6eff76cf989e63f70f66", + "sha256": "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd" + } + }, + { + "ename": "memento-mori", + "commit": "a2561f33ee4f19fe191b9ac2662ac931a5b91395", + "sha256": "0k7gird1v7vgjbbldpjkdvgs55v7kb8bpr2kkvawm3kswh1sw11v", + "fetcher": "github", + "repo": "lassik/emacs-memento-mori", + "unstable": { + "version": [ + 20190628, + 2147 + ], + "deps": [ + "cl-lib" + ], + "commit": "b99c5ff526079fc5a1e1be097534855da176bc2b", + "sha256": "15l993g6ihx3m634y3wdzx0wl4546qdr1xr723qxcvxi0ph16kbx" + } + }, + { + "ename": "memoize", + "commit": "6cc9be5bbcff04de5e6d3bb8c47d202fd350989b", + "sha256": "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6", + "fetcher": "github", + "repo": "skeeto/emacs-memoize", + "unstable": { + "version": [ + 20180614, + 1930 + ], + "commit": "9a561268ffb550b257a08710489a95cd087998b6", + "sha256": "1hsw7pjdy3mksg343v400068b6x7s45gzg0l74h5i4nq8bacv8km" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "636defefa9168f90bce6fc27431352ac7d01a890", + "sha256": "04qgnlg4x6va7x364dhj1wbjmz8p5iq2vk36mn9198k2vxmijwzk" + } + }, + { + "ename": "memolist", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0nvp38qbzcl6dcayjndw32d3r9h8vf2n29i678s1yr280ll8xw6w", + "fetcher": "github", + "repo": "mikanfactory/memolist.el", + "unstable": { + "version": [ + 20150804, + 1721 + ], + "deps": [ + "ag", + "markdown-mode" + ], + "commit": "c437a32d3955f859d9bbcbadf0911bbe27d877ff", + "sha256": "0avpjmymjwqnaim96c637wb6ch3iyanwdvmn6x83iynvkpr2nm9l" + } + }, + { + "ename": "mentor", + "commit": "083de4bd25b6b013a31b9d5ecdffad139a4ba91e", + "sha256": "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s", + "fetcher": "github", + "repo": "skangas/mentor", + "unstable": { + "version": [ + 20190511, + 1638 + ], + "deps": [ + "async", + "cl-lib", + "seq", + "xml-rpc" + ], + "commit": "b5e441b7dc077d5532a3818b5441e52baefad839", + "sha256": "1xrhg1jwmzlcqdk2w92s7ghbma1pfzjc48akl3d2cixxz3ha2ca2" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "deps": [ + "async", + "cl-lib", + "seq", + "xml-rpc" + ], + "commit": "9415472470ff23ee9600d94123c51c455d63018d", + "sha256": "05gfprcrh9p06arsni58nf60inlf1zbd18i678r9xd4q0v35k491" + } + }, + { + "ename": "merlin", + "commit": "9338298a79b7f2d654df90b0f553aeed1428de13", + "sha256": "0r4wc5ann6239bagj364yyzw4y3lcpkl5nnn0vmx4hgkwdg509fn", + "fetcher": "github", + "repo": "ocaml/merlin", + "unstable": { + "version": [ + 20190718, + 1023 + ], + "commit": "bd94d345bf19e612c11737de2d7d401bcc4348a6", + "sha256": "167bh65vjpmqvfn6wvi8dd2c4n3dd1zw3m5y96wcgpiqvwjb01gm" + }, + "stable": { + "version": [ + 3, + 3, + 2 + ], + "commit": "ddf678dd937bc7375f618ad5898caa53a7107319", + "sha256": "1z9mcxflraj15sbz6q7f84n31n9fsialw7z8bi3r1biz68nypva9" + } + }, + { + "ename": "merlin-eldoc", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "0bx383nxd97as0d362n1jn62k2rypxvxhcjasgwf0cr8vxr244fp", + "fetcher": "github", + "repo": "Khady/merlin-eldoc", + "unstable": { + "version": [ + 20190314, + 806 + ], + "deps": [ + "merlin" + ], + "commit": "09760346e34ac22f2b55f43f0e36a2865c3b8026", + "sha256": "12bba6f6qxi6azlafzhymqyaf57qi479n34crixmk8v69ivdch8y" + }, + "stable": { + "version": [ + 1, + 3 + ], + "deps": [ + "merlin" + ], + "commit": "bbb1a10f2131c09a7f7f844d4da98efd77f927ae", + "sha256": "11gggay8srycpckclqvcmad6ym3lx2sxgj670z89br91jdwmkr2f" + } + }, + { + "ename": "mermaid-mode", + "commit": "8729575400003db47638b4c45c425608e15c333d", + "sha256": "1r9dv10p2bahygz1f151bp481289b184d80jbh575pdmlxkqd79f", + "fetcher": "github", + "repo": "abrochard/mermaid-mode", + "unstable": { + "version": [ + 20190503, + 1726 + ], + "deps": [ + "f" + ], + "commit": "6b3cc82cf68528d9056dd3803dc5fab62300a44a", + "sha256": "1zkayx8bafadkwsllbmj5whfy3kvcb39llkhbx821mbwl5cwkijv" + } + }, + { + "ename": "meson-mode", + "commit": "4702a31ffd6b9c34f96d151f2611a1bfb25baa88", + "sha256": "16yg217ghx6pvlxha2swznkg12c2a9hhyi0hnsbqdj2ijcdzca80", + "fetcher": "github", + "repo": "wentasah/meson-mode", + "unstable": { + "version": [ + 20181115, + 2125 + ], + "commit": "b507a87455af906e6c49aa4af70eba5b1d1af9ef", + "sha256": "046kf04vqq1wf9ncxq40fcjcgl18hk4vii5wl3m08rpvdwbnmfwr" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "212d9f38a08074f1cb6e914e12b60bc52dcb8bee", + "sha256": "1kv7413y5530frs1nrp0nl40h9j0idwp7vlg761r260200m8sl3v" + } + }, + { + "ename": "messages-are-flowing", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0v74b7cjj87kncndxfpfs6dcc4jcl18wpbirffl7dw6mac2anw6m", + "fetcher": "github", + "repo": "legoscia/messages-are-flowing", + "unstable": { + "version": [ + 20170219, + 120 + ], + "commit": "ef879726957c850c3a5afd7f1118604991e37e32", + "sha256": "1mryk48z92r4j8f3qg0j0q5iygv7vnk1k0wgza5pq6bhrl5w13hq" + } + }, + { + "ename": "meta-presenter", + "commit": "b73e9424515b3ddea220b786e91c57ee22bed87f", + "sha256": "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d", + "fetcher": "github", + "repo": "myTerminal/meta-presenter", + "unstable": { + "version": [ + 20190414, + 1720 + ], + "commit": "704a2e0f2a3e6bb72578e00eccb772dfcf0670fc", + "sha256": "1hka4c87zdgqjawlmsfd7wi6rbc03qfp996ydrj84kz8saq7gf89" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "3d8c762a7dd7ac39032a3601bd6a717f206e670d", + "sha256": "0r9zzmglmkkmxcqh0pdlg279mpd524k2rwn56kyvj5i3i8zw9rpl" + } + }, + { + "ename": "metalheart-theme", + "commit": "204dd67b24bf4f2305a14efb925c8fe004026694", + "sha256": "1xqql1mcwp52plm1gp6q4m9zij2w360y15lnjsz9xgjqvslr7gy5", + "fetcher": "github", + "repo": "mswift42/MetalHeart-Emacs", + "unstable": { + "version": [ + 20160710, + 641 + ], + "commit": "ec98ea2c11dc1213dae8cbe1fe0cee73ca138bb2", + "sha256": "0pc86qh74i6vr0ap2j2sn4nl2c0vv15m4m1myyjmggfxx2f27nnc" + } + }, + { + "ename": "metamorph", + "commit": "741982c7ce83a77d0b43d196eeac6e949dc5fd81", + "sha256": "0mqzqwwzb4x2j6jh6acx5ni9z5k56586jv4n88d3fi4vry9k4mv3", + "fetcher": "github", + "repo": "AdamNiederer/metamorph", + "unstable": { + "version": [ + 20180930, + 2028 + ], + "commit": "d9dc7037b7eed7b3fe85ea50e91f332e3f831514", + "sha256": "1zprgjh1wyqbpy1qvng57r6jm10k6vffpb6znm47fm8xx1h0s8k4" + } + }, + { + "ename": "metascript-mode", + "commit": "90c03167b5fb4f4edc8a76240b3668203261bc58", + "sha256": "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn", + "fetcher": "github", + "repo": "metascript/metascript-mode", + "unstable": { + "version": [ + 20150709, + 57 + ], + "commit": "edb361c7b0e5de231e5334a17b90652fb1df78f9", + "sha256": "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5" + } + }, + { + "ename": "metaweblog", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0qgmcvq1fhgljia9ncjgvgrv0mzih0l9mglwbwcszn613wmx8bkg", + "fetcher": "github", + "repo": "org2blog/metaweblog", + "unstable": { + "version": [ + 20190212, + 238 + ], + "deps": [ + "xml-rpc" + ], + "commit": "ec85ea7ec97347573613a578d2e91d5f8be74bae", + "sha256": "0qlk90qdjhakxklv4n0m7p6n1ykgp1v4xj453jd15mm7dj8bnc5m" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "xml-rpc" + ], + "commit": "aa14380eb7e7b879a0c16c96866b20a987cd3f2a", + "sha256": "146w9laysdqbikpzr2gc9vnjrdsa87d8i13f2swlh1kvq2dn3rz5" + } + }, + { + "ename": "mew", + "commit": "362dfc4d0fdb3e5cb39564160de62c3440ce182e", + "sha256": "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk", + "fetcher": "github", + "repo": "kazu-yamamoto/Mew", + "unstable": { + "version": [ + 20190415, + 338 + ], + "commit": "70d6da044a4f6ac8e40e489d4963b8a3d530b8a9", + "sha256": "0j569nski5f3z26qa1scpzbsx3xdvmw9sxhm1m9wj3ac5kvgk9hn" + }, + "stable": { + "version": [ + 6, + 8 + ], + "commit": "6a5d6bb11e5e1a239ee7db114a0e76b40e5a247e", + "sha256": "03sin2l8g8npz3j6019xv5r71j9gzmczb16cyvd5304kibwrwa0w" + } + }, + { + "ename": "mexican-holidays", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0an6kkr2vwkqc9219rgn74683h7f4cmd1g74lirn0qhqcfcb5yrc", + "fetcher": "github", + "repo": "sggutier/mexican-holidays", + "unstable": { + "version": [ + 20190506, + 245 + ], + "commit": "663633be1d693f6081d7d000e05d15ddbf71aa10", + "sha256": "09b0292d87xm5mrhfhv7j11ljl4j9hv8h5dibzrrlh1b3vsg2xkj" + } + }, + { + "ename": "mgmtconfig-mode", + "commit": "4cf3dd70ae73c2b049e201a3547bbeb9bb117983", + "sha256": "0bdjaqfk68av4lfc4cpacrl2mxvimplfkbadi9l6wb65vlqz6sil", + "fetcher": "github", + "repo": "purpleidea/mgmt", + "unstable": { + "version": [ + 20190324, + 1908 + ], + "commit": "09ca6d11ad88f5d3ebd6d1dfffc8a6bc5f4261a8", + "sha256": "1wgcky4lq71yxw327y9qzlam9mh8xmqqixzj1gk02pgg109m3kli" + }, + "stable": { + "version": [ + 0, + 0, + 20 + ], + "commit": "da2a5f72bd68daab4bb29bca5b4661535948a105", + "sha256": "0njxgpqmk0rraf1l7i5s6i4lyrrq5fm3h13m9bsdcffz0jnyc9dx" + } + }, + { + "ename": "mhc", + "commit": "d8d3efa0fcd6cd4af94bc99b35614ef6402cbdba", + "sha256": "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql", + "fetcher": "github", + "repo": "yoshinari-nomura/mhc", + "unstable": { + "version": [ + 20190506, + 633 + ], + "deps": [ + "calfw" + ], + "commit": "88b5f938e57c28e9e2db202770f952fc0ecba945", + "sha256": "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3" + }, + "stable": { + "version": [ + 1, + 2, + 2 + ], + "deps": [ + "calfw" + ], + "commit": "88b5f938e57c28e9e2db202770f952fc0ecba945", + "sha256": "13d31wz7wyh777isimxlkdimj3vbl54bh0f00p15a8xlrs2pn7f3" + } + }, + { + "ename": "mic-paren", + "commit": "6f0e54eac31fbbce9a778fb654f07e11aaaa46ca", + "sha256": "17j0b8jyr0zx6zds2dz5fzvarm2wh8l5hxds2s90kh5z0kk23r07", + "fetcher": "github", + "repo": "emacsattic/mic-paren", + "unstable": { + "version": [ + 20170731, + 1907 + ], + "commit": "d0410c7d805c9aaf51a1bcefaaef092bed5824c4", + "sha256": "0f24ibzgra94bwal8b0dpjxa11n42gkmanqswfnjhlvx052v9dxr" + } + }, + { + "ename": "micgoline", + "commit": "2219768cf62b52bcbe73cec291eb74c3fedcc862", + "sha256": "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i", + "fetcher": "github", + "repo": "yzprofile/micgoline", + "unstable": { + "version": [ + 20160415, + 326 + ], + "deps": [ + "powerline" + ], + "commit": "837504263bb1711203b0f7efecd6b7b5f272fae0", + "sha256": "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp" + } + }, + { + "ename": "midje-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16g57mwkm3ypnyqniy1lj9nfn5wj7cyndb5fhl3fym773ywn6hip", + "fetcher": "github", + "repo": "dnaumov/midje-mode", + "unstable": { + "version": [ + 20170809, + 403 + ], + "deps": [ + "cider", + "clojure-mode" + ], + "commit": "10ad5b6084cd03d5cd268b486a7c3c246d85535f", + "sha256": "0nag9ks7qbg40h9z954v42x8zi65wbgfhviwvxvb2bmbzv4m4pbs" + } + }, + { + "ename": "migemo", + "commit": "2424b0328a0198a03359455abdb3024a8067c857", + "sha256": "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr", + "fetcher": "github", + "repo": "emacs-jp/migemo", + "unstable": { + "version": [ + 20190112, + 516 + ], + "deps": [ + "cl-lib" + ], + "commit": "f42832c8ac462ecbec9a16eb781194f876fba64a", + "sha256": "0yasamfvad4azyby8mqyr2laap3ppknwb7i9w84zw14qq7g7pq5w" + }, + "stable": { + "version": [ + 1, + 9, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "f42832c8ac462ecbec9a16eb781194f876fba64a", + "sha256": "0yasamfvad4azyby8mqyr2laap3ppknwb7i9w84zw14qq7g7pq5w" + } + }, + { + "ename": "milkode", + "commit": "29fffbec2d3067c046c456602779af8c04bf898f", + "sha256": "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh", + "fetcher": "github", + "repo": "ongaeshi/emacs-milkode", + "unstable": { + "version": [ + 20140927, + 529 + ], + "commit": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "ba97e2aeefa1d9d0b3835bf08edd0de248b0c513", + "sha256": "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap" + } + }, + { + "ename": "minesweeper", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag", + "fetcher": "bitbucket", + "repo": "zck/minesweeper.el", + "unstable": { + "version": [ + 20150414, + 522 + ], + "commit": "d29af12fc6115399c11bdf7461a74cb810c97336", + "sha256": "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av" + } + }, + { + "ename": "mingus", + "commit": "6699927f1ded5c97f2ce1861f8e54a5453264cca", + "sha256": "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi", + "fetcher": "github", + "repo": "pft/mingus", + "unstable": { + "version": [ + 20190106, + 1443 + ], + "deps": [ + "libmpdee" + ], + "commit": "4223be618f57f10f18114a74393a71955b568884", + "sha256": "14i06i999wfpr0a0lvhnh6g4mm5xmawscjd9d7ibc055h94h3i2a" + } + }, + { + "ename": "mini-header-line", + "commit": "122db5436ff9061713c0d3d8f44c47494067843e", + "sha256": "1yg8i7gsmiv8zwl1wqvgrh2xl2hm5nn3q11rz4hpyxw26355i817", + "fetcher": "github", + "repo": "ksjogo/mini-header-line", + "unstable": { + "version": [ + 20170621, + 1221 + ], + "commit": "73b6724e0a26c4528d93768191c8aa59e6bce2e5", + "sha256": "187xynmpgkx498an246ywrqdhyyp2ag1l7yxnm0x0rbfgw67q5j1" + } + }, + { + "ename": "minibuf-isearch", + "commit": "ebfd2f3f6a2dbd251c321738a4efaacc2200164b", + "sha256": "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh", + "fetcher": "github", + "repo": "knagano/minibuf-isearch", + "unstable": { + "version": [ + 20151226, + 1943 + ], + "commit": "2846c6ac369ee623dad4cd3c8a7a6d9078965516", + "sha256": "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879" + } + }, + { + "ename": "minibuffer-complete-cycle", + "commit": "afac2cf41fe57efa8d313fdbab0b0b795ec144e4", + "sha256": "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2", + "fetcher": "github", + "repo": "knu/minibuffer-complete-cycle", + "unstable": { + "version": [ + 20130813, + 1645 + ], + "commit": "3df80135887d0169e02294a948711f6dfeca4a6f", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk" + }, + "stable": { + "version": [ + 1, + 25, + 20130814 + ], + "commit": "3df80135887d0169e02294a948711f6dfeca4a6f", + "sha256": "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk" + } + }, + { + "ename": "minibuffer-cua", + "commit": "f3b0f1f260b02c14da4d584b6af08b2fa3adf39c", + "sha256": "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw", + "fetcher": "github", + "repo": "knu/minibuffer-cua.el", + "unstable": { + "version": [ + 20130906, + 1134 + ], + "commit": "adc4979a64f8b36e05960e9afa0746dfa9e2e4c7", + "sha256": "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "e8dcddc24d4f2e8d7987336fb58259e3cc78bbcb", + "sha256": "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj" + } + }, + { + "ename": "miniedit", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87", + "fetcher": "github", + "repo": "emacsorphanage/miniedit", + "unstable": { + "version": [ + 20100419, + 1745 + ], + "commit": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "e12bf659c3eb92dd8a4cb77642dc0865c54667a3", + "sha256": "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq" + } + }, + { + "ename": "minimal-session-saver", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i", + "fetcher": "github", + "repo": "rolandwalker/minimal-session-saver", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "cf654ac549850746dc21091746e4bcc1aef7668e", + "sha256": "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm" + }, + "stable": { + "version": [ + 0, + 6, + 2 + ], + "commit": "aaba48a8525e1310b221eeb96763304c22e9a4b4", + "sha256": "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5" + } + }, + { + "ename": "minimal-theme", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "01dar95l7wjjqhbsknvsfbpvv41ka7iqd1fssckz18lgfqpb54bs", + "fetcher": "github", + "repo": "anler/minimal-theme", + "unstable": { + "version": [ + 20190113, + 2132 + ], + "commit": "063b4d8ca33d55d04c341f0b2b777ec241a3e201", + "sha256": "0lvg7iym6sxhgl4ab9a6x8c2mh2d32vkf0033bs3vphx657gra6l" + } + }, + { + "ename": "minions", + "commit": "769a2167d7f6dfdbbfda058ddea036f80b97d230", + "sha256": "0ximlj93yp6646bh99r2vnayk15ky26sibrmrqqysfw1pzs4a940", + "fetcher": "github", + "repo": "tarsius/minions", + "unstable": { + "version": [ + 20181030, + 2101 + ], + "deps": [ + "dash" + ], + "commit": "62f1d60a0852b4f83f64e6fc4c199eea967a34f7", + "sha256": "0q8py0v06sq9yy7f3w6m45q3nflnd3vppf3i53s0xib3izxl2vca" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "dash" + ], + "commit": "d36d2445420460c81bcd4822d0bfcbafaec2c682", + "sha256": "0q2y37zfxlbfvgdn70ikg3abp8vljna4ir9nyqlz1awmz5i1c43s" + } + }, + { + "ename": "minitest", + "commit": "41b2e55c0fe48267dc4f55924c782c6f934d8ca4", + "sha256": "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw", + "fetcher": "github", + "repo": "arthurnn/minitest-emacs", + "unstable": { + "version": [ + 20160628, + 1820 + ], + "deps": [ + "dash" + ], + "commit": "1aadb7865c1dc69c201cecee275751ecec33a182", + "sha256": "1l18zqpdzbnqj2qawq8hj7z7pl8hr8z9d8ihy8jaiqma915hmhj1" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "deps": [ + "dash" + ], + "commit": "2bed01262b0d888473468b5c7bd7d73694d31320", + "sha256": "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh" + } + }, + { + "ename": "minizinc-mode", + "commit": "fc86b4ba54fca6f1ebf1ae3557fe564e05c1e382", + "sha256": "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c", + "fetcher": "github", + "repo": "m00nlight/minizinc-mode", + "unstable": { + "version": [ + 20180201, + 1450 + ], + "commit": "2512521ba7f8e263a06db88df663fc6b3cca7e16", + "sha256": "1yrawvvn3ndzzrllh408v4a5n0y0n5p1jczdm9r8pbxqgyknbk1n" + } + }, + { + "ename": "minor-mode-hack", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "07ga48xvbi641i053bykv9v4wxhka6jhhg76b1ll24rys02az526", + "fetcher": "github", + "repo": "rubikitch/minor-mode-hack", + "unstable": { + "version": [ + 20170926, + 34 + ], + "commit": "9688994e23ccb2de568225ef125b41c46e5667c3", + "sha256": "0f6kafr7zqgdlw914bxh2390a1bjz5zy3h30yrfpavz283ycvrrw" + } + }, + { + "ename": "mip-mode", + "commit": "cbfefacda071c0f5ee698a4c345a2d6fea6a0d24", + "sha256": "0jr8lzs1qzp2ki7xmm5vrdc6vmzagy8zsil0217vyl89pdfmxnyr", + "fetcher": "gitlab", + "repo": "gaudecker/mip-mode", + "unstable": { + "version": [ + 20151127, + 617 + ], + "commit": "7c88c383b4c7ed0a4c1dc397735f365c1fcb461c", + "sha256": "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc" + } + }, + { + "ename": "mips-mode", + "commit": "024a76b83efce47271bcb0ce3bde01b88349f391", + "sha256": "0gg18v80lbndi2yyr5nl37mz0zpamwv9ha4clajkf0bc0vplxkj7", + "fetcher": "github", + "repo": "hlissner/emacs-mips-mode", + "unstable": { + "version": [ + 20180502, + 1457 + ], + "commit": "75152fc78baa762af4f83602f6cb3c8b9bcebca3", + "sha256": "1bk1jfqwwrq3jr6zasyjaz16rjjqbihrn7kakgfk3szv6grvsd7p" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "e6c25201a3325b555e64388908d584f3f81d9e32", + "sha256": "0ai4ff6hinajvnp8r86s5pv0rrv8h68ncdz4k98kka1ws2f79zdf" + } + }, + { + "ename": "mixed-pitch", + "commit": "7d3c7af03e0bca3f834c32827cbcca29e29ef4db", + "sha256": "1gda4jl946qlbf8rqm0mk493kwy8yqldr21cr583l6b6gl1nb4qf", + "fetcher": "gitlab", + "repo": "jabranham/mixed-pitch", + "unstable": { + "version": [ + 20190307, + 2210 + ], + "commit": "15bb9ec6d8be0812a46917205be6c3a1c78f68ff", + "sha256": "1458sy5b6bis1i0k23jdqk6hfqg0ghk637r3ajql2g19ym48rf58" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "15bb9ec6d8be0812a46917205be6c3a1c78f68ff", + "sha256": "1458sy5b6bis1i0k23jdqk6hfqg0ghk637r3ajql2g19ym48rf58" + } + }, + { + "ename": "mkdown", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "034bwwgh0w1dwawdx2nwn4d6wj65i58aqlvi60kflijfn8l3inr3", + "fetcher": "github", + "repo": "ajtulloch/mkdown.el", + "unstable": { + "version": [ + 20140517, + 1418 + ], + "deps": [ + "markdown-mode" + ], + "commit": "8e23de82719af6c5b53b52b3308a02b3a1fb872e", + "sha256": "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk" + } + }, + { + "ename": "mmm-jinja2", + "commit": "721b9a6f16fb8efd4d339ac7953cc07d7a234b53", + "sha256": "0zg4psrgikb8644x3vmsns0id71ni9fcpm591zn16b4j64llvgsi", + "fetcher": "github", + "repo": "glynnforrest/mmm-jinja2", + "unstable": { + "version": [ + 20170313, + 1420 + ], + "deps": [ + "mmm-mode" + ], + "commit": "c8cb763174fa2fb61b9a0e5e0ff8cb0210f8492f", + "sha256": "0big2i3bg4cm14f68ncaiz2h6dk6zqiisrz4l0bv10q9kaa9q2sj" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "mmm-mode" + ], + "commit": "c8cb763174fa2fb61b9a0e5e0ff8cb0210f8492f", + "sha256": "0big2i3bg4cm14f68ncaiz2h6dk6zqiisrz4l0bv10q9kaa9q2sj" + } + }, + { + "ename": "mmm-mako", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn", + "fetcher": "bitbucket", + "repo": "pjenvey/mmm-mako", + "unstable": { + "version": [ + 20121020, + 651 + ], + "deps": [ + "mmm-mode" + ], + "commit": "5c9ff92137b547569264eeca1ab2a86e4ba12f55", + "sha256": "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr" + } + }, + { + "ename": "mmt", + "commit": "d1137bb53ecd92b1a8537abcd2635602c5ab3277", + "sha256": "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq", + "fetcher": "github", + "repo": "mrkkrp/mmt", + "unstable": { + "version": [ + 20190713, + 1347 + ], + "deps": [ + "cl-lib" + ], + "commit": "753f6dc888acbd932c4fbd7c73ff750381058561", + "sha256": "0smamgvl6qlvzyc4119szxllx5ydw6pmix0g4zfjqf47lwxdd2yi" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "f7db836a10720ee50217012e7e2597ebcf624f90", + "sha256": "13vbfc5597v0gd87qyhn10f93nb477vjpg3jlpphbax9fvkf4gav" + } + }, + { + "ename": "mo-git-blame", + "commit": "a784f931849ca836557390999b179ef9f6e775f3", + "sha256": "14ngwwgzrnnysq1k1k681b5i06ad8r3phhgpvn5alp2fj3il03l3", + "fetcher": "gitlab", + "repo": "mbunkus/mo-git-blame", + "unstable": { + "version": [ + 20160129, + 1759 + ], + "commit": "254a675eb794cdbbdef9fa2b4b7bb510b70089c0", + "sha256": "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398" + } + }, + { + "ename": "mo-vi-ment-mode", + "commit": "85487df36bab0a4d2ea034dbe01c8f095a7efddc", + "sha256": "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7", + "fetcher": "github", + "repo": "AjayMT/mo-vi-ment", + "unstable": { + "version": [ + 20181217, + 206 + ], + "commit": "e8b525ffc5faa31d36ecc5496b40f0f5c3603c08", + "sha256": "16ic8yhjfk0ijlcw7a270p7953w750qza3xdbf4vygkiqqkxiv84" + } + }, + { + "ename": "mobdebug-mode", + "commit": "25a48680d9f0d2b86ee64cc2415626a5283136a8", + "sha256": "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8", + "fetcher": "github", + "repo": "deftsp/mobdebug-mode", + "unstable": { + "version": [ + 20140110, + 346 + ], + "deps": [ + "lua-mode" + ], + "commit": "e1d483bc4e341c762bc5c0a8c52306a8d01ea0da", + "sha256": "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz" + } + }, + { + "ename": "mocha", + "commit": "39c26134ba95f277a4e9400e506433d96a695aa4", + "sha256": "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx", + "fetcher": "github", + "repo": "scottaj/mocha.el", + "unstable": { + "version": [ + 20180321, + 2322 + ], + "deps": [ + "f", + "js2-mode" + ], + "commit": "33e1b521a8a8d0225df353b51f1e8a4588ee32d0", + "sha256": "1ln6wz452sfxy7ii211ha9p0n3pygxyzyk0raczfla3ln8dh989q" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "js2-mode" + ], + "commit": "4ca9495d4b00b753f055152bd4256c07d7b208f4", + "sha256": "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm" + } + }, + { + "ename": "mocha-snippets", + "commit": "93c472e3d7f318373342907ca7253253ef12dab8", + "sha256": "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds", + "fetcher": "github", + "repo": "cowboyd/mocha-snippets.el", + "unstable": { + "version": [ + 20190417, + 1931 + ], + "deps": [ + "yasnippet" + ], + "commit": "361a3809f755577406e109b9e44d473dfa7c08e0", + "sha256": "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "yasnippet" + ], + "commit": "361a3809f755577406e109b9e44d473dfa7c08e0", + "sha256": "0xcybq0cwd0c33bi1jf7h098a4anc4gkj3m1c97gc8mz9x4fjksy" + } + }, + { + "ename": "mocker", + "commit": "16a4fe34a6f354d396c24ff13e15157510202259", + "sha256": "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3", + "fetcher": "github", + "repo": "sigma/mocker.el", + "unstable": { + "version": [ + 20150917, + 154 + ], + "deps": [ + "eieio", + "el-x" + ], + "commit": "6a1d7c9189bd721debd1a60707526e43a733f537", + "sha256": "0i96fn5ji1z78in4nr316sgfp2mc8lmxijslw3k9q1v50j91bcya" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "eieio", + "el-x" + ], + "commit": "55b078b53ea49e48bd1821d96f0fb86f794fdc6c", + "sha256": "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2" + } + }, + { + "ename": "modalka", + "commit": "fa0a02da851a603b81e183f461da55bf4c71f0e9", + "sha256": "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c", + "fetcher": "github", + "repo": "mrkkrp/modalka", + "unstable": { + "version": [ + 20190713, + 1335 + ], + "commit": "0a641093f5edb1e0849b82f90a1464623bb14a2f", + "sha256": "0fv03frlcqfa4sfnvv5v6qg9k79jpnv4pbwifzdafqwgpd34jgy1" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "commit": "1259afa084f58d143d133aac56a6c0c10bc460f2", + "sha256": "0ggj8q92sb6wp3hs1vhpmy56id0p3i9zwnw24g2v7xa7w8ac9s7l" + } + }, + { + "ename": "mode-icons", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf", + "fetcher": "github", + "repo": "ryuslash/mode-icons", + "unstable": { + "version": [ + 20190627, + 2121 + ], + "deps": [ + "cl-lib" + ], + "commit": "f16969f053f43bf706257673d0800de438d4e33b", + "sha256": "0lvpvmc1fhhjg9rgh8gy6c0nqfn89v9cxy5pjpy0c8bdnwys2x7q" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "37581ed911e4469f773ddfb7b40a85592d323b76", + "sha256": "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av" + } + }, + { + "ename": "mode-line-bell", + "commit": "26f19808655b0242a1e9e5e5d41f7f794542e243", + "sha256": "1ri771hb91b7hd203f8zp83h5hcndh8ccc1y8shhqmak6a6l04wk", + "fetcher": "github", + "repo": "purcell/mode-line-bell", + "unstable": { + "version": [ + 20181029, + 516 + ], + "commit": "4985ba42f5a19f46ddbf9b3622453a9694995ce5", + "sha256": "13n3di05lgqfm4f8krn3p36yika5znhymp5vr2d747x54hqmgh7y" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "4985ba42f5a19f46ddbf9b3622453a9694995ce5", + "sha256": "13n3di05lgqfm4f8krn3p36yika5znhymp5vr2d747x54hqmgh7y" + } + }, + { + "ename": "mode-line-debug", + "commit": "b0080ab9ef1eca5dd19b3fd9af536d8aa17773a2", + "sha256": "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd", + "fetcher": "github", + "repo": "tarsius/mode-line-debug", + "unstable": { + "version": [ + 20180318, + 2225 + ], + "commit": "a0fcc394b07d2414bd6f722da10f1c7567333f6b", + "sha256": "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa" + }, + "stable": { + "version": [ + 1, + 2, + 3 + ], + "commit": "a0fcc394b07d2414bd6f722da10f1c7567333f6b", + "sha256": "04vsb0lniy90bhnqb590dap9y4wac64xz0lc2rlfczic0nrqd1aa" + } + }, + { + "ename": "modern-cpp-font-lock", + "commit": "4bfc2386049adfe7a8e20da9b69fb73d6cb71387", + "sha256": "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj", + "fetcher": "github", + "repo": "ludwigpacifici/modern-cpp-font-lock", + "unstable": { + "version": [ + 20190331, + 1528 + ], + "commit": "02f104701bc34c146d22e3143ae59ef362999098", + "sha256": "14vxxvvm12jnq4llb759h8y4w3cv71d3xic1mbp0jmyd0j4dkqzp" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "3e9c18b5a2ade485565f5191f12a724f1969dbb0", + "sha256": "0jg5yix4c18gvy5n4wsi7zg2sb7r0bw0xlmq0w15g3z63nhy69vc" + } + }, + { + "ename": "modtime-skip-mode", + "commit": "486a675ca4898f99133bc18202e123fb58af54c0", + "sha256": "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28", + "fetcher": "github", + "repo": "jordonbiondo/modtime-skip-mode", + "unstable": { + "version": [ + 20140128, + 2201 + ], + "commit": "c0e49523aa26b2263a8693691ac775988015f592", + "sha256": "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l" + } + }, + { + "ename": "moe-theme", + "commit": "4efefd7edacf90620436ad4ef9ceb470618a8018", + "sha256": "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6", + "fetcher": "github", + "repo": "kuanyui/moe-theme.el", + "unstable": { + "version": [ + 20180617, + 200 + ], + "commit": "6e086d855d6bb446bbd1090742815589a81a915f", + "sha256": "0xj4wfd7h4jqnr193pizm9frf6lmwjr0dsdv2l9mqh9k691z1dnc" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "b8f0206614ab40ffb75e50ce6c38675fb9c7cf2e", + "sha256": "0pn3a1rrj7ycxh91x3q008b6rmq7rbl8ir6diqzqfp6y465pn2w2" + } + }, + { + "ename": "molecule", + "commit": "7421b67dc51abf13bb028e467bb4c83f857a342e", + "sha256": "0kdwmn4gb382igy979y7x2fdqcnfxlb4dvqvm6w7ghs564grzgj4", + "fetcher": "git", + "url": "https://git.daemons.it/drymer/molecule.el/", + "unstable": { + "version": [ + 20180527, + 743 + ], + "commit": "2ef72b81d9aa24ea782b71a061a3abdad6cae162", + "sha256": "0fn16jlpdfy35mz0n27bzdiwgvv8l9nfxf8j4pypgpqarnxzpsgc" + } + }, + { + "ename": "molokai-theme", + "commit": "b1fdc89f0c52231f238096a1d42c2c330cb50d2c", + "sha256": "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf", + "fetcher": "github", + "repo": "alloy-d/color-theme-molokai", + "unstable": { + "version": [ + 20151016, + 1545 + ], + "commit": "04a44f21184b6a26caae4f2c92db9019d883309c", + "sha256": "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2" + } + }, + { + "ename": "mongo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0jb5m611m7w26wgfwijgy0dn65s7p1y6fdcfpfgpxa7j5vrcxasc", + "fetcher": "github", + "repo": "m2ym/mongo-el", + "unstable": { + "version": [ + 20150315, + 1219 + ], + "commit": "595529ddd70ecb9fab8b11daad2c3929941099d6", + "sha256": "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x" + } + }, + { + "ename": "monitor", + "commit": "b9df614e8e7b9dfdbd7eec552a2b13e0f5acfc22", + "sha256": "11n4nv6vkjw434yrwqjw20229m2sxqxxdp7sg99gzrd5gjyab643", + "fetcher": "github", + "repo": "GuiltyDolphin/monitor", + "unstable": { + "version": [ + 20161018, + 1144 + ], + "deps": [ + "dash" + ], + "commit": "63f4643a0ee81616dbb692b8b03bae21df2283e2", + "sha256": "1hl7nzxvjwv9kknyjikkbxw1gbi5kx4hkkq7sw6jnj06192n93yg" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash" + ], + "commit": "8c67c06f60a89b2583bae90afc91a7e7d73260fd", + "sha256": "1r2sns49f5fw4f122s165sa41nkrkq2qs20n98g2pfd1whflqfnb" + } + }, + { + "ename": "monky", + "commit": "9b33d35e3004f3cc8a5c17aa1ee07dd21d2d46dc", + "sha256": "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz", + "fetcher": "github", + "repo": "ananthakumaran/monky", + "unstable": { + "version": [ + 20190619, + 1637 + ], + "commit": "9d379a2306a8b7cd9c4faba20490480acdc1d763", + "sha256": "0dvywqas1vx0f0qlly8259772zj64sygv3hnmm9yqzy4v725qbhp" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "099f1af9d3f6f6143f5e98a9b844f965a011a120", + "sha256": "1fgn7al4zwz2k5wb5dy3byqg9lsrjk9fra341mxh5ma2pfwxjgps" + } + }, + { + "ename": "monochrome-theme", + "commit": "d00b78ead693e844e35c760fe2c39b8ed6cb0d81", + "sha256": "0cq2clliwcwnn1spz1w6y5qw1lgqznw212rcc4q6f1kslq0jyk5x", + "fetcher": "github", + "repo": "fxn/monochrome-theme.el", + "unstable": { + "version": [ + 20140326, + 1050 + ], + "commit": "bfca67fe7365310bc47ae9ca96c417caada54896", + "sha256": "0jvsss38rgry37dnshxbqxcj7qh1q6iyza58kix47h5wbnrpvszn" + } + }, + { + "ename": "monokai-alt-theme", + "commit": "6ff05515c2f3bd80cb8d7de9afc8fd983e62ad91", + "sha256": "135bli9vhgl898526q6znjvck356bja1ylsfi95d9445jd136c4v", + "fetcher": "github", + "repo": "dawidof/emacs-monokai-theme", + "unstable": { + "version": [ + 20170630, + 2048 + ], + "commit": "f342b6afc31f929be0626eca2d696ee9fab78011", + "sha256": "1lgsqrwf21b0rh4x8nmj08a46ld7dkq4jhwxi1fi7a9xhmi2yd4i" + } + }, + { + "ename": "monokai-pro-theme", + "commit": "0d5fbd76a40d84dd2d91a1022f59c15e6db6b90a", + "sha256": "05ya47cmry2fprssjx3adwij9zd218rcnikpw9hximwlklmzjvb3", + "fetcher": "github", + "repo": "belak/emacs-monokai-pro-theme", + "unstable": { + "version": [ + 20190425, + 2303 + ], + "commit": "747556c0cb38993c83ea8b6665869f42249d885a", + "sha256": "1xfc3v1bwxpn3j42h6b1vy6knjrlmskq95c9vgdlia9ffz5pg7r3" + } + }, + { + "ename": "monokai-theme", + "commit": "2bc9ce95a02fc4bcf7bc7547849c1c15d6db5089", + "sha256": "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a", + "fetcher": "github", + "repo": "oneKelvinSmith/monokai-emacs", + "unstable": { + "version": [ + 20190801, + 1701 + ], + "commit": "e407f51d34b0c30cfe9d815f80a0c3539b998b08", + "sha256": "0psz6z59v0fdl846vaydqrhmy4swxcvz6swa523rcpjxlp3w2vyq" + }, + "stable": { + "version": [ + 3, + 5, + 3 + ], + "commit": "1143c072f5153ae1a69807e5e8af163069b947d2", + "sha256": "0dy8c3349j7fmp8052hbgvk0b7ldlv5jqpg0paq1i0hlypivd30i" + } + }, + { + "ename": "monotropic-theme", + "commit": "38222d109ece0030b0bfafb242aa100694b2bfcf", + "sha256": "129yqjh4gaab1kjijzkzbw50alzdiwmpv9cl3lsy04m8zk02shl8", + "fetcher": "github", + "repo": "caffo/monotropic-theme", + "unstable": { + "version": [ + 20181015, + 1230 + ], + "commit": "36df566aa8225e303f6c9d90c00740dd678a415e", + "sha256": "05n8s3719f6yrh4fi5xyzzlhpsgpbc60mmfmzycxlb4sinq9bfks" + } + }, + { + "ename": "monroe", + "commit": "590e5e784c5a1c12a241d90c9a0794d2737a61ef", + "sha256": "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig", + "fetcher": "github", + "repo": "sanel/monroe", + "unstable": { + "version": [ + 20190109, + 1347 + ], + "commit": "2f472fdc09c1b36c291ddb5ed9aecc331fd7e082", + "sha256": "1g9v7z2bk2vcknpff31y9pf6cw8xrb5hxsh8cjci7i5w2abp7qbj" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "0b9b043f042145bf62969add7ec476ea51da7cbd", + "sha256": "101lfrykdbv37spkbw7zihhx26bc1lhjyxbanrcp9880bxj04jiy" + } + }, + { + "ename": "mood-line", + "commit": "b10524f105943648ecf52f007f363b7b5534865e", + "sha256": "0wj8rdgsqsdd2ps3w7sj8a7yhhz0iczwgnalalzws42x8s9yn4j0", + "fetcher": "gitlab", + "repo": "jessieh/mood-line", + "unstable": { + "version": [ + 20190606, + 1046 + ], + "commit": "3560d8aafd8c856a218ff8fab5a30e1aa0db25b6", + "sha256": "08qh8x0gd7byvfp03jpkd95h70djh8vrwpm451932zwf66j7fnay" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "3560d8aafd8c856a218ff8fab5a30e1aa0db25b6", + "sha256": "08qh8x0gd7byvfp03jpkd95h70djh8vrwpm451932zwf66j7fnay" + } + }, + { + "ename": "mood-one-theme", + "commit": "44fbe8c54e4052e6c38849a12425db8f7c04fcc1", + "sha256": "1ar3vsc0d838m2k54f4v8a4mc0g21qa9rmgr2wb763vb7vpcznmi", + "fetcher": "gitlab", + "repo": "jessieh/mood-one-theme", + "unstable": { + "version": [ + 20190606, + 1111 + ], + "commit": "47fc825547664c3e3eb8f47f1a9cf74b23efc2c6", + "sha256": "17zz3nc3r2cm4w99frzqxnh768vnmzs71p9zz9bj03wc222n1kv6" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "commit": "47fc825547664c3e3eb8f47f1a9cf74b23efc2c6", + "sha256": "17zz3nc3r2cm4w99frzqxnh768vnmzs71p9zz9bj03wc222n1kv6" + } + }, + { + "ename": "moody", + "commit": "63521fe6a1e540544a07231cc94144439e8caea7", + "sha256": "095241sjw330fb5lk48aa4zx8xbzk8s4ml22n6a8bzr99nkhn5jy", + "fetcher": "github", + "repo": "tarsius/moody", + "unstable": { + "version": [ + 20190203, + 1747 + ], + "commit": "58af7973742bf381f5980413dfb21bf5f21b44f8", + "sha256": "11kahx0gzchmn3yh5n0cms58cmsbrhd2kj380qcnlqv390cknqvy" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "e0975e844876f0962b2e9481c26739397bd23541", + "sha256": "0jci21ycsyf1mblcv8vbii4wisw1zcs15q5xwld7ai24kgj70269" + } + }, + { + "ename": "moom", + "commit": "c55081230ee02346ed02e0ab19ee2302e7b9ffa7", + "sha256": "11l4yc8fhxsrsjfksqj4cxr13jln0khhd2dn09i94n71dx7lybh1", + "fetcher": "github", + "repo": "takaxp/moom", + "unstable": { + "version": [ + 20180910, + 438 + ], + "commit": "a8820f19a8168ab395ba835872606280ad96916d", + "sha256": "1lpkmbabw9n50hf7yr6n4aim8x0km1wa15mpf7mv9w91ca2blg5d" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "commit": "536eac1dd2b187f65ed85ad8efc95f7e2bcaadb2", + "sha256": "12v2m66dlvnggmraxgmcfq4ycv6wdc56dv63gggrcy7zhlxwi9vp" + } + }, + { + "ename": "moonscript", + "commit": "3046afee95277024830d7d372f2f1c84a0adcb00", + "sha256": "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0", + "fetcher": "github", + "repo": "k2052/moonscript-mode", + "unstable": { + "version": [ + 20170831, + 2226 + ], + "deps": [ + "cl-lib" + ], + "commit": "56f90471e2ced2b0a177aed4d8c2f854797e9cc7", + "sha256": "1v2phdpfngrb01x4qygpfgxdzpgvbprki2kbmpc83vlqxlmkvvjk" + } + }, + { + "ename": "morganey-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "18cbmx8lnypgxkisxa3lrh88v8l9k0q8fnai5ps8ngvfgz42rlqp", + "fetcher": "github", + "repo": "morganey-lang/morganey-mode", + "unstable": { + "version": [ + 20170118, + 934 + ], + "commit": "5cf3870432a2aeb69d373abe63b3be1f325f6d21", + "sha256": "04xv4v2n03axjlpm9pg3j4zjapqjb7is3anx6laa90zbw3z2iv9z" + } + }, + { + "ename": "morlock", + "commit": "b6ef53bbc80edda12a90a8a9705fe14415972833", + "sha256": "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna", + "fetcher": "github", + "repo": "tarsius/morlock", + "unstable": { + "version": [ + 20180318, + 2023 + ], + "commit": "b883d48024ddfffebe2d0dd69f5ed54c617f8834", + "sha256": "0xns4f39x012n7piiv6kgb45n932wxs5fp4yyq44p1mnr0m8v4y8" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "b883d48024ddfffebe2d0dd69f5ed54c617f8834", + "sha256": "0xns4f39x012n7piiv6kgb45n932wxs5fp4yyq44p1mnr0m8v4y8" + } + }, + { + "ename": "mosey", + "commit": "76a9a43eea68db9f82c07677235c481a6f243aa2", + "sha256": "0zprzr5aqv77kmg1ki9w6fw1nc2ap6yqjl4ak05a1i9cq8g6nf3m", + "fetcher": "github", + "repo": "alphapapa/mosey.el", + "unstable": { + "version": [ + 20180614, + 1649 + ], + "commit": "2e3ac9d334fa2937ed5267193dfd25d8e1f14dc2", + "sha256": "1yxy6m5igvsy37vn93ijs0b479v50vsnsyp8zi548iy2ribr0qr5" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "2e3ac9d334fa2937ed5267193dfd25d8e1f14dc2", + "sha256": "1yxy6m5igvsy37vn93ijs0b479v50vsnsyp8zi548iy2ribr0qr5" + } + }, + { + "ename": "mote-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ccsyl0wvf0nbsw57sxad7w0c0i5al5s5mjrjjq8bnfh4dyj2x0y", + "fetcher": "github", + "repo": "inkel/mote-mode", + "unstable": { + "version": [ + 20160123, + 29 + ], + "deps": [ + "ruby-mode" + ], + "commit": "666c6641addbd3b337a7aa01fd2742ded2f41b83", + "sha256": "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7" + } + }, + { + "ename": "motion-mode", + "commit": "c1e3a2091a73c7d725c929313290566f5ca19404", + "sha256": "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0", + "fetcher": "github", + "repo": "ainame/motion-mode", + "unstable": { + "version": [ + 20140920, + 156 + ], + "deps": [ + "flymake-cursor", + "flymake-easy" + ], + "commit": "4c94180e3ecea611a61240a0c0cd48f1032c4a55", + "sha256": "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1" + } + }, + { + "ename": "mouse-slider-mode", + "commit": "8fa747999bb928c3836400a43d8ab63939381673", + "sha256": "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy", + "fetcher": "github", + "repo": "skeeto/mouse-slider-mode", + "unstable": { + "version": [ + 20161021, + 1914 + ], + "deps": [ + "cl-lib" + ], + "commit": "b3c19cd231edecce76787c5a9bbe5e4046d91f88", + "sha256": "1qkbrwicp3gaknnmfrajf1qdyhj5s0c09cx62869rp2721p8rqaw" + } + }, + { + "ename": "move-dup", + "commit": "3ea1f7f015a366192492981ff75672fc363c6c18", + "sha256": "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f", + "fetcher": "github", + "repo": "wyuenho/move-dup", + "unstable": { + "version": [ + 20190408, + 1246 + ], + "commit": "19f1c075d939084279b190c38412b4cfda96840d", + "sha256": "0rb9x00dygf0v5xk6gljdn0lvkgzyl129b5i4jpxz0ylccckd0xn" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "dae61de7aa5e2bf56a7bab1fa36fa3a39520a3c0", + "sha256": "1mrrxx2slxi1qgf483nnxv3y8scfsc844sfnzn4b7hjpfpali0r8" + } + }, + { + "ename": "move-text", + "commit": "82bfd0f41e42eed1d4c2361ec1d1685edebbac1b", + "sha256": "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy", + "fetcher": "github", + "repo": "emacsfodder/move-text", + "unstable": { + "version": [ + 20170909, + 330 + ], + "commit": "7cbc941a9150468609010a93c429117da2523903", + "sha256": "1irrcbqi1m6pcsjkbd3nqri158qhl0bcynciwwxdfqb45i67a1m9" + }, + "stable": { + "version": [ + 2, + 0, + 8 + ], + "commit": "bdaf3e3a0d33cd528cad1d10facbdf0635232e4d", + "sha256": "06jxk5g23822gfmwrxhc34zand3dr8p2wjh1zs3j61ibz6n0nmz1" + } + }, + { + "ename": "mowedline", + "commit": "86f7df6b8df3398ef476c0ed31722b03f16b2fec", + "sha256": "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb", + "fetcher": "github", + "repo": "retroj/mowedline", + "unstable": { + "version": [ + 20161122, + 235 + ], + "commit": "6121b7d4aacd18f7b24da226e61dbae054e50a7c", + "sha256": "16j3y4hffnv2rg97p49hqz3x1icp7qkpcjxhalny5l4gysx9mfqg" + }, + "stable": { + "version": [ + 3, + 3, + 0 + ], + "commit": "c17501b48ded8261d815ab60bf14cddf7040be72", + "sha256": "1k3b018xq2qqq30v0ik13imy9c84241kyavj5ascxhywx956v18g" + } + }, + { + "ename": "moz", + "commit": "6839c5e52364fb32f6d8a351e5c2f21fbd6669a1", + "sha256": "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi", + "fetcher": "github", + "repo": "bard/mozrepl", + "unstable": { + "version": [ + 20150805, + 1706 + ], + "commit": "ab3e79914445039ceb62f7f2dc342358fec3492e", + "sha256": "1c7dsip5wmlf7x2hziwil5n3igvpnh17d7yg8lsg001y5sjl3mjv" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "646208b67e6c9c56d188db1eba999846d518935f", + "sha256": "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c" + } + }, + { + "ename": "moz-controller", + "commit": "fcc20337594a76a547f696adece121ae592c6917", + "sha256": "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd", + "fetcher": "github", + "repo": "RenWenshan/emacs-moz-controller", + "unstable": { + "version": [ + 20151209, + 206 + ], + "deps": [ + "moz" + ], + "commit": "46f665c03574fa922de767fc29795e0db4a7c5c6", + "sha256": "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "moz" + ], + "commit": "42fd842039620de7fb122f7e4ffc1ab802ee97c5", + "sha256": "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0" + } + }, + { + "ename": "mozc", + "commit": "30fef77e1d7194ee3c3c1d4775c349a4a9f6af2c", + "sha256": "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba", + "fetcher": "github", + "repo": "google/mozc", + "unstable": { + "version": [ + 20180101, + 800 + ], + "commit": "afb03ddfe72dde4cf2409863a3bfea160f7a66d8", + "sha256": "0w2dy2j9x5nc7x3g95j17r3m60vbfyn5j617h7js9xryv33yzpgx" + } + }, + { + "ename": "mozc-im", + "commit": "4b651b7f1c15b44577b3c2b7493264ed802cf073", + "sha256": "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10", + "fetcher": "github", + "repo": "d5884/mozc-im", + "unstable": { + "version": [ + 20160412, + 22 + ], + "deps": [ + "mozc" + ], + "commit": "df614a1076c28a11551fb3e822868bae47e855a5", + "sha256": "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15" + } + }, + { + "ename": "mozc-popup", + "commit": "49bdcf035b9f885a689b9dc21817aecdcd09768b", + "sha256": "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687", + "fetcher": "github", + "repo": "d5884/mozc-popup", + "unstable": { + "version": [ + 20150224, + 34 + ], + "deps": [ + "mozc", + "popup" + ], + "commit": "f0684b875a7427ec08f8df13939a486e5d5cf420", + "sha256": "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn" + } + }, + { + "ename": "mozc-temp", + "commit": "e0c77275d759bf73df11fa151b4e737d7cb15adf", + "sha256": "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d", + "fetcher": "github", + "repo": "HKey/mozc-temp", + "unstable": { + "version": [ + 20160228, + 840 + ], + "deps": [ + "dash", + "mozc" + ], + "commit": "01f09b6c0b308e9f7057fb2aa80171e2ce328bb8", + "sha256": "0vgyx7v79224mg3ci8i5kjasnh1w0c48jzwgxbjj270lrra3gfsr" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "dash", + "mozc" + ], + "commit": "7f5dd5fc8ceeca9b1822f7e056a4be67e2e74959", + "sha256": "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv" + } + }, + { + "ename": "mpages", + "commit": "b535c2862c4fad568324466883f23ba9f39e787f", + "sha256": "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs", + "fetcher": "github", + "repo": "slevin/mpages", + "unstable": { + "version": [ + 20150710, + 1404 + ], + "commit": "39a72a0931ab1cdbfdf0ab9f412dc12d43a3829f", + "sha256": "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2" + } + }, + { + "ename": "mpdel", + "commit": "bb25443752e18e47afc63d5497cc5052c388a607", + "sha256": "1py6zk16yl7pyql2qxzd770clzszw7c769hw70n963kns1qmpif8", + "fetcher": "github", + "repo": "mpdel/mpdel", + "unstable": { + "version": [ + 20190507, + 1339 + ], + "deps": [ + "libmpdel" + ], + "commit": "1eb87264b6955235348880904378c199d65e3fa7", + "sha256": "0y43i4bngjnzv457kx7f6k38jsmsk4izfwx57pfp8bqz6f2yssb6" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "libmpdel" + ], + "commit": "a2da2f2fe2357641909514da788f7c6cbe5801f4", + "sha256": "0pyyvbzskr44dxbmlp3y0r6s459fd51cvwjmnjaqxfxflr5v891g" + } + }, + { + "ename": "mpmc-queue", + "commit": "30511f1e5eaf45b5f43fbacdd6c7254cb39b1d2c", + "sha256": "08jcmhfl87nsg6zgv582yfs152bqihbcssh085gxxqn2x99li354", + "fetcher": "github", + "repo": "smizoe/mpmc-queue", + "unstable": { + "version": [ + 20180303, + 2029 + ], + "deps": [ + "queue" + ], + "commit": "df07d6bef7468edb1d73ef73b8331b94d0e5d0ca", + "sha256": "17817l3afghg9z8jxkj61yg85plmr74ki3wf4hz685llx8fr69w0" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "queue" + ], + "commit": "4775ddcb120528828ef1fcb7ee761524a0907a31", + "sha256": "0fbrx288vpd0vx2cph7kfclr7hhplqjgynr6csmkh8jaskv26p79" + } + }, + { + "ename": "mpv", + "commit": "2392c1d1042ac6a42bbf9aa7e394c03e178829d0", + "sha256": "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l", + "fetcher": "github", + "repo": "kljohann/mpv.el", + "unstable": { + "version": [ + 20180602, + 1014 + ], + "deps": [ + "cl-lib", + "json", + "org" + ], + "commit": "9dedf3b7c1bfd778284df7f394207ce0447ea7aa", + "sha256": "15z62wi47pwvkbh4qgvz06yk4cyy570pjz1276sd9frdwgd4kc19" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "json", + "names", + "org" + ], + "commit": "059135de3979e044f14503806047476d9be9f0e8", + "sha256": "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3" + } + }, + { + "ename": "mqr", + "commit": "0023747e8173fab8e88143ee95a31540a079c6bf", + "sha256": "1nw713sha29q1zgsxxfrkggkrk6q8vvk9sdi1s539r8h35bc3jx0", + "fetcher": "github", + "repo": "calancha/multi-replace", + "unstable": { + "version": [ + 20180527, + 1204 + ], + "commit": "4ade19d4620b8b61340290bf63fa56d5e493859f", + "sha256": "0pkxmv0rla9f2ly9fq3i3mrsa2q8rsrs4pk6w7wpi3v5fbj1jmd6" + } + }, + { + "ename": "mqtt-mode", + "commit": "b85c84ff9523026620e5b3cf864bbc7b9f81d57a", + "sha256": "1zbnhd65c9wz9yr29j37c8z7vz3axpfwkzx0z8xjplp40mafpz1z", + "fetcher": "github", + "repo": "andrmuel/mqtt-mode", + "unstable": { + "version": [ + 20180605, + 1731 + ], + "deps": [ + "dash" + ], + "commit": "36d1d4296d79e17b8f35e8e14f2708980eb502db", + "sha256": "1116xvwpavg7icm263s0clgxhw3qqm4aqiw4ky94w9a8ydazx51l" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "dash" + ], + "commit": "613e70e9b9940e635e779994b5c83f86eb62c8e6", + "sha256": "1ci1w4yma6axiigz55b2ip0r7zy8v215532jc0rkb3wyn14nsrh7" + } + }, + { + "ename": "msvc", + "commit": "69939b85353a23f374cab996ede879ab315a323b", + "sha256": "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3", + "fetcher": "github", + "repo": "yaruopooner/msvc", + "unstable": { + "version": [ + 20190426, + 1045 + ], + "deps": [ + "ac-clang", + "cedet", + "cl-lib" + ], + "commit": "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06", + "sha256": "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h" + }, + "stable": { + "version": [ + 1, + 4, + 1 + ], + "deps": [ + "ac-clang", + "cedet", + "cl-lib" + ], + "commit": "c3b86fb517e95c9ae4d6b851984f4f4ed1864c06", + "sha256": "0mn12za94ciqfagia3ga7azl86abxa41191vlczh8kwspwci4x1h" + } + }, + { + "ename": "mtg-deck-mode", + "commit": "425fa66cffe7bfda71de4ff2b49e951456bdeae1", + "sha256": "07hszf33nawhp218f90qr4s713yyjdd7zzkq0s8q0fb6aai5iiih", + "fetcher": "github", + "repo": "mattiasb/mtg-deck-mode", + "unstable": { + "version": [ + 20180613, + 2010 + ], + "commit": "8265b8ed17fcd4406760c19aa6ee9c76068b1ab0", + "sha256": "04qdcqpkic2nhqy6nf15j3zp5hmrfzs2kndvmg5v4vjac2vfmzfb" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "7774641630ef85999ab2f6d57eebddbc7c1e7244", + "sha256": "12ajrlgyj14jf66if7bdgj69jm72wzrmiclx7x8dpsz4zpj38m20" + } + }, + { + "ename": "mu-cite", + "commit": "a80bc6e626f4bc6edfe6560833d12d31ecfd7a51", + "sha256": "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q", + "fetcher": "github", + "repo": "ksato9700/mu-cite", + "unstable": { + "version": [ + 20160130, + 1100 + ], + "deps": [ + "flim" + ], + "commit": "aea3c2d01eb3284d5e0124059d368e8c6b6ffddc", + "sha256": "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19" + } + }, + { + "ename": "mu2tex", + "commit": "e55964077f23a9d3ec4b53cb5add6d7166f385e0", + "sha256": "1h146xscvlkjgp4wqw11cb1z6gjr1s0ysamcz4ii5gfv82rrjgyc", + "fetcher": "github", + "repo": "cdominik/mu2tex", + "unstable": { + "version": [ + 20190520, + 503 + ], + "commit": "9467076ee4115d7fc19abaeadecc603e9115bf8d", + "sha256": "1acyynjrr5pxn15g59hd3cq1yvx989ks1b79g1kmhb1cqfpz58b8" + } + }, + { + "ename": "mu4e-alert", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0b74ky51nx75vcrrbabr5cj2cx4yax5kgaq479hjp5yc5mq2q46r", + "fetcher": "github", + "repo": "iqbalansari/mu4e-alert", + "unstable": { + "version": [ + 20190418, + 558 + ], + "deps": [ + "alert", + "ht", + "s" + ], + "commit": "91f0657c5b245a9de57aa38391221fb5d141d9bd", + "sha256": "0qr5ww2xj8dibglh175qcq4bdgzs8lylv28hkbijykjshr3pkzn9" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "alert", + "ht", + "s" + ], + "commit": "3453e25ff6c07c1b768b2a79fdb9fc5c97100e76", + "sha256": "1nvsfbfsma59ilf7c3vjngnmx3aapwvvvaafdy5szm5r6lkicqvg" + } + }, + { + "ename": "mu4e-conversation", + "commit": "7638aecc7a2cd4b1646c6e32fe83e18ef212bbaa", + "sha256": "16vhjaxjhshw7ch9ihk35r99549xlbmvybwjx0p9mzyqi30dn3s6", + "fetcher": "gitlab", + "repo": "ambrevar/mu4e-conversation", + "unstable": { + "version": [ + 20190609, + 812 + ], + "commit": "98110bb9c300fc9866dee8e0023355f9f79c9b96", + "sha256": "080s96jkcw2p288sp1vgds91rgl693iz6hi2dv56p2ih0nnivwlg" + } + }, + { + "ename": "mu4e-jump-to-list", + "commit": "c1cf98dff029d494007fe25d29bd8bcfecc5b8e6", + "sha256": "0yl1vi62pjgklwa7ifvr35fciiqqc5zkrc0m4yxjiv0c0dn50b7n", + "fetcher": "gitlab", + "repo": "wavexx/mu4e-jump-to-list.el", + "unstable": { + "version": [ + 20190419, + 1442 + ], + "deps": [ + "cl-lib" + ], + "commit": "358bba003543b49ffa266e503e54aebd0ebe614b", + "sha256": "00y9nap61q1z2cdql4k9g7fgi2gdgd9iy5s5lzrd9a4agbx6r7sv" + } + }, + { + "ename": "mu4e-maildirs-extension", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0bisxm0rph5q1p3zjr7vyyr0jqr3ihs6ihiwyfr8d3dvba1zhffc", + "fetcher": "github", + "repo": "agpchil/mu4e-maildirs-extension", + "unstable": { + "version": [ + 20180606, + 812 + ], + "deps": [ + "dash" + ], + "commit": "3ef4c48516be66e73d24fe764aadbcfc126b7964", + "sha256": "04nf947sxkir3gni67jc5djhywkmay1l8cqkicayimrh3vd5cy05" + }, + "stable": { + "version": [ + 0, + 8 + ], + "commit": "8b384b0bbda46c473dea3ee7dc68c2b3f2548528", + "sha256": "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx" + } + }, + { + "ename": "mu4e-overview", + "commit": "ec240f0f9bc43c5abca557607b0b89a24696744e", + "sha256": "076lpfj6zrg2ivgbslg9whm4mci278kg45a3km7iadilwipiaxsk", + "fetcher": "github", + "repo": "mkcms/mu4e-overview", + "unstable": { + "version": [ + 20190421, + 612 + ], + "commit": "eb2d1e39c77c4725a8ee36dc68917aaf7b717b46", + "sha256": "08mchv8q8q3mnpm69vc888jlv4iik4vlkxqpmkrsgimq1gyb80pj" + } + }, + { + "ename": "mu4e-query-fragments", + "commit": "c1cf98dff029d494007fe25d29bd8bcfecc5b8e6", + "sha256": "1gckwfgw7jvr6dbikcmy07i07wjhlvq66swhac2laaj6w567vc7w", + "fetcher": "gitlab", + "repo": "wavexx/mu4e-query-fragments.el", + "unstable": { + "version": [ + 20170923, + 1322 + ], + "commit": "34ddad4e6785f575333efcc66153d892daa1c884", + "sha256": "0l5i3a88j9il2y0jq2sfzwi9q3czc1wi8n9nvgdysj5db5m4xsw6" + } + }, + { + "ename": "muban", + "commit": "3576c6b7d79ce6d4df40ce83400fa2468f8fbcdf", + "sha256": "1njphxx6sgw952p7v2qkbjwa8sb2mwrxrzv35bzp0d4c84ny2sa0", + "fetcher": "github", + "repo": "jiahaowork/muban.el", + "unstable": { + "version": [ + 20180415, + 1219 + ], + "commit": "7078e439ee0433a8fbd1cb174464496f9a9d00fa", + "sha256": "1wpcv4wdk735w701d9bm9qqji98mmzg7l7qkq1jmjw1hbpqhnwl2" + } + }, + { + "ename": "multi", + "commit": "c9fea5cf529bcdf412af2926e55b8d77edc07eca", + "sha256": "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig", + "fetcher": "github", + "repo": "kurisuwhyte/emacs-multi", + "unstable": { + "version": [ + 20131013, + 1544 + ], + "commit": "0987ab71692717ed457cb3984de184db9185806d", + "sha256": "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "commit": "884203b11fdac8374ec644cca975469aab263404", + "sha256": "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v" + } + }, + { + "ename": "multi-compile", + "commit": "b312434c6c8e23ded2b74bf8f144ad0b3170adae", + "sha256": "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz", + "fetcher": "github", + "repo": "ReanGD/emacs-multi-compile", + "unstable": { + "version": [ + 20160306, + 2223 + ], + "deps": [ + "dash" + ], + "commit": "bd0331854774e7a269ce8a7dd49580cd397c0ec2", + "sha256": "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g" + } + }, + { + "ename": "multi-line", + "commit": "0f8eee6798a0ba71d437a1cbf82e360a5b60eafb", + "sha256": "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp", + "fetcher": "github", + "repo": "IvanMalison/multi-line", + "unstable": { + "version": [ + 20170822, + 226 + ], + "deps": [ + "cl-lib", + "dash", + "s", + "shut-up" + ], + "commit": "d5ae863ced0adeb7032ada398005f27a6c669d79", + "sha256": "0hj2afqw36pxc091k4w4rk110y076lghnap51x3w53k9xfcfwhwa" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "cl-lib", + "dash", + "s", + "shut-up" + ], + "commit": "778c7510b7f066f53cf1f96a6ad1079fda5dc1f7", + "sha256": "0lr1i2a4fw40iz8qz2zqch63ci9pwvrri219phv22kn76jqn39mh" + } + }, + { + "ename": "multi-project", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x", + "fetcher": "bitbucket", + "repo": "ellisvelo/multi-project", + "unstable": { + "version": [ + 20190710, + 947 + ], + "commit": "88e5e67fd58cfb6643f8ec28d3d432c3ba95afdd", + "sha256": "0sfdcrfhjia8vv3lb9kqddyfdsb4ryzy1r4fmdi9mlk0jjqjqda9" + } + }, + { + "ename": "multi-run", + "commit": "e05ad99477bb97343232ded7083fddb810ae1781", + "sha256": "1iv4a49czdjl0slp8590f1ya0vm8g2ycnkwrdpqi3b55haaqp91h", + "fetcher": "github", + "repo": "sagarjha/multi-run", + "unstable": { + "version": [ + 20190507, + 2349 + ], + "deps": [ + "window-layout" + ], + "commit": "c6256b0cc2876c29faf381d8324b31b911045a27", + "sha256": "07nd7lwrnz9j54hq33c8ii1pipd472qfsdifg6fid7kca0rychif" + }, + "stable": { + "version": [ + 1 + ], + "deps": [ + "window-layout" + ], + "commit": "87d9eed414999fd94685148d39e5308c099e65ca", + "sha256": "0m4wk6sf01b7bq5agmyfcm9kpmwmd90wbvh7fkhs61mrs86s2zw8" + } + }, + { + "ename": "multi-term", + "commit": "7868b41da793d973baaaa3351739d3d61066cce4", + "sha256": "1wynpis5wzlqd76lp6qq6khxvl30d66w26nc6a2xjgg9fvmhzcas", + "fetcher": "github", + "repo": "manateelazycat/multi-term", + "unstable": { + "version": [ + 20190624, + 1147 + ], + "commit": "0804b11e52b960c80f5cd0712ee1e53ae70d83a4", + "sha256": "0apvidmvb7rv05qjnjhax42ma8wrimik5vxx620dlbv17svz7iyf" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "c9e67edb772f2d9f9da8d887dc746459cfbce244", + "sha256": "1bn6zx931vz2fa72ab999r33bxv8brn3cqmalvq25x7s4z3q1lyi" + } + }, + { + "ename": "multi-web-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5", + "fetcher": "github", + "repo": "fgallina/multi-web-mode", + "unstable": { + "version": [ + 20130824, + 354 + ], + "commit": "ad1c8d1c870334052d244c7ae3636cb7b9357b7c", + "sha256": "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "0517b9e2b3052533ac0cb71eba7073ed309fce06", + "sha256": "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b" + } + }, + { + "ename": "multicolumn", + "commit": "f37a999b0583a0ebc842c2f9fad8d08cb6c9dabf", + "sha256": "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09", + "fetcher": "github", + "repo": "Lindydancer/multicolumn", + "unstable": { + "version": [ + 20150202, + 2251 + ], + "commit": "c7a3afecd470859b2e60aa7c554d6e4d436df7fa", + "sha256": "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf" + } + }, + { + "ename": "multifiles", + "commit": "8b528544841995045fb1f8344aaaa38946bb3915", + "sha256": "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz", + "fetcher": "github", + "repo": "magnars/multifiles.el", + "unstable": { + "version": [ + 20130615, + 2133 + ], + "commit": "dddfe64b8e1c1cd1f9ccc1f03405477fc0d53897", + "sha256": "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai" + } + }, + { + "ename": "multiple-cursors", + "commit": "a5f015e6b88be2a5ded363bd882a558e94d1f391", + "sha256": "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x", + "fetcher": "github", + "repo": "magnars/multiple-cursors.el", + "unstable": { + "version": [ + 20190317, + 1211 + ], + "deps": [ + "cl-lib" + ], + "commit": "5ffb19af48bf8a76ddc9f81745be052f050bddef", + "sha256": "11cnwg0szk0fk6nf853pc1gisjh6gcq6ic0673qggg03ly77p87c" + }, + "stable": { + "version": [ + 1, + 4, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "b3bd49c756cd959c0fb998d27eaf3d273570b05e", + "sha256": "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss" + } + }, + { + "ename": "multitran", + "commit": "d665759fa6491b77103920a75c18a561f6800c1c", + "sha256": "0nxrzzlinl5310zfrb4z5j0553cmg11m9y2gaf990j61afaw8f32", + "fetcher": "github", + "repo": "zevlg/multitran.el", + "unstable": { + "version": [ + 20190714, + 1049 + ], + "deps": [ + "cl-lib" + ], + "commit": "eea1e4a57870dd6ee6c6f0a85e53cb66af8954de", + "sha256": "0gvijqs0n3n98fpx61qvzx0akpzfyxhik70dvxp15skr2rvnh17j" + } + }, + { + "ename": "mustache", + "commit": "d1bcf9599ca6d2c29333071a80f96808d4ab52e2", + "sha256": "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g", + "fetcher": "github", + "repo": "Wilfred/mustache.el", + "unstable": { + "version": [ + 20170923, + 1233 + ], + "deps": [ + "dash", + "ht", + "s" + ], + "commit": "5e39654b933a18131146a0f3b3e3dc55c5058124", + "sha256": "0ilsdrvqy9zn0yb1c8zh1zidag32rfb9xhm43qpfcg6n5w6c7r82" + }, + "stable": { + "version": [ + 0, + 23 + ], + "deps": [ + "dash", + "ht", + "s" + ], + "commit": "b0ea352813592424164520a49e86c04600242752", + "sha256": "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q" + } + }, + { + "ename": "mustache-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1xmqh663r5i42a586xn0wzw6h1jkvhbnw5iwvjv96w452slhkr36", + "fetcher": "github", + "repo": "mustache/emacs", + "unstable": { + "version": [ + 20141024, + 1432 + ], + "commit": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "bf9897eb287ca47ced65d7d4e07ea61ea0aec39f", + "sha256": "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk" + } + }, + { + "ename": "mustang-theme", + "commit": "2ed3691edd1cba6abc0c30d2aab732e2ba51bf00", + "sha256": "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr", + "fetcher": "github", + "repo": "mswift42/mustang-theme", + "unstable": { + "version": [ + 20170719, + 946 + ], + "commit": "dda6d04803f1c9b196b620ef564e7768fee15de2", + "sha256": "0pg3iay0iinf361v4ay8kizdxs5rm23ir556cwwgz3m3gbs0mgsh" + } + }, + { + "ename": "mustard-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik", + "fetcher": "github", + "repo": "emacsfodder/emacs-mustard-theme", + "unstable": { + "version": [ + 20170808, + 1319 + ], + "commit": "3b15d992c79590d7ea2503004e2a863b57e274b5", + "sha256": "01ak4ayk46jqawlbb9cqliiqhnn68cq27kryamibdpds8sq0ch83" + } + }, + { + "ename": "mutant", + "commit": "0fc72d1f18eba7501a040d450a85d8dee4e3070f", + "sha256": "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1", + "fetcher": "github", + "repo": "p-lambert/mutant.el", + "unstable": { + "version": [ + 20160124, + 1353 + ], + "deps": [ + "dash" + ], + "commit": "de9cdefe48c880128a8f62c6699d7416e9c8ced1", + "sha256": "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6" + } + }, + { + "ename": "mutt-mode", + "commit": "7d9da58f247dee4f06cbcf6ed532134bc474d309", + "sha256": "0k1r2lsh8s054aapyf7diki00sxf1wdm01cavlqxbvv3zg2gym8d", + "fetcher": "gitlab", + "repo": "flexw/mutt-mode", + "unstable": { + "version": [ + 20190302, + 1515 + ], + "commit": "92763c5ff9abbf4ef91ce15fa7cc6b23da1cfa2d", + "sha256": "0n04500kr4d3qg6g98nzmdjcdy7qqs5r7f9cbi50r15jr9ihsjvx" + } + }, + { + "ename": "mvn", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs", + "fetcher": "github", + "repo": "apg/mvn-el", + "unstable": { + "version": [ + 20181002, + 1617 + ], + "commit": "ffa40235b7dabb6c6c165f64f32a963cde8031f0", + "sha256": "0ximk0aan7jqn5x7fk4pj35bxhi6zaspvyxrmac9kxaiz8znwffr" + } + }, + { + "ename": "mw-thesaurus", + "commit": "53e4a552b8a7527433b11c377e1257fabceb8049", + "sha256": "10v3a09sz31ndj0ldpz0c3s45s62gyvdw0iq0c0dkg4da2rvicww", + "fetcher": "github", + "repo": "agzam/mw-thesaurus.el", + "unstable": { + "version": [ + 20190620, + 2330 + ], + "deps": [ + "dash", + "request" + ], + "commit": "8327bae11588bcad5d73dcfbeb5e8d10f623d6b6", + "sha256": "0snv5v4c5f0hnixrii16xp55w0faw3hirmaj19fnf76shnpg4kwy" + } + }, + { + "ename": "mwim", + "commit": "b7e1aa2fa1294b27ed7b6c5bdd5844fa5c37df72", + "sha256": "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k", + "fetcher": "github", + "repo": "alezost/mwim.el", + "unstable": { + "version": [ + 20181110, + 1900 + ], + "commit": "b4f3edb4c0fb8f8b71cecbf8095c2c25a8ffbf85", + "sha256": "0l3k611gp9g2x2vfmh92wnhnda81dslpwwpb8mxmzk308man77ya" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "462207227b98a6a4356d51419f5ad5ba9356e5cf", + "sha256": "06lw6064i82daasgm87gm58d142pypqc1q3cnx1cm35hyj4skd32" + } + }, + { + "ename": "mxf-view", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "1a8hlp0r04p1cww3dmsqdxlm3ll522wjb0rnmj80d7mqizkbf52p", + "fetcher": "github", + "repo": "t-suwa/mxf-view", + "unstable": { + "version": [ + 20180501, + 740 + ], + "commit": "6ca3cc93d995fac5fc4d72275e1e984e9857ffcb", + "sha256": "0n0142kc7q4vy0n7winbvnc8zv4janlr2x4mi97f8v70drl4b18h" + } + }, + { + "ename": "myanmar-input-methods", + "commit": "76093af2bba82159784994ec9e17a69cd22bf868", + "sha256": "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd", + "fetcher": "github", + "repo": "yelinkyaw/emacs-myanmar-input-methods", + "unstable": { + "version": [ + 20160106, + 1537 + ], + "commit": "9d4e0d6358c61bde7a2274e430ef71683faea32e", + "sha256": "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86" + } + }, + { + "ename": "mykie", + "commit": "e10504a19e052c080be2ccc9b1b8fd2e73a852e0", + "sha256": "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj", + "fetcher": "github", + "repo": "yuutayamada/mykie-el", + "unstable": { + "version": [ + 20150808, + 2205 + ], + "deps": [ + "cl-lib" + ], + "commit": "7676f0e883af1d1054e404e97691f3c13aba196f", + "sha256": "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "ab8f7549f9018c26278d101af1b90997c9e5e0b3", + "sha256": "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5" + } + }, + { + "ename": "mynt-mode", + "commit": "22eaeb5041155d56483d2ac6b32098456411442b", + "sha256": "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b", + "fetcher": "github", + "repo": "crshd/mynt-mode", + "unstable": { + "version": [ + 20150512, + 2049 + ], + "deps": [ + "virtualenvwrapper" + ], + "commit": "23d4489167bfa899634548cb41ed32fdeb3600c9", + "sha256": "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma" + } + }, + { + "ename": "mysql-to-org", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0jjdv6ywdn1618l36bw3xa3mdgg3rc8r0rdv9xdqx8mmg648a7gj", + "fetcher": "github", + "repo": "mallt/mysql-to-org-mode", + "unstable": { + "version": [ + 20181012, + 2034 + ], + "deps": [ + "s" + ], + "commit": "7c986065adcbe13a525e1da5db8aa4c80b0ef7a3", + "sha256": "15zalc1rciawf5v2nkhf0qnn16c6fdaxs3m8aard3yhyag05ic3d" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "s" + ], + "commit": "0f51b174a0ee6c9820baf9d79783923b270f3ffc", + "sha256": "1gxp1a26sna0p3xq6by8bk4yphhh32bvll0sdm2p3wkpdaci7hyz" + } + }, + { + "ename": "mysql2sqlite", + "commit": "9841d3cfd1ee954eb0ab9b2ca3a3f605eb0fd22a", + "sha256": "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd", + "fetcher": "github", + "repo": "echosa/emacs-mysql2sqlite", + "unstable": { + "version": [ + 20170725, + 2216 + ], + "commit": "8e6e74451c942e2e92f90dc13222b95a7dbb285e", + "sha256": "18jriaj391n4wr0qiva68jf482yx9v9l4xagbzl9vw125lszkngb" + } + }, + { + "ename": "myterminal-controls", + "commit": "4a82a45d9fcafea0795f832bce1bdd7bc83667e2", + "sha256": "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2", + "fetcher": "github", + "repo": "myTerminal/myterminal-controls", + "unstable": { + "version": [ + 20190426, + 421 + ], + "commit": "733cdd7ab4f172b6dca09720fc5ae7dbc248c822", + "sha256": "1z89d3dx77c4v1zz4ngn689ay6m2x04jznnbc6bdqsaanz9znwlz" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "df144b269bc274162602e50c692be20ac9b90547", + "sha256": "02bd47rx2ykz5hhrf1szcqz7s9r5fxz7n3hnwlqap2r6xcv6cpvk" + } + }, + { + "ename": "n4js", + "commit": "82157dfd975635c49ef75eae83e2bdf5fe4ae5c2", + "sha256": "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m", + "fetcher": "github", + "repo": "tmtxt/n4js.el", + "unstable": { + "version": [ + 20150714, + 231 + ], + "deps": [ + "cypher-mode" + ], + "commit": "3991ed8975151d5e8d568e952362df810f7ffab7", + "sha256": "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp" + } + }, + { + "ename": "name-this-color", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "15x3dp135p45gv4qn4ll3pd6zqi4glcpv6fzvjxnx0dcval9z4d8", + "fetcher": "github", + "repo": "knl/name-this-color.el", + "unstable": { + "version": [ + 20151014, + 2030 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "e37cd1291d5d68d4c8d6386eab9cb9d94fd3bcfa", + "sha256": "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n" + } + }, + { + "ename": "named-timer", + "commit": "3e8248bab40fddc97fe48dbd103bc2aa51eb287f", + "sha256": "1k2gkm193fh02vsj8h9kn0y1azispcz1b3ywwmb3cbif51l956g3", + "fetcher": "github", + "repo": "DarwinAwardWinner/emacs-named-timer", + "unstable": { + "version": [ + 20181120, + 2224 + ], + "commit": "670b81e3eddef2e7353a4eedc9553a85306445db", + "sha256": "1inbizxlfgndwxsn8cwnpf4vm42rby7pkjqxyzl7ldq4qln7q8v1" + } + }, + { + "ename": "nameframe", + "commit": "bd314150b3f8ce529a2ae39a71e03bebedfdc6b9", + "sha256": "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp", + "fetcher": "github", + "repo": "john2x/nameframe", + "unstable": { + "version": [ + 20171107, + 56 + ], + "commit": "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8", + "sha256": "1ivklkz3j722wg038bh3hmycp9j64zjrig49vl42mkj6d3ggwilg" + } + }, + { + "ename": "nameframe-perspective", + "commit": "2543af5579d37a3eb52e6fea41da315f5590331e", + "sha256": "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x", + "fetcher": "github", + "repo": "john2x/nameframe", + "unstable": { + "version": [ + 20170406, + 119 + ], + "deps": [ + "nameframe", + "perspective" + ], + "commit": "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8", + "sha256": "1ivklkz3j722wg038bh3hmycp9j64zjrig49vl42mkj6d3ggwilg" + } + }, + { + "ename": "nameframe-projectile", + "commit": "bc17af8ff1694120d12a0cdbfccec78834810acd", + "sha256": "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k", + "fetcher": "github", + "repo": "john2x/nameframe", + "unstable": { + "version": [ + 20160928, + 403 + ], + "deps": [ + "nameframe", + "projectile" + ], + "commit": "aafb8c5c5fbe0510e2f5d5b6b6b5dd0b73abe5d8", + "sha256": "1ivklkz3j722wg038bh3hmycp9j64zjrig49vl42mkj6d3ggwilg" + } + }, + { + "ename": "nameless", + "commit": "8e4ee4dae5f32a8d445dc0cc2455c1f7075c9b3d", + "sha256": "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq", + "fetcher": "github", + "repo": "Malabarba/Nameless", + "unstable": { + "version": [ + 20190429, + 1202 + ], + "commit": "a3a1ce3ec0c5724bcbfe553d831bd4f6b3fe863a", + "sha256": "0pxfn81bc8smik0qksfjbrdjkzy0cbjzbc3ik47zl2i9blmx5krv" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "ab1a5c589378334eafca105af1a17f73b9065423", + "sha256": "107q1rximjnag9r9vgwh0iv687i3rsscbdnjc46f8l16j6vi4n7d" + } + }, + { + "ename": "names", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg", + "fetcher": "github", + "repo": "Malabarba/names", + "unstable": { + "version": [ + 20180321, + 1155 + ], + "deps": [ + "cl-lib" + ], + "commit": "d8baba5360e5253938a25d3e005455b6d2d86971", + "sha256": "11wyha2q8y7bzqq3jrzix8n97ywvsibvddrahqcps1a1yqk4hzfz" + }, + "stable": { + "version": [ + 20151201, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "00862c57ae6363ba86d1e5ce138929a1b6d5c7e6", + "sha256": "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh" + } + }, + { + "ename": "namespaces", + "commit": "de404e9ad3d1e27af24e868e84218d872d5fc795", + "sha256": "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr", + "fetcher": "github", + "repo": "chrisbarrett/elisp-namespaces", + "unstable": { + "version": [ + 20130326, + 2250 + ], + "commit": "3d02525d9b9a5ae6e7be3adefd880121436e6270", + "sha256": "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140" + } + }, + { + "ename": "nand2tetris", + "commit": "90421372b3f60b59762279ac805c61a984606d11", + "sha256": "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd", + "fetcher": "github", + "repo": "CestDiego/nand2tetris.el", + "unstable": { + "version": [ + 20171201, + 1813 + ], + "commit": "33acee34d24b1c6a87db833b7d23449cf858f64f", + "sha256": "0sfa674g1qm280s0pc3n6qiiphj5i9ibknckx5capkrkxb5cwpkw" + } + }, + { + "ename": "nand2tetris-assembler", + "commit": "90421372b3f60b59762279ac805c61a984606d11", + "sha256": "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy", + "fetcher": "github", + "repo": "CestDiego/nand2tetris.el", + "unstable": { + "version": [ + 20171201, + 1813 + ], + "deps": [ + "nand2tetris" + ], + "commit": "33acee34d24b1c6a87db833b7d23449cf858f64f", + "sha256": "0sfa674g1qm280s0pc3n6qiiphj5i9ibknckx5capkrkxb5cwpkw" + } + }, + { + "ename": "nanowrimo", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31", + "fetcher": "bitbucket", + "repo": "gvol/nanowrimo.el", + "unstable": { + "version": [ + 20151105, + 228 + ], + "commit": "25e2ca20ed3486e3241a1b9a6cbca77f0d4bac61", + "sha256": "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w" + } + }, + { + "ename": "naquadah-theme", + "commit": "671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f", + "sha256": "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1", + "fetcher": "github", + "repo": "jd/naquadah-theme", + "unstable": { + "version": [ + 20190225, + 1427 + ], + "commit": "430c3b7bd51922cb616b3f60301f4e2604816ed8", + "sha256": "0z2dn05xgbdfw6rwgsq31rm5dr098dk411qk83fbx2bkdxxfr60w" + } + }, + { + "ename": "narrow-reindent", + "commit": "73c7f01a009dc7ac1b9da8ce41859695a97b7878", + "sha256": "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0", + "fetcher": "github", + "repo": "emallson/narrow-reindent.el", + "unstable": { + "version": [ + 20150722, + 1906 + ], + "commit": "87466aac4dbeb79597124dd077bf5c704872fd3d", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "87466aac4dbeb79597124dd077bf5c704872fd3d", + "sha256": "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh" + } + }, + { + "ename": "narrowed-page-navigation", + "commit": "e37e993fec280428f094b6c8ec418fe5ba8c6d49", + "sha256": "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7", + "fetcher": "github", + "repo": "david-christiansen/narrowed-page-navigation", + "unstable": { + "version": [ + 20150109, + 519 + ], + "deps": [ + "cl-lib" + ], + "commit": "b215adbac4873f56fbab65772062f0f5be8058a1", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "b215adbac4873f56fbab65772062f0f5be8058a1", + "sha256": "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax" + } + }, + { + "ename": "nash-mode", + "commit": "c8bd080c81b163a6ddcfffc710316b9711935b4a", + "sha256": "1d6nfxn7fc2qv78bf5277sdwfqflag2gihgic8vxrbjlpnizxn1p", + "fetcher": "github", + "repo": "tiago4orion/nash-mode.el", + "unstable": { + "version": [ + 20160830, + 1212 + ], + "commit": "2cd96535eb7d669a94306183e95ee37333872c1a", + "sha256": "0wdkl56pgm6qlgqjs4kqjglnxzjsfjd0y4fiffhxc893gm0psrpg" + } + }, + { + "ename": "nasm-mode", + "commit": "a1a832b3bd7c2f2d3cee8bcfb5421d22acf5523e", + "sha256": "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17", + "fetcher": "github", + "repo": "skeeto/nasm-mode", + "unstable": { + "version": [ + 20190410, + 342 + ], + "commit": "65ca6546fc395711fac5b3b4299e76c2303d43a8", + "sha256": "00rv6m004hcsn71hv3p3rxmrpwajdy02qpi2ymhxx2w3r49ba562" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "d990ed94d902b74a5c834fb567e03307607cee45", + "sha256": "1dyc50a1zskx9fqxl2iy2x74f3bkb2ccz908v0aj13rqfqqnns9j" + } + }, + { + "ename": "nav", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml", + "fetcher": "github", + "repo": "ijt/emacs-nav", + "unstable": { + "version": [ + 20120507, + 707 + ], + "commit": "c5eb234c063f435dbdcd1f8bdc46cfc68c973ebe", + "sha256": "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p" + } + }, + { + "ename": "nav-flash", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3", + "fetcher": "github", + "repo": "rolandwalker/nav-flash", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "53f5bc59e3f32c1192d15637d3979732dacb2c35", + "sha256": "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "9054a0f9b51da9e5207672efc029ba265ba28f34", + "sha256": "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic" + } + }, + { + "ename": "navi-mode", + "commit": "8edf78a0ecd2ff8e6e066b80751a31e11a068c3f", + "sha256": "0pc52iq8lng2g0vpnrhdfxmibc1dx9ksmrjg0303as1yv41fnc69", + "fetcher": "github", + "repo": "alphapapa/navi", + "unstable": { + "version": [ + 20190720, + 2003 + ], + "deps": [ + "outorg", + "outshine" + ], + "commit": "7eb7cf0c4a6ee537ec462f5ec90f00d12e3ca9c2", + "sha256": "0ajmbsdz825v5fidnp30yv1jwl415vc67hlm05a65f92bhs6m3zq" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "5c979b3b3873b0e67751a1321a9e271d066f2022", + "sha256": "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh" + } + }, + { + "ename": "navi2ch", + "commit": "36bea1eca58de15d6106cbd293d941d12ee3d21c", + "sha256": "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3", + "fetcher": "github", + "repo": "naota/navi2ch", + "unstable": { + "version": [ + 20150330, + 216 + ], + "commit": "f39d93c32acd5b9c3a7fb1a9fe14c5e1c4b5288e", + "sha256": "0i0icyaa2zzzl0cr9n1zv44pg2lric8gic58dkjxjv8yyk6y01cn" + } + }, + { + "ename": "navorski", + "commit": "9246cef94029d2da2211345c076ed55deb91e8fa", + "sha256": "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7", + "fetcher": "github", + "repo": "roman/navorski.el", + "unstable": { + "version": [ + 20141203, + 1824 + ], + "deps": [ + "dash", + "multi-term", + "s" + ], + "commit": "698c1c62da70164aebe9a7a5d034778fbc30ea5b", + "sha256": "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l" + }, + "stable": { + "version": [ + 0, + 2, + 7 + ], + "deps": [ + "dash", + "multi-term", + "s" + ], + "commit": "4546d4e4dfbec20ee8c423c045408a3388a9eab9", + "sha256": "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5" + } + }, + { + "ename": "naysayer-theme", + "commit": "bc3ed48e21b13998b77dd0f28ea02a6224abd367", + "sha256": "1mlbhq2x1676cgsrl2l4kd9r7im9cjzk9lww02p7p1pdfp8k01qf", + "fetcher": "github", + "repo": "nickav/naysayer-theme.el", + "unstable": { + "version": [ + 20190704, + 201 + ], + "commit": "8eed91b268403cb9043e0c9d9aaf324db1ab7d7e", + "sha256": "00gwj4dw0ky94fhgy6zckmh2s5lfphvc0hkcqvcvvqcwy8a03ynv" + } + }, + { + "ename": "ncl-mode", + "commit": "2eea3936b8a3a7546450d1d7399e0f86d855fefd", + "sha256": "1niy0w24q6q6j7s0l9fcaqai7zz2gg1qlk2s9sxb8j79jc41y47k", + "fetcher": "github", + "repo": "yyr/ncl-mode", + "unstable": { + "version": [ + 20180129, + 703 + ], + "commit": "602292712a9e6b7e7c25155978999e77d06b7338", + "sha256": "0sv44hn2ylick7ywpcbij8h2vxdj06zridjdmcfgpv5d090dbl9n" + }, + "stable": { + "version": [ + 0, + 99, + 2 + ], + "commit": "164e504e25cec1812fbae5c3dae164d9f6018ece", + "sha256": "1m3llm87qgd7sr6ci22nd835vdg0qprs5m9lqcx74k689jl89cni" + } + }, + { + "ename": "nclip", + "commit": "f03f254afbe561e0a6dd6c287dcc137da05376cd", + "sha256": "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw", + "fetcher": "github", + "repo": "maio/nclip.el", + "unstable": { + "version": [ + 20130617, + 2015 + ], + "commit": "af88e38b1f04be02bf2e57affc662dbd0f828e67", + "sha256": "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis" + } + }, + { + "ename": "neato-graph-bar", + "commit": "49c5bd4e1506a28ada9856e5f70e520890123d16", + "sha256": "1p4jmla75ny443cv7djk3nvl3ikchllnsivxx9yds14ynk4jxhgb", + "fetcher": "gitlab", + "repo": "RobertCochran/neato-graph-bar", + "unstable": { + "version": [ + 20181130, + 1649 + ], + "commit": "a7ae35afd67911e8924f36e646bce0d3e3c1bbe6", + "sha256": "0sx2m2j00xhcb8l7fw595zsn9wjhcj4xb163rjqd3d1wjrk6fpn8" + } + }, + { + "ename": "nemerle", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1rbalq3s2inwz9cf6bfmnxgqd9ylba3crflfjs6b4mnp33z4swny", + "fetcher": "github", + "repo": "rsdn/nemerle", + "unstable": { + "version": [ + 20161029, + 2023 + ], + "commit": "f7ebf8f2cff477c3d9b8abdb6470e7b8d80f51ce", + "sha256": "0nfj072wvvyzbc6xfw2m9fmfx19rv65s4l3hy2faa4d4skw425zz" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "556270ce8b97668a65e9ec20a05f78c3dffeac60", + "sha256": "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48" + } + }, + { + "ename": "neon-mode", + "commit": "c6b2a4898bf21413c4d9e6714af129bbb0a23e1a", + "sha256": "0kgyc0rkxvvks5ykizfv82f2cx7ck17sk63plj7bld6khlcgv0y6", + "fetcher": "github", + "repo": "Fuco1/neon-mode", + "unstable": { + "version": [ + 20180406, + 1156 + ], + "commit": "99d15e46beaf1e7d71e39a00cce810df1f33229d", + "sha256": "07vsi07m5q070fvkqhz32qa2y7dgnyi1kggairimbiwbn98bh642" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "commit": "99d15e46beaf1e7d71e39a00cce810df1f33229d", + "sha256": "07vsi07m5q070fvkqhz32qa2y7dgnyi1kggairimbiwbn98bh642" + } + }, + { + "ename": "neotree", + "commit": "9caf2e12762d334563496d2c75fae6c74cfe5c1c", + "sha256": "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06", + "fetcher": "github", + "repo": "jaypei/emacs-neotree", + "unstable": { + "version": [ + 20181121, + 2026 + ], + "deps": [ + "cl-lib" + ], + "commit": "c2420a4b344a9337760981c451783f0ff9df8bbf", + "sha256": "1wfx37kvsfwrql8zs2739nx7wb51m26vwlcz1jygbrb62n6wq14k" + }, + "stable": { + "version": [ + 0, + 5, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "5e1271655170f4cdc6849258e383c548a4e6e3d0", + "sha256": "0hx72fq10772bbyqrj7mhhp02k26cccjxdadiqm1ykainhfmn1x0" + } + }, + { + "ename": "nerdtab", + "commit": "59bc273db1d34997ea5d51cc6adc33ec785bc7f3", + "sha256": "0q7dyqxq058195pgb1pjy27gcrr96096xcvvrapkarym7jsa2wy3", + "fetcher": "github", + "repo": "casouri/nerdtab", + "unstable": { + "version": [ + 20180811, + 339 + ], + "commit": "74ccc14d7956712e477a34b4a733284e8b3832a6", + "sha256": "1cpdarxw9pida7pg7lgq4p4lnq2l3ny2y96j0ckxx7r04p24q611" + } + }, + { + "ename": "netease-music", + "commit": "ca3d4a8f8d9080e26a8fe2c38c0001d5cfc3c88c", + "sha256": "1vb81f1l45v6rny91rcqvnhzqh5ybdr0r39yrcaih8zhvamk685z", + "fetcher": "github", + "repo": "nicehiro/netease-music", + "unstable": { + "version": [ + 20190708, + 215 + ], + "deps": [ + "names" + ], + "commit": "39a7d7a15f63435d9efaf469ea7c971069c07acb", + "sha256": "01wkd8ifsa5l6jh4xdmj40xfx0hyxv4c0a8s6z5ynmqvmbxvbw5n" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "f3bba59664e1c4c4ed47f16fa786151272d99a70", + "sha256": "1a6r7cmxvg83fa285drli2nac9a56kyd2pn4y1vfcg7jiy6czhiw" + } + }, + { + "ename": "netherlands-holidays", + "commit": "abdbce47cb5c623696b5d6fcb3bef2d995d90195", + "sha256": "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf", + "fetcher": "github", + "repo": "abo-abo/netherlands-holidays", + "unstable": { + "version": [ + 20150202, + 1617 + ], + "commit": "26236178cdd650df9958bf5a086e184096559f00", + "sha256": "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z" + } + }, + { + "ename": "netrunner", + "commit": "a8b1d8c31383b6ec3788ad6c9adf0117190484c9", + "sha256": "1lk5acbv1fw7q9jwpk0l5hqb9wnscg2kj3qn6b4pwn9ggf8axkpv", + "fetcher": "github", + "repo": "Kungsgeten/netrunner", + "unstable": { + "version": [ + 20160910, + 2332 + ], + "deps": [ + "company", + "helm", + "popup" + ], + "commit": "c64672992175c8c1073c0f56c2e471839db71a0f", + "sha256": "1jj8qsq4xa93h3srskhw1l6igzf9jhwl8hfa73zvqr8dhqhp149k" + } + }, + { + "ename": "network-watch", + "commit": "e129679b3e2074af3e3de1b2ccce53a2fa5e9f65", + "sha256": "0y3vjrh9vlfg44c01ylkszisliwfy5zb8c5z3qrmf3yj4q096f42", + "fetcher": "github", + "repo": "jamiguet/network-watch", + "unstable": { + "version": [ + 20171123, + 1146 + ], + "commit": "958dd0d419e4f9402648a86b754091ba346e01b8", + "sha256": "1xqp7aghc8xd1733azl27mjf57qvm0036qbkqmaks2ip8s8c6arj" + } + }, + { + "ename": "never-comment", + "commit": "ef3f8e712c10d63fea009951d7916fe376267cbe", + "sha256": "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s", + "fetcher": "github", + "repo": "To1ne/never-comment", + "unstable": { + "version": [ + 20140104, + 2207 + ], + "commit": "74ded8f1e7f23240f5f6032d0451fb0a51733bc4", + "sha256": "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy" + } + }, + { + "ename": "newlisp-mode", + "commit": "e5c79c56bddfeb498d28f2575184434fbb93465d", + "sha256": "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd", + "fetcher": "github", + "repo": "kosh04/newlisp-mode", + "unstable": { + "version": [ + 20160226, + 1545 + ], + "commit": "ac23be40c81a360988ab803d365f1510733f6db4", + "sha256": "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r" + } + }, + { + "ename": "nexus", + "commit": "80d3665e9a31aa3098df456dbeb07043054e42f5", + "sha256": "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd", + "fetcher": "github", + "repo": "juergenhoetzel/emacs-nexus", + "unstable": { + "version": [ + 20140114, + 1305 + ], + "commit": "c46f499951b90839aa8683779fe43d8f01672a60", + "sha256": "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27" + } + }, + { + "ename": "ng2-mode", + "commit": "a856ecd8aca2d9232bb20fa7019de9e1dbbb19f4", + "sha256": "0sr4yh5nkgqb1qciq9mzzhr64350bi2wjm6z9d616nkjw72saz1r", + "fetcher": "github", + "repo": "AdamNiederer/ng2-mode", + "unstable": { + "version": [ + 20190524, + 1912 + ], + "deps": [ + "typescript-mode" + ], + "commit": "52fdfe27247548b46f6171eebaf887a90dd67463", + "sha256": "1g8za385clky1waba4ggi5bl2q4h26gz00lkzghn3zvxg5nbh47d" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "typescript-mode" + ], + "commit": "57e6e4e388624853bc3b79bf5b17d2663ce26fa5", + "sha256": "08dm8clw3xm0c3xcbl3q4dm9n7cxhpldnwxjaxs1glc5l21qdg4q" + } + }, + { + "ename": "nginx-mode", + "commit": "a6da3640b72496e2b32e6ed21aa39df87af9f7f3", + "sha256": "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c", + "fetcher": "github", + "repo": "ajc/nginx-mode", + "unstable": { + "version": [ + 20170612, + 437 + ], + "commit": "a2bab83c2eb233d57d76b236e7c141c2ccc97005", + "sha256": "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs" + }, + "stable": { + "version": [ + 1, + 1, + 9 + ], + "commit": "a2bab83c2eb233d57d76b236e7c141c2ccc97005", + "sha256": "17dh5pr3gh6adrbqx588gimxbb2fr7iv2qrxv6r48w2727l344xs" + } + }, + { + "ename": "niceify-info", + "commit": "0b2a923da7363d904eb848eb335736974e05dba1", + "sha256": "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl", + "fetcher": "github", + "repo": "aaron-em/niceify-info.el", + "unstable": { + "version": [ + 20160416, + 1244 + ], + "commit": "38df5062bc3b99d1074cab3e788b5ed66732111c", + "sha256": "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "66b45916f1994e16ee023d29fa7cf8fec48078f1", + "sha256": "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7" + } + }, + { + "ename": "niconama", + "commit": "ad8e7189e9c4c5d86cef268f45be0dda2d702805", + "sha256": "1v4cvcxrl254jhfl1q5ld0gn4598fcvv0pfhilh2jy76w5acqx81", + "fetcher": "github", + "repo": "NOBUTOKA/niconama.el", + "unstable": { + "version": [ + 20170910, + 1501 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "96e7553e50e6bf7b58aac50f52c9b0b8edb41c56", + "sha256": "1gihjzwl6309vgav5z7jzi8jb7is8vx8lr23kb6h373gwws4bi10" + } + }, + { + "ename": "night-owl-theme", + "commit": "77fe194a0e58bdb9789c85f3c50895eb886b4016", + "sha256": "121jc59ry60h1ml1vxx4a6l4a6jcxk7fc4wz32fqv5pr03rzgs7h", + "fetcher": "github", + "repo": "aaronjensen/night-owl-emacs", + "unstable": { + "version": [ + 20190623, + 657 + ], + "commit": "340ebdde6214bee0918281672ec535ba1e8f5dbe", + "sha256": "0zg5mqbmi8qlp9zdyafjnrazzffbqb27zl7j7ay2ssr9k7czhqds" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "3d1b6b319173c2f0aaf42a294ab01fba473f11c4", + "sha256": "157zdnpy18ca9biv5bxv3qvg62sh3qmpp2lv9q8sgasg0wvb9vpk" + } + }, + { + "ename": "nikola", + "commit": "8ef4f7c2f1c48edd7b4a6fdcda51908d216c631c", + "sha256": "1d0a80y910klayb9jf0ahn5lj9l6xdhwcp2in3ridmqislavrcnv", + "fetcher": "git", + "url": "https://git.daemons.it/drymer/nikola.el/", + "unstable": { + "version": [ + 20170703, + 2021 + ], + "deps": [ + "async" + ], + "commit": "964715ac30943c9d6976999cad208dc60d09def0", + "sha256": "0b0bpw9r2xi1avzq76pl58bbk1shb57d3bmzd9d53d07gj5c9399" + } + }, + { + "ename": "nim-mode", + "commit": "dc2ccb5f24b9d55c77eaa7952a9e6a2e0ed7be24", + "sha256": "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6", + "fetcher": "github", + "repo": "nim-lang/nim-mode", + "unstable": { + "version": [ + 20190710, + 2254 + ], + "deps": [ + "commenter", + "epc", + "flycheck-nimsuggest", + "let-alist" + ], + "commit": "0d46c05cdfa65d37f8cb5da860ff3052782f6bbd", + "sha256": "1lzrfllmcya7l2aqbh0j5wly3dx3wvag3b8gbmpjzd7cm4m6nax7" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "commenter", + "epc", + "flycheck", + "let-alist" + ], + "commit": "86abed21b9b718ac65cc167f208e0bd5b92c79ed", + "sha256": "0h1paf9z6xvkay97ns74w2w9plwi46md5f2kik4jvjy74p57gxal" + } + }, + { + "ename": "nimbus-theme", + "commit": "fc0e6b456b76e2379c64a86ad844362c58146dc6", + "sha256": "1hy4rc1v5wg7n6nazdq09gadirb0qvn887mmdavwjnnac45xyi18", + "fetcher": "github", + "repo": "m-cat/nimbus-theme", + "unstable": { + "version": [ + 20190724, + 740 + ], + "commit": "74614940e8e47d348d3102d767188fa6c6d879b1", + "sha256": "13n7m9jwkvcxbqvw2lp7xskmxzj6n1pisn14kb09cphlrvyg1hmj" + } + }, + { + "ename": "ninja-mode", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1v6wy9qllbxl37fp9h47000lwp557qss6fdjb3a1f20msg8f70av", + "fetcher": "github", + "repo": "ninja-build/ninja", + "unstable": { + "version": [ + 20181024, + 1439 + ], + "commit": "e0bc2e5fd9036a31d507881e1383adde3672aaef", + "sha256": "1kcz81v09fm2fasx9wymrckgxvxb9d5y6kywcfi6mbn4mz6laww8" + }, + "stable": { + "version": [ + 1, + 9, + 0 + ], + "commit": "b25c08bda4949192c69cea4cee057887341a2ffc", + "sha256": "1q0nld3g0d210zmdjyjzjz2xb2bw1s58gj6zsx7p8q30yh0wg610" + } + }, + { + "ename": "nix-buffer", + "commit": "08b978724ff26b3ea7a134d307d888c80e2a92a9", + "sha256": "1fjkf88345v9l2v2mk8a057mw0p0rckf6rjf00y5464dyhh58vcd", + "fetcher": "github", + "repo": "shlevy/nix-buffer", + "unstable": { + "version": [ + 20180212, + 1518 + ], + "deps": [ + "f" + ], + "commit": "db57cda36e7477bdc7ef5a136357b971b1d4d099", + "sha256": "0b01b4l9c70sad5r5py5hvg7s6k6idwwp0pv3rn8rj0fq5wlyixj" + }, + "stable": { + "version": [ + 3, + 1, + 1 + ], + "deps": [ + "f" + ], + "commit": "db57cda36e7477bdc7ef5a136357b971b1d4d099", + "sha256": "0b01b4l9c70sad5r5py5hvg7s6k6idwwp0pv3rn8rj0fq5wlyixj" + } + }, + { + "ename": "nix-haskell-mode", + "commit": "aeb879e2e8b017d3e1ccdc8d19f17d09b2ad5f1b", + "sha256": "1rygqmq01p27gbda6hgnzisng7xqf63x462a3x31ym67ivxsyqz3", + "fetcher": "github", + "repo": "matthewbauer/nix-haskell-mode", + "unstable": { + "version": [ + 20190615, + 135 + ], + "deps": [ + "haskell-mode", + "nix-mode" + ], + "commit": "68efbcbf949a706ecca6409506968ed2ef928a20", + "sha256": "1zv3sj3pgc2chv3880nyixvdmpw9sm4h153xw7gm26v2yhhkfdnn" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "flycheck", + "haskell-mode", + "nix-mode" + ], + "commit": "1622924f0f6668f9b42f135323087ba94b1bf252", + "sha256": "09x4b939y0w4irnkvpxhn1jkzy4id9vhfkl5b9f14jjdny2d6l3a" + } + }, + { + "ename": "nix-mode", + "commit": "e1870d786dbfac3b14386c8030e06f2d13ab9da6", + "sha256": "10f3ly4860lkxzykw4fbvhn3i0c2hgj77jfjbhlk2c1jz9x4yyy5", + "fetcher": "github", + "repo": "NixOS/nix-mode", + "unstable": { + "version": [ + 20190703, + 526 + ], + "commit": "ddf091708b9069f1fe0979a7be4e719445eed918", + "sha256": "0s8ljr4d7kys2xqrhkvj75l7babvk60kxgy4vmyqfwj6xmcxi3ad" + }, + "stable": { + "version": [ + 1, + 4, + 1 + ], + "commit": "2f4bd0f09c829c2c5f49be2c5455352eaa4c2e3d", + "sha256": "04xpgg9nba5m1bl7ci5l456whcb8nfhsbvgxyx89bp0zqgr005q7" + } + }, + { + "ename": "nix-sandbox", + "commit": "66be755a6566e8c0cfb5aafa50de29b434023c7a", + "sha256": "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k", + "fetcher": "github", + "repo": "travisbhartwell/nix-emacs", + "unstable": { + "version": [ + 20171004, + 1706 + ], + "deps": [ + "dash", + "s" + ], + "commit": "45c8d90748304c90e1503c9fa8db0443f3d4bd89", + "sha256": "0hsr8acsvfb42drb8f2wkpgqyh3csny7l82qv4k2l83xf022cs1d" + } + }, + { + "ename": "nix-update", + "commit": "c59e828d4cad3d75344b34b9666349250e53b6ea", + "sha256": "0if83pvjvr0347301j553bsxrrxniyykq20457cdkzlvva52c0b3", + "fetcher": "github", + "repo": "jwiegley/nix-update-el", + "unstable": { + "version": [ + 20190124, + 1935 + ], + "commit": "fc6c39c2da3fcfa62f4796816c084a6389c8b6e7", + "sha256": "01cpl4w49m5dfkx7l8g1q183s341iz6vkjv2q4fbx93avd7msjgi" + } + }, + { + "ename": "nixos-options", + "commit": "6846c7d86e70a9dd8300b89b61435aa7e146be96", + "sha256": "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm", + "fetcher": "github", + "repo": "travisbhartwell/nix-emacs", + "unstable": { + "version": [ + 20160209, + 1841 + ], + "commit": "45c8d90748304c90e1503c9fa8db0443f3d4bd89", + "sha256": "0hsr8acsvfb42drb8f2wkpgqyh3csny7l82qv4k2l83xf022cs1d" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "json" + ], + "commit": "5fc8fa29bea9dd8e9c822af92f9bc6ddc223635f", + "sha256": "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld" + } + }, + { + "ename": "nlinum-hl", + "commit": "b13a886535a5c33fe389a6b616988b7377249625", + "sha256": "17lcp1ira7yhch9npg9sf3npwg06yh9zyhg0lnb22xg09lbndj0x", + "fetcher": "github", + "repo": "hlissner/emacs-nlinum-hl", + "unstable": { + "version": [ + 20190301, + 2117 + ], + "deps": [ + "cl-lib", + "nlinum" + ], + "commit": "dc6b365a58e06c7d637a76a31c71a40b20da8b56", + "sha256": "1fvvyc77iggil9mzy8hd4vx8xw96bkfx6pmlb9ami428qp8r45g7" + }, + "stable": { + "version": [ + 1, + 0, + 6 + ], + "deps": [ + "cl-lib", + "nlinum" + ], + "commit": "dc6b365a58e06c7d637a76a31c71a40b20da8b56", + "sha256": "1fvvyc77iggil9mzy8hd4vx8xw96bkfx6pmlb9ami428qp8r45g7" + } + }, + { + "ename": "nlinum-relative", + "commit": "eb418a464b112f9bb1bbd050e9602b60c0fcce1c", + "sha256": "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4", + "fetcher": "github", + "repo": "CodeFalling/nlinum-relative", + "unstable": { + "version": [ + 20160526, + 708 + ], + "deps": [ + "nlinum" + ], + "commit": "5b9950c97ba79a6f0683e38b13da23f39e01031c", + "sha256": "0h00ghr5sipayfxz7ykzy7bg1p1vkbwxl5xch3x0h8j2cp1dqc3d" + } + }, + { + "ename": "nm", + "commit": "cdad6565e83dd79db538d3b6a45e932864246da2", + "sha256": "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw", + "fetcher": "github", + "repo": "tjim/nevermore", + "unstable": { + "version": [ + 20151110, + 1910 + ], + "deps": [ + "company", + "notmuch", + "peg" + ], + "commit": "5a3f29174b3a4b2b2e7a700a862f3b16a942687e", + "sha256": "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak" + } + }, + { + "ename": "nnir-est", + "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", + "sha256": "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv", + "fetcher": "github", + "repo": "kawabata/nnir-est", + "unstable": { + "version": [ + 20180710, + 2103 + ], + "commit": "6d0d5c8e33f4e4ccbc22350324c0990d2676fb5a", + "sha256": "1xmv2mddhvcvnyndpyv42gl8zn5dx7lvd03pl43bjp38srn4aj6g" + } + }, + { + "ename": "nnreddit", + "commit": "4581c76fee699eb9f41eb0f00e4ccd4a008b8399", + "sha256": "0pfb57pwdyhsrmgzbf83xrq10xjhm6sk6xyz8rd15gjqka2mc8c2", + "fetcher": "github", + "repo": "dickmao/nnreddit", + "unstable": { + "version": [ + 20190726, + 2200 + ], + "deps": [ + "json-rpc", + "virtualenvwrapper" + ], + "commit": "8e901b207f717227b4fe25e6a4a5dc61b103e8b7", + "sha256": "1hdna9y6jk10s3mx45k39k6cb670s1wx79pfgaivkpjqhcdj5xx5" + } + }, + { + "ename": "no-emoji", + "commit": "af6b04c1f95468254f2cf361964df9fd25d23586", + "sha256": "1lr6bzjxwn3yzw0mq36h2k2h8bqb1ngin42swhv022yx6a022zn2", + "fetcher": "github", + "repo": "ecraven/no-emoji", + "unstable": { + "version": [ + 20180515, + 1837 + ], + "commit": "ebceeab50dbfe4d60235180a57633745dbc18c77", + "sha256": "19wni50073dwspppx0xlryagg2fgg0jiz5kqf1b1wmaq8xn5b8r9" + } + }, + { + "ename": "no-littering", + "commit": "57a2fb9524df3fdfdc54c403112e12bd70888b23", + "sha256": "15w784ir48v8biiaar8ip19s9y3wn5831m815kcw02mgzy3bfjmh", + "fetcher": "github", + "repo": "emacscollective/no-littering", + "unstable": { + "version": [ + 20190729, + 642 + ], + "deps": [ + "cl-lib" + ], + "commit": "7480853e0fe7d3ddd89407122ebe8068f96ae579", + "sha256": "0nbrsyjjq6mc116hzqn9fd0lmqrqcnf9jzzwyv8mp22szk39zyvp" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "99ae007ead688689b5b25a9482f98ec67663bb61", + "sha256": "0sg4qh9a6k1m24qamsf7ldpghjcawbdgh114gy08jnw478nf05kv" + } + }, + { + "ename": "no-spam", + "commit": "77315d545c4df63a1e7f9c90e80a36746da4d986", + "sha256": "1rg9c53izvpsyrvn0lpfkmw4lbz5vhh501zjljz65d01pf8zmkkl", + "fetcher": "github", + "repo": "mamapanda/no-spam", + "unstable": { + "version": [ + 20190724, + 1854 + ], + "commit": "860860e4a0d59bd15c8e092dc42f5f7f769a428e", + "sha256": "00xrbgh0pw6apm51lyvwdlc8rlkb2i713cclibaqffi18qz5z6kf" + } + }, + { + "ename": "noaa", + "commit": "1272203f85375e50d951451bd5fd3baffd57bbfa", + "sha256": "11hzpmgapmf6dc5imvj5jvzcy7hfddyz74lqmrq8128i72q1sj0v", + "fetcher": "github", + "repo": "thomp/noaa", + "unstable": { + "version": [ + 20190202, + 1634 + ], + "deps": [ + "cl-lib", + "dash", + "request" + ], + "commit": "532eb14328027ee29e124768feec23a8ef7ee798", + "sha256": "1qc9im01fw7k9907a9d2a87hndyyn3sk1kw31cylsvrzsb7ss9f9" + } + }, + { + "ename": "noccur", + "commit": "41f15b8298390310e95cbe137ea1516c0be10b94", + "sha256": "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g", + "fetcher": "github", + "repo": "NicolasPetton/noccur.el", + "unstable": { + "version": [ + 20150514, + 2120 + ], + "commit": "6cc02ce07178a61ae38a849f80472c01969272bc", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "6cc02ce07178a61ae38a849f80472c01969272bc", + "sha256": "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7" + } + }, + { + "ename": "nocomments-mode", + "commit": "d88074771b581d21f48b707f93949f7224a28633", + "sha256": "1qhalhs29fb3kv5ckk8ny9fbqn2c4r4lwnc566j3bb1caqf2j7g0", + "fetcher": "github", + "repo": "Lindydancer/nocomments-mode", + "unstable": { + "version": [ + 20170213, + 2037 + ], + "commit": "5a41a20cc44dfe4a9ea584354ed6dbc15dd92f46", + "sha256": "0jwwnypa0lx812p3dqqn9c05g27qavnvr23pzphydx9i15nz80g0" + } + }, + { + "ename": "noctilux-theme", + "commit": "c0a18df34c105da8c5710643cd8027402bb07c95", + "sha256": "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp", + "fetcher": "github", + "repo": "sjrmanning/noctilux-theme", + "unstable": { + "version": [ + 20161113, + 1442 + ], + "commit": "a3265a1be7f4d73f44acce6d968ca6f7add1f2ca", + "sha256": "12xx0v8d97kjvlkj0ii78vxxvzgmcfc4hzv4yvxymg50rsy0zzqi" + } + }, + { + "ename": "node-resolver", + "commit": "60537705dc922bd50220d378a2992cf36464eb0c", + "sha256": "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh", + "fetcher": "github", + "repo": "meandavejustice/node-resolver.el", + "unstable": { + "version": [ + 20140930, + 1723 + ], + "deps": [ + "cl-lib" + ], + "commit": "ef9d0486907a746a80b02ffc6208a09c168a9f7c", + "sha256": "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7" + } + }, + { + "ename": "nodejs-repl", + "commit": "14f22f97416111fcb02e299ff2b20c44fb75f049", + "sha256": "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907", + "fetcher": "github", + "repo": "abicky/nodejs-repl.el", + "unstable": { + "version": [ + 20190616, + 1753 + ], + "commit": "d43b8b276a90ccf980150a7d6fbb1f4d2a7cbe20", + "sha256": "1kkj888k9x5n0i7xkia177gzsa84my3g8n0n7v65281cc4f1yhk5" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "0deb44e6c800daf061d9f8c07760b1e381382766", + "sha256": "1kkj888k9x5n0i7xkia177gzsa84my3g8n0n7v65281cc4f1yhk5" + } + }, + { + "ename": "nodemcu-mode", + "commit": "a414f8b30954a50d74e4ae42abcf436cfca8d2b4", + "sha256": "0xx5dys8vifgaf3hb4q762xhhn1jybc4xwajqj98iban4nrakb3a", + "fetcher": "github", + "repo": "andrmuel/nodemcu-mode", + "unstable": { + "version": [ + 20180501, + 2225 + ], + "commit": "8effd9f3df40b6b92a2f05e4d54750b624afc4a7", + "sha256": "1s19sshsm4cdx8kj5prmsq8ryz4843xcqmdayvlfl99jxsp9j4pm" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "8effd9f3df40b6b92a2f05e4d54750b624afc4a7", + "sha256": "1s19sshsm4cdx8kj5prmsq8ryz4843xcqmdayvlfl99jxsp9j4pm" + } + }, + { + "ename": "nodenv", + "commit": "272df58a1112c8c082c740d54bd37469af513d4a", + "sha256": "15wqlpswp4m19widnls21rm5n0ijfhmw3vyx0ch5k2bhi4a5rip6", + "fetcher": "github", + "repo": "twlz0ne/nodenv.el", + "unstable": { + "version": [ + 20181023, + 1543 + ], + "commit": "832fb0cbac4513edde7ebd6d1ab971c54313be36", + "sha256": "0hn29y8gv9y9646yacnhirx2iz1z7h0p3wrzjn5axbhw0y382qhq" + } + }, + { + "ename": "noflet", + "commit": "df33a7230e0e4a67ce75e5cce6a436e2a0d205e8", + "sha256": "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3", + "fetcher": "github", + "repo": "nicferrier/emacs-noflet", + "unstable": { + "version": [ + 20141102, + 1454 + ], + "commit": "7ae84dc3257637af7334101456dafe1759c6b68a", + "sha256": "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf" + } + }, + { + "ename": "nofrils-acme-theme", + "commit": "c59ddaa5e41d3c25c446b1ed1905d7f88b448e0a", + "sha256": "01xqsn8whczv34lfa9vbm5rpvrvsrlpav8pzng10jvax1a9wdp3a", + "fetcher": "gitlab", + "repo": "esessoms/nofrils-theme", + "unstable": { + "version": [ + 20180620, + 1248 + ], + "commit": "98ad7bfaff1d85b33dc162645670285b067c6f92", + "sha256": "0f8s7mhcs1ym4an8d4dabfvhin30xs2d0c5gv875hsgz8p3asgxs" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "7825f88cb881a84eaa5cd1689772819a18eb2943", + "sha256": "009did3i3i8yi0virq606l02w1mw0gdyiqablqg7m368gx0gfvh5" + } + }, + { + "ename": "nord-theme", + "commit": "31cb60069825abe3998c8b43bc9177b39a7f3659", + "sha256": "0p4fqg4i2ayimd8kxsqnb1xkapzhhxf7szxi1skva4dcym3z67cc", + "fetcher": "github", + "repo": "arcticicestudio/nord-emacs", + "unstable": { + "version": [ + 20190616, + 1757 + ], + "commit": "52756cdc909b29691eef228897b3de561cd99f43", + "sha256": "02nyczvdj0xnzq8vcyknr862dq3mj82djha5v44n1hs2dwipfdjf" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "ba8f9b98a5028d3ec8c44e43889e7edda9a3b8dd", + "sha256": "02nyczvdj0xnzq8vcyknr862dq3mj82djha5v44n1hs2dwipfdjf" + } + }, + { + "ename": "nordless-theme", + "commit": "3de9da6cb8c1a75ff1d41a69e156c21be00713b6", + "sha256": "1ylvqh5hf7asdx2mn57fsaa7ncfgfzq1ss50k9665k32zvv3zksx", + "fetcher": "github", + "repo": "lthms/nordless-theme.el", + "unstable": { + "version": [ + 20190729, + 1556 + ], + "deps": [ + "colorless-themes" + ], + "commit": "30926ee9e8de50ae3ccc83956e048f68ed69736b", + "sha256": "0mqgwbjgwz3mdi6q66y816pj5sac7mv35jlzfkfv1d0kl7r7abcr" + } + }, + { + "ename": "northcode-theme", + "commit": "25dcd4dd8189ad0fbf6c31874daa618bf1957863", + "sha256": "0x4dryx174kcjzm11z9q5qqlzr1c9zr0p32zwgbvgypgnvjy6i4g", + "fetcher": "github", + "repo": "Northcode/northcode-theme.el", + "unstable": { + "version": [ + 20180423, + 1649 + ], + "commit": "4d3750461ba25ec45321318b5f1af4e8fdf16147", + "sha256": "1yin5i38jdp47k6b7mc0jkv9ihl8nk5rpqin4qmwbhb871zxn7ma" + } + }, + { + "ename": "nose", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1xdqsxq06x2m9rcfn1qh89g0mz1rvzl246d3sfmciwcyl932x682", + "fetcher": "bitbucket", + "repo": "durin42/nosemacs", + "unstable": { + "version": [ + 20140520, + 1648 + ], + "commit": "194d7789bf797f31ea0adc45f08beb66ae9ea98e", + "sha256": "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm" + } + }, + { + "ename": "notmuch", + "commit": "d05fbde3aabfec4efdd19a33fd2b1297905acb5a", + "sha256": "0pznpl0aqybdg4b2qypq6k4jac64sssqhgz6rvk9g2nkqhkds1x7", + "fetcher": "git", + "url": "https://git.notmuchmail.org/git/notmuch", + "unstable": { + "version": [ + 20190525, + 1602 + ], + "commit": "17806ecc955ce0375146ea1df51eae061a72bef8", + "sha256": "1ishc13x25c4gxkgb9h1c7s16b5h2wrsxn1pk8vpykziippkjwxs" + }, + "stable": { + "version": [ + 0, + 29, + 1 + ], + "commit": "20842dfb6d64f4469c554525ab4c27c6571fbdfe", + "sha256": "0mw3bxmbjc5wwadf7v7vj5zf4i40c9wvschxqklxxg11qy5lhfis" + } + }, + { + "ename": "notmuch-labeler", + "commit": "2e9940e66bbf70ec868dbdaaeaa1fbd4f076a2e1", + "sha256": "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0", + "fetcher": "github", + "repo": "DamienCassou/notmuch-labeler", + "unstable": { + "version": [ + 20131230, + 1719 + ], + "deps": [ + "notmuch" + ], + "commit": "d65d1129555d368243df4770ecc1e7ccb88efc58", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "notmuch" + ], + "commit": "d65d1129555d368243df4770ecc1e7ccb88efc58", + "sha256": "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18" + } + }, + { + "ename": "nov", + "commit": "cf543955ba2d5d0074fa2a5ba176f9415f6e006d", + "sha256": "0hlcncpdazi4rn5yxd0zq85v7gpjhw7a6dl2i99zf4ymsan97lhq", + "fetcher": "github", + "repo": "wasamasa/nov.el", + "unstable": { + "version": [ + 20190611, + 922 + ], + "deps": [ + "dash", + "esxml" + ], + "commit": "b57fae0814502496796ce5b8170d779b64df42a9", + "sha256": "15s0r64w37m7a8kbcm47svvadaz6amqb9zirmyv7placbrfyaqzp" + }, + "stable": { + "version": [ + 0, + 2, + 8 + ], + "deps": [ + "dash", + "esxml" + ], + "commit": "b57fae0814502496796ce5b8170d779b64df42a9", + "sha256": "15s0r64w37m7a8kbcm47svvadaz6amqb9zirmyv7placbrfyaqzp" + } + }, + { + "ename": "nova-theme", + "commit": "16457166c17fb1cc074a34c61e52ebc285c0eacc", + "sha256": "1d2271qd5z48x71pxjg4lngsc5ddw5iqh496p04f63sm08cgaky4", + "fetcher": "github", + "repo": "muirmanders/emacs-nova-theme", + "unstable": { + "version": [ + 20190724, + 2019 + ], + "commit": "f5eec6957ad814bba64c340c14a9e82b972bb477", + "sha256": "19c8324l5nnkk3rg6pkd0s4fakdkd1318wm9xj32jcpfpqgjdwnp" + } + }, + { + "ename": "noxml-fold", + "commit": "13d2af88b292293cb5ab50819c63acfe936630c8", + "sha256": "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc", + "fetcher": "github", + "repo": "paddymcall/noXML-fold", + "unstable": { + "version": [ + 20170823, + 1357 + ], + "commit": "46c7f6a008672213238a9f8d7a416ce80916aa62", + "sha256": "0axr7n4wdrd009lz6sg4y9ggf4f5svgrsclwhs0hyn2ld34rvrax" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "56fbc44b25cee9f8719edb3c7f8b1c4327dc1051", + "sha256": "00h6nwbx2l0rp2i7n0328w6ckp4gkspqk3q91ciixb4lkhh20cz2" + } + }, + { + "ename": "npm-mode", + "commit": "22dd6b2f8a94f56a61f4b70bd7e44b1bcf96eb18", + "sha256": "1aym4jfr6im6hdc5d7995q6myhgig286fk9hpaxdf418h1s17rqr", + "fetcher": "github", + "repo": "mojochao/npm-mode", + "unstable": { + "version": [ + 20190616, + 2025 + ], + "commit": "3ee7c0bad5b7a041d4739ef3aaa06a3dc764e5eb", + "sha256": "06axwqxdj3damn93l6asn6mnzqrfndc10s7wp1z3nbv9j5yjm35x" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "commit": "84b35211cba4f2d5f03b8dc2b60ae4b03d90bf8a", + "sha256": "1mh6nbffciw4yhv049kdhh796ysj1x21ndm3fwymhskb3dy0w1ss" + } + }, + { + "ename": "nrepl-eval-sexp-fu", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1mz7a6aa4x23khlfqhhn9ycs3yxg44h5cckg4v4rc6lbif1jzzf8", + "fetcher": "github", + "repo": "samaaron/nrepl-eval-sexp-fu", + "unstable": { + "version": [ + 20140311, + 1041 + ], + "deps": [ + "highlight", + "smartparens", + "thingatpt" + ], + "commit": "3a24b7d4bca13e87c987a4ddd212da914ff59191", + "sha256": "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc" + } + }, + { + "ename": "nrepl-sync", + "commit": "2059ab6f2a3adc5af4f0876546e344e806e22ee5", + "sha256": "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd", + "fetcher": "github", + "repo": "phillord/lein-sync", + "unstable": { + "version": [ + 20140807, + 1554 + ], + "deps": [ + "cider" + ], + "commit": "bab53a2361526d63a24cda176d07a1247bf5b399", + "sha256": "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cider" + ], + "commit": "471a08df87687a3eab61b3b8bf25a2e0962b5d5b", + "sha256": "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy" + } + }, + { + "ename": "ns-auto-titlebar", + "commit": "d22ebb5ef16df0c56d6031cb1c7f312dca514482", + "sha256": "1wk4y2jwl65z18cv57m8zkcg31wp9by74z2zvccxzl7mwlhy7kqg", + "fetcher": "github", + "repo": "purcell/ns-auto-titlebar", + "unstable": { + "version": [ + 20181022, + 2154 + ], + "commit": "b16092e8058af63ad2bc222f166b0aa3cb66bf9d", + "sha256": "0m1ih8ca4702zrkhl3zdvwbci96wyjlxhpfx95w372k25rca87dq" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "b16092e8058af63ad2bc222f166b0aa3cb66bf9d", + "sha256": "0m1ih8ca4702zrkhl3zdvwbci96wyjlxhpfx95w372k25rca87dq" + } + }, + { + "ename": "nsis-mode", + "commit": "e9b169a80c7afdeb0c6e17cd289114b5d3d97266", + "sha256": "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l", + "fetcher": "github", + "repo": "mattfidler/nsis-mode", + "unstable": { + "version": [ + 20190615, + 1827 + ], + "commit": "0a2e6ece2fe682dced4d31688b38bb472a877cdf", + "sha256": "0i1h452iqa5g0c0783dynnli3fldinasb9xl24x1i36nlq9dxkd4" + }, + "stable": { + "version": [ + 0, + 44 + ], + "commit": "f1bf701c37680553c8f51462e0829d0dd6c53187", + "sha256": "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl" + } + }, + { + "ename": "nswbuff", + "commit": "c0f7e952f3fbec691df51d19224f701e6530f16e", + "sha256": "1fq2dp9jlhfl9rqw6ldh0xnm0hx9ama2wf87s51qgqxxdn9ngk8x", + "fetcher": "github", + "repo": "joostkremers/nswbuff", + "unstable": { + "version": [ + 20190320, + 740 + ], + "commit": "362da7f3687e2eb5bb11667347de85f4a9d002bc", + "sha256": "0l2xfz8z5qd4hz3kv6zn7h6qq3narkilri8a071y1n8j31jps4ma" + } + }, + { + "ename": "nu-mode", + "commit": "230d5f8fdd965a24b8ff3cc94acf378d04815fca", + "sha256": "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn", + "fetcher": "github", + "repo": "pyluyten/emacs-nu", + "unstable": { + "version": [ + 20190404, + 2032 + ], + "deps": [ + "ace-window", + "avy", + "lv", + "transpose-frame", + "undo-tree", + "which-key" + ], + "commit": "d5fb4d26d1b0bb383ea2827cc5af5dfb2a269d2b", + "sha256": "0nd7ypin9kl784iqffznld6kknghdjywqnjw5nwinfgkwhcrjpdd" + } + }, + { + "ename": "nubox", + "commit": "725948568b8a067762b63475bc400f089f478a36", + "sha256": "0snzfsd765i363ykdhqkn65lqy97c79d20lalszrwcl2snm96n1f", + "fetcher": "github", + "repo": "martijnat/nubox", + "unstable": { + "version": [ + 20170619, + 910 + ], + "commit": "1ccb8035ae42727ba6bdd5c1106fbceddeeed370", + "sha256": "02yh99rcgxdq6jn4xs8782nl6bjccmal8j78qslvpkrzrrxjajx6" + } + }, + { + "ename": "number", + "commit": "49d56b297ab729695249143dd65d3c67543cfcc6", + "sha256": "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf", + "fetcher": "github", + "repo": "chrisdone/number", + "unstable": { + "version": [ + 20170901, + 1312 + ], + "commit": "bbc278d34dbcca83e70e3be855ec98b23debfb99", + "sha256": "0a1r352zs58mdwkq58561qxrz3m5rwk3xqcaaqhkxc0h9jqs4a9r" + } + }, + { + "ename": "number-lock", + "commit": "3c107adabe2e4c5b35ebb6b21db076cdea0e9c24", + "sha256": "13xqn4bcjm01zl0rgbwzad58x35230lm2qiipbyqkh2ma0a9pqn4", + "fetcher": "github", + "repo": "Liu233w/number-lock.el", + "unstable": { + "version": [ + 20160830, + 200 + ], + "commit": "74417b1238953bf485961a0dd7d20f5c36ae25ea", + "sha256": "0xmd4q2k0psd53cg71vsyc54iiq0wp9bs00ch68561lrnbjg043w" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "846e86e2b3b07410f69e70d3ba7afb072b5585da", + "sha256": "12gza7lxpwrp191gi9gm61wpvgwsrda52zva9bz3ncqfp7w0y32i" + } + }, + { + "ename": "numbers", + "commit": "5c77353d3a2b0d360bb28e528ef2707227081c72", + "sha256": "02cx19fi34yvc0icajnwrmb8lr2g8y08kis08v9xxalfxz06kb3h", + "fetcher": "github", + "repo": "davep/numbers.el", + "unstable": { + "version": [ + 20170802, + 1134 + ], + "commit": "dd02508b788a13b7d4dbcc4923fa23134b783ab3", + "sha256": "0bgha85j5f9lpk1h3siiw28v5sy6z52n7d7xi3m301r9hdlccc39" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "74be68b94143f042ce461b2a69202f515acaf20c", + "sha256": "0b4bgc4hkndia8zg4d23l1w78iwzj1l46ifrhz5z1p97qldalb0x" + } + }, + { + "ename": "nummm-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1gdq00f3x0rxxj917x9381v2x7cl9yabj7559zr5vj1clwza8jn4", + "fetcher": "github", + "repo": "agpchil/nummm-mode", + "unstable": { + "version": [ + 20131117, + 1014 + ], + "commit": "81951e12032274543c5f7a585b29bd93961e94e4", + "sha256": "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx" + } + }, + { + "ename": "nv-delete-back", + "commit": "7542fa39060b507a6f455225367e45e89d3e2f92", + "sha256": "13izzym4alda05k7ra67lyjx6dx23fjqz2dqk7mrzhik9x552hsr", + "fetcher": "gitlab", + "repo": "nivaca/nv-delete-back", + "unstable": { + "version": [ + 20170224, + 1249 + ], + "commit": "44d506105989873dc1725e0cfc675925b35c9c98", + "sha256": "0lgz0sknnrxmc7iy4lniday1nwpz4q841c3w2hm72aiwn5z21h22" + } + }, + { + "ename": "nvm", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0md1ybc2r2fxykwk21acjhdzy2kw326bdwa1d15c6f48lknzvg4w", + "fetcher": "github", + "repo": "rejeep/nvm.el", + "unstable": { + "version": [ + 20190601, + 813 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ], + "commit": "4aeb672d543ce2372dcca289719092aa4c38a6cd", + "sha256": "0phillz5dxpvhsi9rlah4988ksx2rcgagfw5iqf5lmfn7kp4604p" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ], + "commit": "d18b13e8275a57ee6c55dc71b671f02a8e6522ad", + "sha256": "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf" + } + }, + { + "ename": "nyan-mode", + "commit": "4d8c3000df5f2ee2493a54dee6f9b65008add753", + "sha256": "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv", + "fetcher": "github", + "repo": "TeMPOraL/nyan-mode", + "unstable": { + "version": [ + 20170423, + 740 + ], + "commit": "a85ac925367ddc542827182a2d9f0133b421c41b", + "sha256": "1178zinzaq0hj1n57yhbpakgky952jhj7dfwhwvsvfclmk9dlrr1" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "4195cd368aca8f05a71cbff4e60cfa9dde10319a", + "sha256": "1bnfxw6cnhsqill3n32j9bc6adl437ia9ivbwvwjpz1ay928yxm7" + } + }, + { + "ename": "nyx-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "11629h7jfnq2sahwiiqx01qpv3xb0iqvcqm5k9w1zhg01jhjfmw2", + "fetcher": "github", + "repo": "guidoschmidt/emacs-nyx-theme", + "unstable": { + "version": [ + 20170910, + 1307 + ], + "commit": "afe2b8c3b5421b4c292d182dcf77079b278e93d8", + "sha256": "1qamw4x3yrygy8qkicy6smxksnsfkkp76hlnivswh7dm3fr23v6m" + } + }, + { + "ename": "nz-holidays", + "commit": "4dfbe628247fc73d9a0963b7e9b92b07854817c9", + "sha256": "0h6dnwpinm3bxir1l69ggf483gjfglpi46z3ffiac3yl3h00j5m6", + "fetcher": "github", + "repo": "techquila/nz-holidays", + "unstable": { + "version": [ + 20190415, + 703 + ], + "commit": "afc875cf40789fa45a4a811685b0a7c4f239392f", + "sha256": "1bk00pv7ylbrmf42papp6z2bhnp5fbnd4wy3gdzd18j7f2g0196v" + } + }, + { + "ename": "o-blog", + "commit": "d5f24e70260f46445b119817bc1326f29b367c4b", + "sha256": "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja", + "fetcher": "github", + "repo": "renard/o-blog", + "unstable": { + "version": [ + 20151202, + 2339 + ], + "commit": "e466c59478feddc8126c43c1b98550474af484c0", + "sha256": "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "5db9594c6e3439c000b183551d7975c2e29131f4", + "sha256": "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs" + } + }, + { + "ename": "oauth", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0vgxvscb9cr07g3lzpi269kamgzhpac6dir1rlr4qd2wdv0nifl9", + "fetcher": "github", + "repo": "psanford/emacs-oauth", + "unstable": { + "version": [ + 20130128, + 151 + ], + "commit": "ee4744ad76a1560281b0c4944575a3bd598c6458", + "sha256": "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj" + } + }, + { + "ename": "ob-ammonite", + "commit": "508358506a6994baf120be2acba86762f5727c6c", + "sha256": "0wr7p3sfn9m8vz87lzas943zcm8vkzgfki9pbs3rh3fxvdc197lb", + "fetcher": "github", + "repo": "zwild/ob-ammonite", + "unstable": { + "version": [ + 20190604, + 1351 + ], + "deps": [ + "ammonite-term-repl", + "s", + "xterm-color" + ], + "commit": "e9d431acc014fb064d77fab0201c626126e7922c", + "sha256": "1cmpczl9p8ig1ql85kqhshzd64rc8xjpq0qgx0jq9yk4syaayk4h" + } + }, + { + "ename": "ob-applescript", + "commit": "23b075774be913539c3f057dcb7f24fbc05c37a4", + "sha256": "1gk8cgscj9wbl5k8ahh1a61p271xpk5vk2w64a8y3njnwrwxm9jc", + "fetcher": "github", + "repo": "stig/ob-applescript.el", + "unstable": { + "version": [ + 20190709, + 1607 + ], + "commit": "2b07b77b75bd02f2102f62e6d52ffdd0f921439a", + "sha256": "0ya3ab4qcpm95bw50srf0p0673lzyvwyp0ccqy3akmqz9apsd4rs" + } + }, + { + "ename": "ob-async", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0k7kv71nnibp53lav774c61w9pzhq8qvch9rvpyyrwbyd67ninl8", + "fetcher": "github", + "repo": "astahlman/ob-async", + "unstable": { + "version": [ + 20190220, + 710 + ], + "deps": [ + "async", + "dash", + "org" + ], + "commit": "73e57a9297849bb50336799ae7858777b6b386ee", + "sha256": "1g2agc6qwklg5cxfgm28fc5swlw54sn66lqk7q0hjn1gdq9rdqdm" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "async", + "dash", + "org" + ], + "commit": "5984d6172c179528adf9aeba414598604dfb5c9a", + "sha256": "10x4hxrjm4pr6vg42a961h9ilqzyd0l0fv7fsbq9clxi439f1nd6" + } + }, + { + "ename": "ob-axiom", + "commit": "8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf", + "sha256": "17qh4hsr3aw4d0p81px3qcbax6dv2zjhyn5n9pxqwcp2skm5vff5", + "fetcher": "git", + "url": "https://bitbucket.org/pdo/axiom-environment", + "unstable": { + "version": [ + 20190623, + 2052 + ], + "deps": [ + "axiom-environment" + ], + "commit": "505d85ffc051a7725344c960b1255597dab17780", + "sha256": "1251xc58nc2h6n4dibfdp7z85y609dkpc499ga8j9s0nwif009fs" + } + }, + { + "ename": "ob-blockdiag", + "commit": "261b77a3fd07644d1c250b16857de70cc1bbf478", + "sha256": "1lmawbgrlp6qd7p664jcl98y1xd2yqw9np6j52bh9i6s3cz6628g", + "fetcher": "github", + "repo": "corpix/ob-blockdiag.el", + "unstable": { + "version": [ + 20190720, + 1858 + ], + "commit": "272fafcf3bc37f9de41b11beb6a33e0dbf0a1909", + "sha256": "0gi7vnh5fchbjb7hp7yi08z2vqkmhjrg64ssir358qxqambxvrxb" + }, + "stable": { + "version": [ + 20170728, + 113 + ], + "commit": "634fcf64a4ae735afe7001d865b03f5d71e23046", + "sha256": "0xr3bv4wxz13b1grfyl2qnrszzab3n9735za837nf4lxh527ksaj" + } + }, + { + "ename": "ob-browser", + "commit": "c51529213c15d42a7a7b76771f07dd73c036a51f", + "sha256": "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm", + "fetcher": "github", + "repo": "krisajenkins/ob-browser", + "unstable": { + "version": [ + 20170720, + 1918 + ], + "deps": [ + "org" + ], + "commit": "a347d9df1c87b7eb660be8723982c7ad2563631a", + "sha256": "0q2amf2kh2gkn65132q9nvn87pws5mmnr3wm1ajk23c01kcjf29c" + } + }, + { + "ename": "ob-cfengine3", + "commit": "d068233c438e76cbcc6e9a97cbec9b2550a18ed6", + "sha256": "1pp3mykc5k629qlqixpl2900m1j604xpp6agrngwagsvf7qkhnvl", + "fetcher": "github", + "repo": "nickanderson/ob-cfengine3", + "unstable": { + "version": [ + 20190520, + 1929 + ], + "commit": "4d4cd53ceaf8a756f48c02cb2e10476f3cda37c4", + "sha256": "0gmgx4ynbk6fvahaglj9m1gpz8d3b038zag4m7g7pmz0xv5s4p1w" + } + }, + { + "ename": "ob-clojurescript", + "commit": "0c9ccc0d2d034944cb9688d5e184fa5df95f6b31", + "sha256": "0h4qjz65k8m1ms7adrm5ypmjcjxx1nws1jmda88c4jjwjyz40jjf", + "fetcher": "gitlab", + "repo": "statonjr/ob-clojurescript", + "unstable": { + "version": [ + 20180406, + 1828 + ], + "deps": [ + "org" + ], + "commit": "17ee1558aa94c7b0246fd03f684884122806cfe7", + "sha256": "1an4m7mpr345xw4fanyf2vznxm1dxbv35987caq1wq9039mzfaxr" + } + }, + { + "ename": "ob-coffee", + "commit": "e23d7f1d021b07053acb57e2668ece0eaed0f817", + "sha256": "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf", + "fetcher": "github", + "repo": "zweifisch/ob-coffee", + "unstable": { + "version": [ + 20170725, + 1424 + ], + "deps": [ + "org" + ], + "commit": "7f0b330273e8af7777de87a75fe52a89798e4548", + "sha256": "1w3fw3ka46d7vcsdq03l0wlviwsk52asfjiy9zfk4qabhpqwj9mz" + } + }, + { + "ename": "ob-coffeescript", + "commit": "ba1a808c77653bac1948d6c44bd1db09301ffeff", + "sha256": "05q1wnabw52kd3fpcpinpxs9z6xmi4n1p19jbcz0bgjpnw05s27p", + "fetcher": "github", + "repo": "brantou/ob-coffeescript", + "unstable": { + "version": [ + 20180126, + 719 + ], + "commit": "5a5bb04aea9c2a6eab5b05f90f5c7cb6de7b4261", + "sha256": "0yy20w1127xmz0mx2swbr294vg0jh8g0ibj5bpdf55xwdnv6im2l" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "b70f3d822c707cb02333fcb739ba4874614cad2a", + "sha256": "0284v3km41427q7dr0wmvf3zhbsgzj0j2r9zny0g3n85qvyk0rgd" + } + }, + { + "ename": "ob-crystal", + "commit": "b9a7d43199a83ab6f672aaa69ef4e158c868f180", + "sha256": "11mk2spwlddbrvcimhzw43b6d3gxzmi8br58bily1x4qkvl6zy4n", + "fetcher": "github", + "repo": "brantou/ob-crystal", + "unstable": { + "version": [ + 20180126, + 718 + ], + "commit": "d84c1adee4b269cdba06a97caedb8071561a09af", + "sha256": "1fny4fj4407lcp4k3379gbixk3wd171snw49p1kny2mvxrliz22h" + } + }, + { + "ename": "ob-cypher", + "commit": "dc05c833f64e7974cf5a2ad60a053a04267251cb", + "sha256": "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3", + "fetcher": "github", + "repo": "zweifisch/ob-cypher", + "unstable": { + "version": [ + 20170725, + 1420 + ], + "deps": [ + "cypher-mode", + "dash", + "dash-functional", + "s" + ], + "commit": "114bdf6db20ee0ade060bb5df379ddee48ff4f26", + "sha256": "142d91jvf7nr7q2sj61njy5hv6ljhsq2qkvkdbkfqj07rgpwfgn3" + } + }, + { + "ename": "ob-dao", + "commit": "6284c73f1d0797fa2ed4d9a11d3198076cc5fff9", + "sha256": "0nj1qyac0lj5ljrqfqi9g2z0d7z5yihajkvjhlx5kg9zs3lgs5rs", + "fetcher": "github", + "repo": "xuchunyang/ob-dao", + "unstable": { + "version": [ + 20170816, + 1558 + ], + "deps": [ + "org" + ], + "commit": "fa92f62a63c684d689f57e790e5dd614c5bba270", + "sha256": "18i2qwxcn5p1hj32svl54n0dv2j551n3nmgb4h8gbvs39rl49qkq" + } + }, + { + "ename": "ob-dart", + "commit": "bb3219b9623587365f56e9eeb4bd97f3dc449a11", + "sha256": "1lqi4pazkjcxvmm2bdpd9vcakmdclkamb69xwxdl44p68wsq2gn8", + "fetcher": "github", + "repo": "mzimmerm/ob-dart", + "unstable": { + "version": [ + 20170106, + 1624 + ], + "commit": "04d63b922a5469506560ca0c00678e57131e0269", + "sha256": "1r0r0dqsr44kcbj2w96rbx8alvkkfzc98ac35zb4ncy1bf71jhfb" + } + }, + { + "ename": "ob-diagrams", + "commit": "fbb31def39fef108ecf7be105a901abfa6845f76", + "sha256": "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2", + "fetcher": "github", + "repo": "bergey/org-babel-diagrams", + "unstable": { + "version": [ + 20160407, + 1237 + ], + "commit": "ed6649616325ca5b2d2109f74aded8bcb8aa5186", + "sha256": "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0" + } + }, + { + "ename": "ob-elixir", + "commit": "287e4758f6f1df0152d68577abd91478c4a3f4ab", + "sha256": "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi", + "fetcher": "github", + "repo": "zweifisch/ob-elixir", + "unstable": { + "version": [ + 20170725, + 1419 + ], + "deps": [ + "org" + ], + "commit": "8990a8178b2f7bd93504a9ab136622aab6e82e32", + "sha256": "19awvfbjsnd5la14ad8cfd20pdwwlf3d2wxmz7kz6x6rf48x38za" + } + }, + { + "ename": "ob-elvish", + "commit": "90e979025f56061bc960f630945b09320a3dd28e", + "sha256": "1rpn3dabwgray1w55jib4ixr3l1afz9j7nyn0ha2r602hs02x1ya", + "fetcher": "github", + "repo": "zzamboni/ob-elvish", + "unstable": { + "version": [ + 20180427, + 1900 + ], + "commit": "369181ceae1190bf971c71aebf9fc6133bd98c39", + "sha256": "170bw9qryhzjzmyi84qc1jkzy1y7i8sjz6vmvyfc264ia4j51m9w" + } + }, + { + "ename": "ob-fsharp", + "commit": "89bc8c5fe6db0573109e82b3d1350d33d6d8aff5", + "sha256": "1b9052lvr03vyizkjz3qsa8cw3pjml4kb3yy13jwh09jz5q87qbf", + "fetcher": "github", + "repo": "juergenhoetzel/ob-fsharp", + "unstable": { + "version": [ + 20170618, + 1429 + ], + "deps": [ + "fsharp-mode" + ], + "commit": "0b2fdd9bb4f38af8b5cf4914627af52f5b43d9f7", + "sha256": "1z1m2dqnvyyv9ff289p8x1hajnz9n0mmfkrkyl1zvipaqd9mgljw" + } + }, + { + "ename": "ob-go", + "commit": "3afb687d6d3d1e52336ca9a7343278a9f37c3d54", + "sha256": "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj", + "fetcher": "github", + "repo": "pope/ob-go", + "unstable": { + "version": [ + 20190201, + 2040 + ], + "commit": "2067ed55f4c1d33a43cb3f6948609d240a8915f5", + "sha256": "069w9dymiv97cvlpzabf193nyw174r38lz5j11x23x956ladvpbw" + } + }, + { + "ename": "ob-html-chrome", + "commit": "ac4380b5ea63c5296e517fccafa4d6a69dc73d0d", + "sha256": "1z3bi5i9n6dqvarl32syb6y36px3pf0pppqxn02rrx1rwvg81iql", + "fetcher": "github", + "repo": "nikclayton/ob-html-chrome", + "unstable": { + "version": [ + 20181219, + 1042 + ], + "deps": [ + "f", + "s" + ], + "commit": "7af6e4a24ed0aaf67751bdf752c7ca0ba02bb8d4", + "sha256": "0h33y11921ajw60b4hqpg0nvdvx3w3cia90wf53c5zg2bckcrfjh" + } + }, + { + "ename": "ob-http", + "commit": "950b02f76a04f453992b8720032e8c4cec9a039a", + "sha256": "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss", + "fetcher": "github", + "repo": "zweifisch/ob-http", + "unstable": { + "version": [ + 20180707, + 1448 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "b1428ea2a63bcb510e7382a1bf5fe82b19c104a7", + "sha256": "11fx9c94xxhl09nj9z5b5v6sm0xwkqawgjnnm7bg56vvj495n6h7" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "20393dd8130d21a3f06d8514da14c5ffdd88ae44", + "sha256": "0xa7rgsb0d1d96h5bb0n0sy1hgmd2fg6r6g2aqp1c29ld4hpi7r7" + } + }, + { + "ename": "ob-hy", + "commit": "12a7a7dba169010a3a047f961010236a203c16c2", + "sha256": "18a8fpda0f28wxmjprhd9dmz7bpk1j3iayl20lqffrcal6m4f1h7", + "fetcher": "github", + "repo": "brantou/ob-hy", + "unstable": { + "version": [ + 20180702, + 540 + ], + "commit": "a42ecaf440adc03e279afe43ee5ef6093ddd542a", + "sha256": "0kv92r6j0dcqcg1s0g4iq1xvanscg6crwniysbrq6ifvmc4lvfdj" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "a42ecaf440adc03e279afe43ee5ef6093ddd542a", + "sha256": "0kv92r6j0dcqcg1s0g4iq1xvanscg6crwniysbrq6ifvmc4lvfdj" + } + }, + { + "ename": "ob-ipython", + "commit": "557c36e86844c211f2d2ee097ce51ee9db92ea8b", + "sha256": "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186", + "fetcher": "github", + "repo": "gregsexton/ob-ipython", + "unstable": { + "version": [ + 20180224, + 953 + ], + "deps": [ + "dash", + "dash-functional", + "f", + "s" + ], + "commit": "7147455230841744fb5b95dcbe03320313a77124", + "sha256": "1a10fc2jk37ni5sjjvf87s5nyaz2a6h2mlj5dxh4dhv5sd3bb85p" + } + }, + { + "ename": "ob-kotlin", + "commit": "7aa74d349eb55aafddfc4327b6160ae2da80d689", + "sha256": "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx", + "fetcher": "github", + "repo": "zweifisch/ob-kotlin", + "unstable": { + "version": [ + 20180823, + 1321 + ], + "deps": [ + "org" + ], + "commit": "96e420cbd2e9ea8a77043e5dcaebdfc6da17492a", + "sha256": "0ganip7077rsi681kdsrmvpjhinhgsrla34mll0daiqid7flnk4g" + } + }, + { + "ename": "ob-lfe", + "commit": "d595d3b93e6b25ece1cdffc9d1502e8a868eb538", + "sha256": "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8", + "fetcher": "github", + "repo": "zweifisch/ob-lfe", + "unstable": { + "version": [ + 20170725, + 1420 + ], + "deps": [ + "org" + ], + "commit": "f7780f58e650b4d29dfd834c662b1d354b620a8e", + "sha256": "1ricvb2wxsmsd4jr0301pk30mswx41msy07fjgwhsq8dimxzmngp" + } + }, + { + "ename": "ob-mermaid", + "commit": "4df483806a4caaeb99fdac42f83bfe648d2e4165", + "sha256": "0fp57m80ksnb6zs1gndwsqhrphkv9lfysq0h7h8g3parizh2idzs", + "fetcher": "github", + "repo": "arnm/ob-mermaid", + "unstable": { + "version": [ + 20180522, + 1659 + ], + "commit": "5deaea757b3a5de874d94e40c03116fbc8195308", + "sha256": "0vyqxqkkyb2dychg3i5vbik5cf58ls5f95ynq88myfpn0sivfbz4" + } + }, + { + "ename": "ob-ml-marklogic", + "commit": "edce412552d4798450493e0a3dbe768f38f77cc7", + "sha256": "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl", + "fetcher": "github", + "repo": "ndw/ob-ml-marklogic", + "unstable": { + "version": [ + 20190312, + 1314 + ], + "commit": "d5660ad14f29e17cd26ae92eeb585b24030e9570", + "sha256": "1aqllsn965km3796q92w3a3z92hkpm5i0l6p4fm3va9xq7j79cyc" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "d5660ad14f29e17cd26ae92eeb585b24030e9570", + "sha256": "1aqllsn965km3796q92w3a3z92hkpm5i0l6p4fm3va9xq7j79cyc" + } + }, + { + "ename": "ob-mongo", + "commit": "e020ea3ef89a3787d498c2f698c82c5073c9ee32", + "sha256": "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907", + "fetcher": "github", + "repo": "krisajenkins/ob-mongo", + "unstable": { + "version": [ + 20170720, + 1919 + ], + "deps": [ + "org" + ], + "commit": "371bf19c7c10eab2f86424f8db8ab685997eb5aa", + "sha256": "02k4gvh1nqhn0h36h77vvms7xwwak8rdddibbidsrwwspbr4qr1s" + } + }, + { + "ename": "ob-nim", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "0j8mk12d29jyhhj4dlc0jykqmqy8g0yrbv7f2sqig83wj531bwza", + "fetcher": "github", + "repo": "Lompik/ob-nim", + "unstable": { + "version": [ + 20170809, + 1830 + ], + "deps": [ + "cl-lib" + ], + "commit": "bf1642cb93f0a898804dc13fd9408d2964403bd2", + "sha256": "1xgi863wn1pvlsajmldd706k1dk7d7pa6b9nbgsh34kzchvhd75s" + } + }, + { + "ename": "ob-prolog", + "commit": "fb87868cd74325f0a4a38c5542c264501000951d", + "sha256": "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s", + "fetcher": "github", + "repo": "ljos/ob-prolog", + "unstable": { + "version": [ + 20190410, + 2130 + ], + "commit": "149abd3832fc5a6a1cb01a586a1622a8f25887dc", + "sha256": "033pqfm3hj2585ibmqjhf7s1imckf615s6zg38jsq21wxv5fx8nc" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "efa86bb70fd1907806f3e43705aff54d35582442", + "sha256": "0g25nn2h7djgc9rp59spx9096jdypsizd0vfzwj96cpq90lkysjx" + } + }, + { + "ename": "ob-restclient", + "commit": "28c1d3af3f8b2f598b80b03b64de5d15cbb3f13d", + "sha256": "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk", + "fetcher": "github", + "repo": "alf/ob-restclient.el", + "unstable": { + "version": [ + 20190626, + 1824 + ], + "deps": [ + "restclient" + ], + "commit": "53376667eeddb1388fd6c6976f3222e7c8adcd46", + "sha256": "1djg53cp7y83gic2v71y6r5z76kwrbkp0r69hl25rs99dx6p89dy" + } + }, + { + "ename": "ob-rust", + "commit": "843affc2fd481647c5377bf9a96b636b39718034", + "sha256": "1syzwh399wcwqhg1f3fvl12978dr574wji7cknqvll3hyh0zwd65", + "fetcher": "github", + "repo": "micanzhang/ob-rust", + "unstable": { + "version": [ + 20180911, + 1535 + ], + "commit": "6a82587598cd097e9642be916243c31f1231b24a", + "sha256": "041mvlwnkxa93fjbln0yc6pgykh6k7fwg1nigr6njgaxlfnssmlm" + } + }, + { + "ename": "ob-sagemath", + "commit": "dc074af316a09906a26ad957a56e3dc272cd813b", + "sha256": "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7", + "fetcher": "github", + "repo": "stakemori/ob-sagemath", + "unstable": { + "version": [ + 20170131, + 233 + ], + "deps": [ + "s", + "sage-shell-mode" + ], + "commit": "68d3e516c712bc7aa5042f305f3eb5bbb6d656c2", + "sha256": "1yr7d3ayrdnycapnhc08zyf6b9gp7xw0pngz90h75s6j33pisx30" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "s", + "sage-shell-mode" + ], + "commit": "450d510a5eb1fd644d0037e9f02271ca33639fb0", + "sha256": "00i7jszlfh67xzvqnp137aaia68rkk4ri5v0fs32ym10pcj8l4dp" + } + }, + { + "ename": "ob-sml", + "commit": "d1b0fbe1198fa624771c2f61249db502de57942a", + "sha256": "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn", + "fetcher": "github", + "repo": "swannodette/ob-sml", + "unstable": { + "version": [ + 20130829, + 1843 + ], + "deps": [ + "sml-mode" + ], + "commit": "958165c92b6cff6cada5c85c8ae5887806b8451b", + "sha256": "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "sml-mode" + ], + "commit": "5dc966acbe65e9e158bfa90018035bf52d4dafd4", + "sha256": "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk" + } + }, + { + "ename": "ob-sql-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "143agagkmwqwdqc0mbdsqp6v02y12q437v4x6dlh81yihif56rdk", + "fetcher": "github", + "repo": "nikclayton/ob-sql-mode", + "unstable": { + "version": [ + 20190421, + 1539 + ], + "commit": "b31a016585324ad91f1742ff6205bcb76f3ece6e", + "sha256": "1k2cfxaq38wv8s2x1c52v0bw55c12n399614l0dx1aqy2wh1afgi" + } + }, + { + "ename": "ob-swift", + "commit": "b401383966398d3223032c59baa920ce594e5fef", + "sha256": "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4", + "fetcher": "github", + "repo": "zweifisch/ob-swift", + "unstable": { + "version": [ + 20170921, + 1325 + ], + "deps": [ + "org" + ], + "commit": "ed478ddbbe41ce5373efde06b4dd0c3663c9055f", + "sha256": "1vwg10d33mwb32bpdbpghfihy3ryiqbc4yydpb5hfv3v5k83vs0x" + } + }, + { + "ename": "ob-tmux", + "commit": "a3f47fbfe745972e690e8028f893bb38ba30978d", + "sha256": "12c0m2xxd75lbc98h7cwprmdn823mh2ii59pxr6fgnq7araqkz20", + "fetcher": "github", + "repo": "ahendriksen/ob-tmux", + "unstable": { + "version": [ + 20190708, + 1202 + ], + "deps": [ + "s", + "seq" + ], + "commit": "3687ed7b874bdfe14617f5d14492887cb0836a85", + "sha256": "057gnjgn6g7qpf8hpidp302s2bv5lkijx6b35knvg266czda6fra" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "s", + "seq" + ], + "commit": "8886f31291e979b41215f3eb97670732efffea34", + "sha256": "0j77n1lawkx94hyv89xsvmrbqhd8x19ycrvxrwhc0mzlxh7rxjcy" + } + }, + { + "ename": "ob-translate", + "commit": "4d89e4006afc51bd44e23f87a1d1ef1140489ab3", + "sha256": "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz", + "fetcher": "github", + "repo": "krisajenkins/ob-translate", + "unstable": { + "version": [ + 20170720, + 1919 + ], + "deps": [ + "google-translate", + "org" + ], + "commit": "9d9054a51bafd5a29a8135964069b4fa3a80b169", + "sha256": "143dq3wp3h1zzk8ihj8yjw9ydqnf48q7y8yxxa0ly7f2v1li84bc" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "google-translate", + "org" + ], + "commit": "6b39cc1a94a1071107a4391684b1bffb5b9826f3", + "sha256": "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia" + } + }, + { + "ename": "ob-typescript", + "commit": "11733cd33add89b541dcc1f90a732833861b10d9", + "sha256": "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p", + "fetcher": "github", + "repo": "lurdan/ob-typescript", + "unstable": { + "version": [ + 20150804, + 1230 + ], + "deps": [ + "org" + ], + "commit": "9dcbd226cbfb75e790dd9de91d9401dde85a889a", + "sha256": "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai" + } + }, + { + "ename": "ob-uart", + "commit": "5334f1a48b8ea6b7a660db27910769093c76113d", + "sha256": "1dkbyk8da0zw784dgwi8njnz304s54341dyfzvlb0lhcn41dmkz7", + "fetcher": "github", + "repo": "andrmuel/ob-uart", + "unstable": { + "version": [ + 20170521, + 858 + ], + "commit": "90daeac90a9e75c20cdcf71234c67b812110c50e", + "sha256": "1syxxq411izmyfrhlywasax7n5c3yjy487mvfdjzjg8csmmk0m9v" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "90daeac90a9e75c20cdcf71234c67b812110c50e", + "sha256": "1syxxq411izmyfrhlywasax7n5c3yjy487mvfdjzjg8csmmk0m9v" + } + }, + { + "ename": "oberon", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv", + "fetcher": "github", + "repo": "emacsorphanage/oberon", + "unstable": { + "version": [ + 20120715, + 909 + ], + "commit": "fb57d18ce13835a8a69b6bafecdd9193ca9a59a3", + "sha256": "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6" + } + }, + { + "ename": "obfusurl", + "commit": "201fe11682cb06b26775a52c81b6a1258b74b4d0", + "sha256": "0xx2zsjbkd17iy7xzqc66f9xgc97f9js3nz656yhmmxakjk2krra", + "fetcher": "github", + "repo": "davep/obfusurl.el", + "unstable": { + "version": [ + 20170809, + 1524 + ], + "deps": [ + "cl-lib" + ], + "commit": "7a5a41905000ce2ec1fd72509a5567e5fd9f47e5", + "sha256": "0jbrxlpx0cxg8jzqrssk3y3ab7v62ymi6ys24542a8vpk522vqxk" + }, + "stable": { + "version": [ + 2, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "7a5a41905000ce2ec1fd72509a5567e5fd9f47e5", + "sha256": "0jbrxlpx0cxg8jzqrssk3y3ab7v62ymi6ys24542a8vpk522vqxk" + } + }, + { + "ename": "objc-font-lock", + "commit": "f6f93d328e137d2ca069328932b60c3bf60b0a4e", + "sha256": "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6", + "fetcher": "github", + "repo": "Lindydancer/objc-font-lock", + "unstable": { + "version": [ + 20141021, + 1822 + ], + "commit": "34b457d577f97ca94b8792d025f9a909c7610612", + "sha256": "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk" + } + }, + { + "ename": "objed", + "commit": "4abc6d927a2bf238d23256adcc9f09a751c90374", + "sha256": "0iqvwa664fzklajqgnss7igjh7jr9v9i8dp9acm42g8ingp9zf7b", + "fetcher": "github", + "repo": "clemera/objed", + "unstable": { + "version": [ + 20190717, + 853 + ], + "deps": [ + "cl-lib" + ], + "commit": "fea114824e11fdae7871fb3b5ddf4ed2472cbda0", + "sha256": "0lf88ivfsl5la075jg1y56kf0v96hp2539b54lwyabz0rpc0c7in" + }, + "stable": { + "version": [ + 0, + 8, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "4798b5b9fd531562ac17d6148e86cd8cdc1bc985", + "sha256": "16ans9pmzfjqdz0gi92yaah0vv6g4vmjbq3g1jqhcykin6ba8lpg" + } + }, + { + "ename": "obsidian-theme", + "commit": "e90227252eb69d3eac81f5a6bd5e3a582d33f335", + "sha256": "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr", + "fetcher": "github", + "repo": "mswift42/obsidian-theme", + "unstable": { + "version": [ + 20170719, + 948 + ], + "commit": "f45efb2ebe9942466c1db6abbe2d0e6847b785ea", + "sha256": "1d36mdq8b1q1x84a2nb93bwnzlpdldiafh7q7qfjjm9dsgbij73b" + } + }, + { + "ename": "occidental-theme", + "commit": "736fd0b7865cc800800fa6467019a365ddf1c412", + "sha256": "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b", + "fetcher": "github", + "repo": "olcai/occidental-theme", + "unstable": { + "version": [ + 20130312, + 1958 + ], + "commit": "fd2db7256d4f78c43d99c3cddb1c39106d479816", + "sha256": "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8" + } + }, + { + "ename": "occur-context-resize", + "commit": "a2425d82b365784b17ab56af5f77c6095664c784", + "sha256": "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri", + "fetcher": "github", + "repo": "dgtized/occur-context-resize.el", + "unstable": { + "version": [ + 20170904, + 2309 + ], + "commit": "cdee5a631ceed9337579d4090e0acf8140747f80", + "sha256": "0h7ypw45h5rcbwx4c4mn2ps9hp84dpjp3iay2nc9zaavv05n7ysa" + } + }, + { + "ename": "occur-x", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "04nydxp4syd0chfnfrz8v1vkx2qasfh86b98qv8719cily1jw76p", + "fetcher": "github", + "repo": "juan-leon/occur-x", + "unstable": { + "version": [ + 20130610, + 1343 + ], + "commit": "352f5fab207d8a1d3dd048073ff127a83e97c82b", + "sha256": "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6" + } + }, + { + "ename": "oceanic-theme", + "commit": "b9d85588df4e2057ef1c822ff177572054ed979b", + "sha256": "1i69dy9hfqwfyiykvnqzkqim0lv1p5z5fjsdk84068si4b029gzv", + "fetcher": "github", + "repo": "terry3/oceanic-theme", + "unstable": { + "version": [ + 20161015, + 819 + ], + "commit": "a92ee9b470843c923e6cdcafdd65106ff994d04d", + "sha256": "1bj4l88546gmlfmwyg1zsqfz9g2l87hsa9jlrf8s4c907di736ir" + } + }, + { + "ename": "ocodo-svg-modelines", + "commit": "5b9651865f4f8009c9b31fa1e5561de97a5ad8de", + "sha256": "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay", + "fetcher": "github", + "repo": "ocodo/ocodo-svg-modelines", + "unstable": { + "version": [ + 20150516, + 1419 + ], + "deps": [ + "svg-mode-line-themes" + ], + "commit": "c7b0789a177219f117c4de5659ecfa8622958c40", + "sha256": "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "svg-mode-line-themes" + ], + "commit": "a6c5b9a7536c7a8fa3bd9d9dafdebc8d99903018", + "sha256": "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w" + } + }, + { + "ename": "ocp-indent", + "commit": "e1af061328b15360ed25a232cc6b8fbce4a7b098", + "sha256": "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw", + "fetcher": "github", + "repo": "OCamlPro/ocp-indent", + "unstable": { + "version": [ + 20190726, + 1452 + ], + "commit": "8389c2ac0420036426337ed24ff3dab984b00cd5", + "sha256": "00l7jvzhd9cr9yx8rxadkw87rq7bimj872vsggvi7vjpxn2q0ck0" + }, + "stable": { + "version": [ + 1, + 7, + 0 + ], + "commit": "6e6ff005fc1692489fa80767a23bc381ebc987e1", + "sha256": "006x3fsd61vxnxj4chlakyk3b2s10pb0bdl46g0ghf3j8h33x7hc" + } + }, + { + "ename": "octicons", + "commit": "c62867eae1a254eb5fe820d4387dd4e8a0ff9be2", + "sha256": "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk", + "fetcher": "github", + "repo": "syohex/emacs-octicons", + "unstable": { + "version": [ + 20151101, + 340 + ], + "deps": [ + "cl-lib" + ], + "commit": "a61e561966ffd8faa3b48ce5b3a4eec10c59708b", + "sha256": "0w98ii2ny57al94a4h927xx1hn99df5if543v2gh36zqdlwc7xci" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "77bb1a49045f89b3eaf9bcffeefbb9e1abaee556", + "sha256": "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw" + } + }, + { + "ename": "octo-mode", + "commit": "899ec190515d33f706e5279c8e3628514f733a12", + "sha256": "1xvpykdrkmxlk302kbqycasrq89f72xvhqlm14qrcd2lqnwhbi07", + "fetcher": "github", + "repo": "cryon/octo-mode", + "unstable": { + "version": [ + 20161008, + 1229 + ], + "commit": "bd4db7e5e3275b24c74e6a23c11d04f54e9feca5", + "sha256": "1blr664h8bq8bs1wr82nhhb9y7ggrlxp6x203i5bv542zm4a5rba" + } + }, + { + "ename": "octopress", + "commit": "7205d3d43797755077f19f57f531b4b39e77bae3", + "sha256": "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0", + "fetcher": "github", + "repo": "aaronbieber/octopress.el", + "unstable": { + "version": [ + 20190123, + 107 + ], + "commit": "f2c92d5420f14fc9167c7de1873836510e652de2", + "sha256": "0s5sv685h350zky46fr95bs1w814g8ksjndxwmgarldklxilsyji" + } + }, + { + "ename": "oer-reveal", + "commit": "5982e377cd4cc2e72bfe4650c473c9f6b71085e3", + "sha256": "1j43in64p0janfr48v2llh888c337cv66yl6xswidnqysndfg6pg", + "fetcher": "gitlab", + "repo": "oer/oer-reveal", + "unstable": { + "version": [ + 20190731, + 811 + ], + "deps": [ + "org-re-reveal" + ], + "commit": "e6cd154de8cfa0382495a047804e3b1ac90b431c", + "sha256": "1kf7daxs7p58lw7m09ygisyhm8hnzsdp74f1wqwb5fbl5zxhhmpq" + } + }, + { + "ename": "offlineimap", + "commit": "671afe0ff3889ae8c4b2d7b8617a3a25c16f3f0f", + "sha256": "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b", + "fetcher": "github", + "repo": "jd/offlineimap.el", + "unstable": { + "version": [ + 20150916, + 1158 + ], + "commit": "cc3e067e6237a1eb7b21c575a41683b1febb47f1", + "sha256": "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq" + }, + "stable": { + "version": [ + 1 + ], + "commit": "646482203aacdf847d57d0a96263fddcfc33fb61", + "sha256": "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b" + } + }, + { + "ename": "old-norse-input", + "commit": "84780a6ebd1b2294b86ae8c6df5bd6521cf4e85a", + "sha256": "1g00h6ykf61ckr6f3r17j72w3h04p5q65aa3rhr5llk3jk1wv331", + "fetcher": "github", + "repo": "david-christiansen/emacs-old-norse-input", + "unstable": { + "version": [ + 20170816, + 1842 + ], + "commit": "c2e21ee72c3768e9152aff6baf12a19cde1d0c53", + "sha256": "0zybr1v91884p4ncrpr962pr02qsns6hf7kc4c5gyad8sg4pbvxh" + } + }, + { + "ename": "oldlace-theme", + "commit": "b6b11187b012744771380dfabab607cf7e073c45", + "sha256": "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8", + "fetcher": "github", + "repo": "mswift42/oldlace-theme", + "unstable": { + "version": [ + 20150705, + 1300 + ], + "commit": "5c6f437203b0783b36a7aff4a578de4a0c8c4ee6", + "sha256": "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82" + } + }, + { + "ename": "om-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0bnlnxmzch9j39l8sf85npi89xlnkcnkmy4fihmwhrm86mnmayrb", + "fetcher": "github", + "repo": "danielsz/om-mode", + "unstable": { + "version": [ + 20140915, + 2110 + ], + "commit": "cdc0c2912321f8438b0f3449ba8aca50ec150bba", + "sha256": "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb" + } + }, + { + "ename": "omni-kill", + "commit": "c24df34d2fa5d908223379e909148423ba327ae2", + "sha256": "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k", + "fetcher": "github", + "repo": "AdrieanKhisbe/omni-kill.el", + "unstable": { + "version": [ + 20171016, + 2140 + ], + "commit": "904549c8fd6ac3cf22b5d7111ca8944e179cffea", + "sha256": "1mlnh5pdqdv1qb8jvi0wvkgbpy74zq807gmp04bp6cpxdns9j63f" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "commit": "904549c8fd6ac3cf22b5d7111ca8944e179cffea", + "sha256": "1mlnh5pdqdv1qb8jvi0wvkgbpy74zq807gmp04bp6cpxdns9j63f" + } + }, + { + "ename": "omni-log", + "commit": "47bb19bb7b4713c3fd82c1035a2fe66588c069e3", + "sha256": "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r", + "fetcher": "github", + "repo": "AdrieanKhisbe/omni-log.el", + "unstable": { + "version": [ + 20170930, + 1235 + ], + "deps": [ + "dash", + "ht", + "s" + ], + "commit": "11e959473c1bd9415d0cda785940c36ba6ad44ab", + "sha256": "081vq3wzl8w9yz1356np6h27d7yi5j8i3va9sc2flfwylmw1y9gr" + }, + "stable": { + "version": [ + 0, + 3, + 6 + ], + "deps": [ + "dash", + "ht", + "s" + ], + "commit": "20021eb788cbeec0371145468430b259686f519d", + "sha256": "1sf2zbhjaz5b9xmz6632338cga7d326ibgw8b8c6c6b4vk16yhqc" + } + }, + { + "ename": "omni-quotes", + "commit": "3402524f79381c99fdeb81a6a5a9241c918811be", + "sha256": "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs", + "fetcher": "github", + "repo": "AdrieanKhisbe/omni-quotes.el", + "unstable": { + "version": [ + 20170425, + 1832 + ], + "deps": [ + "dash", + "f", + "ht", + "omni-log", + "s" + ], + "commit": "454116c1dd6581baaeefd6b9310b1b6b7a5c36d0", + "sha256": "1h8lrpi5wizi5vncdz83cxlx7c71xw3sw89sfg462zfbz2sq8afl" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "dash", + "f", + "ht", + "omni-log", + "s" + ], + "commit": "454116c1dd6581baaeefd6b9310b1b6b7a5c36d0", + "sha256": "1h8lrpi5wizi5vncdz83cxlx7c71xw3sw89sfg462zfbz2sq8afl" + } + }, + { + "ename": "omni-scratch", + "commit": "6ba3e128a7fe4476d82266506b18ba9984c37944", + "sha256": "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9", + "fetcher": "github", + "repo": "AdrieanKhisbe/omni-scratch.el", + "unstable": { + "version": [ + 20171009, + 2151 + ], + "commit": "9eee3161e5cb6df58618548a2173f4da7d194814", + "sha256": "1cppy9p5k8737jjgjlmfqqfdx048kpjn5cx7iw0dxal180y3i39g" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "commit": "636374c59c7d33c2f72c97ad8ba9fb4854f2324d", + "sha256": "0w62bk2m0gs4b605s691z4iap9baz1z6c8z4v9vb05917qlsx5xb" + } + }, + { + "ename": "omni-tags", + "commit": "c77e57f41484c08cae9f47c4379d1752ccf43ce2", + "sha256": "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl", + "fetcher": "github", + "repo": "AdrieanKhisbe/omni-tags.el", + "unstable": { + "version": [ + 20170426, + 2109 + ], + "deps": [ + "cl-lib", + "pcre2el" + ], + "commit": "8f0f6c302fab900b7681e5c039f90850cbbabd33", + "sha256": "0cqj4h4bdhmb0r6f2xx9g6cs3599m4j3snkrvsgddaq8c6mg47w0" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cl-lib", + "pcre2el" + ], + "commit": "a7078bfbc9a6256efd0e57530df9fd7808bc2185", + "sha256": "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi" + } + }, + { + "ename": "omnibox", + "commit": "bf274ff47f167edd214e667249356de281522802", + "sha256": "05jc9hhr3gnjfyjpdx79ij9b5qwfrsmdf8h2s5ldxbw82q8a0z02", + "fetcher": "github", + "repo": "sebastiencs/omnibox", + "unstable": { + "version": [ + 20180423, + 49 + ], + "deps": [ + "dash", + "frame-local" + ], + "commit": "8ee75c71c20c438ebc43ba24ef6f543633d118f3", + "sha256": "19d7djf942dagxsz0c0lnfra4fk09qm6grkc0nihpsw4afjbj01a" + } + }, + { + "ename": "omnisharp", + "commit": "e327c483be04de32638b420c5b4e043d12a2cd01", + "sha256": "0gh0wwdpdx2cjf95pcagj52inf7mrmiq7x8p0x5c7lvl4pfzhh87", + "fetcher": "github", + "repo": "OmniSharp/omnisharp-emacs", + "unstable": { + "version": [ + 20190702, + 1945 + ], + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "f", + "flycheck", + "popup", + "s" + ], + "commit": "cb05dfe213a8dae355b72c6df5bf75327dacafef", + "sha256": "0zfhax0djy8a05j9n76ggw3srgxmn5b0m31jbxp1ixbx9icymshn" + }, + "stable": { + "version": [ + 4, + 2 + ], + "deps": [ + "auto-complete", + "cl-lib", + "csharp-mode", + "dash", + "f", + "flycheck", + "popup", + "s", + "shut-up" + ], + "commit": "588b8482685adedbc56933cb13c58d9cc6a82456", + "sha256": "1iqwxc19jvcb2gsm2aq59zblg1qjmbxgb2yl3h3aybqp968j3i00" + } + }, + { + "ename": "omtose-phellack-theme", + "commit": "478b1e07ed9010408c12598640ec8d154f9eb18d", + "sha256": "0aj0sw611w13xryn762ws63dfalczxixa5rv3skglmfy9axg3v3b", + "fetcher": "github", + "repo": "franksn/omtose-phellack-theme", + "unstable": { + "version": [ + 20161111, + 2120 + ], + "commit": "66f99633e199e65bd28641626435e8e59246529a", + "sha256": "0imf2pcf93srm473nvaksw5pw5i4caqxb6aqfbq6xww8gdbqfazy" + } + }, + { + "ename": "on-parens", + "commit": "2ea1eb5eb5a40e95ba06b0a4ac89ad8843c9cc2c", + "sha256": "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab", + "fetcher": "github", + "repo": "willghatch/emacs-on-parens", + "unstable": { + "version": [ + 20180202, + 2241 + ], + "deps": [ + "dash", + "evil", + "smartparens" + ], + "commit": "7a41bc02bcffd265f8a69ed4b4e0df3c3009aaa4", + "sha256": "0pkc05plbjqfxrw54amlm6pzg9gcsz0nvqzprplr6rhh7ss419zn" + } + }, + { + "ename": "on-screen", + "commit": "628f43fdfdb41174800fb8171e71134c27730f6f", + "sha256": "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb", + "fetcher": "github", + "repo": "michael-heerdegen/on-screen.el", + "unstable": { + "version": [ + 20160302, + 950 + ], + "deps": [ + "cl-lib" + ], + "commit": "206468aa4de299ad26c2db12b757f5ad7290912f", + "sha256": "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz" + } + }, + { + "ename": "one-themes", + "commit": "504fb2fa2fe17eb008f7e9b8f7fb394f4a3ebd28", + "sha256": "11c6py5vani2cv4qjvizlzz9xvr5v57qxy1chcxy2lq3jlz1q5w0", + "fetcher": "github", + "repo": "balajisivaraman/emacs-one-themes", + "unstable": { + "version": [ + 20190424, + 740 + ], + "commit": "e62e4ebef7ef8ccb1e90781d613638d30cf24d7a", + "sha256": "13vjlgac3ikd5xr6cjqb3aaj8qr201lc3ndvwhj3k617474312jh" + } + }, + { + "ename": "one-time-pad-encrypt", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0xl74vxq9dzl84b6wsw8flykxcsxggpd4s47a2ph3irr64mbbgq5", + "fetcher": "github", + "repo": "garvinguan/emacs-one-time-pad", + "unstable": { + "version": [ + 20160329, + 1513 + ], + "commit": "87cc1f124024ce3d277299ca0ac703f182937d9f", + "sha256": "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz" + } + }, + { + "ename": "opam", + "commit": "fc4e2076ebaefe7e241607ff6920fe243d10ccd0", + "sha256": "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa", + "fetcher": "github", + "repo": "lunaryorn/opam.el", + "unstable": { + "version": [ + 20150719, + 1220 + ], + "commit": "4d589de5765728f56af7078fae328b6792de8600", + "sha256": "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "83fb2850d29ec792754e0af18b015e089aad2695", + "sha256": "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8" + } + }, + { + "ename": "open-in-msvs", + "commit": "09a462fac31a7ceda4ee84a8550ff1db6d11140f", + "sha256": "0cng0brxjdriyhwsbn85pfrgqg56chzk24lvkx91rzgz15fbpnv5", + "fetcher": "github", + "repo": "evgeny-panasyuk/open-in-msvs.el", + "unstable": { + "version": [ + 20170123, + 2228 + ], + "commit": "e0d071c83188ad5db8f3297d6ce784b4ed554a04", + "sha256": "0aiccdcll5zjy11fandd9bvld8p8srmhrh3waqc33yp4x8pjkjpd" + } + }, + { + "ename": "open-junk-file", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj", + "fetcher": "github", + "repo": "rubikitch/open-junk-file", + "unstable": { + "version": [ + 20161210, + 1114 + ], + "commit": "558bec7372b0fed4c4cb6074ab906535fae615bd", + "sha256": "0kcgkxn5v9bsbkcvpjxjqhj1w3c29bfb33bmiw32gzbfphmrvhh1" + } + }, + { + "ename": "opencc", + "commit": "71bc5476b3670a9f5c3d3682c2e7852fc6c5fe60", + "sha256": "1dd62x0h3imil4g3psndxykp45jf83fm4afxcvvyayj45z099f4r", + "fetcher": "github", + "repo": "xuchunyang/emacs-opencc", + "unstable": { + "version": [ + 20170722, + 816 + ], + "commit": "8c539f72669ba9a99d8b5198db5ea930897ad1b9", + "sha256": "140s88z0rsiylm8g1mzgc50ai38x79j004advin6lil5zcggxq3i" + } + }, + { + "ename": "opencl-mode", + "commit": "d97575fdae88d55b55686aa6814f858813cad171", + "sha256": "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79", + "fetcher": "github", + "repo": "salmanebah/opencl-mode", + "unstable": { + "version": [ + 20190615, + 1957 + ], + "commit": "55cb49c8243e6420961d719faced035bc547c1ef", + "sha256": "0rsf49dj0q5i14b3nfhld9da7d9cx01l8gxf35ya7nw4fw07aan1" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "14109a4bb56105a9c052ae49ad4c638b4cc210b2", + "sha256": "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21" + } + }, + { + "ename": "opener", + "commit": "c5a448f1936f46176bc2462eb03955a0c19efb9e", + "sha256": "0fhny4m7x19wnlnr19s4rkl04dkx95yppd51jzrkr96xiznw97s7", + "fetcher": "github", + "repo": "0robustus1/opener.el", + "unstable": { + "version": [ + 20161207, + 1810 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "c384f67278046fdcd220275fdd212ab85672cbeb", + "sha256": "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "c384f67278046fdcd220275fdd212ab85672cbeb", + "sha256": "0gci909a2rbx5i8dyzyrcddwdic7nvpk6y6djvn521yaag4sq87h" + } + }, + { + "ename": "opensource", + "commit": "ec4255a403e912a14a7013ea96f554d3588dfc30", + "sha256": "17gi20s2vi7m75qqaff907x1g8ja5ny90klldpqmj258m2j6a6my", + "fetcher": "github", + "repo": "OpenSourceOrg/el-opensourceorg", + "unstable": { + "version": [ + 20160926, + 1616 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "13499b7ae602c735e40c1c494bda6252a2f1c98f", + "sha256": "14vb47y5cq3j80aah8fjjf5aw343p9p7bhlxnpz5fr8r9a883dka" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "27d06be45c852e84e47c33cbd0f4c344fd9a0370", + "sha256": "1rjf78vki4xp8y856v95877093p3zgfc9mx92npscsi1g93dxn80" + } + }, + { + "ename": "openstack-cgit-browse-file", + "commit": "bd7035e1ea63d7d8378f8bfda6a5402a5b6bb9e4", + "sha256": "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl", + "fetcher": "github", + "repo": "chmouel/openstack-cgit-browse-file", + "unstable": { + "version": [ + 20130819, + 927 + ], + "commit": "244219288b9aef41155044697bb114b7af83ab8f", + "sha256": "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70" + } + }, + { + "ename": "openwith", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0l3grbnn349cv26ap2phlmp2h94s68gqznh5zdqwc2cp7lf699sx", + "fetcher": "bitbucket", + "repo": "jpkotta/openwith", + "unstable": { + "version": [ + 20120531, + 2136 + ], + "commit": "aeb78782ec87680ea9f082a3f20a3675b3770cf9", + "sha256": "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01" + } + }, + { + "ename": "operate-on-number", + "commit": "aec74eff8ca3d5e381d7a6d61c73f1a0716f1c60", + "sha256": "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk", + "fetcher": "github", + "repo": "knu/operate-on-number.el", + "unstable": { + "version": [ + 20150707, + 623 + ], + "commit": "ceb3be565a29326c1098244fac0c50606723a56e", + "sha256": "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "6a17272e2b6e23260edb1b5eeb01905a1f37e0a6", + "sha256": "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb" + } + }, + { + "ename": "orca", + "commit": "f4d9cf89c58a9b36b7c2a42de2aecb3b60001908", + "sha256": "012ndbrgm58r09snhvi476rw0lq4m913y0slc0cxb688p9wgz5w3", + "fetcher": "github", + "repo": "abo-abo/orca", + "unstable": { + "version": [ + 20190701, + 1127 + ], + "commit": "b07b69ba0052a0dd4ef59a20ec0e54f3c8cf137e", + "sha256": "12ahmqqvnl1vaf8qc4smsk6727bzmv3qja79kb00g3yf4k1r0nhk" + } + }, + { + "ename": "ordinal", + "commit": "ea3dd6fe4cacc229dd1371cb66dd1cfd07321bf4", + "sha256": "19s27mv7kqcg9qxa844al7q1hk0qbiqh93g1n54r3b6s980dlgcv", + "fetcher": "github", + "repo": "zonuexe/ordinal.el", + "unstable": { + "version": [ + 20190104, + 1421 + ], + "deps": [ + "cl-lib" + ], + "commit": "75af95abbac3e30c4dd804411cb3e867c741a747", + "sha256": "04zhw4a3l8a8sz4w5l04hjr63hdrq9icjcc2mn893rixrw1i7l9m" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "75af95abbac3e30c4dd804411cb3e867c741a747", + "sha256": "04zhw4a3l8a8sz4w5l04hjr63hdrq9icjcc2mn893rixrw1i7l9m" + } + }, + { + "ename": "org-ac", + "commit": "adf598f8dae69ff286ae78d353a2a5d4363b4480", + "sha256": "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr", + "fetcher": "github", + "repo": "aki2o/org-ac", + "unstable": { + "version": [ + 20170401, + 1307 + ], + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ], + "commit": "41e3ef8e4039619d0370c23c66730b3b2e9e32ed", + "sha256": "1l3fn8vjdqq7rrn1b7l2i238bhjni13mg9v25dydin0sfb697abk" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "auto-complete-pcmp", + "log4e", + "yaxception" + ], + "commit": "9cbbda79e2fe964ded3f39cf7a2e74f1be3d6b9a", + "sha256": "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca" + } + }, + { + "ename": "org-agenda-property", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk", + "fetcher": "github", + "repo": "Malabarba/org-agenda-property", + "unstable": { + "version": [ + 20140626, + 2116 + ], + "commit": "3b469f3e93de0036547f3631cd0366d53f7584c8", + "sha256": "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "2ff628a14a3e758863bbd88fba4db9f77fd2c3a8", + "sha256": "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc" + } + }, + { + "ename": "org-alert", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "01bb0s22wa14lyr9wi58cvk4b03xqq268y3dvxbrhymw1ld97zk2", + "fetcher": "github", + "repo": "spegoraro/org-alert", + "unstable": { + "version": [ + 20180524, + 133 + ], + "deps": [ + "alert", + "dash", + "s" + ], + "commit": "f87bff4acbd839acb4d2245b56b2c3d21f950911", + "sha256": "05xhp1ggpcgd48vcrxf9l43aasxfjw1ypgzpq3gp7031x83m9rr6" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "alert", + "dash", + "s" + ], + "commit": "685c18aa5ce994360c7f9e8bbf49590c412187ac", + "sha256": "0gkv2sfl9nb64qqh5xhgq68r9kfmsny3vpcmnzk2mqjcb9nh657s" + } + }, + { + "ename": "org-attach-screenshot", + "commit": "f545cd8d1da39e7fbd61020e178de30053ba774b", + "sha256": "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn", + "fetcher": "github", + "repo": "dfeich/org-screenshot", + "unstable": { + "version": [ + 20180420, + 525 + ], + "commit": "6b1edbd2384191122a30788ac72f2233c2df0294", + "sha256": "0vyxpc28b9b0cn02a9p48q6iy61qw7gj7gzk37ijdmzg8dzy6hxv" + } + }, + { + "ename": "org-autolist", + "commit": "ca8e2cdb282674b20881bf6b4fc49af42a5d09a7", + "sha256": "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj", + "fetcher": "github", + "repo": "calvinwyoung/org-autolist", + "unstable": { + "version": [ + 20170924, + 1901 + ], + "commit": "c82d1e83e982b5f0c106b8800e5b0cfd5f73fdc1", + "sha256": "0ykiafbdjb2iy0s1gr6l51gddjbk08iwj4v13hgm8b675bl0cw56" + }, + "stable": { + "version": [ + 0, + 14 + ], + "commit": "c82d1e83e982b5f0c106b8800e5b0cfd5f73fdc1", + "sha256": "0ykiafbdjb2iy0s1gr6l51gddjbk08iwj4v13hgm8b675bl0cw56" + } + }, + { + "ename": "org-babel-eval-in-repl", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0brqp0w9s28ibws4idlm1rw09lsfa98l5wbpwm64rvlixhs6zlnx", + "fetcher": "github", + "repo": "diadochos/org-babel-eval-in-repl", + "unstable": { + "version": [ + 20170511, + 1214 + ], + "deps": [ + "ess", + "eval-in-repl", + "matlab-mode" + ], + "commit": "bfa72c582ac1531ad42aba23e2b1267ab68e31f6", + "sha256": "1jm56zxa99s163jv02vhfrshmykvld7girq7gmj1x60g3wjzhn5k" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "ess", + "eval-in-repl", + "matlab-mode" + ], + "commit": "3f26e3cf8bed9ec8e025e4143e708e6e470258d4", + "sha256": "0g2057v6qjqi5xl2m1sa2k046lmis83c3g80d13h6plv0rrsvwz2" + } + }, + { + "ename": "org-beautify-theme", + "commit": "f55f1ee9890f720e058401a052e14c7411252967", + "sha256": "0rrlyn61xh3szw8aihxpbmg809xx5ac66xqzj895dn1raz129h2w", + "fetcher": "github", + "repo": "jonnay/org-beautify-theme", + "unstable": { + "version": [ + 20170908, + 2218 + ], + "commit": "df6a1114fda313e1689363e196c8284fbe2a2738", + "sha256": "1lkz7736swimad12khwbbqc4gxjydgr1k45p4mx03s25pv1w920y" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "7b7a7cbd4f25f77e8bd81783f517b2b182220fd9", + "sha256": "0nqw4apv642vqbjjqbi960zim9lkbnaszrlasf25c9fnzdg1m134" + } + }, + { + "ename": "org-board", + "commit": "d8063ee17586d9b1e7415f7b924239826b81ab08", + "sha256": "00jsrxc8f85cvrh7364n7337frdj12yknlfp28fhdgk2ph6d7bp4", + "fetcher": "github", + "repo": "scallywag/org-board", + "unstable": { + "version": [ + 20190203, + 1424 + ], + "commit": "2e01e801abc04b8fb718ca4bc19636242ac0cb52", + "sha256": "044nqxrg11qk0lnipzvhvdyd37vjkklaksyasrn6k1ifcfdx2qp8" + }, + "stable": { + "version": [ + 1018 + ], + "commit": "405bfd630f1b31bd77158bc8e79aab86812cba65", + "sha256": "066shdqp0bca2xlds1m0c5ml3yxqfyzsyyy7sy72ybv41n5b11x3" + } + }, + { + "ename": "org-bookmark-heading", + "commit": "eaadbd149399c6e3c48ac5cbeedeb29a3f5791f1", + "sha256": "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9", + "fetcher": "github", + "repo": "alphapapa/org-bookmark-heading", + "unstable": { + "version": [ + 20180904, + 1709 + ], + "deps": [ + "f" + ], + "commit": "eba5ef7a3c992c4a9da86f64d12fca0c1158208a", + "sha256": "1amq48yldydg9prcxvxn5yi0k8xk87h1azscr9hh9phnll2yys1d" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "70b014e09977371a8c9bad03085c116693062b19", + "sha256": "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93" + } + }, + { + "ename": "org-brain", + "commit": "47480fbae06e4110d50bc89db7df05fa80afc7d3", + "sha256": "0c05c6lbr740nnjp9p34padrbrc3q1x2pgylkyhsxadm4mfsvj0c", + "fetcher": "github", + "repo": "Kungsgeten/org-brain", + "unstable": { + "version": [ + 20190731, + 1217 + ], + "deps": [ + "org" + ], + "commit": "6261549545af690313839b456d4c8486b39288bb", + "sha256": "01z8z78h6095lpbsi0f8y99az3nhdh04dnfmng8y0iqkmbqkqkq9" + } + }, + { + "ename": "org-bullets", + "commit": "fe60fc3c60d87b5fd7aa24e858c79753d5f7d2f6", + "sha256": "0yrfgd6r71rng3qipp3y9i5mpm6510k4xsfgyidcn25v27fysk3v", + "fetcher": "github", + "repo": "emacsorphanage/org-bullets", + "unstable": { + "version": [ + 20180208, + 2343 + ], + "commit": "b56f2e3812626f2c4ac1686073d102c71f4a8513", + "sha256": "0a0dml6y49n3469vrfpgci40k4xxlk0q4kh2b27shjb440wrmv4x" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "commit": "b70ac2ec805bcb626a6e39ea696354577c681b36", + "sha256": "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w" + } + }, + { + "ename": "org-caldav", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1wzb5garpxg8p7zaqp6z5q0l2x8n9m7fjg5xy3vg9878njnqr9kc", + "fetcher": "github", + "repo": "dengste/org-caldav", + "unstable": { + "version": [ + 20180403, + 2036 + ], + "deps": [ + "org" + ], + "commit": "8d3492c27a09f437d2d94f2736c56d7652e87aa0", + "sha256": "19q83xgbdabkidx26xvff1x7kixk2wllplnwfsy7kggdj9wqpm9l" + } + }, + { + "ename": "org-capture-pop-frame", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "1k0njip25527nkn8w11yl7dbk3zv9p9lhx0a9xx293havjxygvyi", + "fetcher": "github", + "repo": "tumashu/org-capture-pop-frame", + "unstable": { + "version": [ + 20160518, + 1008 + ], + "commit": "b16fd712de62cf0d1f9befd03be6ab5983cb3301", + "sha256": "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis" + } + }, + { + "ename": "org-category-capture", + "commit": "6760daac1ef9d9d7ba07e2fc9668873020f901f1", + "sha256": "0l5n71h9lc8q9k0sb5ghzwb81lah4l1ykc06shfl9zw5lqqvahav", + "fetcher": "github", + "repo": "IvanMalison/org-projectile", + "unstable": { + "version": [ + 20180601, + 242 + ], + "deps": [ + "org" + ], + "commit": "de37d0094791ab1146276904f3a37eba699e0b60", + "sha256": "05h9scvnd9ggfwbbl1m124k6sdn5kp9mv2695cril2m4dkr1kyqz" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "org" + ], + "commit": "48f621b595e748c5e03431f237facf258ffc9443", + "sha256": "00n2msmwcjjiibrhrvpawzgz6qcjjfy9qnii1iaass0038g4bd89" + } + }, + { + "ename": "org-chef", + "commit": "23b9e64887a290fca7c7ab2718f627f8d728575f", + "sha256": "1xzbdrv5z31lxnzzgbp50l10lzlvx6j7kc7ssg76fma49wfpnra5", + "fetcher": "github", + "repo": "Chobbes/org-chef", + "unstable": { + "version": [ + 20190608, + 1559 + ], + "deps": [ + "org" + ], + "commit": "8f1a1845542925e4ecafe8d68ee752b404ecc51c", + "sha256": "0r9ax5yxvb1fqiil881yhywvypwxv9bafgqgjx4sl59y4ilksx15" + } + }, + { + "ename": "org-cliplink", + "commit": "7ddb13c59441fdf4eb1ba3816e147279dea7d429", + "sha256": "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p", + "fetcher": "github", + "repo": "rexim/org-cliplink", + "unstable": { + "version": [ + 20190608, + 2134 + ], + "commit": "82402cae7e118d67de7328417fd018a18f95fac2", + "sha256": "0cx0bmpsniazpl420cck9pgvmyfznrvl5bgrjnfyvkmqgpz9nyzv" + } + }, + { + "ename": "org-clock-convenience", + "commit": "a80ed929181cdd28886ca598a0c387a31d239b2e", + "sha256": "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw", + "fetcher": "github", + "repo": "dfeich/org-clock-convenience", + "unstable": { + "version": [ + 20190130, + 1610 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "7d14699a15ad6c5b9a63246a11188c77f8800e94", + "sha256": "05r6jgh8ys4ihpns7g64n4zbnvyy5fvndf9v7zinq2nk6grb393q" + } + }, + { + "ename": "org-clock-csv", + "commit": "e023cb898699f76f6c3d9ffe8162aacfc6a8c34f", + "sha256": "02spjrzdf1kmvyvqkzg7nnmq9kqv75zwxn5ifqmg0f7a1gw28f0l", + "fetcher": "github", + "repo": "atheriel/org-clock-csv", + "unstable": { + "version": [ + 20190418, + 1505 + ], + "deps": [ + "org", + "s" + ], + "commit": "e2fbaa1ad1a1be40fceecde603a600b292b76acc", + "sha256": "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "org", + "s" + ], + "commit": "e2fbaa1ad1a1be40fceecde603a600b292b76acc", + "sha256": "1fpjga40v2wlkvq4ap75hd844m47gm55dkraznqz078k5f8fx8kk" + } + }, + { + "ename": "org-clock-split", + "commit": "dc8517485e39093a3be387213f766d1df7d50061", + "sha256": "1ihqp4ilz4a3qs2lrc3j0lqkjh782510m2nbzba89pasgl4c4jhw", + "fetcher": "github", + "repo": "justintaft/org-clock-split", + "unstable": { + "version": [ + 20180909, + 2047 + ], + "commit": "b2f1497b62e7f4a767be02e249e4ac95d4f8f21c", + "sha256": "099jxkyx7ikfqz99sx632a6c0mc630qkix3c307sm7y317jcdz8l" + } + }, + { + "ename": "org-clock-today", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1x9hplz9w2kpa239rz6y02hsl4fgzxlkwr9hhwjy12x1f88x0k73", + "fetcher": "github", + "repo": "mallt/org-clock-today-mode", + "unstable": { + "version": [ + 20161014, + 920 + ], + "commit": "02b8fd541a01040405a9a1400c46dcb68b7c2a3a", + "sha256": "1gbkrgbpsrwkjd199giffim8jvx1n4dqrsyk53sz1swj9dlhxgp9" + } + }, + { + "ename": "org-commentary", + "commit": "3e0a40d9ea5849b9c22378a84ac8122e4eb2737d", + "sha256": "0ym1rq2zhyhc6hkk40wsa9jni2h1z5dkaisldqzg8ggl7iv3v4fx", + "fetcher": "github", + "repo": "smaximov/org-commentary", + "unstable": { + "version": [ + 20160802, + 637 + ], + "deps": [ + "dash", + "org" + ], + "commit": "821ccb994811359c42f4e3d459e0e88849d42b75", + "sha256": "0ixhyn8s7l2caq0qpv9zlq9fzm3z8b81755c3yffnk5camnij6py" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash", + "org" + ], + "commit": "2eeeb0f506e30ef82263e67279d837a79cbde021", + "sha256": "02an98pc52yfxsxmz1kib692yx93rqdi1q3lpvblzyd3hhd51rlr" + } + }, + { + "ename": "org-context", + "commit": "f33b6157eb172719a56c3e86233708b1e545e451", + "sha256": "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz", + "fetcher": "github", + "repo": "thisirs/org-context", + "unstable": { + "version": [ + 20170107, + 1337 + ], + "commit": "a3b4a4ce6d15e3c2d45eb5dcb78bea81913f3e21", + "sha256": "18swz38q8z1nga6l8f1l27b7ba3y5y3ikk0baplmich3hxav58xj" + } + }, + { + "ename": "org-cua-dwim", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy", + "fetcher": "github", + "repo": "mattfidler/org-cua-dwim.el", + "unstable": { + "version": [ + 20120203, + 534 + ], + "commit": "a55d6c7009fc0b22f1110c07de629acc955c85e4", + "sha256": "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm" + } + }, + { + "ename": "org-d20", + "commit": "98bf91038196dfb59c491c9ed96c6b6a0cb311a9", + "sha256": "158n900ifb1mfckd0gjmb9gpzibh8a2x56flbn2r035gcdbb7wc5", + "fetcher": "git", + "url": "https://git.spwhitton.name/org-d20", + "unstable": { + "version": [ + 20190628, + 1356 + ], + "deps": [ + "dash", + "s", + "seq" + ], + "commit": "0ca1b0a8d9ab0a7d687a9f2edb6eae2e57851129", + "sha256": "0wg95wirq964klpihhgv2flnkyjwwpdqiafn2b2l1785906csrcg" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "dash", + "s", + "seq" + ], + "commit": "e0fb2c04a55c55cbf59a85a0b2e23ef18370ca61", + "sha256": "1q5s2gj1968z23qf7ds2ychvvnzmlayh1v16krf0lf3zj7a3k20s" + } + }, + { + "ename": "org-dashboard", + "commit": "11ce0ba772672d9cbae5713ebaf3798eec5fdb3c", + "sha256": "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5", + "fetcher": "github", + "repo": "bard/org-dashboard", + "unstable": { + "version": [ + 20171223, + 1924 + ], + "deps": [ + "cl-lib" + ], + "commit": "02c0699771d199075a286e4502340ca6e7c9e831", + "sha256": "0zi23xgv5fq827dljhzp6m2v7ggr3pdw3fpgq8515gs9q4f12v1r" + } + }, + { + "ename": "org-doing", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "10vg0wl8dsy12r51178qi4rzi94img692z5x3zv8dxa29lmn26xs", + "fetcher": "github", + "repo": "rudolfolah/org-doing", + "unstable": { + "version": [ + 20161017, + 1620 + ], + "commit": "07ddbfc238cba31e4990c9b52e9a2757b39111da", + "sha256": "1d9gf6wf3jp07bn2h6bbc75iy0wwdvzdlj9n4nwbc46nf3k154pa" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "e099514cfc162f8fe3d383456a7964743b0455d5", + "sha256": "1hvnrw0y3chlfv6zxsczmm8zybrnakn3x13ykv2zblw96am9kd2s" + } + }, + { + "ename": "org-dotemacs", + "commit": "4c1847184312c8c95e7e81e5b3b73e5621cc2509", + "sha256": "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4", + "fetcher": "github", + "repo": "vapniks/org-dotemacs", + "unstable": { + "version": [ + 20190116, + 2155 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "5f504f36af6bcb9dbe9869c7ed54851d3db742e7", + "sha256": "0pxphad9qxssqxr50g0mf20b7247xjp9a6fmb494bj8yv6wnn9m9" + } + }, + { + "ename": "org-download", + "commit": "edab283bc9ca736499207518b4c9f5e71e822bd9", + "sha256": "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi", + "fetcher": "github", + "repo": "abo-abo/org-download", + "unstable": { + "version": [ + 20190604, + 1340 + ], + "deps": [ + "async" + ], + "commit": "ac72bf8fce3e855da60687027b6b8601cf1de480", + "sha256": "0ax5wd44765wnwabkam1g2r62gq8crx2qq733s2mg1z72cfvwxqb" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "async" + ], + "commit": "a57beffd0f09b218a9487d1750960878c1d5b12c", + "sha256": "1disqqfwjl366kv6xgc28w7zbc4xl9a0jmdj7w27mb00sxzfk3vb" + } + }, + { + "ename": "org-dp", + "commit": "7f337375082da316ed07b8ce9c775b484b8cdbf6", + "sha256": "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq", + "fetcher": "github", + "repo": "tj64/org-dp", + "unstable": { + "version": [ + 20180311, + 923 + ], + "deps": [ + "cl-lib" + ], + "commit": "e720f1c155a795a5b65a04790ad195c413449716", + "sha256": "1d9fzgmg1hhr0nvas799filymhm6k6acm970gl444x4428fq03l7" + }, + "stable": { + "version": [ + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "d740c2065120f71762c48877da1a31dea881e98e", + "sha256": "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl" + } + }, + { + "ename": "org-drill", + "commit": "c26e11c52c8bb5c88df348cc15df6e0386bf8e1b", + "sha256": "16r8v2blqf0s1j6csp0mw0radm6bjkbdw18lr7zwx8ja1sjl48ws", + "fetcher": "gitlab", + "repo": "phillord/org-drill", + "unstable": { + "version": [ + 20190727, + 1930 + ], + "deps": [ + "org", + "persist", + "seq" + ], + "commit": "7dece4a5e4b37ff32a7733e407d19ba67422008b", + "sha256": "0m5lv0hm5wd5v9ghk5sp1hvdm11hq6aj5kkymr76z6zx7q29jsn3" + } + }, + { + "ename": "org-drill-table", + "commit": "3347da186765877826b224e1f5d1b585ebd3692c", + "sha256": "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69", + "fetcher": "github", + "repo": "chrisbarrett/org-drill-table", + "unstable": { + "version": [ + 20180115, + 1009 + ], + "deps": [ + "cl-lib", + "dash", + "org", + "s" + ], + "commit": "2729aaa42c1e2720d9bf7bcc125e92dcf48b7f7d", + "sha256": "0rqjzn3n42jcnwa5vg2731vxrnj6vy2bacfxmg0hlh3rkhhn0r53" + } + }, + { + "ename": "org-dropbox", + "commit": "cd613fbe42c41b125a25dfa0206666446dc5fa40", + "sha256": "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln", + "fetcher": "github", + "repo": "heikkil/org-dropbox", + "unstable": { + "version": [ + 20150114, + 509 + ], + "deps": [ + "dash", + "names" + ], + "commit": "75dab6d6f0438a7a8a18ccf3a5d55f50bf531f6e", + "sha256": "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx" + } + }, + { + "ename": "org-easy-img-insert", + "commit": "512db70609fc451972405acb4b186a9b3c6944fa", + "sha256": "0gpb9f66gn8dbhwrlw7z2a5rpphbh1fv845wz8yy4v7nv2j3sf54", + "fetcher": "github", + "repo": "tashrifsanil/org-easy-img-insert", + "unstable": { + "version": [ + 20160915, + 2008 + ], + "commit": "9f8aaa7f68ff1f0d8d7b1e9b618abb15002f971e", + "sha256": "1p0hzfzlcdmd8d01a4xqg27n7qcnv7a03n8wiicv0dnicx179952" + } + }, + { + "ename": "org-edit-latex", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0nkiz4682qgk5dy4if3gij98738482ys8zwm8yx834za38xxbwry", + "fetcher": "github", + "repo": "et2010/org-edit-latex", + "unstable": { + "version": [ + 20170908, + 1522 + ], + "deps": [ + "auctex" + ], + "commit": "1f228310ef2f3f2959a527f6d99e42ce977384c8", + "sha256": "1zfimgnmn7nqaq8aglyly55k5dr548467masr2g4x3m0z1by1z6b" + }, + "stable": { + "version": [ + 0, + 8, + 3 + ], + "deps": [ + "auctex" + ], + "commit": "39cbc9a99acb030f537c7269ab93958187321871", + "sha256": "1w0lyz71dq8x28ira4hig1b70bqn1dr53w3k5dgch9szcf6xa86y" + } + }, + { + "ename": "org-ehtml", + "commit": "7f68028b3f4d2455da6d657e90abcab6181db284", + "sha256": "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw", + "fetcher": "github", + "repo": "eschulte/org-ehtml", + "unstable": { + "version": [ + 20150506, + 2358 + ], + "deps": [ + "web-server" + ], + "commit": "9df85de1a0fe1e7b2d6c000777c1a0c0217f92d0", + "sha256": "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq" + } + }, + { + "ename": "org-elisp-help", + "commit": "b0a9bf5046a4c3be8a83004d506bd258a6f7ff15", + "sha256": "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h", + "fetcher": "github", + "repo": "tarsius/org-elisp-help", + "unstable": { + "version": [ + 20161122, + 55 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "3e33ab1a2933dd7f2782ef91d667a37f12d633ab", + "sha256": "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "3e33ab1a2933dd7f2782ef91d667a37f12d633ab", + "sha256": "088pbafz1x4z7qi70cjbrvfrcdrjp4zy0yl115klbidshqhxycmj" + } + }, + { + "ename": "org-emms", + "commit": "4fa5c221790acca40316510fd495951f418c8e15", + "sha256": "0g7d2y1dgy2hgiwaxz9crxf3nv8aqzxhyf2jmnmhphdv2s9ipvjw", + "fetcher": "gitlab", + "repo": "jagrg/org-emms", + "unstable": { + "version": [ + 20181010, + 1114 + ], + "commit": "07a8917f3d628c32e5de1dbd118ac08203772533", + "sha256": "1sqsm5sv311xfdk4f4rsnvprdf2v2vm7l1b3vqi7pc0g8adlnw1d" + } + }, + { + "ename": "org-evil", + "commit": "17a4772d409aa5dbda5fb84d86c237fd2653c70b", + "sha256": "0wvd201k9b9ghg39rwbah6rw8b7hyyd27vvqjynjwbk3v8rp5zyn", + "fetcher": "github", + "repo": "GuiltyDolphin/org-evil", + "unstable": { + "version": [ + 20180620, + 1517 + ], + "deps": [ + "dash", + "evil", + "monitor", + "org" + ], + "commit": "3b4620edc606412ef75c0b5aa637af22486eb126", + "sha256": "0aqya9l9s55h5wd728iz15f53p5xajrfk8pn9gjxnw0i8m4d09sd" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "dash", + "evil", + "monitor", + "org" + ], + "commit": "3b4620edc606412ef75c0b5aa637af22486eb126", + "sha256": "0aqya9l9s55h5wd728iz15f53p5xajrfk8pn9gjxnw0i8m4d09sd" + } + }, + { + "ename": "org-fancy-priorities", + "commit": "712902ae1cf967ceb2052266ed3244e92998f8a7", + "sha256": "13rljgi5fbzlc16cxqj49yg47a5qpyxzj0lswhdyhgzncp1fyq7p", + "fetcher": "github", + "repo": "harrybournis/org-fancy-priorities", + "unstable": { + "version": [ + 20180328, + 2331 + ], + "commit": "819bb993b71e7253cefef7047306ab4e0f9d0a86", + "sha256": "13cyzlx0415i953prq6ch7r5iy23c1pz116bdxi5yqags4igh4wv" + } + }, + { + "ename": "org-gcal", + "commit": "d97c701819ea8deaa8a9664db1f391200ee52c4f", + "sha256": "014h67ba0cwi4i1llngypscyvyrm74ljh067i3iapx5a18q7xw5v", + "fetcher": "github", + "repo": "kidd/org-gcal.el", + "unstable": { + "version": [ + 20190401, + 1741 + ], + "deps": [ + "alert", + "cl-lib", + "org", + "request-deferred" + ], + "commit": "3874040bd86050db60b982bb62acafb69b6a4d9b", + "sha256": "1dffrws0rvxvsg9jqjx239zxssd6sskqv3x58mm5vvhna423cm67" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "alert", + "cl-lib", + "org", + "request-deferred" + ], + "commit": "badd3629e6243563c30ff1dd0452b7601f6cc036", + "sha256": "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498" + } + }, + { + "ename": "org-gnome", + "commit": "4f7ebd2d2312954d098fe4afd07c3d02b4df475d", + "sha256": "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v", + "fetcher": "github", + "repo": "NicolasPetton/org-gnome.el", + "unstable": { + "version": [ + 20150614, + 1457 + ], + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ], + "commit": "122e14cf6f8104150a65246a9a7c10e1d7939862", + "sha256": "0jd5zwykc6fkkaj8qhg7wgmrjn47054x242b5s03w8ylyczqbcg3" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "alert", + "gnome-calendar", + "telepathy" + ], + "commit": "1012d47886cfd30eed25b73d9f18e475e0155f88", + "sha256": "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1" + } + }, + { + "ename": "org-grep", + "commit": "5ed0682fb9130a62e628d4e64747bb9c70456681", + "sha256": "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz", + "fetcher": "github", + "repo": "emacsorphanage/org-grep", + "unstable": { + "version": [ + 20151202, + 1229 + ], + "deps": [ + "cl-lib" + ], + "commit": "5bdd04c0f53b8a3d656f36ea17bba3df7f0cb684", + "sha256": "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c" + } + }, + { + "ename": "org-if", + "commit": "09df84b60c46678ad40d8dabc08fcfe518f5ad79", + "sha256": "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96", + "fetcher": "gitlab", + "repo": "elzair/org-if", + "unstable": { + "version": [ + 20150920, + 1513 + ], + "commit": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "fab602cc1bbee7a4e99c0083e129219d3f9ed2e8", + "sha256": "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq" + } + }, + { + "ename": "org-index", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "092q92hwvknwm3v2shp8dm59qdamfivx9z9v23msysy7x2mhg98f", + "fetcher": "github", + "repo": "marcIhm/org-index", + "unstable": { + "version": [ + 20190703, + 1328 + ], + "commit": "eeed0584b1ebcc29bdbfd354e23141fe9f94b945", + "sha256": "0bfxl3ab1xpbpyvcr0qx6nk4lc1xm9ci29klqnr9msy5i94i6b8k" + }, + "stable": { + "version": [ + 5, + 12, + 0 + ], + "commit": "fc9635edd4bf394059e53a1fa16cdd8ab5b7b468", + "sha256": "0qzqlfnrc2x4mm40wrsmpbh61129ww2a2sk4s1px49fi8552vqyq" + } + }, + { + "ename": "org-iv", + "commit": "e7db0c34f0f6fb9c3b9e581a74304cc9a26ed342", + "sha256": "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx", + "fetcher": "github", + "repo": "kuangdash/org-iv", + "unstable": { + "version": [ + 20171001, + 1022 + ], + "deps": [ + "cl-lib", + "impatient-mode", + "org" + ], + "commit": "7f2bb1b32647655fd9d6684f6f09dcc66b61b0cd", + "sha256": "0s3fi8sk7jm5vr0fz20fbygm4alhpirv0j20jfi1pab14yhhf34h" + } + }, + { + "ename": "org-jira", + "commit": "e0a2fae6eecb6b4b36fe97ad99691e2c5456586f", + "sha256": "1sbypbz00ki222zpm47yplyprx7h2q076b3l07qfilk0sr8kf4ql", + "fetcher": "github", + "repo": "ahungry/org-jira", + "unstable": { + "version": [ + 20190712, + 443 + ], + "deps": [ + "cl-lib", + "dash", + "request" + ], + "commit": "d1d2ff6155c6259a066110ed13d1850143618f7b", + "sha256": "064pxsf5kkv69bs1f6lhqsvqwxx19jwha3s6vj8rnk8smawv0w9r" + }, + "stable": { + "version": [ + 4, + 3, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "request", + "s" + ], + "commit": "3a6c9fd6886f9dbd11b055fb3bf54513fa278940", + "sha256": "1l80r2a9zzbfk2c78i40h0ww79vm9v4j6xi2h5i4w9kqh10rs6h2" + } + }, + { + "ename": "org-journal", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b", + "fetcher": "github", + "repo": "bastibe/org-journal", + "unstable": { + "version": [ + 20190701, + 1600 + ], + "commit": "eb7f9ab2f3e322586551c2f94c548868f8fb7aa2", + "sha256": "1h2w608a5r841bjcbacy2z5ph4mhykrg1zphrflz91ypsygn0qnj" + }, + "stable": { + "version": [ + 1, + 15, + 1 + ], + "commit": "af2819c41b34fc88e2aee473fbdf695451ba167c", + "sha256": "05kxs63ssgc6h47cjldxxmx9ggy1fyaxxrxzaq078gj56411gmld" + } + }, + { + "ename": "org-journal-list", + "commit": "7c0186e507b6b309a35abb076988da740cee8f84", + "sha256": "1aw6pf747n3z00xg8viakckm0bb6m9hnrkxphhhsfvqqgwfpzkb9", + "fetcher": "github", + "repo": "huytd/org-journal-list", + "unstable": { + "version": [ + 20190221, + 2052 + ], + "commit": "2b26d00181bb49bff64b31ad020490acd1b6ae02", + "sha256": "0bcj9b7c4pyyvxlgnysl5lhs9ndp60xwizd85zrkd2mh2m8sbq9v" + } + }, + { + "ename": "org-kanban", + "commit": "a9f3a10c126fa43a6fa60ee7f8e50c7a9661dbc1", + "sha256": "1flgqa2pwzw6b2zm3j09i9bvz1i8k03mbwj6l75yrk29lh4njq41", + "fetcher": "github", + "repo": "gizmomogwai/org-kanban", + "unstable": { + "version": [ + 20190528, + 507 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "dcf5e8c0a2d82bc4101c03ba21a2d38b406ea00b", + "sha256": "02n5753kqvb6ankqrynrlalik5r9g367rg4yzmf8mhx52x1h5va4" + }, + "stable": { + "version": [ + 0, + 4, + 13 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "03387a779167c4acbc04d4970cd33c52a2ca0bcd", + "sha256": "0arjx1a7skdlmagyy0bbxwc134dn951y99yv4jg6l64j1f31y0yg" + } + }, + { + "ename": "org-kindle", + "commit": "29d08205620d51d4d76e3a4a6124884b5a6b9db7", + "sha256": "17sxvyh3z5pn2353iz2v6xjxp98yxwd4n7wkqsa9nwihsw5mmrrw", + "fetcher": "github", + "repo": "stardiviner/org-kindle", + "unstable": { + "version": [ + 20190315, + 439 + ], + "deps": [ + "cl-lib", + "seq" + ], + "commit": "612a2894bbbff8a6cf54709d591fee86005755de", + "sha256": "1h3pbjiy5v8lp3p6dry4jk3pvdp7hpkc517d3w9ldhz6nmaiccgg" + } + }, + { + "ename": "org-link-minor-mode", + "commit": "b1d2add7baf96c9a18671766d61c8aa028756796", + "sha256": "1akb670mzzhmldw2202x3k6b7vwfcn0rs55znpxsrc4iqihdgka3", + "fetcher": "github", + "repo": "seanohalpin/org-link-minor-mode", + "unstable": { + "version": [ + 20170805, + 1852 + ], + "deps": [ + "org" + ], + "commit": "7b92df60f3fee7f609d649d80ef243b45771ebea", + "sha256": "1lz7qj57s391ssawmccvhgxv1w99fj1m9rg3g4pymdl3sgdcz4g4" + } + }, + { + "ename": "org-link-travis", + "commit": "52c7f9539630e5ac7748fe36fd27c3486649ab74", + "sha256": "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs", + "fetcher": "github", + "repo": "aki2o/org-link-travis", + "unstable": { + "version": [ + 20140405, + 2327 + ], + "deps": [ + "org" + ], + "commit": "596615ad8373d9090bd4138da683524f0ad0bda5", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "org" + ], + "commit": "596615ad8373d9090bd4138da683524f0ad0bda5", + "sha256": "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8" + } + }, + { + "ename": "org-linkany", + "commit": "df82cf95e34775b22da0a8bb29750f603c58f259", + "sha256": "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c", + "fetcher": "github", + "repo": "aki2o/org-linkany", + "unstable": { + "version": [ + 20160207, + 411 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "8cfe2f1a46e6654a79f56505349d1396263cecb3", + "sha256": "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "ed4a6614b56c9baef31647ea728b3d5fae6ed3a2", + "sha256": "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p" + } + }, + { + "ename": "org-listcruncher", + "commit": "5bed5078a3e56a825be61d158ca8321763b92f7c", + "sha256": "05vi7a03gj1waaqcjnkgpij4r45r2087xg7kgfs6ki8zhsyws23q", + "fetcher": "github", + "repo": "dfeich/org-listcruncher", + "unstable": { + "version": [ + 20180815, + 603 + ], + "deps": [ + "cl-lib", + "seq" + ], + "commit": "50bd8c22cde3b9b091889861e44a5043b53556f7", + "sha256": "01xz10xicsq07cyd6b42q3r8wnmsn91zjqkrh014d54alakkwhjj" + } + }, + { + "ename": "org-lookup-dnd", + "commit": "77a8cd0ff954ab87fa57cc6544146b5937779a3b", + "sha256": "06g2w75nyk354fpg8b8w1v4xzsiwx3sglwxk3azrn2g4sdlammmz", + "fetcher": "gitlab", + "repo": "maltelau/org-lookup-dnd", + "unstable": { + "version": [ + 20190622, + 2224 + ], + "deps": [ + "org-pdfview" + ], + "commit": "af09bdf2c83499be9f7c271bb3c0cc3c46ed95f4", + "sha256": "0bm8i4bfa76igzzjlv9qx9fh3diplmvhn99bz1clq1ifr4i53sv0" + } + }, + { + "ename": "org-make-toc", + "commit": "df87749128bcfd27ca93a65084a2e88cd9ed5c3f", + "sha256": "0xaw3d1axvln4pr7p0jnqf0j6fd1g6cra1gykvf6y12zx02xkchh", + "fetcher": "github", + "repo": "alphapapa/org-make-toc", + "unstable": { + "version": [ + 20190104, + 512 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "9adeaf9da23fd3f7600821526f7e41f4ed17dd4a", + "sha256": "122fvv6waq70qcccgwnmyfmci48k8zc7vzmagadypmw8grgdjdx2" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "f1a51017b0f85e0cb9ae7d0d8240f2115f57886c", + "sha256": "0syhj8q4pv33xgl5qa6x27yhwqvfhffw5xqp819hj4qs1ddlc7j5" + } + }, + { + "ename": "org-mime", + "commit": "521678fa13884dae69c2b4b7a2af718b2eea4b28", + "sha256": "14154pajl2bbawdd8iqfwgc67pcjp2lxl6f92c62nwq12wkcnny6", + "fetcher": "github", + "repo": "org-mime/org-mime", + "unstable": { + "version": [ + 20190702, + 1129 + ], + "deps": [ + "cl-lib" + ], + "commit": "286330fa15167add4b17eb62b0c52695f08a76e8", + "sha256": "1b6mcvhcyyf84g4yg44i0f7vpisw6dyimm5h9kqfzw8npx6gmfah" + }, + "stable": { + "version": [ + 0, + 1, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "f8eac8ccdec2ebf1dec87d4f5f01b4b53f86c67c", + "sha256": "0gjdhhri2fm93phvv3fnw6iz5agpafryacj521j80jf1dmj2bj5h" + } + }, + { + "ename": "org-mind-map", + "commit": "3c8683ee547a6a99f8d258561c3ae157b1f427f2", + "sha256": "07wffzf4dzfj8bplwhr9yscm6l9wbz8y01j0jc8cw943z5b8pdgs", + "fetcher": "github", + "repo": "theodorewiles/org-mind-map", + "unstable": { + "version": [ + 20180826, + 2340 + ], + "deps": [ + "dash", + "org" + ], + "commit": "16a8aac5462c01c4e7b6b7915381fde42fd3caf6", + "sha256": "0ipkmws7r8dk2p65m9jri90s8pgxhzidz7g2fmh7d6cz97jbk3v7" + } + }, + { + "ename": "org-mobile-sync", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "152mswykbz3m9w1grpsvb6wi9rg1vf3clnrl8qy6v911c0hy1s9c", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/org-mobile-sync.git", + "unstable": { + "version": [ + 20180606, + 524 + ], + "deps": [ + "org" + ], + "commit": "06764b943a528827df1e2acc6bc7806cc2c1351f", + "sha256": "0qdgs965ppihsz2ihyykdinr4n7nbb89d384z7kn985b17263lvn" + } + }, + { + "ename": "org-mru-clock", + "commit": "b36bf1c1faa4d7e38254416a293e56af96214136", + "sha256": "1arww5x6vdyyn1bwxry91w88phbr9l6nk8xxrw40iqmmbhggahgm", + "fetcher": "github", + "repo": "unhammer/org-mru-clock", + "unstable": { + "version": [ + 20190610, + 2005 + ], + "commit": "1547191254f6fc58b62864d0224356e72bd7d933", + "sha256": "0j3gscmf8i05ixj31ipdc88kbb7zqs5sdhbd3ipqpahakmg6axhh" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "1547191254f6fc58b62864d0224356e72bd7d933", + "sha256": "0j3gscmf8i05ixj31ipdc88kbb7zqs5sdhbd3ipqpahakmg6axhh" + } + }, + { + "ename": "org-msg", + "commit": "6aec5f72baa870fe57df0fd366696329651a221f", + "sha256": "0pznyvjks4ga204nv9v1rn7y7ixki437gknp2h854kpf6pdlb2jy", + "fetcher": "github", + "repo": "jeremy-compostella/org-msg", + "unstable": { + "version": [ + 20190710, + 2230 + ], + "deps": [ + "htmlize" + ], + "commit": "2e01080507e2276d5c52140f2c66f692e8e62f47", + "sha256": "18l8rjzkrrqmfq86s0m23xry8c92mls8bw019drbqix5g7ijw2gv" + } + }, + { + "ename": "org-multiple-keymap", + "commit": "0a22beed723d149282e70e3411b79e8ce9f5ab2b", + "sha256": "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f", + "fetcher": "github", + "repo": "myuhe/org-multiple-keymap.el", + "unstable": { + "version": [ + 20150329, + 106 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "8ebc532df7f0dd6e6c3aa7c380a51d4166c668e8", + "sha256": "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "20eb3be6be9f0abbad9f0d007e40cb00c8109201", + "sha256": "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp" + } + }, + { + "ename": "org-notebook", + "commit": "04149b1f158e857ea824fe120372ac52a000adcf", + "sha256": "045xqmrik1s83chl7l7fnlav2p76xrfj21kacpjj215saz1f8nld", + "fetcher": "github", + "repo": "Rahi374/org-notebook", + "unstable": { + "version": [ + 20170322, + 452 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "86042d866bf441e2c9bb51f995e5994141b78517", + "sha256": "0znxn6zzc9645m3wmkryf4xwjskf7gwylrg6z2kmr1wpjlpfwb01" + } + }, + { + "ename": "org-noter", + "commit": "4a2bc0d95dc2744277d6acbba1f7483b4c14d75c", + "sha256": "0vsc2b1yz9lw0zv1vnm722pl35kxpwhcdi7h6mijhnw8vv7rhixf", + "fetcher": "github", + "repo": "weirdNox/org-noter", + "unstable": { + "version": [ + 20190502, + 1425 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "920798e2a977ca74b77cf728ee40bb48450f941b", + "sha256": "1sx4pf5hwbq7r967zigzq3jhhisd3x9pf3nmp7iickyd1jcg3qbv" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "8fb007c329fee8cceca97338ae0e88aaafcb8535", + "sha256": "0qcdw1px07ggnp74gb3hibd69cq8np9bdpcpvlkm5k32qxhsnwjy" + } + }, + { + "ename": "org-octopress", + "commit": "fba6c3c645ba903f636814b5a2bb1baca0b5283b", + "sha256": "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw", + "fetcher": "github", + "repo": "yoshinari-nomura/org-octopress", + "unstable": { + "version": [ + 20170821, + 415 + ], + "deps": [ + "ctable", + "org", + "orglue" + ], + "commit": "38598ef98d04076a8eb78d549907ddfde8d3a652", + "sha256": "0bmj5wkwidj1v3b8ipligr0nkfdaxm82717nz8fqidz967q4xbk6" + } + }, + { + "ename": "org-onenote", + "commit": "7705ee9a8733733664b6214bf4eec15d640c6895", + "sha256": "0qgmizzryb6747yd80d3nic3546f4h8vjd6c30jr99vv2ildjsfk", + "fetcher": "github", + "repo": "ifree/org-onenote", + "unstable": { + "version": [ + 20171008, + 500 + ], + "deps": [ + "oauth2", + "org", + "request" + ], + "commit": "5ce5cf4edb143180e0b185ac26826d39ae5bc929", + "sha256": "1jlnnb04ichcl155lklvjw91l8j1dvg77bv1815chak226aq4xqj" + } + }, + { + "ename": "org-outline-numbering", + "commit": "6dbd71c2176c1160e8418631d69f4bcba75845fd", + "sha256": "131cpvfsiv92bbicq5n7dlr6k643sk7xw31xs0lwmw4pxq44m8sg", + "fetcher": "gitlab", + "repo": "andersjohansson/org-outline-numbering", + "unstable": { + "version": [ + 20180705, + 1501 + ], + "deps": [ + "cl-lib", + "org", + "ov" + ], + "commit": "b95b6a7ed9289637cb512232470633b330ca9713", + "sha256": "03x3n2ywgk2x7slpzy26bw3l9l000pd964z0yifvf9fqhpbk5d0r" + } + }, + { + "ename": "org-outlook", + "commit": "804a4b6802d2cf53e5415d956f0b4772853f4c69", + "sha256": "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9", + "fetcher": "github", + "repo": "mattfidler/org-outlook.el", + "unstable": { + "version": [ + 20160705, + 1338 + ], + "commit": "ec32d8d9d8ffd17e6de4de0b52fc3f5ad9b4cc0d", + "sha256": "1la7g9qzn8wbfzc2zd6gddi1zl145b35311l66sjyffidmhgfw8d" + }, + "stable": { + "version": [ + 0, + 11 + ], + "commit": "070c37d017ccb71d94c3c69c99632fa6570ec2cc", + "sha256": "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a" + } + }, + { + "ename": "org-page", + "commit": "97287dd40d3ebd80c9804589e93626faad88fb91", + "sha256": "0680fbcq0vv1w4kyk99crrcx5rhm8qpz7bgaab2gxndw1za7nxfm", + "fetcher": "github", + "repo": "sillykelvin/org-page", + "unstable": { + "version": [ + 20170807, + 224 + ], + "deps": [ + "cl-lib", + "dash", + "git", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ], + "commit": "d539731d7a38899ef034b905f834f383ed102881", + "sha256": "1g8ins9kp0sl19dgk697xhh9vnxbryz74zc4qk61gbmfd5farg7y" + }, + "stable": { + "version": [ + 0, + 41 + ], + "deps": [ + "ht", + "htmlize", + "mustache", + "org" + ], + "commit": "09febf89d8dcb226aeedf8164169b31937b64439", + "sha256": "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3" + } + }, + { + "ename": "org-parser", + "commit": "28d55005cbce276cda21021a8d9368568cb4bcc6", + "sha256": "06yb78mf486b986dhvqg3avflfyi271vykyars465qpk0v8ahq8h", + "fetcher": "bitbucket", + "repo": "zck/org-parser.el", + "unstable": { + "version": [ + 20190207, + 521 + ], + "deps": [ + "dash", + "ht" + ], + "commit": "8610aef8dc878fc001975780bcbcbab30dc929b7", + "sha256": "0vqh37y2b0dc8p9c04ici1h9n9ghd1jizcr1c2zvp75cyqsz09wv" + } + }, + { + "ename": "org-password-manager", + "commit": "fba84d698f7d16ffc0dc16618efcd1cdc0b39d79", + "sha256": "0wxvl6ypgn6ky1z3dh33ya3rh73znkh5f8qhqwfmwp7hy2mbl4la", + "fetcher": "git", + "url": "https://github.com/leafac/org-password-manager", + "unstable": { + "version": [ + 20180227, + 1810 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "4b30a36e71182553a02e4dd415369290d98ec03a", + "sha256": "1a6i3g032c5xzsnaf7rprn22kk68y1ay3w21p3q52p3lvlzhnfis" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "org", + "s" + ], + "commit": "d3a33ddfe583180bdb76cfb8bbd772e0078b24a3", + "sha256": "0pqmnhd3qdg06agj6h8v8lm4m5q8px0qmd7a1bfn6i5g2bq9zrck" + } + }, + { + "ename": "org-pdfview", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1qhlmzf2ffcrjnx4yghv7n6rsry8bcwnkw489spgraq9vxvqklah", + "fetcher": "github", + "repo": "markus1189/org-pdfview", + "unstable": { + "version": [ + 20180225, + 1006 + ], + "deps": [ + "org", + "pdf-tools" + ], + "commit": "09ef4bf8ff8319c1ac78046c7e6b89f6a0beb82c", + "sha256": "15zxdq6f6w3l8pzg3b58cj37z61dx106jwslpqni71m8wczdqkz1" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "org", + "pdf-tools" + ], + "commit": "3a96bfb57cb158ac02cfb4225512699c66f5221d", + "sha256": "0lrcj3mcdfcdrndivhj5ds386zrsy78sfg0i8126wwwc5lfh48vq" + } + }, + { + "ename": "org-pivotal", + "commit": "c1257d38bbd3a9944135b000e962f30ab28f5464", + "sha256": "1gv4968akh2wx92d7q1i1mpl9ndygkq8ssdwg6cf19wp8mk18088", + "fetcher": "github", + "repo": "org-pivotal/org-pivotal", + "unstable": { + "version": [ + 20181216, + 1436 + ], + "deps": [ + "a", + "dash", + "dash-functional", + "request" + ], + "commit": "84b026741a3f06ac4979b970a04f5c9bc38b8be1", + "sha256": "1dvr40i6zxkyimypk9m3p8jl2ff0xkp9pxdiggi5s6kkcrdw3cl7" + } + }, + { + "ename": "org-pomodoro", + "commit": "e54e77c5619b56e9b488b3fe8761188b6b3b4198", + "sha256": "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27", + "fetcher": "github", + "repo": "lolownia/org-pomodoro", + "unstable": { + "version": [ + 20190530, + 1445 + ], + "deps": [ + "alert", + "cl-lib" + ], + "commit": "aa07c11318f91219336197e62c47bc7a3d090479", + "sha256": "0nbprh2nhnmb7ngp9ndr6zr37ashcsvpi5slv7a37x1dl7j6w1k4" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "alert", + "cl-lib" + ], + "commit": "a6d867865f1a033fb5a09cca6643045d7ebac49c", + "sha256": "0r5shgikm34d66i2hblyknbblpg92lb2zc9x4bcb28xkh7m9d0xv" + } + }, + { + "ename": "org-present", + "commit": "aba18f15fbaab115456e6afc9433074558a379f5", + "sha256": "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7", + "fetcher": "github", + "repo": "rlister/org-present", + "unstable": { + "version": [ + 20180303, + 2330 + ], + "deps": [ + "org" + ], + "commit": "d13acd70eff6a1608bc991920232146a0de76b21", + "sha256": "0jz8xiny3rv9ql0p623byz32pip1b82j2c2nyfz2wd114kiabb6q" + } + }, + { + "ename": "org-present-remote", + "commit": "66b092084565634cac8dd07b7b1694d0ddb236ba", + "sha256": "06xxxa8hxfxx47bs6wxi8nbgqc8nm82c3h0yv1ddlm35qfscggks", + "fetcher": "gitlab", + "repo": "duncan-bayne/org-present-remote", + "unstable": { + "version": [ + 20181001, + 2141 + ], + "deps": [ + "elnode", + "org-present" + ], + "commit": "d0f96dd57c152e7aa311ecbe03e7be287fd5979f", + "sha256": "1n0cafvpc8vqhh34d4kicw6a5qn1jpnczjh67nvwd2iw48pii5rk" + } + }, + { + "ename": "org-pretty-tags", + "commit": "9ad60399420764d4ef5d6acddae9241205937e78", + "sha256": "19cxfjl6c0yhsc7kfjd6imckcvzdsaws3yd1s3nazhnkm3kan3h4", + "fetcher": "gitlab", + "repo": "marcowahl/org-pretty-tags", + "unstable": { + "version": [ + 20190715, + 1843 + ], + "commit": "8249601b6c75ac26254f3f12e38f5cb51e22bfdd", + "sha256": "0ws9b473b0dh8sp4qaj8v8p1qvfi0xxmgwnv1biydjwm50mzlran" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "8249601b6c75ac26254f3f12e38f5cb51e22bfdd", + "sha256": "0ws9b473b0dh8sp4qaj8v8p1qvfi0xxmgwnv1biydjwm50mzlran" + } + }, + { + "ename": "org-preview-html", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1dnr046mk5ngmic2yqcmrnn7pzrrx3sg22rk2pc3vgdxs8bhvhf9", + "fetcher": "github", + "repo": "lujun9972/org-preview-html", + "unstable": { + "version": [ + 20180625, + 619 + ], + "deps": [ + "org" + ], + "commit": "8ba7ecd7ac624f33b3e2395f477bbff4f1ec4efe", + "sha256": "1h46v0ckhfzv3fixcfxk7pkmh56c5lana8kpwiknm447q1wmlbx4" + } + }, + { + "ename": "org-projectile", + "commit": "9d7a7ab98f364d3d5e93f83f0cb3d80a95f28689", + "sha256": "0xdkd5pkyi6yfqi4przgp5mpklyxfxv0cww285zdlh00rzl935cw", + "fetcher": "github", + "repo": "IvanMalison/org-projectile", + "unstable": { + "version": [ + 20190130, + 1439 + ], + "deps": [ + "dash", + "org-category-capture", + "projectile", + "s" + ], + "commit": "de37d0094791ab1146276904f3a37eba699e0b60", + "sha256": "05h9scvnd9ggfwbbl1m124k6sdn5kp9mv2695cril2m4dkr1kyqz" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "dash", + "org-category-capture", + "projectile", + "s" + ], + "commit": "48f621b595e748c5e03431f237facf258ffc9443", + "sha256": "00n2msmwcjjiibrhrvpawzgz6qcjjfy9qnii1iaass0038g4bd89" + } + }, + { + "ename": "org-projectile-helm", + "commit": "6760daac1ef9d9d7ba07e2fc9668873020f901f1", + "sha256": "0x79j5yr9wsgzjf1dpp7d4xiji8hgyhr79vb973an5z2r02vnaf4", + "fetcher": "github", + "repo": "IvanMalison/org-projectile", + "unstable": { + "version": [ + 20180601, + 1822 + ], + "deps": [ + "helm", + "org-projectile" + ], + "commit": "de37d0094791ab1146276904f3a37eba699e0b60", + "sha256": "05h9scvnd9ggfwbbl1m124k6sdn5kp9mv2695cril2m4dkr1kyqz" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "helm", + "org-projectile" + ], + "commit": "48f621b595e748c5e03431f237facf258ffc9443", + "sha256": "00n2msmwcjjiibrhrvpawzgz6qcjjfy9qnii1iaass0038g4bd89" + } + }, + { + "ename": "org-protocol-jekyll", + "commit": "6d1ee7c75da91fcf303ea89d148a05ac1e58e23e", + "sha256": "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs", + "fetcher": "github", + "repo": "vonavi/org-protocol-jekyll", + "unstable": { + "version": [ + 20170328, + 1639 + ], + "deps": [ + "cl-lib" + ], + "commit": "dec064a42d6dfe81dfde7ba59ece5ca103ac6334", + "sha256": "1pgc0lfbz6q2x8b5qkk766i5qylql4p0ng732rcqr7rzg6j31gm7" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "c1ac46793eb9bf22b1a601e841947428be5c9766", + "sha256": "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry" + } + }, + { + "ename": "org-ql", + "commit": "4de0a516e002ad0f7475d35258dc4e2d4350696a", + "sha256": "19mb7yjffi6m4xa70w3dz4kcg8j3vvwkxmvhiid75sslb8jsss3w", + "fetcher": "github", + "repo": "alphapapa/org-ql", + "unstable": { + "version": [ + 20190726, + 2139 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "51af2a16a7944f1b902a7fcfb39ae4018da30330", + "sha256": "0bn4f9v3ii516sp6x8i6qqj3hlb7x4s24iymd7jixly5is89sby2" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "org", + "s" + ], + "commit": "eb281fe34569901d84b502c1734d01cdb09246d8", + "sha256": "1nvzirn1lmgmgl7irbsc1n391a2cw8gmvwm3pa228l2c1gcx8kd8" + } + }, + { + "ename": "org-radiobutton", + "commit": "105043d8cfcb62ed89ddf9870f615519e6f415e7", + "sha256": "16ly42iyfh7d34yz4bvdpj3zrlwkw3kmh82gwr25a05mlsdc1d93", + "fetcher": "github", + "repo": "Fuco1/org-radiobutton", + "unstable": { + "version": [ + 20180612, + 1028 + ], + "deps": [ + "dash" + ], + "commit": "4182aafbe5ae1bdfb0b07efa435bdba8bbd7199d", + "sha256": "0jm5ijs4pjzvlzpqk3k9qqcvaza2lmz2c0fcxf1g357v643bmaj4" + } + }, + { + "ename": "org-random-todo", + "commit": "80fad6244ea3e5bdf7f448c9f62374fae45bae78", + "sha256": "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr", + "fetcher": "github", + "repo": "unhammer/org-random-todo", + "unstable": { + "version": [ + 20190214, + 2057 + ], + "deps": [ + "alert" + ], + "commit": "4f7677af740e8f3f7cfaf630ae2e594a125af760", + "sha256": "1xk4vp2138p58jdxn51vnmpnij5bzc2jbpq7y8avdcv0p7618fdc" + }, + "stable": { + "version": [ + 0, + 5, + 3 + ], + "deps": [ + "alert" + ], + "commit": "09228e55f1cc702053d305fdea2b094b548e6dbe", + "sha256": "0msgsbz39zc9zqgy1s5kmgcqggamnxr98j6bghyqpkxc96zyvp73" + } + }, + { + "ename": "org-randomnote", + "commit": "d92cb392b23701948176ba12516df5ae6608e950", + "sha256": "06i42ig7icap1i1mqzv5cqwhnmsrzpjmjbjjn49nv26ljr3mjw0b", + "fetcher": "github", + "repo": "mwfogleman/org-randomnote", + "unstable": { + "version": [ + 20190403, + 1633 + ], + "deps": [ + "dash", + "f", + "org" + ], + "commit": "f35a9d948751ad409aa057bfb68f1d008fdf9442", + "sha256": "01nf3h5sg74lph1hjj7q77pxn6xxv4zq9cjnd97a7bfbpilq86a0" + } + }, + { + "ename": "org-re-reveal", + "commit": "c3e6c90a6b9004fbf0fbc08556f8effbcde8b468", + "sha256": "05p8iml0fapi4yf7ky45kf7m0ksz917lxg7c4pdd9hjkjmz29xn9", + "fetcher": "gitlab", + "repo": "oer/org-re-reveal", + "unstable": { + "version": [ + 20190801, + 1848 + ], + "deps": [ + "htmlize", + "org" + ], + "commit": "48f3880009d2e31943790eb3d78d06c875ec4c17", + "sha256": "1npd51z16ibchms4qc6c43q22nva074f65hzahi01bvz1j981d69" + }, + "stable": { + "version": [ + 1, + 1, + 8 + ], + "deps": [ + "htmlize", + "org" + ], + "commit": "48f3880009d2e31943790eb3d78d06c875ec4c17", + "sha256": "1npd51z16ibchms4qc6c43q22nva074f65hzahi01bvz1j981d69" + } + }, + { + "ename": "org-re-reveal-ref", + "commit": "391ef29288507aa2b0ad5d568419b66e5a883b2f", + "sha256": "0dd5b4g8ih98ma25jwlvdwgfadc75qcxr9zm74x5r6pr87amcb7n", + "fetcher": "gitlab", + "repo": "oer/org-re-reveal-ref", + "unstable": { + "version": [ + 20190727, + 543 + ], + "deps": [ + "org-re-reveal", + "org-ref" + ], + "commit": "a69e5bcc38d67ff99c0677f6187da67493fda876", + "sha256": "1mbg7v2jl507zxl5n6wxkl1kwz6m6yr4av0ylwz5d95b1rbrjahj" + } + }, + { + "ename": "org-recent-headings", + "commit": "668b79c179cbdb77c4049e7c620433255f63d808", + "sha256": "0b51pyxdk8fdbksx7h1c88sw1liwng8wkjfb1q7w7lglw6f8sjsa", + "fetcher": "github", + "repo": "alphapapa/org-recent-headings", + "unstable": { + "version": [ + 20190731, + 2203 + ], + "deps": [ + "dash", + "frecency", + "org" + ], + "commit": "0cc5a30d11c64db5d3f0ab5c4a7739b38a763c42", + "sha256": "0dzfdlhw3dslrjwpjff96xavackabz6h1kaip5k88hlqcmj0rnsk" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "frecency", + "org" + ], + "commit": "01633b51ac3958b41cc6c79e6d3714047a91c1e9", + "sha256": "0gsrzmg3mssh9s28yjm9m866fnhm1pcligssz1q6brga6dm6f2yy" + } + }, + { + "ename": "org-recur", + "commit": "cbdf8c9a3c7c289ce13542a12769a7f3d7f53d72", + "sha256": "0qlpwia2dg4l00jahc3si0mi27gv6zlvkbdx0rq37dh61dabgkiq", + "fetcher": "github", + "repo": "m-cat/org-recur", + "unstable": { + "version": [ + 20190719, + 846 + ], + "deps": [ + "org" + ], + "commit": "b121da04ac9d3f30894a60b7c7a83c5ba2f32a6a", + "sha256": "1z8g49f4wpiav4vpd7fbh4chbc7id1p3c621a3wwrkxj2xkq3xnr" + } + }, + { + "ename": "org-redmine", + "commit": "017a9dd8029d083ca0c1307f2b83be187c7615e5", + "sha256": "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv", + "fetcher": "github", + "repo": "gongo/org-redmine", + "unstable": { + "version": [ + 20160711, + 1114 + ], + "commit": "e77d013bc3784947c46a5c53f03cd7d3c68552fc", + "sha256": "06miv3mf2a39vkf6mmm5ssc47inqh7dq82khsyc03anz4d4lj822" + } + }, + { + "ename": "org-ref", + "commit": "550e4dcef2f74fbd96474561c1cb6c4fd80091fe", + "sha256": "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08", + "fetcher": "github", + "repo": "jkitchin/org-ref", + "unstable": { + "version": [ + 20190706, + 2059 + ], + "deps": [ + "dash", + "f", + "helm", + "helm-bibtex", + "htmlize", + "hydra", + "ivy", + "key-chord", + "pdf-tools", + "s" + ], + "commit": "45152736e332e50f8257248efbb31e069a2c81c5", + "sha256": "0lhbi5wcqr1yj7pqn0va42za438dbpr2gkmxf8i0fkfg0ndmsblq" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "dash", + "f", + "helm", + "helm-bibtex", + "hydra", + "ivy", + "key-chord", + "pdf-tools", + "s" + ], + "commit": "db6c52f41faba686a378a8c57356a563f5cef496", + "sha256": "0kx6w3zz5gmlmr9bx1mdq1k8ykkbnll6m91z90p6f2xm96j627j6" + } + }, + { + "ename": "org-repo-todo", + "commit": "d17b602004628e17dae0f46f2b33be0afb05f729", + "sha256": "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1", + "fetcher": "github", + "repo": "waymondo/org-repo-todo", + "unstable": { + "version": [ + 20171228, + 119 + ], + "commit": "f73ebd91399c5760ad52c6ad9033de1066042003", + "sha256": "0c74zwmac8x1y8jimdx473v0falpky2kfig8pnaxavz415gb315q" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "cba6145c6821fd2bbd96a1c9ef2346c281b76ad2", + "sha256": "0b57qy87sa8qcki16rgh16ldziay57yd7f98cpinaq0adcrqywy0" + } + }, + { + "ename": "org-reverse-datetree", + "commit": "a08612af18bb620955f7b5450eba3f44cdb60673", + "sha256": "0fiwba8hh9617d1zqvxxz2l8p2iq56lkv5c16q7prc69m0s5zhjb", + "fetcher": "github", + "repo": "akirak/org-reverse-datetree", + "unstable": { + "version": [ + 20190706, + 203 + ], + "deps": [ + "dash" + ], + "commit": "bd78e007f972642a8733696ab51b37a8228a1beb", + "sha256": "130w438g9hdsmips1ki909qy1ddhv41qjr0df7qaqvbf1yrymd9b" + } + }, + { + "ename": "org-review", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1v7p7pmrjjyj0my9xw55gsn9vvr9aq5x53x13nmspvqg47z6bd98", + "fetcher": "github", + "repo": "brabalan/org-review", + "unstable": { + "version": [ + 20160907, + 537 + ], + "commit": "058e75b7f28d2ad2390290fe17a63d98ef5ab763", + "sha256": "1j917zblg5ncls9lbvpzhqal55mx27d3kpvhzvjw2h7x47ji6iym" + } + }, + { + "ename": "org-rich-yank", + "commit": "1261823d88459b6ac42d6c55c157a326173663df", + "sha256": "1v0sc90g5sl6b9ylxbk2y8s3pvxkf4v7k2rkzpgpbp4nrq0miy4y", + "fetcher": "github", + "repo": "unhammer/org-rich-yank", + "unstable": { + "version": [ + 20181120, + 1354 + ], + "commit": "d2f350c5296cf05d6c84b02762ba44f09a02b4e3", + "sha256": "0gxb0fnh5gxjmld0hnk5hli0cvdd8gjd27m30bk2b80kwldxlq1z" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "d2f350c5296cf05d6c84b02762ba44f09a02b4e3", + "sha256": "0gxb0fnh5gxjmld0hnk5hli0cvdd8gjd27m30bk2b80kwldxlq1z" + } + }, + { + "ename": "org-rtm", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1hdcwmiv2qivdr2g78xz9fl38wn45vj0bn55dbsdj3qx7k7wgfx6", + "fetcher": "github", + "repo": "pmiddend/org-rtm", + "unstable": { + "version": [ + 20160214, + 1236 + ], + "deps": [ + "rtm" + ], + "commit": "adc42ad1fbe92ab447ccc9553780f4456f2508d2", + "sha256": "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2" + } + }, + { + "ename": "org-seek", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "04ay4abm03kn15cn45ldrzh2rw6gr6ia3qrj7hn5crd75ppwvln7", + "fetcher": "github", + "repo": "stardiviner/org-seek.el", + "unstable": { + "version": [ + 20161217, + 502 + ], + "deps": [ + "ag" + ], + "commit": "1f51e6634e3b9a6a29d335d0d14370a6ffef2265", + "sha256": "0aq3af6fd16lm9iirzya6hmc8g48kfp8pc4dx51mgb5d6jjiizkv" + } + }, + { + "ename": "org-shoplist", + "commit": "49b2c70cc503df5c2981a560b7b5e3262ba7c2e1", + "sha256": "0x94hic4w6xmycrr7p72il5hv3r92dbzhpp4mm4vd0jypjm5r32q", + "fetcher": "github", + "repo": "lordnik22/org-shoplist", + "unstable": { + "version": [ + 20190730, + 2320 + ], + "commit": "267407c9157214fb20edb882da8f5c0064a74a8d", + "sha256": "0pvfxrxkd8hbcl1nh5w7nr9s1phcqbg2awkkbmhz53n3c4q83gfx" + } + }, + { + "ename": "org-snooze", + "commit": "fd04816fb53fe01fa9924ec928c1dd41f2219d6a", + "sha256": "00iwjj249vzqnfvbmlzrjig1sfhzbpv9kcpz95i3ir1w1qhw5119", + "fetcher": "github", + "repo": "xueeinstein/org-snooze.el", + "unstable": { + "version": [ + 20181229, + 1424 + ], + "commit": "8799adc14a20f3489063d279ff69312de3180bf9", + "sha256": "0ni5vm6b8c09ybn9rg3smdsxq1mxyqvndi00wn718my7939g82kb" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "6d30b0dcdfe9538e4400e49046291b7d07274164", + "sha256": "0qxk6gldgcc0fbraa0l85nk4rpvn5b5nbgzkh1p8d2bkjcxjcm4g" + } + }, + { + "ename": "org-sql", + "commit": "012573a35a302e9bb6f127cf28ac04f93796400e", + "sha256": "15alnx74pmr6jc2yx2c1dbpk0fbdzil8bffj7cfj7ywj2xadmzpg", + "fetcher": "github", + "repo": "ndwarshuis/org-sql", + "unstable": { + "version": [ + 20190621, + 2111 + ], + "deps": [ + "dash" + ], + "commit": "e1bcfd7d648ce60bc2dd24b6e2144199af03563a", + "sha256": "0a0g60bbi3lfzj9gg0l0a068p8c8lqln4qcsf1rk879i70g365fv" + } + }, + { + "ename": "org-starter", + "commit": "6deeab4833e76d3dadff056626a98dbbb80d1345", + "sha256": "02biskn1m397jpwa3i0wsh6z7zdq3hvjqf6ggy9ngjz9pgpahy18", + "fetcher": "github", + "repo": "akirak/org-starter", + "unstable": { + "version": [ + 20190720, + 1012 + ], + "deps": [ + "dash", + "dash-functional" + ], + "commit": "02f4482f1efe840f0e720ec9764c07e72e0e76c2", + "sha256": "0nf2nh1ghg2k21z087q4q75f56h9m7xsxg50r4gv9mbvd9xklcik" + } + }, + { + "ename": "org-starter-swiper", + "commit": "068f494ff402884d9242bb8ced804e38c8c39172", + "sha256": "0mzxb77s0k36ql8k8zd9xwv3fbixaqd34br2qx1ix2gfkzc0cq7a", + "fetcher": "github", + "repo": "akirak/org-starter", + "unstable": { + "version": [ + 20190720, + 1023 + ], + "deps": [ + "org-starter", + "swiper" + ], + "commit": "02f4482f1efe840f0e720ec9764c07e72e0e76c2", + "sha256": "0nf2nh1ghg2k21z087q4q75f56h9m7xsxg50r4gv9mbvd9xklcik" + } + }, + { + "ename": "org-static-blog", + "commit": "e0768d41a3de625c04ac8644ef2e05f17ee99908", + "sha256": "07vh2k7cj0cs1yzfmrrz9p03x5mbfh0bigbl93s72h1wf7i05rkw", + "fetcher": "github", + "repo": "bastibe/org-static-blog", + "unstable": { + "version": [ + 20190619, + 635 + ], + "commit": "a269b23e1b258b1cb9d80dfdc1d1d4c126f8241a", + "sha256": "019m07j6nfq18kv4gxsk99wb2wpisw0rywbx4xx63s8p3aaizv62" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "commit": "f69d2fd6671fb250fbd87df5efa898a7bf5b9bda", + "sha256": "1h9c96rbxxk1jypib5f9pfi5zkimkvhxi61j0sps6r39435dd3w7" + } + }, + { + "ename": "org-sticky-header", + "commit": "bc9a600bd156eb766ba5ce37e16f3e8253f37ee8", + "sha256": "0ign3vjckmxp7n3625wb53qlch07c3s4l67jsvk38dhhcsg1rhnj", + "fetcher": "github", + "repo": "alphapapa/org-sticky-header", + "unstable": { + "version": [ + 20190406, + 2313 + ], + "deps": [ + "org" + ], + "commit": "32c13a56a78a4de239010031fea4b9583bac2512", + "sha256": "1vngxj8d946qmi65x9yiz4pihqrim8fl1sbxfjzp8fkykx0ybiy1" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "org" + ], + "commit": "2847035ec559a46bd7b555f220f819c88371d538", + "sha256": "0g6hdg11jzzpw7h0f6p795l5aj6pag2nhhfbx90cg28j61d28vwh" + } + }, + { + "ename": "org-super-agenda", + "commit": "fd27b2df7594a867529de4b84c8107f82dabe2e9", + "sha256": "1h3kqvpjq2w0n8qiqwb8wcpdy2g4ac7j6kin0943g7p5gm5yf0ra", + "fetcher": "github", + "repo": "alphapapa/org-super-agenda", + "unstable": { + "version": [ + 20190724, + 308 + ], + "deps": [ + "dash", + "ht", + "org", + "s" + ], + "commit": "375bde4ca72494ac88a2a9738754f047fe45cc4e", + "sha256": "0hrwf02fqjm0d9gj146ax67ib76093qpqh7066dcxj2gy20625yj" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "dash", + "ht", + "org", + "s" + ], + "commit": "9bb6326e269b97673e023ba71fe05cc36bfbb235", + "sha256": "1ghwap34y4gvwssqv3sfqa8wn9jh6pawc7xnkhm1qxmvs53gxbg6" + } + }, + { + "ename": "org-sync", + "commit": "923ddbaf1a158caac5e666a396a8dc66969d204a", + "sha256": "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad", + "fetcher": "github", + "repo": "arbox/org-sync", + "unstable": { + "version": [ + 20181204, + 23 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "e34a385fa9e658c8341a0a6e6bc3472d4d536bb8", + "sha256": "1xk0wqr66wjh00wgbr4f0q02zchmzdgpz2inz316zfjm4cik8y5c" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "8c65dceaa2f3d436f83ed591916f22556a6e7f91", + "sha256": "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1" + } + }, + { + "ename": "org-sync-snippets", + "commit": "96aff3f39adfa0c68aca8ff8d3b11fbfd889327e", + "sha256": "0kv15zqva2cgx7jscp02x9gx20b5ckf525h546hyca86vfaakfbp", + "fetcher": "github", + "repo": "abrochard/org-sync-snippets", + "unstable": { + "version": [ + 20190318, + 1744 + ], + "deps": [ + "f", + "org" + ], + "commit": "50cefe5a37196ed1af3d330d6871c3b37fa90d41", + "sha256": "13d1adymxn3b579syyaszgg98h3kh3hwn97pdfzghfli1cd9fb9y" + } + }, + { + "ename": "org-table-comment", + "commit": "2c1f08c41969bc8a7104fb914564b4f6cab667e2", + "sha256": "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz", + "fetcher": "github", + "repo": "mattfidler/org-table-comment.el", + "unstable": { + "version": [ + 20120209, + 1851 + ], + "commit": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "33b9966c33ecbc3e27cca67c2f2cdea04364d74e", + "sha256": "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb" + } + }, + { + "ename": "org-table-sticky-header", + "commit": "5dd0e18bf4c3f3263eff8aff6d7c743a554243b5", + "sha256": "1rk41279rcsdma39zpr1ka5p47gh1d0969wahd0jbm5xlmx5gz2m", + "fetcher": "github", + "repo": "cute-jumper/org-table-sticky-header", + "unstable": { + "version": [ + 20190703, + 405 + ], + "deps": [ + "org" + ], + "commit": "2b0b36a075043ff426cca077bf4099b6ee4bf187", + "sha256": "08xd5qc19cc2000qgs5a5ywz5ykiwb0zhc0mghx599phvpprdfwz" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "org" + ], + "commit": "4dba2dc9a3ed63f58aa946aeec84a52d46ca4043", + "sha256": "0az4lzd9qk4cx7jjfj36r2fvlkwyrhn3xqhha5d1pydglnhd9amy" + } + }, + { + "ename": "org-tfl", + "commit": "d9e97f2fee577c7e3fb42e4ca9d4f422c8907faf", + "sha256": "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf", + "fetcher": "github", + "repo": "storax/org-tfl", + "unstable": { + "version": [ + 20170923, + 1218 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "f0d7d39106a1de5457f5160cddd98ab892b61066", + "sha256": "1rwdibiq0w4nzccmvdkpwnmfga70y35lfg2xlkqxd02x7bfl7j3m" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "f0d7d39106a1de5457f5160cddd98ab892b61066", + "sha256": "1rwdibiq0w4nzccmvdkpwnmfga70y35lfg2xlkqxd02x7bfl7j3m" + } + }, + { + "ename": "org-themis", + "commit": "60e0efe4f201ed96e90c437e3e7205e0344d4676", + "sha256": "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln", + "fetcher": "github", + "repo": "zellio/org-themis", + "unstable": { + "version": [ + 20160122, + 404 + ], + "deps": [ + "cl-lib" + ], + "commit": "78aadbbe22b1993be5c4accd0d3f91a4e85c9a3c", + "sha256": "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "4b4bf1fa1e853664bf006dda8afe2db00e522aaa", + "sha256": "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a" + } + }, + { + "ename": "org-time-budgets", + "commit": "776b58b433ab7dde5870300d288c3e6734fc32c0", + "sha256": "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah", + "fetcher": "github", + "repo": "leoc/org-time-budgets", + "unstable": { + "version": [ + 20151111, + 801 + ], + "deps": [ + "alert", + "cl-lib" + ], + "commit": "baa1ce6333157fed3b3799a80e6cf8c73c9e2c18", + "sha256": "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "alert", + "cl-lib" + ], + "commit": "f2a8fe3d9d6104f3dd61fabbb385a596363b360b", + "sha256": "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46" + } + }, + { + "ename": "org-timeline", + "commit": "298bd714f6cefd83d594b0eea731a01fb2faf1ad", + "sha256": "0zlhjzjc7jwqh6wcys17hraz76n2hnjwffis02x71maclrf2cfdd", + "fetcher": "github", + "repo": "Fuco1/org-timeline", + "unstable": { + "version": [ + 20190612, + 1759 + ], + "deps": [ + "dash" + ], + "commit": "f628519a12ce3d534b9aa5043b0273880cf29790", + "sha256": "16qjbw5l39j3kc4lfpm18ba81w9bhy9cdd3fii1n7dwyx76av73i" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash" + ], + "commit": "aed995c1db6c8bfd9db0a75a978f5e261aab38e5", + "sha256": "1jz44lag1j4rawqjpcgb9zrs88vfi7vjgdh756hs2ln7i1cnvgh5" + } + }, + { + "ename": "org-toodledo", + "commit": "4956fb6c5f1076a02f07d0f953e846fee39bfaa6", + "sha256": "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3", + "fetcher": "github", + "repo": "myuhe/org-toodledo", + "unstable": { + "version": [ + 20150301, + 1113 + ], + "deps": [ + "cl-lib", + "request-deferred" + ], + "commit": "2c91a92bd07ae4a546771b018a6faa0e06399968", + "sha256": "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "commit": "5473c1a2762371b198862aa8fd83fd3ec57485a4", + "sha256": "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v" + } + }, + { + "ename": "org-tracktable", + "commit": "57263d996e321f842d0741898370390146606c63", + "sha256": "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00", + "fetcher": "github", + "repo": "tty-tourist/org-tracktable", + "unstable": { + "version": [ + 20161118, + 1329 + ], + "deps": [ + "cl-lib" + ], + "commit": "8e0e60a582a034bd66d5efb72d513140b7d4d90a", + "sha256": "1aq7qv5jyc2x2a4iphnzmmsvak6dbi7nwdcf3m8nly8w75vrl5lj" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "8e0e60a582a034bd66d5efb72d513140b7d4d90a", + "sha256": "1aq7qv5jyc2x2a4iphnzmmsvak6dbi7nwdcf3m8nly8w75vrl5lj" + } + }, + { + "ename": "org-transform-tree-table", + "commit": "afca0e652a993848610606866609edbf2f5f76ae", + "sha256": "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r", + "fetcher": "github", + "repo": "jplindstrom/emacs-org-transform-tree-table", + "unstable": { + "version": [ + 20150110, + 1433 + ], + "deps": [ + "dash", + "s" + ], + "commit": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "dash", + "s" + ], + "commit": "0a9bf07f01bc5fc3b349aff64e83999a8de83b52", + "sha256": "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3" + } + }, + { + "ename": "org-tree-slide", + "commit": "6160c259bc4bbcf3b98c220222430f798ee6463f", + "sha256": "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn", + "fetcher": "github", + "repo": "takaxp/org-tree-slide", + "unstable": { + "version": [ + 20190729, + 1550 + ], + "commit": "036a36eec1cf712d3db155572aed325daa372eb5", + "sha256": "1r8ncx25xmxicgciyv5przp68y8qgy40fm10ba55awvql4xcm0yk" + }, + "stable": { + "version": [ + 2, + 8, + 4 + ], + "commit": "dccd80418a4444df5e8301695ff0d0dfe86a3c21", + "sha256": "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45" + } + }, + { + "ename": "org-trello", + "commit": "188ed8dc1ce2704838f7a2883c41243598150a46", + "sha256": "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i", + "fetcher": "github", + "repo": "org-trello/org-trello", + "unstable": { + "version": [ + 20190304, + 900 + ], + "deps": [ + "dash", + "dash-functional", + "deferred", + "request-deferred", + "s" + ], + "commit": "94539558343ff109030e20ebba6a282af41a5eb9", + "sha256": "10pdr3pgshnbk2g3srn2ja5a1z37fxvjr4xz5r1zni109m8x98mp" + }, + "stable": { + "version": [ + 0, + 8, + 1 + ], + "deps": [ + "dash", + "dash-functional", + "deferred", + "request-deferred", + "s" + ], + "commit": "c38c36159cdeb2348c4e9ca75246aa9cc1dfd76c", + "sha256": "02gx3kv4mkij69ln8x8wf9n28x17pbb4kv85v78d3lxph7ykqimc" + } + }, + { + "ename": "org-variable-pitch", + "commit": "9632b7e98772b584d6420f8d0f9652d67118e05e", + "sha256": "1xci5zq1bpwnm3adlcsxzpskxywzalb1n3n14lvf787f77ib602c", + "fetcher": "github", + "repo": "cadadr/elisp", + "unstable": { + "version": [ + 20190409, + 1815 + ], + "commit": "1c4b082f6f19c2563dbfbc48b996a915843624bb", + "sha256": "10ys10m6mxyh7hblsqcpjmglnh9lwzl9b6bmbcankpvrl0zh094z" + } + }, + { + "ename": "org-vcard", + "commit": "df860814a09c376c9a6a2c5e7f528bbae29810b2", + "sha256": "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl", + "fetcher": "github", + "repo": "flexibeast/org-vcard", + "unstable": { + "version": [ + 20170929, + 1110 + ], + "commit": "dbe266b79df4fb31f1766010322bf4e383ce1c03", + "sha256": "1rcqcgxvjshbz3n1p376h618xapj03n6m7b3cxgv9gnryviyr6ax" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "a6ab82ab28fa78f7c985d3ea9c9fafdd17f7ea8b", + "sha256": "14l3xqahqmnfl3sskqcr33xpcsic8dm9cr9wmbv5la3xv14n10k7" + } + }, + { + "ename": "org-wc", + "commit": "852e0a5cee285cc9b5e2cd9e18061fc0fe91d5a6", + "sha256": "1yk2py4bzm2yr8vw6rbgl2hfpd21hf4fga0d5q6y779631klp6wl", + "fetcher": "github", + "repo": "tesujimath/org-wc", + "unstable": { + "version": [ + 20180610, + 253 + ], + "commit": "0716c1e8276f6953e139e357e97566e792c8be19", + "sha256": "0wx4z6y3wn6948bz2pgrpffd4jzwgplvjkh0rnra4gihrapg1bv8" + } + }, + { + "ename": "org-web-tools", + "commit": "f082bfb480649d21f586b7eb331c19d57e7a84cf", + "sha256": "19zpspap85fjqg5a20ps34rcigb0ws986pj6dzd7xik8s6ia29s7", + "fetcher": "github", + "repo": "alphapapa/org-web-tools", + "unstable": { + "version": [ + 20190709, + 1124 + ], + "deps": [ + "dash", + "esxml", + "org", + "request", + "s" + ], + "commit": "993dca7f8afe7afffa0d62983fb7018481d886fc", + "sha256": "1sfa3wb051cv5qj44ldp76fql5sjfhccqgjm96c85i0zn4i19plf" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "dash", + "esxml", + "org", + "request", + "s" + ], + "commit": "ca87319cd42eaa2eb02213e81dec19b7bd2918f7", + "sha256": "0v4qad54r0z7dr7kg5lpfdsazi44qvrbybx9aciyl4w9grfajphb" + } + }, + { + "ename": "org-wild-notifier", + "commit": "114552a24f73f13b253e3db4885039b680f6ef33", + "sha256": "1lmpa614jnkpmfg3m1d2wjn9w0zig3gwd02n3dyjn23n71fiyhkp", + "fetcher": "github", + "repo": "akhramov/org-wild-notifier.el", + "unstable": { + "version": [ + 20190608, + 410 + ], + "deps": [ + "alert", + "async", + "dash", + "dash-functional" + ], + "commit": "6e194d0f0a21b7d2b09ebdef5ffcd5ffe3633339", + "sha256": "0vh8hhb0d5y3bgp0i9msk5c6rpn1mzj9bzqmbk6xwl4qr07hgnxx" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "alert", + "async", + "dash", + "dash-functional" + ], + "commit": "6e194d0f0a21b7d2b09ebdef5ffcd5ffe3633339", + "sha256": "0vh8hhb0d5y3bgp0i9msk5c6rpn1mzj9bzqmbk6xwl4qr07hgnxx" + } + }, + { + "ename": "org-wunderlist", + "commit": "44019e5d9e3d0f3e2cf76fa5828e1f953fd5e60b", + "sha256": "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0", + "fetcher": "github", + "repo": "myuhe/org-wunderlist.el", + "unstable": { + "version": [ + 20150818, + 213 + ], + "deps": [ + "alert", + "cl-lib", + "org", + "request-deferred", + "s" + ], + "commit": "f7f1ca73661356b9fa072efd73431592ff1182e1", + "sha256": "169wzfjc9bbk2ydgq1zghrwkfp2fjwsrnwsw86npslj4c4bz41mm" + } + }, + { + "ename": "org2blog", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "15nr6f45z0i265llf8xs87958l5hvafh518k0s7jan7x1l6w5q33", + "fetcher": "github", + "repo": "org2blog/org2blog", + "unstable": { + "version": [ + 20190309, + 442 + ], + "deps": [ + "htmlize", + "hydra", + "metaweblog", + "org", + "xml-rpc" + ], + "commit": "bd6dd6b1b3ce57a72e7c229d3f035fc7c0d3860b", + "sha256": "0c7viqq8cxkd6xxbvq53dbp1slsjjxs2fb2lyi3njfg18v5c6fks" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "deps": [ + "htmlize", + "hydra", + "metaweblog", + "org", + "xml-rpc" + ], + "commit": "55dbed00ebe5c841c43800b39764682759ecf326", + "sha256": "1fncgiwyigvmkc40bm1nr4nlkm828a04jv33jsnzjzyi2n00mbgx" + } + }, + { + "ename": "org2ctex", + "commit": "8f77fe537ca8ee2ddb6e3efe71f3b3c560c52c7d", + "sha256": "0049zf3ls7vbbcz1hdwai57ih9gppk2j0gzwijzwkb23ccwaf64a", + "fetcher": "github", + "repo": "tumashu/org2ctex", + "unstable": { + "version": [ + 20181012, + 151 + ], + "commit": "2143992462594ce63733305f75f7c7d08123710a", + "sha256": "0xrg66yx4xrmkswbapaz21q4i6qm2199zvxqvgaxd8qyk19fc46c" + } + }, + { + "ename": "org2elcomment", + "commit": "8af13650de8b4a814832638d4182bf8ce576244c", + "sha256": "0jv8sskw55rzxw578l6nm4arsycrw1si80ds7gr8i0x352fdydyp", + "fetcher": "github", + "repo": "cute-jumper/org2elcomment", + "unstable": { + "version": [ + 20170324, + 945 + ], + "deps": [ + "org" + ], + "commit": "c88a75d9587c484ead18f7adf08592b09c1cceb0", + "sha256": "19r7rxnd2cl0vc8bbf86mh5b779pl5z917657ymlc74bqq140m3x" + } + }, + { + "ename": "org2issue", + "commit": "ad1759854c3bd302aa353dea92cf462e981aff2f", + "sha256": "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz", + "fetcher": "github", + "repo": "lujun9972/org2issue", + "unstable": { + "version": [ + 20190531, + 941 + ], + "deps": [ + "gh", + "org", + "ox-gfm", + "s" + ], + "commit": "910b98c858762fd14b11d261626c5e979dde0833", + "sha256": "0xgrrbkfqkhj15n7mbmh61g8i535ykhxh5y71054p3kikgnrh290" + } + }, + { + "ename": "org2jekyll", + "commit": "48a1e5bd5e338bd3593f004f95b6fbb12595bfb7", + "sha256": "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv", + "fetcher": "github", + "repo": "ardumont/org2jekyll", + "unstable": { + "version": [ + 20170225, + 915 + ], + "deps": [ + "dash-functional", + "deferred", + "kv", + "s" + ], + "commit": "52a19a5d372116262b9d613f4ec8490a3b49e329", + "sha256": "14ld8ip487282if2sil96lfg5wx7632kg71sxhafygphbdl9vxd4" + }, + "stable": { + "version": [ + 0, + 1, + 9 + ], + "deps": [ + "dash-functional", + "deferred", + "s" + ], + "commit": "35e11ffa24b140d2e247df195489fca344bd0c08", + "sha256": "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh" + } + }, + { + "ename": "org2web", + "commit": "2864959163442165b9b1cd5471dc2649508decde", + "sha256": "0lcqf0pgkd7jilasw1485fy45k269jxvyl7hl7qrcs94s6fy2vaf", + "fetcher": "github", + "repo": "tumashu/org2web", + "unstable": { + "version": [ + 20171005, + 2317 + ], + "deps": [ + "cl-lib", + "dash", + "el2org", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ], + "commit": "5243b399927a4c474bb3b8d1c8a00799df1f27d7", + "sha256": "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7" + }, + "stable": { + "version": [ + 0, + 9, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "el2org", + "ht", + "htmlize", + "mustache", + "org", + "simple-httpd" + ], + "commit": "5243b399927a4c474bb3b8d1c8a00799df1f27d7", + "sha256": "0wsvfn409a2ivbich8b8zqza78sprirg4bl7igx536ydqclmi0n7" + } + }, + { + "ename": "organic-green-theme", + "commit": "9383ef5f0372724b34f4bb9173ef8ccbb773e19e", + "sha256": "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2", + "fetcher": "github", + "repo": "kostafey/organic-green-theme", + "unstable": { + "version": [ + 20180522, + 1620 + ], + "commit": "200ac4a636eeb6faf1793d1937e62a343debc437", + "sha256": "18a04grh4k9npf566xki9fiivy5qvpvv5v8mpj66wfx919fwa44c" + } + }, + { + "ename": "organize-imports-java", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "1n91qd9il2sq5wkcc2ag8mvgr1jkgwygrw9kpq7j16qch420i3fj", + "fetcher": "github", + "repo": "elpa-host/organize-imports-java", + "unstable": { + "version": [ + 20190517, + 426 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "e1604b86673476444593906f024f541371305b67", + "sha256": "024vr43znfb2r6ab64jmk4wzifbfyacxy9468gnq8scdg6pnz5vk" + } + }, + { + "ename": "orgbox", + "commit": "b1948eca5a18f35b61b9a0baf532753fd105ba3a", + "sha256": "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8", + "fetcher": "github", + "repo": "yasuhito/orgbox", + "unstable": { + "version": [ + 20180827, + 218 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "609e5e37348815ec3ba53ab6d643e38b0cc4fe17", + "sha256": "0kg5ns87p8v6vsb7abgqcfnzi55fbgi7b5dj98hrvnlkv4sqz7pc" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "ecaf5a064431cf92922338c974df8fce1a8f1734", + "sha256": "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy" + } + }, + { + "ename": "orgit", + "commit": "73b5f7c44c90540e4cbdc003d9881f0ac22cc7bc", + "sha256": "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w", + "fetcher": "github", + "repo": "magit/orgit", + "unstable": { + "version": [ + 20190717, + 1526 + ], + "deps": [ + "dash", + "magit", + "org" + ], + "commit": "1e578f8cf97b07835f02858f05a094ae9a5e99bb", + "sha256": "0y8s7w12j39q6fj7adb1018gj3av88dwg894fa5drwzjzh7cgc0k" + }, + "stable": { + "version": [ + 1, + 5, + 3 + ], + "deps": [ + "dash", + "magit", + "org" + ], + "commit": "ea79e0567ae65fc922fcb05da0f7f4af8eae1973", + "sha256": "1ywavzki510rslsgfm0cnn3mlh644p61ha2nfb715xhkg7cd3j9g" + } + }, + { + "ename": "orglink", + "commit": "be9b8e97cda6af91d54d402887f225e3a0caf055", + "sha256": "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b", + "fetcher": "github", + "repo": "tarsius/orglink", + "unstable": { + "version": [ + 20190630, + 1437 + ], + "deps": [ + "dash", + "org" + ], + "commit": "30e27843fbe916c26b4fe15948415b9c44e9d153", + "sha256": "0dqm4i2ykzaxairbralz6b1h3gga7falvg5nvw3180mkkrkcjbx2" + }, + "stable": { + "version": [ + 1, + 1, + 3 + ], + "deps": [ + "dash", + "org" + ], + "commit": "e9e90e16ddaceaf99c9b251a215d6338b9762b4d", + "sha256": "0vqyidi54rbpqwqi6iv1xaqkr9gfr0pfhr1msxckh8jy6avgy319" + } + }, + { + "ename": "orglue", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1kj62y3cf3as2d5s207s6kg5alm09jmw0aag1z6lblrjlzbi1p2j", + "fetcher": "github", + "repo": "yoshinari-nomura/orglue", + "unstable": { + "version": [ + 20171220, + 1226 + ], + "deps": [ + "epic", + "org" + ], + "commit": "ae2a45c19b52e45db7891093a3ff17ba2e51c507", + "sha256": "0h3b37wz4hlk022c0sq7c9p5z3v4n6cljhy8g1qjhnxac8y7mkr0" + } + }, + { + "ename": "orgnav", + "commit": "a41436df126d7ef2c0a8b56d90afb942fe47dc59", + "sha256": "0z04n5rzv5c0lvn658nrfj6rg3a31n369h5rjgi5bap06qm427ix", + "fetcher": "github", + "repo": "facetframer/orgnav", + "unstable": { + "version": [ + 20170608, + 1713 + ], + "deps": [ + "dash", + "helm", + "s" + ], + "commit": "9e2cac9c1a67af5f0080e60022e821bf7b70312d", + "sha256": "0764dg3dcsdy4i6syv9aqqmr47civn9dl3638g4lsqdikghw7lvv" + } + }, + { + "ename": "orgtbl-aggregate", + "commit": "bf64b53c9d49718a8ffc39b14c90539b36840280", + "sha256": "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9", + "fetcher": "github", + "repo": "tbanel/orgaggregate", + "unstable": { + "version": [ + 20180731, + 2154 + ], + "commit": "7e87e0fb0784be9370462614ec0ffc9d9ae6ef1c", + "sha256": "1yhs2v4s690cj1xgvbjx04d42fndd8lp6kry4w9vk24ibx9fzgcn" + } + }, + { + "ename": "orgtbl-ascii-plot", + "commit": "21b02596ac4b48e592ebe966475b164866bb9d6e", + "sha256": "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h", + "fetcher": "github", + "repo": "tbanel/orgtblasciiplot", + "unstable": { + "version": [ + 20151215, + 2151 + ], + "commit": "cd91f6ae26a7402e192a1f4fd6248f5797edf19e", + "sha256": "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z" + } + }, + { + "ename": "orgtbl-join", + "commit": "e43ae8aaa54113f53b51aea3fb2656d608d1032c", + "sha256": "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1", + "fetcher": "github", + "repo": "tbanel/orgtbljoin", + "unstable": { + "version": [ + 20150121, + 2246 + ], + "deps": [ + "cl-lib" + ], + "commit": "ccf5e0d96e053dc289da39a048715fcf36835ff2", + "sha256": "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg" + } + }, + { + "ename": "orgtbl-show-header", + "commit": "9c5ea906b1d642405ca532d89dbb32cf79f53582", + "sha256": "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k", + "fetcher": "github", + "repo": "DamienCassou/orgtbl-show-header", + "unstable": { + "version": [ + 20141023, + 837 + ], + "commit": "112d54a44682f065318ed0c9c89a8f5b8907342a", + "sha256": "1s2bgsm4s33w5275qghw1axdpmz6bbyhki53jr2giyk4f90822gi" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f0f48ccc0f96d4aa2a676ff609d9dddd71748e6f", + "sha256": "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x" + } + }, + { + "ename": "origami", + "commit": "b816be227dfc7330292a50346c4bb37394d3e998", + "sha256": "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr", + "fetcher": "github", + "repo": "gregsexton/origami.el", + "unstable": { + "version": [ + 20180101, + 1553 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "1f38085c8f9af7842765ed63f7d6dfe4dab59366", + "sha256": "0ha1qsz2p36pqa0sa2sp83lspbgx5lr7930qxnwd585liajzdd9x" + } + }, + { + "ename": "osx-browse", + "commit": "081aa3e1d50c2c9e5a9b9ce0716258a93279f605", + "sha256": "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm", + "fetcher": "github", + "repo": "rolandwalker/osx-browse", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "browse-url-dwim", + "string-utils" + ], + "commit": "44ded7cc3a7ee426c1c3257fae534c121f7e752e", + "sha256": "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1" + }, + "stable": { + "version": [ + 0, + 8, + 8 + ], + "deps": [ + "browse-url-dwim", + "string-utils" + ], + "commit": "6186a6020e143e90d557c8d062c44fcdba0516c7", + "sha256": "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m" + } + }, + { + "ename": "osx-clipboard", + "commit": "71b85cd2b2122a2742f919d10bfcb054b681e61e", + "sha256": "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f", + "fetcher": "github", + "repo": "joddie/osx-clipboard-mode", + "unstable": { + "version": [ + 20141012, + 717 + ], + "commit": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d", + "sha256": "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "e46dd31327a3f92f77b013b4c9b1e5fdd0e5c73d", + "sha256": "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4" + } + }, + { + "ename": "osx-dictionary", + "commit": "ae4467ad646d663f0266f39a76f9764004903424", + "sha256": "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82", + "fetcher": "github", + "repo": "xuchunyang/osx-dictionary.el", + "unstable": { + "version": [ + 20171026, + 734 + ], + "deps": [ + "cl-lib" + ], + "commit": "b16630ecf69f87ac873486d8b9c8c03e6c9ea7fa", + "sha256": "06qsg8hlw1b725pzpsg5f194pxqcg1pjncsi8j0815yrlzfcg6sp" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "0e5e5f1b0077a62673855889d529dd4f0cc8f665", + "sha256": "1zpr50q7i4wg1x7vsj69rh1b8xvk9r0591y4fvvs3a2l1llca2mq" + } + }, + { + "ename": "osx-lib", + "commit": "b42ae666e3511752f5138927e7bf7965bd9f7ee5", + "sha256": "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4", + "fetcher": "github", + "repo": "raghavgautam/osx-lib", + "unstable": { + "version": [ + 20160920, + 0 + ], + "commit": "fdbbb41e07ba64d6a09b54bd142a7c7b83bfd09f", + "sha256": "0n03yca62znrri1pg0cl4xzm4lkmdqyf1p9sm1vfjwlwxk552z5x" + } + }, + { + "ename": "osx-location", + "commit": "8673dafb02a8d70c278bfd2c063f40992defe3a3", + "sha256": "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c", + "fetcher": "github", + "repo": "purcell/osx-location", + "unstable": { + "version": [ + 20150613, + 917 + ], + "commit": "8bb3a94cc9f04b922d2d730fe08596cc6ee12bf2", + "sha256": "09hjcpmh0fxhsx63vcaz05w94xcc8q35vgffggjqaybs7hyzlx69" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "110aee945b53ea550e4debe69bf3c077d940ec8c", + "sha256": "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x" + } + }, + { + "ename": "osx-org-clock-menubar", + "commit": "cade09308a6b8c998800f2ad2592ad6ea79f65ca", + "sha256": "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6", + "fetcher": "github", + "repo": "jordonbiondo/osx-org-clock-menubar", + "unstable": { + "version": [ + 20150205, + 2111 + ], + "commit": "9964d2a97cc2fb6570dc4116da44f73bd8eb7cb3", + "sha256": "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag" + } + }, + { + "ename": "osx-pseudo-daemon", + "commit": "6104efc035bcf469d133ab9a2caf42c9d4482334", + "sha256": "1sch7bb8hl96fji2ayw2ah5cjgsga08wj44vddjxskyway8ykf0z", + "fetcher": "github", + "repo": "DarwinAwardWinner/mac-pseudo-daemon", + "unstable": { + "version": [ + 20170722, + 607 + ], + "commit": "d235680a72677f11925b912428ad1a57b664e3e8", + "sha256": "0gqknrwhfzr7cf5pgs33a5xh79y0yzxghs6wsvavvqkmf4cvck40" + }, + "stable": { + "version": [ + 2, + 1 + ], + "commit": "4d10e327cd8ee5bb7f006d68744be21c7097c1fc", + "sha256": "0rjdjddlkaps9cfyc23kcr3cdh08c12jfgkz7ca2j141mm89pyp2" + } + }, + { + "ename": "osx-trash", + "commit": "1f4c86e5b86df6c5c2c484f041fa3e434bbfbbb1", + "sha256": "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj", + "fetcher": "github", + "repo": "lunaryorn/osx-trash.el", + "unstable": { + "version": [ + 20160520, + 1300 + ], + "commit": "0f1dc052d0a750b8c75f14530a4897f5d4324b4e", + "sha256": "0f4md49175iyrgzv4pijf7qbxyddcm2yscrrlh91pg410la7fysk" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "529619b84d21e18a38ec5255eb40f6b8ede38b2a", + "sha256": "1n44wdffkw14si9kb7bpkp6d9cjwjrvksfh22y9549dhs1vav6qq" + } + }, + { + "ename": "otama", + "commit": "53b1eaef5c8b408eb8fff838af1e0249c4fe9444", + "sha256": "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9", + "fetcher": "github", + "repo": "yoshinari-nomura/otama", + "unstable": { + "version": [ + 20160404, + 1032 + ], + "commit": "c114fd8006762f891bc120a7c0ea213872e7ab31", + "sha256": "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534" + } + }, + { + "ename": "other-emacs-eval", + "commit": "75b6391726b0d5069e036930c2c5fa177c4e3422", + "sha256": "07sr5bb6x9w450cvfg32darg6jlwg11n7c1qhhk0ijcrnlsm09n7", + "fetcher": "github", + "repo": "xuchunyang/other-emacs-eval", + "unstable": { + "version": [ + 20180408, + 1348 + ], + "deps": [ + "async" + ], + "commit": "8ace5acafef65daabf0c6619eff60733d7f5d792", + "sha256": "1pry1xw2p01b18ks5n0xs895qqqci7v2nrwjiil2vr3m1ys92ymc" + } + }, + { + "ename": "outline-magic", + "commit": "a98ad2ef680eef541ee82e8a65ed73e524df98a1", + "sha256": "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f", + "fetcher": "github", + "repo": "tj64/outline-magic", + "unstable": { + "version": [ + 20180619, + 1819 + ], + "commit": "2a5f07417b696cf7541d435c43bafcc64817636b", + "sha256": "1iyslhk2zvhn4ip27apkjzkqw56lfakp2jzwz106jm45f3kllpc8" + } + }, + { + "ename": "outline-minor-faces", + "commit": "f252e45e8bd6e8af1267755d108f378a974ddaf1", + "sha256": "1728imdqmmfqw5f67w8xsailn2b09y4xgdr769pd6kx8z6lsi8zb", + "fetcher": "github", + "repo": "tarsius/outline-minor-faces", + "unstable": { + "version": [ + 20181122, + 1121 + ], + "commit": "38cb0c5ce6bee61a8fbc1040e102792725735bfa", + "sha256": "0zbvxwdgghckqrn5w1j2p1vp0ajsls062l491zx2v50h6pzpmk71" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "8788f3e6f922f54b4eccfb80e4c246203a7e81c3", + "sha256": "1ms4mgh8jlvyhdsx5166jqfjdx6rqfbhaqzfrzplgcn6v37097l4" + } + }, + { + "ename": "outline-toc", + "commit": "64b07ee55e87c4a1125ce18a8ae0a44661380ffe", + "sha256": "13hy9ahla68qcbfbm7b5d0yy774qfc3byb6pn9c66k2wg4xh6pxb", + "fetcher": "github", + "repo": "abingham/outline-toc.el", + "unstable": { + "version": [ + 20170730, + 1130 + ], + "commit": "31f04bea19cfcfb01a94d1fd2b72391cb02b7463", + "sha256": "1pqz2ynw51n3f7d9hknz80d42017lccsggkg13zqmn51wkjpc48j" + } + }, + { + "ename": "outlined-elisp-mode", + "commit": "ae918c301e1c0ae39574ae76d70059718724293b", + "sha256": "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v", + "fetcher": "github", + "repo": "zk-phi/outlined-elisp-mode", + "unstable": { + "version": [ + 20131108, + 1127 + ], + "commit": "c16cb02b540448919ad148f2be6a41523ee5489c", + "sha256": "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv" + } + }, + { + "ename": "outlook", + "commit": "c5ce3e6800213b117578a1022f25407f2ec1604f", + "sha256": "0yq9zl7dr8kkm4rps5np4dwvjfhzsxq9wd1af7zwcmms4l3qry6k", + "fetcher": "github", + "repo": "asavonic/outlook.el", + "unstable": { + "version": [ + 20180428, + 1430 + ], + "commit": "359683aff91b38bd1398a6ed4058a06f09a02d65", + "sha256": "1kdqwyghrrmwcqkjjr2wq4ig1gsv7mr8fy2y6ddy4zmygblqi6si" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5847c6f13b106cb54529080e9050be5b8b5be867", + "sha256": "13wlfklk342gv5fmzpnz69mc07vm8x6xmh7li1w7f13ci3v4s045" + } + }, + { + "ename": "outorg", + "commit": "8edf78a0ecd2ff8e6e066b80751a31e11a068c3f", + "sha256": "10jh64d1nalfig69nnsib46915jinv37lvmxa0aj91zymq2szdm9", + "fetcher": "github", + "repo": "alphapapa/outorg", + "unstable": { + "version": [ + 20190720, + 2002 + ], + "commit": "ef0f86f4b893b30be8bcf8b43a5ec357a6c70f07", + "sha256": "1dpqr339n2pjc2fdd7sjzy6lyxaxx8yq507rjwn7vk8k1bdwri83" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "e946cda497bae53fca6fa1579910237e216170bf", + "sha256": "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp" + } + }, + { + "ename": "outrespace", + "commit": "2659a78181b8fe98ca4a80c75ec8c9b6dff44bb5", + "sha256": "13xasp9vjb3n0smdhrh9pq1yhhrg3p6z14fmlvf6xqip52rx89hl", + "fetcher": "github", + "repo": "articuluxe/outrespace", + "unstable": { + "version": [ + 20190724, + 1553 + ], + "commit": "d8c1619ec81fd3f4e728212a3526cd13bc2b0147", + "sha256": "0rcr85slklpaqhx5j8agd8yz6lg66qisniqlbz6zm4vvszqh0r4a" + } + }, + { + "ename": "outshine", + "commit": "8edf78a0ecd2ff8e6e066b80751a31e11a068c3f", + "sha256": "1qqmvs17hq5s047nqplg4sa09xg5ck6zwqyg91xmbh71bx80v28v", + "fetcher": "github", + "repo": "alphapapa/outshine", + "unstable": { + "version": [ + 20190717, + 1147 + ], + "deps": [ + "cl-lib", + "outorg" + ], + "commit": "4c6107da8fd6119ba1b2379cd2f68c8c7374e8d5", + "sha256": "0i2mhb78d0rcvqv94h4qa98rm1nm11ag8l90v3z819bwph3f44d6" + }, + "stable": { + "version": [ + 3, + 0, + 1 + ], + "deps": [ + "cl-lib", + "outorg" + ], + "commit": "3edf0c61e94d36d174120c8080a98023e30a58a2", + "sha256": "1lh9f5dgdbwfyzxk6nsg1xwdjs8gc6p9mbyyhp6f8fnk3h0y88cg" + } + }, + { + "ename": "ov", + "commit": "18d8a10ba3018cb61924af3a1682b82f543f2d98", + "sha256": "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb", + "fetcher": "github", + "repo": "ShingoFukuyama/ov.el", + "unstable": { + "version": [ + 20150312, + 528 + ], + "commit": "fae7215b3dedba2a9ced145284332e4609bfdc38", + "sha256": "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2" + }, + "stable": { + "version": [ + 1, + 0, + 6 + ], + "commit": "4e1c254d74bc1773c92f1613c3865cdcb4bc7095", + "sha256": "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc" + } + }, + { + "ename": "overcast-theme", + "commit": "d86691c61fc880954a05502a6474cc2fa0d0a43b", + "sha256": "1v8hdnvc4pfmadkvdm6b8z0cy20pminvhjdlr13q5m9immr88a4r", + "fetcher": "github", + "repo": "myTerminal/overcast-theme", + "unstable": { + "version": [ + 20190326, + 1646 + ], + "commit": "afb8098ad2234a65ec614f4028f7cf2555134f46", + "sha256": "1fp8awdhpr92fygp6pbx9bdnkc1amngbwsr6c2haj7xb8717zckj" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "commit": "769078cb4a6ea87a31fcea0218c06e1ec689b97c", + "sha256": "044g4y8ykh41b3ybxsgsrqvnkq8i1q8q8livh64b2qqrrjzq6mxg" + } + }, + { + "ename": "overseer", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0zbh0j21h6wsqnqvnzai6y6rpccdciksb7g64qw7fx0cpg5x2ms8", + "fetcher": "github", + "repo": "tonini/overseer.el", + "unstable": { + "version": [ + 20180226, + 619 + ], + "deps": [ + "dash", + "f", + "pkg-info" + ], + "commit": "02d49f582e80e36b4334c9187801c5ecfb027789", + "sha256": "0q4ai7ividy8xv09s342y49s97ismhfdfsjk70zif60fp0ajfzfn" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "dash", + "pkg-info" + ], + "commit": "cf532a4e373e3da2077ccbaa48d4bfacd14661ba", + "sha256": "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx" + } + }, + { + "ename": "ovpn-mode", + "commit": "16430ce0597c18925d7fdf83acfca996e8ad6457", + "sha256": "1p0gk3yiq7srpjcqhy0h2402m9ijb3nl9yz2lhnxvc41n9fj65gd", + "fetcher": "github", + "repo": "anticomputer/ovpn-mode", + "unstable": { + "version": [ + 20190615, + 48 + ], + "deps": [ + "cl-lib" + ], + "commit": "c424e269bd1132182bc26d371ed0dcf818b41262", + "sha256": "0gxk20cwdyhllzkdfz3cylb8mddyrhrdpscx2ydi5phvgjknf939" + } + }, + { + "ename": "owdriver", + "commit": "f3f9c1bb19345c6027a945e7f265632da1a391cb", + "sha256": "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd", + "fetcher": "github", + "repo": "aki2o/owdriver", + "unstable": { + "version": [ + 20170401, + 1312 + ], + "deps": [ + "log4e", + "smartrep", + "yaxception" + ], + "commit": "d934f182bafe29aa16c173440eff3fef08b0ec10", + "sha256": "0yy5sah7vcjxcik3sp2cxp9gvcryyzw799h8zf4wbvjxv74kd17c" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "deps": [ + "log4e", + "smartrep", + "yaxception" + ], + "commit": "0479389d9df9e70ff9ce69dff06252d3aa40fc86", + "sha256": "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk" + } + }, + { + "ename": "ox-asciidoc", + "commit": "3b268064f09ae5c3d15064b7d197c7af767fb278", + "sha256": "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr", + "fetcher": "github", + "repo": "yashi/org-asciidoc", + "unstable": { + "version": [ + 20181230, + 620 + ], + "deps": [ + "org" + ], + "commit": "e931362e641f97d17dc738d22bb461e54045786d", + "sha256": "045kci7xvlp0kg8gmplnybc7ydv66hkl88dxgd113ac7ipf9zir7" + } + }, + { + "ename": "ox-bibtex-chinese", + "commit": "6c09c708c4372451502923cd3cb756f4f98ba97b", + "sha256": "0f3xigrkhc86vv23f76fdd4rjsspsd2ck5c65biq2ds247f4gm61", + "fetcher": "github", + "repo": "tumashu/ox-bibtex-chinese", + "unstable": { + "version": [ + 20170723, + 309 + ], + "commit": "2ad2364399229144110db7ef6365ad0461d6a38c", + "sha256": "06lp56na1fv87296hhaxgb6gfnzln39p4v245gfxhk0k27589vxj" + } + }, + { + "ename": "ox-clip", + "commit": "6d9ae1e58a1f214a9b88627a2d3254ce7de50740", + "sha256": "1sm0ivd8rypnl0z901anjsnbfjwhxqcaagqav82ybdb1z6x1qicv", + "fetcher": "github", + "repo": "jkitchin/ox-clip", + "unstable": { + "version": [ + 20180306, + 340 + ], + "deps": [ + "htmlize", + "org" + ], + "commit": "594c90953a91948505bb394350adf110e041f19a", + "sha256": "1alm6hh7qg8sv50cm5p03icx47za2g7b2nvbwzx6kxkrgmgqfq6c" + } + }, + { + "ename": "ox-epub", + "commit": "c3ac31dfef00e83fa6b716ea006f35afb5dc6cd5", + "sha256": "15q6vsmgv76c0qfdxa3prqvgmr6n7k4rd4bpi05574ibi23y0ynh", + "fetcher": "github", + "repo": "ofosos/ox-epub", + "unstable": { + "version": [ + 20181101, + 1854 + ], + "deps": [ + "org" + ], + "commit": "c9629ef4b4bc40d51afefd8c0bb2c683931e6409", + "sha256": "0z1a447v4fy5x6ib8lm4w8m9n2nx41ksbdsjz2xm8iy70is13yd2" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "org" + ], + "commit": "3d958203e169cbfb2204c43cb4c5543befec0b9d", + "sha256": "057sqmvm8hwkhcg3yd4i8zz2xlqsqrpyiklyiw750s3i5mxdn0k7" + } + }, + { + "ename": "ox-gfm", + "commit": "10e90430f29ce213fe57c507f06371ea0b29b66b", + "sha256": "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q", + "fetcher": "github", + "repo": "larstvei/ox-gfm", + "unstable": { + "version": [ + 20170628, + 2102 + ], + "commit": "99f93011b069e02b37c9660b8fcb45dab086a07f", + "sha256": "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "99f93011b069e02b37c9660b8fcb45dab086a07f", + "sha256": "0drdypmgxk3238hmkqw9s3cw9wv94cyfqar5ar0bv0k69s92pxj8" + } + }, + { + "ename": "ox-haunt", + "commit": "94b0a0a20d25dbe10333bb167d81f036b9fd03e0", + "sha256": "00fbljwkinx50b57srziw51k16kbzq2k0xylgjxg9ayy3hqqn5j1", + "fetcher": "git", + "url": "https://git.sr.ht/~jakob/ox-haunt", + "unstable": { + "version": [ + 20190720, + 2352 + ], + "deps": [ + "org" + ], + "commit": "9d25ec4fc66fccbae23489abd4b9e8933c5b7dbd", + "sha256": "10kpz2qns0q92qh3hdwv1s8c9n4yb9iz9s7zas0h61rjqx22cz9n" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "org" + ], + "commit": "9d25ec4fc66fccbae23489abd4b9e8933c5b7dbd", + "sha256": "10kpz2qns0q92qh3hdwv1s8c9n4yb9iz9s7zas0h61rjqx22cz9n" + } + }, + { + "ename": "ox-html5slide", + "commit": "a7a7fd72c9bbb5d90e0e096b791971f2b64b8463", + "sha256": "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn", + "fetcher": "github", + "repo": "coldnew/org-html5slide", + "unstable": { + "version": [ + 20131228, + 606 + ], + "deps": [ + "org" + ], + "commit": "4703dfbd9d79161509def673d2c1e118d722a58f", + "sha256": "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm" + } + }, + { + "ename": "ox-hugo", + "commit": "1e1240bb7b5bb8773f804b987901566a20e3e8a9", + "sha256": "1niarxj2y4a14lrv2nqcc36msw7k61h8fbjpcdrfbaw3n0kchd40", + "fetcher": "github", + "repo": "kaushalmodi/ox-hugo", + "unstable": { + "version": [ + 20190729, + 2221 + ], + "deps": [ + "org" + ], + "commit": "301e072ddd93f09c3310f6da97e8e2e7f7145d8e", + "sha256": "1isk5yjrassllh16nr2f8nyn2x4craw3fv4hjqpaa6z6dycs71wc" + }, + "stable": { + "version": [ + 0, + 8 + ], + "deps": [ + "org" + ], + "commit": "9751d34e1133b89a533a978c085b0715f85db648", + "sha256": "11h464cyc28ld0b0zridgm4drydc1qjxbm1y24zrwlkyqqjk6yr7" + } + }, + { + "ename": "ox-impress-js", + "commit": "e5e79b4b897daca80f26440107abaddf0a480db9", + "sha256": "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l", + "fetcher": "github", + "repo": "kinjo/org-impress-js.el", + "unstable": { + "version": [ + 20150412, + 1716 + ], + "deps": [ + "org" + ], + "commit": "91c6d2af6af308ade352a03355c4fb551b238c6b", + "sha256": "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9" + } + }, + { + "ename": "ox-ioslide", + "commit": "b960abca4d642c47e640300876eefee1851e6b86", + "sha256": "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc", + "fetcher": "github", + "repo": "coldnew/org-ioslide", + "unstable": { + "version": [ + 20161015, + 1338 + ], + "deps": [ + "cl-lib", + "f", + "makey", + "org" + ], + "commit": "6555680be5364c8ddd2bf446865cb1a82adb6b9e", + "sha256": "05d1bykgj454g0vq2k2sd36pd9hmcwr9a8033dagkqc625h7wj4h" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib", + "f", + "org" + ], + "commit": "e81f7a6dab512da7eaa8c2c50c673538b97db267", + "sha256": "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3" + } + }, + { + "ename": "ox-jekyll-md", + "commit": "4e7ddae7938158d9da24bee861a88d4875235269", + "sha256": "0lfnrikrismcd2zyfb0sf3pwwx12cyki7kzs2mjlswq3sap8w544", + "fetcher": "github", + "repo": "gonsie/ox-jekyll-md", + "unstable": { + "version": [ + 20180831, + 1732 + ], + "commit": "ff7b81733354c2b427293e531bb51647fa84fc88", + "sha256": "1fb08c1f9rky0akv9y2brbd38d7s36wcc7z9yvvk343p1kxfipid" + } + }, + { + "ename": "ox-jira", + "commit": "e8a77d9c903acd6d7fdcb53f63384144e85589c9", + "sha256": "088ks14d7slgs2qsqp1kkxvqzzhdkwphdvpg27ix686dz1krxxib", + "fetcher": "github", + "repo": "stig/ox-jira.el", + "unstable": { + "version": [ + 20171001, + 916 + ], + "deps": [ + "org" + ], + "commit": "db2ec528f46c9e611624ba28611c440a99bff255", + "sha256": "04zz6359xkn4w7jmmadxyvjd8pw21gw12mqwch1l9yxc4m9q474l" + } + }, + { + "ename": "ox-latex-subfigure", + "commit": "cf83b7597bd6a23b82b88b0927424c9aeb49a03d", + "sha256": "19nglrlg4q350vgi13x6yg97nrgav5d51z7jrqg8vim7mbafq7fg", + "fetcher": "github", + "repo": "linktohack/ox-latex-subfigure", + "unstable": { + "version": [ + 20190718, + 1529 + ], + "commit": "2e5b679212c33064eb25a8887e19a74897545389", + "sha256": "0mfjwwymlbyzppqicakyfl2yimlk48xvbr7sy2maip358898m5rj" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "b7445849ae1f16b4b28f7a080301a0a61edf1c83", + "sha256": "15wxyzsfp4gilnravs2h4h8vwk0rf8ylzsxzdzlqx0i62wbb79l9" + } + }, + { + "ename": "ox-mdx-deck", + "commit": "13d1a86dfe682f65daf529f9f62dd494fd860be9", + "sha256": "1k41sbqcfrj485ps11f6xdb1kxp7kh22k0zhn9vrjb5mxwdilfyl", + "fetcher": "github", + "repo": "WolfeCub/ox-mdx-deck", + "unstable": { + "version": [ + 20181115, + 1847 + ], + "deps": [ + "ox-hugo" + ], + "commit": "2e46ac76f7ac279c371474cbbf39634bbe40f4c7", + "sha256": "1vhfyfdc83js33sm498fm3wmn80wmqnvn5dkabhdbk5gd9a9zdis" + } + }, + { + "ename": "ox-mediawiki", + "commit": "24244d146306ce965df382c8958c7574c74313f2", + "sha256": "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb", + "fetcher": "github", + "repo": "tomalexander/orgmode-mediawiki", + "unstable": { + "version": [ + 20180105, + 2154 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "a9327150293e370e500ba55bddfe5fc435c6bf9b", + "sha256": "0dsq86hli24imdkgsf45asx23kriw9di3d0cf5z8axfpkcbkn770" + } + }, + { + "ename": "ox-minutes", + "commit": "162d0dacbb7252508147edb52fe33b1927a6bd69", + "sha256": "13rwcp0k9h7l5g8xw2s2r1xhsmkibhfqyq6hlicvddv232g724sj", + "fetcher": "github", + "repo": "kaushalmodi/ox-minutes", + "unstable": { + "version": [ + 20180202, + 1734 + ], + "commit": "27c29f3fdb9181322ae56f8bace8d95e621230e5", + "sha256": "10rw12gmg3d6fvkqijmjnk5bdpigvm8fy34435mwg7raw0gmlq75" + } + }, + { + "ename": "ox-nikola", + "commit": "4e3fa1b0728ad3058376800ec5e2e9e3847c1d2f", + "sha256": "13k5wggz8bhnfgpsc09jnisk7xdb226d6imp7v6vmd1ax9m2xb0w", + "fetcher": "github", + "repo": "msnoigrs/ox-nikola", + "unstable": { + "version": [ + 20151114, + 1116 + ], + "deps": [ + "org", + "ox-rst" + ], + "commit": "5bcbc1a38f6619f62294194f13ca0cd4ca14dd48", + "sha256": "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7" + } + }, + { + "ename": "ox-pandoc", + "commit": "ca17de8cdd53bb32a9d3faaeb38f19f92b18ee38", + "sha256": "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc", + "fetcher": "github", + "repo": "kawabata/ox-pandoc", + "unstable": { + "version": [ + 20180510, + 1338 + ], + "deps": [ + "cl-lib", + "dash", + "ht", + "org" + ], + "commit": "aa37dc7e94213d4ebedb85c384c1ba35007da18e", + "sha256": "0iibxplgdp34bpq1yll2gmqjd8d8lnqn4mqjvx6cdf0y438yr4jz" + }, + "stable": { + "version": [ + 1, + 150707 + ], + "deps": [ + "dash", + "ht", + "org" + ], + "commit": "035f1d60a0139349232c382cfd23a96902b7003d", + "sha256": "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29" + } + }, + { + "ename": "ox-pukiwiki", + "commit": "cd4043336e54c6ae3976068a1af5cfe58713e408", + "sha256": "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a", + "fetcher": "github", + "repo": "yashi/org-pukiwiki", + "unstable": { + "version": [ + 20150124, + 1716 + ], + "deps": [ + "org" + ], + "commit": "bdbde2c294f5d3de11f08a3fe19f01175d2e011a", + "sha256": "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g" + } + }, + { + "ename": "ox-qmd", + "commit": "e71826e8a8c30b0eb535cce7a379740011b79534", + "sha256": "1i2kdpp6prgphc1l42nz7q6vdfsbcn2vvlf10s7dfhhr8jzcyyy7", + "fetcher": "github", + "repo": "0x60df/ox-qmd", + "unstable": { + "version": [ + 20170402, + 1657 + ], + "deps": [ + "org" + ], + "commit": "3a24c7a0b3ec80e494b977e14a3dfb94c9f1d8ec", + "sha256": "030nay81c49ings96akzzy108a6agg91rvpmg0pf05qmjysfysmf" + } + }, + { + "ename": "ox-reveal", + "commit": "8c2f267bb13a2fe5e1af49fd70d831a07d83b7d5", + "sha256": "1lsq9xx95nhz1914wx7781fajfs84m27iwv980hqq29lyn2lzbl6", + "fetcher": "github", + "repo": "yjwen/org-reveal", + "unstable": { + "version": [ + 20190728, + 1601 + ], + "deps": [ + "org" + ], + "commit": "dfcf21fe4526728a3971ee27966079837db77c8d", + "sha256": "1kz3d3n94dmy2micxmwsahnsky5kbb8aicxzq05s8c181207va7n" + } + }, + { + "ename": "ox-rfc", + "commit": "d3f49159d6a379bf435e2af8920176fd84693a60", + "sha256": "0vqh923223rmhy39p4lwmdv6azba7cddkc1zi5pp3zpcijmhxzk4", + "fetcher": "github", + "repo": "choppsv1/org-rfc-export", + "unstable": { + "version": [ + 20190429, + 1133 + ], + "deps": [ + "org" + ], + "commit": "4cac33c387bc10e32f18940298aa5095d060ed3e", + "sha256": "0y442swdsh8fl3471bz9276r2srv6dp7j12y09s82xx5nm668nmb" + } + }, + { + "ename": "ox-rst", + "commit": "85770d6e235217e98dda9d8b9f027a4ba3ebba96", + "sha256": "0447q0gvasii57rp391la9prz0w228jnzgi59s785vzswdryww0n", + "fetcher": "github", + "repo": "msnoigrs/ox-rst", + "unstable": { + "version": [ + 20180315, + 13 + ], + "deps": [ + "org" + ], + "commit": "a74b60883b0d844c80efb364dac1560b85f2548f", + "sha256": "0smgz2q7bjj2svx1gdr187m58yxq1hs878bciz9h6jcp03a9sb61" + } + }, + { + "ename": "ox-slack", + "commit": "55fda67a19f8799f00c8304a14ab88dde236aa48", + "sha256": "0ggw64lx93crfzm1sfwqhsfhaprkbyrjay88nyn43frf7c5l4a63", + "fetcher": "github", + "repo": "titaniumbones/ox-slack", + "unstable": { + "version": [ + 20181119, + 1131 + ], + "deps": [ + "org", + "ox-gfm" + ], + "commit": "96d90914e6df1a0141657fc51f1dc5bb8f1da6bd", + "sha256": "1cda5c35wm7aqyj7yj80wkwb79dgzlzis1dlpysdxv30ahcf4w8p" + } + }, + { + "ename": "ox-slimhtml", + "commit": "6fae8e3c4abd37a651d4cbdb337a74f1a7c7366a", + "sha256": "16jrw8n26iy69ibr29bp3pqp4lm66alihks37qipd2g5grqqfdnd", + "fetcher": "github", + "repo": "balddotcat/ox-slimhtml", + "unstable": { + "version": [ + 20181219, + 850 + ], + "deps": [ + "cl-lib" + ], + "commit": "a5070cb2c67425aa33da8503c83361e8814a86ec", + "sha256": "13adpcgsd4153yd0097iady2dy6pa9w02rp97whkl4hjmhdik71i" + }, + "stable": { + "version": [ + 0, + 4, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "a764ef64235845e4f5cfd73244d6cf1e7fee903b", + "sha256": "14h0kks7i2k53fwbsqb4giafacm58inppqpr5mbj904cy146g29f" + } + }, + { + "ename": "ox-spectacle", + "commit": "f441e1b3ee30065f8a68c9b0b45d9db0cac8a289", + "sha256": "1nf4765dihlcjbifhb9dinqin27ivqj2s8wzh1hj4vc3n8mdx5pr", + "fetcher": "github", + "repo": "lorniu/ox-spectacle", + "unstable": { + "version": [ + 20181211, + 953 + ], + "deps": [ + "org" + ], + "commit": "9d3ec9a6326289074d8620e97d65e3105307ff51", + "sha256": "1gm8wwpsq10cfppzl104g3x2g9bha1209p2n8mj9azv71b9mszqx" + } + }, + { + "ename": "ox-textile", + "commit": "02a68a7a99ecce8f1afa03e72ff1f636edaf5868", + "sha256": "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4", + "fetcher": "github", + "repo": "yashi/org-textile", + "unstable": { + "version": [ + 20180502, + 947 + ], + "deps": [ + "org" + ], + "commit": "b179abaa6616604c6efe32cb509e62ad46e7374e", + "sha256": "1hwrnnrhrdp5cjn81wipzi5j8zr82kpwlvr6hna2cj2zr3r7a6m8" + } + }, + { + "ename": "ox-tiddly", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1rpbnz152af588r8kafqpg9aq3ngwjfkrsjqk6w90l5rh280yi39", + "fetcher": "github", + "repo": "dfeich/org8-wikiexporters", + "unstable": { + "version": [ + 20180626, + 2052 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "99d0c25d56dbf75ce894a84e776ba4459208dbc2", + "sha256": "1812sp7z4241da1mfg4wxm1wcax59cqyy2n0xfd67a1mphihsniz" + } + }, + { + "ename": "ox-trac", + "commit": "4b73753ef9229d0fdfbe237acc63126f1786a494", + "sha256": "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa", + "fetcher": "github", + "repo": "JalapenoGremlin/ox-trac", + "unstable": { + "version": [ + 20171026, + 1823 + ], + "deps": [ + "org" + ], + "commit": "03cc31efb1aa06991918f1071e250a9d58f96cfb", + "sha256": "0knrmq0sc8s9c6j0967jmrp2hq8jcwg281qqk89y8j9rpbmhbaj6" + } + }, + { + "ename": "ox-tufte", + "commit": "0e1592b788ef7218cfb4b3da8599b6cd23eef357", + "sha256": "15b7aml9nl1kh8gbc086nb155f5mzlh8dmq41zi9frn6gskzjnfk", + "fetcher": "github", + "repo": "dakrone/ox-tufte", + "unstable": { + "version": [ + 20160926, + 1607 + ], + "deps": [ + "org" + ], + "commit": "49d7ea78fde063b407ce6fa57739f90c83500682", + "sha256": "1hb5s8m8r5nbz2kii1g975m3p4lnfkwraxhd71zhfvagf13wfkxd" + } + }, + { + "ename": "ox-twbs", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "050rv270jlkc1v7wp47cv9cwr9pz3n840dd4jxxhfs6s47b9ln73", + "fetcher": "github", + "repo": "marsmining/ox-twbs", + "unstable": { + "version": [ + 20161103, + 2016 + ], + "commit": "2414e6b1de7deb6dd2ae79a7be633fdccb9c2f28", + "sha256": "0kd45p8y7ykadmai4jn1x1pgpafyqggwb1ccbjzalxw4k9wmd45f" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "2414e6b1de7deb6dd2ae79a7be633fdccb9c2f28", + "sha256": "0kd45p8y7ykadmai4jn1x1pgpafyqggwb1ccbjzalxw4k9wmd45f" + } + }, + { + "ename": "ox-twiki", + "commit": "084da2cc725cc23b02657e7adb14ec31532ad25a", + "sha256": "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0", + "fetcher": "github", + "repo": "dfeich/org8-wikiexporters", + "unstable": { + "version": [ + 20170803, + 2039 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "99d0c25d56dbf75ce894a84e776ba4459208dbc2", + "sha256": "1812sp7z4241da1mfg4wxm1wcax59cqyy2n0xfd67a1mphihsniz" + } + }, + { + "ename": "ox-wk", + "commit": "0947993df2d9bee493c2c25760f1ac5bcc1136ac", + "sha256": "0rb4xkkqb65ly01lb1gl3gyz4yj9hzv4ydbdzsbvmpj0hrdw5nv3", + "fetcher": "github", + "repo": "w-vi/ox-wk.el", + "unstable": { + "version": [ + 20190526, + 1024 + ], + "deps": [ + "org" + ], + "commit": "3da2213be1874d9d3e8a9337b09003d9c102b943", + "sha256": "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "org" + ], + "commit": "3da2213be1874d9d3e8a9337b09003d9c102b943", + "sha256": "0aw6ykcgyn6p7hhggyd7jfyx9b25pr0vgnlfvcwhjc3w0lm94yi1" + } + }, + { + "ename": "p4", + "commit": "a7e2fa7af647e0dbf5ade5c32d1984b133156b6f", + "sha256": "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc", + "fetcher": "github", + "repo": "gareth-rees/p4.el", + "unstable": { + "version": [ + 20150721, + 1937 + ], + "commit": "eff047caa75dbe4965defca9d1212454cdb755d5", + "sha256": "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra" + } + }, + { + "ename": "pabbrev", + "commit": "c032b0d126e0196b4526ee04f5103582610681ea", + "sha256": "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3", + "fetcher": "github", + "repo": "phillord/pabbrev", + "unstable": { + "version": [ + 20160320, + 2101 + ], + "commit": "56400d5d256b42ffe45c229ea9827f026b650cf5", + "sha256": "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil" + }, + "stable": { + "version": [ + 4, + 1 + ], + "commit": "127a8b10cf352b0491fefd2f4178ba78ee587564", + "sha256": "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6" + } + }, + { + "ename": "pacfiles-mode", + "commit": "bec20443188d9218235c4b31840544a7b1e0690d", + "sha256": "08yc3w7zvckg8s1g707hvbbkvi2k52jrk2iwlj0sk22ih3q3yaa9", + "fetcher": "github", + "repo": "UndeadKernel/pacfiles-mode", + "unstable": { + "version": [ + 20181028, + 1744 + ], + "deps": [ + "cl-lib" + ], + "commit": "ff58f387e0f85ca20c4c9f119bf13303bf8b5a76", + "sha256": "1my9qhnla61wgrhf0izjx0kyjrxwyz3cfh3xp80mmnxhxrrf21kl" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "180eea7ba33dc4fa5c116b01649c4e9ba3f43276", + "sha256": "07ki2dz459nv4jshmgk2gq1b8c0x3iqy3nf9rwv0w3b3qm70gn3f" + } + }, + { + "ename": "pack", + "commit": "96f55c1f15ca24134da378a1ea31f7bb31c84ea9", + "sha256": "0lwdhfrpqwpqqg3yhcyj11jv2mm8k9k54qdxlhdi8sxj1fdxmanw", + "fetcher": "github", + "repo": "10sr/pack-el", + "unstable": { + "version": [ + 20190613, + 425 + ], + "deps": [ + "cl-lib" + ], + "commit": "e0ab7ea1115451b229fae663a110854ab998d8c0", + "sha256": "1aqpcain6bi96laa3w1hx4jx75lqzvba0jvyj0jnb19zsa6k3xha" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "2aaf19931c508b78edd53e63d9819dd0a6f9b97d", + "sha256": "0mqznvisfrar7j5x1plj2xgnbz4znnzikyq3j3gpssq4wv3kqq7g" + } + }, + { + "ename": "package+", + "commit": "49cfbbc4535aa7e175aa819d67b8aa52a6f94384", + "sha256": "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn", + "fetcher": "github", + "repo": "zenspider/package", + "unstable": { + "version": [ + 20190702, + 253 + ], + "commit": "2a99b8e27be1702d94ce077ecd75e1089fa18a32", + "sha256": "0cf5rnk96wyl3xkqabnsw5ampcr645y43rlj9rcm0s09pqbpr0z8" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "4a9618a44ec4f26a14e0136cd9d3c4855fceb25b", + "sha256": "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97" + } + }, + { + "ename": "package-build", + "commit": "948fb86b710aafe6bc71f95554655dfdfcab0cca", + "sha256": "0kr82j9rbvmapsph0jdxy24p0b8mcnj01sg1myywf428nf30cgbh", + "fetcher": "github", + "repo": "melpa/package-build", + "unstable": { + "version": [ + 20190727, + 1248 + ], + "deps": [ + "cl-lib" + ], + "commit": "1db490a6a6a95087a56ec4c26bc482343e8e937c", + "sha256": "0kqi6h71nhj0aczzgsvsprakmhnc5y19051y866fgcsffw5gyc7s" + }, + "stable": { + "version": [ + 2, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "385cd427ce15ca1715f3dd758b6aa408bf0186b1", + "sha256": "1412pjghyvzkdlsrrs0ql30vw591bhyk1wlbf49f15dzjbspx3w0" + } + }, + { + "ename": "package-filter", + "commit": "89312eaf69f3d7ac46647255c847fcb45415e78d", + "sha256": "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm", + "fetcher": "github", + "repo": "milkypostman/package-filter", + "unstable": { + "version": [ + 20161122, + 719 + ], + "commit": "bc73b41aea1d65ca44ef1593ca13126df9bbb39e", + "sha256": "0fq31zcz5j0n29p3zmx2k2w0xvay24zs34mbq8nb0y0jr7ycm184" + } + }, + { + "ename": "package-lint", + "commit": "dbfb0250a58b2e31c32ff1496ed66a3c5439bd67", + "sha256": "05akg9cgcqbgja966iv2j878y14d5wvky6m9clkfbw5wyg66xpr0", + "fetcher": "github", + "repo": "purcell/package-lint", + "unstable": { + "version": [ + 20190707, + 1456 + ], + "deps": [ + "cl-lib" + ], + "commit": "4a3ea9abda3ddfbd535a8eee7dbb776f9ccb5c27", + "sha256": "024ic4qcp2nfl8z8ff3742zk2rc7zjl3nrfg1r2mbakf0aa00dvm" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "4c90df4919f7b96921a939b3bd88bedfd08d041e", + "sha256": "0nhznvsl3l3v7w5x2afw0ay31r6jrdvgr1ys9mhcmd1fsk57bj2r" + } + }, + { + "ename": "package-lint-flymake", + "commit": "dbfb0250a58b2e31c32ff1496ed66a3c5439bd67", + "sha256": "076v3xvbxym7dwwl95j8kynj9kj2xw3gzq6qv6qkm0xls7df4yjz", + "fetcher": "github", + "repo": "purcell/package-lint", + "unstable": { + "version": [ + 20181117, + 856 + ], + "deps": [ + "package-lint" + ], + "commit": "4a3ea9abda3ddfbd535a8eee7dbb776f9ccb5c27", + "sha256": "024ic4qcp2nfl8z8ff3742zk2rc7zjl3nrfg1r2mbakf0aa00dvm" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "package-lint" + ], + "commit": "4c90df4919f7b96921a939b3bd88bedfd08d041e", + "sha256": "0nhznvsl3l3v7w5x2afw0ay31r6jrdvgr1ys9mhcmd1fsk57bj2r" + } + }, + { + "ename": "package-safe-delete", + "commit": "61b961211276bd95655b6a0967eda5037a3d240b", + "sha256": "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw", + "fetcher": "github", + "repo": "Fanael/package-safe-delete", + "unstable": { + "version": [ + 20150116, + 1607 + ], + "deps": [ + "epl" + ], + "commit": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd" + }, + "stable": { + "version": [ + 0, + 1, + 7 + ], + "deps": [ + "epl" + ], + "commit": "138171e4fc03c0ef05a8260cbb5cd2e114c1c194", + "sha256": "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd" + } + }, + { + "ename": "package-utils", + "commit": "a1bb884a0299408daa716eba42cb39f79622766c", + "sha256": "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r", + "fetcher": "github", + "repo": "Silex/package-utils", + "unstable": { + "version": [ + 20180514, + 1415 + ], + "deps": [ + "restart-emacs" + ], + "commit": "5621b95c56b55499f0463fd8b29501da25d861bd", + "sha256": "1mhsf0l0253d9b7n3c68mw5kwnsk7wf217y7m2fiybh51bdgjfnd" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "restart-emacs" + ], + "commit": "5621b95c56b55499f0463fd8b29501da25d861bd", + "sha256": "1mhsf0l0253d9b7n3c68mw5kwnsk7wf217y7m2fiybh51bdgjfnd" + } + }, + { + "ename": "packed", + "commit": "57a2fb9524df3fdfdc54c403112e12bd70888b23", + "sha256": "103z6fas2fkvlhvwbv1rl6jcij5pfsv5vlqqsb4dkq1b0s7k11jd", + "fetcher": "github", + "repo": "emacscollective/packed", + "unstable": { + "version": [ + 20180318, + 1729 + ], + "commit": "f350cc446c65b85bcc213265cd6dcadee1568762", + "sha256": "018vv0riqc571sanmfz82l1n322kfa4p4g9x2wf4m3h1819n53ky" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "commit": "c41c3dfda86ae33832ffc146923e2a4675cbacfa", + "sha256": "1272xmb3l8ddfijqzci3x0kxwibqb0sbkci4rbcv9ba9hpxp4d1v" + } + }, + { + "ename": "pacmacs", + "commit": "52ce427e046267655dd9f836e57176d59f23e601", + "sha256": "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy", + "fetcher": "github", + "repo": "codingteam/pacmacs.el", + "unstable": { + "version": [ + 20160131, + 832 + ], + "deps": [ + "cl-lib", + "dash", + "dash-functional", + "f" + ], + "commit": "d813e9c62c2540fe619234824fc60e128c786442", + "sha256": "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i" + } + }, + { + "ename": "pact-mode", + "commit": "b8e11b488c937ac9290f2e6acde92a87024a9012", + "sha256": "1awmczhz4cl2vxrn0h1wqkrhy1n9p4j3ayksvgifr4cfhqlsxk6v", + "fetcher": "github", + "repo": "kadena-io/pact-mode", + "unstable": { + "version": [ + 20190710, + 1817 + ], + "commit": "5df7032cf9b61ae5aff36ac7d2a23b2ab0e00904", + "sha256": "0hdg5b3mnld8pcfiawn51dc65dfws6gr7j4fvjc2gnhypy36l8xl" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "commit": "5df7032cf9b61ae5aff36ac7d2a23b2ab0e00904", + "sha256": "0hdg5b3mnld8pcfiawn51dc65dfws6gr7j4fvjc2gnhypy36l8xl" + } + }, + { + "ename": "paganini-theme", + "commit": "d6fbb609b411df4fe6f66a7afe27eda7d297f140", + "sha256": "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm", + "fetcher": "github", + "repo": "onurtemizkan/paganini", + "unstable": { + "version": [ + 20180815, + 1921 + ], + "commit": "255c5a2a8abee9c5935465ec42b9c3604c178c3c", + "sha256": "0qhmj8dyy722ds8cmwghhxknwwis1w64wix2hdmzs21c5pa5hgkw" + } + }, + { + "ename": "page-break-lines", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0i5kx191wnq9763jyqxbyh33hvdaqbd98a1rhgqd97zhvg0hslz1", + "fetcher": "github", + "repo": "purcell/page-break-lines", + "unstable": { + "version": [ + 20190519, + 2238 + ], + "commit": "6f19d894bda6a981c10a58df5e23419f4d2ba353", + "sha256": "0b9jlqf5hk5m5zywwfcgxjb88aqhij73fxwkp16psfm4bv0zy78p" + }, + "stable": { + "version": [ + 0, + 11 + ], + "commit": "67b5928a7f14568baf2716b5741e13659a86b9ea", + "sha256": "1wp974716ih2cz9kdmdz7xwjy1qnnfzdzlfr9kchknagw8d9nn12" + } + }, + { + "ename": "pager", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl", + "fetcher": "github", + "repo": "emacsorphanage/pager", + "unstable": { + "version": [ + 20151202, + 120 + ], + "commit": "5c791ed23f1136e04040d6f4bc9b4ca5b6dc919f", + "sha256": "198zlh7zrql1185b9qjim44a09kbbgs9zyahak9nhv1gxqn7mrdf" + } + }, + { + "ename": "pager-default-keybindings", + "commit": "87faee8c9820dd47feccdfbce7fd57dbe2800405", + "sha256": "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci", + "fetcher": "github", + "repo": "nflath/pager-default-keybindings", + "unstable": { + "version": [ + 20130719, + 2057 + ], + "deps": [ + "pager" + ], + "commit": "dbbd49c2ac5906d1dabf9e9c832bfebc1ab405b3", + "sha256": "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm" + } + }, + { + "ename": "palimpsest", + "commit": "14f6d011a0314637a2f4c1b00efa4912e67b7fa4", + "sha256": "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk", + "fetcher": "github", + "repo": "danielsz/Palimpsest", + "unstable": { + "version": [ + 20170119, + 2032 + ], + "commit": "e6d5944393c260ceb724462c84046cc62c9ae916", + "sha256": "0vw3lv02rf8f9vm379zff4l85psjwxsrvba4xcpdkqi1w4rbsnxr" + } + }, + { + "ename": "pallet", + "commit": "bf977287e9bd668efbd972c9937906384ee832c6", + "sha256": "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7", + "fetcher": "github", + "repo": "rdallasgray/pallet", + "unstable": { + "version": [ + 20150512, + 702 + ], + "deps": [ + "cask", + "dash", + "f", + "s" + ], + "commit": "b8d0df1883224a371ac0a3bc9b9c1c4dc61e6ac0", + "sha256": "0j87yq8rycklk8df4rlwx0bp2n94pyhaz4yv8vacbqrzchpa1bb0" + }, + "stable": { + "version": [ + 0, + 9, + 2 + ], + "deps": [ + "cask", + "dash", + "f", + "s" + ], + "commit": "0e1ae11e1ebfe644cbf832df62ac2dbf6ecd0501", + "sha256": "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw" + } + }, + { + "ename": "pamparam", + "commit": "03de45e491e970cc5733950a825b98545b5ac24b", + "sha256": "01n35a3fnwbb7w2qpk8b5f9wwmr6d5jcjzcv6gnc1768a43p9yzf", + "fetcher": "github", + "repo": "abo-abo/pamparam", + "unstable": { + "version": [ + 20190630, + 1842 + ], + "deps": [ + "hydra", + "lispy", + "worf" + ], + "commit": "ef33bf4a84fa6fdd045e6e3d182429952f240c88", + "sha256": "07nlp4wfr7d856jjhxb8zqb9wsb425d6h48k2isy7jm4h7ksfm70" + } + }, + { + "ename": "panda", + "commit": "69800de45dda180450ed9d47a24181b659d9d1ae", + "sha256": "04app7ni9q04v7pi1ppi5qgx5klcpawflmbsj58y33gz29di1zjk", + "fetcher": "github", + "repo": "sebasmonia/panda", + "unstable": { + "version": [ + 20190801, + 1622 + ], + "commit": "30dac32f9b18fb225ade8e56f7d9242d6c8efb35", + "sha256": "1d6wykf2k5b0494l2l8p9p0hmq52jvcq534dz4piwgnngrjcbq8n" + } + }, + { + "ename": "panda-theme", + "commit": "a90ca1275ceab8e1ea4fdfa9049fbd24a5fd0bf5", + "sha256": "1q3zp331hz8l54p8ym9jrs4f36aj15r8aka6bqqnalnk237xqxl7", + "fetcher": "github", + "repo": "jamiecollinson/emacs-panda-theme", + "unstable": { + "version": [ + 20181128, + 1738 + ], + "commit": "60aa47c7a930377807da0d601351ad91e8ca446a", + "sha256": "169khnipnxv0y412wc2r5nsh9d9zwpdyip0l9ayyzb19zdjl1l47" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "ae24179e7a8a9667b169f00dbd891257530c1d22", + "sha256": "05vv4idl9h59jd089hpd09xcy1ix30bq0c4fif2b66170aychvii" + } + }, + { + "ename": "pandoc", + "commit": "d6c21ff09d67fad2658e0de08bc2edb7588c504a", + "sha256": "0x81anxam7agr2v2zqgc331zs5s5zxcw54kzpanndda23n51h5cc", + "fetcher": "github", + "repo": "zonuexe/pandoc.el", + "unstable": { + "version": [ + 20161128, + 1157 + ], + "commit": "198d262d09e30448f1672338b0b5a81cf75e1eaa", + "sha256": "0njc6xlwa8hihyqrk0hs12sb6rs7jma2wpjfr8xsj9p8jld4y359" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "0f59533bbd8494fea3172551efb6ec49f61ba285", + "sha256": "0xqd64k8liaywsf65apj5xmf7ip6sikjmpc4740nld8iywhq8gf4" + } + }, + { + "ename": "pandoc-mode", + "commit": "4e39cd8e8b4f61c04fa967def6a653bb22f45f5b", + "sha256": "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781", + "fetcher": "github", + "repo": "joostkremers/pandoc-mode", + "unstable": { + "version": [ + 20190711, + 2122 + ], + "deps": [ + "dash", + "hydra" + ], + "commit": "7b9a19d8777a21431a819281a14201bfdf1dfdc1", + "sha256": "04bqc7mhgkfks3nsvimd3rrriv4nqbksmv5ahlbbd03aqa2b0vrv" + }, + "stable": { + "version": [ + 2, + 27, + 2 + ], + "deps": [ + "dash", + "hydra" + ], + "commit": "7b9a19d8777a21431a819281a14201bfdf1dfdc1", + "sha256": "04bqc7mhgkfks3nsvimd3rrriv4nqbksmv5ahlbbd03aqa2b0vrv" + } + }, + { + "ename": "pangu-spacing", + "commit": "c0b00eda1d20ff2cbffe3ac606e5fd60d915a5d6", + "sha256": "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8", + "fetcher": "github", + "repo": "coldnew/pangu-spacing", + "unstable": { + "version": [ + 20190422, + 514 + ], + "commit": "3a741c1b669c7194fb766b784c10d52a8de9b87f", + "sha256": "12980pwsk4pvvya2x9nbwzkyxy75qfqzs0jxl4jdblgrhh104bs0" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "034b4ef8a1b29bf7bfed6a916380941506ed26ed", + "sha256": "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y" + } + }, + { + "ename": "paper-theme", + "commit": "a7ea18a56370348715dec91f75adc162c800dd10", + "sha256": "1ph6c6g907cnxzl74byc754119qia8rs8y7wvaj8i6q3fz2658zr", + "fetcher": "github", + "repo": "cadadr/elisp", + "unstable": { + "version": [ + 20190124, + 1828 + ], + "commit": "1c4b082f6f19c2563dbfbc48b996a915843624bb", + "sha256": "10ys10m6mxyh7hblsqcpjmglnh9lwzl9b6bmbcankpvrl0zh094z" + } + }, + { + "ename": "paperless", + "commit": "500be17952ffb6b8d1e524b5b3d316878202fabc", + "sha256": "182arnx2fz0dww6bvg6m70a1picqd3czmzwv92x0rb4ghwrnq2dq", + "fetcher": "github", + "repo": "atgreen/paperless", + "unstable": { + "version": [ + 20180224, + 1245 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "b3b6c05da393f6b1292a3d5937bc4499baabd0b6", + "sha256": "1b2gm823qd6bllgp9qg2vgskzg4rpdvh8bgic8708hkq6lwpdv70" + } + }, + { + "ename": "paradox", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2", + "fetcher": "github", + "repo": "Malabarba/paradox", + "unstable": { + "version": [ + 20190624, + 41 + ], + "deps": [ + "hydra", + "let-alist", + "seq", + "spinner" + ], + "commit": "1b9e4b198e0a02773b52f6fe4fd03a82340c6cbc", + "sha256": "0ja7sxnpm71fvmly53hnb08bgdb9c69yfzzsmdh2h9na82qdjvk5" + }, + "stable": { + "version": [ + 2, + 5, + 4 + ], + "deps": [ + "hydra", + "let-alist", + "seq", + "spinner" + ], + "commit": "d24fe4a329a939ffa1983886d77a6937e05149e4", + "sha256": "1v78nmqyx60ki64wql7faq6ihv2qbk72sb19cy6hnypi546d81yp" + } + }, + { + "ename": "parchment-theme", + "commit": "f2302f512053b22e5abbd6a654cf94e4d5c7f5ca", + "sha256": "1dkl1f0zmnkw8xd89m5kd42rk4pg6a6wnm52g4p1b4yqqq27h6zm", + "fetcher": "github", + "repo": "ajgrf/parchment", + "unstable": { + "version": [ + 20190703, + 1531 + ], + "commit": "30eedd346175072e013b7bcf6ae1795f022fee0b", + "sha256": "01yiz4zkbmb95whgpg6n0mmjsi2fvnakvpg1cnx68k1nmd8waiv2" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "7d48ae9b39c37eeef7ab5bf7ee049d2edf0411a6", + "sha256": "071k34i48dsmlgpi8mpdff1fgcnz29dj2ci52c1i3alp9yc7s67a" + } + }, + { + "ename": "paredit", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "01qh8kfb5hyfi0jfl1kq3inkyzr0rf3wncmzgxlkfdc8zlq4v653", + "fetcher": "git", + "url": "https://mumble.net/~campbell/git/paredit.git", + "unstable": { + "version": [ + 20171127, + 205 + ], + "commit": "acbe10fdd85d2e91831adf70b6a828bc7e900da0", + "sha256": "1c7ag0cvd6rl5fsj3dpfcjpyb8xjd26d864z98a74cirn8pc8f7l" + }, + "stable": { + "version": [ + 24 + ], + "commit": "82bb75ceb2ddc272d6618d94874b7fc13181a409", + "sha256": "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm" + } + }, + { + "ename": "paredit-everywhere", + "commit": "593890222d074c6a308eb1b809077c6861e1af30", + "sha256": "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36", + "fetcher": "github", + "repo": "purcell/paredit-everywhere", + "unstable": { + "version": [ + 20180506, + 849 + ], + "deps": [ + "paredit" + ], + "commit": "653d7a58fb370d5f7df367464d8d05e23a70b29d", + "sha256": "0q6a3cvanjh3j0kdpqa812yql2axgga45g6nljvxijm8i9ba2hqf" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "paredit" + ], + "commit": "72b7cd5dcdc02233a32e9f1a6c2d21dc30532170", + "sha256": "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj" + } + }, + { + "ename": "paredit-menu", + "commit": "8a6379588b373fca2769b8761de4ba13545c082c", + "sha256": "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p", + "fetcher": "github", + "repo": "phillord/paredit-menu", + "unstable": { + "version": [ + 20160128, + 1733 + ], + "deps": [ + "paredit" + ], + "commit": "cc0ae85bd819f9ebfa4f2a419ab3b2d70e39c9c8", + "sha256": "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr" + } + }, + { + "ename": "paren-completer", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1k71nmsf155b4pvzcsymsc1bn42h9apypapkvc1kxyr6zm29zcr4", + "fetcher": "github", + "repo": "MatthewBregg/paren-completer", + "unstable": { + "version": [ + 20160501, + 1052 + ], + "commit": "74183a8e13fa1266271bdcbcb4bfb29a4f915f0a", + "sha256": "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b" + } + }, + { + "ename": "paren-face", + "commit": "d398398d1d5838dc4985a06515ee668f0f566aab", + "sha256": "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf", + "fetcher": "github", + "repo": "tarsius/paren-face", + "unstable": { + "version": [ + 20180318, + 2025 + ], + "commit": "6d9358295911f1b44efe81054c535eb2c2bb5a2e", + "sha256": "0lr6z90kbgi85bchk247cr91q5ryk73sqp5cvsiph4ryxpy9isyl" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "commit": "a45d111153a76c481fa0b36d6172ac90e073dfc4", + "sha256": "1cr0vnm57lxs48z17ddcv7qlfvks7wdsp01zsw0c7i3h5ajl8myp" + } + }, + { + "ename": "parent-mode", + "commit": "9736d8f6c3065c46b8c4e0056e9d592d3ec973e9", + "sha256": "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig", + "fetcher": "github", + "repo": "Fanael/parent-mode", + "unstable": { + "version": [ + 20150824, + 2300 + ], + "commit": "db692cf08deff2f0e973e6e86e26662b44813d1b", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni" + }, + "stable": { + "version": [ + 2, + 3 + ], + "commit": "db692cf08deff2f0e973e6e86e26662b44813d1b", + "sha256": "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni" + } + }, + { + "ename": "parinfer", + "commit": "470ab2b5cceef23692523b4668b15a0775a0a5ba", + "sha256": "05w4w7j6xyj19dm63073amd4n7fw4zm3qnn4x02fk2011iw8fq7i", + "fetcher": "github", + "repo": "DogLooksGood/parinfer-mode", + "unstable": { + "version": [ + 20180904, + 844 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "a7c041454e05ec2b88333a73e72debaa671ed596", + "sha256": "14ld7r2867aqa1rzk75bzf6qivqd1va4ilawggnxbbx5j2d82r1d" + }, + "stable": { + "version": [ + 0, + 4, + 10 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "5b3b247d68eeaf7404598cbcbf2158e07f16e65d", + "sha256": "0v97ncb0w1slb0x8861l3yr1kqz6fgw1fwl1z9lz6hh8p2ih34sk" + } + }, + { + "ename": "parrot", + "commit": "b1b393ffb9b7691e8fc99bee5fc676463038a68d", + "sha256": "0m67b80vc3qivcxs4w6fpzdg6h9d8s75251rlhnbc0xp7271zgnk", + "fetcher": "github", + "repo": "dp12/parrot", + "unstable": { + "version": [ + 20190311, + 2325 + ], + "commit": "4d77eafc6bfacfe45dae805ceca101331d3d08d0", + "sha256": "0lqcw0scn2jcs15vybd1x7k7hiykrcsvimqj58s45m2pnaia57ql" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "e9fe686408214884b20c65284a6a595e1c755794", + "sha256": "079k4j0lcaj0lff1llp29bj5ah2b59byw9lw3jjw9wkl9px87r0m" + } + }, + { + "ename": "parse-csv", + "commit": "010a182f7424928036231774c2fe17b857e3ca40", + "sha256": "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz", + "fetcher": "github", + "repo": "mrc/el-csv", + "unstable": { + "version": [ + 20160512, + 1723 + ], + "commit": "96bef1ffbc89ea12d13311c9fa239c5c3e864890", + "sha256": "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6" + } + }, + { + "ename": "parsebib", + "commit": "c39633957475dcd6a033760ba20a957716cce59c", + "sha256": "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd", + "fetcher": "github", + "repo": "joostkremers/parsebib", + "unstable": { + "version": [ + 20181219, + 928 + ], + "commit": "9a5f1730b8ef1fb6c29262a8ba79f8136e5548d4", + "sha256": "1d9x57njgl16yyjmscmai5ml9wrqfh35ilcz2s674s8fa4krqw72" + }, + "stable": { + "version": [ + 2, + 3, + 3 + ], + "commit": "683c970a6fb51591bc88ee80e295fedee876e044", + "sha256": "0mpgyy9qfb5x4fvlmb274hgayjbwf0bgk65dxyx31zikjwpcd56p" + } + }, + { + "ename": "parsec", + "commit": "248aaf5ff9c98cd3e439d0a26611cdefe6b6c32a", + "sha256": "1p3364sv5r868xjj1411xqj4acxqmbzcdl900sd03585ql5wbypj", + "fetcher": "github", + "repo": "cute-jumper/parsec.el", + "unstable": { + "version": [ + 20180730, + 16 + ], + "deps": [ + "cl-lib" + ], + "commit": "2cbbbc2254aa7bcaa4fb5e07c8c1bf2f381dba26", + "sha256": "1g1s8s45g3kkbi3h7w0pmadmzdswb64mkdvdpg2lihg341kx37gm" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "8f0c266d8b9b0ee5fcf9b80c518644b2849ff3b3", + "sha256": "1zwdh3dwqvw9z79mxgf9kf1l2c0pb32sknhrs7ppca613nk9c58j" + } + }, + { + "ename": "parseclj", + "commit": "e2a977779a7ee49f57b849b14e581210a7f47d61", + "sha256": "077qigx0qyjyvm3437ffnv05rmnpqxvpxf69yyfdgnay1xclv172", + "fetcher": "github", + "repo": "clojure-emacs/parseclj", + "unstable": { + "version": [ + 20190531, + 711 + ], + "deps": [ + "a" + ], + "commit": "b34d3e13a249d4b92f1a008cdc1df20a92f866c5", + "sha256": "1bnlqkmpqpnmmsyhx49mryhkrkaq6v68x7a4kg2pn19ycf9xz6ds" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "a" + ], + "commit": "93a0f43529598984835f88e64b62fa68bebda89b", + "sha256": "03bm5dm4hmkqimv4wqxjjh5814pxysmm7z54bv2rf7zwv1x7dggr" + } + }, + { + "ename": "parseedn", + "commit": "462a022a83186b8c70e888cc8df42601777504dd", + "sha256": "0lb0qkvsga90ysa3a1pn8ydf108lsq2azxzzm7xvxbgk0d1xzhjp", + "fetcher": "github", + "repo": "clojure-emacs/parseedn", + "unstable": { + "version": [ + 20190331, + 1058 + ], + "deps": [ + "a", + "parseclj" + ], + "commit": "ddf824bc1df1585867cb7f27f2dd8ca8df760569", + "sha256": "11wi3hwcgmy54p6ivpijqm7v0hj6j75a19qk5z779bqfrp79b4pc" + } + }, + { + "ename": "pasp-mode", + "commit": "f3c1bbfc6b3a60f8bb4f0ee77ec4108e9d3f458b", + "sha256": "0aix8siyd5yhgxq94k1sl64a9q2xlfrz6cj9y5mcqhb6qjgmrnva", + "fetcher": "github", + "repo": "santifa/pasp-mode", + "unstable": { + "version": [ + 20180404, + 1700 + ], + "commit": "59385eb0e8ebcfc8c11dd811fb145d4b0fa3cc92", + "sha256": "1ar4vws3izzmir7m870mccci620ns3c5j26dcmwaxavhgw45wcmf" + } + }, + { + "ename": "pass", + "commit": "428c2d53db69bed8938ec3486dfcf7fc048cd4e8", + "sha256": "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr", + "fetcher": "github", + "repo": "NicolasPetton/pass", + "unstable": { + "version": [ + 20190715, + 1509 + ], + "deps": [ + "f", + "password-store", + "password-store-otp" + ], + "commit": "ba6a3f695acb380e1457a29a0d13b22641f72c4f", + "sha256": "14g50fywwgf9bpqnl6bvq2k1czl9m2da43xcdrng2gpyrz3ns1w3" + }, + "stable": { + "version": [ + 1, + 8 + ], + "deps": [ + "f", + "password-store", + "password-store-otp" + ], + "commit": "cd79375005a1c1d8b45d38fefa91eef0bd23182c", + "sha256": "05h4hacv3yygyjcjj004qbyqjpkl4pyhwgp25gsz8mw5c66l70cx" + } + }, + { + "ename": "passmm", + "commit": "8ae2a1e10375f9cd55d19502c9740b2737eba209", + "sha256": "0p6qps9ww7s6w5x7p6ha26xj540pk4bjkr629lcicrvnfr5jsg4b", + "fetcher": "github", + "repo": "pjones/passmm", + "unstable": { + "version": [ + 20181130, + 1612 + ], + "deps": [ + "password-store" + ], + "commit": "b25a92048c788a8477cc5ffe14c0c4a4df19d79a", + "sha256": "1jg2rs010fmw10ld0bfl6x7af3v9yqfy9ga5ixmam3qpilc8c4fw" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "password-store" + ], + "commit": "b25a92048c788a8477cc5ffe14c0c4a4df19d79a", + "sha256": "1jg2rs010fmw10ld0bfl6x7af3v9yqfy9ga5ixmam3qpilc8c4fw" + } + }, + { + "ename": "passthword", + "commit": "a52b516b7b10bdada2f64499c8f43f85a236f254", + "sha256": "19zv80kidb6a3985n3zij507hvffcxhcvlfxd01gwx64wvfc0c3c", + "fetcher": "gitlab", + "repo": "pidu/passthword", + "unstable": { + "version": [ + 20141201, + 923 + ], + "deps": [ + "cl-lib" + ], + "commit": "30bace842eaaa6b48cb2251fb84868ebca0467d6", + "sha256": "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq" + }, + "stable": { + "version": [ + 1, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "58a91defdbeec9014b4e46f909a7411b3a627285", + "sha256": "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi" + } + }, + { + "ename": "password-generator", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ziiz4x4slfadlm7fjpmwvq4a9fi3ird74b6v5na499ylqnzrl59", + "fetcher": "github", + "repo": "zargener/emacs-password-genarator", + "unstable": { + "version": [ + 20150222, + 2040 + ], + "commit": "904cdb591a04305ba882ce19e1d117f5fa60f7d3", + "sha256": "1qgvn79qz1h8ykm5i1qv2fja4v2y0g2i0n5sf7byhnqhqlwn63nv" + } + }, + { + "ename": "password-mode", + "commit": "28dafa392a378e7de2c6992fe17b33f6379dc6b8", + "sha256": "1rxh6jg99qxagc6i2xgvswvw93h4ma7j8lhjr4ln44vbgyhzph11", + "fetcher": "github", + "repo": "juergenhoetzel/password-mode", + "unstable": { + "version": [ + 20170412, + 629 + ], + "commit": "ed764a4ec1011526457c71b7c37fa9a659a866ab", + "sha256": "102zydbkr2zrr7w0j11n7pivnsdmq3c6lykf3qc84jifp7j58pgr" + } + }, + { + "ename": "password-store", + "commit": "207f8ec84572176749d328cb2bbc4e87c36f202c", + "sha256": "03r8j14l12yc42b51fzvn1jh8j85nyl1rg6c80r0a7ihwkj27jv6", + "fetcher": "github", + "repo": "zx2c4/password-store", + "unstable": { + "version": [ + 20190611, + 418 + ], + "deps": [ + "f", + "s", + "with-editor" + ], + "commit": "c22cdbd4674a25dec71fe42ec1ef0b4829b6c7f3", + "sha256": "0czs41vz0ggl46qp87x3dwi6b84znyl0n1wczbin33x37ds5hbh5" + }, + "stable": { + "version": [ + 1, + 7, + 3 + ], + "deps": [ + "f", + "s", + "with-editor" + ], + "commit": "74fdfb5022f317ad48d449e29543710bdad1afda", + "sha256": "0nixbsyckkp1qjszgac74m00vj10vc3vyw2wic1zgc2rx795k228" + } + }, + { + "ename": "password-store-otp", + "commit": "fc89d02554a6ff150ad42634879073892f3e88be", + "sha256": "0m3n4gjf6hmcs2kg80h1whzbl74zsj79ihliyqfcdfc4v31m32sg", + "fetcher": "github", + "repo": "volrath/password-store-otp.el", + "unstable": { + "version": [ + 20190713, + 1748 + ], + "deps": [ + "password-store", + "s" + ], + "commit": "04998c8578a060ab4a4e8f46f2ee0aafad4ab4d5", + "sha256": "1c9lvxi0yf0x3ywciv58zkn9ss6n41305g5rp4l32a33sq51s567" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "deps": [ + "password-store", + "s" + ], + "commit": "a39a64a91de36e87b852339635bd3c5fb0e32441", + "sha256": "0gb48blvnn6ci2wl45z81p41ny7vbgl610hqy6b2hyr2171qjd60" + } + }, + { + "ename": "password-vault", + "commit": "71ad3fa96afa18b5002faf9272732c7d09826493", + "sha256": "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a", + "fetcher": "github", + "repo": "PuercoPop/password-vault", + "unstable": { + "version": [ + 20160126, + 1820 + ], + "deps": [ + "cl-lib" + ], + "commit": "dc56e6c2f5da66f1ab63736cecf08fb2c6c2b30f", + "sha256": "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c" + } + }, + { + "ename": "paste-of-code", + "commit": "b29a5101bb6fc01b8b6e1b798ce6f73bc6d34944", + "sha256": "0wjcchpp1689arfz6s7gfq4bxn0svz6qj5azvjwwsyzais1bicdi", + "fetcher": "github", + "repo": "spebern/paste-of-code.el", + "unstable": { + "version": [ + 20170709, + 2355 + ], + "deps": [ + "request" + ], + "commit": "92d258e8ec98598d847ecab82903f9224c7c2050", + "sha256": "1bf2d0i726psjwnqdp0w4h0qk7fnwcbwf1a66q7p8vczavqygfan" + } + }, + { + "ename": "pastebin", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr", + "fetcher": "github", + "repo": "nicferrier/elpastebin", + "unstable": { + "version": [ + 20101125, + 2002 + ], + "commit": "8e9a829298ce0f747ab80758aa26caeb2af6cb30", + "sha256": "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124" + } + }, + { + "ename": "pastehub", + "commit": "bb8645a9880c586ef2ad16f3a4e61ba76176c224", + "sha256": "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v", + "fetcher": "github", + "repo": "kiyoka/pastehub", + "unstable": { + "version": [ + 20140615, + 620 + ], + "commit": "37b045c67659c078f1517d0fbd5282dab58dca23", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n" + }, + "stable": { + "version": [ + 0, + 5, + 2 + ], + "commit": "37b045c67659c078f1517d0fbd5282dab58dca23", + "sha256": "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n" + } + }, + { + "ename": "pastelmac-theme", + "commit": "a7151773de39fe570e3e9b351daad89db9dd267f", + "sha256": "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f", + "fetcher": "github", + "repo": "bmastenbrook/pastelmac-theme-el", + "unstable": { + "version": [ + 20151031, + 236 + ], + "commit": "bead21741e3f46f6506e8aef4469d4240a819389", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "bead21741e3f46f6506e8aef4469d4240a819389", + "sha256": "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly" + } + }, + { + "ename": "pastery", + "commit": "6058218450071db0af9a5b8ce8ec09a735c4ab66", + "sha256": "006qawjc86spbbs2pxvhg9w94rcsxap577cndqwaiw1k0cc8vkhp", + "fetcher": "github", + "repo": "diasbruno/pastery.el", + "unstable": { + "version": [ + 20171114, + 349 + ], + "deps": [ + "request" + ], + "commit": "4493be98b743b4d062cb4e00760125e394a55022", + "sha256": "0bmm18d84lrkclg4md46k1ma03w7a97s10hrvjcm9yj8xbrjqqsc" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "request" + ], + "commit": "4493be98b743b4d062cb4e00760125e394a55022", + "sha256": "0bmm18d84lrkclg4md46k1ma03w7a97s10hrvjcm9yj8xbrjqqsc" + } + }, + { + "ename": "path-headerline-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0yw2i3cp20v8nd2wj1rs1qad8abghzzasf2sjyla90q06wlna98w", + "fetcher": "github", + "repo": "7696122/path-headerline-mode", + "unstable": { + "version": [ + 20140423, + 1332 + ], + "commit": "b5b2725c6a8b1cb592fc242b7dbbd54b4dff2e69", + "sha256": "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830" + } + }, + { + "ename": "path-helper", + "commit": "a70b1a41e45d215be27d392429dcd4f82904295f", + "sha256": "0fff3l88jgflqpxlcfxfyp2prc2ichajvm7c8i19qhvw70sbasny", + "fetcher": "github", + "repo": "arouanet/path-helper", + "unstable": { + "version": [ + 20181208, + 2229 + ], + "commit": "34538affb3f341b3c56a875bb094ddb2b859a8ef", + "sha256": "0qzsalbxksb44f0x7fndl2qyp1yf575qs56skfzmpnpa82dck88g" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "34538affb3f341b3c56a875bb094ddb2b859a8ef", + "sha256": "0qzsalbxksb44f0x7fndl2qyp1yf575qs56skfzmpnpa82dck88g" + } + }, + { + "ename": "pathify", + "commit": "459460c977b9cf033e22937899ad380e01efcf11", + "sha256": "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f", + "fetcher": "github", + "repo": "alezost/pathify.el", + "unstable": { + "version": [ + 20160423, + 846 + ], + "commit": "401b184c743694a60b3bc4273fc43de05cd5ac4b", + "sha256": "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "335332a900717ae01bde5ccb8f3dc97a5350f123", + "sha256": "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386" + } + }, + { + "ename": "paxedit", + "commit": "106b272c2f0741d21d31a0ddfa4f521c575559c1", + "sha256": "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic", + "fetcher": "github", + "repo": "promethial/paxedit", + "unstable": { + "version": [ + 20160730, + 1727 + ], + "deps": [ + "cl-lib", + "paredit" + ], + "commit": "09f3d5aeb108937a801e77ef413e29eaa4ecc4be", + "sha256": "1yd5wh8fsxh3v2fgpxm2cd7h9xz9zfj2d8g4bh4gzqjwrmn5rlgl" + }, + "stable": { + "version": [ + 1, + 1, + 8 + ], + "deps": [ + "cl-lib", + "paredit" + ], + "commit": "644eb7036a475fbcba4de5d46d6940b1e8ef33cd", + "sha256": "0jmhr658cczblag8knr8j77q58yj268rkhh5dmga66l0sb30wb21" + } + }, + { + "ename": "pbcopy", + "commit": "2bbde7950ad5b3b801ca6a2a27c0f5294c8b7746", + "sha256": "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q", + "fetcher": "github", + "repo": "emacsfodder/pbcopy.el", + "unstable": { + "version": [ + 20150225, + 459 + ], + "commit": "338f7245746b5de1bb96c5cc2b32bfd9b5d83272", + "sha256": "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6" + } + }, + { + "ename": "pc-bufsw", + "commit": "5f2bbd34d673935846c286e73a1e2efaa00ab01a", + "sha256": "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5", + "fetcher": "github", + "repo": "ibukanov/pc-bufsw", + "unstable": { + "version": [ + 20181221, + 856 + ], + "commit": "762d47b2f278c072643cf2a1ddc785516483d74a", + "sha256": "1by9p0j6c21y04cc4ls7f87gks631lv1mxk0aqhh41rml5kj4l22" + } + }, + { + "ename": "pcache", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0wwx20x6gzlli3hh4zd9pfv2cmqfm38xbl9p4vsgy08q1rm5agva", + "fetcher": "github", + "repo": "sigma/pcache", + "unstable": { + "version": [ + 20170105, + 2214 + ], + "deps": [ + "eieio" + ], + "commit": "1f8086077d770e524492e6fa59b07856e85a6fea", + "sha256": "09z5295f8051ag13ndq8rhxgg2m0gim45yfpjv4xkbmdcfkfinc2" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "deps": [ + "eieio" + ], + "commit": "025ef2411fa1bf82a9ac61dfdb7bd4cedaf2d740", + "sha256": "1jkdyacpcvbsm1g2rjpnk6hfr01r3j5ibgh09441scz41v6xk248" + } + }, + { + "ename": "pcap-mode", + "commit": "44f4cb526556a4b58b7e67314002e73413a59a76", + "sha256": "1p6lnr7yr8i3yp63xc8r1hnx8a4v0mz1s7q89zxx7aprk7i9kpv6", + "fetcher": "github", + "repo": "orgcandman/pcap-mode", + "unstable": { + "version": [ + 20161025, + 1448 + ], + "commit": "52780669af0ade136f84d73f21b4dbb7ab655416", + "sha256": "1v218cjs0qy3ac0rbzm22y1x388nxnf0pslh9jrvlymkn227pjs8" + } + }, + { + "ename": "pcmpl-args", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "10mgci1rk6sr7wk46mnp5l37v3qxdc6yy5zfvy9mzwzh3va1pw31", + "fetcher": "github", + "repo": "JonWaltman/pcmpl-args.el", + "unstable": { + "version": [ + 20190223, + 1613 + ], + "commit": "0b8a05fc6e370fa9c466250659619f8d6b53d446", + "sha256": "1zhjpgnd8n95fv2z5d9360cx2vhw88yqz7gyc0qc563p6l3xmffg" + } + }, + { + "ename": "pcmpl-git", + "commit": "6a51c16bed8d0a2fecad0ae9580d58cd44cc8930", + "sha256": "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk", + "fetcher": "github", + "repo": "leoliu/pcmpl-git-el", + "unstable": { + "version": [ + 20170121, + 59 + ], + "commit": "9472ac70baeda025ef7becd1cf141d72aec93f32", + "sha256": "17y3rdp7fgyg4i9hwyzgpv1d19i5c6rqdf1gm5bdm2csk12vfg9n" + } + }, + { + "ename": "pcmpl-homebrew", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1mfkg9i2hqq8mkhnc8yzc9br9wlhjv17vdvjzwhkybcbmhqf2qkm", + "fetcher": "github", + "repo": "kaihaosw/pcmpl-homebrew", + "unstable": { + "version": [ + 20190213, + 318 + ], + "commit": "39f2e8faf4d866410a625bbcf88f2504940c8982", + "sha256": "0p5iynpg9c7zw7717m2mj1lmzcawc8sz4r2di3f8jc8qkng3avns" + } + }, + { + "ename": "pcmpl-pip", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "17nmgq4wgv4yl2rsdf32585hfa58j0825mzzajrlwgmjiqx9i778", + "fetcher": "github", + "repo": "kaihaosw/pcmpl-pip", + "unstable": { + "version": [ + 20181229, + 1420 + ], + "deps": [ + "f", + "s", + "seq" + ], + "commit": "bc79228674ad5c1bc458c90dd8839790fb0a09e8", + "sha256": "017fwacc3vqvvxx4mn0a1glcsxccjyfai0rymyf3yfy4rgd7w0p4" + } + }, + { + "ename": "pcomplete-extension", + "commit": "6cb8a938418f84a5b0ede92e84a516f38e4b1011", + "sha256": "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc", + "fetcher": "github", + "repo": "thierryvolpiatto/pcomplete-extension", + "unstable": { + "version": [ + 20180707, + 455 + ], + "deps": [ + "cl-lib" + ], + "commit": "bb941272b54f49f780819f7ce4fd2c802de9a0da", + "sha256": "0bwbxnnw760i6mi7h9pyx3gaasrcja7dj3bfrlia07gw8jgl81ad" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "839740c90de857e18db2f578d6660951522faab5", + "sha256": "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6" + } + }, + { + "ename": "pcre2el", + "commit": "f04a25e467cc4c7d9a263330a7a1a53d67c6eb9b", + "sha256": "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3", + "fetcher": "github", + "repo": "joddie/pcre2el", + "unstable": { + "version": [ + 20161120, + 2103 + ], + "deps": [ + "cl-lib" + ], + "commit": "0b5b2a2c173aab3fd14aac6cf5e90ad3bf58fa7d", + "sha256": "14br6ad138qx1z822wqssswqiihxiynz1k69p6mcdisr2q8yyi1z" + }, + "stable": { + "version": [ + 1, + 8 + ], + "deps": [ + "cl-lib" + ], + "commit": "166a10472002010692dbc35f323ffb8110a294c5", + "sha256": "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i" + } + }, + { + "ename": "pcsv", + "commit": "80ffaf99b2a4566a3f9d0309cd7b63f563f3826e", + "sha256": "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-pcsv", + "unstable": { + "version": [ + 20150220, + 1131 + ], + "commit": "798e0933f8d0818beb17aebf3b1056bbf74e03d0", + "sha256": "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af" + }, + "stable": { + "version": [ + 1, + 3, + 6 + ], + "commit": "91599aaba70a8e8593fa2f36165af82cbd35e41e", + "sha256": "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z" + } + }, + { + "ename": "pdb-mode", + "commit": "6aee132aa24322fe1ac88ae17ee6e77ae1ec8d11", + "sha256": "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy", + "fetcher": "github", + "repo": "sixpi/pdb-mode", + "unstable": { + "version": [ + 20150128, + 1751 + ], + "commit": "855fb18ebb73b5df30c8d7677c2bcd0f361b138a", + "sha256": "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099" + } + }, + { + "ename": "pdf-tools", + "commit": "8e3d53913f4e8a618e125fa9c1efb3787fbf002d", + "sha256": "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw", + "fetcher": "github", + "repo": "politza/pdf-tools", + "unstable": { + "version": [ + 20190701, + 202 + ], + "deps": [ + "let-alist", + "tablist" + ], + "commit": "db7de3901ae0e55f6ab8cf9baec257f706c3d16e", + "sha256": "1vvhgxxg5lpmh0kqjgy8x1scdaah3wb76h2zj7x99ayym2bxyigv" + }, + "stable": { + "version": [ + 0, + 90 + ], + "deps": [ + "let-alist", + "tablist" + ], + "commit": "af1a5949c2dae59ffcbcf21cc4299fa2fc57ce72", + "sha256": "0iv2g5kd14zk3r5dzdw7b7hk4b5w7qpbilcqkja46jgxbb6xnpl9" + } + }, + { + "ename": "pdf-view-restore", + "commit": "66f0d3e9c7eea64f23191a3f7ac05158e3ae68bc", + "sha256": "1n3l7iyv5w937n0ihng8mzkaz09ngwclg5fv2s576d36b6jwm2k8", + "fetcher": "github", + "repo": "007kevin/pdf-view-restore", + "unstable": { + "version": [ + 20190423, + 1625 + ], + "deps": [ + "pdf-tools" + ], + "commit": "12d9734d2133dead548497193016c86ab28e9477", + "sha256": "1z5483jclfn1xrcdrvrw2c94fpnb1skv6c2ppi3w5nj4myny6nsv" + } + }, + { + "ename": "pdfgrep", + "commit": "55b0c24f883fe589d1159ce3845cf250a0f47feb", + "sha256": "0q511l57xv1s6z496jrlz6j2nf0fync0dlbm4r800p49lbh4abl3", + "fetcher": "github", + "repo": "jeremy-compostella/pdfgrep", + "unstable": { + "version": [ + 20181007, + 1728 + ], + "commit": "e251cd5c88a4ba5cb69008ba412d329f4d59e1d2", + "sha256": "0fy6h8ys490kw63l9jigsa0cf1psybyd9gcljpddnjd3nhkdwikw" + } + }, + { + "ename": "peacock-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9", + "fetcher": "github", + "repo": "emacsfodder/emacs-peacock-theme", + "unstable": { + "version": [ + 20170808, + 1320 + ], + "commit": "9e46fbfb562b6e26c6e3d6d618b044b3694da4c8", + "sha256": "0w4dzdsv2cdldss5jwmdbjb5a62k5j1szwdim4gv8ldifhj7fy22" + } + }, + { + "ename": "peek-mode", + "commit": "08384964d8c1f5f60c84c044d26a79105973ab21", + "sha256": "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4", + "fetcher": "github", + "repo": "erikriverson/peek-mode", + "unstable": { + "version": [ + 20130620, + 1946 + ], + "deps": [ + "elnode" + ], + "commit": "55a7dd011375330c7d57322257a5167516702c71", + "sha256": "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb" + } + }, + { + "ename": "peep-dired", + "commit": "e8e06a916ac18053e34821673d1cf7936b15c2ac", + "sha256": "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735", + "fetcher": "github", + "repo": "asok/peep-dired", + "unstable": { + "version": [ + 20160321, + 2237 + ], + "commit": "c88a9a3050197840edfe145f11e0bb9488de32f4", + "sha256": "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6" + } + }, + { + "ename": "peg", + "commit": "9b9b55a02e903ae7e75f8b636fdb1cf907c5db7c", + "sha256": "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm", + "fetcher": "github", + "repo": "ellerh/peg.el", + "unstable": { + "version": [ + 20150708, + 641 + ], + "commit": "081efeca91d790c7fbc90871ac22c40935f4833b", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "081efeca91d790c7fbc90871ac22c40935f4833b", + "sha256": "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n" + } + }, + { + "ename": "pelican-mode", + "commit": "aede5994c2e76c7fd860661c1e3252fb741f9228", + "sha256": "0z6w5j3qwb58pndqbmpsvy1l77w9jv90bss9qq9hicil8nlk4pvi", + "fetcher": "git", + "url": "https://git.korewanetadesu.com/pelican-mode.git", + "unstable": { + "version": [ + 20190124, + 2336 + ], + "commit": "65d7caf5d926599a5007eb7bc279215908aa5252", + "sha256": "1mmvsf1g2ym76ipgs7nl2fshw0rg1qij495rixga13qbkwb02hpl" + }, + "stable": { + "version": [ + 20170808 + ], + "commit": "8b13c30c4ec38dd535eadf26e463f8616d5c089c", + "sha256": "0rghcyp09ga95ag0pjbk4hdxxlsnr93dr6706z0xvfgmninbn5aw" + } + }, + { + "ename": "pepita", + "commit": "e9a393b11eaa29dbd0bf966fa0ab290b08ac7f39", + "sha256": "0xyy137hl8g74grhj8ipij4c80xrga1afjvzz5hf8hpx4zqbljpx", + "fetcher": "github", + "repo": "sebasmonia/pepita", + "unstable": { + "version": [ + 20190731, + 1610 + ], + "deps": [ + "csv" + ], + "commit": "1d67dad08cb994dd2fa637ea591db14cbb00d644", + "sha256": "09lqjssg72bq437cvg15dxmy7j446raaknvkp7pl5357vgmqcdy0" + } + }, + { + "ename": "per-buffer-theme", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn", + "fetcher": "bitbucket", + "repo": "inigoserna/per-buffer-theme.el", + "unstable": { + "version": [ + 20190703, + 2014 + ], + "deps": [ + "cl-lib" + ], + "commit": "b4133c09b6ea8bd97ac513442448ea1ec5254587", + "sha256": "0qwdsiflsg8xjlypcna0rv7sjcjjlyp39f4qlqbjyk52kw01qxiv" + } + }, + { + "ename": "perfect-margin", + "commit": "8b8cd6a81d46da6beff2754f69b1d74ff9cc1d49", + "sha256": "0bn9bjz1bbl07z3wzhjplp0n5zla3yqc8phr3maap6mch3q0jc1y", + "fetcher": "github", + "repo": "mpwang/perfect-margin", + "unstable": { + "version": [ + 20190722, + 126 + ], + "deps": [ + "cl-lib" + ], + "commit": "94b055c743b1859098870c8aca3e915bd6e67d9d", + "sha256": "02k379nig43j85wfm327pw6sh61kxrs1gwz0vgcbx9san4dp83bk" + } + }, + { + "ename": "perl6-mode", + "commit": "4e912dccdee12f745272d26ea10d5f106a27cabc", + "sha256": "0r5q2nggb9kbjcdfv81d7sm41jqz040j9z52fnck4b9mlz2dy6d0", + "fetcher": "github", + "repo": "perl6/perl6-mode", + "unstable": { + "version": [ + 20180619, + 1159 + ], + "deps": [ + "pkg-info" + ], + "commit": "88de065795d6863b23b6042576b9e90f8cbf8798", + "sha256": "0m8kc8j1rwy30439k4l5f351jkfjjp38mjm891ax8ghp9zk5pr7h" + } + }, + { + "ename": "perlbrew", + "commit": "24bd9c2cd848f5003a244a7127e8fc5ef46bdca4", + "sha256": "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8", + "fetcher": "github", + "repo": "kentaro/perlbrew.el", + "unstable": { + "version": [ + 20161109, + 709 + ], + "commit": "3a3406c3307c92aa30f9400d430925c434a3b6f0", + "sha256": "0kxz8ljc7w69ywp0bb15010sgrr13i1p05hcvhfr9c35l0n62r6p" + } + }, + { + "ename": "persistent-overlays", + "commit": "d3673c87c5ca883b4f713efeae912c3ad991c667", + "sha256": "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a", + "fetcher": "github", + "repo": "mneilly/Emacs-Persistent-Overlays", + "unstable": { + "version": [ + 20161128, + 700 + ], + "commit": "f563c8b966edc78c9d806661c4eb80e4781c4eab", + "sha256": "0csllpkpjf4csw3zfaw8k05jg078najfmjz6pz1jcl6b4sxjdfqa" + } + }, + { + "ename": "persistent-scratch", + "commit": "f1e32702bfa15490b692d5db59e22d2c07b292d1", + "sha256": "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1", + "fetcher": "github", + "repo": "Fanael/persistent-scratch", + "unstable": { + "version": [ + 20190128, + 1843 + ], + "commit": "71371a7ce9846754276350fd577dc7543eb52878", + "sha256": "0n638krbrs2hx97cgkb5nc0fbrd8wsbmb7mz3ym5mx5pvdyxnlgv" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "commit": "71371a7ce9846754276350fd577dc7543eb52878", + "sha256": "0n638krbrs2hx97cgkb5nc0fbrd8wsbmb7mz3ym5mx5pvdyxnlgv" + } + }, + { + "ename": "persistent-soft", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc", + "fetcher": "github", + "repo": "rolandwalker/persistent-soft", + "unstable": { + "version": [ + 20150223, + 1853 + ], + "deps": [ + "list-utils", + "pcache" + ], + "commit": "a1e0ddf2a12a6f18cab565dee250f070384cbe02", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc" + }, + "stable": { + "version": [ + 0, + 8, + 10 + ], + "deps": [ + "list-utils", + "pcache" + ], + "commit": "a1e0ddf2a12a6f18cab565dee250f070384cbe02", + "sha256": "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc" + } + }, + { + "ename": "persp-fr", + "commit": "8e09213dddf003a1275eafb767431a507ecf7639", + "sha256": "0p4379yr1b32l8ghq1axyb8qhp28gnq5qxxvbk3mdzgbwwj8y4b2", + "fetcher": "github", + "repo": "rocher/persp-fr", + "unstable": { + "version": [ + 20180801, + 727 + ], + "deps": [ + "dash", + "persp-mode" + ], + "commit": "3f536440b120499464106fd25f182d7580192870", + "sha256": "0bnplxv6igry7ak3wvn2b88zm4aarv35z4z5q38x52k4zac94rl8" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "dash", + "persp-mode" + ], + "commit": "3f536440b120499464106fd25f182d7580192870", + "sha256": "0bnplxv6igry7ak3wvn2b88zm4aarv35z4z5q38x52k4zac94rl8" + } + }, + { + "ename": "persp-mode", + "commit": "caad63d14f770f07d09b6174b7b40c5ab06a1083", + "sha256": "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w", + "fetcher": "github", + "repo": "Bad-ptr/persp-mode.el", + "unstable": { + "version": [ + 20190511, + 1402 + ], + "commit": "e330e6240bbb82589077f30472b05b95d1ff430d", + "sha256": "0gy0h9mrgig0d2gjs2z949ld1ccgfhmp0dfd8g33g2kxgzp7wnv2" + }, + "stable": { + "version": [ + 2, + 9, + 6 + ], + "commit": "1dfea0de788f6d25ee47b5c62ddbeaf9e8e92f06", + "sha256": "11ww8hg9p8qlmr8zpir0m5xzzbvd1faiqjx6vn4b05d4ll03rnhm" + } + }, + { + "ename": "persp-mode-projectile-bridge", + "commit": "2c049b0067b70577511114dc8abac0a00a9e0588", + "sha256": "169mpikixa33ljmh2n9sm186yibrik3f5p8m1hcisnzdsc3wgxmp", + "fetcher": "github", + "repo": "Bad-ptr/persp-mode-projectile-bridge.el", + "unstable": { + "version": [ + 20170315, + 1120 + ], + "deps": [ + "cl-lib", + "persp-mode", + "projectile" + ], + "commit": "f6453cd7b8b4352c06e771706f2c5b7e2cdff1ce", + "sha256": "1gyfn2fhx3bqzr9m1r4b8nyak8pmpcgj7yz2bagnjs21vfngr18c" + } + }, + { + "ename": "persp-projectile", + "commit": "8bc4e3a5af7ba86d277c73a1966a91c87d3d855a", + "sha256": "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm", + "fetcher": "github", + "repo": "bbatsov/persp-projectile", + "unstable": { + "version": [ + 20180616, + 1944 + ], + "deps": [ + "cl-lib", + "perspective", + "projectile" + ], + "commit": "533808b3e4f8f95a1e3ed9c55d9aa720277ebd5f", + "sha256": "17i1srw1k771i3a5wlydbyasyd9z39ryf48mxfs0dsbx1zjbj0pg" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib", + "perspective", + "projectile" + ], + "commit": "7686633acf44402fa90429759cca6a155e4df2b9", + "sha256": "0rqyzsmg32sdr4k9i2lf3jfyr9bskkl7gfb5ndl16iip9py7403z" + } + }, + { + "ename": "perspective", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "021ax1c2ys82dcjs5jl7b4nb83n6gax2imnpm030rcbihjl1lzm7", + "fetcher": "github", + "repo": "nex3/perspective-el", + "unstable": { + "version": [ + 20181120, + 114 + ], + "deps": [ + "cl-lib" + ], + "commit": "2c8cf56d170c3eb1fcc1a8fe41026b780e0ffead", + "sha256": "0xlib2f8fjmwk8r0p6r8y5ni687xmixqp9s40rgxc15ikin54hhf" + }, + "stable": { + "version": [ + 2, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "8e2f122de408d7866136dd861d513a9575cf32e6", + "sha256": "0pd5sqrrz6y3md20yh6ffy32jdcgb1gc9b4j14pm6r54bqxik68h" + } + }, + { + "ename": "perspeen", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0kwmllas9vnppsfaviy58d0nk4hmlqp566mfr4l53x46sybv1y04", + "fetcher": "github", + "repo": "seudut/perspeen", + "unstable": { + "version": [ + 20171203, + 1021 + ], + "deps": [ + "powerline" + ], + "commit": "edb70c530bda50ff3d1756e32a703d5fef5e5480", + "sha256": "12h0kj96s4h8z4kqalp7hccnlnqn5lrax3df75gz16pskx2dwxqr" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "30ee14339cf8fe2e59e5384085afee3f8eb58dda", + "sha256": "0mi7ipx0zg0vrm9da24i4j0300xj0dm3jjg35f466pm3a7xafrsg" + } + }, + { + "ename": "pfuture", + "commit": "5fb70c9f56a58b5c7a2e8b69b191aa2fc7c9bcc8", + "sha256": "15fr9wkpv8v1p22wz7hsyihq7f807ck105c2crfs8y7capfvs53s", + "fetcher": "github", + "repo": "Alexander-Miller/pfuture", + "unstable": { + "version": [ + 20190505, + 1006 + ], + "commit": "368254ee30692c709400db413c347e18e76a8a55", + "sha256": "096raqpjx84njws85r7pqq1wi9w9bjwkr0ga1mbbhlna1mfn3mg4" + }, + "stable": { + "version": [ + 1, + 7 + ], + "commit": "263227534e8bb98aedce18698c34db9fd4d6500b", + "sha256": "13r1f741rk5k35s413iyh1kng20zmp29qr4bzlxg8wjl7d8q6da2" + } + }, + { + "ename": "pg", + "commit": "5c4d1bb21948da2b283a3a9d89d9e3aed11afa13", + "sha256": "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji", + "fetcher": "github", + "repo": "cbbrowne/pg.el", + "unstable": { + "version": [ + 20130731, + 2142 + ], + "commit": "4f6516ec3946d95dcef49abb6703cc89ecb5183d", + "sha256": "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0" + } + }, + { + "ename": "pgdevenv", + "commit": "73ae474fc4792b2c322a0d2b5fd5b7cfe8c2fd05", + "sha256": "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w", + "fetcher": "github", + "repo": "dimitri/pgdevenv-el", + "unstable": { + "version": [ + 20150105, + 2236 + ], + "commit": "7f1d5bc734750aca98cf67a9491cdbd5615fd132", + "sha256": "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj" + } + }, + { + "ename": "ph", + "commit": "f62ca074ca2df780ab32aac50b2b828ee6a9934c", + "sha256": "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l", + "fetcher": "github", + "repo": "gromnitsky/ph", + "unstable": { + "version": [ + 20161029, + 1522 + ], + "commit": "ed80dad9211583ed0db633448b3624c99b7fac23", + "sha256": "1pgz64zv9a0r16i958x53g7wnk0q7ngcd6z1maf7lxhlp57v015d" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "ed45c371642e313810b56c45af08fdfbd71a7dfe", + "sha256": "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p" + } + }, + { + "ename": "phabricator", + "commit": "829010a578f34f0f2dfb36a0de01547c2950bb65", + "sha256": "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c", + "fetcher": "github", + "repo": "ajtulloch/phabricator.el", + "unstable": { + "version": [ + 20160510, + 1425 + ], + "deps": [ + "dash", + "f", + "projectile", + "s" + ], + "commit": "d09d6f059aea92d3b11c68664a5e80c901182ab8", + "sha256": "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c" + } + }, + { + "ename": "phan", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "17ar6nxy0plx5li49kgf4f0h99wwmnnp5kwmpf34jg9ygyhaglvb", + "fetcher": "github", + "repo": "emacs-php/phan.el", + "unstable": { + "version": [ + 20190521, + 203 + ], + "deps": [ + "composer", + "f" + ], + "commit": "82c2d962cd5cab647e8f2f5636bc83511ea40cb4", + "sha256": "1bypr6d85xr623bqq9j4hl2q4jiw8hyjhx1mp7q4jcm7pibkbjci" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "composer", + "f" + ], + "commit": "6b077b3421a0b2c0b98a6906b8ab0d14d9d7bf50", + "sha256": "1af4pam149dgxqzwqkjklxxqq2n8fg3l1b9w6bmaw24lx1pdxcyv" + } + }, + { + "ename": "phi-autopair", + "commit": "f26b586c0126699f3de65bf38dfbf9c4c0149c15", + "sha256": "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4", + "fetcher": "github", + "repo": "zk-phi/phi-autopair", + "unstable": { + "version": [ + 20170217, + 353 + ], + "deps": [ + "paredit" + ], + "commit": "3c7556779c3a53b045f5df33ae2a0c67469cbf60", + "sha256": "16gh2r1mhmirbq20kklym4l60rfcfn8dsj0vv3hx3fj8q81h8qc9" + } + }, + { + "ename": "phi-grep", + "commit": "992655fa4bd209abdf1149572e95f853e595125e", + "sha256": "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj", + "fetcher": "github", + "repo": "zk-phi/phi-grep", + "unstable": { + "version": [ + 20170606, + 807 + ], + "deps": [ + "cl-lib" + ], + "commit": "ab9bd8d25e751a9cbfa108b49839293230b6e8b5", + "sha256": "0p1i07dgaic0jnwdsnvsnib2913r9w8j98d1p5rx8db2nabjmzc0" + } + }, + { + "ename": "phi-rectangle", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "111fqqa7h5cajq92sbiqhavm25l5bcapxhfh38y7irq4mv08xifw", + "fetcher": "github", + "repo": "zk-phi/phi-rectangle", + "unstable": { + "version": [ + 20151208, + 654 + ], + "commit": "0c12716afc71d803d1f39417469521dc465762d9", + "sha256": "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4" + } + }, + { + "ename": "phi-search", + "commit": "2f0274300c33f19ca6f868e1d570ffee513dbdf7", + "sha256": "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g", + "fetcher": "github", + "repo": "zk-phi/phi-search", + "unstable": { + "version": [ + 20180322, + 129 + ], + "commit": "9a089b8271cb1cff9640848850298c9ec855286c", + "sha256": "1gr5plcbrfdc4pglfj905s89hf8x0kc083h30wcnd81bnw9jwz1x" + }, + "stable": { + "version": [ + 20160630 + ], + "commit": "40b86bfe9ae15377fbee842b1de3d93c2eb7dd69", + "sha256": "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62" + } + }, + { + "ename": "phi-search-dired", + "commit": "57c6dd518648f23927c5e6424210c157ed3cfd95", + "sha256": "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p", + "fetcher": "github", + "repo": "zk-phi/phi-search-dired", + "unstable": { + "version": [ + 20150405, + 714 + ], + "deps": [ + "phi-search" + ], + "commit": "162a5e4507c72512affae22744bb606a906d4193", + "sha256": "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn" + } + }, + { + "ename": "phi-search-mc", + "commit": "83cf3fa3736eb2583dcf6bca16b9acb89e3408a3", + "sha256": "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8", + "fetcher": "github", + "repo": "knu/phi-search-mc.el", + "unstable": { + "version": [ + 20160324, + 1503 + ], + "deps": [ + "multiple-cursors", + "phi-search" + ], + "commit": "7aa671910f766437089aec26c3aa7814222d1356", + "sha256": "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd" + }, + "stable": { + "version": [ + 2, + 2, + 1 + ], + "deps": [ + "multiple-cursors", + "phi-search" + ], + "commit": "4c6d2d39feb502febb81fc98b7b5854d88150c69", + "sha256": "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv" + } + }, + { + "ename": "phi-search-migemo", + "commit": "b78e07146a4e954e050349a1798ac46ecba10bab", + "sha256": "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6", + "fetcher": "github", + "repo": "zk-phi/phi-search-migemo", + "unstable": { + "version": [ + 20170618, + 921 + ], + "deps": [ + "migemo", + "phi-search" + ], + "commit": "308909ebfc8003d16673f97ca9eb26a667b72969", + "sha256": "07pi72jnd6k5xj9ypmxa0pbb03r07safpgf8vlp1m0xda5ixl0wf" + } + }, + { + "ename": "phoenix-dark-mono-theme", + "commit": "87e3b036fbcc96b047bbb141345a7b51f19d6951", + "sha256": "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939", + "fetcher": "github", + "repo": "j0ni/phoenix-dark-mono", + "unstable": { + "version": [ + 20170729, + 1406 + ], + "commit": "a54f515d162148bcb38676980bc2316adb3d7b8b", + "sha256": "1zr334qsjrajd2vrrlc1rfm4b4kdw15jfh5d102vj5bp7z7ajhb4" + } + }, + { + "ename": "phoenix-dark-pink-theme", + "commit": "87e3b036fbcc96b047bbb141345a7b51f19d6951", + "sha256": "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr", + "fetcher": "github", + "repo": "j0ni/phoenix-dark-pink", + "unstable": { + "version": [ + 20170729, + 1403 + ], + "commit": "4defbb76b00c1a29f060813898578152d6be623d", + "sha256": "03d7ak4ia3fifp0c8fm4qdydizsfsxvcvbzwfxlsk66s28p5wglc" + } + }, + { + "ename": "php-auto-yasnippets", + "commit": "28b2d8802f98e339ff01ecf9733b71b6c631123e", + "sha256": "047i51ks2nn7ydrx2hjx9qvsh3lxnyxp8a6c3h3nb1acy84f5bd1", + "fetcher": "github", + "repo": "emacs-php/php-auto-yasnippets", + "unstable": { + "version": [ + 20170331, + 114 + ], + "deps": [ + "php-mode", + "yasnippet" + ], + "commit": "03e1f0899c081813901ac15c2f7a675a37cca9f5", + "sha256": "0d7y6njsd1s2r5df2k8wvvwgxpwwyaqkhdd2b3p1php8rrbj3mg8" + }, + "stable": { + "version": [ + 2, + 3, + 1 + ], + "deps": [ + "php-mode", + "yasnippet" + ], + "commit": "1950d83cbcc5c5d62cd3bc432e1595870fe8cabf", + "sha256": "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6" + } + }, + { + "ename": "php-boris", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0kklwk8b98czsg567vgzzdfnv76yn1id3ah2q2qqdhaky1yzw7ak", + "fetcher": "github", + "repo": "tomterl/php-boris", + "unstable": { + "version": [ + 20130527, + 821 + ], + "commit": "f2faebf610c917f7091f7ec0cd97645629c4f819", + "sha256": "07lcibr55pk3sab9bbq2r4phadl5p28n63wkq5rkhkkjc7s9rayc" + } + }, + { + "ename": "php-boris-minor-mode", + "commit": "f0a8eb0eefe88b4ea683a4743c0f8393506e014b", + "sha256": "06nzdvzjp6ywq0jf0v0cmcv77wj1vyas2r10kmxd45rzw12hqjd9", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/php-boris-minor-mode.git", + "unstable": { + "version": [ + 20140209, + 1835 + ], + "deps": [ + "highlight", + "php-boris" + ], + "commit": "c70e176dd6545f2d42ca3427e87b469635616d8a", + "sha256": "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg" + } + }, + { + "ename": "php-cs-fixer", + "commit": "a3631c4b81c1784995ae9e74d832e301d79214e2", + "sha256": "1xvz6v1fwngi2rizrx5sf0wrs4cy8rb13467r26k8hb7z8h1rqmf", + "fetcher": "github", + "repo": "OVYA/php-cs-fixer", + "unstable": { + "version": [ + 20190207, + 1126 + ], + "deps": [ + "cl-lib" + ], + "commit": "6540006710daf2b2d47576968ea826a83a40a6bf", + "sha256": "089x26akvkfm772v8n3x3l5wpkhvlgad2byrcbh0a1vyhnjb2fvd" + }, + "stable": { + "version": [ + 1, + 0, + -2, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "ca2c075a22ad156c336d2aa093fb6394c9f6c112", + "sha256": "1axjfsfasg7xyq5ax2bx7rh2mgf8caw5bh858hhp1gk9xvi21qhx" + } + }, + { + "ename": "php-eldoc", + "commit": "7af452f42847a947e87edd6aa559f807d08920c1", + "sha256": "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j", + "fetcher": "github", + "repo": "sabof/php-eldoc", + "unstable": { + "version": [ + 20140202, + 1941 + ], + "commit": "df05064146b884d9081e10657e32dc480f070cfe", + "sha256": "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i" + } + }, + { + "ename": "php-mode", + "commit": "2e41dc09413eaa93704e7d9f55bd2bd01f658806", + "sha256": "1gqmcynz2wx09xjnk70db1a2pbnrh1vfm5vd6mks1s10y59bh0zq", + "fetcher": "github", + "repo": "emacs-php/php-mode", + "unstable": { + "version": [ + 20190801, + 1149 + ], + "deps": [ + "cl-lib" + ], + "commit": "3801694b299e99e753173d0dfabed8d9485a9a29", + "sha256": "1vlvz6lais1aryb17s6m3qj9algm672kr2si86qmbs3szbzc9qqv" + }, + "stable": { + "version": [ + 1, + 21, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "a8ee6ce7c1c319b2b641865ebd599cc36d2dc10e", + "sha256": "1gqawn8bg9374swxb4bd2z015v16yjr96am1vwsbmgks3lhiw8ja" + } + }, + { + "ename": "php-refactor-mode", + "commit": "ad4a9bb43e131e2eb0d8b09b13245bc268c524a5", + "sha256": "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s", + "fetcher": "github", + "repo": "keelerm84/php-refactor-mode.el", + "unstable": { + "version": [ + 20171124, + 635 + ], + "commit": "7a794b0618df2882b1bd586fdd698dba0bc5130d", + "sha256": "12kjyzmicay7y37znk0znpn81lszmnydq5fkl5pk57bxblwwiivg" + } + }, + { + "ename": "php-runtime", + "commit": "615c9ac208d8c20082a8ac83e49e93d99e2cbc89", + "sha256": "0dvnwajrjsgyqzglzpkx9vwx3f55mrag6dsbdjqc9vvpvxhmgfwb", + "fetcher": "github", + "repo": "emacs-php/php-runtime.el", + "unstable": { + "version": [ + 20181212, + 1825 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "017e0e70f07d6b25e37d5c5f4d271a914b677631", + "sha256": "1c74xd6p3hfanpd4920agvnar9rjbyvz33kwrzw9vywzrs68ncvh" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib", + "f", + "s" + ], + "commit": "017e0e70f07d6b25e37d5c5f4d271a914b677631", + "sha256": "1c74xd6p3hfanpd4920agvnar9rjbyvz33kwrzw9vywzrs68ncvh" + } + }, + { + "ename": "php-scratch", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0sl9cccp4xjsidiyjf3sca8wlch3zd23zyac21xys11xm3rjxh9r", + "fetcher": "github", + "repo": "mallt/php-scratch", + "unstable": { + "version": [ + 20161103, + 2217 + ], + "deps": [ + "php-mode", + "s" + ], + "commit": "3aa66d1d53b84b779374edff7a7e6b5f2cd7575d", + "sha256": "0iyb4y0wrd1yqm56p37riw6nwvrlcgxj1x0nhw8304p8hv76mzdi" + } + }, + { + "ename": "phpactor", + "commit": "d67b98ecd541c227c011615f67d7a0890f5e1af3", + "sha256": "0w2iszi74y3s6rcn6p2ic545cg319y4jpy83npbh5m98y8jma84m", + "fetcher": "github", + "repo": "emacs-php/phpactor.el", + "unstable": { + "version": [ + 20190724, + 102 + ], + "deps": [ + "cl-lib", + "composer", + "f", + "php-runtime" + ], + "commit": "fcdbae4b12735d6d1595f76275e5a6a589a20c7a", + "sha256": "1kx9pk6a4kc3x58qfv35fvh9hkp2xgw2yxj98n065xr82yzzd6m1" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "61e4eab638168b7034eef0f11e35a89223fa7687", + "sha256": "0dsa1mygb96nlz5gppf0sny3lxaacvmvnkg84c0cs6x223s6zfx8" + } + }, + { + "ename": "phpcbf", + "commit": "77ef54e3fb2715a081786dc54f99ae74def5c77c", + "sha256": "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv", + "fetcher": "github", + "repo": "nishimaki10/emacs-phpcbf", + "unstable": { + "version": [ + 20181228, + 423 + ], + "deps": [ + "s" + ], + "commit": "fb0bc6073a57126cf1a8404723aa0a715dd761aa", + "sha256": "0k2wl137nippcfx3g35kfprz2fiv8rbbi7dcpxciwnbqmn6ry7rf" + }, + "stable": { + "version": [ + 0, + 9, + 2 + ], + "deps": [ + "s" + ], + "commit": "b556b548ceb061b002389d6165d2cc63d8bddb5d", + "sha256": "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z" + } + }, + { + "ename": "phpstan", + "commit": "43808f57146a395b92ed498803fa948a33e5f3c2", + "sha256": "1nx9d4mhxhvbgrxawkpkw03b75bg1xpli1x83g2bhs8ar8lypjik", + "fetcher": "github", + "repo": "emacs-php/phpstan.el", + "unstable": { + "version": [ + 20190618, + 724 + ], + "commit": "e8d33c75f6ab466ac15406fac5f2db6666d79deb", + "sha256": "1n6f4ibjdzrgll5zvikxc5gcfbpypq9nc2dhfxv011kllj22hpyc" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "525792fc4a9ecb5dc577a7c416e298e0c45c6183", + "sha256": "02cgcqkgwl0rbxhndcyjd8fj57g84n8x4n9rkh671rg3r7p7c71j" + } + }, + { + "ename": "phpt-mode", + "commit": "59a0e7aabf45c98b1ecf9db49f6420a6e051733b", + "sha256": "1isq3l6qhya5vafmcqbda7r0irdmgvmlmdg98n7h8yck5imi78yf", + "fetcher": "github", + "repo": "emacs-php/phpt-mode", + "unstable": { + "version": [ + 20190512, + 1809 + ], + "deps": [ + "php-mode", + "polymode" + ], + "commit": "deb386f1a81003074c476f15e1975d445ff6df01", + "sha256": "0wv1q44f5hmpsrjvjb5y8c1gnjkazdghmgbzw6l30i3j3z36fy60" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "php-mode", + "polymode" + ], + "commit": "310579e5db57c344460f74239bd1a8fc0d6ddf33", + "sha256": "1zgnnzad0sr5qh665i3shcf18y121di8za99girkzgzjcv309r35" + } + }, + { + "ename": "phpunit", + "commit": "0670b42c0c998daa7bf01080757976ac3589ec06", + "sha256": "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8", + "fetcher": "github", + "repo": "nlamirault/phpunit.el", + "unstable": { + "version": [ + 20180829, + 1438 + ], + "deps": [ + "cl-lib", + "f", + "pkg-info", + "s" + ], + "commit": "fe6bc91c3bd8b329c6d26ad883a025f06b5121ee", + "sha256": "1silbfmv85r73pbc7f5cm4znc6644ngihfnhibk1fgp9j0rf7ahc" + }, + "stable": { + "version": [ + 0, + 17, + 1 + ], + "deps": [ + "cl-lib", + "f", + "pkg-info", + "s" + ], + "commit": "4212307bbcfd8accd2abfa7e4ab55a6751a0b11b", + "sha256": "1silbfmv85r73pbc7f5cm4znc6644ngihfnhibk1fgp9j0rf7ahc" + } + }, + { + "ename": "pianobar", + "commit": "b5659b4c7be20572aabe75caba866301393db012", + "sha256": "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn", + "fetcher": "github", + "repo": "agrif/pianobar.el", + "unstable": { + "version": [ + 20180417, + 104 + ], + "commit": "3154c4cb7401017fd441fcd6a7a0b669a4406882", + "sha256": "0dy51pi85i8ag47zmnhppllsbmxd0bp704azffddkg36pjh4inxk" + } + }, + { + "ename": "pickle", + "commit": "4cb71882f074d3fef1f5a7b504dafcb6adff8ed4", + "sha256": "0fryzmrs6bn6r590qp08jyzx9g6jakf1pahxhcfglsv9k3jbfp13", + "fetcher": "github", + "repo": "ahungry/pickle-mode", + "unstable": { + "version": [ + 20190122, + 1748 + ], + "deps": [ + "cl-lib" + ], + "commit": "0d0b1925b7b79e2c80a1877351e3c6ce52935c4b", + "sha256": "0hbymja9109fzw34ra5iyxvhfv0x8ffr8sayqihdfmrs2ymh045z" + } + }, + { + "ename": "picolisp-mode", + "commit": "fe116998dadeef6e61c0791efb396f9b8befa5d6", + "sha256": "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5", + "fetcher": "github", + "repo": "flexibeast/picolisp-mode", + "unstable": { + "version": [ + 20190801, + 1116 + ], + "commit": "c1f25707cb56b50c678b367bc9f452303fb4e68f", + "sha256": "060ldl4kx787bas8f0l28j744f60is4faqlxmyxjd67jiaw4phrh" + } + }, + { + "ename": "picpocket", + "commit": "e88dc89311d4bfe82dc15f22b84c4b76abb3fd69", + "sha256": "0p2mrjcd8ig0h7dk0zvyfma4nnfk2ic6gp2dwfqyqq6irb010f45", + "fetcher": "github", + "repo": "johanclaesson/picpocket", + "unstable": { + "version": [ + 20180914, + 1819 + ], + "commit": "6fd88b8711c4370662c0f9c462170187d092a046", + "sha256": "1mdzzxf7xm7zwrpnqqxa27d1cr31pd72d7ilbwljv13qp177a3yw" + } + }, + { + "ename": "pig-mode", + "commit": "a0d7c07d28e2f229b281201a781ebaceed6465ed", + "sha256": "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x", + "fetcher": "github", + "repo": "motus/pig-mode", + "unstable": { + "version": [ + 20180520, + 1400 + ], + "commit": "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959", + "sha256": "1vwnybyrzk8nw2cs27yrsipxb6hmx7cs5d60yf00h0wiv3l6v3rr" + } + }, + { + "ename": "pig-snippets", + "commit": "a0d7c07d28e2f229b281201a781ebaceed6465ed", + "sha256": "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2", + "fetcher": "github", + "repo": "motus/pig-mode", + "unstable": { + "version": [ + 20130913, + 624 + ], + "deps": [ + "yasnippet" + ], + "commit": "4c6c6e1b1bb719d8adc6c47cc24665f6fe558959", + "sha256": "1vwnybyrzk8nw2cs27yrsipxb6hmx7cs5d60yf00h0wiv3l6v3rr" + } + }, + { + "ename": "pillar", + "commit": "bff55f1182f3bd0bc8a8773921f703168d87de21", + "sha256": "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js", + "fetcher": "github", + "repo": "pillar-markup/pillar-mode", + "unstable": { + "version": [ + 20141112, + 1811 + ], + "deps": [ + "makey" + ], + "commit": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909", + "sha256": "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "makey" + ], + "commit": "13a7f676544cc66005ccd8e6fc1c25e4ccd6f909", + "sha256": "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8" + } + }, + { + "ename": "pinboard", + "commit": "17af21be67f2c879b3ad109e529ca633fcdb4ff5", + "sha256": "19icd7xg7fwka3n2c9x4697dkji4mqivjc0gygic5bwh83dhbdav", + "fetcher": "github", + "repo": "davep/pinboard.el", + "unstable": { + "version": [ + 20190623, + 1421 + ], + "deps": [ + "cl-lib" + ], + "commit": "910d0fae61badd7e25e148d2ea84f0188b802fb1", + "sha256": "0v6gg472b6srsvn1p26dam7iqkjsqdnd7idl68fck1mchy3k39iw" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "910d0fae61badd7e25e148d2ea84f0188b802fb1", + "sha256": "0v6gg472b6srsvn1p26dam7iqkjsqdnd7idl68fck1mchy3k39iw" + } + }, + { + "ename": "pinboard-api", + "commit": "7a13787abe600b6f6355a475af573efa0064bf6f", + "sha256": "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0", + "fetcher": "github", + "repo": "danieroux/pinboard-api-el", + "unstable": { + "version": [ + 20140324, + 1148 + ], + "commit": "b7b5214d0c35178f8dca08cf22d6ef3c21f0fce4", + "sha256": "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja" + } + }, + { + "ename": "pinboard-popular", + "commit": "094f63e451622571aac832b14221a0d5a96de9c5", + "sha256": "0d9ng4mclnb9yfzh8wzz03fbhfxayns0dg31bdixkwvy2vk00rkf", + "fetcher": "github", + "repo": "asimpson/pinboard-popular", + "unstable": { + "version": [ + 20180511, + 1726 + ], + "deps": [ + "loop" + ], + "commit": "c0bc76cd35f8ecf34723c64a702b82eec2751318", + "sha256": "1msvb5r6ixd886plpbss62q2nwrrsb6271bi922vlhr817lhsain" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "loop" + ], + "commit": "df6f5928f1e5a614fb770f6f4b9aefe0bf4d1c25", + "sha256": "1x3qaqj81w1wblkd4rd1b7nggmgnf6jahh3zh2p6nlr200fg52lq" + } + }, + { + "ename": "pine-script-mode", + "commit": "287b781147fe41089fa8c76570bc30539e43e5bc", + "sha256": "0ihijbcx7m4vhxr1fnfkwjdk6ka1mqzxb8z164yh8yn73qs0saiq", + "fetcher": "github", + "repo": "EricCrosson/pine-script-mode", + "unstable": { + "version": [ + 20181110, + 151 + ], + "commit": "f7892d373e30df0b2e8d2191e4ddb2064a92dd3c", + "sha256": "1zxmc2l41h28rl058lrfr8c26hjzqmp37ii8r29mpsm03hsw30fh" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f7892d373e30df0b2e8d2191e4ddb2064a92dd3c", + "sha256": "1zxmc2l41h28rl058lrfr8c26hjzqmp37ii8r29mpsm03hsw30fh" + } + }, + { + "ename": "pinot", + "commit": "f75cd89811b4bb668c1e7a93246b93fbcf5d9c47", + "sha256": "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i", + "fetcher": "github", + "repo": "tkf/emacs-pinot-search", + "unstable": { + "version": [ + 20140211, + 2026 + ], + "commit": "67fda555a155b22bb2ce44ba618b4bd6fc5f144a", + "sha256": "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh" + } + }, + { + "ename": "pinyin", + "commit": "b16f0f7f86021bb0bece6c90878b0dba1657107f", + "sha256": "1afgz62zpar6d65q4h12s7ijhhl2r2vlrnk79vsjrl560jh7hgfm", + "fetcher": "github", + "repo": "xuchunyang/pinyin.el", + "unstable": { + "version": [ + 20180620, + 1241 + ], + "deps": [ + "cl-lib" + ], + "commit": "a325e790e9dd7c5028c4c8d110b08e9d78227382", + "sha256": "0f715zsg6j9y22w55gjv7wk90660zzpv4bilc2mi69dv534d9qv9" + } + }, + { + "ename": "pinyin-search", + "commit": "03da6f02778f7fae77a00cdc420cfbafead6dec4", + "sha256": "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z", + "fetcher": "github", + "repo": "xuchunyang/pinyin-search.el", + "unstable": { + "version": [ + 20160515, + 358 + ], + "deps": [ + "pinyinlib" + ], + "commit": "2e877a76851009d41bde66eb33182a03a7f04262", + "sha256": "0bp4raxqv34jyg3yvdcsh9lav28x376gngm9nn8vjgmq9wggzf3i" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "5895cccfa6b43263ee243c5642cc16dd9a69fb4e", + "sha256": "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70" + } + }, + { + "ename": "pinyinlib", + "commit": "f4aa27985dcfaf24f1863667b89e13df4710546f", + "sha256": "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr", + "fetcher": "github", + "repo": "cute-jumper/pinyinlib.el", + "unstable": { + "version": [ + 20170827, + 2142 + ], + "commit": "45f05d3dbb4fe957f7ab332ca6f94675848b6aa3", + "sha256": "0pmgb4y06dbffs4442aa92vn8ydwl45zqwzxzwhk6md1318fppvd" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "39943d226c2a42a9013421a0b4b6d5d3696bf234", + "sha256": "1nwj4c3y0kdlkf3jqd2dnibaiazrq6qcj533xk2qw4wmx072yij0" + } + }, + { + "ename": "pip-requirements", + "commit": "5eaf6987f92070ccc33d3e28c6bb2b96f72ba1aa", + "sha256": "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz", + "fetcher": "github", + "repo": "Wilfred/pip-requirements.el", + "unstable": { + "version": [ + 20181027, + 1629 + ], + "deps": [ + "dash" + ], + "commit": "216cd1690f80cc965d4ae47b8753fc185f778ff6", + "sha256": "0da3q0n5nn0l96kk49kanw5knx3jmga439zbmiii76na16bg5y3i" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "dash" + ], + "commit": "93e0595f037e3a95c1c1cd6f00f7e052a9a25912", + "sha256": "016r7y5nfnx6iws3hq4xnyrcv00y6zmd453psxhivi896wb8szfq" + } + }, + { + "ename": "pipenv", + "commit": "d46738976f5dfaf899ee778b1ba6dcee455fd271", + "sha256": "110ddg6yjglp49rgn1ck41rl97q92nm6zx86mxjmcqq35cxmc6g1", + "fetcher": "github", + "repo": "pwalsh/pipenv.el", + "unstable": { + "version": [ + 20190522, + 803 + ], + "deps": [ + "f", + "pyvenv", + "s" + ], + "commit": "03edaaa44a5a4212d2e5a14e3ae6303189d76703", + "sha256": "04y6p8gd20xhn7qkz2gp94yxizwl67yhi7qs0x6c8nrxpqd1y5y9" + } + }, + { + "ename": "pippel", + "commit": "6d1796688ed0d6957557d960ca28e450f9bcb6cf", + "sha256": "1li4h0dff1n7njy2lk3d50ndrlw84fphmdg16j0srkbgy7xz90yn", + "fetcher": "github", + "repo": "brotzeit/pippel", + "unstable": { + "version": [ + 20180710, + 856 + ], + "deps": [ + "dash", + "s" + ], + "commit": "21a5200e8e5ccaa1911abb4ebf090b76ca839756", + "sha256": "1amqjm6kn1xda058kdwq3xgk7raz6y9iw0mzrac78sgf57qaczyb" + } + }, + { + "ename": "pivotal-tracker", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0yiyz11sd25ybgr2qmg62qqmcz96va1pq3q866cqmpl38xn7znpj", + "fetcher": "github", + "repo": "jxa/pivotal-tracker", + "unstable": { + "version": [ + 20170720, + 1516 + ], + "commit": "0311d117037c74512149a4a78b269c2e46d7dfba", + "sha256": "0g3xzh8jr9lbg6h2hk81cdyxkxx3l79qhxrp4g34rc0dml79rzf9" + } + }, + { + "ename": "pixie-mode", + "commit": "a57300bfdae57c9996db0411d56a5fc7b35778c3", + "sha256": "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8", + "fetcher": "github", + "repo": "johnwalker/pixie-mode", + "unstable": { + "version": [ + 20180626, + 541 + ], + "deps": [ + "clojure-mode", + "inf-clojure" + ], + "commit": "a40c2632cfbe948852a5cdcfd44e6a65db11834d", + "sha256": "11c5gv88chh7sg2i0rzisbad0mkq1zc7dyi5md8hdi5gqm68704g" + } + }, + { + "ename": "pixiv-novel-mode", + "commit": "92092c1c13c37520f98b952d40745aa062f062c1", + "sha256": "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px", + "fetcher": "github", + "repo": "zonuexe/pixiv-novel-mode.el", + "unstable": { + "version": [ + 20160220, + 1421 + ], + "commit": "0d1ca524d92b91f20a7105402a773bc21779b434", + "sha256": "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "4dd9caf749190fab8f0b33862b3894b635de46c5", + "sha256": "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d" + } + }, + { + "ename": "pkg-info", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1k23hmpcq534060qcxbrv4g6bw9nzcbjg192mbdp20kwidw7p81n", + "fetcher": "github", + "repo": "lunaryorn/pkg-info.el", + "unstable": { + "version": [ + 20150517, + 1143 + ], + "deps": [ + "epl" + ], + "commit": "76ba7415480687d05a4353b27fea2ae02b8d9d61", + "sha256": "150xhsv695cchs5jc2hwk9gjgs0k8wkm966crvxxs6xvj5fg69xq" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "epl" + ], + "commit": "f9bb471ee95d1c5fe9adc6b0e98db2ddff3ddc0e", + "sha256": "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1" + } + }, + { + "ename": "pkgbuild-mode", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x", + "fetcher": "github", + "repo": "juergenhoetzel/pkgbuild-mode", + "unstable": { + "version": [ + 20181216, + 1331 + ], + "commit": "e30e37730b5f30bc0dd5b9328fbf4cb3e6f46fdd", + "sha256": "1ijx067hlbr4yz9b9h58pwlqd4rgjgm27f5s1f9f3rwb249s36s1" + }, + "stable": { + "version": [ + 0, + 14 + ], + "commit": "6bb7cb3b0599ac0ae3c1d8d5014aefc1ecff7965", + "sha256": "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr" + } + }, + { + "ename": "plain-theme", + "commit": "b147fb05a1b4296e1b85d31ba018d132a5bb5ed2", + "sha256": "10qq7cy6hqh6c8qi796y9lk4wyyjbhdn1pvkcw3g29cfh857x50m", + "fetcher": "gitlab", + "repo": "yegortimoshenko/plain-theme", + "unstable": { + "version": [ + 20171124, + 410 + ], + "commit": "a3d5389a44326314da21f147bad2ede60e2cf986", + "sha256": "0qik5478z49fpn9b37fxkybglvsgzbapl1dkam5prg0sxns98xha" + }, + "stable": { + "version": [ + 8 + ], + "commit": "2609a811335d58cfb73a65d6307c156fe09037d3", + "sha256": "0g5vl4xigdm2pn2mnkwgj1kxdjr66w7ynr77bchy3ij6qvzdzkqd" + } + }, + { + "ename": "plan9-theme", + "commit": "cdc4c2bafaa09e38edd485a9091db689fbda2fe6", + "sha256": "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc", + "fetcher": "github", + "repo": "john2x/plan9-theme.el", + "unstable": { + "version": [ + 20180804, + 1441 + ], + "commit": "c2da2fcb241e9800d931a1ff19ecd9fd84d30382", + "sha256": "0rjxbk9fljnjmg00vdqcyynzg591cgknyy2d92xsxsyg4d28dvwi" + } + }, + { + "ename": "planet-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1hr5m08qn51r9804jd0k95ryz3frzkk1dp6wpybil6bf67a2l5lr", + "fetcher": "github", + "repo": "cmack/emacs-planet-theme", + "unstable": { + "version": [ + 20161031, + 217 + ], + "commit": "b0a310ff36565fe22224c407cf59569986698a32", + "sha256": "1xdj59skmldq5dnarirhwq4qycipas86nbyqwl8zsv0bh20nl1rs" + } + }, + { + "ename": "plantuml-mode", + "commit": "38e74bb9923044323f34473a5b13867fe39bed25", + "sha256": "03srbg34512vxcqn95q4r7h2aqbqq0sd5c9ffnbx2a75vsblqc6h", + "fetcher": "github", + "repo": "skuro/plantuml-mode", + "unstable": { + "version": [ + 20190531, + 853 + ], + "deps": [ + "dash" + ], + "commit": "e9c8e76ff25013e05ab83de9462bbcdd74e27237", + "sha256": "0y7qfn283m40r3b8gbigwli9jha5afxizqhdil91pg5z9nfgq4r7" + }, + "stable": { + "version": [ + 1, + 2, + 10 + ], + "commit": "92c490d3fc07b4cfa8c5263c15a4bbc16d10da9e", + "sha256": "1xmhgc49jyxj7wwlzhpjrdh4nynxjf3dlwg77hgzdracgldq8sra" + } + }, + { + "ename": "plaster", + "commit": "7e363cffa021e649c052f38cedb7cc01dbe9e24a", + "sha256": "0vfixc0f5n4flsmdf1iqlbx03yv28w3nqm1ycz2fx6p5jvhkvfqk", + "fetcher": "github", + "repo": "Shirakumo/plaster", + "unstable": { + "version": [ + 20180127, + 2050 + ], + "commit": "f82f845ede3b48ca11934171b30effb523ba9fcf", + "sha256": "0y9n4z388vbpyarpqgfyybfiin1hbw25b4m72ahxmpc4zq7ilqwl" + } + }, + { + "ename": "platformio-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f", + "fetcher": "github", + "repo": "ZachMassia/PlatformIO-Mode", + "unstable": { + "version": [ + 20161210, + 1339 + ], + "deps": [ + "projectile" + ], + "commit": "1466aed132a77f48fcb31938d64abb1a1e58ec42", + "sha256": "1lfkp7df8as9gspynkyhz4dbm95kbngyba1ymg6ql67adyv79v1i" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "projectile" + ], + "commit": "470a80c1d764a6e1680a2b41ca5a847869a07a27", + "sha256": "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0" + } + }, + { + "ename": "play-crystal", + "commit": "92715977136afa731e85e894542dc88b664b3304", + "sha256": "1jqf36b1mhyf4j7fs386g6isy09q7k8zwdc4rb34mhjg1a56gcnf", + "fetcher": "github", + "repo": "veelenga/play-crystal.el", + "unstable": { + "version": [ + 20180114, + 1024 + ], + "deps": [ + "dash", + "request" + ], + "commit": "0b4810a9025213bd11dbcbfd38b3ca928829e0a5", + "sha256": "15gqr11paz5qmx43qb0f95wc87nn2snr7my22b0n6jwbk5djf402" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "dash", + "request" + ], + "commit": "86b54346e7c832c14f8e5654a462f6490a6b11d7", + "sha256": "0kvkr24f8r21pahm2lsvbr9bg53770wxwpdfmmjljs2zmgxf2c40" + } + }, + { + "ename": "play-routes-mode", + "commit": "740cef8687232eb0e2186e8df956c2d4f39575cf", + "sha256": "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz", + "fetcher": "github", + "repo": "brocode/play-routes-mode", + "unstable": { + "version": [ + 20170426, + 733 + ], + "commit": "22d7b87e0eaf0330f2b2283872f8dc08a3258771", + "sha256": "0j61adh2lsh2zgz1v9i2jzh56ngnrpvsblipvc472k5dxa5qdxin" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "d7eb682cd474d90b3a3d005290cd6d4fe9f94cae", + "sha256": "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx" + } + }, + { + "ename": "playerctl", + "commit": "6db0d82c2eef7c5bef5f9f2c15969da4c404b62d", + "sha256": "1pix3hcsg6ymzajiixwcq4v3clvadpkl0rhplkhachv6wmci327x", + "fetcher": "github", + "repo": "thomasluquet/playerctl.el", + "unstable": { + "version": [ + 20180301, + 1354 + ], + "commit": "3eee541423c2e5eb9f23a26fa9aa88c9c5a19ad1", + "sha256": "16qvn1mss5j8vpf1qpq4lwl4hwng64caw3c3shixsncfmgw25z6f" + } + }, + { + "ename": "playground", + "commit": "f062a74fe1746129879ad19c1735621f58509d33", + "sha256": "1xjmxkl8h4l87fvv1sr478r6mkmy9gkzw2fxmzqn5fcsahzkyg4d", + "fetcher": "github", + "repo": "akirak/emacs-playground", + "unstable": { + "version": [ + 20180624, + 326 + ], + "commit": "9212790026bea9ab5fb4ecf0da1163be8ab00776", + "sha256": "0g6d7z9sv7fdc918gay7rd71frzqn75mcwnljgmqksfh5890apa6" + } + }, + { + "ename": "plenv", + "commit": "a0819979b9567ac5fab9ed6821eba8fe7ee6a299", + "sha256": "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4", + "fetcher": "github", + "repo": "karupanerura/plenv.el", + "unstable": { + "version": [ + 20130707, + 616 + ], + "commit": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g" + }, + "stable": { + "version": [ + 0, + 32 + ], + "commit": "ee937d0f3a1a7ba2d035f45be896d3ed8fefaee2", + "sha256": "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g" + } + }, + { + "ename": "plim-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1nrqw5dvb3j5x3wkpsjbpv1d2s367icq9j4h1xv1cahfsn8nn4m9", + "fetcher": "github", + "repo": "dongweiming/plim-mode", + "unstable": { + "version": [ + 20140813, + 13 + ], + "commit": "92e39190286f172567ceb02c80e1df3b81abfa2d", + "sha256": "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2" + } + }, + { + "ename": "plsense", + "commit": "fb1025f146514e9c142cd96cac9f2989d6d1a8c5", + "sha256": "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va", + "fetcher": "github", + "repo": "aki2o/emacs-plsense", + "unstable": { + "version": [ + 20151104, + 1445 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "d50f9dccc98f42bdb42f1d1c8142246e03879218", + "sha256": "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm" + }, + "stable": { + "version": [ + 0, + 4, + 7 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "f6fb22607a5252b2556d2e7fa14f1bcab5d9747a", + "sha256": "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg" + } + }, + { + "ename": "plsense-direx", + "commit": "65fb1d8b4ed12f097958842d1b00dcdf3660b184", + "sha256": "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j", + "fetcher": "github", + "repo": "aki2o/plsense-direx", + "unstable": { + "version": [ + 20140520, + 2008 + ], + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ], + "commit": "8a2f465264c74e04524cc789cdad0190ace43f6c", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "direx", + "log4e", + "plsense", + "yaxception" + ], + "commit": "8a2f465264c74e04524cc789cdad0190ace43f6c", + "sha256": "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1" + } + }, + { + "ename": "plur", + "commit": "38f6f53fcd1186efd5e6752166da4e23b712cdb1", + "sha256": "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv", + "fetcher": "github", + "repo": "xuchunyang/plur", + "unstable": { + "version": [ + 20160504, + 924 + ], + "commit": "5bdd3b9a2f0624414bd596e798644713cd1545f0", + "sha256": "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5bdd3b9a2f0624414bd596e798644713cd1545f0", + "sha256": "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a" + } + }, + { + "ename": "pmdm", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b", + "fetcher": "bitbucket", + "repo": "inigoserna/pmdm.el", + "unstable": { + "version": [ + 20151109, + 1836 + ], + "commit": "f50a547741568cee40bdc80fa3223157a49896e4", + "sha256": "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff" + } + }, + { + "ename": "po-mode", + "commit": "38e855cde9264bff67016d23e7e5e00f113c55bf", + "sha256": "1w06i709bb04pziygdn7y47gcci7gybg0p7ncdsm07d0w7q14v2z", + "fetcher": "github", + "repo": "emacsmirror/po-mode", + "unstable": { + "version": [ + 20190511, + 1542 + ], + "commit": "1916142f6a817c733d5ec37e3b4fbae3da67e499", + "sha256": "0nvpr5ry86by1dm7mp2w5p534qg4c9dpdich3x13gbbp9vazc7h6" + } + }, + { + "ename": "pocket-api", + "commit": "04e3be76aef4d1b6d5bb3eda533b5deffcc8a5bc", + "sha256": "1f5j491wbqgbx6zlb0zdajca5il0628vr9a38y0n3x0h69wm0cx5", + "fetcher": "github", + "repo": "lujun9972/pocket-api.el", + "unstable": { + "version": [ + 20180403, + 109 + ], + "deps": [ + "request" + ], + "commit": "3eb9430b9db90bc02e736e433eb86389f7655189", + "sha256": "0k6a9zzdi02g677cc699llk04i06yb7ddnlnmxndap5jszfyqwfi" + } + }, + { + "ename": "pocket-lib", + "commit": "71f17ce28f4fc8c2c100848be8aec15526ef8697", + "sha256": "0v619blifmvm36dr773wjf35fjji4dj3pyck9nkz0m8zmpz0fg78", + "fetcher": "github", + "repo": "alphapapa/pocket-lib.el", + "unstable": { + "version": [ + 20190720, + 1957 + ], + "deps": [ + "dash", + "kv", + "request", + "s" + ], + "commit": "f794e3e619e1f6cad25bbfd5fe019a7e62820bf4", + "sha256": "0iv03wjwmz0di8n5bndmq5r18r1pq999v1scyay0jm1cxlksqafg" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "dash", + "kv", + "request", + "s" + ], + "commit": "ef3bcf452129b74e7b82265f6c08f9569fd19515", + "sha256": "0r2y6idzwkvaclsnaskdlzk9afvxnm9kkyy8y38cfwany3kbmyzj" + } + }, + { + "ename": "pocket-mode", + "commit": "6aa3d04058bfc0bc1da3393d17429d517275e97c", + "sha256": "04zxll5yg021m13vr54w2pnrmqb87ykdbpa8nx2wn9myg2rywh0v", + "fetcher": "github", + "repo": "lujun9972/pocket-mode", + "unstable": { + "version": [ + 20171201, + 1315 + ], + "deps": [ + "pocket-api" + ], + "commit": "229de7d35b7e5605797591c46aa8200d7efc363c", + "sha256": "0j3axac4lp7p00a7mf7frryqg1y3jwqaw0s475gz606642vg9l45" + } + }, + { + "ename": "pocket-reader", + "commit": "835a7bf2f72987183e9d15ada7ae747fb5715c11", + "sha256": "0gcgmz4mhjgvqbh2gmv8v09sy80cnfccjym455m0fbl31b8dczhf", + "fetcher": "github", + "repo": "alphapapa/pocket-reader.el", + "unstable": { + "version": [ + 20181219, + 930 + ], + "deps": [ + "dash", + "ht", + "kv", + "org-web-tools", + "ov", + "pocket-lib", + "rainbow-identifiers", + "s" + ], + "commit": "86c51c65d97819e11b3df403beea424f30125d30", + "sha256": "16dj1853qgd4farqb7wdpyyp1a4mxkasyb0j489h7saz9xn9q8xc" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "dash", + "ht", + "kv", + "org-web-tools", + "ov", + "pocket-lib", + "rainbow-identifiers", + "s" + ], + "commit": "a7f080ec3e9522f942166de61b24a375b8f1c2bb", + "sha256": "0l7dln7qcrgzm73vk7jp8wr2kibg18973xmdzyyc162hdnlbrpb0" + } + }, + { + "ename": "podcaster", + "commit": "2649dc294f40d00f3bf1b1cf09879c2ef0d3e43b", + "sha256": "1kzac0mhg8dk2vfk29ns36jl8vwg6ghbdb3n6kqfzci5ygn96yib", + "fetcher": "github", + "repo": "lujun9972/podcaster", + "unstable": { + "version": [ + 20161020, + 1535 + ], + "deps": [ + "cl-lib" + ], + "commit": "9854517025deb5d556168a68955fb7b662239f5c", + "sha256": "06ag0idz7cf6i9kg7kqr03js9b6cw6my1jzd1x3wkgazx5slqk4q" + } + }, + { + "ename": "poe-lootfilter-mode", + "commit": "006f39eaf8a87822fe8becab1da2822ff6fc2beb", + "sha256": "0iw3a2lf0mnv3lamphy458nfyjjm1yvln1syfad49av3karca05z", + "fetcher": "github", + "repo": "jdodds/poe-lootfilter-mode", + "unstable": { + "version": [ + 20190330, + 1117 + ], + "commit": "5ef06684cb2b17b090ee1f303c2b789fa71bc106", + "sha256": "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "5ef06684cb2b17b090ee1f303c2b789fa71bc106", + "sha256": "1lxfbsixvr0rjcck4h4v000yb0iscvk9fwyw322y2cv2hvgwvkdw" + } + }, + { + "ename": "poet-client", + "commit": "a0b003773edaa728ed49f0de2ca64a00cb60d13a", + "sha256": "11yj57915ly8j2byp5c395lip73iv1chrzxdlxilhnll1brvmaw0", + "fetcher": "github", + "repo": "wailo/emacs-poet", + "unstable": { + "version": [ + 20190124, + 654 + ], + "deps": [ + "request" + ], + "commit": "32382057b3e4b8a02ec5ac3190dbe4b93d058741", + "sha256": "1p8x7g3hg6yw51c67kznvldrvwnp67l9b6drnmck8glwx0nxb6zr" + } + }, + { + "ename": "poet-theme", + "commit": "40bbe29dee56f7989d8e87c03f4842e2b191acc3", + "sha256": "0pllyp4spj30g6ihzc91hzvnrvcg2zb49adj8wcmbzvq3hxnvls1", + "fetcher": "github", + "repo": "kunalb/poet", + "unstable": { + "version": [ + 20190127, + 2220 + ], + "commit": "d84f7b259cc9b6ff8d442cf4c38bd6c7065ff8f4", + "sha256": "0a84jdaj619mb59a46dmkk2sfs42rylqk9ryl1drgs8d3lia79mz" + } + }, + { + "ename": "poetry", + "commit": "bdba6f313525b5cbc842a11cb63ea8dc1b9e72f9", + "sha256": "06ani15z1c07i9dxkkxlmwx9gd8if7fybpy1xmkg829l3sl5bz1j", + "fetcher": "github", + "repo": "galaunay/poetry.el", + "unstable": { + "version": [ + 20190706, + 1141 + ], + "deps": [ + "pyvenv", + "transient" + ], + "commit": "0173c61dee6587d5898722df1e06d9c00bee4fd1", + "sha256": "1n3xzw204hy3l1kisjpgg01n12x1z01mxfqi3hyfw3w3hlxciw7b" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl", + "transient", + "xterm-color" + ], + "commit": "6fb34742a66421c6104e02d65e8d391fc4494ab5", + "sha256": "0hdicdskf928s7qdlzxq25ibfmwi8llmyhy1bj2py56wr2qv3cfy" + } + }, + { + "ename": "point-pos", + "commit": "23a1e835155fba51f595c10c46487a4c269f43ff", + "sha256": "1zv6hx8i8jwq52j4la1ff0ar0bpbs2pb4gcsh9hypghba11gnync", + "fetcher": "github", + "repo": "alezost/point-pos.el", + "unstable": { + "version": [ + 20170421, + 1632 + ], + "commit": "442bccb40791832cbc2d6f5c8f53be745aea2b73", + "sha256": "1p56h8ipgrd5433pc641xccdnsni51l58ll0hv2rp9aqjg9nlgcr" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "4cd0f8c8d1296c5c64f708b6a5835e8520c51b68", + "sha256": "1l3mlz51wp729rm6wf72x2fk1fla2n2s1qh8h8z58inipdi2qydp" + } + }, + { + "ename": "point-stack", + "commit": "bb3c9e6b3c583f098f75462b4d48cd137a1bcb76", + "sha256": "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9", + "fetcher": "github", + "repo": "dgutov/point-stack", + "unstable": { + "version": [ + 20170808, + 1658 + ], + "commit": "76e17311e3a810314c7d31ac46dc55450ff30fa2", + "sha256": "1sp3djnyg3f5ci43m4pi0f6clblrz5lrnzc415r87csbavqqgv2z" + } + }, + { + "ename": "pointback", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4", + "fetcher": "github", + "repo": "emacsorphanage/pointback", + "unstable": { + "version": [ + 20100210, + 1552 + ], + "commit": "e3a02c1784d81b5a1d2477338d049af581ed19f8", + "sha256": "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav" + } + }, + { + "ename": "pollen-mode", + "commit": "97bda0616abe3bb632fc4231e5317d9472dfd14f", + "sha256": "1kskvdh6rczlki724h5xym8s4iychqzm0i82qdj87x1cg1kx9i85", + "fetcher": "github", + "repo": "lijunsong/pollen-mode", + "unstable": { + "version": [ + 20190310, + 538 + ], + "deps": [ + "cl-lib" + ], + "commit": "819edf830e9519f8ca57e9cef31211e3f444d11a", + "sha256": "0c06kfbyk2g0kxwlh6g3r7ij06ip6x9ni0bin24drwr0qj2vis2d" + } + }, + { + "ename": "poly-R", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "1v2was6pdynwm22b4n2hkwyrr0c0iir9kp1wz4hjab8haqxz68ii", + "fetcher": "github", + "repo": "polymode/poly-R", + "unstable": { + "version": [ + 20190605, + 2103 + ], + "deps": [ + "poly-markdown", + "poly-noweb", + "polymode" + ], + "commit": "0443c89b4d2bc2ed235a0c017109c2dbd342aa02", + "sha256": "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "poly-markdown", + "poly-noweb", + "polymode" + ], + "commit": "0443c89b4d2bc2ed235a0c017109c2dbd342aa02", + "sha256": "1v5djxwgqksf84pxfpgbm7qaz3yq5ha7cac0792p62pj1ydzvghi" + } + }, + { + "ename": "poly-ansible", + "commit": "6d8beef5daa1804f68c30138cb03b5085a282c34", + "sha256": "158z3nbqgrh71myyp4l263lw1gn4iiwxv8pl7fdlyp80hz5zs60y", + "fetcher": "gitlab", + "repo": "mavit/poly-ansible", + "unstable": { + "version": [ + 20181222, + 1517 + ], + "deps": [ + "ansible", + "ansible-doc", + "jinja2-mode", + "polymode", + "yaml-mode" + ], + "commit": "2cb970a0e27b41ae85bc51d24ef36fa2c7b34bbc", + "sha256": "04vf6zgcra47j3phxbb43q5sa5ldavnbiwwdlw1xipg44991j6md" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "ansible-doc", + "jinja2-mode", + "polymode", + "yaml-mode" + ], + "commit": "01c9ec1d8a933fa0b2711940d29331d58c27d2a7", + "sha256": "02ff0df8bn5cwvnpc2862wsii2xvjh0waymgiybm8j829x1awjp9" + } + }, + { + "ename": "poly-erb", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "01c1z2jll497k1y8835pp54n121y0gkyz1pdxcdjjqv7ia8jwfyy", + "fetcher": "github", + "repo": "polymode/poly-erb", + "unstable": { + "version": [ + 20190605, + 2102 + ], + "deps": [ + "polymode" + ], + "commit": "304204f415b9e46ee36b64531b7d170540828335", + "sha256": "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "polymode" + ], + "commit": "304204f415b9e46ee36b64531b7d170540828335", + "sha256": "0v13ssv9fjardg5as832hkhlx7yhjcdkm3bdcdj0qy31cmvk6dzb" + } + }, + { + "ename": "poly-markdown", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "0pxai5x2vz6j742s3bpcy82dxja6441fsgclhz1hbv2ykazbm141", + "fetcher": "github", + "repo": "polymode/poly-markdown", + "unstable": { + "version": [ + 20190715, + 707 + ], + "deps": [ + "markdown-mode", + "polymode" + ], + "commit": "6fc4b26392f101494ceb176a8446b159c8a6ac29", + "sha256": "0jvn7l59z8ncbs6bwk3ka13gcmxq615w9qp9fam1fvmc3dykakn8" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "markdown-mode", + "polymode" + ], + "commit": "b0de1a9f3e4d7191b1b23b65ebf03dd0ac007afc", + "sha256": "0b6wlmhrpcw9g8rbw7q7k5fr2lgcp1rpy7d9p9f0gzn52yvcr4dr" + } + }, + { + "ename": "poly-noweb", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "1692js29wdjpxvcbcaxysbsq6pxdqr38frqf88ksldlz35cmy62b", + "fetcher": "github", + "repo": "polymode/poly-noweb", + "unstable": { + "version": [ + 20190605, + 2102 + ], + "deps": [ + "polymode" + ], + "commit": "4e65cb22d6bca901021205257f867f868989c665", + "sha256": "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "polymode" + ], + "commit": "4e65cb22d6bca901021205257f867f868989c665", + "sha256": "1pnjg615i5p9h5fppvn36vq2naz4r1mziwqjwwxka6kic5ng81h8" + } + }, + { + "ename": "poly-org", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "1xrhdjmz3p5d3sgbfpmf6wksa1cpxqhy1wg17b5x8ah4w4yhpdca", + "fetcher": "github", + "repo": "polymode/poly-org", + "unstable": { + "version": [ + 20190605, + 2103 + ], + "deps": [ + "polymode" + ], + "commit": "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f", + "sha256": "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "polymode" + ], + "commit": "8b0de75b1f9b65c22f7e3fbc205c9408214c8a1f", + "sha256": "04x6apjad4kg30456z1j4ipp64yjgkcaim6hqr6bb0rmrianqhck" + } + }, + { + "ename": "poly-rst", + "commit": "d3fb89f58903245a8df75060ddd695a05cedb322", + "sha256": "08sdnjb5zvlynyxkmajn1j9gnjdjj81ycid9ziydvrb7hb88x2m4", + "fetcher": "github", + "repo": "polymode/poly-rst", + "unstable": { + "version": [ + 20190605, + 2103 + ], + "deps": [ + "polymode" + ], + "commit": "1a7d38e1c1d35cf64e4dad408db486a8e1931e61", + "sha256": "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "polymode" + ], + "commit": "1a7d38e1c1d35cf64e4dad408db486a8e1931e61", + "sha256": "1xzbznm43hsvmg2ibqa6a1rymfy85nagjsxadn5mj9r04ivhf2fd" + } + }, + { + "ename": "poly-ruby", + "commit": "68213703359324d09553a2164f1f6ecca7c16854", + "sha256": "0d8s6bl5ynx0r5cwvfkd52rksiq5kdyrgbxds56r8ls6cfkwqngg", + "fetcher": "github", + "repo": "knu/poly-ruby.el", + "unstable": { + "version": [ + 20180905, + 929 + ], + "deps": [ + "polymode" + ], + "commit": "794ebb926ace23e9c1398da934701951432dcea2", + "sha256": "1ffm81hg1gah7hb9x556hda5g4j3gk4c986q9gaacvfizqak3gyy" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "polymode" + ], + "commit": "794ebb926ace23e9c1398da934701951432dcea2", + "sha256": "1ffm81hg1gah7hb9x556hda5g4j3gk4c986q9gaacvfizqak3gyy" + } + }, + { + "ename": "poly-slim", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "15nh0d8y79rwc24akxfpf346jypadfgjjn6vlgaj6xjnj7wsp7ax", + "fetcher": "github", + "repo": "polymode/poly-slim", + "unstable": { + "version": [ + 20190605, + 2103 + ], + "deps": [ + "polymode", + "slim-mode" + ], + "commit": "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d", + "sha256": "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "polymode", + "slim-mode" + ], + "commit": "a4fb8166d110b82eb3f1d0b4fc87045c3308bd7d", + "sha256": "06kwhmw5r5h4bsaqscr7dl3rfsa6wp642597zcmzdly94h26iwy9" + } + }, + { + "ename": "poly-wdl", + "commit": "43e48725f64cb660e2d210a1b39ae9e68e5c5087", + "sha256": "0fj9rxh67aczzd4pyh56r0974b60ixmrb2cbwjmndj55agyw39xb", + "fetcher": "github", + "repo": "jmonlong/poly-wdl", + "unstable": { + "version": [ + 20190712, + 529 + ], + "deps": [ + "polymode", + "wdl-mode" + ], + "commit": "963faa828d15d49cee5a63f619c3c30e162c2d0f", + "sha256": "0bihvkkq4v7wadwbsrgi7a0zmhqn2lp76pnq7vwwsvs1rm36pbvy" + } + }, + { + "ename": "polymode", + "commit": "3058351c4500fdcbe7f40b4c96ac8d6de9bbeb1d", + "sha256": "15i9masklpy4iwskc7dzqjhb430ggn0496z4wb1zjj0b9xx4wj66", + "fetcher": "github", + "repo": "polymode/polymode", + "unstable": { + "version": [ + 20190714, + 2017 + ], + "commit": "01232ad3800e974938199c9ac07fad57fcec540c", + "sha256": "136d1mbk00c0pz10nvklh934yzs6q1i6brvp9xnv947aazsgwj4m" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "82a0c3d71cc02e32a347033b3f42afeac4e43f66", + "sha256": "04v0gnzfsjb50bgly6kvpryx8cyzwjaq2llw4qv9ijw1l6ixmq3b" + } + }, + { + "ename": "pomidor", + "commit": "4e0d4f313081594df23f357c40feb456847d8bd0", + "sha256": "0pdzipyza98dhnz6am8lrmz8fh3p1c21v2mhs56fb9lwyvcgv8fi", + "fetcher": "github", + "repo": "TatriX/pomidor", + "unstable": { + "version": [ + 20190523, + 1414 + ], + "deps": [ + "alert" + ], + "commit": "590e64d316d9210bd00cb4eb39d2f07ddc16809a", + "sha256": "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "alert" + ], + "commit": "590e64d316d9210bd00cb4eb39d2f07ddc16809a", + "sha256": "0001k4p09il5f20s0jgyi96wzslfcgv3y35wfxj771gixlacnrhi" + } + }, + { + "ename": "pomodoro", + "commit": "0b5c2c50eb87952d01c1b338b7d3e4b3a4546555", + "sha256": "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8", + "fetcher": "github", + "repo": "baudtack/pomodoro.el", + "unstable": { + "version": [ + 20190201, + 2152 + ], + "commit": "6cd665ceeaca1f70954aa4caef6f085179f94c69", + "sha256": "08z2nja3bhjgg6k7bb0cr8v02y8gaxkmxmfcvvgiixw3kfrnkpwn" + } + }, + { + "ename": "pony-mode", + "commit": "a1fd64317610fb6ef5b14e8bf15e727680d5ff09", + "sha256": "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl", + "fetcher": "github", + "repo": "davidmiller/pony-mode", + "unstable": { + "version": [ + 20170807, + 1522 + ], + "commit": "760684d30b6c234d1b88c9a4673a808f36f7f341", + "sha256": "1y4gxn25i2nszdhqq8jxf9h65mqfgcwbypx5p4wkan5i1v2i3yr1" + } + }, + { + "ename": "pony-snippets", + "commit": "0ef333f9ea8ec691b65e7fbd286fb7f1ddbe5381", + "sha256": "0yl2jzc8yyvs93xh802gcnm8j2zharih3hnsiv1syr0g5ycgkd41", + "fetcher": "github", + "repo": "ponylang/pony-snippets", + "unstable": { + "version": [ + 20160205, + 411 + ], + "deps": [ + "yasnippet" + ], + "commit": "b921bd943b528f04d4293625b28fd2d4a013a1bf", + "sha256": "183vml7090w1fx99rz9d8qjfbf089wqilyflk0512xz8al3gcd8q" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "yasnippet" + ], + "commit": "56018b23a11563c6766ed706024b22aa5a4556b4", + "sha256": "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy" + } + }, + { + "ename": "ponylang-mode", + "commit": "0ef333f9ea8ec691b65e7fbd286fb7f1ddbe5381", + "sha256": "06av5plxg7ry1dvmq87d8ja6slxfakrfadayz7gdkgni6z76ghs3", + "fetcher": "github", + "repo": "ponylang/ponylang-mode", + "unstable": { + "version": [ + 20180804, + 1521 + ], + "deps": [ + "dash" + ], + "commit": "ea98ba541b4a439accc126f17120c5425f741b67", + "sha256": "0pl7hpsc3az2zd80r77qgxajbvwcmq7b5dcyphv7bfvlimgby7i3" + }, + "stable": { + "version": [ + 0, + 0, + 11 + ], + "deps": [ + "dash" + ], + "commit": "963abdcdb398b71fb13a4f7d2ffde23eb20e2a23", + "sha256": "1h0y6x4h7higwdq569h2lk0iddd23c3csqjk7y5phvc0lq812xs0" + } + }, + { + "ename": "pophint", + "commit": "0055c2887acbbd8a2803bf3f81ac2cc444cc805a", + "sha256": "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72", + "fetcher": "github", + "repo": "aki2o/emacs-pophint", + "unstable": { + "version": [ + 20170918, + 248 + ], + "deps": [ + "log4e", + "yaxception" + ], + "commit": "909025c5a871ca4b9ec7aed7f1a27c819a94dba1", + "sha256": "0qbb36qijkzbzxlmqsvvddm7x2gk9rkafnyjbkxsl76rz1ajy6nz" + }, + "stable": { + "version": [ + 0, + 9, + 3 + ], + "deps": [ + "log4e", + "popup", + "yaxception" + ], + "commit": "28dc6a76e726f371bcca3160c27ae2017324399c", + "sha256": "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19" + } + }, + { + "ename": "poporg", + "commit": "63502ec265a66d3f72ef93a2f6e7c2e517ff98a3", + "sha256": "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8", + "fetcher": "github", + "repo": "QBobWatson/poporg", + "unstable": { + "version": [ + 20170403, + 751 + ], + "commit": "2c58d68c81ecca4140bf179f19ed153ec804b65a", + "sha256": "1ymqhy0sqd54z154s3cm6q1m4xnr9wkx9dl5f93845k11ay3kvln" + } + }, + { + "ename": "popup", + "commit": "083fb071191bccd6feb3fb84569373a597440fb1", + "sha256": "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2", + "fetcher": "github", + "repo": "auto-complete/popup-el", + "unstable": { + "version": [ + 20160709, + 1429 + ], + "deps": [ + "cl-lib" + ], + "commit": "80829dd46381754639fb764da11c67235fe63282", + "sha256": "05j7m6mqp6hr6225blsipnp2qcncwl09f52niya5334ibqzbvvlk" + }, + "stable": { + "version": [ + 0, + 5, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "46632ab9652dacad56fd961cd6def25a015170ae", + "sha256": "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h" + } + }, + { + "ename": "popup-complete", + "commit": "b43b85f90c476a3b88f94927a7db90bdc72cd171", + "sha256": "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1", + "fetcher": "github", + "repo": "syohex/emacs-popup-complete", + "unstable": { + "version": [ + 20141109, + 308 + ], + "deps": [ + "popup" + ], + "commit": "caa655a6d8472e9a4bfa1311126d90d7d1b07fca", + "sha256": "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "popup" + ], + "commit": "e362d4a005b36646ffbaa6be604e9e31bc406ca9", + "sha256": "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4" + } + }, + { + "ename": "popup-edit-menu", + "commit": "e824ae5bd9214f8de210059f8145f13a4e62e8a1", + "sha256": "1mqni09l1xfxv4g64hskpsla41r5d2xfbw81ncbszwqzlln6k5bf", + "fetcher": "github", + "repo": "debugfan/popup-edit-menu", + "unstable": { + "version": [ + 20170404, + 1425 + ], + "commit": "925600a6e29183841199e866cf55e566a6a1b002", + "sha256": "1dd0ss7cjdjs3c7vkq8p874408iysih80brc8vlfh1f43cnc5v92" + } + }, + { + "ename": "popup-imenu", + "commit": "5ca5d65d6a9c7ef3fa2684271fe087dc132d3a61", + "sha256": "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn", + "fetcher": "github", + "repo": "ancane/popup-imenu", + "unstable": { + "version": [ + 20170326, + 1040 + ], + "deps": [ + "dash", + "flx-ido", + "popup" + ], + "commit": "c5e2e69adbd3a630e4cb750965a1aee8c10c1f09", + "sha256": "0vn0jli0ya7xnapifkgzynbnh3rpnzb82j5k9bla2j4miqfc6cg8" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "dash", + "flx-ido", + "popup" + ], + "commit": "c5e2e69adbd3a630e4cb750965a1aee8c10c1f09", + "sha256": "0vn0jli0ya7xnapifkgzynbnh3rpnzb82j5k9bla2j4miqfc6cg8" + } + }, + { + "ename": "popup-kill-ring", + "commit": "0b745b067e5d68467b89e0dbade7a9a76de2946c", + "sha256": "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip", + "fetcher": "github", + "repo": "waymondo/popup-kill-ring", + "unstable": { + "version": [ + 20131020, + 1854 + ], + "deps": [ + "popup", + "pos-tip" + ], + "commit": "5773dfadc104a906c088a3ec62e8cdd3e01e57fa", + "sha256": "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn" + } + }, + { + "ename": "popup-switcher", + "commit": "ef7d1897c4c4a6f4b4527279e6dad976219d7b78", + "sha256": "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1", + "fetcher": "github", + "repo": "kostafey/popup-switcher", + "unstable": { + "version": [ + 20171205, + 851 + ], + "deps": [ + "cl-lib", + "popup" + ], + "commit": "f5788a31918e37bb5c04139048c667bcec9f1b62", + "sha256": "0gfi8dlgynciv3q5a208c7gd66g2r99b3zn0i31ibpppjqy2vcsk" + } + }, + { + "ename": "popwin", + "commit": "2b3d6a8b734e0820fd904c215a83fe5519496dc3", + "sha256": "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf", + "fetcher": "github", + "repo": "m2ym/popwin-el", + "unstable": { + "version": [ + 20150315, + 1300 + ], + "commit": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "95dea14c60019d6cccf9a3b33e0dec4e1f22c304", + "sha256": "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp" + } + }, + { + "ename": "portage-navi", + "commit": "0a467702b3ac3c8bdc723262e6919f67fd71d524", + "sha256": "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg", + "fetcher": "github", + "repo": "kiwanami/emacs-portage-navi", + "unstable": { + "version": [ + 20141208, + 1355 + ], + "deps": [ + "concurrent", + "ctable" + ], + "commit": "8016c3e99fe6cef101d479a3d69185796b22ca2f", + "sha256": "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i" + } + }, + { + "ename": "porthole", + "commit": "ba1c1a010faa762d371da6a896c6e236ef031302", + "sha256": "0kllq52jrmqrjsz0shi4aviz19m6pci216i5fassgf71ra8v15s7", + "fetcher": "github", + "repo": "jcaw/porthole", + "unstable": { + "version": [ + 20190721, + 1428 + ], + "deps": [ + "elnode", + "f", + "json-rpc-server" + ], + "commit": "0e73b8e527cfc9ecba2fa4f88382f588fb4a300d", + "sha256": "06nf12cvxk2dxqljrga59vp8wkvsif1mm3ahvy1nbjsq6s8zryq4" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "deps": [ + "elnode", + "f", + "json-rpc-server" + ], + "commit": "481a3a247586417b7643d393113ff8faf95b327e", + "sha256": "1gdywyb1vq7i983d4bdhwdkk0vk0x09rms83xyk4j75qlqb05vp1" + } + }, + { + "ename": "pos-tip", + "commit": "306e9978d2a071548cc9d8c531a1ce6c6c6b99aa", + "sha256": "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh", + "fetcher": "github", + "repo": "pitkali/pos-tip", + "unstable": { + "version": [ + 20150318, + 1513 + ], + "commit": "051e08fec5cf30b7574bdf439f79fef7d42d689d", + "sha256": "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23" + }, + "stable": { + "version": [ + 0, + 4, + 6 + ], + "commit": "1b81694d1dc29253db0e855b82563f84a32b38d4", + "sha256": "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33" + } + }, + { + "ename": "posframe", + "commit": "fa3488f2ede1201faf4a147313456ed90271f050", + "sha256": "02chwkc7gn7fxaaxsz9msmrhrd62bji5hhb71kdm019x8d84z06w", + "fetcher": "github", + "repo": "tumashu/posframe", + "unstable": { + "version": [ + 20190608, + 2318 + ], + "commit": "fc90a1a558200e5c3688c65add9afdea695a2c10", + "sha256": "1fhjxj7gi2pj5rdnmf0gddiwd8iifgjgjp01c01npz1gwwixyqh3" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "fc90a1a558200e5c3688c65add9afdea695a2c10", + "sha256": "1fhjxj7gi2pj5rdnmf0gddiwd8iifgjgjp01c01npz1gwwixyqh3" + } + }, + { + "ename": "postcss-sorting", + "commit": "9fae97430f211786f615f7450936f823e2a04ec4", + "sha256": "0730b2wddal15yi4k6wzhv9xv1k40iwrn3mivg9bkxabh3mgrl10", + "fetcher": "github", + "repo": "P233/postcss-sorting.el", + "unstable": { + "version": [ + 20180211, + 956 + ], + "commit": "deb0c935d2904c11a965758a9aee5a0e905f21fc", + "sha256": "03kng7i09px5vizvmmrar7rj3bk27y43bi8hlzxax0ja27k0c66c" + } + }, + { + "ename": "pov-mode", + "commit": "89d6b4a3d7a5f3cc93e9d13d4c174b5d7de7bad1", + "sha256": "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9", + "fetcher": "github", + "repo": "melmothx/pov-mode", + "unstable": { + "version": [ + 20161115, + 743 + ], + "commit": "9fc1db3aab7c27155674dd1a87ec62606035d074", + "sha256": "1399fxivy15y2k4vp7vqqgsi8l1mzxc8aa2mf2x1hksgiyq60acp" + } + }, + { + "ename": "pow", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "13f3pk52f9lkkl3zi6448j9b39kn6ny9vmnlsvhwa6s0vaz8f220", + "fetcher": "github", + "repo": "yukihr/emacs-pow", + "unstable": { + "version": [ + 20140420, + 806 + ], + "deps": [ + "cl-lib" + ], + "commit": "ea83986b8ca8e27cb996290d6463b111ec0966ce", + "sha256": "112s6qb80sn44b1cxggqfci89wymxvvwkwl7nknfnr2dzd58lzzy" + } + }, + { + "ename": "powerline", + "commit": "f805053cd4dd9ed53ee0df17ad69429bc62325bb", + "sha256": "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx", + "fetcher": "github", + "repo": "milkypostman/powerline", + "unstable": { + "version": [ + 20190323, + 213 + ], + "deps": [ + "cl-lib" + ], + "commit": "6ef4a06c3c583045accbc957b6f449b7c0c57cd8", + "sha256": "1ybm5y03if4wbzhx5p05wwgf2d8l2c4vwi22d0ygvlwrzfk8n5dl" + }, + "stable": { + "version": [ + 2, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "d3dcfc57a36111d8e0b037d90c6ffce85ce071b2", + "sha256": "1hp3xp18943n0rlggz55150020ivw8gvi1vyxkr4z8xhpwq4gaar" + } + }, + { + "ename": "powerline-evil", + "commit": "c1a92c8b5b92269773d314aa6cec4f0057291a68", + "sha256": "1x5hvnjdrpn3c8z6m7xfk30qd5y58p3jcyqr48qx91d0109gk342", + "fetcher": "github", + "repo": "johnson-christopher/powerline-evil", + "unstable": { + "version": [ + 20190603, + 340 + ], + "deps": [ + "evil", + "powerline" + ], + "commit": "b77e2cf571e9990734f2b30d826f3a362b559fd1", + "sha256": "1hs9jvl5lmfwr9k6qcnxjhd61zsmzq53ania1w5616gqa4qnjzhn" + } + }, + { + "ename": "powershell", + "commit": "7002c50f2734675134791916aa9d8b82b4582fcb", + "sha256": "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk", + "fetcher": "github", + "repo": "jschaf/powershell.el", + "unstable": { + "version": [ + 20190421, + 2038 + ], + "commit": "87826777bd3ebd53740be99b4546bfc11ccc625d", + "sha256": "038pcb7hv05yja9fvrmps6vh096a5rrdmyx9l8nisxqnsqf97ghv" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "7316f44d0b528552f5a0692f778e5f0efd964299", + "sha256": "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn" + } + }, + { + "ename": "powerthesaurus", + "commit": "04a7e6d2292e933e0318296107774e1248888f3c", + "sha256": "011kl3n1hfmz844w198gvh5anjyqj0m4pvryahslc0r1zavik7ni", + "fetcher": "github", + "repo": "SavchenkoValeriy/emacs-powerthesaurus", + "unstable": { + "version": [ + 20190721, + 805 + ], + "deps": [ + "jeison", + "request", + "s" + ], + "commit": "81a262ec0c9294ad377bafc6cc4e6d91b461acb6", + "sha256": "0ffy2c56difdhgpwvvvgyvifldxlmijcs11hs6hx6gv3hndmym7i" + } + }, + { + "ename": "ppd-sr-speedbar", + "commit": "f930f54048d06f6a97824b66fbb74649eed40b54", + "sha256": "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8", + "fetcher": "github", + "repo": "rdallasgray/ppd-sr-speedbar", + "unstable": { + "version": [ + 20151108, + 1224 + ], + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ], + "commit": "d88d7f63f695824c435dd996405454d1e46d2aa3", + "sha256": "08ff4l6vlyzqpy6cv9wc714h3ia8cwy5gc3qk5zml1yijv8xvb75" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "deps": [ + "project-persist-drawer", + "sr-speedbar" + ], + "commit": "19d3e924407f40a6bb38c8fe427a159af755adce", + "sha256": "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq" + } + }, + { + "ename": "prassee-theme", + "commit": "15425b576045af1c508912e2091daf475b80b429", + "sha256": "1j0817hxxri6mq9pplgwf5jp2dagk6hay7g1a1lgz4qgkf5jnshs", + "fetcher": "github", + "repo": "prassee/prassee-emacs-theme", + "unstable": { + "version": [ + 20180709, + 1004 + ], + "commit": "81126f69cdbaab836c00ae7a49aaf89d4229fde1", + "sha256": "18yqsl8jsi3zxfcigvm6fjcx84hzb8b3j7ihiyzqmdhmvma3i08y" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "9850c806d39acffdef8e91e1a31b54a7620cbae3", + "sha256": "1agghimrmh4kh71y51l6lzampjl15ac6jxrrhdviw95c3rxfll4x" + } + }, + { + "ename": "preproc-font-lock", + "commit": "582692267795c91bb7f2ec3bffc2b9c2be9f2a32", + "sha256": "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4", + "fetcher": "github", + "repo": "Lindydancer/preproc-font-lock", + "unstable": { + "version": [ + 20151107, + 2018 + ], + "commit": "565fda9f5fdeb0598986174a07e9fb09f7604397", + "sha256": "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd" + } + }, + { + "ename": "prescient", + "commit": "ec02349e31531c347e4a43fbde56ae4386898cc6", + "sha256": "04js3hblavfrc6kqp942x5yjdl3ndazf3n64p83423ldsmhbip6s", + "fetcher": "github", + "repo": "raxod502/prescient.el", + "unstable": { + "version": [ + 20190727, + 2126 + ], + "commit": "ea8e9fea4385272924d09c91220c7f2e9ac95b3f", + "sha256": "1apb9v31ajq586f7mqachv238yv40gacrjmh2s8mnk45xil72swy" + }, + "stable": { + "version": [ + 3, + 2 + ], + "commit": "653ca4b66954b7f1b6e4635a574234dd316c11a3", + "sha256": "0d60h4rfm5jcf8cf11z91wjqp0xcrviskqzyqhfliqvy2i2yl6ks" + } + }, + { + "ename": "preseed-generic-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl", + "fetcher": "github", + "repo": "suntong/preseed-generic-mode", + "unstable": { + "version": [ + 20180210, + 500 + ], + "commit": "3aa8806c4a659064baa01751400c53fbaf847f66", + "sha256": "02yb5xkgwqxpwghhjmxf2gx0faifi04w2jd8cvfsiwzwqmqyhmv7" + } + }, + { + "ename": "presentation", + "commit": "747afd0339215528bf104f778a13edacbac510b7", + "sha256": "0zdpfvg6kbvi6b4lb7vbdjrkgk0j1q6gzyd0s2b0603fnyy4sqdg", + "fetcher": "github", + "repo": "zonuexe/emacs-presentation-mode", + "unstable": { + "version": [ + 20180427, + 224 + ], + "deps": [ + "cl-lib" + ], + "commit": "f53f67aeab97e8eea6d1f12df5f7ce3b1b03b879", + "sha256": "0hv8z5wqfg8xkx590jm4c0fjhdxy8312bvbm16ifz2vflvl6gjb2" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "e9e402d05a8b6d9e1e7fe853503c92fea4cf65cb", + "sha256": "10pvjdnb48fk663232qvh4gapk2yiz4iawpffzjrbs3amxh50bi7" + } + }, + { + "ename": "prettier-js", + "commit": "968ac7bb98b385f8542dc150486982c0ded73187", + "sha256": "0mf66sdsdbhf76pwkjkfjsnh26g4j3zb4y1qrbxc9jcvymccb3yq", + "fetcher": "github", + "repo": "prettier/prettier-emacs", + "unstable": { + "version": [ + 20180109, + 726 + ], + "commit": "e9b73e81d3e1642aec682195f127a42dfb0b5774", + "sha256": "0hj4fv3fgc60i6jrsx4a81s5c9fsxxafhhs3q2q1dypsscjci9ph" + } + }, + { + "ename": "prettify-greek", + "commit": "23c8f10205187babb17e3abc3dc40eb1938e6640", + "sha256": "1izl6r6i3zbhd7r7lz2k42yyz6qcng11wfmb7lx4883dj00flsl7", + "fetcher": "gitlab", + "repo": "fommil/emacs-prettify-greek", + "unstable": { + "version": [ + 20160603, + 908 + ], + "commit": "698d07a6ffe85f6fb53f3bfec4f49380c25cfd90", + "sha256": "0g2bxa7mwfkc8navbi2w28rd4f4zqphxi13kwmd2p83g3wavd99v" + } + }, + { + "ename": "pretty-hydra", + "commit": "865917fcc75c4118afc89b8bcc20ebdb6302f15d", + "sha256": "0gp4cbffpa17svs7fzxighyly7c8brsn3avv3hqvd590kkz3fkri", + "fetcher": "github", + "repo": "jerrypnz/major-mode-hydra.el", + "unstable": { + "version": [ + 20190715, + 937 + ], + "deps": [ + "dash", + "dash-functional", + "hydra", + "s" + ], + "commit": "854827d0585a4fc9310708bfae2514957f4dc341", + "sha256": "0649wrm5zb68yfqxmim6rcg6ykv2dqxishjpas3hj3x62xn44qrb" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "dash-functional", + "hydra", + "s" + ], + "commit": "854827d0585a4fc9310708bfae2514957f4dc341", + "sha256": "0649wrm5zb68yfqxmim6rcg6ykv2dqxishjpas3hj3x62xn44qrb" + } + }, + { + "ename": "pretty-mode", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0zm6azbl70qmq2ybi576wfs3mx0ny54mf97b94ac501miv4fv0mq", + "fetcher": "github", + "repo": "pretty-mode/pretty-mode", + "unstable": { + "version": [ + 20190615, + 2045 + ], + "commit": "5154355e90fdd70d3647257280a89eeb725ef084", + "sha256": "0fq3v2ld7mk8nw81vgq2jgpk8wkddk74il3gs1p0zxkly0p155i3" + }, + "stable": { + "version": [ + 2, + 0, + 3 + ], + "commit": "4ba8fceb7dd733361ed975d80ac2caa3612fa78b", + "sha256": "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh" + } + }, + { + "ename": "pretty-sha-path", + "commit": "6520d692662aaf92023623273597d966ca3cba9d", + "sha256": "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq", + "fetcher": "github", + "repo": "alezost/pretty-sha-path.el", + "unstable": { + "version": [ + 20141105, + 1826 + ], + "commit": "a2b43dd9de423a38d67cda2e3bd9412f7d363257", + "sha256": "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd" + } + }, + { + "ename": "pretty-symbols", + "commit": "ed01ef6333e4558877b0e357ff8bf601fb88b757", + "sha256": "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb", + "fetcher": "github", + "repo": "drothlis/pretty-symbols", + "unstable": { + "version": [ + 20140814, + 959 + ], + "commit": "582cbe51ecfe1cc0a5b185bc06113c8a661e3956", + "sha256": "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830" + } + }, + { + "ename": "private", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1mvma2xgjy9vkh468x80xlri6qfr7d494la1j6r1clkjsn5kg7hr", + "fetcher": "github", + "repo": "zhangkaiyulw/private", + "unstable": { + "version": [ + 20150122, + 157 + ], + "deps": [ + "aes" + ], + "commit": "9266d01c095895cc3ee9de95bc20511e88353755", + "sha256": "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm" + } + }, + { + "ename": "private-diary", + "commit": "ef39950941c522e64ea991c9eeecfb5f6f18f6a2", + "sha256": "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1", + "fetcher": "github", + "repo": "cacology/private-diary", + "unstable": { + "version": [ + 20151216, + 1657 + ], + "commit": "0c86fb6150ad8ed14f94def3504f5a68f4147283", + "sha256": "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn" + } + }, + { + "ename": "proc-net", + "commit": "4a518f37260084fa7e9221e9189aedc09a951f6d", + "sha256": "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv", + "fetcher": "github", + "repo": "nicferrier/emacs-proc-net", + "unstable": { + "version": [ + 20130322, + 12 + ], + "commit": "10861112a1f3994c8e6374d6c5bb5d734cfeaf73", + "sha256": "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb" + } + }, + { + "ename": "processing-mode", + "commit": "ba59561e8a2f259fde170a79844af5e1ef5ed34f", + "sha256": "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m", + "fetcher": "github", + "repo": "ptrv/processing2-emacs", + "unstable": { + "version": [ + 20171022, + 2302 + ], + "commit": "448aba82970c98322629eaf2746e73be6c30c98e", + "sha256": "1fv74k37yyrh6jzasgqj88lrbq152gs9gpbjpxn7fz424c38gq2q" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "yasnippet" + ], + "commit": "228bc56369675787d60f637223b50ce3a1afebbd", + "sha256": "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15" + } + }, + { + "ename": "processing-snippets", + "commit": "ba59561e8a2f259fde170a79844af5e1ef5ed34f", + "sha256": "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r", + "fetcher": "github", + "repo": "ptrv/processing2-emacs", + "unstable": { + "version": [ + 20140426, + 1428 + ], + "deps": [ + "yasnippet" + ], + "commit": "448aba82970c98322629eaf2746e73be6c30c98e", + "sha256": "1fv74k37yyrh6jzasgqj88lrbq152gs9gpbjpxn7fz424c38gq2q" + } + }, + { + "ename": "prodigy", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0lfxb80jqjnzssjs6l511jcsmhkpzb5rh5czrb16dkqcz0cl5b2p", + "fetcher": "github", + "repo": "rejeep/prodigy.el", + "unstable": { + "version": [ + 20190714, + 1102 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "0a12eec1f001a4eef16b2c0c524f02f2647a4ff1", + "sha256": "02kysq57kqzg0zkhaf302ada9cp9spgp71z8vbdq4c7dl6x75h4g" + }, + "stable": { + "version": [ + 0, + 7, + 0 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "3bacca898db9b3493883c95f923a87eb1ce807eb", + "sha256": "1whnk1902f8q03clm9xlfl47gkpsywf3mx0ykp70c1q496ab39qj" + } + }, + { + "ename": "professional-theme", + "commit": "bb79514b2afada80da82762890242de5ad88d8de", + "sha256": "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5", + "fetcher": "github", + "repo": "juanjux/emacs-professional-theme", + "unstable": { + "version": [ + 20150315, + 1100 + ], + "commit": "0927d1474049a193f9f366bde5eb1887b9ba20ed", + "sha256": "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b" + } + }, + { + "ename": "prog-fill", + "commit": "90d680ed481688c9899adb28fbd9a22a17fa8943", + "sha256": "0wnqzkzhaywcyw93z86pngpycsrd1mi79psmck6qbhms1aia79p3", + "fetcher": "github", + "repo": "ahungry/prog-fill", + "unstable": { + "version": [ + 20180607, + 132 + ], + "deps": [ + "cl-lib" + ], + "commit": "3fbf7da6dd826e95c9077d659566ee29814a31d8", + "sha256": "167is1hbv3nsskz26g9q3zdndqsw9d3rwhbasj0r7a3wabpr8j4r" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "3fbf7da6dd826e95c9077d659566ee29814a31d8", + "sha256": "167is1hbv3nsskz26g9q3zdndqsw9d3rwhbasj0r7a3wabpr8j4r" + } + }, + { + "ename": "prognth", + "commit": "db6d52b92317aa5ad5024131b62edb5f91f50033", + "sha256": "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm", + "fetcher": "github", + "repo": "Fuco1/prognth", + "unstable": { + "version": [ + 20130920, + 1759 + ], + "commit": "2f1ca4d34b1fd581163e1df122c85418137e8e62", + "sha256": "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm" + } + }, + { + "ename": "programmer-dvorak", + "commit": "89b0f4b5838aa3d4572ca91fe60cf28664368cb6", + "sha256": "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv", + "fetcher": "github", + "repo": "yangchenyun/programmer-dvorak", + "unstable": { + "version": [ + 20150427, + 137 + ], + "commit": "3288a8f058eca4cab390a564babbbcb17cfa0350", + "sha256": "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00" + } + }, + { + "ename": "project-abbrev", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "12d0w3b9fh7hdi1qwm13s535k574xfh3ck48zpsv3jlxr59q5bqw", + "fetcher": "github", + "repo": "elpa-host/project-abbrev", + "unstable": { + "version": [ + 20190517, + 521 + ], + "commit": "b94f829bb24570782b9f6bbcfdec4b391091b778", + "sha256": "0lkliz9hycag1gf5hxvh7mrgl5my2vbkn52g4pkh2x7hsdkxhxjy" + } + }, + { + "ename": "project-explorer", + "commit": "c2e5d686b8a18c7a17965ff6c5af8f5817b7ab31", + "sha256": "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m", + "fetcher": "github", + "repo": "sabof/project-explorer", + "unstable": { + "version": [ + 20150504, + 14 + ], + "deps": [ + "cl-lib", + "es-lib", + "es-windows" + ], + "commit": "589a09008706f5f4ef91393dc4306eede0d15ca9", + "sha256": "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd" + }, + "stable": { + "version": [ + 0, + 14, + 3 + ], + "deps": [ + "cl-lib", + "es-lib", + "es-windows" + ], + "commit": "7c2cc86a81f679dda355110f916366b64893a5d4", + "sha256": "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7" + } + }, + { + "ename": "project-persist", + "commit": "bd81d1f8a30ed951ed94b9a4db13a2f7735ea878", + "sha256": "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24", + "fetcher": "github", + "repo": "rdallasgray/project-persist", + "unstable": { + "version": [ + 20180906, + 1302 + ], + "commit": "26d9435bef44da2a1b0892eba822f9f487b98eec", + "sha256": "0ja2pnbw11a2gwywfyfbdpk8rkm8imy04wkshpnlh0nwn7lf0clm" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "26d9435bef44da2a1b0892eba822f9f487b98eec", + "sha256": "0ja2pnbw11a2gwywfyfbdpk8rkm8imy04wkshpnlh0nwn7lf0clm" + } + }, + { + "ename": "project-persist-drawer", + "commit": "23084af52d2243016eee73a5ee0cd3e945eec71d", + "sha256": "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb", + "fetcher": "github", + "repo": "rdallasgray/project-persist-drawer", + "unstable": { + "version": [ + 20151108, + 1222 + ], + "deps": [ + "project-persist" + ], + "commit": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "project-persist" + ], + "commit": "35bbe132a4fab6a0fec15ce6c0fd2fe6a4aa9626", + "sha256": "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8" + } + }, + { + "ename": "project-root", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb", + "fetcher": "bitbucket", + "repo": "piranha/project-root", + "unstable": { + "version": [ + 20110206, + 2030 + ], + "commit": "843ca1f4ab2bc9c25e0f7cd585ceb1f2693b23f2", + "sha256": "0nw02f5lmbqdfnw93d3383sdxx1d31szk23zvjlrmmdwv2124281" + } + }, + { + "ename": "project-shells", + "commit": "becf54de5ae9582d7c76382dff16d40b04b1a464", + "sha256": "0mhifxcpgsfwrhbs7axg6ja4klgzzy9pc0nqa7w3qg45xgi9s4m8", + "fetcher": "github", + "repo": "hying-caritas/project-shells", + "unstable": { + "version": [ + 20171107, + 851 + ], + "deps": [ + "seq" + ], + "commit": "d9401de750e444697c2eb9de1ff79f2a2eba4af8", + "sha256": "1x16l0gijirmj667s8l87nizsiww2wzjka9ydl4yxzchl7a486cp" + } + }, + { + "ename": "projectile", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn", + "fetcher": "github", + "repo": "bbatsov/projectile", + "unstable": { + "version": [ + 20190626, + 1315 + ], + "deps": [ + "pkg-info" + ], + "commit": "71a01f409a319d57eb3832e93e8a412fbc9d7a65", + "sha256": "1qsm4kwydi56h7p0mdm7m8r6nhm4l7lp7snamcgjyfmja2w424fl" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "pkg-info" + ], + "commit": "823c0aa9ffd1e8e03b20efe97c16cfb66e2c56c5", + "sha256": "16y0zcqydfag4igwcbljqymkwjgjxdh97ii616wgdsyjgk9xxd4h" + } + }, + { + "ename": "projectile-codesearch", + "commit": "6b1b1d3e356c6b9bffdcf98848918efe2fdfa8c7", + "sha256": "1457dhmpgrq1qafr3v4ccw26ix10m60c5vlrpyqsfz8vh8lv0bb8", + "fetcher": "github", + "repo": "abingham/emacs-codesearch", + "unstable": { + "version": [ + 20180508, + 1522 + ], + "deps": [ + "codesearch", + "projectile" + ], + "commit": "f6eb96f034a925444412cfa03e45e0ccbbafe3f2", + "sha256": "1xdkm1f04z1h3ivd6zm8hckf3n3fbi5rwybg4dwi5mim6w84i7j9" + } + }, + { + "ename": "projectile-direnv", + "commit": "602485c251bc573e855dfd33e4e94052afbab93f", + "sha256": "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh", + "fetcher": "github", + "repo": "christianromney/projectile-direnv", + "unstable": { + "version": [ + 20160306, + 138 + ], + "deps": [ + "dash", + "projectile", + "s" + ], + "commit": "d5d29e5228f840b7a25358a2fd50353ef2dc9b16", + "sha256": "1bq47a6lckgin93cqy5wj277rlrw2cgfywgmbdpxvmbhygpg5hqr" + } + }, + { + "ename": "projectile-git-autofetch", + "commit": "7fdfdeb69fd78fc1bb2c62392f860a8c434f1762", + "sha256": "0m0raddsw5yvjrw2v6bdaswffmva8y9hxksdgf9axpvrd3rzlk9n", + "fetcher": "github", + "repo": "andrmuel/projectile-git-autofetch", + "unstable": { + "version": [ + 20190417, + 1959 + ], + "deps": [ + "alert", + "projectile" + ], + "commit": "8d8d090fdff42671e9926f095deb3448d24730b1", + "sha256": "1x1x1hn8k6hpj1vljbgmgznvgnky75xg4scy5y57k937pvkmyg6j" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "alert", + "projectile" + ], + "commit": "da02069d906e6e7f28ea1dd6a9196529315a5cba", + "sha256": "106kj49rxsrdh6awvql3zyr3ramdcn0aaq4rmbmd45hz9ij7x1wh" + } + }, + { + "ename": "projectile-hanami", + "commit": "9c0123322baee1e96afd055de3f44827574d2b5f", + "sha256": "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a", + "fetcher": "github", + "repo": "avdgaag/projectile-hanami", + "unstable": { + "version": [ + 20160505, + 1311 + ], + "deps": [ + "inf-ruby", + "projectile", + "rake" + ], + "commit": "c4b8e7d4dfec789ef8493a7c5d4ce0cf7937e579", + "sha256": "1pqmyfz0vil30x739r18zpw9n76297ckisimq2g0xl1irhynsvbk" + } + }, + { + "ename": "projectile-rails", + "commit": "b16532bb8d08f7385bca4b83ab4e030d7b453524", + "sha256": "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq", + "fetcher": "github", + "repo": "asok/projectile-rails", + "unstable": { + "version": [ + 20190706, + 1231 + ], + "deps": [ + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ], + "commit": "b0c88a381cc15b0aaba2629949e10ae6373d209a", + "sha256": "0p33gmykri30csv9b214rmmcxm59c0lcwhbwala78a28y63mfcri" + }, + "stable": { + "version": [ + 0, + 17, + 0 + ], + "deps": [ + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ], + "commit": "78f5cbe2c212ce19d4732212c46472d1c412659f", + "sha256": "09aby7yxk28rqz0vaps889idl5n41wj72pa0dr7bqmidq8i5jv4h" + } + }, + { + "ename": "projectile-ripgrep", + "commit": "195f340855b403128645b59c8adce1b45e90cd18", + "sha256": "1iczizyayql40wcljvpc1mvfvn9r28b1dkrkcmdxif732gd01jjg", + "fetcher": "github", + "repo": "nlamirault/ripgrep.el", + "unstable": { + "version": [ + 20180914, + 1500 + ], + "deps": [ + "projectile", + "ripgrep" + ], + "commit": "40e871dcc4519a70981e9f28acea304692a60978", + "sha256": "0snn12iibz5frsx6yk6c31hb8knvsd568ghw9jjka5vxdjzap7p9" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "projectile", + "ripgrep" + ], + "commit": "73595f1364f2117db49e1e4a49290bd6d430e345", + "sha256": "1a5rdpmvsgsjlc9sywism9pq7jd6n9qbcdsvpbfkq1npwhpifkbj" + } + }, + { + "ename": "projectile-sift", + "commit": "a730e1331b0486c4bd2d309b85d2f8810489eb47", + "sha256": "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i", + "fetcher": "github", + "repo": "nlamirault/sift.el", + "unstable": { + "version": [ + 20160107, + 1015 + ], + "deps": [ + "projectile", + "sift" + ], + "commit": "33b2c9ff964fe53bb55b37429faaa4e903bead7a", + "sha256": "0cb8rcxl0jwpbgz9kk136l2ranficv8lk85fhvly1lpslbjljds9" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "projectile", + "sift" + ], + "commit": "8c3f3d14a351a2394027d72ee0599aa73b9f0d13", + "sha256": "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra" + } + }, + { + "ename": "projectile-speedbar", + "commit": "eda8cb5a175258404c347ffa30fca002504467a0", + "sha256": "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp", + "fetcher": "github", + "repo": "anshulverma/projectile-speedbar", + "unstable": { + "version": [ + 20170517, + 243 + ], + "deps": [ + "projectile", + "sr-speedbar" + ], + "commit": "dcab13db72c2084edbebe808e35f1126fe0b3bcd", + "sha256": "106a4y5r1adjpbnjn734s7d910r6akhjlyjpd6bnczjhp357wyc7" + } + }, + { + "ename": "projectile-trailblazer", + "commit": "f9c6f2f92ff99e7a3241003dc396f978f3916c8a", + "sha256": "18cijb5c1ym5kn2g2apbijbfd3aqhrraki8vv9bk8rvi7wmm6qj4", + "fetcher": "github", + "repo": "micdahl/projectile-trailblazer", + "unstable": { + "version": [ + 20170928, + 1624 + ], + "deps": [ + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ], + "commit": "a37a4f7b7f727d98e4c74c0256e059e84263553d", + "sha256": "1njs2aps4mlbnnfjkfwrb8vy8lg6lyxzxkxpscv91la7yf3wpc3g" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "f", + "inf-ruby", + "inflections", + "projectile", + "rake" + ], + "commit": "79299498d74876f2ac3fe8075716b39a5bdd04cd", + "sha256": "1lkj9jdr3g7nl80fxvic6g5cn7vbkyxys7m3kcmd6xa9mq7nvci4" + } + }, + { + "ename": "projectile-variable", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "15qc5n91nxyfvb100iyihfmrdr57qgw6098yv3nfqgw3zx1qchdw", + "fetcher": "github", + "repo": "emacs-php/projectile-variable", + "unstable": { + "version": [ + 20170208, + 1718 + ], + "deps": [ + "cl-lib" + ], + "commit": "8d348ac70bdd6dc320c13a12941b32b38140e264", + "sha256": "0l38nldx6lwjb7mxixykiyj10xwb35249dxfg0k2wkmb2vy1fkxs" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "8d348ac70bdd6dc320c13a12941b32b38140e264", + "sha256": "0l38nldx6lwjb7mxixykiyj10xwb35249dxfg0k2wkmb2vy1fkxs" + } + }, + { + "ename": "projector", + "commit": "420ffea4549f59677a16c1ee89c77b866487e302", + "sha256": "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf", + "fetcher": "github", + "repo": "waymondo/projector.el", + "unstable": { + "version": [ + 20190703, + 1418 + ], + "deps": [ + "alert", + "cl-lib", + "projectile" + ], + "commit": "bad51a81fbcae9aabe47dafc2499ba27cd7308be", + "sha256": "0xiwn58wqm15kvbx0pi2zmh8gc1f06zncxki03bwry4nfpqxr2d0" + } + }, + { + "ename": "projekt", + "commit": "e2a854ed4fef114861bcc7814cd064c16d3c074c", + "sha256": "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8", + "fetcher": "github", + "repo": "tekai/projekt", + "unstable": { + "version": [ + 20150324, + 848 + ], + "commit": "a65e554e5d8b0def08c5d06f3fe34fec40bebd83", + "sha256": "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "107232c191375b59d065354470d0af83062e2a4c", + "sha256": "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88" + } + }, + { + "ename": "projmake-mode", + "commit": "df23138073d2416fa6522beca86b7a62eb4d42e3", + "sha256": "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882", + "fetcher": "github", + "repo": "ericbmerritt/projmake-mode", + "unstable": { + "version": [ + 20161031, + 1715 + ], + "deps": [ + "dash", + "indicators" + ], + "commit": "a897701f7e8f8cc11459ed44eb0e454db2a460c1", + "sha256": "0las0xl4af6sn5pbllq16abw2hj1kswwpkyi6lf31sbwr5wnq4qb" + } + }, + { + "ename": "promise", + "commit": "3eaf5ac668008759677b9cc6f11406abd573012a", + "sha256": "1y1v3ikcmh9yp5fdwagcjg755bgkyqk714lb6s1hb2606m3ia03s", + "fetcher": "github", + "repo": "chuntaro/emacs-promise", + "unstable": { + "version": [ + 20190711, + 328 + ], + "deps": [ + "async" + ], + "commit": "99fdb3b7efb813af41f825b24d0615d603baeede", + "sha256": "0yin7kj69g4zxs30pvk47cnfygxlaw7jc7chr3b36lz51yqczjsy" + } + }, + { + "ename": "prompt-text", + "commit": "17d2bc3e53865fe8c98aabb6ef0ad1d10fcb1061", + "sha256": "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc", + "fetcher": "github", + "repo": "10sr/prompt-text-el", + "unstable": { + "version": [ + 20190408, + 310 + ], + "commit": "0a75ecd5058c9a006e02d1ecd3f1c84194881abd", + "sha256": "0y95awjmw9sasjac7s5b6zm42206szqvhr9xkg8zj0frrhnqsx8l" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "bb9265ebfada42d0e3c67c809665e1e5d980691e", + "sha256": "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2" + } + }, + { + "ename": "prompts", + "commit": "2395402e72d9b0f7ce2ca5fcb4497919f90a8fe2", + "sha256": "1fz5sbc45jiq64y89lm8nj6lsanq3lzyjzahxzrgqvr7655pphzm", + "fetcher": "github", + "repo": "GuiltyDolphin/prompts.el", + "unstable": { + "version": [ + 20160916, + 1041 + ], + "deps": [ + "dash" + ], + "commit": "1cd5e732ff2a86b47836eb7252e5b59cd4b6ab26", + "sha256": "10y8x54p64zs1jlq4nf1kixpb42078n2gdf9s62b1siyb1vhl581" + } + }, + { + "ename": "proof-general", + "commit": "135c8f2a04739145b500b8742a697907e398d270", + "sha256": "10zif9ax4d3m8sa9y2xqz7g24xa2r3m2x5l0zqa06wm4afq29p87", + "fetcher": "github", + "repo": "ProofGeneral/PG", + "unstable": { + "version": [ + 20190727, + 1325 + ], + "commit": "aa36785c6e7166da0720e05ba708cdf22687a9d9", + "sha256": "0a64z8h3mw3hyfiq0grpagmjj63bh6ix97f9zaximzin0q6zfxkk" + }, + "stable": { + "version": [ + 4, + 4 + ], + "commit": "771cab48b2f9ea2ae3fa8f944d0e36a805bf9f3b", + "sha256": "0bdfk91wf71z80mdfnl8hpinripndcjgdkz854zil6521r84nqk8" + } + }, + { + "ename": "prop-menu", + "commit": "3d3a013cc9c489987fe689c8d73bbaa3445bdeb3", + "sha256": "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i", + "fetcher": "github", + "repo": "david-christiansen/prop-menu-el", + "unstable": { + "version": [ + 20150728, + 1118 + ], + "deps": [ + "cl-lib" + ], + "commit": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "50b102c1c0935fd3e0c465feed7f27d66b21cdf3", + "sha256": "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc" + } + }, + { + "ename": "propfont-mixed", + "commit": "3ccb401b60cb1128ba50a5afecd97feca6d00d7a", + "sha256": "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y", + "fetcher": "github", + "repo": "ikirill/propfont-mixed", + "unstable": { + "version": [ + 20150113, + 2211 + ], + "deps": [ + "cl-lib" + ], + "commit": "0b461ef4754a469610dba71874a34b6da42176bf", + "sha256": "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v" + } + }, + { + "ename": "proportional", + "commit": "9e0a7f061df4cce44e5fe98f6e1c31bec4a7338f", + "sha256": "022lhbslzd67wyah8r0gl73vzxgjjwia08l3ssdd08jj3p56m3wx", + "fetcher": "github", + "repo": "ksjogo/proportional", + "unstable": { + "version": [ + 20171025, + 2337 + ], + "commit": "f671ffe8fd803e2fc462e2e1844aeeab1a13918e", + "sha256": "02sbrcb9c27djk64xv41vii6pbw83b6iljrd66w4ad9hgz2pkxzk" + } + }, + { + "ename": "prosjekt", + "commit": "6d359ec827573dd8c871c4f23df5d1737f1830e7", + "sha256": "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck", + "fetcher": "github", + "repo": "abingham/prosjekt", + "unstable": { + "version": [ + 20151127, + 1416 + ], + "deps": [ + "dash" + ], + "commit": "a864a8be5842223043702395f311e3350c28e9db", + "sha256": "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3" + } + }, + { + "ename": "protobuf-mode", + "commit": "b4e7f5f641251e17add561991d3bcf1fde23467b", + "sha256": "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj", + "fetcher": "github", + "repo": "google/protobuf", + "unstable": { + "version": [ + 20170526, + 1650 + ], + "commit": "d1eeb852fcbe46b29a3bc47001e997d79358d9f8", + "sha256": "11k3vbn0nh7c3kqravcd0kv872kplbdbm4ah323gpizgibkp9f41" + }, + "stable": { + "version": [ + 3, + 9, + 0 + ], + "commit": "6a59a2ad1f61d9696092f79b6d74368b4d7970a3", + "sha256": "1xq2njqrbmizwg91ggi1lqr0n26cm2jdyk668ljc24ihrpk0z9bw" + } + }, + { + "ename": "protocols", + "commit": "9c9a75671a00e9196d00b08911232aac87fd8c83", + "sha256": "1wg3qh8a1ms82lkzz4i1bk787147a8agcj8rszj1zfvwg0ckqq1a", + "fetcher": "github", + "repo": "davep/protocols.el", + "unstable": { + "version": [ + 20170802, + 1132 + ], + "deps": [ + "cl-lib" + ], + "commit": "d0f7c4acb05465f1a0d4be54363bbd2802647e77", + "sha256": "1xg3pwsnzn795bz299x273ral2jrz2v3p9r6gjm4dcx5pm3348mj" + }, + "stable": { + "version": [ + 1, + 6 + ], + "deps": [ + "cl-lib" + ], + "commit": "f5549f5d873a683af45a0e19c732524d5b964026", + "sha256": "0v9is6r307814gvrnch2d3mvikd7j8lnmsqb2c3gj6gvfj4p9y7r" + } + }, + { + "ename": "proxy-mode", + "commit": "25224d3bcdb625314e931d5acc22f60c7192a84b", + "sha256": "0ldjfmxn8k8bzvdrlsfpijsmgn754aza54by5d59k7a1xn6d37mp", + "fetcher": "github", + "repo": "stardiviner/proxy-mode", + "unstable": { + "version": [ + 20190130, + 8 + ], + "commit": "a6c55e97dbe4ec4df9dc21d234cabe806dce3a29", + "sha256": "13xa19k0xyqq03ypih0lrkm97l2c5zha8mwl264h9vamn81i8vm2" + } + }, + { + "ename": "psc-ide", + "commit": "9eb5ff1de1d207317df052ecbd65dbe0f8766f5d", + "sha256": "0gvq4cmmnbh4afzhmpqmizlvyr2fmd88jwdcac3w4b25fvhzr8hp", + "fetcher": "github", + "repo": "purescript-emacs/psc-ide-emacs", + "unstable": { + "version": [ + 20190326, + 2110 + ], + "deps": [ + "company", + "dash", + "dash-functional", + "flycheck", + "let-alist", + "s", + "seq" + ], + "commit": "a10cc85565f330ee277698b27f3f715fef2e1ce2", + "sha256": "1nj8g31zys86p2kb1yrx9w0657qg3ckz5awfwz5wd5w1axxigk23" + } + }, + { + "ename": "psci", + "commit": "3451719ce5096383db082917716a5ed8346fc186", + "sha256": "1iwkr58b910vrwwxyk00psy74vp201vmm3b0cm4k5fh3glr31vp9", + "fetcher": "github", + "repo": "purescript-emacs/emacs-psci", + "unstable": { + "version": [ + 20190308, + 24 + ], + "deps": [ + "dash", + "purescript-mode" + ], + "commit": "3c10918a3a1d1dc613c222801deb465d4fbb2143", + "sha256": "14dj7jsyamkr05dqqlks8p12nb94gw0pj4dmnh1p771020b8drw0" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "deps": [ + "dash", + "deferred", + "f", + "purescript-mode", + "s" + ], + "commit": "8c2d5a0ba604ec593f83f632b2830a87f41f84d4", + "sha256": "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73" + } + }, + { + "ename": "psession", + "commit": "669342d2b3e6cb622f196571d776a98ec8f3b1d3", + "sha256": "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a", + "fetcher": "github", + "repo": "thierryvolpiatto/psession", + "unstable": { + "version": [ + 20190502, + 1838 + ], + "deps": [ + "async", + "cl-lib" + ], + "commit": "2557ca67a7a81f5270fb98a0b0a92838d09343b8", + "sha256": "0wspxsis3p2zm1f0wfxmi4dpyswcip6jzx2jcan7j2mqiwld6l33" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "async", + "cl-lib" + ], + "commit": "702d20897c0839568201bc6921d5f0f80b8778c0", + "sha256": "0ynd69fyjpgs6rs3kkznpx19kmdmd25wb46bj9zq61gj138b6p33" + } + }, + { + "ename": "psysh", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "00rzfw8nlbcmfbjnzbfl08136dhgvrrn9g1s9l623xgpbcay63sg", + "fetcher": "github", + "repo": "emacs-php/psysh.el", + "unstable": { + "version": [ + 20190709, + 106 + ], + "deps": [ + "f", + "php-runtime", + "s" + ], + "commit": "21250984ad8137aa3440ac12e52475ef03f19fcb", + "sha256": "1r0aiwdmj0y96faqvbz39wgxw91i9bj6rnwlj3a277pzlhzmyyxl" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "f", + "s" + ], + "commit": "4709a57cdcf7103c4a606be89849ea3ead2d38a5", + "sha256": "1apf6mnqp9bg5dfykgvsn02z0xpyx6k34sd2pvicicig7w09kzvb" + } + }, + { + "ename": "pt", + "commit": "34c51783af154f203489f5f7df7012ca61932caa", + "sha256": "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj", + "fetcher": "github", + "repo": "bling/pt.el", + "unstable": { + "version": [ + 20161226, + 1959 + ], + "commit": "6d99b2aaded3ece3db19a20f4b8f1d4abe382622", + "sha256": "1vi97hgwrf7n8vsbkvvhn398m20755jnbbbz4kxgqfmcgpimc8nc" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "a539dc11ecb2d69760ff50f76c96f49895ce1e1e", + "sha256": "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw" + } + }, + { + "ename": "pubmed", + "commit": "ee84560c15e7389e902fb4a4c548c08be231de82", + "sha256": "048kh442dnzgwz4wml2a5griav8zyrfzn5b43n9ky84pm7lgcxp3", + "fetcher": "gitlab", + "repo": "fvdbeek/emacs-pubmed", + "unstable": { + "version": [ + 20190502, + 2121 + ], + "deps": [ + "deferred", + "esxml", + "s" + ], + "commit": "67fbb6e8834feda85e8301adc5c17d9e38395d6a", + "sha256": "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "deferred", + "esxml", + "s" + ], + "commit": "67fbb6e8834feda85e8301adc5c17d9e38395d6a", + "sha256": "15bwjxc7g43m5pi8z17anaqqkvi209r7kk1chmf175477gvrv7c0" + } + }, + { + "ename": "pug-mode", + "commit": "b3710aac9f3df3a23238af1f969c462b3692f260", + "sha256": "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85", + "fetcher": "github", + "repo": "hlissner/emacs-pug-mode", + "unstable": { + "version": [ + 20180513, + 2126 + ], + "deps": [ + "cl-lib" + ], + "commit": "685fd3414d89736bf232f5d1a6bed9e0353b98fe", + "sha256": "06qy9bgizc68k57avrbcl2qd2kyb8s17gr6rvxdbjknk6i55dgp4" + }, + "stable": { + "version": [ + 1, + 0, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "96718f802dad3acd5a3f770b1452b81e39f77d92", + "sha256": "1jqj3qfc4686v09am869ls1k3jwy397646cql4a8dg7crjdpf023" + } + }, + { + "ename": "pulseaudio-control", + "commit": "7964f226e12c3a27ff856e28f4b030ebf304aea2", + "sha256": "1vdhg85lbdx7sj1xg2vhhfmhrrp5q2x560agnsb0gxi2akp6z9r0", + "fetcher": "github", + "repo": "flexibeast/pulseaudio-control", + "unstable": { + "version": [ + 20190420, + 541 + ], + "commit": "552206807c9af6ec150540bbdda5d08393196e0a", + "sha256": "1bb14xcglvamvlqsx3dz75zq5ws17774g32484x5ksfpajpibwas" + } + }, + { + "ename": "punctuality-logger", + "commit": "76ac7178ee5381e08ae881f3fc6061106eeb1c1d", + "sha256": "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm", + "fetcher": "gitlab", + "repo": "elzair/punctuality-logger", + "unstable": { + "version": [ + 20141120, + 2031 + ], + "commit": "e09e5dd37bc92289fa2f7dc44aed51a7b5e04bb0", + "sha256": "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q" + }, + "stable": { + "version": [ + 0, + 8 + ], + "commit": "708cae8e67dbae293c7c4be0ca5e49d76fac6714", + "sha256": "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py" + } + }, + { + "ename": "pungi", + "commit": "d504c6028c029268d380c0eac25b1c4886aa6e98", + "sha256": "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1", + "fetcher": "github", + "repo": "mgrbyte/pungi", + "unstable": { + "version": [ + 20150222, + 1246 + ], + "deps": [ + "jedi", + "pyvenv" + ], + "commit": "a2d4d439ea371be0b064a12248288903b8a521a0", + "sha256": "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "jedi", + "pyvenv" + ], + "commit": "41c9f8b7795e083bfd63ba0d06c789c250998723", + "sha256": "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm" + } + }, + { + "ename": "punpun-theme", + "commit": "77a9edbb36dc9474adb23d356e6c596789aab2a2", + "sha256": "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg", + "fetcher": "github", + "repo": "wasamasa/punpun-theme", + "unstable": { + "version": [ + 20161103, + 847 + ], + "commit": "cce8b10b2df6f9187a9eaa0c3f21ff0dda175968", + "sha256": "1iz1qc9bphl2y2z7abc33fvyaccj733drkl7nzbr1jlpbknkmk2k" + } + }, + { + "ename": "puppet-mode", + "commit": "1de94f0ab39ab18dfd0b050e337f502d894fb3ad", + "sha256": "1qn71j6fkwnrsq1s6fhfcxhic3rbspg5cy9n7jv451ji7ywyhakf", + "fetcher": "github", + "repo": "voxpupuli/puppet-mode", + "unstable": { + "version": [ + 20180813, + 1947 + ], + "deps": [ + "pkg-info" + ], + "commit": "7dee1b5a5debac6e56f9107492a413b6c0edb94d", + "sha256": "01isn90h50p5c6cgzwhb1jq8yacj0fxw9ppfqrnynckg6ydpvg74" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib", + "pkg-info" + ], + "commit": "d943149691abd7b66c85d58aee9657bfcf822c02", + "sha256": "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14" + } + }, + { + "ename": "purescript-mode", + "commit": "55462ed7e9bf353f26c5315015436b2a1b37f9bc", + "sha256": "1g30xbv3xvv52r873465a2lp6fnws9q8dz277697qm0mgxkpimbp", + "fetcher": "github", + "repo": "purescript-emacs/purescript-mode", + "unstable": { + "version": [ + 20190522, + 2230 + ], + "deps": [ + "cl-lib" + ], + "commit": "8db1d0243c03da31adac4d7c5287407a4df6aff2", + "sha256": "07z5m8h5a1dhqlzf8wqyxqw2mz3kxzjfpb0p7az3bhs3xsxq6q1q" + } + }, + { + "ename": "purp-theme", + "commit": "9e731ed27d812d822ebb1dbd639441ce59c4ecf7", + "sha256": "1ni8nnyfg4g49fw5m4pxa8fr147pyyvqa5gmydggv5r1xmldgsli", + "fetcher": "github", + "repo": "gnuvince/purp", + "unstable": { + "version": [ + 20190629, + 1829 + ], + "commit": "f821a7c30452d970ccb0ee08b68d56603860e31d", + "sha256": "170k5xkbqr0dbwcwhy75k88qjlnkw6l2ipaqlbr1hdnw17vp2qy9" + } + }, + { + "ename": "purple-haze-theme", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "1rvfpm3zkhdv3ikc8pqqngf9pi0niwyi52pg8dq8i056nwc5bk9z", + "fetcher": "github", + "repo": "emacsfodder/emacs-purple-haze-theme", + "unstable": { + "version": [ + 20141015, + 229 + ], + "commit": "3e245cbef7cd09e6b3ee124963e372a04e9a6485", + "sha256": "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc" + } + }, + { + "ename": "purty-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i", + "fetcher": "github", + "repo": "jcatw/purty-mode", + "unstable": { + "version": [ + 20131004, + 2259 + ], + "commit": "8eef77317a3bab07ade212353a50fbd3f20f365a", + "sha256": "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1" + } + }, + { + "ename": "pushbullet", + "commit": "a2649d60dd1ed3b3171ff1448b89967c5f7759a0", + "sha256": "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl", + "fetcher": "github", + "repo": "theanalyst/revolver", + "unstable": { + "version": [ + 20140809, + 1232 + ], + "deps": [ + "grapnel", + "json" + ], + "commit": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym" + }, + "stable": { + "version": [ + 0, + 5, + 2 + ], + "deps": [ + "grapnel", + "json" + ], + "commit": "73c59a0f1dc04875b3e5a2c8afbc26c32128e445", + "sha256": "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym" + } + }, + { + "ename": "pushover", + "commit": "e9553cd029bc0733c89d2c790cb173d9668a9eba", + "sha256": "0im5bf2r69s2jb6scm8xdk63y1xi5zm4kg9ghfixlvyvipfli4kl", + "fetcher": "git", + "url": "https://git.flintfam.org/swf-projects/emacs-pushover.git", + "unstable": { + "version": [ + 20170818, + 2103 + ], + "deps": [ + "cl-lib" + ], + "commit": "bbe3ac8df3c532a72da4552615af960b8a577588", + "sha256": "187bisngi37n66ik2dq7rg4hy4nlxl9pifqgqq08kf9238y8hd11" + } + }, + { + "ename": "px", + "commit": "326fc9b057a5016248ac36ca166e9a38f13babf6", + "sha256": "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44", + "fetcher": "github", + "repo": "aaptel/preview-latex", + "unstable": { + "version": [ + 20170317, + 2330 + ], + "commit": "0c52f7933eab3ca1642ab0df151db9950430c9e2", + "sha256": "0f741a2gpc2mdl85ivbiskga620b6ci2x0dwjs7m8c1vk6xrxbpi" + } + }, + { + "ename": "py-autopep8", + "commit": "c400e0f3cfe70821e621fe85d239b4f6596d5171", + "sha256": "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp", + "fetcher": "github", + "repo": "paetzke/py-autopep8.el", + "unstable": { + "version": [ + 20160925, + 1052 + ], + "commit": "68e12d8788c91c7ec53a68acf1d23adb2ffa4788", + "sha256": "16fmym6hvi2lx0mmbrrhld1vzki5iqfqx2m0xa9021gjjzb33lw6" + }, + "stable": { + "version": [ + 2016, + 1 + ], + "commit": "68e12d8788c91c7ec53a68acf1d23adb2ffa4788", + "sha256": "16fmym6hvi2lx0mmbrrhld1vzki5iqfqx2m0xa9021gjjzb33lw6" + } + }, + { + "ename": "py-gnitset", + "commit": "d00b78ead693e844e35c760fe2c39b8ed6cb0d81", + "sha256": "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r", + "fetcher": "github", + "repo": "quodlibetor/py-gnitset", + "unstable": { + "version": [ + 20170821, + 1732 + ], + "commit": "1e993cc29cbc31e06fe1e335dec198e21972fa55", + "sha256": "1hslq2bdk95cgza9qbskxf942ckhjb4bqi6nrhbmlnm9agmjqm59" + } + }, + { + "ename": "py-import-check", + "commit": "abe81fe96790ceebcf0951595644ea6a82613890", + "sha256": "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k", + "fetcher": "github", + "repo": "psibi/emacs-py-import-check", + "unstable": { + "version": [ + 20130802, + 1111 + ], + "commit": "9787f87745a4234cd9bed711860b707902bc8ae4", + "sha256": "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv" + } + }, + { + "ename": "py-isort", + "commit": "44377d11da07b49c8dc6887c948cc5ddfc065bd2", + "sha256": "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb", + "fetcher": "github", + "repo": "paetzke/py-isort.el", + "unstable": { + "version": [ + 20160925, + 1018 + ], + "commit": "e67306f459c47c53a65604e4eea88a3914596560", + "sha256": "08i55gv392wc12x8v3dca0dmz8a8p9ljsqhyajsb6qv1k120wqhx" + }, + "stable": { + "version": [ + 2016, + 1 + ], + "commit": "e67306f459c47c53a65604e4eea88a3914596560", + "sha256": "08i55gv392wc12x8v3dca0dmz8a8p9ljsqhyajsb6qv1k120wqhx" + } + }, + { + "ename": "py-smart-operator", + "commit": "a7491a1825b7aaa5f76aafadb8f04721ab1b1cfe", + "sha256": "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4", + "fetcher": "github", + "repo": "rmuslimov/py-smart-operator", + "unstable": { + "version": [ + 20170531, + 1209 + ], + "deps": [ + "s" + ], + "commit": "0c8a66faca4b35158d0b5885472cb75286039167", + "sha256": "09pmkp24s7nwh6p4pzsjp1z65ksi9n3n2xv7d3igpa86l8qgcm2d" + } + }, + { + "ename": "py-test", + "commit": "84690ba6b033027772c20bf20432427b32d3231a", + "sha256": "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb", + "fetcher": "github", + "repo": "Bogdanp/py-test.el", + "unstable": { + "version": [ + 20151117, + 622 + ], + "deps": [ + "dash", + "f" + ], + "commit": "3b2a0bdaacb54df6f2bee8317423e5c0d159d5cf", + "sha256": "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf" + } + }, + { + "ename": "py-yapf", + "commit": "3306c6906d4b21868b9407de27fbebdaed3d00d5", + "sha256": "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f", + "fetcher": "github", + "repo": "paetzke/py-yapf.el", + "unstable": { + "version": [ + 20160925, + 1122 + ], + "commit": "a878304202ad827a1f3de3dce1badd9ca8731146", + "sha256": "1mmzqdigxx46my0h9497l25cjydy3vykg6slxkch4dzvhhlbap48" + }, + "stable": { + "version": [ + 2016, + 1 + ], + "commit": "a878304202ad827a1f3de3dce1badd9ca8731146", + "sha256": "1mmzqdigxx46my0h9497l25cjydy3vykg6slxkch4dzvhhlbap48" + } + }, + { + "ename": "pycarddavel", + "commit": "9b3d2cd943f26dcff322efb16d55dd3bd71dea07", + "sha256": "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a", + "fetcher": "github", + "repo": "DamienCassou/pycarddavel", + "unstable": { + "version": [ + 20150831, + 1216 + ], + "deps": [ + "helm" + ], + "commit": "a6d81ee4eb8309cd82f6082aeca68c5a015702a3", + "sha256": "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "helm" + ], + "commit": "6ead921066fa0156f20155b7126e5875ce11c328", + "sha256": "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11" + } + }, + { + "ename": "pycoverage", + "commit": "eb0310bbe8427abdcba2b30414ec26475b0b7440", + "sha256": "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m", + "fetcher": "github", + "repo": "mattharrison/pycoverage.el", + "unstable": { + "version": [ + 20190607, + 2004 + ], + "commit": "01bd47171eefcab2e19d7cffd9a2dd3bd9bd6812", + "sha256": "1c7rdx5a7za0yg9c58255p4spq3zlc5pdgayrgv1mm80f3nc0sdk" + } + }, + { + "ename": "pydoc", + "commit": "5c4988a66040ddf659492bdb0ae2b9617c342c69", + "sha256": "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n", + "fetcher": "github", + "repo": "statmobile/pydoc", + "unstable": { + "version": [ + 20181025, + 51 + ], + "commit": "abb948e27efaf2452f339c62cd99a1c69930bbfe", + "sha256": "1da08x2hjjd9d832fwrd4rbd3h6f7m031kkxh53v9xdavkp0xqf1" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "5392248e33d83ef05d3b2809b0c6b207786b2644", + "sha256": "1m0jb5pk1a1ww5jx2y5nz21by4dh7nlnhdn6bigz53ra449rrxii" + } + }, + { + "ename": "pydoc-info", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf", + "fetcher": "bitbucket", + "repo": "jonwaltman/pydoc-info", + "unstable": { + "version": [ + 20110301, + 834 + ], + "commit": "151d877c8fb8e418a573b1e879b1263c18e22776", + "sha256": "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh" + } + }, + { + "ename": "pyenv-mode", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59", + "fetcher": "github", + "repo": "proofit404/pyenv-mode", + "unstable": { + "version": [ + 20170801, + 2348 + ], + "deps": [ + "pythonic" + ], + "commit": "eabb1c66f9e0c0500fef4d089508aad246d81dc0", + "sha256": "1zmgm24d6s56jc4ix61058p1k0h95vdvdllr7fh1k3bq4mw22qn3" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "pythonic" + ], + "commit": "b96c15fa1b83cad855e472eda06319ad35e34513", + "sha256": "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar" + } + }, + { + "ename": "pyenv-mode-auto", + "commit": "f3fcb707356bd16fd0b573c176023534cd69d0d7", + "sha256": "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd", + "fetcher": "github", + "repo": "ssbb/pyenv-mode-auto", + "unstable": { + "version": [ + 20180620, + 1252 + ], + "deps": [ + "f", + "pyenv-mode", + "s" + ], + "commit": "347b94cd5ad22e33cc41be661c102d4548767858", + "sha256": "1gz7145jnjcky1751pqrlhh3pq02ybsmz49ngx4ip2589nry7iyv" + } + }, + { + "ename": "pyfmt", + "commit": "68d477025ae5af50bf8f7b37f2adfa9159502e13", + "sha256": "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6", + "fetcher": "github", + "repo": "aheaume/pyfmt.el", + "unstable": { + "version": [ + 20150521, + 2056 + ], + "commit": "cb92be2cf0804cc53142dc5edb36f8e0ef5cec32", + "sha256": "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i" + } + }, + { + "ename": "pygen", + "commit": "e761724e52de6fa4d92950751953645dd439d340", + "sha256": "1ivg7a1ghg0bvz3idz7dzy5yb0ln3b2j7dfizg2g0fi4iwvc4czz", + "fetcher": "github", + "repo": "JackCrawley/pygen", + "unstable": { + "version": [ + 20161121, + 506 + ], + "deps": [ + "dash", + "elpy", + "python-mode" + ], + "commit": "9019ff44ba49d7295b1476530feab91fdadb084b", + "sha256": "01gmggjv36jc8660xfpfy70cydabhymd17q3z16cjqvsxapbj7nf" + } + }, + { + "ename": "pyim", + "commit": "151a0af91a58e27f724854d85d5dd9668229fe8d", + "sha256": "1ly4xhfr3irlrwvv20j3kyz98g7barridi9n8jppc0brh2dlv98j", + "fetcher": "github", + "repo": "tumashu/pyim", + "unstable": { + "version": [ + 20190731, + 452 + ], + "deps": [ + "async", + "popup", + "pyim-basedict" + ], + "commit": "c9941c91bb3aace2f151d120e55398061f12b8bb", + "sha256": "17ckfx4p1pm6axzaf9a0csplmpiicb7fbgb4c1kycjhvw20adkj7" + }, + "stable": { + "version": [ + 1, + 8 + ], + "deps": [ + "async", + "popup", + "pyim-basedict" + ], + "commit": "8648d467d79b3bf1c3a99623f9329939cacc40da", + "sha256": "16rma4cv7xgky0g3x4an27v30jdi6i1sqw43cl99zhkqvp43l3f9" + } + }, + { + "ename": "pyim-basedict", + "commit": "151a0af91a58e27f724854d85d5dd9668229fe8d", + "sha256": "1y8cmccli3im5bvws2h582z7k4nj6p8brgypl8h09y3na6yjy2z9", + "fetcher": "github", + "repo": "tumashu/pyim-basedict", + "unstable": { + "version": [ + 20190719, + 1252 + ], + "commit": "d499104189a9462cb80f8efd9713e4064dc7093d", + "sha256": "0k1afdknyham46z6fv001rnlsxzl50183fz9skw3y0wxxv2v04r4" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "f71d0ffd9d2421f2b51cd0ccb89fd9eb43c09585", + "sha256": "0576r8ap9gp91ycjf1d47pn13kxp0f9fysn09zlq44hr0s1y2y5d" + } + }, + { + "ename": "pyim-cangjie5dict", + "commit": "9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7", + "sha256": "1l2k8kfnfciacp1zps8j1g6ijzv1k3g9198079l8c8xlw789irlv", + "fetcher": "github", + "repo": "HesperusArcher/pyim-cangjie5dict", + "unstable": { + "version": [ + 20170730, + 246 + ], + "deps": [ + "pyim" + ], + "commit": "c8618590780b818db1a67a29bc47c5d25903517a", + "sha256": "0p49h2kn8wy3b51zahzyc1cy24h3b44cg5yjpmv4w23dhsr4zlz8" + } + }, + { + "ename": "pyim-wbdict", + "commit": "ab1cb8bc623d1f12f78fa42ce8b16514e5b07c51", + "sha256": "1s0i9xcnpy8kxqhsv7rqxabv5vnxsciyng398mn32mknib03315i", + "fetcher": "github", + "repo": "tumashu/pyim-wbdict", + "unstable": { + "version": [ + 20190201, + 2300 + ], + "deps": [ + "pyim" + ], + "commit": "9799b689643052078f53d69342a82315251490f4", + "sha256": "1rqlckmlmwmnqvk8bbcyvwr54p6x9b1fph5f17anzlvwffdjsw5c" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "pyim" + ], + "commit": "114489ed97e825ae11a8d09da6e873820cf23106", + "sha256": "187wx418pj4h8p8baf4943v9dsb6mfbn0n19r8xiil1z2cmm4ygc" + } + }, + { + "ename": "pyimport", + "commit": "71bc39b06cee37814960ef31c6a2056261b802fb", + "sha256": "1qwigplawknykw1kbm5babyyknzn43ddhbdpahvzh4wy3kycn6n8", + "fetcher": "github", + "repo": "Wilfred/pyimport", + "unstable": { + "version": [ + 20180308, + 1752 + ], + "deps": [ + "dash", + "s", + "shut-up" + ], + "commit": "a6f63cf7ed93f0c0f7c207e6595813966f8852b9", + "sha256": "1q5gqhvh4zq5dy8vns694warcz48j1hdnxg16sjck4gsi9xivbvs" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "2c05712748f6b6624b15d524323f6391612683f4", + "sha256": "0p9fsbb7c1kr8916vlk1ngq7xmm158a47v6ja5j5n57b505ssy8q" + } + }, + { + "ename": "pyimpsort", + "commit": "97eb7c0934298d393910419fd55d7d5f1b0cfc38", + "sha256": "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k", + "fetcher": "github", + "repo": "emacs-pe/pyimpsort.el", + "unstable": { + "version": [ + 20160130, + 453 + ], + "commit": "d5c61d70896b642646dfd3c809c06174ae086c1a", + "sha256": "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc" + } + }, + { + "ename": "pylint", + "commit": "a073c91d6f4d31b82f6bfee785044c4e3ae96d3f", + "sha256": "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx", + "fetcher": "github", + "repo": "PyCQA/pylint", + "unstable": { + "version": [ + 20170402, + 1255 + ], + "commit": "41c95225fe398dd3f62f48d777080dc8827b145c", + "sha256": "17zlid67j7hgk1wbqxva19rj11kix84rxpc6ms208hc24ca0ws0c" + } + }, + { + "ename": "pynt", + "commit": "fdb297084188a957a46dcd036e65d9d893044bea", + "sha256": "07c0zc68r3pskn3bac3a8x5nrsykl90a1h22865g3i5vil76vvg3", + "fetcher": "github", + "repo": "ebanner/pynt", + "unstable": { + "version": [ + 20180710, + 726 + ], + "deps": [ + "deferred", + "ein", + "epc" + ], + "commit": "86cf9ce78d34f92bfd0764c9cbb75427ebd429e6", + "sha256": "14x6blikgg5ndc9955hdziy3h9gjr27gpzmhbi4pgjvs8gffhf31" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "deferred", + "ein", + "epc", + "helm" + ], + "commit": "bc750cd244141005ea3b7bb87f75c6f6c5a5778f", + "sha256": "0mj8lkc40iv8d6afl4dba7gsbi0mgnx9ivanvczq6pxp5d4kgfsn" + } + }, + { + "ename": "pyramid", + "commit": "f786a47c2a6243c693163680146606c71502d0be", + "sha256": "149p9k6wjlgamm3vrkkcdj4fqhdfsskv1jqflp1bccfkgqpi5096", + "fetcher": "github", + "repo": "dakra/pyramid.el", + "unstable": { + "version": [ + 20181212, + 1204 + ], + "deps": [ + "pythonic", + "tablist" + ], + "commit": "277f7c623f489fd31c56d6e131c5481a71b6a926", + "sha256": "1xpb08m5zjyxpq45mmhfysxgaga2xj9r6nw6zs2rx0zkv6qjklnr" + } + }, + { + "ename": "pytest", + "commit": "33a854a27adbaf57d344340199f90d52747b8450", + "sha256": "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh", + "fetcher": "github", + "repo": "ionrock/pytest-el", + "unstable": { + "version": [ + 20181005, + 1524 + ], + "deps": [ + "s" + ], + "commit": "1bfa7549001e61ecd59cd6eae7c6656a924d1ba4", + "sha256": "1ry0czn0qjjiw75v47jamxbfzh70jxai6lvf3pp5v87wp1xhnznh" + } + }, + { + "ename": "pytest-pdb-break", + "commit": "4ed7d5d5e81818dad55edda73fbeca8c5021b932", + "sha256": "0dxn53y9zjlip0bjynjql984wrf39pmg5fsx1qgsrj1bw78xqw26", + "fetcher": "github", + "repo": "poppyschmo/pytest-pdb-break", + "unstable": { + "version": [ + 20190308, + 655 + ], + "commit": "ac969ae8cec2e3da250ce454e74f5b28f0e9649b", + "sha256": "0agrqlasx8ikvwk5c9rc2d4spj7bkhbwn46k3b8ind4pzzk4rxwd" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "commit": "38840190dfbcb307778d079da5e2373525b3ac18", + "sha256": "0887620iq8xn28aajx7z2pkgh19778w494n8icibwlk2mj2m3gxl" + } + }, + { + "ename": "python-cell", + "commit": "0549866c5e96f673ec9dec298e7ff9d5779d443b", + "sha256": "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf", + "fetcher": "github", + "repo": "thisch/python-cell.el", + "unstable": { + "version": [ + 20190217, + 1823 + ], + "commit": "665725446b194dbaaff9645dd880524368dd710a", + "sha256": "1rjh16jacp98i0l78ij5lfp5f0b42qhfzms2x8zwr9j2aj1csy2h" + } + }, + { + "ename": "python-django", + "commit": "29b2cd21e7b504222aed92ec062402f3e2a818fc", + "sha256": "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k", + "fetcher": "github", + "repo": "fgallina/python-django.el", + "unstable": { + "version": [ + 20150822, + 404 + ], + "commit": "fc54ad74f0309670359b939f64d0f1fff68aeac4", + "sha256": "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h" + } + }, + { + "ename": "python-docstring", + "commit": "e159e59ba0b60326cca0e1ea68fac4b85d54cd24", + "sha256": "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw", + "fetcher": "github", + "repo": "glyph/python-docstring-mode", + "unstable": { + "version": [ + 20190716, + 921 + ], + "commit": "0d2f783f5a868ded8a37aa5881f8952aa36b053f", + "sha256": "1cqcxdg4bv8ybw5ds5av4id39fyk711bfadc779ilj5dn0mcd4h7" + } + }, + { + "ename": "python-environment", + "commit": "283155ad56cd8eda416c83a9b7f8d43d4d1570c2", + "sha256": "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7", + "fetcher": "github", + "repo": "tkf/emacs-python-environment", + "unstable": { + "version": [ + 20150310, + 853 + ], + "deps": [ + "deferred" + ], + "commit": "401006584e32864a10c69d29f14414828909362e", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "deferred" + ], + "commit": "401006584e32864a10c69d29f14414828909362e", + "sha256": "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk" + } + }, + { + "ename": "python-info", + "commit": "2a30746451ec5ffab250e160c1d5bd29b8dc6b54", + "sha256": "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy", + "fetcher": "github", + "repo": "Wilfred/python-info", + "unstable": { + "version": [ + 20151228, + 1852 + ], + "commit": "306f15441b54b25757cdfd3b327b84024ea21ed7", + "sha256": "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99" + } + }, + { + "ename": "python-mode", + "commit": "82861e1ab114451af5e1106d53195afd3605448a", + "sha256": "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k", + "fetcher": "gitlab", + "repo": "python-mode-devs/python-mode", + "unstable": { + "version": [ + 20190724, + 633 + ], + "commit": "3bd6df77ddf41a3cfa10d8b634aeb8c65eb14b64", + "sha256": "07gai9b86cjsb9s0rh0601mznpsajmslp98sdig77qm9vvnj1x6q" + }, + "stable": { + "version": [ + 6, + 2, + 3 + ], + "commit": "a0a534639bc6142c2c2f44bd7ca5878ad5f79518", + "sha256": "0sj2hfjwpcdg9djsgl3y5aa3gnvl4s87477x6a9d14m11db3p7ml" + } + }, + { + "ename": "python-pytest", + "commit": "d95442748827911e082a55f4fd7c348a3757e274", + "sha256": "0n97akqq7dss7rsww311ljh9w1hyc4j64wjmpxjlc9lg5aqwjbh4", + "fetcher": "github", + "repo": "wbolster/emacs-python-pytest", + "unstable": { + "version": [ + 20180725, + 1146 + ], + "deps": [ + "dash", + "dash-functional", + "magit-popup", + "projectile", + "s" + ], + "commit": "09ad688df207ee9b02c990d3897a9e2841931d97", + "sha256": "18v7kxdhrayxg2pgbysm0y47xpdvwa15fmazpkfg0q8dfp2j3022" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "dash", + "dash-functional", + "magit-popup", + "projectile", + "s" + ], + "commit": "6772ecfaa86f0f4a1a66bfd3a454c9b11956de70", + "sha256": "086jjygzdrcjfp7j70xs8jh8nq0xv496kza6iap7lyc3qf16b4kk" + } + }, + { + "ename": "python-switch-quotes", + "commit": "d99fbd3d0c486bf89c9c0937e2ebf378be39293f", + "sha256": "1wc27q9ac8p7c5mfk3kznbmdd5ds4ray0csgba79n19g152y5jjc", + "fetcher": "github", + "repo": "werehuman/python-switch-quotes", + "unstable": { + "version": [ + 20161228, + 809 + ], + "commit": "93f1e9b40e061a6cea480139e8b1362b6404abd0", + "sha256": "1x04hnf3m8cgqp0i566q4n7kh59cayzfxka3g07kv0h543xbys4n" + } + }, + { + "ename": "python-test", + "commit": "0ea68b3aa9c057e81a3e90a359a38ac16cb26c2f", + "sha256": "16grx9xzl48dcwflfmv64wigyxlw495a6q01b1ynkqj5sjdl3fkn", + "fetcher": "github", + "repo": "emacs-pe/python-test.el", + "unstable": { + "version": [ + 20181018, + 29 + ], + "commit": "f899975b133539e19ba822e4b0bfd1a28572967e", + "sha256": "0ww0qf9hsd8j31dc0p3fmsiqsir3mqbd4pwv4i29qidmbgrk3cv0" + } + }, + { + "ename": "python-x", + "commit": "c1cf98dff029d494007fe25d29bd8bcfecc5b8e6", + "sha256": "03px1z27yhvc9084h9j2p0khvhkwmfxdskf0ndvz79ywp6nl7mb6", + "fetcher": "gitlab", + "repo": "wavexx/python-x.el", + "unstable": { + "version": [ + 20190611, + 1303 + ], + "deps": [ + "cl-lib", + "folding", + "python" + ], + "commit": "b1f8eaccee210d7c0580dba6dc9bd361fcf3765d", + "sha256": "0vyipfsppissa87pdnbksamdby0yl2q8nzawqivv6smn33jp6vsn" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "folding", + "python" + ], + "commit": "e606469aafec2e6beda8c589540b88a5a6f6f33f", + "sha256": "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr" + } + }, + { + "ename": "pythonic", + "commit": "5589c55d459f15717914061d0f0f4caa32caa13c", + "sha256": "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51", + "fetcher": "github", + "repo": "proofit404/pythonic", + "unstable": { + "version": [ + 20190725, + 1258 + ], + "deps": [ + "f", + "s" + ], + "commit": "1ba07048cffa0f95d7d1c75eab2d2be175e67cb6", + "sha256": "12dhh11q16crhb6dffwx3s7ncgbqsvc2dvpkzgllr58iwd8hs2kk" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ], + "commit": "c59a158942634d3c07e506b2376d96e8d5d1466f", + "sha256": "0219s900kdpi3cxllvmwm8hb2lwqzikplq578f7pyxhzljjh2lma" + } + }, + { + "ename": "pyvenv", + "commit": "e37236b89b9705ba7a9d134b1fb2c3c003953a9b", + "sha256": "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v", + "fetcher": "github", + "repo": "jorgenschaefer/pyvenv", + "unstable": { + "version": [ + 20181228, + 1722 + ], + "commit": "fa6a028349733b0ecb407c4cfb3a715b71931eec", + "sha256": "1x052fsavb94x3scpqd6n9spqgzaahzbdxhg4qa5sy6hqsabn6zh" + }, + "stable": { + "version": [ + 1, + 20 + ], + "commit": "fa6a028349733b0ecb407c4cfb3a715b71931eec", + "sha256": "1x052fsavb94x3scpqd6n9spqgzaahzbdxhg4qa5sy6hqsabn6zh" + } + }, + { + "ename": "q-mode", + "commit": "fff65433eff01d6239809df4c047f0e4349cc4a9", + "sha256": "1vv3hynd6k050nxln83l703ymzyh1kl69cdy4yabdvmkqw4gbshz", + "fetcher": "github", + "repo": "psaris/q-mode", + "unstable": { + "version": [ + 20181216, + 1747 + ], + "commit": "7a13fb68a0ad3d843c8cdc188cf0adb9723f42f7", + "sha256": "0di229ma7jr9jcck36qjrzilkbp428kkx53qs6c9xw9jhv6yklbz" + } + }, + { + "ename": "qiita", + "commit": "d8065a58e297c50c031de97d2d80bce5857bd803", + "sha256": "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl", + "fetcher": "github", + "repo": "gongo/qiita-el", + "unstable": { + "version": [ + 20140118, + 844 + ], + "deps": [ + "helm", + "markdown-mode" + ], + "commit": "93c697b97d540fd1601a13a3d9889fb939b19878", + "sha256": "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "33b6d3450bb4b3d0186c2475f6c78269c71fd1ff", + "sha256": "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f" + } + }, + { + "ename": "ql", + "commit": "475bd8fd66c6d5b5c7e74aa2c4e094d313cc8303", + "sha256": "0wxjblqacs5nx2hyh7r6rlv1yngbhn6phn5rni4dw2dms98zj34z", + "fetcher": "github", + "repo": "ieure/ql-el", + "unstable": { + "version": [ + 20180418, + 2020 + ], + "commit": "d976414ba6aa576ad524b5ee5bfa620efd072258", + "sha256": "138h4ndnzpphsmi4b8yw53mxc3rnqrj1c3jp8njx5pkmiqkp1q00" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "d976414ba6aa576ad524b5ee5bfa620efd072258", + "sha256": "138h4ndnzpphsmi4b8yw53mxc3rnqrj1c3jp8njx5pkmiqkp1q00" + } + }, + { + "ename": "qml-mode", + "commit": "f3abc88ddbb6b8ecafa45e75ceba9a1294ad88d4", + "sha256": "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n", + "fetcher": "github", + "repo": "coldnew/qml-mode", + "unstable": { + "version": [ + 20161016, + 31 + ], + "commit": "6c5f33ba88ae010bf201a80ee8095e20a724558c", + "sha256": "1sncsvzjfgmhp4m8w5jd4y51k24n2jfpgvrkd64wlhhzbj3wb947" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "6c5f33ba88ae010bf201a80ee8095e20a724558c", + "sha256": "1sncsvzjfgmhp4m8w5jd4y51k24n2jfpgvrkd64wlhhzbj3wb947" + } + }, + { + "ename": "qt-pro-mode", + "commit": "e9af710be77ccde8ffa5f22168d2c8a06b73dd6a", + "sha256": "1k3ph9bqvvg6i6n623qrwdpsffs8w9rv9nihmlggb4w30dwqc9nf", + "fetcher": "github", + "repo": "EricCrosson/qt-pro-mode", + "unstable": { + "version": [ + 20170604, + 1841 + ], + "commit": "7a2da323de834294b413cbbb3c92f42f54913643", + "sha256": "07054hzl7gd0wfibcqvij2wx9zji330gsryn53qad9gyalvlavpa" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "f4accdeba5d49b79f85f0f24f74ac25e8326d487", + "sha256": "1xprnq3y74hfm931a80wcj35faafzqc59j3vavx95wzv4z4yfgdm" + } + }, + { + "ename": "quack", + "commit": "aa58bf19d4b65ec785677a36709794ae5aebded4", + "sha256": "18f3py9vr08589g9kvbcn2nvpd074rx45ni9k66cwl3hjb3hdkg5", + "fetcher": "github", + "repo": "emacsmirror/quack", + "unstable": { + "version": [ + 20181106, + 1301 + ], + "commit": "2146805ce2b5a9b155d73929986f11e713787e26", + "sha256": "005wkji4wjqqilgmqy81rjqr8zx4gl39mari2ahvr9mfps2ypmjz" + } + }, + { + "ename": "quasi-monochrome-theme", + "commit": "a9c8498e4bcca19c4c24b2fd0db035c3da477e2a", + "sha256": "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0", + "fetcher": "github", + "repo": "lbolla/emacs-quasi-monochrome", + "unstable": { + "version": [ + 20181213, + 827 + ], + "commit": "68060dbbc0bbfe4924387392874186c5a29bb434", + "sha256": "0zp2xr0bjfqrpb0bqczzick1vvbjmipjavrdi70kw6a9caynvq22" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "68060dbbc0bbfe4924387392874186c5a29bb434", + "sha256": "0zp2xr0bjfqrpb0bqczzick1vvbjmipjavrdi70kw6a9caynvq22" + } + }, + { + "ename": "quelpa", + "commit": "a496196d405c152600d44ef4aa28557f489c542c", + "sha256": "0qm4dxwlvaka6j8ismb4lhar4dzlhpvjsx6524w15ilcbdbyqqjl", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/quelpa.git", + "unstable": { + "version": [ + 20190710, + 503 + ], + "commit": "144b71e0f514b96cf19c39853cf08b2d957a8ed5", + "sha256": "0dv85f38r5jd369ihmpknbj2zv8wmabfdsjcny0j6mp7x1n37dy1" + } + }, + { + "ename": "quelpa-use-package", + "commit": "a496196d405c152600d44ef4aa28557f489c542c", + "sha256": "1rdhnv7iz9clcy68j1gqv8cwq70ip4w12179v553lyikk9icrpp8", + "fetcher": "git", + "url": "https://framagit.org/steckerhalter/quelpa-use-package.git", + "unstable": { + "version": [ + 20190210, + 1838 + ], + "deps": [ + "quelpa", + "use-package" + ], + "commit": "6f3cc87caa6cb8795079c5cab3c6665970859098", + "sha256": "129pigh1njn50s1lq81blcn54bkb6hwrlxg0sk7m1zsf6rybw0rf" + } + }, + { + "ename": "quick-buffer-switch", + "commit": "30f167afc241f3ec24c092f2f06dbabd4dd11bcc", + "sha256": "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40", + "fetcher": "github", + "repo": "renard/quick-buffer-switch", + "unstable": { + "version": [ + 20151007, + 2208 + ], + "commit": "d5fdd67b4c9f04b7a7122da2215e4ae076a03b1b", + "sha256": "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5" + } + }, + { + "ename": "quick-peek", + "commit": "68f59a3048ec6196b138b6584a22ce70baa38284", + "sha256": "0ivg6v9c535bw2bv636wmkd4sy037j55054bfm31wvvxk99bndwq", + "fetcher": "github", + "repo": "cpitclaudel/quick-peek", + "unstable": { + "version": [ + 20190208, + 1515 + ], + "commit": "fd8a6c81422932539d221f39f18c90f2811f2dd9", + "sha256": "18jr3syd7jd809qq1j61zwaaclmqn24qyb0mv0q8sj6ac4vzl1c3" + } + }, + { + "ename": "quick-preview", + "commit": "98270840568fa1fca2d92f26108444fb24609e83", + "sha256": "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9", + "fetcher": "github", + "repo": "myuhe/quick-preview.el", + "unstable": { + "version": [ + 20150829, + 439 + ], + "commit": "29c884c6ab385ef67d9aa656ebb7c94cabeb5c35", + "sha256": "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c" + } + }, + { + "ename": "quick-shell-keybind", + "commit": "e9bf4d78da24d88476545f97b2af0527dde73600", + "sha256": "1f66wk2m0yykcbq6qbalgscpq8s53qshyyqdnimlmdi0g0glif1b", + "fetcher": "github", + "repo": "eyeinsky/quick-shell-keybind", + "unstable": { + "version": [ + 20171023, + 613 + ], + "commit": "5f4541a5a5554d108bf16b5fd1713e962161ca1b", + "sha256": "19hqywwf80q6ay886xmcjjpr4pghkw78hzdg0mrpkpkqn2vj06gk" + } + }, + { + "ename": "quickref", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1", + "fetcher": "github", + "repo": "pd/quickref.el", + "unstable": { + "version": [ + 20170817, + 1232 + ], + "deps": [ + "dash", + "s" + ], + "commit": "f368c8b8219bb90498c5ab84e26f00eedaa234cf", + "sha256": "0nalnfb816qk1dfxjk9j8r5lvzv2k4jf747xdjbj2mcvv07g2jd2" + } + }, + { + "ename": "quickrun", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy", + "fetcher": "github", + "repo": "syohex/emacs-quickrun", + "unstable": { + "version": [ + 20170223, + 115 + ], + "commit": "55bbe5d54b80206ea5a60bf2f58eb6368b2c8201", + "sha256": "1skbd5q99d9rwfi954r9p7b7nhwcfijq30z0fpdhbi1iiabf7vqz" + }, + "stable": { + "version": [ + 2, + 2, + 8 + ], + "commit": "70e93e06778f44113f405aedec6187b925311d57", + "sha256": "0swbgsidq11w7vyjhf06dn8vsj06j9scj8n2dm9m7fasj0yh3ghw" + } + }, + { + "ename": "quiet", + "commit": "443425d9e4412a1e3e8117f97c255c8420223542", + "sha256": "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a", + "fetcher": "github", + "repo": "zzkt/quiet", + "unstable": { + "version": [ + 20160508, + 1256 + ], + "commit": "6f20309f99e26fcae2601d1544b342f044e54baf", + "sha256": "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n" + } + }, + { + "ename": "quilt", + "commit": "28ad2d71574c1995287371cfd73648871b9271f0", + "sha256": "0fgni5khjbxy28i2vdwhcvs0z0yx43ll0c4s8br4w7q9s0nlcvmv", + "fetcher": "github", + "repo": "jstranik/emacs-quilt", + "unstable": { + "version": [ + 20190304, + 540 + ], + "commit": "161ce2d8ba225bccef0ea8ae4937251b8ccaa892", + "sha256": "0r9j71rc2jcwfr6yqg8qx4fwypqg1d7p31af258ixygs3qy69x14" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "161ce2d8ba225bccef0ea8ae4937251b8ccaa892", + "sha256": "0r9j71rc2jcwfr6yqg8qx4fwypqg1d7p31af258ixygs3qy69x14" + } + }, + { + "ename": "quiz", + "commit": "23d547c0d69d8f5d1e9983e3669a63dffaede2b3", + "sha256": "0pcjfhk109ifi834jw8lndwhpfcv764wym1dhiqhp5qd2vf431kg", + "fetcher": "github", + "repo": "davep/quiz.el", + "unstable": { + "version": [ + 20190525, + 1206 + ], + "deps": [ + "cl-lib" + ], + "commit": "570bf53926d89282cdb9653bd5aa8fe968f92bbd", + "sha256": "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "570bf53926d89282cdb9653bd5aa8fe968f92bbd", + "sha256": "1f752fsrk7z8q2dd40r46hzhhf1kyj0vid9g0vv5dkkzmabms59q" + } + }, + { + "ename": "r-autoyas", + "commit": "3a095d3a687055c6ac43a4338826542d14a25127", + "sha256": "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4", + "fetcher": "github", + "repo": "mattfidler/r-autoyas.el", + "unstable": { + "version": [ + 20140101, + 1510 + ], + "deps": [ + "ess", + "yasnippet" + ], + "commit": "b4020ee7f5f895e0065b8b26da8a49c51432d530", + "sha256": "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j" + }, + "stable": { + "version": [ + 0, + 28 + ], + "commit": "563254f01ce530ca4c9be1f23395e3fd7d520ff9", + "sha256": "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg" + } + }, + { + "ename": "racer", + "commit": "97b97037c19655a3ddffee9a86359961f26c155c", + "sha256": "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi", + "fetcher": "github", + "repo": "racer-rust/emacs-racer", + "unstable": { + "version": [ + 20190610, + 800 + ], + "deps": [ + "dash", + "f", + "pos-tip", + "rust-mode", + "s" + ], + "commit": "ea6a09c16f8ec646195f942c12fe3ed7d65cc971", + "sha256": "1r6g9jgbdidivjms62bvxkg0z3jif5j9sxfg51iq8hvc6m1nd352" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "dash", + "f", + "rust-mode", + "s" + ], + "commit": "8ad54e7674e49735390d63e3aea828a4d4bcddd0", + "sha256": "0xj5iki10cg8j8vvqjlw6lfx97k3agwirhchcjnzbnkry48x9qi6" + } + }, + { + "ename": "racket-mode", + "commit": "9af8dea03aba378f21c6109faf48278b4d2bf59f", + "sha256": "0cmlz314w5227br0vns5d7jhpspv1byzalgzv8f9v2qjyvk6jvsn", + "fetcher": "github", + "repo": "greghendershott/racket-mode", + "unstable": { + "version": [ + 20190725, + 1732 + ], + "deps": [ + "faceup" + ], + "commit": "ebf3009415d1ff19d51eee5ba4e78f1d5e63dea2", + "sha256": "1g8kjxpp049mn4wryv77v3rfa46b4k3bwm1jrk9kvjx333y1r0pc" + } + }, + { + "ename": "rails-log-mode", + "commit": "7ebbf4364759c8e38d550e66fd0ce193f4214e15", + "sha256": "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0", + "fetcher": "github", + "repo": "ananthakumaran/rails-log-mode", + "unstable": { + "version": [ + 20140408, + 425 + ], + "commit": "ff440003ad7d47cb0ac3300f2a632f4cfd36a446", + "sha256": "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84" + } + }, + { + "ename": "railscasts-reloaded-theme", + "commit": "9817851bd06cbae30fb8f429401f1bbc0dc7be09", + "sha256": "1iy30mnm3s7p7qigrm3lvv7xjgwvinwg6yg0hry2aifwn88cnwmz", + "fetcher": "github", + "repo": "thegeorgeous/railscasts-reloaded-theme", + "unstable": { + "version": [ + 20190308, + 759 + ], + "commit": "c6a1cf13a164f22b026b0959527c3b98c2b1aa49", + "sha256": "00clkjrp2nfchhznilxjb56bcdv1an50cawnz6747ck22x0ycbfn" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "ae77bc04fe5a948f418ec8693f6ff2c9ea757c50", + "sha256": "1vn9cw343w9vvxhzqi85vyqnj6kxcv99qvva4xjvy1sf65i24wy4" + } + }, + { + "ename": "railscasts-theme", + "commit": "a0366a9844f6c28dfc3d5ba26201865921981574", + "sha256": "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r", + "fetcher": "github", + "repo": "mikenichols/railscasts-theme", + "unstable": { + "version": [ + 20150219, + 1525 + ], + "commit": "1340c3f6c2717761cab95617cf8dcbd962b1095b", + "sha256": "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205" + } + }, + { + "ename": "rainbow-blocks", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1zf1z1hnp8q0s9za7nnpq83isbpmz26l8hxafz0h0b5dz1w2vlvs", + "fetcher": "github", + "repo": "istib/rainbow-blocks", + "unstable": { + "version": [ + 20171025, + 1438 + ], + "commit": "dd435d7bb34ff6f162a5f315df308b90b7e9f842", + "sha256": "06yfb3i7wzvqrhkb61zib9xvpb5i00s4frizkzff66im05k0n795" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "8335993563aadd4290c5fa09dd7a6a81691b0690", + "sha256": "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c" + } + }, + { + "ename": "rainbow-delimiters", + "commit": "d2cf11dbff76f0e3581b865f48bb44a307aa7f23", + "sha256": "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg", + "fetcher": "github", + "repo": "Fanael/rainbow-delimiters", + "unstable": { + "version": [ + 20170929, + 1132 + ], + "commit": "e561cff4abf97d00d9b2b5f10256d417182e2772", + "sha256": "0j9wmri4zn72znq406n2j078q2h4f74qpcrqh2pkfw4f3ff3hf7c" + }, + "stable": { + "version": [ + 2, + 1, + 3 + ], + "commit": "93cd2dc873e7fedca7abc599cd97d46db4376ac7", + "sha256": "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0" + } + }, + { + "ename": "rainbow-identifiers", + "commit": "975aadd9fe1faf9ad617ba6200ca77185b87e7c0", + "sha256": "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp", + "fetcher": "github", + "repo": "Fanael/rainbow-identifiers", + "unstable": { + "version": [ + 20141102, + 1526 + ], + "commit": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "19fbfded1baa98d12335f26f6d7b20e5ae44ce2e", + "sha256": "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh" + } + }, + { + "ename": "rake", + "commit": "bf0f84698dda02a5b84a244ee29a23a6faa9de68", + "sha256": "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns", + "fetcher": "github", + "repo": "asok/rake", + "unstable": { + "version": [ + 20180212, + 1008 + ], + "deps": [ + "cl-lib", + "dash", + "f" + ], + "commit": "9c204334b03b4e899fadae6e59c20cf105404128", + "sha256": "09k2fqkmqr6g19rvqr5x2kpj1cn3wkncxg50hz02vmsrbgmzmnja" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "f" + ], + "commit": "e680f1a8f2591af7c80cad188340601b101b5ddc", + "sha256": "1dk2clsnmjy3bfv6laxf8sslvdajjbwpk83ss8v9xm55dcxjvd7n" + } + }, + { + "ename": "rally-mode", + "commit": "0914825c6d5ad26d2a8035fc33ad98df42df3c53", + "sha256": "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1", + "fetcher": "github", + "repo": "seanleblanc/rally-mode", + "unstable": { + "version": [ + 20161114, + 354 + ], + "deps": [ + "popwin" + ], + "commit": "0f5e09a6abe2de7613f174b4f54863df93343134", + "sha256": "1vrsv8ph1v853ii0i3q889xlwxnjdqz4bs3ipi502rjx6g7y5gdz" + } + }, + { + "ename": "rand-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0c2xs99jgrhk6f1s6pls8pigg6qwcr4imnwdlngwzr0jz8jhqvxa", + "fetcher": "github", + "repo": "gopar/rand-theme", + "unstable": { + "version": [ + 20151219, + 2335 + ], + "deps": [ + "cl-lib" + ], + "commit": "65a00e5c5150f857aa96803b68f50bc8da0215b7", + "sha256": "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl" + } + }, + { + "ename": "random-splash-image", + "commit": "2bfbfe83143299b86f867c4d7faf6a0d7a070e1e", + "sha256": "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik", + "fetcher": "github", + "repo": "kakakaya/random-splash-image", + "unstable": { + "version": [ + 20151003, + 130 + ], + "commit": "53a39ebfd8ac6be066a652a508a717870f94218a", + "sha256": "1mky9xhghzz34sswqm2v3jhfc25fdrjx4hh4a1hs4h45g1v58lm9" + } + }, + { + "ename": "ranger", + "commit": "0207e754f424823fb48e9c065c3ed9112a0c445b", + "sha256": "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4", + "fetcher": "github", + "repo": "ralesi/ranger.el", + "unstable": { + "version": [ + 20190412, + 624 + ], + "commit": "c3f349e52f5c50926dc0f285c97676934f50bc18", + "sha256": "1yc5g631xrvfkdgxzzy9rzvnacnl87r504yr1mpggsw1inklhzkk" + }, + "stable": { + "version": [ + 0, + 9, + 8, + 5 + ], + "commit": "584e4ae8cce1c54a44b40dd4c77fbb2f06d73ecb", + "sha256": "01rphv92g1r0cw5bwkbrh02s0na7fjrddxx1dckk2y7qr97s7l8j" + } + }, + { + "ename": "rase", + "commit": "334419debe065c34665bb0207574d1d4dfb9e8ae", + "sha256": "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0", + "fetcher": "github", + "repo": "m00natic/rase", + "unstable": { + "version": [ + 20120928, + 2045 + ], + "commit": "59b5f7e8102570b65040e8d55781c7ea28de7338", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "59b5f7e8102570b65040e8d55781c7ea28de7338", + "sha256": "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx" + } + }, + { + "ename": "rats", + "commit": "a62cbae1b2d9af2322bb6a27949de8c8bfddc2b7", + "sha256": "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr", + "fetcher": "github", + "repo": "ane/rats.el", + "unstable": { + "version": [ + 20170818, + 1013 + ], + "deps": [ + "cl-lib", + "go-mode", + "s" + ], + "commit": "a6d55aebcc54f669c6c6ffedf84364c4097903cc", + "sha256": "0cskw05jb7wckhfs2qs9pn5icxa93ay2mw2i1brsmdd0igz34lg3" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib", + "go-mode", + "s" + ], + "commit": "8ad4023a4b9b00c1224b10b0060f6dc60b4814a4", + "sha256": "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz" + } + }, + { + "ename": "rbenv", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1skh1v8dgwl1f9m3pmy2s3rnzp8n3cydi3579fgjv4mzi81k3d5q", + "fetcher": "github", + "repo": "senny/rbenv.el", + "unstable": { + "version": [ + 20141120, + 749 + ], + "commit": "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1", + "sha256": "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "a613ee1941efa48ef5321bad39ac1ed8ad1540b8", + "sha256": "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp" + } + }, + { + "ename": "rbt", + "commit": "ca7241985be1e8a26a454b8136a537040b7ae801", + "sha256": "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm", + "fetcher": "github", + "repo": "joeheyming/rbt.el", + "unstable": { + "version": [ + 20170202, + 2302 + ], + "deps": [ + "magit", + "popup" + ], + "commit": "32bfba9062a014e375451cf4203c29535b5efc1e", + "sha256": "0jzhyf42m9gqcnsz9gxc9wk8bbb9a7fj78swwyj0wqn9jm8jxbra" + } + }, + { + "ename": "rc-mode", + "commit": "d8062b2e5b2744a6e614b389cca7e7f21b582f6f", + "sha256": "0p77mckw8jyxcwspj1ffm8mz0k01ddm67hh9j8rw812wddwnj7qf", + "fetcher": "github", + "repo": "mrhmouse/rc-mode.el", + "unstable": { + "version": [ + 20160913, + 1918 + ], + "commit": "fe2e0570bf9c19a292e16b18fd4b0a256df5d93f", + "sha256": "0skjg3l3ss8nlrpnpjjflmf7wjib4jfarkmx4438nc6vm6553fmn" + }, + "stable": { + "version": [ + 1, + 0, + 13 + ], + "commit": "fe2e0570bf9c19a292e16b18fd4b0a256df5d93f", + "sha256": "0skjg3l3ss8nlrpnpjjflmf7wjib4jfarkmx4438nc6vm6553fmn" + } + }, + { + "ename": "rcirc-alert", + "commit": "735aa2256660efffdaf6ecbd61a3e2818a48327f", + "sha256": "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a", + "fetcher": "github", + "repo": "csantosb/rcirc-alert", + "unstable": { + "version": [ + 20141127, + 1047 + ], + "commit": "0adf8ff9c47023fec578f678424be62b0f49057f", + "sha256": "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2" + } + }, + { + "ename": "rcirc-alertify", + "commit": "d1559b0e19e571c83c25ac7104e269ebc42d8f14", + "sha256": "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws", + "fetcher": "github", + "repo": "fgallina/rcirc-alertify", + "unstable": { + "version": [ + 20140407, + 119 + ], + "deps": [ + "alert" + ], + "commit": "ea5cafc55893f375eccbe013d12dbaa94bf6e259", + "sha256": "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx" + } + }, + { + "ename": "rcirc-groups", + "commit": "35b9c9e877c686df0ac9f96855d733a240063829", + "sha256": "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx", + "fetcher": "github", + "repo": "dimitri/rcirc-groups", + "unstable": { + "version": [ + 20170731, + 2101 + ], + "commit": "b68ece9d219b909244d4e3c0d8bf6a746d6fead7", + "sha256": "196x3qg22rhh917diml1q0hszqrqwg0klzp96q1c7c744mlq82fx" + } + }, + { + "ename": "rcirc-notify", + "commit": "009e2db47c9fe730fff1dc807e52c86b3ab26446", + "sha256": "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v", + "fetcher": "github", + "repo": "nicferrier/rcirc-notify", + "unstable": { + "version": [ + 20150219, + 2204 + ], + "commit": "841a7b5a6cdb0c11a812df924d2c6a7d364fd455", + "sha256": "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3" + } + }, + { + "ename": "rcirc-styles", + "commit": "10771a996c8a9dc1eb211cddff53db7b2b01e00b", + "sha256": "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r", + "fetcher": "github", + "repo": "aaron-em/rcirc-styles.el", + "unstable": { + "version": [ + 20160207, + 250 + ], + "deps": [ + "cl-lib" + ], + "commit": "f313bf6a7470bed314b27c7a40558cb787d7bc67", + "sha256": "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6" + }, + "stable": { + "version": [ + 1, + 3, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "f313bf6a7470bed314b27c7a40558cb787d7bc67", + "sha256": "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6" + } + }, + { + "ename": "rdf-prefix", + "commit": "a5f083bd629697038ea6391c7a4eeedc909a5231", + "sha256": "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm", + "fetcher": "github", + "repo": "simenheg/rdf-prefix", + "unstable": { + "version": [ + 20190511, + 1212 + ], + "commit": "6daf675d96aa4a0bc78adc93560b791a77651b22", + "sha256": "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17" + }, + "stable": { + "version": [ + 1, + 11 + ], + "commit": "6daf675d96aa4a0bc78adc93560b791a77651b22", + "sha256": "0mxzpbmaw8qz6ykyhdhq0jvxsnbgsb98psjy0w99jpxkg09fas17" + } + }, + { + "ename": "rdp", + "commit": "e2dd8ef80d344c9801f7d0a26b0e3ea33a53bf89", + "sha256": "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz", + "fetcher": "github", + "repo": "skeeto/rdp", + "unstable": { + "version": [ + 20120929, + 154 + ], + "commit": "b620192afada04aec33b38cc130fef0765f41ca9", + "sha256": "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd" + } + }, + { + "ename": "rdxmk", + "commit": "db54339795e0519f154328e54d47a7a0c80afc71", + "sha256": "14iavsgqp28y2ykgly8x69sny34r32dl4bpb47m921vk5n4y6zky", + "fetcher": "github", + "repo": "jsalzbergedu/rdxmk", + "unstable": { + "version": [ + 20170630, + 134 + ], + "commit": "e78749fb29738365ffa4d863ffabeb969ebb0bcf", + "sha256": "0gwlqjk84ih89c2ckx0rrw07jgwd32wfwj4mibchdrn0ai891md0" + } + }, + { + "ename": "react-snippets", + "commit": "3720192fdfa45f9b83259ab39356f469c5ac85b4", + "sha256": "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73", + "fetcher": "github", + "repo": "johnmastro/react-snippets.el", + "unstable": { + "version": [ + 20181002, + 1046 + ], + "deps": [ + "yasnippet" + ], + "commit": "87ccb640d265fe799583ab55605b84d113223694", + "sha256": "0zs78mn37ngy86blmp2xfy7jr5p0s6r0qq6z3z924amrhy5bwdqc" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "yasnippet" + ], + "commit": "bfc4b68b81374a6a080240592641091a7e8a6d61", + "sha256": "1wna4v8l3j0ppjv4nj72lhp0yh6vbka6bvl1paqqfvay300kiqjb" + } + }, + { + "ename": "read-aloud", + "commit": "20452bf3112276a7e1c880bfab259150fc70b47a", + "sha256": "01fd87k50x71w8qypbi7llgyc1xnmyxifxh4ni9pgbx2ryn72lzv", + "fetcher": "github", + "repo": "gromnitsky/read-aloud.el", + "unstable": { + "version": [ + 20160923, + 500 + ], + "commit": "c662366226abfb07204ab442b4f853ed85438d8a", + "sha256": "0wmfjbk3s45wj8j6xwfdldxwkrxsfcby2a242r2p88y3f8pp30i1" + } + }, + { + "ename": "readability", + "commit": "eed9bcb1aa238746c9a9f6ecba9dd61b83d8b612", + "sha256": "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv", + "fetcher": "github", + "repo": "ShingoFukuyama/emacs-readability", + "unstable": { + "version": [ + 20140716, + 27 + ], + "deps": [ + "oauth", + "ov" + ], + "commit": "6c220ab8e0ca63946574ed892add5c8fd14002ce", + "sha256": "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g" + } + }, + { + "ename": "readline-complete", + "commit": "0cf3b56dae7669b34df9d2abe2d78164cbf064c9", + "sha256": "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277", + "fetcher": "github", + "repo": "monsanto/readline-complete.el", + "unstable": { + "version": [ + 20150708, + 1437 + ], + "commit": "30c020c37b2741160cc37e656e13c85d826a0ebf", + "sha256": "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6" + } + }, + { + "ename": "real-auto-save", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1li0b2d93ffxjq4jdyzyvjdy5h7q5xllys0w4748d2bhr8q35p3w", + "fetcher": "github", + "repo": "ChillarAnand/real-auto-save", + "unstable": { + "version": [ + 20190224, + 1446 + ], + "commit": "824ad04121493723b08838c8b96559947dca7ed9", + "sha256": "1szpjv04rp9x9ph44a5s56a2y96z5x474bccsjnmn6yhingh5qik" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "879144ca7e9bfa09a4fb57d5fe92a80250311f1e", + "sha256": "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm" + } + }, + { + "ename": "realgud", + "commit": "7a21be3673962d5706f12efa5179a5426bdce82b", + "sha256": "14n6d3jfhpa29nf4ywdg3aw4i51lfkr99b4z8q4833pmpz1jbq2c", + "fetcher": "github", + "repo": "realgud/realgud", + "unstable": { + "version": [ + 20190724, + 2001 + ], + "deps": [ + "load-relative", + "loc-changes", + "test-simple" + ], + "commit": "11c57cd2ea898c2167ad6c7f80eb1807109d8260", + "sha256": "0x5d2g18sywh36gp1l2pbjfx4qp3gpvgrkx8gvjsgjdfgmpiygag" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "deps": [ + "load-relative", + "loc-changes", + "test-simple" + ], + "commit": "53938f04d5252677484e5c48513e1c138aafc756", + "sha256": "1d3s23jk0i34wpyxfajydgyyvsxnpbqrfl0mgydsq7zw2c75ylnq" + } + }, + { + "ename": "realgud-byebug", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1akv9raa6yb5h4lsvz7mxlnd9l7adg2rpgw7ski6036n6facn18a", + "fetcher": "github", + "repo": "realgud/realgud-byebug", + "unstable": { + "version": [ + 20190520, + 1140 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "f8f20b92c6b13f75cc9797921c0e28d3def48b1c", + "sha256": "1f6g5ajimha2n45dykc2vrpdd25ylwrn98fijj3i9m8n0f7jyjrn" + } + }, + { + "ename": "realgud-ipdb", + "commit": "c8182de5fceca3fc517a21abdb8d6e9c860e041b", + "sha256": "134b1n2fci0z85cyvqjq3i5wb3pm110src87la6kq2pin1nrdkcm", + "fetcher": "github", + "repo": "realgud/realgud-ipdb", + "unstable": { + "version": [ + 20190604, + 209 + ], + "deps": [ + "load-relative", + "realgud" + ], + "commit": "3642767a286e0542bf03cbb240cf47b2a89ad3f5", + "sha256": "1lgqh80w4ksa4a3zyxdz812jn0yg5xn1z5z0c23sf5vqzzxkzx7h" + } + }, + { + "ename": "realgud-jdb", + "commit": "4f03a731e4fbf2099b1ba0902ef514fd8c930d30", + "sha256": "02vlzv8lvm4vcw5c3ajn8lb499jdsrlg92kwib1hjwb2smjkb6ba", + "fetcher": "github", + "repo": "realgud/realgud-jdb", + "unstable": { + "version": [ + 20190625, + 1911 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "8cfe452f5028f3ac0f6e0ae7fa03c2a31d197ded", + "sha256": "0yglfw7bc9lz9k7mi4v9n0yd1aslph0q3fjb241ji77gq67wh69r" + } + }, + { + "ename": "realgud-lldb", + "commit": "e7e40b575cc22fa7b4773cf617862495e93565e4", + "sha256": "1l43h14a42cpgjcmbhk9vkk87z4ap9rdz7jrz8id666qxbza5xzg", + "fetcher": "github", + "repo": "realgud/realgud-lldb", + "unstable": { + "version": [ + 20190604, + 702 + ], + "deps": [ + "load-relative", + "realgud" + ], + "commit": "f2f77d6ddfa42430ead400eaf81c605c3a04dead", + "sha256": "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "load-relative", + "realgud" + ], + "commit": "f2f77d6ddfa42430ead400eaf81c605c3a04dead", + "sha256": "0n8nagjhgyg2l0qymx4rjzigxnhhks86s8flpndsfyhzh98b8qbm" + } + }, + { + "ename": "realgud-node-debug", + "commit": "50a3644b62f61622169c1aa109db80b1f53d3d8a", + "sha256": "0mw2sl9g8j08v40g5x2ai52i5ljvbxvcq37jwaz7vwdkafpnfyis", + "fetcher": "github", + "repo": "realgud/realgud-node-debug", + "unstable": { + "version": [ + 20190525, + 1634 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "72e786359ce9dace1796b0d81a00e9340e9c90ad", + "sha256": "1zn465bikzv1aizjjcnzsx105pdwwarqmd1fij82rhrspc8p8zis" + } + }, + { + "ename": "realgud-node-inspect", + "commit": "88388c61c0402534ccf9751b3cec318b62d72655", + "sha256": "1mfhvhww0w7mksfmgfjd2s8wa10k7q2sqm6s55nm71jyx5h48k07", + "fetcher": "github", + "repo": "realgud/realgud-node-inspect", + "unstable": { + "version": [ + 20190523, + 1251 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "c3ed48cf3bc2b28f9fd23bcf60ea13a3cf019fc8", + "sha256": "00ywz4kp90wkfi1ncn9zj6vjw9igiv34gvx6fqfi8ha3q5xljzps" + } + }, + { + "ename": "realgud-old-debuggers", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "14kig9yxss9nfc0cc54ph80pbdrmh1mdazypiwxbnj2nk1dk3qsv", + "fetcher": "github", + "repo": "realgud/realgud-old-debuggers", + "unstable": { + "version": [ + 20190520, + 1150 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "0fad38283e885c452160232e01adf3f6ae51983b", + "sha256": "01x819j80yc5ybwaz5xglibv88r2aah5gqxwi1q9azd6f70zanvi" + } + }, + { + "ename": "realgud-pry", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1f8qap30r26gg33i76474zk6fs3r9qjf7jrxpm4xwpbjraggqy3z", + "fetcher": "github", + "repo": "realgud/realgud-pry", + "unstable": { + "version": [ + 20190520, + 1139 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "fe04c0e1e1ce33361d12ad6f9bcf493f3fe228e0", + "sha256": "14b3104wlaxwbg3p2pmnxlap5q4msbhswpiq5cx5q1wwhzkjfp2a" + } + }, + { + "ename": "realgud-rdb2", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "16pk034g26xnbsz0w9z8p76jiaraz8lvbf5hf0mmg1f5f4xlinz7", + "fetcher": "github", + "repo": "realgud/realgud-ruby-debugger2", + "unstable": { + "version": [ + 20190520, + 1146 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "3594aa74f7afda3c3251bb2af7fe0e8ec6d621ae", + "sha256": "1nalr0yd1wvqdf81nidxmh9fr3ncqdjb706p6832fsmbpk7r9haw" + } + }, + { + "ename": "realgud-trepan-ni", + "commit": "2464e03d11cd660c3c9c760e16b90911151cf184", + "sha256": "1p7sn1swmdyyzaaa5xza70md4pl2p15swyh7y3fbmpp35nabv9zi", + "fetcher": "github", + "repo": "realgud/realgud-trepan-ni", + "unstable": { + "version": [ + 20190528, + 2211 + ], + "deps": [ + "load-relative", + "realgud" + ], + "commit": "4cd936edcc89324a819b21aa1afd331c02e6bd3e", + "sha256": "0h0d8566km6v7rgiqx54lwazwwl929npxicg8dx8qw12q13vkk31" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "cl-lib", + "load-relative", + "realgud" + ], + "commit": "ce008862ea33de0a9e6c06099b9ddff8f620f2e4", + "sha256": "14sd9d0jzr0iiy4hzssabp08wifbnb4hh6xs5b2v8ch348kcwpwv" + } + }, + { + "ename": "reason-mode", + "commit": "f9f1a18c13601f3a4fd7b1bbfe7d5da07746e492", + "sha256": "07sirgj8bs9yv7pbx1lahwslvjd2aadkzkz7lsyw6xflj5fxpggr", + "fetcher": "github", + "repo": "reasonml-editor/reason-mode", + "unstable": { + "version": [ + 20190710, + 1037 + ], + "commit": "5e6205cfede8c10c6821dfd9f9757a9d8035ec04", + "sha256": "0w25z5v551w7fcjwk73dwxhp4lydjrn4rc99swd1ffxyzp5cap56" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "6b53815a0405be1f364a082d22fe5c900409a01a", + "sha256": "1433bgakbfyf5d5vq69rwj4zg1h0xwjy9qsryvd9r1ssax2hzi7r" + } + }, + { + "ename": "reazon", + "commit": "77020b6ea36a4115bdddbc9599fe4f4193ecc29d", + "sha256": "1lymdc1lnwr7s8s15mnjcavxdyqncy2rkfdj571lf1a37y52jcj1", + "fetcher": "github", + "repo": "nickdrozd/reazon", + "unstable": { + "version": [ + 20180921, + 1437 + ], + "commit": "020be6467a83957adcbdcb192b61f2c76a94079b", + "sha256": "18la2g0srybr10vm1dajgbxi67j1l0cs08mr696hxb6m558yxdv5" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "020be6467a83957adcbdcb192b61f2c76a94079b", + "sha256": "18la2g0srybr10vm1dajgbxi67j1l0cs08mr696hxb6m558yxdv5" + } + }, + { + "ename": "rebecca-theme", + "commit": "19f40f30113c7dabd76a2d0e52898e6d6be69a35", + "sha256": "1m72jqyqx18i1vpj07v3vkbi0di9dks5sz46wb2h0f23xqyx00md", + "fetcher": "github", + "repo": "vic/rebecca-theme", + "unstable": { + "version": [ + 20180324, + 821 + ], + "commit": "9ac0c71c2858b76dc5499f62c7c7fb7f9e8f16bc", + "sha256": "0a0qf118gj2fag3j57zmli47939rn1jayvs2fwa4l280ipfvp2m7" + }, + "stable": { + "version": [ + 1, + 2, + 1 + ], + "commit": "239115183e0a354ccd5c2cb299893b558fbde05c", + "sha256": "0n6xf9s39frnyvchk40zzxbkn0hyga5ridkxbf50n7hr5j19yrmb" + } + }, + { + "ename": "rebox2", + "commit": "fc9132290886694bd551681e32af26e9f4ebae57", + "sha256": "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw", + "fetcher": "github", + "repo": "lewang/rebox2", + "unstable": { + "version": [ + 20121113, + 1300 + ], + "commit": "00634eca420cc48657b81e40e599ff8548083985", + "sha256": "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z" + } + }, + { + "ename": "recentf-ext", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "122kns45l75cdwxbfjznks3kvm5jc89ik714ij2qx14qyik0xmni", + "fetcher": "github", + "repo": "rubikitch/recentf-ext", + "unstable": { + "version": [ + 20170926, + 35 + ], + "commit": "450de5f8544ed6414e88d4924d7daa5caa55b7fe", + "sha256": "1jylpqgngbl594a1qvd305m9lda48cib4dsasimdqxp20d4c56iy" + } + }, + { + "ename": "recentf-remove-sudo-tramp-prefix", + "commit": "0bf1761715ee4917ba0823adbda03859d5b8131a", + "sha256": "01kdpx7kqd39a5hjym5plcj5d8szzghigq9mq186mggayg8q44cr", + "fetcher": "github", + "repo": "ncaq/recentf-remove-sudo-tramp-prefix", + "unstable": { + "version": [ + 20180205, + 556 + ], + "commit": "6cb762efbd0aa323f96c687b6bebc9bf00a3ceb3", + "sha256": "0lnnh28qax4qk9n9sng7sgb0w0mnjc8abnch3bd0ba9g5x28z8bx" + } + }, + { + "ename": "recently", + "commit": "bb8d1628e1787cba10fc612f3351e4085e9a3153", + "sha256": "1928v1897l1n42zrzqfwkq6nckf9y822qcwy99294rq0b4z83kxs", + "fetcher": "github", + "repo": "10sr/recently-el", + "unstable": { + "version": [ + 20190317, + 1234 + ], + "deps": [ + "cl-lib" + ], + "commit": "7b5d1128becb387d759a3a95f6afb9ef54be792a", + "sha256": "0wghawh47jd2j5s77h1b69fg5njff1yccx1xpvwmlj6ssh3p38xp" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "3a331936ba33875d0f2fa47abe056aadbc59150e", + "sha256": "0hdsv3whr2iqk6xirmfcjpbqjnckzqj54n5q04gh2z01bjxv3d7k" + } + }, + { + "ename": "recompile-on-save", + "commit": "77805a854da76b105bd7589fd0960b1ef8868b8b", + "sha256": "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn", + "fetcher": "github", + "repo": "maio/recompile-on-save.el", + "unstable": { + "version": [ + 20151126, + 1446 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "92e11446869d878803d4f3dec5d2101380c12bb2", + "sha256": "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri" + } + }, + { + "ename": "recover-buffers", + "commit": "43b33cfb794c35de78fde6eabb71ffe01049d23d", + "sha256": "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b", + "fetcher": "github", + "repo": "tripleee/recover-buffers", + "unstable": { + "version": [ + 20171009, + 437 + ], + "commit": "81a5cb53099955ebc2a411a44cba5a394ee3f2d1", + "sha256": "07dfdvz5rn5l13xdycd7h75zaq0pw2afb9n1yiq01fqk6gvrhc5b" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "a1db7f084977697081da3497628e3514e032b966", + "sha256": "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q" + } + }, + { + "ename": "rect+", + "commit": "c8c1cd81f0e764a7cfc2f3f96574898ff414beb4", + "sha256": "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-rectplus", + "unstable": { + "version": [ + 20150621, + 44 + ], + "commit": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj" + }, + "stable": { + "version": [ + 1, + 0, + 10 + ], + "commit": "299b742faa0bc4448e0d5fe9cb98ab1eb93b8dcc", + "sha256": "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj" + } + }, + { + "ename": "rectangle-utils", + "commit": "1852b75c82822e97c39b7c7caeb2a32246171be4", + "sha256": "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7", + "fetcher": "github", + "repo": "thierryvolpiatto/rectangle-utils", + "unstable": { + "version": [ + 20190411, + 1757 + ], + "deps": [ + "cl-lib" + ], + "commit": "46f7e73340fee40c1ab9a4e766a08ae3fce83ebe", + "sha256": "0dcga10lg2bl1p259s78jib7pd03v183hima8aksfr0c84s438yq" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "6fe38fdd48ef5305a908b94a043a966ac3f2053a", + "sha256": "08n3ah40gfgkbriwj2z3y0751vpvgz86qjdn6dxs4mghjrwr2545" + } + }, + { + "ename": "recursive-narrow", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "15pzwxzyc3dl81v27gk7a4866cxbhzpmmcmfi9n4vrrxmf61h905", + "fetcher": "github", + "repo": "nflath/recursive-narrow", + "unstable": { + "version": [ + 20190306, + 1521 + ], + "commit": "5e3e2067d5a148d7e64e64e0355d3b6860e4c259", + "sha256": "1dxghz1fb2l7y7qphqk0kk732vazlk1n1fl6dlqhqhccj450h2qa" + } + }, + { + "ename": "redis", + "commit": "10fbb970956ee19d812c17900f3c01c5fee0c3f2", + "sha256": "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a", + "fetcher": "github", + "repo": "emacs-pe/redis.el", + "unstable": { + "version": [ + 20150531, + 1948 + ], + "deps": [ + "cl-lib" + ], + "commit": "2c33f3397bc14e7a8192867b55920492d4eead8c", + "sha256": "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57" + } + }, + { + "ename": "redpen-paragraph", + "commit": "7e6b187bfc14f3affbe2d8d1cb854abe69deb15b", + "sha256": "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca", + "fetcher": "github", + "repo": "karronoli/redpen-paragraph.el", + "unstable": { + "version": [ + 20160625, + 1050 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "770ffb34b04bfa0ea8484fa1506e96c530168e13", + "sha256": "0cqln3d8yp9fdam984bwnngjl0hjnwi7yhcggdkjwribhr79cxhl" + }, + "stable": { + "version": [ + 0, + 42 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "f9569bc8e2993dea0f83cba5738a35ce32f82424", + "sha256": "087dq9h8i8cjwm8x2s33xrwnnxjpjcmddy2624z00s1ip0dh5ham" + } + }, + { + "ename": "redprl", + "commit": "06e7371d703ffdc5b6ea555f2ed289e57e71e377", + "sha256": "1zinzs3vzf2alsnxf5k71i7lp90fm26wv4y20ci52n0hnh5nz861", + "fetcher": "github", + "repo": "RedPRL/sml-redprl", + "unstable": { + "version": [ + 20180418, + 1434 + ], + "commit": "4b13acd64cf523442f87337f7c41261e1dfd37dd", + "sha256": "1f99xjskd9am3f8wcx3hdzjpp06y9rb10dr2l38z3015bjfpil5g" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "d06d39486348a74981b2c4c4c2ed3af95b01d5ca", + "sha256": "0k3f7pa332d0fs1js8hi7zszcirir1943bhkgwfxzsqx17m26x3n" + } + }, + { + "ename": "redshank", + "commit": "2677a5cf74ebace6510517f47eaa43b35f736683", + "sha256": "0p18rkn09qb4ssr6jix13kqc3jld407qr2z2k8z78i3xy4bfzr5f", + "fetcher": "github", + "repo": "emacsattic/redshank", + "unstable": { + "version": [ + 20180730, + 407 + ], + "deps": [ + "paredit" + ], + "commit": "d059c5841044aa163664f8bf87c1d981bf0a04fe", + "sha256": "1545z1dd85zg8sg2r5r5gdnmgxbxwjvl5xklx5nvpd0gbxlwbpqk" + } + }, + { + "ename": "redtick", + "commit": "3187bd436541e2a5c2b28de67c62f5d5165af737", + "sha256": "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb", + "fetcher": "github", + "repo": "ferfebles/redtick", + "unstable": { + "version": [ + 20180424, + 2136 + ], + "commit": "94b4cd43ac20c64dcac96edac2c1a3b9fcc59bb9", + "sha256": "1nqbhpxp79zvcxyr5c90b64lrrw5zh6blh91lwssy73zizkh2lcg" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "14e3a07c229d1f660ca5129d6e8a52a8c68db94d", + "sha256": "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p" + } + }, + { + "ename": "redtt", + "commit": "8db65908885f753bf65849b89ebabe0c4df664f9", + "sha256": "0gnqik2p2rb8c1mp3vrz1xf7z89xfcx5pi4lqsdnwjhxjh2534zk", + "fetcher": "github", + "repo": "RedPRL/redtt", + "unstable": { + "version": [ + 20181121, + 21 + ], + "commit": "692892d634056c926525c4c97efc041c19e05810", + "sha256": "148vhl7hfc3yjzdnask1cvsqmw0lpaz776zx3v9alzv47xhfzf4n" + } + }, + { + "ename": "refine", + "commit": "b111879ea0685cda88c758b270304d9e913c1391", + "sha256": "1sk6rsd92pix7k8snnqm3hsimjzaihzjgac0g5h3a2zm9dabf4py", + "fetcher": "github", + "repo": "Wilfred/refine", + "unstable": { + "version": [ + 20180315, + 2228 + ], + "deps": [ + "dash", + "list-utils", + "loop", + "s" + ], + "commit": "0a99439a0b4ed6f79b9a240ea1270140a9e328bc", + "sha256": "1scw449mbmr70kb0r2ymhph9j0s5ym77ijp5fpwph9bri46cad3g" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "dash", + "list-utils", + "loop", + "s" + ], + "commit": "9760e56ab849a4827e6c9425fdef6f5a7784c967", + "sha256": "1b4n0mfplh6vj87p3124c2fw24fj0vm9jvcaxrvccfq3sida4sf3" + } + }, + { + "ename": "reformatter", + "commit": "58de8cf8864867f7b3969f3a048a4844837078b4", + "sha256": "0z4wa0bmhz55c54vx7qxkl9x7ix20mmgygv91sqll68l10g63l0c", + "fetcher": "github", + "repo": "purcell/reformatter.el", + "unstable": { + "version": [ + 20190529, + 2238 + ], + "commit": "b29fdd346d0d06bef4cafc75adbde51a46392e90", + "sha256": "0ahi9z3qpbg9zcb1fzbxqd6gb8ip44zdf9assimch7yklg5ph2ca" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "b2963f51009948d5e4885237a148695008d4ccbc", + "sha256": "0hhy6x1bkwlhdlarsgm06g3am4yh02yqv8qs34szpzgy53x84qah" + } + }, + { + "ename": "regex-dsl", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0c9mxsvmx6mgpq838qnjjr7ra4hafikv7hq4nfab7zw9mxrcr2f9", + "fetcher": "github", + "repo": "alk/elisp-regex-dsl", + "unstable": { + "version": [ + 20100124, + 1028 + ], + "commit": "ac89ab8b7691a165ef3007cb84417125cfc0632e", + "sha256": "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx" + } + }, + { + "ename": "regex-tool", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1s4clmy5r7w6aj2bh2vf2fmbcwnainzidj28mf3kc34x3qhybngq", + "fetcher": "github", + "repo": "jwiegley/regex-tool", + "unstable": { + "version": [ + 20170104, + 1918 + ], + "commit": "0b4a0111143c88ef94bec56624cb2e00c1a054e6", + "sha256": "03qm8s7nqsj0pjnnb0p84gk7hvad4bywn3rhr3ibzj6hxqvppbqj" + } + }, + { + "ename": "region-bindings-mode", + "commit": "faba50ed3e8c22991bcb8968880f79fad1748705", + "sha256": "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69", + "fetcher": "github", + "repo": "fgallina/region-bindings-mode", + "unstable": { + "version": [ + 20140407, + 2214 + ], + "commit": "3fa5dbdbd7c000bebff6d9d14a4be326ec24b6fc", + "sha256": "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy" + } + }, + { + "ename": "region-convert", + "commit": "f6963fc11d697b95ebbdaf7fe27c91a6229d08b6", + "sha256": "16i1b83jms7djkyb3n0crfxgpz05m68f4nrlvzxjj7fb56mvf9j7", + "fetcher": "github", + "repo": "zonuexe/region-convert.el", + "unstable": { + "version": [ + 20181221, + 528 + ], + "commit": "a50a0828a989fc1788a32946249a3758793156b3", + "sha256": "07hbqc7ilhyhqa7hw8fxh76ma9qkr4djlc6gbz06c1hknbi1gxs9" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "173c86b4b3fc187d54bcd85b4d7df27a5ee24965", + "sha256": "1paljjwr6sfl835m24vj2j4x3zdh3whwayj6dvyfarbhhcwbwphj" + } + }, + { + "ename": "region-occurrences-highlighter", + "commit": "86c5c83a25fd632b41567c6ea4bc49cf0cfd8aa6", + "sha256": "1v0iwlkpdmmqi7qllaih6f5pjfjwqwlpyjdjlddvw4rsg6v5gh42", + "fetcher": "github", + "repo": "alvarogonzalezsotillo/region-occurrences-highlighter", + "unstable": { + "version": [ + 20190617, + 901 + ], + "commit": "b3e2eb48e342791aca6c9586ad2fe44540df0463", + "sha256": "0j73vlj1576jjhjac79b3p9cdwg75gj142is3ak28vs04frzi1x8" + } + }, + { + "ename": "region-state", + "commit": "716e82eb4ca0845f59a743556b37be8a1ecb29af", + "sha256": "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x", + "fetcher": "github", + "repo": "xuchunyang/region-state.el", + "unstable": { + "version": [ + 20181205, + 1746 + ], + "commit": "8c636b655eef45e0015684699737d31e15450000", + "sha256": "0dlamw4zbg3km7h5zk91f593qsk99q7ppvzsws00bc2rnnaplz5l" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "549c5f19e828f9dba3de611b40eba31ae96b0d1c", + "sha256": "16hnc0p72fkyqmwci2k2721dvmw8n1nld6qawiz3ghqz932w1kld" + } + }, + { + "ename": "register-channel", + "commit": "ad44618ac36e96d04f5c44c77637ea6229e61b4c", + "sha256": "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr", + "fetcher": "github", + "repo": "YangZhao11/register-channel", + "unstable": { + "version": [ + 20180926, + 2349 + ], + "commit": "9272923757402d177a0b2deab1d9c3c74601c48e", + "sha256": "0k9qgrbzbxx4sjffnr02qx5wm71i3m61w7mh2j4hq9jf8k6nbkq4" + } + }, + { + "ename": "related", + "commit": "555932a7b9cf11b50a61c2a9dd2636fd6844fac8", + "sha256": "08cfr5qbm1h5j4v3vf3kjjwb9nxsrk74lx9gi1icdhqw631h3yxf", + "fetcher": "github", + "repo": "julien-montmartin/related", + "unstable": { + "version": [ + 20190327, + 1024 + ], + "deps": [ + "cl-lib" + ], + "commit": "546c7e811b290470288b617f2c27106bd83ccd33", + "sha256": "0kn07wgnz5bkkq66qfq16rvw9l7zgh0hzrsa705j1zbd6vc3wygs" + } + }, + { + "ename": "relative-buffers", + "commit": "ab22cea99fbee937bbd6e8fbc8bd27967aeaa8a5", + "sha256": "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i", + "fetcher": "github", + "repo": "proofit404/relative-buffers", + "unstable": { + "version": [ + 20160221, + 1923 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "s" + ], + "commit": "2547475084244d266b507e563c9b4034705cfeca", + "sha256": "16m4qyjg0ca1j944ra1qhhg9ks3sk0rv5ax59rqga20l8wf6k0jq" + } + }, + { + "ename": "relax", + "commit": "67247451b39461db4a5fcff3827a09f53f9fc8ec", + "sha256": "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk", + "fetcher": "github", + "repo": "technomancy/relax.el", + "unstable": { + "version": [ + 20131029, + 2134 + ], + "deps": [ + "json" + ], + "commit": "6e33892623ab87833082262321dc8e1977209626", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "json" + ], + "commit": "6e33892623ab87833082262321dc8e1977209626", + "sha256": "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66" + } + }, + { + "ename": "remark-mode", + "commit": "161a45835a153c6ac81b99311482f5dd36507da1", + "sha256": "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0", + "fetcher": "github", + "repo": "torgeir/remark-mode.el", + "unstable": { + "version": [ + 20171218, + 756 + ], + "deps": [ + "markdown-mode" + ], + "commit": "e8a95f25d865d6165a7fdb1cadf5e6f0bb5ee73b", + "sha256": "01qdaby7mn5d8y95wcbqzwzcbjmf2329g6yjbvmdd1gn6s7qzs0b" + } + }, + { + "ename": "remember-last-theme", + "commit": "26edcdddaf8dc8c9a18d6b007e0d49d04fe4ccca", + "sha256": "0pw36f9mchkl1qhaii39zd0vwrydjlijzanv706ai2bl8r7l0ppy", + "fetcher": "github", + "repo": "anler/remember-last-theme", + "unstable": { + "version": [ + 20170619, + 2133 + ], + "commit": "0973f1aa6b96355fa376fffe8b45733b6e963c51", + "sha256": "11kcqpw1wrhghbw2dx3pqndmq9a1rbqir3k71ggaj1x2y2arzvm7" + } + }, + { + "ename": "renpy", + "commit": "cc928aed12275dc3780d7d8acc6ceca0f69ef63f", + "sha256": "1xfk3j13wzgxg56izbwad0kw4izg0hdzkh7h7cfdmdf4v6mxc7f0", + "fetcher": "github", + "repo": "billywade/renpy-mode", + "unstable": { + "version": [ + 20190419, + 1749 + ], + "commit": "943e1af71d23128ff100d41d178ccffe28f97944", + "sha256": "1l2dglkbpb3d6c6cnifhngcjc4yy726mq6yic8x9409c6r0apn2n" + } + }, + { + "ename": "repeatable-motion", + "commit": "0dd56ebaea098715b9c201f07e6196c38977f8e3", + "sha256": "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw", + "fetcher": "github", + "repo": "willghatch/emacs-repeatable-motion", + "unstable": { + "version": [ + 20170620, + 1848 + ], + "commit": "f29effdc4121c2dc7e3fec9b3a62debce29cda9d", + "sha256": "11s7r5g0djj0yc8ll7jfw5v3m9kyvaiscndnfnvvjw5lwgfyh0v3" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "e664b0a4a3e39c4085378a28b5136b349a0afb22", + "sha256": "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck" + } + }, + { + "ename": "repeater", + "commit": "10e6c57937b7540f1fbf920765a63292784433ed", + "sha256": "07fq3d6w5ns5ryv4vd23iww2bz34f62syzbg8y643kdd0kp1m772", + "fetcher": "github", + "repo": "xuchunyang/repeater", + "unstable": { + "version": [ + 20180418, + 1212 + ], + "commit": "854b874542b186b2408cbc58ad0591fe8eb70b6c", + "sha256": "0cx6b8l9ssf56fz8xjsmbyhy8mdcj8l0rvsdx37qk86xq4nlz74p" + } + }, + { + "ename": "repl-toggle", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "16k9fk1nl2llk9qli52kiirlx9rlz8yhjh3cy6v5y2b3k0y1cf0b", + "fetcher": "github", + "repo": "tomterl/repl-toggle", + "unstable": { + "version": [ + 20190430, + 713 + ], + "deps": [ + "fullframe" + ], + "commit": "a36caac7649fbffbe30f7b06541c9efd723563fc", + "sha256": "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "deps": [ + "fullframe" + ], + "commit": "a36caac7649fbffbe30f7b06541c9efd723563fc", + "sha256": "12h3xxja3isnhvrqx7m2g7a5d8h68cc85pbqyhiipfxyafyl1yxd" + } + }, + { + "ename": "replace-from-region", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb", + "fetcher": "github", + "repo": "rubikitch/replace-from-region", + "unstable": { + "version": [ + 20170227, + 2316 + ], + "commit": "dc9318b9b2822da7b00ecc34d1dc965c8f96c9bb", + "sha256": "05l0wn1gqw2sbl65s1m7afmg3b1ps2qgqqrjkl9r2i26p95kqlq3" + } + }, + { + "ename": "replace-pairs", + "commit": "2c578f574bc13edf45330a2836c02dece163688d", + "sha256": "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb", + "fetcher": "github", + "repo": "davidshepherd7/replace-pairs", + "unstable": { + "version": [ + 20160207, + 1251 + ], + "commit": "acfb254dddffcee4250092fab9394ef2b42ffbc0", + "sha256": "0k7sngs124bk22hcxg1vx0w5p603v0rdh1bs2sbm1gfgvawfdia6" + } + }, + { + "ename": "replace-symbol", + "commit": "377b6ff2b785f6d87adf1e23a5b0ce02881fc5c9", + "sha256": "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng", + "fetcher": "github", + "repo": "bmastenbrook/replace-symbol-el", + "unstable": { + "version": [ + 20160518, + 12 + ], + "commit": "baf949e528aee1881f455f9c84e67718bedcb3f6", + "sha256": "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "baf949e528aee1881f455f9c84e67718bedcb3f6", + "sha256": "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc" + } + }, + { + "ename": "replace-with-inflections", + "commit": "7892eb506b8f4260bde4be2805bf3b2d594ab640", + "sha256": "1pqpin5ipm3g74zjh1kh6s1gh0aan6202p0y2q00d4ywbz9kn5s0", + "fetcher": "github", + "repo": "knu/replace-with-inflections.el", + "unstable": { + "version": [ + 20180831, + 635 + ], + "deps": [ + "cl-lib", + "inflections", + "string-inflection" + ], + "commit": "d9201e047856492f282da65459b28aba25998dbb", + "sha256": "09yvn489z33hww7mi1flh344faxrpbkzqhm0i6xb2rridcj7acqh" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "cl-lib", + "inflections", + "string-inflection" + ], + "commit": "d9201e047856492f282da65459b28aba25998dbb", + "sha256": "09yvn489z33hww7mi1flh344faxrpbkzqhm0i6xb2rridcj7acqh" + } + }, + { + "ename": "repo", + "commit": "1729d4ea9498549fff3594b971fcde5f81592f84", + "sha256": "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb", + "fetcher": "github", + "repo": "canatella/repo-el", + "unstable": { + "version": [ + 20190326, + 1644 + ], + "commit": "c53c06169dec4e556982fb06ca780ca4708dc436", + "sha256": "1brsc8k590qc4x93qydiq8ylq26zbdv8565fz194zpik9d239mja" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "d7b87cd515bad8a67d3a892a46a23f5fe81e08de", + "sha256": "0rbvcvm7bfr6ncji7cllfxyyr6x7n9fx863byp243phsj3n93adz" + } + }, + { + "ename": "req-package", + "commit": "aa5bc1909f807ec03ad441d78013ba8626cd410a", + "sha256": "1zjhc6f9qcb3j72k1llp6vym25lxnvq1jgqgmnrjxxwc4fhxx595", + "fetcher": "gitlab", + "repo": "edvorg/req-package", + "unstable": { + "version": [ + 20180122, + 500 + ], + "deps": [ + "dash", + "ht", + "log4e", + "use-package" + ], + "commit": "0c0ac7451149dac6bfda2adfe959d1df1c273de6", + "sha256": "0sx3kw1gpliifbc0gh2z1lvig68v3gwqjbj0izgn77js8kqxad84" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "dash", + "ht", + "log4e", + "use-package" + ], + "commit": "0c0ac7451149dac6bfda2adfe959d1df1c273de6", + "sha256": "0sx3kw1gpliifbc0gh2z1lvig68v3gwqjbj0izgn77js8kqxad84" + } + }, + { + "ename": "request", + "commit": "8d113615dde757a60ce91e156f0714a1394c4bfc", + "sha256": "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji", + "fetcher": "github", + "repo": "tkf/emacs-request", + "unstable": { + "version": [ + 20190730, + 1014 + ], + "commit": "f466ab1af578abd1942c3c70c101c585d9166bb0", + "sha256": "0jiqm701kn9xv9bxw4xd3qg9r2qkhws5qsly1749rs7zhbjfpzd2" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "commit": "ef9f509b5579f2b529a20e43f7e0f061e641fec5", + "sha256": "0fhhd349l4iqkrjxqzpckfk2w45x2g4cccpm1dqzv9m49md1wphx" + } + }, + { + "ename": "request-deferred", + "commit": "8d113615dde757a60ce91e156f0714a1394c4bfc", + "sha256": "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n", + "fetcher": "github", + "repo": "tkf/emacs-request", + "unstable": { + "version": [ + 20181129, + 317 + ], + "deps": [ + "deferred", + "request" + ], + "commit": "f466ab1af578abd1942c3c70c101c585d9166bb0", + "sha256": "0jiqm701kn9xv9bxw4xd3qg9r2qkhws5qsly1749rs7zhbjfpzd2" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "deferred", + "request" + ], + "commit": "ef9f509b5579f2b529a20e43f7e0f061e641fec5", + "sha256": "0fhhd349l4iqkrjxqzpckfk2w45x2g4cccpm1dqzv9m49md1wphx" + } + }, + { + "ename": "requirejs", + "commit": "a6a710c0d5ab34c52498c4154deebb779052aa01", + "sha256": "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k", + "fetcher": "github", + "repo": "joeheyming/requirejs-emacs", + "unstable": { + "version": [ + 20151204, + 719 + ], + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s", + "yasnippet" + ], + "commit": "4ea2a5fcbc76e4cbb6a7461e6f05f019b75865b1", + "sha256": "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib", + "js2-mode", + "popup", + "s" + ], + "commit": "7d73453653b6b97cca59fcde8d529b5a228fbc01", + "sha256": "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca" + } + }, + { + "ename": "requirejs-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2", + "fetcher": "github", + "repo": "moricard/requirejs-mode", + "unstable": { + "version": [ + 20130215, + 2104 + ], + "commit": "bbb0c09f8eb2d6a33c17319be8137f68bb16bc92", + "sha256": "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv" + } + }, + { + "ename": "resize-window", + "commit": "601a8d8f9046db6c4d50af983a11fa2501304028", + "sha256": "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l", + "fetcher": "github", + "repo": "dpsutton/resize-window", + "unstable": { + "version": [ + 20180918, + 538 + ], + "deps": [ + "cl-lib" + ], + "commit": "72018aa4d2401b60120588199d4cedd0dc1fbcfb", + "sha256": "1icjmnfxpc5zgnd4hwwwp0008iy1qv6igr5kyv5s062xd6rcs8a1" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "dcbbd30f4f4435070a66a22c5a169b752ca9f904", + "sha256": "0x2kkf7bdj9s3993kdz74igi80rqma0w3hi7aggf0zwllqdcnzvk" + } + }, + { + "ename": "restart-emacs", + "commit": "b9faeb6d910d686cbcafe7d12e0bcf62a85689bd", + "sha256": "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6", + "fetcher": "github", + "repo": "iqbalansari/restart-emacs", + "unstable": { + "version": [ + 20180601, + 1031 + ], + "commit": "9aa90d3df9e08bc420e1c9845ee3ff568e911bd9", + "sha256": "02x1a85k7r95z8091zgjiaj9nf0zvx1jy4xvl3hr12qbnrx1wfav" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "e9292fe88d8be7d0ecf9f4f30ed98ffbc6bd689b", + "sha256": "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz" + } + }, + { + "ename": "restclient", + "commit": "59303304fe1f724596245556dd90f6afffba425d", + "sha256": "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4", + "fetcher": "github", + "repo": "pashky/restclient.el", + "unstable": { + "version": [ + 20190502, + 2214 + ], + "commit": "422ee8d8b077dffe65706a0f027ed700b84746bc", + "sha256": "067nin7vxkdpffxa0q61ybv7szihhvpdinivmci9qkbb86rs9kkz" + } + }, + { + "ename": "restclient-helm", + "commit": "59303304fe1f724596245556dd90f6afffba425d", + "sha256": "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j", + "fetcher": "github", + "repo": "pashky/restclient.el", + "unstable": { + "version": [ + 20170314, + 1554 + ], + "deps": [ + "helm", + "restclient" + ], + "commit": "422ee8d8b077dffe65706a0f027ed700b84746bc", + "sha256": "067nin7vxkdpffxa0q61ybv7szihhvpdinivmci9qkbb86rs9kkz" + } + }, + { + "ename": "restclient-test", + "commit": "82e3078fc1f96d276fd288c3d7b91df5df4717a6", + "sha256": "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39", + "fetcher": "github", + "repo": "simenheg/restclient-test.el", + "unstable": { + "version": [ + 20180106, + 2046 + ], + "deps": [ + "restclient" + ], + "commit": "4518561bc9661fedacb6fb352e9677207f45c418", + "sha256": "0hbilpn77w0vykga9p4dkwaygipyna7mwn24y2kwfcahcr39pqjb" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "restclient" + ], + "commit": "a21e41b905b423e762eeb4da3a236c8b1aea8c49", + "sha256": "1lan49723rpzg1q7w8x3iggazwl4zirq5l8nhpb8m5hmg21a4kih" + } + }, + { + "ename": "reveal-in-osx-finder", + "commit": "2bf40285279b761b0efd6bc8542ae9aad4b329e1", + "sha256": "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc", + "fetcher": "github", + "repo": "kaz-yos/reveal-in-osx-finder", + "unstable": { + "version": [ + 20150802, + 1657 + ], + "commit": "5710e5936e47139a610ec9a06899f72e77ddc7bc", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "commit": "5710e5936e47139a610ec9a06899f72e77ddc7bc", + "sha256": "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v" + } + }, + { + "ename": "reverse-im", + "commit": "f282ebbed8ad01b63b0e708ab273db51bf65fdbb", + "sha256": "0c0dxxpa2s6gvhi14zfb0rnb4i7jaqw627a7ngm5fzyh0r9himcf", + "fetcher": "github", + "repo": "a13/reverse-im.el", + "unstable": { + "version": [ + 20190428, + 1711 + ], + "commit": "e30815653aa81eac097f27be14886806d9df4ea4", + "sha256": "0i34q5bj5y0xnvc8d82w5vpfscl1nvqv584sd9kqpi81gy3qphrw" + } + }, + { + "ename": "reverse-theme", + "commit": "81f0f525680fea98e804f39dbde1dada887e8821", + "sha256": "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776", + "fetcher": "github", + "repo": "syohex/emacs-reverse-theme", + "unstable": { + "version": [ + 20141205, + 145 + ], + "commit": "8319d0d5342890a3530ffa4daafdb7c35feda1ca", + "sha256": "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "3105c950bcb51c662c79b59ca102ef662c2b0be0", + "sha256": "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h" + } + }, + { + "ename": "review-mode", + "commit": "f2f9e2667389577d0703874ca69ebe4800ae3e01", + "sha256": "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n", + "fetcher": "github", + "repo": "kmuto/review-el", + "unstable": { + "version": [ + 20190728, + 1435 + ], + "commit": "3066beb9f3b7ef64da870b829bec8fe73e84b07c", + "sha256": "1ql9ap1zil7hlv2vmqzcjvsky29cpgclbf32x88v9jx588ni2gwq" + } + }, + { + "ename": "reykjavik-theme", + "commit": "10bf153e2b84050304ba2532f5eb41c7a4e7632f", + "sha256": "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35", + "fetcher": "github", + "repo": "mswift42/reykjavik-theme", + "unstable": { + "version": [ + 20180823, + 1544 + ], + "commit": "2cd0043ae6d046f812a95bb26398ea23141beccc", + "sha256": "0rk0fw5b1lz7if779h3bngc86iix8v9k8bz3zw8icwfwmjsgg1fh" + } + }, + { + "ename": "rfc-mode", + "commit": "3a61d769cf7c61619a594337fe8a12ccc6a6fd6e", + "sha256": "0z7krcfdyr8hblz8dc7apqlpn6sj2zwrjw4wh86js8vf7fiv8svy", + "fetcher": "github", + "repo": "galdor/rfc-mode", + "unstable": { + "version": [ + 20190525, + 1910 + ], + "deps": [ + "helm" + ], + "commit": "e7d9e2f4cb9ff302231efe57af6fdc201e5b48f0", + "sha256": "0hx3754ids3i40hl7cb3s5xi5gy676856h9y6aj50f4g8il16jq1" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "deps": [ + "helm" + ], + "commit": "5cdf7172e307c0e23bb5342c61263d4439292ede", + "sha256": "091yqk257z19rs9mcy6b52ll87s85s7fbsd235kzqmacfcqyjsmi" + } + }, + { + "ename": "rg", + "commit": "9ce1f721867383a841957370946f283f996fa76f", + "sha256": "0i78qvqdznh1z3b0mnzihv07j8b9r86dc1lsa1qlzacv6a2i9sbm", + "fetcher": "github", + "repo": "dajva/rg.el", + "unstable": { + "version": [ + 20190403, + 1533 + ], + "deps": [ + "cl-lib", + "s", + "wgrep" + ], + "commit": "450a1e54fb7c690166e61856b0d2002a71ccdf10", + "sha256": "01v5zz9psvkqw4cgq7b8r0b7wakxa5df4ki34g3nislrhmqp4n3x" + }, + "stable": { + "version": [ + 1, + 7, + 0 + ], + "deps": [ + "cl-lib", + "s", + "wgrep" + ], + "commit": "77670a4bcdba138a0cef3fb12a20b1492dca902a", + "sha256": "0hpxkpyylzvzzvqc51ac0r89nv1jdymb8nmsb03sq1svsw5nyag9" + } + }, + { + "ename": "rhtml-mode", + "commit": "f9e14e9d8df9c2ce13e290a5f3d3bf9b247037f4", + "sha256": "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35", + "fetcher": "github", + "repo": "eschulte/rhtml", + "unstable": { + "version": [ + 20130422, + 1311 + ], + "commit": "a6d71b38a3db867ccf82999c99805db1a3a33c33", + "sha256": "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x" + } + }, + { + "ename": "rib-mode", + "commit": "c38c18f3eb75d559752fcd9956464fef890be728", + "sha256": "0qgbzrwbbgg4mzjb7yw85qs83b6hpldazip1cigywr46w7f81587", + "fetcher": "github", + "repo": "blezek/rib-mode", + "unstable": { + "version": [ + 20170726, + 1448 + ], + "commit": "97470158784c3c212e22e2c20b8471ee65ba59af", + "sha256": "0hln0hympmxmsci82ivc2rw289j1bmgdxns96m1ng1bl668bwag7" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "commit": "4172e902fd66f235184c0eb6db7fd4a73dbd0866", + "sha256": "0s9dyqv4yh0zxngay951g98g07029h51m4r2fc7ib2arw6srfram" + } + }, + { + "ename": "rich-minority", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc", + "fetcher": "github", + "repo": "Malabarba/rich-minority", + "unstable": { + "version": [ + 20190419, + 1136 + ], + "deps": [ + "cl-lib" + ], + "commit": "a03e693f6f9232cf75363aaaf1cb041f21675c19", + "sha256": "0nr5lazllp5qphllnmwrwiywkc5zd3a51ciwb8k0h8zw5axhp0v7" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "d33d2e357c8eb0b38624dbc51e8b953b08b0cc98", + "sha256": "1kn7c9qr9ykj68iqffzzmjsr6aazwac8cxb7j960sjb282rq0yyj" + } + }, + { + "ename": "right-click-context", + "commit": "f6963fc11d697b95ebbdaf7fe27c91a6229d08b6", + "sha256": "189nkxkc7lr2fm5qgmylmz6xv6mpphslj4fgpmr8ynnx9z3nxms2", + "fetcher": "github", + "repo": "zonuexe/right-click-context", + "unstable": { + "version": [ + 20190528, + 1832 + ], + "deps": [ + "cl-lib", + "ordinal", + "popup" + ], + "commit": "4b1a2cd2b3eaea2393d3696a36da8f42e386c23d", + "sha256": "1y0sa1k8pc8g6mzsqv3n34v2ziyvlr6l74409kh8673lp5r7cx1f" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "popup" + ], + "commit": "db92245cc494c295afa7c23ef1e1d9f76c20a27e", + "sha256": "109l1qj3k87iz3g89j9xf5gdrflr63lagp1qz7cz1p1ji4lycb4k" + } + }, + { + "ename": "rigid-tabs", + "commit": "c1cf98dff029d494007fe25d29bd8bcfecc5b8e6", + "sha256": "0623hhhykrxq702871s5p4vddkvx7jpj6hg5q0c9jkbvflz9n9y8", + "fetcher": "gitlab", + "repo": "wavexx/rigid-tabs.el", + "unstable": { + "version": [ + 20170903, + 1559 + ], + "commit": "eba84ceaba2e57e76ad2dfbb7a7154238a25d956", + "sha256": "18rba101m9vmjl4mf3x0k7wvbgn6qmay9la745vzpr3lx1f4nn98" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "c7c6b726806df7e8cb25a41b213a207850c91cb7", + "sha256": "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5" + } + }, + { + "ename": "rimero-theme", + "commit": "c6d07b0c021001195e6e0951c890566a5a784ce1", + "sha256": "0jbknrp9hc8s956cy2gqffxnx0fgnhmjqp2i4vyp0ywh45wrls5r", + "fetcher": "github", + "repo": "yveszoundi/emacs-rimero-theme", + "unstable": { + "version": [ + 20180901, + 1348 + ], + "commit": "a2e706c2b34f749019979a133f08a2d94a1104b3", + "sha256": "1kcvvaizggzi7s3dlh611bkirdf6y89kzddc273drdks705s01wh" + } + }, + { + "ename": "rinari", + "commit": "4b243a909faa71e14ee7ca4f307df8e8136e5d7c", + "sha256": "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0", + "fetcher": "github", + "repo": "eschulte/rinari", + "unstable": { + "version": [ + 20150709, + 640 + ], + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ], + "commit": "134438af8fbdfa9c8077267c768d273a9792b484", + "sha256": "0ndrqj7qsf9rky4v928803ib66p37vyhxgyc42vshx86q73v4cyg" + }, + "stable": { + "version": [ + 2, + 11 + ], + "deps": [ + "inf-ruby", + "jump", + "ruby-compilation", + "ruby-mode" + ], + "commit": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk" + } + }, + { + "ename": "rings", + "commit": "113118947e33ab0c8004dbe9b188eba2ea282356", + "sha256": "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7", + "fetcher": "github", + "repo": "konr/rings", + "unstable": { + "version": [ + 20160531, + 2027 + ], + "commit": "3590b222eb80652cbd27866f066bd3571d86edfc", + "sha256": "01mfiyq4cr2qdmvaxid8a094p20w97n2nsiy9vyng77vcmv36sd5" + } + }, + { + "ename": "ripgrep", + "commit": "e8d789818876e959a1a59690f1dd7d4efa6d608b", + "sha256": "1j9c3mhcyhs4xf44z6fnlvmb81pps25bp43gdqvp0954i068mgah", + "fetcher": "github", + "repo": "nlamirault/ripgrep.el", + "unstable": { + "version": [ + 20190215, + 841 + ], + "commit": "40e871dcc4519a70981e9f28acea304692a60978", + "sha256": "0snn12iibz5frsx6yk6c31hb8knvsd568ghw9jjka5vxdjzap7p9" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "73595f1364f2117db49e1e4a49290bd6d430e345", + "sha256": "1a5rdpmvsgsjlc9sywism9pq7jd6n9qbcdsvpbfkq1npwhpifkbj" + } + }, + { + "ename": "riscv-mode", + "commit": "0853b4b678be7d1906a2f7946bfa1072590faf72", + "sha256": "0496b7xwshmk3gv6s5hggbm9qd60a05racj3xcsxwqzak359lk2b", + "fetcher": "github", + "repo": "AdamNiederer/riscv-mode", + "unstable": { + "version": [ + 20170804, + 1521 + ], + "commit": "99febf97d1fa9441e8dada94fe30c2aa439c9749", + "sha256": "119p926ypz525xdh82m2d1saky1qh5va224fxyqisfbwfrc17arh" + } + }, + { + "ename": "rjsx-mode", + "commit": "b83be7efdef2457e1320fe3dec46484fbd20263c", + "sha256": "0w3ij8k8058pfw443chm1kn30ia0f5rfbg03w9ddw86xb3wa2q0b", + "fetcher": "github", + "repo": "felipeochoa/rjsx-mode", + "unstable": { + "version": [ + 20190614, + 2215 + ], + "deps": [ + "js2-mode" + ], + "commit": "0e7fa6b4facdec4f85a7a8865bdf59dfd57217b5", + "sha256": "0s0871sx3ch09kgvbcp9na4zdrfrda62xjq8m9knbq5vnj8q8qpi" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "js2-mode" + ], + "commit": "f7d31589acd8a2dfcf4ca8851d2384e4f90364d0", + "sha256": "057pgylflzd69ydqz41g8wisvixypdrfn8yv81mfixh3iyq740y8" + } + }, + { + "ename": "rmsbolt", + "commit": "798e7978f3ee32b3667956da8dc2dc7f005b6996", + "sha256": "0mgzc4q9mmnqjafp2i9qp0plc7qnh4kmkgjs1c7frk9x07navscf", + "fetcher": "gitlab", + "repo": "jgkamat/rmsbolt", + "unstable": { + "version": [ + 20190508, + 609 + ], + "commit": "fcefc0509dd0a4ec2e02020c83e1c4a1101ef903", + "sha256": "1zbpp4ilf9kvjnxc0cgs90l02lmpp6pa905cahi441l2pn71kbld" + } + }, + { + "ename": "robe", + "commit": "673f920d02fe761bc080b73db7d37dbf5b6d86d8", + "sha256": "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk", + "fetcher": "github", + "repo": "dgutov/robe", + "unstable": { + "version": [ + 20190521, + 58 + ], + "deps": [ + "inf-ruby" + ], + "commit": "8190cb7c7beb8385dd3abf6ea357f33d8981ae8a", + "sha256": "1lqckmfxm2csh0as22bwf4rvbn5rwqry18xx9m5nfhfl57360q75" + }, + "stable": { + "version": [ + 0, + 8, + 2 + ], + "deps": [ + "inf-ruby" + ], + "commit": "1908afd42ce05fc8b8bbf3f38301680264b68d19", + "sha256": "0qw18wi54yg971n4wnjqkd8lqj5lbs9ra8bvmngif2bzhqlfdsbn" + } + }, + { + "ename": "robots-txt-mode", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "00hxz4mygcxg7d8m2i4cm0bl82v3hw8wb4m8vv7g7fqkjp32c9qc", + "fetcher": "github", + "repo": "emacs-php/robots-txt-mode", + "unstable": { + "version": [ + 20180919, + 1541 + ], + "commit": "f8fc7ee50a3d5d7a2838772ed298fb69b9051c5c", + "sha256": "11qyzsfp2kmi6sd24m30y537mic9xg7y29npninrjihr6k9rw3a2" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "431efda01e08426d671d51fcf1f98cfbc87f8c16", + "sha256": "1mpg62ai721aasd1lm5xwcygpkyh9kp4x5zvmd62agmp3i8s78gc" + } + }, + { + "ename": "roguel-ike", + "commit": "2db1979e039e466268ca7c264988792d3046e19a", + "sha256": "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8", + "fetcher": "github", + "repo": "stevenremot/roguel-ike", + "unstable": { + "version": [ + 20160120, + 302 + ], + "deps": [ + "popup" + ], + "commit": "706dcb0687e8016d7d776f9d9e5ace9fdbbca43c", + "sha256": "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "popup" + ], + "commit": "706dcb0687e8016d7d776f9d9e5ace9fdbbca43c", + "sha256": "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z" + } + }, + { + "ename": "rope-read-mode", + "commit": "7bf40e9d550fba9ded11b99032d78c69af21a6f3", + "sha256": "1xbbf3slgil19p34k5wsnvq60y64wkz40153sh8y1gxlssmy55fy", + "fetcher": "gitlab", + "repo": "marcowahl/rope-read-mode", + "unstable": { + "version": [ + 20190715, + 1753 + ], + "commit": "86938769fe8c4749ebd11b0fd839a871ce6544c6", + "sha256": "1n9p801sif4sn0n2wmwr63zfz9cx3637ail16844an7bw612wzlj" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "commit": "71e475ab35555e0a1eca26d73acf1ced911e422e", + "sha256": "0x3mmf4gq4d0cqfqbkrrpwhayvmplacck0zc9nlzcn35y17jzpcz" + } + }, + { + "ename": "ros", + "commit": "7df44ae0ba89a2c4089a39b212784a6a359f1521", + "sha256": "1frlg1zn9ip2s3ija20rkmf880smk01jz6jclqkygx6kd4fsbi9m", + "fetcher": "github", + "repo": "DerBeutlin/ros.el", + "unstable": { + "version": [ + 20190720, + 1439 + ], + "commit": "ef443866c2f9ad6b2099fe04552a71c654799808", + "sha256": "071k37019v7fx75ssw823rsgzgmicgpnm641qdfz47zagg9b1xg6" + } + }, + { + "ename": "rotate", + "commit": "7d92e66cad586d4dc6b1de12d1b41b818b5232c2", + "sha256": "11a0svvfq29cb4630jq0hz19xk9jfhfjnssm7vg0dnlzpxqi3vif", + "fetcher": "github", + "repo": "daichirata/emacs-rotate", + "unstable": { + "version": [ + 20160909, + 836 + ], + "commit": "091b5ac4fc310773253efb317e3dbe8e46959ba6", + "sha256": "0msjn7ays71mcw6qmdk0mpjp1rvd7fwz917vmvlcd7cpmvkyfbds" + } + }, + { + "ename": "roy-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1r49c1v0xjkrpxmq0k2l2nrx95n06b7hbpmr1n7nkil2bxdq275i", + "fetcher": "github", + "repo": "folone/roy-mode", + "unstable": { + "version": [ + 20121208, + 1158 + ], + "commit": "0416f561edbc6b4a29fced8be84d2527a9613d65", + "sha256": "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r" + } + }, + { + "ename": "rpm-spec-mode", + "commit": "bb7e188fffda3d4e42690511775e5e32a11e1b34", + "sha256": "1ygk0pdhq1hvgzd173h79lxb04b9lmvq4hi70qf9244bqbm0m182", + "fetcher": "github", + "repo": "stigbjorlykke/rpm-spec-mode", + "unstable": { + "version": [ + 20160710, + 1136 + ], + "commit": "c1c38050c48ea330c7cea632b8785d66daeefb2b", + "sha256": "0427kcvf2ljhzwxskn3jzk0ncrl3f9zcz2sm83d9pmhh5jax2gch" + } + }, + { + "ename": "rpn-calc", + "commit": "47d5b3c931cdbc2351e01d15e2b98c78081c9506", + "sha256": "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs", + "fetcher": "github", + "repo": "zk-phi/rpn-calc", + "unstable": { + "version": [ + 20181121, + 1154 + ], + "deps": [ + "popup" + ], + "commit": "27279f89c80eb3f28ff9f981eff06502056943e2", + "sha256": "0klzhscdvzwpcrfkq2v28in5fv01zqabgxdrziyhj666sly1scjq" + } + }, + { + "ename": "rsense", + "commit": "e2149ce3baef9ac01d5b2e8b1a933a3e1206015f", + "sha256": "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5", + "fetcher": "github", + "repo": "m2ym/rsense", + "unstable": { + "version": [ + 20100511, + 405 + ], + "commit": "8b5ee58318747ca1dde84ee41d48c4f50175cf35", + "sha256": "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "e4297052ef32d06237e8bd1534a0caf70a34ad28", + "sha256": "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh" + } + }, + { + "ename": "rspec-mode", + "commit": "cd83e61b10da20198de990aa081b47d3b0b44d43", + "sha256": "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx", + "fetcher": "github", + "repo": "pezra/rspec-mode", + "unstable": { + "version": [ + 20190609, + 1123 + ], + "deps": [ + "cl-lib", + "ruby-mode" + ], + "commit": "bc2618a71e0bbef60258cf59bad0796f469a2685", + "sha256": "0ivcp2gvysr6lx0dv2d9g4bsc5sb6h6qjn5b0yr67lbs0r6wrvva" + }, + "stable": { + "version": [ + 1, + 11 + ], + "deps": [ + "cl-lib", + "ruby-mode" + ], + "commit": "e289e52ec4b3aa1caf35957d721e5568eca2a3bb", + "sha256": "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp" + } + }, + { + "ename": "rtags", + "commit": "3dea16daf0d72188c8b4043534f0833fe9b04e07", + "sha256": "0s5m4zjvnc1k4gkkizbs4ysvzzbfh45717pksg9bnyzwx5lcw5yd", + "fetcher": "github", + "repo": "Andersbakken/rtags", + "unstable": { + "version": [ + 20190621, + 2006 + ], + "commit": "3c071313d743b07a2ea4a02655f23cdc7010f0c2", + "sha256": "15gji4c4q19n7df7vsxigcyfc4pi95cq3arrcckmmm6r7ckb4y4w" + }, + "stable": { + "version": [ + 3, + 23 + ], + "commit": "7169ed577d676690a3c6f0025b54e8477d80eacf", + "sha256": "1i94dizg3wvkvq8c2pf5bzkx8zwzcfi4p3l73c779y145bygssnq" + } + }, + { + "ename": "rtm", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1bwbaps76pawz73fs7nzkvbii9d57zmfdccpm18dwn6phaqxbhyc", + "fetcher": "github", + "repo": "pmiddend/emacs-rtm", + "unstable": { + "version": [ + 20180329, + 1508 + ], + "deps": [ + "cl-lib" + ], + "commit": "3e3d09387cb84801343ecca8fb02e82f213e7bbe", + "sha256": "0cc07lhh27i1ra4alrwb6w322ddi6hw0498nkzf388arhn10h3wv" + } + }, + { + "ename": "rubik", + "commit": "00946ed21b0f05b753c792863f6bcc99c26c32a3", + "sha256": "07bbh5vjw3jdxf06lxqm45y8ijcai391mf97xw5c29z33vhqs267", + "fetcher": "github", + "repo": "Kurvivor19/rubik-mode", + "unstable": { + "version": [ + 20180222, + 2014 + ], + "deps": [ + "cl-lib" + ], + "commit": "c8dab1726463dbc9042a0b00186e4a8df02eb868", + "sha256": "13razzmk70h5sd69ms0a3ljr285zcad0wnrqkfxbgi5rnppqlkh1" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "calc", + "cl-lib" + ], + "commit": "7ec955639865ca8e99a941843e19b12be5015a47", + "sha256": "0fdjg6gpg45m5myq517vkprmvh50xw10dqa8vwr9hfz2z8dy18ja" + } + }, + { + "ename": "rubocop", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "07ma4fv015wzpj5j4rdb0ckwwmhkxs3k5vy33qxgwghqmn6xby6x", + "fetcher": "github", + "repo": "rubocop-hq/rubocop-emacs", + "unstable": { + "version": [ + 20190326, + 1424 + ], + "commit": "03bf15558a6eb65e4f74000cab29412efd46660e", + "sha256": "0bl1l2qbpdknn93wr95a49gdnpl3pwpjj3rka3s44hvihny9p8q0" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "980bedb455e3551d35a212fae515c054888907c1", + "sha256": "152ara2p59imry2ymfnk5mycbc07rblcmfmqjgm5fijb2x94xv8p" + } + }, + { + "ename": "rubocopfmt", + "commit": "ac01edffceea771d8fe41326e28dd9881f1661ab", + "sha256": "06ficv1r3axzi7q659pk1m3gbpf44nd2ir2ikmi8mr8rq44sqps0", + "fetcher": "github", + "repo": "jimeh/rubocopfmt.el", + "unstable": { + "version": [ + 20181009, + 1703 + ], + "deps": [ + "cl-lib" + ], + "commit": "fc96145719a65b2551339d087ddd95b72e14646f", + "sha256": "12sfzvb5lf20d4kqa1fzhz8s48lgr8w0x7qimjcy5c75yjb123wl" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "43ffa9d9c3dcc0574038bebd049102642f50b290", + "sha256": "0vzpfd9xv80ph9xz8psczz46blhsdnac8zh5i944klkxgqdw7x1x" + } + }, + { + "ename": "ruby-compilation", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc", + "fetcher": "github", + "repo": "eschulte/rinari", + "unstable": { + "version": [ + 20150709, + 640 + ], + "deps": [ + "inf-ruby" + ], + "commit": "134438af8fbdfa9c8077267c768d273a9792b484", + "sha256": "0ndrqj7qsf9rky4v928803ib66p37vyhxgyc42vshx86q73v4cyg" + }, + "stable": { + "version": [ + 2, + 11 + ], + "deps": [ + "inf-ruby" + ], + "commit": "e2ed2fa55ac3435a86b1cf6a4f2d29aebc309135", + "sha256": "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk" + } + }, + { + "ename": "ruby-electric", + "commit": "5fd5fa797a813e02a6433ecbe2bca1270a383753", + "sha256": "02xskivi917l8xyhrij084dmzwjq3knjcn65l2iwz34s767fbwl2", + "fetcher": "github", + "repo": "knu/ruby-electric.el", + "unstable": { + "version": [ + 20170810, + 1130 + ], + "commit": "3553448a780a1ea5c3b0e9becd820d4762876593", + "sha256": "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v" + }, + "stable": { + "version": [ + 2, + 3, + 1 + ], + "commit": "3553448a780a1ea5c3b0e9becd820d4762876593", + "sha256": "0h47lfgxjcyyl8gb1w7l8j8h65s3lp1hsq742sl7a1gf5y6bbm3v" + } + }, + { + "ename": "ruby-end", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg", + "fetcher": "github", + "repo": "rejeep/ruby-end.el", + "unstable": { + "version": [ + 20141215, + 1223 + ], + "commit": "a136f75abb6d5577ce40d61dfeb778c2e9bb09c0", + "sha256": "1f530gaiy010qln51g83m1llazhyfi8ws0lvsb982fhi4dh1xfk5" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "648b81af136a581bcef387744d93c011d9cdf54b", + "sha256": "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds" + } + }, + { + "ename": "ruby-extra-highlight", + "commit": "73488b0aea4eb470a1f235fece0753797bfd7e35", + "sha256": "0dybf39yv0yzy8bsz9k5s64033id6hq4v268m11la4bp5fbv5r37", + "fetcher": "github", + "repo": "Lindydancer/ruby-extra-highlight", + "unstable": { + "version": [ + 20171106, + 1933 + ], + "commit": "83942d18eae361998d24c1c523b308eea821f048", + "sha256": "18mq0ap7f0b22cdp2wdj0y2fqsahm2ngf7fvdy0mkkfs3818awlp" + } + }, + { + "ename": "ruby-factory", + "commit": "3ce422ccc34eb325ce432284e44af48607251da2", + "sha256": "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37", + "fetcher": "github", + "repo": "sshaw/ruby-factory-mode", + "unstable": { + "version": [ + 20160102, + 721 + ], + "deps": [ + "inflections" + ], + "commit": "2bb7ccc2fccb5257376a989aa395bc7b9eb1d55d", + "sha256": "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd" + } + }, + { + "ename": "ruby-hash-syntax", + "commit": "c7d21a43a4bf267507bdc746ec9d0fd82049c0af", + "sha256": "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5", + "fetcher": "github", + "repo": "purcell/ruby-hash-syntax", + "unstable": { + "version": [ + 20190109, + 2227 + ], + "commit": "577ab383c142e3a0697ce73480158a8b489038da", + "sha256": "06hm4pl3mzlyx4d3v94rm2w33q9wnwpdl7qas3fnks691d9apg7x" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "89fc364a837d7a78ecce34380f09c073a83e30e0", + "sha256": "1nwf3681fa6lfqr14n9wihckpi220hvamv1ppzmrhn4k49vxljy8" + } + }, + { + "ename": "ruby-interpolation", + "commit": "ca7bf43ef8893bf04e9658390e306ef69e80a156", + "sha256": "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp", + "fetcher": "github", + "repo": "leoc/ruby-interpolation.el", + "unstable": { + "version": [ + 20131112, + 1652 + ], + "commit": "1978e337601222cedf00e117bf4b5cac15d1f203", + "sha256": "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5" + } + }, + { + "ename": "ruby-refactor", + "commit": "8d223ef5b9e51265c510f1cf7888b621e47bfdcf", + "sha256": "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby", + "fetcher": "github", + "repo": "ajvargo/ruby-refactor", + "unstable": { + "version": [ + 20160214, + 1650 + ], + "deps": [ + "ruby-mode" + ], + "commit": "e6b7125878a08518bffec6942df0c606f748e9ee", + "sha256": "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi" + } + }, + { + "ename": "ruby-test-mode", + "commit": "f781a76a519afc0222cdf7255822a23e33745deb", + "sha256": "08x9pskxz1hvvqablx5mdp1g54n28kpmd10qwrasq2zjbdjghj48", + "fetcher": "github", + "repo": "ruby-test-mode/ruby-test-mode", + "unstable": { + "version": [ + 20190412, + 909 + ], + "deps": [ + "pcre2el", + "ruby-mode" + ], + "commit": "e805a81c3ea787f3c82dbb252c21d747be20bc7a", + "sha256": "07j74hgq3d4y6m992y98y9n87ivk8a2wb3zlahkj32slkcqfz3kd" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "7d3c04b60721665af93ffb4abc2a7b3191926431", + "sha256": "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f" + } + }, + { + "ename": "ruby-tools", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy", + "fetcher": "github", + "repo": "rejeep/ruby-tools.el", + "unstable": { + "version": [ + 20151209, + 1615 + ], + "commit": "6b97066b58a4f82eb2ecea6434a0a7e981aa4c18", + "sha256": "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "6e7fb376085bfa7010ecd3dfad63adacc6e2b4ac", + "sha256": "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k" + } + }, + { + "ename": "rufo", + "commit": "123b89e06a44ef45150ca7243afc41302dfb6c6e", + "sha256": "0pxsifcxic3q54rqj0jbj20hq7f2s4icl57lligf9g0w23qzj239", + "fetcher": "github", + "repo": "danielma/rufo.el", + "unstable": { + "version": [ + 20170718, + 1416 + ], + "commit": "85a6d80fb05fef396a8029b8f944c92a53faf8fe", + "sha256": "11klircrdc9z9jfksd6rjgwbb775mziss67mw74673b8iva8n1y7" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "4e7413fafd0320f30190ae9835ab021cf7a9ebdc", + "sha256": "10gwr479q4kd6ndp9r2nzj7rzap21q3f0l3icrviah9l5xzdx2x0" + } + }, + { + "ename": "rum-mode", + "commit": "0c9f8ce2dee376f1f34e89e9642c472a148fca77", + "sha256": "1838w8rk5pgp1hn7a0m83mfw9jin4qv5mkyl68hl3gj7g9lhn7sd", + "fetcher": "github", + "repo": "rumlang/rum-mode", + "unstable": { + "version": [ + 20180127, + 22 + ], + "commit": "893b1a26244ef6ea82833a9afbc13cb82c0cfb53", + "sha256": "0lgahv25a9b2dfgkcm9ipyziiqnr3sb9l2dvzm35khwf3m8dwxgq" + } + }, + { + "ename": "run-stuff", + "commit": "0d6e9ce2acd859b887f7e161f4b9969be1a0b8ef", + "sha256": "0zx96m6cval5g4p0lhy9kpyycp2jygaq3y2njhkpij9gl4nb2ll2", + "fetcher": "github", + "repo": "ideasman42/emacs-run-stuff", + "unstable": { + "version": [ + 20180209, + 748 + ], + "commit": "ed42a7bc9a197ccf1ca87f9937bf98f0a9ed3f92", + "sha256": "1w49v868n3723q6887y4bc5q8spd7xync5d581vvxdpi75qgvr0z" + } + }, + { + "ename": "runner", + "commit": "f3a4e051ab45b8036b91aa0c50bd3f93cd85e9d0", + "sha256": "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx", + "fetcher": "github", + "repo": "thamer/runner", + "unstable": { + "version": [ + 20160524, + 743 + ], + "commit": "a211d57ddc600410d07a8b534920ba905b093d87", + "sha256": "1ddf5jydpc43wgvw4a669wifij71b4r8zfazcqfdpyfh1j4m591b" + }, + "stable": { + "version": [ + 1, + 8 + ], + "commit": "a211d57ddc600410d07a8b534920ba905b093d87", + "sha256": "1ddf5jydpc43wgvw4a669wifij71b4r8zfazcqfdpyfh1j4m591b" + } + }, + { + "ename": "runtests", + "commit": "95c49160919d310256501d7c71102f8367aae5aa", + "sha256": "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb", + "fetcher": "github", + "repo": "sunesimonsen/emacs-runtests", + "unstable": { + "version": [ + 20150807, + 831 + ], + "commit": "ed90249f24cc48290018df48b9b9b7172440be3e", + "sha256": "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6" + } + }, + { + "ename": "russian-holidays", + "commit": "d4830900e371e7036225ea434c52204f4d2481a7", + "sha256": "0lawjwz296grbvb4a1mm1j754q7mpcanyfln1gqxr339kqx2aqd8", + "fetcher": "github", + "repo": "grafov/russian-holidays", + "unstable": { + "version": [ + 20170109, + 2140 + ], + "commit": "b285a30f29d85c48e3ea4eb93972d34a090c167b", + "sha256": "1mz842gvrscklg2w2r2q2wbj92qr31h895k700j3axqx6k30ni0h" + }, + "stable": { + "version": [ + 0, + 4 + ], + "commit": "b285a30f29d85c48e3ea4eb93972d34a090c167b", + "sha256": "1mz842gvrscklg2w2r2q2wbj92qr31h895k700j3axqx6k30ni0h" + } + }, + { + "ename": "rust-auto-use", + "commit": "a9584d883934e36400ec1924755df34149ad2f9f", + "sha256": "0jdg8xgxry0h9nbb9m446gpw54rymw3152n84lvsg5bv51861114", + "fetcher": "github", + "repo": "vmalloc/rust-auto-use.el", + "unstable": { + "version": [ + 20181125, + 637 + ], + "commit": "d924505ecd954625dcb2d56dfba97111dc6a17fa", + "sha256": "1yw9l13dgkfsdv4kgpbvzx12g8bqycclgq2gk4b1r29mxy72wnpq" + } + }, + { + "ename": "rust-mode", + "commit": "8f6e5d990d699d571dccbdeb13327b33389bb113", + "sha256": "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc", + "fetcher": "github", + "repo": "rust-lang/rust-mode", + "unstable": { + "version": [ + 20190517, + 2037 + ], + "commit": "c62185ae1c6edf0335261f169241eb8ee9713ad5", + "sha256": "0jq8hb8j484vqnd743d2azw4zg1gn2j0l6h60bd0vcqd2hgag1nw" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "106aeab800fb3404baf231845d3e3549ec235afa", + "sha256": "0bcrklyicxh032rrp585rl5mxd26nb61dp6r5bl935rlcmxzsczh" + } + }, + { + "ename": "rust-playground", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0ml0zr9vz2vjd9wr0v706w4v4qqfzpa56rdzfak2kb5llx53j89v", + "fetcher": "github", + "repo": "grafov/rust-playground", + "unstable": { + "version": [ + 20180807, + 1158 + ], + "commit": "092c8b11d62dea23953a004744833092bac85fe1", + "sha256": "0n2c1pjbvy46ic0k84jd3ffwwb5hibjqc1wv7knzkldi5agigfsh" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "092c8b11d62dea23953a004744833092bac85fe1", + "sha256": "0n2c1pjbvy46ic0k84jd3ffwwb5hibjqc1wv7knzkldi5agigfsh" + } + }, + { + "ename": "rustic", + "commit": "716c14a2ed8f5817c09c1ff530a4980c17b44bb3", + "sha256": "13bwrdqmm6xb34k8r72c0r3b9aym5dwsalp63bkfh9k9kq9hic0n", + "fetcher": "github", + "repo": "brotzeit/rustic", + "unstable": { + "version": [ + 20190721, + 1342 + ], + "deps": [ + "dash", + "f", + "ht", + "let-alist", + "markdown-mode", + "projectile", + "s", + "seq", + "spinner", + "xterm-color" + ], + "commit": "af0c3b88cb2fc4fabd66209c4dd91a520d924ec9", + "sha256": "0g9z58cxq4qjmgil1kzsnmf0fyp07db77l2alp1f25cgdfd92nbs" + } + }, + { + "ename": "rvm", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8", + "fetcher": "github", + "repo": "senny/rvm.el", + "unstable": { + "version": [ + 20150402, + 1442 + ], + "commit": "134497bc460990c71ab8fa75431156e62c17da2d", + "sha256": "1z5psj8mfp0fw8fx6v1sibf8cxhz30yyiwjw17w80f9c24g0j4ii" + }, + "stable": { + "version": [ + 1, + 4, + 0 + ], + "commit": "8e45a9bad8e317ff195f384dab14d3402497dc79", + "sha256": "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm" + } + }, + { + "ename": "ryo-modal", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "06pm6grsdcldi1khbjfjp7lpi6f6x3pa5ikspp0xdwijnmi0xrrf", + "fetcher": "github", + "repo": "Kungsgeten/ryo-modal", + "unstable": { + "version": [ + 20180331, + 818 + ], + "commit": "42f874467dfdce59b511f883496ce2624b133dd7", + "sha256": "0k9nmi014vb9c8rymy3w8xbnj1q85xlslpblacz78iqn1kr6wy1z" + } + }, + { + "ename": "s", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0dars9212z0yv97mj4615h23vd22vy8b6cw2n433z9jhif3aybqa", + "fetcher": "github", + "repo": "magnars/s.el", + "unstable": { + "version": [ + 20180406, + 808 + ], + "commit": "03410e6a7a2b11e47e1fea3b7d9899c7df26435e", + "sha256": "074ny8y68fhnknkjxvrijrk534xzdiwip8wkifxfbwv3va315x83" + }, + "stable": { + "version": [ + 1, + 12, + 0 + ], + "commit": "12f116d58ac03706496bd682c6449b452681874e", + "sha256": "1g8mqd13llj007al4nlxxx4z2lcsg3wk970mgjn0avwrhjjgdmmv" + } + }, + { + "ename": "s-buffer", + "commit": "f1bf91527219e7afc8e113134a958f3adb862a5a", + "sha256": "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m", + "fetcher": "github", + "repo": "nicferrier/emacs-s-buffer", + "unstable": { + "version": [ + 20130605, + 2124 + ], + "deps": [ + "noflet", + "s" + ], + "commit": "f95d234282377f00a2c3a9846681080cb95bb1df", + "sha256": "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85" + } + }, + { + "ename": "s12cpuv2-mode", + "commit": "6c1b9bbdc4deb17636270c7f2be0b43b647c695a", + "sha256": "0mrcf5s7vmkyrsdka7qd2vfcmdy8hzf6a6g14la88rxrv4chv29s", + "fetcher": "github", + "repo": "AdamNiederer/s12cpuv2-mode", + "unstable": { + "version": [ + 20171013, + 2051 + ], + "commit": "b17d4cf848dec1e20e66458e5c7ff77a2c051a8c", + "sha256": "1fc132gv48xwrxiw139kc9f5wkhjgsgqdfm6b7v97xj5025zg6hr" + } + }, + { + "ename": "s3ed", + "commit": "32ba78167bd6908b49f340f6da48643ac38f25f2", + "sha256": "08scv3aqnidz28rad5npz7b4pz9dx05rs72qkp3ybkk2vhqf2qwa", + "fetcher": "github", + "repo": "mattusifer/s3ed", + "unstable": { + "version": [ + 20180204, + 1349 + ], + "deps": [ + "dash", + "seq" + ], + "commit": "13503cb057bed29cb00a14dffe4472b5cb7748ad", + "sha256": "1ak5nmay12s4ipmvm1a36kyny05xhzmj7wp6dry391db9n7g2wy0" + } + }, + { + "ename": "sackspace", + "commit": "073e92e05c4bd6197a5ad24f470b21a97f5bb7b8", + "sha256": "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z", + "fetcher": "github", + "repo": "cofi/sackspace.el", + "unstable": { + "version": [ + 20130719, + 956 + ], + "commit": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl" + }, + "stable": { + "version": [ + 0, + 8, + 2 + ], + "commit": "fd0480eaaf6d3d11fd30ac5feb2da2f4f7572708", + "sha256": "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl" + } + }, + { + "ename": "sage-shell-mode", + "commit": "eb875c50c2f97919fd0027869c5d9970e1eaf373", + "sha256": "0ivqiigmp9cf88j4xapzanjpbx692r70wb4i25mnppqsi3jlwxdv", + "fetcher": "github", + "repo": "sagemath/sage-shell-mode", + "unstable": { + "version": [ + 20180215, + 835 + ], + "deps": [ + "cl-lib", + "deferred", + "let-alist" + ], + "commit": "9f07ff835e8d19afe571dbe414afb690c7b1cb5c", + "sha256": "07al41ir1ab0z2m2acvx63scr33bfp3asshjl05shs4j9d4bkmdp" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "cl-lib", + "deferred", + "let-alist" + ], + "commit": "e8bc089e8dfd76f688160e2ac77aee985afeade7", + "sha256": "166plwg9ggivr3im0yfxw8k6m9ral37jzznnb06kb6g0zycb4aps" + } + }, + { + "ename": "sailfish-scratchbox", + "commit": "e76261e7dffcb607839440843b085709c2c90b26", + "sha256": "1s0glsi4fm6is7fv9vy1h14frq8a4bgahkc8w08vqfnpiin2r567", + "fetcher": "github", + "repo": "vityafx/sailfish-scratchbox.el", + "unstable": { + "version": [ + 20171202, + 1332 + ], + "commit": "bb5ed0f0b0cd72f2eb1af065b7587ec81866b089", + "sha256": "1b53mdqgcmjay3i3fnxnycv8crqi20yvyv57ybgs2ikfl3v282h2" + } + }, + { + "ename": "salesforce-utils", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0b70w92zghid6n0ba28dh5r3pckr8jsd1743qyi8vj04ih1dns5i", + "fetcher": "github", + "repo": "grimnebulin/emacs-salesforce", + "unstable": { + "version": [ + 20160814, + 154 + ], + "deps": [ + "cl-lib" + ], + "commit": "73328baf0fb94ac0d0de645a8f6d42e5ae27f773", + "sha256": "1zsznz9pn9dj672jii6wcvs47yqyxv3dsm5qy1dax1d6gvvbf4zq" + } + }, + { + "ename": "salt-mode", + "commit": "9dcf1a93a06fc42581521c88cfd988b03bedc000", + "sha256": "1n7i9d6qpjsdcgbzmbf63y4c7ggxh5wsim8fd0casnrq9bl7ssym", + "fetcher": "github", + "repo": "glynnforrest/salt-mode", + "unstable": { + "version": [ + 20181225, + 1157 + ], + "deps": [ + "mmm-jinja2", + "mmm-mode", + "yaml-mode" + ], + "commit": "5ed02dabe0c5c58f51959a48b559f7fc5425ea2c", + "sha256": "13xz5kfq4kgs94bx6ygl1b26j66l4bjhkvrcv40cvi5mpik2lp98" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "mmm-jinja2", + "mmm-mode", + "yaml-mode" + ], + "commit": "e14ed8f2ce0ab7a783c4341879ec8c003e2b5c81", + "sha256": "19gw35qv13f2r4wif5fgqfhrph2r320n81faxx8980zds28x2q0x" + } + }, + { + "ename": "sane-term", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "08b8zlr8qzxfrpg9lqiyam3sb8a8rzak79ra4r6ljjppyj4zmwi7", + "fetcher": "github", + "repo": "adamrt/sane-term", + "unstable": { + "version": [ + 20181130, + 101 + ], + "commit": "ae0b3c024b66275f22809e2b41f428b01c259b96", + "sha256": "1468byxxd0ysqzmi9ssypfhfyqrjgj5w7sx42qgw66m57sis8ra3" + } + }, + { + "ename": "sass-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800", + "fetcher": "github", + "repo": "nex3/sass-mode", + "unstable": { + "version": [ + 20190502, + 53 + ], + "deps": [ + "cl-lib", + "haml-mode" + ], + "commit": "247a0d4b509f10b28e4687cd8763492bca03599b", + "sha256": "1nhk12lhvkwdk8s8fx33p6rssi0gcfx2zkanq23rz6k28v5zi5yp" + }, + "stable": { + "version": [ + 3, + 0, + 18 + ], + "deps": [ + "haml-mode" + ], + "commit": "26a66e331b507fb420e3bb7d0a6a8fbb04294343", + "sha256": "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln" + } + }, + { + "ename": "sauron", + "commit": "9d30dcc4715422133e1bb00ad7a8e25b060387e4", + "sha256": "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb", + "fetcher": "github", + "repo": "djcb/sauron", + "unstable": { + "version": [ + 20181216, + 1200 + ], + "commit": "e20eb21c93492a7c9e89579409ae5a07f77aa9fd", + "sha256": "0sm69gr05y44zxmdzyydbyf5yw4lhxszq3zgz4mflcnb544kkrj3" + }, + "stable": { + "version": [ + 0, + 10 + ], + "commit": "a9877f0efa9418c41d25002b58d1c2f8c69ec975", + "sha256": "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml" + } + }, + { + "ename": "save-load-path", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2", + "fetcher": "github", + "repo": "rubikitch/save-load-path", + "unstable": { + "version": [ + 20140206, + 1214 + ], + "commit": "6cb763a37e2b8af505bff2bcd11fd49c9ea04d66", + "sha256": "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm" + } + }, + { + "ename": "save-visited-files", + "commit": "3f5979e2c2dbfc4e8e3b4d2881cf860c26f63db5", + "sha256": "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd", + "fetcher": "github", + "repo": "nflath/save-visited-files", + "unstable": { + "version": [ + 20190430, + 1508 + ], + "commit": "7eb71a6c4f9cb770b387fcef80231d9a9f648188", + "sha256": "01ampk085k0rb0bw85imwbs44p4wp20giiwwpbrv6f97bh1065m2" + } + }, + { + "ename": "savekill", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h", + "fetcher": "github", + "repo": "rubikitch/savekill", + "unstable": { + "version": [ + 20140418, + 229 + ], + "commit": "67fc94e3d8fe8ce3ca16f90518f6a46479b63e34", + "sha256": "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm" + } + }, + { + "ename": "say-what-im-doing", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "0wi7318q7mms4wjbzhnsw298bjh7g957dnra0bvg87vv48pz3yfp", + "fetcher": "github", + "repo": "Benaiah/say-what-im-doing", + "unstable": { + "version": [ + 20160706, + 1931 + ], + "commit": "5b2ce6783b02805bcac1107a149bfba3852cd9d5", + "sha256": "0wy4hrc44ajl88krp6qy40szl2kl2wc3xjz3y4n250d1v81k25xi" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "4acc16360a29646040b51db158ba7fdeb711449d", + "sha256": "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf" + } + }, + { + "ename": "sayid", + "commit": "9a15a17a5aa78aed72958b2a1bde53f0c0ab5be7", + "sha256": "065mxb2la3dq2zqyb8dfksb18fpqym04nnax5rrp19izcw488qsm", + "fetcher": "github", + "repo": "clojure-emacs/sayid", + "unstable": { + "version": [ + 20181223, + 835 + ], + "deps": [ + "cider" + ], + "commit": "559a335926c12b37ff2928097b3e7eaefb88920d", + "sha256": "02h1dkzgs6439l2fjflkgvq40gvb353y47zhlasfqxy9cjj76d22" + }, + "stable": { + "version": [ + 0, + 0, + 17 + ], + "deps": [ + "cider" + ], + "commit": "56ec0343322cf30d689810a8f5cffee004bb8d07", + "sha256": "16dq2hg3k0vypb5rjyrz90abm7qxbjbs6pv0z9qvsyn0ahi65jn3" + } + }, + { + "ename": "sbt-mode", + "commit": "364abdc3829fc12e19f00b534565227dbc30baad", + "sha256": "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8", + "fetcher": "github", + "repo": "ensime/emacs-sbt-mode", + "unstable": { + "version": [ + 20180511, + 1622 + ], + "commit": "e658af140547cbef495c33535c7f694a501d318c", + "sha256": "0lv9ridzk9x6rkf7lj21srnszypyq04vqg05vl10zhpz1yqlnbjd" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "e658af140547cbef495c33535c7f694a501d318c", + "sha256": "0lv9ridzk9x6rkf7lj21srnszypyq04vqg05vl10zhpz1yqlnbjd" + } + }, + { + "ename": "scad-mode", + "commit": "2d27782b9ac8474fbd4f51535351207c9c84984c", + "sha256": "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k", + "fetcher": "github", + "repo": "openscad/openscad", + "unstable": { + "version": [ + 20190413, + 1246 + ], + "commit": "e34d129d5eb3e3e3eec76c78644d7f5e4f880700", + "sha256": "1xpicrjap52ysps5qw4m46kvfwqxn5yizgg7wxhd94j1ldwy5afp" + } + }, + { + "ename": "scad-preview", + "commit": "18a043064223906510adbb837f1be329252dbd50", + "sha256": "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z", + "fetcher": "github", + "repo": "zk-phi/scad-preview", + "unstable": { + "version": [ + 20160206, + 1336 + ], + "deps": [ + "scad-mode" + ], + "commit": "fee011589671cc8f1296cb6aa81553e5bb699819", + "sha256": "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc" + } + }, + { + "ename": "scala-mode", + "commit": "564aa1637485192a97803af46b3a1f8e0d042c9a", + "sha256": "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8", + "fetcher": "github", + "repo": "ensime/emacs-scala-mode", + "unstable": { + "version": [ + 20170802, + 1132 + ], + "commit": "56cba2903cf6e12c715dbb5c99b34c97b2679379", + "sha256": "13miqdn426cw9y1wqaz5smmf0wi3bzls95z6shcxzdz8cg50zmpg" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "56cba2903cf6e12c715dbb5c99b34c97b2679379", + "sha256": "13miqdn426cw9y1wqaz5smmf0wi3bzls95z6shcxzdz8cg50zmpg" + } + }, + { + "ename": "scalariform", + "commit": "1912f795e5842be534160e3879bfb96f3440e163", + "sha256": "096y63j91910hqsy6qvz16c9lzyi7ni3r7h039z5zw2v97aggh9i", + "fetcher": "github", + "repo": "zwild/scalariform", + "unstable": { + "version": [ + 20190114, + 215 + ], + "deps": [ + "f", + "s" + ], + "commit": "478a15ccb4f825aba73262bccd3e61ce7017f64b", + "sha256": "1c76jnj35bkcq2rhdq6d57b7vf6rvn8rpzpx49ywkxz4cx36svv6" + } + }, + { + "ename": "scf-mode", + "commit": "376be7f8903dbea69643600ae14e934ee5e2a11b", + "sha256": "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0", + "fetcher": "github", + "repo": "lewang/scf-mode", + "unstable": { + "version": [ + 20151122, + 248 + ], + "commit": "dbfcdcd89034f208d65e181af58e0d73ad09f8b2", + "sha256": "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8" + } + }, + { + "ename": "scheme-complete", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h", + "fetcher": "github", + "repo": "ashinn/scheme-complete", + "unstable": { + "version": [ + 20181029, + 1255 + ], + "commit": "b86ee41d48664839181498313f4f3dc2fef17d6f", + "sha256": "1by7ky8za6idam4m4xgmf0f5ss0cacd7wv53glhmjb4nslxhgl7d" + } + }, + { + "ename": "scheme-here", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "17r77b99nh03v79r97fzr3pyvigp4w8gr41k6zzj82xka2swhr2h", + "fetcher": "github", + "repo": "kaihaosw/scheme-here", + "unstable": { + "version": [ + 20141028, + 718 + ], + "commit": "430ba017cc530865218de23a8f7985095a58343f", + "error": [ + "exited abnormally with code 1\n", + "", + "warning: unknown setting 'system-features'\nerror: unable to download 'https://github.com/kaihaosw/scheme-here/archive/430ba017cc530865218de23a8f7985095a58343f.tar.gz': HTTP error 404 (curl error: No error)\n" + ] + } + }, + { + "ename": "schrute", + "commit": "505fc4d26049d4e2973a54b24117ccaf4f2fb7e7", + "sha256": "1sr49wr3738sqfzix7v9rj6bvv7q2a46qdkimn9z7rnsjys9i7zy", + "fetcher": "git", + "url": "https://bitbucket.org/shackra/dwight-k.-schrute", + "unstable": { + "version": [ + 20170521, + 1840 + ], + "commit": "59faa6c4232ae183cea93237301acad8c0763997", + "sha256": "1w5l1vf4cn4psrxgnq5n6j3zw644s70inpa17vsvng3sk5r8crcb" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "08ab6565fa94f3a8016163fe6f7be1932af1156b", + "sha256": "0l1k6wjjr569lk5k8ydwq13041kn889g20qbzf79qj1ws96rim4m" + } + }, + { + "ename": "scion", + "commit": "faf180d15c3847fc6f832866338494dd99b6654d", + "sha256": "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d", + "fetcher": "github", + "repo": "nominolo/scion", + "unstable": { + "version": [ + 20130315, + 1255 + ], + "commit": "99b4589175665687181a932cd836850205625f71", + "sha256": "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4" + } + }, + { + "ename": "sclang-extensions", + "commit": "f2095549944ca28d6a2d6a90d5ab3ba9c27997a8", + "sha256": "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn", + "fetcher": "github", + "repo": "chrisbarrett/sclang-extensions", + "unstable": { + "version": [ + 20160509, + 338 + ], + "deps": [ + "auto-complete", + "dash", + "s" + ], + "commit": "e9cc79732f16fdb582129303110c163dcc0d6da0", + "sha256": "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb" + } + }, + { + "ename": "sclang-snippets", + "commit": "680e5757e074c16efd31084a7dc5dcea339597f5", + "sha256": "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2", + "fetcher": "github", + "repo": "ptrv/sclang-snippets", + "unstable": { + "version": [ + 20130513, + 751 + ], + "deps": [ + "yasnippet" + ], + "commit": "c840a416b96f83bdd70491e3d1fbe2f1ae8b3f58", + "sha256": "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857" + } + }, + { + "ename": "scp", + "commit": "62f5c9284de51373a4015cf053d66977cf00d175", + "sha256": "1q7v2cr89syw682zqxhavaggv6aqi69rl94vm8bmn745a868gliw", + "fetcher": "github", + "repo": "tszg/emacs-scp", + "unstable": { + "version": [ + 20171204, + 251 + ], + "deps": [ + "cl-lib" + ], + "commit": "447305db246d9c9240678dd9c734ed920300463a", + "sha256": "0f8dv17rjknlkw32dd4xmdxbkwby5dn8mychaqwlk8vanhm74n7w" + } + }, + { + "ename": "scpaste", + "commit": "9007fb32097bc63731c3615dae9342fcef2558a2", + "sha256": "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1", + "fetcher": "github", + "repo": "technomancy/scpaste", + "unstable": { + "version": [ + 20190228, + 2151 + ], + "deps": [ + "htmlize" + ], + "commit": "568faaa70fa0413e2d165ad232cd4c6ec2815197", + "sha256": "160m4w0i9cj4zxmmsknmnvycscj9y8da39y1362kv7dpmwnxsxcp" + }, + "stable": { + "version": [ + 0, + 6, + 5 + ], + "deps": [ + "htmlize" + ], + "commit": "cca8f4ee5402bbf9a4bbb24e81372067cb21bba4", + "sha256": "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm" + } + }, + { + "ename": "scratch", + "commit": "b46813f928eadfa08a1d4bf94ceeb96dbc2a7c72", + "sha256": "1an30pr64fz13s6lghlcb36b7hn3961vv0yipfp9s140ccygdvh7", + "fetcher": "github", + "repo": "ieure/scratch-el", + "unstable": { + "version": [ + 20190314, + 614 + ], + "commit": "4813d82b39a451f2a6d5b730cd7ec49a9bdabcca", + "sha256": "0yiwq2gc4gdgfhaagpawhb7yrzc4fsnyb10w5d0q4whv64cj8555" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "4813d82b39a451f2a6d5b730cd7ec49a9bdabcca", + "sha256": "0yiwq2gc4gdgfhaagpawhb7yrzc4fsnyb10w5d0q4whv64cj8555" + } + }, + { + "ename": "scratch-ext", + "commit": "a142d336a57d075dfd5caf44fa1c1254b83ac728", + "sha256": "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y", + "fetcher": "github", + "repo": "kyanagi/scratch-ext-el", + "unstable": { + "version": [ + 20140104, + 516 + ], + "commit": "388c53cddd0466b451264894667ed64a6947ad67", + "sha256": "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp" + } + }, + { + "ename": "scratch-log", + "commit": "bec9692973db8853f9d329aebc0cc9e81bb34003", + "sha256": "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69", + "fetcher": "github", + "repo": "mori-dev/scratch-log", + "unstable": { + "version": [ + 20141115, + 743 + ], + "commit": "1168f7f16d36ca0f4ddf2bb98881f8db62cc5dc0", + "sha256": "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk" + } + }, + { + "ename": "scratch-message", + "commit": "24c5ff6b643de9fb79334eff57b702281b20bc10", + "sha256": "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b", + "fetcher": "github", + "repo": "thisirs/scratch-message", + "unstable": { + "version": [ + 20170107, + 1336 + ], + "commit": "3ecc7f5e3b8a597ebd1492fd426d3720a7f34302", + "sha256": "1kb664r3gbhv2ja8jyyzfw22db99ini8qbgzcy9xsl56lha4x4xi" + } + }, + { + "ename": "scratch-palette", + "commit": "b737bd93008e10ff446b347f405541a6f4127716", + "sha256": "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs", + "fetcher": "github", + "repo": "zk-phi/scratch-palette", + "unstable": { + "version": [ + 20150225, + 842 + ], + "deps": [ + "popwin" + ], + "commit": "f6803b448079f4a81cc699cec7442ef543cd5818", + "sha256": "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2" + } + }, + { + "ename": "scratch-pop", + "commit": "420fb3408b64f1a3e42316262016728c483bf0c1", + "sha256": "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1", + "fetcher": "github", + "repo": "zk-phi/scratch-pop", + "unstable": { + "version": [ + 20170510, + 1458 + ], + "deps": [ + "popwin" + ], + "commit": "7f4172c792b10bd38898dd8963cf0ade91921869", + "sha256": "0mwjq7z0cpaqhqygzhfcpfqyx8376jsc1g2874np6ff49389bj4d" + } + }, + { + "ename": "scratches", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "116bjy1m35h83r2c354i2xk1br87nmvd99kbzax0wgkkkcjff8c4", + "fetcher": "github", + "repo": "zhangkaiyulw/scratches", + "unstable": { + "version": [ + 20151006, + 416 + ], + "deps": [ + "dash", + "f" + ], + "commit": "9441afe6396ca38f08029123fab5d87429cbf315", + "sha256": "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc" + } + }, + { + "ename": "scribble-mode", + "commit": "6469c2b389d757003da69da727905228eb564d50", + "sha256": "0idagikxhr86h2k6fb45zdzg73wpmpiszx0gi6d8jx7s1xqd6s50", + "fetcher": "github", + "repo": "emacs-pe/scribble-mode", + "unstable": { + "version": [ + 20181204, + 325 + ], + "commit": "217945d54de5e4bb207033f2116baa28f5c5ecf2", + "sha256": "1s5ccw1a5ack01wd94ywfcrar9j98agchwdh30q7iyxr0d2z4sii" + } + }, + { + "ename": "scroll-on-drag", + "commit": "0cc172bb1b4194b66827bf5be0b6658fb330a11a", + "sha256": "1i4i19qkin19h2xc1r6a66rsll1rfbbvf2nsm75f9vvvrdi4sjyf", + "fetcher": "gitlab", + "repo": "ideasman42/emacs-scroll-on-drag", + "unstable": { + "version": [ + 20190721, + 2218 + ], + "commit": "e509c10ccdf6f4239d448da8aa6f8b9cc36bb340", + "sha256": "00yy0bx874ijg8s16bp13n0w5q2fmjiklz0kgbwh4wpb7fawk8vv" + } + }, + { + "ename": "scrollkeeper", + "commit": "d9ad5b16ff61c1f8ba1e030ee0988aa51a437022", + "sha256": "16wqlyxznall4kmd8l68q4d11qyilj8vsji36h7llprxa2m9pg12", + "fetcher": "github", + "repo": "alphapapa/scrollkeeper.el", + "unstable": { + "version": [ + 20190109, + 629 + ], + "commit": "3c4ac6b6b44686d31c260ee0b19daaee59bdccd6", + "sha256": "18pp4k12g5dyma362461gdp4ds5d3lx9gky2ishsq39949pkz7qz" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "3c4ac6b6b44686d31c260ee0b19daaee59bdccd6", + "sha256": "18pp4k12g5dyma362461gdp4ds5d3lx9gky2ishsq39949pkz7qz" + } + }, + { + "ename": "scrooge", + "commit": "7e3623181fa771dc94a7026eb58ac81fe9d9fc68", + "sha256": "1gisyfzawrgg55jbwrbnri314f6zd38di19iwy0b2dim8in4sjpg", + "fetcher": "github", + "repo": "cosmicexplorer/emacs-scrooge", + "unstable": { + "version": [ + 20180630, + 1022 + ], + "deps": [ + "cl-lib", + "dash", + "thrift" + ], + "commit": "0a8c58e9e6708abe4ef7e415bc1e0472318bb1b0", + "sha256": "1my5yz9ppr7d90ad94mkqzkp20c8bym6mdi7jwab2yisbzykmwzc" + } + }, + { + "ename": "scss-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv", + "fetcher": "github", + "repo": "antonj/scss-mode", + "unstable": { + "version": [ + 20180123, + 1708 + ], + "commit": "cf58dbec5394280503eb5502938f3b5445d1b53d", + "sha256": "0raja19l0igwr0pn0ghr1pj1d8i9k3m3764ma4r8nwzxcj9qw4ja" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "d663069667d9b158d56e863b80dd4cc02984e49f", + "sha256": "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9" + } + }, + { + "ename": "sdcv", + "commit": "173e233b2dacaaf54d92f3bcc06e54d068520dd4", + "sha256": "1bj3b17sjd9fha686g6w191l4p8a1p8sb9br65xf54n6nd9bmv7a", + "fetcher": "github", + "repo": "stardiviner/sdcv.el", + "unstable": { + "version": [ + 20190610, + 732 + ], + "deps": [ + "cl-lib", + "popup", + "pos-tip", + "showtip" + ], + "commit": "943ae3e90cc9a0a88a37cc710acd7424fd4defc4", + "sha256": "0i1ylvw7p46pkf3yyyzcdmdhsspzymnnnvx8s0i7vynngr5x0vzh" + } + }, + { + "ename": "sdlang-mode", + "commit": "691af79137015f15a3d383439e534e255ba4b36d", + "sha256": "1z6n374z55dr2c6xdwgvmpznd5gk9y23k136zmy29b68j2kswj6l", + "fetcher": "github", + "repo": "CyberShadow/sdlang-mode", + "unstable": { + "version": [ + 20161201, + 711 + ], + "commit": "d42a6eedefeb44919fbacf58d302b6df18f05bbc", + "sha256": "0r6sm7b15scmjcpdcqvm55hdsvyw5d2g7mrfhsx2hs8sqz64gkwc" + } + }, + { + "ename": "search-web", + "commit": "1f1a3697649ccf69c8eb177c31ec4246b98f503b", + "sha256": "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36", + "fetcher": "github", + "repo": "tomoya/search-web.el", + "unstable": { + "version": [ + 20150312, + 1103 + ], + "commit": "c4ae86ac1acfc572b81f3d78764bd9a54034c331", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "c4ae86ac1acfc572b81f3d78764bd9a54034c331", + "sha256": "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i" + } + }, + { + "ename": "searchq", + "commit": "9738c1be0511540bfd8f324334518c72c9c38c94", + "sha256": "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr", + "fetcher": "github", + "repo": "boyw165/searchq", + "unstable": { + "version": [ + 20150829, + 1211 + ], + "commit": "dd510d55ad66a82c6ef022cfe7c4a73ad5365f82", + "sha256": "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4" + } + }, + { + "ename": "seclusion-mode", + "commit": "b087d151b00f5251b15ebb071896995874afb274", + "sha256": "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m", + "fetcher": "github", + "repo": "dleslie/seclusion-mode", + "unstable": { + "version": [ + 20121118, + 2353 + ], + "commit": "9634e76c52bfb7200ff0f9f01404f743429e9ef0", + "sha256": "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239" + } + }, + { + "ename": "secretaria", + "commit": "3eeddbcf95315da40d021a6913ccf344849c4284", + "sha256": "04pcibzdljcfiha4yh10van8gsjrzn6bdkvkm2ahfcwrmscfn3hf", + "fetcher": "gitlab", + "repo": "shackra/secretaria", + "unstable": { + "version": [ + 20190116, + 2000 + ], + "deps": [ + "alert", + "f", + "org", + "s" + ], + "commit": "40f2df829c8b858922559cd1dfbf13a9f78db3e8", + "sha256": "1kxr9cl6zkr20llivlwyra268kj7iy4mn0505w6kdakg1v8ba22f" + }, + "stable": { + "version": [ + 0, + 2, + 9 + ], + "deps": [ + "alert", + "f", + "s" + ], + "commit": "91c56311b48a26aa6ef5a113b0a828e174059b0a", + "sha256": "1iyq8m75gzyx2ww919i4zl63gajsaczgwax214a1jgf8x91j590k" + } + }, + { + "ename": "see-mode", + "commit": "6ee64e846c471926194fcecc4824a06effc0aa5b", + "sha256": "1124x11vxci9mvx3zn56v5h9dhmy7bzd5pilqdgzp3hzjmyydnfi", + "fetcher": "github", + "repo": "marcelino-m/see-mode", + "unstable": { + "version": [ + 20180511, + 41 + ], + "deps": [ + "language-detection" + ], + "commit": "b6e72ea90105b03816c334be9e43bb41dcc79abf", + "sha256": "1lh8dg02h64s7b18b4yn0jwxd3cid6agqiv17252r3lbgp743n68" + } + }, + { + "ename": "seeing-is-believing", + "commit": "14bb6de5c051a68284ee1a7e25ecb2c7c19ffd3b", + "sha256": "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb", + "fetcher": "github", + "repo": "jcinnamond/seeing-is-believing", + "unstable": { + "version": [ + 20170214, + 1320 + ], + "commit": "fbbe246c0fda87bb26227bb826eebadb418a220f", + "sha256": "1h1b48s2iirswdlvfz41jbflm4x09ksc2lycrc1awzlwd6r8hdhg" + } + }, + { + "ename": "seethru", + "commit": "7945732d9789143b386603dd7c96ef14ba68ddaf", + "sha256": "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v", + "fetcher": "github", + "repo": "Benaiah/seethru", + "unstable": { + "version": [ + 20150218, + 1829 + ], + "deps": [ + "shadchen" + ], + "commit": "d87e231f99313bea75b1e69e48c0f32968c82060", + "sha256": "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr" + } + }, + { + "ename": "sekka", + "commit": "350bbb5761b5ba69aeb4acf6d7cdf2256dba95a6", + "sha256": "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp", + "fetcher": "github", + "repo": "kiyoka/sekka", + "unstable": { + "version": [ + 20170803, + 1247 + ], + "deps": [ + "cl-lib", + "concurrent", + "popup" + ], + "commit": "61840b57d9ae32bf8e297b175942590a1319c7e7", + "sha256": "05vj12l88s29wnkpvgzlbypv9hkmy1hqgv9hvav6v4kmdykl5w1b" + }, + "stable": { + "version": [ + 1, + 8, + 0 + ], + "deps": [ + "cl-lib", + "concurrent", + "popup" + ], + "commit": "d1fd5d47aacba723631d5d374169a45ff2051c41", + "sha256": "035rx863cj3hs1lhayff0810cpp6kv8nwc1c0y54gvdk1bb333x0" + } + }, + { + "ename": "select-themes", + "commit": "e4e7d01da10a1a1f7fe563031af5d3f9694cea33", + "sha256": "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84", + "fetcher": "github", + "repo": "jasonm23/emacs-select-themes", + "unstable": { + "version": [ + 20160221, + 106 + ], + "commit": "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe", + "sha256": "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "commit": "236f54287519a3ea6dd7b3992d053e4f4ff5d0fe", + "sha256": "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn" + } + }, + { + "ename": "selected", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1zk9jvsiw30zqh68xjx2zcc71php68ryiwqmws52ghqiaifj50gf", + "fetcher": "github", + "repo": "Kungsgeten/selected.el", + "unstable": { + "version": [ + 20170222, + 834 + ], + "commit": "03edaeac90bc6000d263f03be3d889b4685e1bf7", + "sha256": "1d72vw1dcxnyir7vymr3cfxal5dndm1pmm192aa9bcyrcg7aq39g" + } + }, + { + "ename": "selectric-mode", + "commit": "08922071b9854142eab726302e75f1db2d326ec5", + "sha256": "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4", + "fetcher": "github", + "repo": "rbanffy/selectric-mode", + "unstable": { + "version": [ + 20170216, + 1111 + ], + "commit": "aed70015b29074b52a5d0c49b88b7a501d276dda", + "sha256": "0v2wfmi5y7jkg8wpc5fmhy1zpdckzlkvnwlz14ymylwpq62nl216" + }, + "stable": { + "version": [ + 1, + 4, + 1 + ], + "commit": "a35cb3815caceaf273ad7d16ac3b2dd3c7a3003e", + "sha256": "04bj71080wqybznyx63dawhppq6x3p88x1j56gvl8kvxv2hwzgzf" + } + }, + { + "ename": "semaphore", + "commit": "1cffd8c7720e5a262b8635a5fd1ca36766f4c824", + "sha256": "0g49ld0j962k66a96z6r6hw1p13r5bxs0wddpr9iciqgjra1jcl7", + "fetcher": "github", + "repo": "webnf/semaphore.el", + "unstable": { + "version": [ + 20190607, + 1949 + ], + "commit": "a069b69018b96d284ce7553cd63350a88ea3679c", + "sha256": "0dkqj2xcpqdwi4j99pbif8dypk0mlaxgn7aaw51kw98b52ng93gv" + } + }, + { + "ename": "semaphore-promise", + "commit": "1cffd8c7720e5a262b8635a5fd1ca36766f4c824", + "sha256": "0dfwjl6z6k2qrflm19k2y4i69zps3h83an9r8l3lync2kjmgxfrs", + "fetcher": "github", + "repo": "webnf/semaphore.el", + "unstable": { + "version": [ + 20190607, + 2115 + ], + "deps": [ + "promise", + "semaphore" + ], + "commit": "a069b69018b96d284ce7553cd63350a88ea3679c", + "sha256": "0dkqj2xcpqdwi4j99pbif8dypk0mlaxgn7aaw51kw98b52ng93gv" + } + }, + { + "ename": "semi", + "commit": "e78849c2d1df187b7f0ef4c34985a341e640ad3e", + "sha256": "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25", + "fetcher": "github", + "repo": "wanderlust/semi", + "unstable": { + "version": [ + 20190708, + 1302 + ], + "deps": [ + "flim" + ], + "commit": "16228dc2d147d6ba8762c10fb25c54a3757ee9b0", + "sha256": "1hccmz9g1rl3qz77214ybnai143zay48kai214gk43dw05bcfavc" + } + }, + { + "ename": "seml-mode", + "commit": "01f8b8d877ba3164bf20f7f0e56ea564b88f493e", + "sha256": "0fmfnglxm57mhynzdsgs14qaxsw3nf83qbz3adknv63qymbfhgbw", + "fetcher": "github", + "repo": "conao3/seml-mode.el", + "unstable": { + "version": [ + 20190623, + 1537 + ], + "deps": [ + "htmlize", + "simple-httpd", + "web-mode" + ], + "commit": "b9044a416694eb40550a17af678c0ac52b3e9f28", + "sha256": "0gsq0yvjp56y8h0hj3mpchf128b30azx2835phxiqkfkbwkpa9rd" + }, + "stable": { + "version": [ + 1, + 5, + 0 + ], + "deps": [ + "htmlize", + "simple-httpd" + ], + "commit": "f62f7a9f5e18ef8f370444a1fce710770227b0f5", + "sha256": "037p2kiwkkbk921ik15jalcci0p87q3my9mxzyh6i0mnc6qsh4zf" + } + }, + { + "ename": "sendto", + "commit": "31f7c2f97dd186cb77dc8a106baf5e087792c6ab", + "sha256": "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0", + "fetcher": "github", + "repo": "lujun9972/sendto.el", + "unstable": { + "version": [ + 20160425, + 1250 + ], + "commit": "076b81d7a53f75b0a59b0ef3448f35570567054c", + "sha256": "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f" + } + }, + { + "ename": "sensitive", + "commit": "5e5468ce136fabe59e1434f8a7f265f41c5e64c1", + "sha256": "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3", + "fetcher": "github", + "repo": "timvisher/sensitive.el", + "unstable": { + "version": [ + 20170818, + 1251 + ], + "deps": [ + "sequences" + ], + "commit": "69dd6125a41d8b55f4b6ba61daa4d1aa1f716fa8", + "sha256": "0nj71ds4frfi16hsfswmp89rfxkvvdvhdlsqizzi9cbvr49s0l1f" + } + }, + { + "ename": "sentence-navigation", + "commit": "3d097cf9b6c9c1606505d3988a2afdd7b066abc8", + "sha256": "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m", + "fetcher": "github", + "repo": "noctuid/emacs-sentence-navigation", + "unstable": { + "version": [ + 20180408, + 1619 + ], + "deps": [ + "ample-regexps", + "cl-lib" + ], + "commit": "7c5d2edeaed01196aec25031782e89adeaa089f0", + "sha256": "15za4fg7c8fsih86wz1npyx6gdmw0xhizklfsyfh84416dsmgswp" + } + }, + { + "ename": "seoul256-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1nvhnyfvmpqg0a54nq73lhz3h9g94zkbix13bbzv9bp1lg8v6w1x", + "fetcher": "github", + "repo": "anandpiyer/seoul256-emacs", + "unstable": { + "version": [ + 20180505, + 757 + ], + "commit": "d28a9de73a5ffb1a1c9492db75a5c1efe5e9815f", + "sha256": "0jn3a7m8ld07280mc7nkyahagwhvhrcshrpsb8k1ycdwd1r3zqw5" + } + }, + { + "ename": "sequences", + "commit": "4cf716df68fb2d6a41fe75fac0b41e356bddcf30", + "sha256": "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh", + "fetcher": "github", + "repo": "timvisher/sequences.el", + "unstable": { + "version": [ + 20170818, + 1252 + ], + "commit": "564ebbd93b0beea4e75acfbf824350e90b5d5738", + "sha256": "0ym2bl9dpsglz35is0iwxfw5w7zs9398bkln8lgv28nr6kw0ym4s" + } + }, + { + "ename": "sequential-command", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "0qhrpwcgn89sqdj8yhgax0qk81ycdanlgwx25cxy8wnxkqqcvh9m", + "fetcher": "github", + "repo": "rubikitch/sequential-command", + "unstable": { + "version": [ + 20170926, + 40 + ], + "commit": "a48cbcbe273b33edd3ae56e68f44b4100fa3a48a", + "sha256": "1f05amz22klvs2yqyw7n5bmivgdn5zc7vkv5x6bgc9b5k977lggj" + } + }, + { + "ename": "servant", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21", + "fetcher": "github", + "repo": "cask/servant", + "unstable": { + "version": [ + 20140216, + 1219 + ], + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ], + "commit": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "ansi", + "commander", + "dash", + "epl", + "f", + "s", + "shut-up", + "web-server" + ], + "commit": "4d2aa8250b54b28e6e7ee4cd5ebd98a33db2c134", + "sha256": "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d" + } + }, + { + "ename": "serverspec", + "commit": "5a4f4757d8886d178a85d4bc8ac9399a99d8c4d4", + "sha256": "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id", + "fetcher": "github", + "repo": "k1LoW/emacs-serverspec", + "unstable": { + "version": [ + 20150623, + 1155 + ], + "deps": [ + "dash", + "f", + "helm", + "s" + ], + "commit": "b6dfe82af9869438de5e5d860ced196641f372c0", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2" + }, + "stable": { + "version": [ + 0, + 0, + 7 + ], + "deps": [ + "dash", + "f", + "helm", + "s" + ], + "commit": "b6dfe82af9869438de5e5d860ced196641f372c0", + "sha256": "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2" + } + }, + { + "ename": "services", + "commit": "beb91b4397f6e35a1d5c73a127d8cd7fc9201935", + "sha256": "02lgmpbw52ps6z4p9gwzvh9iaxisq5mb0n9aml9ajxac1473vpcd", + "fetcher": "github", + "repo": "davep/services.el", + "unstable": { + "version": [ + 20170802, + 1130 + ], + "deps": [ + "cl-lib" + ], + "commit": "04c7986041a33dfa0b0ae57c7d6fbd600548c596", + "sha256": "0ycfkskkdlmc0l75z5a8f66wq5mvb24c4kz19a6kqs8rwm2ygz35" + }, + "stable": { + "version": [ + 1, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "514e4095e8964c4d0f38c4f3ad6c692e86d12faa", + "sha256": "1k6w2ghi1iczh65bbln5ryxwnxmkkjm3p0p54s155q9sjidiqlwb" + } + }, + { + "ename": "sesman", + "commit": "31110e9bd82ad9c817e6cb597fa9c26c4cdc93ed", + "sha256": "106jcdsp7rhkr4bbyprcld5fxcnimfcyx0cwcpzhd0b4vh3v3qvg", + "fetcher": "github", + "repo": "vspinu/sesman", + "unstable": { + "version": [ + 20190623, + 1123 + ], + "commit": "e8bfb0e37940bf5f370ae300b896dd04afbc63c8", + "sha256": "0p2hlrsy2s7pkqlsdicbv3jm2bg16nlrwpllqgnvbqss6jrasx17" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "commit": "3df33018f1c42f09db21cebe39a25b389fe35f02", + "sha256": "0z5jb4vpbjsi63w3wjy6d2lgz33qdfvrgfb3bszv4hcf6a96y7fc" + } + }, + { + "ename": "session", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx", + "fetcher": "github", + "repo": "emacsorphanage/session", + "unstable": { + "version": [ + 20120511, + 0 + ], + "commit": "19ea0806873daac3539a4b956e15655e99e3dd6c", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v" + }, + "stable": { + "version": [ + 2, + 3, + 1 + ], + "commit": "19ea0806873daac3539a4b956e15655e99e3dd6c", + "sha256": "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v" + } + }, + { + "ename": "seti-theme", + "commit": "088924b78575359996cf30745497b287cfb11f37", + "sha256": "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z", + "fetcher": "github", + "repo": "caisah/seti-theme", + "unstable": { + "version": [ + 20190201, + 1848 + ], + "commit": "9d76db0b91d4f574dd96ac80fad41da35bffa109", + "sha256": "14fqkkvjbq2gj737k3yz3s0dkya33fi0dj4wds99zyzss2xp37f8" + } + }, + { + "ename": "sexp-move", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0sdm3kr4594fy9hk8yljj2iwa40bgs8nqpwwl2a60r060spz54z9", + "fetcher": "gitlab", + "repo": "elzair/sexp-move", + "unstable": { + "version": [ + 20150915, + 1730 + ], + "commit": "117f7a91ab7c25e438413753e916570122011ce7", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m" + }, + "stable": { + "version": [ + 0, + 2, + 6 + ], + "commit": "117f7a91ab7c25e438413753e916570122011ce7", + "sha256": "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m" + } + }, + { + "ename": "sexy-monochrome-theme", + "commit": "dfd5ae9a93e036d11899c7adffdf6b63c2b21381", + "sha256": "0rlx4029zxrnzzqspn8zrp3q6w0n46q24qk7za46hvxdsmgdpxbq", + "fetcher": "github", + "repo": "voloyev/sexy-monochrome-theme", + "unstable": { + "version": [ + 20180526, + 808 + ], + "commit": "036bc238e48dd21aae1c34e6971d376582d8281b", + "sha256": "1nfij1wzzs23aqbc7k6cc5a714bkywmmid95c8cj4wh3lwz2bpnh" + }, + "stable": { + "version": [ + 3, + 1 + ], + "commit": "f64714a176d9212c9fa82355dd8ec89587ce13f0", + "sha256": "17ahrdyk2v7vz13b4934xn8xjza4b7bfrkq8n42frq3pc8mgwqfd" + } + }, + { + "ename": "shackle", + "commit": "806e7d00f763f3fc4e3b8ebd483070ac6c5d0f21", + "sha256": "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6", + "fetcher": "github", + "repo": "wasamasa/shackle", + "unstable": { + "version": [ + 20190201, + 1846 + ], + "deps": [ + "cl-lib" + ], + "commit": "842a90b3ca04d9d886543f14ca5f04e8bd2a3d06", + "sha256": "08g72adgbhb1cj6897xrjmpbxcxs6pr8xha4868s293kn6dkh4ys" + }, + "stable": { + "version": [ + 1, + 0, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "242bacc940c18b6f9c156e1912155d45537fd827", + "sha256": "0qqx8py21jaq1bdafkfqx18ns4zn305qg84zbmy65spiqnfq8hwk" + } + }, + { + "ename": "shadchen", + "commit": "8a2a36fbfcf457eab05c1ff31cb9c2f68686094e", + "sha256": "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4", + "fetcher": "github", + "repo": "VincentToups/shadchen-el", + "unstable": { + "version": [ + 20141102, + 1839 + ], + "commit": "35f2b9c304eec990c16efbd557198289dc7cbb1f", + "sha256": "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8" + } + }, + { + "ename": "shader-mode", + "commit": "4396f3c10a38f91d5f98684efbeb02812e479209", + "sha256": "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g", + "fetcher": "github", + "repo": "midnightSuyama/shader-mode", + "unstable": { + "version": [ + 20180518, + 1157 + ], + "commit": "d7dc8d0d6fe8914e8b6d5cf2081ad61e6952359c", + "sha256": "13scj6w3vsdcgmq7zak3pflqpq295wgzsng72rcafgkkr7r12rar" + } + }, + { + "ename": "shadowenv", + "commit": "b2651055ab67448f90a93cf594342b8212202b82", + "sha256": "1qxnbvpnvk3666hwfrh4pnfgb2mrfha6hiri8zfdspdh8g535ygq", + "fetcher": "github", + "repo": "Shopify/shadowenv.el", + "unstable": { + "version": [ + 20190731, + 1807 + ], + "commit": "0e7c98455ef71be929005d1d6e2372712081de69", + "sha256": "025kyyyr4pd58lzm917dzlfk3l5z877rc97jp4mjknlf89idi7lk" + } + }, + { + "ename": "shakespeare-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1sg8n4ifpi36zmf6b6s0swq7k3r038cmj8kxjm7hpgxq6f9qnk9x", + "fetcher": "github", + "repo": "CodyReichert/shakespeare-mode", + "unstable": { + "version": [ + 20180704, + 2138 + ], + "commit": "c442eeea9d585e1b1fbb8813e33d47feec348a57", + "sha256": "1ba9xy5jwn8ni8fi2k144j669jp95k2qf9ip77r16rsiy7divl0y" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "c442eeea9d585e1b1fbb8813e33d47feec348a57", + "sha256": "1ba9xy5jwn8ni8fi2k144j669jp95k2qf9ip77r16rsiy7divl0y" + } + }, + { + "ename": "shampoo", + "commit": "19f145113a0698466e706a6a4c55d63cec512706", + "sha256": "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61", + "fetcher": "github", + "repo": "dmatveev/shampoo-emacs", + "unstable": { + "version": [ + 20131230, + 1019 + ], + "commit": "bc193c39636c30182159c5c91c37a9a4cb50fedf", + "sha256": "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "9bf488ad4025beef6eef63d2d5b72bc1c9b9e142", + "sha256": "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2" + } + }, + { + "ename": "shell-command", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "01nviashfr64wm78zi3vrqrqdqgsamp76d9kasxv0b7fqmfx7yjk", + "fetcher": "github", + "repo": "emacsorphanage/shell-command", + "unstable": { + "version": [ + 20090830, + 1040 + ], + "commit": "7e22125f746ce9ffbe9b0282d62f4b4bbbe672bd", + "sha256": "1my2i26a03z8xyyacsnl5wdylnbhhvazn23bpy639d3l4x4l7jzw" + } + }, + { + "ename": "shell-current-directory", + "commit": "edcb78c3491a5999b39a40087b7f991c2b737e30", + "sha256": "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd", + "fetcher": "github", + "repo": "metaperl/shell-current-directory", + "unstable": { + "version": [ + 20140101, + 2354 + ], + "commit": "bf843771bf9a4aa05e054ade799eb8862f3be89a", + "sha256": "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic" + } + }, + { + "ename": "shell-here", + "commit": "88df6e04614547a59aefbeae88c301f3b8394039", + "sha256": "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh", + "fetcher": "github", + "repo": "ieure/shell-here", + "unstable": { + "version": [ + 20150728, + 1704 + ], + "commit": "251309141e18978d2b8014345acc6f5afcd4d509", + "sha256": "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl" + } + }, + { + "ename": "shell-history", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1cmk8rymnj7dscxjq0p23jgwc16yvzw1804ya5wsg95v239gz1hy", + "fetcher": "github", + "repo": "emacsorphanage/shell-history", + "unstable": { + "version": [ + 20100505, + 839 + ], + "commit": "ee371a81f2d2bf5a308344078329ca1e9b5ed38c", + "sha256": "0jyz31j5a07shcf2ym5gnn16xk5r3s84ls8kxk5myvxi3wkpgdd4" + } + }, + { + "ename": "shell-pop", + "commit": "44150bddc9b276ab9fb2ab6a92a11383a3ed03b0", + "sha256": "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8", + "fetcher": "github", + "repo": "kyagi/shell-pop-el", + "unstable": { + "version": [ + 20170304, + 1416 + ], + "deps": [ + "cl-lib" + ], + "commit": "4a3a9d093ad1add792bba764c601aa28de302b34", + "sha256": "1ybvg048jvijcg9jjfrbllf59pswmp0fd5zwq5x6nwg5wmggplzd" + }, + "stable": { + "version": [ + 0, + 64 + ], + "deps": [ + "cl-lib" + ], + "commit": "4a3a9d093ad1add792bba764c601aa28de302b34", + "sha256": "1ybvg048jvijcg9jjfrbllf59pswmp0fd5zwq5x6nwg5wmggplzd" + } + }, + { + "ename": "shell-split-string", + "commit": "84e20f4d02c69f8caf39cd20a581be3b9fa79931", + "sha256": "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m", + "fetcher": "github", + "repo": "10sr/shell-split-string-el", + "unstable": { + "version": [ + 20151224, + 1008 + ], + "commit": "19f6f999c33cc66a4c91bacdcc3697c25d97bf5a", + "sha256": "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "6d01c9249853fe1f8fd925ee80f97232d4e3e5eb", + "sha256": "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306" + } + }, + { + "ename": "shell-switcher", + "commit": "a16194f6ddc05350b9875f4e0a3a0383c79e650e", + "sha256": "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx", + "fetcher": "github", + "repo": "DamienCassou/shell-switcher", + "unstable": { + "version": [ + 20161029, + 552 + ], + "commit": "28a7f753dd7addd2933510526f52620cb5a22048", + "sha256": "1x7rrf56hjasciim8rj29vfngwis4pr3mhclvxd4sbmhz9y66wm0" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "commit": "2c5575ae859a82041a4bacd1793b844bfc24c34f", + "sha256": "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria" + } + }, + { + "ename": "shell-toggle", + "commit": "95873d90886d2db5cc1d83d4bcb8dd5c2e65bc3e", + "sha256": "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446", + "fetcher": "github", + "repo": "knu/shell-toggle.el", + "unstable": { + "version": [ + 20150226, + 1411 + ], + "commit": "0d01bd9a780fdb7fe6609c552523f4498649a3b9", + "sha256": "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "9820b0ad6f22c700759555aae8a454a7dc5a46b3", + "sha256": "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q" + } + }, + { + "ename": "shelldoc", + "commit": "551623175e55629be6cfe44a595f25f09bd889e8", + "sha256": "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-shelldoc", + "unstable": { + "version": [ + 20151115, + 325 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "5df2264eb60e45066f3633df4f34834751667346", + "sha256": "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i" + }, + "stable": { + "version": [ + 0, + 0, + 5 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "1d40c73969347586906ca1dde2adb50afcd73b1b", + "sha256": "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax" + } + }, + { + "ename": "shelltest-mode", + "commit": "af6dcd4fc0663a255bd85b247bbdf57d425efdb7", + "sha256": "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh", + "fetcher": "github", + "repo": "rtrn/shelltest-mode", + "unstable": { + "version": [ + 20180501, + 141 + ], + "commit": "5fea8c9394380e822971a171905b6b5ab9be812d", + "sha256": "1np65a92n4y9i0nr8wymzn6md9xqmi9qyggya7sz0q4nzsh45wqg" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "fead97c7ff1b39715ec033a793de41176f1788f5", + "sha256": "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs" + } + }, + { + "ename": "shen-elisp", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "045nawzyqaxd3g5f56fxfy680pl18x67w0wi28nrq4l4681w9xyq", + "fetcher": "github", + "repo": "deech/shen-elisp", + "unstable": { + "version": [ + 20180915, + 2028 + ], + "commit": "73b74c8d6e3a2ea34b667d177d9f130765bfe501", + "sha256": "1ym048cmkghx373fb7n5m6r73q5nfa62m10mqr4nzhsizgyzdbrn" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "ffe17dee05f75539cf5e4c59395e4c7400ececaa", + "sha256": "10dq3qj1q8i6f604zws97xrvjxwrdcjj3ygh6xpna00cvf40llc2" + } + }, + { + "ename": "shift-number", + "commit": "b06be6b25078ddfabc1ef1145c817552f679c41c", + "sha256": "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p", + "fetcher": "github", + "repo": "alezost/shift-number.el", + "unstable": { + "version": [ + 20170301, + 1459 + ], + "commit": "cd099a5582fc996b800ac7607f6c38a004ce9740", + "sha256": "131by7z6303m81kjhy8rnfvwyzfbxglc19xb90jdks4vgczqkcah" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "ba3c1f2e6b01bf14aa1433c2a49098af1c025f7c", + "sha256": "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64" + } + }, + { + "ename": "shift-text", + "commit": "2ad2ea105b895cb958ce0ab2bf2fad2b40d41b2f", + "sha256": "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i", + "fetcher": "github", + "repo": "sabof/shift-text", + "unstable": { + "version": [ + 20130831, + 1655 + ], + "deps": [ + "cl-lib", + "es-lib" + ], + "commit": "1be9cbf994000022172ceb746fe1d597f57ea8ba", + "sha256": "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr" + } + }, + { + "ename": "shimbun", + "commit": "c5a423647410357f0e63afba5b52bbe880fce969", + "sha256": "04d9kkj4fididhq220c1vjmlzmaqnii95c1ca86kzjbm2bqakkcd", + "fetcher": "github", + "repo": "emacs-w3m/emacs-w3m", + "unstable": { + "version": [ + 20190731, + 733 + ], + "commit": "216aed66e2d5517365da9c16b2d1d2aa9876c871", + "sha256": "0bkdv31di311nrlk0lqrz055n8mnwnrbjs79bq7p9qd37k5nbjs0" + } + }, + { + "ename": "shm", + "commit": "68a2fddb7e000487f022b3827a7de9808ae73e2a", + "sha256": "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c", + "fetcher": "github", + "repo": "chrisdone/structured-haskell-mode", + "unstable": { + "version": [ + 20180327, + 57 + ], + "commit": "7f9df73f45d107017c18ce4835bbc190dfe6782e", + "sha256": "1jcc30048j369jgsbbmkb63whs4wb37bq21jrm3r6ry22izndsqa" + }, + "stable": { + "version": [ + 1, + 0, + 20 + ], + "commit": "8abc5cd73e59ea85bef906e14e87dc388c4f350f", + "sha256": "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk" + } + }, + { + "ename": "shoulda", + "commit": "41497a876c80d81d9562ea4b2cc2a83dba98ae8a", + "sha256": "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk", + "fetcher": "github", + "repo": "marcwebbie/shoulda.el", + "unstable": { + "version": [ + 20140616, + 1833 + ], + "deps": [ + "cl-lib" + ], + "commit": "fbe8eb8efc6cfcca1713283a290882cfcdc8725e", + "sha256": "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i" + } + }, + { + "ename": "show-css", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k", + "fetcher": "github", + "repo": "8cylinder/showcss-mode", + "unstable": { + "version": [ + 20160210, + 1408 + ], + "deps": [ + "doom", + "s" + ], + "commit": "771daeddd4df7a7c10f66419a837145649bab63b", + "sha256": "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1" + } + }, + { + "ename": "show-eol", + "commit": "1ae308e8c251b7a6942f7d9f739830986f7315ea", + "sha256": "1k0ihimb4acc30qfmjj3hfpxknif3gzj0iikz23gizrsks7n5p1g", + "fetcher": "github", + "repo": "elpa-host/show-eol", + "unstable": { + "version": [ + 20190517, + 257 + ], + "commit": "ea4d5253d2a9ee61f0e76898f0ab760b5574df43", + "sha256": "1nmx1nxwb6fqkl5h988cjs3yi5cp65wm50w2lbffjd15pswd9kyg" + } + }, + { + "ename": "showtip", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1d5ckka2z0ffwyk9g3h91n3waijj2v7n8kvdks35gcr2yl3yk780", + "fetcher": "github", + "repo": "emacsorphanage/showtip", + "unstable": { + "version": [ + 20090830, + 1040 + ], + "commit": "930da302809a4257e8d69425455b29e1cc91949b", + "sha256": "01zak0zhha6dp7a2hm28d065gjnc462iwpsfyxhbxgfzcdlicqc7" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "930da302809a4257e8d69425455b29e1cc91949b", + "sha256": "01zak0zhha6dp7a2hm28d065gjnc462iwpsfyxhbxgfzcdlicqc7" + } + }, + { + "ename": "shpec-mode", + "commit": "dd1bfe85b430c3bbb5a7baf11bb9699dad417f60", + "sha256": "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl", + "fetcher": "github", + "repo": "shpec/shpec-mode", + "unstable": { + "version": [ + 20150530, + 922 + ], + "commit": "146adc8281d0f115df39a3a3f982ac59ab61b754", + "sha256": "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "76bccd63e3b70233a6c9ca0798dd03550952cc76", + "sha256": "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h" + } + }, + { + "ename": "shr-tag-pre-highlight", + "commit": "7be3c139bee02e8bd9a9830026cbfdd17629ac4d", + "sha256": "1v8fqx8bd5504r2mflq6x8xs3k0py3bgsnadz3bjs68yhaxacj3v", + "fetcher": "github", + "repo": "xuchunyang/shr-tag-pre-highlight.el", + "unstable": { + "version": [ + 20171113, + 914 + ], + "deps": [ + "language-detection" + ], + "commit": "6182f43a36b0f82ba6edcf6e423b5f69a46a814e", + "sha256": "0916bpzi6sw5gyn5xgi9czf35zrvl04w10wz6fvz0lc57giihil1" + }, + "stable": { + "version": [ + 2 + ], + "deps": [ + "language-detection" + ], + "commit": "63eb0b2a4c1caf1004bac8e002ff8b7477871e36", + "sha256": "14b398k7rd0c2ymvg8wyq65fhggkm0camgvqr7j6ia2y0kairxba" + } + }, + { + "ename": "shrink-path", + "commit": "86b0d105e8a57d5f0bcde779441dc80b85e170ea", + "sha256": "0fq13c6g7qbq6f2ry9dzdyg1f6p41wimkjcdaj177rnilz77alzb", + "fetcher": "gitlab", + "repo": "bennya/shrink-path.el", + "unstable": { + "version": [ + 20170813, + 247 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "9d06c453d1537df46a4b703a29213cc7f7857aa0", + "sha256": "021bpgpzysag1s11m9pyq2bk6a0mf9ayx10yxhf5cw56x3d0jj1b" + }, + "stable": { + "version": [ + 0, + 3, + 1 + ], + "deps": [ + "dash", + "f", + "s" + ], + "commit": "9b8cfb59a2dcee8b39b680ab9adad5ecb1f53c0b", + "sha256": "0kx0c4syd7k6ff9j463bib32pz4wq0rzjlg6b0yqnymlzfr1mbki" + } + }, + { + "ename": "shrink-whitespace", + "commit": "a403093706d57887111e0d012e85273addaf0d35", + "sha256": "12i6xlcgk27bsdfnlcdjww8vxbx1yilaqa0pkh5n0hxb66zi6x15", + "fetcher": "gitlab", + "repo": "jcpetkovich/shrink-whitespace.el", + "unstable": { + "version": [ + 20181003, + 321 + ], + "commit": "0407b89c142bd17e65edb666f35e2c6755bd0867", + "sha256": "1qxdi2jm3zl5f55c6irsbnxrmqw039pcm99jafn7hg5z5zc3xhbx" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "commit": "0407b89c142bd17e65edb666f35e2c6755bd0867", + "sha256": "1qxdi2jm3zl5f55c6irsbnxrmqw039pcm99jafn7hg5z5zc3xhbx" + } + }, + { + "ename": "shroud", + "commit": "2e4334a47a173e9cfb1e803d5781317da27702d7", + "sha256": "0s7gap41y2ncnlbj2cc6b2l7q7qc8psxpbznkc71y53ch1mc9isg", + "fetcher": "github", + "repo": "o-nly/emacs-shroud", + "unstable": { + "version": [ + 20190623, + 126 + ], + "deps": [ + "bui", + "dash", + "dash-functional", + "epg", + "s" + ], + "commit": "1d5e83cfcd549a5f553fb123d3d783ae418f72c7", + "sha256": "1r0dyqmrg0skkmm0h7s0pw8sqblkrarimlgn45flyjcv5kmcfgmm" + }, + "stable": { + "version": [ + 1, + 83, + 4 + ], + "deps": [ + "bui", + "dash", + "dash-functional", + "epg", + "s" + ], + "commit": "c7ea92e8694060fa6236074cde79e1021f23edc1", + "sha256": "1yvdjx0kp4y8w5yz2cbqq9n6xl5splvmsyyx8ld1xv0q1c9872nf" + } + }, + { + "ename": "shut-up", + "commit": "297d3d88a1dad694d5903072adb679f2194ce444", + "sha256": "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26", + "fetcher": "github", + "repo": "cask/shut-up", + "unstable": { + "version": [ + 20180628, + 1830 + ], + "deps": [ + "cl-lib" + ], + "commit": "081d6b01e3ba0e60326558e545c4019219e046ce", + "sha256": "1bnmrwrhra6cpc3jjgwwzrydj5ps7q2dlkh2ag4j7rkyv4dlk351" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "dccd8f7d6af2dde96718f557b37bc25adc61dd12", + "sha256": "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq" + } + }, + { + "ename": "shx", + "commit": "7a2ff78ae3c4289ebf9e06cdfd8f8082c395a16f", + "sha256": "0h5ldglx4y85lm0pfilasnch2k82mlr7rb20qvarzwd41hb1az1k", + "fetcher": "github", + "repo": "riscy/shx-for-emacs", + "unstable": { + "version": [ + 20190623, + 2154 + ], + "commit": "ef084c66e66651bf93cd0065469e862b627c044b", + "sha256": "1alpp27b3mxw9ansfixdcp4kpj1mak1k1gm370b8fv2s45b3sacb" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "ef084c66e66651bf93cd0065469e862b627c044b", + "sha256": "1alpp27b3mxw9ansfixdcp4kpj1mak1k1gm370b8fv2s45b3sacb" + } + }, + { + "ename": "sibilant-mode", + "commit": "de12c8a37d6d42103f437e6bd974a94924242e8f", + "sha256": "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq", + "fetcher": "github", + "repo": "jbr/sibilant-mode", + "unstable": { + "version": [ + 20151119, + 2145 + ], + "commit": "bc1b5d8cd597918bafc9b2880ee49024740e54ab", + "sha256": "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6" + } + }, + { + "ename": "sicp", + "commit": "1363d7b6e95375ac63f07eed2b3947f4f81bc9ba", + "sha256": "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz", + "fetcher": "github", + "repo": "webframp/sicp-info", + "unstable": { + "version": [ + 20180823, + 1222 + ], + "commit": "33acfa10a058aa65b6b22084a5b86a82410d794e", + "sha256": "1l8isy8kicr4xa6iilxj0cf0f5rqmkidzr6pigql74204db56jhd" + } + }, + { + "ename": "side-notes", + "commit": "67d23bdaefb563d88b206a9ed822316f3d5be9a2", + "sha256": "07hrrplgvp3fvl10fsmxifnim8wz34w7fhzzzkxpdj1zlwls6h83", + "fetcher": "github", + "repo": "rnkn/side-notes", + "unstable": { + "version": [ + 20190715, + 504 + ], + "commit": "aeaaeaffb9a6d6205f2230fdbc9a4afbc0088323", + "sha256": "00jkqzh2rnj4jb93lzfmasr75lxb25j3sfj4cgppdz24hzd2yznf" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "2319ee180a4a67175b9e95322cd30b3ac70a9bdf", + "sha256": "05xaj5lhxaf07frzcayx5ybz778sgx8bplg5i75x24b7miqdcjl2" + } + }, + { + "ename": "sift", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1kr5rxza5li3zrkfvs91y7dxmn213z0zf836rkwkmwg2b9rmqxvj", + "fetcher": "github", + "repo": "nlamirault/sift.el", + "unstable": { + "version": [ + 20190521, + 823 + ], + "commit": "33b2c9ff964fe53bb55b37429faaa4e903bead7a", + "sha256": "0cb8rcxl0jwpbgz9kk136l2ranficv8lk85fhvly1lpslbjljds9" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "8c3f3d14a351a2394027d72ee0599aa73b9f0d13", + "sha256": "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra" + } + }, + { + "ename": "signal", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1g8sbszh7cnhpfaql8jn22bsdjdyjdnjb00xr43krr6smc1dr2xq", + "fetcher": "github", + "repo": "mola-T/signal", + "unstable": { + "version": [ + 20160816, + 1438 + ], + "deps": [ + "cl-lib" + ], + "commit": "aa58327e2297df921d72a0370468b48663efd438", + "sha256": "1gzfdk3ks56h8q4xk69aaxkhkg9jhs55iqdicyvq7x9wmjn6b7xw" + } + }, + { + "ename": "signature", + "commit": "a52b516b7b10bdada2f64499c8f43f85a236f254", + "sha256": "0y5xspcsjap662n1gp882kjripiz90wwbhsq27c0qwl1zcx5rrkj", + "fetcher": "gitlab", + "repo": "pidu/signature", + "unstable": { + "version": [ + 20140730, + 1949 + ], + "commit": "c47df2e1189a84505f9224aa78e87b6c65d13d37", + "sha256": "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j" + } + }, + { + "ename": "silkworm-theme", + "commit": "9451d247693c3e991f79315868c73808c0a664d4", + "sha256": "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13", + "fetcher": "github", + "repo": "mswift42/silkworm-theme", + "unstable": { + "version": [ + 20180301, + 1437 + ], + "commit": "4a297f952401cfe894dcb24174f6eda05e00fada", + "sha256": "00kjibpn3ry7j1s6kqmakybialpcx4919344lxks7wij5l6qqxx0" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "7951b53e5caf9daf6a5a15a57ae3a668cb78bd7b", + "sha256": "1q21886qsam8y3s60zlfh48w0jl67q14qg9pzda7j2jcbj1q6r91" + } + }, + { + "ename": "simp", + "commit": "45ff5b788e12218f8e2df7e53444796ca4b929fc", + "sha256": "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c", + "fetcher": "github", + "repo": "re5et/simp", + "unstable": { + "version": [ + 20180607, + 254 + ], + "commit": "d4d4b8547055347828bedccbeffdb4fd2d5a5d34", + "sha256": "1a60vk46haibzrm6zgssdw085wpssmmqc66bipvkq6xnp2cvchkc" + } + }, + { + "ename": "simple-bookmarks", + "commit": "a60dd50c388a75ce21a5aec9acf938835d7afdbc", + "sha256": "0jn5wzm9y4054mr9czd3224s5kbrqpcpcfmj6fi62yhy3p1ys9rb", + "fetcher": "github", + "repo": "jtkDvlp/simple-bookmarks", + "unstable": { + "version": [ + 20190204, + 1426 + ], + "deps": [ + "cl-lib" + ], + "commit": "54e8d771bcdb0eb235b31c0aa9642171369500e5", + "sha256": "0i4yw341b7iml2j8mxclixsrdqlvixfxpabaxp4jh70aq2zfw1cf" + }, + "stable": { + "version": [ + 1, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "54e8d771bcdb0eb235b31c0aa9642171369500e5", + "sha256": "0i4yw341b7iml2j8mxclixsrdqlvixfxpabaxp4jh70aq2zfw1cf" + } + }, + { + "ename": "simple-call-tree", + "commit": "316a5ffcb3080abd623bbe3065077809e6cbfb74", + "sha256": "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl", + "fetcher": "github", + "repo": "vapniks/simple-call-tree", + "unstable": { + "version": [ + 20180224, + 2056 + ], + "deps": [ + "anaphora" + ], + "commit": "20059eb5549408def76aeb03d0d20839903dedef", + "sha256": "0gvhn2r7h6jz7a3i3a8gwlmghv1xfzj0sdib25kz645iylazji4h" + } + }, + { + "ename": "simple-httpd", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c", + "fetcher": "github", + "repo": "skeeto/emacs-web-server", + "unstable": { + "version": [ + 20190110, + 1505 + ], + "deps": [ + "cl-lib" + ], + "commit": "08535d0fad6a32fdc03d725ec74e10a754bb9c7a", + "sha256": "14cajlr1a2dx8x511zb20l633xqa0kqx3nn73x4ph2wwb35njk76" + }, + "stable": { + "version": [ + 1, + 5, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "a5eb49a6567e33586fba15dd649d63ca6e964314", + "sha256": "0dpn92rg813c4pq7a1vzj3znyxzp2lmvxqz6pzcqi0l2xn5r3wvb" + } + }, + { + "ename": "simple-mpc", + "commit": "62d762308c1ec0c1d8f7b4755b7deb285cbac018", + "sha256": "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r", + "fetcher": "github", + "repo": "jorenvo/simple-mpc", + "unstable": { + "version": [ + 20180716, + 129 + ], + "deps": [ + "s" + ], + "commit": "bee8520e81292b4c7353e45b193f9a13b482f5b2", + "sha256": "1ja06pv007cmzjjgka95jlg31k7d29jrih1yxyblsxv85s9sg21q" + } + }, + { + "ename": "simple-paren", + "commit": "5e8886feb4a034fddd40d7381508b09db79f608f", + "sha256": "0bmw8pkh9864gymy36r3w5yw08pq894gb1n80wfqls4a78zyvkm3", + "fetcher": "github", + "repo": "andreas-roehler/simple-paren", + "unstable": { + "version": [ + 20190603, + 1836 + ], + "deps": [ + "cl-lib" + ], + "commit": "8b03b71303070b05d5def3c8a2564e4b5e67098a", + "sha256": "1g508x8hf8zlvi6kz9r8jxavl11y47y2gjldjnc6z6ijiqisy3dm" + } + }, + { + "ename": "simple-rtm", + "commit": "a784f931849ca836557390999b179ef9f6e775f3", + "sha256": "0v5f0vr8sh62yvb7znx00wgybb83dfnkvgl8afyk3ry8n9xkhf5b", + "fetcher": "gitlab", + "repo": "mbunkus/simple-rtm", + "unstable": { + "version": [ + 20160222, + 1534 + ], + "deps": [ + "dash", + "rtm" + ], + "commit": "8c7cd96cf66ef112be5c363e3378e304f8f83999", + "sha256": "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f" + } + }, + { + "ename": "simple-screen", + "commit": "02db9a649002ed9dec03661a518f74f3c7a176d9", + "sha256": "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0", + "fetcher": "github", + "repo": "wachikun/simple-screen", + "unstable": { + "version": [ + 20161009, + 920 + ], + "commit": "596e3a451d9af24730ab31a8fe15c91a4264d09d", + "sha256": "0mqlwrkipgf977s0gx57fv5xrqli67hixprvra6q64isapr86yh1" + } + }, + { + "ename": "simpleclip", + "commit": "7c921e27d6aafc1b82d37f6beb8407840034377a", + "sha256": "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s", + "fetcher": "github", + "repo": "rolandwalker/simpleclip", + "unstable": { + "version": [ + 20181105, + 1636 + ], + "commit": "2468b08ad829aaf4a90246541978be3974c60ab8", + "sha256": "1pkv4mi0pmi3hwbl3yyzahin5xv4zkd0jw8xh1cdipymndga4iwq" + }, + "stable": { + "version": [ + 1, + 0, + 8 + ], + "commit": "63b1a5356e6ff839b1dbacdf22a5c7a275ec88e6", + "sha256": "0iic8r0q21gjhj0d1k5nin9abx3789j0a37n96a5sx6rb4ps4f2v" + } + }, + { + "ename": "simplenote", + "commit": "8c1c3189da03541e3bee44847ac5d02c2a56ef98", + "sha256": "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j", + "fetcher": "github", + "repo": "dotemacs/simplenote.el", + "unstable": { + "version": [ + 20141118, + 1440 + ], + "commit": "e836fcdb5a6497a9ffd6bceddd19b4bc52189078", + "sha256": "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9" + } + }, + { + "ename": "simplenote2", + "commit": "1ac16abd2ce075a8bed4b7b52aed71cb12b38518", + "sha256": "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm", + "fetcher": "github", + "repo": "alpha22jp/simplenote2.el", + "unstable": { + "version": [ + 20190321, + 933 + ], + "deps": [ + "request-deferred", + "unicode-escape", + "uuidgen" + ], + "commit": "760ffecda63bd218876b623f46d332e3ef079be6", + "sha256": "1swb6xvdw6dql6wdj8y5kaaicwrafiz5jwnfl5h1viw08b98q8dv" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "deps": [ + "request-deferred" + ], + "commit": "070aa311b0a08b530394c53d0c52c6438efbc20c", + "sha256": "0zx49kd3wrqx6f52nk8rzqx3ay3qbcygibcidw6w7drvxnxjgd04" + } + }, + { + "ename": "simplezen", + "commit": "eddd3de86e14f56b59fa6f9a08fc89288e0bdbc1", + "sha256": "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j", + "fetcher": "github", + "repo": "magnars/simplezen.el", + "unstable": { + "version": [ + 20130421, + 1000 + ], + "deps": [ + "dash", + "s" + ], + "commit": "119fdf2c6890a0c56045ae72cf4fce0071a81481", + "sha256": "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "c0ddaefbb38fcc1c9775434f734f89227d246a30", + "sha256": "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61" + } + }, + { + "ename": "skeletor", + "commit": "1e63aefc869900c2af6f958dc138f9c72c63e2b8", + "sha256": "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v", + "fetcher": "github", + "repo": "chrisbarrett/skeletor.el", + "unstable": { + "version": [ + 20190212, + 339 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "let-alist", + "s" + ], + "commit": "47c5b761aee8452716c97a69949ac2f675affe13", + "sha256": "12bdgykfh4mwsqdazxjdvha62h3q3v33159ypy91f6x59y01fi0n" + }, + "stable": { + "version": [ + 1, + 6, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "f", + "let-alist", + "s" + ], + "commit": "d986806559628623b591542143707de8d76347d0", + "sha256": "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q" + } + }, + { + "ename": "skewer-less", + "commit": "fb63f7417f39bd718972f54e57360708eb48b977", + "sha256": "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl", + "fetcher": "github", + "repo": "purcell/skewer-less", + "unstable": { + "version": [ + 20160828, + 2021 + ], + "deps": [ + "skewer-mode" + ], + "commit": "927d6848a1ea9428d4cc995f76bd42f7b8da6bc8", + "sha256": "11zaq1p04igg0hbmazsf5c0xz7aigx120rwg5iq7niaz2277j1k1" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "skewer-mode" + ], + "commit": "593001930f1d68c85233f34c5f6fb04173fc98d6", + "sha256": "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3" + } + }, + { + "ename": "skewer-mode", + "commit": "10fba4f7935c78c4fc5eee7dbb161173dea884ba", + "sha256": "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm", + "fetcher": "github", + "repo": "skeeto/skewer-mode", + "unstable": { + "version": [ + 20180706, + 1807 + ], + "deps": [ + "js2-mode", + "simple-httpd" + ], + "commit": "a381049acc4fa2087615b4b3b26c0865841386bd", + "sha256": "12fsp7mwmjxh5mhshriyxw8mlghzn3gfswf6hkz1hcb0yfd56d53" + }, + "stable": { + "version": [ + 1, + 8, + 0 + ], + "deps": [ + "js2-mode", + "simple-httpd" + ], + "commit": "a10955db9ef95b0243ee31bcd30a6fb07ce5302b", + "sha256": "1ha7jl7776pk1bki5zj2q0jy66450mn8xr3aqjc0m9kj3gc9qxgw" + } + }, + { + "ename": "skewer-reload-stylesheets", + "commit": "aeaa2c89b995f1ab0b0f96493db0cda44cc851ee", + "sha256": "1hcz8q7rs5g7gbj6w72g8prry4niqjmyxvvc0ala83qw76x4cm7k", + "fetcher": "github", + "repo": "NateEag/skewer-reload-stylesheets", + "unstable": { + "version": [ + 20160725, + 1220 + ], + "deps": [ + "skewer-mode" + ], + "commit": "b9cc5635230ac3c0603a6da690c6e632d0a7490a", + "sha256": "0c8dpbl0z45w1brllcysibmpbnk8yqjgi3iywmqnhrycb7lrda4g" + } + }, + { + "ename": "skype", + "commit": "d3448698a35c9d5d25639f62024f89cac03d5830", + "sha256": "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl", + "fetcher": "github", + "repo": "kiwanami/emacs-skype", + "unstable": { + "version": [ + 20160711, + 824 + ], + "commit": "8e3b33e620ed355522aa36434ff41e3ced080629", + "sha256": "078gjgknsrm1n2f0diian9l056kqh1fj2w0y6ildsvzjipygdz1y" + } + }, + { + "ename": "sl", + "commit": "7188a93d33e38f360930b5090c6ef872116f8a7c", + "sha256": "0h90ajikr6kclsy73vs9f50jg8z3d6kqbpanm9ryh2pw3sd4rnii", + "fetcher": "github", + "repo": "xuchunyang/sl.el", + "unstable": { + "version": [ + 20161217, + 1404 + ], + "deps": [ + "cl-lib" + ], + "commit": "fceb2ae12a3065b2a265b921baca0891c5ea54dc", + "sha256": "0cfldhhmgbr55fvhq85hrksf9n8m27rd1p28lbib0bpghgnax0v7" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "51d92f820f3e93776fff6cdb9690458816888bdc", + "sha256": "1faklr7jz1s6hs1xrzhvddlibhbjbqwxsb8iz6i5c8dg9sj3hw45" + } + }, + { + "ename": "slack", + "commit": "f0258cc41de809b67811a5dde3d475c429df0695", + "sha256": "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp", + "fetcher": "github", + "repo": "yuya373/emacs-slack", + "unstable": { + "version": [ + 20190710, + 749 + ], + "deps": [ + "alert", + "circe", + "emojify", + "oauth2", + "request", + "websocket" + ], + "commit": "df605f45f15f9e78c5e622827a5e31475859983b", + "sha256": "0gpisd3mkdwbj0xg8f3r99v4z51z20nglfkfh80g6p0wf934l69r" + } + }, + { + "ename": "slideview", + "commit": "b250f977f44a08346ee9715b416c9706375227a1", + "sha256": "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-slideview", + "unstable": { + "version": [ + 20150324, + 2240 + ], + "deps": [ + "cl-lib" + ], + "commit": "b6d170bda139aedf81b47dc55cbd1a3af512fb4c", + "sha256": "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "commit": "ec2340e7b0e74201206d14e3eaef1e77149f122d", + "sha256": "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk" + } + }, + { + "ename": "slim-mode", + "commit": "6a3b59bdbc53d7c0b4c4d6434689f7aab2546678", + "sha256": "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac", + "fetcher": "github", + "repo": "slim-template/emacs-slim", + "unstable": { + "version": [ + 20170728, + 1348 + ], + "commit": "3636d18ab1c8b316eea71c4732eb44743e2ded87", + "sha256": "1sqylm6ipmlh9249mmwfb16b4pv94cvzdwvi3zakdpz713phyjw5" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "fe8abb644b7b9cc0ed1e76d9ca8d6c01edccbdb8", + "sha256": "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7" + } + }, + { + "ename": "slime", + "commit": "47609a81b81330820f6ddf717400dc7fa06aaabf", + "sha256": "1ds8iprxr04wdhnnw4129v5l3w3k5rjp5ax156ppqr5i7wxx1zac", + "fetcher": "github", + "repo": "slime/slime", + "unstable": { + "version": [ + 20190724, + 1352 + ], + "deps": [ + "cl-lib", + "macrostep" + ], + "commit": "11c0d8349347ab91449306f2448f2a558e747e90", + "sha256": "1yawjp5gcj3ainrbmlwjgxddzdbsfyq37kv5fjkzj8dywggdv8qy" + }, + "stable": { + "version": [ + 2, + 24 + ], + "deps": [ + "cl-lib", + "macrostep" + ], + "commit": "c1f15e2bd02fabe7bb468b05fe311cd9a932f14f", + "sha256": "0w7j835p9riyd6n4znj3x255lwsrmy0lj51hpc7bhk0vdz2cv2qm" + } + }, + { + "ename": "slime-company", + "commit": "abe5036c6de996a723bc800e0f031314e1188660", + "sha256": "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2", + "fetcher": "github", + "repo": "anwyn/slime-company", + "unstable": { + "version": [ + 20190117, + 1538 + ], + "deps": [ + "company", + "slime" + ], + "commit": "7290cbad711a62f76c28e5638d1a4d77197a358c", + "sha256": "0kslq8kq8dc192bpiaalyqisv3841h3dxy1wxk8hw3nyyww08mgx" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "company", + "slime" + ], + "commit": "6c244690c80387a32b0cb984843e00c8b75ad6bb", + "sha256": "1hl1hqkc1pxga9k2k8k15d7dip7sfsmwf4wm4sh346m6nj606q8g" + } + }, + { + "ename": "slime-docker", + "commit": "15ec3f7208287161571c8fc3b29369ceabb44e5f", + "sha256": "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa", + "fetcher": "github", + "repo": "daewok/slime-docker", + "unstable": { + "version": [ + 20190430, + 157 + ], + "deps": [ + "cl-lib", + "docker-tramp", + "slime" + ], + "commit": "151cec4a11965cdc00d231900a50f2c9f455fce2", + "sha256": "1sp6qi2i1cl41ga9y6fwf7q855y0b59fcbxdiggdhigwd5zslzcv" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "cl-lib", + "docker-tramp", + "slime" + ], + "commit": "1ba41c2d86540a84b47466b0b6957f8063f23aa8", + "sha256": "168s5xsf7l6s8x5hcmzmk5j9d8a3wpr4s3dlm697dg2n1717gl2z" + } + }, + { + "ename": "slime-repl-ansi-color", + "commit": "07fd791e2674ce3c773e2c213e045d6c7d12d848", + "sha256": "187xs5gfwjpkg31zhrrivjkp0j8wrr2xbjszr1hayzx5c8d7yz39", + "fetcher": "gitlab", + "repo": "augfab/slime-repl-ansi-color", + "unstable": { + "version": [ + 20190426, + 1414 + ], + "deps": [ + "slime" + ], + "commit": "fdd0c7a75a217abca2ff16ab9281d55f392bd841", + "sha256": "0d3q9js5vybddniyirvvabljmxasgdqimjdpy7pn48hh4rd875di" + } + }, + { + "ename": "slime-theme", + "commit": "641d1959bd31598fcdacd39a3d1bb077dcccfa5c", + "sha256": "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00", + "fetcher": "github", + "repo": "emacsfodder/emacs-slime-theme", + "unstable": { + "version": [ + 20170808, + 1322 + ], + "commit": "8e5880ac69e0b6a079103001cc3a90bdb688998f", + "sha256": "0g90ypwyvpdzilvhj0rgfrp78a5gflply3rix2wx8rncw569qb6g" + } + }, + { + "ename": "slime-volleyball", + "commit": "853f47f469e372bdbae40f3cea60d9598e966fab", + "sha256": "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7", + "fetcher": "github", + "repo": "fitzsim/slime-volleyball", + "unstable": { + "version": [ + 20190701, + 1624 + ], + "commit": "6c135ad18897c3566d4dadfe847061532600ba2e", + "sha256": "1k46a9apxk95hd98rip84f728sjq52qbv286sixy3l59k8vls53q" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "159b5c0f40b109e3854e94b89ec5383854c46ae3", + "sha256": "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3" + } + }, + { + "ename": "slirm", + "commit": "6407db0f265c49fdddaa6e8f85f295e2b90a077b", + "sha256": "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7", + "fetcher": "github", + "repo": "fbie/slirm", + "unstable": { + "version": [ + 20160201, + 1425 + ], + "commit": "9adfbe1fc67580e7d0d90f7e927a25d63a797464", + "sha256": "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa" + } + }, + { + "ename": "slovak-holidays", + "commit": "d5c6b2208ef209dfe57c2c137a88ce08a4eae475", + "sha256": "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg", + "fetcher": "github", + "repo": "Fuco1/slovak-holidays", + "unstable": { + "version": [ + 20150418, + 855 + ], + "commit": "effb16dfcd14797bf7448f5113085479db339c02", + "sha256": "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28" + } + }, + { + "ename": "slow-keys", + "commit": "5d16756967dd9077399b92cde2ddd7784739b693", + "sha256": "03p0qx8a3g8mapjhdf9pjp3n0ng2pxmizpqn87wk8mbc8cmlwk2w", + "fetcher": "github", + "repo": "manuel-uberti/slow-keys", + "unstable": { + "version": [ + 20180831, + 459 + ], + "commit": "b93ad77f9fc1d14e080d7d64864fc9cb222248b6", + "sha256": "1s4yk6w9fqf6hmimjcq8r7b54v7f2hz3isihiaidj3sv5zclhflw" + } + }, + { + "ename": "slstats", + "commit": "fe7c8c241cc6920bbedb6711db63ea28ed633327", + "sha256": "0z5y2fmb3v16g5gf87c9gll04wbjp3d1cf7gm5cxi4w3y1kw4r7q", + "fetcher": "github", + "repo": "davep/slstats.el", + "unstable": { + "version": [ + 20170823, + 849 + ], + "deps": [ + "cl-lib" + ], + "commit": "e9696066abf3f2b7b818a57c062530dfd9377033", + "sha256": "1mjzr6lqcyx3clp3bxq77k2rpkaglnq407xdk05xkaqissirpc83" + }, + "stable": { + "version": [ + 1, + 10 + ], + "deps": [ + "cl-lib" + ], + "commit": "e9696066abf3f2b7b818a57c062530dfd9377033", + "sha256": "1mjzr6lqcyx3clp3bxq77k2rpkaglnq407xdk05xkaqissirpc83" + } + }, + { + "ename": "sly", + "commit": "974d8812a4c5e45221ce3c32ae72c15ed29665c3", + "sha256": "000g5qpy45zqrh3g4mk70mh2lakadfq18djrq7cabagw1qmhqy41", + "fetcher": "github", + "repo": "joaotavora/sly", + "unstable": { + "version": [ + 20190709, + 1511 + ], + "commit": "249a94ca9560d7ac07607d9a23cfc5c5f487943a", + "sha256": "02snfrgqp9iwprg4was3njhskbvlypggcgzc58alp0nvlvpszs6g" + }, + "stable": { + "version": [ + 2, + 22 + ], + "commit": "8d9fdf34fe542ec280ee042ee7bdea16e512d3c0", + "sha256": "0zsliqfd92ivg2y2w1z6scn6i3w658x8bi1wd0rvf6mddc74lvj6" + } + }, + { + "ename": "sly-asdf", + "commit": "09e59410bebffb8ab7e3236ee97f692665833f31", + "sha256": "1fn1gm439x1axmslgcxinj8lx2vh7jq2qjbxpyjgv5lj9wia0bzi", + "fetcher": "github", + "repo": "mmgeorge/sly-asdf", + "unstable": { + "version": [ + 20190619, + 806 + ], + "deps": [ + "sly" + ], + "commit": "7fe3fedc110c2622ffc8d6517a38b03fb774a997", + "sha256": "1vyvvqcxccwg2ar9jl41zwg12a7iz42mv8bycy07nawwcbyq2l7q" + } + }, + { + "ename": "sly-hello-world", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0mry5r0qc2w9k31kifqfc9slmh8mp2pz44qb36f41i3znckf7xy4", + "fetcher": "github", + "repo": "joaotavora/sly-hello-world", + "unstable": { + "version": [ + 20190701, + 1443 + ], + "deps": [ + "sly" + ], + "commit": "355c94235afa9f79eefff1d22e97fcfa9c31d70c", + "sha256": "0aifmfw83bi0f761k1ppham0mc1b59w2bpas59355vrlbg7jm9vg" + } + }, + { + "ename": "sly-macrostep", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0gg9r5np2008593n1igq5chda1a3x1iblj0r4mqnnxa0r1hdsw3j", + "fetcher": "github", + "repo": "joaotavora/sly-macrostep", + "unstable": { + "version": [ + 20190701, + 1532 + ], + "deps": [ + "macrostep", + "sly" + ], + "commit": "6c4d8ef7b6d39d6ef10053fb6ac08bfbed519d4f", + "sha256": "1z88h5g0j0mxbqh3k56bl40sydy04jsw7cnhasiyrxyk2glsfm57" + } + }, + { + "ename": "sly-named-readtables", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0wy0z9m8632qlcxb4pw3csc52yaq7dj7gdf3pbg0wb67f32ihihz", + "fetcher": "github", + "repo": "joaotavora/sly-named-readtables", + "unstable": { + "version": [ + 20190701, + 1800 + ], + "deps": [ + "sly" + ], + "commit": "6b37ed2201174caa86a44e8ac3350dd09e91e606", + "sha256": "1if4ssv0s66gcz8pz55gark9imbw1pilxs1h7y094ygnjcm4m0li" + } + }, + { + "ename": "sly-quicklisp", + "commit": "4150455d424326667390f72f6edd22b274d9fa01", + "sha256": "0j0qkvs2v563dz2rd70dfmd0qpdwicymx59zv3gn57z5a8m14866", + "fetcher": "github", + "repo": "joaotavora/sly-quicklisp", + "unstable": { + "version": [ + 20190701, + 1444 + ], + "deps": [ + "sly" + ], + "commit": "06d7281e70d71b9a37f488c8f63fd199e1fb0f97", + "sha256": "0ml3zshd9kkjspykiadi1nlq7mr5sjcmsvbbbcxrj2d2ki2skniv" + } + }, + { + "ename": "sly-repl-ansi-color", + "commit": "981e01f562c40e02cb6d56dc1347e922fbad9c18", + "sha256": "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi", + "fetcher": "github", + "repo": "PuercoPop/sly-repl-ansi-color", + "unstable": { + "version": [ + 20171020, + 1516 + ], + "deps": [ + "cl-lib", + "sly" + ], + "commit": "b9cd52d1cf927bf7e08582d46ab0bcf1d4fb5048", + "sha256": "0fgcn6bwgz8yyjza07kfi86siargvpq4kp4j20hs6b67ckxjxx0x" + } + }, + { + "ename": "smart-backspace", + "commit": "88cd95cd623fb00d1bc6800c1dd3c665a0cce349", + "sha256": "152xdxzrr91qiyq25ghvjlbpc627cw4s120axmz2p2d48pinwir9", + "fetcher": "github", + "repo": "itome/smart-backspace", + "unstable": { + "version": [ + 20171014, + 526 + ], + "commit": "a10ec44ff325ec8c4c98b1a6e44e89e60a9aa4ac", + "sha256": "0p19qikalmvs9y1lws08mxvh2k8s219mpm3nyi9aqq62ryyfwf1n" + } + }, + { + "ename": "smart-comment", + "commit": "798c3b42e568bea63edc0c1d3ce2c2d913e3440e", + "sha256": "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12", + "fetcher": "github", + "repo": "paldepind/smart-comment", + "unstable": { + "version": [ + 20160322, + 1839 + ], + "commit": "17ddbd83205818763e6d68aa7a1aa9aaf414cbd4", + "sha256": "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4" + } + }, + { + "ename": "smart-compile", + "commit": "93562afd7b62d7535b8010179ba6ac7e8e6280d0", + "sha256": "1w3vyb6wz786ydrywkjmazyvgfl0qxamn0fgnqpn17d2c5jr9c4g", + "fetcher": "github", + "repo": "zenitani/elisp", + "unstable": { + "version": [ + 20190522, + 1125 + ], + "commit": "366a4cdab1ad20105910bc24c4f3e4f8734e4eae", + "sha256": "1kk7ya14p4vpw31rzcgwq0pmay0wm3pg2j70fv5mms9ala1jyhsy" + } + }, + { + "ename": "smart-cursor-color", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "19ah55514ashkm4f49nlbnrpwxpwlfn6x3fbi4dv0x2b8v1828ss", + "fetcher": "github", + "repo": "7696122/smart-cursor-color", + "unstable": { + "version": [ + 20141124, + 1719 + ], + "commit": "1d190f49ca77734b55ac58f1b6276e42ada967b0", + "sha256": "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn" + } + }, + { + "ename": "smart-dash", + "commit": "98a2cf93cc41cb2bba14f91a83b6949267623198", + "sha256": "1n3lh0ximwrqawdg8q9ls6aabidrawqca5w67f8vsfmrvyfx48n4", + "fetcher": "bitbucket", + "repo": "malsyned/smart-dash", + "unstable": { + "version": [ + 20110131, + 316 + ], + "commit": "f8f23121ecb1b4b153e3561065cd0846d6722638", + "sha256": "069jwi74qh9hy152k19c7avdgb89zym989v92kgghbaaiyinng22" + } + }, + { + "ename": "smart-forward", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c", + "fetcher": "github", + "repo": "magnars/smart-forward.el", + "unstable": { + "version": [ + 20140430, + 713 + ], + "deps": [ + "expand-region" + ], + "commit": "7b6dbfdbd4b646376a567c70e1a161545431b72b", + "sha256": "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha" + } + }, + { + "ename": "smart-hungry-delete", + "commit": "abbf52a856b95ab88cde1fdeeebebb81f7c61fa9", + "sha256": "03hw5p055dbayw5z43c1ippf2lnjgs77l7q969ng3fffqkazjq9b", + "fetcher": "github", + "repo": "hrehfeld/emacs-smart-hungry-delete", + "unstable": { + "version": [ + 20170412, + 1343 + ], + "commit": "7c1d56a92481594e14d40b5fdf6c48657a0108a0", + "sha256": "0mxaslx5823s68a8ggbbnmfk1jiswjvip5s4sg7ihfagnci72wni" + } + }, + { + "ename": "smart-indent-rigidly", + "commit": "3083f497180d2f7d93bb9a4b98af6ae1bcbe57b9", + "sha256": "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x", + "fetcher": "github", + "repo": "re5et/smart-indent-rigidly", + "unstable": { + "version": [ + 20141206, + 15 + ], + "commit": "323d1fe4d0b81e598249aad01bc44adb180ece0e", + "sha256": "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi" + } + }, + { + "ename": "smart-jump", + "commit": "52f29e14e61b28cd1637ca5d6bd878d91a71251f", + "sha256": "14c7p6xqasd0fgn70zj1jlpwjxldzqx44bcdqdk6nmjihw0rk632", + "fetcher": "github", + "repo": "jojojames/smart-jump", + "unstable": { + "version": [ + 20190423, + 158 + ], + "deps": [ + "dumb-jump" + ], + "commit": "7df77da872dc836dbf032388fc6de82dbc9fa22c", + "sha256": "0w8jfsm6k2ayk0hg0imsm2vv8y5im5crlij9zi18iwa1mrqkmhsp" + } + }, + { + "ename": "smart-mark", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0kx34983qqxkx2afql1daj155294dkbinw861lhx537614fq7wmn", + "fetcher": "github", + "repo": "zhangkaiyulw/smart-mark", + "unstable": { + "version": [ + 20150912, + 210 + ], + "commit": "04b522a23e3aae8381c6a976fc978532fcb2e7d0", + "sha256": "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg" + } + }, + { + "ename": "smart-mode-line", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6", + "fetcher": "github", + "repo": "Malabarba/smart-mode-line", + "unstable": { + "version": [ + 20190527, + 1156 + ], + "deps": [ + "rich-minority" + ], + "commit": "999be065b195f2eddb4e1b629f99038d832d44b7", + "sha256": "0jyvyn7pkqvyyv1rga3i10f4cwfbb0miacbib8lsrrhayrnal186" + }, + "stable": { + "version": [ + 2, + 13 + ], + "deps": [ + "rich-minority" + ], + "commit": "9a6d821e0c78361ab35c6e403fc582b76558a1a7", + "sha256": "164b697xm1rwcggv37dymhf3npbyh2bs59z8b6m5x35lb4c3lf8b" + } + }, + { + "ename": "smart-mode-line-atom-one-dark-theme", + "commit": "0a6f3addec8d8fa957bfbc81071d3a434e843cf0", + "sha256": "02hasm2vjvw3r9xkdnn2ddsval8vvhvx15dsac0jp3cc1y1qkm27", + "fetcher": "github", + "repo": "daviderestivo/smart-mode-line-atom-one-dark-theme", + "unstable": { + "version": [ + 20181220, + 1756 + ], + "deps": [ + "smart-mode-line" + ], + "commit": "79261aeafa89664039201e3d3f405bc8b0a6aa8d", + "sha256": "06x1na621cm7183im2g2gxkvaqm0yfr9b9i0fbz9bwkcmijxrgmw" + } + }, + { + "ename": "smart-mode-line-powerline-theme", + "commit": "60072b183151e519d141ec559b4902d20c87904c", + "sha256": "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4", + "fetcher": "github", + "repo": "Malabarba/smart-mode-line", + "unstable": { + "version": [ + 20160706, + 38 + ], + "deps": [ + "powerline", + "smart-mode-line" + ], + "commit": "999be065b195f2eddb4e1b629f99038d832d44b7", + "sha256": "0jyvyn7pkqvyyv1rga3i10f4cwfbb0miacbib8lsrrhayrnal186" + }, + "stable": { + "version": [ + 2, + 13 + ], + "deps": [ + "powerline", + "smart-mode-line" + ], + "commit": "9a6d821e0c78361ab35c6e403fc582b76558a1a7", + "sha256": "164b697xm1rwcggv37dymhf3npbyh2bs59z8b6m5x35lb4c3lf8b" + } + }, + { + "ename": "smart-newline", + "commit": "3f729926f82d6b61f07f5c8a5e19d46afdcad568", + "sha256": "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w", + "fetcher": "github", + "repo": "ainame/smart-newline.el", + "unstable": { + "version": [ + 20131208, + 340 + ], + "commit": "0553a9e4be7188352de1a28f2eddfd28e7436f94", + "sha256": "0w0v3gzfg3cphz701g30sf7l92v3npsd7028pjp5g7rgv3pwkgsd" + } + }, + { + "ename": "smart-region", + "commit": "cf011493ee3ebc38290ee0349c8475b0588ac928", + "sha256": "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc", + "fetcher": "github", + "repo": "uk-ar/smart-region", + "unstable": { + "version": [ + 20150903, + 1403 + ], + "deps": [ + "cl-lib", + "expand-region", + "multiple-cursors" + ], + "commit": "5a8017fd8e8dc3483865951c4942cab3f96f69f6", + "sha256": "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf" + } + }, + { + "ename": "smart-semicolon", + "commit": "fe339b95636b02ceb157294055d2f5f4c4b0b8cf", + "sha256": "1vq6l3vc615w0p640wy226z5i7dky666sgzczkngv07kag0iwqp0", + "fetcher": "github", + "repo": "iquiw/smart-semicolon", + "unstable": { + "version": [ + 20171008, + 133 + ], + "commit": "bcea2aa37befa40abf8b24a2d2314904e6df43b3", + "sha256": "0c58ncxwf8wakql2pfiawkl3rlfxsf2zy937nvahf9ygiic8bl3y" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "c11096679dbed3875c37413337ee490ee7951b63", + "sha256": "1v6z3a1f6nxc62n7595qnji39ywdsz7xy5bkl2218v3y7gkbc518" + } + }, + { + "ename": "smart-shift", + "commit": "79726ff0fbfa24a44d303cc9719f5962638b47e0", + "sha256": "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3", + "fetcher": "github", + "repo": "hbin/smart-shift", + "unstable": { + "version": [ + 20150203, + 725 + ], + "commit": "a26ab2b240137e62ec4bce1698ed9c5f7b6d13ae", + "sha256": "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8" + } + }, + { + "ename": "smart-tab", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5", + "fetcher": "github", + "repo": "genehack/smart-tab", + "unstable": { + "version": [ + 20170902, + 2107 + ], + "commit": "76a8ec13384975d39aa1b25e5384a02558dba574", + "sha256": "02mj2is05adq5v64aahivbkx2kzrxmmg2va650hsvl4izj3dr2x3" + } + }, + { + "ename": "smart-tabs-mode", + "commit": "d712f0fb9538945713faf773772bb359fe6f509f", + "sha256": "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl", + "fetcher": "github", + "repo": "jcsalomon/smarttabs", + "unstable": { + "version": [ + 20160629, + 1452 + ], + "commit": "9cc2594b82b03e7d68645a4878f9359f8b8c34c5", + "sha256": "0bjl3j047jh674vyfmh9izwak2yic8f7aqv832hn1inhnavsl3xx" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "8b196d596b331f03fba0efdb4e31d2fd0752c4a7", + "sha256": "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z" + } + }, + { + "ename": "smart-window", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0w24v7v0477yl5zchyk6713yqp8lyfz600myvv4dp3kgppxpgd3f", + "fetcher": "github", + "repo": "dryman/smart-window.el", + "unstable": { + "version": [ + 20160717, + 130 + ], + "deps": [ + "cl-lib" + ], + "commit": "5996461b7cbc5ab4509ac48537916eb29a8e4c16", + "sha256": "0p1cqpdsp2vdx85i22shyzfhz22zwf1k1dxkqcmlgh3y7f4qq8ir" + } + }, + { + "ename": "smartparens", + "commit": "bd98f85461ef7134502d4f2aa8ce1bc764f3bda3", + "sha256": "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6", + "fetcher": "github", + "repo": "Fuco1/smartparens", + "unstable": { + "version": [ + 20190728, + 2037 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "7080e7fba9f478c2e5d4c18a325c3a5d60f6be76", + "sha256": "029hy609p74w36ivcnw40x6j2v6agjg5bha4k8wbch3wf9y823mz" + }, + "stable": { + "version": [ + 1, + 11, + 0 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "4873352b5d0a1c5142658122de1b6950b8fe7e4d", + "sha256": "0zij2f2rjjym98w68jkp10n1ckpfprlkk217c3fg16hz5nq4vnm6" + } + }, + { + "ename": "smartrep", + "commit": "81cb649dc49767c21f79668d6bee950567b05aa0", + "sha256": "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn", + "fetcher": "github", + "repo": "myuhe/smartrep.el", + "unstable": { + "version": [ + 20150509, + 230 + ], + "commit": "f0ff5a6d7b8603603598ae3045c98b011e58d86e", + "sha256": "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "0b73bf3d1a3c795671bfee0a36cecfaa54729446", + "sha256": "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f" + } + }, + { + "ename": "smartscan", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1q0lqms16g7avln1pbxzb49z3w96kv1r7lbh61ijlnz3jips098w", + "fetcher": "github", + "repo": "mickeynp/smart-scan", + "unstable": { + "version": [ + 20170211, + 2033 + ], + "commit": "234e077145710a174c20742de792b97ed2f965f6", + "sha256": "1nzkgfr1w30yi88h4kwgiwq4lcd0fpm1cd50gy0csjcpbnyq6ykf" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "13c9fd6c0e38831f78dec55051e6b4a643963176", + "sha256": "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4" + } + }, + { + "ename": "smarty-mode", + "commit": "5f2a50f62475639af011c99c6cc38928b74b3b0a", + "sha256": "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v", + "fetcher": "github", + "repo": "emacsorphanage/smarty-mode", + "unstable": { + "version": [ + 20100703, + 1158 + ], + "commit": "3dfdfe1571f5e9ef55a29c51e5a80046d4cb7568", + "sha256": "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx" + } + }, + { + "ename": "smbc", + "commit": "05b4f16cd8028edc758ada842432df11c8276fd3", + "sha256": "0aviqa8mk8dxxnddfskq9jgz3knqhf0frj7gq7nk6ckxkrxrgqn4", + "fetcher": "github", + "repo": "sakshamsharma/emacs-smbc", + "unstable": { + "version": [ + 20171229, + 1808 + ], + "commit": "10538e3d575ba6ef3c94d555af2744b42dfd36c7", + "sha256": "0b2fndvp9kzlr65b0gr0z5hmapa4y96a6zvc2nrlijffkgyk05nn" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "c377b806118d82140197d9cb1095548477e00497", + "sha256": "16cj6jsy1psmcjshxb46i44sf1zb9s4mfiagl5cr22njy01ajq1h" + } + }, + { + "ename": "smblog", + "commit": "6469537a11972509fa2bfb10eb3f8816cc98efed", + "sha256": "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr", + "fetcher": "github", + "repo": "aaptel/smblog-mode", + "unstable": { + "version": [ + 20170419, + 1021 + ], + "commit": "5245e7aeac20915121946f59bba30899305d950b", + "sha256": "0i5q29b3hk644dnc0d98d613l065p0k846ljg13vgawpiic6ld6b" + } + }, + { + "ename": "smeargle", + "commit": "c5b985b24a23499454dc61bf071073df325de571", + "sha256": "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd", + "fetcher": "github", + "repo": "syohex/emacs-smeargle", + "unstable": { + "version": [ + 20161212, + 2358 + ], + "commit": "0665b1ff5109731898bc4a0ca6d939933b804777", + "sha256": "0p0kxmjdr02l9injlyyrnnzqdbb7mirz1xx79c3lw1rgpalf0jnf" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "0665b1ff5109731898bc4a0ca6d939933b804777", + "sha256": "0p0kxmjdr02l9injlyyrnnzqdbb7mirz1xx79c3lw1rgpalf0jnf" + } + }, + { + "ename": "smex", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda", + "fetcher": "github", + "repo": "nonsequitur/smex", + "unstable": { + "version": [ + 20151212, + 2209 + ], + "commit": "55aaebe3d793c2c990b39a302eb26c184281c42c", + "sha256": "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26" + }, + "stable": { + "version": [ + 3, + 0 + ], + "commit": "97b4a4d82a4449e3f1a3fa8a93387d6eb0ef9c26", + "sha256": "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5" + } + }, + { + "ename": "smiles-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0wf02aj9bhl2m861342f5jfkx3xws1ggcyszfp9jphlykw6r0v9k", + "fetcher": "github", + "repo": "stardiviner/smiles-mode", + "unstable": { + "version": [ + 20160717, + 1120 + ], + "commit": "fbb381758adcb000a0c304be1b797f985f00e2de", + "sha256": "07lzr1p58v95a4n6zad8y0dpj7chbxlcmb6s144pvcxx8kjwd4dr" + } + }, + { + "ename": "sml-modeline", + "commit": "4728fce21f03c95bcc2b562648e99c537fb09cd8", + "sha256": "00kz03ixkfnm4id8dd8aij2rhakzd4arzd790jdac1y3yyd5pp3y", + "fetcher": "github", + "repo": "emacsorphanage/sml-modeline", + "unstable": { + "version": [ + 20170614, + 2111 + ], + "commit": "d2f9f70174c4cf68c67eb3bb8088235735e34d9a", + "sha256": "18k2k213vgawxskp9m57r8qarg3pnza6nvbpyi6l03jnmf2kcw2b" + } + }, + { + "ename": "smmry", + "commit": "ba2d4be4dd4d6c378eabd833f05a944afa21817b", + "sha256": "05ikcvyr74jy3digd0ad443h5kf11w29hgnmb71bclm3mfslh5wn", + "fetcher": "github", + "repo": "microamp/smmry.el", + "unstable": { + "version": [ + 20161024, + 901 + ], + "commit": "986a1b0aec8ab1ef17dbfb7886f47e5558cf738a", + "sha256": "1gq2066js1kf035217z0n6w0bf0dsyskykf56xycci5s1i7xv2vz" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "b7ee765337fa627a6c59eb4f2a91df5d280ac6df", + "sha256": "0hzs8xi7n3bsqwm3nlm3vk8p2p33ydwxpwk9wp3325g03jl921in" + } + }, + { + "ename": "smooth-scroll", + "commit": "4ad6411f76281232848c870e8f4f5bb78e6cf328", + "sha256": "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf", + "fetcher": "github", + "repo": "k-talo/smooth-scroll.el", + "unstable": { + "version": [ + 20130322, + 414 + ], + "commit": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45", + "sha256": "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk" + }, + "stable": { + "version": [ + 1, + 2 + ], + "commit": "02320f28abb5cae28b3a18f6b9ce93129bdbfc45", + "sha256": "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk" + } + }, + { + "ename": "smooth-scrolling", + "commit": "e156f146649a51f6ee636aef95214944a8079a27", + "sha256": "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6", + "fetcher": "github", + "repo": "aspiers/smooth-scrolling", + "unstable": { + "version": [ + 20161002, + 1949 + ], + "commit": "2462c13640aa4c75ab3ddad443fedc29acf68f84", + "sha256": "1h15gjq781i6fsz32qlh51knawdr8hcqvshsz6cszp752cibdcdg" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "6a1420be510decde0a5eabc56cff229ae554417e", + "sha256": "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg" + } + }, + { + "ename": "smotitah", + "commit": "326c213450fc515573b963e794584b7b5ac995fa", + "sha256": "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2", + "fetcher": "github", + "repo": "laynor/smotitah", + "unstable": { + "version": [ + 20150218, + 1030 + ], + "commit": "f9ab562128a5460549d016913533778e8c94bcf3", + "sha256": "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx" + } + }, + { + "ename": "smtpmail-multi", + "commit": "835315ec2781ac90785824630510b9eae80c115a", + "sha256": "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss", + "fetcher": "github", + "repo": "vapniks/smtpmail-multi", + "unstable": { + "version": [ + 20160218, + 2349 + ], + "commit": "83fa9d7a02e000be95cb282c8b48446646896ea1", + "sha256": "1x0dn9hd8b0mxdfw0nrsgj4bz4ljf7i9af566iv5fqym1c4wxkhf" + } + }, + { + "ename": "smyx-theme", + "commit": "40a1aeabb75438252ebea0332fe1deaf028c956d", + "sha256": "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61", + "fetcher": "github", + "repo": "tacit7/smyx", + "unstable": { + "version": [ + 20141127, + 828 + ], + "commit": "6263f6b401bbabaed388c8efcfc0be2e58c51401", + "sha256": "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x" + } + }, + { + "ename": "snakemake-mode", + "commit": "c3a5b51fee1c9e6ce7e21555faa355d118d34b8d", + "sha256": "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4", + "fetcher": "github", + "repo": "kyleam/snakemake-mode", + "unstable": { + "version": [ + 20190412, + 228 + ], + "deps": [ + "cl-lib", + "magit-popup" + ], + "commit": "d49c6580e5e01a5e80198f4026caf1d5a717f8a0", + "sha256": "0lxxd0a735sy4igncf6f0ljk2wy38x2pm1yq90gxymwi26j75ram" + }, + "stable": { + "version": [ + 1, + 5, + 0 + ], + "deps": [ + "cl-lib", + "magit-popup" + ], + "commit": "0cadd2bbd20aae1555561e81ed72fec43ec7296e", + "sha256": "1i4cwdyhfyawfx07i63iqdx524mlphgbrl44wqqnnxrbdqm0h534" + } + }, + { + "ename": "snapshot-timemachine", + "commit": "69376b802f0687227a78838877d89163b2893c5b", + "sha256": "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p", + "fetcher": "github", + "repo": "mrBliss/snapshot-timemachine", + "unstable": { + "version": [ + 20161221, + 929 + ], + "commit": "99efcebab309b11ed512a8dc62555d3834df5efb", + "sha256": "18qibcyqxjwpvphmpghppb8ky1xcch1dd4pz91qj5f4h42684ips" + } + }, + { + "ename": "snapshot-timemachine-rsnapshot", + "commit": "94358fb8d1486491903c331d9e90ba5198117aa8", + "sha256": "0fxijd94p961ab0p4ddmhja4bfrif2d87v32g4c41amc1klyf25r", + "fetcher": "github", + "repo": "NicolasPetton/snapshot-timemachine-rsnapshot", + "unstable": { + "version": [ + 20170324, + 1213 + ], + "deps": [ + "seq", + "snapshot-timemachine" + ], + "commit": "72b0b700d80f1a0442e62bbbb6a0c8c59182f97f", + "sha256": "1bdy7p0bjfdlv6l6yih6fvvi7xpldal4rj8l2ajpc6sgby24h8bb" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "seq", + "snapshot-timemachine" + ], + "commit": "72b0b700d80f1a0442e62bbbb6a0c8c59182f97f", + "sha256": "1bdy7p0bjfdlv6l6yih6fvvi7xpldal4rj8l2ajpc6sgby24h8bb" + } + }, + { + "ename": "snazzy-theme", + "commit": "18c89a612418e0f49b7e6ae29a678d2fc1ffaf3d", + "sha256": "0srmhwhqrp1s01p1znhjzs254l3r2i6c91v7cnlwlvrls1sbh32k", + "fetcher": "github", + "repo": "weijiangan/emacs-snazzy", + "unstable": { + "version": [ + 20170823, + 1832 + ], + "deps": [ + "base16-theme" + ], + "commit": "57a1763b49b4a776084c16bc70c219246fa5b412", + "sha256": "1y2l8b72jzcyarilj4j4q3rwcg0wkn2r3m01k0g2kg73zsffvhss" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "base16-theme" + ], + "commit": "578d7ebc4ed91c0a630b652c4b6fdd54d9ae16cd", + "sha256": "0gykymah4ap7zgjr7fkir21avcdhgy6n88nwxl1iynim3vkq441v" + } + }, + { + "ename": "snippet", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1yld7y1hsrqs0f0iq7zfwknil5zqv65npm67nh548hbyy3rhgd68", + "fetcher": "github", + "repo": "pkazmier/snippet.el", + "unstable": { + "version": [ + 20130210, + 2315 + ], + "commit": "11d00dd803874b93836f2010b08bd2c97b0f3c63", + "sha256": "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y" + } + }, + { + "ename": "snoopy", + "commit": "4a882cd92964ac195a09469006c9a44dc202f000", + "sha256": "1wa8jykqyj6rxqfhwbiyli6yh8s7n0pqv7fc9sfaymarda93zbgi", + "fetcher": "github", + "repo": "anmonteiro/snoopy-mode", + "unstable": { + "version": [ + 20171008, + 2004 + ], + "deps": [ + "cl-lib" + ], + "commit": "ec4123bdebfe0bb7bf4feaac2dc02b59caffe386", + "sha256": "01l44lshw0zvykay9886s1vqryanagkd4ciw3ramchn0baqz11vl" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "ec4123bdebfe0bb7bf4feaac2dc02b59caffe386", + "sha256": "01l44lshw0zvykay9886s1vqryanagkd4ciw3ramchn0baqz11vl" + } + }, + { + "ename": "soar-mode", + "commit": "818113ef6f93cc86fd30441d508012e5baa71893", + "sha256": "0jm4vllbppzs2vvkky96hwdv581142dxdfssrp6wsd56j38nr9sd", + "fetcher": "github", + "repo": "adeschamps/soar-mode", + "unstable": { + "version": [ + 20190503, + 1843 + ], + "commit": "13b6fca62ea6574d230516fddf359a61f6558ecd", + "sha256": "1y1z4lyv1b56sfimfpxzix5zww97hbci8a9q4cphx65hwkgbfa0d" + } + }, + { + "ename": "socyl", + "commit": "774b3006f5b6b781594257f1d9819068becbbcc1", + "sha256": "00b7x247cyjh4gci101fq1j6708vbcz1g9ls3845w863wjf6m5sz", + "fetcher": "github", + "repo": "nlamirault/socyl", + "unstable": { + "version": [ + 20170212, + 642 + ], + "deps": [ + "cl-lib", + "dash", + "pkg-info", + "s" + ], + "commit": "1ef2da42f66f3ab31a34131e51648f352416f0ba", + "sha256": "0jks5dkxhhgh4gbli90p71s8354iywlwj2lq6n5fyqxbdxzk412d" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "cl-lib", + "dash", + "pkg-info", + "s" + ], + "commit": "fcc0deda5b6c39d25e48e7da2a0ae73295193ea8", + "sha256": "1a8qd9hcmp4xl6hyvlq116nr9cn392bmrrda8vqkvjpd8rm8i776" + } + }, + { + "ename": "soft-charcoal-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1j9yd4kfh7ih5ipmwvxh9qqq6wxv6qk8a9vb5jiyk90dn8a2d7g5", + "fetcher": "github", + "repo": "mswift42/soft-charcoal-theme", + "unstable": { + "version": [ + 20140420, + 1643 + ], + "commit": "5607ab977fae6638e78b1495e02da8955c9ba19f", + "sha256": "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm" + } + }, + { + "ename": "soft-morning-theme", + "commit": "26f26cb5cd4ed288a042d37039da83b38b9923d0", + "sha256": "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr", + "fetcher": "github", + "repo": "mswift42/soft-morning-theme", + "unstable": { + "version": [ + 20150918, + 2041 + ], + "commit": "c0f9c70c97ef2be2a093cf839c4bfe27740a111c", + "sha256": "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf" + } + }, + { + "ename": "soft-stone-theme", + "commit": "e87cea74119e8239662607072a44e5314eeae7ea", + "sha256": "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v", + "fetcher": "github", + "repo": "mswift42/soft-stone-theme", + "unstable": { + "version": [ + 20140614, + 835 + ], + "commit": "fb475514cfb02cf30ce358a61c48e46614344d48", + "sha256": "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl" + } + }, + { + "ename": "solaire-mode", + "commit": "52c69070eef3003eb53e1436c538779c74670ce6", + "sha256": "0pvgip12xl16rwz4wqmqjd8nhh3a299aknfsghazmxigamlmlsl5", + "fetcher": "github", + "repo": "hlissner/emacs-solaire-mode", + "unstable": { + "version": [ + 20190721, + 1046 + ], + "deps": [ + "cl-lib" + ], + "commit": "794245665c3374af74880cbc7b16b4da02ad0411", + "sha256": "0s63fxdznclqz5gy0vqvw50g92dgk452mqwx67akj68yl35apj8c" + }, + "stable": { + "version": [ + 1, + 0, + 9 + ], + "deps": [ + "cl-lib" + ], + "commit": "fffdcc46f3956f415496342de7e24488b6e751c5", + "sha256": "011m4r7s6i9lgjymh7jgq5jwwrpz4vmpvp3c8d4ix96v5hi04kzg" + } + }, + { + "ename": "solarized-theme", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12", + "fetcher": "github", + "repo": "bbatsov/solarized-emacs", + "unstable": { + "version": [ + 20190716, + 634 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "6d11d3e45e2def5ce5efb45541f9096b9e264f9a", + "sha256": "0gv202102p998mp1yj9dlhqvv5zqhnl51gfagy2wdmyslbkj1bfi" + }, + "stable": { + "version": [ + 1, + 3, + 0 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "c42a932e5c467c1ce12c42276d35bfb8f666e96d", + "sha256": "1m6grd8ym4azxi09ya236vil9ylqalli99p9fafd5zmzq647l840" + } + }, + { + "ename": "solidity-flycheck", + "commit": "e561d869f4e32bad5d1a8678f67e591ff586d6de", + "sha256": "1lx64y77q33a2lrg5sj5h56gicw1lk8qmxmva5bgc4zxxd8qwz6f", + "fetcher": "github", + "repo": "ethereum/emacs-solidity", + "unstable": { + "version": [ + 20181117, + 1518 + ], + "deps": [ + "flycheck", + "solidity-mode" + ], + "commit": "47f15b2663a6cf92ae6ebf655841a9509ad79017", + "sha256": "0zhr5fcv8vlkcnya36y9smpgw7ylb0fkx0px8zr0zhr2f9xgjmph" + }, + "stable": { + "version": [ + 0, + 1, + 9 + ], + "commit": "d0ff4dea49540f37301d869f2797fca2492f55d5", + "sha256": "1wcy5z4wggn3zs9h1kyvm0ji51ppjcqdmym3mmxbrhan6a0kq724" + } + }, + { + "ename": "solidity-mode", + "commit": "02d3fdae111b14a87aaa7a1b3f44e545c5e3d2ac", + "sha256": "15vz3ayl1p3dn2cavm68rqv901c1b7dxm2j8iazwzj3q15ln8xvn", + "fetcher": "github", + "repo": "ethereum/emacs-solidity", + "unstable": { + "version": [ + 20190302, + 909 + ], + "commit": "47f15b2663a6cf92ae6ebf655841a9509ad79017", + "sha256": "0zhr5fcv8vlkcnya36y9smpgw7ylb0fkx0px8zr0zhr2f9xgjmph" + }, + "stable": { + "version": [ + 0, + 1, + 9 + ], + "commit": "d0ff4dea49540f37301d869f2797fca2492f55d5", + "sha256": "1wcy5z4wggn3zs9h1kyvm0ji51ppjcqdmym3mmxbrhan6a0kq724" + } + }, + { + "ename": "sonic-pi", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0j6n1qgdrma6vvi6f7xiy66qwsl8710pca4ga9i7srhxv0r47x68", + "fetcher": "github", + "repo": "repl-electric/sonic-pi.el", + "unstable": { + "version": [ + 20171205, + 1205 + ], + "deps": [ + "cl-lib", + "dash", + "highlight", + "osc" + ], + "commit": "3cf101b3b299735ed91658c7791ea4f04164e076", + "sha256": "1x2w7qcx9xcvagb47hlc5vsf5aj5mr0mzvnazyd7ajjilbzn48yr" + } + }, + { + "ename": "soothe-theme", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "124akv3a4q4vrmprdcjmq7rq6x73mz4wqxvnlczglh9vjl39ndbk", + "fetcher": "github", + "repo": "emacsfodder/emacs-soothe-theme", + "unstable": { + "version": [ + 20141027, + 1441 + ], + "commit": "0786fe70c6c1b4ddcfb932fdc6862b9611cfc09b", + "sha256": "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw" + } + }, + { + "ename": "sort-words", + "commit": "0a4bd566392d7cebe8a891d787439512e8d34cf9", + "sha256": "1hvbq09byjdbqzbyashw3y1h65wins44jnqcdic7vqzd1p1mzwka", + "fetcher": "github", + "repo": "dotemacs/sort-words.el", + "unstable": { + "version": [ + 20160929, + 1335 + ], + "commit": "7b6e108f80237363faf7ec28b2c58dec270b8601", + "sha256": "18cwii9h2planb9bgrih4hkz2cqinbl8wq5sal4b8kwnaq07bbw7" + } + }, + { + "ename": "sos", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0d0n2h7lbif32qgz0z2c36536mrx36d22gq86xm7kmxday6iy19k", + "fetcher": "github", + "repo": "rudolfolah/emacs-sos", + "unstable": { + "version": [ + 20141215, + 403 + ], + "deps": [ + "org" + ], + "commit": "1573adca912b88b5010d99a25c83a5b2313bd39c", + "sha256": "19jwnny0v6ppakpaaxv9qhr6353mksh9kxiz61kp4h12n6sfrb7p" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "org" + ], + "commit": "c3906ca6872f460c0bdd276410519308626313f1", + "sha256": "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1" + } + }, + { + "ename": "sotclojure", + "commit": "3a2ccef8af91eada4449d9cd4bda6bd28272722e", + "sha256": "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090", + "fetcher": "github", + "repo": "Malabarba/speed-of-thought-clojure", + "unstable": { + "version": [ + 20170922, + 8 + ], + "deps": [ + "cider", + "clojure-mode", + "sotlisp" + ], + "commit": "a480c887b53cb007b7b099c5ffcab89b9e59d7bc", + "sha256": "1gf5fsrjigzxabd9k47lb98y3wdjwpw02x9ldnjzrgxfjfbxgqm0" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "deps": [ + "cider", + "clojure-mode", + "sotlisp" + ], + "commit": "ceac82aa691e8d98946471be6aaff9c9a4603c32", + "sha256": "1a6riq7ksk5m76dsgc75d8b992nyr50l48l8cpms9064m6b0r9jv" + } + }, + { + "ename": "sotlisp", + "commit": "1e6aed365c42987d64d0cd9a8a6178339b1b39e8", + "sha256": "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk", + "fetcher": "github", + "repo": "Malabarba/speed-of-thought-lisp", + "unstable": { + "version": [ + 20190211, + 2026 + ], + "commit": "ed2356a325c7a4a88ec1bd31381c8666e8997e97", + "sha256": "1r7skjxiaqdkrhjrxh1sgzikip9sdr8apphgawvq4x6lir8g8jfz" + }, + "stable": { + "version": [ + 1, + 6, + 2 + ], + "commit": "fffe8d0b42b143a2e7df0470d9049fa57b6ecac5", + "sha256": "0j5zwb1ypqps30126w2684lmjh8ia4qxg8inlajcbv8i3pbai7k6" + } + }, + { + "ename": "sound-wav", + "commit": "8333470e3d84d5433be489a23e065c876bed2ab2", + "sha256": "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f", + "fetcher": "github", + "repo": "syohex/emacs-sound-wav", + "unstable": { + "version": [ + 20181126, + 1726 + ], + "deps": [ + "cl-lib", + "deferred" + ], + "commit": "49a9f10334b914cf6429e49b5449e0711a3aa251", + "sha256": "1zg32gn0r06qcp6i5fxwns8xv5nqpc6hfzqajwj0hfvhkqdndv4j" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib", + "deferred" + ], + "commit": "2a8c8a9bd797dfbf4a0aa1c023a464b803227ff8", + "sha256": "1ba1r359cb1dms24ajn0xfrqn8c9y08m6m7dwgxpylyyjwh1096y" + } + }, + { + "ename": "soundcloud", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c", + "fetcher": "github", + "repo": "thieman/soundcloud.el", + "unstable": { + "version": [ + 20150502, + 326 + ], + "deps": [ + "deferred", + "emms", + "json", + "request", + "request-deferred", + "string-utils" + ], + "commit": "f998d4276ea90258909c698f6a5a51fccb667c08", + "sha256": "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v" + } + }, + { + "ename": "soundklaus", + "commit": "811d0f1d195a0c6533fd412f0e444100e0685f90", + "sha256": "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb", + "fetcher": "github", + "repo": "r0man/soundklaus.el", + "unstable": { + "version": [ + 20160314, + 1231 + ], + "deps": [ + "cl-lib", + "dash", + "emms", + "pkg-info", + "request", + "s" + ], + "commit": "09ec030843482594beae2664b8fe1e0ad1e66472", + "sha256": "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5" + } + }, + { + "ename": "sourcekit", + "commit": "45969cd5cd936ea61fbef4722843b0b0092d7b72", + "sha256": "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks", + "fetcher": "github", + "repo": "nathankot/company-sourcekit", + "unstable": { + "version": [ + 20180101, + 834 + ], + "deps": [ + "dash", + "dash-functional", + "request" + ], + "commit": "abf9bc5a0102eb666d3aa6d6bf22f6efcc852781", + "sha256": "1g8a4fgy2c5nqk8gysbnzn5jvfw6ynmfhc6j3hkrbswgf9188v5n" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "dash-functional", + "request" + ], + "commit": "8ba62ac25bf533b7f148f333bcb5c1db799f749b", + "sha256": "01dh0wdaydiai4v13r8g05rpiwqr5qqi34wif8vbk2mrr25wc7i9" + } + }, + { + "ename": "sourcemap", + "commit": "557d18259543263932fccdbaf44c4e7986bd277b", + "sha256": "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5", + "fetcher": "github", + "repo": "syohex/emacs-sourcemap", + "unstable": { + "version": [ + 20161216, + 540 + ], + "commit": "64c89d296186f48d9135fb8aad501de19f64bceb", + "sha256": "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "64c89d296186f48d9135fb8aad501de19f64bceb", + "sha256": "115g2mfpbfywp8xnag4gsb50klfvplqfh928a5mabb5s8v4a3582" + } + }, + { + "ename": "sourcerer-theme", + "commit": "8532e062b1830d8cf4e7f72518131a1f32762b37", + "sha256": "0xikcln8sz3cic5a77cdvq2aazy1csf1qfxgmcavpqz54ps14j1z", + "fetcher": "github", + "repo": "gilbertw1/sourcerer-emacs", + "unstable": { + "version": [ + 20161014, + 1625 + ], + "commit": "c7f8e665d53bb48fb72f95f706710d53d24bd407", + "sha256": "06bxsbjyrn4grp9i17p90cs4x50cmw62k6a2c6gapkw8f1xbv7xv" + } + }, + { + "ename": "sourcetrail", + "commit": "9713bd8030657c8e867409a6aa8173219809173a", + "sha256": "0qa3iw82dbfc1b45505s39m99r0m2473312prws6hch0qhjyji7h", + "fetcher": "github", + "repo": "CoatiSoftware/emacs-sourcetrail", + "unstable": { + "version": [ + 20170410, + 2137 + ], + "commit": "b8d5557aa565ae979622312576db20515f65f977", + "sha256": "1aqkkbf0xw4kqsy1jjn4xhs5vk2vcsqzs7f4p2sf1plnzsqxflw8" + } + }, + { + "ename": "spacebar", + "commit": "e4d1808eabdb9081441e01526efe81782ae0122f", + "sha256": "0kpmgirg3s57qkzrlbicz2jwgwlyg9jlxy6kxkqxixf1h0z5wy7n", + "fetcher": "github", + "repo": "matthias-margush/spacebar", + "unstable": { + "version": [ + 20190719, + 334 + ], + "deps": [ + "eyebrowse" + ], + "commit": "2b2cd0e786877273103f048e62a06b0027deca2d", + "sha256": "08jfqvm8xfw0mhgfns6q2ysfwqr6g6iz8vc4g4svdbsimmfhf6ka" + } + }, + { + "ename": "spacegray-theme", + "commit": "fada130a1e2927d98526f4629cc1101d93e787c5", + "sha256": "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx", + "fetcher": "github", + "repo": "bruce/emacs-spacegray-theme", + "unstable": { + "version": [ + 20150719, + 1931 + ], + "commit": "7f70ee36297e5ccf9bc90b1f81472024f5a7a749", + "sha256": "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb" + } + }, + { + "ename": "spaceline", + "commit": "46e4c876aeeb0bb0d0e81dcbb8363a5db9c3ff61", + "sha256": "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw", + "fetcher": "github", + "repo": "TheBB/spaceline", + "unstable": { + "version": [ + 20181223, + 2024 + ], + "deps": [ + "cl-lib", + "dash", + "powerline", + "s" + ], + "commit": "ae45a819ea7ae52febb4d7d82170af44dff10f19", + "sha256": "01dyi0s8yilkgs0ifi489004195l4zrm9dqbybip4136l9zmlini" + }, + "stable": { + "version": [ + 2, + 0, + 1 + ], + "deps": [ + "cl-lib", + "dash", + "powerline", + "s" + ], + "commit": "2d1a7bfb5bdaf24958f50b4bf93182847916af85", + "sha256": "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl" + } + }, + { + "ename": "spaceline-all-the-icons", + "commit": "d039e057c1d441592da8f54e6d524b395b030375", + "sha256": "1h6clkr2f29k2vw0jcrmnfbjpphaxm7s3zai6pn6qag32bgm3jq6", + "fetcher": "github", + "repo": "domtronn/spaceline-all-the-icons.el", + "unstable": { + "version": [ + 20190325, + 1602 + ], + "deps": [ + "all-the-icons", + "memoize", + "spaceline" + ], + "commit": "5afd48c10f1bd42d9b9648c5e64596b72f3e9042", + "sha256": "1chv6lv216qa88fm2wil45x19dzahcclr9p5vizcziq180dnmass" + }, + "stable": { + "version": [ + 1, + 4, + 0 + ], + "deps": [ + "all-the-icons", + "memoize", + "spaceline" + ], + "commit": "7eafe2d7a81f8d10e03498bdcc3bec0ea50f905d", + "sha256": "186v71d8n1iy73drayyf57pyzlz973q74mazkyvb8w3fj8bb3llm" + } + }, + { + "ename": "spacemacs-theme", + "commit": "6c8ac39214856c1598beca0bd609e011b562346f", + "sha256": "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992", + "fetcher": "github", + "repo": "nashamri/spacemacs-theme", + "unstable": { + "version": [ + 20190801, + 1302 + ], + "commit": "db328e2092bc56e7bf861ad294b8748fd35e16f1", + "sha256": "1cz3rcm5n90nf4qailyn6m544waknxngvm20pflbmzgj3q5cklgv" + } + }, + { + "ename": "spaces", + "commit": "fa5d57074f73cf11607f2f1610f92a0c77367f2a", + "sha256": "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06", + "fetcher": "github", + "repo": "chumpage/chumpy-windows", + "unstable": { + "version": [ + 20170809, + 2208 + ], + "commit": "6bdb51e9a346907d60a9625f6180bddd06be6674", + "sha256": "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6" + } + }, + { + "ename": "spark", + "commit": "f4d1529ab86de7c033579b1a1d0084899c16f454", + "sha256": "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn", + "fetcher": "github", + "repo": "alvinfrancis/spark", + "unstable": { + "version": [ + 20160415, + 201 + ], + "commit": "0bf148c3ede3b31d56fd75f347cdd0b0eae60025", + "sha256": "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1" + } + }, + { + "ename": "sparkline", + "commit": "7278ca31ee3c035c8ec754af152127776f04792e", + "sha256": "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y", + "fetcher": "github", + "repo": "woudshoo/sparkline", + "unstable": { + "version": [ + 20150101, + 1319 + ], + "deps": [ + "cl-lib" + ], + "commit": "a2b5d817d272d6363b67ed8f8cc75499a19fa8d2", + "sha256": "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "e44498cf1a58fb165991198fe5104d51c92ea904", + "sha256": "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny" + } + }, + { + "ename": "sparql-mode", + "commit": "c3d729130a41903bb01465d0f01c34fbc508b56e", + "sha256": "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d", + "fetcher": "github", + "repo": "ljos/sparql-mode", + "unstable": { + "version": [ + 20180320, + 1802 + ], + "deps": [ + "cl-lib" + ], + "commit": "a00bb622c54086ac1ee96c265bf7fbef12c68089", + "sha256": "0f919alnqbp5dnc4krgmnc9acqg84xs64fmzjc78gpbmfn0kyi0m" + }, + "stable": { + "version": [ + 4, + 0, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "2837b97244111515c61fb3823c1479bc126a458b", + "sha256": "0hqp8r24wvzrkl630wbm0lynrcrnawv2yn2a3xgwqwwhwgva35rn" + } + }, + { + "ename": "speech-tagger", + "commit": "db80aa5d95846ee02a9d762aa68325ab5e37dcf7", + "sha256": "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc", + "fetcher": "github", + "repo": "cosmicexplorer/speech-tagger", + "unstable": { + "version": [ + 20170728, + 1829 + ], + "deps": [ + "cl-lib" + ], + "commit": "61955b40d4e8b09e66a3e8033e82893f81657c06", + "sha256": "07rgs1f9z2ayphv04jdjk9v1s2s47qvksf64z6qn1zss2alc0y0v" + }, + "stable": { + "version": [ + 0, + 0, + 0 + ], + "commit": "e6595bd0eea93ede1534c536c1746c9cf763b73c", + "sha256": "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3" + } + }, + { + "ename": "speechd-el", + "commit": "96669a664122c2fb69acd4cad2d7bf75d3e8272d", + "sha256": "0p8zih9s2x6l2xcfjbzriyhsicaiwxz54iq9h3c8szlzq708mayc", + "fetcher": "github", + "repo": "brailcom/speechd-el", + "unstable": { + "version": [ + 20190616, + 1309 + ], + "commit": "b3d62e62f9f23b08b62c1363e415c4f8a8f20029", + "sha256": "0nyh7v7qvwsayb1xdmbjagl3yxgs76fqm80w2r1xjmjzi0346qwb" + } + }, + { + "ename": "speed-type", + "commit": "d6c33b5bd15875baea0fd2f24ee8ec9414a6f7aa", + "sha256": "0lsbi3b6v7fiwpvydgwcqx3y5i7bysfjammly22qpz3kcjmlvi06", + "fetcher": "github", + "repo": "parkouss/speed-type", + "unstable": { + "version": [ + 20190526, + 953 + ], + "deps": [ + "cl-lib" + ], + "commit": "c98f9ebd4abf96db967f9c0dff9ccfa4b7f4035b", + "sha256": "1hjpxr5nb08g5vz7wmlf3zxazvj419528rfwdpkpbmdsjmy67fbf" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "5d691f57743304db63b6afdc5bd79dabd282d390", + "sha256": "08qp2b80rh9k8h5vv141lfsg73rqqikhh7ygal789rr278ai1rjf" + } + }, + { + "ename": "speeddating", + "commit": "01e23a3e2a2495e86aba60302dbd06f3b25768b4", + "sha256": "0b5lcb1inkcx94grib5ssv1qkbzxqryzm115qizlgfs04k8cwz09", + "fetcher": "github", + "repo": "xuchunyang/emacs-speeddating", + "unstable": { + "version": [ + 20180319, + 723 + ], + "commit": "df69db0560f19636a66a74f3d88c793bbb18b21e", + "sha256": "0mhzjia900irv0ndiw6w2vzin1gvyaf48pghi16r562ci4lr963w" + } + }, + { + "ename": "sphinx-doc", + "commit": "a3b80d346ad4fb415970beddb5f02ae795fbf1b4", + "sha256": "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z", + "fetcher": "github", + "repo": "naiquevin/sphinx-doc.el", + "unstable": { + "version": [ + 20160116, + 1117 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "f39da2e6cae55d5d7c7ce887e69755b7529bcd67", + "sha256": "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "b3459ecb9e6d3fffdee3cb7342563a56a32ce666", + "sha256": "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c" + } + }, + { + "ename": "sphinx-frontend", + "commit": "4cf72e71f159b9eaaa0834682d5dd4eb258616cf", + "sha256": "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag", + "fetcher": "github", + "repo": "kostafey/sphinx-frontend", + "unstable": { + "version": [ + 20161025, + 758 + ], + "commit": "0cbb03361c245382d3e679dded30c4fc1713c252", + "sha256": "1ksjgd995pcb4lvwip08i8ay0xpin8dcam3hcgnbjjqjg9hja1cf" + } + }, + { + "ename": "sphinx-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0f5xkaqsmxc4bfz80njlc395dcw2dbvmzx6h9fw31mylshzbmrys", + "fetcher": "github", + "repo": "Fuco1/sphinx-mode", + "unstable": { + "version": [ + 20180620, + 915 + ], + "deps": [ + "dash", + "f" + ], + "commit": "b5ac514e213459dcc57184086f10b5b6be3cecd8", + "sha256": "06r50n159g18fi03xyxzkv7zr6cvs29ly1yyrmyjl9m6dn97m9mc" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "3d6e3059350593dc077f06f54c33869b9e28f7bc", + "sha256": "0l3a8swmf3sm54ayk2ahh1i5j1hf0hd822dfmx50kgwi4wpv48sp" + } + }, + { + "ename": "spice-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1my6dbdnf4scshjf299d4n7vsdq3cxhq9kmqvirs45y3qjm7pgpg", + "fetcher": "github", + "repo": "stardiviner/spice-mode", + "unstable": { + "version": [ + 20190608, + 1033 + ], + "commit": "e5e0644f03f9696f56dd69e2b6979da7f30ed600", + "sha256": "01905cdplj9icbxzr7sqb62x5qchzgvs8qjf5s4qga4x3vjh1dc4" + } + }, + { + "ename": "spiral", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "074ymaksb3dgrsrdsi6xdlvigki5l2v66r8204xv50yc88z7l8qr", + "fetcher": "github", + "repo": "Unrepl/spiral", + "unstable": { + "version": [ + 20180223, + 1140 + ], + "deps": [ + "a", + "avy", + "clojure-mode", + "highlight", + "treepy" + ], + "commit": "907b9792467139a942ba7b07ca0276b90770baf9", + "sha256": "1rggzzvya26abbzd8bc2kpv59kzgm75wqv1vwqnj9c8im1jvs1na" + } + }, + { + "ename": "splitjoin", + "commit": "51e172f46045fbb71b6a13b3521b502339a4a02b", + "sha256": "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l", + "fetcher": "github", + "repo": "syohex/emacs-splitjoin", + "unstable": { + "version": [ + 20150505, + 1432 + ], + "deps": [ + "cl-lib" + ], + "commit": "e2945ee269e6e90f0243d6f2a33e067bb0a2873c", + "sha256": "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "0eb91e7beec915065cd6c00ceaca180a64d85cda", + "sha256": "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991" + } + }, + { + "ename": "splitter", + "commit": "129f0d20616226c449bdaf672c43a06e8f281869", + "sha256": "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2", + "fetcher": "github", + "repo": "chumpage/chumpy-windows", + "unstable": { + "version": [ + 20170809, + 2208 + ], + "commit": "6bdb51e9a346907d60a9625f6180bddd06be6674", + "sha256": "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6" + } + }, + { + "ename": "spotify", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "07y6d3cz3nziasza3znysvcnx3kw156ab78kw5y0pdll45nw210x", + "fetcher": "github", + "repo": "remvee/spotify-el", + "unstable": { + "version": [ + 20181030, + 810 + ], + "deps": [ + "cl-lib" + ], + "commit": "29577cf1188161f98b8358c149aaf47b2c137902", + "sha256": "0h6yhfvvyd9sd5d37d3ng3z56zfb546vl95qjq16kcvxq00hdn1v" + }, + "stable": { + "version": [ + 0, + 3, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "29577cf1188161f98b8358c149aaf47b2c137902", + "sha256": "0h6yhfvvyd9sd5d37d3ng3z56zfb546vl95qjq16kcvxq00hdn1v" + } + }, + { + "ename": "spotlight", + "commit": "26e0eba715c869c5bd295afb8971d490e80f6e2b", + "sha256": "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p", + "fetcher": "github", + "repo": "benmaughan/spotlight.el", + "unstable": { + "version": [ + 20150929, + 755 + ], + "deps": [ + "counsel", + "swiper" + ], + "commit": "ab902900f22e7d1ea2dd8169441d2da7155aaa68", + "sha256": "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8" + } + }, + { + "ename": "spray", + "commit": "e4f5053aa4e1af3f636febe9c3ce8c6ae20c090d", + "sha256": "1h8lngcqa343mlc091zs419frgsla65khfj93lv9fil3xbgrm7m9", + "fetcher": "gitlab", + "repo": "iankelling/spray", + "unstable": { + "version": [ + 20160304, + 2220 + ], + "commit": "00638bc916227f2f961013543d10e85a43a32e29", + "sha256": "1avbfr32dvff26kgvd5vgan99nb5c6al9kv5xbmy2rcls17py7r2" + } + }, + { + "ename": "springboard", + "commit": "138b8a589725ead2fc1de9ea76c55e3eb2473872", + "sha256": "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib", + "fetcher": "github", + "repo": "jwiegley/springboard", + "unstable": { + "version": [ + 20170106, + 755 + ], + "deps": [ + "helm" + ], + "commit": "687d1e5898a880878995dc9bffe93b4598366203", + "sha256": "0fn8c4hqblfjvcpg68kj2dmdjqsdnxddqbzgvakl43zckjg8pi01" + } + }, + { + "ename": "sprintly-mode", + "commit": "8730956d3f00e030e06ef54c3f2aecc10bb40f9d", + "sha256": "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4", + "fetcher": "github", + "repo": "sprintly/sprintly-mode", + "unstable": { + "version": [ + 20121006, + 534 + ], + "deps": [ + "furl" + ], + "commit": "6695892bae5860b5268bf3ae62be990ee9b63c11", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "furl" + ], + "commit": "6695892bae5860b5268bf3ae62be990ee9b63c11", + "sha256": "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6" + } + }, + { + "ename": "sproto-mode", + "commit": "ac2b4207c4eaa3a048e245242489462a69b4af67", + "sha256": "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma", + "fetcher": "github", + "repo": "m2q1n9/sproto-mode", + "unstable": { + "version": [ + 20151115, + 1805 + ], + "commit": "0583a88273204dccd884b7edaa3590cefd31e7f7", + "sha256": "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x" + } + }, + { + "ename": "sprunge", + "commit": "f7b9f8cc2f2f8f8e1cf80b3e76c89b9f12cacf95", + "sha256": "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w", + "fetcher": "github", + "repo": "tomjakubowski/sprunge.el", + "unstable": { + "version": [ + 20160301, + 243 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "0fd386b8b29c4175022a04ad70ea5643185b6726", + "sha256": "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "0fd386b8b29c4175022a04ad70ea5643185b6726", + "sha256": "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l" + } + }, + { + "ename": "spu", + "commit": "8f2ef1e83c924d5411b47a931432f129db95ff2c", + "sha256": "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8", + "fetcher": "github", + "repo": "mola-T/SPU", + "unstable": { + "version": [ + 20161214, + 324 + ], + "deps": [ + "signal", + "timp" + ], + "commit": "41eec86b595816e3852e8ad1a8e07e51a27fd065", + "sha256": "1j77h761vf74y9sfjpidgaznail95hsg9akjs55sz1xiyy7hkgyw" + } + }, + { + "ename": "sql-clickhouse", + "commit": "a0ef23e6825924094eb69bd8526a95d8fab210c1", + "sha256": "083i9aaf69yk71mndl5x0pimn3bkkhp3mfppxvy0f5lzf2847q2j", + "fetcher": "github", + "repo": "leethargo/sql-clickhouse", + "unstable": { + "version": [ + 20180302, + 1555 + ], + "commit": "2edccd94145c55a040a3a87193793f06cf01f64f", + "sha256": "0zajd35i02h869mg6n2pn2fnb80ddny6ss1kap21b75p2gw79lb7" + } + }, + { + "ename": "sql-impala", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1mh36ycqgr07r0hknkr6vb4k0r5b2h8bqd7m5faz9p56qbisgvvh", + "fetcher": "github", + "repo": "jterk/sql-impala", + "unstable": { + "version": [ + 20181218, + 410 + ], + "commit": "466e7c0c789ec3e5e8a276c8f6754f91bb584c3e", + "sha256": "02psgbm06wivdm2cmjnj2vy05lnljxn44hj2arw2fr7x2qwn9r35" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "466e7c0c789ec3e5e8a276c8f6754f91bb584c3e", + "sha256": "02psgbm06wivdm2cmjnj2vy05lnljxn44hj2arw2fr7x2qwn9r35" + } + }, + { + "ename": "sql-presto", + "commit": "a21349775e018822a06bca3c3c338879548e286f", + "sha256": "1rjfgvwgl63xn047vmsmj1s31wvrd24v6ibf9nri6qmffhv9i9zb", + "fetcher": "github", + "repo": "kat-co/sql-prestodb", + "unstable": { + "version": [ + 20190113, + 1742 + ], + "commit": "bcda455e300a1af75c7bb805882329bc844703b2", + "sha256": "00whmsylr802fx87yqbr06rbymyln7kq7750pcz26xm1jgja7cax" + }, + "stable": { + "version": [ + 1, + 0, + 4 + ], + "commit": "bcda455e300a1af75c7bb805882329bc844703b2", + "sha256": "00whmsylr802fx87yqbr06rbymyln7kq7750pcz26xm1jgja7cax" + } + }, + { + "ename": "sqlformat", + "commit": "6bdaa1ccae12f2ea779ac6989607d8027feac2c9", + "sha256": "07lf2gx629429b41qr04gl98gplb538gb5hw7idzrmi3higrmv8m", + "fetcher": "github", + "repo": "purcell/sqlformat", + "unstable": { + "version": [ + 20190420, + 2256 + ], + "deps": [ + "reformatter" + ], + "commit": "f7f46be6f06b83642c312151f3b5276f8830d9d7", + "sha256": "00z60y08likwqfd27ibvzhy62qs29i4d4y4vq3p3slx43rfdgvxs" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "b70b05bf469a27c1a2940eeaa1a5c8cc93d805fd", + "sha256": "14n2yjmi4ls8rmpvvw6d7cz5f6dcg7laaljxnhwbagfd5j4sdfrm" + } + }, + { + "ename": "sqlite", + "commit": "949556b57cea0fbbfc98b95d894de95257dfe1e5", + "sha256": "1c5dprdl8q09yd0kvpkm19z60m9rhkilj5zmj938wlj5bmdlydv8", + "fetcher": "gitlab", + "repo": "cnngimenez/sqlite.el", + "unstable": { + "version": [ + 20180708, + 1711 + ], + "commit": "dad42b8bbca4994be1871343dd18fd6528ee5797", + "sha256": "06ln4vijl8kii3nzc5cscgsadx1fqgxksflijd3ain83bn8g4wrd" + } + }, + { + "ename": "sqlup-mode", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b", + "fetcher": "github", + "repo": "Trevoke/sqlup-mode.el", + "unstable": { + "version": [ + 20170610, + 1537 + ], + "commit": "04970977b4abb4d44301651618bbf1cdb0b263dd", + "sha256": "14s66xrabj269z7f94iynsla96bka7zac011psrbcfyy4m8mlamz" + }, + "stable": { + "version": [ + 0, + 8, + 0 + ], + "commit": "04970977b4abb4d44301651618bbf1cdb0b263dd", + "sha256": "14s66xrabj269z7f94iynsla96bka7zac011psrbcfyy4m8mlamz" + } + }, + { + "ename": "sr-speedbar", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1v90jbqdw39yrfcsnyqas8c5g09rcf1db65q2m2rw7rik8cgb052", + "fetcher": "github", + "repo": "emacsorphanage/sr-speedbar", + "unstable": { + "version": [ + 20161025, + 831 + ], + "commit": "77a83fb50f763a465c021eca7343243f465b4a47", + "sha256": "0sd12555hk7z721y00kv3crdybvcn1i08wmd148z5imayzibj153" + }, + "stable": { + "version": [ + 20140914, + 2339 + ], + "commit": "4f816528a32eb421197a768d6dcf3a05de83f642", + "sha256": "1x9wizd0fzcmpf8ff7c3rcfxk64diy9jmzzvxa7d5a3k8vvpdhg3" + } + }, + { + "ename": "srcery-theme", + "commit": "2654fc05f55c7fab7d550b7db1d187edc9ff0f42", + "sha256": "1bnvf9v7g2mpx8519lh73fphhr4cqd33qlw22qyxnqiz5cz93lsp", + "fetcher": "github", + "repo": "srcery-colors/srcery-emacs", + "unstable": { + "version": [ + 20190526, + 1227 + ], + "commit": "a47a40c7c5d39d251bf15e45f184565c5240b33e", + "sha256": "1i3c7y0a7dzvb3c8pk69gvh33945bhm00j0fwl49yh7hg2d9w118" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "96e2f46b7068b84702809163f4d9d379d22f0395", + "sha256": "12dg8bficlxc1nb30lz507lq3ywpvjj6f289hc754vslx6w6by0a" + } + }, + { + "ename": "srefactor", + "commit": "e23115ab231ab108678608f2ad0a864f896cd0f2", + "sha256": "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2", + "fetcher": "github", + "repo": "tuhdo/semantic-refactor", + "unstable": { + "version": [ + 20180703, + 1810 + ], + "commit": "6f2c97d17fb70f4ca2112f5a2b99a8ec162004f5", + "sha256": "1lyz3zjkx2csh0xdy1zpx8s32qp1p3sig57mwi9xhgpqjyf0axmb" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "ecd40713f736b243285c07f4cfd77113794d4f9f", + "sha256": "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc" + } + }, + { + "ename": "srv", + "commit": "6b0b7f22631e7749da484ced9192d8ae5e1be941", + "sha256": "0xrgbi63vg0msxkcmcnvijkxa9y0s7613liqac7fs9514yvkbwin", + "fetcher": "github", + "repo": "legoscia/srv.el", + "unstable": { + "version": [ + 20180715, + 1959 + ], + "commit": "714387d5a5cf34d8d8cd96bdb1f9cb8ded823ff7", + "sha256": "1a8pqhdi7m3lis5ad2f74s1sy8zpxlwvfsvd80lw746235x2v06z" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "714387d5a5cf34d8d8cd96bdb1f9cb8ded823ff7", + "sha256": "1a8pqhdi7m3lis5ad2f74s1sy8zpxlwvfsvd80lw746235x2v06z" + } + }, + { + "ename": "ssass-mode", + "commit": "3137f98aaa871a52f477b63d9c3b7b63f7271344", + "sha256": "07aym4a7l70f1lb6yvwxkhsykrwbf0lcpwlwgcn5n44kavvdbzxm", + "fetcher": "github", + "repo": "AdamNiederer/ssass-mode", + "unstable": { + "version": [ + 20190521, + 249 + ], + "commit": "c2c610abd85fecd171466bf5a9a4943bd62ffda5", + "sha256": "0vbh0nqbc7j2xjksk0xdfsrqfxd64fcqyladgk2v3jw0qply6ydw" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "5f36a169a1ad497f1d7a465be386ffb5e1f80bcf", + "sha256": "1n1q26p52i6c6i8svkr0bn91hliqm540y1fcz3jci8w2ws0s5x11" + } + }, + { + "ename": "ssh", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1wlzagcg2fxqcbpd3z02wsil2n224kzmhcd54df80jypgq5fa6k3", + "fetcher": "github", + "repo": "ieure/ssh-el", + "unstable": { + "version": [ + 20120904, + 2042 + ], + "commit": "c17cf5b43df8ac4662a0580f85898e1f078df0d1", + "sha256": "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd" + } + }, + { + "ename": "ssh-agency", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "1b25fl1kk4mwsd25pg9s0lazlpmaa6s9wnfgvlqk8k65d7p7idzz", + "fetcher": "github", + "repo": "magit/ssh-agency", + "unstable": { + "version": [ + 20180508, + 26 + ], + "deps": [ + "dash" + ], + "commit": "d9dbedd773ad3a831e02e162c47936d6814a850a", + "sha256": "0895n7bss4wdydic1gflr03f2cwdyqywl16gvb599lpn288jhwvz" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "dash" + ], + "commit": "d9dbedd773ad3a831e02e162c47936d6814a850a", + "sha256": "0895n7bss4wdydic1gflr03f2cwdyqywl16gvb599lpn288jhwvz" + } + }, + { + "ename": "ssh-config-mode", + "commit": "750b16ee631b4c2014f2ebf767609bab4b8ee421", + "sha256": "1jlaf1bipmf51552jyp2ax6n4gwg38n2348kyxlwd7d8vwsibbpq", + "fetcher": "github", + "repo": "jhgorrell/ssh-config-mode-el", + "unstable": { + "version": [ + 20190712, + 1840 + ], + "commit": "4c1dfa57d452cb5654453bf186c8ff63e1e71b56", + "sha256": "0crglfdazzckizbwzmgl2rn6j85avfzkr1q7ijxd17rp2anvr9bd" + } + }, + { + "ename": "ssh-deploy", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ys3cc5fz8y4rsiq3daqgcpa14ssv1q4cw0pqbfscql6mps0mjdm", + "fetcher": "github", + "repo": "cjohansson/emacs-ssh-deploy", + "unstable": { + "version": [ + 20190610, + 1256 + ], + "commit": "e2db9c7dee6fd755d4667a74461639d7257f2948", + "sha256": "0fjl0rba79nzir2h9ifclwhbnpsl6dkw3xhcs0ff50xpjnq5n95p" + }, + "stable": { + "version": [ + 3, + 1 + ], + "commit": "20a87ab053b1d56fdb102b75b1c90658df756505", + "sha256": "1m0fav34wvak4k3ki92z5nvsyw6jdxnmhn5xzjiialgz9c3936v8" + } + }, + { + "ename": "ssh-tunnels", + "commit": "b093a3a9a836bae8ce37a21188c64e9a878066e8", + "sha256": "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj", + "fetcher": "github", + "repo": "death/ssh-tunnels", + "unstable": { + "version": [ + 20190622, + 931 + ], + "deps": [ + "cl-lib" + ], + "commit": "d32e2072f50bcbde787196abb5862735837dc8be", + "sha256": "1i0wmdv0pglsz1pbhfjrpr1q6sxh1q74s41vnjxk5r2q8p1fh69n" + } + }, + { + "ename": "stack-mode", + "commit": "1328a676140e4b8d01af126c4043bcfa8d1b2a8c", + "sha256": "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf", + "fetcher": "github", + "repo": "commercialhaskell/stack-ide", + "unstable": { + "version": [ + 20150923, + 1523 + ], + "deps": [ + "cl-lib", + "flycheck", + "haskell-mode" + ], + "commit": "f3481e239dde9817152ec00e32bfc3ebf5aaf2cb", + "sha256": "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim" + } + }, + { + "ename": "stan-mode", + "commit": "67a44a0abe675238b10decdd612b67e418caf34b", + "sha256": "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy", + "fetcher": "github", + "repo": "stan-dev/stan-mode", + "unstable": { + "version": [ + 20180110, + 2241 + ], + "commit": "a8e88473ef996b455523dc3fbcf2d8520659652f", + "sha256": "13qw6n26jpr208h2366pcfv10d11880wlfzr0kiadrsg219wjgsi" + }, + "stable": { + "version": [ + 9, + 2, + 0 + ], + "commit": "45b8242611fe0437fcff48f5f4f7d8f0552531ac", + "sha256": "14yv57grsw3zyjcqasaanx8g2skix0i3w1f5r1fng3sgwclwbkdw" + } + }, + { + "ename": "stan-snippets", + "commit": "eda8539b7d8da3a458a38f7536ed03580f9088c3", + "sha256": "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85", + "fetcher": "github", + "repo": "stan-dev/stan-mode", + "unstable": { + "version": [ + 20161024, + 258 + ], + "deps": [ + "stan-mode", + "yasnippet" + ], + "commit": "a8e88473ef996b455523dc3fbcf2d8520659652f", + "sha256": "13qw6n26jpr208h2366pcfv10d11880wlfzr0kiadrsg219wjgsi" + }, + "stable": { + "version": [ + 9, + 2, + 0 + ], + "deps": [ + "stan-mode", + "yasnippet" + ], + "commit": "45b8242611fe0437fcff48f5f4f7d8f0552531ac", + "sha256": "14yv57grsw3zyjcqasaanx8g2skix0i3w1f5r1fng3sgwclwbkdw" + } + }, + { + "ename": "standoff-mode", + "commit": "98858a45f72c28eec552b119a66479ea99b60f93", + "sha256": "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp", + "fetcher": "github", + "repo": "lueck/standoff-mode", + "unstable": { + "version": [ + 20171115, + 1731 + ], + "commit": "cf84b14066d63694d931395c6026fd0245d8a62b", + "sha256": "0dbcaz3faw8knx91yjsrb988sn2d9k0i5byhs1bi1ww36y6hmgs6" + } + }, + { + "ename": "start-menu", + "commit": "88d965f6789d3f5ba3856cbf10edbc46e37b12ae", + "sha256": "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv", + "fetcher": "github", + "repo": "lujun9972/el-start-menu", + "unstable": { + "version": [ + 20160426, + 1225 + ], + "deps": [ + "cl-lib", + "config-parser" + ], + "commit": "f7d33fed7ad2dc61156f1c1cff9e1805366fbd69", + "sha256": "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c" + } + }, + { + "ename": "stash", + "commit": "d3837ac3f1ac82e08a5ad7193766074a4d1bfa3d", + "sha256": "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9", + "fetcher": "github", + "repo": "vermiculus/stash.el", + "unstable": { + "version": [ + 20151117, + 1427 + ], + "commit": "c2e494d20c752b80ebbdffbf66687b3cdfc425ad", + "sha256": "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "638ae8a4f6d33af54fe77d57c2c0eb1800dd2e19", + "sha256": "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4" + } + }, + { + "ename": "state", + "commit": "82e955112089569c775e11888d9811119f84a4f8", + "sha256": "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2", + "fetcher": "github", + "repo": "thisirs/state", + "unstable": { + "version": [ + 20180627, + 1956 + ], + "commit": "258fe1cba00bdc2c600f866bb0406c719661d0a6", + "sha256": "1miwmb4012a4pjxc0qi0qrs0aw7yf8fhiy72ndf80sj050wmpaqn" + } + }, + { + "ename": "status", + "commit": "dca8976de7060fcfc37a1623280869e0cef7b0a2", + "sha256": "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3", + "fetcher": "github", + "repo": "tromey/emacs-status", + "unstable": { + "version": [ + 20151230, + 1408 + ], + "commit": "b62c74bf272566f82a68622f29fb9edafea0f241", + "sha256": "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "b62c74bf272566f82a68622f29fb9edafea0f241", + "sha256": "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i" + } + }, + { + "ename": "steam", + "commit": "25a45eb6297168cd0ce4c4db5574362addad5c69", + "sha256": "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw", + "fetcher": "github", + "repo": "Kungsgeten/steam.el", + "unstable": { + "version": [ + 20171109, + 13 + ], + "deps": [ + "cl-lib" + ], + "commit": "d6ca2a828b0824da51978397e198bf91c51ce793", + "sha256": "16cxws1b3iwm9aqbiip298zsjm6gwjihpvkia4p0zvzynwhflw8q" + } + }, + { + "ename": "stem", + "commit": "8d9c38d0d4dac86848ad0fec0aeeced009c5eac7", + "sha256": "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq", + "fetcher": "github", + "repo": "yuutayamada/stem", + "unstable": { + "version": [ + 20131102, + 1109 + ], + "commit": "d74e6611d6ba5025e0276a2cc7c8a90f46bfa9ac", + "sha256": "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0" + } + }, + { + "ename": "stem-english", + "commit": "5c8e97e70e7a86b9f5e55bdd2db492994e8abdd5", + "sha256": "15d13palwdwrki9p804cdls08ph7sxxzd44nl4bhfm3dxic4sw7x", + "fetcher": "github", + "repo": "kawabata/stem-english", + "unstable": { + "version": [ + 20180109, + 358 + ], + "commit": "c9fc4c6ed6bf82382e479dae80912f4ae17d31f4", + "sha256": "1bkmgjfp7xir6d0yf782xkjvf595blrqhr3hack26jg5zl8qsrya" + } + }, + { + "ename": "stgit", + "commit": "726da64b7baea1735a916b826bdfb8f575860e21", + "sha256": "1gbr0pvvig2vg94svy1r6zp57rhyg6n9yp7qvlkfal1z2lhzhs0g", + "fetcher": "github", + "repo": "ctmarinas/stgit", + "unstable": { + "version": [ + 20171130, + 1559 + ], + "commit": "114bc99e7f65b6959d91b3a0452deca55c38dc32", + "sha256": "0w3fdbzscb7dc54q7qdp2k2kqvrqya1919qnj7nq4zsc6bw9v0x6" + }, + "stable": { + "version": [ + 0, + 19 + ], + "commit": "d86a0c1ffd8db519a1e8d56b3d972fdd8a7f4818", + "sha256": "1dzl6cnyzwbzysp82x7w1yc03g25kwan3h0zpnzhhfhg6c904sis" + } + }, + { + "ename": "sticky", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "0g98qagqchwq9j5nvdz315wak8fvdw1l972cfh0fr4yyg7gxi6xr", + "fetcher": "github", + "repo": "rubikitch/sticky", + "unstable": { + "version": [ + 20170926, + 36 + ], + "commit": "fec4e1af38f17f5cd80eca361d8e8ef8772db366", + "sha256": "126zs059snzpg83q9mrb51y0pqawwrj9smr3y7rza4q4qkdp1nk0" + } + }, + { + "ename": "stickyfunc-enhance", + "commit": "e24454febf90ec18a587b2c187a2bd2101e1b7b5", + "sha256": "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks", + "fetcher": "github", + "repo": "tuhdo/semantic-stickyfunc-enhance", + "unstable": { + "version": [ + 20150429, + 1814 + ], + "commit": "13bdba51fcd83ccbc3267959d23afc94d458dcb0", + "sha256": "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g" + } + }, + { + "ename": "stock-ticker", + "commit": "75e654f7b3f785bdfead3c594fdc09730c5d33b9", + "sha256": "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi", + "fetcher": "github", + "repo": "hagleitn/stock-ticker", + "unstable": { + "version": [ + 20150204, + 1052 + ], + "deps": [ + "request", + "s" + ], + "commit": "f2e564142c9de84232839a5b01979cf95b04d6a9", + "sha256": "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx" + } + }, + { + "ename": "strace-mode", + "commit": "9b2003bee9992d9e79124d95d30b573c8a6bdbfe", + "sha256": "16v350nqdxmmk1r4z25bssm436xcm4cvnaxm7f3wxwvmg9z0gx8d", + "fetcher": "github", + "repo": "pkmoore/strace-mode", + "unstable": { + "version": [ + 20171116, + 2039 + ], + "commit": "2901baa968d5180ab985ac40ca22cc20914d01f5", + "sha256": "1jd930nc2g562n4cqq1ppl2d8dq7bxkr3fh9f0gjms7bcm106kz9" + } + }, + { + "ename": "strie", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83", + "fetcher": "github", + "repo": "jcatw/strie.el", + "unstable": { + "version": [ + 20160211, + 2222 + ], + "deps": [ + "cl-lib" + ], + "commit": "eb7efb0cccc127c414f6a64db11454869d9c10a8", + "sha256": "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr" + } + }, + { + "ename": "string-edit", + "commit": "20fd24f22ef734fe064c66692bf3e18eb896f1ac", + "sha256": "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8", + "fetcher": "github", + "repo": "magnars/string-edit.el", + "unstable": { + "version": [ + 20160411, + 656 + ], + "deps": [ + "dash" + ], + "commit": "c44b65b4c5e9f52be9c14d88ca2f402a18d9e1dd", + "sha256": "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "dash" + ], + "commit": "9f9c9cd659156fd2217be814eb4e91da48d44647", + "sha256": "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x" + } + }, + { + "ename": "string-inflection", + "commit": "5c2e2b6dba8686236c2595475cfddac5fd700e60", + "sha256": "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2", + "fetcher": "github", + "repo": "akicho8/string-inflection", + "unstable": { + "version": [ + 20180827, + 1301 + ], + "commit": "e9a50855a4c718592c28a5a892f164ecf46e39a8", + "sha256": "03kvp5xrv9p46m4w25jr5nvi801yafq5vxzif42y0dav7ifmmdfp" + }, + "stable": { + "version": [ + 1, + 0, + 10 + ], + "commit": "9b08372301e3c5f91cb278ee0e00a48845a42cb6", + "sha256": "0j3ms2cxbv24kr27r2jhzxpdih6w43gjdkm3sqd28c28ycab8d4b" + } + }, + { + "ename": "string-utils", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v", + "fetcher": "github", + "repo": "rolandwalker/string-utils", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "list-utils" + ], + "commit": "c2232d691617973ecf12a970c6008a161c21da14", + "sha256": "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "list-utils" + ], + "commit": "3ae530143899f533a9ef5e1f26f28b577ebe72ee", + "sha256": "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s" + } + }, + { + "ename": "stripe-buffer", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1kjib1kf9xqdirryr16wlvc95701hq8s4h8hz4dqzg3wzyb8287b", + "fetcher": "github", + "repo": "sabof/stripe-buffer", + "unstable": { + "version": [ + 20141208, + 1508 + ], + "deps": [ + "cl-lib" + ], + "commit": "c252080f55cb78c951b19ebab9687f6d00237baf", + "sha256": "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax" + }, + "stable": { + "version": [ + 0, + 2, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "d9f009b92cf16fe2c40cd92b8f842a3872e6c190", + "sha256": "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk" + } + }, + { + "ename": "stumpwm-mode", + "commit": "caaa21f235c4864f6008fb454d0a970a2fd22a86", + "sha256": "11yk7xmmccgv7hin5qd1ibcsm1za01xfwsxa25q7vqwk6svnb0sf", + "fetcher": "git", + "url": "https://git.savannah.nongnu.org/git/stumpwm.git", + "unstable": { + "version": [ + 20140131, + 216 + ], + "commit": "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4", + "sha256": "03is0690p7aw77c30j4r2b5gi5rv5f70wvpixy5qhcchlaxhaw82" + }, + "stable": { + "version": [ + 0, + 9, + 8 + ], + "commit": "4d0603e52b5bab993b3be63e3654c74f641e677d", + "sha256": "0pn3xjz433b0djcys25a8fv775yqmj3qgg0hyghgxjpzsh6k2a4f" + } + }, + { + "ename": "stupid-indent-mode", + "commit": "68cd648bde8028a39849f7beae8deae78bfb877b", + "sha256": "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p", + "fetcher": "git", + "url": "https://gist.github.com/5487564.git", + "unstable": { + "version": [ + 20170525, + 1117 + ], + "commit": "3295e7de5e2cfddc3bf0e462e852bf58972f5d70", + "sha256": "00js2jkzvmvh1gbraijknv48y86pqyk9zv264a5n3l4sw5q6kcvk" + } + }, + { + "ename": "stylefmt", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "14ap3xklmxyqz61p7z3fwgxbwjqrcbijcmvsmhfbm102x1spgbhz", + "fetcher": "github", + "repo": "KeenS/stylefmt.el", + "unstable": { + "version": [ + 20161025, + 824 + ], + "commit": "7a38f26bf8ff947215f34f0a064c7ca80575ccbc", + "sha256": "0cx9llbmfjhaxb60mj483ihl78xb30ldvhd1hdldmc9d473xbvmz" + } + }, + { + "ename": "stylus-mode", + "commit": "877b5a3e612e1b1d6d51e60c66b0b79f231abdb2", + "sha256": "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5", + "fetcher": "github", + "repo": "brianc/jade-mode", + "unstable": { + "version": [ + 20150313, + 1512 + ], + "deps": [ + "sws-mode" + ], + "commit": "4dbde92542fc7ad61df38776980905a4721d642e", + "sha256": "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "deps": [ + "sws-mode" + ], + "commit": "4e7a20db492719062f40b225ed730ed50be5db56", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n" + } + }, + { + "ename": "subatomic-theme", + "commit": "de7f6009bab3e9a5b14b7b96ab16557e81e7f078", + "sha256": "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc", + "fetcher": "github", + "repo": "cryon/subatomic", + "unstable": { + "version": [ + 20190607, + 1022 + ], + "commit": "a13cdac97a6d0488b13bc36d4c2f4d4102ff6a31", + "sha256": "1l7yvplvjfcv1d1ij0inijm47nx42d3r00w43xjqnyhk9rrvazh1" + }, + "stable": { + "version": [ + 1, + 8, + 1 + ], + "commit": "6a4086af748b1ecb27f6ba2aa2614988db16d594", + "sha256": "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8" + } + }, + { + "ename": "subatomic256-theme", + "commit": "06a6bdf12623847600d87a624c224b233fdf3536", + "sha256": "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy", + "fetcher": "github", + "repo": "d11wtq/subatomic256", + "unstable": { + "version": [ + 20130621, + 210 + ], + "commit": "326177d6f99cd2b1d30df695e67ee3bc441cd96f", + "sha256": "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8" + } + }, + { + "ename": "subemacs", + "commit": "18714a6b5ca4dcc51fa509fee1dc9afb0595c707", + "sha256": "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm", + "fetcher": "github", + "repo": "kbauer/subemacs", + "unstable": { + "version": [ + 20170401, + 934 + ], + "commit": "18d53939fec8968c08dfc5aff7240ca07efb1aac", + "sha256": "1k2lg7cxr98rq77sk0ypzlr3cyl20ld20jz8y21fdaa6ci8kdvdb" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "24f0896f1995a3ea42a58b0452d250dcc6802944", + "sha256": "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362" + } + }, + { + "ename": "sublime-themes", + "commit": "648d250c7d341b31581c839f77c1084ac29d3163", + "sha256": "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj", + "fetcher": "github", + "repo": "owainlewis/emacs-color-themes", + "unstable": { + "version": [ + 20170606, + 1844 + ], + "commit": "60ee40af82eb55b79d5ed4026f1911326311603f", + "sha256": "17fcqvavgyl9cmv1hwcid2bw513vhawlsmac1w2adiz567594i6h" + } + }, + { + "ename": "sublimity", + "commit": "c1e78cd1e5366a9b6d04237e9bf6a7e73424be52", + "sha256": "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw", + "fetcher": "github", + "repo": "zk-phi/sublimity", + "unstable": { + "version": [ + 20181121, + 1311 + ], + "deps": [ + "cl-lib" + ], + "commit": "4c8d0280815978fc11e1c5f86266a11c717b0c89", + "sha256": "1618ba3m36crh2wmmisi3ls5ijdqrwr58yda810jik0b6fjzzacv" + }, + "stable": { + "version": [ + 20160629 + ], + "commit": "ee9c9fbb92b8fc0c191e5e8640477e251b602bf9", + "sha256": "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x" + } + }, + { + "ename": "sudden-death", + "commit": "3f20f389a2d7ddf49ca64d945b41584a7c120faf", + "sha256": "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh", + "fetcher": "github", + "repo": "yewton/sudden-death.el", + "unstable": { + "version": [ + 20180217, + 23 + ], + "commit": "791a63d3f4df192e71f4232a9a4c5588f4b43dfb", + "sha256": "0z3adwd6ymapkdniny3ax2i3wzxp11g6in4bghbcr9bfdxcsf7ps" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "commit": "791a63d3f4df192e71f4232a9a4c5588f4b43dfb", + "sha256": "0z3adwd6ymapkdniny3ax2i3wzxp11g6in4bghbcr9bfdxcsf7ps" + } + }, + { + "ename": "sudo-edit", + "commit": "3b08d4bbdb23b988db5ed7cb5a2a925b7c2e242e", + "sha256": "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4", + "fetcher": "github", + "repo": "nflath/sudo-edit", + "unstable": { + "version": [ + 20180731, + 1908 + ], + "deps": [ + "cl-lib" + ], + "commit": "cc3d478937b1accd38742bfceba92af02ee9357d", + "sha256": "1qv58x5j5a3v1s2ylhck1ykbfclq0mbi0gsvaql3nyv8cxazqlwl" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "bcb12aaa0da0c56d851cfa2f1b3ea4afdd2a755b", + "sha256": "1k6sx8k304dw9dlidnxcln9ip9cj3b6i196z98g9n0kcd1js9f99" + } + }, + { + "ename": "sudo-ext", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x", + "fetcher": "github", + "repo": "rubikitch/sudo-ext", + "unstable": { + "version": [ + 20170126, + 1214 + ], + "commit": "9d4580f304121ce7b8104bd4bd3b64e4dfa3c9b3", + "sha256": "1m9srlxavqg6yxmz6rz61saz1lj5hh029314dic8kh6g3bqdnh2w" + } + }, + { + "ename": "sudoku", + "commit": "f9861d5d4cf18466b17ac8e53f3874df5312d3f3", + "sha256": "14nbidjnsm9lwknmqgfr721b484z5156j723kr1wbfv70j8h9kys", + "fetcher": "github", + "repo": "zevlg/sudoku.el", + "unstable": { + "version": [ + 20161111, + 706 + ], + "commit": "77c11b5041b58fc943cf1668b44b40bae039cb5b", + "sha256": "18nbs980y6cj6my208i80cb928rnkk5rn3zwc63prk5whjw4y77v" + } + }, + { + "ename": "suggest", + "commit": "b9fd27e812549587dc2ec26bb58974177ff263ff", + "sha256": "12vvakqqzmmqq5yynpd4wf4lnb0yvcnz065kni996sy7rv7rh83q", + "fetcher": "github", + "repo": "Wilfred/suggest.el", + "unstable": { + "version": [ + 20180916, + 1859 + ], + "deps": [ + "dash", + "f", + "loop", + "s", + "spinner" + ], + "commit": "83a2679baf661ee834e9e75921fd546243a6d919", + "sha256": "11jqglwqi5q14rk44z02dffk6cqmhjgdda0y63095g8n1ll71jsb" + }, + "stable": { + "version": [ + 0, + 7 + ], + "deps": [ + "dash", + "f", + "loop", + "s", + "spinner" + ], + "commit": "31ab6c956d17176affbbe9ca53c416920180ddbd", + "sha256": "01v8plska5d3g19sb1m4ph1i3ayprfzk8mi6mpabjy6zad397xjl" + } + }, + { + "ename": "suggestion-box", + "commit": "5b59be8dc0a1850d3e245957fd170e1d01f4e284", + "sha256": "17yai0fh7rfjbp3wz5x5r4src8lxn6qrhf7brp2gjr6cgdv40iac", + "fetcher": "github", + "repo": "yuutayamada/suggestion-box-el", + "unstable": { + "version": [ + 20170830, + 807 + ], + "deps": [ + "popup" + ], + "commit": "50af0776c8caf3c79c4d37fd51cbf304ea34b68e", + "sha256": "01lx20kzay5504xcq6m6yhvayyd7wpzaa1r6i67xqjnr25lqyajw" + } + }, + { + "ename": "sunburn-theme", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "07nz7vr0yzf5746d8khlzl6ghaj44yfp0ar9ylbpdpfj7rdx17sa", + "fetcher": "github", + "repo": "mvarela/Sunburn-Theme", + "unstable": { + "version": [ + 20180602, + 1929 + ], + "commit": "ddb01b6f1f4f823398f7f8e08900c2b4a7811d3b", + "sha256": "18qfcrr4xlwwhhaq7dwh31bbl84a53akgrw2c6lynnyyi4vk2wpq" + } + }, + { + "ename": "sunny-day-theme", + "commit": "11642803ccc5c8dde839508c91dea2728b2b78de", + "sha256": "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw", + "fetcher": "github", + "repo": "mswift42/sunny-day-theme", + "unstable": { + "version": [ + 20140413, + 2125 + ], + "commit": "420e0a6eb33fcc9b75c2c9e88ab60a975d782a00", + "sha256": "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc" + } + }, + { + "ename": "sunshine", + "commit": "4a0ff9a4ef4bbe8de722a4f77f4a56a851497ff1", + "sha256": "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv", + "fetcher": "github", + "repo": "aaronbieber/sunshine.el", + "unstable": { + "version": [ + 20181029, + 1654 + ], + "deps": [ + "cl-lib" + ], + "commit": "8959dea03377e61aaca0124ac8d2703daaae6b9a", + "sha256": "1shzhl5bi5dkmvc07mc7sknm5id89iivjkcxsrdcw004g08hr8y0" + } + }, + { + "ename": "suomalainen-kalenteri", + "commit": "181adf1b16253481674663fd28b195172231b7da", + "sha256": "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh", + "fetcher": "github", + "repo": "tlikonen/suomalainen-kalenteri", + "unstable": { + "version": [ + 20190310, + 910 + ], + "commit": "c8c03fe9bae57d4e15c287aef4f98911a3529240", + "sha256": "1n4nz309rr1cpx1c5aighakpcmrbzzg2xprh5hi4kln0rngggycp" + }, + "stable": { + "version": [ + 2017, + 8, + 1 + ], + "commit": "c702e33cb6e13cb28bd761844e95be112a3c04f3", + "sha256": "13avc3ba6vhysmhrcxfpkamggfpal479gn7k9n7509dpwp06dv8h" + } + }, + { + "ename": "super-save", + "commit": "9730b65787b26d3909952cf246a01bd349e5fbab", + "sha256": "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p", + "fetcher": "github", + "repo": "bbatsov/super-save", + "unstable": { + "version": [ + 20180929, + 727 + ], + "commit": "2a905b8bdfc93bee16e2d62a61c6211bbe009331", + "sha256": "066fyg4r4pksyandpd7s53hagpvm2rw90q5ks4jlpgy7x00hw09l" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "2a905b8bdfc93bee16e2d62a61c6211bbe009331", + "sha256": "066fyg4r4pksyandpd7s53hagpvm2rw90q5ks4jlpgy7x00hw09l" + } + }, + { + "ename": "supergenpass", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95", + "fetcher": "github", + "repo": "ober/sgpass", + "unstable": { + "version": [ + 20130329, + 548 + ], + "commit": "549072ef7b5b82913cadd4758e8a0a9926f0a04a", + "sha256": "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331" + } + }, + { + "ename": "suscolors-theme", + "commit": "6f26b8281f9bd05e3c8f2ef21838275711e622c9", + "sha256": "0j8yfl3yglp9kfdpbmfj3jw7npc6nlqw48cchiczh4biry204lbw", + "fetcher": "github", + "repo": "TheSuspiciousWombat/SusColors-emacs", + "unstable": { + "version": [ + 20190713, + 1009 + ], + "commit": "b4a979ee23e26e255b9a63525b0a28e810fab9ae", + "sha256": "0ddbksza42kywn7j78kidg6f1la9qajk3g6baf4758dibclkr5qd" + } + }, + { + "ename": "sv-kalender-namnsdagar", + "commit": "f9327ea6ae9f4eaeeb6c0fb40bad77e403b4f55c", + "sha256": "1l89y6bjkw8px89qaw1ldfp6qmbm5nq09i6pr32n0k553670v4sr", + "fetcher": "github", + "repo": "matsl/sv-kalender-namnsdagar", + "unstable": { + "version": [ + 20190421, + 1521 + ], + "commit": "fff970f49c77abfc69e37817f25a939818420971", + "sha256": "0c6xjw1wh94llwh8qkf3bfzx05ksk0lsdrqdfqn3qkjnf3bkbbh2" + } + }, + { + "ename": "svg-mode-line-themes", + "commit": "2ca54d78b5e87c3bb582b178e4892af2bf447d1e", + "sha256": "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506", + "fetcher": "github", + "repo": "sabof/svg-mode-line-themes", + "unstable": { + "version": [ + 20150425, + 2006 + ], + "deps": [ + "xmlgen" + ], + "commit": "80a0e01839cafbd66899202e7764c33231974259", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "xmlgen" + ], + "commit": "80a0e01839cafbd66899202e7764c33231974259", + "sha256": "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic" + } + }, + { + "ename": "svnwrapper", + "commit": "cb43431d7a7276cdf1ea741b2b218bc46c2722f9", + "sha256": "06nb7dql7fbaa9khhpxdl8jj6zmypi24bak52sfsa0js77v51pf2", + "fetcher": "github", + "repo": "Lindydancer/svnwrapper", + "unstable": { + "version": [ + 20180414, + 1843 + ], + "deps": [ + "e2ansi" + ], + "commit": "de5069f5784e5d9e87a0af0159ba5f28a3716583", + "sha256": "08sg55cmjbk06622mzhv74f5b5dvbay7gb729zsckczxwrp1cayp" + } + }, + { + "ename": "swagger-to-org", + "commit": "4d5a7f017593e73ea48c0e535ecf3809536bcde5", + "sha256": "1m40f5njxcxmc2snaz2q43b4scwgp51y761kq6klixjvafi0pv86", + "fetcher": "github", + "repo": "ahungry/swagger-to-org", + "unstable": { + "version": [ + 20160611, + 56 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "181357c71ea24bede263f5706d8781ad65e16877", + "sha256": "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "181357c71ea24bede263f5706d8781ad65e16877", + "sha256": "0x1mxxvlhhs34j869cy68gy5pgmvpfliyl9vlrlwm3z8apbip9gp" + } + }, + { + "ename": "swap-buffers", + "commit": "2a0172aaebdf4e0b6f6dd3093482e3cf3eb796d4", + "sha256": "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw", + "fetcher": "github", + "repo": "ekazakov/swap-buffers", + "unstable": { + "version": [ + 20150506, + 2139 + ], + "commit": "46ab31359b70d935add6c6e9533443116dc51103", + "sha256": "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r" + } + }, + { + "ename": "swap-regions", + "commit": "6805c7710618ed1178ffd3488295d4d6b33e8ebe", + "sha256": "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67", + "fetcher": "github", + "repo": "xuchunyang/swap-regions.el", + "unstable": { + "version": [ + 20180915, + 1346 + ], + "commit": "f4fd9880cf690e003fcde88dcf2b46adbbbb03cd", + "sha256": "1d45yanqk4w0idqwkrwig1dl22wr820k11r3gynv7an643k4wngp" + } + }, + { + "ename": "sweetgreen", + "commit": "63812707948e6dcc00e00ebc3c423469593e80fd", + "sha256": "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy", + "fetcher": "github", + "repo": "CestDiego/sweetgreen.el", + "unstable": { + "version": [ + 20180605, + 335 + ], + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ], + "commit": "e933fe466b5ef0e976967e203f88bd7a012469d1", + "sha256": "1pd13v3xma78xa0smxql4i2iax72kxqh7iwp3k16jwzrklmsdiyr" + }, + "stable": { + "version": [ + 0, + 5 + ], + "deps": [ + "cl-lib", + "dash", + "helm", + "request" + ], + "commit": "e40d2821ff941695e50a9b003a8c96d32c19bfdc", + "sha256": "1gw09x5d4yqlmknjsrhgygp9bch315cnmyqp3679i3hza0l7fds6" + } + }, + { + "ename": "swift-mode", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "103nix9k2agxgfpwyhsracixl4xvzqlgidd25r1fpj679hr42bg8", + "fetcher": "github", + "repo": "swift-emacs/swift-mode", + "unstable": { + "version": [ + 20190609, + 507 + ], + "deps": [ + "seq" + ], + "commit": "be8d7700cdbf47576d7c4e0a7e0855cce0fe9ad8", + "sha256": "020jd4byxm8yh651symcs0v8zwrbm7cn9mn5ampjfwf1k43bq1bj" + }, + "stable": { + "version": [ + 8, + 0, + 1 + ], + "deps": [ + "seq" + ], + "commit": "86f8f62294aa5a6d44fa872278d75a4a41f403d4", + "sha256": "0sszk2nwp6h9qk7vgh5n05pzh264br3x3r1hyj97gwf8jdqzkr74" + } + }, + { + "ename": "swift-playground-mode", + "commit": "9a516f729d6d85f26ec0309db702a16d0ba46c1c", + "sha256": "1nqr0ccll7nznh3ahvb699slz5ikjhci3m09j2qm5mxm2pii07kg", + "fetcher": "gitlab", + "repo": "michael.sanders/swift-playground-mode", + "unstable": { + "version": [ + 20190730, + 1707 + ], + "deps": [ + "seq" + ], + "commit": "111cde906508824ee11d774b908df867142a8aec", + "sha256": "1fr3fkxpkd5dk35fx656cx3h62zi74mnlvixb0vqpkn1qm2iwm55" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "seq" + ], + "commit": "111cde906508824ee11d774b908df867142a8aec", + "sha256": "1fr3fkxpkd5dk35fx656cx3h62zi74mnlvixb0vqpkn1qm2iwm55" + } + }, + { + "ename": "swift3-mode", + "commit": "0ca9071199230d3c4c1b2e3a501736df87095fd3", + "sha256": "14vm05p8ix09v73dkmf03i56yib8yk6h2r1zc9m4ym80fki4f520", + "fetcher": "github", + "repo": "taku0/swift3-mode", + "unstable": { + "version": [ + 20160918, + 1250 + ], + "commit": "4e51265c6905e17d8910e35b0b37cf51e20ecdfe", + "sha256": "0wqwjzr3z9gzsjiyyr0ds4c5zvgifb9hbjadb7vkbbpzdy6qd9s1" + }, + "stable": { + "version": [ + 2, + 1, + 1 + ], + "commit": "ea34d46bf9a4293e75ffdac9500d34989316d9e9", + "sha256": "1hwc3fxv87hmw0a0mgl8khfzf1p7yp2izkc02z8f1vbkaibmmawp" + } + }, + { + "ename": "swiper", + "commit": "e64cad81615ef3ec34fab1f438b0c55134833c97", + "sha256": "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9", + "fetcher": "github", + "repo": "abo-abo/swiper", + "unstable": { + "version": [ + 20190801, + 1110 + ], + "deps": [ + "ivy" + ], + "commit": "4389a261b30c8fbfc6e31228b33b1764221daac7", + "sha256": "153a9nn0m6q5a4psw2vvnmqixkny56dlbrfvvw45zc9ikdd1wv2b" + }, + "stable": { + "version": [ + 0, + 12, + 0 + ], + "deps": [ + "ivy" + ], + "commit": "85d1e2e779ca92e6ef8e47d08f866b13d4d87aee", + "sha256": "0xgngn3jhmyn6mlkk9kmgfgh0w5i50b27syr4cgfgarg6p77j05w" + } + }, + { + "ename": "swiper-helm", + "commit": "674c709490e13267e09417e08953ff76bfbaddb7", + "sha256": "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph", + "fetcher": "github", + "repo": "abo-abo/swiper-helm", + "unstable": { + "version": [ + 20180131, + 1744 + ], + "deps": [ + "helm", + "swiper" + ], + "commit": "93fb6db87bc6a5967898b5fd3286954cc72a0008", + "sha256": "05n4h20lfyg1kis5rig72ajbz680ml5fmsy6l1w4g9jx2xybpll2" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "helm", + "swiper" + ], + "commit": "93fb6db87bc6a5967898b5fd3286954cc72a0008", + "sha256": "05n4h20lfyg1kis5rig72ajbz680ml5fmsy6l1w4g9jx2xybpll2" + } + }, + { + "ename": "switch-buffer-functions", + "commit": "d37ebd28f4a2f770958bd9a2669cce86cc76cbe7", + "sha256": "1b93p8q07zncqq3nw829gddc615rwaan1ds5vgfhdb1l7bh9f37l", + "fetcher": "github", + "repo": "10sr/switch-buffer-functions-el", + "unstable": { + "version": [ + 20171011, + 1704 + ], + "commit": "b8d8e01e21ae8c8c84234dddeb3cc8250814f7ba", + "sha256": "17bspkj4fxn9albjmj5g3gd5hi6x4d5rmv76qvyv3mdqws9x52j6" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "e1bccfff2d123b6218efab16c486215cedb9a108", + "sha256": "0pq53b8wrjbrxd5hnrcdi0z7mffp4bax55hn90k9ca3j76lhbn1k" + } + }, + { + "ename": "switch-window", + "commit": "7d2204e3b53ade1e400e143ac219f3c7ab63a1e9", + "sha256": "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2", + "fetcher": "github", + "repo": "dimitri/switch-window", + "unstable": { + "version": [ + 20181104, + 340 + ], + "commit": "204f9fc1a39868a2d16ab9370a142c8c9c7a0943", + "sha256": "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg" + }, + "stable": { + "version": [ + 1, + 6, + 2 + ], + "commit": "204f9fc1a39868a2d16ab9370a142c8c9c7a0943", + "sha256": "0rci96asgamr6qp6nkyr5vwrnslswjxcjd96yccy4aivh0g66yfg" + } + }, + { + "ename": "swoop", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0zcxasc0bpldvlp6032f9v1s4vm9r76pzd7sjgwa9dxbajw5h7fs", + "fetcher": "github", + "repo": "ShingoFukuyama/emacs-swoop", + "unstable": { + "version": [ + 20160120, + 1715 + ], + "deps": [ + "async", + "ht", + "pcre2el" + ], + "commit": "a5e475db7a9f5db02ba3d08cd3c1c3594e2e01d7", + "sha256": "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5" + } + }, + { + "ename": "sws-mode", + "commit": "877b5a3e612e1b1d6d51e60c66b0b79f231abdb2", + "sha256": "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i", + "fetcher": "github", + "repo": "brianc/jade-mode", + "unstable": { + "version": [ + 20150317, + 1945 + ], + "commit": "4dbde92542fc7ad61df38776980905a4721d642e", + "sha256": "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "4e7a20db492719062f40b225ed730ed50be5db56", + "sha256": "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n" + } + }, + { + "ename": "sx", + "commit": "f16958a09820233fbe2abe403561fd9a012d0046", + "sha256": "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517", + "fetcher": "github", + "repo": "vermiculus/sx.el", + "unstable": { + "version": [ + 20190114, + 1523 + ], + "deps": [ + "cl-lib", + "json", + "let-alist", + "markdown-mode" + ], + "commit": "49358eae36dd4bb5b9207313b30df085e7f25cef", + "sha256": "08x2bli821b47sp1jwgg8k8q292z4ryl052rfna0vkcjqv6l5bav" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-lib", + "json", + "let-alist", + "markdown-mode" + ], + "commit": "4892f45746fb217d059f4fa074a237c5bac7dd6c", + "sha256": "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p" + } + }, + { + "ename": "symbol-overlay", + "commit": "c2a468ebe1a3e5a35ef40c59a62befbf8960bd7b", + "sha256": "1al60x2mnjsv99jd10v5sd56zz185wsddiq7128phf1l35bkibis", + "fetcher": "github", + "repo": "wolray/symbol-overlay", + "unstable": { + "version": [ + 20190608, + 442 + ], + "commit": "e40a7c407f24158c45eaa5f54ed41f5e416a51dc", + "sha256": "0ibz3392d3jw1l8006h9kf8s7bg6vl7jc92bmqc031a433009ic7" + }, + "stable": { + "version": [ + 4, + 1 + ], + "commit": "d1464042783e252f5cac1fcac82fee16fc3534db", + "sha256": "0d5ir4f3xmz3kr0w93zw45ha4hzz4rvldiza3q9fmqm7m1w2c995" + } + }, + { + "ename": "symbolword-mode", + "commit": "be2018e0206c3f39c1b67e83000b030d70a72ceb", + "sha256": "1fs1irnmlbrn76b4gdsy0v65nz8av85iqm0b7g9nm2rm8azcr050", + "fetcher": "github", + "repo": "ncaq/symbolword-mode", + "unstable": { + "version": [ + 20180401, + 1427 + ], + "deps": [ + "f" + ], + "commit": "9bd33e73ecb2a0e3e3757c55c05f46b6937227e0", + "sha256": "193lq58mhkq0rrinkaxiyhkk60qf7q0gx03na2968zcrahrd8w75" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "273dece5b04f7abc4c35048b2f64f04b33774b87", + "sha256": "0gpm0zy1kwqxkakvfdgh1lylp99msyamwvi19c53g9jl01m9avyd" + } + }, + { + "ename": "symex", + "commit": "bbe4ff01aa8c06093cd0e4ad0cce253c3fb52816", + "sha256": "0nx03kl4bwdbidhvb7zba9gr6pc2gplh6zbnlxjb3zsvdm4injh1", + "fetcher": "github", + "repo": "countvajhula/symex.el", + "unstable": { + "version": [ + 20190729, + 2303 + ], + "deps": [ + "cider", + "cl-lib", + "dash-functional", + "evil", + "evil-cleverparens", + "evil-surround", + "geiser", + "hydra", + "lispy", + "paredit", + "racket-mode", + "slime", + "smartparens" + ], + "commit": "1fd0b833948e21de40732f7f11536c34518e0411", + "sha256": "0nw5d7dzkxfs4512k9hzangfayl7qgjhy2v8afgnixbvl2akxgbs" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "cider", + "cl-lib", + "dash-functional", + "evil", + "evil-cleverparens", + "evil-surround", + "geiser", + "hydra", + "lispy", + "paredit", + "racket-mode", + "slime", + "smartparens" + ], + "commit": "b139ace5e95a976b55791291170b61c887a92c03", + "sha256": "08nf3p2q4xk1vpgw76a4z8agf7d66vxmhfv7234cyk4vly8n5z20" + } + }, + { + "ename": "symon", + "commit": "3f4bbc6b3d7b2e2a9fbe7ff7f1d47cda9c859cc0", + "sha256": "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz", + "fetcher": "github", + "repo": "zk-phi/symon", + "unstable": { + "version": [ + 20170224, + 833 + ], + "commit": "8dd8b6df49b03cd7d31b85aedbe9dd08fb922335", + "sha256": "1bbblz9qzc84h08010y48mjyciavl6lnxk2m19mwbc6b5y58vwpg" + }, + "stable": { + "version": [ + 20160630 + ], + "commit": "7beeedd70dc37f5904c781fb697c8df056196ee9", + "sha256": "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz" + } + }, + { + "ename": "symon-lingr", + "commit": "936e9a83ed73d3b6090e5c401076b6cff5d9732d", + "sha256": "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1", + "fetcher": "github", + "repo": "zk-phi/symon-lingr", + "unstable": { + "version": [ + 20150719, + 1342 + ], + "deps": [ + "cl-lib", + "symon" + ], + "commit": "056d1a473e36992ff5881e5ce6fdc331cead975f", + "sha256": "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j" + } + }, + { + "ename": "sync-recentf", + "commit": "9858ea35f2a3faacab56b6ccba5672956560456b", + "sha256": "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c", + "fetcher": "github", + "repo": "ffevotte/sync-recentf", + "unstable": { + "version": [ + 20160326, + 2001 + ], + "commit": "0052561d5c5b5c2684faedc3eead776aec06c3ed", + "sha256": "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q" + } + }, + { + "ename": "syndicate", + "commit": "626bda1691d9c7a97fcf549f7a3f0d41d832cfde", + "sha256": "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95", + "fetcher": "github", + "repo": "KNX32542/syndicate", + "unstable": { + "version": [ + 20160603, + 1523 + ], + "deps": [ + "evil" + ], + "commit": "90cee202a06f5bab48268ebf9f62c43334b69f50", + "sha256": "1w0na1p9drdmbci7adj20amrabcpny9fb2v4bd967ils4f2wly75" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "evil" + ], + "commit": "b839aaba0c8583a3254476b53976e3caac4f89a9", + "sha256": "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl" + } + }, + { + "ename": "synonymous", + "commit": "ecf2c44c63e9f41f1733849bdef0d0c301485580", + "sha256": "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5", + "fetcher": "github", + "repo": "toroidal-code/synonymous.el", + "unstable": { + "version": [ + 20180325, + 1817 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "2cb9a674d84fddf3f1b00c9d6b13a853576acb87", + "sha256": "1l0skavpj96x5gdrx9l8dqj4mrb7zcilv3jj335ak11p2i4ckcq2" + } + }, + { + "ename": "synosaurus", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn", + "fetcher": "github", + "repo": "hpdeifel/synosaurus", + "unstable": { + "version": [ + 20190305, + 2206 + ], + "deps": [ + "cl-lib" + ], + "commit": "bc26f5c22b4d08dd09d0852435814977433c9521", + "sha256": "0hpcnslgs5qh3knapw1x7imia3b1yplicpddnzzpxnjsp7psypwh" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "56efdc38952b9bd56a445591fcdeb626aede8678", + "sha256": "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2" + } + }, + { + "ename": "synquid", + "commit": "6ccd9f265d90a5f6a95942938532f556b223e4da", + "sha256": "10kmd9g3qbfnyfl2bdf2s70f5sd3pyzalq18dpgq5ijkwqi019k7", + "fetcher": "github", + "repo": "cpitclaudel/synquid-emacs", + "unstable": { + "version": [ + 20160930, + 1550 + ], + "deps": [ + "flycheck" + ], + "commit": "28701ce1a15437202f53ab93a14bcba1de83fd2c", + "sha256": "0c0pi5w8xvir9gnbjp80g1c4i3rhid65zwh4i4vkyivkh2s29f6i" + } + }, + { + "ename": "syntactic-close", + "commit": "f2c15c0c8ee37a1de042a974c6daddbfa7f33f1d", + "sha256": "19lrzxxyzdj1nrzdgzandjz3b8b4pw7akbv86yf0mdf023d9as1f", + "fetcher": "github", + "repo": "emacs-berlin/syntactic-close", + "unstable": { + "version": [ + 20190513, + 947 + ], + "deps": [ + "cl-lib" + ], + "commit": "2bd46845b664ae828c8b973839ef454cde501028", + "sha256": "1r1ia1yw43vvyk62d6r1k55zcz185777s10ix9bg3fllczdbyzcz" + } + }, + { + "ename": "syntactic-sugar", + "commit": "b32b9b3b3e820e498d7531a1f82da36e5e8f4e74", + "sha256": "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r", + "fetcher": "github", + "repo": "rolandwalker/syntactic-sugar", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "7ddc4502c831abe1c4ad4c7d1ca628a2c9e13968", + "sha256": "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d" + }, + "stable": { + "version": [ + 0, + 9, + 4 + ], + "commit": "06d943c6ad9507603bb6ab6d37be2d359d0763a9", + "sha256": "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da" + } + }, + { + "ename": "syntax-subword", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm", + "fetcher": "bitbucket", + "repo": "jpkotta/syntax-subword", + "unstable": { + "version": [ + 20160519, + 1905 + ], + "commit": "ad0db0fcb464652a1d3408f525dee9293ce2b70c", + "sha256": "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x" + } + }, + { + "ename": "sysctl", + "commit": "72ab5a8c1bc5901477b888a1abf8835a5af7cb41", + "sha256": "09h3z6mnsck82m8jhbgllx71wg1kmr5v57354xa2db6nfppp09rj", + "fetcher": "github", + "repo": "dantecatalfamo/sysctl.el", + "unstable": { + "version": [ + 20190720, + 2028 + ], + "commit": "0fc50305a96de059ad1ff4e6081c9b4089f5247f", + "sha256": "0v2andw08qawgbdzn0vplxd3drs41gqf2qbidhakmsssdd4nqiib" + } + }, + { + "ename": "system-packages", + "commit": "7d3c7af03e0bca3f834c32827cbcca29e29ef4db", + "sha256": "13nk3m8gw9kqjllk7hgkmpxsx9y5h03f0l7zydg388wc7cxsiy3l", + "fetcher": "gitlab", + "repo": "jabranham/system-packages", + "unstable": { + "version": [ + 20190614, + 1320 + ], + "commit": "3ad6d52072f0bd043dced40ba7bd422fd9c00a7b", + "sha256": "0pxkyys2lgn16rhf4mzqlh27vs9aw6g083z2vr2agr7bmbavd2fp" + }, + "stable": { + "version": [ + 1, + 0, + 11 + ], + "commit": "3ad6d52072f0bd043dced40ba7bd422fd9c00a7b", + "sha256": "0pxkyys2lgn16rhf4mzqlh27vs9aw6g083z2vr2agr7bmbavd2fp" + } + }, + { + "ename": "system-specific-settings", + "commit": "3f52c584d7435c836ba3c95c598306ba0f5c06da", + "sha256": "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp", + "fetcher": "github", + "repo": "DarwinAwardWinner/emacs-system-specific-settings", + "unstable": { + "version": [ + 20140818, + 1457 + ], + "commit": "0050d85b2175095aa5ecf580a2fe43c069b0eef3", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "0050d85b2175095aa5ecf580a2fe43c069b0eef3", + "sha256": "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7" + } + }, + { + "ename": "systemd", + "commit": "ca810e512c357d1d0130aeeb9b46b38c595e3351", + "sha256": "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3", + "fetcher": "github", + "repo": "holomorph/systemd-mode", + "unstable": { + "version": [ + 20180629, + 2106 + ], + "commit": "401d71c2dd24e424216ae5e4275c830f2a9c6b0c", + "sha256": "06b8j64fk711fay0p4ifypvpdv2l2kz80rx1hhm6g9991h0x33bj" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "1e7567a9973bf80cab0d7e0355656a84bee7ca96", + "sha256": "0ylgnvpfindg4cxccbqy02ic7p0i9rygf1w16dm1filwhbqvjplq" + } + }, + { + "ename": "systemtap-mode", + "commit": "b1df01b4cccfb234971933d24de21a2b5648fd8c", + "sha256": "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz", + "fetcher": "github", + "repo": "ruediger/systemtap-mode", + "unstable": { + "version": [ + 20151122, + 1940 + ], + "commit": "1a968c2b1f3a054bebf91ac49739d3a81ce050a9", + "sha256": "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd" + } + }, + { + "ename": "ta", + "commit": "847693b5952e99597bd77223e1058536d1beeb5c", + "sha256": "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll", + "fetcher": "github", + "repo": "kuanyui/ta.el", + "unstable": { + "version": [ + 20160619, + 1645 + ], + "deps": [ + "cl-lib" + ], + "commit": "668ad41e71f374f8c32c8d0532f3d8485b355d35", + "sha256": "1lk7hpdp6c74sdwkg2azfvj4qmbl1ghmhms3r0j4296dj8bl5k63" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "cl-lib" + ], + "commit": "9226afbe7abbefb825844ef3ba4ca15f1934cfc2", + "sha256": "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk" + } + }, + { + "ename": "tab-group", + "commit": "ad758d865bde8c97d27c0d57cabe1606f8b36974", + "sha256": "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9", + "fetcher": "github", + "repo": "tarao/tab-group-el", + "unstable": { + "version": [ + 20140306, + 1450 + ], + "commit": "5a290ec2608e4100fb188fd60ecb77affcc3465b", + "sha256": "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4" + } + }, + { + "ename": "tab-jump-out", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1p2hkj0d9hbiwbf746l3rad8a5x6hk97b0ajl6q6cwbmy2qm3cca", + "fetcher": "github", + "repo": "zhangkaiyulw/tab-jump-out", + "unstable": { + "version": [ + 20151006, + 130 + ], + "deps": [ + "dash" + ], + "commit": "1c3fec1826d2891177ea78e4e7cce1dc67e83e51", + "sha256": "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm" + } + }, + { + "ename": "tabbar", + "commit": "806420d75561cbeffbc1b387345a56c21cc20179", + "sha256": "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9", + "fetcher": "github", + "repo": "dholm/tabbar", + "unstable": { + "version": [ + 20180726, + 1735 + ], + "commit": "82bbda31cbe8ef367dd6501c3aa14b7f2c835910", + "sha256": "01sw76wp8bvh21h30pkc3kjr98c8m6qid6misk1y7hkyld0bzxay" + }, + "stable": { + "version": [ + 2, + 2 + ], + "commit": "82bbda31cbe8ef367dd6501c3aa14b7f2c835910", + "sha256": "01sw76wp8bvh21h30pkc3kjr98c8m6qid6misk1y7hkyld0bzxay" + } + }, + { + "ename": "tabbar-ruler", + "commit": "1d69d1ef8dbab8394be01153cf9ebe8e49bf9912", + "sha256": "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d", + "fetcher": "github", + "repo": "mattfidler/tabbar-ruler.el", + "unstable": { + "version": [ + 20160802, + 307 + ], + "deps": [ + "cl-lib", + "mode-icons", + "powerline", + "tabbar" + ], + "commit": "535568189aa12a3eff7f977d2783e57b6a65ab6a", + "sha256": "1csj6qhwihdf4kfahcqhm163isiwac08w4nqid1hnca184bfk6xm" + }, + "stable": { + "version": [ + 0, + 45 + ], + "deps": [ + "tabbar" + ], + "commit": "7df2e4814018e84ef9261d04a2ade8168a44e3d7", + "sha256": "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc" + } + }, + { + "ename": "tablist", + "commit": "5fc0c6c02d609fb22710560337bd577f4b1e0c8f", + "sha256": "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p", + "fetcher": "github", + "repo": "politza/tablist", + "unstable": { + "version": [ + 20190414, + 643 + ], + "commit": "8079801527da1f596bc942162026328d7bdf6ad9", + "sha256": "11bm7z4kdxrq6pv93zwrmg729mnvqvhgmna9r2wqx2wyf87vdh00" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "f6b495d09494784163c3e6ba75b771b71fe226a8", + "sha256": "0pzsdg0rm59daw34ppss79cg05z9wnr8nkmdcc48nkd0p69ip2yy" + } + }, + { + "ename": "tabula-rasa", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz", + "fetcher": "github", + "repo": "idomagal/Tabula-Rasa", + "unstable": { + "version": [ + 20141216, + 547 + ], + "commit": "e85fff9de18dc31bc6a7aca726e34a95cc5459f5", + "sha256": "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8" + } + }, + { + "ename": "tagedit", + "commit": "8968e2cd0bd49d54a5479b2467bd4f0a97d7a969", + "sha256": "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z", + "fetcher": "github", + "repo": "magnars/tagedit", + "unstable": { + "version": [ + 20161121, + 855 + ], + "deps": [ + "dash", + "s" + ], + "commit": "b3a70101a0dcf85498c92b7fcfa7fdbac869746c", + "sha256": "0xq9i3axlq9wgsr27nbhi5k9hxr1wahygkb73xkvxlgmvkmikcrw" + }, + "stable": { + "version": [ + 1, + 4, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "3fcf54b824b75c5ad68f5438d5638103049a389f", + "sha256": "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb" + } + }, + { + "ename": "take-off", + "commit": "3d129ad161d8538c9db022bbd4e90eacda998cf4", + "sha256": "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar", + "fetcher": "github", + "repo": "tburette/take-off", + "unstable": { + "version": [ + 20140531, + 917 + ], + "deps": [ + "web-server" + ], + "commit": "aa9ea45566fc74febbb6ee9c409ecc4b59246215", + "sha256": "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf" + } + }, + { + "ename": "tango-2-theme", + "commit": "ab432b0eac0bcf0d40c5b3c8a78475bc0fea47d2", + "sha256": "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6", + "fetcher": "git", + "url": "https://gist.github.com/2024464.git", + "unstable": { + "version": [ + 20120312, + 2025 + ], + "commit": "64e44c98e41ebbe3b827d54280e3b9615787daaa", + "sha256": "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk" + } + }, + { + "ename": "tango-plus-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1p1b48fvmk7a8m3bnddkx2pp7kz5agac0v1ii2r6iqapdqsl22ng", + "fetcher": "github", + "repo": "tmalsburg/tango-plus-theme", + "unstable": { + "version": [ + 20170214, + 1708 + ], + "commit": "8ba8901397e3e9f1d53110487bfa0effc65015e7", + "sha256": "025dca4yqpai45s74nk41y075v8pv59fdna11c0qqz3ihyrdhbrq" + } + }, + { + "ename": "tangotango-theme", + "commit": "ebfcfa3ba4ca77443667a9478d59214810cd8cc2", + "sha256": "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2", + "fetcher": "github", + "repo": "juba/color-theme-tangotango", + "unstable": { + "version": [ + 20170924, + 1509 + ], + "commit": "e2f2ea9c35f06dfc43a29c91c14cf0cdb19f2144", + "sha256": "01gvsvha8z7pyr8c33gh3xmz47lh6b8g0nwf1gzdiw1gd0sfhs4z" + } + }, + { + "ename": "tao-theme", + "commit": "94b70f11655944080507744fd06464607727ecef", + "sha256": "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a", + "fetcher": "github", + "repo": "11111000000/tao-theme-emacs", + "unstable": { + "version": [ + 20190204, + 1104 + ], + "commit": "c5107fbe7e752f4e58c2d2147ff18a1ebb12937c", + "sha256": "07vvlglmkj87hpxz79s3bl2cjn71vain57fdxs7j9vlr5jkchxwn" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "af142b423536b47bce67afda5108dbf3a9317521", + "sha256": "1fs4rhb4g7s7x3cvqv9d2x5f3079z2hkmp5lns7qfziszkc9fxia" + } + }, + { + "ename": "taskpaper-mode", + "commit": "f969b1cd58dfd22041a8a2b116db0f48e321e546", + "sha256": "0gayhzakiwlrkysmh24499pyzdfy3rmf8d68vamih7igxpl57gim", + "fetcher": "github", + "repo": "saf-dmitry/taskpaper-mode", + "unstable": { + "version": [ + 20190516, + 1512 + ], + "commit": "7004ef65eea954742054f0f68109004828fd6fd8", + "sha256": "003bv5932902bpmgv79m2hamwla1sw95ymap10xpxmv42ldyka52" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "169dab1eb632e5ac5e34608be2df4e9854368180", + "sha256": "0mwd9i6mm0h18z7fiqla95bx6c0zb8x4f6380842hgzi9zrnghxi" + } + }, + { + "ename": "tawny-mode", + "commit": "ea9a114ff739f7d6f5d4c3167f5635ddf79bf60c", + "sha256": "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr", + "fetcher": "github", + "repo": "phillord/tawny-owl", + "unstable": { + "version": [ + 20170422, + 2202 + ], + "deps": [ + "cider" + ], + "commit": "1be07e047343a1bdbb1a8ca40ff6ed3fbb585dec", + "sha256": "1x6544hk87pxlvjv136wi3ixswpd621zjmv20c85bxj8zaasc80n" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "deps": [ + "cider" + ], + "commit": "d13389f701fc96fdd98b73fd068c6838a1d8ed4e", + "sha256": "0gdbkvb6vk7vhchl29gqqg5paq2hrq9ijxgbbk8qbss7ipmfj4zz" + } + }, + { + "ename": "tblui", + "commit": "f4dd6e9dcc73c57f93371ba16b15f2d98d805dae", + "sha256": "1m0zhk5zyialklnil5az974yz6g1zksw02453cxc0xpn5pf0a3xa", + "fetcher": "github", + "repo": "Yuki-Inoue/tblui.el", + "unstable": { + "version": [ + 20161007, + 1912 + ], + "deps": [ + "cl-lib", + "dash", + "magit-popup", + "tablist" + ], + "commit": "bb29323bb3e27093d50cb42db3a9329a096b6e4d", + "sha256": "1pja9v4h3abqc2iydm7wwjxrg7ni1pn94yb4azrgjq5qc0fsgn7a" + } + }, + { + "ename": "tbx2org", + "commit": "d616cbf4ad7e49807afd2f7acf0a0fd2f2a0bac4", + "sha256": "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8", + "fetcher": "github", + "repo": "istib/tbx2org", + "unstable": { + "version": [ + 20140224, + 1559 + ], + "deps": [ + "cl-lib", + "dash", + "s" + ], + "commit": "08e9816ba6066f56936050b58d07ceb2187ae6f7", + "sha256": "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4" + } + }, + { + "ename": "tc", + "commit": "9fddfc79ed2c614c33e90ba80f300912fdab88a3", + "sha256": "05lnsaizlh4wqjkp0wqcm1756r9ia46as8zf01k8qsi0mm452g6q", + "fetcher": "github", + "repo": "kanchoku/tc", + "unstable": { + "version": [ + 20181109, + 428 + ], + "commit": "5496f8dee27c4d925977da3cca6fcacf9b45bc58", + "sha256": "1clf56sxvrky05qzk5kri01r0jz4zfwysxzs3iix0aljrz8mdi8w" + } + }, + { + "ename": "tco", + "commit": "ca33f97f0394585c8ccb31cab0ee776d1655907c", + "sha256": "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f", + "fetcher": "github", + "repo": "Wilfred/tco.el", + "unstable": { + "version": [ + 20190309, + 55 + ], + "deps": [ + "dash" + ], + "commit": "482db5313f090b17ed22ccd856f0e141dc75afe6", + "sha256": "1z7xkbrqznk6ni687qqknp8labcyhl8y6576hjfri89fn21385y9" + } + }, + { + "ename": "tdd-status-mode-line", + "commit": "25b445a1dea5e8f1042bed6b5372471c25129fd8", + "sha256": "1i0s7f4y4v8681mymcmjlcbq0jfghgmdzrs167c453mb5ssz8yxg", + "fetcher": "github", + "repo": "algernon/tdd-status-mode-line", + "unstable": { + "version": [ + 20131123, + 1716 + ], + "commit": "4c082e62f4915b573338a97efcc6854d132323dc", + "sha256": "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "9b3c35b0a972772640e9fee653eab6a76e06416a", + "sha256": "0bvxc926kaxvqnppaw4y6gp814qc0krvidn5qg761z4qwz023rax" + } + }, + { + "ename": "tea-time", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1", + "fetcher": "github", + "repo": "konzeptual/tea-time", + "unstable": { + "version": [ + 20120331, + 820 + ], + "commit": "1f6cf0bdd27c5eb3508989c5095427781f858eca", + "sha256": "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40" + } + }, + { + "ename": "teacode-expand", + "commit": "8b23b0f701627ed18886f29ffd33ef7fb1f82e04", + "sha256": "1hkh7mzzwrk7a8ihss7kyncw9mkwr4iw06gv5y6kg806qc4f1nn3", + "fetcher": "github", + "repo": "raguay/TeaCode-Expand", + "unstable": { + "version": [ + 20181231, + 640 + ], + "commit": "3aae07c71249de616d42fed7fa2585c4fa6f25c6", + "sha256": "0l3mhn8m96d9mxs9kkp6clj5qzns5dw9w628kf9ibwbbc5fq01aa" + } + }, + { + "ename": "telega", + "commit": "e067f03ebe9dd8c90ceaa5a7983483087c74107f", + "sha256": "0n1n1fciwh7jbakdjkx36aq6k0is0c694j3n5dicwvfp7spca7p8", + "fetcher": "github", + "repo": "zevlg/telega.el", + "unstable": { + "version": [ + 20190730, + 1750 + ], + "deps": [ + "visual-fill-column" + ], + "commit": "501d11e8ae7e5499c6234787affeb67e9dddbbf9", + "sha256": "0cf1amcw57a6hwaif11h299jiyjdyfpsdx4qy6w1g1n5hhy8bfbv" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "deps": [ + "visual-fill-column" + ], + "commit": "529003333797fade89a04a8b3fba9099f6585c08", + "sha256": "1a5fxix2zvs461vn6zn36qgpg65bl38gfb3ivr24wmxq1avja5s1" + } + }, + { + "ename": "telepathy", + "commit": "485ef1745f07f29c45bf0d489eeb4fcdfda80b33", + "sha256": "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr", + "fetcher": "github", + "repo": "NicolasPetton/telepathy.el", + "unstable": { + "version": [ + 20131209, + 1258 + ], + "commit": "211d785b02a29ddc254422fdcc3db45262582f8c", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "211d785b02a29ddc254422fdcc3db45262582f8c", + "sha256": "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc" + } + }, + { + "ename": "telephone-line", + "commit": "9c998b70365fb0a210c3b9639db84034c7d45097", + "sha256": "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3", + "fetcher": "github", + "repo": "dbordak/telephone-line", + "unstable": { + "version": [ + 20190424, + 1934 + ], + "deps": [ + "cl-generic", + "cl-lib", + "seq" + ], + "commit": "408e05e105e8e521735221f4c98fc358e007df3b", + "sha256": "123fxr4pjm7z3pidrwgcalb99s0vq3d6imkwgla6fyqyyn9wvag2" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "cl-generic", + "cl-lib", + "seq" + ], + "commit": "a83dcda21b0f6e10e51c3cded7da9a5d2ead5f34", + "sha256": "1cg34l6jq75mcqnb3p93z0kv1arvnswm8nkk39fmryand2yygnl9" + } + }, + { + "ename": "template-overlays", + "commit": "8856e67aae1f623714bc2a61a7b4773ed1fb2934", + "sha256": "0vmadkgzp4i0mh64la67k1anvmlmd4i7iibdlr9ly8z7i3cdsxqn", + "fetcher": "github", + "repo": "mmontone/template-overlays", + "unstable": { + "version": [ + 20180706, + 1132 + ], + "deps": [ + "ov" + ], + "commit": "d32db58c044b2aca3720879003f55b1d57208b07", + "sha256": "1hfm0miqzym4fbj33hzh5iszp0i51imr1z54396vd81zjch9sxss" + } + }, + { + "ename": "temporary-persistent", + "commit": "e608f40d00a3b2a80a6997da00e7d04f76d8ef0d", + "sha256": "0afjcad97pzbrjs1v80l6c98vi5asgaxcn2rq95gz1ld7nn0a9zh", + "fetcher": "github", + "repo": "kostafey/temporary-persistent", + "unstable": { + "version": [ + 20161210, + 1133 + ], + "deps": [ + "dash", + "names", + "s" + ], + "commit": "ac66f3054fc701d53f11ada9d2d9ab18ea481dc0", + "sha256": "15mjcr9gwf1ijppvcxwddnxj84y9idwz7s3lcqr910xb4d3ai8nb" + } + }, + { + "ename": "ten-hundred-mode", + "commit": "4a0534044ff9ce0740414bf5dc3b104bbdbdacce", + "sha256": "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3", + "fetcher": "github", + "repo": "aaron-em/ten-hundred-mode.el", + "unstable": { + "version": [ + 20161028, + 2236 + ], + "deps": [ + "cl-lib" + ], + "commit": "bdcfda49b1819e82d61fe90947e50bb948cf7933", + "sha256": "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "bdcfda49b1819e82d61fe90947e50bb948cf7933", + "sha256": "11nsh6dkd3i489lrqpd9xhr4c0ai51364rlrd6slm54720by9jql" + } + }, + { + "ename": "term+", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8", + "fetcher": "github", + "repo": "tarao/term-plus-el", + "unstable": { + "version": [ + 20170509, + 17 + ], + "deps": [ + "cl-lib" + ], + "commit": "c3c9239b339c127231860de43abfa08c44c0201a", + "sha256": "1mpv9vvvl1sh35vsa5415rvdv57mmbfix8s435q676zvhz3nl8yx" + } + }, + { + "ename": "term+key-intercept", + "commit": "ad758d865bde8c97d27c0d57cabe1606f8b36974", + "sha256": "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb", + "fetcher": "github", + "repo": "tarao/term-plus-ki-el", + "unstable": { + "version": [ + 20140211, + 750 + ], + "deps": [ + "key-intercept", + "term+" + ], + "commit": "fd0771fd66b8c7a909aaac972194485c79ba48c4", + "sha256": "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w" + } + }, + { + "ename": "term+mux", + "commit": "ad758d865bde8c97d27c0d57cabe1606f8b36974", + "sha256": "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh", + "fetcher": "github", + "repo": "tarao/term-plus-mux-el", + "unstable": { + "version": [ + 20140211, + 749 + ], + "deps": [ + "tab-group", + "term+" + ], + "commit": "81b60e80cf008472bfd7fad9233af2ef722c208a", + "sha256": "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q" + } + }, + { + "ename": "term-alert", + "commit": "0d77aee0b1b2eb7834436bdfa339f95cb97da140", + "sha256": "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m", + "fetcher": "github", + "repo": "CallumCameron/term-alert", + "unstable": { + "version": [ + 20161119, + 945 + ], + "deps": [ + "alert", + "f", + "term-cmd" + ], + "commit": "1166c39cc3fb1cb7808eb8955b7f9f6094a306cd", + "sha256": "1hbyiwqv9waynf8gm3c717mph0p9mfi2x1wfpvdzzr25r0fz8xr0" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "alert", + "f", + "term-cmd" + ], + "commit": "47af9e6fe483ef0d393098c145f499362a33292a", + "sha256": "1nv8ma8x9xkgsl95z7yysy8q1lb3xr0pd8a5sb01nlx8ks3clad4" + } + }, + { + "ename": "term-cmd", + "commit": "e08ea89cf193414cce5073fc9c312f2b382bc842", + "sha256": "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4", + "fetcher": "github", + "repo": "CallumCameron/term-cmd", + "unstable": { + "version": [ + 20160517, + 1045 + ], + "deps": [ + "dash", + "f" + ], + "commit": "552aa58965aab9b78e46934462bafe54c0396ffb", + "sha256": "0l5xk8npc23c716fjckd65xq83hjwnvpyxixc9brxfz4ybngzwhy" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "dash", + "f" + ], + "commit": "6c9cbc659b70241d2ed1601eea34aeeca0646dac", + "sha256": "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj" + } + }, + { + "ename": "term-manager", + "commit": "0b2f7d8c8fcbb535432f8e70729d69a572e49a1a", + "sha256": "0ab388ki7vr1wpz81bvbl2fskq9zz5bicdf5gqfg01qzv5l75iza", + "fetcher": "github", + "repo": "IvanMalison/term-manager", + "unstable": { + "version": [ + 20190610, + 2032 + ], + "deps": [ + "dash" + ], + "commit": "eea7894350a4f31e1df0c666d3fb0bac822d34d2", + "sha256": "1rkivl5dy25haip62ybb10fd0gda9aacg9nafj6rkpa7n6mwkkqm" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "dash" + ], + "commit": "0bca2e7e3b6e906ec67696bc0be952988ca7f733", + "sha256": "0ybmszjb2lrgqp3zixpxy0lp2l9axw3mz2d4n2kmajh8ckbr576v" + } + }, + { + "ename": "term-projectile", + "commit": "5260876280148fae28a459f07932cebb059b560e", + "sha256": "1mzyzjxkdfvf1kq9m3c1f6y6xzj1qq53rixawmnzmil5cmznvwag", + "fetcher": "github", + "repo": "IvanMalison/term-manager", + "unstable": { + "version": [ + 20190307, + 400 + ], + "deps": [ + "projectile", + "term-manager" + ], + "commit": "eea7894350a4f31e1df0c666d3fb0bac822d34d2", + "sha256": "1rkivl5dy25haip62ybb10fd0gda9aacg9nafj6rkpa7n6mwkkqm" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "projectile", + "term-manager" + ], + "commit": "0bca2e7e3b6e906ec67696bc0be952988ca7f733", + "sha256": "0ybmszjb2lrgqp3zixpxy0lp2l9axw3mz2d4n2kmajh8ckbr576v" + } + }, + { + "ename": "term-run", + "commit": "7cad6343104bfe5724e068660af79a6249010164", + "sha256": "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs", + "fetcher": "github", + "repo": "10sr/term-run-el", + "unstable": { + "version": [ + 20190529, + 743 + ], + "commit": "fe8bf58814b167f887aaef98a148b8d5d8a11d3f", + "sha256": "0jzk0b07rj5a7va6nc93sjd4zii228gg63v1q49wg0hz2x2yjmfl" + }, + "stable": { + "version": [ + 0, + 1, + 5 + ], + "commit": "54650dbbabb13cb2a6c0670ff6b24b29717a6a8b", + "sha256": "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6" + } + }, + { + "ename": "termbright-theme", + "commit": "a7151773de39fe570e3e9b351daad89db9dd267f", + "sha256": "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj", + "fetcher": "github", + "repo": "bmastenbrook/termbright-theme-el", + "unstable": { + "version": [ + 20151031, + 235 + ], + "commit": "bec6ab14336c0611e85f45486276004f16d20607", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "bec6ab14336c0611e85f45486276004f16d20607", + "sha256": "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d" + } + }, + { + "ename": "terminal-focus-reporting", + "commit": "19e7149a0a2db7df7f890a2c1ad22266e97694d7", + "sha256": "0iwq0rabq0sdn4apa5ibfp912j76w7hzg3q5lbxp7fspfwwynvg2", + "fetcher": "github", + "repo": "veelenga/terminal-focus-reporting.el", + "unstable": { + "version": [ + 20180830, + 719 + ], + "commit": "8b84bf18f4c5f1b59a11692eb706f13c3598d9a5", + "sha256": "0bbcl0mq62f22n2aipgzx93164x81bgybfd0x7gvsfva76qs8pc4" + } + }, + { + "ename": "terminal-here", + "commit": "f8df6f7e23476eb52e7fdfbf9de277d3b44db978", + "sha256": "1w64r3y88lspxxcqcqfwhakk8p9vl7q3z610dykfbqwqx61a6adj", + "fetcher": "github", + "repo": "davidshepherd7/terminal-here", + "unstable": { + "version": [ + 20180513, + 833 + ], + "deps": [ + "cl-lib" + ], + "commit": "bc7f3477133df0142d3e49e6eb8eaf4468b57865", + "sha256": "1i0pz5lfhgqzcqwi9wkiq8skj3hf00xn9vya890g1i9ix3bclq35" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "e176d1675dc5c41b6aebd05122fb2efc44b6cff0", + "sha256": "0dj3z8czvziszb20sizgf1yriv4im811rcfadm7ga9zs2al56kqy" + } + }, + { + "ename": "terminal-toggle", + "commit": "673974fe768f88a7c67c929bb6b9b27fc028d4e2", + "sha256": "0l1gklcgas2g0kx5q59dzhv20pki5hxv4h3rsbrwbpq5rxkxymbx", + "fetcher": "github", + "repo": "mtekman/terminal-toggle.el", + "unstable": { + "version": [ + 20190226, + 1510 + ], + "deps": [ + "popwin" + ], + "commit": "f824d634aef3600cb7a8e2ddf9e8444c6607c160", + "sha256": "150xvmr5vsydg0197m1k62mwy2810mzh1iwqj9yl9fg47fbzbg0i" + } + }, + { + "ename": "tern", + "commit": "eaecd67af24050c72c5df73c3a12e717f95d5059", + "sha256": "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd", + "fetcher": "github", + "repo": "ternjs/tern", + "unstable": { + "version": [ + 20181108, + 722 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "9ddff4ca9bce7f46694b15c51799904ff41131b6", + "sha256": "1kbwaqhb86kidmygn9gcgskrkniqp3x71cl0qgrzgp1cjl0g9xcd" + }, + "stable": { + "version": [ + 0, + 24, + 0 + ], + "deps": [ + "cl-lib", + "json" + ], + "commit": "4ba411719279c62d9c0acd1243a03477ada1ac32", + "sha256": "1af614di6yb91ychi56i788n1qh3nsc2a8i8jyz1ram122dbf0jj" + } + }, + { + "ename": "tern-auto-complete", + "commit": "eaecd67af24050c72c5df73c3a12e717f95d5059", + "sha256": "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26", + "fetcher": "github", + "repo": "ternjs/tern", + "unstable": { + "version": [ + 20170521, + 1935 + ], + "deps": [ + "auto-complete", + "cl-lib", + "tern" + ], + "commit": "9ddff4ca9bce7f46694b15c51799904ff41131b6", + "sha256": "1kbwaqhb86kidmygn9gcgskrkniqp3x71cl0qgrzgp1cjl0g9xcd" + }, + "stable": { + "version": [ + 0, + 24, + 0 + ], + "deps": [ + "auto-complete", + "cl-lib", + "tern" + ], + "commit": "4ba411719279c62d9c0acd1243a03477ada1ac32", + "sha256": "1af614di6yb91ychi56i788n1qh3nsc2a8i8jyz1ram122dbf0jj" + } + }, + { + "ename": "tern-context-coloring", + "commit": "db2119d2c2d167d771ee02c2735b435d59991b93", + "sha256": "0wkb7gn2ma6mz495bgphcjs5p0c6a869zk4a8mnm0spq41xbw4gi", + "fetcher": "github", + "repo": "jacksonrayhamilton/tern-context-coloring", + "unstable": { + "version": [ + 20161218, + 747 + ], + "deps": [ + "context-coloring", + "tern" + ], + "commit": "3a8e979d6cc83aabcb3dda3f5f31a6422532efba", + "sha256": "1rq5aqmsd7jqvwypafad9gmfcwjqjah00j7cws46k5f0dirjaa1y" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "context-coloring", + "tern" + ], + "commit": "3a8e979d6cc83aabcb3dda3f5f31a6422532efba", + "sha256": "1rq5aqmsd7jqvwypafad9gmfcwjqjah00j7cws46k5f0dirjaa1y" + } + }, + { + "ename": "terraform-mode", + "commit": "93e06adf34bc613edf95feaca64c69a0a2a4b567", + "sha256": "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn", + "fetcher": "github", + "repo": "syohex/emacs-terraform-mode", + "unstable": { + "version": [ + 20170112, + 517 + ], + "deps": [ + "hcl-mode" + ], + "commit": "6973d1acaba2835dfdf174f5a5e27de6366002e1", + "sha256": "12ww36g7mz4p4nslajcsdcm8xk6blwjwqjwhyp0n10ym6ssbh820" + }, + "stable": { + "version": [ + 0, + 6 + ], + "deps": [ + "hcl-mode" + ], + "commit": "6286aa42132a7fcad49271d63be33deeeb8d4efc", + "sha256": "05hn8kskx9lcgn7bzgam99c629zlryir2pickwrqndacjrqpdykx" + } + }, + { + "ename": "test-c", + "commit": "ef915dc2d3bc09ef79eb8edde02101c89733c0b2", + "sha256": "1gy5dxkd4fpzzm2sq9g7bmi1ylwvsgh6hlvjmc1c064wjkha9j9z", + "fetcher": "github", + "repo": "aaptel/test-c", + "unstable": { + "version": [ + 20180423, + 1720 + ], + "commit": "761a576f62c7021ba941f178f153c51289df1553", + "sha256": "04dxgg4jz8cnw19wxybjwd36z8i9j6an15k9pz3zh3v7m72qzw7c" + } + }, + { + "ename": "test-case-mode", + "commit": "d2e0bf342713cbdf30cf98d0bbc7476b0abeb7f5", + "sha256": "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi", + "fetcher": "github", + "repo": "ieure/test-case-mode", + "unstable": { + "version": [ + 20130525, + 1434 + ], + "deps": [ + "fringe-helper" + ], + "commit": "6074df10ebc97ddfcc228c71c73db179e672dac3", + "sha256": "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "fringe-helper" + ], + "commit": "26e397c0f930b7eb0be413ef7dd257b1da052bec", + "sha256": "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f" + } + }, + { + "ename": "test-kitchen", + "commit": "420d18c76f593338fb28807fcbe3b884be5b1634", + "sha256": "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0", + "fetcher": "github", + "repo": "jjasghar/test-kitchen-el", + "unstable": { + "version": [ + 20171129, + 2035 + ], + "commit": "0fc0ca4808425f03fbeb8125246043723e2a179a", + "sha256": "1pip15ysya8nsk1xgz6k6gcjm6g60922r0im2anq4j2gjzdja79k" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "ddbcb964ac4700973eaf30ae366f086e3319e51f", + "sha256": "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8" + } + }, + { + "ename": "test-simple", + "commit": "a4b76e053faee299f5b770a0e41aa615bf5fbf10", + "sha256": "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g", + "fetcher": "github", + "repo": "rocky/emacs-test-simple", + "unstable": { + "version": [ + 20170527, + 1532 + ], + "deps": [ + "cl-lib" + ], + "commit": "cfd383d36dc6853917acb753fdfa0eebf33856f3", + "sha256": "0rn3x0v92v3a2g58armazhg97bl72d90j5gwf1zdak75hzimmah2" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "75eea25bae04d8e5e3e835a2770f02f0ff4602c4", + "sha256": "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk" + } + }, + { + "ename": "tex-smart-umlauts", + "commit": "be27e728327016b819535ef8cae10020e5a07c2e", + "sha256": "1bygl7fjm83j8lhkipczjs812837x9p3pqn8waykfbb7v05s81fr", + "fetcher": "github", + "repo": "emacsmirror/tex-smart-umlauts", + "unstable": { + "version": [ + 20190316, + 2215 + ], + "commit": "f15ed781b1fb38bf3e46c481dd602c3999920b99", + "sha256": "11ky141a33vm961jpj1spz9wxb4mfgw8drqxg2a6yk2rinkf0wcl" + } + }, + { + "ename": "texfrag", + "commit": "756649bbe2dc6233c66c3d128a8096be12231078", + "sha256": "195vdpwqzypz35v8hc7ai9xpv1flrik60lgrk5m7xypnlp7mpr2x", + "fetcher": "github", + "repo": "TobiasZawada/texfrag", + "unstable": { + "version": [ + 20190606, + 2049 + ], + "deps": [ + "auctex" + ], + "commit": "b3e137ed123cc077d77b056ca3e0f850a451d327", + "sha256": "0jj742sv5gb3zw8jnzlh0w5jlfzk58mdhc14zxhslvxm9hk6ghx8" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "auctex" + ], + "commit": "270a8a4b5dadddc5b226d9a9c6c7868ea6bfe86f", + "sha256": "18ahbksxg1i3gvsayx2mhkjd1p75c60x5f8d9a3abm4h50gs5mvf" + } + }, + { + "ename": "textile-mode", + "commit": "3ebe5e52bc9bb8875ca390b34ac32eb47f4e1252", + "sha256": "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf", + "fetcher": "github", + "repo": "juba/textile-mode", + "unstable": { + "version": [ + 20170304, + 1716 + ], + "commit": "c37aaab809503df008209390e31e19abf4e23630", + "sha256": "16543im5iymc5hfcix1lglbvpq4v0441vb7sk58nbnffqba83yzy" + } + }, + { + "ename": "textmate", + "commit": "ad3923ac8948de75a159e916ecc22005a17458ad", + "sha256": "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v", + "fetcher": "github", + "repo": "defunkt/textmate.el", + "unstable": { + "version": [ + 20110816, + 2146 + ], + "commit": "350918b070148f0ace6d9d3cd4ebcaf15c1a8781", + "sha256": "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh" + }, + "stable": { + "version": [ + 1 + ], + "commit": "484845493a3c9b570799aea5195a5435a5a01b76", + "sha256": "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1" + } + }, + { + "ename": "textmate-to-yas", + "commit": "487c461bf658d50135428d72fbfbb2573a00eb7d", + "sha256": "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l", + "fetcher": "github", + "repo": "mattfidler/textmate-to-yas.el", + "unstable": { + "version": [ + 20160409, + 1708 + ], + "commit": "be3a768b7ac4c2e24b9d4aa6e9ac1d916cdc5a73", + "sha256": "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz" + }, + "stable": { + "version": [ + 0, + 21 + ], + "commit": "8805e5159329e1b74629b7b584373fc446f57d31", + "sha256": "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7" + } + }, + { + "ename": "textx-mode", + "commit": "dada0378af342e0798c418032a8dcc7dfd80d600", + "sha256": "10y95m6fskvdb2gh078ifa70nc48shkvw0223iyqbyjys35h53bn", + "fetcher": "github", + "repo": "novakboskov/textx-mode", + "unstable": { + "version": [ + 20170516, + 911 + ], + "commit": "72f9f0c5855b382024f0da8f56833c22a70a5cb3", + "sha256": "1lr9v7dk0pnmpvdvs4m5d9yvxlii0xzr8b3akknm25gvbw1y1q8k" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "72f9f0c5855b382024f0da8f56833c22a70a5cb3", + "sha256": "1lr9v7dk0pnmpvdvs4m5d9yvxlii0xzr8b3akknm25gvbw1y1q8k" + } + }, + { + "ename": "tf2-conf-mode", + "commit": "c43c53dca64cf0c7d59ffd0b17e9fe60f4aa90d3", + "sha256": "09kvb3ya1dx5pc146a6r9386fg9n9nfpcxm5mmhmyf75h9c6a25g", + "fetcher": "github", + "repo": "wynro/emacs-tf2-conf-mode", + "unstable": { + "version": [ + 20161209, + 1620 + ], + "commit": "536950f64c071ffd8495fb2c7ac7c63a11e25f93", + "sha256": "0vga7kgzp9wiiji1w47llbb3gp9qgwk8v0f6s8b6jng2gmdg25bk" + } + }, + { + "ename": "tfsmacs", + "commit": "b449d004bdb498c2a1d155671070e0745c7d7598", + "sha256": "0j9rkcjxvgkcdnw2lxgk6bwid3q460n0hjxsj4nklv13s5b1hlyk", + "fetcher": "github", + "repo": "sebasmonia/tfsmacs", + "unstable": { + "version": [ + 20180911, + 2114 + ], + "deps": [ + "tablist" + ], + "commit": "3c20cb76ccd7951eda0b5f076cd79e42f71e7220", + "sha256": "0pwx1cxc1d2hx823520b5a942nhl5w8alnhlq4kwi869wwzkmxfw" + } + }, + { + "ename": "theme-changer", + "commit": "d08b24a2aec1012751054c68f7d55bac1bd1fd11", + "sha256": "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w", + "fetcher": "github", + "repo": "hadronzoo/theme-changer", + "unstable": { + "version": [ + 20171221, + 1927 + ], + "commit": "61945695a30d678e6a5d47cbe7c8aff59a8c30ea", + "sha256": "14xc36jfgj8896pklrkpg394fgikir051rh9vm70v132n6i9j0cn" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "commit": "d3d9c9f62a138958262ac5dd61837df427268611", + "sha256": "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd" + } + }, + { + "ename": "theme-looper", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "018bixcbzri3zsasy1pp2qfvgd679ylpi9gq26qv9iwlfhlrpwgf", + "fetcher": "github", + "repo": "myTerminal/theme-looper", + "unstable": { + "version": [ + 20190501, + 127 + ], + "deps": [ + "cl-lib" + ], + "commit": "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1", + "sha256": "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv" + }, + "stable": { + "version": [ + 2, + 4, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "388138a238fbab9b4bc5ada0300c9bc5ef63d3f1", + "sha256": "0gab7ph1d7z0bjflqrj1y1lb4nk4c32bkpi943px0m5s5cjm54jv" + } + }, + { + "ename": "theme-magic", + "commit": "321c8ea8e095aa55d12f8dfb07001b9398adcbc5", + "sha256": "01vkwdfbhh7ifk1ziqmz257mjgn3ijmcva42ay4ih1n6268lr7k5", + "fetcher": "github", + "repo": "jcaw/theme-magic", + "unstable": { + "version": [ + 20190711, + 2034 + ], + "deps": [ + "seq" + ], + "commit": "844c4311bd26ebafd4b6a1d72ddcc65d87f074e3", + "sha256": "10gkg7jh1s1484gm66a87zr7x8vmv00s7gfd0w2pj47nqf98g8hz" + } + }, + { + "ename": "therapy", + "commit": "34e1bfdc684aaa7ebfbaa0ed60f8322c3de8a40d", + "sha256": "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh", + "fetcher": "github", + "repo": "abingham/therapy", + "unstable": { + "version": [ + 20151113, + 1953 + ], + "commit": "775a92bb7b6b0fcc5b38c0b5198a9d0a1bef788a", + "sha256": "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1" + } + }, + { + "ename": "thingopt", + "commit": "1b82d4102fa2c7622e76dae1154aaa8340b7f4b8", + "sha256": "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y", + "fetcher": "github", + "repo": "m2ym/thingopt-el", + "unstable": { + "version": [ + 20160520, + 2318 + ], + "commit": "5679815852652479f3b3c9f3a98affc927384b2c", + "sha256": "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a" + } + }, + { + "ename": "thinks", + "commit": "439957cabf379651dc243219a83c3c96bae6f8cf", + "sha256": "11vj9mjfzmqwdmkq97aqns3fh8hkgx9scnki6c2iag5lj0av2vcq", + "fetcher": "github", + "repo": "davep/thinks.el", + "unstable": { + "version": [ + 20170802, + 1128 + ], + "deps": [ + "cl-lib" + ], + "commit": "c02f236abc8c2025d9f01460b09b89ebdc96e28d", + "sha256": "0g4ls668kyqnh4xkvz1s1z9j6n0a1gkgrzgl98hys7hny6zrk7aa" + }, + "stable": { + "version": [ + 1, + 12 + ], + "deps": [ + "cl-lib" + ], + "commit": "7bdc418ff946d0cc9ea4cc73d38b3c71ffaa838d", + "sha256": "0wf3nikpnn0yivlmp6plyaiydm56mp3f91lljb1kay64nqgnfq65" + } + }, + { + "ename": "thread-dump", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2", + "fetcher": "github", + "repo": "nd/thread-dump.el", + "unstable": { + "version": [ + 20170816, + 1850 + ], + "commit": "204c9600242756d4b514bb5ff6293e052bf4b49d", + "sha256": "11qx194gwizqg7p2mqy7mdfii85bdayabxfd388dmrm916i4w47n" + } + }, + { + "ename": "threes", + "commit": "bff7d9ffbca45629f310743aff776b762c8507cc", + "sha256": "03zwcaibdj88a6whccc5ysqsnfwi76yhsgjsfp3lxjcmlkwqzjbs", + "fetcher": "github", + "repo": "xuchunyang/threes.el", + "unstable": { + "version": [ + 20160820, + 1242 + ], + "deps": [ + "seq" + ], + "commit": "6981acb30b856c77cba6aba63fefbf102cbdfbb2", + "sha256": "1a7zqq6kmqxgzbsg8yczlvipzv65n10c8j26mc507p4m47nlikgv" + } + }, + { + "ename": "thrift", + "commit": "0dca078c0c467bc44290a922ad5627d6a34194f8", + "sha256": "13isxx16h7rg8q5a68qmgrf3rknhfrx1qh6fb5njlznfwhrqry3y", + "fetcher": "github", + "repo": "facebook/fbthrift", + "unstable": { + "version": [ + 20180905, + 1050 + ], + "commit": "fabeafc20c1fed96030123362e2e09eb542bb682", + "sha256": "06virfzf71wj8ayd4kkcgy5rwf1ilq59kpgph1q2j8s33p1vhzvq" + }, + "stable": { + "version": [ + 2019, + 7, + 29, + 0 + ], + "commit": "e30e8a85fdd5e66318be64a66f879e42ace97825", + "sha256": "0n9yvw7m3wj5nphiavb27s8g8nnzwlm42k781y6rzwb0q8baxnzz" + } + }, + { + "ename": "thumb-through", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx", + "fetcher": "github", + "repo": "apg/thumb-through", + "unstable": { + "version": [ + 20120119, + 534 + ], + "commit": "08d8fb720f93c6172653e035191a8fa9c3305e63", + "sha256": "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn" + } + }, + { + "ename": "tickscript-mode", + "commit": "c60ee1839f728c5041bde1fe4fa62c4d41c746ef", + "sha256": "0wnck6j377idx7h7csmfdhp6napv3zs4sd24lknfclafhslllp54", + "fetcher": "github", + "repo": "msherry/tickscript-mode", + "unstable": { + "version": [ + 20171219, + 203 + ], + "commit": "f0579f38ff14954df5002ce30ae6d4a2c978d461", + "sha256": "0b3rbsd978ch0hiv45sqg9g4zsxhjn557j5f72vjql8cx1h5d8s4" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "commit": "6e7564593d7735acc9f3fa670ec6512991cb73a1", + "sha256": "173zk9nzjds0rkypmaq8xv5qianivgk16jpzgk0msdsn9kjbd8s9" + } + }, + { + "ename": "tidal", + "commit": "16a26659a16199b5bb066be6e5c4a40419bda018", + "sha256": "0im0qbavpykacrwww3y0mlbhf5yfx8afcyvsq5pmjjp0aw245w6a", + "fetcher": "github", + "repo": "tidalcycles/Tidal", + "unstable": { + "version": [ + 20190320, + 2158 + ], + "deps": [ + "haskell-mode" + ], + "commit": "17db036b9895fb7b54dda5e3cf2cb0ce5980b457", + "sha256": "1gys96kr6vq7h2jz15c9340idxv6915anw98is1mfl4ak6pqq3w1" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "deps": [ + "haskell-mode" + ], + "commit": "ba2eb0a503b604a806e45b914d16ece6899bd9be", + "sha256": "1cimnm9d5cm5bw8fjdm2gw5dlcrxcwkfjdh4dh9s7bgrbqjgdcmj" + } + }, + { + "ename": "tide", + "commit": "a21e063011ebbb03ac70bdcf0a379f9e383bdfab", + "sha256": "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1", + "fetcher": "github", + "repo": "ananthakumaran/tide", + "unstable": { + "version": [ + 20190706, + 2322 + ], + "deps": [ + "cl-lib", + "dash", + "flycheck", + "s", + "typescript-mode" + ], + "commit": "dd90f5ad6c537d38b5f56599687c3bc9b21072a6", + "sha256": "1rpha2fbhmj891hbpm24din84j2m1ccjignwr237fhv34yy55z07" + }, + "stable": { + "version": [ + 3, + 2, + 3 + ], + "deps": [ + "cl-lib", + "dash", + "flycheck", + "s", + "typescript-mode" + ], + "commit": "2d17c051cccd248a980575caf5728f4d5c986b30", + "sha256": "19kjq4kr2j853p5qp1s79zxmrfprli82lsnphbrlp9vbnib28xyd" + } + }, + { + "ename": "tile", + "commit": "424cfd28378ef328721bb0dc3651808e64c01306", + "sha256": "1795048ilpg6y9pn0jj0js5446hwxhwm6qmk50hds0hpcb396vbv", + "fetcher": "github", + "repo": "IvanMalison/tile", + "unstable": { + "version": [ + 20161225, + 357 + ], + "deps": [ + "dash", + "s", + "stream" + ], + "commit": "22660f21f6e95de5aba55cd5d293d4841e9a4661", + "sha256": "1qxhrm852j93sqi1lznlrjn7s0vscsixm48g46ja70gl320chyzm" + } + }, + { + "ename": "time-ext", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz", + "fetcher": "github", + "repo": "rubikitch/time-ext", + "unstable": { + "version": [ + 20170126, + 1215 + ], + "commit": "d128becf660fe3f30178eb1b05cd266741f4784a", + "sha256": "0ynxmik33hh0znmznrf7lkmsh5xggbrvbdhiqa61r0b7gs3jk5fd" + } + }, + { + "ename": "timecop", + "commit": "eb13cb0dba1696cc51132cd1ff723fa17f892a7c", + "sha256": "1hnmxcc2hjx9a4jyavx2v9hxmqacmmg1xj86rxqx3ms32hgigji5", + "fetcher": "github", + "repo": "emacs-php/emacs-datetime", + "unstable": { + "version": [ + 20160520, + 1052 + ], + "deps": [ + "cl-lib", + "datetime-format" + ], + "commit": "e6427538b547cbe02e1bd6ed4b765c73620bdae8", + "sha256": "1573z8wq5m8qzbzmnsz2fmbwrj9c0ava0jjfchzmwm2b3jyvqh5r" + } + }, + { + "ename": "timer-revert", + "commit": "991e68c59d1fbaef06ba2583f07499ecad05586d", + "sha256": "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy", + "fetcher": "github", + "repo": "yyr/timer-revert", + "unstable": { + "version": [ + 20150122, + 2032 + ], + "commit": "615c91dec8b440d2b9b7c725dd733d7432564e45", + "sha256": "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "31ad8d94b85807cd9f63fcba0c90c3e9a9515fa2", + "sha256": "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7" + } + }, + { + "ename": "timesheet", + "commit": "40009ef2f6845c83242ca5d0a8c9c2c1e4ef8a9d", + "sha256": "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506", + "fetcher": "github", + "repo": "tmarble/timesheet.el", + "unstable": { + "version": [ + 20180802, + 202 + ], + "deps": [ + "auctex", + "org", + "s" + ], + "commit": "67ca6a9f6733052066b438301fb2dd81b8b3f6eb", + "sha256": "0rmh8lik27pmq95858jbjzgvf6rsfdnpynwcagj1fgkval5kzdbs" + }, + "stable": { + "version": [ + 0, + 4, + 1 + ], + "deps": [ + "auctex", + "org", + "s" + ], + "commit": "67ca6a9f6733052066b438301fb2dd81b8b3f6eb", + "sha256": "0rmh8lik27pmq95858jbjzgvf6rsfdnpynwcagj1fgkval5kzdbs" + } + }, + { + "ename": "timonier", + "commit": "a31b0c177fd83bdeb1842a6ec3095de143bb4eae", + "sha256": "0vb83kv2dkca2bq876icxs8iivv9qgkzmzrsxfpnvbv752b220b0", + "fetcher": "github", + "repo": "nlamirault/timonier", + "unstable": { + "version": [ + 20170411, + 800 + ], + "deps": [ + "all-the-icons", + "dash", + "f", + "hydra", + "pkg-info", + "request", + "s" + ], + "commit": "0a150ea87bf695b43cf1740dfd7e553e0ae7601c", + "sha256": "18yls8zc8d5nhx8j3l5av5xvmxmjrrmbzzab59kc6zib0isgxlcz" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "all-the-icons", + "dash", + "hydra", + "pkg-info", + "request", + "s" + ], + "commit": "33ca5887a1d1b63349177237e9edfb73546511a5", + "sha256": "0z6s26kc50rbmgkkbxzpasphi8hcwhixmi8ksqzrclayccjjj7ar" + } + }, + { + "ename": "timp", + "commit": "27896aeb813215a43aec07a5ddf0ab2176df38fb", + "sha256": "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs", + "fetcher": "github", + "repo": "mola-T/timp", + "unstable": { + "version": [ + 20160618, + 803 + ], + "deps": [ + "cl-lib", + "fifo-class", + "signal" + ], + "commit": "66b21934b1eb8ee428c06dd64b3562ad44776a35", + "sha256": "1jbmc356cqmjann2wdjnikyb0l136lpjka6bjim0rjhipdnw2acn" + } + }, + { + "ename": "tinkerer", + "commit": "8a28e1dfe987287bac7c45f83ae6e754bc13e345", + "sha256": "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd", + "fetcher": "github", + "repo": "yyr/tinkerer.el", + "unstable": { + "version": [ + 20170906, + 1224 + ], + "deps": [ + "s" + ], + "commit": "e34135555f3748b578c7f8706dfd0c888fb87581", + "sha256": "0lzrarqh965ysd7w0z5rbisl45j11fbibyxmgivgy9parvhg59hk" + } + }, + { + "ename": "tiny", + "commit": "d3029dab001fff5d12e8a2bace6ddbf897842c26", + "sha256": "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy", + "fetcher": "github", + "repo": "abo-abo/tiny", + "unstable": { + "version": [ + 20190722, + 1212 + ], + "commit": "fd8a6b0b0c564d8242259e20e557ee6041f40908", + "sha256": "1498j392ap2mk4zmsm2id16pfgvj78r428da9vw7hdrzzibai2cx" + } + }, + { + "ename": "tiny-menu", + "commit": "82700c97ca40130e7508c151f60220d3f23bf23c", + "sha256": "1nngf6vsqfr9fx82mj8dl8zw0fpwf4kr74sflxxk7qxj4aw1jirk", + "fetcher": "github", + "repo": "aaronbieber/tiny-menu.el", + "unstable": { + "version": [ + 20161213, + 1235 + ], + "commit": "05563b94537b6eb22aeddedef2a6e59e3f88d073", + "sha256": "0k0djq60mwhjiwy9dpy9m9bs507b9p19pdl3g2s8sd9i2fk53rfy" + } + }, + { + "ename": "tinypng", + "commit": "c5b8b571d4c5766b392e58c6bc16924720856587", + "sha256": "04w19wzzpq3pzvv5d2pkijnn329ksqvcly4s9prp3gm7nqwi1r26", + "fetcher": "github", + "repo": "xuchunyang/tinypng.el", + "unstable": { + "version": [ + 20190620, + 942 + ], + "commit": "5910738ce129d93789c98f5722d33d1f40d15afc", + "sha256": "1mgq8hspkhq6iz84850s9rq0xkhla28dlvcjj0cip4s3npw5fdan" + } + }, + { + "ename": "tinysegmenter", + "commit": "4f189290799f84282ff7cdecbb12a2a7cdfd1043", + "sha256": "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6", + "fetcher": "github", + "repo": "myuhe/tinysegmenter.el", + "unstable": { + "version": [ + 20141124, + 1013 + ], + "deps": [ + "cl-lib" + ], + "commit": "872134704bd25c13a4c59552433da4c6881b5230", + "sha256": "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j" + } + }, + { + "ename": "tj3-mode", + "commit": "dcf0f535a543bf36df9fb2e59c7fb9dfc00820f7", + "sha256": "06mhg0jc80cymplbri6axyzv18ayxppqz3vggywq9g2ba1vqj41h", + "fetcher": "github", + "repo": "csrhodes/tj3-mode", + "unstable": { + "version": [ + 20180519, + 1228 + ], + "commit": "1d98eb23f1606392f34ef1b80517cfc940fb9950", + "sha256": "1gzi8pvdgj4s9c54m2a8hicvg8dzac6253kyd2h71bljm4ilwl0f" + } + }, + { + "ename": "tldr", + "commit": "45af2c5d1a36fcbf739812594c5cc878bf319a26", + "sha256": "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9", + "fetcher": "github", + "repo": "kuanyui/tldr.el", + "unstable": { + "version": [ + 20190425, + 749 + ], + "deps": [ + "request" + ], + "commit": "2ff0834bc58590f98bfece3efc5656d1b47c325d", + "sha256": "1qwx4hmqj6fbpmv230kgdv2qwv5jfmbf5kvdhcq48p4rak1r30qj" + } + }, + { + "ename": "tmmofl", + "commit": "8d29def44ae42dc4b60c1d254a57572bd09faf51", + "sha256": "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b", + "fetcher": "github", + "repo": "phillord/tmmofl", + "unstable": { + "version": [ + 20121025, + 1101 + ], + "commit": "532aa6978e994e2b069ffe37aaf9a0011a07dadc", + "sha256": "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6" + } + }, + { + "ename": "tmux-pane", + "commit": "8bc165e115a2c457e44ac2762cf6a9f07f1b99c4", + "sha256": "0mv5y367i1wmk5kp8ms09xhrwvb4cwa08p39qy6mkakdhiby5m9q", + "fetcher": "github", + "repo": "laishulu/emacs-tmux-pane", + "unstable": { + "version": [ + 20181210, + 1210 + ], + "deps": [ + "names", + "s" + ], + "commit": "5e83ec65a1d38af9b8a389bdf34a78d13437e63d", + "sha256": "1451d51ml36i1pgksjkd4x2y8zjf4in9q8m6gda3b25v57fnkg2i" + } + }, + { + "ename": "toc-org", + "commit": "1305d88eca984a66039444da1ea64f29f1950206", + "sha256": "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs", + "fetcher": "github", + "repo": "snosov1/toc-org", + "unstable": { + "version": [ + 20190603, + 803 + ], + "commit": "2539b4be401d006e2752f6ad3b88e696889a7fc8", + "sha256": "1d9jj6vgz5f29xqbx1hh0nxkzbql66z3ygxrksry0xjyxabcmnc2" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "4315afd2a408c0d432ba3d8d040c2326c222fdbf", + "sha256": "0lk0rji85a1c0c5r9an0fdvsm4n4jyixsknmr8ywha3lfmc2p0l8" + } + }, + { + "ename": "todoist", + "commit": "b9a75eb89bfeb0b7362bf6d2ffaf6b4750984b3a", + "sha256": "0fspvqr0m36mxbrnkql1gl8hwlv8qxd48f632zqzylj0vsygaxhf", + "fetcher": "github", + "repo": "abrochard/emacs-todoist", + "unstable": { + "version": [ + 20190627, + 2139 + ], + "deps": [ + "dash", + "org", + "transient" + ], + "commit": "ca38839638580001600f076c8075369916d24507", + "sha256": "1l6zrsfx4b06rl07ndlyabqg8pp1bnila40cgadpnmqvh5w6sfdz" + } + }, + { + "ename": "todotxt", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1ravnkj6y2p027yhba2lan10079xzd2q7l8gyb8n6bwq14jif127", + "fetcher": "github", + "repo": "rpdillon/todotxt.el", + "unstable": { + "version": [ + 20180626, + 2230 + ], + "commit": "f13e404304c9d26c105de872f96b4601441b3875", + "sha256": "1yvy2pl2ncgkz1xz598qjvp2v3g66m57wz7nra2vira7m4kq4671" + } + }, + { + "ename": "todotxt-mode", + "commit": "cdc1926c5de86749caba1ad2d1e75225a31a8558", + "sha256": "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k", + "fetcher": "github", + "repo": "avillafiorita/todotxt-mode", + "unstable": { + "version": [ + 20150424, + 1404 + ], + "commit": "dc6ae151edee88f329ba7abc5d39b7440002232f", + "sha256": "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7" + } + }, + { + "ename": "togetherly", + "commit": "05da36e2d57a57255423a24a34742cbac2f6c9a5", + "sha256": "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f", + "fetcher": "github", + "repo": "zk-phi/togetherly", + "unstable": { + "version": [ + 20170426, + 616 + ], + "deps": [ + "cl-lib" + ], + "commit": "a6491bd5dd84f2aded0cd112ff06ae76ff78dfeb", + "sha256": "05x6ppfkpklxf1098acs6gpd3zm9k05vhywa7n01y2g6nhp697pw" + } + }, + { + "ename": "toggle", + "commit": "bd02426ce7ab46361363c7a6c56b1575642003e0", + "sha256": "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq", + "fetcher": "github", + "repo": "zenspider/elisp", + "unstable": { + "version": [ + 20180316, + 3 + ], + "deps": [ + "cl-lib" + ], + "commit": "d52853e93b40fc54ffd4552df9b8c07ad5446013", + "sha256": "0jdy1lqg3s01dxlpigqm0ss4kid2kzrhhyqm15rlj9s0ghdrbnby" + } + }, + { + "ename": "toggle-quotes", + "commit": "0f6e83e3184d336891f76c4740f64646d58ea980", + "sha256": "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp", + "fetcher": "github", + "repo": "toctan/toggle-quotes.el", + "unstable": { + "version": [ + 20140710, + 926 + ], + "commit": "33abc221d6887f0518337851318065cd86c34b03", + "sha256": "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg" + } + }, + { + "ename": "toggle-test", + "commit": "8ea51a54b745d9978c5177182cd8501912aa2d01", + "sha256": "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1", + "fetcher": "github", + "repo": "rags/toggle-test", + "unstable": { + "version": [ + 20140723, + 537 + ], + "commit": "e969321f274903d705995a7d0345a257576ec5ff", + "sha256": "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby" + } + }, + { + "ename": "toggle-window", + "commit": "5505f778052353abce10f9ceef56ce95f5a5b662", + "sha256": "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g", + "fetcher": "github", + "repo": "deadghost/toggle-window", + "unstable": { + "version": [ + 20141207, + 1548 + ], + "commit": "e82c60e543933880402ede11e9423e48a17dde53", + "sha256": "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r" + } + }, + { + "ename": "tomatinho", + "commit": "3fe20de5b2b5e5abe5be7468cea7c87f5b26b237", + "sha256": "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz", + "fetcher": "github", + "repo": "konr/tomatinho", + "unstable": { + "version": [ + 20180621, + 1748 + ], + "commit": "b53354b9b9f496c0388d6a573b06b7d6fc53d0bd", + "sha256": "0vf2b1c9raa723iy2gfdmxjv4q0ivixy1vbs1x5q09cibca8kp4x" + } + }, + { + "ename": "toml", + "commit": "bab369a63ca0e7fcfacfcb9ac3847ac4e631b28c", + "sha256": "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b", + "fetcher": "github", + "repo": "gongo/emacs-toml", + "unstable": { + "version": [ + 20130903, + 1255 + ], + "commit": "9633a6872928e737a2335aae1065768b23d8c3b3", + "sha256": "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban" + } + }, + { + "ename": "toml-mode", + "commit": "f8157d7d11f1e1848f0ba384249b4b8c6354830b", + "sha256": "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l", + "fetcher": "github", + "repo": "dryman/toml-mode.el", + "unstable": { + "version": [ + 20161107, + 1800 + ], + "deps": [ + "cl-lib" + ], + "commit": "f6c61817b00f9c4a3cab1bae9c309e0fc45cdd06", + "sha256": "05b4ksay85c8y5ncax0qsvnmplwsfiw24z16a58gkarjz938hb57" + } + }, + { + "ename": "tommyh-theme", + "commit": "da9b40184e1559c33edd5e6dac6447013710cb79", + "sha256": "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4", + "fetcher": "github", + "repo": "wglass/tommyh-theme", + "unstable": { + "version": [ + 20131004, + 2330 + ], + "commit": "46d1c69ee0a1ca7c67b569b891a2f28fed89e7d5", + "sha256": "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay" + } + }, + { + "ename": "tornado-template-mode", + "commit": "f329baae028fd17618824128f312a49aa0a0807e", + "sha256": "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h", + "fetcher": "github", + "repo": "paradoxxxzero/tornado-template-mode", + "unstable": { + "version": [ + 20141128, + 1008 + ], + "commit": "667c0663dbbd279b6c345446b9f2bc50eb52b747", + "sha256": "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv" + } + }, + { + "ename": "torus", + "commit": "efc3b538861084cc13ff067a9258e55dc006b70d", + "sha256": "0zjidnc7nwbxs90spp373hx92vksd72vz4avmi4dbmhi89rdfhh0", + "fetcher": "github", + "repo": "chimay/torus", + "unstable": { + "version": [ + 20190325, + 753 + ], + "commit": "b309da8c2eaee573a2e2572f25a08ce5da9e9990", + "sha256": "0d6y2m4lh244542svzm856n014l7hjkffp5m0arwsvywqspq9vb9" + }, + "stable": { + "version": [ + 2, + 0 + ], + "commit": "222d5b155dd544cb158b2f84be8ad304b0c69df1", + "sha256": "164mip0cibs3c8c4khnbzs8f2pmj57ng5q7hspzv7wk8nvc6d39i" + } + }, + { + "ename": "total-lines", + "commit": "1b6455dd89167a854477a00284f64737905b54d8", + "sha256": "0zpli7gsb56fc3pzb3b2bs7dzr9glkixbzgl4p2kc249vz3jqajh", + "fetcher": "github", + "repo": "hinrik/total-lines", + "unstable": { + "version": [ + 20171227, + 1239 + ], + "commit": "473fa74a5416697ecd938866518bcad423f8fda6", + "sha256": "17jac25hwnklqzqpnrxjsq9s08c9rql9phcv8cq97cc36iwgw8gp" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "58a9fb0ffca63e3dfb3b27c7d91b4630e422903b", + "sha256": "0ajbqrkg3v0yn8mj7dsv12w9zzcwjkabd776fabxamhcj6zbvza3" + } + }, + { + "ename": "totd", + "commit": "9dc1e001585e1743047108ace180dfd7664ab8f1", + "sha256": "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0", + "fetcher": "gitlab", + "repo": "egh/emacs-totd", + "unstable": { + "version": [ + 20150519, + 1440 + ], + "deps": [ + "cl-lib", + "s" + ], + "commit": "ca47b618ea8290776cdb5b0f1c2c335691f69660", + "sha256": "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g" + } + }, + { + "ename": "tox", + "commit": "08a7433e16f2a9a2c04168600a9c99bc21c68ddf", + "sha256": "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl", + "fetcher": "github", + "repo": "chmouel/tox.el", + "unstable": { + "version": [ + 20160810, + 1555 + ], + "commit": "7655eb254038d5e34433e8a9d66b3ffc9c72e40c", + "sha256": "1212b7s00kw9hk5gc2jx88hqd825rvkz1ss7phnxkrz833l062ki" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "7655eb254038d5e34433e8a9d66b3ffc9c72e40c", + "sha256": "1212b7s00kw9hk5gc2jx88hqd825rvkz1ss7phnxkrz833l062ki" + } + }, + { + "ename": "toxi-theme", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd", + "fetcher": "bitbucket", + "repo": "postspectacular/toxi-theme", + "unstable": { + "version": [ + 20160424, + 2126 + ], + "commit": "b322fc7497a53f102e74f7994da96f2974171c9b", + "sha256": "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0" + } + }, + { + "ename": "tql-mode", + "commit": "6a7c3dec5d970a4e819c0166a4b9846d74484b08", + "sha256": "0nrycix119vail6vk1kgqsli4l4cw8x49grc368n53w0xwngh0ns", + "fetcher": "github", + "repo": "tiros-dev/tql-mode", + "unstable": { + "version": [ + 20170724, + 254 + ], + "commit": "488add79eb3fc8ec02aedaa997fe1ed9e5c3e638", + "sha256": "09vkqr5n66w1q5f7m1vgiv0555v23wg6j46ri52lnnslsxpxhlyv" + } + }, + { + "ename": "traad", + "commit": "2b3eb31c077fcaff94b74b757c1ce17650333943", + "sha256": "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf", + "fetcher": "github", + "repo": "abingham/emacs-traad", + "unstable": { + "version": [ + 20180730, + 48 + ], + "deps": [ + "bind-map", + "dash", + "deferred", + "f", + "popup", + "request", + "request-deferred", + "virtualenvwrapper" + ], + "commit": "98e23363b7e8a590a2f55976123a8c3da75c87a5", + "sha256": "121p80vsa3xff1anwy876gvlpm0jdbfm5vaxszds73wrv6gih8m3" + }, + "stable": { + "version": [ + 3, + 1, + 1 + ], + "deps": [ + "dash", + "deferred", + "popup", + "request", + "request-deferred", + "virtualenvwrapper" + ], + "commit": "1f05cb4e5e96a90d2fb2bbc93093084327c40cf2", + "sha256": "14qg8aczcdf51w618zdzx3d48y9n4skjrg72yhgcm9a9lrs5v8y1" + } + }, + { + "ename": "tracking", + "commit": "a2b295656d53fddc76cacc86b239e5648e49e3a4", + "sha256": "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z", + "fetcher": "github", + "repo": "jorgenschaefer/circe", + "unstable": { + "version": [ + 20171210, + 2102 + ], + "commit": "6ccd4b494cbae9d28091217654f052eaea321007", + "sha256": "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd" + }, + "stable": { + "version": [ + 2, + 11 + ], + "commit": "6ccd4b494cbae9d28091217654f052eaea321007", + "sha256": "0cr9flk310yn2jgvj4hbqw9nj5wlfi0fazdkqafzidgz6iq150wd" + } + }, + { + "ename": "tracwiki-mode", + "commit": "2e1e7315ee0e8d90df046e16948398f6f78aa3b2", + "sha256": "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0", + "fetcher": "github", + "repo": "merickson/tracwiki-mode", + "unstable": { + "version": [ + 20150119, + 1621 + ], + "deps": [ + "xml-rpc" + ], + "commit": "6a620444d59b438f42383b48cd4c19c03105dba6", + "sha256": "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f" + } + }, + { + "ename": "tramp-hdfs", + "commit": "4c185553314a2a9fe18907fd9251077777b33538", + "sha256": "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b", + "fetcher": "github", + "repo": "raghavgautam/tramp-hdfs", + "unstable": { + "version": [ + 20170821, + 1320 + ], + "commit": "f8406f77bf83b66306ced693a5e4aaf606f46762", + "sha256": "15zr1fcmjk4mzjvmfbbkz5v9ryfgcjk0ag6rwxk8rp6wzwxcxvvl" + } + }, + { + "ename": "tramp-term", + "commit": "5c84660c641f0bdf3cca8ad2a0f8f6e5d18b59c3", + "sha256": "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy", + "fetcher": "github", + "repo": "randymorris/tramp-term.el", + "unstable": { + "version": [ + 20190628, + 1207 + ], + "commit": "fdc3d5a29ca9549db462cd66d8f5d97026a1200f", + "sha256": "1xznm3q2d4xffynqb1bkpcif8jr6mpkrir4hc7gmi4q987j2lpdr" + } + }, + { + "ename": "transfer-sh", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0xc6dkmayk935grmy8883l4cyv4zrq3fb77fj16knfj4yw8w6c9j", + "fetcher": "github", + "repo": "SRoskamp/transfer-sh.el", + "unstable": { + "version": [ + 20180603, + 1431 + ], + "deps": [ + "async" + ], + "commit": "55da85f963d347255a2b46568954923679331798", + "sha256": "0yv4i4ps379kz1q9qmjh4q3pk5ik77xw86faxmwpjx4yzp1wsz9v" + } + }, + { + "ename": "transient", + "commit": "ee7bfefdf4423d63706a6dcf128886ca6b514e6b", + "sha256": "04xkdspn475dlch5fcw21phhdhshxlbyznjbi0l7qk8snm130qpv", + "fetcher": "github", + "repo": "magit/transient", + "unstable": { + "version": [ + 20190630, + 1359 + ], + "deps": [ + "dash" + ], + "commit": "01a166fcb8bbd9918ba741e9b5428a4b524eab33", + "sha256": "0wnp1wq9k67dghdlkpa2l302p7vdz2grw0nmw53c33f8mczxgf7b" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "dash", + "lv" + ], + "commit": "33f538a0bb83c8d4abc8f4c2db0dfbb9b09c4f92", + "sha256": "1hrn4mgag6rkcqzpmn5ysa9rj79dsgmh8vrihjvaikrdyshf9zxc" + } + }, + { + "ename": "transmission", + "commit": "9ed7e414687c0bd82b140a1bd8044084d094d18f", + "sha256": "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9", + "fetcher": "github", + "repo": "holomorph/transmission", + "unstable": { + "version": [ + 20190211, + 246 + ], + "deps": [ + "let-alist" + ], + "commit": "7293beeb8a49cf6822abd16a9f4b9e4bef0a9296", + "sha256": "0pbmxl5654l1y213pq2h65dyrr78jlkybbdwz1dq52km98mpnf3r" + }, + "stable": { + "version": [ + 0, + 12, + 1 + ], + "deps": [ + "let-alist" + ], + "commit": "03a36853f141387654b7cb9217c7417db096a083", + "sha256": "0kvg2gawsgy440x1fsl2c4pkxwp3zirq9rzixanklk0ryijhd3ry" + } + }, + { + "ename": "transpose-frame", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "1ksdc4d9k05452hcq4xx0j5nfl9n01z8abbca6j7j66bdf3m4l1b", + "fetcher": "github", + "repo": "emacsorphanage/transpose-frame", + "unstable": { + "version": [ + 20151126, + 1426 + ], + "commit": "011f420c3496b69fc22d789f64cb8091834feba7", + "sha256": "1nhbinwv1ld13c0b0lxlvfm9s6bvxcz2vgfccqg45ncg9rx70rsw" + } + }, + { + "ename": "transpose-mark", + "commit": "e997b356b009b3d2ab467fe49b79d728a8cfe24b", + "sha256": "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv", + "fetcher": "github", + "repo": "kwrooijen/transpose-mark", + "unstable": { + "version": [ + 20150405, + 716 + ], + "commit": "667327602004794de97214cf336ac61650ef75b7", + "sha256": "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x" + } + }, + { + "ename": "travis", + "commit": "c064a0dc7922cbe4cff2ae65665c4f10e6dbff27", + "sha256": "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix", + "fetcher": "github", + "repo": "nlamirault/emacs-travis", + "unstable": { + "version": [ + 20150825, + 1138 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "754ef07c17fed17ab03664ad11e2b0b2ef5e78ed", + "sha256": "1ciwf40ghlm4w9g4ynbc3d1a93gf6f3imm3m8z9kqfa7cnlsypb6" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "deps": [ + "dash", + "pkg-info", + "request", + "s" + ], + "commit": "c8769d3db10ed4604969049e3bd276afa0a0138e", + "sha256": "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz" + } + }, + { + "ename": "tree-mode", + "commit": "84f836338818946a6bb31d35d6ae959571128ed5", + "sha256": "1b15xgh96j4qas1kh4ghczcn7hb1ri86wnjgn9wz2d6bw3c6077b", + "fetcher": "github", + "repo": "emacsorphanage/tree-mode", + "unstable": { + "version": [ + 20151104, + 1331 + ], + "commit": "b06078826d5875d74b0e7b7ac47b0d0917610534", + "sha256": "13bbdhdmqg4x9yghanhr8fsbsxbnypzxdxgicz31sjjm675kpnix" + } + }, + { + "ename": "treemacs", + "commit": "37cca017cf529a0553ba73bcb824a945ec8b1137", + "sha256": "0is4waygw902vkha4jwav0i05298zhf4d559m91gmsfg1cfrlrr3", + "fetcher": "github", + "repo": "Alexander-Miller/treemacs", + "unstable": { + "version": [ + 20190801, + 1501 + ], + "deps": [ + "ace-window", + "cl-lib", + "dash", + "f", + "ht", + "hydra", + "pfuture", + "s" + ], + "commit": "b8692a6a72a41d93b637ba58354ac195aca2cb08", + "sha256": "1qwfvxjz9cvnmbz7v9kljlwh5yyi30m8i6g2lwp72i1ngs0srfvg" + }, + "stable": { + "version": [ + 2, + 6 + ], + "deps": [ + "ace-window", + "cl-lib", + "dash", + "f", + "ht", + "hydra", + "pfuture", + "s" + ], + "commit": "e01ad21ea3cc0eba8cd460737116b51be32ffb45", + "sha256": "13gs8g05xj7np3i2q3bbxg6zgdiazzn1spxii4x0cyd4pg83c0i1" + } + }, + { + "ename": "treemacs-evil", + "commit": "37cca017cf529a0553ba73bcb824a945ec8b1137", + "sha256": "144klr1gqqzfqy7fx9lzngc2vljy6mnz7awk0z5f8vfclczkihw2", + "fetcher": "github", + "repo": "Alexander-Miller/treemacs", + "unstable": { + "version": [ + 20190619, + 1516 + ], + "deps": [ + "evil", + "treemacs" + ], + "commit": "b8692a6a72a41d93b637ba58354ac195aca2cb08", + "sha256": "1qwfvxjz9cvnmbz7v9kljlwh5yyi30m8i6g2lwp72i1ngs0srfvg" + }, + "stable": { + "version": [ + 2, + 6 + ], + "deps": [ + "evil", + "treemacs" + ], + "commit": "e01ad21ea3cc0eba8cd460737116b51be32ffb45", + "sha256": "13gs8g05xj7np3i2q3bbxg6zgdiazzn1spxii4x0cyd4pg83c0i1" + } + }, + { + "ename": "treemacs-icons-dired", + "commit": "37cca017cf529a0553ba73bcb824a945ec8b1137", + "sha256": "075897b11aaj9h59gbcldz2wd5557h86pq28qkijbgay4i3piv9v", + "fetcher": "github", + "repo": "Alexander-Miller/treemacs", + "unstable": { + "version": [ + 20190719, + 815 + ], + "deps": [ + "cl-lib", + "treemacs" + ], + "commit": "b8692a6a72a41d93b637ba58354ac195aca2cb08", + "sha256": "1qwfvxjz9cvnmbz7v9kljlwh5yyi30m8i6g2lwp72i1ngs0srfvg" + }, + "stable": { + "version": [ + 2, + 6 + ], + "deps": [ + "cl-lib", + "treemacs" + ], + "commit": "e01ad21ea3cc0eba8cd460737116b51be32ffb45", + "sha256": "13gs8g05xj7np3i2q3bbxg6zgdiazzn1spxii4x0cyd4pg83c0i1" + } + }, + { + "ename": "treemacs-magit", + "commit": "1719c6bfc346e63f58221ea2c6e625b98f4ea368", + "sha256": "10c32rf76w26hhg1pyjlwj94adpjz1kic4hzapbckvcyzcwz6fql", + "fetcher": "github", + "repo": "Alexander-Miller/treemacs", + "unstable": { + "version": [ + 20190731, + 540 + ], + "deps": [ + "magit", + "pfuture", + "treemacs" + ], + "commit": "b8692a6a72a41d93b637ba58354ac195aca2cb08", + "sha256": "1qwfvxjz9cvnmbz7v9kljlwh5yyi30m8i6g2lwp72i1ngs0srfvg" + }, + "stable": { + "version": [ + 2, + 6 + ], + "deps": [ + "magit", + "pfuture", + "treemacs" + ], + "commit": "e01ad21ea3cc0eba8cd460737116b51be32ffb45", + "sha256": "13gs8g05xj7np3i2q3bbxg6zgdiazzn1spxii4x0cyd4pg83c0i1" + } + }, + { + "ename": "treemacs-projectile", + "commit": "37cca017cf529a0553ba73bcb824a945ec8b1137", + "sha256": "1lldvpasvgsd5xvnlafddqp47w7rdvf3vqfhr26rxn99kj5s9xzp", + "fetcher": "github", + "repo": "Alexander-Miller/treemacs", + "unstable": { + "version": [ + 20190619, + 1516 + ], + "deps": [ + "projectile", + "treemacs" + ], + "commit": "b8692a6a72a41d93b637ba58354ac195aca2cb08", + "sha256": "1qwfvxjz9cvnmbz7v9kljlwh5yyi30m8i6g2lwp72i1ngs0srfvg" + }, + "stable": { + "version": [ + 2, + 6 + ], + "deps": [ + "projectile", + "treemacs" + ], + "commit": "e01ad21ea3cc0eba8cd460737116b51be32ffb45", + "sha256": "13gs8g05xj7np3i2q3bbxg6zgdiazzn1spxii4x0cyd4pg83c0i1" + } + }, + { + "ename": "treepy", + "commit": "63c94a703841f8c11948200d86d98145bc62162c", + "sha256": "0jfah4vywi1b6c86h7vh8fspmklhs790qzkl51i9p7yckfggwp72", + "fetcher": "github", + "repo": "volrath/treepy.el", + "unstable": { + "version": [ + 20180724, + 656 + ], + "commit": "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d", + "sha256": "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "commit": "b40e6b09eb9be45da67b8c9e4990a5a0d7a2a09d", + "sha256": "04zwm6gx9pxfvgfkizx6pvb1ql8pqxjyzqp8flz0432x0gq5nlxk" + } + }, + { + "ename": "trident-mode", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd", + "fetcher": "github", + "repo": "johnmastro/trident-mode.el", + "unstable": { + "version": [ + 20190410, + 2036 + ], + "deps": [ + "dash", + "skewer-mode", + "slime" + ], + "commit": "109a1bc10bd0c4b47679a6ca5c4cd27c7c8d4ccb", + "sha256": "0blbxjaddzhkvzlys46yrzszywmyjkmfhwks52v4laya76rgxm45" + } + }, + { + "ename": "trinary", + "commit": "48fff02dde8a678e151f2765ea7c3a383912c68b", + "sha256": "1k2jpay1wx2m54fpja9mrhqyk15ikml8xf15irh8yrxb3hah8f8k", + "fetcher": "github", + "repo": "emacs-elsa/trinary-logic", + "unstable": { + "version": [ + 20180904, + 2313 + ], + "commit": "886232c6d7e92a8e9fe573eef46754ebe321f90d", + "sha256": "10h6p2dwl2k2p35pi3n8y85qh5y0zrr9nhfr4sviwzj1nbqdrvdr" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "dc10294af106ff3b110c372841eef0a8ec4c29c7", + "sha256": "0a1437hkcx2ba3jvvrn7f0x0gca36wagnhbq4ll2mlkmvdkac6is" + } + }, + { + "ename": "trr", + "commit": "56fa3c0b65e4e300f01804df7779ba6f1cb18cec", + "sha256": "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr", + "fetcher": "github", + "repo": "kawabata/emacs-trr", + "unstable": { + "version": [ + 20170221, + 842 + ], + "commit": "83660d8343ef3367837354dc684dfdde2f95826a", + "sha256": "0h12szq1cww3bpsk09m7d2bk9bfjxrmzlw9ccviwhnric40nh67k" + }, + "stable": { + "version": [ + 2, + 0, + 0 + ], + "commit": "7500ae0a05a3e26888949208afcd0185cc1b1404", + "sha256": "0x1knf2jqkd1sdswv1w902jnlppih2yw6z028268nizl0c9q92yn" + } + }, + { + "ename": "truthy", + "commit": "f7a7e319dbe17e2b31353e7d7cab51d557d86e9d", + "sha256": "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg", + "fetcher": "github", + "repo": "rolandwalker/truthy", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "list-utils" + ], + "commit": "8ed8d07772aa8457554547eb17e264b5df2b4a69", + "sha256": "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm" + }, + "stable": { + "version": [ + 0, + 2, + 8 + ], + "deps": [ + "list-utils" + ], + "commit": "276a7e6b13606d28e4f2e423bb1ea30904c5def3", + "sha256": "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397" + } + }, + { + "ename": "try", + "commit": "13c0ed40ad02fa0893cbf4dd9617dccb624f064b", + "sha256": "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n", + "fetcher": "github", + "repo": "larstvei/Try", + "unstable": { + "version": [ + 20181204, + 236 + ], + "commit": "8831ded1784df43a2bd56c25ad3d0650cdb9df1d", + "sha256": "0y26ybdsljph49w2834wssxgdx8ij7b6v4gp8jpgnbx118gr4jsz" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "commit": "271b0a362cadf44d0694628b9e213f54516ef913", + "sha256": "1fvpi02c6awyrwg2yqjapvcv4132qvmvd9bkbwpjmndxpicsann3" + } + }, + { + "ename": "ts-comint", + "commit": "4a1c08c22704ac689235b8d5cc36cc437ba7356a", + "sha256": "0cmh8ww6myiaz42867d0dqfi64lxrbna1lcwl6x6rmdgf15k6c1m", + "fetcher": "github", + "repo": "emacs-typescript/ts-comint", + "unstable": { + "version": [ + 20181219, + 719 + ], + "commit": "786b88fffc553e122868a1c4883f14136a040df6", + "sha256": "1103gb66db91rnqvs1adqzdsgjh14apb171zghd1dzswhjgiff8q" + } + }, + { + "ename": "tss", + "commit": "d52e20f5ca38ed399d19f18f778b8601baf78460", + "sha256": "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm", + "fetcher": "github", + "repo": "aki2o/emacs-tss", + "unstable": { + "version": [ + 20150913, + 1408 + ], + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ], + "commit": "81ac6351a2ae258fd0ebf916dae9bd5a179fefd0", + "sha256": "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3" + }, + "stable": { + "version": [ + 0, + 6, + 0 + ], + "deps": [ + "auto-complete", + "json-mode", + "log4e", + "yaxception" + ], + "commit": "1f302deea3d74462c71a9c62031f48b753e8915f", + "sha256": "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb" + } + }, + { + "ename": "tt-mode", + "commit": "62959f554db7aa24b2565baded19766b01e61f62", + "sha256": "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf", + "fetcher": "github", + "repo": "davorg/tt-mode", + "unstable": { + "version": [ + 20130804, + 1110 + ], + "commit": "85ed3832e7eef391f7879d9990d59c7a3493c15e", + "sha256": "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm" + } + }, + { + "ename": "ttl-mode", + "commit": "d56140a50abeab0953825d3646122d6e6ed19a7c", + "sha256": "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4", + "error": "Not in archive", + "fetcher": "bitbucket", + "repo": "nxg/ttl-mode" + }, + { + "ename": "tuareg", + "commit": "01fb6435a1dfeebdf4e7fa3f4f5928bc75526809", + "sha256": "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q", + "fetcher": "github", + "repo": "ocaml/tuareg", + "unstable": { + "version": [ + 20190709, + 2158 + ], + "deps": [ + "caml" + ], + "commit": "c83f22780310415d885470766d38b0f9d6f55767", + "sha256": "16nnadl7037hglrrr3prak0sx20f4611xcks0hd2hgg2c3my5ig8" + }, + "stable": { + "version": [ + 2, + 2, + 0 + ], + "deps": [ + "caml" + ], + "commit": "5796f08757a6d172d628834a40ba6379f318edf5", + "sha256": "06zxnn85fk5087iq0zxc5l5n9fz8r0367wylmynbfhc9711vccy6" + } + }, + { + "ename": "tumble", + "commit": "579a441d153c4c7d9f8172be94983a632d6fab8f", + "sha256": "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9", + "fetcher": "github", + "repo": "febuiles/tumble", + "unstable": { + "version": [ + 20160112, + 729 + ], + "deps": [ + "cl-lib", + "http-post-simple" + ], + "commit": "e8fd7643cccf2b6ea4170f0c5f1f87d007e7fa00", + "sha256": "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5" + }, + "stable": { + "version": [ + 1, + 5 + ], + "commit": "a1db6dac5720b9f468a79e0efce04f77c0a458e3", + "sha256": "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy" + } + }, + { + "ename": "tumblesocks", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "005w7vfzi4qpm59pxhq9nhp8hlwh4m1i7zj6l4knizcwm5xrm4ab", + "fetcher": "github", + "repo": "gcr/tumblesocks", + "unstable": { + "version": [ + 20140215, + 2047 + ], + "deps": [ + "htmlize", + "markdown-mode", + "oauth" + ], + "commit": "85a6cdc2db3390593fd886c474959b675460b310", + "sha256": "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2" + } + }, + { + "ename": "tup-mode", + "commit": "bda3260dad1c766c5b6ae9124f966bf441e24f2f", + "sha256": "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l", + "fetcher": "github", + "repo": "ejmr/tup-mode", + "unstable": { + "version": [ + 20140410, + 1614 + ], + "commit": "bcc100c6485f1c81fdcd1215dfc6c41a81c215c8", + "sha256": "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "945af9c8e6c402e10cd3bf8e28a9591174023d6d", + "sha256": "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y" + } + }, + { + "ename": "turing-machine", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0q9a31m5wnz9j9l4i8czdl7z12nrcdjw72w8sqvf94ri2g5dbpkq", + "fetcher": "github", + "repo": "dieggsy/turing-machine", + "unstable": { + "version": [ + 20180222, + 438 + ], + "commit": "fa60b76a5bac1f54b7a1b3dc55aae7602c7e385b", + "sha256": "0k1r0zkcr44kiki8cvdqwx09xpvpz7nkbq9w6i4gqy5h78zy5k79" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "ad1dccc9c445f9e4465e1c67cbbfea9583153047", + "sha256": "0qaz4r5ahg2fxsfyxilb8c9956i5ra9vg80l82slm8vrnsinzll6" + } + }, + { + "ename": "turkish", + "commit": "12cdbdf404fa859a48d1bb69f058321d7595d2a2", + "sha256": "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532", + "fetcher": "github", + "repo": "emres/turkish-mode", + "unstable": { + "version": [ + 20170910, + 1511 + ], + "commit": "9831a316c176bb21a1b91226323ea4133163e00c", + "sha256": "0nrxi845gd24d5vymbmxz696jwld4rn6nw2dz1gzmdaks7bbv87m" + } + }, + { + "ename": "turnip", + "commit": "73c341fec986ed965a46954b898f92a4725fdee6", + "sha256": "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps", + "fetcher": "github", + "repo": "kljohann/turnip.el", + "unstable": { + "version": [ + 20150309, + 629 + ], + "deps": [ + "dash", + "s" + ], + "commit": "2fd32562fc6fc1cda6d91aa939cfb29f9b16e9de", + "sha256": "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4" + } + }, + { + "ename": "twig-mode", + "commit": "400c75bf336b8d610f0a2c1732cc78beb502e1f3", + "sha256": "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n", + "fetcher": "github", + "repo": "moljac024/twig-mode", + "unstable": { + "version": [ + 20130220, + 1850 + ], + "commit": "2849f273a4855d3314a9c0cc84134f5b28ad5ea6", + "sha256": "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa" + } + }, + { + "ename": "twilight-anti-bright-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1wfj570l5k0ygqi9dwjskc78rpnxw6080bkw1zd1a8kl3fa28n2k", + "fetcher": "github", + "repo": "jimeh/twilight-anti-bright-theme", + "unstable": { + "version": [ + 20160622, + 848 + ], + "commit": "523b95fcdbf4a6a6483af314ad05354a3d80f23f", + "sha256": "0g6qqfgbg507r8lgq99zj2b5n3r9m23hpx19m36c3i55mh94dl2h" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "commit": "16d4ff2606789b506f0d2f53d12f02d5b1b64f9b", + "sha256": "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc" + } + }, + { + "ename": "twilight-bright-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "039mg147cvb0pk59q3c1bpx7562bajgrs74xymylr89hvrxivxqh", + "fetcher": "github", + "repo": "jimeh/twilight-bright-theme.el", + "unstable": { + "version": [ + 20130605, + 843 + ], + "commit": "322157cb2f3bf7920ecd209dafc31bc1c7959f49", + "sha256": "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c" + } + }, + { + "ename": "twilight-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0g9bbb6m7q8x4zcw5gfmg7ljsfdmjh0335sq53b0lva0h3ra6kzx", + "fetcher": "github", + "repo": "developernotes/twilight-theme", + "unstable": { + "version": [ + 20120412, + 1303 + ], + "commit": "77c4741cb3dcf16e53d06d6c2ffdc660c40afb5b", + "sha256": "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs" + } + }, + { + "ename": "twittering-mode", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1", + "fetcher": "github", + "repo": "hayamiz/twittering-mode", + "unstable": { + "version": [ + 20181121, + 1402 + ], + "commit": "114891e8fdb4f06b1326a6cf795e49c205cf9e29", + "sha256": "1w1p5pg3ambixhc5l7490wf5qasw3xv9qg6f0xhfsnqk44fp70ia" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "commit": "27e7f3aab238bd0788fd3b471c645c3ceceb0f13", + "sha256": "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z" + } + }, + { + "ename": "typescript-mode", + "commit": "94455323364d5a6b00e2786d577134eb350826b4", + "sha256": "1abnik2dq0zfnp8pk8x6zy962qww78xadm87xyiwz17559g88d82", + "fetcher": "github", + "repo": "emacs-typescript/typescript.el", + "unstable": { + "version": [ + 20190710, + 2011 + ], + "commit": "32146510b8ebb031e468c6c0898a9b253c73617e", + "sha256": "1yhzlgq73px45wy9pz9rx5al510mgzq2bz3rh4j50wpwvl13ja5r" + }, + "stable": { + "version": [ + 0, + 3 + ], + "commit": "7a5c74d88e3c5513cc4431a837003736f905a75e", + "sha256": "002f1xfhq43fjaqliwrgxspryfahpa82va5dw3p8kwil2xwvc6mh" + } + }, + { + "ename": "typing", + "commit": "e6e75695594ce17b618ad8786c8a04e283f68b11", + "sha256": "0k2lplqzq3323nn7rybcs377sr87kbww8ci99rrka3yyb5bh1fa1", + "fetcher": "github", + "repo": "kensanata/typing", + "unstable": { + "version": [ + 20180830, + 2203 + ], + "commit": "a2ef25dde2d8eb91bd9c0c6164cb5208208647fa", + "sha256": "1dbh0srbf54lgd60ia79y9cfnq3kxlgw01qzdjs9mk3nfazzpgnv" + } + }, + { + "ename": "typing-game", + "commit": "e6ced22932f0462c77d121a631c494c01a0a4eaa", + "sha256": "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2", + "fetcher": "github", + "repo": "lujun9972/el-typing-game", + "unstable": { + "version": [ + 20160426, + 1220 + ], + "commit": "616435a5270274f4c7b698697674dbb2039049a4", + "sha256": "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j" + } + }, + { + "ename": "typit", + "commit": "d17d019155e19c156f123dcd702f18cfba488701", + "sha256": "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n", + "fetcher": "github", + "repo": "mrkkrp/typit", + "unstable": { + "version": [ + 20190713, + 1336 + ], + "deps": [ + "f", + "mmt" + ], + "commit": "2adb0e0df4689b5abaa89a71808ec7993ecfaf9b", + "sha256": "1b4n85dp65naswp6s960l8kvdkd9424f6r2w5n3lxijxb8a5jlbw" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "f", + "mmt" + ], + "commit": "a4e3147dedac5535bdc8b06aca00f34f14f26e35", + "sha256": "0hbnwrhxj9wwjvxsk372ffgjqfkb3ljxhgi5h7wps2r15dxfvf3w" + } + }, + { + "ename": "typo", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1p8is1n525lmzq588hj6vazmhl9wi6rairnfx1g1p6g6ijdycd4h", + "fetcher": "github", + "repo": "jorgenschaefer/typoel", + "unstable": { + "version": [ + 20171209, + 1023 + ], + "commit": "9dad93b6f367f02f52c8d9bf15d446d922cec294", + "sha256": "1xaikwl265v67b7hilrhjgwzr6bcha9idnp82f27msqzdfdzxf0f" + }, + "stable": { + "version": [ + 1, + 1 + ], + "commit": "e72171e4eb0b9ec80b9dabc3198d137d9fb4f972", + "sha256": "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2" + } + }, + { + "ename": "typoscript-mode", + "commit": "701de09cb97cbfa49a3a81aaeb9577817566efa2", + "sha256": "18i2wwbn8vj5dbgxp2ds29n12v8ldvxjd1zb6h1g9lfh8iyrnjmx", + "fetcher": "github", + "repo": "ksjogo/typoscript-mode", + "unstable": { + "version": [ + 20170126, + 912 + ], + "deps": [ + "use-package" + ], + "commit": "44e7567e921573c4f33c537b827f71fb1f565c32", + "sha256": "0i7l9s3lhxnld32mqyrvasiv1hilhwnp2fwvpdv2cx9r902q6kc8" + } + }, + { + "ename": "ubuntu-theme", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2", + "fetcher": "github", + "repo": "rocher/ubuntu-theme", + "unstable": { + "version": [ + 20150805, + 1506 + ], + "commit": "88b0eefc75d4cbcde103057e1c5968d4c3052f69", + "sha256": "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc" + }, + "stable": { + "version": [ + 4, + 2 + ], + "commit": "41f09ca6c203da93bdadb2077556efd48e3b5d5a", + "sha256": "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c" + } + }, + { + "ename": "ucs-utils", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2", + "fetcher": "github", + "repo": "rolandwalker/ucs-utils", + "unstable": { + "version": [ + 20150826, + 1414 + ], + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ], + "commit": "cbfd42f822bf5717934fa2d92060e6e24a813433", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m" + }, + "stable": { + "version": [ + 0, + 8, + 4 + ], + "deps": [ + "list-utils", + "pcache", + "persistent-soft" + ], + "commit": "cbfd42f822bf5717934fa2d92060e6e24a813433", + "sha256": "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m" + } + }, + { + "ename": "uimage", + "commit": "346cb25abdfdd539d121a9f34bce75b2fc5a16be", + "sha256": "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd", + "fetcher": "github", + "repo": "lujun9972/uimage", + "unstable": { + "version": [ + 20160901, + 1221 + ], + "commit": "9893d09160ef7e8c0ecdcd74fca99ffeb5f9d70d", + "sha256": "1ri50nab778kpq49m54ra75z8dphagp9sz92is0636j4qy3sbih1" + } + }, + { + "ename": "ujelly-theme", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw", + "fetcher": "github", + "repo": "marktran/color-theme-ujelly", + "unstable": { + "version": [ + 20180214, + 1624 + ], + "commit": "bf724ce7806a738d2043544061e5f9bbfc56e674", + "sha256": "0pz26q5qfq4wiqcpfkq26f19q5gyiv8q71sq4k77hkss5a5b5fqg" + } + }, + { + "ename": "ukrainian-holidays", + "commit": "8a8b5ec722600bcd5bf5fcc2b20262597a9e8c40", + "sha256": "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf", + "fetcher": "github", + "repo": "abo-abo/ukrainian-holidays", + "unstable": { + "version": [ + 20130720, + 1349 + ], + "commit": "e52b0c92843e9f4d0415a7ba3b8559785497d23d", + "sha256": "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz" + } + }, + { + "ename": "uncrustify-mode", + "commit": "5327aa1a1143c2257e9454663ff140f2371d07e3", + "sha256": "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd", + "fetcher": "github", + "repo": "koko1000ban/emacs-uncrustify-mode", + "unstable": { + "version": [ + 20130707, + 1359 + ], + "commit": "73893d000361e95784911e5ec268ad0ab2a1473c", + "sha256": "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam" + } + }, + { + "ename": "undercover", + "commit": "d58ad9eb863494f609114e3c6af8c14c891b83a5", + "sha256": "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf", + "fetcher": "github", + "repo": "sviridov/undercover.el", + "unstable": { + "version": [ + 20180403, + 1452 + ], + "deps": [ + "dash", + "shut-up" + ], + "commit": "3fc54ef92f0b4b7d26d962d6ed29a81d526a3a66", + "sha256": "0iqj1a6nj1ka5ahcy4rrn7k427bs1ifv0v0i7gj79m7isjj15qc4" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "deps": [ + "dash", + "shut-up" + ], + "commit": "86f856c799aacfd48d2eb42d1a6afda0e6e49845", + "sha256": "080bmfwyfi8663y8x594770hqz7mff7zvj2v03qdfwbhdr9w9y29" + } + }, + { + "ename": "underline-with-char", + "commit": "811872acb9bc1ca588315ad74d6ad39f0dddfc8f", + "sha256": "1vz2b8wbgp3slczdgshxhm9li1jl8h2lhyr4vq61rh870h5lziy0", + "fetcher": "gitlab", + "repo": "marcowahl/underline-with-char", + "unstable": { + "version": [ + 20190715, + 1627 + ], + "commit": "82e15447fe5dcb99fcb9fc72128199a9bf6b7be5", + "sha256": "0hr9mha3kyzm8mgqr6pmfwlgvqrdzr1j9cjnr8wwxxl4fzv5m345" + }, + "stable": { + "version": [ + 3, + 0, + 0 + ], + "commit": "c2f4870aff70efe70a8d1b089e56d3a2d6d048b9", + "sha256": "0i6jfr4l7mr8gpavmfblr5d41ck8aqzaf4iv1qk5fyzsb6yi0nla" + } + }, + { + "ename": "underwater-theme", + "commit": "e7dccc77d082181629b8f0c45404ac5d8bd97590", + "sha256": "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr", + "fetcher": "github", + "repo": "jmdeldin/underwater-theme.el", + "unstable": { + "version": [ + 20131118, + 2 + ], + "commit": "4eb9ef014f580adc135d91d1cd68d37a310640b6", + "sha256": "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "commit": "1fbd4ecd4538256c6c46f9638f883072c73ac927", + "sha256": "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj" + } + }, + { + "ename": "undo-propose", + "commit": "308eec15ebfd301b34f0d9f019250c9089c4d6e2", + "sha256": "0r0xswj9n24ghw44l1m1izapjqrfvcw8qn3qp61s2ly0i7la185j", + "fetcher": "github", + "repo": "jackkamm/undo-propose-el", + "unstable": { + "version": [ + 20190409, + 636 + ], + "commit": "5f1fa99a04369a959aad01b476fe4f34229f28cd", + "sha256": "1p9h1fqmva07mcs46rqrg9vqn537b615as84s9b7xh76k1r8h1c0" + } + }, + { + "ename": "undohist", + "commit": "aebd16ca1ac51d9982eae5437c6084a2a3946b88", + "sha256": "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn", + "fetcher": "github", + "repo": "m2ym/undohist-el", + "unstable": { + "version": [ + 20150315, + 1242 + ], + "deps": [ + "cl-lib" + ], + "commit": "d2239a5f736724ceb9e3b6bcaa86f4064805cda0", + "sha256": "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx" + } + }, + { + "ename": "unfill", + "commit": "2ade389a20419b3e29a613409ac73a16b7c5bddb", + "sha256": "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv", + "fetcher": "github", + "repo": "purcell/unfill", + "unstable": { + "version": [ + 20170723, + 146 + ], + "commit": "df0c4dee19a3874b11c7c7f04e8a2fba629fda9b", + "sha256": "0bdlr8kqzwzi7aggcn7cwwih19585wi6dd9lvwj4i966zr4w84yx" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "88186dce0de69e8f4aeaf2bfdc77d62210f19cd8", + "sha256": "0wyradin5igp25nsd3n22i2ppxhmy49ac1iq1w2715v8pfmiydnc" + } + }, + { + "ename": "unicode-emoticons", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0sp4sb2yw9msyqxgp4q5z9pzfvqwhizd1sx8w63g1vis6n2h254r", + "fetcher": "github", + "repo": "hagleitn/unicode-emoticons", + "unstable": { + "version": [ + 20150204, + 1108 + ], + "commit": "fb18631f342b0243cf77cf59ed2067c47aae5233", + "sha256": "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh" + } + }, + { + "ename": "unicode-enbox", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv", + "fetcher": "github", + "repo": "rolandwalker/unicode-enbox", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ], + "commit": "77074fac1994a4236f111d6a1d0cf79ea3fca151", + "sha256": "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "pcache", + "persistent-soft", + "string-utils", + "ucs-utils" + ], + "commit": "ff313f6778bb96481c0ee3291b07a7db46f21ff5", + "sha256": "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7" + } + }, + { + "ename": "unicode-escape", + "commit": "b2ae00434b80357dc62cd0177dbd714b25fb3ac7", + "sha256": "0gcwkv7qbdnvak10jfzj9irb7nkfqsfxv2n5fi8vvrk90j1a2i2k", + "fetcher": "github", + "repo": "kosh04/unicode-escape.el", + "unstable": { + "version": [ + 20160614, + 1234 + ], + "deps": [ + "dash", + "names" + ], + "commit": "fc69ec780d9e54c364a9252bd0cf1d2507f3fab7", + "sha256": "1bqknk6y7r0dqhmwhq3ac56cqf0albp18h222klnijv4bazjfcjw" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "dash", + "names" + ], + "commit": "b9cee7af45be62119b97033dc639bd1b5ed858f3", + "sha256": "09dgxb1z9kdbs8wri9sl5daygp1bgqcng40vyfv5y0ic50w08ksf" + } + }, + { + "ename": "unicode-fonts", + "commit": "83459421dd2eb3d60ec668c3d5bb38d99ee64aff", + "sha256": "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3", + "fetcher": "github", + "repo": "rolandwalker/unicode-fonts", + "unstable": { + "version": [ + 20181001, + 1509 + ], + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "7b88ae84e589f6c8b9386b2fb5a02ff4ccb91169", + "sha256": "07wzcfj92jiadgd6nj5rmxky2aiaxs89j7zywp877xdp4vv0v512" + }, + "stable": { + "version": [ + 0, + 4, + 10 + ], + "deps": [ + "font-utils", + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "7b88ae84e589f6c8b9386b2fb5a02ff4ccb91169", + "sha256": "07wzcfj92jiadgd6nj5rmxky2aiaxs89j7zywp877xdp4vv0v512" + } + }, + { + "ename": "unicode-input", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8", + "fetcher": "bitbucket", + "repo": "m00nlight/unicode-input", + "unstable": { + "version": [ + 20141219, + 720 + ], + "commit": "e76ccb549e6a2a66c373da927eb65d69353e07db", + "sha256": "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l" + } + }, + { + "ename": "unicode-math-input", + "commit": "e0d39bc129500e55b99c11b3d27e042619777414", + "sha256": "1hra3vf6nzh99piagbxsmp0sizvki2jl7qkfmlwd5nwmicw0ykrq", + "fetcher": "github", + "repo": "astoff/unicode-math-input.el", + "unstable": { + "version": [ + 20181230, + 1223 + ], + "commit": "ed87837d2303fb07ec81508930bc3b2a4d857fcd", + "sha256": "1xk8snjby46fprj3vd0yf2zmcqcqx6jcljgaxijdh6wqbl2ard3b" + } + }, + { + "ename": "unicode-progress-reporter", + "commit": "83459421dd2eb3d60ec668c3d5bb38d99ee64aff", + "sha256": "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7", + "fetcher": "github", + "repo": "rolandwalker/unicode-progress-reporter", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "5e66724fd7d15743213b082474d798117b194494", + "sha256": "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4" + }, + "stable": { + "version": [ + 0, + 5, + 4 + ], + "deps": [ + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "f4705332412b12fc72ca868b77c78465561bda75", + "sha256": "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd" + } + }, + { + "ename": "unicode-troll-stopper", + "commit": "b463925a98b7dde78d85693c7681fd2346d90895", + "sha256": "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5", + "fetcher": "github", + "repo": "camsaul/emacs-unicode-troll-stopper", + "unstable": { + "version": [ + 20190209, + 411 + ], + "commit": "5e8be35a7bf6382384a701663f7438ee27e4b67c", + "sha256": "0xjh017kjhj93j72r5hdpiabv76szlmpivlfyhg9vzysdmix45qv" + } + }, + { + "ename": "unicode-whitespace", + "commit": "f9892a826f3ac335d12bd1a07202334e28a44f40", + "sha256": "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy", + "fetcher": "github", + "repo": "rolandwalker/unicode-whitespace", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "deps": [ + "list-utils", + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "a18c6b38d78b94f2eb1dcc4cb4fa91b6a17efabe", + "sha256": "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz" + }, + "stable": { + "version": [ + 0, + 2, + 4 + ], + "deps": [ + "pcache", + "persistent-soft", + "ucs-utils" + ], + "commit": "6d29f25d46b3344c74ce289fc80b3d4fc17ed6db", + "sha256": "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy" + } + }, + { + "ename": "unidecode", + "commit": "f9ba8e425e37e80a2236832c3f12568546d4c7c9", + "sha256": "0vhghnyj8a5mcqq5rzajrm1izzfry77pd1wxhmra5yp9ribw2sv5", + "fetcher": "github", + "repo": "sindikat/unidecode", + "unstable": { + "version": [ + 20180312, + 1926 + ], + "commit": "5502ada9287b4012eabb879f12f5b0a9df52c5b7", + "sha256": "03x3nakbhmakwm977mwrf8jifvjnfwzpjv6wrwpizbqjnkgfchmn" + } + }, + { + "ename": "unify-opening", + "commit": "0a2faab13744262ef4d12750f70b300b3afd2835", + "sha256": "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8", + "fetcher": "github", + "repo": "DamienCassou/unify-opening", + "unstable": { + "version": [ + 20171122, + 2012 + ], + "commit": "502469ddba6d8d52159f53976265f7d956b6b17c", + "sha256": "0mni9vnbs50wvgnwfjwgzlwfff38h3wbrpr20nv84dmfh8ac0v61" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "commit": "502469ddba6d8d52159f53976265f7d956b6b17c", + "sha256": "0mni9vnbs50wvgnwfjwgzlwfff38h3wbrpr20nv84dmfh8ac0v61" + } + }, + { + "ename": "unipoint", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s", + "fetcher": "github", + "repo": "apg/unipoint", + "unstable": { + "version": [ + 20140113, + 2224 + ], + "commit": "5da04aebac35a5c9e1d8704f2231808d42f4b36a", + "sha256": "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0" + } + }, + { + "ename": "unison", + "commit": "ee7ee1a68486f822c1627fb0bf066c4ae8bc0776", + "sha256": "03v10r6d4r6z66s9q7mg1iyxh53f3l6q7dij7pfbf32migqjgpir", + "fetcher": "github", + "repo": "unhammer/unison.el", + "unstable": { + "version": [ + 20160704, + 740 + ], + "commit": "a78a04c0d1398d00f75a1bd4799622a65bcb0f28", + "sha256": "1jn23wlhpka5pv0caipxi8bg3cc6wj1fg09abibhydy4p3mb3bi5" + } + }, + { + "ename": "unison-mode", + "commit": "bd5b5c16e504ee8e511bbc65acbc0ff65f99eaf4", + "sha256": "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl", + "fetcher": "github", + "repo": "impaktor/unison-mode", + "unstable": { + "version": [ + 20160513, + 1501 + ], + "commit": "0bd6a65c0d12f87fcf7bdff15fe54444959b93bf", + "sha256": "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66" + } + }, + { + "ename": "universal-emotions-emoticons", + "commit": "57f913112c98db2248cf69e44deb69fd09cee042", + "sha256": "1aj3k3yrvasn3zmfwz5si046hlyhnjdmxh7i8li6rc0v0qwl7p86", + "fetcher": "github", + "repo": "grettke/universal-emotions-emoticons", + "unstable": { + "version": [ + 20180729, + 1941 + ], + "commit": "9cedd09ee65cb9fa71f27b0ab46a8353bdc00902", + "sha256": "17blqfnf384l2hd2igrw5p0zblw6bxz69vvzli22nr84kpkh5jx4" + } + }, + { + "ename": "unkillable-scratch", + "commit": "822ac5610f333e41b676a29ef45a6f8bfea3162e", + "sha256": "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7", + "fetcher": "github", + "repo": "EricCrosson/unkillable-scratch", + "unstable": { + "version": [ + 20190309, + 17 + ], + "commit": "b24c2a760529833f230c14cb02ff6e7ec92288ab", + "sha256": "13wjbcxr3km4s96yhpavgs5acs5pvqv3ih1p84diqb3x3i6wd4pa" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "dac9dbed946a26829e6227ac15c0fa1d07ccd05f", + "sha256": "0fgipv93x47cvyww07cqx8xa95jz36y6fy5rmaq40jnnmdkgq862" + } + }, + { + "ename": "untitled-new-buffer", + "commit": "de62e48115e1e5f9506e6d47a3b23c0420c1205b", + "sha256": "1hpv7k7jhpif9csdrd2gpz71s3fp4svsvrd1nh8hbx7avjl66pjf", + "fetcher": "github", + "repo": "zonuexe/untitled-new-buffer.el", + "unstable": { + "version": [ + 20161212, + 1508 + ], + "deps": [ + "magic-filetype" + ], + "commit": "4eabc6937b0e83062ffce9de0d42110224063a6c", + "sha256": "139gysva6hpsk006bcbm1689pzaj18smxs2ar5pv0yvkh60wjvlr" + } + }, + { + "ename": "upbo", + "commit": "e5232078b065dcca04388ccc76aa01a6159395d5", + "sha256": "15rqz9z49363anrhli08vk155wp21hq3j7xsvd98lkq9ip6aglns", + "fetcher": "github", + "repo": "shiren/upbo", + "unstable": { + "version": [ + 20180422, + 822 + ], + "deps": [ + "dash" + ], + "commit": "c37728e11dedd29d849ba9523465b0cdaccea9d5", + "sha256": "0sp3kcqqj5km6nw6kinhg780vj3bjwf2zj52pmfwpfk8xiy6km5y" + } + }, + { + "ename": "uptimes", + "commit": "72099e35ce3e34ec6afc6a3f87a4da07ec91499a", + "sha256": "0r8s5c2hdcb1ly7rnhzar4qzf1c9d49gd914ndnc3mg9yb9gyy5h", + "fetcher": "github", + "repo": "davep/uptimes.el", + "unstable": { + "version": [ + 20190328, + 856 + ], + "deps": [ + "cl-lib" + ], + "commit": "1f726d31b502d764a3e3191aaf92ed4855105131", + "sha256": "1ymv5fh0bfjzkkd8vc9f1n8921bx1czbb29s0rw6zy37vkhs6v3s" + }, + "stable": { + "version": [ + 3, + 7 + ], + "deps": [ + "cl-lib" + ], + "commit": "1f726d31b502d764a3e3191aaf92ed4855105131", + "sha256": "1ymv5fh0bfjzkkd8vc9f1n8921bx1czbb29s0rw6zy37vkhs6v3s" + } + }, + { + "ename": "url-shortener", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "08zsirsndhr8xny2vkzznkvjs0b6490lzd915ws6crdwxp6mx5si", + "fetcher": "github", + "repo": "yuyang0/url-shortener", + "unstable": { + "version": [ + 20170805, + 242 + ], + "commit": "06db8270213b9e352d6c335b0663059a1353d05e", + "sha256": "1ndcajgvfl46zw2iwgghvcldsy9p778pifkhlanivc6azajhpjhh" + } + }, + { + "ename": "urlenc", + "commit": "5c36c416a13328ab762041dd62407b7b0696de93", + "sha256": "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh", + "fetcher": "github", + "repo": "buzztaiki/urlenc-el", + "unstable": { + "version": [ + 20140116, + 1456 + ], + "commit": "835a6dcb783bbe84714bae87a3464aa0b128bfac", + "sha256": "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4" + } + }, + { + "ename": "urscript-mode", + "commit": "b4ae680b51a85749ed254215bbd4a35909961049", + "sha256": "1jjmpg9r7vwa8284chx9yc1ifn36m7ml1ks4ls8hnsxachbv7wlh", + "fetcher": "github", + "repo": "guidoschmidt/urscript-mode", + "unstable": { + "version": [ + 20190219, + 1604 + ], + "commit": "b341f96b129ead8fb74d680cb4f546985bf110a9", + "sha256": "0qhncqsvsrpgc47ixsp436imfm0l6pd1kbpjjk426wrnzaszrpkc" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "b341f96b129ead8fb74d680cb4f546985bf110a9", + "sha256": "0qhncqsvsrpgc47ixsp436imfm0l6pd1kbpjjk426wrnzaszrpkc" + } + }, + { + "ename": "usage-memo", + "commit": "ad10a684b4b2f01bc65883374f36fef156ff55d2", + "sha256": "0fv96xd6gk12nv98zccwncr00qms0pmrp0cv7iipbz54s20g0745", + "fetcher": "github", + "repo": "rubikitch/usage-memo", + "unstable": { + "version": [ + 20170926, + 37 + ], + "commit": "88e15a9942a3e0a6e36e9c3e51e3edb746067b1a", + "sha256": "1aalrgyk8pwsc07qmczqhgccjli6mcckkbgpass3kvrkcfxdl2zk" + } + }, + { + "ename": "use-package", + "commit": "51a19a251c879a566d4ae451d94fcb35e38a478b", + "sha256": "0d0zpgxhj6crsdi9sfy30fn3is036apm1kz8fhjg1yzdapf1jdyp", + "fetcher": "github", + "repo": "jwiegley/use-package", + "unstable": { + "version": [ + 20190716, + 1829 + ], + "deps": [ + "bind-key" + ], + "commit": "1d5ffb2e0d1427066ced58febbba68c1328bf001", + "sha256": "1a8zpi9pkgp8qkm6qxyzaj3k1s25z3x034mgjqp2mpd7ij76mk8v" + }, + "stable": { + "version": [ + 2, + 4 + ], + "deps": [ + "bind-key" + ], + "commit": "39a8b8812c2c9f6f0b299e6a04e504ef393694ce", + "sha256": "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y" + } + }, + { + "ename": "use-package-chords", + "commit": "6240afa625290187785e4b7535ee7b0d7aad8969", + "sha256": "1217l0gpxcp8532p0d3g1xd2015qpx2g5xm0kwsbxdmffqqdaar3", + "fetcher": "github", + "repo": "jwiegley/use-package", + "unstable": { + "version": [ + 20181024, + 2322 + ], + "deps": [ + "bind-chord", + "bind-key", + "key-chord", + "use-package" + ], + "commit": "1d5ffb2e0d1427066ced58febbba68c1328bf001", + "sha256": "1a8zpi9pkgp8qkm6qxyzaj3k1s25z3x034mgjqp2mpd7ij76mk8v" + }, + "stable": { + "version": [ + 2, + 4 + ], + "deps": [ + "bind-chord", + "bind-key", + "key-chord", + "use-package" + ], + "commit": "39a8b8812c2c9f6f0b299e6a04e504ef393694ce", + "sha256": "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y" + } + }, + { + "ename": "use-package-el-get", + "commit": "aca60522257353fbfd9d032f8c3cae7914d6bd36", + "sha256": "143vydssjxmkcgs661hz6nhg310r8qypn2a4vyxy5sb31wqcclzg", + "fetcher": "gitlab", + "repo": "edvorg/use-package-el-get", + "unstable": { + "version": [ + 20180131, + 505 + ], + "deps": [ + "use-package" + ], + "commit": "cba87c4e9a3a66b7c10962e3aefdf11c83d737bc", + "sha256": "1k1dwydqfgx2yvbipahwzk8kyj7v5ih6hkra8ladbn67x013f9rq" + }, + "stable": { + "version": [ + 0, + 1 + ], + "deps": [ + "use-package" + ], + "commit": "f33c448ed43ecb003b60ff601ee7ef9b08cff947", + "sha256": "1wzn3h8k7aydj3hxxws64b0v4cr3b77cf7z128xh3v6xz2w62m4z" + } + }, + { + "ename": "use-package-ensure-system-package", + "commit": "6240afa625290187785e4b7535ee7b0d7aad8969", + "sha256": "1cl61nwgsz5dh3v9rdiww8mq2k1sbx27gr6izb4ij4pnzjp7aaj6", + "fetcher": "github", + "repo": "jwiegley/use-package", + "unstable": { + "version": [ + 20180913, + 1501 + ], + "deps": [ + "system-packages", + "use-package" + ], + "commit": "1d5ffb2e0d1427066ced58febbba68c1328bf001", + "sha256": "1a8zpi9pkgp8qkm6qxyzaj3k1s25z3x034mgjqp2mpd7ij76mk8v" + }, + "stable": { + "version": [ + 2, + 4 + ], + "deps": [ + "system-packages", + "use-package" + ], + "commit": "39a8b8812c2c9f6f0b299e6a04e504ef393694ce", + "sha256": "1b7mjjh0d6fmkkd9vyj64vca27xqhga0nvyrrcqxpqjn62zq046y" + } + }, + { + "ename": "use-package-hydra", + "commit": "28589bb76442601930a4591e200c8e1db119caf6", + "sha256": "0q2qfav2y1p6vxfvdblqlpjmj0z7z8w843jpry9g07d8kc4959f6", + "fetcher": "gitlab", + "repo": "to1ne/use-package-hydra", + "unstable": { + "version": [ + 20181228, + 745 + ], + "deps": [ + "use-package" + ], + "commit": "8cd55a1128fbdf6327bb38a199d206225896d146", + "sha256": "19dja25illcvwpx8j1kigw8dzby41bm57prx1bhaxkmsakxyl863" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "use-package" + ], + "commit": "8cd55a1128fbdf6327bb38a199d206225896d146", + "sha256": "19dja25illcvwpx8j1kigw8dzby41bm57prx1bhaxkmsakxyl863" + } + }, + { + "ename": "use-ttf", + "commit": "ec27ae185c0308c445e461dc84f398483ca08c5a", + "sha256": "0gxrn05qcnf54c5895nw68088b9mngsf7sij2prwyfw0ghdl9s8k", + "fetcher": "github", + "repo": "elpa-host/use-ttf", + "unstable": { + "version": [ + 20190701, + 1222 + ], + "deps": [ + "s" + ], + "commit": "0b56d4b062bb86e6b2e5425a0e76b4b2997a80d7", + "sha256": "0k3zy8zpv4isr5nd3xyvncbjdcpyfgc9swylhc8padr3ifkxvb3p" + } + }, + { + "ename": "usql", + "commit": "c8f6b968312a09d062fcc8f942d29c93df2a5a3c", + "sha256": "10ks164kcly5gkb2qmn700a51kph2sry4a64jwn60p5xl7w7af84", + "fetcher": "github", + "repo": "nickbarnwell/usql.el", + "unstable": { + "version": [ + 20180305, + 2323 + ], + "commit": "bfaf428b366a9a185eef84f0d645a98dc918fe3d", + "sha256": "00b1g30l86abg65wc9f4vcn4ccqa2zmn2mi33vdjrq3phw17d2ks" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "bfaf428b366a9a185eef84f0d645a98dc918fe3d", + "sha256": "00b1g30l86abg65wc9f4vcn4ccqa2zmn2mi33vdjrq3phw17d2ks" + } + }, + { + "ename": "utop", + "commit": "30489fe52b4031184e54f994770aa3291257bc9d", + "sha256": "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7", + "fetcher": "github", + "repo": "diml/utop", + "unstable": { + "version": [ + 20190715, + 1836 + ], + "commit": "9da0951274af3fcadfd7b40fc582ab00539c5884", + "sha256": "18skj7zqg84wvhwd5fsl0bn7v8l0w4ashr8rx45rvddqmgf1h36g" + }, + "stable": { + "version": [ + 2, + 4, + 0 + ], + "commit": "1fa416862f4bf95ded4ce3bc01a5ebdb9842ce56", + "sha256": "0sklms0crkmknlgjw2lrqbyslvfjg5mrc8cnz2ar98css4509qph" + } + }, + { + "ename": "uuid", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0d69z9686gnd1bb17wa44v1rbbgccacn4kicwf9niwwp05nccfw6", + "fetcher": "github", + "repo": "nicferrier/emacs-uuid", + "unstable": { + "version": [ + 20120910, + 851 + ], + "commit": "1519bfeb0e31602b840bc8dd35d7c7e732c159fe", + "sha256": "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj" + } + }, + { + "ename": "uuidgen", + "commit": "8bdeb5848d0b160a74e834ed918e83653d7342bf", + "sha256": "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48", + "fetcher": "github", + "repo": "kanru/uuidgen-el", + "unstable": { + "version": [ + 20140918, + 2301 + ], + "commit": "7eb96415484c3854a3f383d1a3e10b87ae674e22", + "sha256": "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw" + } + }, + { + "ename": "v2ex-mode", + "commit": "b27b7d777415aa350c8c30822e239b9a4c02e77d", + "sha256": "04frd6jbnf9g7ak2fdbik9iji7b0903cpbg1hx7rai1853af7gh1", + "fetcher": "github", + "repo": "aborn/v2ex-mode", + "unstable": { + "version": [ + 20160720, + 345 + ], + "deps": [ + "cl-lib", + "let-alist", + "request" + ], + "commit": "b7d19bb594b43ea3824a6f215dd1e5d1d4c0e8ad", + "sha256": "0hhj5xfm7mp3ajrbj9ai5p2d9akaqkj89rmqmg1vpyfp3x2f4h2k" + }, + "stable": { + "version": [ + 0, + 2 + ], + "deps": [ + "cl-lib", + "let-alist", + "request" + ], + "commit": "7a59ac3be2b08d873ec271ec7a3d5ace309c1407", + "sha256": "0f4y0s0zhqlb3n56yqp2w1krhrar5l4axl7dfn595hmwhhgxvvra" + } + }, + { + "ename": "vagrant", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf", + "fetcher": "github", + "repo": "ottbot/vagrant.el", + "unstable": { + "version": [ + 20170301, + 2206 + ], + "commit": "636ce2f9af32ea199170335a9cf1201b64873440", + "sha256": "06zws69z327p00jw3zaf67niji2d4j339xmhbsrwbcr4w65dmz94" + }, + "stable": { + "version": [ + 0, + 6, + 1 + ], + "commit": "ef3022d290ee26597e21b17ab87acbd8d4f1071f", + "sha256": "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s" + } + }, + { + "ename": "vagrant-tramp", + "commit": "baea9f16e245aec3f62e55471358c7208f61372d", + "sha256": "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5", + "fetcher": "github", + "repo": "dougm/vagrant-tramp", + "unstable": { + "version": [ + 20190125, + 1859 + ], + "deps": [ + "dash" + ], + "commit": "77256deca35bb797cbba499837f3658d1a17d2e3", + "sha256": "0j7ff9b3ic4a6kzn7k0c52knlgangql7sjsxahwvym6w18r52d5a" + } + }, + { + "ename": "vala-mode", + "commit": "cea26fa67a524b7c14be2952cfbd4f657431415f", + "sha256": "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p", + "fetcher": "github", + "repo": "emacsorphanage/vala-mode", + "unstable": { + "version": [ + 20150324, + 2225 + ], + "commit": "fb2871a4492d75d03d72e60474919ab89adb267b", + "sha256": "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44" + } + }, + { + "ename": "vala-snippets", + "commit": "70f130c5751f47c1ead5f8915680e817e0239a2a", + "sha256": "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy", + "fetcher": "github", + "repo": "gopar/vala-snippets", + "unstable": { + "version": [ + 20150429, + 352 + ], + "deps": [ + "yasnippet" + ], + "commit": "671439501060449bd100b9fffd524a86064fbfbb", + "sha256": "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq" + } + }, + { + "ename": "vale-mode", + "commit": "9c8cec6c01c031e6583106e7230e8162d0a77d9a", + "sha256": "0rhq14zlhswczzprzh3vc3cnan3d6q1d4ri3rjw4ggmvb63wr2kw", + "fetcher": "github", + "repo": "jaybosamiya/vale-mode.el", + "unstable": { + "version": [ + 20190725, + 125 + ], + "commit": "48bbc4b4ee5bf0b1b73e52705c0fbc112b255cd0", + "sha256": "1p0b7jh572wfz7cmzfbd70pr7i59xbbi15jw6rvzgnr558v3fmlg" + } + }, + { + "ename": "vbasense", + "commit": "8e7dd1e985d55149f48e4f93a31fb28ec01a4add", + "sha256": "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n", + "fetcher": "github", + "repo": "aki2o/emacs-vbasense", + "unstable": { + "version": [ + 20140221, + 2353 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "auto-complete", + "log4e", + "yaxception" + ], + "commit": "8c61a492d7c15218ae1a96e2aebfe6f78bfff6db", + "sha256": "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn" + } + }, + { + "ename": "vc-auto-commit", + "commit": "770ab1e99fe63789726fc6c8c5d7e9a0287bc5fa", + "sha256": "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk", + "fetcher": "github", + "repo": "thisirs/vc-auto-commit", + "unstable": { + "version": [ + 20170107, + 1333 + ], + "commit": "446f664f4ec835532f4f18ba18b5fb731f6030aa", + "sha256": "18jjl656ps75p7n3hf16mcjrgiagnjvb8m8dl4i261cbnq98qmav" + } + }, + { + "ename": "vc-check-status", + "commit": "0387e08dd7ed69b291e896d85bd975c4f5dcbd09", + "sha256": "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi", + "fetcher": "github", + "repo": "thisirs/vc-check-status", + "unstable": { + "version": [ + 20170107, + 1334 + ], + "commit": "37734beb16bfd8633ea328059bf9a47eed826d5c", + "sha256": "0mspksr2i6hkb7bhs38ydmn0d2mn7g1hjva60paq86kl7k76f7ra" + } + }, + { + "ename": "vc-darcs", + "commit": "54f89c50ae45365e86bdadcf67b2411c0f4c5603", + "sha256": "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m", + "fetcher": "github", + "repo": "velkyel/vc-darcs", + "unstable": { + "version": [ + 20170905, + 320 + ], + "commit": "390fb1ebdda1ffac45b9be02626dde3b6d95ac11", + "sha256": "1fcqkavc7hlbhswx5nnaqhash42cjsbr72ijznx5cplr582g3mfq" + } + }, + { + "ename": "vc-fossil", + "commit": "31c5ee4b625b90c1af66d7d11a25af8e1aa307b1", + "sha256": "11ps2wrkjrjm1d984mf80wwj1hzskw5qrn0nv7md21lp75kxsvxb", + "fetcher": "github", + "repo": "venks1/emacs-fossil", + "unstable": { + "version": [ + 20180215, + 1635 + ], + "commit": "7c5af95181213db38f81f5f9586f3334301a3ea0", + "sha256": "1c18ywvs0l5w7ip2igksjy48awzas8mph7plpvp1v8c67a3a3m2m" + } + }, + { + "ename": "vc-hgcmd", + "commit": "111142342ab81dcaa88a831ba620be499a334c3f", + "sha256": "11p8r94s72x47nkxlarxwy33im167jpjas8b9i8dkrz2iggwn5xk", + "fetcher": "github", + "repo": "muffinmad/emacs-vc-hgcmd", + "unstable": { + "version": [ + 20190701, + 1115 + ], + "commit": "dc7d629cec310e97ea195da1592a35f69aa66c66", + "sha256": "14c3hlzabiy113vzmlynd9fqhpakhmbgkjrx9i6c5mwf32hmw8p2" + }, + "stable": { + "version": [ + 1, + 6, + 9 + ], + "commit": "dc7d629cec310e97ea195da1592a35f69aa66c66", + "sha256": "14c3hlzabiy113vzmlynd9fqhpakhmbgkjrx9i6c5mwf32hmw8p2" + } + }, + { + "ename": "vc-msg", + "commit": "59ad4e80b49c78decd7b5794565313f65550384e", + "sha256": "16pgx8pg3djhkmhf1fihgjk7c6nb2nsqj58888bwg7385mlwc7g9", + "fetcher": "github", + "repo": "redguardtoo/vc-msg", + "unstable": { + "version": [ + 20180605, + 58 + ], + "deps": [ + "popup" + ], + "commit": "ffd8db482cbd9fb63dace0e5ddcc7207a9c99f5e", + "sha256": "1zq01k50d958prl8aaz8n2sv541lrq3s1dn8vnfal4drn3iffgv9" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "popup" + ], + "commit": "091f3cf15ecb35bb4dc5de1ef7229f78735d9aee", + "sha256": "0s129fzxhrr8pp4h0hkmxapnman67r0bdmbj8ys6r361na7h16hf" + } + }, + { + "ename": "vc-osc", + "commit": "70a1fa5fdfdfa9ec5607524be62eb44fe82e91b0", + "sha256": "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz", + "fetcher": "github", + "repo": "aspiers/vc-osc", + "unstable": { + "version": [ + 20190402, + 2349 + ], + "commit": "bf5a515ed85f7d7cdfe66ed5bf4ef7554f8561e5", + "sha256": "1jk09vspns327j9mfy32dd71n3nfynn17h2njc4sczrgd4yzc2wd" + } + }, + { + "ename": "vcomp", + "commit": "561442ea9f75ebe8444db1a0c40f7756fcbca482", + "sha256": "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0", + "fetcher": "github", + "repo": "tarsius/vcomp", + "unstable": { + "version": [ + 20190128, + 20 + ], + "commit": "f839b3b3257a564b19d7f9557dc8bcbbe0b95842", + "sha256": "1xd42bdi6x89gc9xjrwvzzdaanv9vwlbbjwp25bs1nsd53k5nvak" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f839b3b3257a564b19d7f9557dc8bcbbe0b95842", + "sha256": "1xd42bdi6x89gc9xjrwvzzdaanv9vwlbbjwp25bs1nsd53k5nvak" + } + }, + { + "ename": "vdiff", + "commit": "e90f19c8fa4b0d267d269b76f117995e812e899c", + "sha256": "11gw0l63fssbiyhngqb7ykrp7m1vy55wlf27ybhh2dkwh1cpkr4l", + "fetcher": "github", + "repo": "justbur/emacs-vdiff", + "unstable": { + "version": [ + 20190227, + 303 + ], + "deps": [ + "hydra" + ], + "commit": "09e15fc932bfd2febe1d4a65780a532394562b07", + "sha256": "1gvqi5l4zs872nn4pmj603aza09d81qad2rgijzv268lif8z34db" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "hydra" + ], + "commit": "f55acdbfcbb14e463d0850cfd041614c7002669e", + "sha256": "0dlhisvnlzkzlilg456lxi0m5wh4a8681n142684hmk8vaw3wx2k" + } + }, + { + "ename": "vdiff-magit", + "commit": "2159275fabde8ec8b297f6635546b1314d519b8b", + "sha256": "1vjc1r5xfdg9bmscgppx1fps1w5bd0zpp6ab5z5dxlg2zx2vdldw", + "fetcher": "github", + "repo": "justbur/emacs-vdiff-magit", + "unstable": { + "version": [ + 20190304, + 1707 + ], + "deps": [ + "magit", + "transient", + "vdiff" + ], + "commit": "b100d126c69e5c26a61ae05aa1778bcc4302b597", + "sha256": "16cjmrzflf2i1w01973sl944xrfanakba8sb4dpwi79d92xp03xy" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "deps": [ + "magit", + "vdiff" + ], + "commit": "7e841dc7225300dd4d5560faad04e5c44cd8b267", + "sha256": "0800lnclv0kdkk2njddhsydsbifrwgg6w09mm4js7mqci1mr3gia" + } + }, + { + "ename": "vdirel", + "commit": "72b5ea3f4444c3de73d986a28e1d12bf47c40246", + "sha256": "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj", + "fetcher": "github", + "repo": "DamienCassou/vdirel", + "unstable": { + "version": [ + 20190430, + 624 + ], + "deps": [ + "helm", + "org-vcard", + "seq" + ], + "commit": "255496e6808e7a3da1b0afef873dc4920c2b117f", + "sha256": "0zq2lqj4s3n4japfmjm56yg120l1lk7d0h1jysdp8d4mzdb2m0p0" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "helm", + "org-vcard", + "seq" + ], + "commit": "4232676e93ca5ace8e51f6605bec223c3205beea", + "sha256": "0jdjg50f6my9952frl6asi8zk0i8b4hva26wm7pi8zk423pydr30" + } + }, + { + "ename": "vdm-comint", + "commit": "077f586e59fe3b6085e1f19b3c18b218de5d4046", + "sha256": "1r7jg7dkzfs4n230n0jk23w0ncqsiwkslf2gmjfzfqg8qklr9bhs", + "fetcher": "github", + "repo": "peterwvj/vdm-mode", + "unstable": { + "version": [ + 20181127, + 2023 + ], + "deps": [ + "vdm-mode" + ], + "commit": "89e7db6ee1a89b8c1f7ce36ce6800c32b5c4ba2d", + "sha256": "1vfqkfw39yg7379s6b28n8nyswv1jq7caljfbnyrndsag6z4j50k" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "vdm-mode" + ], + "commit": "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa", + "sha256": "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5" + } + }, + { + "ename": "vdm-mode", + "commit": "70a6c89d41235f7e8463a47400004a32b2979a5a", + "sha256": "1h72731vcsjqsbii1wbzpa114x09aqbkbnz5fg9fnjq9rybz6rn7", + "fetcher": "github", + "repo": "peterwvj/vdm-mode", + "unstable": { + "version": [ + 20190328, + 1408 + ], + "commit": "89e7db6ee1a89b8c1f7ce36ce6800c32b5c4ba2d", + "sha256": "1vfqkfw39yg7379s6b28n8nyswv1jq7caljfbnyrndsag6z4j50k" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "commit": "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa", + "sha256": "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5" + } + }, + { + "ename": "vdm-snippets", + "commit": "f246b9dcf7915a845b9e2cd44cc1a0833b412c8f", + "sha256": "1js1hjs2r9bbqm50bl389y87xn68f30xrh2z6nd5kz2hdgkm6lhj", + "fetcher": "github", + "repo": "peterwvj/vdm-mode", + "unstable": { + "version": [ + 20190313, + 1122 + ], + "deps": [ + "yasnippet" + ], + "commit": "89e7db6ee1a89b8c1f7ce36ce6800c32b5c4ba2d", + "sha256": "1vfqkfw39yg7379s6b28n8nyswv1jq7caljfbnyrndsag6z4j50k" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "deps": [ + "yasnippet" + ], + "commit": "e131edb0d35de28bd47d6128dd70d9a6fc46e0fa", + "sha256": "090a0imk7dr6vqq4lf806pvajqc499x2gmi0k7rgc1696rbyzhb5" + } + }, + { + "ename": "vector-utils", + "commit": "081aa3e1d50c2c9e5a9b9ce0716258a93279f605", + "sha256": "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n", + "fetcher": "github", + "repo": "rolandwalker/vector-utils", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "c38ca1c6a23b2b51a6ac36c2c64e50e21cbe9d21", + "sha256": "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "2bd63c8ade1a2b6f8aac403c5f25adda2215a685", + "sha256": "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk" + } + }, + { + "ename": "veri-kompass", + "commit": "18c3a69bec780e3e7456b310db6f0eec2a35c753", + "sha256": "103x4003qj0z9ki6xz4hymamyhipzfxz94x4gszk3k2qnvkjkxnj", + "fetcher": "gitlab", + "repo": "koral/veri-kompass", + "unstable": { + "version": [ + 20181110, + 933 + ], + "deps": [ + "cl-lib", + "org" + ], + "commit": "8638eea5a14f9834c001c943e7c22d8d90abc455", + "sha256": "1iy1qdh7bf3g7j3ipnpw96qgw4f4y4x8l2rg2kz651lhail3dk8i" + } + }, + { + "ename": "verify-url", + "commit": "2070f7b1901c83e59468f6498bd5f79077ccb79d", + "sha256": "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2", + "fetcher": "github", + "repo": "lujun9972/verify-url", + "unstable": { + "version": [ + 20160426, + 1228 + ], + "deps": [ + "cl-lib" + ], + "commit": "d6f3623cda8cd526a2d198619b137059cb1ba1ab", + "sha256": "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n" + } + }, + { + "ename": "vertica", + "commit": "f98a06b794ef0936db953f63679a63232295a849", + "sha256": "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng", + "fetcher": "github", + "repo": "r0man/vertica-el", + "unstable": { + "version": [ + 20131217, + 1511 + ], + "deps": [ + "sql" + ], + "commit": "3c9647b425c5c13c30bf0cba483646af18196588", + "sha256": "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j" + } + }, + { + "ename": "vertica-snippets", + "commit": "d3c8cb5c0fdbb6820a08091d8936dd53a3c43c56", + "sha256": "0044qcf6dyxp2h14ij6w19zs7ikx9xalfrz6jqbl8sy35wcihmhn", + "fetcher": "github", + "repo": "baron42bba/vertica-snippets", + "unstable": { + "version": [ + 20190705, + 949 + ], + "deps": [ + "yasnippet" + ], + "commit": "a7288bf5d55b554ea78c4b5fa1046d38d91ed2b0", + "sha256": "10jj3ipw65wazr46lwnrhj1q51b6scnn2m98yg105vcb8vssbszd" + } + }, + { + "ename": "vertigo", + "commit": "f1957e7fa03b6b8eb2f3250bd814d707bce3cfa3", + "sha256": "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83", + "fetcher": "github", + "repo": "noctuid/vertigo.el", + "unstable": { + "version": [ + 20180829, + 2230 + ], + "deps": [ + "dash" + ], + "commit": "6303d17270ea92290a6960890bca515274f1682b", + "sha256": "0570x63l1j75issnq23hrhhpisv2jm18fn5mspsvbs4xy2hy4h8i" + }, + "stable": { + "version": [ + 1, + 0 + ], + "deps": [ + "dash" + ], + "commit": "ebfa068d9e2fc39ba6d1744618c4e31dad6f629b", + "sha256": "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g" + } + }, + { + "ename": "vhdl-capf", + "commit": "6192f5777bc8be6ddc5523f92ab641ed3af1a504", + "sha256": "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km", + "fetcher": "github", + "repo": "sh-ow/vhdl-capf", + "unstable": { + "version": [ + 20160221, + 1734 + ], + "commit": "290abe217050f33532bc9ccb04f894123402f414", + "sha256": "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d" + } + }, + { + "ename": "vhdl-tools", + "commit": "69fe2f8fb98ac1af1d3185f62ae1c89e646cfebf", + "sha256": "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw", + "fetcher": "github", + "repo": "csantosb/vhdl-tools", + "unstable": { + "version": [ + 20190730, + 752 + ], + "deps": [ + "ggtags", + "helm-rg", + "outshine" + ], + "commit": "d0cdafadf2fdc5ae96e6d57628e98106a38afeb9", + "sha256": "1ljda898xg8dvmka9z8am3fwfwn8i87kzdd8j6g8kchisjx1abjn" + }, + "stable": { + "version": [ + 6, + 1 + ], + "deps": [ + "ggtags", + "helm-rg", + "outshine" + ], + "commit": "cf8de6a3160532e2ce0018ecd52f2aefd0199a65", + "sha256": "11hzd6hrxcm9ip2gz8jkay4g53l3yvgwkl212wrd6a8sad34rb1p" + } + }, + { + "ename": "vi-tilde-fringe", + "commit": "8b3359d57148f8205f8a863a21d92fe4912f31cc", + "sha256": "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp", + "fetcher": "github", + "repo": "syl20bnr/vi-tilde-fringe", + "unstable": { + "version": [ + 20141028, + 242 + ], + "commit": "f1597a8d54535bb1d84b442577b2024e6f910308", + "sha256": "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z" + } + }, + { + "ename": "viewer", + "commit": "f8e4328cae9b4759a75da0b26ea8b68821bc71af", + "sha256": "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1", + "fetcher": "github", + "repo": "rubikitch/viewer", + "unstable": { + "version": [ + 20170107, + 202 + ], + "commit": "6c8db025bf4021428f7f2c3ef9d74fb13f5d267a", + "sha256": "1sj4a9zwfv94m0ac503gan6hf9sl2658khab1fnj8szcq7hrdvq1" + } + }, + { + "ename": "viking-mode", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "12z9807ya0gsgx7h3zdvpx7jksjjrglz3qqyz65wj71sibjfry4m", + "fetcher": "github", + "repo": "TLINDEN/viking-mode", + "unstable": { + "version": [ + 20160705, + 2027 + ], + "commit": "c76aa265d13ad91d6890d242e142d05e31f0340b", + "sha256": "1944p3kbskzj4d9w9prbi7z59lrn087v3gphbhwjplz6mvwbl8g6" + } + }, + { + "ename": "vim-empty-lines-mode", + "commit": "e93a8dcd2ff159203288e71da6b8f28eab0d2006", + "sha256": "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb", + "fetcher": "github", + "repo": "jmickelin/vim-empty-lines-mode", + "unstable": { + "version": [ + 20150111, + 426 + ], + "commit": "d4a5034ca8ea0c962ad6e92c86c0fa2a74d2964b", + "sha256": "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz" + } + }, + { + "ename": "vim-region", + "commit": "23249b485ca8e66a21f858712f46aa76b8554f28", + "sha256": "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx", + "fetcher": "github", + "repo": "ongaeshi/emacs-vim-region", + "unstable": { + "version": [ + 20140329, + 1624 + ], + "deps": [ + "expand-region" + ], + "commit": "7c4a99ce3678fee40c83ab88e8ad075d2a935fdf", + "sha256": "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig" + }, + "stable": { + "version": [ + 0, + 3, + 0 + ], + "deps": [ + "expand-region" + ], + "commit": "e5359cc584a0cfa9270a76866a5eff7d3f44eb3d", + "sha256": "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9" + } + }, + { + "ename": "vimish-fold", + "commit": "b4862b0a3d43f073e645803cbbf11d973a4b51d5", + "sha256": "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3", + "fetcher": "github", + "repo": "mrkkrp/vimish-fold", + "unstable": { + "version": [ + 20190713, + 1333 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "863bef039672693566cfcfe1d0ad236d3af48fea", + "sha256": "0kr4rzfmydqcxsgzg88c3b8g5323dliirx1v01gdbinf868hlkh7" + }, + "stable": { + "version": [ + 0, + 2, + 3 + ], + "deps": [ + "cl-lib", + "f" + ], + "commit": "e631352fbf910f692807afe38a2b6a7882a403a8", + "sha256": "152w1wqxj7yzm3d12lknzz1aix4h8cb571sjns3m1s7azsr3vfbq" + } + }, + { + "ename": "vimrc-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "05zmr624qwsj9wqsmjlhjvjl1fc1qxz4vvbb3ljr5fbpxdjrbnpn", + "fetcher": "github", + "repo": "mcandre/vimrc-mode", + "unstable": { + "version": [ + 20181116, + 1919 + ], + "commit": "13bc150a870d5d4a95f1111e4740e2b22813c30e", + "sha256": "0026dqs3hwygk2k2xfra90w5sfnxrfj7l69jz7sq5glavbf340pk" + } + }, + { + "ename": "virtualenv", + "commit": "923e4fcf29423ad55b13132d53759bc436466ef9", + "sha256": "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl", + "fetcher": "github", + "repo": "aculich/virtualenv.el", + "unstable": { + "version": [ + 20140220, + 2301 + ], + "commit": "276c0f4d6493b402dc4d22ecdf17b2b072e911b3", + "sha256": "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q" + } + }, + { + "ename": "virtualenvwrapper", + "commit": "acc9b816796b9f142c53f90593952b43c962d2d8", + "sha256": "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i", + "fetcher": "github", + "repo": "porterjamesj/virtualenvwrapper.el", + "unstable": { + "version": [ + 20190223, + 1919 + ], + "deps": [ + "dash", + "s" + ], + "commit": "c3da41a3995c98dae2c751688655ea0cbe72493b", + "sha256": "0s5qnzb8ar3qp5fq69sa29x8xy917jbdi8xciqjl6dzk2a7nvqsv" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "dash", + "s" + ], + "commit": "f753e5ad91c2ff5d11bec424aa8cec141efa6925", + "sha256": "062pbnplb3w9h64qsj71d9fvgicp1x63n05mgvgymjh2rnx7py0d" + } + }, + { + "ename": "visible-mark", + "commit": "76ac7178ee5381e08ae881f3fc6061106eeb1c1d", + "sha256": "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80", + "fetcher": "gitlab", + "repo": "iankelling/visible-mark", + "unstable": { + "version": [ + 20150624, + 450 + ], + "commit": "a584db9bc88953b23a9648b3e14ade90767207f8", + "sha256": "1rsi9irv9i03627cmfaqz03f9cvpm7555ga8n2gs622lzp6bb3jf" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "c1852e13b6b61982738b56977a452ec9026faf1b", + "sha256": "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv" + } + }, + { + "ename": "visual-ascii-mode", + "commit": "21df748a3f383d62c921e184e2a4c9ae4118ca98", + "sha256": "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g", + "fetcher": "github", + "repo": "Dewdrops/visual-ascii-mode", + "unstable": { + "version": [ + 20150129, + 1046 + ], + "commit": "99285a099a17472ddd9f1b4f74e9d092dd8c5947", + "sha256": "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n" + } + }, + { + "ename": "visual-fill-column", + "commit": "c7628c805840c4687686d0b9dc5007342864721e", + "sha256": "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5", + "fetcher": "github", + "repo": "joostkremers/visual-fill-column", + "unstable": { + "version": [ + 20190422, + 2154 + ], + "commit": "772d4b25ba19f57409cd03524be0f5bfdc2e8da1", + "sha256": "1k4a7nqc2zxwxrcrryap2jk6bwc6ln3j6yzgkg5yyf2imsbil4br" + }, + "stable": { + "version": [ + 1, + 11 + ], + "commit": "57c2a72d46900117ea92e0a01b97e19481800503", + "sha256": "086zfx4lh168rg50ndg8qzdh8vzc6sgfii7qzcn4mg4wa74hnp9y" + } + }, + { + "ename": "visual-regexp", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z", + "fetcher": "github", + "repo": "benma/visual-regexp.el", + "unstable": { + "version": [ + 20190414, + 814 + ], + "deps": [ + "cl-lib" + ], + "commit": "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca", + "sha256": "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "deps": [ + "cl-lib" + ], + "commit": "3e3ed81a3cbadef1f1f4cb16f9112a58641d70ca", + "sha256": "12p3rlhdphwmx1kxsjzcl2wj3i6qgpvw8iwhg1whs6yqgaxivixd" + } + }, + { + "ename": "visual-regexp-steroids", + "commit": "7f105ebce741956b7becc86e4bdfcafecf59af74", + "sha256": "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr", + "fetcher": "github", + "repo": "benma/visual-regexp-steroids.el", + "unstable": { + "version": [ + 20170222, + 253 + ], + "deps": [ + "visual-regexp" + ], + "commit": "a6420b25ec0fbba43bf57875827092e1196d8a9e", + "sha256": "1isqa4ck6pm4ykcrkr0g1qj8664jkpcsrq0f8dlb0sksns2dqkwj" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "visual-regexp" + ], + "commit": "a6420b25ec0fbba43bf57875827092e1196d8a9e", + "sha256": "1isqa4ck6pm4ykcrkr0g1qj8664jkpcsrq0f8dlb0sksns2dqkwj" + } + }, + { + "ename": "vlf", + "commit": "9116b11eb513dd9e1dc9542d274dd60f183b24c4", + "sha256": "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8", + "fetcher": "github", + "repo": "m00natic/vlfi", + "unstable": { + "version": [ + 20180201, + 2254 + ], + "commit": "31b292dc85a374fb343789e217015683bfbdf5f1", + "sha256": "18ll47if9ajv0jj2aps8592bj7xqhxy74sbsqn07x9ywinxxi9mn" + }, + "stable": { + "version": [ + 1, + 7, + 1 + ], + "commit": "a01e9ed416cd81ccddebebbf05d4ca80060b07dc", + "sha256": "0ziz08ylhkqwj2rp6h1z1yi309f6791b9r91nvr255l2331481pm" + } + }, + { + "ename": "vmd-mode", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1xjyl2xh3vig2rzjqm1a4h2ridygbanmal78s4yc32hacy0lfyrx", + "fetcher": "github", + "repo": "blak3mill3r/vmd-mode", + "unstable": { + "version": [ + 20180223, + 1356 + ], + "commit": "24e38a20951dfad6e3e985c7cc6286c1e271da5f", + "sha256": "00anpbnf0h6iikhpqz4mss507j41xwvv27svw41kpgcwsnrmrqwm" + } + }, + { + "ename": "voca-builder", + "commit": "42a930e024ce525b2890ccd5a1eb4844859faafd", + "sha256": "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y", + "fetcher": "github", + "repo": "yitang/voca-builder", + "unstable": { + "version": [ + 20161101, + 1645 + ], + "deps": [ + "popup" + ], + "commit": "51573beec8cd8308477b0faf453aad93e17f57c5", + "sha256": "1gd7zqmyn389dfyx1yll1bw5f8kjib87k33s9hxsbx0db8vas9q6" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "224402532da28e45edd398fda61ecbddb97d22d3", + "sha256": "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1" + } + }, + { + "ename": "volatile-highlights", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d", + "fetcher": "github", + "repo": "k-talo/volatile-highlights.el", + "unstable": { + "version": [ + 20160612, + 155 + ], + "commit": "9a20091f0ce7fc0a6b3e641a6a46d5f3ac4d8392", + "sha256": "1dsa6769lphyyv7yg92vkkpk395w52q4m7hdn8xy7s6lh5c6a955" + }, + "stable": { + "version": [ + 1, + 11 + ], + "commit": "fb2abc2d4d4051a9a6b7c8de2fe7564161f01f24", + "sha256": "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf" + } + }, + { + "ename": "volume", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1gm2zaf6qwbdhayaj153882qm21cl4qdyjkdnqrlssb2mcgf017w", + "fetcher": "github", + "repo": "dbrock/volume.el", + "unstable": { + "version": [ + 20150718, + 2009 + ], + "commit": "ecc1550b3c8b501d37e0f0116b54b535d15f90f6", + "sha256": "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7" + } + }, + { + "ename": "vscode-icon", + "commit": "90a07c96a9223a9ad477cbea895ba522523c5be4", + "sha256": "0rhsqzgxl7hs52kniyi8yn4f953g7dgx49j4lzf2yr33ydxiw9d3", + "fetcher": "github", + "repo": "jojojames/vscode-icon-emacs", + "unstable": { + "version": [ + 20190610, + 17 + ], + "commit": "14199fd1dbe0ca1da85f9917faee9fe078cb75ea", + "sha256": "13yjjg68a55sbk6hj4nfvka6w8ahpws0s2bf7c9idqrd6cvbfy62" + } + }, + { + "ename": "vterm", + "commit": "91a71615c0a32565e455ac81d9bc90443aa8caf9", + "sha256": "0nn15pz2ys4bmpyks190x22f8s2fcr793f95h0c2m67cfjmnd478", + "fetcher": "github", + "repo": "akermu/emacs-libvterm", + "unstable": { + "version": [ + 20190731, + 1429 + ], + "commit": "ee07b5a1e798a8b45c242de2bcdabc009ff055be", + "sha256": "1xb37vl54imfnlncj2zvyy32dnwwrxkx726h1c49dnpik0hwf5lf" + } + }, + { + "ename": "vterm-toggle", + "commit": "aecfc82727d408eb3120f76ace1ed7207ff5e5f1", + "sha256": "1ajg631d41j8jgdjh90z27yfk2783zacfd0531bqd5j73ijcdbb3", + "fetcher": "github", + "repo": "jixiuf/vterm-toggle", + "unstable": { + "version": [ + 20190731, + 1623 + ], + "deps": [ + "vterm" + ], + "commit": "1850981b8c6303089ac60d9aa9a316cac65c40b6", + "sha256": "1c763jnxsf27s238ga35ksxw7yd8ria355g0xm9mn4l4hll0wcbs" + } + }, + { + "ename": "vue-html-mode", + "commit": "48588b163ab76204b9054340071e758045480e19", + "sha256": "1f4pjfp4298jkvhacxygddg557hhyivgnm5x3yhjipfv6fjkgl2s", + "fetcher": "github", + "repo": "AdamNiederer/vue-html-mode", + "unstable": { + "version": [ + 20180428, + 2035 + ], + "commit": "1514939804bad558584feeb6298b38d22eadf64e", + "sha256": "0xfdm66b6wp7h233hm83bihchmiqqq51aw2zshb8aa4qnskgs677" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "361a9fa117f044c3072dc5a7344ff7be31725849", + "sha256": "1z1pphxli8fcahw9fhmxls1v9nyd34pz51jwwa6g468zvdmcjb77" + } + }, + { + "ename": "vue-mode", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "0npzn7pycqfdakv4plkigq8aw1bqhz3y03y3ypx21q5a186ds0g5", + "fetcher": "github", + "repo": "AdamNiederer/vue-mode", + "unstable": { + "version": [ + 20190415, + 231 + ], + "deps": [ + "edit-indirect", + "mmm-mode", + "ssass-mode", + "vue-html-mode" + ], + "commit": "031edd1f97db6e7d8d6c295c0e6d58dd128b9e71", + "sha256": "047l5nxw86dvls8an65mmqcy673n37pyli7s0d52yi07jk0lw1yx" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "edit-indirect", + "mmm-mode", + "ssass-mode", + "vue-html-mode" + ], + "commit": "48ff04657613f39848d0e66e9dd367aa2dc19e89", + "sha256": "014vx8jkscj1c614v78dqlqlg7n0zc3c2db3dqvxvaz417i5mxq0" + } + }, + { + "ename": "vyper-mode", + "commit": "492d42d60bc188a567c5e438b838a275a124c699", + "sha256": "0mf1w4mw0ijmd9zxip1df85cp15fbvv9j5dqjmb8lfm4m43wpd96", + "fetcher": "github", + "repo": "ralexstokes/vyper-mode", + "unstable": { + "version": [ + 20180707, + 1935 + ], + "commit": "323dfddfc38f0b11697e9ebaf04d1b53297e54e5", + "sha256": "1vxqgc9c1lj61ipaw05xfby3nl7wn3kp5ga6kpr17v0jlm0667s5" + } + }, + { + "ename": "w32-browser", + "commit": "ae489be43b1aee93614e40f492ebdf0b98a3fbc1", + "sha256": "16sp0gn4yv7iaa55i2kvfsqw3610gr3x31l9lqa14r9xmfhda1rn", + "fetcher": "github", + "repo": "emacsorphanage/w32-browser", + "unstable": { + "version": [ + 20170101, + 1954 + ], + "commit": "e5c60eafd8f8d3546a0fa295ad5af2414d36b4e6", + "sha256": "18hcr9l5id2xdin20wrg9sdmwfad7qk78iryyg24ci9lvl53m02x" + }, + "stable": { + "version": [ + 235 + ], + "commit": "a8126b60bf18193e8e4ec6f699b5694b6f71a062", + "sha256": "13wjvzsas7in8f09sc2qj17dz25wizg1l0r2krgp1zymy92p8f97" + } + }, + { + "ename": "w3m", + "commit": "85c53c48caab0845101c487e4fee7e2cda15f706", + "sha256": "1fnib1y79g50jz9wll63j0xf2awgkrlk6hwx0w6nzg0xsbfbkdvk", + "fetcher": "github", + "repo": "emacs-w3m/emacs-w3m", + "unstable": { + "version": [ + 20190801, + 156 + ], + "commit": "216aed66e2d5517365da9c16b2d1d2aa9876c871", + "sha256": "0bkdv31di311nrlk0lqrz055n8mnwnrbjs79bq7p9qd37k5nbjs0" + } + }, + { + "ename": "wacspace", + "commit": "58e5ff4c5853c5350d0534894ddb358daa83cee9", + "sha256": "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl", + "fetcher": "github", + "repo": "shosti/wacspace.el", + "unstable": { + "version": [ + 20180311, + 2350 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "54d19aab6fd2bc5945b7ffc58104e695064927e2", + "sha256": "1nfx1qsl2gxjqbbc5xsr8f3xz2qyb4wnz3634k3hglb1jpa78j3n" + }, + "stable": { + "version": [ + 0, + 4, + 2 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "b951995c204ff23699d2bda515a96221147a725d", + "sha256": "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd" + } + }, + { + "ename": "waf-mode", + "commit": "44c1aa152ba47113a91878df78d9b56eead98744", + "sha256": "16rplrs599a67dcxcdc33zb9bqivv4a2mvrshvyip1lp75f36r5h", + "fetcher": "git", + "url": "https://bitbucket.org/dvalchuk/waf-mode", + "unstable": { + "version": [ + 20170403, + 1940 + ], + "commit": "20c75eabd1d54fbce8e0dbef785c9fb68577ee4f", + "sha256": "09jqxbkkprsrcj7gj9hi8ll7d17425lyjmdmqf12ffqv5pz6aq87" + } + }, + { + "ename": "waher-theme", + "commit": "c734ba401d7d9255e0934c31ca5269866af035db", + "sha256": "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5", + "fetcher": "github", + "repo": "emacsfodder/emacs-waher-theme", + "unstable": { + "version": [ + 20141115, + 1230 + ], + "commit": "60d31519fcfd8e797723d47961b255ae2f2e2c0a", + "sha256": "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc" + } + }, + { + "ename": "wakatime-mode", + "commit": "a46036a0e53afbebacafd3bc9545c99af79ccfcc", + "sha256": "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8", + "fetcher": "github", + "repo": "wakatime/wakatime-mode", + "unstable": { + "version": [ + 20180920, + 702 + ], + "commit": "2531cb58287770883ba534d20b3288955c4d6ef3", + "sha256": "12wa845lwvwg38801mk880izfhjs50ssy5alj1743c2bz7ig5grk" + } + }, + { + "ename": "wakib-keys", + "commit": "b8ef5ae0dcb92e1cf019be3d53ab9b47d89f45bd", + "sha256": "1cgd15zwl15k2bxy3by17pphh6x1z8lanwkfjy4qyp5sxkjvw1cl", + "fetcher": "github", + "repo": "darkstego/wakib-keys", + "unstable": { + "version": [ + 20180818, + 1829 + ], + "commit": "abf7e18bf85c09963537156a447f0d01ff8d6c1b", + "sha256": "0icxgmyw68m19yqp6446rilfyv25xrm8ih44vg10nkdlk8m5kh9l" + } + }, + { + "ename": "walkclj", + "commit": "44472b35938fe70d4cb3d15397495fe321fcd464", + "sha256": "0m971dlazildhgj8jqg4x679i6s6p80mbpri7l24ynxk45wix22m", + "fetcher": "github", + "repo": "plexus/walkclj", + "unstable": { + "version": [ + 20180718, + 900 + ], + "deps": [ + "parseclj", + "treepy" + ], + "commit": "2e54fa813b11d1a87c890cdf117f30165a193024", + "sha256": "0bgvniw3ibcjsmzwrndg6pxwbpnpnxsb8ijs2gxg5kbm1hqqly32" + } + }, + { + "ename": "wand", + "commit": "38be840bbb32094b753ec169b717a70817006655", + "sha256": "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l", + "fetcher": "github", + "repo": "cmpitg/wand", + "unstable": { + "version": [ + 20190626, + 1533 + ], + "deps": [ + "dash", + "s" + ], + "commit": "0d5f6ac7515b8be134868543d97ba715b5a4ae66", + "sha256": "1hzq3gfr3m4g8gwcqijxb0jg2gzm336pxda38kf45274d3ncgvxy" + } + }, + { + "ename": "wandbox", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz", + "fetcher": "github", + "repo": "kosh04/emacs-wandbox", + "unstable": { + "version": [ + 20170603, + 1231 + ], + "deps": [ + "request", + "s" + ], + "commit": "e002fe41f2cd9b4ce2b1dc80b83301176e9117f1", + "sha256": "0fnbj3k21lisgs94pf8z13cdymmclgpn994xq3xly4gq6l8k0an5" + }, + "stable": { + "version": [ + 0, + 6, + 4 + ], + "deps": [ + "request", + "s" + ], + "commit": "e002fe41f2cd9b4ce2b1dc80b83301176e9117f1", + "sha256": "0fnbj3k21lisgs94pf8z13cdymmclgpn994xq3xly4gq6l8k0an5" + } + }, + { + "ename": "wanderlust", + "commit": "426172b72026d1adeb1bf3fcc6b0407875047333", + "sha256": "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9", + "fetcher": "github", + "repo": "wanderlust/wanderlust", + "unstable": { + "version": [ + 20190725, + 823 + ], + "deps": [ + "semi" + ], + "commit": "3a64923f40e1b274f4bff39e28c1eb8173b47541", + "sha256": "17y09vz5d3d1fs58pbz96w4dp0n5xkbdzj55f1ng5wy5gkmjzpd7" + } + }, + { + "ename": "warm-night-theme", + "commit": "312e3298d51b8ed72028df34dbd7620cdd03d8dd", + "sha256": "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29", + "fetcher": "github", + "repo": "mswift42/warm-night-theme", + "unstable": { + "version": [ + 20161101, + 1428 + ], + "commit": "020f084d23409b5035150508ba6e57c2509edd64", + "sha256": "1jmjyx06p0cvqi1vlg5px2g965q9pgi3j61msxjf5skzw53vlc88" + } + }, + { + "ename": "watch-buffer", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "05f58kg05kfl4srwwjaf7w9jml50yx6bn4x8m1npswp882dsjyh9", + "fetcher": "github", + "repo": "mjsteger/watch-buffer", + "unstable": { + "version": [ + 20120331, + 2044 + ], + "commit": "761fd7252e6d7bf5148283c2a7ee935f087d9427", + "sha256": "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2" + } + }, + { + "ename": "wavefront-obj-mode", + "commit": "d48e4fdc6c7079a1ca70c1e879473a98c11bbe6c", + "sha256": "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk", + "fetcher": "github", + "repo": "abend/wavefront-obj-mode", + "unstable": { + "version": [ + 20170808, + 1716 + ], + "commit": "34027915de6496460d8e68b5991dd24d47d54859", + "sha256": "0yj4wb5sdsbh3gp0sh2ajrrn6s8vg492809g4gxkxp30jhr6xc9q" + } + }, + { + "ename": "wc-goal-mode", + "commit": "6f003b6d6bc91e6f9e510de8f5f5f9189d1c7334", + "sha256": "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419", + "fetcher": "github", + "repo": "bnbeckwith/wc-goal-mode", + "unstable": { + "version": [ + 20140829, + 1359 + ], + "commit": "bf21ab9c5a449bcc20dd207a4915dcec218d2699", + "sha256": "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc" + }, + "stable": { + "version": [ + 2, + 1 + ], + "commit": "a8aa227b1a692dd6399855add84b5e37f6c5d9cb", + "sha256": "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w" + } + }, + { + "ename": "wc-mode", + "commit": "0fda2b54a0ff0b6fc3bd6d20cfcbbf63cae5380f", + "sha256": "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6", + "fetcher": "github", + "repo": "bnbeckwith/wc-mode", + "unstable": { + "version": [ + 20170127, + 429 + ], + "commit": "f218f42709a651b34d6c1ddd98856f44648ef707", + "sha256": "0h79kf37pns92w4zsgazwhg087vkjvnhk9p1npll5ka87zbknndm" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "122f90bd1d422a84cc50acabd350d44d39ddeb69", + "sha256": "0pjlxv46zzqdq6q131jb306vqlg4sfqls1x8vag7mmfw462hafqp" + } + }, + { + "ename": "wcheck-mode", + "commit": "5d10b59f568fdedf248c2e8eaa06c4a74032ca56", + "sha256": "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k", + "fetcher": "github", + "repo": "tlikonen/wcheck-mode", + "unstable": { + "version": [ + 20190626, + 1839 + ], + "commit": "271198bca70c05b4591c836d3c670b72cdfabe9c", + "sha256": "19wypzzqfy0xbcbf4gz2c1c1mapp6s68rk0crv71vvjq6dmbq5yz" + }, + "stable": { + "version": [ + 2019, + 6, + 17 + ], + "commit": "c50e1f565802816a67852213dc31532290704412", + "sha256": "18ri9y23fd736d49sa1027k4lh0saw0zyiwds50jk6j9w4rvlzy9" + } + }, + { + "ename": "wdl-mode", + "commit": "8cf1f20913d765ae36ecc2c9a69470ff51124e56", + "sha256": "1zhrs0cdsr8mxh9zn8cy6inzxcygk0lgsyw1d190253v1kk6072i", + "fetcher": "github", + "repo": "zhanxw/wdl-mode", + "unstable": { + "version": [ + 20180831, + 1946 + ], + "commit": "cef86e5afc136ae5ad9324cd6e6d6f860b889bcf", + "sha256": "0j7sv3dcpq2fvcip9834v6k8q1d8bpnbxnvz1g691lmc58z1a86a" + } + }, + { + "ename": "weather-metno", + "commit": "75beac314565b9becb701ddd9bc85660e268c3ae", + "sha256": "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6", + "fetcher": "github", + "repo": "ruediger/weather-metno-el", + "unstable": { + "version": [ + 20150901, + 107 + ], + "deps": [ + "cl-lib" + ], + "commit": "bfc7137095e0ee71aad70ac46f2af677f3c051b6", + "sha256": "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "b59680c1ab908b32513954034ba894dfb8564dd8", + "sha256": "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z" + } + }, + { + "ename": "web", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "141idn49b7x7llz249zbg2yq8snjxpmlpchsd3n1axlrbmx6pfpz", + "fetcher": "github", + "repo": "nicferrier/emacs-web", + "unstable": { + "version": [ + 20141231, + 2001 + ], + "deps": [ + "dash", + "s" + ], + "commit": "483188dac4bc6b409b985c9dae45f3324a425efd", + "sha256": "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5" + } + }, + { + "ename": "web-beautify", + "commit": "0d528d3e20b1656dff40860cac0e0fa9dc1a3e87", + "sha256": "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f", + "fetcher": "github", + "repo": "yasuyk/web-beautify", + "unstable": { + "version": [ + 20161115, + 2247 + ], + "commit": "e1b45321d8c11b404b12c8e55afe55eaa7c84ee9", + "sha256": "03b5pj58m00lkazyvvasa4qndrkh2kjzv2y7qhxljfg5mngyg3zg" + }, + "stable": { + "version": [ + 0, + 3, + 2 + ], + "commit": "aa95055224c24f38736716809fec487cd817c38d", + "sha256": "0vms7zz3ym53wf1zdrkbf2ky2xjr1v134ngsd0jr8azyi8siw84d" + } + }, + { + "ename": "web-completion-data", + "commit": "604f155a3ce7e5375dcf8b9c149c5af403ef48bd", + "sha256": "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9", + "fetcher": "github", + "repo": "osv/web-completion-data", + "unstable": { + "version": [ + 20160318, + 848 + ], + "commit": "c272c94e8a71b779c29653a532f619acad433a4f", + "sha256": "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm" + }, + "stable": { + "version": [ + 0, + 2 + ], + "commit": "c272c94e8a71b779c29653a532f619acad433a4f", + "sha256": "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm" + } + }, + { + "ename": "web-mode", + "commit": "6f0565555eaa356141422c5175d6cca4e9eb5c00", + "sha256": "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i", + "fetcher": "github", + "repo": "fxbois/web-mode", + "unstable": { + "version": [ + 20190625, + 1951 + ], + "commit": "a723d3ecd3606d1c1948871f46fc8c8d7f879fe4", + "sha256": "1vsm95v47xk63gxg08w8bxlg91l2yqbgqwgaa5706x65q0rzv0xm" + }, + "stable": { + "version": [ + 16 + ], + "commit": "3ff506aae50a47b277f2b95ff7b7a7c596664e6a", + "sha256": "17dw6a8d0p304f2sa4f9zwd8r48w2wbkc3fvbmxwlg4w12h7cwf0" + } + }, + { + "ename": "web-mode-edit-element", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1kcycsjjv1bzfn93aq3cdh5d913izrr8cdxmknbyriyipsqryh3l", + "fetcher": "github", + "repo": "jtkDvlp/web-mode-edit-element", + "unstable": { + "version": [ + 20190531, + 852 + ], + "deps": [ + "web-mode" + ], + "commit": "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa", + "sha256": "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg" + }, + "stable": { + "version": [ + 2, + 3 + ], + "deps": [ + "web-mode" + ], + "commit": "ad5d7e4dc2420bdd00ce65d9adffbd38a5904afa", + "sha256": "143xh6xc7qd88hjjmcs9fd2zlgxl0hhgx5fplhbi9zxd2ihhz0dg" + } + }, + { + "ename": "web-narrow-mode", + "commit": "a910da9e0566344d4b195423b5f270cb2bdcc1e5", + "sha256": "09k3xp4l235wrffl7a4026wpikxhp10fh3182dlp4pa4wr2vzipi", + "fetcher": "github", + "repo": "Qquanwei/web-narrow-mode", + "unstable": { + "version": [ + 20170407, + 210 + ], + "deps": [ + "web-mode" + ], + "commit": "73bdcb7d0701abe65dab4fc295d944885e05ae33", + "sha256": "1wg54vyfbacmyh8lyd5fgh88lfby17v24l98jjgxscaqgms86bch" + } + }, + { + "ename": "web-search", + "commit": "503ef2042cc14dbe53e7121b8d0b5ccbdf6c882b", + "sha256": "08iflbp6rmsxsy2lahsdjj9ki70ixqhsas0vxzawz5pi5vk2x9gj", + "fetcher": "github", + "repo": "xuchunyang/web-search.el", + "unstable": { + "version": [ + 20190620, + 602 + ], + "commit": "a22cbdc663a1895d5a5b69de91e1e3b9eb64b92f", + "sha256": "0nbfgv99c0kmc9imnbqjhamxfdjaj00lhdxjxmrwkvzaiplsa5ra" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "commit": "a22cbdc663a1895d5a5b69de91e1e3b9eb64b92f", + "sha256": "0nbfgv99c0kmc9imnbqjhamxfdjaj00lhdxjxmrwkvzaiplsa5ra" + } + }, + { + "ename": "web-server", + "commit": "70e724b4e6c76d0299d5ea8d2211f48c1c611afe", + "sha256": "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3", + "fetcher": "github", + "repo": "eschulte/emacs-web-server", + "unstable": { + "version": [ + 20190310, + 213 + ], + "commit": "cafa5b7582c57252a0884b2c33da9b18fb678713", + "sha256": "1c0lfqmbs5hvz3fh3c8wgp6ipwmxrwx9xj264bjpj3phixd5419y" + } + }, + { + "ename": "webkit-color-picker", + "commit": "af9d2e39385c6833eff6b7c7e5a039238563c00f", + "sha256": "1i9244zghabyavxhz86d22fn40qspzdn2sjql8pl3mm8ks7a49a3", + "fetcher": "github", + "repo": "osener/emacs-webkit-color-picker", + "unstable": { + "version": [ + 20180325, + 736 + ], + "deps": [ + "posframe" + ], + "commit": "765cac80144cad4bc0bf59025ea0199f0486f737", + "sha256": "0a6nirdn1l7cymjycbns38ja9an1z4l5lwjk5h428aly3pmkvdqj" + } + }, + { + "ename": "weblogger", + "commit": "e8ccb10a5d1f4db3b20f96dee3c14ee64f4674e2", + "sha256": "0k0l715lnqb0a4hlkfjkyhr8i1jaml8z2xzhal7ryhjgvf8xinvs", + "fetcher": "github", + "repo": "hexmode/weblogger-el", + "unstable": { + "version": [ + 20110926, + 1618 + ], + "deps": [ + "xml-rpc" + ], + "commit": "b3dd4aead9d3a87e6d85e7fef4f4f3bd40d87b53", + "sha256": "03dkabszk6ya3vaps1ap16psk5bbar8zd5ipn1lmyzsbd3hwm8mj" + } + }, + { + "ename": "webpaste", + "commit": "13847d91c1780783e516943adee8a3530c757e17", + "sha256": "1pqqapslb5wxfrf1ykrj5jxcl43pix17lawgdqrqkv5fyxbhmfpm", + "fetcher": "github", + "repo": "etu/webpaste.el", + "unstable": { + "version": [ + 20190310, + 1048 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "bd38635d926a45a3cbe453fd9b41c8624a6d2309", + "sha256": "1z4l2j66mfnx1l1svx45sxkxjlyzdyw10ybsfsjhwdsi6ll42nar" + }, + "stable": { + "version": [ + 3, + 0, + 1 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "7345c5f62d5cff4d84379eaf5dc8b2bb8bc4f99c", + "sha256": "00dfp2dyj9cvcvvpsh4g61b37477c8ahfj3xig2x2kgfz15lk89n" + } + }, + { + "ename": "websocket", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg", + "fetcher": "github", + "repo": "ahyatt/emacs-websocket", + "unstable": { + "version": [ + 20190621, + 54 + ], + "deps": [ + "cl-lib" + ], + "commit": "d91a9aef5a3ec5af985e5185c3b237fdd24605e0", + "sha256": "0b7kblpsh0m6azqbbvx0fzvwmyamxb25rqk5d1kyy5pizm5kg139" + }, + "stable": { + "version": [ + 1, + 10 + ], + "deps": [ + "cl-lib" + ], + "commit": "0d96ba2ff5a25c6cd6c66f417cc9b5f38a4308ba", + "sha256": "1dgrf7na6r6mmkknphzshlbd5fnzisg0qn0j7vfpa38wgsymaq52" + } + }, + { + "ename": "wedge-ws", + "commit": "42fb11fe717b5fe73f4a6fa4e199ef4c58a85eb2", + "sha256": "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll", + "fetcher": "github", + "repo": "aes/wedge-ws", + "unstable": { + "version": [ + 20140714, + 2149 + ], + "commit": "4669115f02d9c6fee067cc5369bb38c0f9db88b2", + "sha256": "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98" + } + }, + { + "ename": "weechat", + "commit": "e38255a31a4ca31541c97a506a55f82e2670abe6", + "sha256": "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46", + "fetcher": "github", + "repo": "the-kenny/weechat.el", + "unstable": { + "version": [ + 20190520, + 1551 + ], + "deps": [ + "cl-lib", + "s", + "tracking" + ], + "commit": "d9a13306ea8be27367f92e9202d116a88fa1f441", + "sha256": "1z9lav09jsmhshlk0xnbp21y9apzhd9zv08h88sdg942v0fn2fid" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "deps": [ + "cl-lib", + "s", + "tracking" + ], + "commit": "8cbda2738149b070c09288df550781b6c604beb2", + "sha256": "1i930jaxpva9s6y3fj3nny46b70g4mqdjl54mcv2rzj95bp4f908" + } + }, + { + "ename": "weechat-alert", + "commit": "7a69ad48eabb166f66e6eb5c5cdc75aefc8b989f", + "sha256": "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22", + "fetcher": "github", + "repo": "Kungi/weechat-alert", + "unstable": { + "version": [ + 20160416, + 1248 + ], + "deps": [ + "alert", + "cl-lib", + "weechat" + ], + "commit": "a8fd557c8f335322f132c1c6c08b6741d6394e2e", + "sha256": "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6" + } + }, + { + "ename": "weibo", + "commit": "21f4c1b34f86331ecbcdbdc39858a191232902f2", + "sha256": "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd", + "fetcher": "github", + "repo": "austin-----/weibo.emacs", + "unstable": { + "version": [ + 20150307, + 2242 + ], + "deps": [ + "cl-lib" + ], + "commit": "a8abb50b7602fe15fe2bc6400ac29780e956b390", + "sha256": "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "a8af467e5660a35342029c2796de99cd551454b2", + "sha256": "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv" + } + }, + { + "ename": "wgrep", + "commit": "9648e3df896fcd97b3757a727108bc78261973cc", + "sha256": "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-wgrep", + "unstable": { + "version": [ + 20181229, + 40 + ], + "commit": "379afd89ebd76f63842c8589127d66096a8bb595", + "sha256": "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "commit": "36c5e8d0e03bc16b19d30a603730065f74b5b767", + "sha256": "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s" + } + }, + { + "ename": "wgrep-ack", + "commit": "9648e3df896fcd97b3757a727108bc78261973cc", + "sha256": "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-wgrep", + "unstable": { + "version": [ + 20141012, + 1011 + ], + "deps": [ + "wgrep" + ], + "commit": "379afd89ebd76f63842c8589127d66096a8bb595", + "sha256": "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "wgrep" + ], + "commit": "36c5e8d0e03bc16b19d30a603730065f74b5b767", + "sha256": "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s" + } + }, + { + "ename": "wgrep-ag", + "commit": "2c50b704343c4cac5e2a62a67e284ba6d8e15f8a", + "sha256": "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-wgrep", + "unstable": { + "version": [ + 20181229, + 124 + ], + "deps": [ + "wgrep" + ], + "commit": "379afd89ebd76f63842c8589127d66096a8bb595", + "sha256": "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "wgrep" + ], + "commit": "36c5e8d0e03bc16b19d30a603730065f74b5b767", + "sha256": "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s" + } + }, + { + "ename": "wgrep-helm", + "commit": "9648e3df896fcd97b3757a727108bc78261973cc", + "sha256": "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-wgrep", + "unstable": { + "version": [ + 20190401, + 2156 + ], + "deps": [ + "wgrep" + ], + "commit": "379afd89ebd76f63842c8589127d66096a8bb595", + "sha256": "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "wgrep" + ], + "commit": "36c5e8d0e03bc16b19d30a603730065f74b5b767", + "sha256": "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s" + } + }, + { + "ename": "wgrep-pt", + "commit": "c39faef3b9c2e1867cd48341d9878b714dbed4eb", + "sha256": "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg", + "fetcher": "github", + "repo": "mhayashi1120/Emacs-wgrep", + "unstable": { + "version": [ + 20140510, + 2231 + ], + "deps": [ + "wgrep" + ], + "commit": "379afd89ebd76f63842c8589127d66096a8bb595", + "sha256": "0v1qx8z1xj9qzirlycbihnkpwcklyi3a0j8lil78pmdpixdbgh47" + }, + "stable": { + "version": [ + 2, + 3, + 0 + ], + "deps": [ + "wgrep" + ], + "commit": "36c5e8d0e03bc16b19d30a603730065f74b5b767", + "sha256": "0pgyf9vfcahb495q01hi1mvkmv846w4rj6zyf52is8x7sjj7x44s" + } + }, + { + "ename": "what-the-commit", + "commit": "6d22725c2fce506c659bd33aabca182be0048905", + "sha256": "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak", + "fetcher": "github", + "repo": "danielbarbarito/what-the-commit.el", + "unstable": { + "version": [ + 20150901, + 1316 + ], + "commit": "868c80a1b8614bcbd2225cd0290142c72f2a7956", + "sha256": "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76" + } + }, + { + "ename": "which-key", + "commit": "315865a3df97c0694f648633d44b8b34df1ac76d", + "sha256": "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59", + "fetcher": "github", + "repo": "justbur/emacs-which-key", + "unstable": { + "version": [ + 20190801, + 1932 + ], + "commit": "a256c4bce66d3805af07cc9f3dec5baeae1808de", + "sha256": "0h63gxw80yghq4kpbqixwk48y57m92spll3w60r5r789wqws2wrf" + }, + "stable": { + "version": [ + 3, + 3, + 1 + ], + "commit": "2f5661646b771f6c5a00a8a9aaa3f183abd5f84d", + "sha256": "1dh6kr00wmql46whjkvnl953zngiv5j99ypvr1b3cb2174623afb" + } + }, + { + "ename": "which-key-posframe", + "commit": "56ab10dc99ea4f5b207f9874124aff414d859a17", + "sha256": "1vpdni3ascz2zw6k1xrnw2vqnq8p30mc7d8v81qdbjb58q27l8ll", + "fetcher": "github", + "repo": "yanghaoxie/which-key-posframe", + "unstable": { + "version": [ + 20190427, + 1103 + ], + "deps": [ + "posframe", + "which-key" + ], + "commit": "e7f28608c7fc9507e407c6b840dff09062df533a", + "sha256": "0954llm57gfy3lvq8s32mqdswbv20na0v28gi61kw7023f1wg7ri" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "posframe", + "which-key" + ], + "commit": "75e73e187da78d823a5dc01c21e09e808e4fb938", + "sha256": "1ay6qnil7xmml95yiax191fs85mpjkpr0r9314zlf0mf7ip9hvpy" + } + }, + { + "ename": "whitaker", + "commit": "4b5d717e2eaf35ce33b26be049a39f2f75a7de72", + "sha256": "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj", + "fetcher": "github", + "repo": "Fuco1/whitaker", + "unstable": { + "version": [ + 20150814, + 1122 + ], + "deps": [ + "dash" + ], + "commit": "eaf26ea647b729ca705b73ea70312d5ffdf89448", + "sha256": "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab" + }, + "stable": { + "version": [ + 0, + 3 + ], + "deps": [ + "dash" + ], + "commit": "28172edce0f727f0f7f17d8ba71d5510d877bb45", + "sha256": "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4" + } + }, + { + "ename": "white-sand-theme", + "commit": "b124575c4a4f783b6726d0526b83e67b4ad65cc9", + "sha256": "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5", + "fetcher": "github", + "repo": "mswift42/white-sand-theme", + "unstable": { + "version": [ + 20151117, + 1648 + ], + "commit": "97621edd69267dd143760d94393db2c2558c9ea4", + "sha256": "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn" + } + }, + { + "ename": "white-theme", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "04l5hjhd465w9clrqc4dr8bx8hj4i9dx4nfr9hympgv101bpgy4x", + "fetcher": "github", + "repo": "anler/white-theme.el", + "unstable": { + "version": [ + 20160917, + 1743 + ], + "commit": "e9e6d5b9d43da6eb15e86f5fbc8b1ba83abe8c78", + "sha256": "1yqfq1gzkrw79myvj16nfi30ynfyz8yrpbzjcj8nhsc5rfrrmym2" + } + }, + { + "ename": "whitespace-cleanup-mode", + "commit": "b461cfe450d7ce6bd0c14be3460cacffc1a32e6f", + "sha256": "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3", + "fetcher": "github", + "repo": "purcell/whitespace-cleanup-mode", + "unstable": { + "version": [ + 20190106, + 2022 + ], + "commit": "72427144b054b0238a86e1348c45d986b8830d9d", + "sha256": "1zlk534jbwrsabcg3kqlzk4h4hwya60lh6q2n1v4yn4rpf5ghsag" + }, + "stable": { + "version": [ + 0, + 10 + ], + "commit": "e1e250aa6f5b1a526778c7a501cdec98ba29c0a4", + "sha256": "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2" + } + }, + { + "ename": "whizzml-mode", + "commit": "11f26b15c326c3b8541bac510579b32493916042", + "sha256": "0gas9xfpz5v9fbhjxhd4msihwz9w4a05l5icsaclxvh06f92wcyk", + "fetcher": "github", + "repo": "whizzml/whizzml-mode", + "unstable": { + "version": [ + 20190618, + 58 + ], + "commit": "ec4c8ba184a135bd3f5adf2cd98dbc4d324a0190", + "sha256": "0iv47m9gk2cb5k7mamkyakdn20jsspcbhmljsi3wijk3qzwwnd0k" + }, + "stable": { + "version": [ + 0, + 33, + 0 + ], + "commit": "ec4c8ba184a135bd3f5adf2cd98dbc4d324a0190", + "sha256": "0iv47m9gk2cb5k7mamkyakdn20jsspcbhmljsi3wijk3qzwwnd0k" + } + }, + { + "ename": "whois", + "commit": "719895d3db6daae5df00d4823a62fcc0f7bf2d9d", + "sha256": "061jbk97ma21id0vpkvxdslfvs2x0wqw8c32mwhdcqjqjc74k9km", + "fetcher": "github", + "repo": "lassik/emacs-whois", + "unstable": { + "version": [ + 20190529, + 1554 + ], + "commit": "b4cdab4d25225c6e834727a7d85cdb0d493da152", + "sha256": "058wym1iwgz5n5yd508xdc05ncdyqbs53a5c9mq0s6gs06h5xfyw" + } + }, + { + "ename": "whole-line-or-region", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0zz9i1jxayw2p6ggfxjvhb1mc3ly9iy4jvk23ycndz9lnnzkch0y", + "fetcher": "github", + "repo": "purcell/whole-line-or-region", + "unstable": { + "version": [ + 20190411, + 215 + ], + "commit": "15f17488f98868f1628a3f9d91a812b1f89bc73a", + "sha256": "18qzmpw41bqw2ymynya3hgn9skj13r5s6d2b14r78hvmv4bc9h9r" + }, + "stable": { + "version": [ + 1, + 3, + 1 + ], + "commit": "a60e022b30c2f4d3118bcaef1adb77b90e0ca941", + "sha256": "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d" + } + }, + { + "ename": "wide-column", + "commit": "8d29def44ae42dc4b60c1d254a57572bd09faf51", + "sha256": "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb", + "fetcher": "github", + "repo": "phillord/wide-column", + "unstable": { + "version": [ + 20170925, + 1613 + ], + "commit": "ce9ef4675485a7bea381077866368ef875226b10", + "sha256": "0qh8hy4jl59bfg4323a8h4q4a78gn4hsglfk2h23hqssbv4mhsp2" + } + }, + { + "ename": "widget-mvc", + "commit": "76d3c38e205076a22628f490d8e8ddd80d091eab", + "sha256": "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f", + "fetcher": "github", + "repo": "kiwanami/emacs-widget-mvc", + "unstable": { + "version": [ + 20150102, + 406 + ], + "commit": "ff5a85880df7b87f9f480fe3c28438a0712b7b87", + "sha256": "1s0srhklmkmj3lfs8vr1dqi3s48z7fwx9mxqxckk5njld317hqg7" + }, + "stable": { + "version": [ + 0, + 0, + 2 + ], + "commit": "2576e6f0c35d8dedfa9c2cd6ea4fb4c14cb72b63", + "sha256": "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf" + } + }, + { + "ename": "widgetjs", + "commit": "78d7a15152f45a193384741fa00d0649c4bba91e", + "sha256": "0y5h1ag2m7w47l4nx4d18yz3fvd411rm1h5w7zz4xh67bnx4zyy1", + "fetcher": "github", + "repo": "foretagsplatsen/emacs-js", + "unstable": { + "version": [ + 20160719, + 1504 + ], + "deps": [ + "js2-mode", + "js2-refactor", + "makey", + "s" + ], + "commit": "0379c80a0c2df77cd18e95741caf6fc8acd90a41", + "sha256": "1lkmr9024x8nv9chl21qp9dnl64qlp0lrfy592pzidpr3997xkjf" + } + }, + { + "ename": "wiki-nav", + "commit": "baa49e7d2d5c07ebf77e7941c240b88fcfd0fc8b", + "sha256": "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy", + "fetcher": "github", + "repo": "rolandwalker/button-lock", + "unstable": { + "version": [ + 20150223, + 1354 + ], + "deps": [ + "button-lock", + "nav-flash" + ], + "commit": "f9082feb329432fcf2ac49a95e64bed9fda24d58", + "sha256": "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl" + }, + "stable": { + "version": [ + 1, + 0, + 2 + ], + "deps": [ + "button-lock", + "nav-flash" + ], + "commit": "cd0bf4a3c2f224d851e6ed8a54a6e80c129b225f", + "sha256": "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2" + } + }, + { + "ename": "wiki-summary", + "commit": "31877f182ab82fd5bb73ec4ddd8526a032d9edf9", + "sha256": "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw", + "fetcher": "github", + "repo": "jozefg/wiki-summary.el", + "unstable": { + "version": [ + 20181010, + 1824 + ], + "commit": "fa41ab6e50b3b80e54148af9d4bac18fd0405000", + "sha256": "0qcnqwiylkkb7132bzra49k7jg8kq13jif8096vpg4xzpcq5lpj2" + } + }, + { + "ename": "wilt", + "commit": "eea4f2ca8b4f9ea93cc02151fdda6cfee5b68b70", + "sha256": "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6", + "fetcher": "github", + "repo": "sixty-north/emacs-wilt", + "unstable": { + "version": [ + 20180220, + 854 + ], + "deps": [ + "dash", + "s" + ], + "commit": "04dbe37fa35d0b24c791421785d2c97a8cbfe2cc", + "sha256": "197kqp22pyy1in2rq063mahvrf00vrfvgnfkqp0zy7hpkhiiqvim" + } + }, + { + "ename": "win-switch", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my", + "fetcher": "github", + "repo": "genovese/win-switch", + "unstable": { + "version": [ + 20161009, + 1627 + ], + "commit": "954eb5e4c5737f0c06368c42a7f1c3dd374d782f", + "sha256": "1xpx4sc1g1w8w0yc39k2dys83m8skrpvi745bfrzdl47jngrf54h" + }, + "stable": { + "version": [ + 1, + 1, + 4 + ], + "commit": "954eb5e4c5737f0c06368c42a7f1c3dd374d782f", + "sha256": "1xpx4sc1g1w8w0yc39k2dys83m8skrpvi745bfrzdl47jngrf54h" + } + }, + { + "ename": "windata", + "commit": "84f836338818946a6bb31d35d6ae959571128ed5", + "sha256": "1mah2vy46pxwjd6c6ac14d2qfcixs2yrgwmzmisnfgsvprdlxryb", + "fetcher": "github", + "repo": "emacsorphanage/windata", + "unstable": { + "version": [ + 20090830, + 1040 + ], + "commit": "a723fc446ceaec23d5f29ecc8245d94c99d91625", + "sha256": "0y8yw5hazsir5kjskrh4mr63mmz87dc7yy5ddmlwpmn03wanqpha" + } + }, + { + "ename": "window-end-visible", + "commit": "c9db386ab3910940addae6e925b2ac17e64e0f87", + "sha256": "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq", + "fetcher": "github", + "repo": "rolandwalker/window-end-visible", + "unstable": { + "version": [ + 20140508, + 2041 + ], + "commit": "525500fb2ebc08f3f9ea493972e5f2e1d79f89ef", + "sha256": "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "commit": "bdc3d182e5f76e75f1b8cc49357194b36e48b67c", + "sha256": "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb" + } + }, + { + "ename": "window-jump", + "commit": "d44fc32e12f00bbaa799b4054e9ff0fc0d3bfbfb", + "sha256": "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr", + "fetcher": "github", + "repo": "chumpage/chumpy-windows", + "unstable": { + "version": [ + 20170809, + 2208 + ], + "commit": "6bdb51e9a346907d60a9625f6180bddd06be6674", + "sha256": "1wkyvfqmf24c8kb162pwi6wcm88bzf0x9mxljzkx0s8bq9aliny6" + } + }, + { + "ename": "window-layout", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "061mvxcj4mg2pmkln7nn6gyscs08aid4cfc6xck0x5gzr1snr639", + "fetcher": "github", + "repo": "kiwanami/emacs-window-layout", + "unstable": { + "version": [ + 20170215, + 33 + ], + "commit": "cd2e4f967b610c2bbef53182829e47250d027056", + "sha256": "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "cd2e4f967b610c2bbef53182829e47250d027056", + "sha256": "0wgqi8r844lbx52fn6az8c1n8m681rp6dkfzd54wmdk1ka7zmvv6" + } + }, + { + "ename": "window-number", + "commit": "74523af6e22ebae2f5fe7c4da4e8af8fac5fa074", + "sha256": "1ivd701h6q48i263fxxi44haacaz8cjg562ry8dxd10rbhhsjsq0", + "fetcher": "github", + "repo": "nikolas/window-number", + "unstable": { + "version": [ + 20170801, + 151 + ], + "commit": "d41722de646ffeb3f70d26e4a86a5a1ba5c6be87", + "sha256": "1ifs7zp8c5m9da5dz0y4cq7pgqgdkz63v00ib07xdycnfjp4w17i" + } + }, + { + "ename": "window-numbering", + "commit": "ce1dc80f69894736b276885e4ec3ce571a8612c9", + "sha256": "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x", + "fetcher": "github", + "repo": "nschum/window-numbering.el", + "unstable": { + "version": [ + 20160809, + 1810 + ], + "commit": "10809b3993a97c7b544240bf5d7ce9b1110a1b89", + "sha256": "1nlgzrjg5k7wyaka8ziqyv683vsc0f2lw5kr5xajcqlamwbzs7vi" + }, + "stable": { + "version": [ + 1, + 1, + 2 + ], + "commit": "653afce73854d629c2b9d63dad73126032d6a24c", + "sha256": "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64" + } + }, + { + "ename": "window-purpose", + "commit": "5813120ab674f6db7d0a486433d8faa6cfec1727", + "sha256": "1y70jrba3gf9fyf2qdihfshbsblzb88yv9fkcswdzrpq5kmgwp84", + "fetcher": "github", + "repo": "bmag/emacs-purpose", + "unstable": { + "version": [ + 20190628, + 1827 + ], + "deps": [ + "imenu-list", + "let-alist" + ], + "commit": "f6421966761ad911fe8861aba2b110c5dd60d1ea", + "sha256": "1p0y5gnrw7q65py2wjdf1hrdpiw5c2zbgvfbfmb13257jq5mga38" + }, + "stable": { + "version": [ + 1, + 7 + ], + "deps": [ + "imenu-list", + "let-alist" + ], + "commit": "a302340e183d20baa4445858d321f43449298829", + "sha256": "1dpy8hkjn87wbdkzyabhay4jx4dgc0ab2flyf0rjq1qaazk393sc" + } + }, + { + "ename": "windsize", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1fzqf86d7pimnc87xdgvpv4hnv7j6ngmk1sjvazj6726xygswkyv", + "fetcher": "github", + "repo": "grammati/windsize", + "unstable": { + "version": [ + 20181029, + 2257 + ], + "commit": "62c2846bbe95b0a73e996c75e4a644d05f57aaaa", + "sha256": "13kfrmv3vmkfanxv9nym5v43hx5p7xkgqmx65zcxh4gcbaham1mi" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "014b0836f9ffe45fa7e0ccc84576fbef74815a59", + "sha256": "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil" + } + }, + { + "ename": "windwow", + "commit": "12aba18872021ce0affa96c46a17353c7d073ca2", + "sha256": "0cbkp98pwzj484akdbidvdz4kqxv6ix6paimpxnag6fffciq245h", + "fetcher": "github", + "repo": "vijumathew/windwow", + "unstable": { + "version": [ + 20170816, + 148 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "77bad26f651744b68d31b389389147014d250f23", + "sha256": "0vbmmf8wm76k389g5ncs0grwlpwp3glpwvhdi5dfxaqcp2phaaad" + } + }, + { + "ename": "winnow", + "commit": "58891c2057ec834f999e3bf82af15e0617a4d4cf", + "sha256": "07kwjdmvzgvg7gc53dv10jfi212m0pimzrhiga38lrqrnrw631m0", + "fetcher": "github", + "repo": "dgtized/winnow.el", + "unstable": { + "version": [ + 20170903, + 1206 + ], + "commit": "18cb6b94338f3b7b4f2cd0331dad22f82dd9e0d3", + "sha256": "1wp00zxxcibvl6vjwmvhkgcbi76dyb2g8c30wy4kp7876cpc8hgv" + } + }, + { + "ename": "winpoint", + "commit": "665e24e490618c7caeae4a9d17d1f614dc0a2617", + "sha256": "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w", + "fetcher": "github", + "repo": "jorgenschaefer/winpoint", + "unstable": { + "version": [ + 20131023, + 1713 + ], + "commit": "e6050093c076308184566fa1d1012423d6934773", + "sha256": "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy" + } + }, + { + "ename": "winring", + "commit": "2476a28c33502f908b7161c5a9c63c86b8d7b57d", + "sha256": "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4", + "fetcher": "gitlab", + "repo": "warsaw/winring", + "unstable": { + "version": [ + 20180530, + 18 + ], + "commit": "f2d072bd446b73e93b127523f19ea82b99b9267f", + "sha256": "1j0g52panhx91hqw5glnlv5vnnpnjyx49xc8xif8mjf0m27723fv" + }, + "stable": { + "version": [ + 5, + 1 + ], + "commit": "f2d072bd446b73e93b127523f19ea82b99b9267f", + "sha256": "1j0g52panhx91hqw5glnlv5vnnpnjyx49xc8xif8mjf0m27723fv" + } + }, + { + "ename": "winum", + "commit": "c1caa7a54a910a44322fdee300e8cce6ddcde071", + "sha256": "0yyvjmvqif6glh9ri6049nxcmgib9mxdhy6816kjhsaqr570f9pw", + "fetcher": "github", + "repo": "deb0ch/emacs-winum", + "unstable": { + "version": [ + 20181119, + 1705 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "247df36c03d70b453e9b912d6e1b7065644f639d", + "sha256": "0xbbf35cpbp5mayq5497g6m7l264vlf5p612mpz81yd55xs9pi7k" + }, + "stable": { + "version": [ + 2, + 1, + 0 + ], + "deps": [ + "cl-lib", + "dash" + ], + "commit": "efcb14fd306afbc738666e6b2e5a8a1bb5904392", + "sha256": "0v1qmw3svydk7dlqbcymy1g1bygkfpb2h4b97zdp12xvd8mww9ny" + } + }, + { + "ename": "wisp-mode", + "commit": "5b7972602399f9df9139cff177e38653bb0f43ed", + "sha256": "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc", + "error": "Not in archive", + "fetcher": "bitbucket", + "repo": "ArneBab/wisp" + }, + { + "ename": "wispjs-mode", + "commit": "a628330ee8deeab2bd5c2d4b61b33f119c4549d8", + "sha256": "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p", + "fetcher": "github", + "repo": "krisajenkins/wispjs-mode", + "unstable": { + "version": [ + 20170720, + 1919 + ], + "deps": [ + "clojure-mode" + ], + "commit": "60f9f5fd9d1556e2d008939f67eb1b1d0f325fa8", + "sha256": "1hhd8ixb2wr06vrd1kw0cd5jh08zm86h2clbvzv9wmqpawwxfm5f" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "deps": [ + "clojure-mode" + ], + "commit": "be094c3c3223c07b26b5d8bb8fa7aa6866369b3f", + "sha256": "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x" + } + }, + { + "ename": "with-editor", + "commit": "8c52c840dc35f3fd17ec660e113ddbb53aa99076", + "sha256": "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb", + "fetcher": "github", + "repo": "magit/with-editor", + "unstable": { + "version": [ + 20190715, + 2007 + ], + "deps": [ + "async" + ], + "commit": "45c29f9bfb7f2df93426ce1571e2f4f41ed4e492", + "sha256": "0n91y0m7m382j7dfcqhcfzngb84a41x6diy6lx4l87b48srhcpzc" + }, + "stable": { + "version": [ + 2, + 8, + 3 + ], + "deps": [ + "async" + ], + "commit": "66bec91c859f305445b766394eb25248c1172426", + "sha256": "1z2h9casyw1b93ikq2mf9xixyvbl90zddf0s66lqfiyj2y376pq3" + } + }, + { + "ename": "with-emacs", + "commit": "0a32fe5253ae3ac5571444b06320b20d3deff5e4", + "sha256": "0k453yyn4jajxhflpmy77f3sd5dc7vc55v5isyvkf1kxsbxvc7pf", + "fetcher": "github", + "repo": "twlz0ne/with-emacs.el", + "unstable": { + "version": [ + 20190623, + 302 + ], + "commit": "0766fb87668bb92ef95a9ecab5180c2933ac0743", + "sha256": "0nzb4fswxfqzscsg0gbhfrfy9z0y9fn7cl78zh6wdmmnfsdbl314" + } + }, + { + "ename": "with-namespace", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i", + "fetcher": "github", + "repo": "Wilfred/with-namespace.el", + "unstable": { + "version": [ + 20130407, + 1822 + ], + "deps": [ + "dash", + "loop" + ], + "commit": "8ac52da3a09cf46087720e30cf730d00f140cde6", + "sha256": "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3" + } + }, + { + "ename": "with-simulated-input", + "commit": "e4ddf16e19f5018106a423327ddc7e7499cf9248", + "sha256": "0113la76nbp18vaffsd7w7wcw5k2sqwgnjq1gslf4khdfqghrkwk", + "fetcher": "github", + "repo": "DarwinAwardWinner/with-simulated-input", + "unstable": { + "version": [ + 20170821, + 617 + ], + "deps": [ + "s", + "seq" + ], + "commit": "af9a38ce28a741e6d8742750bef5d7b5afa13796", + "sha256": "0iann7zi9bgd3vmvxvg2n6x24hkyzbchbli1ymsmfrn8rif9byf7" + }, + "stable": { + "version": [ + 2, + 2 + ], + "deps": [ + "s", + "seq" + ], + "commit": "9efeb236c8f6887a8591d6241962c37266d8e726", + "sha256": "1v8c85ahsk9pz3zndh0c9xba4c78f4b1j97hbv62jirvr75b079g" + } + }, + { + "ename": "with-venv", + "commit": "555a2e49f18fbae59913459466babf8d55bd2151", + "sha256": "090jird410wn2w9pwr2d9pjw5xghcdxc4l578zay2akygg3c6blm", + "fetcher": "github", + "repo": "10sr/with-venv-el", + "unstable": { + "version": [ + 20190516, + 606 + ], + "deps": [ + "cl-lib" + ], + "commit": "283b35e33f012657ef23e154b6bdf362377d82e6", + "sha256": "1s0vnsvhlcx1z5sbiyhk4iizakx4cbvjxwygdamrl8s0bnigqhfd" + }, + "stable": { + "version": [ + 0, + 0, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "d12341b93420f4acd7a277ed0cd4a54767bc5bd6", + "sha256": "0knv2ybf4sbn31zyg9ms44mxvmvg7b51krq320g8fpcpa1bq28s6" + } + }, + { + "ename": "wn-mode", + "commit": "6213c01e6954985daff8cd1a5a3ef004431f0477", + "sha256": "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3", + "fetcher": "github", + "repo": "luismbo/wn-mode", + "unstable": { + "version": [ + 20151110, + 552 + ], + "commit": "f05c3151523e529af5a0a3fa8c948b61fb369f6e", + "sha256": "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36" + }, + "stable": { + "version": [ + 1, + 4 + ], + "commit": "6e7029b0d5773a79914a289937be068784931cad", + "sha256": "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix" + } + }, + { + "ename": "wolfram", + "commit": "785b5b1ec73e6376f2f2bb405707a1078398fa3a", + "sha256": "02xp1916v9rydh0586jkx71v256qdg63f87s3m0agc2znnrni9h4", + "fetcher": "github", + "repo": "hsjunnesson/wolfram.el", + "unstable": { + "version": [ + 20170123, + 756 + ], + "commit": "6b5dceae3fd6cdb4d7562510deeafa02c93c010b", + "sha256": "1ijyjw2793i7n00i30ma8lw4fzi9w63m6k0xgjx6j78r5y7pfj2g" + }, + "stable": { + "version": [ + 1, + 1, + 1 + ], + "commit": "6b5dceae3fd6cdb4d7562510deeafa02c93c010b", + "sha256": "1ijyjw2793i7n00i30ma8lw4fzi9w63m6k0xgjx6j78r5y7pfj2g" + } + }, + { + "ename": "wolfram-mode", + "commit": "40ded2302e413e233d867caa4776c54a778b8b99", + "sha256": "0rc39vvpyhpn0m52i4hs23j6avqfddmrkhjqg339apfq7z35fpli", + "fetcher": "github", + "repo": "kawabata/wolfram-mode", + "unstable": { + "version": [ + 20180307, + 13 + ], + "commit": "be680190cac6ccf579dbce107deaae495928d1b3", + "sha256": "1cvdw28gvhbr9l65xkv8ld12rb0pcf53jd55gns2b0abz1lg1jc4" + } + }, + { + "ename": "wonderland", + "commit": "ed02d5e4cba10023ebc7c26f90ba8d1e8ee32a08", + "sha256": "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi", + "fetcher": "github", + "repo": "kurisuwhyte/emacs-wonderland", + "unstable": { + "version": [ + 20130913, + 119 + ], + "deps": [ + "dash", + "dash-functional", + "multi" + ], + "commit": "89d274ad694b0e748efdac23ccd60b7d8b73d7c6", + "sha256": "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack" + }, + "stable": { + "version": [ + 0, + 1, + 1 + ], + "deps": [ + "dash", + "dash-functional", + "multi" + ], + "commit": "28cf6b37000c395ece9519db53147fb826a42bc4", + "sha256": "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc" + } + }, + { + "ename": "wordgen", + "commit": "5cfdc64a9aa79575dad8057c4cd747d2cdd460aa", + "sha256": "0vlrplm3pmpwwa8p8j6lck97b875gzzm7vxxc8l9l18vs237cz1m", + "fetcher": "github", + "repo": "Fanael/wordgen.el", + "unstable": { + "version": [ + 20170803, + 1820 + ], + "deps": [ + "cl-lib" + ], + "commit": "aacad928ae99a953e034a831dfd0ebdf7d52ac1d", + "sha256": "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash" + }, + "stable": { + "version": [ + 0, + 1, + 4 + ], + "deps": [ + "cl-lib" + ], + "commit": "aacad928ae99a953e034a831dfd0ebdf7d52ac1d", + "sha256": "06vbc9ycz1nbjwjkg99y3lj6jwb6lnwnmkqf09yr00jjrrfhfash" + } + }, + { + "ename": "wordnut", + "commit": "321c5e171eb4da85980968ac3c8ef4300101c0b1", + "sha256": "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n", + "fetcher": "github", + "repo": "gromnitsky/wordnut", + "unstable": { + "version": [ + 20180313, + 443 + ], + "commit": "feac531404041855312c1a046bde7ea18c674915", + "sha256": "1jl0b6g64a9w0q7bfvwha67vgws5xd15b7mkfyb5gkz3pymqhfxn" + } + }, + { + "ename": "wordsmith-mode", + "commit": "3b5fda506e5b388cd6824d433b89032ed46858dc", + "sha256": "0s6b6dfqn31jdcgs2mlmvwgpr5a4zs4xi8m002ly11c6sn035xb1", + "fetcher": "github", + "repo": "istib/wordsmith-mode", + "unstable": { + "version": [ + 20171025, + 1430 + ], + "commit": "589a97412138145bea70e0450eeddeb7f138d538", + "sha256": "1zm4grysjpynibldvic75awhcmmnjmlkkvslw8bvirmi58qwvwzj" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "41b10f2fe3589da9812395cb417c3dcf906f0969", + "sha256": "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs" + } + }, + { + "ename": "worf", + "commit": "f00f8765e35c21dd1a4b5c01c239ed4d15170ab7", + "sha256": "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi", + "fetcher": "github", + "repo": "abo-abo/worf", + "unstable": { + "version": [ + 20190519, + 1648 + ], + "deps": [ + "ace-link", + "hydra", + "swiper", + "zoutline" + ], + "commit": "00d191b347397bd7ad1f5b95cfe39fa3fce9fc91", + "sha256": "0mp5f6hp8pqckfsi4bxcg09kcfndvsbc2nnqbgdw87bidwlzhzmy" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "ace-link", + "hydra", + "swiper" + ], + "commit": "f36755447b588b739b2bf6ab0fb5eb5f4d8db3df", + "sha256": "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4" + } + }, + { + "ename": "workgroups", + "commit": "585d3f522920b41845294af50b1da99dff256f8d", + "sha256": "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8", + "fetcher": "github", + "repo": "tlh/workgroups.el", + "unstable": { + "version": [ + 20110726, + 1641 + ], + "commit": "9572b3492ee09054dc329f64ed846c962b395e39", + "sha256": "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n" + } + }, + { + "ename": "workgroups2", + "commit": "4f9cfb740cce05a6805d9a047e4c1380305da4df", + "sha256": "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v", + "fetcher": "github", + "repo": "pashinin/workgroups2", + "unstable": { + "version": [ + 20141102, + 1922 + ], + "deps": [ + "anaphora", + "cl-lib", + "dash", + "f" + ], + "commit": "bbefbb2579d463b243dcd4ecbfce82e1bdac3882", + "sha256": "0md6i2sawrzqza2br1g11zhhrda286abhlx0v9pgf65mafc4ilwi" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "deps": [ + "anaphora", + "cl-lib", + "dash", + "f" + ], + "commit": "928d509157ec8a4a2e343b6115dff034c3243a7a", + "sha256": "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n" + } + }, + { + "ename": "world-time-mode", + "commit": "f1429650400baf2b1523b5556eaf6a2178d515d4", + "sha256": "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl", + "fetcher": "github", + "repo": "nicferrier/emacs-world-time-mode", + "unstable": { + "version": [ + 20140627, + 807 + ], + "commit": "ce7a3b45c87eb24cfe61eee453175d64f741d7cc", + "sha256": "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji" + } + }, + { + "ename": "wotd", + "commit": "7a52690a9bae634825bdfb5b6b17e5faccb93e13", + "sha256": "145knl4n35kpqqzqkz1vd18d619nw011d93f8qp5h82xm92p3sb5", + "fetcher": "github", + "repo": "cute-jumper/emacs-word-of-the-day", + "unstable": { + "version": [ + 20170328, + 1948 + ], + "deps": [ + "org" + ], + "commit": "d2937a3d91e014f8028a1f33d21c18cc0b065a64", + "sha256": "0nwq5ymj9kx1fx3kfc789nkd80gwzljwmk7xxzzsrdrv47gm047m" + } + }, + { + "ename": "wrap-region", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i", + "fetcher": "github", + "repo": "rejeep/wrap-region.el", + "unstable": { + "version": [ + 20140117, + 720 + ], + "deps": [ + "dash" + ], + "commit": "fbae9b0f106187af19823f1a6260b5c68b7252e6", + "sha256": "1k5q925igdv5lnpbmy0c2f0j3rj7yh4l6bxbd61g9lcnyl0j3ym9" + }, + "stable": { + "version": [ + 0, + 7, + 3 + ], + "deps": [ + "dash" + ], + "commit": "5a910ad23ebb0649e644bf62ad042587341da5da", + "sha256": "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0" + } + }, + { + "ename": "writefreely", + "commit": "55ea1ad03ce5b5178435b8042be383065795ee71", + "sha256": "1lvar4kmzq3x7nmidklcryqscb5xzvkzbyn59a8ns0bml5sfrqyj", + "fetcher": "github", + "repo": "dangom/writefreely.el", + "unstable": { + "version": [ + 20190628, + 1606 + ], + "deps": [ + "org", + "ox-gfm", + "request" + ], + "commit": "83a487e48e0d8342c372deb74d04c0b43474268c", + "sha256": "1qslhhb0zbg542xsa3rw4xh8wsz9k7nm61c62rhbasd4s39159yc" + } + }, + { + "ename": "writegood-mode", + "commit": "75c5a4304999fc3f5a02235a1c2c904238d2ce4f", + "sha256": "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d", + "fetcher": "github", + "repo": "bnbeckwith/writegood-mode", + "unstable": { + "version": [ + 20180525, + 1343 + ], + "commit": "b71757ec337e226909fb0422f0224e31acc71733", + "sha256": "038gliy6l931r02bf2dbhmp188sgk1rq46ngg9nhf5q5rkf3pi8p" + }, + "stable": { + "version": [ + 2, + 0, + 3 + ], + "commit": "b71757ec337e226909fb0422f0224e31acc71733", + "sha256": "038gliy6l931r02bf2dbhmp188sgk1rq46ngg9nhf5q5rkf3pi8p" + } + }, + { + "ename": "writeroom-mode", + "commit": "4e39cd8e8b4f61c04fa967def6a653bb22f45f5b", + "sha256": "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk", + "fetcher": "github", + "repo": "joostkremers/writeroom-mode", + "unstable": { + "version": [ + 20190406, + 2135 + ], + "deps": [ + "visual-fill-column" + ], + "commit": "ebe522ba5a0367cf82ed03ffeb63fe597b84f4a1", + "sha256": "0w2lmkkij79khjpswk2zxj371fa9ws94j9dqzrgzf37lnimgnsff" + }, + "stable": { + "version": [ + 3, + 8 + ], + "deps": [ + "visual-fill-column" + ], + "commit": "ebe522ba5a0367cf82ed03ffeb63fe597b84f4a1", + "sha256": "0w2lmkkij79khjpswk2zxj371fa9ws94j9dqzrgzf37lnimgnsff" + } + }, + { + "ename": "ws-butler", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1k5nhj37r51i0czrlafra53wir73p0nbq83jjccqmw4p4xk6axl3", + "fetcher": "github", + "repo": "lewang/ws-butler", + "unstable": { + "version": [ + 20170111, + 2334 + ], + "commit": "52321b99be69aa1b661da7743c4421a30d8b6bcb", + "sha256": "1b6hxhwhzs6xq12w0jmvvjw0bx4czw71xzj3qizq9gx0q4n7a0qf" + }, + "stable": { + "version": [ + 0, + 6 + ], + "commit": "323b651dd70ee40a25accc940b8f80c3a3185205", + "sha256": "1a4b0lsmwq84qfx51c5xy4fryhb1ysld4fhgw2vr37izf53379sb" + } + }, + { + "ename": "wsd-mode", + "commit": "04867a574773e8794335a2664d4f5e8b243f3ec9", + "sha256": "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc", + "fetcher": "github", + "repo": "josteink/wsd-mode", + "unstable": { + "version": [ + 20180807, + 1130 + ], + "commit": "0583df8efb742c90dc56df00f9714e13512cf6d9", + "sha256": "0f90qm5zx7lkyvaz519fln4hijfyammc675105f19492h1bc1bva" + }, + "stable": { + "version": [ + 0, + 5, + 0 + ], + "commit": "b5e8ea0daeaa52f2ea6349e09902bd3216e96258", + "sha256": "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393" + } + }, + { + "ename": "wttrin", + "commit": "1b2b6876562f1fadd4af1ea9b279ac4dc1b21660", + "sha256": "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil", + "fetcher": "github", + "repo": "bcbcarl/emacs-wttrin", + "unstable": { + "version": [ + 20170614, + 1206 + ], + "deps": [ + "xterm-color" + ], + "commit": "df5427ce2a5ad4dab652dbb1c4a1834d7ddc2abc", + "sha256": "1ai655f10iayb4vw0ass2j3x83f4vsv90326mnywkzfl3sxd432z" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "xterm-color" + ], + "commit": "d595240d92788791da2218d12efd6a77eee06217", + "sha256": "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc" + } + }, + { + "ename": "wucuo", + "commit": "819cacef2c31d750829980f3f6c3bfb72f36bbdd", + "sha256": "084fcv4dkflpka9vmxmxqdl0cgmjjh9wc6axr65j1ffmqd933y4a", + "fetcher": "github", + "repo": "redguardtoo/wucuo", + "unstable": { + "version": [ + 20181106, + 2257 + ], + "commit": "4e988c101fe82f2e8c7b3710d15982fe28b8d32d", + "sha256": "0g558miz9f4g8jlq532fs9yxj3il62zajgcjfndall2853hn54af" + }, + "stable": { + "version": [ + 0, + 0, + 4 + ], + "commit": "4e988c101fe82f2e8c7b3710d15982fe28b8d32d", + "sha256": "0g558miz9f4g8jlq532fs9yxj3il62zajgcjfndall2853hn54af" + } + }, + { + "ename": "wwtime", + "commit": "28f034fbabe9de76e2e4ae44be8c8240b08f0535", + "sha256": "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic", + "fetcher": "github", + "repo": "ndw/wwtime", + "unstable": { + "version": [ + 20151122, + 1610 + ], + "commit": "d04d8fa814b5d3644efaeb28f25520ada69acbbd", + "sha256": "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r" + } + }, + { + "ename": "www-synonyms", + "commit": "2fe69ac09c3e24af9c4e24308e57d7c3c3425096", + "sha256": "0rp5p26hd67k4dsb40hj7jv24i9wncaay88dmiqla48843j4ymgh", + "fetcher": "github", + "repo": "spebern/www-synonyms", + "unstable": { + "version": [ + 20170128, + 2251 + ], + "deps": [ + "cl-lib", + "request" + ], + "commit": "7e37ea35064ff31c9945f0198a653647d408c936", + "sha256": "0l4fvq5zdzqvlwxqgqbfx9x0aimvk4x3la9yz9gw3vvj1rwf340i" + } + }, + { + "ename": "x-path-walker", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1k72c0i17k31p404nkzqkw25cpcfk66bmd0vjzwg34cnwcgfhnjg", + "fetcher": "github", + "repo": "Lompik/x-path-walker", + "unstable": { + "version": [ + 20160922, + 1835 + ], + "deps": [ + "helm-core" + ], + "commit": "3b01dbd7a039c6c84fdf8c8ee53ba72090ee950a", + "sha256": "1gb3lnl3gvckbakc4fy22fcvif3xdfkdaw334xmp33phjb8gjqvj" + } + }, + { + "ename": "x509-mode", + "commit": "27145423eb4e68e006ef96868a35b99d119a3099", + "sha256": "15k3pxj3a2vaf64cl2xrzzlvzbqzqc29qyfd8brhq6yc69snr0vj", + "fetcher": "github", + "repo": "jobbflykt/x509-mode", + "unstable": { + "version": [ + 20180921, + 803 + ], + "deps": [ + "cl-lib" + ], + "commit": "9eb24c8721dcad9888b70213d06d770bc2386db7", + "sha256": "1gr099bn4qn2b5jasbs4r04pf6wqsnpf2632vzvshzm9nkz4qnhg" + } + }, + { + "ename": "x86-lookup", + "commit": "27757b9b5673f5581e678e8cad719138db654415", + "sha256": "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd", + "fetcher": "github", + "repo": "skeeto/x86-lookup", + "unstable": { + "version": [ + 20180528, + 1635 + ], + "deps": [ + "cl-lib" + ], + "commit": "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf", + "sha256": "19zgq7mcc3wx847xc911fibvphbsws99m2l3k54xdjp8mb5qfdzm" + }, + "stable": { + "version": [ + 1, + 2, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "609b2ba70dc5a246ac9b4b5f89eb5ef4331519bf", + "sha256": "19zgq7mcc3wx847xc911fibvphbsws99m2l3k54xdjp8mb5qfdzm" + } + }, + { + "ename": "xah-css-mode", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "1kkwfyf94v3ni3d4szy28v49p6f3hy8ww9mlris2vvgc726wy6hr", + "fetcher": "github", + "repo": "xahlee/xah-css-mode", + "unstable": { + "version": [ + 20190705, + 750 + ], + "commit": "ada8513eadca5c5797a384040acca2fceced3e26", + "sha256": "0x9zbck87s4cfk99i2kq1a0rf5lvy5bms58d75fd8gn7xz42cf9x" + } + }, + { + "ename": "xah-elisp-mode", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij", + "fetcher": "github", + "repo": "xahlee/xah-elisp-mode", + "unstable": { + "version": [ + 20190125, + 646 + ], + "commit": "a09c51e450bf4b39bdc3f4063c2946baec7ae3b1", + "sha256": "0hpdm6qns2i5zpavqq6zd7dyl9lxsxyic52jzjfisqv3gjrz8zpp" + } + }, + { + "ename": "xah-find", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq", + "fetcher": "github", + "repo": "xahlee/xah-find", + "unstable": { + "version": [ + 20190314, + 2039 + ], + "commit": "a39f1ff9a7cf56e92b56c6f179741569b9172a48", + "sha256": "16d2dh08dxdm06ik3sfx00filxqpy646vv1qh5kb36zs8ydzjg3z" + } + }, + { + "ename": "xah-fly-keys", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs", + "fetcher": "github", + "repo": "xahlee/xah-fly-keys", + "unstable": { + "version": [ + 20190223, + 716 + ], + "commit": "cc8b3bc26998bc29f82e87667c0d1ef90894ff66", + "sha256": "19q20mp5gzkm0ch5wz1jxajkb8cqmknsldlzb7jsa8hzyvl2mb7m" + } + }, + { + "ename": "xah-get-thing", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg", + "fetcher": "github", + "repo": "xahlee/xah-get-thing-or-selection", + "unstable": { + "version": [ + 20170821, + 1053 + ], + "commit": "e3ef069ea9fea3a092689d45c94c6211b51d0ea4", + "sha256": "0z9pflz99p2i7czccpzvw7bkbshfycpb6js9n8a12yhc1ndbz6z0" + } + }, + { + "ename": "xah-lookup", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc", + "fetcher": "github", + "repo": "xahlee/lookup-word-on-internet", + "unstable": { + "version": [ + 20181225, + 1942 + ], + "commit": "2cafbf3605a8f2ac4c56392c5b1f75adc3b11f24", + "sha256": "1xr2fp6dylv098g7m7x31j7jllr87545snab3qw5r32rzsa7fswz" + } + }, + { + "ename": "xah-math-input", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a", + "fetcher": "github", + "repo": "xahlee/xah-math-input", + "unstable": { + "version": [ + 20190206, + 1658 + ], + "commit": "af787f87815b85d56c35bbe0f22e03a31c8e670d", + "sha256": "05fqjyzz6c0nclhqc7qxs3hg99d3yxb3qjzn1wc26m6jcmm2l6zd" + } + }, + { + "ename": "xah-reformat-code", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "1sj407nbh4x586hvsq4ycr0ahhxin0wgfwdj0551cz8793wvjpzp", + "fetcher": "github", + "repo": "xahlee/xah-reformat-code", + "unstable": { + "version": [ + 20170821, + 1111 + ], + "commit": "7fec8b28e46b8cc2813fac5149e3bbb56c0aa6b1", + "sha256": "0mz47laig0p7fwwiv66x60f5jg0kh8zvjd1vg3nnn3xvk37lv2cw" + } + }, + { + "ename": "xah-replace-pairs", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x", + "fetcher": "github", + "repo": "xahlee/xah-replace-pairs", + "unstable": { + "version": [ + 20180508, + 249 + ], + "commit": "4d845cfbce32d45befd7c454e3476c3ce40d2b43", + "sha256": "1mkglrc8mbsjag3pc9zrmqa9x3n009hza1p1jvn3n97wjpc1qxlk" + } + }, + { + "ename": "xahk-mode", + "commit": "05eed39bae37cc8359d2cc678052cbbcc946e379", + "sha256": "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9", + "fetcher": "github", + "repo": "xahlee/xahk-mode.el", + "unstable": { + "version": [ + 20170821, + 1107 + ], + "commit": "02012b20603c00e3b2ef32159a690ed1e05d12c3", + "sha256": "09nakcfczb95vd48f8z77igmi1kbcblmgpzfzm9i7df4jcfkkh3c" + } + }, + { + "ename": "xbm-life", + "commit": "6cb4c55583338dafee61fd9c266d2ee7cae2b1ed", + "sha256": "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q", + "fetcher": "github", + "repo": "wasamasa/xbm-life", + "unstable": { + "version": [ + 20160103, + 1017 + ], + "commit": "dd6a98ac9ea81b681e68f6318fed47158e5d469e", + "sha256": "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "commit": "bde2b3730a02d237f7d95a8e3f3722f23f2d9201", + "sha256": "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6" + } + }, + { + "ename": "xcode-mode", + "commit": "845c731bed7dbe9c41c09e47e219299f17d0d489", + "sha256": "1d8r2bc7fiwma1lcrzd9gxhdpvyf2pc6kplx7nyr40ghsb9jlpiw", + "fetcher": "github", + "repo": "nicklanasa/xcode-mode", + "unstable": { + "version": [ + 20160907, + 1208 + ], + "deps": [ + "dash", + "multiple-cursors", + "s" + ], + "commit": "2ae4f512d6c601ea39d5ab785c2b5288eac24b59", + "sha256": "0pi85ylxvjj63cmibgvi493d4ybcp2blhlwgrwzn2hjz31jldh0y" + } + }, + { + "ename": "xcode-project", + "commit": "49b866ebf7e707bc74525f83dd5038e6e860fcef", + "sha256": "0igp30f6ypmp4l8zmdfpa5bza4avm7mq2gj8v7b3ii655v91n6vi", + "fetcher": "github", + "repo": "nhojb/xcode-project", + "unstable": { + "version": [ + 20181025, + 1244 + ], + "commit": "0bf9a4230fab7830350c750c39beda99ef74d72f", + "sha256": "0746f2niclmlx90skvdb1xdac0nqj8a9pd9ap8n89ckb5r6f9hbg" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f5548a26a1afc0b0d873556c25f6d8b6b9c2aa8c", + "sha256": "0xb1cvjaw7zjnw6c5aq315vvlc3cncris62jis44jb8s5r8gxcrv" + } + }, + { + "ename": "xcscope", + "commit": "068c7846e70b91ce7e88330937fc64a60281802a", + "sha256": "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w", + "fetcher": "github", + "repo": "dkogan/xcscope.el", + "unstable": { + "version": [ + 20190723, + 629 + ], + "commit": "f3e2c84bd92f5a78182cc8d81f5358979a6c241c", + "sha256": "0w2bxrnidladpzrd82z3w3gvjhajs71k5vjk2y03r09i9fwn2ykc" + }, + "stable": { + "version": [ + 1, + 5 + ], + "commit": "f3e2c84bd92f5a78182cc8d81f5358979a6c241c", + "sha256": "0w2bxrnidladpzrd82z3w3gvjhajs71k5vjk2y03r09i9fwn2ykc" + } + }, + { + "ename": "xkcd", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0gy2952zg1rq5gl10x7iwbchz5jibfcvikd3chifqbmil80wh6b5", + "fetcher": "github", + "repo": "vibhavp/emacs-xkcd", + "unstable": { + "version": [ + 20160419, + 1130 + ], + "deps": [ + "json" + ], + "commit": "66e928706fd660cfdab204c98a347b49c4267bdf", + "sha256": "0znhjwlpgg05g39b16ddgw3a71a93fn2dicfsxjkziffn2a95m0s" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "json" + ], + "commit": "2c538d41a9728939cc5e8292faa78ed50997877d", + "sha256": "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x" + } + }, + { + "ename": "xml+", + "commit": "244388d158efda6fe8c1362a65b89b352c444422", + "sha256": "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1", + "fetcher": "github", + "repo": "bddean/xml-plus", + "unstable": { + "version": [ + 20170727, + 2351 + ], + "deps": [ + "dash" + ], + "commit": "232fa863c08fc159b21dd58c39ea45dce3334895", + "sha256": "0b7v59dya346ds1wad0avrqhjimx5n9r3pcgqafagzf34hdcv3jy" + } + }, + { + "ename": "xml-quotes", + "commit": "ab315d783765730aceab43b4fd8c4872a1f1cc05", + "sha256": "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq", + "fetcher": "github", + "repo": "ndw/xml-quotes", + "unstable": { + "version": [ + 20151230, + 2249 + ], + "commit": "26db170e80b9295861227cdf970721b12539ed44", + "sha256": "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd" + } + }, + { + "ename": "xml-rpc", + "commit": "547d773e07d6229d2135d1b081b5401039ffad39", + "sha256": "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js", + "fetcher": "github", + "repo": "hexmode/xml-rpc-el", + "unstable": { + "version": [ + 20181002, + 1353 + ], + "commit": "8f624f8b964e9145acb504e4457c9510e87dd93c", + "sha256": "0xa54z52rsfl3n0xgmbycj4zazp8ksgdwcq56swzs6wp72zlalmj" + }, + "stable": { + "version": [ + 1, + 6, + 12 + ], + "commit": "0ab093d60140d19e31d217c8abdc7dbdac944486", + "sha256": "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9" + } + }, + { + "ename": "xmlgen", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "0c77la6kl02qkapfzbjmhac60f8p837kwg8bp0686ylxh5s31zsh", + "fetcher": "github", + "repo": "philjackson/xmlgen", + "unstable": { + "version": [ + 20170411, + 1317 + ], + "commit": "dba66681f0c5e621a9e70e8afb34903c9ffe93c4", + "sha256": "096i29v0badx0a6339h9ckdz78zj59gbjdp7vj7vhkq9d830392s" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "dba66681f0c5e621a9e70e8afb34903c9ffe93c4", + "sha256": "096i29v0badx0a6339h9ckdz78zj59gbjdp7vj7vhkq9d830392s" + } + }, + { + "ename": "xmlunicode", + "commit": "b636126a389a337a3685f9d0dcbca9bf8e784f20", + "sha256": "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p", + "fetcher": "github", + "repo": "ndw/xmlunicode", + "unstable": { + "version": [ + 20160319, + 1612 + ], + "commit": "f5d185da46414c0509ebd0aa0fab416becf94612", + "sha256": "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832" + } + }, + { + "ename": "xo", + "commit": "fd8cec754da662e4873186c23c1ba13c52cccbba", + "sha256": "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25", + "fetcher": "github", + "repo": "j-em/xo-emacs", + "unstable": { + "version": [ + 20160403, + 646 + ], + "commit": "72fcd867cfa332fdb82f732925cf8977e690af78", + "sha256": "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3" + } + }, + { + "ename": "xquery-mode", + "commit": "e8ea1c9e26963f290d912df21b81afd689543658", + "sha256": "13xrvygk7wdby6599q6yxw8cm45qqki8szrm49fc3b6pr6vzpidg", + "fetcher": "github", + "repo": "xquery-mode/xquery-mode", + "unstable": { + "version": [ + 20170214, + 1119 + ], + "deps": [ + "cl-lib" + ], + "commit": "1b655ccf83d02a7bd473d2cf02359ed60bdf7369", + "sha256": "1iprgfjrbx3fmqhkgjxdxnlzz2s6h895q270lhjrhkwgpphgna2c" + } + }, + { + "ename": "xquery-tool", + "commit": "cc71e5ea4a0ecb006f62617f5b6caadc9b3c77b2", + "sha256": "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0", + "fetcher": "github", + "repo": "paddymcall/xquery-tool.el", + "unstable": { + "version": [ + 20190523, + 1119 + ], + "commit": "7f0859cc722607240689e57e14de8e0719052016", + "sha256": "03vip403ifz9r4xkpiyi4mvb2plrn1f8906msdas84y13alhwnhq" + }, + "stable": { + "version": [ + 0, + 1, + 11 + ], + "commit": "7f0859cc722607240689e57e14de8e0719052016", + "sha256": "03vip403ifz9r4xkpiyi4mvb2plrn1f8906msdas84y13alhwnhq" + } + }, + { + "ename": "xref-js2", + "commit": "b5dab444ead98210b4ab3a6f9a61d013aed6d5b7", + "sha256": "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3", + "fetcher": "github", + "repo": "NicolasPetton/xref-js2", + "unstable": { + "version": [ + 20170530, + 826 + ], + "deps": [ + "js2-mode" + ], + "commit": "d5f93605405989529c2f66b542def6c32429b927", + "sha256": "1vzsw257xkqwlgfj8d5hnrirjhxzzs9d8ms40ihb2zwsxn70im53" + }, + "stable": { + "version": [ + 1, + 5 + ], + "deps": [ + "js2-mode" + ], + "commit": "7e2bc6a8dad08a493d11d3554f6374584846b9e6", + "sha256": "1mmd27miv32sl8cj7qhy09yfh7v1zgw7rv4fdwk96msvd4qfdkqd" + } + }, + { + "ename": "xresources-theme", + "commit": "35763febad20f29320d459394f810668db6c3353", + "sha256": "1vsbvg9w5g6y2qlb8ssn12ax31r7fbslfi9vcgvmjydcr8r1z0zs", + "fetcher": "github", + "repo": "cqql/xresources-theme", + "unstable": { + "version": [ + 20190108, + 1851 + ], + "commit": "5239acb51aa2dfa89a207e57012108d8fcf60562", + "sha256": "13pls0f85n5rpbrbqcmrmcznv9hxiaglrnwpzivrli33cba92fpm" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "5239acb51aa2dfa89a207e57012108d8fcf60562", + "sha256": "13pls0f85n5rpbrbqcmrmcznv9hxiaglrnwpzivrli33cba92fpm" + } + }, + { + "ename": "xterm-color", + "commit": "b34a42f1bf5641871da8ce2b688325023262b643", + "sha256": "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj", + "fetcher": "github", + "repo": "atomontage/xterm-color", + "unstable": { + "version": [ + 20190602, + 1201 + ], + "deps": [ + "cl-lib" + ], + "commit": "ff64312ad412c8b3e87a059139f288205d221e15", + "sha256": "1hl2n0mlnskz0f43dz41h11dkyw1pn3x9sq61w0qzjkkbbyz5cqk" + }, + "stable": { + "version": [ + 1, + 8 + ], + "deps": [ + "cl-lib" + ], + "commit": "a452ab38a7cfae97078062ff8885b5d74fd1e5a6", + "sha256": "02kpajb993yshhjhsizpfcbrcndyzkf4dqfipifhxxng50dhp95i" + } + }, + { + "ename": "xterm-keybinder", + "commit": "656f8e27b4e6055a634249f134a4fc0667fa0e95", + "sha256": "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz", + "fetcher": "github", + "repo": "yuutayamada/xterm-keybinder-el", + "unstable": { + "version": [ + 20160523, + 56 + ], + "deps": [ + "cl-lib", + "let-alist" + ], + "commit": "b29c4f700b0fa0c9f627f6725b36462b8fab06d6", + "sha256": "0ya7c73acwp29glwjd1hf19h8jij2afwmwq7a3h91qx5zdn09wvh" + } + }, + { + "ename": "xtest", + "commit": "378fe14c66072ecb899a074c56f95077dfc9667e", + "sha256": "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7", + "fetcher": "github", + "repo": "promethial/xtest", + "unstable": { + "version": [ + 20141214, + 1706 + ], + "deps": [ + "cl-lib" + ], + "commit": "2c2bdf32667506dd9ddf6eb311832add616bdf1c", + "sha256": "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy" + }, + "stable": { + "version": [ + 1, + 1, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "b227414d714e7baddef79bd306a43024b9a34d45", + "sha256": "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09" + } + }, + { + "ename": "xwidgete", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1v1dfykkb6nwjwz2623i6x1rl53z4457l6fpa4nv4krdqq79gl5d", + "fetcher": "github", + "repo": "tuhdo/xwidgete", + "unstable": { + "version": [ + 20171118, + 2116 + ], + "commit": "e4e8410fe32176df85b46234717824519443fb04", + "sha256": "04j4xwcdxlnrwxs89605zmwxszbi2j0z67v80651pshgnhj5p19i" + } + }, + { + "ename": "yabin", + "commit": "cc44b28e32ff9b35f60744a175c2d1e3036db8bc", + "sha256": "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17", + "fetcher": "github", + "repo": "d5884/yabin", + "unstable": { + "version": [ + 20140206, + 351 + ], + "commit": "db8c404507560ef9147fcce2b94cd706fbfa03b5", + "sha256": "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm" + } + }, + { + "ename": "yafolding", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1yb1rlxa5f1y1xjqs7ndr5jnf9j5cv0ccqdpbrx4l9xkm3npw9zl", + "fetcher": "github", + "repo": "zenozeng/yafolding.el", + "unstable": { + "version": [ + 20170305, + 317 + ], + "commit": "57c015ddd7c3454571c80825bc5391d7a10fa1d7", + "sha256": "144v8nn4l8ngfdrsgj5nrxp09391gnfrqf950y956cbmqvnlw7z8" + }, + "stable": { + "version": [ + 0, + 4, + 0 + ], + "commit": "57c015ddd7c3454571c80825bc5391d7a10fa1d7", + "sha256": "144v8nn4l8ngfdrsgj5nrxp09391gnfrqf950y956cbmqvnlw7z8" + } + }, + { + "ename": "yagist", + "commit": "97ea1250ffbf159d7870710b9348ef26616dbedb", + "sha256": "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd", + "fetcher": "github", + "repo": "mhayashi1120/yagist.el", + "unstable": { + "version": [ + 20160418, + 508 + ], + "deps": [ + "cl-lib" + ], + "commit": "dcdbd84f348414815d02f3da8a6ee0ac271632d4", + "sha256": "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17" + }, + "stable": { + "version": [ + 0, + 8, + 12 + ], + "deps": [ + "cl-lib" + ], + "commit": "97723a34750ccab5439eb9f6a2f67e4e0e234167", + "sha256": "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h" + } + }, + { + "ename": "yahoo-weather", + "commit": "ae5ca93d48a2d24787c3d4ed7ab3a65aa8023f4f", + "sha256": "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0", + "fetcher": "github", + "repo": "lujun9972/yahoo-weather-mode", + "unstable": { + "version": [ + 20181026, + 320 + ], + "commit": "1d2db14daa1706e03dfe4379397eb89234a56400", + "sha256": "01hydsjj427j4xyy8cwiz5kn67vwwi1qnih5qfyw04w29r9njh1n" + } + }, + { + "ename": "yahtzee", + "commit": "200169fdabce0ae3a2ecb6f4f3255c15ec3ed094", + "sha256": "1fnywiami9mszagmms27dmak6chcichdi7q70x5c6aimc4jb98jk", + "fetcher": "github", + "repo": "drdv/yahtzee", + "unstable": { + "version": [ + 20171022, + 1412 + ], + "commit": "785c36f6a19c011718f45d359609ada6da8bb5f0", + "sha256": "1nvlrrb1iyy6ll85kr8bls1l2pfs6rlnzlj122hmv3916d434iya" + } + }, + { + "ename": "yalinum", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf", + "fetcher": "github", + "repo": "tm8st/emacs-yalinum", + "unstable": { + "version": [ + 20130217, + 1043 + ], + "commit": "d3e0cbe3f4f5ca311e3298e684901d6fea3ad973", + "sha256": "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0" + } + }, + { + "ename": "yaml-imenu", + "commit": "71e7c2df9e34093ad2634d5a56133fa30126fb5c", + "sha256": "03r7020gyr96m1z7p947nb7z8szzlkqv21g1hm10sqa8qp7k0qli", + "fetcher": "github", + "repo": "knu/yaml-imenu.el", + "unstable": { + "version": [ + 20181001, + 627 + ], + "deps": [ + "yaml-mode" + ], + "commit": "78a383098807014d9e7f2941196d8271677158cd", + "sha256": "1f85m0h19wjb0xrwkxrh7vrpphm8l5nkrv82zsl097dqw3ijj3f1" + }, + "stable": { + "version": [ + 1, + 0, + 1 + ], + "deps": [ + "yaml-mode" + ], + "commit": "78a383098807014d9e7f2941196d8271677158cd", + "sha256": "1f85m0h19wjb0xrwkxrh7vrpphm8l5nkrv82zsl097dqw3ijj3f1" + } + }, + { + "ename": "yaml-mode", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc", + "fetcher": "github", + "repo": "yoshiki/yaml-mode", + "unstable": { + "version": [ + 20190625, + 1740 + ], + "commit": "5b4a0db384f996554454b5642e4531c502421de8", + "sha256": "18g064ardqi1f3xz7j6rs1x9fvv9sn0iq9vgid8c6qvxq7gwj00r" + }, + "stable": { + "version": [ + 0, + 0, + 14 + ], + "commit": "5b4a0db384f996554454b5642e4531c502421de8", + "sha256": "18g064ardqi1f3xz7j6rs1x9fvv9sn0iq9vgid8c6qvxq7gwj00r" + } + }, + { + "ename": "yaml-tomato", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1asy4nf759lcgksah2g7jvzwwlq9lxfkiji460csk5ycsv8aa99s", + "fetcher": "github", + "repo": "RadekMolenda/yaml-tomato", + "unstable": { + "version": [ + 20151123, + 753 + ], + "deps": [ + "s" + ], + "commit": "f9df1c9bdfcec629b03031b2d2032f9dc533cb14", + "sha256": "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy" + } + }, + { + "ename": "yandex-weather", + "commit": "5221cee4c89dde5cebd9cddb3b4e4c5814b898d7", + "sha256": "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md", + "fetcher": "github", + "repo": "abstractionlayer/yandex-weather.el", + "unstable": { + "version": [ + 20160311, + 2037 + ], + "commit": "6f823fd9e04ff9efb2aa65f333079e9f7e6e5b28", + "sha256": "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w" + } + }, + { + "ename": "yang-mode", + "commit": "bb42ab9b5f118baaf6766c478046552b686981a1", + "sha256": "0rl90xbcf3383ls95g1dixh2dr02kc4g60d324cqbb4h59wffp40", + "fetcher": "github", + "repo": "mbj4668/yang-mode", + "unstable": { + "version": [ + 20190507, + 724 + ], + "commit": "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded", + "sha256": "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm" + }, + "stable": { + "version": [ + 0, + 9, + 9 + ], + "commit": "4b4ab4d4a79d37d6c31c6ea7cccbc425e0b1eded", + "sha256": "0sqp8vwlymwl2dp6bh1gf8725j1fd9sqj4qfgva09rmkq8fdivfm" + } + }, + { + "ename": "yankpad", + "commit": "e64746d10f9e0158621a7c4dc41dc2eca6ad573c", + "sha256": "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4", + "fetcher": "github", + "repo": "Kungsgeten/yankpad", + "unstable": { + "version": [ + 20190617, + 1004 + ], + "commit": "f443ccb94579dcf28ac50ba4053fa7649e079665", + "sha256": "08khi9mp35pp5niz212vpm0yab577m9a23wl7gsymcfcif0drbza" + }, + "stable": { + "version": [ + 1, + 6 + ], + "commit": "d2ea6920a2444f1ce6f53947640446b8e16f84b7", + "sha256": "1lw2d25rwszk35bi3gm3bg0cb30b8c2bf3p32b89shnsmwylw52m" + } + }, + { + "ename": "yapfify", + "commit": "060c32d8e9fdc56fe702d265a935d74d76082f86", + "sha256": "0scl8lk1c5i7jp1qj5gg8zf3zyi8lkb57ijkmvcs4czzlyv3y9bm", + "fetcher": "github", + "repo": "JorisE/yapfify", + "unstable": { + "version": [ + 20180830, + 733 + ], + "commit": "b858225e1debe6734ee718e5c3c209152652a8b3", + "sha256": "16bpshqk47slcifx9v70ka202lnbspkcjdl5npxpf12abc1syh06" + }, + "stable": { + "version": [ + 0, + 0, + 6 + ], + "commit": "9e63a9135bd8dbfbee55819837a3aa0d119c5e6f", + "sha256": "1bf09hah2g8x0jbrdh4fm1v01qjymiv38yvv8a5qmfpv5k93lcrc" + } + }, + { + "ename": "yara-mode", + "commit": "ef22d2dad1bae62721710bbff4b7228204d7c425", + "sha256": "12j25nbfg65bkil4wv6f27sszlj3jm6h0zczr0v26xr5syppis17", + "fetcher": "github", + "repo": "binjo/yara-mode", + "unstable": { + "version": [ + 20190423, + 710 + ], + "commit": "cd8093b1bc4fc260462f5284b157008fefa84880", + "sha256": "04pl0kbx5g8wz00x7bhpi9w29wmxdmy5dhdq3j4rk3nys5njxr8v" + } + }, + { + "ename": "yard-mode", + "commit": "afad2677f901b8d27922389afb1d235d5c8edc39", + "sha256": "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx", + "fetcher": "github", + "repo": "pd/yard-mode.el", + "unstable": { + "version": [ + 20170817, + 1237 + ], + "commit": "ba74a47463b0320ae152bd42a7dd7aeecd7b5748", + "sha256": "0zry3p66bvrk32icnd6kkk8y5rrr8crnqjp6wlp889c8c7wm00n1" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "78792f6a6fbff4f1bc955f494fdb11378e7f8095", + "sha256": "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y" + } + }, + { + "ename": "yari", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h", + "fetcher": "github", + "repo": "hron/yari.el", + "unstable": { + "version": [ + 20151128, + 739 + ], + "commit": "a2cb9656ee5dfe1fc2ee3854f3079a1c8e85dbe9", + "sha256": "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf" + } + }, + { + "ename": "yarn-mode", + "commit": "860fa2a8fdb22be374fa64a5277af3ab484a047a", + "sha256": "08a3lrz670jsf531mn1hwhh7fg5dby6i749cscd6d4dyvkzpz5dg", + "fetcher": "github", + "repo": "anachronic/yarn-mode", + "unstable": { + "version": [ + 20170709, + 1937 + ], + "commit": "998b408d6be05fd1c3a9fd8db6ffaab3bf86d06b", + "sha256": "09mrcv30n6zmgnwgl5pb2cyk6122a0ng1xg20grpmlwbq3qlr424" + }, + "stable": { + "version": [ + 1, + 0 + ], + "commit": "99891000efe31214b065fa9446cd5e68c5c42ed8", + "sha256": "0cg06ba9yfgjzprq78cvhvvl06av0p2vhnmynddzbpgjgjnwskfy" + } + }, + { + "ename": "yascroll", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f", + "fetcher": "github", + "repo": "m2ym/yascroll-el", + "unstable": { + "version": [ + 20170315, + 1906 + ], + "deps": [ + "cl-lib" + ], + "commit": "fe4494e5f4faf2832e665c7de0fed99cdbb39478", + "sha256": "09y8phmvqdwp1k9w84rf6p609jrg0mhgx6akwda8rsvxrrbsh6j4" + }, + "stable": { + "version": [ + 0, + 1 + ], + "commit": "0a8b531b3a3c8afe7235c8c212e08bfe2021a629", + "sha256": "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz" + } + }, + { + "ename": "yasnippet", + "commit": "5d1927dc3351d3522de1baccdc4ce200ba52bd6e", + "sha256": "1r37vz5b8nj6hr6c2ki9fdbrs3kkb4zwimh8r4ixm10kdkk5jqds", + "fetcher": "github", + "repo": "joaotavora/yasnippet", + "unstable": { + "version": [ + 20190724, + 1204 + ], + "deps": [ + "cl-lib" + ], + "commit": "d91dd66f2aed9bbaef32813a68b105ea77e83890", + "sha256": "157ja4fki83dzab2ysd74dmbv83xsrccq59x6d8ilby9fzkizybr" + }, + "stable": { + "version": [ + 0, + 13, + 0 + ], + "deps": [ + "cl-lib" + ], + "commit": "5a29fe67d70de3749e30ebb37206395b4d1a51a8", + "sha256": "0fkkplycrw8f8r30hjjxl1wm7p2irq2ipzzc1g7cc52abaal796p" + } + }, + { + "ename": "yasnippet-lean", + "commit": "e1cdcf88a7ff90570d8b09901de8b8b8a153c52e", + "sha256": "0mhlg6ya4b232hgq5wh5w9h0ww35qi9br4501sc379zqwflvqcm7", + "fetcher": "github", + "repo": "leanprover-community/yasnippet-lean", + "unstable": { + "version": [ + 20190609, + 454 + ], + "deps": [ + "yasnippet" + ], + "commit": "2d57b8ad5c69a1886701d42ca5a8de6bacb170cc", + "sha256": "1d2n3q36s1mri1lmazld6pabx3929kqivkgq6b8qaya04ri8ds28" + } + }, + { + "ename": "yasnippet-snippets", + "commit": "42490bbdac871bce302fbc9a0488ff7de354627e", + "sha256": "0daawvlw78ya38bbi95swjq8qk5jf5shsyv164m81y2gd8i5c183", + "fetcher": "github", + "repo": "AndreaCrotti/yasnippet-snippets", + "unstable": { + "version": [ + 20190725, + 1049 + ], + "deps": [ + "yasnippet" + ], + "commit": "f5dbb814767ac4e6398144b6d372f2effcc9c4a1", + "sha256": "1gj5y4c8fxq578x3d0n3yhkwaab6lvsgvmqi1g65ynm5xdlxvm5w" + }, + "stable": { + "version": [ + 0, + 13 + ], + "deps": [ + "yasnippet" + ], + "commit": "7e94b9e948e16b3b1778aacb05c65e75d81fc188", + "sha256": "0pdfdyxl440ngx77j2b9zymh50r9pqzway2maad64ijaz9l2g2bm" + } + }, + { + "ename": "yatemplate", + "commit": "8ba3cdb74f121cbf36b6d9d5a434c363905ce526", + "sha256": "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q", + "fetcher": "github", + "repo": "mineo/yatemplate", + "unstable": { + "version": [ + 20180617, + 952 + ], + "deps": [ + "yasnippet" + ], + "commit": "4f4fca9f04f7088c98aa195cf33635a35a6055cb", + "sha256": "04nd9fcp0ff2sjhwrq4nqjicc50m7498vq1qzw2cn5c5gaqmzff8" + }, + "stable": { + "version": [ + 3, + 0 + ], + "deps": [ + "yasnippet" + ], + "commit": "c1de31d2b16d98af197a4392b6481346ab4e8d57", + "sha256": "0lp5ym2smmvmlxpdyv4kh75qsz8dsdz9afd8nxaq8y4fazzabblx" + } + }, + { + "ename": "yatex", + "commit": "9854c39fc1889891fe460d0d5ac9224de3f6c635", + "sha256": "1qbqdsqf5s61hyyzx84csnby242n5sdcmcw55pa8r16j8kyzgrc0", + "fetcher": "hg", + "url": "https://www.yatex.org/hgrepos/yatex", + "unstable": { + "version": [ + 20190525, + 548 + ], + "commit": "714f3527b4a16daf7a811dcc7b344ac989064f52", + "sha256": "12sqy2wrlgzi71vn3q5h47z1i6l6di3pnr4pmn0ixdp500gvy2fv" + } + }, + { + "ename": "yaxception", + "commit": "1da5261081fc66910d935b81e52391c071e52379", + "sha256": "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58", + "fetcher": "github", + "repo": "aki2o/yaxception", + "unstable": { + "version": [ + 20150105, + 1452 + ], + "commit": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "commit": "4e94cf3e0b9b5631b0e90eb4b7de597ee7185875", + "sha256": "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8" + } + }, + { + "ename": "ycm", + "commit": "44e168f757cb51249db2deb9f781eff99cf6fb7c", + "sha256": "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc", + "fetcher": "github", + "repo": "neuromage/ycm.el", + "unstable": { + "version": [ + 20150822, + 1836 + ], + "commit": "4da8a14abcd0f4fa3235042ade2e12b5068c0601", + "sha256": "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj" + } + }, + { + "ename": "ycmd", + "commit": "4b25378540c64d0214797348579671bf2b8cc696", + "sha256": "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna", + "fetcher": "github", + "repo": "abingham/emacs-ycmd", + "unstable": { + "version": [ + 20190416, + 807 + ], + "deps": [ + "cl-lib", + "dash", + "deferred", + "let-alist", + "pkg-info", + "request", + "request-deferred", + "s" + ], + "commit": "6f4f7384b82203cccf208e3ec09252eb079439f9", + "sha256": "1bl86x8nqw4jqzb8pfm6hm316hmk1bx8v3qz7wq9z92hb67ck2kn" + }, + "stable": { + "version": [ + 1, + 2 + ], + "deps": [ + "cl-lib", + "dash", + "deferred", + "let-alist", + "pkg-info", + "request", + "request-deferred", + "s" + ], + "commit": "d042a673b4d717c3ca9d641f120bfe16c994c740", + "sha256": "0rxw86xi9xgr0fp6wmd6hgqgqr9flk7p4lcr0052jhlwknj1nrx0" + } + }, + { + "ename": "ydk-mode", + "commit": "865b9ee86ca28fc1cedc0a432a292400184711ae", + "sha256": "1z9digf39d7dd736svp0cy6773l3nklzc263q23gwfcg0jswbdyg", + "fetcher": "github", + "repo": "jacksonrayhamilton/ydk-mode", + "unstable": { + "version": [ + 20170113, + 921 + ], + "commit": "f3f125b29408e0b0a34fec27dcb7c02c5dbfd04e", + "sha256": "0ndmbswrv8vyw18zhbmjr11400l546zqaj7dzfvwb5rhdv2d0abi" + }, + "stable": { + "version": [ + 1, + 0, + 0 + ], + "commit": "f3f125b29408e0b0a34fec27dcb7c02c5dbfd04e", + "sha256": "0ndmbswrv8vyw18zhbmjr11400l546zqaj7dzfvwb5rhdv2d0abi" + } + }, + { + "ename": "yequake", + "commit": "194968f221b2f60042a3684e1ca3e1c18adbde8e", + "sha256": "1ps5r6k2903w9qbr3aszw3l3mgcg2zlnxlzbak99314if5k6aiak", + "fetcher": "github", + "repo": "alphapapa/yequake", + "unstable": { + "version": [ + 20190114, + 1955 + ], + "deps": [ + "dash" + ], + "commit": "4c093fa6ca3b8953ee509c7d8f434984d55ec802", + "sha256": "0y9dhvfp31yn8cgqslk647b8fs1sv0kwwnnjakjhx2zm3ljld3s0" + } + }, + { + "ename": "yesql-ghosts", + "commit": "3c652657be0f9b9dcb236e01c3abd2fd717190d7", + "sha256": "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf", + "fetcher": "github", + "repo": "magnars/yesql-ghosts", + "unstable": { + "version": [ + 20150220, + 1237 + ], + "deps": [ + "cider", + "dash", + "s" + ], + "commit": "8f1faf0137b85a5072d13e1240a463d9a35ce2bb", + "sha256": "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m" + }, + "stable": { + "version": [ + 0, + 1, + 0 + ], + "deps": [ + "cider", + "dash", + "s" + ], + "commit": "bd834e97f263f9f981758c1462bc6297a83ca852", + "sha256": "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd" + } + }, + { + "ename": "yoficator", + "commit": "5156f01564978718dd99ab3a54f19b6512de5c3c", + "sha256": "0b6lv6wk5ammhb9rws9kig02wkm84i5avm7a1vd4sb7wkgm9nj9r", + "fetcher": "gitlab", + "repo": "link2xt/yoficator", + "unstable": { + "version": [ + 20190509, + 1620 + ], + "commit": "fa914f9648515bca54b5e558ca57d2b65fa57491", + "sha256": "0mgkwjprcj47zn8kd3ppqnbnmnn00cvnbs0r0h5951966vshh13f" + } + }, + { + "ename": "yoshi-theme", + "commit": "6e9a549e31c4097ee24b4bff12ec5d20d3beac68", + "sha256": "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv", + "fetcher": "github", + "repo": "ryuslash/yoshi-theme", + "unstable": { + "version": [ + 20190505, + 728 + ], + "commit": "70365870ff823b954aa85972217d8f116c45d939", + "sha256": "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn" + }, + "stable": { + "version": [ + 6, + 2, + 0 + ], + "commit": "70365870ff823b954aa85972217d8f116c45d939", + "sha256": "1myrvw0brl6cn3gljbplgxj3mr3mzicfymg7sir8hrk4d5g498yn" + } + }, + { + "ename": "youdao-dictionary", + "commit": "712bdf83f71c2105754f9b549a889ffc5b7ba565", + "sha256": "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym", + "fetcher": "github", + "repo": "xuchunyang/youdao-dictionary.el", + "unstable": { + "version": [ + 20180714, + 414 + ], + "deps": [ + "chinese-word-at-point", + "names", + "popup", + "pos-tip" + ], + "commit": "9496ea3ba8aa999db3dbde88d6aa37f3579d8dea", + "sha256": "0kn07ksjdrwl0m1wiac83ljg5drrmyf65gxm4m6r3iz1awd1akbb" + }, + "stable": { + "version": [ + 0, + 4 + ], + "deps": [ + "chinese-word-at-point", + "names", + "popup" + ], + "commit": "a6e44e4fb93cc1b9f1067f10cf854b0bfc3fe732", + "sha256": "1m4zri7kiw70062w2sp4fdqmmx2vmjisamjwmjdg6669dzvnpawq" + } + }, + { + "ename": "z3-mode", + "commit": "e056fb14b46b97ff31b1db3b8bd31e395a54cd87", + "sha256": "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd", + "fetcher": "github", + "repo": "zv/z3-mode", + "unstable": { + "version": [ + 20151120, + 2255 + ], + "deps": [ + "flycheck" + ], + "commit": "163dc01d59e9880b4dc188d4e1ad84d6c0c852e1", + "sha256": "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z" + } + }, + { + "ename": "zeal-at-point", + "commit": "4bcb472b6b18b75acd9c68e1fc7ecce4c2a40d8f", + "sha256": "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw", + "fetcher": "github", + "repo": "jinzhu/zeal-at-point", + "unstable": { + "version": [ + 20180131, + 2354 + ], + "commit": "0fc3263f44e95acd3e9d91057677621ce4d297ee", + "sha256": "0aq9w9pjyzdgf63hwffhph6k43vv3cxmffklrjkjj3hqv796k8yd" + } + }, + { + "ename": "zel", + "commit": "25b445a1dea5e8f1042bed6b5372471c25129fd8", + "sha256": "0fwc1fghsw2rg4fv10kgc9d6rhbq20xa9diqcvp1f1cqs12rfhpd", + "fetcher": "github", + "repo": "rudolfochrist/zel", + "unstable": { + "version": [ + 20171014, + 832 + ], + "deps": [ + "frecency" + ], + "commit": "9dae2d212224d1deae1f62561fa8e4d689fd09f2", + "sha256": "1518wp3zjfdvzz5r22cjgn735c4yxr345qzj40b5agww4dsxmwmp" + }, + "stable": { + "version": [ + 0, + 1, + 2 + ], + "deps": [ + "frecency" + ], + "commit": "1d938ac01a42e7a985a3f92f5e97bc09e057676e", + "sha256": "1hk84x4aqcfd3jggk9san1v4kr58v2zhikbv9sh3dcii6x5w2nv0" + } + }, + { + "ename": "zen-and-art-theme", + "commit": "692cfa0e9edbc1b7114e2ae2f36bef34b20ad17c", + "sha256": "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2", + "fetcher": "github", + "repo": "developernotes/zen-and-art-theme", + "unstable": { + "version": [ + 20120622, + 1437 + ], + "commit": "a7226cbce0bca2501d69a620cb2aeabfc396c232", + "sha256": "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl" + } + }, + { + "ename": "zenburn-theme", + "commit": "091dcc3775ec2137cb61d66df4e72aca4900897a", + "sha256": "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9", + "fetcher": "github", + "repo": "bbatsov/zenburn-emacs", + "unstable": { + "version": [ + 20190715, + 915 + ], + "commit": "7e22834dea334abe30f170bef54bbeeca566355c", + "sha256": "0l5fil8950471ffgr0aq6zrj4kn23vw0j5if07am703l1qmd3yhz" + }, + "stable": { + "version": [ + 2, + 6 + ], + "commit": "4c75edfe7862c903b2584266284ed951004f5b62", + "sha256": "1n87r5hs7h5r8dgfid66skpzcypl9hssr9m3npp916g6jfsi782f" + } + }, + { + "ename": "zencoding-mode", + "commit": "e7f2ebb9d860aa4f0797cdaadaa35fb3f5c4460b", + "sha256": "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7", + "fetcher": "github", + "repo": "rooney/zencoding", + "unstable": { + "version": [ + 20140213, + 822 + ], + "commit": "58e42af182c98cb9941d27cd042d227fbf4e146c", + "sha256": "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr" + } + }, + { + "ename": "zenity-color-picker", + "commit": "8b4c6b03c5ff78ce327dcf66b175e266bbc53dbf", + "sha256": "0rim1mbhlb2lj302c58rs5l7bd168nxg1jpir6cbpf8rp0k35ldb", + "fetcher": "git", + "url": "https://bitbucket.org/Soft/zenity-color-picker.el", + "unstable": { + "version": [ + 20160302, + 1154 + ], + "commit": "4f4f46676a461ebc881487fb70c8c181e323db5e", + "sha256": "14i2k52qz77dv04w39fyp9hfq983fwa3803anqragk608xgwpf4s" + } + }, + { + "ename": "zeno-theme", + "commit": "9703a222f51dc283e9462cceb5afeb009f7401dc", + "sha256": "0bqv1gdqlh7i48ckpgss6h9mmc9hpkqlb94aam0kkq2ga125gmwc", + "fetcher": "github", + "repo": "jbharat/zeno-theme", + "unstable": { + "version": [ + 20181027, + 118 + ], + "commit": "0914c4a5b1b9499e7f1ca5699b1c3ea2f4be3f1a", + "sha256": "1zl1ks7n35i9mn5w7ac3j15820fbgpbcmmysv25crvi4g9z94mqj" + } + }, + { + "ename": "zephir-mode", + "commit": "5bd901c93ce7f64de6082e801327adbd18fd4517", + "sha256": "0nxm6w7z89q2vvf3bp1p6hb6f2axv9ha85jyiv4k02l46sjprf4j", + "fetcher": "github", + "repo": "sergeyklay/zephir-mode", + "unstable": { + "version": [ + 20170918, + 425 + ], + "deps": [ + "cl-lib", + "pkg-info" + ], + "commit": "1db4071a014a796120b5c3d0a7f91eb77359eb10", + "sha256": "0kqnihir4rr8ckzz3wn5sz3qwgnvpa8bqw767khn887bpf7qsmiq" + }, + "stable": { + "version": [ + 0, + 3, + 3 + ], + "commit": "243f0fb7fd1dfebf0f0bdf94046b72d1bea4f66c", + "sha256": "0jydy2zcbksi7db7bvfhgdh08np8k4a1yd6q2wq6m3ll2y3zd0w2" + } + }, + { + "ename": "zerodark-theme", + "commit": "d00b78ead693e844e35c760fe2c39b8ed6cb0d81", + "sha256": "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9", + "fetcher": "github", + "repo": "NicolasPetton/zerodark-theme", + "unstable": { + "version": [ + 20190528, + 923 + ], + "deps": [ + "all-the-icons" + ], + "commit": "df22536a244293591575e56970bf83814faa7c14", + "sha256": "0pfyd1iqs7l2ngwgvj9n0r9k1px7yl16h8n502xdyf0pprxcs4p6" + }, + "stable": { + "version": [ + 4, + 5 + ], + "deps": [ + "all-the-icons", + "flycheck", + "magit" + ], + "commit": "ceb46240636865e86f3fe26906957943ba7bd73c", + "sha256": "0nnlxzsmhsbszqigcyxak9i1a0digrd13gv6v18ck4h760mihh1m" + } + }, + { + "ename": "zig-mode", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1kg1x0l65nqqpzn5np41ya9khr1yqcg5ki7z3jw0g4wxdbz7lrbx", + "fetcher": "github", + "repo": "ziglang/zig-mode", + "unstable": { + "version": [ + 20190109, + 217 + ], + "commit": "c2deea85dd65c3e73c2771c56a998cbdeb9ff717", + "sha256": "10k7i2fj3imbq09fkcgd4kjp7n1dn46119jqrd6kbx5inlkq1782" + } + }, + { + "ename": "zlc", + "commit": "cae2ac3513e371a256be0f1a7468e38e686c2487", + "sha256": "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0", + "fetcher": "github", + "repo": "mooz/emacs-zlc", + "unstable": { + "version": [ + 20151011, + 157 + ], + "commit": "4dd2ba267ecdeac845a7cbb3147294ee7daa25f4", + "sha256": "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x" + } + }, + { + "ename": "zmq", + "commit": "72f4dcc2723de826bf1af7235ac6d9119a243c63", + "sha256": "14bbh00a58xgxyxl8zjxl57rf6351fnwsnk4cvvy341fvf86dklc", + "fetcher": "github", + "repo": "dzop/emacs-zmq", + "unstable": { + "version": [ + 20190613, + 138 + ], + "deps": [ + "cl-lib" + ], + "commit": "6120251d86bc85138305c1bf02b1000dc435fdb5", + "sha256": "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8" + }, + "stable": { + "version": [ + 0, + 10, + 10 + ], + "deps": [ + "cl-lib" + ], + "commit": "6120251d86bc85138305c1bf02b1000dc435fdb5", + "sha256": "0ngxm5mm0kqgvn8977ryrngamx0khzlw86d8vz5s0jhm2kgwnqp8" + } + }, + { + "ename": "znc", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1017dlzbpb3ww0zb370bgsdrzr4kcc72ddby9j63d95chz2jg0hb", + "fetcher": "github", + "repo": "sshirokov/ZNC.el", + "unstable": { + "version": [ + 20160627, + 2032 + ], + "deps": [ + "cl-lib" + ], + "commit": "ce468d185e4a949c45fdd7586313144bc69d4fe5", + "sha256": "0jh11lbzsndsz9i143av7510417nzwy4j3mmpq7cjixfbmnxdq06" + } + }, + { + "ename": "zombie", + "commit": "0da12385908c0e2ecd087ea7572fedf0a2dcf03f", + "sha256": "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv", + "fetcher": "github", + "repo": "zk-phi/zombie", + "unstable": { + "version": [ + 20141222, + 1616 + ], + "commit": "ff8cd1b4cdbb4b0b9b8fd1ec8f6fb93eba249345", + "sha256": "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg" + } + }, + { + "ename": "zombie-trellys-mode", + "commit": "e66db80ab82a69542688cd57c9e0ec10e6616c87", + "sha256": "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv", + "fetcher": "github", + "repo": "david-christiansen/zombie-trellys-mode", + "unstable": { + "version": [ + 20150304, + 1448 + ], + "deps": [ + "cl-lib", + "haskell-mode" + ], + "commit": "7f0c45fdda3a44c3b6d1762d116abb1421b8fba2", + "sha256": "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01" + }, + "stable": { + "version": [ + 0, + 2, + 1 + ], + "deps": [ + "cl-lib", + "haskell-mode" + ], + "commit": "9e99d444a387dd1634cab62ef802683f5bf5d907", + "sha256": "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz" + } + }, + { + "ename": "zone-nyan", + "commit": "855ea20024b606314f8590129259747cac0bcc97", + "sha256": "1g7i5p26gb9gny64b84x6zqml7fly5q9aykmc6l6c1kfl6pqxs94", + "fetcher": "github", + "repo": "wasamasa/zone-nyan", + "unstable": { + "version": [ + 20170818, + 1644 + ], + "deps": [ + "esxml" + ], + "commit": "4b1f8d95f130946718d52806489ffe2762aebfdc", + "sha256": "1axq4ch7garlfrybq9kgv6x7d8y4dw5y9pqbqlqvlwf4xmdrvzmm" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "deps": [ + "esxml" + ], + "commit": "e36875d83ad3dce14f23864688959fa0d98ba410", + "sha256": "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy" + } + }, + { + "ename": "zone-rainbow", + "commit": "c8f678d32c8cd1bcc8ec042e7e68ca3a5259da65", + "sha256": "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j", + "fetcher": "github", + "repo": "kawabata/zone-rainbow", + "unstable": { + "version": [ + 20160120, + 1334 + ], + "commit": "2ba4f1a87c69c4712124ebf12c1f3ea171e1af36", + "sha256": "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0" + } + }, + { + "ename": "zone-select", + "commit": "ecad1475d9a04ddd84f86ed950f742f68bcf71f8", + "sha256": "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz", + "fetcher": "github", + "repo": "kawabata/zone-select", + "unstable": { + "version": [ + 20160118, + 1419 + ], + "deps": [ + "dash" + ], + "commit": "bf30da12f1625fe6563448fccf3c506acad10af7", + "sha256": "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1" + } + }, + { + "ename": "zone-sl", + "commit": "11c976519e0cb320e48f40f4d735e557b3dfc1b9", + "sha256": "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3", + "fetcher": "github", + "repo": "kawabata/zone-sl", + "unstable": { + "version": [ + 20160201, + 1210 + ], + "commit": "7ec22e3661c6348382f9fc39a9d0063dbd2352ff", + "sha256": "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap" + } + }, + { + "ename": "zoom", + "commit": "3fe094c99756ad29eda9bc51f31bb70c4ddc4131", + "sha256": "09bk0nnfj72an2b3rravd6qp21gdgcm1m55qnf2r8rzbgqymq5ls", + "fetcher": "github", + "repo": "cyrus-and/zoom", + "unstable": { + "version": [ + 20190523, + 1300 + ], + "commit": "578295532fb1c4ad2a2e95894e65cce02f812b54", + "sha256": "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp" + }, + "stable": { + "version": [ + 0, + 2, + 2 + ], + "commit": "578295532fb1c4ad2a2e95894e65cce02f812b54", + "sha256": "1qcni15mps7w9waail21x0fy2rrd5y8cm4yzi8rs2ar4vqrjbyyp" + } + }, + { + "ename": "zoom-window", + "commit": "8a55cc66cc0deb1c24023f638b8e920c9d975859", + "sha256": "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3", + "fetcher": "github", + "repo": "syohex/emacs-zoom-window", + "unstable": { + "version": [ + 20170302, + 827 + ], + "commit": "cd6ecc103fc30b171bda7daf1f44a550854d0dbf", + "sha256": "1rfhdzwyag32s15ysmf75976nvkx995581afaa4ychj45vwnaqfm" + }, + "stable": { + "version": [ + 0, + 5 + ], + "commit": "eefe36d26e04a9f89aad27671d1f06e9d4736ac6", + "sha256": "08splg49ncgfsap3ivpc974wmg22ikshwv33l0i6advjjv9cskhm" + } + }, + { + "ename": "zop-to-char", + "commit": "b0a9277f1a5f1aef8886e739c73dea91d3f81dc5", + "sha256": "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga", + "fetcher": "github", + "repo": "thierryvolpiatto/zop-to-char", + "unstable": { + "version": [ + 20160212, + 1554 + ], + "deps": [ + "cl-lib" + ], + "commit": "00152aa666354b27e56e20565f186b363afa0dce", + "sha256": "1s4adi9hyhxn7ynx195mgg10h817hxdmlzlp09633bj0llr1mjn3" + }, + "stable": { + "version": [ + 1, + 1 + ], + "deps": [ + "cl-lib" + ], + "commit": "816ea90337db0545a2f0a5079f4d7b3a2822af7d", + "sha256": "14waf3g7b92k3qd5088w4pn0wcspxjfkbswlzf7nnkjliw1yh0kf" + } + }, + { + "ename": "zossima", + "commit": "b7566fe6fffc38981ea33582d783c58f3842fe28", + "sha256": "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb", + "fetcher": "github", + "repo": "technomancy/zossima", + "unstable": { + "version": [ + 20121124, + 35 + ], + "deps": [ + "inf-ruby" + ], + "commit": "991676635c374d2a12714dcf48c1ce2d6f97a375", + "sha256": "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39" + } + }, + { + "ename": "zotelo", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36", + "fetcher": "github", + "repo": "vspinu/zotelo", + "unstable": { + "version": [ + 20160602, + 949 + ], + "deps": [ + "cl-lib" + ], + "commit": "d9dc089b9adfcc70a63f2a84269a12eb7cb4c748", + "sha256": "1gff44nwiqhqhppwmsn38njkph4g9bw669p95m8p2avb7x7kiybl" + }, + "stable": { + "version": [ + 1, + 3 + ], + "commit": "56eaaa76f80bd15710e68af4a1e585394af987d3", + "sha256": "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr" + } + }, + { + "ename": "zotxt", + "commit": "b633453e77a719f6b6b6564e66c1c1260db38aa6", + "sha256": "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5", + "fetcher": "gitlab", + "repo": "egh/zotxt-emacs", + "unstable": { + "version": [ + 20180518, + 147 + ], + "deps": [ + "request-deferred" + ], + "commit": "23a4a9f74a658222027d53a9a83cd4bcc583ca8b", + "sha256": "09fq3w9yk9kn6bz7y9kgpiw612dvj3yzsdk734js6zgb0p8lfd2c" + }, + "stable": { + "version": [ + 0, + 1, + 34 + ], + "deps": [ + "request-deferred" + ], + "commit": "43c0c6d23b31126bac6b14bb85608180fd9c866f", + "sha256": "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp" + } + }, + { + "ename": "zoutline", + "commit": "4a26341f491145938aee9b531cd861200bfa2f6d", + "sha256": "1yyww84b58ymbx0w1gkgd0csr0cwlghdmnxk0jbzwc45g9g42k1m", + "fetcher": "github", + "repo": "abo-abo/zoutline", + "unstable": { + "version": [ + 20190520, + 1819 + ], + "commit": "63756846f8540b6faf89d885438186e4fe1c7d8a", + "sha256": "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx" + }, + "stable": { + "version": [ + 0, + 2, + 0 + ], + "commit": "63756846f8540b6faf89d885438186e4fe1c7d8a", + "sha256": "1w0zh6vs7klgivq5r030a82mcfg1zwic4x3fimyiqyg5n8p67hyx" + } + }, + { + "ename": "zpl-mode", + "commit": "0bf11cd6ceb2633f968134d80f37d32f91c48227", + "sha256": "0wqhwzanvc1gpnykfqzi02p9zx0c1n6gnavg5dv1mlmc8x0hr67s", + "fetcher": "github", + "repo": "ax487/zpl-mode", + "unstable": { + "version": [ + 20180906, + 1059 + ], + "commit": "35e7e23c6baf31b5e65dd7405c8ab9b13c70637e", + "sha256": "147d7ylpk77zcsjim0my6cbyms28yd7mfaigmzm009jc1bn4r7f5" + } + }, + { + "ename": "zpresent", + "commit": "3aae38ad54490fa650c832fb7d22e2c73b0fb060", + "sha256": "0316qyspmdbg94aw620133ilh8kfpr3db1p2cifgccgcacjv3v5j", + "fetcher": "bitbucket", + "repo": "zck/zpresent.el", + "unstable": { + "version": [ + 20180605, + 438 + ], + "deps": [ + "dash", + "org-parser", + "request" + ], + "commit": "55fc14b66e2ea506247a4e7dd622a9dfe5545c4b", + "sha256": "17wkhl1a7jmg4ks011lf5h4f2vbhf8dl6vgzdzlmljk15f9hmw35" + } + }, + { + "ename": "zprint-mode", + "commit": "125f6358dd8d715b61b12de5d39215453e53ea10", + "sha256": "07ziwnk1c620s7rp42fylpw5vgin0p7aapp3g8aif60vcb8g3m7y", + "fetcher": "github", + "repo": "pesterhazy/zprint-mode.el", + "unstable": { + "version": [ + 20181111, + 1945 + ], + "commit": "e1a7b7fe48e36e5cdf1269ab394d3cf779fdab58", + "sha256": "1ayw2ni49fvks6xaiqkvyn3rbkfw49kxhrnd2vnvcn7qhajbh435" + } + }, + { + "ename": "ztree", + "commit": "f151e057c05407748991f23c021e94c178b87248", + "sha256": "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20", + "fetcher": "github", + "repo": "fourier/ztree", + "unstable": { + "version": [ + 20180512, + 1850 + ], + "deps": [ + "cl-lib" + ], + "commit": "c54425a094353ec40a8179f9eab3596f76c6cf94", + "sha256": "0j8fpxds8m1zi04nrs8vv21091abvh4n8ab76f1sgdxnp4l5cfb0" + } + }, + { + "ename": "zweilight-theme", + "commit": "6440f81aed1fcddcaf7afeedb74520e605211986", + "sha256": "1j8skn9hz1zkpdg7q0njv5b50cbvrixjjmkp43p58gx98q02p0kq", + "fetcher": "github", + "repo": "philiparvidsson/Zweilight-Theme-for-Emacs", + "unstable": { + "version": [ + 20170113, + 605 + ], + "commit": "7f45ab9e23164d65538edb2beb9692ecdc24c31e", + "sha256": "142ixk47a1x6xz8ibavzq7jxppjc2qvfwbly4sdyiwfpznbi4l3a" + } + }, + { + "ename": "zygospore", + "commit": "7fabdb05de9b8ec18a3a566f99688b50443b6b44", + "sha256": "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj", + "fetcher": "github", + "repo": "LouisKottmann/zygospore.el", + "unstable": { + "version": [ + 20140703, + 852 + ], + "commit": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z" + }, + "stable": { + "version": [ + 0, + 0, + 3 + ], + "commit": "1af5ee663f5a7aa08d96a77cacff834dcdf55ea8", + "sha256": "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z" + } + }, + { + "ename": "zzz-to-char", + "commit": "7063cbc1f1501ce81552d7ef1d42d1309f547c42", + "sha256": "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh", + "fetcher": "github", + "repo": "mrkkrp/zzz-to-char", + "unstable": { + "version": [ + 20190713, + 1344 + ], + "deps": [ + "avy", + "cl-lib" + ], + "commit": "3499777d74add95625b4592b5d675a82abc8f888", + "sha256": "0548skxh3gyriwscjkz2zf8l3gn16vwz5ardwab03gw7a7arsrc9" + }, + "stable": { + "version": [ + 0, + 1, + 3 + ], + "deps": [ + "avy", + "cl-lib" + ], + "commit": "e571da33a0dde629314847338eedec84b40e9c32", + "sha256": "03i5bdq7d8la9kbvykgi7aa7v3c35nibgcd4pam99l47pm599ili" + } + } +] diff --git a/pkgs/applications/editors/emacs-modes/update-melpa b/pkgs/applications/editors/emacs-modes/update-melpa new file mode 100755 index 00000000000..2b2af5cb2bb --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/update-melpa @@ -0,0 +1,8 @@ +#! /usr/bin/env nix-shell +#! nix-shell --show-trace -i sh -p git nix nix-prefetch-git nix-prefetch-hg "import ./updater-emacs.nix" + +# "with import ../../../.. {}; emacsWithPackages (epkgs: with epkgs.melpaPackages; [ promise semaphore ])" + +exec emacs --fg-daemon=updater --quick -l update-melpa.el -f run-updater "$@" + +# exec emacs update-melpa.el "$@" diff --git a/pkgs/applications/editors/emacs-modes/update-melpa.el b/pkgs/applications/editors/emacs-modes/update-melpa.el new file mode 100644 index 00000000000..b315777620e --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/update-melpa.el @@ -0,0 +1,434 @@ +;; -*- lexical-binding: t -*- + +;; This is the updater for recipes-archive-melpa.json + +(require 'promise) +(require 'semaphore-promise) +(require 'url) +(require 'json) +(require 'cl) +(require 'subr-x) +(require 'seq) + +;; # Lib + +(defun alist-set (key value alist) + (cons + (cons key value) + (assq-delete-all + key alist))) + +(defun alist-update (key f alist) + (let ((value (alist-get key alist))) + (cons + (cons key (funcall f value)) + (assq-delete-all + key alist)))) + + +(defun process-promise (semaphore program &rest args) + "Generate an asynchronous process and +return Promise to resolve in that process." + (promise-then + (semaphore-promise-gated + semaphore + (lambda (resolve reject) + (funcall resolve (apply #'promise:make-process program args)))) + #'car)) + +(defun mangle-name (s) + (if (string-match "^[a-zA-Z].*" s) + s + (concat "_" s))) + +;; ## Shell promise + env + +(defun as-string (o) + (with-output-to-string (princ o))) + +(defun assocenv (env &rest namevals) + (let ((process-environment (copy-sequence env))) + (mapc (lambda (e) + (setenv (as-string (car e)) + (cadr e))) + (seq-partition namevals 2)) + process-environment)) + +(defun shell-promise (semaphore env script) + (semaphore-promise-gated + semaphore + (lambda (resolve reject) + (let ((process-environment env)) + (funcall resolve (promise:make-shell-command script)))))) + +;; # Updater + +;; ## Previous Archive Reader + +(defun previous-commit (index ename variant) + (when-let (pdesc (and index (gethash ename index))) + (when-let (desc (and pdesc (gethash variant pdesc))) + (gethash 'commit desc)))) + +(defun previous-sha256 (index ename variant) + (when-let (pdesc (and index (gethash ename index))) + (when-let (desc (and pdesc (gethash variant pdesc))) + (gethash 'sha256 desc)))) + +(defun parse-previous-archive (filename) + (let ((idx (make-hash-table :test 'equal))) + (loop for desc in + (let ((json-object-type 'hash-table) + (json-array-type 'list) + (json-key-type 'symbol)) + (json-read-file filename)) + do (puthash (gethash 'ename desc) + desc idx)) + idx)) + +;; ## Prefetcher + +;; (defun latest-git-revision (url) +;; (process-promise "git" "ls-remote" url)) + +(defun prefetch (semaphore fetcher repo commit) + (promise-then + (apply 'process-promise + semaphore + (pcase fetcher + ("github" (list "nix-prefetch-url" + "--unpack" (concat "https://github.com/" repo "/archive/" commit ".tar.gz"))) + ("gitlab" (list "nix-prefetch-url" + "--unpack" (concat "https://gitlab.com/" repo "/repository/archive.tar.gz?ref=" commit))) + ("bitbucket" (list "nix-prefetch-hg" + (concat "https://bitbucket.com/" repo) commit)) + ("hg" (list "nix-prefetch-hg" + repo commit)) + ("git" (list "nix-prefetch-git" + "--fetch-submodules" + "--url" repo + "--rev" commit)) + (_ (throw 'unknown-fetcher fetcher)))) + (lambda (res) + (pcase fetcher + ("git" (alist-get 'sha256 (json-read-from-string res))) + (_ (car (split-string res))))))) + +(defun source-sha (semaphore ename eprops aprops previous variant) + (let* ((fetcher (alist-get 'fetcher eprops)) + (url (alist-get 'url eprops)) + (repo (alist-get 'repo eprops)) + (commit (gethash 'commit aprops)) + (prev-commit (previous-commit previous ename variant)) + (prev-sha256 (previous-sha256 previous ename variant))) + (if (and commit prev-sha256 + (equal prev-commit commit)) + (progn + (message "INFO: %s: re-using %s %s" ename prev-commit prev-sha256) + (promise-resolve `((sha256 . ,prev-sha256)))) + (if (and commit (or repo url)) + (promise-then + (prefetch semaphore fetcher (or repo url) commit) + (lambda (sha256) + (message "INFO: %s: prefetched repository %s %s" ename commit sha256) + `((sha256 . ,sha256))) + (lambda (err) + (message "ERROR: %s: during prefetch %s" ename err) + (promise-resolve + `((error . ,err))))) + (progn + (message "ERROR: %s: no commit information" ename) + (promise-resolve + `((error . "No commit information")))))))) + +(defun source-info (recipe archive source-sha) + (let* ((esym (car recipe)) + (ename (symbol-name esym)) + (eprops (cdr recipe)) + (aentry (gethash esym archive)) + (version (and aentry (gethash 'ver aentry))) + (deps (when-let (deps (gethash 'deps aentry)) + (remove 'emacs (hash-table-keys deps)))) + (aprops (and aentry (gethash 'props aentry))) + (commit (gethash 'commit aprops))) + (append `((version . ,version)) + (when (< 0 (length deps)) + `((deps . ,(sort deps 'string<)))) + `((commit . ,commit)) + source-sha))) + +(defun recipe-info (recipe-index ename) + (if-let (desc (gethash ename recipe-index)) + (destructuring-bind (rcp-commit . rcp-sha256) desc + `((commit . ,rcp-commit) + (sha256 . ,rcp-sha256))) + `((error . "No recipe info")))) + +(defun start-fetch (semaphore recipe-index-promise recipes unstable-archive stable-archive previous) + (promise-all + (mapcar (lambda (entry) + (let* ((esym (car entry)) + (ename (symbol-name esym)) + (eprops (cdr entry)) + (fetcher (alist-get 'fetcher eprops)) + (url (alist-get 'url eprops)) + (repo (alist-get 'repo eprops)) + + (unstable-aentry (gethash esym unstable-archive)) + (unstable-aprops (and unstable-aentry (gethash 'props unstable-aentry))) + (unstable-commit (and unstable-aprops (gethash 'commit unstable-aprops))) + + (stable-aentry (gethash esym stable-archive)) + (stable-aprops (and stable-aentry (gethash 'props stable-aentry))) + (stable-commit (and stable-aprops (gethash 'commit stable-aprops))) + + (unstable-shap (if unstable-aprops + (source-sha semaphore ename eprops unstable-aprops previous 'unstable) + (promise-resolve nil))) + (stable-shap (if (equal unstable-commit stable-commit) + unstable-shap + (if stable-aprops + (source-sha semaphore ename eprops stable-aprops previous 'stable) + (promise-resolve nil))))) + + (promise-then + (promise-all (list recipe-index-promise unstable-shap stable-shap)) + (lambda (res) + (seq-let [recipe-index unstable-sha stable-sha] res + (append `((ename . ,ename)) + (if-let (desc (gethash ename recipe-index)) + (destructuring-bind (rcp-commit . rcp-sha256) desc + (append `((commit . ,rcp-commit) + (sha256 . ,rcp-sha256)) + (when (not unstable-aprops) + (message "ERROR: %s: not in archive" ename) + `((error . "Not in archive"))))) + `((error . "No recipe info"))) + `((fetcher . ,fetcher)) + (if (or (equal "github" fetcher) + (equal "bitbucket" fetcher) + (equal "gitlab" fetcher)) + `((repo . ,repo)) + `((url . ,url))) + (when unstable-aprops `((unstable . ,(source-info entry unstable-archive unstable-sha)))) + (when stable-aprops `((stable . ,(source-info entry stable-archive stable-sha)))))))))) + recipes))) + +;; ## Emitter + +(defun emit-json (prefetch-semaphore recipe-index-promise recipes archive stable-archive previous) + (promise-then + (start-fetch + prefetch-semaphore + recipe-index-promise + (sort recipes (lambda (a b) + (string-lessp + (symbol-name (car a)) + (symbol-name (car b))))) + archive stable-archive + previous) + (lambda (descriptors) + (message "Finished downloading %d descriptors" (length descriptors)) + (let ((buf (generate-new-buffer "*recipes-archive*"))) + (with-current-buffer buf + ;; (switch-to-buffer buf) + ;; (json-mode) + (insert + (let ((json-encoding-pretty-print t) + (json-encoding-default-indentation " ")) + (json-encode descriptors))) + buf))))) + +;; ## Recipe indexer + +(defun http-get (url parser) + (promise-new + (lambda (resolve reject) + (url-retrieve + url (lambda (status) + (funcall resolve (condition-case err + (progn + (goto-char (point-min)) + (search-forward "\n\n") + (message (buffer-substring (point-min) (point))) + (delete-region (point-min) (point)) + (funcall parser)) + (funcall reject err)))))))) + +(defun json-read-buffer (buffer) + (with-current-buffer buffer + (save-excursion + (mark-whole-buffer) + (json-read)))) + +(defun error-count (recipes-archive) + (length + (seq-filter + (lambda (desc) + (alist-get 'error desc)) + recipes-archive))) + +;; (error-count (json-read-buffer "recipes-archive-melpa.json")) + +(defun latest-recipe-commit (semaphore repo base-rev recipe) + (shell-promise + semaphore (assocenv process-environment + "GIT_DIR" repo + "BASE_REV" base-rev + "RECIPE" recipe) + "exec git log --first-parent -n1 --pretty=format:%H $BASE_REV -- recipes/$RECIPE")) + +(defun latest-recipe-sha256 (semaphore repo base-rev recipe) + (promise-then + (shell-promise + semaphore (assocenv process-environment + "GIT_DIR" repo + "BASE_REV" base-rev + "RECIPE" recipe) + "exec nix-hash --flat --type sha256 --base32 <( + git cat-file blob $( + git ls-tree $BASE_REV recipes/$RECIPE | cut -f1 | cut -d' ' -f3 + ) + )") + (lambda (res) + (car + (split-string res))))) + +(defun index-recipe-commits (semaphore repo base-rev recipes) + (promise-then + (promise-all + (mapcar (lambda (recipe) + (promise-then + (latest-recipe-commit semaphore repo base-rev recipe) + (let ((sha256p (latest-recipe-sha256 semaphore repo base-rev recipe))) + (lambda (commit) + (promise-then sha256p + (lambda (sha256) + (message "Indexed Recipe %s %s %s" recipe commit sha256) + (cons recipe (cons commit sha256)))))))) + recipes)) + (lambda (rcp-commits) + (let ((idx (make-hash-table :test 'equal))) + (mapc (lambda (rcpc) + (puthash (car rcpc) (cdr rcpc) idx)) + rcp-commits) + idx)))) + +(defun with-melpa-checkout (resolve) + (let ((tmpdir (make-temp-file "melpa-" t))) + (promise-finally + (promise-then + (shell-promise + (semaphore-create 1 "dummy") + (assocenv process-environment "MELPA_DIR" tmpdir) + "cd $MELPA_DIR + (git init --bare + git remote add origin https://github.com/melpa/melpa.git + git fetch origin) 1>&2 + echo -n $MELPA_DIR") + (lambda (dir) + (message "Created melpa checkout %s" dir) + (funcall resolve dir))) + (lambda () + (delete-directory tmpdir t) + (message "Deleted melpa checkout %s" tmpdir))))) + +(defun list-recipes (repo base-rev) + (promise-then + (shell-promise nil (assocenv process-environment + "GIT_DIR" repo + "BASE_REV" base-rev) + "git ls-tree --name-only $BASE_REV recipes/") + (lambda (s) + (mapcar (lambda (n) + (substring n 8)) + (split-string s))))) + +;; ## Main runner + +(defvar recipe-indexp) +(defvar archivep) + +(defun run-updater () + (message "Turning off logging to *Message* buffer") + (setq message-log-max nil) + (setenv "GIT_ASKPASS") + (setenv "SSH_ASKPASS") + (setq process-adaptive-read-buffering nil) + + ;; Indexer and Prefetcher run in parallel + + ;; Recipe Indexer + (setq recipe-indexp + (with-melpa-checkout + (lambda (repo) + (promise-then + (promise-then + (list-recipes repo "origin/master") + (lambda (recipe-names) + (promise:make-thread #'index-recipe-commits + ;; The indexer runs on a local git repository, + ;; so it is CPU bound. + ;; Adjust for core count + 2 + (semaphore-create 6 "local-indexer") + repo "origin/master" + ;; (seq-take recipe-names 20) + recipe-names))) + (lambda (res) + (message "Indexed Recipes: %d" (hash-table-count res)) + (defvar recipe-index res) + res) + (lambda (err) + (message "ERROR: %s" err)))))) + + ;; Prefetcher + Emitter + (setq archivep + (promise-then + (promise-then (promise-all + (list (http-get "https://melpa.org/recipes.json" + (lambda () + (let ((json-object-type 'alist) + (json-array-type 'list) + (json-key-type 'symbol)) + (json-read)))) + (http-get "https://melpa.org/archive.json" + (lambda () + (let ((json-object-type 'hash-table) + (json-array-type 'list) + (json-key-type 'symbol)) + (json-read)))) + (http-get "https://stable.melpa.org/archive.json" + (lambda () + (let ((json-object-type 'hash-table) + (json-array-type 'list) + (json-key-type 'symbol)) + (json-read)))))) + (lambda (resolved) + (message "Finished download") + (seq-let [recipes-content archive-content stable-archive-content] resolved + ;; The prefetcher is network bound, so 64 seems a good estimate + ;; for parallel network connections + (promise:make-thread #'emit-json (semaphore-create 64 "prefetch-pool") + recipe-indexp + recipes-content + archive-content + stable-archive-content + (parse-previous-archive "recipes-archive-melpa.json"))))) + (lambda (buf) + (with-current-buffer buf + (write-file "recipes-archive-melpa.json"))) + (lambda (err) + (message "ERROR: %s" err)))) + + ;; Shutdown routine + (make-thread + (lambda () + (promise-finally archivep + (lambda () + ;; (message "Joining threads %s" (all-threads)) + ;; (mapc (lambda (thr) + ;; (when (not (eq thr (current-thread))) + ;; (thread-join thr))) + ;; (all-threads)) + + (kill-emacs 0)))))) diff --git a/pkgs/applications/editors/emacs-modes/updater-emacs.nix b/pkgs/applications/editors/emacs-modes/updater-emacs.nix new file mode 100644 index 00000000000..b64a410e7b4 --- /dev/null +++ b/pkgs/applications/editors/emacs-modes/updater-emacs.nix @@ -0,0 +1,29 @@ +with import ../../../.. {}; +(emacsPackagesNgFor emacs26). +emacsWithPackages (epkgs: let + promise = epkgs.trivialBuild { + pname = "promise"; + version = "1"; + src = fetchFromGitHub { + owner = "bendlas"; + repo = "emacs-promise"; + rev = "4da97087c5babbd8429b5ce62a8323b9b03c6022"; + sha256 = "0yin7kj69g4zxs30pvk47cnfygxlaw7jc7chr3b36lz51yqczjsy"; + + }; + }; + semaphore = epkgs.trivialBuild { + pname = "semaphore"; + version = "1"; + packageRequires = [ promise ]; + src = fetchFromGitHub { + owner = "webnf"; + repo = "semaphore.el"; + rev = "93802cb093073bc6a6ccd797328dafffcef248e0"; + sha256 = "09pfyp27m35sv340xarhld7xx2vv5fs5xj4418709iw6l6hpk853"; + + }; + }; + in [ promise semaphore ] + # ++ (with epkgs.melpaPackages; [ smex rainbow-delimiters paredit ]) +) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 6696520c33e..e1b93954448 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -50,7 +50,7 @@ let }; melpaStablePackages = import ../applications/editors/emacs-modes/melpa-stable-packages.nix { - inherit external; + inherit external lib; }; melpaPackages = import ../applications/editors/emacs-modes/melpa-packages.nix { From bc2a9aca6f70187de13e2108c43b055e0ecab687 Mon Sep 17 00:00:00 2001 From: Linus Heckemann Date: Fri, 2 Aug 2019 10:15:58 +0200 Subject: [PATCH 1409/1611] EmptyEpsilon: add lheckemann as maintainer --- pkgs/games/empty-epsilon/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/empty-epsilon/default.nix b/pkgs/games/empty-epsilon/default.nix index bd2a9d78757..6815041c96b 100644 --- a/pkgs/games/empty-epsilon/default.nix +++ b/pkgs/games/empty-epsilon/default.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { description = "Open source bridge simulator based on Artemis"; homepage = https://daid.github.io/EmptyEpsilon/; license = licenses.gpl2Plus; - maintainers = with maintainers; [ fpletz ]; + maintainers = with maintainers; [ fpletz lheckemann ]; platforms = platforms.linux; }; } From ea5ce273fb83100e0020d2ee05aaf352806a054c Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Thu, 25 Jul 2019 16:44:33 +0000 Subject: [PATCH 1410/1611] reason: 3.3.7 -> 3.5.0 --- pkgs/development/compilers/reason/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/reason/default.nix b/pkgs/development/compilers/reason/default.nix index 715b000f323..5ade7fd6fba 100644 --- a/pkgs/development/compilers/reason/default.nix +++ b/pkgs/development/compilers/reason/default.nix @@ -1,23 +1,24 @@ { stdenv, makeWrapper, fetchFromGitHub, ocaml, findlib, dune -, menhir, merlin-extend, ppx_tools_versioned, utop +, menhir, merlin-extend, ppx_tools_versioned, utop, cppo +, ocaml_lwt }: stdenv.mkDerivation rec { name = "ocaml${ocaml.version}-reason-${version}"; - version = "3.3.7"; + version = "3.5.0"; src = fetchFromGitHub { owner = "facebook"; repo = "reason"; - rev = "4d20e5b535c29c5ef1283e65958b32996e449e5a"; - sha256 = "0f3pb61wg58g8f3wcnp1h4gpmnwmp7bq0cnqdfwldmh9cs0dqyfk"; + rev = "ea207004e021efef5a92ecd011d9d5b9b16bbded"; + sha256 = "0cdjy7sw15rlk63prrwy8lavqrz8fqwsgwr19ihvj99x332r98kk"; }; nativeBuildInputs = [ makeWrapper ]; propagatedBuildInputs = [ menhir merlin-extend ppx_tools_versioned ]; - buildInputs = [ ocaml findlib dune utop menhir ]; + buildInputs = [ ocaml findlib dune cppo utop menhir ]; buildFlags = [ "build" ]; # do not "make tests" before reason lib is installed @@ -26,6 +27,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/rtop \ --prefix PATH : "${utop}/bin" \ + --set CAML_LD_LIBRARY_PATH ${ocaml_lwt}/lib/ocaml/${ocaml.version}/site-lib:$CAML_LD_LIBRARY_PATH \ --set OCAMLPATH $out/lib/ocaml/${ocaml.version}/site-lib:$OCAMLPATH ''; From 8b3274178fa7b4a1d63a25cd64ec6a4a7b4599f4 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 2 Aug 2019 10:31:30 +0200 Subject: [PATCH 1411/1611] verilog: 2019.03.27 -> 2019.08.1 Fixes the build, see: https://github.com/steveicarus/iverilog/issues/247 --- .../science/electronics/verilog/default.nix | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/science/electronics/verilog/default.nix b/pkgs/applications/science/electronics/verilog/default.nix index 83352df18e6..1f8f966b33c 100644 --- a/pkgs/applications/science/electronics/verilog/default.nix +++ b/pkgs/applications/science/electronics/verilog/default.nix @@ -1,31 +1,31 @@ { stdenv, fetchFromGitHub, autoconf, gperf, flex, bison }: stdenv.mkDerivation rec { - name = "iverilog-${version}"; - version = "2019.03.27"; + pname = "iverilog"; + version = "unstable-2019-08-01"; src = fetchFromGitHub { owner = "steveicarus"; - repo = "iverilog"; - rev = "a9388a895eb85a9d7f2924b89f839f94e1b6d7c4"; - sha256 = "01d48sy3pzg9x1xpczqrsii2ckrvgnrfj720wiz22jdn90nirhhr"; + repo = pname; + rev = "c383d2048c0bd15f5db083f14736400546fb6215"; + sha256 = "1zs0gyhws0qa315magz3w5m45v97knczdgbf2zn4d7bdb7cv417c"; }; enableParallelBuilding = true; - patchPhase = '' + preConfigure = '' chmod +x $PWD/autoconf.sh $PWD/autoconf.sh ''; buildInputs = [ autoconf gperf flex bison ]; - meta = { + meta = with stdenv.lib; { description = "Icarus Verilog compiler"; repositories.git = https://github.com/steveicarus/iverilog.git; - homepage = http://www.icarus.com; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = with stdenv.lib.maintainers; [winden]; - platforms = with stdenv.lib.platforms; linux; + homepage = "http://iverilog.icarus.com/"; + license = licenses.lgpl21; + maintainers = with maintainers; [ winden ]; + platforms = platforms.linux; }; } From 9c50ec61895eee4fe3f9cbcfd566fe95e82c8f2a Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 2 Aug 2019 10:34:39 +0200 Subject: [PATCH 1412/1611] verilog: Add optional dependencies Increases the closure size by just 4MB. --- .../science/electronics/verilog/default.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/electronics/verilog/default.nix b/pkgs/applications/science/electronics/verilog/default.nix index 1f8f966b33c..f850a1bf94d 100644 --- a/pkgs/applications/science/electronics/verilog/default.nix +++ b/pkgs/applications/science/electronics/verilog/default.nix @@ -1,4 +1,6 @@ -{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison }: +{ stdenv, fetchFromGitHub, autoconf, gperf, flex, bison, readline, ncurses +, bzip2, zlib +}: stdenv.mkDerivation rec { pname = "iverilog"; @@ -13,12 +15,19 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + prePatch = '' + substituteInPlace configure.in \ + --replace "AC_CHECK_LIB(termcap, tputs)" "AC_CHECK_LIB(termcap, tputs)" + ''; + preConfigure = '' chmod +x $PWD/autoconf.sh $PWD/autoconf.sh ''; - buildInputs = [ autoconf gperf flex bison ]; + nativeBuildInputs = [ autoconf gperf flex bison ]; + + buildInputs = [ readline ncurses bzip2 zlib ]; meta = with stdenv.lib; { description = "Icarus Verilog compiler"; From a062b978af89df9f53ec99d63ea37a51142a6561 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Fri, 2 Aug 2019 11:12:05 +0200 Subject: [PATCH 1413/1611] maintainers: update prusnak --- maintainers/maintainer-list.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index c655126cbdc..23168ff16e9 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -4219,9 +4219,13 @@ name = "Ben Hamlin"; }; prusnak = { - email = "stick@gk2.sk"; + email = "pavol@rusnak.io"; github = "prusnak"; name = "Pavol Rusnak"; + keys = [{ + longkeyid = "rsa4096/0x91F3B339B9A02A3D"; + fingerprint = "86E6 792F C27B FD47 8860 C110 91F3 B339 B9A0 2A3D"; + }]; }; pshendry = { email = "paul@pshendry.com"; From 3b43d99e70bdb02b6ee4844de13f6f747ee192af Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 2 Aug 2019 04:20:00 -0500 Subject: [PATCH 1414/1611] postgresqlPackages.pg_auto_failover: 1.0.2 -> 1.0.3 --- pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix b/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix index 87a54471eca..f37e347e89a 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_auto_failover.nix @@ -1,20 +1,20 @@ -{ stdenv, fetchFromGitHub, postgresql, openssl }: +{ stdenv, fetchFromGitHub, postgresql, openssl, zlib, readline }: if stdenv.lib.versionOlder postgresql.version "10" then throw "pg_auto_failover not supported for PostgreSQL ${postgresql.version}" else stdenv.mkDerivation rec { pname = "pg_auto_failover"; - version = "1.0.2"; + version = "1.0.3"; src = fetchFromGitHub { owner = "citusdata"; repo = pname; rev = "v${version}"; - sha256 = "1296zk143y9fvmcg2hjbrjdjfhi5rrd0clh16vblkghcvxrzfyvy"; + sha256 = "0mggf5h6gh2mck75dmz5w63gi7d10pqs58fdp2jdpv3am75picll"; }; - buildInputs = [ postgresql openssl ]; + buildInputs = [ postgresql openssl zlib readline ]; installPhase = '' install -D -t $out/bin src/bin/pg_autoctl/pg_autoctl From 32b24cc9f6a433d318e2e963a494c01257ae997a Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 1 Aug 2019 11:41:10 -0700 Subject: [PATCH 1415/1611] pythonPackages.python-lz4: 2.1.2 -> 2.1.6 --- .../python-modules/python-lz4/default.nix | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/python-lz4/default.nix b/pkgs/development/python-modules/python-lz4/default.nix index 544d8f6254d..c7709c4886d 100644 --- a/pkgs/development/python-modules/python-lz4/default.nix +++ b/pkgs/development/python-modules/python-lz4/default.nix @@ -1,29 +1,30 @@ { lib , buildPythonPackage , fetchFromGitHub -, pytestrunner -, pytest -, psutil -, setuptools_scm -, pkgconfig -, isPy3k , future +, isPy3k +, pkgconfig +, psutil +, pytest +, pytestcov +, pytestrunner +, setuptools_scm }: buildPythonPackage rec { pname = "python-lz4"; - version = "2.1.2"; + version = "2.1.6"; # get full repository inorder to run tests src = fetchFromGitHub { owner = pname; repo = pname; rev = "v${version}"; - sha256 = "1kzzdfkrq9nnlh0wssa6ccncvv0sk4wmhivhgyndjxz6d6przl5d"; + sha256 = "1gx228946c2w645sh190m7ixfd0zfkdl3i8ybga77jz2sn1chzdi"; }; buildInputs = [ setuptools_scm pkgconfig pytestrunner ]; - checkInputs = [ pytest psutil ]; + checkInputs = [ pytest pytestcov psutil ]; propagatedBuildInputs = lib.optionals (!isPy3k) [ future ]; # give a hint to setuptools_scm on package version From 790e8f451df42cc68e2f73420faa586ae29f4295 Mon Sep 17 00:00:00 2001 From: Simon Lackerbauer Date: Fri, 2 Aug 2019 12:27:34 +0200 Subject: [PATCH 1416/1611] atlassian-jira: 8.2.3 -> 8.3.0 --- pkgs/servers/atlassian/jira.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/atlassian/jira.nix b/pkgs/servers/atlassian/jira.nix index 6f738762a10..5bd91b14f32 100644 --- a/pkgs/servers/atlassian/jira.nix +++ b/pkgs/servers/atlassian/jira.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "atlassian-jira-${version}"; - version = "8.2.3"; + version = "8.3.0"; src = fetchurl { url = "https://product-downloads.atlassian.com/software/jira/downloads/atlassian-jira-software-${version}.tar.gz"; - sha256 = "1078s225rb44y7nfsvd1vba9jjn14rdsxvdgah164i0nd16070sn"; + sha256 = "10hnanvlnl1szp3qdcyrivhayydw8qbw1rq7vmvay434ch6wwgkx"; }; phases = [ "unpackPhase" "buildPhase" "installPhase" "fixupPhase" ]; From 21e891efd1aa158ad8de07fbb0b2f61780428711 Mon Sep 17 00:00:00 2001 From: Izorkin Date: Fri, 2 Aug 2019 12:49:04 +0300 Subject: [PATCH 1417/1611] mariadb: fix build in Darwin --- pkgs/servers/sql/mariadb/cmake-fix-crypt-libs.patch | 12 ++++++++++++ pkgs/servers/sql/mariadb/default.nix | 1 + 2 files changed, 13 insertions(+) create mode 100644 pkgs/servers/sql/mariadb/cmake-fix-crypt-libs.patch diff --git a/pkgs/servers/sql/mariadb/cmake-fix-crypt-libs.patch b/pkgs/servers/sql/mariadb/cmake-fix-crypt-libs.patch new file mode 100644 index 00000000000..64652c08c19 --- /dev/null +++ b/pkgs/servers/sql/mariadb/cmake-fix-crypt-libs.patch @@ -0,0 +1,12 @@ +diff --git a/libmariadb/plugins/auth/CMakeLists.txt b/libmariadb/plugins/auth/CMakeLists.txt +index aa599418..7a51f73b 100644 +--- a/libmariadb/plugins/auth/CMakeLists.txt ++++ b/libmariadb/plugins/auth/CMakeLists.txt +@@ -50,6 +50,7 @@ IF(WITH_SSL) + ${REF10_SOURCES} + ${CRYPT_SOURCE} + INCLUDES ${REF10_DIR} ++ LIBRARIES ${ED25519_LIBS} + COMPILE_OPTIONS -DMYSQL_CLIENT=1) + IF(MSVC) + # Silence conversion (integer truncantion) warnings from reference code diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 2f923116b2b..7d34dd8d63b 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -53,6 +53,7 @@ common = rec { # attributes common to both builds patches = [ ./cmake-includedir.patch ./cmake-libmariadb-includedir.patch + ./cmake-fix-crypt-libs.patch ]; cmakeFlags = [ From 9a341cd3becdf7c24bf825ea70e5120b98da7e37 Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Fri, 2 Aug 2019 13:43:43 +0200 Subject: [PATCH 1418/1611] pythonPackages.pysnmp: 4.4.9 -> 4.4.10 --- pkgs/development/python-modules/pysnmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pysnmp/default.nix b/pkgs/development/python-modules/pysnmp/default.nix index f4d6ceea8dd..621820e39de 100644 --- a/pkgs/development/python-modules/pysnmp/default.nix +++ b/pkgs/development/python-modules/pysnmp/default.nix @@ -7,12 +7,12 @@ }: buildPythonPackage rec { - version = "4.4.9"; + version = "4.4.10"; pname = "pysnmp"; src = fetchPypi { inherit pname version; - sha256 = "0h844s9p67z50bv83wdyf577759jg0xrj99fv4yrcvhjh2byblfm"; + sha256 = "0bbcnn49krawq8pkhpzc427yxki0kxjndhhn61140j3wjbvavhah"; }; # NameError: name 'mibBuilder' is not defined From 0a54b3eeb095b9b56795b7b96393111dd25ef7e4 Mon Sep 17 00:00:00 2001 From: David McKay Date: Fri, 2 Aug 2019 13:58:00 +0100 Subject: [PATCH 1419/1611] vokoscreen: use qt5's mkDerivation --- pkgs/applications/video/vokoscreen/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/video/vokoscreen/default.nix b/pkgs/applications/video/vokoscreen/default.nix index e609c1cd339..a38a9056c85 100644 --- a/pkgs/applications/video/vokoscreen/default.nix +++ b/pkgs/applications/video/vokoscreen/default.nix @@ -1,9 +1,9 @@ -{ stdenv, fetchFromGitHub +{ stdenv, fetchFromGitHub, mkDerivation , pkgconfig, qtbase, qttools, qmake, qtmultimedia, qtx11extras, alsaLib, libv4l, libXrandr , ffmpeg }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "vokoscreen"; version = "2.5.8-beta"; From 67209e1b20ea7a0ee99c1eb066c9605c7fc71919 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Fri, 2 Aug 2019 08:57:36 -0400 Subject: [PATCH 1420/1611] blender: 2.97b -> 2.80 --- pkgs/applications/misc/blender/default.nix | 24 ++++++++-------------- pkgs/top-level/all-packages.nix | 5 +---- 2 files changed, 10 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 5445c7efb59..3b98114c710 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -1,7 +1,7 @@ { config, 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, pythonPackages +, libtiff, libGLU_combined, openal, opencolorio, openexr, openimageio, openjpeg_1, python3Packages , zlib, fftw, opensubdiv, freetype, jemalloc, ocl-icd, addOpenGLRunpath , jackaudioSupport ? false, libjack2 , cudaSupport ? config.cudaSupport or false, cudatoolkit @@ -11,14 +11,15 @@ with lib; -let python = pythonPackages.python; in +let python = python3Packages.python; in stdenv.mkDerivation rec { - name = "blender-2.79b"; + pname = "blender"; + version = "2.80"; src = fetchurl { - url = "https://download.blender.org/source/${name}.tar.gz"; - sha256 = "1g4kcdqmf67srzhi3hkdnr4z1ph4h9sza1pahz38mrj998q4r52c"; + url = "https://download.blender.org/source/${pname}-${version}.tar.gz"; + sha256 = "1h550jisdbis50hxwk5kxrvrk1a6sh2fsri3yyj66vhzbi87x7fd"; }; nativeBuildInputs = [ cmake ] ++ optional cudaSupport addOpenGLRunpath; @@ -36,7 +37,6 @@ stdenv.mkDerivation rec { postPatch = '' - substituteInPlace doc/manpage/blender.1.py --replace /usr/bin/python ${python}/bin/python3 substituteInPlace extern/clew/src/clew.c --replace '"libOpenCL.so"' '"${ocl-icd}/lib/libOpenCL.so"' ''; @@ -47,10 +47,7 @@ stdenv.mkDerivation rec { "-DWITH_INSTALL_PORTABLE=OFF" "-DWITH_FFTW3=ON" #"-DWITH_SDL=ON" - "-DWITH_GAMEENGINE=ON" "-DWITH_OPENCOLORIO=ON" - "-DWITH_SYSTEM_OPENJPEG=ON" - "-DWITH_PLAYER=ON" "-DWITH_OPENSUBDIV=ON" "-DPYTHON_LIBRARY=${python.libPrefix}m" "-DPYTHON_LIBPATH=${python}/lib" @@ -58,13 +55,10 @@ stdenv.mkDerivation rec { "-DPYTHON_VERSION=${python.pythonVersion}" "-DWITH_PYTHON_INSTALL=OFF" "-DWITH_PYTHON_INSTALL_NUMPY=OFF" + "-DPYTHON_NUMPY_PATH=${python3Packages.numpy}/${python.sitePackages}" ] ++ optional jackaudioSupport "-DWITH_JACK=ON" - ++ optionals cudaSupport - [ "-DWITH_CYCLES_CUDA_BINARIES=ON" - # Disable architectures before sm_30 to support new CUDA toolkits. - "-DCYCLES_CUDA_BINARIES_ARCH=sm_30;sm_35;sm_37;sm_50;sm_52;sm_60;sm_61" - ] + ++ optional cudaSupport "-DWITH_CYCLES_CUDA_BINARIES=ON" ++ optional colladaSupport "-DWITH_OPENCOLLADA=ON"; NIX_CFLAGS_COMPILE = "-I${ilmbase.dev}/include/OpenEXR -I${python}/include/${python.libPrefix}"; @@ -78,7 +72,7 @@ stdenv.mkDerivation rec { postInstall = optionalString enableNumpy '' wrapProgram $out/bin/blender \ - --prefix PYTHONPATH : ${pythonPackages.numpy}/${python.sitePackages} + --prefix PYTHONPATH : ${python3Packages.numpy}/${python.sitePackages} ''; # Set RUNPATH so that libcuda and libnvrtc in /run/opengl-driver(-32)/lib can be diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89fc4364ffb..05ecb607bfc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -17226,10 +17226,7 @@ in bleachbit = callPackage ../applications/misc/bleachbit { }; - blender = callPackage ../applications/misc/blender { - pythonPackages = python35Packages; - stdenv = gcc6Stdenv; - }; + blender = callPackage ../applications/misc/blender { }; bluefish = callPackage ../applications/editors/bluefish { gtk = gtk3; From df93edee15b59d965d3f3f7c136d2f45e3c7828d Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Fri, 2 Aug 2019 08:52:06 -0400 Subject: [PATCH 1421/1611] slack: Add update script --- .../instant-messengers/slack/dark-theme.nix | 17 +++++++---------- .../instant-messengers/slack/update.sh | 19 +++++++++++++++++++ 2 files changed, 26 insertions(+), 10 deletions(-) create mode 100755 pkgs/applications/networking/instant-messengers/slack/update.sh diff --git a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix index d815f0aff2d..8fb92766efa 100644 --- a/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix +++ b/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix @@ -1,22 +1,19 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchgit }: -let +stdenv.mkDerivation rec { rev = "e2a6a9cd9da70175881ab991220c86aa87179509"; - sha256 = "1gw0kpszgflk3vqjlm5igd2rznh36mb2j1iqrcqi6pzxlpccv1lg"; version = "2019-07-25"; -in stdenv.mkDerivation { - inherit version; + name = "slack-theme-black-${version}"; - name = "slack-theme-black"; - src = fetchurl { - url = "https://raw.githubusercontent.com/laCour/slack-night-mode/${rev}/css/raw/black.css"; - inherit sha256; + src = fetchgit { inherit rev; + url = "https://github.com/laCour/slack-night-mode"; + sha256 = "1jwxy63qzgvr83idsgcg7yhm9kn0ybfji1m964c5c6ypzcm7j10v"; }; dontUnpack = true; buildCommand = '' mkdir $out - cp $src $out/theme.css + cp $src/css/raw/black.css $out/theme.css ''; } diff --git a/pkgs/applications/networking/instant-messengers/slack/update.sh b/pkgs/applications/networking/instant-messengers/slack/update.sh new file mode 100755 index 00000000000..e5f79388353 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/slack/update.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env nix-shell +#!nix-shell -i bash -p curl common-updater-scripts jq + +set -eu -o pipefail + +oldVersion="$(nix-instantiate --eval -E "with import ./. {}; slack-theme-black.version or (builtins.parseDrvName slack-theme-black.name).version" | tr -d '"')" +latestSha="$(curl -L -s https://api.github.com/repos/laCour/slack-night-mode/commits\?sha\=master\&since\=${oldVersion} | jq -r '.[0].sha')" + +if [ ! "null" = "${latestSha}" ]; then + latestDate="$(curl -L -s https://api.github.com/repos/laCour/slack-night-mode/commits/${latestSha} | jq '.commit.author.date' | sed 's|"\(.*\)T.*|\1|g')" + update-source-version slack-theme-black "${latestSha}" --version-key=rev + update-source-version slack-theme-black "${latestDate}" --ignore-same-hash + nixpkgs="$(git rev-parse --show-toplevel)" + default_nix="$nixpkgs/pkgs/applications/networking/instant-messengers/slack/dark-theme.nix" + git add "${default_nix}" + git commit -m "slack-theme-black: ${oldVersion} -> ${latestDate}" +else + echo "slack-theme-black is already up-to-date" +fi From a0d3143ce55218d700bdb7470d0b0a8976ba89a6 Mon Sep 17 00:00:00 2001 From: Rolf Heckemann Date: Fri, 2 Aug 2019 15:18:24 +0200 Subject: [PATCH 1422/1611] skypeforlinux: 8.49.0.49 => 8.50.0.38 --- .../networking/instant-messengers/skypeforlinux/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix index 8a732de08ce..9308d581a12 100644 --- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix +++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix @@ -7,7 +7,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.49.0.49"; + version = "8.50.0.38"; rpath = stdenv.lib.makeLibraryPath [ alsaLib @@ -58,7 +58,7 @@ let if stdenv.hostPlatform.system == "x86_64-linux" then fetchurl { url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"; - sha256 = "0l5q336kkw9i13076qn7fkknypg7cwjp58qi8xd6h0rwha3kkqa2"; + sha256 = "1g0aacp4qgzp3018w1s685yr3ssqlw0z2x6ifrj01k4ig82jfkn6"; } else throw "Skype for linux is not supported on ${stdenv.hostPlatform.system}"; From e4c60a1e423d540b685b9decaaa3ce06bc7b4a9c Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 1 Aug 2019 23:10:08 +0200 Subject: [PATCH 1423/1611] prometheus-postgres-exporter: init at 0.5.1 --- .../monitoring/prometheus/exporters.nix | 1 + .../prometheus/exporters/postgres.nix | 46 +++++++++++++++++++ nixos/tests/prometheus-exporters.nix | 24 ++++++++++ .../prometheus/postgres-exporter.nix | 24 ++++++++++ pkgs/top-level/all-packages.nix | 1 + 5 files changed, 96 insertions(+) create mode 100644 nixos/modules/services/monitoring/prometheus/exporters/postgres.nix create mode 100644 pkgs/servers/monitoring/prometheus/postgres-exporter.nix diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 802281e7164..dc847fb8745 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -32,6 +32,7 @@ let "nginx" "node" "postfix" + "postgres" "snmp" "surfboard" "tor" diff --git a/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix b/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix new file mode 100644 index 00000000000..e595d63ba32 --- /dev/null +++ b/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix @@ -0,0 +1,46 @@ +{ config, lib, pkgs, options }: + +with lib; + +let + cfg = config.services.prometheus.exporters.postgres; +in +{ + port = 9187; + extraOpts = { + telemetryPath = mkOption { + type = types.str; + default = "/metrics"; + description = '' + Path under which to expose metrics. + ''; + }; + dataSourceName = mkOption { + type = types.str; + default = "user=postgres database=postgres host=/run/postgresql sslmode=disable"; + example = "postgresql://username:password@localhost:5432/postgres?sslmode=disable"; + description = '' + Accepts PostgreSQL URI form and key=value form arguments. + ''; + }; + runAsLocalSuperUser = mkOption { + type = types.bool; + default = false; + description = '' + Whether to run the exporter as the local 'postgres' super user. + ''; + }; + }; + serviceOpts = { + environment.DATA_SOURCE_NAME = cfg.dataSourceName; + serviceConfig = { + User = mkIf cfg.runAsLocalSuperUser (mkForce "postgres"); + ExecStart = '' + ${pkgs.prometheus-postgres-exporter}/bin/postgres_exporter \ + --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ + --web.telemetry-path ${cfg.telemetryPath} \ + ${concatStringsSep " \\\n " cfg.extraFlags} + ''; + }; + }; +} diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index 2286d70be28..df968a535af 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -232,6 +232,30 @@ let ''; }; + postgres = { + exporterConfig = { + enable = true; + runAsLocalSuperUser = true; + }; + metricProvider = { + services.postgresql.enable = true; + }; + exporterTest = '' + waitForUnit("prometheus-postgres-exporter.service"); + waitForOpenPort(9187); + waitForUnit("postgresql.service"); + succeed("curl -sSf http://localhost:9187/metrics | grep -q 'pg_exporter_last_scrape_error 0'"); + succeed("curl -sSf http://localhost:9187/metrics | grep -q 'pg_up 1'"); + systemctl("stop postgresql.service"); + succeed("curl -sSf http://localhost:9187/metrics | grep -qv 'pg_exporter_last_scrape_error 0'"); + succeed("curl -sSf http://localhost:9187/metrics | grep -q 'pg_up 0'"); + systemctl("start postgresql.service"); + waitForUnit("postgresql.service"); + succeed("curl -sSf http://localhost:9187/metrics | grep -q 'pg_exporter_last_scrape_error 0'"); + succeed("curl -sSf http://localhost:9187/metrics | grep -q 'pg_up 1'"); + ''; + }; + snmp = { exporterConfig = { enable = true; diff --git a/pkgs/servers/monitoring/prometheus/postgres-exporter.nix b/pkgs/servers/monitoring/prometheus/postgres-exporter.nix new file mode 100644 index 00000000000..ffa71f3ad0c --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/postgres-exporter.nix @@ -0,0 +1,24 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +with stdenv.lib; + +buildGoPackage rec { + name = "postgres_exporter-${version}"; + version = "0.5.1"; + + goPackagePath = "github.com/wrouesnel/postgres_exporter"; + + src = fetchFromGitHub { + owner = "wrouesnel"; + repo = "postgres_exporter"; + rev = "v${version}"; + sha256 = "1awcqhiak56nrsaa49lkw6mcbrlm86ls14sp9v69h3a0brc1q7bn"; + }; + + meta = { + inherit (src.meta) homepage; + description = "A Prometheus exporter for PostgreSQL"; + license = licenses.asl20; + maintainers = with maintainers; [ fpletz ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7bb749d5aef..7881d9c37cd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14808,6 +14808,7 @@ in prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; prometheus-openvpn-exporter = callPackage ../servers/monitoring/prometheus/openvpn-exporter.nix { }; prometheus-postfix-exporter = callPackage ../servers/monitoring/prometheus/postfix-exporter.nix { }; + prometheus-postgres-exporter = callPackage ../servers/monitoring/prometheus/postgres-exporter.nix { }; prometheus-pushgateway = callPackage ../servers/monitoring/prometheus/pushgateway.nix { }; prometheus-rabbitmq-exporter = callPackage ../servers/monitoring/prometheus/rabbitmq-exporter.nix { }; prometheus-snmp-exporter = callPackage ../servers/monitoring/prometheus/snmp-exporter.nix { From f93ef946e529da224ef4ea0c6c996e2ea71f00ad Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Fri, 2 Aug 2019 22:10:38 +0800 Subject: [PATCH 1424/1611] youtube-dl: 2019.07.30 -> 2019.08.02 --- pkgs/tools/misc/youtube-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index 5c13b4c8350..e571f533399 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -18,11 +18,11 @@ buildPythonPackage rec { # The websites youtube-dl deals with are a very moving target. That means that # downloads break constantly. Because of that, updates should always be backported # to the latest stable release. - version = "2019.07.30"; + version = "2019.08.02"; src = fetchurl { url = "https://yt-dl.org/downloads/${version}/${pname}-${version}.tar.gz"; - sha256 = "0nb5xvq4aq0az8y5wb54zp5q4qzfhs7rcb39yp6j5q8jyjp9kzwy"; + sha256 = "101b6jrf6ckbxrn76ppvgdyrb25p7d247kn8qgq7n476sfnkfg2p"; }; nativeBuildInputs = [ makeWrapper ]; From 458f6ba981309cb9faabdb969466e27b3120d057 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Fri, 2 Aug 2019 10:39:01 -0400 Subject: [PATCH 1425/1611] solr: 7.7.1 -> 7.7.2 --- pkgs/servers/search/solr/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/search/solr/default.nix b/pkgs/servers/search/solr/default.nix index 6a32ce39d5c..ddd46299a9c 100644 --- a/pkgs/servers/search/solr/default.nix +++ b/pkgs/servers/search/solr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "solr"; - version = "7.7.1"; + version = "7.7.2"; src = fetchurl { url = "mirror://apache/lucene/solr/${version}/solr-${version}.tgz"; - sha256 = "1i189xhlxrpdqx2gx3r8s4dcd7nm74vjynwkrgv2hnq4mw95zf2g"; + sha256 = "1pr02d4sw5arig1brjb6j7ir644n8s737qsx6ll46di5iw1y93pb"; }; nativeBuildInputs = [ makeWrapper ]; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = https://lucene.apache.org/solr/; + homepage = "https://lucene.apache.org/solr/"; description = "Open source enterprise search platform from the Apache Lucene project"; license = licenses.asl20; platforms = platforms.all; From 1e2d93cfcd5c34435afe561b4be9d83baee2e898 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Fri, 2 Aug 2019 16:42:21 +0200 Subject: [PATCH 1426/1611] idrisPackages: Fix overrides not applying Previously when overriding idrisPackages, it wouldn't work properly because it took idrisPackages from the pkgs set --- pkgs/development/idris-modules/build-idris-package.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/idris-modules/build-idris-package.nix b/pkgs/development/idris-modules/build-idris-package.nix index c67d53f8d9c..28bac4e981b 100644 --- a/pkgs/development/idris-modules/build-idris-package.nix +++ b/pkgs/development/idris-modules/build-idris-package.nix @@ -1,5 +1,5 @@ # Build an idris package -{ stdenv, lib, idrisPackages, gmp }: +{ stdenv, lib, gmp, prelude, base, with-packages, idris }: { idrisDeps ? [] , noPrelude ? false , noBase ? false @@ -11,15 +11,15 @@ }@attrs: let allIdrisDeps = idrisDeps - ++ lib.optional (!noPrelude) idrisPackages.prelude - ++ lib.optional (!noBase) idrisPackages.base; - idris-with-packages = idrisPackages.with-packages allIdrisDeps; + ++ lib.optional (!noPrelude) prelude + ++ lib.optional (!noBase) base; + idris-with-packages = with-packages allIdrisDeps; newAttrs = builtins.removeAttrs attrs [ "idrisDeps" "noPrelude" "noBase" "name" "version" "ipkgName" "extraBuildInputs" ] // { meta = attrs.meta // { - platforms = attrs.meta.platforms or idrisPackages.idris.meta.platforms; + platforms = attrs.meta.platforms or idris.meta.platforms; }; }; in From 612021112f693b876d882780cfcb936b60793290 Mon Sep 17 00:00:00 2001 From: Zaoqi Date: Fri, 2 Aug 2019 22:43:12 +0800 Subject: [PATCH 1427/1611] Update default.nix --- pkgs/tools/misc/man-db/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/man-db/default.nix b/pkgs/tools/misc/man-db/default.nix index 8d0728b7556..ced4a156137 100644 --- a/pkgs/tools/misc/man-db/default.nix +++ b/pkgs/tools/misc/man-db/default.nix @@ -63,6 +63,6 @@ stdenv.mkDerivation rec { homepage = http://man-db.nongnu.org; description = "An implementation of the standard Unix documentation system accessed using the man command"; license = licenses.gpl2; - platforms = platforms.linux; + platforms = stdenv.lib.platforms.unix; }; } From 5bdbfb18201e1988e8f4302ef88f1d2d647dbaab Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Fri, 2 Aug 2019 10:42:12 -0400 Subject: [PATCH 1428/1611] solr: 8.1.1 -> 8.2.0 --- pkgs/servers/search/solr/8.x.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/search/solr/8.x.nix b/pkgs/servers/search/solr/8.x.nix index 3c21a2a77ef..48f5847b111 100644 --- a/pkgs/servers/search/solr/8.x.nix +++ b/pkgs/servers/search/solr/8.x.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "solr"; - version = "8.1.1"; + version = "8.2.0"; src = fetchurl { url = "mirror://apache/lucene/${pname}/${version}/${pname}-${version}.tgz"; - sha256 = "18a6pgbvg6z38r3kqkhr152z7sa2hqip2g9fd26y4gzm2665j5dm"; + sha256 = "0j9lydxlng785h2n1b8avinrkqdpbj5qn4rk897p2pbf4fdv795z"; }; nativeBuildInputs = [ makeWrapper ]; @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - homepage = https://lucene.apache.org/solr/; + homepage = "https://lucene.apache.org/solr/"; description = "Open source enterprise search platform from the Apache Lucene project"; license = licenses.asl20; platforms = platforms.all; From 2e7355ff13a58347ff3ddc1139413b89ea313bf9 Mon Sep 17 00:00:00 2001 From: Alex Brandt Date: Sun, 21 Jul 2019 08:28:34 -0700 Subject: [PATCH 1429/1611] pythonPackages.stringcase: init at version 1.2.0 Needed by zfs-replicate. --- .../python-modules/stringcase/default.nix | 22 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 pkgs/development/python-modules/stringcase/default.nix diff --git a/pkgs/development/python-modules/stringcase/default.nix b/pkgs/development/python-modules/stringcase/default.nix new file mode 100644 index 00000000000..79f05f9b72d --- /dev/null +++ b/pkgs/development/python-modules/stringcase/default.nix @@ -0,0 +1,22 @@ +{ buildPythonPackage, fetchPypi, stdenv +}: + +buildPythonPackage rec { + pname = "stringcase"; + version = "1.2.0"; + + src = fetchPypi { + inherit pname version; + sha256 = "023hv3gknblhf9lx5kmkcchzmbhkdhmsnknkv7lfy20rcs06k828"; + }; + + # PyPi package does not include tests. + doCheck = false; + + meta = with stdenv.lib; { + homepage = https://github.com/okunishinishi/python-stringcase; + description = "Convert string cases between camel case, pascal case, snake case etc…"; + license = licenses.mit; + maintainers = with maintainers; [ alunduil ]; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 180de8ed8a5..e7c64680217 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6075,6 +6075,8 @@ in { pydantic = callPackage ../development/python-modules/pydantic { }; fastapi = callPackage ../development/python-modules/fastapi { }; + + stringcase = callPackage ../development/python-modules/stringcase { }; }); in fix' (extends overrides packages) From 29bdb1c67253054982448f6c4e8bc3d5c5ee3c8a Mon Sep 17 00:00:00 2001 From: Alex Brandt Date: Sun, 21 Jul 2019 08:29:39 -0700 Subject: [PATCH 1430/1611] zfs-replicate: init at 1.1.11 Used by zfs.autoReplication module. --- pkgs/tools/backup/zfs-replicate/default.nix | 42 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 44 insertions(+) create mode 100644 pkgs/tools/backup/zfs-replicate/default.nix diff --git a/pkgs/tools/backup/zfs-replicate/default.nix b/pkgs/tools/backup/zfs-replicate/default.nix new file mode 100644 index 00000000000..83fa76b0800 --- /dev/null +++ b/pkgs/tools/backup/zfs-replicate/default.nix @@ -0,0 +1,42 @@ +{ buildPythonApplication, click, fetchPypi, hypothesis, mypy, pytest +, pytestcov, pytestrunner, stdenv, stringcase +}: + +buildPythonApplication rec { + pname = "zfs-replicate"; + version = "1.1.11"; + + src = fetchPypi { + inherit pname version; + sha256 = "0386xc6rw6bhzw2a08g90afb3snqhm1ikx65bjfh22ha69fwmga8"; + }; + + checkInputs = [ + hypothesis + mypy + pytest + pytestcov + ]; + + buildInputs = [ + pytestrunner + ]; + + propagatedBuildInputs = [ + click + stringcase + ]; + + doCheck = true; + + checkPhase = '' + pytest --doctest-modules + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/alunduil/zfs-replicate; + description = "ZFS Snapshot Replication"; + license = licenses.bsd2; + maintainers = with maintainers; [ alunduil ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d4295586fa..8f781dae9c3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -24563,4 +24563,6 @@ in dapper = callPackage ../development/tools/dapper { }; kube3d = callPackage ../applications/networking/cluster/kube3d {}; + + zfs-replicate = python3Packages.callPackage ../tools/backup/zfs-replicate { }; } From bdd7b5a3abbc6f826f608dd68f5c0ed18fcff9cb Mon Sep 17 00:00:00 2001 From: Alex Brandt Date: Thu, 25 Jul 2019 21:30:59 -0700 Subject: [PATCH 1431/1611] nixos/zfs: add autoReplication functionality This adds a simple configuration for sending snapshots to a remote system using zfs-replicate that ties into the autoSnapshot settings already present in services.zfs.autoSnapshot. --- .../services/backup/zfs-replication.nix | 90 +++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 nixos/modules/services/backup/zfs-replication.nix diff --git a/nixos/modules/services/backup/zfs-replication.nix b/nixos/modules/services/backup/zfs-replication.nix new file mode 100644 index 00000000000..785cedb9869 --- /dev/null +++ b/nixos/modules/services/backup/zfs-replication.nix @@ -0,0 +1,90 @@ +{ lib, pkgs, config, ... }: + +with lib; + +let + cfg = config.services.zfs.autoReplication; + recursive = optionalString cfg.recursive " --recursive"; + followDelete = optionalString cfg.followDelete " --follow-delete"; +in { + options = { + services.zfs.autoReplication = { + enable = mkEnableOption "ZFS snapshot replication."; + + followDelete = mkOption { + description = "Remove remote snapshots that don't have a local correspondant."; + default = true; + type = types.bool; + }; + + host = mkOption { + description = "Remote host where snapshots should be sent."; + example = "example.com"; + type = types.str; + }; + + identityFilePath = mkOption { + description = "Path to SSH key used to login to host."; + example = "/home/username/.ssh/id_rsa"; + type = types.path; + }; + + localFilesystem = mkOption { + description = "Local ZFS fileystem from which snapshots should be sent. Defaults to the attribute name."; + example = "pool/file/path"; + type = types.str; + }; + + remoteFilesystem = mkOption { + description = "Remote ZFS filesystem where snapshots should be sent."; + example = "pool/file/path"; + type = types.str; + }; + + recursive = mkOption { + description = "Recursively discover snapshots to send."; + default = true; + type = types.bool; + }; + + username = mkOption { + description = "Username used by SSH to login to remote host."; + example = "username"; + type = types.str; + }; + }; + }; + + config = lib.mkIf cfg.enable { + environment.systemPackages = [ + pkgs.lz4 + ]; + + systemd.services."zfs-replication" = { + after = [ + "zfs-snapshot-daily.service" + "zfs-snapshot-frequent.service" + "zfs-snapshot-hourly.service" + "zfs-snapshot-monthly.service" + "zfs-snapshot-weekly.service" + ]; + description = "ZFS Snapshot Replication"; + documentation = [ + "https://github.com/alunduil/zfs-replicate" + ]; + restartIfChanged = false; + serviceConfig.ExecStart = "${pkgs.zfs-replicate}/bin/zfs-replicate${recursive} -l ${escapeShellArg cfg.username} -i ${escapeShellArg cfg.identityFilePath}${followDelete} ${escapeShellArg cfg.host} ${escapeShellArg cfg.remoteFilesystem} ${escapeShellArg cfg.localFilesystem}"; + wantedBy = [ + "zfs-snapshot-daily.service" + "zfs-snapshot-frequent.service" + "zfs-snapshot-hourly.service" + "zfs-snapshot-monthly.service" + "zfs-snapshot-weekly.service" + ]; + }; + }; + + meta = { + maintainers = with lib.maintainers; [ alunduil ]; + }; +} From 6923b76eb50b6964ca2fa97a0828d1a83a15a4a2 Mon Sep 17 00:00:00 2001 From: Susan Potter Date: Fri, 2 Aug 2019 10:43:37 -0500 Subject: [PATCH 1432/1611] nixos/doc+manual: change copyright year 2018->2019 --- nixos/doc/manual/man-pages.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/man-pages.xml b/nixos/doc/manual/man-pages.xml index 0390dda6468..f5a1dd2d69f 100644 --- a/nixos/doc/manual/man-pages.xml +++ b/nixos/doc/manual/man-pages.xml @@ -6,7 +6,7 @@ EelcoDolstra Author - 2007-2018Eelco Dolstra + 2007-2019Eelco Dolstra From 5b30a10a0c1bfb720fdf000cfe587ac54071b894 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Tue, 30 Jul 2019 10:16:33 -0700 Subject: [PATCH 1433/1611] gopro: init at 1.0 --- pkgs/tools/video/gopro/default.nix | 38 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 40 insertions(+) create mode 100644 pkgs/tools/video/gopro/default.nix diff --git a/pkgs/tools/video/gopro/default.nix b/pkgs/tools/video/gopro/default.nix new file mode 100644 index 00000000000..f783b086345 --- /dev/null +++ b/pkgs/tools/video/gopro/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchFromGitHub +, ffmpeg +, imagemagick +, makeWrapper +, mplayer +}: + +stdenv.mkDerivation rec { + pname = "gopro"; + version = "1.0"; + + src = fetchFromGitHub { + owner = "KonradIT"; + repo = "gopro-linux"; + rev = version; + sha256 = "0sb9vpiadrq8g4ag828h8mvq01fg0306j0wjwkxdmwfqync1128l"; + }; + + nativeBuildInputs = [ makeWrapper ]; + + installPhase = '' + runHook preInstall + + install -Dm755 gopro -t $out/bin + wrapProgram $out/bin/gopro \ + --prefix PATH ":" "${stdenv.lib.makeBinPath [ ffmpeg imagemagick mplayer ]}" + + runHook postInstall + ''; + + meta = with stdenv.lib; { + description = "Command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras"; + homepage = "https://github.com/KonradIT/gopro-linux"; + platforms = platforms.linux; + license = licenses.gpl3; + maintainers = with maintainers; [ jonringer ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 110cc27e846..fd0ef57e4d0 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3415,6 +3415,8 @@ in google-music-scripts = callPackage ../tools/audio/google-music-scripts { }; + gopro = callPackage ../tools/video/gopro { }; + gource = callPackage ../applications/version-management/gource { }; govc = callPackage ../tools/virtualization/govc { }; From 3aed444d5711cd1ef6e656652d3d2de1bc6fdeeb Mon Sep 17 00:00:00 2001 From: Vasiliy Yorkin Date: Fri, 2 Aug 2019 18:34:38 +0300 Subject: [PATCH 1434/1611] ocamlPackages.secp256k1: init at 0.4.0 --- .../ocaml-modules/secp256k1/default.nix | 22 +++++++++++++++++++ pkgs/top-level/ocaml-packages.nix | 4 ++++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/ocaml-modules/secp256k1/default.nix diff --git a/pkgs/development/ocaml-modules/secp256k1/default.nix b/pkgs/development/ocaml-modules/secp256k1/default.nix new file mode 100644 index 00000000000..69b276db90e --- /dev/null +++ b/pkgs/development/ocaml-modules/secp256k1/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchFromGitHub, buildDunePackage, base, stdio, configurator, secp256k1 }: + +buildDunePackage rec { + pname = "secp256k1"; + version = "0.4.0"; + + src = fetchFromGitHub { + owner = "dakk"; + repo = "secp256k1-ml"; + rev = "42c04c93e2ed9596f6378676e944c8cfabfa69d7"; + sha256 = "1zw2kgg181a9lj1m8z0ybijs8gw9w1kk990avh1bp9x8kc1asffg"; + }; + + buildInputs = [ base stdio configurator secp256k1 ]; + + meta = with stdenv.lib; { + homepage = https://github.com/dakk/secp256k1-ml; + description = "Elliptic curve library secp256k1 wrapper for Ocaml"; + license = licenses.mit; + maintainers = [ maintainers.vyorkin ]; + }; +} diff --git a/pkgs/top-level/ocaml-packages.nix b/pkgs/top-level/ocaml-packages.nix index 97dda19a10a..1df001895b7 100644 --- a/pkgs/top-level/ocaml-packages.nix +++ b/pkgs/top-level/ocaml-packages.nix @@ -593,6 +593,10 @@ let result = callPackage ../development/ocaml-modules/ocaml-result { }; + secp256k1 = callPackage ../development/ocaml-modules/secp256k1 { + inherit (pkgs) secp256k1; + }; + seq = callPackage ../development/ocaml-modules/seq { }; sequence = callPackage ../development/ocaml-modules/sequence { }; From c2466ced95318d8cbeaf6efe972f7c296a98c4e6 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 2 Aug 2019 18:48:33 +0200 Subject: [PATCH 1435/1611] pkgs/servers/x11/xorg: Git-ignore download-cache It's generated when updating using generate-expr-from-tarballs.pl --- pkgs/servers/x11/xorg/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 pkgs/servers/x11/xorg/.gitignore diff --git a/pkgs/servers/x11/xorg/.gitignore b/pkgs/servers/x11/xorg/.gitignore new file mode 100644 index 00000000000..1bf88f244e8 --- /dev/null +++ b/pkgs/servers/x11/xorg/.gitignore @@ -0,0 +1 @@ +download-cache/ From e3329f9e85b80c2defadf0669dabdd011dfa72ab Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 2 Aug 2019 18:49:45 +0200 Subject: [PATCH 1436/1611] xorg.libXTrap: init at 1.0.1 Fixes build of xorg.xtrap --- pkgs/servers/x11/xorg/default.nix | 17 +++++++++++++++-- pkgs/servers/x11/xorg/tarballs.list | 1 + 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index a5869b21c58..3be672c29f1 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -728,6 +728,19 @@ lib.makeScope newScope (self: with self; { meta.platforms = stdenv.lib.platforms.unix; }) {}; + libXTrap = callPackage ({ stdenv, pkgconfig, fetchurl, xorgproto, libX11, libXext, libXt }: stdenv.mkDerivation { + name = "libXTrap-1.0.1"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/lib/libXTrap-1.0.1.tar.bz2; + sha256 = "0bi5wxj6avim61yidh9fd3j4n8czxias5m8vss9vhxjnk1aksdwg"; + }; + hardeningDisable = [ "bindnow" "relro" ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ xorgproto libX11 libXext libXt ]; + meta.platforms = stdenv.lib.platforms.unix; + }) {}; + libXau = callPackage ({ stdenv, pkgconfig, fetchurl, xorgproto }: stdenv.mkDerivation { name = "libXau-1.0.9"; builder = ./builder.sh; @@ -2834,7 +2847,7 @@ lib.makeScope newScope (self: with self; { meta.platforms = stdenv.lib.platforms.unix; }) {}; - xtrap = callPackage ({ stdenv, pkgconfig, fetchurl, libX11, libXt }: stdenv.mkDerivation { + xtrap = callPackage ({ stdenv, pkgconfig, fetchurl, libX11, libXt, libXTrap }: stdenv.mkDerivation { name = "xtrap-1.0.3"; builder = ./builder.sh; src = fetchurl { @@ -2843,7 +2856,7 @@ lib.makeScope newScope (self: with self; { }; hardeningDisable = [ "bindnow" "relro" ]; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libX11 libXt ]; + buildInputs = [ libX11 libXt libXTrap ]; meta.platforms = stdenv.lib.platforms.unix; }) {}; diff --git a/pkgs/servers/x11/xorg/tarballs.list b/pkgs/servers/x11/xorg/tarballs.list index 26c2721e240..426b848a138 100644 --- a/pkgs/servers/x11/xorg/tarballs.list +++ b/pkgs/servers/x11/xorg/tarballs.list @@ -202,6 +202,7 @@ mirror://xorg/individual/lib/libXrender-0.9.10.tar.bz2 mirror://xorg/individual/lib/libXres-1.2.0.tar.bz2 mirror://xorg/individual/lib/libXScrnSaver-1.2.3.tar.bz2 mirror://xorg/individual/lib/libxshmfence-1.3.tar.bz2 +mirror://xorg/individual/lib/libXTrap-1.0.1.tar.bz2 mirror://xorg/individual/lib/libXt-1.1.5.tar.bz2 mirror://xorg/individual/lib/libXtst-1.2.3.tar.bz2 mirror://xorg/individual/lib/libXv-1.0.11.tar.bz2 From 495222a840d3a09dbde029e60f83218c31575c97 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Fri, 2 Aug 2019 15:10:27 +0200 Subject: [PATCH 1437/1611] nixos/prometheus-exporter: use separate user for each exporter Stop using nobody/nogroup by default and use seperate users for each exporter instead. --- .../services/monitoring/prometheus/exporters.nix | 16 ++++++++++++++-- .../monitoring/prometheus/exporters/dovecot.nix | 4 ++-- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 15ec2e868b8..04aeb33878b 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -88,7 +88,7 @@ let }; user = mkOption { type = types.str; - default = "nobody"; + default = "${name}-exporter"; description = '' User name under which the ${name} exporter shall be run. Has no effect when is true. @@ -96,7 +96,7 @@ let }; group = mkOption { type = types.str; - default = "nobody"; + default = "${name}-exporter"; description = '' Group under which the ${name} exporter shall be run. Has no effect when is true. @@ -129,6 +129,18 @@ let mkExporterConf = { name, conf, serviceOpts }: mkIf conf.enable { warnings = conf.warnings or []; + users.users = (mkIf (conf.user == "${name}-exporter") { + "${name}-exporter" = { + description = '' + Prometheus ${name} exporter service user + ''; + isSystemUser = true; + inherit (conf) group; + }; + }); + users.groups = (mkIf (conf.group == "${name}-exporter") { + "${name}-exporter" = {}; + }); networking.firewall.extraCommands = mkIf conf.openFirewall (concatStrings [ "ip46tables -A nixos-fw ${conf.firewallFilter} " "-m comment --comment ${name}-exporter -j nixos-fw-accept" diff --git a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix index 039242b730c..39c908fea57 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix @@ -39,8 +39,8 @@ in mail_plugins = $mail_plugins old_stats service old-stats { unix_listener old-stats { - user = nobody - group = nobody + user = dovecot-exporter + group = dovecot-exporter } } '''; From afd0dc17d6bbb9d5ee88e3bec56ec02e9a94c6f8 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Fri, 2 Aug 2019 15:23:23 +0200 Subject: [PATCH 1438/1611] nixos/prometheus-exporters: use DynamicUser by default Only define seperate users and groups when necessary. --- .../services/monitoring/prometheus/exporters.nix | 10 +++++++--- .../services/monitoring/prometheus/exporters/bind.nix | 1 - .../monitoring/prometheus/exporters/blackbox.nix | 1 - .../monitoring/prometheus/exporters/collectd.nix | 1 - .../monitoring/prometheus/exporters/dnsmasq.nix | 1 - .../monitoring/prometheus/exporters/dovecot.nix | 1 + .../monitoring/prometheus/exporters/fritzbox.nix | 1 - .../services/monitoring/prometheus/exporters/json.nix | 1 - .../services/monitoring/prometheus/exporters/mail.nix | 1 + .../services/monitoring/prometheus/exporters/minio.nix | 1 - .../services/monitoring/prometheus/exporters/nginx.nix | 1 - .../services/monitoring/prometheus/exporters/node.nix | 1 + .../monitoring/prometheus/exporters/postfix.nix | 1 + .../monitoring/prometheus/exporters/postgres.nix | 1 + .../services/monitoring/prometheus/exporters/snmp.nix | 1 - .../monitoring/prometheus/exporters/surfboard.nix | 1 - .../services/monitoring/prometheus/exporters/tor.nix | 1 - .../services/monitoring/prometheus/exporters/unifi.nix | 1 - .../monitoring/prometheus/exporters/varnish.nix | 1 + .../monitoring/prometheus/exporters/wireguard.nix | 1 - nixos/tests/prometheus-exporters.nix | 9 ++++----- 21 files changed, 17 insertions(+), 21 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 04aeb33878b..2ab8910ff9d 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -127,9 +127,12 @@ let ); mkExporterConf = { name, conf, serviceOpts }: + let + enableDynamicUser = serviceOpts.serviceConfig.DynamicUser or true; + in mkIf conf.enable { warnings = conf.warnings or []; - users.users = (mkIf (conf.user == "${name}-exporter") { + users.users = (mkIf (conf.user == "${name}-exporter" && !enableDynamicUser) { "${name}-exporter" = { description = '' Prometheus ${name} exporter service user @@ -138,7 +141,7 @@ let inherit (conf) group; }; }); - users.groups = (mkIf (conf.group == "${name}-exporter") { + users.groups = (mkIf (conf.group == "${name}-exporter" && !enableDynamicUser) { "${name}-exporter" = {}; }); networking.firewall.extraCommands = mkIf conf.openFirewall (concatStrings [ @@ -151,7 +154,8 @@ let serviceConfig.Restart = mkDefault "always"; serviceConfig.PrivateTmp = mkDefault true; serviceConfig.WorkingDirectory = mkDefault /tmp; - } serviceOpts ] ++ optional (!(serviceOpts.serviceConfig.DynamicUser or false)) { + serviceConfig.DynamicUser = mkDefault enableDynamicUser; + } serviceOpts ] ++ optional (!enableDynamicUser) { serviceConfig.User = conf.user; serviceConfig.Group = conf.group; }); diff --git a/nixos/modules/services/monitoring/prometheus/exporters/bind.nix b/nixos/modules/services/monitoring/prometheus/exporters/bind.nix index 7bcd03e0706..972632b5a24 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/bind.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/bind.nix @@ -39,7 +39,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-bind-exporter}/bin/bind_exporter \ -web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix b/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix index bf78cb15ad9..f69b389760f 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/blackbox.nix @@ -18,7 +18,6 @@ in serviceOpts = { serviceConfig = { AmbientCapabilities = [ "CAP_NET_RAW" ]; # for ping probes - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-blackbox-exporter}/bin/blackbox_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix b/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix index 8c8ea08b5d4..1cc34641809 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/collectd.nix @@ -64,7 +64,6 @@ in '' else ""; in { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-collectd-exporter}/bin/collectd_exporter \ -log.format ${cfg.logFormat} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix b/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix index 1b2ab93b302..e9fa26cb1f5 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/dnsmasq.nix @@ -26,7 +26,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-dnsmasq-exporter}/bin/dnsmasq_exporter \ --listen ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix index 39c908fea57..a01074758ff 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/dovecot.nix @@ -59,6 +59,7 @@ in }; serviceOpts = { serviceConfig = { + DynamicUser = false; ExecStart = '' ${pkgs.prometheus-dovecot-exporter}/bin/dovecot_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix b/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix index f2f7dcf06a8..9526597b8c9 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/fritzbox.nix @@ -26,7 +26,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-fritzbox-exporter}/bin/exporter \ -listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/json.nix b/nixos/modules/services/monitoring/prometheus/exporters/json.nix index c0b677f2f62..82a55bafc98 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/json.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/json.nix @@ -24,7 +24,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-json-exporter}/bin/prometheus-json-exporter \ --port ${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/mail.nix b/nixos/modules/services/monitoring/prometheus/exporters/mail.nix index a1b46140d3e..7d8c6fb6140 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/mail.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/mail.nix @@ -143,6 +143,7 @@ in }; serviceOpts = { serviceConfig = { + DynamicUser = false; ExecStart = '' ${pkgs.prometheus-mail-exporter}/bin/mailexporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/minio.nix b/nixos/modules/services/monitoring/prometheus/exporters/minio.nix index 2ecc62b0d79..ab3e3d7d5d5 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/minio.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/minio.nix @@ -50,7 +50,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-minio-exporter}/bin/minio-exporter \ -web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix index 7d819b04ada..554377df37b 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix @@ -34,7 +34,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-nginx-exporter}/bin/nginx-prometheus-exporter \ --nginx.scrape-uri '${cfg.scrapeUri}' \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/node.nix b/nixos/modules/services/monitoring/prometheus/exporters/node.nix index 2477e69ea26..7e394e8463e 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/node.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/node.nix @@ -27,6 +27,7 @@ in }; serviceOpts = { serviceConfig = { + DynamicUser = false; RuntimeDirectory = "prometheus-node-exporter"; ExecStart = '' ${pkgs.prometheus-node-exporter}/bin/node_exporter \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix index 963fa759256..f40819e826b 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/postfix.nix @@ -62,6 +62,7 @@ in }; serviceOpts = { serviceConfig = { + DynamicUser = false; ExecStart = '' ${pkgs.prometheus-postfix-exporter}/bin/postfix_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix b/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix index e595d63ba32..1ece73a1159 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/postgres.nix @@ -34,6 +34,7 @@ in serviceOpts = { environment.DATA_SOURCE_NAME = cfg.dataSourceName; serviceConfig = { + DynamicUser = false; User = mkIf cfg.runAsLocalSuperUser (mkForce "postgres"); ExecStart = '' ${pkgs.prometheus-postgres-exporter}/bin/postgres_exporter \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix b/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix index 4361c3543ba..fe7ae8a8ac9 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/snmp.nix @@ -57,7 +57,6 @@ in else "${pkgs.writeText "snmp-eporter-conf.yml" (builtins.toJSON cfg.configuration)}"; in { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-snmp-exporter.bin}/bin/snmp_exporter \ --config.file=${configFile} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix b/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix index 197a0a949e0..81c5c70ed93 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/surfboard.nix @@ -20,7 +20,6 @@ in description = "Prometheus exporter for surfboard cable modem"; unitConfig.Documentation = "https://github.com/ipstatic/surfboard_exporter"; serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-surfboard-exporter}/bin/surfboard_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/tor.nix b/nixos/modules/services/monitoring/prometheus/exporters/tor.nix index 4a59e83fc2e..36c473677ef 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/tor.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/tor.nix @@ -26,7 +26,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-tor-exporter}/bin/prometheus-tor-exporter \ -b ${cfg.listenAddress} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix index 696c2fe3535..9aa0f1b85aa 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/unifi.nix @@ -51,7 +51,6 @@ in }; serviceOpts = { serviceConfig = { - DynamicUser = true; ExecStart = '' ${pkgs.prometheus-unifi-exporter}/bin/unifi_exporter \ -telemetry.addr ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix index f38221527b3..12153fa021e 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/varnish.nix @@ -69,6 +69,7 @@ in path = [ pkgs.varnish ]; serviceConfig = { RestartSec = mkDefault 1; + DynamicUser = false; ExecStart = '' ${pkgs.prometheus-varnish-exporter}/bin/prometheus_varnish_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ diff --git a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix index 5aed4a3a966..2e6ff3e746e 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix @@ -47,7 +47,6 @@ in { path = [ pkgs.wireguard-tools ]; serviceConfig = { - DynamicUser = true; AmbientCapabilities = [ "CAP_NET_ADMIN" ]; }; }; diff --git a/nixos/tests/prometheus-exporters.nix b/nixos/tests/prometheus-exporters.nix index f25c93300bb..02d83f82f33 100644 --- a/nixos/tests/prometheus-exporters.nix +++ b/nixos/tests/prometheus-exporters.nix @@ -191,7 +191,6 @@ let mail = { exporterConfig = { enable = true; - user = "mailexporter"; configuration = { monitoringInterval = "2s"; mailCheckTimeout = "10s"; @@ -199,9 +198,9 @@ let name = "testserver"; server = "localhost"; port = 25; - from = "mailexporter@localhost"; - to = "mailexporter@localhost"; - detectionDir = "/var/spool/mail/mailexporter/new"; + from = "mail-exporter@localhost"; + to = "mail-exporter@localhost"; + detectionDir = "/var/spool/mail/mail-exporter/new"; } ]; }; }; @@ -211,7 +210,7 @@ let after = [ "postfix.service" ]; requires = [ "postfix.service" ]; preStart = '' - mkdir -p 0600 mailexporter/new + mkdir -p 0600 mail-exporter/new ''; serviceConfig = { ProtectHome = true; From 29d765e250760b14b1d3ceb70e949947ea5b91cb Mon Sep 17 00:00:00 2001 From: WilliButz Date: Fri, 2 Aug 2019 15:34:19 +0200 Subject: [PATCH 1439/1611] nixos/prometheus-wireguard-exporter: use ExecStart instead of script --- .../monitoring/prometheus/exporters/wireguard.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix index 2e6ff3e746e..aee7cba2638 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/wireguard.nix @@ -36,18 +36,17 @@ in { }; }; serviceOpts = { - script = '' - ${pkgs.prometheus-wireguard-exporter}/bin/prometheus_wireguard_exporter \ - -p ${toString cfg.port} \ - ${optionalString cfg.verbose "-v"} \ - ${optionalString cfg.singleSubnetPerField "-s"} \ - ${optionalString (cfg.wireguardConfig != null) "-n ${cfg.wireguardConfig}"} - ''; - path = [ pkgs.wireguard-tools ]; serviceConfig = { AmbientCapabilities = [ "CAP_NET_ADMIN" ]; + ExecStart = '' + ${pkgs.prometheus-wireguard-exporter}/bin/prometheus_wireguard_exporter \ + -p ${toString cfg.port} \ + ${optionalString cfg.verbose "-v"} \ + ${optionalString cfg.singleSubnetPerField "-s"} \ + ${optionalString (cfg.wireguardConfig != null) "-n ${cfg.wireguardConfig}"} + ''; }; }; } From 1ce989cce6d2ab5987e32e84f2b9f0627f99253a Mon Sep 17 00:00:00 2001 From: WilliButz Date: Fri, 2 Aug 2019 16:22:41 +0200 Subject: [PATCH 1440/1611] nixos/prometheus-exporters: update documentation --- nixos/modules/services/monitoring/prometheus/exporters.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/monitoring/prometheus/exporters.xml b/nixos/modules/services/monitoring/prometheus/exporters.xml index f6cd1ef57d0..c2d4b05996a 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.xml +++ b/nixos/modules/services/monitoring/prometheus/exporters.xml @@ -159,8 +159,10 @@ in # `serviceOpts.script` and `serviceOpts.serviceConfig.ExecStart` # has to be specified here. This will be merged with the default # service confiuration. + # Note that by default 'DynamicUser' is 'true'. serviceOpts = { serviceConfig = { + DynamicUser = false; ExecStart = '' ${pkgs.prometheus-postfix-exporter}/bin/postfix_exporter \ --web.listen-address ${cfg.listenAddress}:${toString cfg.port} \ From 370370aa2c00a6d17465d33d4dedef7a24d906eb Mon Sep 17 00:00:00 2001 From: WilliButz Date: Fri, 2 Aug 2019 16:23:08 +0200 Subject: [PATCH 1441/1611] nixos/release-notes: add note about prometheus-exporters --- nixos/doc/manual/release-notes/rl-1909.xml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1909.xml b/nixos/doc/manual/release-notes/rl-1909.xml index 049d21d01b2..6f049005ab6 100644 --- a/nixos/doc/manual/release-notes/rl-1909.xml +++ b/nixos/doc/manual/release-notes/rl-1909.xml @@ -219,6 +219,13 @@ Nodejs 8 is scheduled EOL under the lifetime of 19.09 and has been dropped.
+ + + By default, prometheus exporters are now run with DynamicUser enabled. + Exporters that need a real user, now run under a seperate user and group which follow the pattern <exporter-name>-exporter, instead of the previous default nobody and nogroup. + Only some exporters are affected by the latter, namely the exporters dovecot, node, postfix and varnish. + + From e51a0f68c69ba93163954bfdc4140034c61de55c Mon Sep 17 00:00:00 2001 From: flatulation Date: Fri, 2 Aug 2019 17:36:02 +0100 Subject: [PATCH 1442/1611] firefox-beta-bin-unwrapped: 68.0b12 -> 69.0b10 --- .../browsers/firefox-bin/beta_sources.nix | 746 +++++++++--------- 1 file changed, 373 insertions(+), 373 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix index 78a6a52e20f..133c37d0606 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix @@ -1,935 +1,935 @@ { - version = "68.0b12"; + version = "69.0b10"; sources = [ - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ach/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ach/firefox-69.0b10.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha512 = "63b9f627e652b3cd48c33eed8fa04e4c154b0e2dc2f6dd58d43b37a5a4043d2b120b45f24c1e794672bbd4e981d0865fb950c336b6a4201973e4c8b3b4bf1d1c"; + sha512 = "1a7b57f59dc6503e2c457955d48609fd06e6b86b23a508ae15304e19fdf1b347f209a58075c24041ddfb4c80a5aaf9e66d5e721cf57815d16f43741b5184dca1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/af/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/af/firefox-69.0b10.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha512 = "58e69cf58c679b8d7ccd2a06aa61b71f6cd4cdc052e506bed2155519a13127049457a1e47789077ff1bd87dbb81583a60678e230e5c6f1ea7b4386a20e6f26f0"; + sha512 = "5f037bb80ebeb5da5eecc94bdeab4e1809e09d6aa93bded34dd87d929e72237e69cee896ef02b51d5dc2a272a4fe40739fcf683ccc9806dd8039f5ee403534cf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/an/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/an/firefox-69.0b10.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha512 = "51785eb45aed769e65a786661dc89e2044475070da31910e66a567b4f747df8ce694d4a5fc28c9cada0e4a1ab43e553d9ffd9ebf2249bd4ebc523e35312bf944"; + sha512 = "f48b2f24cbac76fee0a6b6eb1f77f13234acc283f3213c7c5d776410c4c23a17207ff7b857d609d25eb80a3f1c3c6dd4742d5c7a3216ae0a6193831ff428dd3c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ar/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ar/firefox-69.0b10.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha512 = "79d5044947911e22d2e4a4c563b34a38a8e6972637026cdab4fba359566d1a78163298dbfca544c388918b2d3581fdffa89a9a61449d5d20f1c7e7989aa987c0"; + sha512 = "be8961705ad1f8c90c5a5550b7fe6d3427d53cdad5e3c4f629f5f6267cdf6085a35d03ed49851e54413a7b00230ab66d7348b751fdab2d1ca52e9e9a156c4b1f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ast/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ast/firefox-69.0b10.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha512 = "ae7cdc0d5dcd7297c9e78f55e36207621b148b8040d074672a64252e681bfcdcff1c17af021a31f3c9d89ae38326cc508f350c6840d77b1480b25e05f1c6b2d2"; + sha512 = "d323bda4f61c784179484cc85171ec802c4fb3a559cc177937f0862ace8359d91d0b205ab289b724a0545f82dd36a8e7e1312053747b8ff64ac920effdf2eedb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/az/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/az/firefox-69.0b10.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha512 = "c8252fc3fb04008f0cffa43db9983fd741b8bfa04e0fd03d8a293f9cf2eb7a8a7b7b3a6ed14b0fc433aabdb6f106df8c309d83b1a1e60a6539d7fdbc236be092"; + sha512 = "afe1a5359ef53315d8c27db657ac578613d392d3d946e02456e03fcbbea756f014ec500639d6560b4bd8d096e23699650118657d0b08d8858b89cab9a102ace8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/be/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/be/firefox-69.0b10.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha512 = "75784cc6833bb7c988d8b288a8fb64fda53e642fe2c2bce5a525b6aa3a823d409f996d221b90f4445a1ce4d5fbaf0fcdbf6121a2f0e7a0d8106686c9780b192f"; + sha512 = "4ad1e8dc3f5f28ec0ab9f652a1d49dc0d0103b1e3c2462a9cb8754c444fa31bda76ea24b3608efcdddcab8ad2a1248214462c60c5348cf918c133152e7c33177"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/bg/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/bg/firefox-69.0b10.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha512 = "38aa22c8739e72594757db7130f34e577b260bc2a61987761348dc356b9d951fba997f5f78084bdef9d8742faf4491e94993fa4e0777913a3c58b28fd3be791b"; + sha512 = "d510f03564876531f7406b210b60a4076c9c48d403f6a80901bae6495beff9d2bdcce953ad02245b20389c38d9b0843e76356cb52cf081ddd46738e703335b2e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/bn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/bn/firefox-69.0b10.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha512 = "d6074ab4cd4346774f143406facd7dbee1b3e4d45092a9d61085c6639c9ebc47599b2e8df7dfc79a2a15335a7746f5dce08fac9ebdf082df12f407aff5dc705c"; + sha512 = "23c1674ba24c7d6abd7159ec422fbe718bc706424ff243623dc9852ad3867281e54aa1b6129cf9a5d5de56d267558cd6abaf6821ffd51265bbb7202914ab950f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/br/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/br/firefox-69.0b10.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha512 = "47377442b5c53424feb7c329f634a1e7da72ef92f152beed1306a602812184f48f9d0d47d22d7f0508a23e27b997685528b80297866668bf04323361f926b255"; + sha512 = "bc3589a09d40bf7e2e538a408a1fbe0c3fcb373b0b0002e5ca039b60d655492283830530b251d5acbf1152dd64f95097aa99f37965819fb19386014fcdef9cf1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/bs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/bs/firefox-69.0b10.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha512 = "ab2237624d724a130da9daecdbcbc6f34feb76320000809d227929d35456450e15d45088b809b043c0387843e988b1a3ac155b44a2134c8ff57d8f79c81746d2"; + sha512 = "a9c60dd3ec3d00a171eb66506d514560b3c09b5a2650b17207bc841dd5b365d0f545dba75b37c0e84e18321cc92932ac25ff9859a76a4be2f8174fcc594b8211"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ca/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ca/firefox-69.0b10.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha512 = "559f469319186e63da2da98864f4070414bccefa619a8ff5b8d149e3bb44013fc8a9e29abcf66931ae1cef3b76d0cc1f626f5fe84aa00e7905330609746f1ef6"; + sha512 = "98cc03135c40f3c827b7bf583925cdc11d4595fc4fe8868f52616efb2ae72b26145964a97c01e199a65cb643642c558802dea6f4c1c45a1daf2f201a82467eda"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/cak/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/cak/firefox-69.0b10.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha512 = "10ee270b0f201ff6127e1dfaf2e80a4f665ffea5206944d658379582be0169242a2062705cd5588764ed479775efb2f7a476a9618ad8517c90cf36350c587a35"; + sha512 = "74ea91936aa49ac7edc9d91917de7ca9ff15226d95375d02c6d687ee3effab8dc3c47c38378953cd55486e2c0d4fb2a00431178ea45309d1a20301310c42c89d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/cs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/cs/firefox-69.0b10.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha512 = "bb44e9cee3a211a858b87e307494376edf3edfd7c691c5e643b1cf575aca2f6e95987fbecc11355ebeee724c5607f6f938360b3e1ff2157433de22ff3cc18c68"; + sha512 = "be3c5fb9f0fa30a8fa9fff4df91f622dc222546aa8aaaa8e64f13dabc86a9475c1e2ccca1426457d287cac2c3159f048b5246cf7a9372bbb46c67d529e126bbe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/cy/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/cy/firefox-69.0b10.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha512 = "15be2de82abd5e631c609e034fc267743835a7b35c1afa0ee56c082d3abd3aa293254021141d435004afe7b0dfb48af03247683736de091364476f63635e01da"; + sha512 = "b60163ce4fdc726507b2899bee66dbe03a3b700c4a59c42d7cc3c131648588ec1b29664cf716b176fac73b9749f630505ecf65248110779b2cb55a2ef05bd9dc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/da/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/da/firefox-69.0b10.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha512 = "78ec7abc743c26f48ea5a5232feed7026f9b57992214c007d2486cf19e996a5c074bf972951beca030e534fa1c967af94ba5767d8002bce1089a007926ede8b2"; + sha512 = "8cd36e2c99f8e15e27cc5263d9f7c329b3421184ac017d34e286492190e0d74cd521849376d72bfe5d718c81ad4ebc0bfdf7d892a810639e212530184c9f457a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/de/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/de/firefox-69.0b10.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha512 = "be1e4a3466b3d2d442547895623bd055055da4911345567c569f54f098a31b12cdb25a36994796435e1effd7cac2c0f064614c89649faff9b4b7d6223fdd4439"; + sha512 = "b7b8fdf8caf159bd2a10c2a827b2d89cafd97cd29554f7b837dec9f3b10b393010b3fde927c2a54be02b232b2d105d71753c94b15be7de29cc226ab03c860a05"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/dsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/dsb/firefox-69.0b10.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha512 = "184815dddf4d41ec5d00db47e43004bb8af8cddc694412a81af405da38808e75f7ba1d73f74ebe68409d3e939858ef390eca6829e58bf0739ac9f2552f07171c"; + sha512 = "9932ee55b2d0ca583b9120260592569fffbecdf10745b3d320ff1c68f3866dd1f89643cf6c8df3ec585fd34530bf2a0d49f4a5f835d7a65b10ecb7da7af7067d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/el/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/el/firefox-69.0b10.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha512 = "5ea63e62510babdebf33296a4ed91fea53758c67f5942db663964f04af6f9f96e091d9a423c9558eedf553b4dd69db55e453c1ac99631eae8813581874f9f584"; + sha512 = "6a0afb7e5ab4323957acaa6b53062d0a85cdebca058270a2486310e50157b8028b2c77a4d366a503f44034a5879aa135bfbe1f95a4a3c6ddc9498ca1fbc558ca"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/en-CA/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/en-CA/firefox-69.0b10.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha512 = "af35af203abe32360fb99ff7a913554ef0520c2524f93b5c194cfe080cf2f65247aacf0231cc1b90867737c29b8b385983d0ae0de902bc9f9cf4f0bd67de2b14"; + sha512 = "431c6f3d28a2331628ef0a762736bbc4d1bc4e68a73de39e4e3798618201c579f0bcf9fd61ac26fada5c7ca0b112e9f9d3cae96ad981ab677e88805f8b5d2bcf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/en-GB/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/en-GB/firefox-69.0b10.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha512 = "145c2b405c4eeaa932720e706246561dd83038a8a21918f2ce1b0012efcac7d0d7d9c3257c2a8b3020197e4a6bb8fa93609a0a04bbc698dac38cff6de13b1b6e"; + sha512 = "f3c852da6abad331eb3f0e168736aeaef9172a258f949d150f729bb295e76674bd74715671950e338542fb9ab08331d5d53883db449438814a1378e2c0c7cb5d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/en-US/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/en-US/firefox-69.0b10.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha512 = "0a2c58bd51c6ef8ab4826130067ed07ba87f81c621d0b5dc3166a366d054e2e71b982fd65e74d83bfb63152d4087e46e07177265c6b44f538953cd961deed5f0"; + sha512 = "64d49769e3e908510b4539f39765ff3eb7b108b24e7f431be837116a6b83ef13a02bc3f5f40232a87c9ba25305d75f30f2ad830a9a37cdb30e5cb58bac567fc5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/eo/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/eo/firefox-69.0b10.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha512 = "e26839f4b78cb079016a39f3873380123be4d7ca804c8b15ed59190157a806395513317adafc978dd45bb7571350685774e7eefdce720a14b81b38df5d9ff06f"; + sha512 = "2e078e519874deca4790e1f97c56d8d7f51988e321a676ee347fc30fa51b6ea25d14dc7f5f79d8a0dfd4c76fb4540599fbc0fd7ba16460907e8a1ec661b6eecd"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/es-AR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/es-AR/firefox-69.0b10.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha512 = "fc6b5902ee337bb05a3f1c3e4ba9f37e90a8efe650003164d662a3225ece90512a86abe5fddf9c80e2eb30bb1cdef022b03fda53175f9f6fd3ff626d502c5b82"; + sha512 = "7d3b797c0dd0c13867786dfe2779a264a9fa5b4626f9db97beba08c69f0d63de425b6dc6447554ca9a5fa36bbd942510c2565405469d1e4aa64737de7f024231"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/es-CL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/es-CL/firefox-69.0b10.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha512 = "12c0ce281867ad4f6c5a190ae11174bcdbe81137a31deb0eeb6997a46826d6f53129394b314d3a0d6bae1d4119498257d34f6ffc5b30568d457b6a6ced186639"; + sha512 = "e8382333581d1a30db66941950b2ecb02d0b93a48d2da79a63c36b66f093da20e03943a51aae9ff6cbd65252a7cd0b4b6760b8b27ed536f1f5f058411b8ac4fe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/es-ES/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/es-ES/firefox-69.0b10.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha512 = "1e30b6695d13c1d11dda43f4f87be9bb5d0115891ddaaab793ec842d4b38ae669cd71db065eaede2fef84235bb4ef6186d2cdd236d310a4b7f27e03a725e410c"; + sha512 = "312295d067a1aede3ee947c1423b8dac575610e24bb8f0b5c5bc981d009e669d8185978ae3f3b17fa9fe655f4b3a01bcd3aec2afb3adf8b916ac2abefde302cb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/es-MX/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/es-MX/firefox-69.0b10.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha512 = "e60152629eefad15af7af7cbf788119732933911c9c3765a9722aa11617349a4341741b5116e7a4e76d5f5bf3c1f7bf786c3d4b10c2c33ae6cf19950f308a331"; + sha512 = "147deb688909ffc381ad43b2311d30815601d48030ba6e381ddfecd9a2ea9b299ccf1337adb12907664a30157a0dacd19311f311f3765d23ce5dfe85cd469d2a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/et/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/et/firefox-69.0b10.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha512 = "ab4fc13e9c851065fd04f25e4c1e2ee740e6505e903e8c15150eb60b3d7a80af678f7af1a2a508b651d4fbfbc7bd9f5626056df7142806561a00736237cc36ca"; + sha512 = "82847b67b0c1b758682aee0a404f27f04e935eeb77e62ad7636e8ae6671e4bbdbb369b38115c0d66567029929f00841eaa254cb180653f730f34446fd45df57d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/eu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/eu/firefox-69.0b10.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha512 = "46eec787849aaf9cb125e881881a7e0c98f39ac6a5666bf56b54f78e07e1e13bae5308083717cc9ee4e85cbcb6dab60eabf5b3e722507432e0c122bede73c11d"; + sha512 = "79e6551219630ad521e67a7f5669ccdbe7346a5dd0ac6b1aab2654d13430d971b4e455b52900e82e0a9fcc7ab6f27f4433d90ddedb57f199cbf6bbc6217770b1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/fa/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/fa/firefox-69.0b10.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha512 = "fd595bdb3dfe3bebf04d80499b25386094ab9c594815c93b678c41c551fc5198db60012a66a878d9bfb0f300c731607b7bcce94108a8b44d515b0238d7d30a59"; + sha512 = "67e80ad128ba1251fbafc483be98365e80b8ef888448e6e56fc06e901f93e2f10de9683bdb1e24b77717bfec0428be30769ff8676c7f52b8004159a77181b05c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ff/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ff/firefox-69.0b10.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha512 = "f3a4dc9dc9677064f65e7eca298eada76feee7399537860db48c853946d163b405a1db2c84e58c7be6b1e868ef9e3b09c5058ca7dc0e7c107db072bac2907d5a"; + sha512 = "3b888ba947259b334ae018d3cfd03168686abecf00b75fa1630491f3f190fd59a62af7e06bfec135410b1ee78cf82acc387bf9b13d5c7971b25d82a92733053d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/fi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/fi/firefox-69.0b10.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha512 = "ce8ed3b5a3856903db73ef5ea0286126c119a76d44f5dfbe7f8b2261e99046fcaf4f06d07118dc1726d915a5e1ec909a4ca45ad75bdbc3f16b93258a6b987e52"; + sha512 = "70c13e5d110c1508b66cd48baf81652860196d9d350e36e51631fb6f4e979f8fb4df9f712f15b13c54b2c2651661eb2465599cfbc294a94e137dbe93ec15dbda"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/fr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/fr/firefox-69.0b10.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha512 = "75ca1639d5d2be13c186ace6cd9064705827bc63fad48dfbdbe275d1c427ed00b6ce401cfd1c019b46d49453bfce1de51222747f8d7c9ecf373a7898be7993b5"; + sha512 = "3c0da7e5784b34cfee62e4b66e347132f02c22ba7fcef9b384643ddbe1121a2865169079e064e157193ba006c720ddec3d59e85df6c806226a5185142eca9c73"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/fy-NL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/fy-NL/firefox-69.0b10.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha512 = "04fb6e2c7c0bf006f45b1d43c543fc43a81063de3dd923a2e72db5d8baf6375251313d00bf960e7e3767f60999884b018bec51a47b92415d6c90218327790da4"; + sha512 = "387aa2fa548820dd9e4a1b4ec374b500946dac4f93aa743b2166f08b78cdf8d34c86bdda25e7c4b17df0d94773b94c88a76472a27ca6d522adcdcfb4ef579874"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ga-IE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ga-IE/firefox-69.0b10.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha512 = "746f3ac13e2d030db89cfee4629c6dcf467a735c124f026e24fd409794bb567730fc50fa4befdf9fa093456d86bd588c9657cd26875683f86d919ed0b3993d18"; + sha512 = "968455b9e61db7b669ff4a34fd085508930576d4e1009431c5207b1c76a66de776eed3cb6f0370d26d9b44d9c3e4e710537e57c86ce5b28d90c5f80a828a3594"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/gd/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/gd/firefox-69.0b10.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha512 = "f28e688e388e3a5c587bbc41e58f6af85ef41fe67fa847d6ee257005a783a6e2e19f422d8678b3c44e1e386d088a276ffde8da48feca5acd964a706c7eb94222"; + sha512 = "557937a63061312bf3371e2f257c9463667182a28e4f4488caa39ed57185344cffac6a937817cf058538e39ce4087f6734c2e00a2a1cedff253736480818dd5e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/gl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/gl/firefox-69.0b10.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha512 = "444c4227c6ade4ff0452e751646a450a0db96f145ff6fdd68f7b58e6aac291ed1313e57003a6084df33d4718e407fa58d0043e6eba5f585da2ed98ea4f40ffab"; + sha512 = "ad568ee3c89d7e869bdbdf2a50e611ccbeb6c6446b2e314e474c43c6f0d470290bca3534e2cba917b1ed77b7c8480a756cc0c2a3d4907ef91809f21f6dbbfbfe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/gn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/gn/firefox-69.0b10.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha512 = "dbd6a63dde30c979727048957f80d677d9cb3926f64d8783244e28efb167872dce4d6089e818e2b5a044969558395e6f74bb29657aff1424a07711c18f0a1aac"; + sha512 = "52440609480bb73b62d4ce0d35e68f459153ecd815233c70cb5a2f2f5555d56cee0bc548eb68f6e2d4f3979fc14c8a101ca9a9506a3ed592341a1f818962d325"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/gu-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/gu-IN/firefox-69.0b10.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha512 = "f93f362a8711aeae41c833e32146969d3a931bc26066ab84d4f3f09384022d9ee23b791e6893ce530766443f365bdcb8c732d7ab9ce9c7200a66d6a90da96bf5"; + sha512 = "d6d445097510f45d9c320b19cd0db97e69f8e5de8f31a532e1b929d0bcb04c86dfe38b20bcc5ff320581d7febba06f1ef5e3ddc61641dca382b66f0f2d7fa942"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/he/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/he/firefox-69.0b10.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha512 = "96dc618290fc3a6b8d073e57474c2dc5c32e6708be676ed42eb73e0073186c82b110cf63984de43ba6bafebf808da15e4650c34df47d9647b62d8b9290de8dcf"; + sha512 = "ee81c7847efcb09ad9603194641798e200558b4dca7f19b93ccd918e4f63fe0400e9a91583444f1c017112dcf56d73506c29a94eb0694bdb58f226ef2973088a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/hi-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/hi-IN/firefox-69.0b10.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha512 = "2154a8dd7de9584b03515a750a23fbcf415009907cd6c1e4d08003e0aa6b5683d47554a9ce1222631f12b63abba151480a2a491e686b8c89e5ba22f819ee7c48"; + sha512 = "8c7044bfc7dde901dbd2ba7e719da6d5385d260a6473a1e0f3f9af99f1ea3add4382bb2683264a1cfe60379e9fae4b68a41f30fa183d54c83502a173b55a1db5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/hr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/hr/firefox-69.0b10.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha512 = "19315270b79ea8b96457977cbc4f71d2f16359de6e515664aaec9c002f4d537ca5d0d0187eadb6ee2d5112293ffd0e5a0bf156665401bbe569c2bc8d4d712ba3"; + sha512 = "b680b30f2fc0f4f82f8cdc3eb7849d4a29b667a8cda453395b28499581edb785cb1bfb3ec39efe032f150e5b502955579803459a2dbd2f32264d677ef190de34"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/hsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/hsb/firefox-69.0b10.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha512 = "74d86de9290a8f8260301c6a1f5d39b8e18742cc8f2b3f8d282e4093765e4938fce7181bbef81da127cc0fa4b75dfca8cc44de5cbd29e6f56807b049a24a1ef5"; + sha512 = "8c4ac8f04d933bb104b533b2a8a512e2f30bbb6219f4d5622ca873a42a4d365131083cf9ff7a0be879c098b2b434cacfaa76106f432e3b609e1bc92b3ad674a6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/hu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/hu/firefox-69.0b10.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha512 = "d5bf23cfa847068d09bd90d8b6fa1494154b65b1ea6323d7c3d275b46f973f8b4a98bab02d4e61706a3fb144009b4b5aed7259124fc36a037926d9372f409adc"; + sha512 = "7ad2b72826cf5d98afd1dd65fc30cf9e5525656271f3d1be3b40b2c0a1321694cc6ca36eafc0c51f77e1ca8a6408fdd6d3be528923789564d2ca8bdbab5a5cd5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/hy-AM/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/hy-AM/firefox-69.0b10.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha512 = "70fa78782d08bad09b937718055d2dc89e10ef0dcb8e6d0cf8af07705890818c11550cfd307c54792bd1749499bf1addfe4e89ce0ef35276d4ced93ef75b34e4"; + sha512 = "fb850f1bad3f626f3272e9ae6e3a60d51b63ba221f341752334b490169874a44f2be3c9b3783fd523b3f4c0484bfc26999a84cc59c893100f21ece93f01b4b8b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ia/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ia/firefox-69.0b10.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha512 = "abc7de0b055056395c57e8b7cfe086ba31a447165230b9012f6e14162237a6c49b7ff2fdbd0db373e3a5cc5e596dcc48b16bcce4932638eb6fe2c99b82ea0023"; + sha512 = "796915bb31c4c18f22348dd7fb1e7c33f44938b5658fb32cb5a86e1470c8f2492642a81b0d2f59721f604cd785e5b56dd45c001d070b2e144b191ee0d0d6b21b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/id/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/id/firefox-69.0b10.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha512 = "55bd13dd322a97af87b506551880017f112fc29a11a175ba6040ed4c1fe672f7ebcbfce0e4cc9b409373bcadfd1dd9327ce53c858a18f4420e5cf366c441874c"; + sha512 = "5613ac6fe486517bede9fbeedbe64300e7be8bc1dd2a65bac94defd7c800e97c1a4ee5a2375fd0358de3a466a8ca75288b1b6b6c676e3ae02634aa35731bd8e2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/is/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/is/firefox-69.0b10.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha512 = "4f1029f4696fb66d1a407e6b74a9692e916e35dde605bba0aa61864bcf129d12c8f3b58a399e5118cdaa70b62f34b09325273308ff188c98dca7b8eda4851ac0"; + sha512 = "339bb54fde82ce43032d00b2245b114392a47a8eebc0be18a7a0d4cd1ec625412817303c48aad908d1bde88fd80e4a1a2245dbdf5ce9556c0a8b998025b1f58a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/it/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/it/firefox-69.0b10.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha512 = "3c1f74c2ab991a103783eb78c23c82d6ff0a3d30913ef5bfc3d6ede8772654e8b5f3cab6d5b4cfbd9dace2f8f2ddf1fb542ae57be03179737fddad72812d7d26"; + sha512 = "4fda975595c299241a10ca325a828af6d5be420bc76c021dab815bda759010982213a55591cafc69139dc6a796df96c0eb35d7d7503c68e78ba71926576c40d1"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ja/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ja/firefox-69.0b10.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha512 = "157f40be2e4a41cf91ed4f6b27fb03da9f5f333e79103773879e3f559cb0f10d9947129cc9d09bba93926260cd0b6021ceb780c269b9f4efe73c9da0af03bafb"; + sha512 = "d620ac66a39e20439f1a83ba7aab904d78ef85355418d65e8a61b441f7f5e02f349201141fbc4a36e5810a4e2ccbedb624aba0e8071456acb0745ccbca05989d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ka/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ka/firefox-69.0b10.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha512 = "ae819155531645b4bfd34fa3f2fcab86ae61cd4efce98dc05325c77cb4c9a9acdfb4c256ac36357575f9826090c92f02d30670dc02efb0e84fd2cd66a71a1cd6"; + sha512 = "9c2025a3e57112adc9417bf27f16d596e1639531dc1ec2ac685c91ca79f27f3361f1d9c5b5f6e864391c62068561985e257c1bd8e63a80443521c9344fced2a0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/kab/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/kab/firefox-69.0b10.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha512 = "6447fe7826efcdb5e639d88c0ec13fc180f61d4cfc1877bb6f814a305b4480a6481b0403e0656a0c7c10f3595824a85d7755eff197e7b5798288fadd0eb205bd"; + sha512 = "5ee9889fa241c9a4f9cce25d8ad557ff8d4112dbc620767ea8b874683b1026fbf65d6fa335a01e11c317d59523f43e7a7dd8ef7af60173104a0eeaede4c5f8cc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/kk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/kk/firefox-69.0b10.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha512 = "f0d272fc030461e6de01c21c3b06d7a8105a81991d7c6347090c85e450a0fe1a44b209b9ffd90c4ade956ba37678398dc4e46640179306bfd2f6b8fcff64dbe8"; + sha512 = "410790bd0e13444a0780a1dc3042daafef1d8594164d4062483d1c03cc6ba4f682602a5fa28310b1d64c26ff511766943bdb0f2787b9eac0a64668ea38914971"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/km/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/km/firefox-69.0b10.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha512 = "b8b26fc961738ca0fce723ca41f6bec5d75d18722f7416b93eef2596cc2c01f7831da09b5de305b55c5faae3826382329a2fb0163e1bd79a3b73e00fcaa6c947"; + sha512 = "98936520579408e241575b802fb77247072cf832b0e6bb2bd0be75af246d211ddef7266cad5136e51e30395317985d4a4aa66647a20e3980cd2aee3e6a4a4de7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/kn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/kn/firefox-69.0b10.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha512 = "7ba655e207aeba5cf8f734be11f6fd20fa7fc57d0dbfcdf588c70bec224fd23ac2a447c9238ed9559ab612f5f829359254bb88a80851dd4a6ff691ba4d5b39d1"; + sha512 = "1060fdb60461684c0bd8625ed4f5e53f967619682ef920cffca663c70c395a211bdc940931f08de07814b5796f4fb6ef0b340543e4a1bdc526f6f4cb5a250e9e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ko/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ko/firefox-69.0b10.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha512 = "1a9480d6f8c9781d401b5b3d98f43b60bf6f0d80121920fdee1ccc6b2339e9c7a96b6fc53214ace7a459e84991cf8d712fc558250158fe10ce7b6b57c40a6172"; + sha512 = "4a88b46b972a90a8ae6c00ec23d4d4c00b18a6f5560f0514d939a135bf2c3f9207fc2bf84a19fb496182acfb95da70037ecfef0ceeb2f7a2220b5803957763e7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/lij/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/lij/firefox-69.0b10.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha512 = "b76d259acf9ce2ec775066f50e68d5821c50b475d870c3c69ef70b66fe2cd14de5f52f47eae6b9e419538c7292149ba301a6c7061cb14eb7b707e5bc8721a557"; + sha512 = "a219c8f97158fdfd1bf0dfcbf40540c5adbdb861c3e8df131e826fa5feb73f33900024a8812a3ee648c63a8c8d69641f927ebb437745730a962db85bfde229d7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/lt/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/lt/firefox-69.0b10.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha512 = "509413d7a37363ba9a57ad6f6389f8c06120480d0d0cb14635b914c0a0026095d522c95f8c6c244b12c048137cbeae240f12c1b35843b00e2c725e37e3a59540"; + sha512 = "4faa38c7fe80b3176ba1cff0153577adfd13480917659f8b45c70a1ff5650e29935ed10cec88059be602fbff64583153642acc9dbb419a8d269115659db55a37"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/lv/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/lv/firefox-69.0b10.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha512 = "ecb21ab93dca533a2de4b31d48523a6dc83a5901f3824b1cd480152457bfb908a5650f1f9a948713e0e5cfde566157e349f171b1fde5a201dec30877f42f9204"; + sha512 = "6334ac39f823a5a289dc60288eda76f2fe770d8eeb1c3e6b1265eb5c7b2f1affca0143b0311c8ff077f39e093b3ccfe743e4aded6384bd1e0d212067207df40c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/mk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/mk/firefox-69.0b10.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha512 = "7853fef96ba965febc97c43b9030b50c9a0d3b2f3af31eea2f59ebde3792f6c18eaa207617706dea9c9c24d9d19e1898c357b02b41060ef6b0f79b0c5ef9e8f0"; + sha512 = "9b63449642f2e047b49e3a29528b4aa29565f72488c82f0086ee1d427d980fb64f913b3ddff1f1f799071b1fc542ee17e6822728bd0187b38fff28127229d63f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/mr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/mr/firefox-69.0b10.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha512 = "9b769e0ed3884bb60e7a5d8347bb0cd6af654ffadd7b3f5fcb7f848c859886cb29e276d7e6ce28b56bffed2dc87a9d6722f03e2f0af9b51a657620e57b48dec9"; + sha512 = "be966949b09bf18819d34c774178b8eadade9b259082f9b6d6782fedadea6ef604382e8667ef49c479422f7c46df424d5e8d47beaae6b5139d2a4d372c2b59b7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ms/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ms/firefox-69.0b10.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha512 = "f076289f7bc5fa8ba644111b306e076103659b8d779faf3dc3c281d9bc7c19498e47babc80795fd20ec8e1c772db984b165418f9e48490c692348de87f1383e8"; + sha512 = "71664b9bbbdc21da73698ed616bd6cd34fdccbad0212288d3eb6a332ebbe1578bced0ff4f4d587e4cadc076762235eacf568e0b5139a0b851b5d6bddb6a41807"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/my/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/my/firefox-69.0b10.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha512 = "d268b850e130543ee45230d3594411d617b5d81bdc85e92464f51772794caa751a95a319a506f3d5e7de2bbaea08fdc86959d167e5f7a29ce050d196b038a447"; + sha512 = "9fb7a365fbdba50f664a1cada9fc26995f7b5809ec65334ba87127108c1e5027ce46f8c793d5da7cb32daf1788e2a98fe7aff0fac1b2d2f3f47ecac041538b2d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/nb-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/nb-NO/firefox-69.0b10.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha512 = "f2822fbef945733f249690c30fe06762788455f574696711fa1eaae1decee763ec4d793d0f51702b38c9d87e6697f90a3f81292bc824f2b0d12fdd3643530b60"; + sha512 = "17f96fa38949bd3be40b3a6bf6e5ebe323819940946350ec535182f0197edb89af45500f54c76e51ac2fae1a95412b9f2a41b92e38803cc4af1097123e6233ab"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ne-NP/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ne-NP/firefox-69.0b10.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha512 = "f58c8e74f86927afd5cd74b8e502c6fb9366bb2aa85349dade0a0b2ad538c0f2c11c68c305dc6d590bb2d9caa8ccc1b465493a8b1e1df914d437a0f124399330"; + sha512 = "e9cfc087a4c5ffcc223d873d26ec3203992e4ac8f418f5eea156f66bb92f14606da3cbc00cf7ec0524f549261153df9e40e402e73aded124b57c95feb6812740"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/nl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/nl/firefox-69.0b10.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha512 = "1ddc6e85c68bdc42af08aca251160b720afe535505865adf2990386fd6cf6cc59e1f65ceb36cd3239b12da43897ceac325e69750ea1fb93adbc90e056714990e"; + sha512 = "19735c48e5da611d5f982bc7d295cf995d878b26ff35f55a7798ebd28689996c75fb8e5971c6db627e5cdd15423150dc146f8c03f4886fa50913cd8818a1bbd5"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/nn-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/nn-NO/firefox-69.0b10.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha512 = "125ad213464891daad95c54c2354d36c987c9de62b695acdf999cd3b4a3cebd692b780d28307b4381da05f9fba6556d76a5c16e9e0c4ff5c7847511995a17944"; + sha512 = "74a7eee4b310f9d893208f28ca0a03863f28daf95e1cb3197ff6805dc17ced77cd4e2b3d27bdbcf20982e71a6e60f36d9f0147c650623b7f79467f9a060f08e2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/oc/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/oc/firefox-69.0b10.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha512 = "9b6d7a9c9e557d9a836aee780ae5c0ef7e81540c6064c183243e55928b32a4f937270ae4b2c21f33e625aba6662a5d0f614167aed728941025115b5a5947834a"; + sha512 = "ec7f830c37cf2e67d978038898df581bbb7fbedc3b98117bf4497104713c382261cac7921eb45898e23343deec775587a6f1f69aaddd788ac15cea293593a84c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/pa-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/pa-IN/firefox-69.0b10.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha512 = "5adbe11d8313d055e58cdc9fc51750b31f8e284403f823e11b72ad9069986647305001a9fd7db737f3943819878b5b9bb70e8c4cde61834ff8bb33e4771399a7"; + sha512 = "e5d72332e01f54c9576bd1aad7f54733c43061bd8e1813b8094cfab87d18f2144817270c572780f66b0fb0ae6a4bb7071221735317ede3b6eefe1f6204865766"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/pl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/pl/firefox-69.0b10.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha512 = "c67e75c02e92dcee4e5c2dc71b087ffc3424d18951516a347a4b00c68542a7bb05a81b03dde60f3b4edf6c0add653c72edcbef8db6165811182e9be3ac7cc8d8"; + sha512 = "93cbf86c41086b81851e58a7b6a66f181a6baae871954664c088e3fcac956e4854b5590d1c5226b2cc286f12db85c21428ebc7a1c20c769dadb992936746f1aa"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/pt-BR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/pt-BR/firefox-69.0b10.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha512 = "683165b6c93ec9e0f109b1ba4d24c907cfbc3787136d99307d15abe0e1eed8b6e444ad0b70a352a4aa7c9bcc0d4a09efab48133a9a07797d6e5b2f98e0ee1650"; + sha512 = "ea2f727cdbe67174939f736c6b23a9d88c902655f13445c74866a71f7a8f22e9037436e1589a52d258bc6d5f1338853de846542a6bab3dcf81d5e092e206e2d7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/pt-PT/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/pt-PT/firefox-69.0b10.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha512 = "ce7367061456c3009e7dd6b4d0a3cf6a1324c3daeb7406020734f63adc169214b9deb26dc37936725d4ca3ed1208d4d81fc5dfdd73d7753b9d64bc8740f76acb"; + sha512 = "6d6b8fdf32ea8ade420fd64f4c882d554433dd9743bcecd11986a70ca5d12f9150ae4feae6897a412bcad192098ccb44412fbca1329ded3b77e15ba06076434b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/rm/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/rm/firefox-69.0b10.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha512 = "801801eae3a2c51e753dbe1c436d0fd5832c1fc9f0687c04c2a5452f1dbe06435c9619c13f87d6fff2cffd5997469b4fabd8e2d9c917853ac34e3695c1ec223e"; + sha512 = "dfe161375554d9886b50220b4d33625c3779d542fa20e713d7dad8c1221c1bb9c4300a4d139ab57335fc021f237e3316404637d2a837095e247aaaf6650d20f7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ro/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ro/firefox-69.0b10.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha512 = "be62b477b0b72b6febb26194604e7be748dd1ed879e3e44e02d430f4feb40b5e50dfa8a5affaa1836fc1ba20cb1aad5fe5482cc870eab83570809ac90994c087"; + sha512 = "c3f6766f3f22acdae48cd340112b0248a21a580c68a473a311f6923340417487e16fb82c99648909e627be4cda63a779905f5a17b43379eeafb795b6c1dbf5f6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ru/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ru/firefox-69.0b10.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha512 = "5943d3f90b1830607619a15cd61493969fe79b7e370934f20de1e63da3cce04fb733fdb9efc8568cdd8ab5fbfe23d67f86be2cb5fe4a9d738688e096ded10f53"; + sha512 = "49590d809c2883ce0eb7c5db156defb950c5bb6cc1106e4240c18cd4f17ea550952ac36d2ff8875cad4fb24cdded1e6d51881d5b9d6e360e44f780d884125e92"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/si/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/si/firefox-69.0b10.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha512 = "d230ff8a7e74efb71424c8c8df2ce1895e44643da96e67f042f1f59a06aa4b3abb8e8c6fa29033196ff6e5cf5ab8792de5d9ec51ae59906c019a6df028ffd436"; + sha512 = "66541feefd335e4b9f79e9165ace04f36decc46ec97b211a8f9af86517a197b09209e8f43bf9db449bfa3f1bfed37a8d3fc438514efbcce17dddb6577928b41b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/sk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/sk/firefox-69.0b10.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha512 = "57fdf155d558627c6c80d722574d2361b99fbe692ebef94d53ff52d3cfa33e406339e8c6ac9219c3e4a7de430426aff8be30d5946f7284fdcc50ef514b0c0c70"; + sha512 = "9967449c710e8a08e7936dc3a297fff5e254d1fcc960f04a6b349aa97526cf6924522975e750770ace0aa455265c6422ed97fda48afe25d254cbd9b30517171d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/sl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/sl/firefox-69.0b10.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha512 = "95f792d6bf63d490d2622156abb2ffb4383252f734738df1b76fc07af60a382d4bff37159ce1887ac411e9637676c24aa6487fc97c1fe8b296aa2971d148f983"; + sha512 = "7b3881eca1b35475c26806f29f9a7155e63e159cc139558366f8e1dcd92483be475de2b9075184a31fe1c7d3c8c0a7053b90e7f763f33c38adf8cc57722d7b9c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/son/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/son/firefox-69.0b10.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha512 = "2583e96c5d24231cb3d8b1bb4d9e73c5e6cf73724b10612cc4bff6b2a6d3b7d30321a06221339711293671f8648ec80d48a650e2f18fedc821ce9876136252cb"; + sha512 = "5fc0d6cf18760f577dcd2e606247a16c20b39a234d60e28880107e1324045db4a384d65c4e83da26d0296f2c89864d24c8bc24127dc5aff8fe080e7c727536ce"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/sq/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/sq/firefox-69.0b10.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha512 = "0ae04967e13f3d3e279372001afda687aedf087cb1773047aa3304f36575409a85e91e7076b494d98a78d9524284e80773ed5d87d4856df7407dd0cc384d67fa"; + sha512 = "7ca9d972c906796828deae1e79dfb1ea9455835ba1b870d3acbd484103db6d87e76011b55668da3a6e361239a8ad87d5acb7d25ba3ab474e28018bd8c768cc57"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/sr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/sr/firefox-69.0b10.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha512 = "8f0dbc4ff9381e66889abf817a484e1b21f72646211d7acdb4b3c6e0fb2af349d436396a8efe8a20ec8357e42bedda4d5811537563849be5ca7c1daf4ab0d23e"; + sha512 = "ae58799b2b20a91df60eaf452a0c81b1d608eeacddbf0a98d941abb8a9c7feba8857d9fed9e4c59fea2b24a7b6ba7e1193be826008450794fb710edb36ee2d9d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/sv-SE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/sv-SE/firefox-69.0b10.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha512 = "7725e0444d58ba8a2c095511649c45b4fe63ae348cefbb7ac4ef80e3aa776e43de8f9555e5d91074b2a74664c7dc1ad463571efd846735b91ff880ec2ed76d52"; + sha512 = "273973c93b118f70d0a83af1daa3ef64de77444172e668ae34df2b547e053047ce4fbb565b4ab5b0f2094ef7cd11d0f8f37b4ef205312e80e99b16f67eeb30e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ta/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ta/firefox-69.0b10.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha512 = "952ee81f4d42181c5babc12d0d6abbe9e31d650e3a3957d7d1afcfc54335d1e1b45691fbbb6359a531c73fcf46435fe468bdc87825d42c66b74b64264194fe88"; + sha512 = "813cae155b3e8ab0f78542124648e8218705f5122f4a340dfb5ca15cdf3ed3f7505845a6ea23263e139b7f3713a0db304c360289d4989f91be8bfec45436af09"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/te/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/te/firefox-69.0b10.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha512 = "de9c9bfa66dc87f2311bf18a15e544391662d36e0f71a72278dee8e24d4cca860f8cfda8f93bd2bd26fc0c3d3992f1603f2e3fd36fbe7a9478390b9535d51e0d"; + sha512 = "4069f40d9ff366c3f126d77855344424c498b9e9c6e9fc78c78097b8d3b3087478f8c3964d46671474e98023c32fd44202d43967ac8c3d81b3debe5467a14788"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/th/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/th/firefox-69.0b10.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha512 = "d421e5d653b00e290c6acf069c40cf43695b37796bab9a59e7d6c4f9fc4ff22e2d3a9a370a9f6a558c718014cb16a5e0dd05bbec7e1ebab78e50a539bb1a1581"; + sha512 = "9e0a5a920856b492425a493aa85cacb465f4f59eb45a6c0ba2cfa631558650e40a9d23c12032b543487e78092730206862af1bc7345388803f992bc4fd5bc0a7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/tr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/tr/firefox-69.0b10.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha512 = "ca4a1f139e8dd4dfee268c0b90778cbf0f9462ae9bc037958cb5b3e0668b902e392ebb5e5dcaf9d72974bf1a5eccb74b079df3e3a81cfad08501cbb39129d2d8"; + sha512 = "1f97700f9c6b9996523c100b7393f3ac465c45adb1cefdb163b77b12d7679df2163296880e9004e4b6f8dcd8840cdee24eb752bc6a985f15e2d8f57db01d9e0b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/uk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/uk/firefox-69.0b10.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha512 = "e85e9926f59b948f6d9f181a87f8a6096e0ab85c81ca63bd0ccb885eebb05091a11d1c0c583998807b0f153b3de4b76447a2a82a99da9202964971cbfde73ae8"; + sha512 = "c8ad5621ce8c61e83aac7cd7b272ea7bd668d159872442aa80d88ed1b46ccf77de913e8cd7e339388b117d9d6797c36b9535dcb0efccd805410f804ebdd1f105"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/ur/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/ur/firefox-69.0b10.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha512 = "b1c42f0960b0bcac39b0d3ff2470881bb1d4f69fcdc2d2af3899d8379fc9d949f2b1cba879303e47d5d67122290a82158a12e36a05fe2d41eca3ea68b603973d"; + sha512 = "e1c056d287dc38be98db702869d16958379b8b56ddeb46770b175668f447d87b043773c3c9907e0d106abed7cdfe1f99dd871ac4510836664964b3a71d7a5289"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/uz/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/uz/firefox-69.0b10.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha512 = "a862cd7e358d5aed459c93671a0541137c93fdc9687b4caf483ce3cdfddd6964a8e941b92cfa85bc638c7f20a6f2fa219d4e275000eb3452c6a744a95c44ea06"; + sha512 = "da694f4cc7f3250e88a8c54e94629749c30288776a1838c8f2183dad59107cceb3984aff23ef4e7d05bb7acd001e1b69adccce297695b206409214e9995b41da"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/vi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/vi/firefox-69.0b10.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha512 = "0b4cc1154a43446dbf10a796896023ae1d7570dfd9d346cfd05f402954a3f31d803382a7c50e25c0695fd09144f465060cce838e8de144df3fefbed3288358fe"; + sha512 = "b120a6a272abc7c633de952415b35c13ca88f4263eb939f9040e9168154d7309c3e096827348407c36cb09d1ceb67fcefb4b3f3dd4e35da404a1ec44e103e126"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/xh/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/xh/firefox-69.0b10.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha512 = "f5c4b78437b9e389cb2a7429d02679280cf9bd8fc7ddba32640221addad8350805c83543588f7567cc19cdcfa2cbf9795a88ed44b3158a7fec9087e2e7815171"; + sha512 = "68405955b821eca91f75943630104710a0ced12933b3c9fe84d836d10fce32cba1a0799be8de9f3cb58758ae627b5692c9e7e624b8fc62b0d70a16734b7a5e4e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/zh-CN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/zh-CN/firefox-69.0b10.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha512 = "f1c7466c71a9890937bdbda1f17f8813f7cebd7200040338c56c54b40644f47f91bb74ee74734bdf7c2b2343e9445a20098182cdae23876c0c9c4a98e711184f"; + sha512 = "ce80275c117902d0a2edc1e7a1b6f23f5b54e684f813e38696224151621f2ebfb2184bc018905051a07b0428e245380c630cac60d5bc927b4329e701cb0c174a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-x86_64/zh-TW/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-x86_64/zh-TW/firefox-69.0b10.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha512 = "c98e96c1d0d792a378b76deb6222c7cd202c77def3790cdfa30df155b629986c97b11ce025327c0cee8b03cdc8c4c16a938a5060774f1e029bb17c88ff7e9e5f"; + sha512 = "89ef19db13cd8da8e19612381c218a601429cf666f95c762510b300eb9140812c0adae9e5b7b4957eccdb8be7fc306deb9a089c19434b2410162265782e5226a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ach/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ach/firefox-69.0b10.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha512 = "be126d8ae1c0998da42006332da3110dcd15a233d1ffef4cbc4f09a4cd2426fb2729e698d7d632fc1ba23b6c1e0ae6d38081aa48a63f9cf738ea6e644273033d"; + sha512 = "bdee0f41ef6b4d2efbe13e256616820df048610af411befb91256bab040225530cec74b35c591ef740161d12a8fad6cf96e35e25bce7453be30ad8111c2ef3f6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/af/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/af/firefox-69.0b10.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha512 = "e6bd3df1a3eb81fcf78a570cc62395689a7e2d456051ccdb85a99b5c48966835e58fd52098fe7e75ad1f6fa2d333ca1d4853be2775071077b42679c31ab00590"; + sha512 = "9268d6071ff9142579be3495edca6325dd283128f2a1ca60d6e249d0a963aba7dc3a897aea523804f5485843950db5901d4db9ce10c3ffb1273dfab5adbbfc72"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/an/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/an/firefox-69.0b10.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha512 = "e8590dc16c0047b0d409c60091bddfd4019fee4053ae42c874733e5da0a03a4e170eca053e7dcd3fda70057d7ace4c3014032008c9ebb9ed5c05c8ad57f0daf4"; + sha512 = "8b42c162402df67971c01ffd9087768b4e49dd60f069b88b154b3e1a237c0c4f9c7a7e4f752a83e8fff3eccaa87e7599a9c3ebdcc3fb70604032fbe7db524d62"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ar/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ar/firefox-69.0b10.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha512 = "7aa355aae3c22329f5769bda023bff2a2bc509e842306421c6728448f55cc675163076ffb76163d56dcac77102e200c78a5221114c6576495d24fca021d54886"; + sha512 = "d4a0c3987c1bc8e304ff065bf1ca1dae66691e28a51beee4726bfa7a685b5efe17c19ec8f7520b982a1b88c631b126c8511abaddeaae2818515ac59b2781e830"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ast/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ast/firefox-69.0b10.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha512 = "df275d655fde2a2a9c87f77d608bc0ea30807817ce360560e6315b5fb9ad1a06d19399784f13df1be958bcc8cadc84f9ab4e9c2a7672099b23e5c28051b07c01"; + sha512 = "089557a50dd106d25e35eb72ff741c80e8aac36974c2d4a5c49842ce56078ffd8b9f67d829be48411b46d4f823bc1d9ebb2dae22e8293cc197e57eaf23099b72"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/az/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/az/firefox-69.0b10.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha512 = "0dda2c6c3c403890c2019ed19e506ce30b86c8d547996d22a3e778c9d519f0368496454b37ddc14c6b7dc4cb3284c17ce2550a57d3ae31b8d4b978c05eaa4b8b"; + sha512 = "237af11c85728ea6d05dcbfe456a5dabc369b0fa690d23a05457b7541d787b149bff45e5b71be4c39ebd808f65badec902e657cb6cd3dbf7081fb4c962a27b00"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/be/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/be/firefox-69.0b10.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha512 = "cfbea537c171b49b866de652ffe26b8ca7e57fe79bb834bbc859781a78505ecd21bfe58194585e60654555a1135295f6bd9efa26e23fa86f9306df9a172a0c0c"; + sha512 = "c9952ededa6dcf507969ed16ce47ea4f6e2694c1e9df207df5457ff92929ef195885a91ff1d160c1dbb8e72e6a7796ccf4ac36a9bc28efc3dfd4e34f5cc17907"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/bg/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/bg/firefox-69.0b10.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha512 = "2b4f145666a4e77be1a8af82c1122b6d2a71ad5fa1f2bf8a938f04f7b67619f639ab9170858efd49d7333d2073e40363213f946e161404d3ef250e2f5cd13868"; + sha512 = "bebf78848ee8b81af5440ebdbe49dbf14de20d853f1e6bc6a8b7ace7d6c329ac28e3df2a754b7e5e2c1210f6cde54b539a11d676708ab36907ded0ac4025d6d3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/bn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/bn/firefox-69.0b10.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha512 = "c8a1061200871ea00f380f464ded104c757dab2430dd3c416d027a6dfe1c2a1bf97ec6963e6ce2a68f99dd6abef1ba8a0cc978f1387ba0e8dd3793e259abb078"; + sha512 = "8f4cc489cdcc348fa19c8129c8a9e83507e7f30dba3f2788b21e6573ca0228909612b8e158c8d9cd87dc8b69554bead47d9522fd754bf045964a1880a5deee06"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/br/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/br/firefox-69.0b10.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha512 = "cc40c33af7dcf8258c6d675f392c15da86eeaea27c5c4b27fc2d618b5a7f5cdeb2a2b827134c4fc5f88321d5df5f2d04be088dbf409c51b12538aa6855a7897b"; + sha512 = "564878573b16470ab89f3ec82d2efcefa69708a2abcb9fcd7527fe6d3a0b1302a400eb121dd1041599942d436583cf931b6c13a9eeafd13d00ea15f3cfd1c524"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/bs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/bs/firefox-69.0b10.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha512 = "fd5e9ce9a3f25d01b0a14cf8729b1f44256a279f57211f37af888697f51cdcacead83209c39f126da266d06b6d9fcae30005776da9bcfdcac823f0bd5b91b374"; + sha512 = "4ad5cca7ce623219abfd09f94a33753f909e344ddc8f2687d6a50386275728e13853106206e1261c6625328f5448578890e496752cc11796a30757e29fdeeb2a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ca/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ca/firefox-69.0b10.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha512 = "2fba5d90b6b1c2ed66b6fa8dc52371e77cb1d783acda27c88341c89ead42a8acc6a271daec2b0c0a992b27e2737fc33c26638abdf18ebad64c2d54b2d3e1e84e"; + sha512 = "83617e53c6b10b7668e7675ca0bd17d4a121eee25bf2381b2e97aae3f8bc2552422a18517f0112c938fc032f4dfc62c85844ac05f823b02346423339dc8f679d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/cak/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/cak/firefox-69.0b10.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha512 = "d9d1ac1370867478bb211b9b51f71f9aafd75745b4553b66cfcc739c2c5f5ac42e2db13d31eaec98877113c0fba9482d4547824917d5f1b8c3e8d43e0045bd8e"; + sha512 = "11b6a20036725b6e794a2d76e73cb6d2850d498d8bcae442fa31f663901931665a9e4bd21c6694317eb3a493bf6d33e00bc8e8ad98f151a2bd38daec404a9e5e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/cs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/cs/firefox-69.0b10.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha512 = "703dc733105080287191c1e77a6c969a6b8ae9ba575fbfa572f43c64982c0a957b4319c76712dfcaca2ff6b4e6ae00dbc1f325df2b06261e0cacc75cc279b9a3"; + sha512 = "387f5bf3c18887cd89c977504a2fb956944d3bdefbbe17410edc541ab8ceb16a4118b0e98e7193a85c66826c684e636dab7e7ab5033d4fcc6304ac49d0d96997"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/cy/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/cy/firefox-69.0b10.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha512 = "d2e139f9891abad647f8e4cde9283e5a4376dec5ede58ecd27d16cb92a623ca5c5442aebe7ab5ad5726b899b7a90d109350716ccbcf3f645aff46d9167bb8cb7"; + sha512 = "a0c139b58e15851ca69fc9e138df813912be6ecace6003a3dd474ace17f4f18125b74f247bd795b619e6964d238c162e16ee83c953fb3511369842ec6374b4e6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/da/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/da/firefox-69.0b10.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha512 = "3c6fa6a9112dae40dbf70328af0955a63f1a7c0c2216daf6a3b42a2e6a14f841c6d04e4e294c9e8bf0564afaaf20d9959730fc8b50a491a059955c5e1b2beb99"; + sha512 = "4a9459cef3d4c737652014d2b5a29801c3517e28d614cc1f8fd4707c7571e952a53c9bc0827308fa05272416f84e6db95b45bd27cfd7411f0bd15a75b17d5eab"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/de/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/de/firefox-69.0b10.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha512 = "dc1c0b8b87a83a6bb2f30beb4da6b3d04a7d0fa0feb734cc207b2b282d3fa55cc5a0bc19d0b9fe430424686b0c785a2f6797210ea7c740c2199cacbfd680500f"; + sha512 = "1aae6f492c3f7dc2194fdc923568bd8b77ee9f591e7ca9d8f8e6e6dd14f6873bb999340ff0c347a60982ae7a35a1e98ed5cdb07cd079493e06f5f248859b99aa"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/dsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/dsb/firefox-69.0b10.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha512 = "f7589f38caf59a8acc7d02c026119304443c3016482c47b39613834d93d348f7489364d1fb2efdfb2397ba9a8fe088915531e21b95927d3fac97ec2f07bc6af3"; + sha512 = "283b212624768d1ffd58573f67e253a4f8d8b0ecc824fd666290b5424f1b1642d3d88fd0e1cc29f6259860718ab147bb371583fc5a8eebd408d5e73c7f8e1ed9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/el/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/el/firefox-69.0b10.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha512 = "50d0be1514be61facdc660ffe8079defa37cde6f823b47ae498cd1e4536c9f6ced551f82ca8ad08e0be4f0d64b2e8e055a20f3a28b282566c61545aa39994a53"; + sha512 = "1ec29d5a50105d7f4d4b6d6cb2fec25a9fabb150a9de547fe13fd1c37a964ffb2bdc5a66599ba315fabca4bc833b8b12e48b218ff70711e06dca8b5d36332032"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/en-CA/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/en-CA/firefox-69.0b10.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha512 = "eca93e266ef850971878ee858830f056afe430d5fb6dd45ebf0cc305bbf4ae9d8820154c0c8df596a344c4993ef184e000c9059e068e75064ea53d8c0a2fbd07"; + sha512 = "86658e29977df1dc66487d4f4550db41474ed8625c920763336e2a1ecf98da2f0ae0d765c7a0b7ecb5864b505d841789ab93868bc1bb0542c687e359662027d2"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/en-GB/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/en-GB/firefox-69.0b10.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha512 = "504c55d0039df0db7cce4cf0346919462fe0ebbe1e36a05ba452b815506d58ad03ed6bfe5e4d347a29a1ee97cbac52158f7939a0c817513e3cc864ad0d80f3fd"; + sha512 = "c8b4401a307d72b27843fccf12d71f72aadaa12eaf373af78f80ba00fb27fd3f7b06a430ab17bf74955d4de673373dec25faac738cb2bb292a48134043d95a6d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/en-US/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/en-US/firefox-69.0b10.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha512 = "882a4d9edfd71941cf685b0944ec9a4d1dbc7fd847a9bad9ad2f91d84ba0edd025b40529f26d9e9c40707cc82c741e360d1935df3765d1210768967614a416c1"; + sha512 = "291e666a59b9e26ba612a8cf75b04e82610d6818fe3aa034b09cd62052d52c3990eee25a808838348cdbb7606e2a9218c6a9478ef868207f0c920cab76bb393f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/eo/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/eo/firefox-69.0b10.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha512 = "3fac5b2ec348b453b5710ab58184a8716b98a08da4f7c344690c221c3467c01f92ee21125ce396695358529190a168c2f5ad7d7a6a0b82391e17e94bfacc86d0"; + sha512 = "e056e31a8c364ebf56915967d54d0d24903adf32a751123171470bcd968779b3e58cec4731f9b126865b06bafc3aada52e6c0c4abadb981161c390b1ff75d916"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/es-AR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/es-AR/firefox-69.0b10.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha512 = "589d3bc9f2da99d81ed11b2ee353f7dec1fd2f747cd32212ff270f7a1adbc1691e4af76026d1e11e21632a2c976b4b126ec07ae5977209127a99e50e859994bd"; + sha512 = "b165b4626e4326b9a7b72d32497b935b14e470a8ec9731491762a4f2f5b020766a453a5d277a4b693ddba243c39a5145f6b1962cf65282f983ece1a58d9231f7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/es-CL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/es-CL/firefox-69.0b10.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha512 = "d0cccd7eb4d8e7593288e5268661075355e528ac6f50bb06bca66995687af703cc15b843641aa41e2d9c34a71444581b151555de083282d857900462fca4a4d4"; + sha512 = "e50aa715b2197242e03890bd7d981b34bbe438e7b594d38637495d6c5c7bbbe14dfc345893e08eddd095a758528ffb9f8fd73dc197bcd68c6b3a9aaa8dd403cb"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/es-ES/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/es-ES/firefox-69.0b10.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha512 = "c4c39caa2d8e3787bc81a125c3639720c315540f3efd4030f6b16f7be73d7162e9c3f404ecbf9a89918fe522b492e79db9e1983960a0f20e60fd9e5fcf4a6fd6"; + sha512 = "cf0900c6571046403fc0dc2369208ba65f580d6894b2e2888d50631480e2945129311e1a3f5971837c6afb3b558dfec83c0886802c7881c8840ea883a7049a38"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/es-MX/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/es-MX/firefox-69.0b10.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha512 = "3d385a01ea51929790a6a1e81700aa6fbdd5988b6721b791aa65ead15d20654a7e71cc5595d9a8c9652fa760e07a4b0757115b46e9d9de2b2282d83999ca93d1"; + sha512 = "321f06c0105c8d969f1ea04ca8065bbca76d4c42c8eb18b95fb3d859b0d0d0a5e7c1bf5d7c9894821987b2a4d46c08198faca5c03cb0a51b001039977d523ecf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/et/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/et/firefox-69.0b10.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha512 = "e3a278a33d7957326cd0631766d3a4784190c9d3225814ff1fc7f987edbe91fba39dabf2eac7fc95f44ff8eafd46c79254affbaf4d0ade7fc25c9c14366ed4f8"; + sha512 = "db603e5489fd329fa7f9c7b8e5589d2b7d62ca8e295dcab1e7a3e838c125f1acdca7dc541f67366acc4550682a121e132e5aff8243fd5e0871ad94249f037941"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/eu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/eu/firefox-69.0b10.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha512 = "89790aaae509fa4338abdb92bf2380355f88a71c9246807ebb7099b443bd961fc9dc4190204a72b6d2477e69081724b503a1abc913fab0dd0e1e5e00033dfab5"; + sha512 = "c74c42da5f7b1b08d3f031b6f67bc4b8fb3d77c7364bfc5d8ad442e0883efc7488e1699c560ae0c7efb88e4c4f5a661d972489b431bd710211398334047d8c98"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/fa/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/fa/firefox-69.0b10.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha512 = "37738b97826f9cf0d1e5364385f4e960487fceea5c27bbb82b43fbb4596ca6e8418edc8f78e6fd323ebdb5472abcd015fd50b345362bdef27ddb172549a9318b"; + sha512 = "fb791c52894ee901a54df353a7f4b3a16259689e05c4a18931c878665645d123cf493d25bfdaaa4641a6f925f2a23a77e585ec73f9f2bfb33b87ad3ffecc94cc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ff/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ff/firefox-69.0b10.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha512 = "cb8e50396c862b276678a2fabb80f980fef30d994f53a09359d58604aa0a27eb0b278e5d9a1b1dc7c1fe596a0d3e0313bfcafc44c0d065c4cb3abc5c6034e6e9"; + sha512 = "f5c657a4d1ff42e772943ade151288fc8fad73e532ee11f00ad6098288483a3326eb00a80f13b38abf4165a1ec057f5fcff705ebf9c6d1a29a3fab491b08b63a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/fi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/fi/firefox-69.0b10.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha512 = "99fadaee05f23da102c430d3d1481962b540b71663a219699ec57b2b7342b3531fb3dcfcd506d505364f4c72f3f659140a1169993283683043fbac76cc282eed"; + sha512 = "1d758e4d9c472286d694c70075a0e9a6c955f42e21ef38057e9647a91722ffa15909a39e4c29ecf8d221c5ee3d464a0bdab80b9ce2e9b048a471295f0b6b4dfe"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/fr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/fr/firefox-69.0b10.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha512 = "70c559e2a9efef7314ee1f029b21e684ca39adf2aef298c613b1fbb93b7b727885b51bebd741eed536d4df4f61e3f63e985257cce79433ab3e6412740486e73e"; + sha512 = "12bc2af05bd45e5296340560fb9b1b5c3b970bf4f57a3425fc4e7a810a8a092637ecac20ac1fdc643a4d891754b93109bdb8214ba5fe93bc62137c296d667ae6"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/fy-NL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/fy-NL/firefox-69.0b10.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha512 = "9935b93db2eca7b29d190cb61e29e249d307efa2475617e4a4885018767bdb7d745380a6ddce2611af94bda34054654de9ef5f61a5cde627900471511bd51f10"; + sha512 = "274c67f1acca9b79423da8366ed52036229917547dff79f740918818c379d21402eb0516ca8919cff136b6407950e6b4fb6fee3ce6c1bbc1d68092678f4f255c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ga-IE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ga-IE/firefox-69.0b10.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha512 = "d77f318779d04a6891e4b05f0e17fc76ef8571df1bc87d251b1c00997c9f7736df18fdc98c2a3f91473309dcb2c74df121e300816fc1617efd806a738d4e99d3"; + sha512 = "537e1760621cdd5e0690db7ca1aa0fc935b0e1fcf1a037d988c38c7a5294e34cc904d44642234286b24e070b27ca67e41b7bef0e0983ef6909a977ce3b0ec52b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/gd/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/gd/firefox-69.0b10.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha512 = "c960a3557bce3e6aded9454f506ef14eed46695d468199d4dfb5a9bc84314aa171c0b61c3c3972925a881ed5da6d3cdbdf6dd0fce70d2c509cc9d49e6cc74af8"; + sha512 = "1198fffefa0cfc1e4d9dc7058c840ee3aa6957022a988c3f39fb9da29b74650923153c563f1c5504f70bf8effeb35ed4d9b697e637613b145ae88d556002c064"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/gl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/gl/firefox-69.0b10.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha512 = "58a0dbf623f87c0fe76384b5407b0681e2ec6418af046a65bc843ab0731d84fa1254244405bdaad92ea03b867c1022cd8359a3f469bbdfabc2d177a2dfd38a3a"; + sha512 = "5484eb61aa9d6103b9b44ca9dd0fd2ef1440b20a5c07392aa1a71127a0bba0867e55797429edf328a5c7fd207325df0deb04429e2224ed9faa1336c8d189f5db"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/gn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/gn/firefox-69.0b10.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha512 = "1dae8f4d086ca7ae9ce7ebde47d5f11b49768a3c074915735171f851a10aa2ef70bea0701fafc345d777e5cfd5517604744d70e143217426fc3f8a29350904a7"; + sha512 = "65d1b767146511e6c337cb18dffe1e1e8bbcc702aefb6dccdc31b6722a3f0146826e154b0255ede79f282a3fa3bb4b63d7350acbf49d752d2e8b58de484c2b34"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/gu-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/gu-IN/firefox-69.0b10.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha512 = "ee01da06262f1f87093a19f775db4546b2c0a7d2e0a52bf2640e2eb77afab91f36c5134f5e6ba61f0839e366417920727f82066d277bded53d30cfe1bf708841"; + sha512 = "e8c3cd52bc402b56d04ae1be33a99197df8570d160fc415893f9d91ba7a4b64e20f345282eba8e1b71f9c486db4b37e84e6b56f63b8f6f15532a1ce9bdcee7e4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/he/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/he/firefox-69.0b10.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha512 = "20db236c57f8ef23cada1a4d081c6070141db952986431b6654aaf78f70fdeacf0d50eed7d2b054ef51ff56807ac019efb16a67b47bc9466720a50f07cd59614"; + sha512 = "b2b8b13ee803ffdb039bd656a8f7eebaf10cca29a49ddb2555bb2e561b39a7f76f3e65243e3b37ec31b182897a260ae801ce11223f888949677539b103561398"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/hi-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/hi-IN/firefox-69.0b10.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha512 = "3713350c1cd114dee03fcc74fc4620e56e8f56eafac03fc93e39f3d5bbdd6ad251e9e3b68bf380c1225f4092d607b6624debd37b239853c564a32f5af7ad0edf"; + sha512 = "e564b962cdef896bb6b7708c315b3ab07bb51c4d3813a9855d5ecfd774577808165c15db6f875894b6ca4d9ce01ade8b2eda64d12d2b03a507291ed235978691"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/hr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/hr/firefox-69.0b10.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha512 = "d7b407331779e0ba9a717b339ce3c0c7ed7977f2d78ffef8889285de4855d50db9a2d23455c81b87620f7235bd1b46259be7694ee05a34c6a80bf3eac172518b"; + sha512 = "56ed53ccf263879995b79e9455a73fd7fa9cc082fa984f603d5b9347231232598f85f7c3abcd4e1ae243098ad338eb59efb544a1aef16f6c55e036ff4ea02324"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/hsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/hsb/firefox-69.0b10.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha512 = "f0be34fac431045229d9719f7dd8de16d7c47688f8fb403d701e07163376878d82fdd5990cfcd3668d7224569630942c1e0819152d1db397ce25f965decd84c9"; + sha512 = "9bd729f6d27874d73d4d174f8520dd5639d6e8e4c2284b67438b73b44eb715478a66d2be348b431007fc19ba7c347f914da59265369e80ff7ddb545e6fde25a7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/hu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/hu/firefox-69.0b10.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha512 = "acb207fe9c841da3e1d6e0ab80b0a48fe6e8361869be1871bf156f33c99bcafba28a91b4e533a28218416e5a5c5864ff44f7d75ede0deb04c283db252418a164"; + sha512 = "872993e7f725c8ad3c360cfdaeed4ad0839857f52d88d5db040ec4dbfd829241a7aa0f4c786f2e5f174b4a3161000dd2bc962e9f290e8f67a0757db52ab3ec7c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/hy-AM/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/hy-AM/firefox-69.0b10.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha512 = "c8243580e1d4304d9e249ff49e9f14021f886ac29cfaee1b35630f9ac1e7cfec125cd547bee8e645f1c3e709aa834da46a97fddc8fe1eba565ee33818a10a443"; + sha512 = "a503a134cbde97990b0f733eb79a93454f668c490040b83a109200a3c54560730a1a1b9fce137af6ca5e1a37268b994f500030be8215222d442b651f319e3f75"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ia/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ia/firefox-69.0b10.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha512 = "593f1f384da7f3adc0d945ce87b7196e6b34db416e860c6561a0b4b6e37c2cdb945f26ec465f49caa3da94f2d95230830f8a09a32de6896fd5348aa9ce6dffc1"; + sha512 = "9ff8052382c08e4181c55706cf6612abf24ac8db22a64f7adacda83efbe3e17b8866a7536a9bfeec555ca0a8f3628e88effcc39998a13f382223551d111ac3ca"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/id/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/id/firefox-69.0b10.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha512 = "2c8f939c34c4655173599ac5b5b485695bb3e5aa83e734fea482659d0883e784463d606497de540877bc9121741f9a2fa45fd9842979f348502dca9f148d45e5"; + sha512 = "e03931527fb8a834973092e7cdc75fb1a03923a7ee26abb4e415a6eabef47a32a52accb1365030b4ee84687289a2b71c94faf633f39fa868ee0ffe235e1518f8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/is/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/is/firefox-69.0b10.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha512 = "cfebb762b4318c4db863b1a1307cfa59965333d99f6cf78b99927df92741ce8cbf2540b657ce9ab948bca587a80cbc11633033499109addea0f675a2fa9747a0"; + sha512 = "403339f6fffb70f1541b11840e38ef8ea52d2fbae4ccfe802dc1dbcfc1b2ab8ce50ef7eb3e20c485d86f3ec1c97cba9077a131b7db8d3ba42cec71778b09888f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/it/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/it/firefox-69.0b10.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha512 = "f2ae7405bc9fda25240a53a731a81724880d0a61f975ecd4e916c46f69648bd09e94f9703cf7f159de3d7578b2a5f114c5abdc7b425540533622a44659fe8580"; + sha512 = "518a661eb87dae3af75834198c6fb1d3f6836511dd532b3166f4b395ac0fb1ab602b56a0a8be06f3474e2c89da8ba04b09fc116b2391b11b229d2aef8ff31275"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ja/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ja/firefox-69.0b10.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha512 = "f7084f3dabd2e5cc4029c3840b3ae6cb5de56919076325a5c2789c39794574cdde5ea656d75fc0e0ee2b5600800ea51c3db66431a793362dbe949c49e629bfb3"; + sha512 = "e1ad475114f41e22ef4eb38cff1870822920fe164a79791b21a9b7e9dfb4c7ede59f16578db71214d72270e18ed7eac759a2a978b9fa1c52b04b8b07468c9531"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ka/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ka/firefox-69.0b10.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha512 = "9cdbdad908b6c0f292c5bc78a1afdb867b7bccdb43afc524ef3a72a7079587664cb0df58aeb6b3aab3cfb509c0300bf48b3c56e8b6a6ba94e6413f4a4c17a0c6"; + sha512 = "4aa683433623ac70de7ba0377f8fecd9685a40f1ade072c70cfc2bba375158e04d54fcb25a170077e321d300de849a9e19eba464c619b9f911c25340aa636133"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/kab/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/kab/firefox-69.0b10.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha512 = "c2e65f580b84e26addf7f13642b17596d91c24afaac8decd03235dbf6392df083368ad1e7b3a5f44666ff87a8dc6a08bc3030410be8a578164d3140a8743d2b9"; + sha512 = "45f1b8a04b5a80c4e8207eb9c52b44228b176037aa47319325c0783dd6b5b09c07f76f12535d1f1eda265e0e6f160c24cfd087c699c24d628fbc4d007c156dec"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/kk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/kk/firefox-69.0b10.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha512 = "ae42960c95b5331f5bb93dca24a2a2e9e10ff210fa4d9cc8adc728a67e15dd1e70c57a8e2ba4ba9feb0466268ec7df14cf061aedd30a597a89a46d3f9fb3a313"; + sha512 = "6b327637688b45f61cabfa626fb8b23919142e8eba03db5727bd18b714d4671f6beca487c43fe95f48d9d6771e1775cda098197e41addd06979b480558bea85b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/km/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/km/firefox-69.0b10.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha512 = "7b4e27a7be3e0d5641fa152e76b878d1fb485579e298e7305934ed4d94ac719e658c32345891be818e03150a417542fae07ebd03db74eeb5e9912a75ec5a0dbc"; + sha512 = "de72e1d2164a102c063f6906678a739d70cd7e0b44dfac622ef94e79d7bf076e32fd166b12f9fc077b65592d97d5d6b2f13ba2e403c24c9f9a988f58c9ac3554"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/kn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/kn/firefox-69.0b10.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha512 = "9082afa873079ac286dbe1bbd977f6499fb3dd31c9665c6632750de20ca851dda5559aa6b697034367257517dfcd449ee98f253539521c49b3b1d5e4cf2baef3"; + sha512 = "b505d91f5586a2aaa53824faeb65c31fdb85cd975e8ec659e63c1c95a71f96fa13350f93658455cb9000bc533551a4ca1cde49a0ea74a0d0a8927215b251c34d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ko/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ko/firefox-69.0b10.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha512 = "21d84b384cc16f8b0b62517c355fa438fce255b3d5a7fa77902da2190530c868e46b5a99da059ca5f1306fa58e52471cf7aa85c2d860b8983077d9531a408bbd"; + sha512 = "84fc13c778f38dec4399293bf8b4129d5d21596cb9442e2f6a6d9cf671917b762fee13509a817d272bb4883ae012692919eb62f8c83ae9620684a9f458ac85e9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/lij/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/lij/firefox-69.0b10.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha512 = "88104bd633dea730e1291fb3e1be8f63c68be288c86505d5fadf4c51189460b4315408b15d1c30d4a78dafada45687cf4d231c324a2fbb5b1f1c6f0df053fd4f"; + sha512 = "afcc6d36a9186a24c7672bf0c3cc181e021ec2c08651a84b58e9f06e400394d8ccc7b4484d17909c3388714104ce3485005eef3911596dc23abf8ea9515a4908"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/lt/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/lt/firefox-69.0b10.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha512 = "2b6159e38a3c32f993a9a03e12dcae5198355804b60c262354ccd1976d5c448d133a4e4bfa5fa77040a7811353aceae105afe9e4029e97f88868bb311fdcd64c"; + sha512 = "ad072bd72f7160d7bd9caa7e69d8b1cfd8744e6ead5e1ba0bce5c89a5e4c5193cc55b56018f9feda5d03041082eb5e054dac18ae78d280d7bba72fa5b12ef84a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/lv/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/lv/firefox-69.0b10.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha512 = "6aa7a4e61ab8a08de96b233e98efbd6a558562dd20400b5c905fae5d25e7eedca8732028b5c810611580f250e9fdaec5bed9b6be4ca82a854b218fb50bf29f76"; + sha512 = "3b8bb275384540b32b29d32a72ebb54997aec84b2dabe26ce6f9a92ca60a461dac4368fc8ab816001664c1e8702c130aabf5ae3c39c107da034670aa52b9b616"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/mk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/mk/firefox-69.0b10.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha512 = "aea23827fc798c1870bbcf3a1d6305835fbdacbf7b65d3a58cda68d289dcd2abc1552af01c7f81ec2c95953e8a390072fd38bb187083205069c10e049beb5509"; + sha512 = "519c24ac7757d8af7959dab1e88315f4e4c163003d9467c5d1c5606fe74e9972d35d54731eb46cb7de98be456094d047782c62bbd6e3880f6743c2b3441ce865"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/mr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/mr/firefox-69.0b10.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha512 = "a4016ed6ea3c66f3e136e324c370373b79240d021478333f1e75fd5a6041884be5f3984cf769e41e05bb7ba4ab27b3e110b4b60acad2734f57aec1955509756c"; + sha512 = "7dfa0d85c946dec0190730c49b79a447311e632a58e467c5451c467fa870e6262077f89b2bbb57e29d9d35ae78fb182c4553d4f192aed45633776b6301a53a26"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ms/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ms/firefox-69.0b10.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha512 = "360f51dea75071407513f798b21cd5e45af7f00a6d106550270d8f1cc381e9d93946c0c5d7a5bcf0869c7b552e2a6f217a00a7e33b628e55849298ec71d7ab4f"; + sha512 = "2e7201c05ebdf99e7dd87c1fd974a33fd8c5d56e34aab55da6af22237ea8a4caeb6367ffdbfdfb15e5726096b918ccb7512c77ab20e02f879f4cfd5be27caa3d"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/my/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/my/firefox-69.0b10.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha512 = "500597a8d6728ddecbd535d8d7dafd5a7f462319b2aa8dab159b7c2f6662d4bdb67988e6861ea8e1e8bfaabd1b8ae3e0e281f6c695e21b86f3557299c4f253f7"; + sha512 = "f5cb255dddc705083cd5c91daced163d4337b4162d9686d6c76ab935aabb6d3a651e3932189948115c1612ad5e864cc83ee17f107422d21eb9f8dd54e28d271b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/nb-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/nb-NO/firefox-69.0b10.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha512 = "a42cc16daf51f5820e0fc549131827e9e00fe9da455607c54a069a2ea25cbef0f7d0b831612dbca90763ff94d143ddbf2f3dd795b22f137b167af70f30a27dad"; + sha512 = "d0eeecb4147ef017c4301621ef7c04a14e1aa7af7e7de2882733ff77e8fde916f55d68573cad5d104eb631c60172b7fd886b4c896c1fe9805841ce5e40de6a38"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ne-NP/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ne-NP/firefox-69.0b10.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha512 = "e279dbf320b862b84cc47ff48422f979080d109f6d5e222c44ff0b7a282a5e2f9c7b8cf90e31a00c62dececb6ed580d15f78126adc1ba5328edaa83bcd2df389"; + sha512 = "db7f205b6c42575bbf1e69c256c2113d49a86388f58eb806e761024e73f70ced1a974e18b226c83936a601f428c54ac8deb663ca950960154c60e41fec37efcf"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/nl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/nl/firefox-69.0b10.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha512 = "927e986bb7ac3cb3c0bca70b1731427c47b0c08be95d71017c6e748b837ee5eae4b9240f2c106326f9fe4dc19503e1bdd211ccba4574f10476980083aeb9f6c9"; + sha512 = "b5c4569a404b9b7cbf6b3c4e1b125c1b45fe228018b8513766726f00bf7e52fe2ed1d07f724f5cd2a37afce2c84201d30425d156eead9e02a47011c95fb045d8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/nn-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/nn-NO/firefox-69.0b10.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha512 = "f3f63b23cdfff7d7b7d1a83906afbdaca279eca3bc7bcb0e81844617ae0c682e47de7677e50e9aa255d4153ddc2c71380631ffe9c75467183f9c04ad14fb9a81"; + sha512 = "0d8661643f719055c88b057838fec06b19cc5c91d7975149dce7c61ada82dc7f40516622828c05cfc1a5bd44442f2677907b460770378b92bffdebba9dee3015"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/oc/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/oc/firefox-69.0b10.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha512 = "ced599f04e78c03c0aff767aa874ae9a16f931a4ccf6fa720eb75fd68dbbf7cfd0a5ff34f5d0ab11570d02d6b9f63f797c41f191e7d00218113eca83cffcd65d"; + sha512 = "5064c9198ec7f2c2e83683405d0ec619f7f8243e326051e33fcd869499fe281836ad2d5e1b633a3f264f7968398ff5c8933c5f7fe95729db462395042673058c"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/pa-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/pa-IN/firefox-69.0b10.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha512 = "beca221d503a6b082df8bfe67e9be796c670088e0b3baf30b6e2fb24a9397f10efbe7958461082fb0696ded9b4e4b5b15c77ed57006a76e0c54623cf6f04235e"; + sha512 = "3c52168910d6612a5cd6540b74d922624ed399bc6cdede95ca1ba83cd534acbf6673170687393d3f0ea9a04fbc5940e97062bdf25484a779bb93f914cf793865"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/pl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/pl/firefox-69.0b10.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha512 = "0eca48ee1275ed2bec85bec2c9d0e09ab962c4ee7543441126ff520cd61ac5bc686d1ce006243d652ad4c79fd08be6473b87c0052cda20348a66b5eacec18ca7"; + sha512 = "b8e627cae2a2a2acb6b0dfab43ea501171165898196634ec435944d625ef8d1048ed02ac94aab9bdaf63ec5b2f3159d534db78801b1038fb493797ba27c2d7dc"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/pt-BR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/pt-BR/firefox-69.0b10.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha512 = "0f1b2909355e22bee9812ebe04b2ab9280b892724addca0915b0773592a6598b0aa48543d92a16be39eb1f748f8109594cc129d59d5a74afcfee8ce71ddc7d8a"; + sha512 = "263678f014c16c22edcf4139bcc443a02fd67dd41a8820f670c2a1a44f83bc3bc4532bbad92707525264baf687a17b6d5d3e46bd9d7228a3798c7387d218e17f"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/pt-PT/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/pt-PT/firefox-69.0b10.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha512 = "2e8a2d2208825576580a86734f5a77a0d17fdc8ad76bc317a1171bc610eb71f20bb66502cd9158a8afb281ac5e92f8edc9a81592f2df4fbfe2e368acedc241fd"; + sha512 = "2113203fef6c17485784d4ecb03ac8ed249102a8bd231ef3c0a9c95c06e0d46ab3bd5af475ffbd9ce11036df0937e34a42ea560a3c056ea153607e93540fb91b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/rm/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/rm/firefox-69.0b10.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha512 = "6132cc4dd0ce68b50ed5417842c3f8bdc8deb3243f82cc6160ff657a8d51a73403e6a6f987a7a8fc519806c380754a1fe9eafe804c08a972d05c1fb75c76dbf0"; + sha512 = "57e47591931d942c59259d10b41a3eacb4e5d8d61540fc294546a0a15dd347b2419b64b66e4a33e651e2f616e158b7bda60bccfaea1a42182197dca694e43e3e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ro/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ro/firefox-69.0b10.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha512 = "b7b64b358f847a47831fa7b30a4b1fb2ce5e3dd68252e8516ec255e193d5f2e4f4831bd4649b29ecf8e94e133b9178ae62f13a2bc1d56b93195543d4fffc2a21"; + sha512 = "0c206c38a7833d1c7596f26a0d6b995cbbaedb2b014464dc15c82fb3a8315bb524dec0d2df2ddfe9a28b8737c32c87a85c8b815f284535dc572669089266fee9"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ru/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ru/firefox-69.0b10.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha512 = "0c06df6db5060e4c5d7bc1802ffa5b31dc7fcbf041d8ad94ae5d2f02f340ab0a1b8078c0b35822c25fa48b9a48f3e89f15ddb3819f27613d8ac51d3033129bd0"; + sha512 = "fa544b95295299c3a9eb8c97be37cab4faf77df818f624562dbfcb553f6b9650b458185e52c2a77ce07e3884ce76bcf925e15aabaa4af4490abb9a6b9ff1ac81"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/si/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/si/firefox-69.0b10.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha512 = "ebe76dc51e5ae556152b468084e848d2beebd5b6a2b87efd136db6936492a03085b8207c2928ebb2f5dc003be4fd47e7b330034bbcbf7085663e08348e5580e9"; + sha512 = "2f2a407162f4c1fbda3ae3c2f18a97683ff12fcbf863734659d45aae50ea6cc3a8bb447449c1e1922b3b64f84bcc295596287cd24855e10ff8fe25401293f888"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/sk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/sk/firefox-69.0b10.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha512 = "e722e0d139da87df2ae9526621379f1e8a23da052bdacc21204cc41b2ee22a316c915cedc8d13c53b63acbd5a5e0693e52a6897fe4c94f33bff8cbc27c4d0f0e"; + sha512 = "871daa6bdeb59b9ac1c3d73316846d2955bd278a46f17820c7b1f9724a91968f7e1dc19934701afe4d880a22befd3999784e1cda962620400b01bc56662245d8"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/sl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/sl/firefox-69.0b10.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha512 = "8ffecbb942625559f6d97ee57d716b97a8cca1110aaecb5759b85aa2f56d65058b08e48b939cd9ec493d709d44cc3083843eebe1e742d6bebaaed15eb9bc4149"; + sha512 = "02e477a1c5ffb5cb8df98c8da67dc1556e0bc832b99ab03b4e231ee801baa8bc2964ed81e94ef431ea70b958c3c18fe01dcfec583823d4aebd3c6efb24333772"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/son/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/son/firefox-69.0b10.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha512 = "bf56d3a90aa862f478c0a858bd307663f1e0bcaf3298e3f3513d0a55a3be3934677778ed16897d477cb27874bfcd9cc7f8965cf5916b48de3425459a04d2d1e7"; + sha512 = "b423b037a5395bd230030ce18056703867d74fd595b54c070fb9165f8c8b25108acc9b35fe0422bedc6e5ff57a0657b4bf1ebf5b9840c3b5f0fd3db2b577d416"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/sq/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/sq/firefox-69.0b10.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha512 = "5745e225017602257b546b1b08d112292664f46e87a62cbbd46a9fea65db34f24dff61f1473f13927afa33c7c6dd2d9e8e3c3d0bb18c7a6014e45b878c2aecd1"; + sha512 = "7805e5a4b7b84e3ca89bb40d086726b42afb07e6aa78ac2c5231a1e8a3deadf02493b83077841e979b08eee913062c03a6da6b7a835acb54dc2ce34692808a67"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/sr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/sr/firefox-69.0b10.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha512 = "90f3ae30892151dca30556aabb3d5ef9f7e2fd85d361d32af4d87516337b8389d8bcf01708477fded9a5cddf58a9f69980fbed68109a36a4892ba3e1e0229df4"; + sha512 = "e3506dcd3a14fefffd3a450e2573498db3fc82ecf9e20b203c5bcb3ba8d9f62e7dc69dfa3ceece91090adafad675451bf70d5badda3e0adcabf340410c9fbce0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/sv-SE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/sv-SE/firefox-69.0b10.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha512 = "b9c4453da8a47729a63ed1c67d18d7544cc9a6241a2b9feb246f0ada423086dd72bee3b91a0ef1e335ef15fd1c57ac1937a25b311587ab2470438d8f93076532"; + sha512 = "cacecb4743defedf9f67348adfb201f0092d835049b8a93afe1f1bba6c919441b540c101024f8e55b4d3ad2f4fdc71f8cd91bfc7d35ba5ee2af4ec13efacf10a"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ta/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ta/firefox-69.0b10.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha512 = "99954f03406a823b9662f371d1c6fdbab18d15099b081a4b7ca99517433aa67c22c719efc1fb84baec3e3e25f1286bcf4d876e9494b8b5f92ef921f88c99c57e"; + sha512 = "9184c8ec21fecb20291cefaca07b78fa1d18baa5ae0af2a13639f0b3de176b80615a133a26b575a8c10d722308f50aa0dfb34d9b495a92a137cd1ff738467be7"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/te/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/te/firefox-69.0b10.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha512 = "420c1b6eabaf6062eaf635625c52a14534dd4646c3c28946ff13a9ac573ffa200d71d29098bb99909747d90e2fa5ff8a316e1785ff45eccc1fd070cf354236d6"; + sha512 = "e903b44ee00bf108bfdb57a31bd954a7a924c039e606bbbe8d804979ea2c9d9268e23df1da36f1188b3e2684bf77a8ccc12590bfd02f73b759cd8f660f038a31"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/th/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/th/firefox-69.0b10.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha512 = "9e399d3d6c76a27e357f3d5b6a728f6dde409b1575588b55f84b1ee53668928ec1d83a425feeda3dac0198b5ffe15d432d00b9404e13c0cc861f9147fa0b93a9"; + sha512 = "1c5c1a75ebe2cc3a80eb88d3cf80787360e88401ee749ab5b8944caba5caf55d267939376a0c76c72bd733b31d438e141d3f937bf604e8f48e333cc3024851a0"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/tr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/tr/firefox-69.0b10.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha512 = "3382250950fe1ea125a3058c633440712f5db3505c92e695708753e8b5f2b89d2a283dc09157c47309d926a0f25662afb1c540d16c15bc2b97cb661cfddc10c7"; + sha512 = "a7fc78e4abbaf40ec8982ee14054e2cce5f21e4c5f6fd2dc04d38bb6b3b062c12a97cc7dc113b8893a1f5a842aa892ea1440bad081530918e1108b7034e349e4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/uk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/uk/firefox-69.0b10.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha512 = "207e86fd3d98316afd63f4c5f10651e9a5c754a3aa2c4c2b50d40eb51048b32806fa631a7559a919b540111f8ca5ed84d038afbb7865de90411d627360b9b979"; + sha512 = "fbfc588e3a366190509948fa846ee0c075e91e4489ca31c496ad73cf3150d93cd1ae657886f370ff36acb211852b0644dd3bc446da973a2dc18f019752a0810e"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/ur/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/ur/firefox-69.0b10.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha512 = "faab2519f98d53694dc7aa55191a6296f29baff7efc9484790a2a78aa7c6fef09e5a0384fd9235ef32df4d75a0a0a1150a40f6d83f37d487ae9535385ea48210"; + sha512 = "ec1cd0bea6a8a78ec6c8bf459d84af87958bf11835ded4c33a46cb721d37a0c56854bc754b5f4c13890b3a436d8c7b9746a6a421683f7845b72052eec9f59bae"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/uz/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/uz/firefox-69.0b10.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha512 = "b71bbdf0ea3d19038cba328516eba8c49a5a36d29cb0e04151140c7e5b19ea982c7389cd5248d846c760d55f723b11530d050a327a49f3d8cdb371fd283c1a9a"; + sha512 = "0d8f70aa963afb07cd2a3eed5eead80afa7a8e4664411a781e2ed808fee47381d341b4a0a118b73cf19a3639d61dd36f47a10a5a4e88243ccf0a4930585aa02b"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/vi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/vi/firefox-69.0b10.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha512 = "d2a27da5ee81c6a46f3e8f4a0d21d37bdfdd1080a8dcc8f43b121c5b4fa6a5a544e8f04a6bea3204c1c8b18604516909a0d8717581d6b2f88a432aa5d04c4aea"; + sha512 = "530c31e84972d53a6983291bdf1a01a4528503f122f94bee9e3fd4fbe284bf7b92f3f53e9b119c9da678a9b453b6f64a054385b96af2bf7855a90babf7cfcf14"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/xh/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/xh/firefox-69.0b10.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha512 = "c52908654b48f79eafc96a5b4f31e13595383dc397564a958fe4ecea444beadaeeac88c1b1c3929005715796a89dca4e3befdfb6d02f4c1503b7e86f1deefde7"; + sha512 = "e2c3ac847fce76ee7754e02fe1bd34882e2364ec8773906f9884ce2806b47f5cd966fd5fa39229bf6ce67df43e803542cd6a4925255138d007b571288c8212a3"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/zh-CN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/zh-CN/firefox-69.0b10.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha512 = "3fcb1f091af4b37fcdf29ce99299ec02cfa07927f9945bb27be8b97e9374cad28bb2dec9f03aeffd7334e9802f001c520573cc1d34e5670c2476ff16f758347e"; + sha512 = "04c3306367ed2284b08fcb5c8a8f0c5d3b447117a1195b50457d0e9907d262163129811e95222f307668f4c1178a4575c6d80f3d7ad68587630fb83ca6c1f9f4"; } - { url = "http://archive.mozilla.org/pub/firefox/releases/68.0b12/linux-i686/zh-TW/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/firefox/releases/69.0b10/linux-i686/zh-TW/firefox-69.0b10.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha512 = "440464d74bb0601ac6d0868a2fce0592a1d49fc029a2bb1782e6758d35e7f7a3961ec0cc60e8b389aaea2dc42703551f7d31e3d1c569e485ccf58bb0e34ba126"; + sha512 = "cea2e28cec094e9672d849a94b65f925ffb44de9e8182961ba5fe5e1571d665a069c525ff11b9f61632b64017674266b109d5cbd032f552d0d99ec9fc347bba2"; } ]; } From e8ab003ede7586414b8e98be47ccc92c58f882eb Mon Sep 17 00:00:00 2001 From: flatulation Date: Fri, 2 Aug 2019 17:39:42 +0100 Subject: [PATCH 1443/1611] firefox-devedition-bin-unwrapped: 68.0b12 -> 69.0b10 --- .../firefox-bin/devedition_sources.nix | 746 +++++++++--------- 1 file changed, 373 insertions(+), 373 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix index d9b96fb7e63..5d4ee39a4b2 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/devedition_sources.nix @@ -1,935 +1,935 @@ { - version = "68.0b12"; + version = "69.0b10"; sources = [ - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ach/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ach/firefox-69.0b10.tar.bz2"; locale = "ach"; arch = "linux-x86_64"; - sha512 = "4239de26746d164633b7095da96a837bbd58294a4636d6bd3e4b23cb711f6cb6b1f56f1fd7d30938225f1532117da1d9eace309e2249ca7c6671685d1d9a97d4"; + sha512 = "9d036f8217a95ea3d601e10050ee15f75f6d3eea5f38f5a1ce0a773d92cca7418a863385555ec9112751016e4008672f8de79c17b7156775d7ba3eee2a4c19d9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/af/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/af/firefox-69.0b10.tar.bz2"; locale = "af"; arch = "linux-x86_64"; - sha512 = "ed5e3724fa2c88c84b4bf5d4c38613dc99546f952b74ac2e9803f9fc8fb2d5dfc58f8ab34244671eba42adee1ac1e917e578e9625f7206bf3b4b58aa75a5c8aa"; + sha512 = "def33babd8a97fb1b9f9059a019d5c823e965f404baadc1daf3325a3f7437f0152585dd6ba13f67542eb7b1e7cb2f265986c7813c35e65cb79febba5636a6c5d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/an/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/an/firefox-69.0b10.tar.bz2"; locale = "an"; arch = "linux-x86_64"; - sha512 = "ee87f64673037099dd29fac1d3c545298f4db4d12d0c8809e1f8ea6eddd29210edfb9e20346c0f5f747ba86335e123fd08d5b40b0a6d7ba2f34d4906dfda7f19"; + sha512 = "b51086111c0a2a989c6123729028b41a834f25bff19836b486bfd935d52055a8c23bdb0e79eb8718d86a4b4781ed6fdd02b946d2dc5e0b86de9fc2166393f1e4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ar/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ar/firefox-69.0b10.tar.bz2"; locale = "ar"; arch = "linux-x86_64"; - sha512 = "ee2d65b077b464ac1a27e5ff24f33a303ec2a614246cdbf83cf84a7356f1cf3f721f6d804283c9fe2a47ffff1e61688de6129515c5fc833d60f8de2efe370f0c"; + sha512 = "d3cc62cfa029a7112aa8b27257e2b1b7c3adb99d56d3d749b19009be92ada130353f6d5bd8383b78ddd179417779d2425ecfa2d778a4752f7a876f3fbef84c34"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ast/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ast/firefox-69.0b10.tar.bz2"; locale = "ast"; arch = "linux-x86_64"; - sha512 = "e9995774e3349c221f22d09413d6fc30bcb57db262ff311988f596d63702d210b904db5720577c06be4d53e2b95ade7aaa7980b5002ea93c9b9186f108fbb83e"; + sha512 = "75ec692ad8b8d56e13b6b34a980c9f37034b188a675dd0c975e598277fa919587a90a3be11867bd63db1c83a12876d10e2eeb83e5666f10c256adad5b9f369f7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/az/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/az/firefox-69.0b10.tar.bz2"; locale = "az"; arch = "linux-x86_64"; - sha512 = "0fe2676b475fce70b5cf325d1044829022599962d1dc144840189f9057623bf575db1cd7cfb8b6d7ccce6588134c91bdf15cc6907fc94f696947a83671cee9b5"; + sha512 = "9f44dd00187942430c69898298e677dbfe8385a9e43d312681c7d487ae3353b0dd668a87945d41183bbdffd8bfe7331d1d752a594fa515372139385935134417"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/be/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/be/firefox-69.0b10.tar.bz2"; locale = "be"; arch = "linux-x86_64"; - sha512 = "ece3b80725f7a2cd2a97778a64f3be788277fcea436151cf5221554a4746e7f9215fbd708f1d7634b974e7716c387c3c8914a5ce3386323c048353cf8aafe039"; + sha512 = "faf91758f3cf17f8dbc570195adacbd93a57f46f0750eabceb6e66df16dbf459670254712b63146b89be67442ba828d5506a703cd51bf3d7c42708ba30bba3e4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/bg/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/bg/firefox-69.0b10.tar.bz2"; locale = "bg"; arch = "linux-x86_64"; - sha512 = "5bb8489017dbf8a66aeae34299257afd9849337ab94de9d840db7d408bfefce3959ef08fff6eb2f5f8b3b5878c451b32d9b1ac9b46769149b8dbabeef1b38352"; + sha512 = "b712fdfa9643d00cf44129ec7d0f718ebb46e48fb568d70989b5c094f1a7c231247672620955f397b94e7de0aaa74893780155901cc1c4e26ba4ab9646b566e7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/bn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/bn/firefox-69.0b10.tar.bz2"; locale = "bn"; arch = "linux-x86_64"; - sha512 = "fc3633d0b2668687410a0163e51eccc67ded362e5e588d53ab2d3ecc804d2e8467a6e935d1eaa696eda720079a82a3c63913803787e33d2b93016d1125f52ae5"; + sha512 = "9a41d3c3647f3c7c0f5d329edf70693f63835a5dfaf67df08d7937a2efdc89b4cae263e4447ea09e05453be4a3ca658a965f3aafe432cad86ce9ce754c4e5813"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/br/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/br/firefox-69.0b10.tar.bz2"; locale = "br"; arch = "linux-x86_64"; - sha512 = "5e310958d3cabb6911cdcb5403d377baa011be673f3e69a55f4269ad427fd33e13a2b2c674e0bd221589feaeb26b91ac98d7cb9c1d5f718bd7a83c5779ad9e9e"; + sha512 = "8c3ee20552f7c85723cb8489cea7f64821619a09deaffba94f42c1b29c55894e40720cb3997791c10baf27c99ea11976741c30286e417b207ec620a3dee4c771"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/bs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/bs/firefox-69.0b10.tar.bz2"; locale = "bs"; arch = "linux-x86_64"; - sha512 = "0803e0f91a6696b643e73ea0fddc2e58867a3ad1ef909a8f19aa03aedfb2dc6197dcfab8bd14d0472783d10880e1e23f19720192fc22ad42fac00dc02e4edf0f"; + sha512 = "348c1e68f57f2a09c134452aa110b39cd638d97bb0b8adaef7f57210c9d95e3a8a6732e72a437219e517799835c4d1d6332af54706239bc604f57e166d859898"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ca/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ca/firefox-69.0b10.tar.bz2"; locale = "ca"; arch = "linux-x86_64"; - sha512 = "ee6cb26b32ac4a103736432007bb48f41167d52ef89ab27fd2c9764aea4370eb65d88b54a06c37730c3c4c823b02b2519109d9a71d096c9a68a82e86305a01f9"; + sha512 = "4630f3edb4f435dd169335c67477ceb6e42f2d8161dd9559ff58525fc117f7cbf45da534de6e160bf824b3b4b41ded3d3dcac2782f2a208ab7d0e014b4ba40ed"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/cak/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/cak/firefox-69.0b10.tar.bz2"; locale = "cak"; arch = "linux-x86_64"; - sha512 = "a5547de0ea1ac5c39aa97550159e82c6595241f6079a86bf832c798e3b4f215a6869c1e43e9ab0e1f0d9ddd54133ebc6b0fcd20bad39f5fae9d30ff641c5397d"; + sha512 = "2cae224ee70259a60c0868b83ba933eb43867ca0345bc0fea9693dc3ddcd9130d7325ba953d729778e7ed0eae334b200abd11dc1e903183514c11475e0a61269"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/cs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/cs/firefox-69.0b10.tar.bz2"; locale = "cs"; arch = "linux-x86_64"; - sha512 = "b4ae0ce992a4aeb6d16ce6f56ce81887557c95bbaa70636e1074c9d3e2766400413cdcc36c0a5994209dad20dba9a6cebe55011eca9295203aeef0a13b74493c"; + sha512 = "434ef8593e4771c00b772ef3be672fa82d1084431882a6b95011cdaaa04035d08bb1927ec0eafe51d44e7028e2038f798073c5287335300989866ee7f7347ed6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/cy/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/cy/firefox-69.0b10.tar.bz2"; locale = "cy"; arch = "linux-x86_64"; - sha512 = "d1bb65cbeac9c4bb7071a5963cf622d36792b9ca436b89e0d3f6bce3e718c2e6365364d876379ed5cff908a38565f593af236341b9712d54818f1c359a55cf57"; + sha512 = "e26e3a3e571efa96d03169f17bb7e0920b2ba160830440ed924b6b60c244d31297bfc72d810292e07b9abeee9cb4843f0c2369192b827362fd65bb3f9da4c577"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/da/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/da/firefox-69.0b10.tar.bz2"; locale = "da"; arch = "linux-x86_64"; - sha512 = "a9b46e51ee7e941414cf6ccc3d9b531ec5e621966515d66f7b0673a7b2be548e8cdc7f783ce0a756e4b50ce2d4b17dcc0dcbdb8c07c97d8ad70a44264155cd69"; + sha512 = "4cac02fcb2efbe5736e52232b2cc6225572f9fa2518129d501b7d86d782177b4581d9d0ccd5d90131a1e2d676dc43ce9d0841f036701cbc543d379a24ac11fbd"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/de/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/de/firefox-69.0b10.tar.bz2"; locale = "de"; arch = "linux-x86_64"; - sha512 = "f591e1ffc684f428fbae4b94ce1086a27c9ecea4e9528c18e6dfa8af2a967ff8bfe374984390a6808c2bad656e13adc7cafbb76c862a16f77804d1b4fdfcd29c"; + sha512 = "b8279a32bd29f70e9470707c9d8843a39c9c7e95c1b732944bdcdcb1fc383d33881ab40f2d00ea36bf01ab7501a77e754dbd2230187fbb2eb0b324cc155a4412"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/dsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/dsb/firefox-69.0b10.tar.bz2"; locale = "dsb"; arch = "linux-x86_64"; - sha512 = "9947092a150bbef82391521ef36dccdcdef9eafe5b5282af5f34d28fc0dd6d173e146ad9ac7f7ee10ca02e4a5ce5099f29939852565c3cac95507f33a8f23e1c"; + sha512 = "761e8e0c9414a8a72fac258d52729ad4dab8376e249218ec49ceb47311bd798346b57902671ec394f1ef2c15b641c47f9741e67c76f54684fe4639b609e1700f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/el/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/el/firefox-69.0b10.tar.bz2"; locale = "el"; arch = "linux-x86_64"; - sha512 = "a806b3ec254afe96748abf2f9c970e5e5b2ffcb7f7c70e1c4c0c92ed60d493da5cc6b22a5bf78aa1de8c36f5108e4283ed67285d53ebd737d86950c18cce66d7"; + sha512 = "ed8d934d5c7c3bbc1126f04de045cd5f0ed9a529a8d4f207ff115c2e8dd4e152c801e5a4aa0b37fc10dd8fd1f1e363b78f21b4930d49e25649264b751c1260ea"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/en-CA/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/en-CA/firefox-69.0b10.tar.bz2"; locale = "en-CA"; arch = "linux-x86_64"; - sha512 = "b3967481f6e7f4e03ab431d8e76ab8bbab286da468897e75a6dceb6ab735f36122ea4ce85867113143019d3750262f705d1f64d59669ee590bf08db409788c09"; + sha512 = "60689489f53a863d55cfbef67499220efb00aee32ee6ea7054f41f14df43c1b787a04ea374e0ab950dba2110b2728b980fdc46f97136614ef8b97eee210eb58c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/en-GB/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/en-GB/firefox-69.0b10.tar.bz2"; locale = "en-GB"; arch = "linux-x86_64"; - sha512 = "7c68680326ecd1d0e7bbd2ccc90d36623434e8019c5bc0968227e15af92b1f07f65767fb2c78a5051538fe79a17bb485b3b697774d938fe3ca876ae3a2e728e8"; + sha512 = "c3e10c0f0922e4bab3558cbb6be106278fa782b50a0fa5e38db6adf7ff60e88717af15437e48ea23b15762424d89a94361663dda8e02d6fdf9d6c19a5afc90a9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/en-US/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/en-US/firefox-69.0b10.tar.bz2"; locale = "en-US"; arch = "linux-x86_64"; - sha512 = "5cab4ea7a8d3a72e6fe1535b21f1b48c2adb183764b71fb230d051b2112ad2466672046faf6b0feffd4b93dd727ac6c824ff420e37901b6e00b6a32b91c830c3"; + sha512 = "135e4b561e311d6132164808272bd689b486b840d652ae0ea4ce9a7096472836fe798309d0feafc1ab8cfb32b2c72b396a63734b4795e591863a5c89bd49802c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/eo/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/eo/firefox-69.0b10.tar.bz2"; locale = "eo"; arch = "linux-x86_64"; - sha512 = "ac913d42212452ce632c86debe61a27d46f682d3fe1c41c61724cb0aaa5ba3b2f63867d0addac46fa3f71d42282dbe3a3e5600990a1dfe611979fafb1c98f4a7"; + sha512 = "8991bccfb8cf10e0df6a2288968b334edd0b71a4030c0e008daf124b6e5256d73dbf5b5b376570852a0fa338570a9d286f24ef63dcf039842cd0fb1eb5901695"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/es-AR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/es-AR/firefox-69.0b10.tar.bz2"; locale = "es-AR"; arch = "linux-x86_64"; - sha512 = "fd003ca892cb26d56f6a3e5553a108c29180310203d095e8cd428a2bf499908c24f8e55077ba443bf9dea6188025e82bb18ebd86fb06e59d3abe83bd1fb23171"; + sha512 = "57a8275cf23e29a9a425ce23ef3bc787596df0dda95d5dbb2673bd658ad0bdcae3fa554cf51899d5a2719ebc218b70bda176c3467a01a7a4da7a60678f668101"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/es-CL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/es-CL/firefox-69.0b10.tar.bz2"; locale = "es-CL"; arch = "linux-x86_64"; - sha512 = "d5144d975a73ab85cef8e271d78f408c7f4f72db7df29c4a7b756fb6134a2a0dec9eb77472f2c980c2e290cea6d59ac9f599e4e946844c0fa0054f79fb201fb2"; + sha512 = "2528855037d5a843895c639cb0d2b353784e59dc2103c4175e085f216d490ea037bf440bf4bbf926301143079a2885040c294c77b10f032135fe070b20e99371"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/es-ES/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/es-ES/firefox-69.0b10.tar.bz2"; locale = "es-ES"; arch = "linux-x86_64"; - sha512 = "586ef6cff55662f1287cd5ab7926e9f269f8e337432d3708f66e660aad348b88cfa5ca28579c703892695091501cdcda0df18553bfd16ee13c06b26de5581d97"; + sha512 = "4c5c6cbd1fa3680489bf6324e975bcea43429f7b55be853d2523daa45adf1f22772d0427f9df005c7e3c22543830473df82d4da818aff2ff72c96902d0b72e5d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/es-MX/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/es-MX/firefox-69.0b10.tar.bz2"; locale = "es-MX"; arch = "linux-x86_64"; - sha512 = "1a5e2bb5f11d289846214261703fb1b953fbfcf5dde959ef769cb03286bac9a9ef93866000b00828b49c79e4db9aa620327b4f77c3a44f7ccad158a66600cdc3"; + sha512 = "e2400bb17d7df8b0541de8c391b28d2b5e7ee9523dc73d90e9d10ec578b3acb58051c6bb510b18c076b7dad8a4b4a7ddb605db3af318022c369ea78cccf3c441"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/et/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/et/firefox-69.0b10.tar.bz2"; locale = "et"; arch = "linux-x86_64"; - sha512 = "6542fbd6db3f5b41a878ad1172da004407a733c7b6cc19688c1377c24ce5c13ad8e6972d54e02acede345ce948c34b6c164589d452295c0be723145615d2743b"; + sha512 = "ebb2bcc463312c187d2c5119c4e0e5580a78477be61b76a028a28791398311e0fde3ddcda039397c9d63f8658ceb7490b62fb6e69eeed34c204e60b6867b216d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/eu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/eu/firefox-69.0b10.tar.bz2"; locale = "eu"; arch = "linux-x86_64"; - sha512 = "bfce7ce5f0cd03a065ec995f9bbde6a797741b1e9fdb9d7ccc334a8e84deed04dac62e344a05f1ba29f8a9487866520821eb8da02915e2921d0dcaad0922924d"; + sha512 = "8c3796a5189f40324b2227750ea72b09397df750a154e1056a8bf9b7933a8ad6935a64be569641bd391fdaeb9d10cdd330c0ad031ea012e9a64848d8a034c650"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/fa/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/fa/firefox-69.0b10.tar.bz2"; locale = "fa"; arch = "linux-x86_64"; - sha512 = "e0e0ef6054925fa5e8987ea9f802311ac80d0290107bc7cbbf8141ae6bd191928cd12a17331edff49ac59673a8ddbe5b35fef6308957e57d6204350ed13b5e97"; + sha512 = "239371297c2524142842dd18b9de92c8b93b7fff82c045599d19effad81344703c65cf77e1db4c665de2b565cfe5ae7ec8a7589b68ab25b5ff0e6ea90b7c4cad"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ff/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ff/firefox-69.0b10.tar.bz2"; locale = "ff"; arch = "linux-x86_64"; - sha512 = "e224b2d00f272c997ea127f4664e958ae7a7e795965a07beb4ae082549e2f7a866eb5489a7e82240c00fd9f21223d82fbca0f3b708b9c632a98187896c6f1424"; + sha512 = "064babe379e9753394acfda8e1a9ccebbf1b980ceca6d0898e897b5ce91d06c74fe525c5c2ac34d9527c55acffac5f70a88ee5742ab363e3f0855d5d851bf56e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/fi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/fi/firefox-69.0b10.tar.bz2"; locale = "fi"; arch = "linux-x86_64"; - sha512 = "294d654921278d359cf174e28c9cc6cfab1800caf42beee733621ecf3f6b27add20e036b6fc7f7f6fbc6a14acc2ee47865d28f14999e88fa91b5da5248282f8b"; + sha512 = "411501345e1f1f9bff9d03f2e97e756d750cce3fc753be5572016de12bf18c1b6be716f39b0db87ebaeed6bc300264eef9d1624d82fd289767ac32c2765cc44c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/fr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/fr/firefox-69.0b10.tar.bz2"; locale = "fr"; arch = "linux-x86_64"; - sha512 = "c855b9c5880229379823d5a3486f588cafd654f75cd60ee741e3b1cc3cf84acb200f0a62f7c17d2eea68ff65df83a6b4789b11f027f56d166b05cc45d700ea71"; + sha512 = "9bd4161f31256e12ece7d5cc28eb78dc0bf2249a6643d6d962524582b10a520ce3dbb578fbee803f9f2fc301bd57adebb7fd6f9d3f83fa7c7fbb30b7e16960f5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/fy-NL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/fy-NL/firefox-69.0b10.tar.bz2"; locale = "fy-NL"; arch = "linux-x86_64"; - sha512 = "f0086a1455b5f6b0ba116fec9dc3aad31f0165edec2d8ae84258d624142ca1651dd30a8d4d4ccd7441a81b9def479836643ad9ee753eab125d70932c097c1cd9"; + sha512 = "d14d82ba14694de463c45aa32ab5782643233c12591a1c48732067a4366f22467e4c31d231164750722f2b6f6b61b2a8a2378e866b55de706ba83052cefeb24d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ga-IE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ga-IE/firefox-69.0b10.tar.bz2"; locale = "ga-IE"; arch = "linux-x86_64"; - sha512 = "3488aa241d4eb1af1ae759ee1576fc22e44ba23730b24c78018d5e975b236206d19a1724bcb1b9c28bc3635f3a024f55fc5ddc8211d8803f3a6957e0c3c05011"; + sha512 = "1fc14f670747b47d6b784e7a4f1875c90cf566009f084e5923af853f4c46686cdd0d66eebf410a4d9f024b260af57151d281014303ce93226b95c20bf41d1944"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/gd/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/gd/firefox-69.0b10.tar.bz2"; locale = "gd"; arch = "linux-x86_64"; - sha512 = "703b0c668354a90ec5960bd529dd017d5fdb5c014ea9b59b4f8491cdb6612421c22c5e14083074e6d17ad5f4293c7cf5db789ba86cd3ad27997619e6cc95aec2"; + sha512 = "60bbe1d315958353d50dac327a358a3c1b52f5f93ea93262d640d91cf85207f47fc34fbf689c9efb60ff63b8cb8d7e991cd7edc8effe2277c8b70bf026d36608"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/gl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/gl/firefox-69.0b10.tar.bz2"; locale = "gl"; arch = "linux-x86_64"; - sha512 = "0412e4011dcda241839eddb2ecff5b3e67399891d8ad3caf5538ed7cacee3fd0e5e5dcdec97b6afa92e50e492c4c3b3fb5169aa4f167f4cca58e2adc8d081b3e"; + sha512 = "dc13fa5d442188edc445c0a32e0dfe96d6320cddf6369c6a70af52f77ea375d98b596655cea8df02c81c7db4a8fec9ea9e48cef7579665e7c4ef89eef9022dd5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/gn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/gn/firefox-69.0b10.tar.bz2"; locale = "gn"; arch = "linux-x86_64"; - sha512 = "693aa9153aa73a92b00a56aa331c05f0a09a2c4ef8315cae07a158ae709d9182a07f36722fe2dbf52959fba75cc8494ee81e71a58b69d6a6da8c638381fc746a"; + sha512 = "23c145e14f86300430479ab5253c854921672341b3ab0c5748bbfb1d7f4553a22f7e7c76ab3d48eb8110c9a69caa337cfb0c4cb66b53b3a267cb077375449897"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/gu-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/gu-IN/firefox-69.0b10.tar.bz2"; locale = "gu-IN"; arch = "linux-x86_64"; - sha512 = "df97e1a087a21d7e8f478a50f8993b34d82f3305b3eab3caccfc72927ca9b6f03e431f9b63aef6d044eb1905f1df1fc81c9cd4bfbca4c67a1d2f92d302ca3e20"; + sha512 = "8738fe7c58893724e6a2a5b46dd888823fa0e1621639341b36b120913f28626f9ecc71e7ae54d16704a411f9c58908ff4ac7f77c8c4622f4278969ac7fe665af"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/he/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/he/firefox-69.0b10.tar.bz2"; locale = "he"; arch = "linux-x86_64"; - sha512 = "aa41c1dff2c5e2f8db9557f1632c1cc0739bc02c606775b602ceef7ea2f9f560bdaeaf3785654aca205c5dc6357c29c7292b1fe756ac8fa0ac2d1d01c15663ce"; + sha512 = "09fc26d62b294e76662e005980cf54bdef3f5d0b38ac83da3fad4b85bcc0bd614651249caa4a37bf681a7f1ff03470e79980216f24d396833fcefc808ceac4bc"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/hi-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/hi-IN/firefox-69.0b10.tar.bz2"; locale = "hi-IN"; arch = "linux-x86_64"; - sha512 = "53e4d3fc6741dfe72486ed2ca69ec673419d1d6c518de7cf494a7c8c1165a08f6a6113c5c1c7c86b7cc7b2c6e3413eaa790f26397e28dfa86d69bf91120ba02c"; + sha512 = "a51273d8cd8f4ecc4d7e5140daec8d834dbfc76567a62d92ac5a469da733a6231fc6c91e5182bafade141366936080499c51f6fdf6d61f023292c0fdda186507"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/hr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/hr/firefox-69.0b10.tar.bz2"; locale = "hr"; arch = "linux-x86_64"; - sha512 = "3c3ea9b770da15c1424a05aff6c87f5699269831c51bbe846caafceeb0a2401201f01cdf4d9cd37b84582b6864a9e53655bbd0f42ad19cb669ca8c28c73a18c8"; + sha512 = "19947b47816f7172ce94fc1a91516520fad41fc09fb8d5c25828ceabadd8506a2d5dcc6f1e1f32c43c7afff48066bf5729ff9c831dd5f3dfe1e509a3874c4965"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/hsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/hsb/firefox-69.0b10.tar.bz2"; locale = "hsb"; arch = "linux-x86_64"; - sha512 = "b1c2285b03472cdf88ac85ea1b623a60d976fef85863e5614c561fcf7e9fa05ddfdbeecb929e01d5508106d51ed2c0c24400b6447bbc357be147e950f0d64339"; + sha512 = "1eea8f2b9904f4dfebb08c718df271adf3bbc9b7eda5d0109e3cc5e34aae7688e1e81769b9bae51c8252b3d69aa52a9b740e242137675015973fe2310dd4b92a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/hu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/hu/firefox-69.0b10.tar.bz2"; locale = "hu"; arch = "linux-x86_64"; - sha512 = "5a5bb5c7b68af0faa608a9ea8af8cdb0bf8740e77766bfac26cfe25963e6fc8492a88e171e6299cc7c022e2f3d04eaa22df10acfcfd82b42c72bec28466fe449"; + sha512 = "098bdd04332e0cf675e3cfacaace38a40920fa58660098e27483555ed5f55b06f9dc8e64b38a6bc6729d7e2ba39faff02a7f90cb0286470bbae26ea523ec5fe9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/hy-AM/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/hy-AM/firefox-69.0b10.tar.bz2"; locale = "hy-AM"; arch = "linux-x86_64"; - sha512 = "8a3f3d775bb16ca99a58ac819efbf256fc17acc542f7cfc227806b96bdf24ea6ad737a4b749134e00989b7777cb35000dd6b2d78085ed0be3dbe8065f174171b"; + sha512 = "3228e47d2e168b9b93bb96631345a41a0130eba87ff03f8b57c0a71377f011b208037df5f03936e9d8543d994872bca26a78ed19f12a52c723063775f76d306b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ia/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ia/firefox-69.0b10.tar.bz2"; locale = "ia"; arch = "linux-x86_64"; - sha512 = "7abc1b715852d94a9b5e8e02b7f235d30d0222a297808dc6cc24f9567fccc3478b8c689e133e0595c5c236b0437a6a546776898a683c34cdcab4707968757c68"; + sha512 = "7fc1f0b3d8a4957d04080de201430af03db69a56082b8dfc07ff6992b10e0c357693aef3e6f1231eb3d3bf135218f6e77e79e000f329da7c8cf9b144108c1248"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/id/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/id/firefox-69.0b10.tar.bz2"; locale = "id"; arch = "linux-x86_64"; - sha512 = "23ad16f9e5d7ffbaf4ee487c75facf91b0a4fce7ce001e67890f87ac805c8f9f54aa6dfb662bcf3a7536d6fbf1eedc5f393ca6382b89039a1b1945f6544216b8"; + sha512 = "740baef5685aec6ce47740e925f0f764dfaac1a736a634c119bf012bec24e7872238cd128d19f2f1d59e8452f54e95a9c10816748b4ddd8b7e469f8bf1568082"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/is/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/is/firefox-69.0b10.tar.bz2"; locale = "is"; arch = "linux-x86_64"; - sha512 = "567af9d4865c9796dd8c7c2c1b564c897c35b387a7da28ff68d45b6a1a0258121a8ea432e6972e7f47d32c64c3bcc99d16f43547afc8faba21512a64e0191d3a"; + sha512 = "10566dd3e42d4499dd82900e160933f0d66773576341ff7d39ab6d1bcef2188a291856d9f3854f87f2086df77b914f9c30893446f4ae0f580d07613ce6ec31cb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/it/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/it/firefox-69.0b10.tar.bz2"; locale = "it"; arch = "linux-x86_64"; - sha512 = "bf6272b515b54020cc3301136eb134b9ba3943d5b6c97aa7ad92d7b429d69fbaf2abd2af52bf5d111185f0f62cd174a52d89197ba6e22dc7d3a4338acdd737cc"; + sha512 = "67e67041f213108d6fc2fa6fc5144fa20c8de19237669949a0be8786885c054710a5971bb826127c75facf65fb5a5175a349d60e4fa7d0f3e016eb48f434068f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ja/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ja/firefox-69.0b10.tar.bz2"; locale = "ja"; arch = "linux-x86_64"; - sha512 = "e60909c2e80c5351f6ca6f00452eef4069b08ddac80aa4d0c2e2dedb2f6a8965fb04e94f0334aae9c8fabf7d611579357251e5931e4cedb5edbff32a6e735539"; + sha512 = "24da0b3cb0f81b593563dc3eda3bf3559357d2f3f1b9019772850bc49f410ef4a12800e0a54edfc888c810083f43d74757359c82438498fe20853435bb7cc066"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ka/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ka/firefox-69.0b10.tar.bz2"; locale = "ka"; arch = "linux-x86_64"; - sha512 = "a3f6f68b741f8260adbfdde61fdf6e216c482303f7f10c46355d020db98cc9cc818dec959997384339c1051a5a7eb79371412dbbfbc416ada3c4d291fac70d8e"; + sha512 = "9212744cec092fcf7440258f2d6c07f680b6b89bb73e804cca0323d4d86b4d1c7ad6bf2c24ae6cade056d9fd742fea5220847bd17203d319ef87d1d015af9179"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/kab/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/kab/firefox-69.0b10.tar.bz2"; locale = "kab"; arch = "linux-x86_64"; - sha512 = "ea01ec4928bbc83cc3801fb166062b5875a039046f80337efb62369ae93fa38e0dc9f8170dcaa9699f98557f9cda1b01d007b720f47157f2217c936481645fb9"; + sha512 = "dc48121c91f66d5c33c7afeec4218861cd8dc0aef232a4940048724541269a22ecf21645f032a51289cb5f362dda8b8073084de152337cefe21c3e4c97d0744f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/kk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/kk/firefox-69.0b10.tar.bz2"; locale = "kk"; arch = "linux-x86_64"; - sha512 = "551281239137022acba3426f790369bcce3d8372afd6bf62f4077fcf640222906461527fc7c339d7a2355a36278007180742af74ec0d27b64b25554057562015"; + sha512 = "c64ae21572eddf9b97b0fd3c97d0927229c54f42af3fb65bb3a8e579064937b76f4e3ac32ce3debe24537dfc5d6aaf3615f1aec7289e62a043b1aac7b2df653b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/km/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/km/firefox-69.0b10.tar.bz2"; locale = "km"; arch = "linux-x86_64"; - sha512 = "9e3ef62fb17222b701e3f348fa5d48395a1294f762670b214052d0434865c7b10af3550ceb384437009a940241c4851e7dc57ddbd8a745a7b3e4fa3dceb6c346"; + sha512 = "8348b595287e8b22ffaa78d50bda5550ae027659f91c83317f2307e180d8aca29b8e58ac0b39787e7abdbd66ca88cf44fd937a6eea2064fa8df9173ac9978898"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/kn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/kn/firefox-69.0b10.tar.bz2"; locale = "kn"; arch = "linux-x86_64"; - sha512 = "654e866b0f4ed8f2c1582ca229e13f4ae3c5db02849e28bcf25993c4154ee436429e16d265be68c08fc1b328ce5f349b13795f9fa1794346679ffad057f4517e"; + sha512 = "f7a2d48278c9c2da883f889c89ab83778b2d9a43a32ce6186d7b7c5428a62138689cdc3182fd851da4b992b51902352f0e28c3cf7c9bd9c014712206f4c21c11"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ko/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ko/firefox-69.0b10.tar.bz2"; locale = "ko"; arch = "linux-x86_64"; - sha512 = "2cd646fc7261ac381a7132b881ae5bc02e351797a5218f4ce4c227dbf55240fec4cb4351d6302c79365376cb8c0b2b1d5b2c331efe0a80bd36b6d786178598b7"; + sha512 = "ef00c8295bb7598e0fd9a9023c4c404759e41436685c23ef0ae9c756bdd12e1cf34ae6cec4d5327807797128a3f54f105804445b11b03317ffa0e2495e262442"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/lij/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/lij/firefox-69.0b10.tar.bz2"; locale = "lij"; arch = "linux-x86_64"; - sha512 = "22a5705ee4868520fd2e3148a9327777fdf5d87f459c565a88f266cd0bc0347452dfd7c06c784c6f3428dbfb0f682ec50fc080aa17b4c798455c5f9fb417e59f"; + sha512 = "a7927a14c82f8f095e36e5c1440e8e95bbd8906bb2945c0f8b6363b93290d9e3195c15a48d0a3e6ee9da44ff050c016e2ee7118f1e1f2c14bc234efa450fba4b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/lt/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/lt/firefox-69.0b10.tar.bz2"; locale = "lt"; arch = "linux-x86_64"; - sha512 = "b420dba741661ee320a0556edf98617f42a9c8bf3759dd13041b8fdf05e82145f1c4d2b59521719124290918fab53dc2182a123e3f1aaf1ab83cb7d187866f1e"; + sha512 = "0b382fe2188a0251cd0f45a4ca6b9e1e057249e01fbb2fbe76a34035fae4fd704f1eaeb75319acc75df1a94ece00d956b5886f07a0f5a21a5e00a6acdbd8f830"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/lv/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/lv/firefox-69.0b10.tar.bz2"; locale = "lv"; arch = "linux-x86_64"; - sha512 = "3ab942e922592771b1c02e93b110e8a757c8bca9061654110d08a2181221d3697a2d385fce484e108bdd44eae4d69043aa02c3781deb297674c2671a87caf874"; + sha512 = "68cc69b2e070219bbd23322480cf232bce9daac37afa9b7a8cd4d8f512d82ac170cc3926a0245218b6bce0994aacc54d8f3dcb9ea0a7941e9bc3b707787ad04b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/mk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/mk/firefox-69.0b10.tar.bz2"; locale = "mk"; arch = "linux-x86_64"; - sha512 = "f595c839941e6b02a6e312842a0a6effe80acb81d69445b5d3a3ccf559c953de20266343362b87480eaee809c5baf9455f30ecfbd7a148b5a7e753e421b97c97"; + sha512 = "91fe3a635b0cbc401d5293c04da69dc3a59aafa062be8376e559858dbe9aaca49ba3826fb7486e8f12ebc582bc96a83268ed480b95324e008c77270dcf813f18"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/mr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/mr/firefox-69.0b10.tar.bz2"; locale = "mr"; arch = "linux-x86_64"; - sha512 = "5e7d0ddbc640ba9e9f31c5754842bcaef5d90501f208a387daf5935a9be9d97ff340bb551c7fc5dd9fef9da7877fd3e6558fec5dec9e0eebf0d7ac5a367aed8f"; + sha512 = "8315f540933ef132f30ef28c744fba49b30fc4152d2929a7ed673939da5dc1c4de490bccca83a33dda2ebcf27624ad1892e93756555ee2da8395039ce76a5d38"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ms/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ms/firefox-69.0b10.tar.bz2"; locale = "ms"; arch = "linux-x86_64"; - sha512 = "7c9c34344989bc919b842dbd02c674fcfd18f1357794a91500f237dd7eb58014e135d4124533726a92db69fc6e69b40d6b1e3bea425a9de649b71134e70d16e3"; + sha512 = "fa8272b4bc3d1a6a032c987331bafeee26b7f0881a75ba1b788171441a35e1ca95bf9dff46c529eb926dc867b524590ecb3262f2de04c0fcd8ecfad806955a6f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/my/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/my/firefox-69.0b10.tar.bz2"; locale = "my"; arch = "linux-x86_64"; - sha512 = "30e13316e102d857b0a2c257910443cd38cac26b0d6b40e9b352a7c6800dd2890231084b04a9ee32f6eb1bb92a811d5cf54a4c4c19f8edf263d5a890d614953d"; + sha512 = "b46e40abb59f4157800ebfa9e79a5aaf968fba405a77dc1c7360965d5d690139d8ce1f5735e6349a198c2cedb0a1fc90d3cdaa2d414e0800a7130de8c45753c8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/nb-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/nb-NO/firefox-69.0b10.tar.bz2"; locale = "nb-NO"; arch = "linux-x86_64"; - sha512 = "c9550a3c280670f8753dbd308737155f34af95e9622dc0201d96d1a1ca6e326797e6f0c9889893c34dd43daed6f6e6bafcd0b8ce2fabef31dea30bc6804dc95e"; + sha512 = "469a56fd2380f457bc84cb2fc96fa580ad0e7150042b6b9e0ebb27b29f315f34f8c2e2caf42284cc184531e392632eb52773be0d080f32281c540d81f3b63752"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ne-NP/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ne-NP/firefox-69.0b10.tar.bz2"; locale = "ne-NP"; arch = "linux-x86_64"; - sha512 = "82bcd5dbb7e227860e0ac8caacd47a1cc32f1e99664e82e642612c5fbcb7906faa5c853dfa1fc347c4da200064ffdce455935f48d524d0a4c27121d58c1f4bdd"; + sha512 = "88540a7aaa06488b3252e898cf654fe1031921e27e98525dfb5f44f770d60b43b5fd5450e5321b27b31e73e663b14fe98716f25b7db5b4acceaa7bee55f4cf79"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/nl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/nl/firefox-69.0b10.tar.bz2"; locale = "nl"; arch = "linux-x86_64"; - sha512 = "9760b1e715752ca64e539570c032ed31c45d336540001dc1b7505c082f2f048b52038c5bdb03138e5e7ce291ff5314909e438974dfc848b66fe864fa9d5e5ac2"; + sha512 = "5fccf7ad91b99aefce329b515bbe5096141618a96469912fd32f621c98be17acfe579cf03137d96cdf8d8319c4ed3d4b28e8bbe1ec2f3251b8c004e19b14b1c9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/nn-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/nn-NO/firefox-69.0b10.tar.bz2"; locale = "nn-NO"; arch = "linux-x86_64"; - sha512 = "b1712c4d0e87c77a21f1da15ac86407c4e27a8c1a7ad7882e08fd93f6ff24c029181dc14263fde6f27329ea80e3eaab8023d31fa63c90cc4aa7d5f4a43692f17"; + sha512 = "7d9faba6bb18f19d9acab0c63bc4ffcbdf8eecdbe345943674ff2ac9545d24efae2cfeaeb34ddc8e6f24bdace18d6a6ad77d2ccda7518063ee1cea2e66382a8c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/oc/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/oc/firefox-69.0b10.tar.bz2"; locale = "oc"; arch = "linux-x86_64"; - sha512 = "49b2a7299c9c884d3180513b4e8f325a610c839cca52e8a1b9862a0e759112f1490ce109a7c7fc08aac289adcb73176183d1ff693720737fcfc80296e662ccd6"; + sha512 = "fc14d0fa30457836c0b41950df190f931c6c011a569f9160083665deddb33b6947d92485ed1e2c3adbad6a9bf51480d64c108de79a39889a87059020d0748f51"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/pa-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/pa-IN/firefox-69.0b10.tar.bz2"; locale = "pa-IN"; arch = "linux-x86_64"; - sha512 = "a1cb0f0a3502481a5f88cad6bafb82fa177936db8cbd534be954a15bb185d181d0959abb5b2090de6225bb14741971662aa58a3b362a26b27e2b6f805764c2fe"; + sha512 = "641580dc6260a863ee948e2fe7a814e7aee991efe556ca60cc6ff0074ffab369ca9dda05d9c3028ee22d000bb7cf5264dc56cec844f917039a7e2193b2709142"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/pl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/pl/firefox-69.0b10.tar.bz2"; locale = "pl"; arch = "linux-x86_64"; - sha512 = "f7207b2839d9c948ea15d9063fac22f16824072a4a102bfc41a7e31962f79bb60fea5de01f0c780942f33ad7066ae7ca1b7a03a7be13a195753b1db3ddba659a"; + sha512 = "467b4c1f71cf5732834ec482f0ee1afb3d047b4a25c6a38928fd9199fed3598e94eb34ee3da7d552e3135a054d13423d94dabb430b19d00f73d0c99d6ea1df8a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/pt-BR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/pt-BR/firefox-69.0b10.tar.bz2"; locale = "pt-BR"; arch = "linux-x86_64"; - sha512 = "eefb516a3322efd51b046838a86ddbec5e65a87326f3474876f6e42cfd8bb138d2c5bef32e9a2fccff61c01307c39e7611a83acd40a9e9ddbecc473d4b506ede"; + sha512 = "af6e8ea04434f992a88c8a2fde33274776841bba274b0249b21f3ada6d991fdeff53a5499e0c92ec54e4f1acbd52b5d8226af89cab7641062d73cddfa56602f5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/pt-PT/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/pt-PT/firefox-69.0b10.tar.bz2"; locale = "pt-PT"; arch = "linux-x86_64"; - sha512 = "92f417c004802c422474feb25b69cb6530df5c34f36e1a1a2feb62e87d8202618ad033ccac40465e903d9c85bfa7cf30ca87335e082af6518d6cb114bedc4cff"; + sha512 = "238852418c739d91ee6213da7c3fb9be47ca2c2f1ef13e459ebd7219814c6052147a9b8c37aa2f09155a15c84f281c20a6f23b53acbcb20ccc92392347970816"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/rm/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/rm/firefox-69.0b10.tar.bz2"; locale = "rm"; arch = "linux-x86_64"; - sha512 = "04703dda30160f844f8c1475caebd9f604cbbf05f522fbe1aaf841d4a335e295372a4f26c2d07ef24fe07358699450ea13260de1c97e49797f745a484ba11226"; + sha512 = "13f001cc46a461176557a14de16303976f6f6cb91f778d6c9f1bb6f4973f2ef939635c28c64eac24ab2318abc558dd8b7b1b71e3ce71d5422c13fa0508900c49"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ro/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ro/firefox-69.0b10.tar.bz2"; locale = "ro"; arch = "linux-x86_64"; - sha512 = "c4f5a4a4fd04f2536f3bfa303a05bf78c78c0b7b22f4f1d975baf3fb46cd9f7562db151e7c321e4260dcb2efd9bf81e751a6e2ceaff0e3289c5e54932973cff2"; + sha512 = "2f454799772e92899a138a32702200c8a261e653fb0a9b588e312091e5acef92362eeeb18bc26ac62e6ca093f1ed07e7839010d07396754114a0b989d5aaec07"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ru/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ru/firefox-69.0b10.tar.bz2"; locale = "ru"; arch = "linux-x86_64"; - sha512 = "f2bfeb0c11cac02047c2bc4d29135cf56a4d67eeae45bbce6394a0b496c62fff54b270f23024031c5770cbaedaf8ea95e806effaa0d026434358e5a593c1b4f1"; + sha512 = "efe333e4abddf173a87bce8e3b82a5112a2d36f5ae690c5ad09ae668804ab3dc67a6ca3fc4d1fd49ad9591a482a5e617e4f897aa6ef59638920cd97e863d8a92"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/si/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/si/firefox-69.0b10.tar.bz2"; locale = "si"; arch = "linux-x86_64"; - sha512 = "f5c50ad106a1c9e4c0182c62c23ca088209fee9b5856aa77d399ace75c3800746c9c79e028dfdadb6094aabc680c129c7510d26d7f258a9c9409630081acbec4"; + sha512 = "245531ae683a796db5628becba71ba68e389d8d9646dd678a08327e41c66d2f1baf9ba223ac70d19eb110d56cb932238d1642ab129989067f4e9fe87b8d73f19"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/sk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/sk/firefox-69.0b10.tar.bz2"; locale = "sk"; arch = "linux-x86_64"; - sha512 = "d251454b2078ae1b6ccb5252a9b88a057ae94f747e207832e3e955c15d9a2b17c5cc203cd5fe7c2ec56e1a326d1758c8012948a42f4c9d7cc5ef2c84fdc2f4df"; + sha512 = "633c280502541f20572aaff136e0e7a2f4ca2bd2bf8c286703688ebd1fcb4516933ad46761b9bf90da033b4085985ca96e3224e8fd30d6b22bc2d531ec9195e9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/sl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/sl/firefox-69.0b10.tar.bz2"; locale = "sl"; arch = "linux-x86_64"; - sha512 = "a99e992d5b71a22e5e9ca260b0c45942156474ff48da53b5cc02785dd84dbcc381b94e8b2d44d4568656c588c65a49e75c2d8c6257107e345f867df33a3c8c3f"; + sha512 = "0fcfb99cfc7be32f2ee53ec3d5d3cc436c6d423c3570e5d2564bd9e662d2e1b13339e1e63a702943b54de4374c756fcae5c6ffeefb5d63a962b5e16ce69d222b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/son/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/son/firefox-69.0b10.tar.bz2"; locale = "son"; arch = "linux-x86_64"; - sha512 = "3669abce71819235bd489ab54e96107508b8c75ed3c29d010e36033c9ec4e6d2a440e1ab41f212d52436129c7d29209223c5cb8bf7a855bc5c0ebbe4e71edb5b"; + sha512 = "da0321adc6aab116cdfbe1a9e67bca1e4eead2612827c783225badeec0c25af867cad573b16d4c9e052c325e922c1cfdac506fe77e707a7e554bb2268380ad15"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/sq/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/sq/firefox-69.0b10.tar.bz2"; locale = "sq"; arch = "linux-x86_64"; - sha512 = "2f0ac03412be6e5010ad0647c4be28c9edc547ad73baa509bbfc7fdeb478c9c0ad87ef6698fb0d6a60718109a57f5ab58b0ea16a997258c01dfd463ff5cf09b6"; + sha512 = "d3f30a04a94669b0a4cc2f0067b6f15431de64a8e27d66f700274f498f4a19121fb3008a23e14c8e6949f9c261bcd4669a0afc613d4c7dc08b3075cbbb61dc79"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/sr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/sr/firefox-69.0b10.tar.bz2"; locale = "sr"; arch = "linux-x86_64"; - sha512 = "43c708b130e0319e9fe2ae2fa2162aa1caabb3b41856fba34bf0ca1c2e77da6cac5f7c5fa3e8d07c0480634aa04a38b2a5db07433513710e7b04398e9a3360e1"; + sha512 = "3c85221edfabe9cfc95a8d73a7435e8a4273293a4ed79d925059f12f7cff87bcdbf6b48779377bbf828fe3cd2ec841c3e0720d69c6c97b5727c27b2d3a08d42c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/sv-SE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/sv-SE/firefox-69.0b10.tar.bz2"; locale = "sv-SE"; arch = "linux-x86_64"; - sha512 = "1914a95197db1796ca17e8d8a511ef687329ffbdfcb0dddffc4e1963c1251519b0c120340f730a04171be57f353f5c29e7f3a9c1a7b8c92488a3aeff9bd58d55"; + sha512 = "b88eb668b293a98f17956fcd48af915ac077c3f5c2fa0dad895fa4c05c577f0c56fae5ed2b4eba22518c979ba6af768ed92d8ddbd17e49a96388f36155388e98"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ta/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ta/firefox-69.0b10.tar.bz2"; locale = "ta"; arch = "linux-x86_64"; - sha512 = "af327044ee1c8738f5e65a231af3e0ef74e82491b62445e5a9fd2bea7ed4a05451e46d2cb572b95d025c18616ffa662c3668ab6b1770abba124b976050db9e2b"; + sha512 = "b70452ca9eaaca80a4cba956037e67e236d1663a6a009193a4e78f80bc77f5d2fe77ee385ce6ec27d1356cddd59017741aaa9f78f6c25e2b706064b0e22aeeb0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/te/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/te/firefox-69.0b10.tar.bz2"; locale = "te"; arch = "linux-x86_64"; - sha512 = "51f7975194f153c708e2275992daae1b4435a2e8f159ec344585a9ad759719716fd6d8a1ac10a03dd452faf5a960df2a1b580b74e83df6673a87b562ba6308a8"; + sha512 = "57e762c6ca3f3c9ea6c6b0088971ff8800203d38ca90bf65801a3d4f84f44e836d7454051e609f3b7bb4a851ba5c57a57d9781b81b872209bca2df3ee23283c4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/th/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/th/firefox-69.0b10.tar.bz2"; locale = "th"; arch = "linux-x86_64"; - sha512 = "02b651d278898a400474ac59f5def40eedd8c2502d13882e3309256780be13dce4374c75f68d98db3a7555451a5b7d2baf5a7add1733e359ad30fcd4122e0a44"; + sha512 = "4cd5b8a3b6d77f6e3653a4f9a1eaf36a93416f5c0e89c39c97863304227ff33363853d27174a90bc9d5e54c4b7d3c72b3adf2a09b2485655d1d24f7bab96f7a0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/tr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/tr/firefox-69.0b10.tar.bz2"; locale = "tr"; arch = "linux-x86_64"; - sha512 = "bf1e0b7170a86a058f117dc10f8b3f23139a7f7f1b93ccc91619590b9b1fac56f525f5924d6ab331cfec1e0e2b48bbb88b78ba184f7a88cdb2d9fb8d78753979"; + sha512 = "1f697f15c169a0ed5595699a20d37a3d6034d4ea2df2aa02dda2dc73b3fc91c07d8c344bfdffac5a4a6c4a44f016c9246dae1169c4ff7fdacfdf9d5093a4e353"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/uk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/uk/firefox-69.0b10.tar.bz2"; locale = "uk"; arch = "linux-x86_64"; - sha512 = "aa043dd41d2a3b7e670ac81cc0da3aadb1a461fc6957ce40b53e2f2b37de98a5e04146010f49b6d3a63136efe490bfbbfe4676ea353a161e18f009ac5b760e6d"; + sha512 = "cc6c67520fa96593cdad128612a291e8b6c78914ddeb7088036743173b99dd3dd94a4670ce9e38e265591e1da95845f448e22eb8f0074877863dbf748f9967dd"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/ur/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/ur/firefox-69.0b10.tar.bz2"; locale = "ur"; arch = "linux-x86_64"; - sha512 = "e97b0758d937d9fe31888d4f1c12ce090017a2b9457005d5bebb4eb5b384adc570bf79f7574bf5eb292081763179c16e98d7bb54acdb5f8e494930cb58388035"; + sha512 = "e22efcb9c9b36059209d40f1bf34bd65307b1319cb6c51a12c99684847228bc8cc139ee0ba7888e87042ac2b5866717e661b4f4e2bbd30f46dad6f18ab5c7df8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/uz/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/uz/firefox-69.0b10.tar.bz2"; locale = "uz"; arch = "linux-x86_64"; - sha512 = "0207ed27cd8507fcc35d18602ea45c0a69384800563d5fbb5e11dc02565912fabfd3343910e7ccd5e4b8270f39498886aa9b42a7ff0b46452c5057c4c4388889"; + sha512 = "e27b755d4af110b3751de25925e95eda62037cdf8236db7587aa47aef099a055b5ddf1bf08f031ffa9c79142ecef49f2045751bb41c18d9fef9e0a2734440612"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/vi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/vi/firefox-69.0b10.tar.bz2"; locale = "vi"; arch = "linux-x86_64"; - sha512 = "aa6dc56a32f74543d8b2a382cfd5284a977f1242cb54292f09a46d5a2a7ae7d38b74457a7412355e09f5950d82f095ae3ae0fc4a978511a396524e3e0798e281"; + sha512 = "33617c205dfc61511df43de79c29ae8bae059e6d0d3bdc868a6965e98822efefa832d6f1ff514676f3531d4b5c89d8fac4da780b85151b05e2e05dd41ada3f1d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/xh/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/xh/firefox-69.0b10.tar.bz2"; locale = "xh"; arch = "linux-x86_64"; - sha512 = "ac3495cc44f55a5b67cd7f63859349e1433dc6977599a4e2e5195e6920f320732d4f0fe1bb59d4f6124887ae30dce695a120c2427f8b6e6dc5ae33f0ac3f8c39"; + sha512 = "76ce282b86372019e4467d66ad1025ca6641cd8c5f4bce509def9aedcfc028b491f86cd5149a0496d08d55711578356c21ccdef786f910afe9b8ffa26c2c4c8c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/zh-CN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/zh-CN/firefox-69.0b10.tar.bz2"; locale = "zh-CN"; arch = "linux-x86_64"; - sha512 = "de166a41754eddc1a6b230b72a649c14c7b0a814c4d72d96c916404cc0330e97a1bff136a618e7dde7069d6d7da9419bd0fa74c005319b3150f0a79cddb73568"; + sha512 = "1ccf7de81d4dbd19a9499cdfb3f286f86dee4451c5bbc5ce0bfb85d184b351e45b0d9289b609d3eca60ea32a45cbaf2160664511443a6c0d13d144945606ef26"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-x86_64/zh-TW/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-x86_64/zh-TW/firefox-69.0b10.tar.bz2"; locale = "zh-TW"; arch = "linux-x86_64"; - sha512 = "a37b6e0089130c2f9b8b7d45aa09ed3670fe5f35775aa0c4e99b662dcc7f72f7fc20cf97487f1cd154614ef5bb55ce7d911851a0f0c2813f03a82e3f71390701"; + sha512 = "f645642c10edc2d36bd97bbf1b950710d1b52770717be35fe58b081604a4dba55b5dc417f1553cc6574826ebe7bc3435f0904754f5551f98f93d61023ca2de01"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ach/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ach/firefox-69.0b10.tar.bz2"; locale = "ach"; arch = "linux-i686"; - sha512 = "788c3814b6d661faf392d9d16ec8c6d709c9d97f21dd5004f3dccab3d776a3394ff5a5b397069b679dd6f41493dbc284502ebb4eaceafcb7ec7064f28ae816e3"; + sha512 = "58b0df5500016a4c87a60233c8ef2d479937ec002b10ae53ee973b997c8911dcaa77470c8f0e6e3667cad5f2e4f11006a767040b0ffbc33d04b8a937087e9994"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/af/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/af/firefox-69.0b10.tar.bz2"; locale = "af"; arch = "linux-i686"; - sha512 = "9937eeed4840806481a4705235d1316dc7e1330a2046570ff781097ebea5ba4f1f3462c458c90fad163bdaca0226eee541e7475916323ae25b4f554f4bef828a"; + sha512 = "a9d47c62679e0c24a759812b6b194ae890e4cea6bbca683eb55f016a81eb05c207fef6f61f2ebc6c8f85cfb25d5f71f62b70502355435913094dfcadde81aba6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/an/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/an/firefox-69.0b10.tar.bz2"; locale = "an"; arch = "linux-i686"; - sha512 = "ed447fd2e4391f82ad2d37453429873170a7277ec9fc3ba935dd55d0529b5208a905bf2852758ed23043ca0f63eedf709596f9aef97d1047960951a9cbfca2c8"; + sha512 = "7b8fb37c1b458c9d04d45b69e3dcd054b14cf6f9bb3faa4c9bb978033e8e7fb67724ed8dfe1bce39b4821d669f9289e7ec3367a826f67ff9be81cbe37267cdf7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ar/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ar/firefox-69.0b10.tar.bz2"; locale = "ar"; arch = "linux-i686"; - sha512 = "a0ac8fb8b489361eb48cf26d0e9b3b9513cc3f76e38dbe23e44399a3c65c68d8094631656373bac46430572dff54c324a322c3ac6eec3419af2ecd273b7f3e38"; + sha512 = "5ab368033e7281d7bdfc7d27b95cc7d28e8c5528e75ecb49e0b68fbbc02d2e3ff15e5c6c3218e3dd339ab2ea1531e47ecb888f7e379881d953667ebe1de3a1e7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ast/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ast/firefox-69.0b10.tar.bz2"; locale = "ast"; arch = "linux-i686"; - sha512 = "2efcdac7d506cd1872264e0316bbe02c093f9384301326c8256d2ac6abbd737490a8b93f51a4457c5d4c24485cab5bff149d04bd633164d59b867075c964cdbb"; + sha512 = "2df1a20c28fe5d114cc1e0b0d95723ddbe4f7da2d38e9ae7a1cb43fb7808968472e32157981c612341d8e9ecf590b8d068f6b84dc3bd2642228b9d659a29e367"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/az/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/az/firefox-69.0b10.tar.bz2"; locale = "az"; arch = "linux-i686"; - sha512 = "b48664a259c88ba408797aa597d5580b52cea58f5d4ac8c3b1cf8939bb8bf90024edaefb38626e83dcb566b766a73e8a6739f518f62776f7a27027b0616b7537"; + sha512 = "fcee266e1263300751f9d3829a41381cffcc82316d419cc5ad739bc67e96826cbdf7324f4cd5cc16aeb0cc3496c5188383810e311f6454b0c4794cb20b4a0703"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/be/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/be/firefox-69.0b10.tar.bz2"; locale = "be"; arch = "linux-i686"; - sha512 = "2e22d3b81946f8ccb95f7431c4505e8120bdf35581708150ec8658fdaecfcac457c2e27d3eff1966ba472ba238b5a145954dc84433c77f626de36897e321c0b9"; + sha512 = "06f63c9f406e1c0ce2bd6400c30304a664b8728900a52ce1e015682596bf7488501da8dd6a766d54150b81ac287f04a058f110863ac6483c89348ca49fdbde4c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/bg/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/bg/firefox-69.0b10.tar.bz2"; locale = "bg"; arch = "linux-i686"; - sha512 = "c41cfa73a86c653948646b15522abf041c82399bfd22ad9c8bb2e2266cc806617238f3852f7f89bc5fbc748d90f28548cf79e86f44703b06bfab36ffa384acb2"; + sha512 = "ff644c16c203058c37d7baee9d787d4373b3e0a2bca1d25330b11dd6da9fcebee5a93d038c283637783d27a216d062a0db84c462f9d858b35bc2dd26c638d960"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/bn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/bn/firefox-69.0b10.tar.bz2"; locale = "bn"; arch = "linux-i686"; - sha512 = "778d4e60b02ee0f52695c513af3a91e15672397ab60516fe5faa9c0168325ea709314e9b650bc767bc15b721af946925d69e42457f4e821ebf55a5c2dc27b7a2"; + sha512 = "54a33277a4b10d53cfc8f794ce1ecdf328f83ae99f0dfee6d47f9243c17d83351301e3138121f45928b9db54b2b9e63d0474533ae6644ca874b20405f4acac89"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/br/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/br/firefox-69.0b10.tar.bz2"; locale = "br"; arch = "linux-i686"; - sha512 = "6477cc04626631888fae079b480475520dda775f5e4d9741b82b6bbe8cd0a74845507047fb91ec1d490db77e7f2098bc7798e367aa6ef0687ffe17aca62b9dcc"; + sha512 = "9dc72a4327bd02cfcb328bba9731ee90fda96e22ba4c46615ebc3ca0abe19472261386ffaeb06070b1456103090276c1da544fbb4c3ba8cca29a5f296fe6414a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/bs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/bs/firefox-69.0b10.tar.bz2"; locale = "bs"; arch = "linux-i686"; - sha512 = "c51750a16b9da843f9586db8b4c8922a40f946851a52d35b2a52527b6ffcf3ff2535a762168e2af361a374c590d153cdc53cae64521c96ecc51beae88dd00e3f"; + sha512 = "34d0f109426869a9b6ead4d7509770f4b861590a028aa2228d4e4b508c72cb2be184a3734fc7e71b7fa0318e9b454a95bfb63314f0ee3c8af11339f1a3d15c62"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ca/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ca/firefox-69.0b10.tar.bz2"; locale = "ca"; arch = "linux-i686"; - sha512 = "3208657a8b81a849bff701a95b04898d32016138ea35f10d1c1a707e53bd66c0f0d94a7e546592c6586d94a7350331bcf20bd78c127bef7f5826c93469727e61"; + sha512 = "d4d442549316d417b1c013759b64d31b6fe1a55990b02357043528c5985c40dba1edd060cd58bca5d8233eb1a4a6b850bcd6cd297a81c9d6bed8f032538b9a94"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/cak/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/cak/firefox-69.0b10.tar.bz2"; locale = "cak"; arch = "linux-i686"; - sha512 = "e0b62c344e89a66f25e7989774983c02d0b31f258054cc71e5b1566f0d6a0e2c834a2a6c596a07ec2a74f47bc149e4c302e7d17cfd26dc4b8de4918474d0a5c8"; + sha512 = "c79a799abe3281b64e654f317de6956a1dedc4049b8c5f98aa41cd12d0d290018e7ab5faf411a777493b8e6e8d761637bad09db75edd0812cf8e57e49ebae4bb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/cs/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/cs/firefox-69.0b10.tar.bz2"; locale = "cs"; arch = "linux-i686"; - sha512 = "971ff02141f709092e19e88c21f166dd7f8abee8d7a213a0543902dbe602e5d517ecd028731a49ab5e92cec5abfb084ea5b38824cd2856739dfcb7f8ae2063d7"; + sha512 = "bcc5a60b5795207cae1ffa2359e7668fa6f09583ea8904a73ccffdb13cbffe312a6f0bee62356fe1533f25d10b592d8ca620942f8d265ab0450a7eb42ba95c17"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/cy/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/cy/firefox-69.0b10.tar.bz2"; locale = "cy"; arch = "linux-i686"; - sha512 = "0956b4b06f09dfb714a0a457387f9e39b47f25ba37300c3f7d506ab6cc7e4c87e48992a38f04018efed84fd76d955e0037abb29c9c93210fd06e05cf1f0ce960"; + sha512 = "221b4186252a507fce2398825039814173e55d767b1221835c0ced80fb19e4108006169009874c76176d7c39f25158cd9f554c7c08a18e1f2aca585c09054293"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/da/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/da/firefox-69.0b10.tar.bz2"; locale = "da"; arch = "linux-i686"; - sha512 = "943b0344ab68dfb317fe1fe11deb4af70224de6c5ed34dad4aa5615497bb169a8f815ed2af4c806cf45caa0c1a4ef6df1a9fa7584ae5d3de65574c15727b138c"; + sha512 = "947eae9a8a2e3761d5ee5d7d23d5edb2c5977417e0c812528116fe76216b7de6738978fbd561a0e78fa8e47877f880b63db5f92e4987814c69fd683f83b3dc82"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/de/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/de/firefox-69.0b10.tar.bz2"; locale = "de"; arch = "linux-i686"; - sha512 = "097ae1d3f44e296402c706782011f87edc2feff98960aee0e4bf180de99be4b066f849907b90d98f4223a5f7475484e1d03294d09a4b97ba094a1548276c004f"; + sha512 = "78e94aa258713c9d1d1c893d37b79062f6af8b7de49bd70857b77ed8a6eeccb8c6e452b9fcd35f726d504fafee49a7c45cd876ae7e4493bd1c11f13a737fd02b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/dsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/dsb/firefox-69.0b10.tar.bz2"; locale = "dsb"; arch = "linux-i686"; - sha512 = "c935a2c8c67a81a064f9441d01bbaf515cd981b7edffaca85b901c8837a51bd76615e17f6ba651c4f00199aded533270a3e3572ae932f113a44e4047e974655d"; + sha512 = "041797c6567cc399d88bd34846092aa1af2e40d380d9c286e423ea797160e63616bcc3bf611c28e3eb3cfa2136db9db749f32e72141361064a71130db69adc3f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/el/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/el/firefox-69.0b10.tar.bz2"; locale = "el"; arch = "linux-i686"; - sha512 = "ae08f0ebf177e0d5a3d1d68037adba15616a300343707b04fbe1e53e369e85d7362a28eae8864391e8463f8812f6d9990a7a56f66b33983fc3561624da79d5b4"; + sha512 = "432d58b92a720d14b3df6cdaf685e471eef8b1f7b7ff7c9685304d99bb2382f4eb1eb0535105572d472e7887e880ab6cfe18baeb7f1660dcb59c432120dcf41e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/en-CA/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/en-CA/firefox-69.0b10.tar.bz2"; locale = "en-CA"; arch = "linux-i686"; - sha512 = "5b8169dfec0401822ac49f0b6a83d1730b28658f6767c347047d688fe84e09622bdc0320f70506004be66414206b8aea7de7a5fef942d5697fcde71ae2ed7f74"; + sha512 = "d7241e3dc44a5f66d7fa39eaf19fb0ba04f67ec1816cefe0dc2721e12df7d73b69d2fe1c7ebb24c2f5957ea3b575452ac6998bb9d9933d5ed39463d846b59d03"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/en-GB/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/en-GB/firefox-69.0b10.tar.bz2"; locale = "en-GB"; arch = "linux-i686"; - sha512 = "4a6841b68577dc00131bca9c635243f12ef6df5fd295cf89e9b7aee50abcd765dd08863a49e39e5dee795e1cffde3b48d1719687449d5482f0afbced9dcc8b5b"; + sha512 = "5b12a9bf265009d1baaadc0707042a4290ba398544249d39ded6f213dbf8274207cc924fe5bd47f416b0923d35559a43724a31e8ab9b5fbb52f0c8749d6441e4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/en-US/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/en-US/firefox-69.0b10.tar.bz2"; locale = "en-US"; arch = "linux-i686"; - sha512 = "4ec83e426ef77701c024a31695ca10a12a88600d01aaa5c4a979c83ef5ad4ff2b378012989311da15e986da0e1022e8dbb9bdf0e2dcdf194c4b990db61e9416d"; + sha512 = "c12dc9983539a597b00115cf1350007f9441c90e281ebc3d0d91c00bf4b260678925f52e4a1409f02f8b56d43f30191bd0eaa1ef29c3000bc3ebf1f527a5f635"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/eo/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/eo/firefox-69.0b10.tar.bz2"; locale = "eo"; arch = "linux-i686"; - sha512 = "731260894548db91a501d12417449a6fc9aea0485258df16470e8517e82e44270eb273113b1c06ec973031d2dd3f920e510b1ab0b7addc2fd19959eaa41431ed"; + sha512 = "9429af640db7a461a66e67d7b35239eed02ed9ec5b96718c4337fe3812f93a2039c5c5eb365fc7ca3e502368657f6a33f7318b6594cd3767d0fe72314c4eef8e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/es-AR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/es-AR/firefox-69.0b10.tar.bz2"; locale = "es-AR"; arch = "linux-i686"; - sha512 = "833e51d3ec511302d86599b1e65ae2c551793f7c09397d93665ebb067d9be1b0e6caf2fab67b96d0af70218a913b359271bc8143a080ec671aa1c19762421a7b"; + sha512 = "92200fa63eb1f034b80a28e45d4223e6a27a7d4f2daf07d9e1966f76927e0e6dc0da996c7528bf2dd87189a2b061adb6e44a540b7af6598923e1fb47eefef7d8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/es-CL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/es-CL/firefox-69.0b10.tar.bz2"; locale = "es-CL"; arch = "linux-i686"; - sha512 = "f60869d77f08d4ec67d1e240cce766429324de937d7ab0e36590684c46dd7ee9d81add5529fc721d028ad21fe1666fb94f6256a8485fd954c946c172a74c7fa1"; + sha512 = "094dd4ff8ba4c4f5205f43b73afade5a210ac01824c3c9f475cdbfec83bebfc6390b899ffd44c395f379c40baf9254943ed5d15b30676bb5216ae8f40c02aec5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/es-ES/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/es-ES/firefox-69.0b10.tar.bz2"; locale = "es-ES"; arch = "linux-i686"; - sha512 = "67818179412979b5067fb08cd889ec3036d4270cc322a92b67be0fea402b3fdc22a6ad1eb1c768aa7d9a7f89b0b7f2bada19968903e7f2d85aa4a537cb41a6f4"; + sha512 = "500400ffc47aebf23b7bc816be356550242b8655b703ddb992c18ae032ac524dc94513a81a05e4a593fd70e753a25c567e4c8089c341e6dbf374897d89c210f5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/es-MX/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/es-MX/firefox-69.0b10.tar.bz2"; locale = "es-MX"; arch = "linux-i686"; - sha512 = "4b281caff272f08ece0e27ebaf7d7ff5ef26b250a6d33e95f59854386bafea8b5e5fed904dd239f2c4c1473c558c81e15de38fbe4555274c468c30aa2da80476"; + sha512 = "4d674f72fd150d30eb87bfd0bbd716ac93645dd69b0a8eeb5c57648077059436c6b071b4746a8b9104732e48ebbc8797c5981adfdc785500bceb99bb8b2a3190"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/et/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/et/firefox-69.0b10.tar.bz2"; locale = "et"; arch = "linux-i686"; - sha512 = "f1d15b73184643b3d47fdb9abbfdc0708f808c804bb287bf892bed370262da4170276675d29e2069737459549f9ff593077b3649ef39920607f61f6a3507cd07"; + sha512 = "ad4e26c6f7800bea6eec1be23e5964ae880b87e1bcad875c4925916c4b901bf0b4be3643d69a1785bc0bfcb35affccf2394cc2805ab0f2f8022c5bae666b70c8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/eu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/eu/firefox-69.0b10.tar.bz2"; locale = "eu"; arch = "linux-i686"; - sha512 = "0d21e233e25b8200411328987feaa2868a431f3d3702adb2953d72eee46d521cbbf65d2a33e94d1a10b22a2038261137e6124bc843a2447a2895ff9dc17c7ca1"; + sha512 = "e8091097cfbf737c775e8448e42866bcb167305e4d186b17190f41f45b12554fdf959d55be029c29915f8b3277d8d41192b740a65c218de84707f931f4e55bd6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/fa/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/fa/firefox-69.0b10.tar.bz2"; locale = "fa"; arch = "linux-i686"; - sha512 = "27cf9068c191012ffbf32768bcd35b48fdc0d15816f00551e917cc454ad7804094805194d23d7ea216830a91e179b67186627d500f50c0bfdc6449af5a4046e6"; + sha512 = "b6ea01641fdaa57026f7ad6193cb026c68392952dd3cb7e33f14bfea5762e04eebe23eb042e8b05bdef7a1f6e8bdcd7daf181f621442273f0f6a10f4d74b69a0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ff/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ff/firefox-69.0b10.tar.bz2"; locale = "ff"; arch = "linux-i686"; - sha512 = "521878b91b8740ad2a7e7607931dba74f5c26e84e1385563d6d2fe6da2228c18cd0bad5379fb5fd41c0b76be4302775b4f02070882dc6c29683fdba6768adeca"; + sha512 = "293f1d5c58dd55c4a9af1deed28c3e89531df45b00e4ccf7add6e2e28b6eb34752e8eebe045392b1bfdc7a7287422ac8fb8f607822f13c28cbd7114b1a207941"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/fi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/fi/firefox-69.0b10.tar.bz2"; locale = "fi"; arch = "linux-i686"; - sha512 = "3a470d7385523a01bcfb443cd462a3c26adf3ed50eb54f0b970f2b084f8bd7a020eb0ffb47c95fa85beb4e25226ed3361f4631d74904fcf2d32c7f15d718b788"; + sha512 = "5615e699341e9c49388e4db80d9628dc0bdb964a13885f5e5b070fef3c1a397145ad13b5c583305c52d6c1a5f466dfdd10fb97b05924c3220043da08b41121e5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/fr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/fr/firefox-69.0b10.tar.bz2"; locale = "fr"; arch = "linux-i686"; - sha512 = "eaaf5b834cc5c71ab901673c0201640d5802773f215062c0472ffadff161fdcb2cfffb70712a8f14b7de2bed06a58f96e795ebe89a8c640e90b13b2bdfa89428"; + sha512 = "3fb4b9aec3ee90cccd3f2fb34ff0665e68e7b55cb237e1760fbbec481748596f4c61c0e633cd1b5ef6993500f057fff74e983daa14343c820b9e3bed0cc90e2c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/fy-NL/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/fy-NL/firefox-69.0b10.tar.bz2"; locale = "fy-NL"; arch = "linux-i686"; - sha512 = "37bbb5b9c608fd08ce33d76e39aab5c02d2f3befa1e73e12cc241be0dbc107e13a3f5418b87e2291afa08f6801fb804b9c7b45126abcba40c45a6839e0d3bdfb"; + sha512 = "47ab5c06277c1aff27a54e42e01501b6b33dd0452c9ed069d6cae1a19b551459b4988274ace92001a15409964a09beae84b49c356f9005416b2660a3c5b7275c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ga-IE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ga-IE/firefox-69.0b10.tar.bz2"; locale = "ga-IE"; arch = "linux-i686"; - sha512 = "09a0b825c831e8dc9bff31c6f9d0c6f08ab56ccd2c680724433dee4af574a0e43604cd1eae54a8728278a7c42d01658e0c511319b1a02ce9e831c96f28fba1e8"; + sha512 = "0df94004a3443899ee641ba604174c996c03ff091b0e0738f5a61e5e30a2627e2d3ab468e7cd71065c6585f3eb450a9f0d6b9c82f997c8ae81aa9e891adb2dbf"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/gd/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/gd/firefox-69.0b10.tar.bz2"; locale = "gd"; arch = "linux-i686"; - sha512 = "22f6fcd27ab973d942ebb4fdc6df4855179fd6fe454401f1338ce36fb62ccdd6722c63fcd3e306d5364ef2aec57738112aad005179a01ef4b200f7cb1cd62ca3"; + sha512 = "2fa916963a8ee51ebe2e4e230efa2bdd36922008276ac6f67de09eea1c44b53070254e232b9713b4c1884e280727609c7e61d169219b8f56652964c7012e85bf"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/gl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/gl/firefox-69.0b10.tar.bz2"; locale = "gl"; arch = "linux-i686"; - sha512 = "245b8ec2cceb6a4b9b17bd9c50e834994db593614616a3c2b89dad1198107ec36f73544589852c5c11281dc90f3d4dbb5d2364a30afa3e16999d0a054c3dcebd"; + sha512 = "c4eef282b8e1658ef582c3d3219e283d1c741a00dcc3b3fb6b29494c7d0098ff7574cc92716f798c98a6ce0cb7e8362ab0b48ec1160b62520a5bc5cdf582e99d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/gn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/gn/firefox-69.0b10.tar.bz2"; locale = "gn"; arch = "linux-i686"; - sha512 = "6b158020ae5035565b1aaafd211e881d094e3b9077e78fc28e2f380303b8c23b1caa4cd3ea0832201026fceb528a5556dc89f7a7de9298b11184287f1c1dfc45"; + sha512 = "c6e913c6df1765846191e7979655b038d3a4b12e44812be36876380da49b646b1208119f299818fe4b4ee67f2999f3c5e442be40ec8343a2b6d6b3fcaa6edc05"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/gu-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/gu-IN/firefox-69.0b10.tar.bz2"; locale = "gu-IN"; arch = "linux-i686"; - sha512 = "0bcaf3254813905c546fc229fc8dc384003a0814a09b537d3465cd8cd83b1e9cddae0bf9cad48c4900abc3f76d2842b82119699202f37991b52a016cf8feaf2f"; + sha512 = "348e13f235c3c80b28717571916d2aebb7d0a6865d6d4577f651ed3061dd66bf02a43bdecbda879b69f78ccd9a8e2de8ac96f3abe49b87562fa6c6c398c21b2f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/he/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/he/firefox-69.0b10.tar.bz2"; locale = "he"; arch = "linux-i686"; - sha512 = "69b9baffff76a335915324214ce98dfb418b0a66e3f1895d6c4f808be6029d239e665e33ebf563694e7f5b8c733b85acdc8e131a2948c92a4ab33d015eea85d2"; + sha512 = "d0100433eb4194c415249b1adf984b4f3dbd8a11e4785008086603fdf1a2e6dd8d319e76296d0e5d9f9fcc0033b67f12d062b7ee0f2170c9e74b1cc73d55bdf6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/hi-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/hi-IN/firefox-69.0b10.tar.bz2"; locale = "hi-IN"; arch = "linux-i686"; - sha512 = "f6a74baf232baa6602e93ccb83d020958630e169f888594237705f9aa2807d502ec3ce705d5fe55e4f89b1bea44133b11b642b011c15329c380eaf6ae19a5b8b"; + sha512 = "91807a5b65da4bd3d2c801431cdd5922617433068b85ac4f3c87de9e3b881239c9ffbcd6d426ee4f88a98c4fe706f2a03b105df4b124d9fffc029b158fc15105"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/hr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/hr/firefox-69.0b10.tar.bz2"; locale = "hr"; arch = "linux-i686"; - sha512 = "1e8ec2487dc44daa07aebcf0660d18b7aebb04f469b236d2a8f7a49817d5361bccacc15d9549bc44a5673a35e9f93871da6c4b5f8360ed5e19eb5c4775a07161"; + sha512 = "3e0d747dd6e79117799fbbdc585c73312c13a21b8ea7c0ae4872b66d4da670267dce1942b350ad00026e3258af9da362e81c59e791820d3341c49ebd0e3816b1"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/hsb/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/hsb/firefox-69.0b10.tar.bz2"; locale = "hsb"; arch = "linux-i686"; - sha512 = "bee5a0d34206cbac80e9c54026f5a19630173b7725c9223aa00dbced1ed95010d3995ebc4048d6c32db7ea3a28b25d6f86537e13d3e541103c118f847f199ec6"; + sha512 = "777ad7021020da8d302192f56e93de358af7deae7a60fe5e9f13a3b3d98779e99c4f23b8c3a801b0154f5ba35528f5800d93167de0fa3d397108df7f7ef23a58"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/hu/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/hu/firefox-69.0b10.tar.bz2"; locale = "hu"; arch = "linux-i686"; - sha512 = "dc8fbfaa7143b05fec1a16c83cd3c366925b38ddb0c5c8621d5c4cfd7163d0715cf3a75d675f665f35a6fe47397403f810ce71eabaef93d1e27bd4ded74da70d"; + sha512 = "651b0a70264ef15320391311ce357e944fc1cc59a7b68875578dee031247ebf8566dd70c566c43f94773751b73e783f1cbdb3cfadd0f9d11c302bcfdcb014d0c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/hy-AM/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/hy-AM/firefox-69.0b10.tar.bz2"; locale = "hy-AM"; arch = "linux-i686"; - sha512 = "9e7fb55ec4e3f3ad69a89bca9c50048e7abfe35929b1ce5d0454191ae655c7047a41bb6846b3c12d5098f12ababb2bd6e062cb7cc1eb8605e5d4056880288097"; + sha512 = "a3372d320797626169609e5e2d97a72f8a54cf7bdd106fd41eaf2d8e6ac8cf0615962b3cbea463aa412badb5ac02f7c1c04cf7aad546cac73caa2742e7d985af"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ia/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ia/firefox-69.0b10.tar.bz2"; locale = "ia"; arch = "linux-i686"; - sha512 = "19ba064d6ec4442291498378ff7db168fe626b912a4f5fe0f7dbd868e0250c958c1189b575315f287c5216842d05963bff10d412f1c5d2850e5f7382b3e94046"; + sha512 = "3f3925da5a9d5525f4427155061cec77307139ea61eeb532bf475aad3bc47f30af07213d26500ac8a2287bb81d37ad2bd4490626afcfe8839f94287779212612"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/id/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/id/firefox-69.0b10.tar.bz2"; locale = "id"; arch = "linux-i686"; - sha512 = "bdf2a45765ca4b34b35d093b4d8dfa86fae7ec7f54ffee7e52f47e2f25801c5364a1e1174f2f12ff67959d209de8bf423d25bffef7185742af1cc4cb62c499cf"; + sha512 = "3a698899d82d3a10a7c6c4e2eb61706896c73182f16b1752404a422d2731ad272052618e87bea89455eb2ffa410e138614c2c6285c1089bbc830a0217a0c9cd8"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/is/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/is/firefox-69.0b10.tar.bz2"; locale = "is"; arch = "linux-i686"; - sha512 = "196940b279e680ee674b5ac0c8d2744cd60310d11345ef067aa7c0ccc8c7cc9713bca2b2deadf728acc90f26d23ab4938b4d79f6744a4e357b943a6d2872a35c"; + sha512 = "d5cfdea22357a74ab7daead5a2e8b5aa16e454f0d63c569221bcdc71d8960f45780661cafff8c60499fe50dcc49d967600096e1d2f44bc1f7f649cd3f16df8d2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/it/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/it/firefox-69.0b10.tar.bz2"; locale = "it"; arch = "linux-i686"; - sha512 = "e42447492b421235810d4746a55777d774c488db6e233507c1c3947ece9902a55eb4390d450eabe4369f65033e9620316cdbfa4bc1dcafcc139e61205083f2b8"; + sha512 = "92da285bcd16df6a1f61f9ad7a57cc7eb867013421d61cee6a5eedf26e2a518a1988b53f6a217048eebbaa78551324a391f9c52e03d475d32eae513a4c9e2296"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ja/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ja/firefox-69.0b10.tar.bz2"; locale = "ja"; arch = "linux-i686"; - sha512 = "ff4d87e5c3d0a4de6725c48c455f59cb8ffc3646da8bf16113845a6eaa6cb5f7ad25cdb1ae9a8cd4d099db6c65352bbebdb534643550af0ebc6ffd6efb82ce5d"; + sha512 = "995903a57a7fc0f41c3737e570d61a1fcf226054d7c11be982d66ecad685aa9fa6ae6ffef93797aee387b3b442fc049f6329b5d88de86e7e809529ccf817947f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ka/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ka/firefox-69.0b10.tar.bz2"; locale = "ka"; arch = "linux-i686"; - sha512 = "5dc95cbb37f035c32442137f713a9e2cce8057b147bc4f410675948cc21e23cab78dbab97b0374fe0ff35caf9d8562832e244086137c40d88b53c8b85ef0c740"; + sha512 = "834ba5046a53091f3b24038069fc98f6d40350a401ac811a75ee6053e9bcffa97d8b3210eaaadb748b328b7679c80783bde5cdc1d6340e80b7240174a3b7c140"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/kab/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/kab/firefox-69.0b10.tar.bz2"; locale = "kab"; arch = "linux-i686"; - sha512 = "3d3ef83ab8390f132edc7c574c8daf18946a9a73c9a8348bc4c5a169dd829f634f4ba5c024b91b7598f7f02cafdbf292887bd1d65f657ede7cee9280673246db"; + sha512 = "75986a7f8dba13177b00a99f219fa1e5262015fb5688dceff96222ec1a2f6ae758aeeee620edc090acfa59a4870dd43ea181dde61a5a7e68e693e59af97d54b9"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/kk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/kk/firefox-69.0b10.tar.bz2"; locale = "kk"; arch = "linux-i686"; - sha512 = "11b1581c79c38bd6b85afb60547dd755725aec25459c57c3a62f668ee5d59999e2f0e1629f9d50fbb68a04765a8134b991508d9a0ee3fccd320f8ade0fc7c030"; + sha512 = "8cb2cfe5ba91af61096084aee42dd7f666605bdab54cd7304c6e839765e41e2cee627d34ed65b7162934b60eed448090e5c963813f87bc0805e79e4f92e99523"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/km/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/km/firefox-69.0b10.tar.bz2"; locale = "km"; arch = "linux-i686"; - sha512 = "e28f65d21d1b97fccc46339333465c6f3297ae790883ac78bb32bd3ca18344aae70578addbac7b9660f04fea267354e219d952fac7fb0426350d99f648e13637"; + sha512 = "77d511c378a386c5567a47d4115fbc5c5b88dc03838a3de838c403f7b2d986b367e5cf43efd93749ac9635436f4ff1827ed3a59345a8897f332963f0cb12496f"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/kn/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/kn/firefox-69.0b10.tar.bz2"; locale = "kn"; arch = "linux-i686"; - sha512 = "0297aa868255f4d391254c8210142b4c31ab9a966eb800d09dbe5fe593af42d68c52d45c73c32edf6988da3c7902ee324e4e026648c075ab67b389f2f595b761"; + sha512 = "51646a4e9ef0a644266a925705e4e5d2f4488697c076f9156862d258bdb4ed2eb6b105d5b9047dfaf574154d4fca750365f86f0693f312f68d8984812997badf"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ko/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ko/firefox-69.0b10.tar.bz2"; locale = "ko"; arch = "linux-i686"; - sha512 = "e5f311b43b253954b5e9e22617dde33d34ee08e03e66be4d95e29d5afc48a755e5f686d769ad4ec12498b5a9c46c47c8284cc7b5b0b923bbdce878263fa28233"; + sha512 = "d122b9dc0c0d5f4b7d62b3f188558e0db25549cfddef321f54b53c66e704ac895e9c67d3c8970de1f4ba3e7ffdd47bac5a4430000c289fb332c1e3f9d5893b66"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/lij/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/lij/firefox-69.0b10.tar.bz2"; locale = "lij"; arch = "linux-i686"; - sha512 = "26cc5ba51d71a0d277ad908cbc145c3e04ba4d090b4a41103e2c3dc610914194c46de3ca5e635f1b944308fd697ccfdd68c703944a1eaf0d072e34926ec85ffb"; + sha512 = "f1d45f8a8938599b0eab9aca11b1a917b8be86a224ed5e2c2b9bdc3ca0e4532958c6cd3468c17512b718135adb4284074fa2f4f32e851ddaaf72535cff60d58a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/lt/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/lt/firefox-69.0b10.tar.bz2"; locale = "lt"; arch = "linux-i686"; - sha512 = "cfa6be0944df97db783b827df5349a799d67d5369c37508e4d8fcaee5a2e02b7940f54384afadba3ea36a4f3b56ae621d01b35f6d7c7dc8830da34464671c366"; + sha512 = "c6d7dba3ea655c9c419b5960f7d6bd6c4816a55e835470c1c77ad820fa48fa58a25db12dd26393d0eecc6aa77ee022d27ad4ba42779922a451297a35a65a87fd"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/lv/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/lv/firefox-69.0b10.tar.bz2"; locale = "lv"; arch = "linux-i686"; - sha512 = "d896152ca7a803bbb80f4108e919addd9a2bb77c78f5a39b521031e703a59fa8874226f87bf2bffc3555620d454b21294839d626c139de6a4ab4639490513268"; + sha512 = "c5f8b3946e256c9d22b735e65987073776a1b7bfbc80b198e9a026f42b2d6161ea244d748de9948849d9fe3b760b30bb92bab2c459c8d925565f41ef39e916e7"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/mk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/mk/firefox-69.0b10.tar.bz2"; locale = "mk"; arch = "linux-i686"; - sha512 = "6a7e88217fae55da91c29f8c895cfcf2732dfae0ca009bfd1af0b0b020b7a3d15f58c6e400e8645a1c675958f67257425fd16a7b45d2ca159bcdacca51a0bbe6"; + sha512 = "e847e1aceea05139b2f1884298d59bea6a57dc3f33edca3d0175e9137de40d8e9347116951a9e5e9f8acfe43b458bcb8744a404093d1857d0b42f72ffaad90e3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/mr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/mr/firefox-69.0b10.tar.bz2"; locale = "mr"; arch = "linux-i686"; - sha512 = "1a8d3b92619df25154cb7564375e41b3321c67e309cbd89bf05015a856e45a36024e406a36d27214c149f5c38d2bf4cf07b8be72af8d5b9d6ae02c91f68a1a9c"; + sha512 = "92014b5413076602f711f3c71730ddd462b69bf67fffc104f2b18fd92189ae43a94c368fc4047c43366c3a15fca3cda9d8368631da51bd04f1c24727dec9ca63"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ms/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ms/firefox-69.0b10.tar.bz2"; locale = "ms"; arch = "linux-i686"; - sha512 = "da5defe18a07f890c53f64ee87926c62c70c23ae568fb18cb15ad9729eb432f141e6f5d3f88336ad3a6c30d6c7ab902ca12a86224470151ea8bdb97956239630"; + sha512 = "5c5decf31166b853e39b9a830ada9996778ad9331fb7ae21005968c1577daa156f852aab12e21da3cb5cddc55284b8cf0b439c205c0ddbe93b919de19567b7f4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/my/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/my/firefox-69.0b10.tar.bz2"; locale = "my"; arch = "linux-i686"; - sha512 = "0eec34d82f3dbe7cc6b4b9292fa90e1bbb547fd225aa15ef3d5cfbca79b1702565f709e4b0d5bdb21b895946856547a676cde13a3aa6076e5d293569fc4d04b4"; + sha512 = "60f910bc5a9cc7102bc6c9dfe8748e29d9590220acb5ef5c5b25e5c8b7186c6d17093df015df61296ba461c0a1f7dea139a94c4f920cd8cd8d770d0ee03d61ab"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/nb-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/nb-NO/firefox-69.0b10.tar.bz2"; locale = "nb-NO"; arch = "linux-i686"; - sha512 = "53f2979beec2d9aa4d69e87d3ec708092421f91056c563dd555f6258cd50ac3d0ff70a9857372933ff185a5d22f33c42a400c56e0e834e33e1db6ec8a0e2cbca"; + sha512 = "3b7702091cffa06e91d5c82c0d18468d09c6df66ce2e0aa84180db7cefc627c1f2dcb9fe889351d265a5b4a0ff49cbffe957a22b7400c8300642e68462e317c5"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ne-NP/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ne-NP/firefox-69.0b10.tar.bz2"; locale = "ne-NP"; arch = "linux-i686"; - sha512 = "2e0bf9610afdb65d9e7bb6605ad2cc55a7e00207cd622650e47e089db1e5bcafcffb4e63d48612b5186d46a933956a23502b0f71a1f4fb02973539b1c0cb5bbb"; + sha512 = "6c66a05a2cb9d3224beeedc821874634049258e107820f3b1881a1cefc8d084091a418bf6c46400d56fafd7022979f324dde5309e365e06c9ec806a5020ebc0a"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/nl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/nl/firefox-69.0b10.tar.bz2"; locale = "nl"; arch = "linux-i686"; - sha512 = "5ba83f18d2d642e55b97d260ab85a0df446c82a17fc10fa8d2fb89df00d0ed8943ac99bc07f28fd8db1e6af41200058c1e90822bbffc39205bab81fff00a8c87"; + sha512 = "6fb7a1357f73852706906386572c1a04237a041890f4bbc6ef5c1a865ba541d6af86eb6b055ada442251e3dd7d4ce30a79ebc50ebffa3850c2bbee44ba866a19"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/nn-NO/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/nn-NO/firefox-69.0b10.tar.bz2"; locale = "nn-NO"; arch = "linux-i686"; - sha512 = "2d60bef6c729e82a1864c1c420dfd7bbde8922d93f575fa80d5bade425b10b96ea7ed1f00184ec7960f8553ebd56cc54a2c9645d1517da8db97e03b65b2cc700"; + sha512 = "cdf167ea3728623fa7d3d9cbc39df02ba32750bfb61ecc9dfc574e9126c7e4b00c9c8fc938a6368d4f501d2b381eaefff9fb3024d4bdaad6f853c924fdc1b2eb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/oc/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/oc/firefox-69.0b10.tar.bz2"; locale = "oc"; arch = "linux-i686"; - sha512 = "67c9724d01749aa132f38a8c5acb7c603b6186b0ff70c693be66dc1c4d5404bed74c8de23bad5e45eebc27e5decfb26733b0c00acd6f2e283780c56d7fa012e2"; + sha512 = "9e5180bcb7195b7064ea10046f1cd044e6d287ce732be1d6f4c0a3c5adb2a26b951d76e92866a667652616bb7853f5249618220bad09ea2d32b8aa71131d9371"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/pa-IN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/pa-IN/firefox-69.0b10.tar.bz2"; locale = "pa-IN"; arch = "linux-i686"; - sha512 = "9b8495348104147f212246414172030bddfddaffaca9615cf701f210ff410d39a0ee3dc78c6a92fe83a35b32e2b18e528db6b6183a5481f8be20c5b93196ff2b"; + sha512 = "e0ad213505bad75ce2947b0bd501df174ef4516916bef43e083506721438e83f5a35139d5aa661569ec8d955eab87973995e29ac077c330af53e9647cffbd825"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/pl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/pl/firefox-69.0b10.tar.bz2"; locale = "pl"; arch = "linux-i686"; - sha512 = "426fb10742be943737a8c1288500ff5b678fc2d29bb3e2bbf2d55221fcce4616be4e86cd8e60356b20f0f5bec51bc5242fea076607ecedcbf3b27bddfacc88ce"; + sha512 = "9e84080936bbf5e7585edae2b3ccdd1d9a825ffcefea7d4399f892e9c2a18fab580928e74671e14dbde3ae0cfb0ad081f6ae3b9cd9ff1df3c778a8d0f399e11d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/pt-BR/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/pt-BR/firefox-69.0b10.tar.bz2"; locale = "pt-BR"; arch = "linux-i686"; - sha512 = "3a288a97dfe69e3fcfa6c48ea4c96a5c5d3cacfb5d6179fa420083961c30ce195d4adad693a981d6409978c938dd6a43f4756d3b62f78fff6f954f917515dc45"; + sha512 = "b98aa88bf2c9207ab21708c7fb72be8256a0c89df32ed51202c9f24fe232d38285dcf7cb74017ce50e7eee22f091de494793eab15c36ae5724d393f49d70d78c"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/pt-PT/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/pt-PT/firefox-69.0b10.tar.bz2"; locale = "pt-PT"; arch = "linux-i686"; - sha512 = "627014dbfe2892da96f76ad180b23126def791bea2a43c431dd418ee6cf4a34edcc352ae710af93f793666aa4e84d88b5b345c341f2b18ad9bdf036797127947"; + sha512 = "0afdbce1e0c0571a31fd5f90e40bd088a3df479ecb40c851750480e917fa60150d00a35a32083a846640c2c9ed5ee455e1a71ccf2ba226f0fd6899c2e22490b0"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/rm/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/rm/firefox-69.0b10.tar.bz2"; locale = "rm"; arch = "linux-i686"; - sha512 = "a54cbeb70b2a0d013bc47f9a09cb549a0b9f5352f3a9bf82483a65dbc6f7b57f48d141ceeaaedface0601c0fd9159c2e8b55e21300962b235a36c29682ab8ffb"; + sha512 = "224c878a035a8c3a5fa6baa45964e676ee33bd5a52273f7da755a36f4d3191fb11eeed10acdfe8e5417eb2ce55fd524206cd8973a1874073d1b1c936a0490f5b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ro/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ro/firefox-69.0b10.tar.bz2"; locale = "ro"; arch = "linux-i686"; - sha512 = "e3b894d8e72ea9fdeb99f40e822e731dbd346a468444de95a6782f8b7b97d6d2b36353ca4c02216662804e5e9843dbe410041a6afa8d51cf1dfc777fbd851216"; + sha512 = "3c07f89c0b52a0ab59d1820704fcd65c4d90cca95a4cac212b97697c6a25b918cc7cb2d86eabb4e58aa961e868c21ce5350aeee2ff2289b052fbaf9b1f1d461d"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ru/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ru/firefox-69.0b10.tar.bz2"; locale = "ru"; arch = "linux-i686"; - sha512 = "2c30a6eceef40e9d0f86172f58f7ac38c3d0bae36c9ca3d0bd262ee1995296b06a38daadfe7a57870623b31aca240e4d1685d6c1513cb297f19e533aa4ff9428"; + sha512 = "747f637a451e584e70414b11a5bbb65cf45a55c4491de0f0877efae6d348cffa3c4442235829474d1609d05749d3f785e17f6dea041a318dc504f795d312a88e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/si/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/si/firefox-69.0b10.tar.bz2"; locale = "si"; arch = "linux-i686"; - sha512 = "c05c7bdaf6e986bfeb99872bc8056c11096e1b961ef418ce88b7a8d386c782fc4b2f8d0d0dafac6fb2c0f68db9e1cd27f323c4d36b16175e1901d8908c7b9f3a"; + sha512 = "43a5d175b3759863ac557a69c6650bd3d7a1b2fe4747466a5e5d3b8eb5570c5b4d9ac18120ad5a79b768731409f1179fffbc5be9e6c171523ed5e0b71945eae2"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/sk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/sk/firefox-69.0b10.tar.bz2"; locale = "sk"; arch = "linux-i686"; - sha512 = "cdb5a13a02f45f599e3cee55c8d17437fb2190aae81fe9248e02af7eabb967945fdb5eae8e5ecf59c8586f5e5ad32acabb78abf50a31823add459e815beebf3b"; + sha512 = "4c11c5e850d9dfbe8285973acdb85de064b9009df28b974dc482c8138472c8555c6e44718d770f561805a8dc4d600ec77cead4d217d76f412b1128db4dc3d31b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/sl/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/sl/firefox-69.0b10.tar.bz2"; locale = "sl"; arch = "linux-i686"; - sha512 = "ef3d0ffaf4eb051a98044057734742c5b615c9e64043af99a1fee36cbd1456494c01f20df8b53c5094b12bb66711e8db4dd7db2223e6a827f9a2c6cdc3fbf55d"; + sha512 = "b02dc1cbcd8307fd803d477a73c7196fcdf4cc7ce7b250892ed0cba61c2003c63454623a953a0186359e117b0ece427d977561f04d29757d2889236289fa7fe6"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/son/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/son/firefox-69.0b10.tar.bz2"; locale = "son"; arch = "linux-i686"; - sha512 = "d430041041f703b7367963dfe58cba49b8ca23a50ac70f2dd315d4f2e4e5afe66a3656af08be4046a88e0a06901da722451f6f20740fec9e65fc53a6ebd4f104"; + sha512 = "aae03bccc5904c2b50d4bdc4bdbd0995ca8eeba67973bbd5ee5488606c2f0759b88334c500aa2b48edadb2c6ea27b16452db29a6647377de87a6f6d054acf202"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/sq/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/sq/firefox-69.0b10.tar.bz2"; locale = "sq"; arch = "linux-i686"; - sha512 = "34042131464d3e29af4d6f9306f8bf20a77a0a1926ecc297a3b587551efcffec5ccf7df82ebbd9cc25cfa9e4598fd15493a8661d61d1ffa9708bf8d706c5e45b"; + sha512 = "2c9708666b8226ad9f2c107c3c9c8607942781544a6eb9a050915d5a55712fa5c9bb38a07581e9781c054a4799f4d677788cadaaa30dede88b508771da20cbeb"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/sr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/sr/firefox-69.0b10.tar.bz2"; locale = "sr"; arch = "linux-i686"; - sha512 = "795dd65257fdf6eb34e822e4ec0b56ad8e1d1536818c7bdae2c4fcd1711fded36ccd168ac22500a071bed37a15e481a4539071b30e9b91159d2ec0f60a428754"; + sha512 = "b575acaaa5701c18fbb90cc71d6627eeae41a0ac1cf42327843e7c120cb51e7761b54669eda69577ed2c3c8c98ee9be66dba65e914283e50afb058f7b94c3487"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/sv-SE/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/sv-SE/firefox-69.0b10.tar.bz2"; locale = "sv-SE"; arch = "linux-i686"; - sha512 = "a905295f59f638d137f729905872aa9da66b035a5bd63d8717043f4a32ba53ada9835fb7aa613ea0b2252a92ed38a404e533d62d7514a13873a68c40c96a02fb"; + sha512 = "728c09e2feaaee2faebe8bd6a42ac78685c98c5d0065d14ea9d29df1afadb429f9d03519e9256e678f63c29d59f392805ea8843f7df8d25c3d42c557e91feca4"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ta/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ta/firefox-69.0b10.tar.bz2"; locale = "ta"; arch = "linux-i686"; - sha512 = "c996ac6a419097d2d14400cd050dba33e87ffee5059629f15fd4d666d6abdb02351cb241b03a663fadd85f29a328b311e173d4850d59abf4339a367aa22a94c8"; + sha512 = "5415b52d2270d55c12254ae4cc61cadf0b743cda3ec80f36e8e5ced2bb0599abfa37725994f680165c3803889cc04f218dbd2b89f3011bc41a8f1fe204b1a821"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/te/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/te/firefox-69.0b10.tar.bz2"; locale = "te"; arch = "linux-i686"; - sha512 = "082d663b14641747a927a23ad9c9e135f2179b958f733e2943267a40600a1b3acfe5b132048b3a4e71879ed292793a5592635de9aed547ece695884a129a598c"; + sha512 = "6361e327a8d71977488d0b6e5d4dfcf9271dc4739b52e31a979bcc686b2a6f326065e88ebafba05e38e6628955690a934c02b510eb5ae0ea15371bc309ae43b3"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/th/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/th/firefox-69.0b10.tar.bz2"; locale = "th"; arch = "linux-i686"; - sha512 = "f3c45ea9333b25094e153faa4e1faefc9497b04bcccff90b514221671d51e0348fe119a091e6a2c1a867c7e3a5727672a1b153f2101ccf56e5bd223ca8af7fe3"; + sha512 = "883fc0aabee67ca6098a4e860f58018bbdb511aeff8f1ffddf8c012357208dd2156ef0fbea7e92f2f0fc0da8d8a60d913ca638742c2b6511fbb4d943b59cb944"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/tr/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/tr/firefox-69.0b10.tar.bz2"; locale = "tr"; arch = "linux-i686"; - sha512 = "91e70c57b698a6b4782f64c81a4482cd6046885da0a41a7f1d05b96fd4b10b69681fbb43e302f97d2b4939215f815a68b368b8ee70b1443c29d90410374253db"; + sha512 = "e5f302af1bb937aa0dc0283a97a61588a7ad72dd46f74c0514645edbe23a5c25032a585230709fffe34d3b7e739797e4a2a33c2b2115f4623ab2da9b7c5fda4e"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/uk/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/uk/firefox-69.0b10.tar.bz2"; locale = "uk"; arch = "linux-i686"; - sha512 = "217d3d17cca00530179905c5f0c221380af53f03cc01c152e894eee6bcc58d387db244574d23ac62dfdda160f6fd6065c732c863c5684e85ab32d246af381714"; + sha512 = "4590f2774f1b119bb76c23b65103a635c4c51541fd9ade6ae44d997892f21015c71d8d718697acff6525420d6b2d5352d2f3c4afd3f35841fd7b207260c1ac2b"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/ur/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/ur/firefox-69.0b10.tar.bz2"; locale = "ur"; arch = "linux-i686"; - sha512 = "527871804b234603c95d06fe4c9d9624610aade70ba3985d37f87125a443fb1efd3afa9370b9ab4dadfbade6cc91ed180e830249b0613d366179733fe5f2c2ac"; + sha512 = "d559ce617dd2da4bf45eed7a61c79703064f29ca473993fd2df64f8e7006a6026c70e732db66fa33f78e550eaae88da2dd67cfefa85456d7e9e8a1d28e67b5be"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/uz/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/uz/firefox-69.0b10.tar.bz2"; locale = "uz"; arch = "linux-i686"; - sha512 = "35407d10af3148eeb1c62a1e690f5bd83d623afb24151eab254cdd59c19ccdd6f7fe84b9c68136b3f5736fefef31eaaecbf4ee88a4bb38ba93714e6e1a469e96"; + sha512 = "1770b55e2f8a7119d5395587f9f7d7fdc10f8c3c55f954f62d08a1ec3fa66600cecbe94cc7cd04580c1ba568ce5e839bac52e8c8b3dc654937e91a8a573db358"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/vi/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/vi/firefox-69.0b10.tar.bz2"; locale = "vi"; arch = "linux-i686"; - sha512 = "edd451320a4bb5d670896abc788ba7d845a9ad2eaf235a8aadb13bace36773ce51f31d41b94c363278a9868eabae84186adf7df5902770f12a476145641924d3"; + sha512 = "754513e26d09ceff0957a5d520097b600db660657feb1d8484ce046e90e60d37268474df79ebf5a450436b9f6574f0443fb7d647ff0f5b045055591488e4ab67"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/xh/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/xh/firefox-69.0b10.tar.bz2"; locale = "xh"; arch = "linux-i686"; - sha512 = "dbc83d9d017ab327dd63a6f42e5fbdfb1d5575c848acc6d8610fa937839e18cf84b43df9ecfbf4cdc6e4390ab24f802a3962e1c58bc09c7ae332aea42b7467c8"; + sha512 = "2e2e353006a2ad5430a201e0b7ed793d439afc1f7f4114258065f58afaa351eaf2be32f3dce1401af350cdc5753fffc13fee856181e51b961d688049c348c3f1"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/zh-CN/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/zh-CN/firefox-69.0b10.tar.bz2"; locale = "zh-CN"; arch = "linux-i686"; - sha512 = "ca19b51389a339e82332640396cd398ab68651ad3c77fcbc60a6e748400bedd88557a49459e573e02038d69bf95a38eba08760e9cb40d25a0a97354b92cc7052"; + sha512 = "7b86f1c8b7d81b90f7b72b3eec110257758da38f7f3bca50006a339de5ca1075e06762f07ba29b23a0718c6014ee30564329276098c9f8569487b4831f7b5809"; } - { url = "http://archive.mozilla.org/pub/devedition/releases/68.0b12/linux-i686/zh-TW/firefox-68.0b12.tar.bz2"; + { url = "http://archive.mozilla.org/pub/devedition/releases/69.0b10/linux-i686/zh-TW/firefox-69.0b10.tar.bz2"; locale = "zh-TW"; arch = "linux-i686"; - sha512 = "8c07654fc7a45d3918d2ce9a7732f7b5feb05cda23280385bf363b907b176c6f3414f05324fed9e384c6e5d63d48030234aa3fcc8c12e240266ba1bf89464c16"; + sha512 = "1f2a59adb5f3e243629f54ceb769e032eb2274990a7f5feb43a0c7f2df8344aea31fff8cb0ab9ea2e220f68548a7266ea052f8c02ef3fc8bbeb0b5917a1c853e"; } ]; } From 253272ce9f1d83dfcd80946e63ef7c1d6171ba0e Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Fri, 2 Aug 2019 21:37:23 +0300 Subject: [PATCH 1444/1611] lsd: 0.15.1 -> 0.16.0 --- pkgs/tools/misc/lsd/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/lsd/default.nix b/pkgs/tools/misc/lsd/default.nix index 3b9fc5ae691..9b7ff7fd600 100644 --- a/pkgs/tools/misc/lsd/default.nix +++ b/pkgs/tools/misc/lsd/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "lsd"; - version = "0.15.1"; + version = "0.16.0"; src = fetchFromGitHub { owner = "Peltoche"; repo = pname; rev = version; - sha256 = "1m8jcmdp66n0vgyzfgknmg4rwc41y9fd4vjgapaggg6lc9cc68gp"; + sha256 = "0fh5rz6slyjzz03bpjcl9gplk36vm7qcc0i0gvhsikwvw0cf3hym"; }; - cargoSha256 = "095jf63jyd485fk8pl7grvycn7pkwnxdm5lwkmfl9p46m8q1qqr2"; + cargoSha256 = "0377jbjkrrjss3w8xmjsjjynycpdk19grp20hffxschg4ryvniin"; preFixup = '' install -Dm644 -t $out/share/zsh/site-functions/ target/release/build/lsd-*/out/_lsd From 64c5ea07dae4264dc2588ac7005b4d8e03a98ab6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20P=C3=A4ssler?= Date: Fri, 2 Aug 2019 20:47:28 +0200 Subject: [PATCH 1445/1611] cbmem: init at 4.9 --- pkgs/tools/misc/cbmem/default.nix | 28 ++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 30 insertions(+) create mode 100644 pkgs/tools/misc/cbmem/default.nix diff --git a/pkgs/tools/misc/cbmem/default.nix b/pkgs/tools/misc/cbmem/default.nix new file mode 100644 index 00000000000..d2efea1c03a --- /dev/null +++ b/pkgs/tools/misc/cbmem/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + pname = "cbmem"; + version = "4.9"; + + src = fetchurl { + url = "https://coreboot.org/releases/coreboot-${version}.tar.xz"; + sha256 = "0xkai65d3z9fivwscbkm7ndcw2p9g794xz8fwdv979w77n5qsdij"; + }; + + buildPhase = '' + make -C util/cbmem + ''; + + installPhase = '' + install -Dm755 util/cbmem/cbmem $out/bin/cbmem + ''; + + meta = with stdenv.lib; { + description = "Read coreboot timestamps and console logs"; + homepage = "https://www.coreboot.org"; + license = licenses.gpl2; + maintainers = [ maintainers.petabyteboy ]; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d4295586fa..b12558adbea 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14750,6 +14750,8 @@ in ifdtool = callPackage ../tools/misc/ifdtool { }; + cbmem = callPackage ../tools/misc/cbmem { }; + nvramtool = callPackage ../tools/misc/nvramtool { }; vmfs-tools = callPackage ../tools/filesystems/vmfs-tools { }; From 713c00458981c27ac4b0ad81d66f13678062e8d0 Mon Sep 17 00:00:00 2001 From: Vladyslav M Date: Fri, 2 Aug 2019 22:42:21 +0300 Subject: [PATCH 1446/1611] dua: 2.1.5 -> 2.1.11 --- pkgs/tools/misc/dua/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/dua/default.nix b/pkgs/tools/misc/dua/default.nix index 07a1807e9a7..a502735c773 100644 --- a/pkgs/tools/misc/dua/default.nix +++ b/pkgs/tools/misc/dua/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "dua"; - version = "2.1.5"; + version = "2.1.11"; src = fetchFromGitHub { owner = "Byron"; repo = "dua-cli"; rev = "v${version}"; - sha256 = "0xiprpk74l0q5w3j82lx1l3jy4mi015nvlixih9z1lam4qi1yq0p"; + sha256 = "08zgi2yiynb20l1f9rhly4a7zgqnr7lq3cr5vkmh1jnfs6z27dv6"; }; - cargoSha256 = "1jg1ljm5h21shkyfrq0ivz9m0c25dxc0kd6cipf5i2dbnzcszmhh"; + cargoSha256 = "0ca9gaih0b9qg7bdgyhvb9gr1mq23r62pi0845vwc216jfaag079"; meta = with lib; { description = "A tool to conveniently learn about the disk usage of directories, fast!"; From 4253edd1fe177bc3a9bf7c553195ab4563016d63 Mon Sep 17 00:00:00 2001 From: Robert Djubek Date: Thu, 1 Aug 2019 22:22:41 +0000 Subject: [PATCH 1447/1611] bitwarden-cli: fix build Updated with./generate.sh so that it builds. Fixes #63158 --- .../bitwarden-cli/node-packages-generated.nix | 203 +++++++++--------- .../security/bitwarden-cli/node-packages.nix | 2 +- 2 files changed, 103 insertions(+), 102 deletions(-) diff --git a/pkgs/tools/security/bitwarden-cli/node-packages-generated.nix b/pkgs/tools/security/bitwarden-cli/node-packages-generated.nix index e258571a620..2afff040354 100644 --- a/pkgs/tools/security/bitwarden-cli/node-packages-generated.nix +++ b/pkgs/tools/security/bitwarden-cli/node-packages-generated.nix @@ -1,4 +1,4 @@ -# This file has been generated by node2nix 1.6.0. Do not edit! +# This file has been generated by node2nix 1.7.0. Do not edit! {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: @@ -13,40 +13,40 @@ let sha512 = "sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w=="; }; }; - "acorn-6.1.1" = { + "acorn-6.2.1" = { name = "acorn"; packageName = "acorn"; - version = "6.1.1"; + version = "6.2.1"; src = fetchurl { - url = "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz"; - sha512 = "jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA=="; + url = "https://registry.npmjs.org/acorn/-/acorn-6.2.1.tgz"; + sha512 = "JD0xT5FCRDNyjDda3Lrg/IxFscp9q4tiYtxE1/nOzlKCk7hIRuYjhq1kCNkbPjMRMZuFq20HNQn1I9k8Oj0E+Q=="; }; }; - "acorn-globals-4.3.0" = { + "acorn-globals-4.3.2" = { name = "acorn-globals"; packageName = "acorn-globals"; - version = "4.3.0"; + version = "4.3.2"; src = fetchurl { - url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.0.tgz"; - sha512 = "hMtHj3s5RnuhvHPowpBYvJVj3rAar82JiDQHvGs1zO0l10ocX/xEdBShNHTJaboucJUsScghp74pH3s7EnHHQw=="; + url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz"; + sha512 = "BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ=="; }; }; - "acorn-walk-6.1.1" = { + "acorn-walk-6.2.0" = { name = "acorn-walk"; packageName = "acorn-walk"; - version = "6.1.1"; + version = "6.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz"; - sha512 = "OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw=="; + url = "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.2.0.tgz"; + sha512 = "7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA=="; }; }; - "ajv-6.10.0" = { + "ajv-6.10.2" = { name = "ajv"; packageName = "ajv"; - version = "6.10.0"; + version = "6.10.2"; src = fetchurl { - url = "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz"; - sha512 = "nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg=="; + url = "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz"; + sha512 = "TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw=="; }; }; "ansi-escapes-3.2.0" = { @@ -256,22 +256,22 @@ let sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; }; }; - "cssom-0.3.6" = { + "cssom-0.3.8" = { name = "cssom"; packageName = "cssom"; - version = "0.3.6"; + version = "0.3.8"; src = fetchurl { - url = "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz"; - sha512 = "DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A=="; + url = "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz"; + sha512 = "b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg=="; }; }; - "cssstyle-1.2.2" = { + "cssstyle-1.4.0" = { name = "cssstyle"; packageName = "cssstyle"; - version = "1.2.2"; + version = "1.4.0"; src = fetchurl { - url = "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz"; - sha512 = "43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow=="; + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-1.4.0.tgz"; + sha512 = "GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA=="; }; }; "dashdash-1.14.1" = { @@ -364,13 +364,13 @@ let sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; }; }; - "esutils-2.0.2" = { + "esutils-2.0.3" = { name = "esutils"; packageName = "esutils"; - version = "2.0.2"; + version = "2.0.3"; src = fetchurl { - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; - sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; + url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"; + sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; }; }; "extend-3.0.2" = { @@ -382,13 +382,13 @@ let sha512 = "fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="; }; }; - "external-editor-3.0.3" = { + "external-editor-3.1.0" = { name = "external-editor"; packageName = "external-editor"; - version = "3.0.3"; + version = "3.1.0"; src = fetchurl { - url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz"; - sha512 = "bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA=="; + url = "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"; + sha512 = "hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="; }; }; "extsprintf-1.3.0" = { @@ -463,13 +463,13 @@ let sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; }; }; - "graceful-fs-4.1.15" = { + "graceful-fs-4.2.0" = { name = "graceful-fs"; packageName = "graceful-fs"; - version = "4.1.15"; + version = "4.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz"; - sha512 = "6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA=="; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.0.tgz"; + sha512 = "jpSvDPV4Cq/bgtpndIWbI5hmYxhQGHPC4d4cqBPb4DLniCfhJokdXhwhaDuLBGLQdvvRum/UiX6ECVIPvDXqdg=="; }; }; "har-schema-2.0.0" = { @@ -634,13 +634,13 @@ let sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; }; }; - "lodash-4.17.11" = { + "lodash-4.17.15" = { name = "lodash"; packageName = "lodash"; - version = "4.17.11"; + version = "4.17.15"; src = fetchurl { - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz"; - sha512 = "cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg=="; + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz"; + sha512 = "8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A=="; }; }; "lodash.sortby-4.7.0" = { @@ -670,22 +670,22 @@ let sha512 = "rlAEsgU9Bnavca2w1WJ6+6cdeHMXNyadcersyk3ZpuhgWb5HBNj8l4WwJz9PjksAhYDlpQffCVXPctOn+wCIVA=="; }; }; - "mime-db-1.38.0" = { + "mime-db-1.40.0" = { name = "mime-db"; packageName = "mime-db"; - version = "1.38.0"; + version = "1.40.0"; src = fetchurl { - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.38.0.tgz"; - sha512 = "bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg=="; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz"; + sha512 = "jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA=="; }; }; - "mime-types-2.1.22" = { + "mime-types-2.1.24" = { name = "mime-types"; packageName = "mime-types"; - version = "2.1.22"; + version = "2.1.24"; src = fetchurl { - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.22.tgz"; - sha512 = "aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog=="; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz"; + sha512 = "WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ=="; }; }; "mimic-fn-1.2.0" = { @@ -724,13 +724,13 @@ let sha512 = "sol30LUpz1jQFBjOKwbjxijiE3b6pjd74YwfD0fJOKPjF+fONKb2Yg8rYgS6+bK6VDl+/wfr4IYpC7jDzLUIfw=="; }; }; - "nwsapi-2.1.3" = { + "nwsapi-2.1.4" = { name = "nwsapi"; packageName = "nwsapi"; - version = "2.1.3"; + version = "2.1.4"; src = fetchurl { - url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.3.tgz"; - sha512 = "RowAaJGEgYXEZfQ7tvvdtAQUKPyTR6T6wNu0fwlNsGQYr/h3yQc6oI8WnVZh3Y/Sylwc+dtAlvPqfFZjhTyk3A=="; + url = "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz"; + sha512 = "iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw=="; }; }; "oauth-sign-0.9.0" = { @@ -823,13 +823,13 @@ let sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; }; }; - "psl-1.1.31" = { + "psl-1.3.0" = { name = "psl"; packageName = "psl"; - version = "1.1.31"; + version = "1.3.0"; src = fetchurl { - url = "https://registry.npmjs.org/psl/-/psl-1.1.31.tgz"; - sha512 = "/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw=="; + url = "https://registry.npmjs.org/psl/-/psl-1.3.0.tgz"; + sha512 = "avHdspHO+9rQTLbv1RO+MPYeP/SzsCoxofjVnHanETfQhTJrmB0HlDoW+EiN/R+C0BZ+gERab9NY0lPN2TxNag=="; }; }; "punycode-1.4.1" = { @@ -904,22 +904,22 @@ let sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0"; }; }; - "rxjs-6.4.0" = { + "rxjs-6.5.2" = { name = "rxjs"; packageName = "rxjs"; - version = "6.4.0"; + version = "6.5.2"; src = fetchurl { - url = "https://registry.npmjs.org/rxjs/-/rxjs-6.4.0.tgz"; - sha512 = "Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw=="; + url = "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz"; + sha512 = "HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg=="; }; }; - "safe-buffer-5.1.2" = { + "safe-buffer-5.2.0" = { name = "safe-buffer"; packageName = "safe-buffer"; - version = "5.1.2"; + version = "5.2.0"; src = fetchurl { - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; + url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.0.tgz"; + sha512 = "fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg=="; }; }; "safer-buffer-2.1.2" = { @@ -931,13 +931,13 @@ let sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; }; }; - "saxes-3.1.9" = { + "saxes-3.1.11" = { name = "saxes"; packageName = "saxes"; - version = "3.1.9"; + version = "3.1.11"; src = fetchurl { - url = "https://registry.npmjs.org/saxes/-/saxes-3.1.9.tgz"; - sha512 = "FZeKhJglhJHk7eWG5YM0z46VHmI3KJpMBAQm3xa9meDvd+wevB5GuBB0wc0exPInZiBBHqi00DbS8AcvCGCFMw=="; + url = "https://registry.npmjs.org/saxes/-/saxes-3.1.11.tgz"; + sha512 = "Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g=="; }; }; "signal-exit-3.0.2" = { @@ -1012,13 +1012,13 @@ let sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; }; }; - "symbol-tree-3.2.2" = { + "symbol-tree-3.2.4" = { name = "symbol-tree"; packageName = "symbol-tree"; - version = "3.2.2"; + version = "3.2.4"; src = fetchurl { - url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz"; - sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; + url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz"; + sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; }; }; "through-2.3.8" = { @@ -1075,13 +1075,13 @@ let sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; }; }; - "tslib-1.9.3" = { + "tslib-1.10.0" = { name = "tslib"; packageName = "tslib"; - version = "1.9.3"; + version = "1.10.0"; src = fetchurl { - url = "https://registry.npmjs.org/tslib/-/tslib-1.9.3.tgz"; - sha512 = "4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ=="; + url = "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz"; + sha512 = "qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ=="; }; }; "tunnel-agent-0.6.0" = { @@ -1219,13 +1219,13 @@ let sha512 = "A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw=="; }; }; - "xmlchars-1.3.1" = { + "xmlchars-2.1.1" = { name = "xmlchars"; packageName = "xmlchars"; - version = "1.3.1"; + version = "2.1.1"; src = fetchurl { - url = "https://registry.npmjs.org/xmlchars/-/xmlchars-1.3.1.tgz"; - sha512 = "tGkGJkN8XqCod7OT+EvGYK5Z4SfDQGD30zAa58OcnAa0RRWgzUEK72tkXhsX1FZd+rgnhRxFtmO+ihkp8LHSkw=="; + url = "https://registry.npmjs.org/xmlchars/-/xmlchars-2.1.1.tgz"; + sha512 = "7hew1RPJ1iIuje/Y01bGD/mXokXxegAgVS+e+E0wSi2ILHQkYAH1+JXARwTjZSM4Z4Z+c73aKspEcqj+zPPL/w=="; }; }; "zxcvbn-4.4.2" = { @@ -1250,10 +1250,10 @@ in }; dependencies = [ sources."abab-2.0.0" - sources."acorn-6.1.1" - sources."acorn-globals-4.3.0" - sources."acorn-walk-6.1.1" - sources."ajv-6.10.0" + sources."acorn-6.2.1" + sources."acorn-globals-4.3.2" + sources."acorn-walk-6.2.0" + sources."ajv-6.10.2" sources."ansi-escapes-3.2.0" sources."ansi-regex-3.0.0" sources."ansi-styles-3.2.1" @@ -1277,8 +1277,8 @@ in sources."combined-stream-1.0.6" sources."commander-2.18.0" sources."core-util-is-1.0.2" - sources."cssom-0.3.6" - sources."cssstyle-1.2.2" + sources."cssom-0.3.8" + sources."cssstyle-1.4.0" sources."dashdash-1.14.1" sources."data-urls-1.1.0" sources."deep-is-0.1.3" @@ -1289,9 +1289,9 @@ in sources."escodegen-1.11.1" sources."esprima-3.1.3" sources."estraverse-4.2.0" - sources."esutils-2.0.2" + sources."esutils-2.0.3" sources."extend-3.0.2" - sources."external-editor-3.0.3" + sources."external-editor-3.1.0" sources."extsprintf-1.3.0" sources."fast-deep-equal-2.0.1" sources."fast-json-stable-stringify-2.0.0" @@ -1300,7 +1300,7 @@ in sources."forever-agent-0.6.1" sources."form-data-2.3.2" sources."getpass-0.1.7" - sources."graceful-fs-4.1.15" + sources."graceful-fs-4.2.0" sources."har-schema-2.0.0" sources."har-validator-5.1.3" sources."has-flag-3.0.0" @@ -1319,17 +1319,17 @@ in sources."json-stringify-safe-5.0.1" sources."jsprim-1.4.1" sources."levn-0.3.0" - sources."lodash-4.17.11" + sources."lodash-4.17.15" sources."lodash.sortby-4.7.0" sources."lowdb-1.0.0" sources."lunr-2.3.3" - sources."mime-db-1.38.0" - sources."mime-types-2.1.22" + sources."mime-db-1.40.0" + sources."mime-types-2.1.24" sources."mimic-fn-1.2.0" sources."mute-stream-0.0.7" sources."node-fetch-2.2.0" sources."node-forge-0.7.6" - sources."nwsapi-2.1.3" + sources."nwsapi-2.1.4" sources."oauth-sign-0.9.0" sources."onetime-2.0.1" sources."optionator-0.8.2" @@ -1340,7 +1340,7 @@ in sources."pify-3.0.0" sources."pn-1.1.0" sources."prelude-ls-1.1.2" - sources."psl-1.1.31" + sources."psl-1.3.0" sources."punycode-2.1.1" sources."qs-6.5.2" (sources."request-2.88.0" // { @@ -1353,10 +1353,10 @@ in sources."request-promise-native-1.0.7" sources."restore-cursor-2.0.0" sources."run-async-2.3.0" - sources."rxjs-6.4.0" - sources."safe-buffer-5.1.2" + sources."rxjs-6.5.2" + sources."safe-buffer-5.2.0" sources."safer-buffer-2.1.2" - sources."saxes-3.1.9" + sources."saxes-3.1.11" sources."signal-exit-3.0.2" sources."source-map-0.6.1" sources."sshpk-1.16.1" @@ -1365,7 +1365,7 @@ in sources."string-width-2.1.1" sources."strip-ansi-4.0.0" sources."supports-color-5.5.0" - sources."symbol-tree-3.2.2" + sources."symbol-tree-3.2.4" sources."through-2.3.8" (sources."tldjs-2.3.1" // { dependencies = [ @@ -1375,7 +1375,7 @@ in sources."tmp-0.0.33" sources."tough-cookie-2.5.0" sources."tr46-1.0.1" - sources."tslib-1.9.3" + sources."tslib-1.10.0" sources."tunnel-agent-0.6.0" sources."tweetnacl-0.14.5" sources."type-check-0.3.2" @@ -1391,7 +1391,7 @@ in sources."wordwrap-1.0.0" sources."ws-6.2.1" sources."xml-name-validator-3.0.0" - sources."xmlchars-1.3.1" + sources."xmlchars-2.1.1" sources."zxcvbn-4.4.2" ]; buildInputs = globalBuildInputs; @@ -1402,5 +1402,6 @@ in }; production = true; bypassCache = true; + reconstructLock = true; }; } \ No newline at end of file diff --git a/pkgs/tools/security/bitwarden-cli/node-packages.nix b/pkgs/tools/security/bitwarden-cli/node-packages.nix index 6fb6421eb2d..e5d0c7fc71a 100644 --- a/pkgs/tools/security/bitwarden-cli/node-packages.nix +++ b/pkgs/tools/security/bitwarden-cli/node-packages.nix @@ -1,4 +1,4 @@ -# This file has been generated by node2nix 1.6.0. Do not edit! +# This file has been generated by node2nix 1.7.0. Do not edit! {pkgs ? import { inherit system; From 6a22620c5b13a989f8532e01f709395287dfe67d Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Fri, 2 Aug 2019 20:19:02 +0300 Subject: [PATCH 1448/1611] qmapshack: use Qt mkDerivation --- pkgs/applications/misc/qmapshack/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/qmapshack/default.nix b/pkgs/applications/misc/qmapshack/default.nix index b38369babe8..f7a8bc0e3a1 100644 --- a/pkgs/applications/misc/qmapshack/default.nix +++ b/pkgs/applications/misc/qmapshack/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, fetchpatch, cmake, qtscript, qtwebengine, gdal, proj, routino, quazip }: +{ mkDerivation, lib, fetchurl, fetchpatch, cmake, qtscript, qtwebengine, gdal, proj, routino, quazip }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "qmapshack-${version}"; version = "1.13.0"; @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { }) ]; - meta = with stdenv.lib; { + meta = with lib; { homepage = https://bitbucket.org/maproom/qmapshack/wiki/Home; description = "Plan your next outdoor trip"; license = licenses.gpl3; From 5304191cd70e43a983a4c06d3b7bb2616e50d9eb Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 09:03:55 -0700 Subject: [PATCH 1449/1611] pyload: fix build --- pkgs/applications/networking/pyload/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/pyload/default.nix b/pkgs/applications/networking/pyload/default.nix index 6a89731ff10..3df21d414e0 100644 --- a/pkgs/applications/networking/pyload/default.nix +++ b/pkgs/applications/networking/pyload/default.nix @@ -45,16 +45,16 @@ in pythonPackages.buildPythonApplication rec { ''; preBuild = '' - paver generate_setup + ${pythonPackages.paver}/bin/paver generate_setup ''; doCheck = false; - meta = { + meta = with stdenv.lib; { description = "Free and open source downloader for 1-click-hosting sites"; homepage = https://github.com/pyload/pyload; - license = stdenv.lib.licenses.gpl3; - maintainers = [ stdenv.lib.maintainers.mahe ]; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3; + maintainers = [ maintainers.mahe ]; + platforms = platforms.all; }; } From 537f3621c6161f11f3afbac0d2a7f70d52919709 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Sat, 3 Aug 2019 01:04:12 +0300 Subject: [PATCH 1450/1611] goldendict: 2018-06-13 -> 2019-08-01 --- pkgs/applications/misc/goldendict/default.nix | 22 +++++++++++-------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/misc/goldendict/default.nix b/pkgs/applications/misc/goldendict/default.nix index 42d5d83f7bd..6a5f4c9ce03 100644 --- a/pkgs/applications/misc/goldendict/default.nix +++ b/pkgs/applications/misc/goldendict/default.nix @@ -1,25 +1,29 @@ -{ stdenv, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell -, libao, ffmpeg, libeb, lzo, xz, libtiff +{ mkDerivation, lib, fetchFromGitHub, pkgconfig, libXtst, libvorbis, hunspell +, libao, ffmpeg, libeb, lzo, xz, libtiff, opencc , qtbase, qtsvg, qtwebkit, qtx11extras, qttools, qmake }: -stdenv.mkDerivation rec { +mkDerivation rec { - name = "goldendict-2018-06-13"; + name = "goldendict-2019-08-01"; src = fetchFromGitHub { owner = "goldendict"; repo = "goldendict"; - rev = "48e850c7ec11d83cba7499f7fdce377ef3849bbb"; - sha256 = "0i4q4waqjv45hgwillvjik97pg26kwlmz4925djjkx8s6hxgjlq9"; + rev = "0f951b06a55f3a201891cf645a556e773bda5f52"; + sha256 = "1d1hn95vhvsmbq9q96l5adn90g0hg25dl01knb4y4v6v9x4yrl2x"; }; nativeBuildInputs = [ pkgconfig qmake ]; buildInputs = [ qtbase qtsvg qtwebkit qtx11extras qttools - libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff + libXtst libvorbis hunspell libao ffmpeg libeb lzo xz libtiff opencc ]; - qmakeFlags = [ "CONFIG+=zim_support" ]; + qmakeFlags = [ + "goldendict.pro" + "CONFIG+=zim_support" + "CONFIG+=chinese_conversion_support" + ]; - meta = with stdenv.lib; { + meta = with lib; { homepage = http://goldendict.org/; description = "A feature-rich dictionary lookup program"; platforms = platforms.linux; From 2d09016ed37982e52c13a94915263c73a7412b69 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sat, 3 Aug 2019 00:19:14 +0200 Subject: [PATCH 1451/1611] grafana-loki: 0.1.0 -> 0.2.0 --- pkgs/servers/monitoring/loki/default.nix | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/monitoring/loki/default.nix b/pkgs/servers/monitoring/loki/default.nix index 63bded64a36..223026c3b41 100644 --- a/pkgs/servers/monitoring/loki/default.nix +++ b/pkgs/servers/monitoring/loki/default.nix @@ -1,7 +1,7 @@ -{ stdenv, buildGoPackage, fetchFromGitHub }: +{ stdenv, buildGoPackage, fetchFromGitHub, makeWrapper, systemd }: buildGoPackage rec { - version = "0.1.0"; + version = "0.2.0"; name = "grafana-loki-${version}"; goPackagePath = "github.com/grafana/loki"; @@ -11,13 +11,21 @@ buildGoPackage rec { rev = "v${version}"; owner = "grafana"; repo = "loki"; - sha256 = "18iysr8p84vd1sdjdnpc9cydd5rpw0azdjzpz8yjqhscqw9gk4w2"; + sha256 = "1f4g5qiarhsa1r7vdx1z30zpqlypd4cf5anj4jp6nc9q6zmjwk91"; }; + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ systemd.dev ]; + + preFixup = '' + wrapProgram $bin/bin/promtail \ + --prefix LD_LIBRARY_PATH : "${systemd.lib}/lib" + ''; + meta = with stdenv.lib; { description = "Like Prometheus, but for logs."; license = licenses.asl20; - homepage = https://grafana.com/loki; + homepage = "https://grafana.com/loki"; maintainers = with maintainers; [ willibutz ]; platforms = platforms.linux; }; From 0172a27043e6d1b3169ba5cdb658113186ff4fef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Xaver=20H=C3=B6rl?= Date: Fri, 2 Aug 2019 17:10:39 +0200 Subject: [PATCH 1452/1611] xteddy: 2.2 -> 2.2-5 (use debian sources and patches) --- pkgs/applications/misc/xteddy/default.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/xteddy/default.nix b/pkgs/applications/misc/xteddy/default.nix index 6f67ed96c57..6bc492833cc 100644 --- a/pkgs/applications/misc/xteddy/default.nix +++ b/pkgs/applications/misc/xteddy/default.nix @@ -1,19 +1,22 @@ -{ stdenv, fetchzip, pkg-config, xorg, imlib2, makeWrapper }: +{ stdenv, fetchFromGitLab, pkg-config, xorg, imlib2, makeWrapper }: stdenv.mkDerivation rec { name = "xteddy-${version}"; - version = "2.2"; - src = fetchzip { - url = "https://deb.debian.org/debian/pool/main/x/xteddy/xteddy_${version}.orig.tar.gz"; - sha256 = "0sap4fqvs0888ymf5ga10p3n7n5kr35j38kfsfd7nj0xm4hmcma3"; + version = "2.2-5"; + src = fetchFromGitLab { + domain = "salsa.debian.org"; + owner = "games-team"; + repo = "xteddy"; + rev = "debian%2F${version}"; # %2F = urlquote("/"); + sha256 = "0rm7w78d6qajq4fvi4agyqm0c70f3c1i0cy2jdb6kqql2k8w78qy"; }; + nativeBuildInputs = [ pkg-config makeWrapper ]; buildInputs = [ imlib2 xorg.libX11 xorg.libXext ]; - makeFlags = [ "LIBS=-lXext" ]; + patches = [ "${src}/debian/patches/10_libXext.patch" "${src}/debian/patches/wrong-man-page-section.patch" ]; postPatch = '' - sed -i 's/man 1 xteddy/man 6 xteddy/' xteddy.c sed -i "s:/usr/games/xteddy:$out/bin/xteddy:" xtoys sed -i "s:/usr/share/xteddy:$out/share/xteddy:" xtoys ''; @@ -32,7 +35,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Cuddly teddy bear for your X desktop"; - homepage = https://weber.itn.liu.se/~stegu/xteddy/; + homepage = "https://weber.itn.liu.se/~stegu/xteddy/"; license = licenses.gpl2; maintainers = [ maintainers.xaverdh ]; platforms = platforms.linux; From 3d90e873d8b3adf48de9acd0d9596bdfc8e24f80 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:08:18 -0400 Subject: [PATCH 1453/1611] netsurf.libcss: 0.6.0 -> 0.9.0 --- pkgs/applications/misc/netsurf/libcss/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libcss/default.nix b/pkgs/applications/misc/netsurf/libcss/default.nix index e97452249bc..55538925abd 100644 --- a/pkgs/applications/misc/netsurf/libcss/default.nix +++ b/pkgs/applications/misc/netsurf/libcss/default.nix @@ -8,11 +8,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libcss"; - version = "0.6.0"; + version = "0.9.0"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "0qp4p1q1dwgdra4pkrzd081zjzisxkgwx650ijx323j8bj725daf"; + sha256 = "1vw9j3d2mr4wbvs8fyqmgslkbxknvac10456775hflxxcivbm3xr"; }; nativeBuildInputs = [ pkgconfig ]; From a5980dfa0159e8234a12de79f4c63e1e80c4c8c6 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:08:39 -0400 Subject: [PATCH 1454/1611] netsurf.libdom: 0.3.0 -> 0.4.0 --- pkgs/applications/misc/netsurf/libdom/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libdom/default.nix b/pkgs/applications/misc/netsurf/libdom/default.nix index 50a6dadadb5..de92219e7f9 100644 --- a/pkgs/applications/misc/netsurf/libdom/default.nix +++ b/pkgs/applications/misc/netsurf/libdom/default.nix @@ -9,11 +9,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libdom"; - version = "0.3.0"; + version = "0.4.0"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "1kk6qbqagx5ypiy9kf0059iqdzyz8fqaw336vzhb5gnrzjw3wv4a"; + sha256 = "1ixkqsl3f7dl1kajksm0c231w1v5xy8z6hm3v67hgm9nh4qcvfcy"; }; nativeBuildInputs = [ pkgconfig ]; From d99a97c9a31f4dd4be6457a0070d98ac57c8f984 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:08:56 -0400 Subject: [PATCH 1455/1611] netsurf.libhubbub: 0.3.3 -> 0.3.6 --- pkgs/applications/misc/netsurf/libhubbub/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libhubbub/default.nix b/pkgs/applications/misc/netsurf/libhubbub/default.nix index 71519687151..03ee66fc598 100644 --- a/pkgs/applications/misc/netsurf/libhubbub/default.nix +++ b/pkgs/applications/misc/netsurf/libhubbub/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libhubbub"; - version = "0.3.3"; + version = "0.3.6"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "101781iw32p47386fxqr01nrkywi12w17ajh02k2vlga4z8zyv86"; + sha256 = "1x3v7xvagx85v9h3pypzc86rcxs4mij87mmcqkp8pq50q6awfmnp"; }; nativeBuildInputs = [ pkgconfig ]; From 1c60e5c3c617d97b04def99e9d405f5a34a2a187 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:09:12 -0400 Subject: [PATCH 1456/1611] netsurf.libnsbmp: 0.1.3 -> 0.1.5 --- pkgs/applications/misc/netsurf/libnsbmp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libnsbmp/default.nix b/pkgs/applications/misc/netsurf/libnsbmp/default.nix index 7e99f8f5b86..b0fb18c89b1 100644 --- a/pkgs/applications/misc/netsurf/libnsbmp/default.nix +++ b/pkgs/applications/misc/netsurf/libnsbmp/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libnsbmp"; - version = "0.1.3"; + version = "0.1.5"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "0gmvzw1whh7553d6s98vr4ri2whjwrgggcq1z5b160gwjw20mzyy"; + sha256 = "0lib2m07d1i0k80m4blkwnj0g7rha4jbm5vrgd0wwbkyfa0hvk35"; }; nativeBuildInputs = [ pkgconfig ]; From 60e3b3ddafc3556e587a5fb19057f40f20367b68 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:09:35 -0400 Subject: [PATCH 1457/1611] netsurf.libnsfb: 0.1.4 -> 0.2.1 --- pkgs/applications/misc/netsurf/libnsfb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libnsfb/default.nix b/pkgs/applications/misc/netsurf/libnsfb/default.nix index 24235f43a11..29b0a7867db 100644 --- a/pkgs/applications/misc/netsurf/libnsfb/default.nix +++ b/pkgs/applications/misc/netsurf/libnsfb/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libnsfb"; - version = "0.1.4"; + version = "0.2.1"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "176f8why9gzbaca9nnxjqasl02qzc6g507z5w3dzkcjifnkz4mzl"; + sha256 = "09qag9lgn5ahanbcyf2rvfmsz15vazfwnl8xpn8f1iczd44b0bv0"; }; nativeBuildInputs = [ pkgconfig ]; From 6750af20311152beba5bd76bf58991ca0453f25c Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:10:06 -0400 Subject: [PATCH 1458/1611] netsurf.libnsgif: 0.1.3 -> 0.2.1 --- pkgs/applications/misc/netsurf/libnsgif/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libnsgif/default.nix b/pkgs/applications/misc/netsurf/libnsgif/default.nix index 836bfd5f3e0..4de882243fe 100644 --- a/pkgs/applications/misc/netsurf/libnsgif/default.nix +++ b/pkgs/applications/misc/netsurf/libnsgif/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libnsgif"; - version = "0.1.3"; + version = "0.2.1"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "1a4z45gh0fw4iybf34fig725av25h31ffk0azi0snzh4130cklnk"; + sha256 = "0jwshypgmx16xlsbx3d8njk8a5khazlplca5mxd3rdbhrlsabbly"; }; nativeBuildInputs = [ pkgconfig ]; From 722ed66c8f81a19ff1e8f51ee7f061f1a9147c03 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:10:26 -0400 Subject: [PATCH 1459/1611] netsurf.libnsutils: 0.0.2 -> 0.0.5 --- pkgs/applications/misc/netsurf/libnsutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libnsutils/default.nix b/pkgs/applications/misc/netsurf/libnsutils/default.nix index 1e8dbe27137..3eaa882cb73 100644 --- a/pkgs/applications/misc/netsurf/libnsutils/default.nix +++ b/pkgs/applications/misc/netsurf/libnsutils/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libnsutils"; - version = "0.0.2"; + version = "0.0.5"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "03p4xmd08yhj70nyj7acjccmmshs59lv4n4zsqpsn5lgkwa23lzy"; + sha256 = "09w1rixps1iiq6wirjwxmd6h87llvjzvw565rahjb3rlyhcplfqf"; }; nativeBuildInputs = [ pkgconfig ]; From 884f7f9a56021e5ecab235dbb61c7e0edbdb6ec7 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:10:40 -0400 Subject: [PATCH 1460/1611] netsurf.libparserutils: 0.2.3 -> 0.2.4 --- pkgs/applications/misc/netsurf/libparserutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libparserutils/default.nix b/pkgs/applications/misc/netsurf/libparserutils/default.nix index ed9433b9f57..ea9d7c9ea85 100644 --- a/pkgs/applications/misc/netsurf/libparserutils/default.nix +++ b/pkgs/applications/misc/netsurf/libparserutils/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libparserutils"; - version = "0.2.3"; + version = "0.2.4"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "01gzlsabgl6x0icd8758d9jqs8rrf9574bdkjainn04w3fs3znf5"; + sha256 = "1n2794y2l0c8nv8z2pxwfnbn882987ifmxjv60zdxkhcndhswarj"; }; buildInputs = [ buildsystem perl ]; From d87f5099f0c3fd038d1780a5560d2128df7bdee8 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:10:56 -0400 Subject: [PATCH 1461/1611] netsurf.libutf8proc: 1.3.1 -> 2.4.0-1 --- pkgs/applications/misc/netsurf/libutf8proc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libutf8proc/default.nix b/pkgs/applications/misc/netsurf/libutf8proc/default.nix index a905f3a12a8..2144ccd3303 100644 --- a/pkgs/applications/misc/netsurf/libutf8proc/default.nix +++ b/pkgs/applications/misc/netsurf/libutf8proc/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libutf8proc"; - version = "1.3.1"; + version = "2.4.0-1"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "0xf659y3c6ikjnip47r30wv796a34d71p6qhc4xjs64iqszm1sbq"; + sha256 = "0wn409laqaqlqnz2d77419b5rya99vvc696vj187biy1i5livaq1"; }; nativeBuildInputs = [ pkgconfig ]; From e286d97a49954d3b2f0bba7ffdd476412d549405 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:11:15 -0400 Subject: [PATCH 1462/1611] netsurf.libwapcaplet: 0.3.0 -> 0.4.2 --- pkgs/applications/misc/netsurf/libwapcaplet/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/libwapcaplet/default.nix b/pkgs/applications/misc/netsurf/libwapcaplet/default.nix index 509cbeb4503..a234af740f3 100644 --- a/pkgs/applications/misc/netsurf/libwapcaplet/default.nix +++ b/pkgs/applications/misc/netsurf/libwapcaplet/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-${libname}-${version}"; libname = "libwapcaplet"; - version = "0.3.0"; + version = "0.4.2"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; - sha256 = "0cs1dd2afjgc3wf5gqg434hv6jdabrp9qvlpl4dp53nhkyfywna3"; + sha256 = "1fjwzbn7j8bi1b9bvwxsy3i2cr6byq2s2d29866801pjnf528g86"; }; buildInputs = [ buildsystem ]; From af982f6f3734aeac2fd88ddb43583a9b7340b379 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:11:41 -0400 Subject: [PATCH 1463/1611] netsurf.nsgenbind: 0.3 -> 0.7 --- pkgs/applications/misc/netsurf/nsgenbind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/netsurf/nsgenbind/default.nix b/pkgs/applications/misc/netsurf/nsgenbind/default.nix index 971e16848ae..f343a886283 100644 --- a/pkgs/applications/misc/netsurf/nsgenbind/default.nix +++ b/pkgs/applications/misc/netsurf/nsgenbind/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "netsurf-nsgenbind-${version}"; - version = "0.3"; + version = "0.7"; src = fetchurl { url = "http://download.netsurf-browser.org/libs/releases/nsgenbind-${version}-src.tar.gz"; - sha256 = "16xsazly7gxwywmlkf2xix9b924sj3skhgdak7218l0nc62a08gg"; + sha256 = "0rplmky4afsjwiwh7grkmcdmzg86zksa55j93dvq92f91yljwqqq"; }; buildInputs = [ buildsystem flex bison ]; From cec6c83595e000749a064b1bb8618025af2f4eee Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 20:12:39 -0400 Subject: [PATCH 1464/1611] netsurf: 3.5 -> 3.9 --- .../misc/netsurf/browser/default.nix | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index 1b800f65434..63cf88d0829 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, pkgconfig, libpng, openssl, curl, gtk2, check, SDL -, libxml2, libidn, perl, nettools, perlPackages +, libxml2, libidn, perl, nettools, perlPackages, xxd , libXcursor, libXrandr, makeWrapper , uilib ? "framebuffer" , buildsystem @@ -14,21 +14,28 @@ , libnsgif , libnsutils , libutf8proc +, wrapGAppsHook }: stdenv.mkDerivation rec { name = "netsurf-${version}"; - version = "3.5"; + version = "3.9"; # UI libs incldue Framebuffer, and gtk src = fetchurl { url = "http://download.netsurf-browser.org/netsurf/releases/source/netsurf-${version}-src.tar.gz"; - sha256 = "1k0x8mzgavfy7q9kywl6kzsc084g1xlymcnsxi5v6jp279nsdwwq"; + sha256 = "1hzcm2s2wh5sapgr000lg63hcdbj6hyajxl43xa1x80kc5piqbyp"; }; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ + pkgconfig + xxd + ] ++ stdenv.lib.optionals (uilib == "gtk") [ + wrapGAppsHook + ]; + buildInputs = [ libpng openssl curl gtk2 check libxml2 libidn perl nettools perlPackages.HTMLParser libXcursor libXrandr makeWrapper SDL buildsystem @@ -63,7 +70,7 @@ stdenv.mkDerivation rec { cmd=$(case "${uilib}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac) cp $cmd $out/bin/netsurf wrapProgram $out/bin/netsurf --set NETSURFRES $out/share/Netsurf/${uilib}/res - tar -hcf - ${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -) + tar -hcf - frontends/${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -) ''; meta = with stdenv.lib; { From df952a21ef6d6af402f42c60cbf75b954e822a1c Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 21:06:10 -0400 Subject: [PATCH 1465/1611] netsurf.libnslog: init at 0.1.2 --- .../misc/netsurf/libnslog/default.nix | 33 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/applications/misc/netsurf/libnslog/default.nix diff --git a/pkgs/applications/misc/netsurf/libnslog/default.nix b/pkgs/applications/misc/netsurf/libnslog/default.nix new file mode 100644 index 00000000000..497630c9aa6 --- /dev/null +++ b/pkgs/applications/misc/netsurf/libnslog/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, pkgconfig, bison, flex +, buildsystem +}: + +stdenv.mkDerivation rec { + + name = "netsurf-${libname}-${version}"; + libname = "libnslog"; + version = "0.1.2"; + + src = fetchurl { + url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; + sha256 = "1ggs6xvxp8fbg5w8pifalipm458ygr9ab6j2yvj8fnnmxwvdh4jd"; + }; + + nativeBuildInputs = [ pkgconfig bison flex ]; + buildInputs = [ + buildsystem + ]; + + makeFlags = [ + "PREFIX=$(out)" + "NSSHARED=${buildsystem}/share/netsurf-buildsystem" + ]; + + meta = with stdenv.lib; { + homepage = http://www.netsurf-browser.org/; + description = "NetSurf Parametric Logging Library"; + license = licenses.mit; + maintainers = [ maintainers.samueldr ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6903fc15ef1..cdaf88dbc0a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4265,6 +4265,8 @@ in libparserutils = callPackage ../applications/misc/netsurf/libparserutils { }; + libnslog = callPackage ../applications/misc/netsurf/libnslog { }; + libcss = callPackage ../applications/misc/netsurf/libcss { }; libhubbub = callPackage ../applications/misc/netsurf/libhubbub { }; From 08cde7620d92612c0a922c253c639b11b5551fe6 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 21:06:31 -0400 Subject: [PATCH 1466/1611] netsurf.libsvgtiny: init at 0.1.7 --- .../misc/netsurf/libsvgtiny/default.nix | 41 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 43 insertions(+) create mode 100644 pkgs/applications/misc/netsurf/libsvgtiny/default.nix diff --git a/pkgs/applications/misc/netsurf/libsvgtiny/default.nix b/pkgs/applications/misc/netsurf/libsvgtiny/default.nix new file mode 100644 index 00000000000..9a4f922c2b6 --- /dev/null +++ b/pkgs/applications/misc/netsurf/libsvgtiny/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, pkgconfig, gperf +, buildsystem +, libdom +, libhubbub +, libparserutils +, libwapcaplet +}: + +stdenv.mkDerivation rec { + + name = "netsurf-${libname}-${version}"; + libname = "libsvgtiny"; + version = "0.1.7"; + + src = fetchurl { + url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; + sha256 = "10bpkmvfpydj74im3r6kqm9vnvgib6afy0alx71q5n0w5yawy39c"; + }; + + nativeBuildInputs = [ pkgconfig gperf ]; + buildInputs = [ + buildsystem + libdom + libhubbub + libparserutils + libwapcaplet + ]; + + makeFlags = [ + "PREFIX=$(out)" + "NSSHARED=${buildsystem}/share/netsurf-buildsystem" + ]; + + meta = with stdenv.lib; { + homepage = http://www.netsurf-browser.org/; + description = "NetSurf SVG decoder"; + license = licenses.mit; + maintainers = [ maintainers.samueldr ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index cdaf88dbc0a..3b00a90b106 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4281,6 +4281,8 @@ in libnsutils = callPackage ../applications/misc/netsurf/libnsutils { }; + libsvgtiny = callPackage ../applications/misc/netsurf/libsvgtiny { }; + libutf8proc = callPackage ../applications/misc/netsurf/libutf8proc { }; browser = callPackage ../applications/misc/netsurf/browser { }; From c405588b7c531829569017657cbc5e4a0cba5213 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 21:06:59 -0400 Subject: [PATCH 1467/1611] netsurf.libnspsl: init at 0.1.5 --- .../misc/netsurf/libnspsl/default.nix | 33 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/applications/misc/netsurf/libnspsl/default.nix diff --git a/pkgs/applications/misc/netsurf/libnspsl/default.nix b/pkgs/applications/misc/netsurf/libnspsl/default.nix new file mode 100644 index 00000000000..f0abbdc049a --- /dev/null +++ b/pkgs/applications/misc/netsurf/libnspsl/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, pkgconfig +, buildsystem +}: + +stdenv.mkDerivation rec { + + name = "netsurf-${libname}-${version}"; + libname = "libnspsl"; + version = "0.1.5"; + + src = fetchurl { + url = "http://download.netsurf-browser.org/libs/releases/${libname}-${version}-src.tar.gz"; + sha256 = "0siq8zjfxv75i9fw6q5hkaijpdm1w3zskd5qk6vsvz8cqan4vifd"; + }; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ + buildsystem + ]; + + makeFlags = [ + "PREFIX=$(out)" + "NSSHARED=${buildsystem}/share/netsurf-buildsystem" + ]; + + meta = with stdenv.lib; { + homepage = http://www.netsurf-browser.org/; + description = "NetSurf Public Suffix List - Handling library"; + license = licenses.mit; + maintainers = [ maintainers.samueldr ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3b00a90b106..e3189e414ca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4283,6 +4283,8 @@ in libsvgtiny = callPackage ../applications/misc/netsurf/libsvgtiny { }; + libnspsl = callPackage ../applications/misc/netsurf/libnspsl { }; + libutf8proc = callPackage ../applications/misc/netsurf/libutf8proc { }; browser = callPackage ../applications/misc/netsurf/browser { }; From 268100414f1171bc5e0a04769a812fed7b15bc07 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Wed, 24 Jul 2019 21:24:08 -0400 Subject: [PATCH 1468/1611] netsurf: enables more first-party libraries --- pkgs/applications/misc/netsurf/browser/default.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index 63cf88d0829..fb5d1179e5c 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -1,18 +1,22 @@ { stdenv, fetchurl, pkgconfig, libpng, openssl, curl, gtk2, check, SDL , libxml2, libidn, perl, nettools, perlPackages, xxd , libXcursor, libXrandr, makeWrapper +, libwebp , uilib ? "framebuffer" , buildsystem , nsgenbind , libnsfb , libwapcaplet , libparserutils +, libnslog , libcss , libhubbub , libdom , libnsbmp , libnsgif +, libsvgtiny , libnsutils +, libnspsl , libutf8proc , wrapGAppsHook }: @@ -38,17 +42,21 @@ stdenv.mkDerivation rec { buildInputs = [ libpng openssl curl gtk2 check libxml2 libidn perl nettools perlPackages.HTMLParser libXcursor libXrandr makeWrapper SDL + libwebp buildsystem nsgenbind libnsfb libwapcaplet libparserutils + libnslog libcss libhubbub libdom libnsbmp libnsgif + libsvgtiny libnsutils + libnspsl libutf8proc ]; From 7fef2245382e0ba1df265a15f025a6bf81f06e57 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 2 Aug 2019 21:48:07 -0400 Subject: [PATCH 1469/1611] netsurf: backport patch resolving SSL issue --- pkgs/applications/misc/netsurf/browser/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index fb5d1179e5c..e9178c3796e 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, libpng, openssl, curl, gtk2, check, SDL +{ stdenv, fetchurl, fetchpatch, pkgconfig, libpng, openssl, curl, gtk2, check, SDL , libxml2, libidn, perl, nettools, perlPackages, xxd , libXcursor, libXrandr, makeWrapper , libwebp @@ -33,6 +33,15 @@ stdenv.mkDerivation rec { sha256 = "1hzcm2s2wh5sapgr000lg63hcdbj6hyajxl43xa1x80kc5piqbyp"; }; + patches = [ + # GTK: prefer using curl's intrinsic defaults for CURLOPT_CA* + (fetchpatch { + name = "0001-GTK-prefer-using-curl-s-intrinsic-defaults-for-CURLO.patch"; + url = "http://source.netsurf-browser.org/netsurf.git/patch/?id=87177d8aa109206d131e0d80a2080ce55dab01c7"; + sha256 = "08bc60pc5k5qpckqv21zgmgszj3rpwskfc84shs8vg92vkimv2ai"; + }) + ]; + nativeBuildInputs = [ pkgconfig xxd From e7903f2087d730a48d778193fba56a32a0033243 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 19:00:25 -0700 Subject: [PATCH 1470/1611] pythonPackages.paramiko: 2.4.2 -> 2.6.0 --- pkgs/development/python-modules/paramiko/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/paramiko/default.nix b/pkgs/development/python-modules/paramiko/default.nix index a1ecced51eb..7ea4a5ee533 100644 --- a/pkgs/development/python-modules/paramiko/default.nix +++ b/pkgs/development/python-modules/paramiko/default.nix @@ -12,11 +12,11 @@ buildPythonPackage rec { pname = "paramiko"; - version = "2.4.2"; + version = "2.6.0"; src = fetchPypi { inherit pname version; - sha256 = "a8975a7df3560c9f1e2b43dc54ebd40fd00a7017392ca5445ce7df409f900fcb"; + sha256 = "0h9hb2kp07zdfbanad527ll90n9ji7isf7m39jyp0sr21pxfvcpl"; }; checkInputs = [ pytest mock pytest-relaxed ]; From d53399e1b31dc79a003e569d27900466a0b313c9 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 2 Aug 2019 22:03:10 -0400 Subject: [PATCH 1471/1611] netsurf: only wrap one time for GTK build --- pkgs/applications/misc/netsurf/browser/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index e9178c3796e..db39e97018a 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -86,10 +86,17 @@ stdenv.mkDerivation rec { mkdir -p $out/bin $out/share/Netsurf/${uilib} cmd=$(case "${uilib}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac) cp $cmd $out/bin/netsurf - wrapProgram $out/bin/netsurf --set NETSURFRES $out/share/Netsurf/${uilib}/res tar -hcf - frontends/${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -) ''; + preFixup = '' + gappsWrapperArgs+=( + --set NETSURFRES $out/share/Netsurf/${uilib}/res + ) + '' + stdenv.lib.optionalString (uilib != "gtk") '' + wrapProgram $out/bin/netsurf "''${gappsWrapperArgs[@]}" + ''; + meta = with stdenv.lib; { homepage = http://www.netsurf-browser.org/; description = "Free opensource web browser"; From 53d094bc8b2b8dc05a7834100cee4367ef720fe6 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Sat, 3 Aug 2019 00:27:36 -0400 Subject: [PATCH 1472/1611] netsurf: Removes unneeded things Also fixes native build inputs --- pkgs/applications/misc/netsurf/browser/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index db39e97018a..55cb329fbe9 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -1,9 +1,8 @@ { stdenv, fetchurl, fetchpatch, pkgconfig, libpng, openssl, curl, gtk2, check, SDL -, libxml2, libidn, perl, nettools, perlPackages, xxd , libXcursor, libXrandr, makeWrapper , libwebp +, libxml2, libidn, perl, perlPackages, xxd , uilib ? "framebuffer" -, buildsystem , nsgenbind , libnsfb , libwapcaplet @@ -26,8 +25,6 @@ stdenv.mkDerivation rec { name = "netsurf-${version}"; version = "3.9"; - # UI libs incldue Framebuffer, and gtk - src = fetchurl { url = "http://download.netsurf-browser.org/netsurf/releases/source/netsurf-${version}-src.tar.gz"; sha256 = "1hzcm2s2wh5sapgr000lg63hcdbj6hyajxl43xa1x80kc5piqbyp"; @@ -43,16 +40,17 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ + perl + perlPackages.HTMLParser pkgconfig xxd ] ++ stdenv.lib.optionals (uilib == "gtk") [ wrapGAppsHook ]; - buildInputs = [ libpng openssl curl gtk2 check libxml2 libidn perl - nettools perlPackages.HTMLParser libXcursor libXrandr makeWrapper SDL + buildInputs = [ libpng openssl curl gtk2 check libxml2 libidn + libXcursor libXrandr makeWrapper SDL libwebp - buildsystem nsgenbind libnsfb libwapcaplet @@ -78,7 +76,6 @@ stdenv.mkDerivation rec { makeFlags = [ "PREFIX=$(out)" - "NSSHARED=${buildsystem}/share/netsurf-buildsystem" "TARGET=${uilib}" ]; From a0fe9f401dc1487162bcb4ed4686a303712b1a8b Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Sat, 3 Aug 2019 00:54:18 -0400 Subject: [PATCH 1473/1611] netsurf: cleanup derivation + reformat --- .../misc/netsurf/browser/default.nix | 98 ++++++++----------- 1 file changed, 42 insertions(+), 56 deletions(-) diff --git a/pkgs/applications/misc/netsurf/browser/default.nix b/pkgs/applications/misc/netsurf/browser/default.nix index 55cb329fbe9..0bb86fdca95 100644 --- a/pkgs/applications/misc/netsurf/browser/default.nix +++ b/pkgs/applications/misc/netsurf/browser/default.nix @@ -1,25 +1,33 @@ -{ stdenv, fetchurl, fetchpatch, pkgconfig, libpng, openssl, curl, gtk2, check, SDL -, libXcursor, libXrandr, makeWrapper -, libwebp -, libxml2, libidn, perl, perlPackages, xxd +{ stdenv, fetchurl, fetchpatch, makeWrapper, wrapGAppsHook + +# Buildtime dependencies. + +, check, pkgconfig, xxd + +# Runtime dependencies. + +, curl, expat, libXcursor, libXrandr, libidn, libjpeg, libpng, libwebp, libxml2 +, openssl, perl, perlPackages + +# uilib-specific dependencies + +, gtk2 # GTK 2 +, SDL # Framebuffer + +# Configuration + , uilib ? "framebuffer" -, nsgenbind -, libnsfb -, libwapcaplet -, libparserutils -, libnslog -, libcss -, libhubbub -, libdom -, libnsbmp -, libnsgif -, libsvgtiny -, libnsutils -, libnspsl -, libutf8proc -, wrapGAppsHook + +# Netsurf-specific dependencies + +, libcss, libdom, libhubbub, libnsbmp, libnsfb, libnsgif +, libnslog, libnspsl, libnsutils, libparserutils, libsvgtiny, libutf8proc +, libwapcaplet, nsgenbind }: +let + inherit (stdenv.lib) optional optionals; +in stdenv.mkDerivation rec { name = "netsurf-${version}"; @@ -40,60 +48,38 @@ stdenv.mkDerivation rec { ]; nativeBuildInputs = [ + makeWrapper perl perlPackages.HTMLParser pkgconfig xxd - ] ++ stdenv.lib.optionals (uilib == "gtk") [ - wrapGAppsHook - ]; + ] + ++ optional (uilib == "gtk") wrapGAppsHook + ; - buildInputs = [ libpng openssl curl gtk2 check libxml2 libidn - libXcursor libXrandr makeWrapper SDL - libwebp - nsgenbind - libnsfb - libwapcaplet - libparserutils - libnslog - libcss - libhubbub - libdom - libnsbmp - libnsgif - libsvgtiny - libnsutils - libnspsl + buildInputs = [ + check curl libXcursor libXrandr libidn libjpeg libpng libwebp libxml2 openssl + # Netsurf-specific libraries + nsgenbind libnsfb libwapcaplet libparserutils libnslog libcss + libhubbub libdom libnsbmp libnsgif libsvgtiny libnsutils libnspsl libutf8proc - ]; + ] + ++ optionals (uilib == "framebuffer") [ expat SDL ] + ++ optional (uilib == "gtk") gtk2 + ; preConfigure = '' cat < Makefile.conf - override NETSURF_GTK_RESOURCES := $out/share/Netsurf/${uilib}/res + override NETSURF_GTK_RES_PATH := $out/share/ override NETSURF_USE_GRESOURCE := YES EOF ''; makeFlags = [ - "PREFIX=$(out)" + "PREFIX=${placeholder "out"}" "TARGET=${uilib}" ]; - installPhase = '' - mkdir -p $out/bin $out/share/Netsurf/${uilib} - cmd=$(case "${uilib}" in framebuffer) echo nsfb;; gtk) echo nsgtk;; esac) - cp $cmd $out/bin/netsurf - tar -hcf - frontends/${uilib}/res | (cd $out/share/Netsurf/ && tar -xvpf -) - ''; - - preFixup = '' - gappsWrapperArgs+=( - --set NETSURFRES $out/share/Netsurf/${uilib}/res - ) - '' + stdenv.lib.optionalString (uilib != "gtk") '' - wrapProgram $out/bin/netsurf "''${gappsWrapperArgs[@]}" - ''; - meta = with stdenv.lib; { homepage = http://www.netsurf-browser.org/; description = "Free opensource web browser"; From cd9846239a8ef48a0630d80b0c5ebcead09b4219 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 07:10:03 +0200 Subject: [PATCH 1474/1611] and another gdk_pixbuf rename --- .../networking/instant-messengers/fractal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/fractal/default.nix b/pkgs/applications/networking/instant-messengers/fractal/default.nix index 0f1660096e6..bacf6b4338a 100644 --- a/pkgs/applications/networking/instant-messengers/fractal/default.nix +++ b/pkgs/applications/networking/instant-messengers/fractal/default.nix @@ -19,7 +19,7 @@ , sqlite , gst_all_1 , cairo -, gdk_pixbuf +, gdk-pixbuf , gspell , wrapGAppsHook }: @@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec { buildInputs = [ cairo dbus - gdk_pixbuf + gdk-pixbuf glib gspell gst_all_1.gst-editing-services From 52b665113235d08c568eb4cbbb14c0b88ec7beba Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 18:08:51 -0700 Subject: [PATCH 1475/1611] pythonPackages.pytest-cram: fix build --- pkgs/development/python-modules/pytest-cram/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytest-cram/default.nix b/pkgs/development/python-modules/pytest-cram/default.nix index 9639bd7f778..ff2a29384bc 100644 --- a/pkgs/development/python-modules/pytest-cram/default.nix +++ b/pkgs/development/python-modules/pytest-cram/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { # the imported and collected modules are different. checkPhase = '' rm pytest_cram/tests/__init__.py - pytest pytest_cram + pytest pytest_cram/ --ignore=pytest_cram/tests/test_examples.py ''; meta = { From 6e880c201f5823213bd481140ab064d3b147a558 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 15:50:04 -0700 Subject: [PATCH 1476/1611] pythonPackages.nbval: 0.9.1 -> 0.9.2 --- pkgs/development/python-modules/nbval/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/nbval/default.nix b/pkgs/development/python-modules/nbval/default.nix index c9ab72894ef..a0e6982f5e4 100644 --- a/pkgs/development/python-modules/nbval/default.nix +++ b/pkgs/development/python-modules/nbval/default.nix @@ -15,19 +15,20 @@ buildPythonPackage rec { pname = "nbval"; - version = "0.9.1"; + version = "0.9.2"; src = fetchPypi { inherit pname version; - sha256 = "3f18b87af4e94ccd073263dd58cd3eebabe9f5e4d6ab535b39d3af64811c7eda"; + sha256 = "0g8xl4158ngyhiynrkk72jpawnk4isznbijz0w085g269fps0vp2"; }; LC_ALL = "en_US.UTF-8"; buildInputs = [ glibcLocales ]; - checkInputs = [ matplotlib sympy pytestcov ]; + checkInputs = [ matplotlib sympy pytestcov pytest ]; propagatedBuildInputs = [ coverage ipykernel jupyter_client nbformat pytest six ]; + # ignore impure tests checkPhase = '' pytest tests --current-env --ignore tests/test_timeouts.py ''; From 0bca1209e53c52d4109d86f70bdea55ade6615b4 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 14:40:37 -0700 Subject: [PATCH 1477/1611] python3Packages.ipykernel: 5.1.0 -> 5.1.1 --- pkgs/development/python-modules/ipykernel/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ipykernel/default.nix b/pkgs/development/python-modules/ipykernel/default.nix index 043f58cfa5d..5203047b77f 100644 --- a/pkgs/development/python-modules/ipykernel/default.nix +++ b/pkgs/development/python-modules/ipykernel/default.nix @@ -13,12 +13,12 @@ buildPythonPackage rec { pname = "ipykernel"; - version = "5.1.0"; + version = "5.1.1"; disabled = pythonOlder "3.4"; src = fetchPypi { inherit pname version; - sha256 = "0fc0bf97920d454102168ec2008620066878848fcfca06c22b669696212e292f"; + sha256 = "173nm29g85w8cac3fg40b27qaq26g41wgg6qn79ql1hq4w2n5sgh"; }; checkInputs = [ pytest nose ]; From 9ef0b35a63558cf656b8db31550ed700c81528e9 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 08:20:14 -0700 Subject: [PATCH 1478/1611] pythonPackages.msreset: 0.6.8 -> 0.6.9 --- pkgs/development/python-modules/msrest/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/msrest/default.nix b/pkgs/development/python-modules/msrest/default.nix index 4b6a617c018..ede8e0801df 100644 --- a/pkgs/development/python-modules/msrest/default.nix +++ b/pkgs/development/python-modules/msrest/default.nix @@ -18,7 +18,7 @@ }: buildPythonPackage rec { - version = "0.6.8"; + version = "0.6.9"; pname = "msrest"; # no tests in PyPI tarball @@ -27,7 +27,7 @@ buildPythonPackage rec { owner = "Azure"; repo = "msrest-for-python"; rev = "v${version}"; - sha256 = "1vnh0y68vqf7hwhghbf6bjadrzlv98aj4vfz6g592lww3ijpy77w"; + sha256 = "0540dmxz90jsmwvd4q06cr1ficixknjk8q06f2dqcp06w92vnl8r"; }; propagatedBuildInputs = [ From 49f281d287d7f31079994b06235efa508585001e Mon Sep 17 00:00:00 2001 From: xrelkd <46590321+xrelkd@users.noreply.github.com> Date: Sat, 3 Aug 2019 10:12:08 +0800 Subject: [PATCH 1479/1611] font-awesome: 5.10.0 -> 5.10.1 --- pkgs/data/fonts/font-awesome-5/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/font-awesome-5/default.nix b/pkgs/data/fonts/font-awesome-5/default.nix index 39472122317..451e3feecb6 100644 --- a/pkgs/data/fonts/font-awesome-5/default.nix +++ b/pkgs/data/fonts/font-awesome-5/default.nix @@ -39,7 +39,7 @@ in { sha256 = "1j8i32dq6rrlv3kf2hnq81iqks06kczaxjks7nw3zyq1231winm9"; }; v5 = font-awesome { - version = "5.10.0"; - sha256 = "11nga1drlpkrmw307ga6plbj5z1b70cnckr465z8z6vkbcd6jkv3"; + version = "5.10.1"; + sha256 = "1ckr7n0hlhvyl8nkhyjr7k6r07czpcfp0s2mnb48mvfgxd3j992p"; }; } From af70ce28731393dfd1151d7109689ada4708033e Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 1 Aug 2019 15:23:27 -0700 Subject: [PATCH 1480/1611] pythonPackages.simplejson: 3.16.0 -> 3.16.1 --- .../python-modules/simplejson/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix index 9e80830f438..abd4854c73f 100644 --- a/pkgs/development/python-modules/simplejson/default.nix +++ b/pkgs/development/python-modules/simplejson/default.nix @@ -1,18 +1,20 @@ { lib , buildPythonPackage -, fetchPypi +, fetchFromGitHub , stdenv , pytest }: buildPythonPackage rec { pname = "simplejson"; - version = "3.16.0"; + version = "3.16.1"; doCheck = !stdenv.isDarwin; - src = fetchPypi { - inherit pname version; - sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5"; + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = "v${version}"; + sha256 = "1v80dbk3ajhgz7q5cc8k0dd22zj9rrlz838c90l5g3w1i280r1iq"; }; # Package does not need pytest, but its a bit easier debugging. From 257c6529b1d6feefe118e150b3ed15c9cf005aa0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 07:52:10 +0200 Subject: [PATCH 1481/1611] Revert "pythonPackages.simplejson: 3.16.0 -> 3.16.1" Mass-rebuild, should go to staging. This reverts commit af70ce28731393dfd1151d7109689ada4708033e. --- .../python-modules/simplejson/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/simplejson/default.nix b/pkgs/development/python-modules/simplejson/default.nix index abd4854c73f..9e80830f438 100644 --- a/pkgs/development/python-modules/simplejson/default.nix +++ b/pkgs/development/python-modules/simplejson/default.nix @@ -1,20 +1,18 @@ { lib , buildPythonPackage -, fetchFromGitHub +, fetchPypi , stdenv , pytest }: buildPythonPackage rec { pname = "simplejson"; - version = "3.16.1"; + version = "3.16.0"; doCheck = !stdenv.isDarwin; - src = fetchFromGitHub { - owner = pname; - repo = pname; - rev = "v${version}"; - sha256 = "1v80dbk3ajhgz7q5cc8k0dd22zj9rrlz838c90l5g3w1i280r1iq"; + src = fetchPypi { + inherit pname version; + sha256 = "b1f329139ba647a9548aa05fb95d046b4a677643070dc2afc05fa2e975d09ca5"; }; # Package does not need pytest, but its a bit easier debugging. From 658c0f0ce9ff56b76f1ad459d44c570c49f8a508 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 08:13:38 +0200 Subject: [PATCH 1482/1611] python38: 3.8.0b2 -> 3.8.0b3 --- pkgs/development/interpreters/python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/python/default.nix b/pkgs/development/interpreters/python/default.nix index 42fcae5e179..b3b506783cd 100644 --- a/pkgs/development/interpreters/python/default.nix +++ b/pkgs/development/interpreters/python/default.nix @@ -104,9 +104,9 @@ in { major = "3"; minor = "8"; patch = "0"; - suffix = "b2"; + suffix = "b3"; }; - sha256 = "1rh9dz5vmc56y45d6j2wfjw4m7x25i6v8vyld4mrqh06s2gn1hbl"; + sha256 = "03wq85pkpr9j56k3zg6whahc5park1pzshbakl7y50lzrkpq2ynd"; inherit (darwin) CF configd; inherit passthruFun; }; From 58e0c7b8ced63971b3bb4e65f0592e06655b83bc Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 26 Jul 2019 16:27:30 +0000 Subject: [PATCH 1483/1611] coqPackages.coquelicot: 3.0.2 -> 3.0.3 Ensures compatibility with Coq 8.10 --- .../coq-modules/coquelicot/default.nix | 23 +++++++++++++++---- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/pkgs/development/coq-modules/coquelicot/default.nix b/pkgs/development/coq-modules/coquelicot/default.nix index e316a8b792d..3b916b5e40b 100644 --- a/pkgs/development/coq-modules/coquelicot/default.nix +++ b/pkgs/development/coq-modules/coquelicot/default.nix @@ -1,10 +1,23 @@ { stdenv, fetchurl, which, coq, ssreflect }: -stdenv.mkDerivation { - name = "coq${coq.coq-version}-coquelicot-3.0.2"; - src = fetchurl { - url = "https://gforge.inria.fr/frs/download.php/file/37523/coquelicot-3.0.2.tar.gz"; +let param = + if stdenv.lib.versionAtLeast coq.coq-version "8.8" + then { + version = "3.0.3"; + uid = "38105"; + sha256 = "0y52lqx1jphv6fwf0d702vzprxmfmxggnh1hy3fznxyl4isfpg4j"; + } else { + version = "3.0.2"; + uid = "37523"; sha256 = "1biia7nfqf7vaqq5gmykl4rwjyvrcwss6r2jdf0in5pvp2rnrj2w"; + } +; in + +stdenv.mkDerivation { + name = "coq${coq.coq-version}-coquelicot-${param.version}"; + src = fetchurl { + url = "https://gforge.inria.fr/frs/download.php/file/${param.uid}/coquelicot-${param.version}.tar.gz"; + inherit (param) sha256; }; nativeBuildInputs = [ which ]; @@ -24,7 +37,7 @@ stdenv.mkDerivation { }; passthru = { - compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" ]; + compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" ]; }; } From dc5584adeabc4ca369ec98107778e4ab4758152f Mon Sep 17 00:00:00 2001 From: Jon Date: Sat, 3 Aug 2019 00:51:17 -0700 Subject: [PATCH 1484/1611] matomo: 3.9.1 -> 3.10.0 (#64848) * matomo: 3.9.1 -> 3.10.0 --- pkgs/servers/web-apps/matomo/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/servers/web-apps/matomo/default.nix b/pkgs/servers/web-apps/matomo/default.nix index 17cb8be739f..9c1e01745a8 100644 --- a/pkgs/servers/web-apps/matomo/default.nix +++ b/pkgs/servers/web-apps/matomo/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, php }: stdenv.mkDerivation rec { - name = "matomo-${version}"; - version = "3.9.1"; + pname = "matomo"; + version = "3.10.0"; src = fetchurl { url = "https://builds.matomo.org/matomo-${version}.tar.gz"; - sha256 = "1y406dnwn4jyrjr2d5qfsg3b4v7nfbh09v74dm1vlcy3mkbhv2bp"; + sha256 = "1mzqn2wh63ffzv6436cr8shl40nlj8sazsj2j37lx9pkz89n2wjz"; }; nativeBuildInputs = [ makeWrapper ]; @@ -39,8 +39,8 @@ stdenv.mkDerivation rec { cp -ra * $out/share/ # tmp/ is created by matomo in PIWIK_USER_PATH rmdir $out/share/tmp - # config/ needs to be copied to PIWIK_USER_PATH anyway - mv $out/share/config $out/ + # config/ needs to be accessed by PIWIK_USER_PATH anyway + ln -s $out/share/config $out/ makeWrapper ${php}/bin/php $out/bin/matomo-console \ --add-flags "$out/share/console" From c40512654cb8480ba14e0e2e18d0533df25b33e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20de=20Kok?= Date: Sat, 3 Aug 2019 11:03:21 +0200 Subject: [PATCH 1485/1611] drawio: 10.9.5 -> 11.1.1 Changelog: https://github.com/jgraph/drawio-desktop/releases/tag/v11.1.1 --- pkgs/applications/graphics/drawio/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/drawio/default.nix b/pkgs/applications/graphics/drawio/default.nix index a6c067bc6eb..02af754a72c 100644 --- a/pkgs/applications/graphics/drawio/default.nix +++ b/pkgs/applications/graphics/drawio/default.nix @@ -11,11 +11,11 @@ stdenv.mkDerivation rec { pname = "drawio"; - version = "10.9.5"; + version = "11.1.1"; src = fetchurl { url = "https://github.com/jgraph/drawio-desktop/releases/download/v${version}/draw.io-x86_64-${version}.rpm"; - sha256 = "13687d5bfxj7wlbh5j13pvxvs69whlg820wllk3pb1xb3syynlpn"; + sha256 = "1jibkxx00rma641c3xr7720qj9slqsvhbpi7nawi6f2f91gzyc10"; }; nativeBuildInputs = [ From 6600dd177be265044f0caba8b5beb3dbc7e3be1a Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Aug 2019 04:20:00 -0500 Subject: [PATCH 1486/1611] twitterBootstrap3: drop Bootstrap 3 has reached EOL in July 24, 2019. See: https://blog.getbootstrap.com/2019/07/24/lts-plan/ --- pkgs/development/web/twitter-bootstrap/3.nix | 26 -------------------- pkgs/top-level/all-packages.nix | 4 +-- 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100644 pkgs/development/web/twitter-bootstrap/3.nix diff --git a/pkgs/development/web/twitter-bootstrap/3.nix b/pkgs/development/web/twitter-bootstrap/3.nix deleted file mode 100644 index 71cda3d3d9f..00000000000 --- a/pkgs/development/web/twitter-bootstrap/3.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ stdenv, fetchurl, unzip }: - -stdenv.mkDerivation rec { - name = "bootstrap-${version}"; - version = "3.4.1"; - - src = fetchurl { - url = "https://github.com/twbs/bootstrap/releases/download/v${version}/bootstrap-${version}-dist.zip"; - sha256 = "0bnrxyryl4kyq250k4n2lxgkddfs9lxhqd6gq8x3kg9wfz7r75yl"; - }; - - buildInputs = [ unzip ]; - - dontBuild = true; - installPhase = '' - mkdir $out - cp -r * $out/ - ''; - - meta = { - description = "Front-end framework for faster and easier web development"; - homepage = https://getbootstrap.com/; - license = stdenv.lib.licenses.mit; - }; - -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f9235c30ffb..1a2a88705d8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6481,9 +6481,7 @@ in libX11 = xorg.libX11; }; - twitterBootstrap3 = callPackage ../development/web/twitter-bootstrap/3.nix {}; - twitterBootstrap4 = callPackage ../development/web/twitter-bootstrap {}; - twitterBootstrap = twitterBootstrap3; + twitterBootstrap = callPackage ../development/web/twitter-bootstrap {}; txr = callPackage ../tools/misc/txr { stdenv = clangStdenv; }; From f8a50fcca314e03feafcc15039f91fb829292fb1 Mon Sep 17 00:00:00 2001 From: Daniel Schaefer Date: Fri, 2 Aug 2019 18:58:47 +0200 Subject: [PATCH 1487/1611] litecli: 1.0.0 -> 1.1.0 Fixes the tests. --- pkgs/development/tools/database/litecli/default.nix | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/pkgs/development/tools/database/litecli/default.nix b/pkgs/development/tools/database/litecli/default.nix index cbf1af44057..8881bce1a38 100644 --- a/pkgs/development/tools/database/litecli/default.nix +++ b/pkgs/development/tools/database/litecli/default.nix @@ -2,7 +2,7 @@ python3Packages.buildPythonApplication rec { pname = "litecli"; - version = "1.0.0"; + version = "1.1.0"; # Python 2 won't have prompt_toolkit 2.x.x # See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408 @@ -10,15 +10,9 @@ python3Packages.buildPythonApplication rec { src = python3Packages.fetchPypi { inherit pname version; - sha256 = "0s5a6r5q09144cc5169snwis5i2jrh3z2g4mw9wi2fsjxyhgpwq5"; + sha256 = "0cqil2cmnbw0jvb14v6kbr7l9yarfgy253cbb8v9znp0l4qfs7ra"; }; - # fixes tests https://github.com/dbcli/litecli/pull/53 - postPatch = '' - substituteInPlace litecli/main.py \ - --replace 'except FileNotFoundError:' 'except (FileNotFoundError, OSError):' - ''; - propagatedBuildInputs = with python3Packages; [ cli-helpers click From eeb029c27522164c914e2b831f66204d3f85718e Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 3 Aug 2019 11:54:07 +0200 Subject: [PATCH 1488/1611] Revert "spotify: 1.0.96.181 -> 1.1.10.546" (#65833) --- pkgs/applications/audio/spotify/default.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index f7b24aa2824..77aa7994994 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, squashfsTools, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk-pixbuf, gtk2, cups, nspr, nss, libpng, libnotify , libgcrypt, systemd, fontconfig, dbus, expat, ffmpeg_3, curl, zlib, gnome3 -, at-spi2-atk, at-spi2-core, apulse +, at-spi2-atk }: let @@ -10,22 +10,20 @@ let # If an update breaks things, one of those might have valuable info: # https://aur.archlinux.org/packages/spotify/ # https://community.spotify.com/t5/Desktop-Linux - version = "1.1.10.546.ge08ef575-19"; + version = "1.0.96.181.gf6bc1b6b-12"; # To get the latest stable revision: # curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=stable' | jq '.download_url,.version,.last_updated' # To get general information: # curl -H 'Snap-Device-Series: 16' 'https://api.snapcraft.io/v2/snaps/info/spotify' | jq '.' # More examples of api usage: # https://github.com/canonical-websites/snapcraft.io/blob/master/webapp/publisher/snaps/views.py - rev = "36"; + rev = "30"; deps = [ alsaLib - apulse atk at-spi2-atk - at-spi2-core cairo cups curl @@ -74,7 +72,7 @@ stdenv.mkDerivation { # https://community.spotify.com/t5/Desktop-Linux/Redistribute-Spotify-on-Linux-Distributions/td-p/1695334 src = fetchurl { url = "https://api.snapcraft.io/api/v1/snaps/download/pOBIoZ2LrCB3rDohMxoYGnbN14EHOgD7_${rev}.snap"; - sha512 = "c49f1a86a9b737e64a475bbe62754a36f607669e908eb725a2395f0a0a6b95968e0c8ce27ab2c8b6c92fe8cbacb1ef58de11c79b92dc0f58c2c6d3a140706a1f"; + sha512 = "859730fbc80067f0828f7e13eee9a21b13b749f897a50e17c2da4ee672785cfd79e1af6336e609529d105e040dc40f61b6189524783ac93d49f991c4ea8b3c56"; }; buildInputs = [ squashfsTools makeWrapper ]; @@ -136,8 +134,6 @@ stdenv.mkDerivation { librarypath="${stdenv.lib.makeLibraryPath deps}:$libdir" wrapProgram $out/share/spotify/spotify \ --prefix LD_LIBRARY_PATH : "$librarypath" \ - --prefix LD_LIBRARY_PATH : "${apulse}/lib/apulse" \ - --set APULSE_PLAYBACK_DEVICE plug:dmix \ --prefix PATH : "${gnome3.zenity}/bin" # fix Icon line in the desktop file (#48062) @@ -162,7 +158,7 @@ stdenv.mkDerivation { homepage = https://www.spotify.com/; description = "Play music from the Spotify music service"; license = licenses.unfree; - maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau angristan ]; + maintainers = with maintainers; [ eelco ftrvxmtrx sheenobu mudri timokau ]; platforms = [ "x86_64-linux" ]; }; } From ab9a1eb009d7f378376694393eb05196b7fc4d0e Mon Sep 17 00:00:00 2001 From: Jiri Danek Date: Sat, 3 Aug 2019 12:36:11 +0200 Subject: [PATCH 1489/1611] jetbrains.datagrip: 2019.1.4 -> 2019.2.1 --- pkgs/applications/editors/jetbrains/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index eb6bbabdea4..8e2ee8b51e2 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -263,12 +263,12 @@ in datagrip = buildDataGrip rec { name = "datagrip-${version}"; - version = "2019.1.4"; /* updated by script */ + version = "2019.2.1"; /* updated by script */ description = "Your Swiss Army Knife for Databases and SQL"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/datagrip/${name}.tar.gz"; - sha256 = "0zjcn71fgngkvsixgimzm5afwjbd8zf14zzm6barap4pwp5xx0hb"; /* updated by script */ + sha256 = "0va5dcvjxq7mlkz0di5zl1ra5gv6cls3wy40fvkpm2vlirg0m31s"; /* updated by script */ }; wmClass = "jetbrains-datagrip"; update-channel = "DataGrip RELEASE"; From 6ef1949187505a8a956d95594082ec6496ae89e7 Mon Sep 17 00:00:00 2001 From: Jiri Danek Date: Sat, 3 Aug 2019 12:37:02 +0200 Subject: [PATCH 1490/1611] jetbrains.ruby-mine: 2019.1.2 -> 2019.2 --- pkgs/applications/editors/jetbrains/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/jetbrains/default.nix b/pkgs/applications/editors/jetbrains/default.nix index 8e2ee8b51e2..844999b0366 100644 --- a/pkgs/applications/editors/jetbrains/default.nix +++ b/pkgs/applications/editors/jetbrains/default.nix @@ -367,12 +367,12 @@ in ruby-mine = buildRubyMine rec { name = "ruby-mine-${version}"; - version = "2019.1.2"; /* updated by script */ + version = "2019.2"; /* updated by script */ description = "The Most Intelligent Ruby and Rails IDE"; license = stdenv.lib.licenses.unfree; src = fetchurl { url = "https://download.jetbrains.com/ruby/RubyMine-${version}.tar.gz"; - sha256 = "1zhci8nkywv66bwc6hbyh4h3x61qhv2fbmfb5gkw9znkk1qa0q6v"; /* updated by script */ + sha256 = "1f4mdarmh7m9jq432d0s9jds9288g0zgpxnlpmx12i26vvq8kykd"; /* updated by script */ }; wmClass = "jetbrains-rubymine"; update-channel = "RubyMine RELEASE"; From 48a72e1979a3868b0164ba28897a554ade182a84 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Sat, 3 Aug 2019 12:43:33 +0200 Subject: [PATCH 1491/1611] vimPlugins: update (#65834) --- pkgs/misc/vim-plugins/generated.nix | 138 ++++++++++++++-------------- 1 file changed, 69 insertions(+), 69 deletions(-) diff --git a/pkgs/misc/vim-plugins/generated.nix b/pkgs/misc/vim-plugins/generated.nix index 41c73577df7..7ad6283c930 100644 --- a/pkgs/misc/vim-plugins/generated.nix +++ b/pkgs/misc/vim-plugins/generated.nix @@ -61,12 +61,12 @@ let ale = buildVimPluginFrom2Nix { pname = "ale"; - version = "2019-07-30"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "w0rp"; repo = "ale"; - rev = "8f5ecf01200f82d12d452992a92c23fcf9e0f0e8"; - sha256 = "0yb9d1wh5b1g53bg5rjwf84m140rpsdb6i5rnp28a1w24330vxhg"; + rev = "dd1e1025b8a9b13cb7966bf2baa3e6b42a862857"; + sha256 = "0rgfsnx4dbigbc17r3ksvikmdkyfz3fl4g78nd31lxhsn3x5akcj"; }; }; @@ -182,12 +182,12 @@ let calendar-vim = buildVimPluginFrom2Nix { pname = "calendar-vim"; - version = "2019-07-20"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "itchyny"; repo = "calendar.vim"; - rev = "cf9ddfe0eb36a4d57a1240735360385e3ed5534c"; - sha256 = "0504wl874fr0lzv48l8khfrx4l59c6bklndvrgmf5xj9ppz72hza"; + rev = "f8ba659ba6a094d000f355807efb71f7975d10f0"; + sha256 = "16np6mkmn7h4rx9471yqy4k89m6w9v1gz1cyphlwn90gzm8f97xz"; }; }; @@ -314,12 +314,12 @@ let coc-go = buildVimPluginFrom2Nix { pname = "coc-go"; - version = "2019-05-24"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "josa42"; repo = "coc-go"; - rev = "2393c9860927e91874f6d13174cc1edeec758d9c"; - sha256 = "1szq2nr3gppza2rq8b6kh4a8f3h831gzbnbnv45ycrcyplb4w2sy"; + rev = "6a4b1485dbbd1e4bbc18a03beaeebe3cc6018e8f"; + sha256 = "1nd9fph6yvg1n7cabd5li9qxs3b2g0v3q7qq1n1xmp3n49c5m0nr"; }; }; @@ -391,12 +391,12 @@ let coc-lists = buildVimPluginFrom2Nix { pname = "coc-lists"; - version = "2019-07-22"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-lists"; - rev = "24e00e54ca8f4e38303f02927694d09d0ddc0287"; - sha256 = "0wjhdp4nym3f56h5bi923q46vp7c5d611fywamzva5sv5raainxq"; + rev = "999865c6bd3745689d1eb4009b9b706cb5a68617"; + sha256 = "0sq9im0bbbpsjcf22frn24rb5apxf3sravqhlvwkh34wh9qjvzgy"; }; }; @@ -545,12 +545,12 @@ let coc-tsserver = buildVimPluginFrom2Nix { pname = "coc-tsserver"; - version = "2019-07-21"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "neoclide"; repo = "coc-tsserver"; - rev = "f8ed02524da46c71e5c3b79e0707cbc6d66666f5"; - sha256 = "1w7lz287b322zan6rqimcmypaf9vq3x0ix1ka9s63qzgnpwg7g1i"; + rev = "8daf0e45d513ab3b9eb91e126e50c48b901d8cf9"; + sha256 = "1zf75zahvcq5kcrpn5m69i0sj3dv4g2m8x3jffjqnx3cnirm42r4"; }; }; @@ -622,12 +622,12 @@ let command-t = buildVimPluginFrom2Nix { pname = "command-t"; - version = "2019-06-28"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "wincent"; repo = "command-t"; - rev = "4f86fcb812b07a3d691d4b617e093b001a6ad839"; - sha256 = "06i02632q6rkq7xljfn70shlfb301l31sv8pd738anshf8qwkfff"; + rev = "02a22d27e1c4671db32b0ded1fa2bb861c16d14c"; + sha256 = "0aj9lnrd0v4296c8rwy4bp73dah0lx298yi6ybz3rma2gx9xss6c"; fetchSubmodules = true; }; }; @@ -788,12 +788,12 @@ let denite-nvim = buildVimPluginFrom2Nix { pname = "denite-nvim"; - version = "2019-07-28"; + version = "2019-08-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "denite.nvim"; - rev = "00ce66260291d059386f1aac6ef707e6dbd0c13f"; - sha256 = "174d78f5xxx2i040xqm8qmm8px3w06wnwcgmcvb0jjpy3blj2v3a"; + rev = "85fa3ed3b430df61d1b8aeb8772162acfebc1f46"; + sha256 = "1m7y3ph51wxcm3yasdg3ajxwm4bqdjq7ajg5c4f3d3xf8f2nkl87"; }; }; @@ -901,12 +901,12 @@ let deoplete-nvim = buildVimPluginFrom2Nix { pname = "deoplete-nvim"; - version = "2019-07-29"; + version = "2019-08-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "deoplete.nvim"; - rev = "3267781440f62dc5070d9a8a2d25d926b0266403"; - sha256 = "1w22b251l6wg9s90npvj04b45fyjh1rl60g7s9l5c44iqxc8aamw"; + rev = "e8cab49ac99a5bb45e16a4bf24bb697163e7beaf"; + sha256 = "1g03ybsjv7j5iad34bax949s29lxi89cs5i3g9h0ypg4if1c0g53"; }; }; @@ -1013,12 +1013,12 @@ let falcon = buildVimPluginFrom2Nix { pname = "falcon"; - version = "2019-07-29"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "fenetikm"; repo = "falcon"; - rev = "9db4ff975d5745aaa33ed52b6025dd24112b1007"; - sha256 = "04lkw240kcsrc15qydxkbg57wqr41k530zc8pzxicr6axby6xjgc"; + rev = "370f7efa1ce15d4d8fa62b2b00ea60bebd11ef73"; + sha256 = "0i5vjxwrmj0amf8dbr6slq91gg2rkvdw8gwam7qaf7n6d874qxbn"; }; }; @@ -1477,12 +1477,12 @@ let lightline-vim = buildVimPluginFrom2Nix { pname = "lightline-vim"; - version = "2019-07-25"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "itchyny"; repo = "lightline.vim"; - rev = "f2a1f47c85a1341895c20e6dbc3a9440804eec1b"; - sha256 = "0048c83fpf5snpwj913rsx7h8giymbb9k5ssjfaxcl8jfz3j6qdc"; + rev = "d589eb55305043955e65df8f326580f06e4533c9"; + sha256 = "0fvj8p5dh0gg9kxnn6shfyb84jmvv5f6wvh6fa0cgycy7xl1jrrk"; }; }; @@ -1675,12 +1675,12 @@ let neoformat = buildVimPluginFrom2Nix { pname = "neoformat"; - version = "2019-07-28"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "sbdchd"; repo = "neoformat"; - rev = "673f9d571134299951250535402ac32ad713f8d5"; - sha256 = "1jvyb6rdfd60c36vyxpkfh4cbwk8v6bhqpk5i384a6gxc7577f0v"; + rev = "528b5e47ec9c29fbbd470f2af71b8ad994a96bdb"; + sha256 = "09cq8a4ryhxvnpjvpbm0dq22ccqfmym59avxr4c0ablx1sqy9lhy"; }; }; @@ -1719,12 +1719,12 @@ let neosnippet-snippets = buildVimPluginFrom2Nix { pname = "neosnippet-snippets"; - version = "2019-07-21"; + version = "2019-08-03"; src = fetchFromGitHub { owner = "Shougo"; repo = "neosnippet-snippets"; - rev = "25dbe4ac607580fa05940dae24e544147d0bafeb"; - sha256 = "19vbk47mxa7j4bznk4vbxqzlscbk9kfqrsp6ja6x6bv7xvnhs8wm"; + rev = "c5b182d5831f298bde1d6ce9bf28ada62fb61157"; + sha256 = "0diq8yhrs0359sajzd07ri0f985lgkl5959284pbjhv3r8vm22rc"; }; }; @@ -2137,12 +2137,12 @@ let rust-vim = buildVimPluginFrom2Nix { pname = "rust-vim"; - version = "2019-07-26"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust.vim"; - rev = "18fef3b61ce18ad262ca014d11496457d8574df7"; - sha256 = "0iwc4fjvrif2sdgmzp392lyr7q2n8c2kdwvdpam7q16cql0va1ry"; + rev = "772eaa6a991d2a0f53844f241a6af3bc1ab1fc50"; + sha256 = "1794yvladda6wz574qn0cv3giainqssl864vhh16aigjjaqy76nf"; }; }; @@ -3094,12 +3094,12 @@ let vim-dispatch = buildVimPluginFrom2Nix { pname = "vim-dispatch"; - version = "2019-07-26"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-dispatch"; - rev = "8e046e365fb74309f2504e9a3bcb2234e17a371b"; - sha256 = "074k4rf568489g2rw0vaf7al20qgwpsvm3pd5jh102ibqc5m3xp8"; + rev = "c58708e820252d594541a86e31fbc95ec8d37e3e"; + sha256 = "0py41f0dkvx95w8hb3a2cys981x8nz4a0nn3hs7rjv3z0brrsxfx"; }; }; @@ -3215,12 +3215,12 @@ let vim-fireplace = buildVimPluginFrom2Nix { pname = "vim-fireplace"; - version = "2019-07-30"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fireplace"; - rev = "76b4a30d6dfdb7f7e81a934a91c6810c6acf7787"; - sha256 = "1pdf3r8an21fbh7pixmijw9m7fgkqfbwwgzbplaz3j6d123wqq4n"; + rev = "5886fd272a7957fa2791c567866c7fc2b4dec73c"; + sha256 = "11ygf520p7s7fj7gv1pnzv62ywa2afbm5kbkipbdwwnd4m90amzk"; }; }; @@ -3281,12 +3281,12 @@ let vim-fugitive = buildVimPluginFrom2Nix { pname = "vim-fugitive"; - version = "2019-07-29"; + version = "2019-08-03"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-fugitive"; - rev = "a3ab24f68148c838597567e9cb88b81427f5ea60"; - sha256 = "0kxagcy8sk98f89jgisnii03w4phpsggp9ypydcc66djpkygd8bv"; + rev = "e5a6a8c5256c8afe2c607f8566e4ef35c43b5de2"; + sha256 = "165vgx5h1qmkbir30a1hd5mym2d09wz0q556cwhipmypkyfnfzcp"; }; }; @@ -3358,12 +3358,12 @@ let vim-go = buildVimPluginFrom2Nix { pname = "vim-go"; - version = "2019-07-30"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "fatih"; repo = "vim-go"; - rev = "8e9293f729cf13f21b6e5b48b5982492d5e5f655"; - sha256 = "016zyh8j6i2d0qwcb7mw1cmcbp0i23sjf63crgmm00g645bn2cx8"; + rev = "974fd4367cd327a075b79f6d9d7b71f3e84d7a4c"; + sha256 = "1q8k9rgy191d502jl654nvlmh2nd5m2lq03l5ldyi2y6cgrd5k8d"; }; }; @@ -3810,12 +3810,12 @@ let vim-lsc = buildVimPluginFrom2Nix { pname = "vim-lsc"; - version = "2019-07-30"; + version = "2019-08-02"; src = fetchFromGitHub { owner = "natebosch"; repo = "vim-lsc"; - rev = "2cdd275bcc85962d3e8bbc2864210c7ed78019a9"; - sha256 = "0y01kk0wbf419srp3g27078lc69czfdb2mnxmjff7kam1f9krzfv"; + rev = "ad9d2bd0582419e902bc402545da397634202ed0"; + sha256 = "12b46vcc8kw6nhp177vs8b4lwh0nd34a74j5vfa2wd5d3mhqz5j8"; }; }; @@ -4118,12 +4118,12 @@ let vim-projectionist = buildVimPluginFrom2Nix { pname = "vim-projectionist"; - version = "2019-07-19"; + version = "2019-07-29"; src = fetchFromGitHub { owner = "tpope"; repo = "vim-projectionist"; - rev = "e07013ac9ed5ff998c62f5fe12800eb31b083f12"; - sha256 = "1bmcw4pawniwn01gvcxd98wp7pksd9ncqmiajvxb2pgnanpl5dk8"; + rev = "94001f00825c36fab63b9f3ca47a204111e561a2"; + sha256 = "0pppaavma07c3lxqlbk8cghdsirncxng52mjmv5qk8yar8kxqvbr"; }; }; @@ -4173,12 +4173,12 @@ let vim-racer = buildVimPluginFrom2Nix { pname = "vim-racer"; - version = "2019-04-21"; + version = "2019-07-30"; src = fetchFromGitHub { owner = "racer-rust"; repo = "vim-racer"; - rev = "4649e13a1f5a9c31781db570ac7de97e57dc0b3c"; - sha256 = "07ywhrlhh5vvxrnwac05q75a0vjrmhdjvcql88qrxwg88na6db7i"; + rev = "539e38c6ec0f747a9116452fe9ebd062222b89a3"; + sha256 = "19kfhm32mspwvnvfl96hzl67h9jcmzwwl92c37rw38pqpnm1sy1l"; }; }; @@ -4690,12 +4690,12 @@ let vim-vue = buildVimPluginFrom2Nix { pname = "vim-vue"; - version = "2019-07-29"; + version = "2019-08-01"; src = fetchFromGitHub { owner = "posva"; repo = "vim-vue"; - rev = "da6395c56b20514add2d9c8b0283aaabb96e54b1"; - sha256 = "01r96pwamdnma9vbqvrrqy91sa18d3g8w85izaacfcfibh7q87bk"; + rev = "fcdc2d25d19edf5f0dcf87bc2c5c7327190bf59b"; + sha256 = "1lryy3kqihgm3sql686z3irwsr96ka0vj10bqfsdmjzk05h87yhb"; }; }; @@ -4822,12 +4822,12 @@ let vimtex = buildVimPluginFrom2Nix { pname = "vimtex"; - version = "2019-07-30"; + version = "2019-08-03"; src = fetchFromGitHub { owner = "lervag"; repo = "vimtex"; - rev = "35292b2f4b29300102db97db2c5d4c82add1711f"; - sha256 = "0y4z9zpl2fg9dwzzz697nq1iw2jxxdc1gzbak77fdkbywx7lpymy"; + rev = "b2385ed9016442a27c8ce028ab566de864ee1910"; + sha256 = "0q2w8jhnpfzr49bqpmgya31w55pi7zvr41ar6maqchqi9fns25gf"; }; }; @@ -4932,12 +4932,12 @@ let xptemplate = buildVimPluginFrom2Nix { pname = "xptemplate"; - version = "2017-12-06"; + version = "2019-07-31"; src = fetchFromGitHub { owner = "drmingdrmer"; repo = "xptemplate"; - rev = "74aac3aebaf9c67c12c21d6b25295b9bec9c93b3"; - sha256 = "01yvas50hg7iwwrdh61407mc477byviccksgi0fkaz89p78bbd1p"; + rev = "e8c0d74b1308415dfebadaf58ba94b2d34aecec2"; + sha256 = "0x3c9f3vpkwnmshbmwg4lddivssx6s4f3b3px6nf4cxd0lbm4j9l"; }; }; From 47c63da51d09cc26ef1cc7ddadd56a7a7b28c833 Mon Sep 17 00:00:00 2001 From: Terje Larsen Date: Sat, 3 Aug 2019 13:18:40 +0200 Subject: [PATCH 1492/1611] yubikey-personalization-gui: use qt wrapped mkDerivation --- pkgs/tools/misc/yubikey-personalization-gui/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/yubikey-personalization-gui/default.nix b/pkgs/tools/misc/yubikey-personalization-gui/default.nix index 405ff745baa..5b0ad830b19 100644 --- a/pkgs/tools/misc/yubikey-personalization-gui/default.nix +++ b/pkgs/tools/misc/yubikey-personalization-gui/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, pkgconfig, yubikey-personalization, qtbase, qmake, libyubikey }: +{ stdenv, fetchurl, mkDerivation, pkgconfig, yubikey-personalization, qtbase, qmake, libyubikey }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "yubikey-personalization-gui-3.1.25"; src = fetchurl { From 14e3ee4860be2d1828501ceb60cc5ac1102a3399 Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 3 Aug 2019 07:11:47 -0400 Subject: [PATCH 1493/1611] flare: 1.10 -> 1.11 --- pkgs/games/flare/default.nix | 2 +- pkgs/games/flare/engine.nix | 4 ++-- pkgs/games/flare/game.nix | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/games/flare/default.nix b/pkgs/games/flare/default.nix index 5ae656d1fc1..28d8a17638a 100644 --- a/pkgs/games/flare/default.nix +++ b/pkgs/games/flare/default.nix @@ -1,7 +1,7 @@ { lib, buildEnv, callPackage, makeWrapper }: buildEnv { - name = "flare-1.10"; + name = "flare-1.11"; paths = [ (callPackage ./engine.nix {}) diff --git a/pkgs/games/flare/engine.nix b/pkgs/games/flare/engine.nix index 8b620835f85..526951921db 100644 --- a/pkgs/games/flare/engine.nix +++ b/pkgs/games/flare/engine.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "flare-engine"; - version = "1.10"; + version = "1.11"; src = fetchFromGitHub { owner = "flareteam"; repo = pname; rev = "v${version}"; - sha256 = "0fm7jmxl86h8199nazdi9ivsrhcv9gcymhz1l5c6l2f4d0aqdqiq"; + sha256 = "1j6raymz128miq517h9drks4gj79dajw3lsr0msqxz0z3zm6cc4n"; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/games/flare/game.nix b/pkgs/games/flare/game.nix index b10d7dfedb0..6a231a5ff7d 100644 --- a/pkgs/games/flare/game.nix +++ b/pkgs/games/flare/game.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "flare-game"; - version = "1.10"; + version = "1.11"; src = fetchFromGitHub { owner = "flareteam"; repo = pname; rev = "v${version}"; - sha256 = "1lfra4ww8za08vcgza2jvh3jrwi6zryk4ljyj32lpp9v4ws9hdh4"; + sha256 = "18m2qfbbaqklm20gnr7wzrwbmylp1jh781a4p1dq0hymqcg92x5l"; }; nativeBuildInputs = [ cmake ]; From 567f5beb1deb4eaaac227ad93452e1e0c3945ae0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Fri, 2 Aug 2019 14:49:18 -0700 Subject: [PATCH 1494/1611] pythonPackages.jsonpickle: 1.1 -> 1.2 --- .../development/python-modules/jsonpickle/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/jsonpickle/default.nix b/pkgs/development/python-modules/jsonpickle/default.nix index a6ef8e3e1fb..d21864d2682 100644 --- a/pkgs/development/python-modules/jsonpickle/default.nix +++ b/pkgs/development/python-modules/jsonpickle/default.nix @@ -1,18 +1,21 @@ { lib , buildPythonPackage , fetchPypi +, pytest }: buildPythonPackage rec { pname = "jsonpickle"; - version = "1.1"; + version = "1.2"; src = fetchPypi { inherit pname version; - sha256 = "625098cc8e5854b8c23b587aec33bc8e33e0e597636bfaca76152249c78fe5c1"; + sha256 = "16xj4r31pnd90slax5mmd5wps5s73wp9mn6sy9nhkl5ih7bj5sfk"; }; - doCheck = false; + checkInputs = [ pytest ]; + + checkPhase = "pytest tests/jsonpickle_test.py"; meta = { description = "Python library for serializing any arbitrary object graph into JSON"; @@ -20,4 +23,4 @@ buildPythonPackage rec { license = lib.licenses.bsd3; }; -} \ No newline at end of file +} From 3c1458c065c2fd94021b24b1cc2ad2308eb1fd7f Mon Sep 17 00:00:00 2001 From: Aaron Andersen Date: Sat, 3 Aug 2019 08:12:24 -0400 Subject: [PATCH 1495/1611] flare: add darwin support --- pkgs/games/flare/default.nix | 4 ++-- pkgs/games/flare/engine.nix | 5 +++-- pkgs/top-level/all-packages.nix | 4 +++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/pkgs/games/flare/default.nix b/pkgs/games/flare/default.nix index 28d8a17638a..551276b1b25 100644 --- a/pkgs/games/flare/default.nix +++ b/pkgs/games/flare/default.nix @@ -1,10 +1,10 @@ -{ lib, buildEnv, callPackage, makeWrapper }: +{ lib, buildEnv, callPackage, makeWrapper, Cocoa }: buildEnv { name = "flare-1.11"; paths = [ - (callPackage ./engine.nix {}) + (callPackage ./engine.nix { inherit Cocoa; }) (callPackage ./game.nix {}) ]; diff --git a/pkgs/games/flare/engine.nix b/pkgs/games/flare/engine.nix index 526951921db..74f983c6441 100644 --- a/pkgs/games/flare/engine.nix +++ b/pkgs/games/flare/engine.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf }: +{ stdenv, fetchFromGitHub, cmake, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf, Cocoa }: stdenv.mkDerivation rec { pname = "flare-engine"; @@ -12,7 +12,8 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake ]; - buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf ]; + buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_ttf ] + ++ stdenv.lib.optional stdenv.isDarwin Cocoa; meta = with stdenv.lib; { description = "Free/Libre Action Roleplaying Engine"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1d4295586fa..1b9e3dad000 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2997,7 +2997,9 @@ in flannel = callPackage ../tools/networking/flannel { }; - flare = callPackage ../games/flare { }; + flare = callPackage ../games/flare { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; flashbench = callPackage ../os-specific/linux/flashbench { }; From 292b922ef2112e3398505bc544823fdcda94349e Mon Sep 17 00:00:00 2001 From: Michael Weiss Date: Sat, 3 Aug 2019 14:39:52 +0200 Subject: [PATCH 1496/1611] androidStudioPackages.beta: 3.5.0.18 -> 3.5.0.19 --- pkgs/applications/editors/android-studio/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix index 63c6d26df8e..794a881090c 100644 --- a/pkgs/applications/editors/android-studio/default.nix +++ b/pkgs/applications/editors/android-studio/default.nix @@ -13,9 +13,9 @@ let sha256Hash = "090rc307mfm0yw4h592l9307lq4aas8zq0ci49csn6kxhds8rsrm"; }; betaVersion = { - version = "3.5.0.18"; # "Android Studio 3.5 RC 1" - build = "191.5717577"; - sha256Hash = "1p0w7xrfk33m1wvwnc3s3s7w9rm8wn9b3bjn566w2qpjv5ngdkn3"; + version = "3.5.0.19"; # "Android Studio 3.5 RC 2" + build = "191.5763348"; + sha256Hash = "0z7mjpk0cqwk4ysd3cdsahlg70ax90353qvvag9wgyzl2x2sr6d2"; }; latestVersion = { # canary & dev version = "3.6.0.3"; # "Android Studio 3.6 Canary 3" From 854b43404f5c3a62ca1aeafc34a6860980fb3dc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 3 Aug 2019 14:31:19 +0200 Subject: [PATCH 1497/1611] wire-desktop: fixup evaluation on other platforms version (i.e. name) is evaluated strictly before meta.platforms, apparently, so let's simply hack around that, so we may eventually fix the tarball job. --- .../networking/instant-messengers/wire-desktop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index 67d4e480110..69b8ae9ee0c 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -18,7 +18,7 @@ let version = { "x86_64-linux" = "3.9.2895"; "x86_64-darwin" = "3.9.2943"; - }.${system}; + }.${system} or ""; sha256 = { "x86_64-linux" = "0wrn95m64j4b7ym44h9zawq13kg4m12aixlyyzp56bfyczmjq4a5"; From d80de1b135cf098d8acd134385400fe3956a59e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 3 Aug 2019 14:36:55 +0200 Subject: [PATCH 1498/1611] jvmci8: fix evaluation on darwin It's not my aim to fix the build, just unblock eval and thus the tarball job. --- pkgs/development/compilers/graalvm/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/graalvm/default.nix b/pkgs/development/compilers/graalvm/default.nix index b47f94fdf9a..be03e1aeeed 100644 --- a/pkgs/development/compilers/graalvm/default.nix +++ b/pkgs/development/compilers/graalvm/default.nix @@ -273,9 +273,9 @@ in rec { if [ -z "\$JAVA_HOME" ]; then export JAVA_HOME=$out; fi EOF ''; + postFixup = openjdk.postFixup or null; dontStrip = true; # stripped javac crashes with "segmentaion fault" inherit (openjdk) meta; - inherit (openjdk) postFixup; }; graalvm8 = stdenv.mkDerivation rec { From da66614cb05b20172c068603c010f32536e6b6a4 Mon Sep 17 00:00:00 2001 From: Orivej Desh Date: Thu, 25 Jul 2019 23:40:43 +0000 Subject: [PATCH 1499/1611] rednotebook: fix "Namespace Gtk not available" error gobject-introspection setup hook looks at the packages at $hostOffset to populate GI_TYPELIB_PATH. We need gtk3 to be there. --- pkgs/applications/editors/rednotebook/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/editors/rednotebook/default.nix b/pkgs/applications/editors/rednotebook/default.nix index 1b53bb7e7f0..8e118c9e9ac 100644 --- a/pkgs/applications/editors/rednotebook/default.nix +++ b/pkgs/applications/editors/rednotebook/default.nix @@ -30,6 +30,10 @@ buildPythonApplication rec { "--suffix XDG_DATA_DIRS : $XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" ]; + # Until gobject-introspection in nativeBuildInputs is supported. + # https://github.com/NixOS/nixpkgs/issues/56943#issuecomment-472568643 + strictDeps = false; + meta = with lib; { homepage = http://rednotebook.sourceforge.net/; description = "A modern journal that includes a calendar navigation, customizable templates, export functionality and word clouds"; From 3ab32ee8f63b90ebb2c662a0429cab55d7595a97 Mon Sep 17 00:00:00 2001 From: Jake Waksbaum Date: Tue, 18 Jun 2019 19:01:38 -0700 Subject: [PATCH 1500/1611] framac: 18 -> 19 and update why3 --- .../science/logic/why3/configure.patch | 11 +++ .../science/logic/why3/default.nix | 33 +++++-- .../science/logic/why3/with-provers.nix | 30 ++++++ .../tools/analysis/frama-c/default.nix | 96 +++++++++---------- .../tools/analysis/frama-c/dynamic.diff | 12 --- pkgs/top-level/all-packages.nix | 2 +- 6 files changed, 112 insertions(+), 72 deletions(-) create mode 100644 pkgs/applications/science/logic/why3/configure.patch create mode 100644 pkgs/applications/science/logic/why3/with-provers.nix delete mode 100644 pkgs/development/tools/analysis/frama-c/dynamic.diff diff --git a/pkgs/applications/science/logic/why3/configure.patch b/pkgs/applications/science/logic/why3/configure.patch new file mode 100644 index 00000000000..3eebf3cf165 --- /dev/null +++ b/pkgs/applications/science/logic/why3/configure.patch @@ -0,0 +1,11 @@ +diff --git a/configure b/configure +--- a/configure ++++ b/configure +@@ -4029,7 +4029,6 @@ fi + + if test "$USEOCAMLFIND" = yes; then + OCAMLFINDLIB=$(ocamlfind printconf stdlib) +- OCAMLFIND=$(which ocamlfind) + if test "$OCAMLFINDLIB" != "$OCAMLLIB"; then + USEOCAMLFIND=no; + echo "but your ocamlfind is not compatible with your ocamlc:" diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index a3b369ad54a..bd538dc6c75 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -1,4 +1,5 @@ -{ fetchurl, stdenv, ocamlPackages, coq }: +{ callPackage, fetchurl, stdenv +, ocamlPackages, coqPackages, rubber, hevea, emacs }: stdenv.mkDerivation rec { name = "why3-${version}"; @@ -9,14 +10,34 @@ stdenv.mkDerivation rec { sha256 = "0xz001jhi71ja8vqrjz27v63bidrzj4qvg1yqarq6p4dmpxhk348"; }; - buildInputs = (with ocamlPackages; [ - ocaml findlib num lablgtk ocamlgraph zarith menhir ]) ++ - stdenv.lib.optionals (ocamlPackages.ocaml == coq.ocamlPackages.ocaml ) [ - coq ocamlPackages.camlp5 - ]; + buildInputs = with ocamlPackages; [ + ocaml findlib ocamlgraph zarith menhir + # Compressed Sessions + # Emacs compilation of why3.el + emacs + # Documentation + rubber hevea + # GUI + lablgtk + # WebIDE + js_of_ocaml js_of_ocaml-ppx + # Coq Support + coqPackages.coq coqPackages.flocq ocamlPackages.camlp5 + ]; + + propagatedBuildInputs = with ocamlPackages; [ camlzip num ]; + + enableParallelBuilding = true; + + # Remove unnecessary call to which + patches = [ ./configure.patch ]; + + configureFlags = [ "--enable-verbose-make" ]; installTargets = [ "install" "install-lib" ]; + passthru.withProvers = callPackage ./with-provers.nix {}; + meta = with stdenv.lib; { description = "A platform for deductive program verification"; homepage = "http://why3.lri.fr/"; diff --git a/pkgs/applications/science/logic/why3/with-provers.nix b/pkgs/applications/science/logic/why3/with-provers.nix new file mode 100644 index 00000000000..3528dbd3a64 --- /dev/null +++ b/pkgs/applications/science/logic/why3/with-provers.nix @@ -0,0 +1,30 @@ +{ stdenv, makeWrapper, runCommand, symlinkJoin, why3 }: +provers: +let configAwkScript = runCommand "why3-conf.awk" { inherit provers; } + '' + for p in $provers; do + for b in $p/bin/*; do + BASENAME=$(basename $b) + echo "/^command =/{ gsub(\"$BASENAME\", \"$b\") }" >> $out + done + done + echo '{ print }' >> $out + ''; +in stdenv.mkDerivation { + name = "${why3.name}-with-provers"; + + phases = [ "buildPhase" "installPhase" ]; + + buildInputs = [ why3 makeWrapper ] ++ provers; + + buildPhase = '' + mkdir -p $out/share/why3/ + why3 config --detect-provers -C $out/share/why3/why3.conf + awk -i inplace -f ${configAwkScript} $out/share/why3/why3.conf + ''; + + installPhase = '' + mkdir -p $out/bin + makeWrapper ${why3}/bin/why3 $out/bin/why3 --add-flags "--extra-config $out/share/why3/why3.conf" + ''; +} diff --git a/pkgs/development/tools/analysis/frama-c/default.nix b/pkgs/development/tools/analysis/frama-c/default.nix index 29a19022094..5f6b894f984 100644 --- a/pkgs/development/tools/analysis/frama-c/default.nix +++ b/pkgs/development/tools/analysis/frama-c/default.nix @@ -1,87 +1,77 @@ -{ stdenv, fetchurl, makeWrapper, ncurses, ocamlPackages, graphviz -, ltl2ba, coq, why3, autoconf +{ lib, stdenv, fetchurl, makeWrapper, writeText +, autoconf, ncurses, graphviz, doxygen +, ocamlPackages, ltl2ba, coq, why3, }: let mkocamlpath = p: "${p}/lib/ocaml/${ocamlPackages.ocaml.version}/site-lib"; - ocamlpath = "${mkocamlpath ocamlPackages.apron}:${mkocamlpath ocamlPackages.mlgmpidl}"; + runtimeDeps = with ocamlPackages; [ + apron + biniou + camlzip + easy-format + menhir + mlgmpidl + num + ocamlgraph + why3 + yojson + zarith + ]; + ocamlpath = lib.concatMapStringsSep ":" mkocamlpath runtimeDeps; in stdenv.mkDerivation rec { name = "frama-c-${version}"; - version = "18.0"; - slang = "Argon"; + version = "19.0"; + slang = "Potassium"; src = fetchurl { url = "http://frama-c.com/download/frama-c-${version}-${slang}.tar.gz"; - sha256 = "0a88k2mhafj7pz3dzgsqkrc9digkxpnvr9jqq9nbzwq8qr02bca2"; + sha256 = "190n1n4k0xbycz25bn0d2gnfxd8w6scz3nlixl7w2k2jvpqlcs3n"; + }; - why2 = fetchurl { - url = "http://why.lri.fr/download/why-2.40.tar.gz"; - sha256 = "0h1mbpxsgwvf3pbl0qbg22j6f4v1ffka24ap1ajbjk9b1yb3ali8"; - }; + preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")"; nativeBuildInputs = [ autoconf makeWrapper ]; buildInputs = with ocamlPackages; [ - ncurses ocaml findlib ltl2ba ocamlgraph - lablgtk coq graphviz zarith why3 apron + ncurses ocaml findlib ltl2ba ocamlgraph yojson menhir camlzip + lablgtk coq graphviz zarith apron why3 mlgmpidl doxygen ]; + enableParallelBuilding = true; - # Experimentally, the build segfaults with high core counts - enableParallelBuilding = false; - - unpackPhase = '' - tar xf $src - tar xf $why2 - ''; - - buildPhase = '' - cd frama* - ./configure --prefix=$out - # It is not parallel safe - make - make install - cd ../why* - FRAMAC=$out/bin/frama-c ./configure --prefix=$out - make - make install + fixupPhase = '' for p in $out/bin/frama-c{,-gui}; do wrapProgram $p --prefix OCAMLPATH ':' ${ocamlpath} done ''; - # Enter frama-c directory before patching - prePatch = ''cd frama*''; - patches = [ ./dynamic.diff ]; - postPatch = '' - # strip absolute paths to /usr/bin - for file in ./configure ./share/Makefile.common ./src/*/configure; do #*/ - substituteInPlace $file --replace '/usr/bin/' "" - done + # Allow loading of external Frama-C plugins + setupHook = writeText "setupHook.sh" '' + addFramaCPath () { + if test -d "''$1/lib/frama-c/plugins"; then + export FRAMAC_PLUGIN="''${FRAMAC_PLUGIN}''${FRAMAC_PLUGIN:+:}''$1/lib/frama-c/plugins" + export OCAMLPATH="''${OCAMLPATH}''${OCAMLPATH:+:}''$1/lib/frama-c/plugins" + fi - substituteInPlace ./src/plugins/aorai/aorai_register.ml --replace '"ltl2ba' '"${ltl2ba}/bin/ltl2ba' + if test -d "''$1/lib/frama-c"; then + export OCAMLPATH="''${OCAMLPATH}''${OCAMLPATH:+:}''$1/lib/frama-c" + fi - cd ../why* + if test -d "''$1/share/frama-c/"; then + export FRAMAC_EXTRA_SHARE="''${FRAMAC_EXTRA_SHARE}''${FRAMAC_EXTRA_SHARE:+:}''$1/share/frama-c" + fi - substituteInPlace ./Makefile.in --replace '-warn-error A' '-warn-error A-3' - substituteInPlace ./frama-c-plugin/Makefile --replace 'shell frama-c' "shell $out/bin/frama-c" - substituteInPlace ./jc/jc_make.ml --replace ' why-dp ' " $out/bin/why-dp " - substituteInPlace ./jc/jc_make.ml --replace "?= why@\n" "?= $out/bin/why@\n" - substituteInPlace ./jc/jc_make.ml --replace ' gwhy-bin@' " $out/bin/gwhy-bin@" - substituteInPlace ./jc/jc_make.ml --replace ' why3 ' " ${why3}/bin/why3 " - substituteInPlace ./jc/jc_make.ml --replace ' why3ide ' " ${why3}/bin/why3ide " - substituteInPlace ./jc/jc_make.ml --replace ' why3replayer ' " ${why3}/bin/why3replayer " - substituteInPlace ./jc/jc_make.ml --replace ' why3ml ' " ${why3}/bin/why3ml " - substituteInPlace ./jc/jc_make.ml --replace ' coqdep@' " ${coq}/bin/coqdep@" - substituteInPlace ./jc/jc_make.ml --replace 'coqc' " ${coq}/bin/coqc" - substituteInPlace ./frama-c-plugin/register.ml --replace ' jessie ' " $out/bin/jessie " - cd .. + } + + addEnvHooks "$targetOffset" addFramaCPath ''; + meta = { description = "An extensible and collaborative platform dedicated to source-code analysis of C software"; homepage = http://frama-c.com/; diff --git a/pkgs/development/tools/analysis/frama-c/dynamic.diff b/pkgs/development/tools/analysis/frama-c/dynamic.diff deleted file mode 100644 index 737cad0cda4..00000000000 --- a/pkgs/development/tools/analysis/frama-c/dynamic.diff +++ /dev/null @@ -1,12 +0,0 @@ ---- a/src/kernel_services/plugin_entry_points/dynamic.ml 2016-05-30 16:15:22.000000000 +0200 -+++ b/src/kernel_services/plugin_entry_points/dynamic.ml 2016-10-13 18:25:31.000000000 +0200 -@@ -270,7 +270,8 @@ - load_path := - List.fold_right (add_dir ~user:true) path - (List.fold_right (add_dir ~user:false) Config.plugin_dir []); -- let findlib_path = String.concat ":" !load_path in -+ let findlib_path = String.concat ":" (!load_path @ -+ try [Sys.getenv "OCAMLPATH"] with Not_found -> []) in - Klog.debug ~dkey "setting findlib path to %s" findlib_path; - Findlib.init ~env_ocamlpath:findlib_path () - diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8b082ccf7c9..f9235c30ffb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -23079,7 +23079,7 @@ in veriT = callPackage ../applications/science/logic/verit {}; - why3 = callPackage ../applications/science/logic/why3 {}; + why3 = callPackage ../applications/science/logic/why3 { }; workcraft = callPackage ../applications/science/logic/workcraft {}; From 2255e9a6bad482406fe25de1993aba4309744740 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 25 Feb 2019 15:40:06 +0100 Subject: [PATCH 1501/1611] python.pkgs.sip: 4.19.13 -> 4.19.14 --- pkgs/development/python-modules/sip/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index 2b034897a78..90ac836dcc8 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -2,14 +2,14 @@ buildPythonPackage rec { pname = sip-module; - version = "4.19.13"; + version = "4.19.14"; format = "other"; disabled = isPyPy; src = fetchurl { - url = "mirror://sourceforge/pyqt/sip/sip-${version}/sip-${version}.tar.gz"; - sha256 = "0pniq03jk1n5bs90yjihw3s3rsmjd8m89y9zbnymzgwrcl2sflz3"; + url = "https://www.riverbankcomputing.com/static/Downloads/sip/${version}/sip-${version}.tar.gz"; + sha256 = "11xgs3rf5qh5qh459biwnc2j5y08jps3j0p6hcgi7f63pifpdwqf"; }; configurePhase = '' From 03a820d3ea3fa7fd45842de74f7ba748e3604083 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 11:46:44 +0200 Subject: [PATCH 1502/1611] pythonPackages.sip: 4.19.14 -> 4.19.18 --- .../python-modules/sip/default.nix | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index 90ac836dcc8..cb1575f9349 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -2,25 +2,38 @@ buildPythonPackage rec { pname = sip-module; - version = "4.19.14"; + version = "4.19.18"; format = "other"; disabled = isPyPy; src = fetchurl { url = "https://www.riverbankcomputing.com/static/Downloads/sip/${version}/sip-${version}.tar.gz"; - sha256 = "11xgs3rf5qh5qh459biwnc2j5y08jps3j0p6hcgi7f63pifpdwqf"; + sha256 = "07kyd56xgbb40ljb022rq82shgxprlbl0z27mpf1b6zd00w8dgf0"; }; configurePhase = '' ${python.executable} ./configure.py \ --sip-module ${sip-module} \ - -d $out/lib/${python.libPrefix}/site-packages \ + -d $out/${python.sitePackages} \ -b $out/bin -e $out/include ''; enableParallelBuilding = true; + installCheckPhase = let + modules = [ + sip-module + "sipconfig" + ]; + imports = lib.concatMapStrings (module: "import ${module};") modules; + in '' + echo "Checking whether modules can be imported..." + PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ${python.interpreter} -c "${imports}" + ''; + + doCheck = true; + meta = with lib; { description = "Creates C++ bindings for Python modules"; homepage = "http://www.riverbankcomputing.co.uk/"; From c3839deddd3077ab7423bc3ce4f18e4d3aee78e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 25 Feb 2019 15:41:02 +0100 Subject: [PATCH 1503/1611] python.pkgs.pyqt5: 5.11.3 -> 5.13.0 This upgrades pyqt5 and fixes the build. Note that the QtWebEngine module is split into `pyqtwebengine` by upstream and us. If your application gives an error that a Qt module is missing, then that is most likely because it was not included when building pyqt5. The solution is to simply add it here to the `(native)BuildInputs`. Don't forget to add an import check. We should include all the modules (except qtwebkit) that are needed. --- pkgs/development/python-modules/pyqt/5.x.nix | 93 +++++++++++++++++--- 1 file changed, 80 insertions(+), 13 deletions(-) diff --git a/pkgs/development/python-modules/pyqt/5.x.nix b/pkgs/development/python-modules/pyqt/5.x.nix index 288f35f2352..5791299bdc1 100644 --- a/pkgs/development/python-modules/pyqt/5.x.nix +++ b/pkgs/development/python-modules/pyqt/5.x.nix @@ -1,5 +1,10 @@ { lib, fetchurl, pythonPackages, pkgconfig -, qmake, lndir, qtbase, qtsvg, qtwebengine, dbus +, dbus +, qmake, lndir +, qtbase +, qtsvg +, qtdeclarative +, qtwebchannel , withConnectivity ? false, qtconnectivity , withWebKit ? false, qtwebkit , withWebSockets ? false, qtwebsockets @@ -9,29 +14,61 @@ let inherit (pythonPackages) buildPythonPackage python isPy3k dbus-python enum34; - sip = pythonPackages.sip.override { sip-module = "PyQt5.sip"; }; + sip = (pythonPackages.sip.override { sip-module = "PyQt5.sip"; }).overridePythonAttrs(oldAttrs: { + # If we install sip in another folder, then we need to create a __init__.py as well + # if we want to be able to import it with Python 2. + # Python 3 could rely on it being an implicit namespace package, however, + # PyQt5 we made an explicit namespace package so sip should be as well. + postInstall = '' + cat << EOF > $out/${python.sitePackages}/PyQt5/__init__.py + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) + EOF + ''; + }); in buildPythonPackage rec { - pname = "PyQt"; - version = "5.11.3"; + pname = "pyqt"; + version = "5.13.0"; format = "other"; src = fetchurl { - url = "mirror://sourceforge/pyqt/PyQt5/PyQt-${version}/PyQt5_gpl-${version}.tar.gz"; - sha256 = "0wqh4srqkcc03rvkwrcshaa028psrq58xkys6npnyhqxc0apvdf9"; + url = "https://www.riverbankcomputing.com/static/Downloads/PyQt5/${version}/PyQt5_gpl-${version}.tar.gz"; + sha256 = "1ydgdz28f1v17qqz3skyv26k5l0w63fr4dncc5xm49jr2gjzznqc"; }; outputs = [ "out" "dev" ]; - nativeBuildInputs = [ pkgconfig qmake lndir sip ]; - - buildInputs = [ dbus sip ]; - - propagatedBuildInputs = [ qtbase qtsvg qtwebengine dbus-python ] - ++ lib.optional (!isPy3k) enum34 + nativeBuildInputs = [ + pkgconfig + qmake + lndir + sip + qtbase + qtsvg + qtdeclarative + qtwebchannel + ] ++ lib.optional withConnectivity qtconnectivity ++ lib.optional withWebKit qtwebkit - ++ lib.optional withWebSockets qtwebsockets; + ++ lib.optional withWebSockets qtwebsockets + ; + + buildInputs = [ + dbus + qtbase + qtsvg + qtdeclarative + ] + ++ lib.optional withConnectivity qtconnectivity + ++ lib.optional withWebKit qtwebkit + ++ lib.optional withWebSockets qtwebsockets + ; + + propagatedBuildInputs = [ + dbus-python + sip + ] ++ lib.optional (!isPy3k) enum34; patches = [ # Fix some wrong assumptions by ./configure.py @@ -39,6 +76,10 @@ in buildPythonPackage rec { ./pyqt5-fix-dbus-mainloop-support.patch ]; + passthru = { + inherit sip; + }; + configurePhase = '' runHook preConfigure @@ -62,8 +103,34 @@ in buildPythonPackage rec { for i in $out/bin/*; do wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH" done + + # Let's make it a namespace package + cat << EOF > $out/${python.sitePackages}/PyQt5/__init__.py + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) + EOF ''; + installCheckPhase = let + modules = [ + "PyQt5" + "PyQt5.QtCore" + "PyQt5.QtQml" + "PyQt5.QtWidgets" + "PyQt5.QtGui" + ] + ++ lib.optional withWebSockets "PyQt5.QtWebSockets" + ++ lib.optional withWebKit "PyQt5.QtWebKit" + ++ lib.optional withConnectivity "PyQt5.QtConnectivity" + ; + imports = lib.concatMapStrings (module: "import ${module};") modules; + in '' + echo "Checking whether modules can be imported..." + ${python.interpreter} -c "${imports}" + ''; + + doCheck = true; + enableParallelBuilding = true; meta = with lib; { From 497f1a00f13e608d1c3363a94c649a00a18ba0bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 25 Feb 2019 17:21:32 +0100 Subject: [PATCH 1504/1611] python.pkgs.pyqtwebengine: init at 5.12.1 5.13.0 is available, however, it assumes qt 5.13 is used and fails to build due to a missing QWebEngineNotification class. --- .../python-modules/pyqtwebengine/default.nix | 89 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 4 + 2 files changed, 93 insertions(+) create mode 100644 pkgs/development/python-modules/pyqtwebengine/default.nix diff --git a/pkgs/development/python-modules/pyqtwebengine/default.nix b/pkgs/development/python-modules/pyqtwebengine/default.nix new file mode 100644 index 00000000000..7d745aa9e10 --- /dev/null +++ b/pkgs/development/python-modules/pyqtwebengine/default.nix @@ -0,0 +1,89 @@ +{ lib, fetchurl, pythonPackages, pkgconfig +, qmake, qtbase, qtsvg, qtwebengine +}: + +let + + inherit (pythonPackages) buildPythonPackage python isPy3k pyqt5 enum34; + inherit (pyqt5) sip; + +in buildPythonPackage rec { + pname = "pyqtwebengine"; + version = "5.12.1"; + format = "other"; + + src = fetchurl { + url = "https://www.riverbankcomputing.com/static/Downloads/PyQtWebEngine/${version}/PyQtWebEngine_gpl-${version}.tar.gz"; + sha256 = "0wylkd7fh2g27y3710rpxmj9wx0wpi3z7qbv6khiddm15rkh81w6"; + }; + + outputs = [ "out" "dev" ]; + + nativeBuildInputs = [ + pkgconfig + qmake + sip + qtbase + qtsvg + qtwebengine + ]; + + buildInputs = [ + sip + qtbase + qtsvg + qtwebengine + ]; + + propagatedBuildInputs = [ pyqt5 ] + ++ lib.optional (!isPy3k) enum34; + + configurePhase = '' + runHook preConfigure + + mkdir -p "$out/share/sip/PyQt5" + + # FIXME: Without --no-dist-info, I get + # unable to create /nix/store/yv4pzx3lxk3lscq0pw3hqzs7k4x76xsm-python3-3.7.2/lib/python3.7/site-packages/PyQtWebEngine-5.12.dist-info + ${python.executable} configure.py -w \ + --destdir="$out/${python.sitePackages}/PyQt5" \ + --no-dist-info \ + --apidir="$out/api/${python.libPrefix}" \ + --sipdir="$out/share/sip/PyQt5" \ + --pyqt-sipdir="${pyqt5}/share/sip/PyQt5" \ + --stubsdir="$out/${python.sitePackages}/PyQt5" + + runHook postConfigure + ''; + + postInstall = '' + # Let's make it a namespace package + cat << EOF > $out/${python.sitePackages}/PyQt5/__init__.py + from pkgutil import extend_path + __path__ = extend_path(__path__, __name__) + EOF + ''; + + installCheckPhase = let + modules = [ + "PyQt5.QtWebEngine" + "PyQt5.QtWebEngineWidgets" + ]; + imports = lib.concatMapStrings (module: "import ${module};") modules; + in '' + echo "Checking whether modules can be imported..." + PYTHONPATH=$PYTHONPATH:$out/${python.sitePackages} ${python.interpreter} -c "${imports}" + ''; + + doCheck = true; + + + enableParallelBuilding = true; + + meta = with lib; { + description = "Python bindings for Qt5"; + homepage = http://www.riverbankcomputing.co.uk; + license = licenses.gpl3; + platforms = platforms.mesaPlatforms; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2e55e933961..0896322e510 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -949,6 +949,10 @@ in { */ pyqt5_with_qtwebkit = self.pyqt5.override { withWebKit = true; }; + pyqtwebengine = pkgs.libsForQt5.callPackage ../development/python-modules/pyqtwebengine { + pythonPackages = self; + }; + pysc2 = callPackage ../development/python-modules/pysc2 { }; pyscard = callPackage ../development/python-modules/pyscard { inherit (pkgs.darwin.apple_sdk.frameworks) PCSC; }; From 2912844728ec253c84d6c4254a55be00525a0698 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 25 Feb 2019 17:23:21 +0100 Subject: [PATCH 1505/1611] qutebrowser: add pyqtwebengine to propagatedBuildInputs --- pkgs/applications/networking/browsers/qutebrowser/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 03a5aa7bfe2..5283d2e3c5d 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -46,7 +46,7 @@ in python3Packages.buildPythonApplication rec { ]; propagatedBuildInputs = with python3Packages; [ - pyyaml pyqt5 jinja2 pygments + pyyaml pyqt5 pyqtwebengine jinja2 pygments pypeg2 cssutils pyopengl attrs # scripts and userscripts libs tldextract beautifulsoup4 From e65102bde72df182707298133e69513a1a79a9d4 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 14:13:13 +0200 Subject: [PATCH 1506/1611] pythonPackages.spyder-kernels: 0.4.4 -> 0.5.1 --- pkgs/development/python-modules/spyder-kernels/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/spyder-kernels/default.nix b/pkgs/development/python-modules/spyder-kernels/default.nix index a3aaa942a9b..206b0799b4a 100644 --- a/pkgs/development/python-modules/spyder-kernels/default.nix +++ b/pkgs/development/python-modules/spyder-kernels/default.nix @@ -3,11 +3,11 @@ buildPythonPackage rec { pname = "spyder-kernels"; - version = "0.4.4"; + version = "0.5.1"; src = fetchPypi { inherit pname version; - sha256 = "0g3754s71cnh7kygps6gbzrhs5gb47p3pblr7hcvxk1mzl3xw94r"; + sha256 = "7e124fad5203b748005e952cf33b44695dbb9d92f5e0dc5443e7ca0db817f400"; }; propagatedBuildInputs = [ From 888b8c819e4b7683d9ce833601d44459425c0bce Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 14:13:33 +0200 Subject: [PATCH 1507/1611] pythonPackages.spyder: 3.3.4 -> 3.3.6 and fix with pyqt5 5.13 --- pkgs/development/python-modules/spyder/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/spyder/default.nix b/pkgs/development/python-modules/spyder/default.nix index 406cd6e8627..7222f18d5f9 100644 --- a/pkgs/development/python-modules/spyder/default.nix +++ b/pkgs/development/python-modules/spyder/default.nix @@ -1,21 +1,23 @@ { stdenv, buildPythonPackage, fetchPypi, makeDesktopItem, jedi, pycodestyle, psutil, pyflakes, rope, numpy, scipy, matplotlib, pylint, keyring, numpydoc, qtconsole, qtawesome, nbconvert, mccabe, pyopengl, cloudpickle, pygments, - spyder-kernels, qtpy, pyzmq, chardet }: + spyder-kernels, qtpy, pyzmq, chardet +, pyqtwebengine +}: buildPythonPackage rec { pname = "spyder"; - version = "3.3.4"; + version = "3.3.6"; src = fetchPypi { inherit pname version; - sha256 = "1fa5yhw0sjk5qydydp76scyxd8lvyciknq0vajnq0mxhhvfig3ra"; + sha256 = "1z7qw1h3rhca12ycv8xrzw6z2gf81v0j6lfq9kpwh472w4vk75v1"; }; propagatedBuildInputs = [ jedi pycodestyle psutil pyflakes rope numpy scipy matplotlib pylint keyring numpydoc qtconsole qtawesome nbconvert mccabe pyopengl cloudpickle spyder-kernels - pygments qtpy pyzmq chardet + pygments qtpy pyzmq chardet pyqtwebengine ]; # There is no test for spyder @@ -35,6 +37,7 @@ buildPythonPackage rec { # remove dependency on pyqtwebengine # this is still part of the pyqt 5.11 version we have in nixpkgs sed -i /pyqtwebengine/d setup.py + substituteInPlace setup.py --replace "pyqt5<5.13" "pyqt5" ''; # Create desktop item From 33a876e61955e641bd805b187bf164df60e15644 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Sat, 3 Aug 2019 14:13:45 +0200 Subject: [PATCH 1508/1611] anki: fix with pyqtwebengine --- pkgs/games/anki/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index 7cd9212c5a8..2530202a565 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -7,7 +7,7 @@ , lame , mplayer , libpulseaudio -, pyqt5 +, pyqtwebengine , decorator , beautifulsoup4 , sqlalchemy @@ -83,7 +83,7 @@ buildPythonApplication rec { outputs = [ "out" "doc" "man" ]; propagatedBuildInputs = [ - pyqt5 sqlalchemy beautifulsoup4 send2trash pyaudio requests decorator + pyqtwebengine sqlalchemy beautifulsoup4 send2trash pyaudio requests decorator markdown ] ++ lib.optional plotsSupport matplotlib From 76188dad03c934d4223b7d497e412163529630de Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 13:13:27 +0200 Subject: [PATCH 1509/1611] LTS Haskell 13.30 --- .../haskell-modules/configuration-hackage2nix.yaml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index ee519f903ca..006cc3922e7 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -43,7 +43,7 @@ core-packages: - ghcjs-base-0 default-package-overrides: - # LTS Haskell 13.27 + # LTS Haskell 13.30 - abstract-deque ==0.3 - abstract-deque-tests ==0.3 - abstract-par ==0.3.3 @@ -345,6 +345,7 @@ default-package-overrides: - bzlib ==0.5.0.5 - bzlib-conduit ==0.3.0.1 - c2hs ==0.28.6 + - Cabal ==2.4.1.0 - cabal2spec ==2.2.2.1 - cabal-doctest ==1.0.6 - cabal-rpm ==0.12.6 @@ -901,6 +902,7 @@ default-package-overrides: - hashids ==1.0.2.4 - hashmap ==1.3.3 - hashtables ==1.2.3.3 + - haskeline ==0.7.5.0 - haskell-gi ==0.21.5 - haskell-gi-base ==0.21.5 - haskell-gi-overloading ==1.0 @@ -1375,6 +1377,7 @@ default-package-overrides: - mono-traversable ==1.0.11.0 - mono-traversable-instances ==0.1.0.0 - mountpoints ==1.0.2 + - mtl ==2.2.2 - mtl-compat ==0.2.2 - mtl-prelude ==2.0.3.1 - multiarg ==0.30.0.10 @@ -1500,6 +1503,7 @@ default-package-overrides: - parallel-io ==0.3.3 - paripari ==0.6.0.0 - parseargs ==0.2.0.9 + - parsec ==3.1.13.0 - parsec-class ==1.0.0.0 - parsec-numbers ==0.1.0 - parsec-numeric ==0.1.0.0 @@ -1913,6 +1917,7 @@ default-package-overrides: - statistics ==0.15.0.0 - stb-image-redux ==0.2.1.2 - step-function ==0.2 + - stm ==2.5.0.0 - stm-chans ==3.0.0.4 - stm-conduit ==4.0.1 - stm-delay ==0.1.1.1 @@ -2021,6 +2026,7 @@ default-package-overrides: - testing-feat ==1.1.0.0 - testing-type-modifiers ==0.1.0.1 - texmath ==0.11.2.2 + - text ==1.2.3.1 - text-binary ==0.2.1.1 - text-builder ==0.6.5.1 - text-conversions ==0.3.0 @@ -2277,6 +2283,7 @@ default-package-overrides: - xdg-basedir ==0.2.2 - xeno ==0.3.5.1 - xenstore ==0.1.1 + - xhtml ==3000.2.2.1 - xls ==0.1.2 - xlsx ==0.7.2 - xlsx-tabular ==0.2.2.1 From 12d815161abd4554482fc6dcad2443391c07667b Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Tue, 23 Jul 2019 13:54:20 +0200 Subject: [PATCH 1510/1611] hackage2nix: Unmark discord-haskell as broken https://github.com/NixOS/nixpkgs/issues/58987 --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 006cc3922e7..7f0d761b07e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -4036,7 +4036,6 @@ broken-packages: - dirtree - discogs-haskell - discord-gateway - - discord-haskell - discord-hs - discord-rest - discord-types From 4a8831e38b307e80051757ab04e4e391f5bab97b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 13:08:24 +0200 Subject: [PATCH 1511/1611] haskell2nix: update list of broken builds to fix evaluation on Hydra --- .../configuration-hackage2nix.yaml | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 7f0d761b07e..6eeade90a07 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -2434,6 +2434,7 @@ package-maintainers: - funcmp - git-annex - hackage-db + - haskell-ci - hledger - hledger-interest - hledger-ui @@ -2798,6 +2799,7 @@ broken-packages: - apelsin - api-builder - api-tools + - api-yoti - apiary - apiary-authenticate - apiary-clientsession @@ -2894,6 +2896,7 @@ broken-packages: - atomic-primops-vector - atomo - ats-format + - ats-pkg - ats-setup - ats-storable - attic-schedule @@ -2963,7 +2966,9 @@ broken-packages: - azurify - b9 - babylon + - backblaze-b2-hs - backdropper + - backstop - backtracking-exceptions - backward-state - bag @@ -3010,6 +3015,7 @@ broken-packages: - bdcs-api - beam - beam-newtype-field + - beam-postgres - beam-th - beamable - beautifHOL @@ -3178,6 +3184,7 @@ broken-packages: - blunt - BNFC-meta - bno055-haskell + - board-games - bogre-banana - bolt - boltzmann-brain @@ -3190,11 +3197,13 @@ broken-packages: - boolexpr - boombox - boomslang + - boots - borel - boring-window-switcher - bot - bounded-array - bowntz + - box - braid - brain-bleep - Bravo @@ -3326,6 +3335,7 @@ broken-packages: - call-haskell-from-anything - camfort - campfire + - canon - canonical-filepath - canonical-json - canteven-http @@ -3420,6 +3430,9 @@ broken-packages: - checked - Checked - checkmate + - chell + - chell-hunit + - chell-quickcheck - chessIO - chevalier-common - chiasma @@ -3750,6 +3763,7 @@ broken-packages: - crf-chain2-generic - crf-chain2-tiers - critbit + - criterion-compare - criterion-plus - criterion-to-html - criu-rpc @@ -3870,6 +3884,7 @@ broken-packages: - data-type - data-util - data-variant + - database-id-groundhog - database-study - datadog - datadog-tracing @@ -3981,8 +3996,11 @@ broken-packages: - dgim - dgs - dhall-check + - dhall-lsp-server - dhall-nix + - dhall-to-cabal - dhcp-lease-parser + - dhrun - dia-base - dia-functions - diagrams-boolean @@ -4198,6 +4216,7 @@ broken-packages: - effect-handlers - effect-stack - effin + - egison - egison-quote - egison-tutorial - ehaskell @@ -4238,6 +4257,7 @@ broken-packages: - entangle - EntrezHTTP - entwine + - enum-text-rio - EnumContainers - enumerate - enumerate-function @@ -4506,6 +4526,7 @@ broken-packages: - FM-SBLEX - fmark - FModExRaw + - fmt-for-rio - fn-extra - foldl-incremental - foldl-statistics @@ -4635,6 +4656,7 @@ broken-packages: - gact - game-probability - gameclock + - gamgee - Gamgine - gamma - Ganymede @@ -4749,6 +4771,7 @@ broken-packages: - ghcjs-promise - ghcjs-xhr - ghclive + - ghcprofview - ght - gi-cairo-again - gi-dbusmenu @@ -4762,7 +4785,12 @@ broken-packages: - gi-gstpbutils - gi-gsttag - gi-gstvideo + - gi-gtk + - gi-gtk-declarative + - gi-gtk-declarative-app-simple + - gi-gtk-hs - gi-gtkosxapplication + - gi-gtksource - gi-handy - gi-notify - gi-ostree @@ -4770,6 +4798,7 @@ broken-packages: - gi-poppler - gi-secret - gi-soup + - gi-vte - gi-wnck - gi-xlib - giak @@ -4951,6 +4980,7 @@ broken-packages: - gtfs - gtk-serialized-event - gtk-sni-tray + - gtk-strut - gtk-toy - gtk2hs-hello - gtk2hs-rpn @@ -5115,6 +5145,7 @@ broken-packages: - hArduino - hardware-edsl - HaRe + - harg - hark - harmony - HarmTrace @@ -5518,6 +5549,7 @@ broken-packages: - hjson-query - hjsonpointer - hjsonschema + - hjugement-cli - HJVM - hkgr - hlatex @@ -6005,8 +6037,10 @@ broken-packages: - identifiers - idiii - idna2008 + - idris - IDynamic - ieee-utils + - iexcloud - ifcxt - IFS - ig @@ -6329,6 +6363,8 @@ broken-packages: - ks-test - KSP - ktx + - kubernetes-client + - kubernetes-client-core - kure - kure-your-boilerplate - KyotoCabinet @@ -6345,6 +6381,7 @@ broken-packages: - lambda-calculator - lambda-canvas - lambda-devs + - lambda-options - lambda-toolbox - lambda2js - lambdaBase @@ -6746,6 +6783,7 @@ broken-packages: - marxup - masakazu-bot - MASMGen + - massiv-test - master-plan - matchers - math-grads @@ -6797,6 +6835,7 @@ broken-packages: - mellon-gpio - mellon-web - melody + - membrain - memcache-conduit - memcache-haskell - memcached-binary @@ -7146,6 +7185,7 @@ broken-packages: - network-netpacket - network-protocol-xmpp - network-rpca + - network-run - network-server - network-service - network-simple @@ -7322,6 +7362,7 @@ broken-packages: - optional - options-time - optparse-applicative-simple + - optparse-enum - orc - orchestrate - OrchestrateDB @@ -7377,6 +7418,7 @@ broken-packages: - pang-a-lambda - pangraph - panpipe + - pantry - pantry-tmp - papa-export - papa-implement @@ -7425,6 +7467,7 @@ broken-packages: - pasta - pastis - pasty + - patat - patches-vector - Pathfinder - pathfindingcore @@ -7659,6 +7702,7 @@ broken-packages: - postgresql-named - postgresql-query - postgresql-simple-bind + - postgresql-simple-named - postgresql-simple-queue - postgresql-simple-sop - postgresql-simple-typed @@ -7985,8 +8029,10 @@ broken-packages: - Referees - refh - reflection-extras + - reflex - reflex-animation - reflex-backend-wai + - reflex-basic-host - reflex-dom-svg - reflex-gloss - reflex-gloss-scene @@ -8110,6 +8156,8 @@ broken-packages: - rfc1413-server - rhythm-game-tutorial - RichConditional + - ridley + - ridley-extras - riemann - riff - ring-buffer @@ -8269,6 +8317,7 @@ broken-packages: - scotty-binding-play - scotty-blaze - scotty-fay + - scotty-form - scotty-format - scotty-hastache - scotty-resource @@ -8779,6 +8828,7 @@ broken-packages: - statsd-client - statsdi - stb-image-redux + - stc-lang - stdata - stdf - stdio @@ -8808,6 +8858,7 @@ broken-packages: - StrappedTemplates - stratum-tool - stratux + - stratux-demo - stratux-http - stratux-types - stratux-websockets @@ -8902,6 +8953,7 @@ broken-packages: - symantic-cli - symantic-http-test - symantic-lib + - symantic-xml - symengine - symengine-hs - sync @@ -9023,6 +9075,7 @@ broken-packages: - terminal-punch - terminal-text - termination-combinators + - termonad - termplot - terntup - terrahs @@ -9193,6 +9246,7 @@ broken-packages: - trace-function-call - traced - tracetree + - tracing - tracker - traction - tracy @@ -9214,6 +9268,8 @@ broken-packages: - translatable-intset - translate - translate-cli + - trasa-extra + - trasa-th - travis - travis-meta-yaml - trawl @@ -9392,6 +9448,7 @@ broken-packages: - unsequential - unused - uom-plugin + - up - update-nix-fetchgit - Updater - uploadcare @@ -9411,6 +9468,7 @@ broken-packages: - urldecode - UrlDisp - urldisp-happstack + - urlpath - URLT - urn - urn-random @@ -9495,6 +9553,7 @@ broken-packages: - verilog - versioning - versioning-servant + - vflow-types - vfr-waypoints - vgrep - vhd @@ -9688,6 +9747,7 @@ broken-packages: - writer-cps-lens - writer-cps-monads-tf - writer-cps-morph + - ws - wsdl - wsedit - wss-client @@ -9708,6 +9768,7 @@ broken-packages: - wxSimpleCanvas - wxturtle - wyvern + - X - x-dsp - X11-extras - X11-rm @@ -9814,6 +9875,7 @@ broken-packages: - yate - yavie - yaya + - yaya-hedgehog - yaya-unsafe - ycextra - yeller From 2b4d44573a641b5711d28c47fd3b5b277ca4a3ee Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 11 Jul 2019 02:30:39 +0200 Subject: [PATCH 1512/1611] hackage-packages.nix: automatic Haskell package set update This update was generated by hackage2nix v2.14.4-1-g6d6ded8 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/bd2ec34f885123ac8346bc650365565bc197ca05. --- .../haskell-modules/hackage-packages.nix | 3880 +++++++++++++---- 1 file changed, 3020 insertions(+), 860 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 1bfeac57840..84a35340d60 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -636,8 +636,8 @@ self: { }: mkDerivation { pname = "AbortT-transformers"; - version = "1.0.1.2"; - sha256 = "1skqp7zmh7vzrfhfnc6mn125xmqz2p0c8pmaccxynga9623dmsb2"; + version = "1.0.1.3"; + sha256 = "14bv2bmd6fi1kf0id3ah7gfabbqzbpahws6zy11ji6h3j29pwk8y"; libraryHaskellDepends = [ base transformers ]; testHaskellDepends = [ base HUnit QuickCheck test-framework test-framework-hunit @@ -2664,8 +2664,8 @@ self: { pname = "Cabal"; version = "2.4.1.0"; sha256 = "151mrrd9sskghvlwmj32da5gafwqj6sv9xz9fmp84b7vm4nr0skk"; - revision = "1"; - editedCabalFile = "1dvs2i0kfk8rji9wbrv7y0iydbif9jzg4c7rmaa6lxg8hp7mij2n"; + revision = "2"; + editedCabalFile = "04kg5xh8yabmp1ymk32gw2r66l76338rsglq8i4j2913bhq23vwa"; setupHaskellDepends = [ mtl parsec ]; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory filepath @@ -2954,8 +2954,8 @@ self: { }: mkDerivation { pname = "ChasingBottoms"; - version = "1.3.1.5"; - sha256 = "0hfk2cb9da5fvr96x8lzij93yl3rvax2id9a8gihd5j5aq4kxx30"; + version = "1.3.1.6"; + sha256 = "17lw2mdzrn2f4w0byfdkyd7h7pcnjzv3n3giapcjg6bza5xjqfbd"; libraryHaskellDepends = [ base containers mtl QuickCheck random syb ]; @@ -11761,8 +11761,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "LParse"; - version = "0.3.0.0"; - sha256 = "0nl76ycq608p2wm61pqn64wmq5aqmnwc9p8k4mvx8zwqw06jqlmm"; + version = "0.3.1.0"; + sha256 = "1fw5s0688d5x2i2qarac2r96pj13b2fhla0212fzwlsgpbmg7g8z"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base ]; description = "A continuation-based parser library"; @@ -13319,17 +13319,17 @@ self: { }) {}; "Monadoro" = callPackage - ({ mkDerivation, ansi-terminal, base, process, time }: + ({ mkDerivation, ansi-terminal, base, doctest, time }: mkDerivation { pname = "Monadoro"; - version = "0.1.2.0"; - sha256 = "1bqaiarr5gv42xl8fww67iryyh1mscwdkgcahdc988y19ag8a4j9"; + version = "0.2.1.1"; + sha256 = "0f7swjf5lr7w7gld46l74plc2x79v6dbq5zmsglpk1x8k7vpfj79"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base process time ]; - executableHaskellDepends = [ ansi-terminal base process time ]; - testHaskellDepends = [ ansi-terminal base process time ]; - description = "A minimalistic CLI Pomodoro timer, based on a library of the same purpose"; + libraryHaskellDepends = [ ansi-terminal base time ]; + executableHaskellDepends = [ ansi-terminal base time ]; + testHaskellDepends = [ ansi-terminal base doctest time ]; + description = "A minimalistic CLI Pomodoro timer"; license = stdenv.lib.licenses.mit; }) {}; @@ -15301,12 +15301,17 @@ self: { }: mkDerivation { pname = "Persistence"; - version = "1.1.4.2"; - sha256 = "0lvzzcmsmpmsj63ysf3ad6a2v14cf61daz767fxkcf7b7cl50cjp"; + version = "2.0"; + sha256 = "0iwkvplldy6sznp33n5w5ink312cg6shh3qg98canz6j6hrspa8y"; + revision = "1"; + editedCabalFile = "063rizxqn44pzblj2nxyk3ia2zymryrqq55n081g21aih38n8xlr"; libraryHaskellDepends = [ base containers maximal-cliques parallel vector ]; - description = "Quickly detect clusters and holes in data"; + testHaskellDepends = [ + base containers maximal-cliques parallel vector + ]; + description = "A versatile library for topological data analysis"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -17518,27 +17523,28 @@ self: { }) {}; "ShellCheck" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, mtl, parsec, process, QuickCheck, regex-tdfa + ({ mkDerivation, aeson, array, base, bytestring, Cabal, containers + , deepseq, Diff, directory, filepath, mtl, parsec, process + , QuickCheck, regex-tdfa }: mkDerivation { pname = "ShellCheck"; - version = "0.6.0"; - sha256 = "1xkxrn1j5qvh2pxm0cnjpqqqsvwr7xy8pk31cwbh8r879nrrzrzn"; + version = "0.7.0"; + sha256 = "1vx895cp5k5h0680xfwj74lk97m9y627n965x6srds0gfnbkzy9s"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal process ]; libraryHaskellDepends = [ - aeson base bytestring containers directory mtl parsec process - QuickCheck regex-tdfa + aeson array base bytestring containers deepseq Diff directory + filepath mtl parsec process QuickCheck regex-tdfa ]; executableHaskellDepends = [ - aeson base bytestring containers directory mtl parsec QuickCheck - regex-tdfa + aeson array base bytestring containers deepseq Diff directory + filepath mtl parsec QuickCheck regex-tdfa ]; testHaskellDepends = [ - aeson base bytestring containers directory mtl parsec QuickCheck - regex-tdfa + aeson array base bytestring containers deepseq Diff directory + filepath mtl parsec QuickCheck regex-tdfa ]; description = "Shell script analysis tool"; license = stdenv.lib.licenses.gpl3; @@ -18868,12 +18874,17 @@ self: { }: mkDerivation { pname = "TeX-my-math"; - version = "0.201.1.1"; - sha256 = "064ram3i1a59ypd8i3wnp7x9vbkc8zawby52676y4pfkqvddnhnm"; + version = "0.201.2.0"; + sha256 = "1dg06lqh2x9smq6hbcn2gyh2qll9z7v4gbd1ipvf2isdwxc201vk"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ base decimal-literals dumb-cas hashable haskell-src-meta HaTeX template-haskell text unordered-containers vector-space void ]; + executableHaskellDepends = [ + base directory filepath HaTeX process text + ]; testHaskellDepends = [ base directory dumb-cas filepath haskell-src-meta HaTeX process template-haskell text @@ -20407,6 +20418,21 @@ self: { broken = true; }) {}; + "X" = callPackage + ({ mkDerivation, base, bytestring, deepseq, text, text-short }: + mkDerivation { + pname = "X"; + version = "0.2.0.0"; + sha256 = "1p03ah2qi694kcbwb7gk2cypj6p42c6ajn51wpak96p9vmpp5a4r"; + libraryHaskellDepends = [ + base bytestring deepseq text text-short + ]; + description = "A light-weight XML library"; + license = "BSD-3-Clause AND GPL-3.0-or-later"; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "X11" = callPackage ({ mkDerivation, base, data-default, libX11, libXext, libXinerama , libXrandr, libXrender, libXScrnSaver @@ -24872,8 +24898,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "alist"; - version = "0.1.1.7"; - sha256 = "1kklhgksg0lvl4v80y82c5zsfwrr7nbdb8sl64529589sfrsrpsw"; + version = "0.1.2.7"; + sha256 = "0ydq2sxyfgij0rf54i3ajj4hdqjawhcdsgi822yrkq86xjvsxc4w"; libraryHaskellDepends = [ base ]; description = "lists with O(1) append"; license = stdenv.lib.licenses.bsd3; @@ -28715,14 +28741,14 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-athena_7_1_2" = callPackage + "antiope-athena_7_2_2" = callPackage ({ mkDerivation, amazonka, amazonka-athena, amazonka-core, base , lens, resourcet, text, unliftio-core }: mkDerivation { pname = "antiope-athena"; - version = "7.1.2"; - sha256 = "19xh9cm859r3p5n0plpwddp4zkgr3sg74xx8m4zv160xi3dggjia"; + version = "7.2.2"; + sha256 = "1a5mp3s22qv41p9cgiyz6gc96kwz9f9wwx8v4dr1jjgslmlik4m1"; libraryHaskellDepends = [ amazonka amazonka-athena amazonka-core base lens resourcet text unliftio-core @@ -28740,8 +28766,8 @@ self: { ({ mkDerivation, aeson, antiope-s3, avro, base, bytestring, text }: mkDerivation { pname = "antiope-contract"; - version = "7.1.2"; - sha256 = "0k6zn6nhl5b92qjbaxlm1fk21k4anhlm1p86ggydnw8alh9r2lwc"; + version = "7.2.2"; + sha256 = "188p6b4mzj513ylkjlf9z3cra6qdv6x0ar4fc1hjs1waggng0b9d"; libraryHaskellDepends = [ aeson antiope-s3 avro base bytestring text ]; @@ -28771,7 +28797,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-core_7_1_2" = callPackage + "antiope-core_7_2_2" = callPackage ({ mkDerivation, aeson, aeson-lens, amazonka, amazonka-core, base , bytestring, exceptions, generic-lens, hedgehog, hspec , http-client, http-types, hw-hspec-hedgehog, lens, mtl, resourcet @@ -28779,8 +28805,8 @@ self: { }: mkDerivation { pname = "antiope-core"; - version = "7.1.2"; - sha256 = "0i3gwc07hkl50abkk80jnjkp6iixn6hr6q2h1kj206d6cigjx0cn"; + version = "7.2.2"; + sha256 = "0j27bd5f9zkx0qhsl9zam7rzvprcb5075rm174gr77gmf4lqraaa"; libraryHaskellDepends = [ aeson amazonka amazonka-core base bytestring exceptions generic-lens http-client http-types lens mtl resourcet text @@ -28817,17 +28843,17 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-dynamodb_7_1_2" = callPackage - ({ mkDerivation, amazonka, amazonka-core, amazonka-dynamodb + "antiope-dynamodb_7_2_2" = callPackage + ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-dynamodb , antiope-core, base, generic-lens, lens, text, unliftio-core , unordered-containers }: mkDerivation { pname = "antiope-dynamodb"; - version = "7.1.2"; - sha256 = "0g74fg6fclmrfjkhgqyhq95l967bhjah6rk0davrbd3dfandr612"; + version = "7.2.2"; + sha256 = "19a41njxa09sf1qlc9zmy65nmwp02lcn0q0dk5gwqkpmjjf5ah3s"; libraryHaskellDepends = [ - amazonka amazonka-core amazonka-dynamodb antiope-core base + aeson amazonka amazonka-core amazonka-dynamodb antiope-core base generic-lens lens text unliftio-core unordered-containers ]; testHaskellDepends = [ @@ -28861,7 +28887,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-messages_7_1_2" = callPackage + "antiope-messages_7_2_2" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, base, bytestring , generic-lens, hedgehog, hspec, hw-hspec-hedgehog, lens , lens-aeson, monad-loops, network-uri, scientific, text @@ -28869,8 +28895,8 @@ self: { }: mkDerivation { pname = "antiope-messages"; - version = "7.1.2"; - sha256 = "0y2dwf0sbay4dm9ns11k2qpjqmgnvxswmd508bwf52305avi97vc"; + version = "7.2.2"; + sha256 = "0vdp8kkqv4g3lkjvwhg4yyb8rjwphjp4gjmx0b6910jwizhslqwf"; libraryHaskellDepends = [ aeson amazonka amazonka-core base bytestring generic-lens lens lens-aeson monad-loops network-uri text unliftio-core @@ -28891,8 +28917,8 @@ self: { }: mkDerivation { pname = "antiope-optparse-applicative"; - version = "7.1.2"; - sha256 = "0cp9yizvibhi7bwm22z62gx8hv3cm1vbpbv70a0ws4k2i2cq8yrr"; + version = "7.2.2"; + sha256 = "006jr3kdyvfzyabxr4zc4kf9sm8pkaca572whdxwpnfpz0m54k0j"; libraryHaskellDepends = [ amazonka amazonka-core amazonka-s3 base optparse-applicative text ]; @@ -28929,7 +28955,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-s3_7_1_2" = callPackage + "antiope-s3_7_2_2" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 , antiope-core, antiope-messages, attoparsec, base, bytestring , conduit, conduit-extra, exceptions, generic-lens, hedgehog, hspec @@ -28938,8 +28964,8 @@ self: { }: mkDerivation { pname = "antiope-s3"; - version = "7.1.2"; - sha256 = "1z85kn6675r54f1hnfn6g0yhg7cjfka32h913qnljd7qmb6ikhhs"; + version = "7.2.2"; + sha256 = "14lmkkr86n8h7iqkjvc5sxmccxi3fv97kgljb8m8fl35fxcwd1j8"; libraryHaskellDepends = [ aeson amazonka amazonka-core amazonka-s3 antiope-core antiope-messages attoparsec base bytestring conduit conduit-extra @@ -28976,15 +29002,15 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-sns_7_1_2" = callPackage + "antiope-sns_7_2_2" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sns, base , bytestring, generic-lens, hedgehog, hspec, hw-hspec-hedgehog , lens, text, time, unliftio-core }: mkDerivation { pname = "antiope-sns"; - version = "7.1.2"; - sha256 = "14mq13q6gvg8r3dm329xzbbxlxxx0p5r5gyyqglpqfmdi5dy9948"; + version = "7.2.2"; + sha256 = "10wbf6pmws8gway4i7z55z7xi2az5xzb65yj0q1qc86vxbchnxkk"; libraryHaskellDepends = [ aeson amazonka amazonka-core amazonka-sns base bytestring generic-lens lens text time unliftio-core @@ -29021,7 +29047,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "antiope-sqs_7_1_2" = callPackage + "antiope-sqs_7_2_2" = callPackage ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sqs, base , bytestring, conduit, generic-lens, hedgehog, hspec , hw-hspec-hedgehog, lens, lens-aeson, monad-loops, mtl @@ -29030,8 +29056,8 @@ self: { }: mkDerivation { pname = "antiope-sqs"; - version = "7.1.2"; - sha256 = "0gpg340nwnni7ybzcq82i7p3j61gw1120209s9ziyqfrlbs7r976"; + version = "7.2.2"; + sha256 = "0qjnwrc23zav84s4ffqi2g97yrfpkxmzm981ik6h5fsi7f6wzj0n"; libraryHaskellDepends = [ aeson amazonka amazonka-core amazonka-sqs base bytestring conduit generic-lens lens lens-aeson monad-loops mtl network-uri split text @@ -29047,6 +29073,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "antiope-swf" = callPackage + ({ mkDerivation, amazonka-swf, base, hedgehog, hspec + , hw-hspec-hedgehog, lens, text + }: + mkDerivation { + pname = "antiope-swf"; + version = "7.2.2"; + sha256 = "1shw4sw0nfrkdcjjin3nq63igfalywz03w171v5knn2kx6xwf4yy"; + libraryHaskellDepends = [ amazonka-swf base lens text ]; + testHaskellDepends = [ base hedgehog hspec hw-hspec-hedgehog ]; + description = "Please see the README on Github at "; + license = stdenv.lib.licenses.mit; + }) {}; + "antiprimes" = callPackage ({ mkDerivation, base, hspec, primes }: mkDerivation { @@ -29274,6 +29314,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "apecs_0_8_1" = callPackage + ({ mkDerivation, array, base, containers, criterion, linear, mtl + , QuickCheck, template-haskell, vector + }: + mkDerivation { + pname = "apecs"; + version = "0.8.1"; + sha256 = "10m3lbfg97psnk3z2ml1q9g2ymwa2fnsknrh6ggp9k5c7mskslv0"; + libraryHaskellDepends = [ + array base containers mtl template-haskell vector + ]; + testHaskellDepends = [ base containers linear QuickCheck vector ]; + benchmarkHaskellDepends = [ base criterion linear ]; + description = "Fast Entity-Component-System library for game programming"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "apecs-gloss" = callPackage ({ mkDerivation, apecs, apecs-physics, base, containers, gloss , linear @@ -29289,6 +29347,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "apecs-gloss_0_2_1" = callPackage + ({ mkDerivation, apecs, apecs-physics, base, containers, gloss + , linear + }: + mkDerivation { + pname = "apecs-gloss"; + version = "0.2.1"; + sha256 = "0v1nagzwhb1l9wfjl4yp3ymbhbpjcrwrih2y8cxkzws5wxgbbnvg"; + libraryHaskellDepends = [ + apecs apecs-physics base containers gloss linear + ]; + description = "Simple gloss renderer for apecs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "apecs-physics" = callPackage ({ mkDerivation, apecs, base, Cabal, containers, inline-c, linear , template-haskell, vector @@ -29305,6 +29379,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "apecs-physics_0_4_0" = callPackage + ({ mkDerivation, apecs, base, Cabal, containers, inline-c, linear + , template-haskell, vector + }: + mkDerivation { + pname = "apecs-physics"; + version = "0.4.0"; + sha256 = "0yqylgsl2n0fsb73qdvl1iinazfzzx64683jp37sr2dm8jpys3lc"; + setupHaskellDepends = [ base Cabal ]; + libraryHaskellDepends = [ + apecs base containers inline-c linear template-haskell vector + ]; + description = "2D physics for apecs"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "apecs-physics-gloss" = callPackage ({ mkDerivation, apecs, apecs-physics, base, gloss }: mkDerivation { @@ -29322,8 +29413,8 @@ self: { }: mkDerivation { pname = "apecs-stm"; - version = "0.1.1"; - sha256 = "0d0l48fynsk84y2ifb004dpr39s2hdcwrgfp1ds3qff6784sh66b"; + version = "0.1.2"; + sha256 = "0wq20ibki20xccp7gvajzfmp90m9vr0sdx55m3ni91j76bsswqg8"; libraryHaskellDepends = [ apecs base containers list-t stm stm-containers template-haskell vector @@ -29403,8 +29494,8 @@ self: { }: mkDerivation { pname = "api-monobank"; - version = "0.1.2.0"; - sha256 = "0n9nj6cfszp2wz003sn0xk9533pawlv3afk5p96l6id964dpcdhb"; + version = "0.1.3.0"; + sha256 = "0ajp0wv3nkv2db9bx68mq67ag46s2b26p80fx9ypw8nqhnkddg0g"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -29471,6 +29562,28 @@ self: { broken = true; }) {}; + "api-yoti" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , containers, crypto-pubkey-openssh, crypto-pubkey-types + , crypto-simple, cryptonite, directory, hashable, memory, mtl, pem + , text, time, transformers, wreq + }: + mkDerivation { + pname = "api-yoti"; + version = "0.1.0.0"; + sha256 = "1c2jb9qzfzkcbcxabc7xvqc6npdm23dglpd9zqic7wafm7jdmf0s"; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring containers + crypto-pubkey-openssh crypto-pubkey-types crypto-simple cryptonite + directory hashable memory mtl pem text time transformers wreq + ]; + testHaskellDepends = [ base bytestring text ]; + description = "Api bindings for Yoti services"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "apiary" = callPackage ({ mkDerivation, aeson, base, blaze-builder, blaze-html , blaze-markup, bytestring, bytestring-lexing, case-insensitive @@ -30815,8 +30928,8 @@ self: { }: mkDerivation { pname = "arithmetic"; - version = "1.2"; - sha256 = "0yipdx61ky9db46fy2cbal4qc9y94arkcj4z1dj28bx7j7fnmvzk"; + version = "1.3"; + sha256 = "09zfwp38ydg7gzivym6k4aid93jm78g1dad04zd0g6zsqb8gpcvb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -32608,8 +32721,8 @@ self: { }: mkDerivation { pname = "ats-pkg"; - version = "3.2.5.17"; - sha256 = "0ss71fn4d1grasgm1rvg7y4sngfnhsknmf6gxby0yvwfm95fi8aj"; + version = "3.2.5.18"; + sha256 = "16v3308zap5jhpd9xsvjdgp28330iscaikdl76jqf5jhb175pxzr"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -32628,6 +32741,8 @@ self: { doHaddock = false; description = "A build tool for ATS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "ats-setup" = callPackage @@ -33777,6 +33892,41 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "avro_0_4_5_1" = callPackage + ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors + , binary, bytestring, containers, data-binary-ieee754, deepseq + , directory, extra, fail, gauge, hashable, hspec, hspec-discover + , lens, lens-aeson, mtl, pure-zlib, QuickCheck, random + , raw-strings-qq, scientific, semigroups, tagged, template-haskell + , text, tf-random, transformers, unordered-containers, vector, zlib + }: + mkDerivation { + pname = "avro"; + version = "0.4.5.1"; + sha256 = "1a7ykj2c8bk7y8iaac1076sp4c4qzxh37d97w0xv63srmy7l1r8s"; + libraryHaskellDepends = [ + aeson array base base16-bytestring bifunctors binary bytestring + containers data-binary-ieee754 deepseq fail hashable mtl scientific + semigroups tagged template-haskell text tf-random + unordered-containers vector zlib + ]; + testHaskellDepends = [ + aeson array base base16-bytestring bifunctors binary bytestring + containers directory extra fail hashable hspec lens lens-aeson mtl + pure-zlib QuickCheck raw-strings-qq scientific semigroups tagged + template-haskell text tf-random transformers unordered-containers + vector + ]; + testToolDepends = [ hspec-discover ]; + benchmarkHaskellDepends = [ + aeson base bytestring containers gauge hashable mtl random + raw-strings-qq text transformers unordered-containers vector + ]; + description = "Avro serialization support for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "avwx" = callPackage ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative , parsers, pretty-show, text @@ -34758,6 +34908,8 @@ self: { pname = "b-tree"; version = "0.1.4"; sha256 = "17hcv85020dm5h3449bfa763bcbl723h17chah4418dby2ql5lxg"; + revision = "1"; + editedCabalFile = "106vsqgv7545p0rky073sd7viidbg4zy3fzlb39r9irbl3p3giih"; libraryHaskellDepends = [ base binary bytestring containers directory errors exceptions filepath lens mmap mtl pipes pipes-interleave transformers vector @@ -34840,6 +34992,40 @@ self: { broken = true; }) {}; + "backblaze-b2-hs" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , case-insensitive, conduit, containers, cryptonite, formatting + , http-client, http-types, protolude, req, req-conduit, scientific + , tasty, tasty-hunit, text, time, unliftio, unliftio-core + }: + mkDerivation { + pname = "backblaze-b2-hs"; + version = "0.1.0.0"; + sha256 = "18xpjz3w9yw79732xiz8278gbd1v9vg534l0h9azg0wwhd8vbh7j"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring case-insensitive conduit + containers cryptonite formatting http-client http-types protolude + req req-conduit scientific text time unliftio unliftio-core + ]; + executableHaskellDepends = [ + aeson base base64-bytestring bytestring case-insensitive conduit + containers cryptonite formatting http-client http-types protolude + req req-conduit scientific text time unliftio unliftio-core + ]; + testHaskellDepends = [ + aeson base base64-bytestring bytestring case-insensitive conduit + containers cryptonite formatting http-client http-types protolude + req req-conduit scientific tasty tasty-hunit text time unliftio + unliftio-core + ]; + description = "A client library to access Backblaze B2 cloud storage in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "backdropper" = callPackage ({ mkDerivation, base, directory, haskell98, hslogger, old-time , process, random @@ -34880,6 +35066,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "backstop" = callPackage + ({ mkDerivation, base, directory, filepath, HUnit, mtl, process + , QuickCheck, unix + }: + mkDerivation { + pname = "backstop"; + version = "1.3.0.352"; + sha256 = "1790n52amkvwlm92rh6i6rxfxbw2n2cfam2sf0cx4yf160jxvyj3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base directory filepath mtl process unix + ]; + executableHaskellDepends = [ + base directory filepath mtl process unix + ]; + testHaskellDepends = [ + base filepath HUnit process QuickCheck unix + ]; + description = "Backstop a target directory by source directories"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "backtracking-exceptions" = callPackage ({ mkDerivation, base, either, free, kan-extensions, mtl , semigroupoids, semigroups, transformers @@ -35531,6 +35742,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "base-unicode-symbols_0_2_4_2" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "base-unicode-symbols"; + version = "0.2.4.2"; + sha256 = "0qkhp4ybmx4nbqqkrmw3hkm47bv61i2wpi20qb09wvk10g2dcr23"; + libraryHaskellDepends = [ base ]; + description = "Unicode alternatives for common functions and operators"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "base16-bytestring" = callPackage ({ mkDerivation, base, bytestring, ghc-prim }: mkDerivation { @@ -35756,6 +35979,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "basement_0_0_11" = callPackage + ({ mkDerivation, base, ghc-prim }: + mkDerivation { + pname = "basement"; + version = "0.0.11"; + sha256 = "0srlws74yiraqaapgcjd9p5d1fwb3zr9swcz74jpjm55fls2nn37"; + libraryHaskellDepends = [ base ghc-prim ]; + description = "Foundation scrap box of array & string"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "basen-bytestring" = callPackage ({ mkDerivation, base, bytestring, QuickCheck }: mkDerivation { @@ -36437,6 +36672,8 @@ self: { ]; description = "Connection layer between beam and postgres"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "beam-sqlite" = callPackage @@ -36666,17 +36903,25 @@ self: { "bench-show" = callPackage ({ mkDerivation, ansi-wl-pprint, base, Chart, Chart-diagrams, csv - , directory, filepath, mwc-random, split, statistics, text + , directory, filepath, mwc-random, optparse-applicative + , optparse-simple, semigroups, split, statistics, text , transformers, vector }: mkDerivation { pname = "bench-show"; - version = "0.2.2"; - sha256 = "12fi59j9a98n4q6gjvjsf0hjc2rsy33b7kzjiqxy5wzh8isciaa4"; + version = "0.3.0"; + sha256 = "0c690w96iyj6idikcwl75ci5sqvfh4fdd8mvb4z24x3xb24kirh5"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ ansi-wl-pprint base Chart Chart-diagrams csv directory filepath mwc-random split statistics transformers vector ]; + executableHaskellDepends = [ + ansi-wl-pprint base Chart Chart-diagrams csv directory filepath + mwc-random optparse-applicative optparse-simple semigroups split + statistics transformers vector + ]; testHaskellDepends = [ base split text ]; description = "Show, plot and compare benchmark results"; license = stdenv.lib.licenses.bsd3; @@ -38822,7 +39067,7 @@ self: { license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) wlc;}; + }) {wlc = null;}; "bindings-yices" = callPackage ({ mkDerivation, base, gmp, yices }: @@ -39178,8 +39423,8 @@ self: { }: mkDerivation { pname = "birch-beer"; - version = "0.1.4.0"; - sha256 = "0vmyp13lxppkar2lgkc231kx7am0h8p2gq6m0swzaz3ra64yh39c"; + version = "0.1.4.2"; + sha256 = "02q89rp7f12vf257f2m7g34qwv15027k7gsm4yq95blhi4c5rbg0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -39913,21 +40158,21 @@ self: { }) {}; "bitvec" = callPackage - ({ mkDerivation, base, HUnit, primitive, QuickCheck - , quickcheck-classes, test-framework, test-framework-hunit - , test-framework-quickcheck2, vector + ({ mkDerivation, base, gauge, ghc-prim, primitive + , quickcheck-classes, tasty, tasty-hunit, tasty-quickcheck, vector }: mkDerivation { pname = "bitvec"; - version = "0.2.0.1"; - sha256 = "0mgmf60gy3nzp66mf4bydls46bddk76rz40zkdfp0hhsspasia9b"; - libraryHaskellDepends = [ base primitive vector ]; + version = "1.0.0.0"; + sha256 = "0m33q70h513iiiwv7w45p4zz7jkf00p5kjy9x3ds6y2rk4di4vl2"; + libraryHaskellDepends = [ base ghc-prim primitive vector ]; testHaskellDepends = [ - base HUnit primitive QuickCheck quickcheck-classes test-framework - test-framework-hunit test-framework-quickcheck2 vector + base primitive quickcheck-classes tasty tasty-hunit + tasty-quickcheck vector ]; + benchmarkHaskellDepends = [ base gauge vector ]; description = "Unboxed bit vectors"; - license = stdenv.lib.licenses.publicDomain; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -41113,33 +41358,36 @@ self: { }) {}; "board-games" = callPackage - ({ mkDerivation, array, base, cgi, containers, criterion, html - , httpd-shed, network-uri, non-empty, QuickCheck, random - , transformers, utility-ht + ({ mkDerivation, array, base, cgi, containers, criterion + , enummapset, html, httpd-shed, network-uri, non-empty, parallel + , QuickCheck, random, transformers, utility-ht }: mkDerivation { pname = "board-games"; - version = "0.2.1"; - sha256 = "1gsbk1m58f82b1ic0fv1ygslz4lyxxdl0a849q5hl4qbl9s7rbqb"; + version = "0.3"; + sha256 = "1ylwibyl0j1v0bdrpfnjhdm431npagavxzgi2l5sp0scgpkcyyx7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - array base cgi containers html non-empty random transformers - utility-ht + array base cgi containers enummapset html non-empty QuickCheck + random transformers utility-ht ]; executableHaskellDepends = [ array base cgi containers html httpd-shed network-uri non-empty random transformers utility-ht ]; testHaskellDepends = [ - array base containers non-empty QuickCheck random transformers - utility-ht + array base containers enummapset non-empty QuickCheck random + transformers utility-ht ]; benchmarkHaskellDepends = [ - base containers criterion non-empty utility-ht + base containers criterion enummapset non-empty parallel QuickCheck + random transformers utility-ht ]; description = "Three games for inclusion in a web server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "bogocopy" = callPackage @@ -41612,6 +41860,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "boots" = callPackage + ({ mkDerivation, base, data-default, exceptions, fast-logger, hspec + , microlens, monad-logger, mtl, salak, salak-yaml, text + , unliftio-core + }: + mkDerivation { + pname = "boots"; + version = "0.0.3"; + sha256 = "1glf3hq3vqa3rd115ym7jy5jmwx8mzqbidj875274safg8n552rm"; + libraryHaskellDepends = [ + base data-default exceptions fast-logger microlens monad-logger mtl + salak salak-yaml text unliftio-core + ]; + testHaskellDepends = [ + base data-default exceptions fast-logger hspec microlens + monad-logger mtl salak salak-yaml text unliftio-core + ]; + description = "Boot application by plugins"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "bootstrap-types" = callPackage ({ mkDerivation, base, text }: mkDerivation { @@ -41899,6 +42170,43 @@ self: { broken = true; }) {}; + "box" = callPackage + ({ mkDerivation, async, attoparsec, base, concurrency + , contravariant, data-default, dejafu, doctest, exceptions, flow + , foldl, generic-lens, lens, mmorph, pipes, profunctors, protolude + , random, stm, streaming, text, time, transformers + , transformers-base + }: + mkDerivation { + pname = "box"; + version = "0.0.1.2"; + sha256 = "11g3ig1n1myfgcfvp6gkn5lyr2gdzj4zpginwmjac1c599xiyf8i"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async attoparsec base concurrency contravariant data-default dejafu + exceptions flow foldl generic-lens lens mmorph pipes profunctors + protolude random stm streaming text time transformers + transformers-base + ]; + executableHaskellDepends = [ + async attoparsec base concurrency contravariant data-default dejafu + exceptions flow foldl generic-lens lens mmorph pipes profunctors + protolude random stm streaming text time transformers + transformers-base + ]; + testHaskellDepends = [ + async attoparsec base concurrency contravariant data-default dejafu + doctest exceptions flow foldl generic-lens lens mmorph pipes + profunctors protolude random stm streaming text time transformers + transformers-base + ]; + description = "boxes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "box-tuples" = callPackage ({ mkDerivation, base, ghc-prim }: mkDerivation { @@ -43488,7 +43796,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bv-little_1_0_1" = callPackage + "bv-little_1_1_0" = callPackage ({ mkDerivation, base, criterion, deepseq, hashable, integer-gmp , keys, mono-traversable, mono-traversable-keys, primitive , QuickCheck, smallcheck, tasty, tasty-hunit, tasty-quickcheck @@ -43496,8 +43804,8 @@ self: { }: mkDerivation { pname = "bv-little"; - version = "1.0.1"; - sha256 = "1as21xhzrzcqmrqybczwxhh81avgkmdgn7hhk534dxv6csd7jyp6"; + version = "1.1.0"; + sha256 = "1cpmwmd6gig0gggbr197cjpp0ykaj30jniqq3r5lsv644wizkg6r"; libraryHaskellDepends = [ base deepseq hashable integer-gmp keys mono-traversable mono-traversable-keys primitive QuickCheck text-show @@ -43569,12 +43877,12 @@ self: { }) {}; "byte-order" = callPackage - ({ mkDerivation, base, primitive }: + ({ mkDerivation, base, primitive, primitive-unaligned }: mkDerivation { pname = "byte-order"; - version = "0.1.0.0"; - sha256 = "1g0bqx4xzv9y5shjn4wbnrrskahrmybzm1sw1kryyn5z8w7srw34"; - libraryHaskellDepends = [ base primitive ]; + version = "0.1.1.0"; + sha256 = "09j6gkvg1nv05dga46cyxsgnf5ksqbnnsz9nf36xg0vw6c352w7s"; + libraryHaskellDepends = [ base primitive primitive-unaligned ]; testHaskellDepends = [ base primitive ]; description = "Portable big-endian and little-endian conversions"; license = stdenv.lib.licenses.bsd3; @@ -43677,15 +43985,15 @@ self: { broken = true; }) {}; - "bytestring_0_10_8_2" = callPackage + "bytestring_0_10_10_0" = callPackage ({ mkDerivation, base, byteorder, deepseq, directory, dlist , ghc-prim, HUnit, integer-gmp, mtl, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 }: mkDerivation { pname = "bytestring"; - version = "0.10.8.2"; - sha256 = "0fjc5ybxx67l0kh27l6vq4saf88hp1wnssj5ka90ii588y76cvys"; + version = "0.10.10.0"; + sha256 = "1h94lyyn4fpklm25dsazj9za08m0vz9irafpza90h9j5wx4qpndq"; libraryHaskellDepends = [ base deepseq ghc-prim integer-gmp ]; testHaskellDepends = [ base byteorder deepseq directory dlist ghc-prim HUnit mtl @@ -44552,8 +44860,8 @@ self: { }: mkDerivation { pname = "cabal-cache"; - version = "1.0.1.0"; - sha256 = "0x013n44ppwm6vh9n9wch8hki2g3pr2bahngymdm7vd6628jpshz"; + version = "1.0.1.1"; + sha256 = "1yb3wvjqqmkm4aysfyx4zf1z88453ywfc4czb4zvghfdgd95d0rx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45129,6 +45437,8 @@ self: { pname = "cabal-rpm"; version = "0.12.6"; sha256 = "1k602v7v87w6xcd9a5m8n5grnjbkyn79rdi9azl7djna0rs129ns"; + revision = "1"; + editedCabalFile = "0wfj9gcygm1c9fy86973ybs8ww8g6fn3l7f5v2kvs28204g8i18g"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -45148,6 +45458,8 @@ self: { pname = "cabal-rpm"; version = "0.13.3"; sha256 = "04d5m74i0r6livhkhmccrwhshpa2aizyb77i2qcqhxradw0lkvl4"; + revision = "1"; + editedCabalFile = "1ngw9afzplbz4q707nak9zcjmk9fdynw0jvis4lgjq02y4i14hj6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -46348,15 +46660,29 @@ self: { broken = true; }) {}; + "can-i-haz" = callPackage + ({ mkDerivation, base, deepseq, hspec, should-not-typecheck }: + mkDerivation { + pname = "can-i-haz"; + version = "0.1.0.0"; + sha256 = "1nsbw6k550n5vc2d17463sjci8a8k2f09519gp8hmdj19a9dlnc7"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base deepseq hspec should-not-typecheck ]; + description = "Generic implementation of the Has pattern"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "canon" = callPackage ({ mkDerivation, arithmoi, array, base, containers, random }: mkDerivation { pname = "canon"; - version = "0.1.1.1"; - sha256 = "0z2s4bk6xs9p2lgg7r70nhr6igvw3z5iarc29slsg0cv9w4232c1"; + version = "0.1.1.2"; + sha256 = "181c09kh76104b23hf52b049cc6clww1y9kffw1f0hnkxhds9n84"; libraryHaskellDepends = [ arithmoi array base containers random ]; description = "Arithmetic for Psychedelically Large Numbers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "canonical-filepath" = callPackage @@ -46373,21 +46699,22 @@ self: { }) {}; "canonical-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, parsec - , pretty, QuickCheck, tasty, tasty-quickcheck, unordered-containers - , vector + ({ mkDerivation, aeson, base, bytestring, containers, criterion + , deepseq, parsec, pretty, QuickCheck, tasty, tasty-quickcheck + , unordered-containers, vector }: mkDerivation { pname = "canonical-json"; - version = "0.5.0.1"; - sha256 = "1r52f69afsnl6kmn0h2rl6wp21jjain4kz6123a1haacfm2f2hwj"; + version = "0.6.0.0"; + sha256 = "0lb847hvgkn49g6rvmavk14brvvpiy6q5fswk3cm9rc53hbq02zz"; libraryHaskellDepends = [ - base bytestring containers parsec pretty + base bytestring containers deepseq parsec pretty ]; testHaskellDepends = [ - aeson base bytestring QuickCheck tasty tasty-quickcheck + aeson base bytestring containers QuickCheck tasty tasty-quickcheck unordered-containers vector ]; + benchmarkHaskellDepends = [ base bytestring containers criterion ]; description = "Canonical JSON for signing and hashing JSON values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -47661,6 +47988,19 @@ self: { broken = true; }) {}; + "category_0_2_4_1" = callPackage + ({ mkDerivation, alg, base, transformers }: + mkDerivation { + pname = "category"; + version = "0.2.4.1"; + sha256 = "0gliy1frgpgyzq3vkin315ylpklfc6dvg0vd93hz8f9m3js6dm48"; + libraryHaskellDepends = [ alg base transformers ]; + description = "Categorical types and classes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "category-extras" = callPackage ({ mkDerivation, adjunctions, bifunctors, categories, comonad , comonad-extras, comonad-transformers, comonads-fd, contravariant @@ -47894,6 +48234,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "cborg_0_2_2_0" = callPackage + ({ mkDerivation, aeson, array, base, base-orphans + , base16-bytestring, base64-bytestring, bytestring, containers + , deepseq, fail, ghc-prim, half, integer-gmp, primitive, QuickCheck + , random, scientific, tasty, tasty-hunit, tasty-quickcheck, text + , vector + }: + mkDerivation { + pname = "cborg"; + version = "0.2.2.0"; + sha256 = "1rdnvy0w17s70ikmbyrnwax5rvqh19l95sh8i7ipgxi23z1r0bp1"; + libraryHaskellDepends = [ + array base bytestring containers deepseq ghc-prim half integer-gmp + primitive text + ]; + testHaskellDepends = [ + aeson array base base-orphans base16-bytestring base64-bytestring + bytestring deepseq fail half QuickCheck random scientific tasty + tasty-hunit tasty-quickcheck text vector + ]; + description = "Concise Binary Object Representation (CBOR)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cborg-json" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific, text , unordered-containers, vector @@ -49232,6 +49597,8 @@ self: { ]; description = "A simple and intuitive library for automated testing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "chell-hunit" = callPackage @@ -49243,6 +49610,8 @@ self: { libraryHaskellDepends = [ base chell HUnit ]; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "chell-quickcheck" = callPackage @@ -49254,6 +49623,8 @@ self: { libraryHaskellDepends = [ base chell QuickCheck random ]; description = "QuickCheck support for the Chell testing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "chessIO" = callPackage @@ -49724,23 +50095,24 @@ self: { "chronos" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , criterion, deepseq, hashable, HUnit, old-locale, primitive - , QuickCheck, semigroups, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, thyme, time, torsor, vector + , criterion, deepseq, doctest, hashable, HUnit, old-locale + , primitive, QuickCheck, semigroups, test-framework + , test-framework-hunit, test-framework-quickcheck2, text, thyme + , time, torsor, vector }: mkDerivation { pname = "chronos"; - version = "1.0.5"; - sha256 = "0274b5qv1wf52vsdjm1siksh07qgdgid0a9316b7nab2gc7jgpdz"; - revision = "3"; - editedCabalFile = "13gjxvybjkgw0qs1vi45b7vs4d2lbh7l76kl8m99dd13dvvb49qf"; + version = "1.0.6"; + sha256 = "07z79acmr8768m31knr9r90x0f8xabdkvvyd7y0bv7061562fvdz"; + revision = "1"; + editedCabalFile = "156f61rp421x1hisdiq1m7nbaaq4hczfv66v9g94blv3a48rjwzz"; libraryHaskellDepends = [ aeson attoparsec base bytestring clock hashable primitive semigroups text torsor vector ]; testHaskellDepends = [ - attoparsec base bytestring HUnit QuickCheck test-framework - test-framework-hunit test-framework-quickcheck2 text + attoparsec base bytestring doctest HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 text torsor ]; benchmarkHaskellDepends = [ attoparsec base bytestring criterion deepseq old-locale QuickCheck @@ -50540,8 +50912,8 @@ self: { }: mkDerivation { pname = "clang-pure"; - version = "0.2.0.4"; - sha256 = "13c03zj15xx8hq6gqvq62dfqz936mrrz34irk7bqyi0sbhqgrjn1"; + version = "0.2.0.5"; + sha256 = "0s84q6qdym02xvva3iq559kmhwzb08slip69h4cvvc6a7lqmaj37"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal inline-c process ]; @@ -53477,8 +53849,8 @@ self: { pname = "colour-space"; version = "0.1.4.0"; sha256 = "0sr341chqhngm7ihyy3ym3w345sk101gznw80iksjwxjg3iiqxmq"; - revision = "1"; - editedCabalFile = "1n9n76g9zjp1i02f964dlfy65m978m8whbcivd063pf1acp9njax"; + revision = "2"; + editedCabalFile = "0qldxm84rk344h4wgk3bqsxfhkmvj8psm0sqgfnjh34a4fy5hjzg"; libraryHaskellDepends = [ base colour constrained-categories JuicyPixels linear linearmap-category manifolds semigroups vector-space @@ -53529,6 +53901,23 @@ self: { broken = true; }) {}; + "columnar" = callPackage + ({ mkDerivation, base, bytestring, cassava, containers, enum-text + , fmt, lens, possibly, rio, template-haskell, text, time + , unordered-containers, vector + }: + mkDerivation { + pname = "columnar"; + version = "1.0.0.0"; + sha256 = "0qf5fbd9cwc22npww4qsjaj7rxdy2r3rjm19w23a9shqvgc2l6av"; + libraryHaskellDepends = [ + base bytestring cassava containers enum-text fmt lens possibly rio + template-haskell text time unordered-containers vector + ]; + description = "A CSV toolkit based on cassava and enum-text"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "com" = callPackage ({ mkDerivation }: mkDerivation { @@ -56746,6 +57135,8 @@ self: { pname = "constrained-categories"; version = "0.4.0.0"; sha256 = "1wq4ivkgxbwxxrfk5lwn2psbbiaq87dr8zf1z9b9yhw2hi75lsgw"; + revision = "1"; + editedCabalFile = "0f96xmq5j03f9ks9cjlgbc5wq0azdbrbj2lh3kr3ybz658dli3j7"; libraryHaskellDepends = [ base contravariant semigroups tagged trivial-constraint void ]; @@ -56923,8 +57314,8 @@ self: { }: mkDerivation { pname = "constraints-deriving"; - version = "1.0.4.0"; - sha256 = "1a78bb8gld07g5m9lwg6phdx3i87pmlk47hic2vbpi9n68kl055v"; + version = "1.1.0.0"; + sha256 = "15rspwn8i2rwmqsxb505087ars0i10licwj4adsgm89ajhgrqvp9"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal ]; @@ -57241,17 +57632,22 @@ self: { "contiguous" = callPackage ({ mkDerivation, base, deepseq, primitive, primitive-unlifted - , QuickCheck, quickcheck-instances, vector + , QuickCheck, quickcheck-classes, quickcheck-instances, random + , random-shuffle, vector, weigh }: mkDerivation { pname = "contiguous"; - version = "0.4.0.1"; - sha256 = "1hs9jvl9zzy7jdbxna0aw8nbq3af327xfgb0cgzwmp55iwpjn9rn"; + version = "0.5"; + sha256 = "0nz3ssh0zc8rs67mk8fmc8plvbjac6mlxdmzk9fw8sj2vx2ssisq"; libraryHaskellDepends = [ base deepseq primitive primitive-unlifted ]; testHaskellDepends = [ - base primitive QuickCheck quickcheck-instances vector + base primitive QuickCheck quickcheck-classes quickcheck-instances + vector + ]; + benchmarkHaskellDepends = [ + base primitive random random-shuffle weigh ]; description = "Unified interface for primitive arrays"; license = stdenv.lib.licenses.bsd3; @@ -58087,6 +58483,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "core-data" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, core-text + , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific + , text, unordered-containers, vector + }: + mkDerivation { + pname = "core-data"; + version = "0.2.0.0"; + sha256 = "1lzvs99qqw8nvgqqz080zdsxl5vdxdmnffxl8s26c7p41izycp5n"; + libraryHaskellDepends = [ + aeson base bytestring containers core-text hashable prettyprinter + prettyprinter-ansi-terminal scientific text unordered-containers + vector + ]; + description = "Convenience wrappers around common data structures and encodings"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "core-haskell" = callPackage ({ mkDerivation, base, haskeline, haskell-src-exts, hint }: mkDerivation { @@ -58104,6 +58518,44 @@ self: { broken = true; }) {}; + "core-program" = callPackage + ({ mkDerivation, async, base, bytestring, chronologique, core-data + , core-text, directory, exceptions, hashable, hourglass, mtl + , prettyprinter, prettyprinter-ansi-terminal, safe-exceptions, stm + , template-haskell, terminal-size, text, text-short, transformers + , unix + }: + mkDerivation { + pname = "core-program"; + version = "0.2.0.0"; + sha256 = "13907wk5p8yc31wf7s3w6an8g2b5j8pp0k196l5fh90c5dadizys"; + libraryHaskellDepends = [ + async base bytestring chronologique core-data core-text directory + exceptions hashable hourglass mtl prettyprinter + prettyprinter-ansi-terminal safe-exceptions stm template-haskell + terminal-size text text-short transformers unix + ]; + description = "Opinionated Haskell Interoperability"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "core-text" = callPackage + ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable + , prettyprinter, prettyprinter-ansi-terminal, template-haskell + , text, text-short + }: + mkDerivation { + pname = "core-text"; + version = "0.2.0.0"; + sha256 = "1rkbz43vnjv8vv68xh98qcp59lmahw4sdpfnhvgrh92wj0namifk"; + libraryHaskellDepends = [ + base bytestring deepseq fingertree hashable prettyprinter + prettyprinter-ansi-terminal template-haskell text text-short + ]; + description = "A text type based on a finger tree over UTF-8 fragments"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "corebot-bliki" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, containers , directory, filepath, filestore, http-types, monads-tf, pandoc @@ -58545,24 +58997,25 @@ self: { }) {}; "cpkg" = callPackage - ({ mkDerivation, base, binary, bytestring, bzlib, containers, cpphs - , dhall, dir-traverse, directory, filemanip, filepath, hashable - , hspec, hspec-megaparsec, http-client, http-client-tls, libarchive - , lzma, megaparsec, microlens, mtl, network-uri - , optparse-applicative, prettyprinter, process, recursion, tar - , temporary, text, zip-archive, zlib + ({ mkDerivation, base, binary, bytestring, bzlib + , composition-prelude, containers, cpphs, dhall, dir-traverse + , directory, filemanip, filepath, hashable, hspec, hspec-megaparsec + , http-client, http-client-tls, libarchive, lzma, megaparsec + , microlens, mtl, network-uri, optparse-applicative, prettyprinter + , process, recursion, tar, temporary, text, zip-archive, zlib }: mkDerivation { pname = "cpkg"; - version = "0.2.1.0"; - sha256 = "0wwfdw4qvgf25zych8pvknx99pr4zrxknyi80laqx7b7w5l0rnvc"; + version = "0.2.3.1"; + sha256 = "0nw1h6zgx3dizx92nwzdf9ny8bzyfa2n28lpv34xvw38fz9yq16w"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base binary bytestring bzlib containers dhall dir-traverse - directory filemanip filepath hashable http-client http-client-tls - libarchive lzma megaparsec microlens mtl network-uri prettyprinter - process recursion tar temporary text zip-archive zlib + base binary bytestring bzlib composition-prelude containers dhall + dir-traverse directory filemanip filepath hashable http-client + http-client-tls libarchive lzma megaparsec microlens mtl + network-uri prettyprinter process recursion tar temporary text + zip-archive zlib ]; libraryToolDepends = [ cpphs ]; executableHaskellDepends = [ @@ -58815,7 +59268,7 @@ self: { broken = true; }) {}; - "cql-io_1_1_0" = callPackage + "cql-io_1_1_1" = callPackage ({ mkDerivation, async, auto-update, base, bytestring, containers , cql, cryptonite, data-default-class, Decimal, exceptions , hashable, HsOpenSSL, iproute, lens, mtl, mwc-random, network @@ -58825,10 +59278,8 @@ self: { }: mkDerivation { pname = "cql-io"; - version = "1.1.0"; - sha256 = "1pqqq31f9xcpn5rykkgrakgl17dm1nnskh1m88fxaynzjj485pkw"; - revision = "1"; - editedCabalFile = "0zxc28i4c26qi6xpgsyhn0f539ni6wv6c1pixh056bzm9pwp60d7"; + version = "1.1.1"; + sha256 = "1zg199ifkqh1ba335vqp0jlm4sn5ybjxap4qymb54bylhwj0vzcp"; libraryHaskellDepends = [ async auto-update base bytestring containers cql cryptonite data-default-class exceptions hashable HsOpenSSL iproute lens mtl @@ -59526,6 +59977,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "criterion-compare" = callPackage + ({ mkDerivation, base, bytestring, cassava, Chart, Chart-diagrams + , clay, colour, containers, data-default, filepath, lens, lucid + , optparse-applicative, text, vector + }: + mkDerivation { + pname = "criterion-compare"; + version = "0.1.0.0"; + sha256 = "034cm3hap9x6cwp44hrd03b09mifcm076a9pn3lgql5ardx91yl7"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cassava Chart Chart-diagrams clay colour containers + data-default filepath lens lucid optparse-applicative text vector + ]; + description = "A simple tool for visualising differences in Criterion benchmark results"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "criterion-measurement" = callPackage ({ mkDerivation, aeson, base, base-compat, binary, containers , deepseq, vector @@ -62546,8 +63018,8 @@ self: { ({ mkDerivation, base, deepseq, QuickCheck }: mkDerivation { pname = "data-clist"; - version = "0.1.2.2"; - sha256 = "1aibiml1vs983lbxq18zcn9h11k3zjrxpsx4rxssqdjwni1kg9yi"; + version = "0.1.2.3"; + sha256 = "1mwfhnmvi3vicyjzl33m6pcipi2v887zazyqxygq258ndd010s9m"; libraryHaskellDepends = [ base deepseq QuickCheck ]; description = "Simple functional ring type"; license = stdenv.lib.licenses.bsd3; @@ -64042,6 +64514,34 @@ self: { broken = true; }) {}; + "database-id-class" = callPackage + ({ mkDerivation, aeson, base }: + mkDerivation { + pname = "database-id-class"; + version = "0.1.0.1"; + sha256 = "0zm053ll1vwd5gdwq4p3zpl9f010q894nk3djaad3ry4y2mirsc4"; + libraryHaskellDepends = [ aeson base ]; + description = "Class for types with a database id"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "database-id-groundhog" = callPackage + ({ mkDerivation, aeson, base, database-id-class, groundhog + , template-haskell + }: + mkDerivation { + pname = "database-id-groundhog"; + version = "0.1.0.1"; + sha256 = "16q90lzxjbisfdvcl4lbjlfmn02xnscsxkv9hm35xw9z8q19zlsx"; + libraryHaskellDepends = [ + aeson base database-id-class groundhog template-haskell + ]; + description = "HasId/Groundhog interop"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "database-migrate" = callPackage ({ mkDerivation, base, bytestring, cmdargs, containers, directory , either, filepath, lens, postgresql-simple, text, time @@ -64113,6 +64613,8 @@ self: { pname = "datadog-tracing"; version = "1.5.1"; sha256 = "1jjgavp9winbl2gyix61y30myvzhvzb500l2zwcb087cqzy7z6nb"; + revision = "2"; + editedCabalFile = "1mb0g3lddphaki1q946dpayhjdma9g0xcx55wdmksbhkjrbm0rgb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -65519,6 +66021,8 @@ self: { pname = "decimal-literals"; version = "0.1.0.1"; sha256 = "0lbpnc4c266fbqjzzrnig648zzsqfaphlxqwyly9xd15qggzasb0"; + revision = "1"; + editedCabalFile = "0giz73yb179xvww1s92dbl4mhvcxlv25f0zrjwc9lsvx9h2aivg0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit ]; description = "Preprocessing decimal literals more or less as they are (instead of via fractions)"; @@ -67144,46 +67648,45 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dhall_1_24_0" = callPackage + "dhall_1_25_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base , bytestring, case-insensitive, cborg, cborg-json, containers - , contravariant, criterion, cryptonite, deepseq, Diff, directory - , doctest, dotgen, exceptions, filepath, foldl, haskeline + , contravariant, cryptonite, deepseq, Diff, directory, doctest + , dotgen, either, exceptions, filepath, foldl, gauge, haskeline , http-client, http-client-tls, http-types, lens-family-core , megaparsec, memory, mockery, mtl, optparse-applicative, parsers , prettyprinter, prettyprinter-ansi-terminal, profunctors - , QuickCheck, quickcheck-instances, repline, scientific, serialise - , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text - , transformers, transformers-compat, turtle, unordered-containers - , uri-encode, vector + , QuickCheck, quickcheck-instances, repline, scientific, semigroups + , serialise, spoon, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, text, th-lift-instances, transformers + , transformers-compat, turtle, unordered-containers, uri-encode + , vector }: mkDerivation { pname = "dhall"; - version = "1.24.0"; - sha256 = "1n04jk45qjl00wx7gxzp36j7d1m1ca7h7y4qlp8gxhykpkr6zzv7"; - revision = "1"; - editedCabalFile = "1b0gqva12rh0fynddal7q8jy6i3yax79br8xbfp9kh7936w9cs1j"; + version = "1.25.0"; + sha256 = "0d8qx4fawvxykig628jfgqpa660mzzicysa7g3mda6zni9j4yq0h"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson aeson-pretty ansi-terminal base bytestring case-insensitive - cborg cborg-json containers contravariant cryptonite Diff directory - dotgen exceptions filepath haskeline http-client http-client-tls - http-types lens-family-core megaparsec memory mtl + cborg cborg-json containers contravariant cryptonite deepseq Diff + directory dotgen either exceptions filepath haskeline http-client + http-client-tls http-types lens-family-core megaparsec memory mtl optparse-applicative parsers prettyprinter prettyprinter-ansi-terminal profunctors repline scientific - serialise template-haskell text transformers transformers-compat - unordered-containers uri-encode vector + serialise template-haskell text th-lift-instances transformers + transformers-compat unordered-containers uri-encode vector ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base bytestring cborg containers deepseq directory doctest filepath - foldl megaparsec mockery prettyprinter QuickCheck - quickcheck-instances serialise tasty tasty-hunit tasty-quickcheck - text transformers turtle vector + foldl lens-family-core megaparsec mockery prettyprinter QuickCheck + quickcheck-instances semigroups serialise spoon tasty tasty-hunit + tasty-quickcheck text transformers turtle vector ]; benchmarkHaskellDepends = [ - base bytestring containers criterion directory serialise text + base bytestring containers directory gauge serialise text ]; description = "A configuration language guaranteed to terminate"; license = stdenv.lib.licenses.bsd3; @@ -67211,14 +67714,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dhall-bash_1_0_21" = callPackage + "dhall-bash_1_0_22" = callPackage ({ mkDerivation, base, bytestring, containers, dhall , neat-interpolation, optparse-generic, shell-escape, text }: mkDerivation { pname = "dhall-bash"; - version = "1.0.21"; - sha256 = "06rv0wrs1ym6szy78wg3nyfwaqm279vy6m7zny9s90lnpa6dc098"; + version = "1.0.22"; + sha256 = "1qxcf3f8a390znwkbhcirlgqpgg0ssc3bnwdml7wkv8k0qwqq57j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -67279,28 +67782,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dhall-json_1_3_0" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , dhall, exceptions, lens, libyaml, optparse-applicative + "dhall-json_1_4_0" = callPackage + ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base + , bytestring, containers, dhall, exceptions, libyaml + , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal , scientific, tasty, tasty-hunit, text, unordered-containers , vector, yaml }: mkDerivation { pname = "dhall-json"; - version = "1.3.0"; - sha256 = "176i30shaklranbhmb4m4zqn13cn9hd6lqiqdjv9qmckkapbkjpi"; - revision = "1"; - editedCabalFile = "101xfp3zg9i7qyibknjpcdhha8sc024xmylphiwb509h3fjy3yks"; + version = "1.4.0"; + sha256 = "0kxb71m1rf6y7z3wx4yx5ks0p5vhnlpgchsih3mfn9ygppc2z0ri"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers dhall exceptions lens + aeson aeson-pretty base bytestring containers dhall exceptions libyaml optparse-applicative scientific text unordered-containers vector yaml ]; executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall exceptions - optparse-applicative text + aeson aeson-pretty ansi-terminal base bytestring dhall exceptions + optparse-applicative prettyprinter prettyprinter-ansi-terminal text ]; testHaskellDepends = [ aeson base bytestring dhall tasty tasty-hunit text @@ -67329,20 +67831,51 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "dhall-nix" = callPackage - ({ mkDerivation, base, containers, data-fix, dhall, hnix - , insert-ordered-containers, neat-interpolation, optparse-generic - , text + "dhall-lsp-server" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers + , cryptonite, data-default, dhall, dhall-json, directory, doctest + , dotgen, filepath, haskell-lsp, hslogger, lens, lens-family-core + , megaparsec, mtl, network-uri, optparse-applicative, prettyprinter + , sorted-list, stm, text, transformers, unordered-containers + , uri-encode, yi-rope }: mkDerivation { - pname = "dhall-nix"; - version = "1.1.6"; - sha256 = "0pchanzgcag6z7fywqm09xj29n0pfxd2ya2ky64aapykq038jxbs"; + pname = "dhall-lsp-server"; + version = "1.0.0"; + sha256 = "1i4bx8qiy1hbs6bm50fixj1ipkd9rm6y6z3bci8ngh1rhy5v51x1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base containers data-fix dhall hnix insert-ordered-containers - neat-interpolation text + aeson aeson-pretty base bytestring containers cryptonite + data-default dhall dhall-json dotgen filepath haskell-lsp hslogger + lens lens-family-core megaparsec mtl network-uri + optparse-applicative prettyprinter sorted-list stm text + transformers unordered-containers uri-encode yi-rope + ]; + executableHaskellDepends = [ + aeson base containers data-default dhall filepath haskell-lsp + hslogger lens lens-family-core megaparsec mtl optparse-applicative + prettyprinter sorted-list stm text transformers + unordered-containers yi-rope + ]; + testHaskellDepends = [ base directory doctest filepath ]; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + + "dhall-nix" = callPackage + ({ mkDerivation, base, containers, data-fix, dhall, hnix + , neat-interpolation, optparse-generic, text + }: + mkDerivation { + pname = "dhall-nix"; + version = "1.1.7"; + sha256 = "0axg7qq8rfy5qsffiw57lll40mw7bxgk67g7lgdb5vbri69xj3is"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers data-fix dhall hnix neat-interpolation text ]; executableHaskellDepends = [ base dhall hnix optparse-generic text @@ -67396,6 +67929,8 @@ self: { ]; description = "Compile Dhall expressions to Cabal files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "dhcp-lease-parser" = callPackage @@ -67418,6 +67953,41 @@ self: { broken = true; }) {}; + "dhrun" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, bytestring, conduit + , conduit-extra, containers, dhall, directory, editor-open + , filepath, generic-random, Glob, hspec, mtl, optparse-applicative + , process, protolude, quickcheck-text, tasty, tasty-golden + , tasty-hspec, tasty-hunit, tasty-quickcheck, text, time, unix + , unliftio, unliftio-core, yaml + }: + mkDerivation { + pname = "dhrun"; + version = "1.0.1"; + sha256 = "1gyg5221g1qsq2h62lcdwi4g7amis26692hh3fdi824bjylz8pal"; + isLibrary = false; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base bytestring conduit conduit-extra containers + dhall directory mtl process protolude text time unix unliftio-core + yaml + ]; + executableHaskellDepends = [ + base bytestring dhall directory editor-open filepath + optparse-applicative protolude + ]; + testHaskellDepends = [ + aeson base bytestring dhall filepath generic-random Glob hspec mtl + protolude quickcheck-text tasty tasty-golden tasty-hspec + tasty-hunit tasty-quickcheck text unliftio yaml + ]; + doHaddock = false; + description = "Dhall/YAML configurable concurrent integration test executor"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "di" = callPackage ({ mkDerivation, base, containers, df1, di-core, di-df1, di-handle , di-monad, exceptions @@ -69319,24 +69889,25 @@ self: { "discord-haskell" = callPackage ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , containers, data-default, http-client, iso8601-time, JuicyPixels - , MonadRandom, req, safe-exceptions, text, time + , containers, data-default, emoji, http-client, iso8601-time + , JuicyPixels, MonadRandom, req, safe-exceptions, text, time , unordered-containers, vector, websockets, wuss }: mkDerivation { pname = "discord-haskell"; - version = "0.8.4"; - sha256 = "1x2rqnvmxcyf320l0vyrj2dw5p1nql588zp8nknnwpk0sp0dxmjm"; + version = "1.0.0"; + sha256 = "1z0d46gd7rgwbh05ws6hcp4rikach0yg1fim6ni0ww4g0mksj8j3"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ aeson async base base64-bytestring bytestring containers - data-default http-client iso8601-time JuicyPixels MonadRandom req - safe-exceptions text time unordered-containers vector websockets - wuss + data-default emoji http-client iso8601-time JuicyPixels MonadRandom + req safe-exceptions text time unordered-containers vector + websockets wuss ]; + executableHaskellDepends = [ base text ]; description = "Write bots for Discord in Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; - broken = true; }) {}; "discord-hs" = callPackage @@ -70364,6 +70935,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ditto" = callPackage + ({ mkDerivation, base, containers, mtl, semigroups, text }: + mkDerivation { + pname = "ditto"; + version = "0.3.1"; + sha256 = "1y3s0q0c0lsj6hsszazbd0yjb10nagvg96nw3x154kz55mn2bdym"; + libraryHaskellDepends = [ base containers mtl semigroups text ]; + description = "ditto is a type-safe HTML form generation and validation library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "ditto-lucid" = callPackage + ({ mkDerivation, base, ditto, lucid, path-pieces, text }: + mkDerivation { + pname = "ditto-lucid"; + version = "0.3.2"; + sha256 = "1asp25vi3m6rbk1wllqb1gzjrgifndhcpr2blx1j132ql6h5qqpj"; + libraryHaskellDepends = [ base ditto lucid path-pieces text ]; + description = "Add support for using lucid with Ditto"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "diversity" = callPackage ({ mkDerivation, base, containers, data-ordlist, fasta , math-functions, MonadRandom, optparse-applicative, parsec, pipes @@ -70714,6 +71307,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "dns_4_0_0" = callPackage + ({ mkDerivation, array, async, attoparsec, auto-update, base + , base16-bytestring, base64-bytestring, bytestring, Cabal + , cabal-doctest, containers, cryptonite, doctest, hourglass, hspec + , iproute, mtl, network, psqueues, QuickCheck, word8 + }: + mkDerivation { + pname = "dns"; + version = "4.0.0"; + sha256 = "0gq0y8pw4x8fja0f3hhwpbxh4rg2i8nzfnp2rxh2py49qfhg38mj"; + setupHaskellDepends = [ base Cabal cabal-doctest ]; + libraryHaskellDepends = [ + array async attoparsec auto-update base base16-bytestring + base64-bytestring bytestring containers cryptonite hourglass + iproute mtl network psqueues + ]; + testHaskellDepends = [ + base bytestring doctest hspec iproute network QuickCheck word8 + ]; + testTarget = "spec"; + description = "DNS library in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dnscache" = callPackage ({ mkDerivation, base, bytestring, containers, contstuff, dns , iproute, time @@ -71026,6 +71644,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "doctemplates_0_3_0_1" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, filepath + , Glob, mtl, parsec, scientific, tasty, tasty-golden, tasty-hunit + , temporary, text, unordered-containers, vector + }: + mkDerivation { + pname = "doctemplates"; + version = "0.3.0.1"; + sha256 = "11xvrmk9qb2izq8y61pna0lxlsfr5yb94nlk5ih8z1fcdn7ghl3j"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base containers filepath mtl parsec scientific text + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring filepath Glob mtl tasty tasty-golden + tasty-hunit temporary text + ]; + description = "Pandoc-style document templates"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "doctest" = callPackage ({ mkDerivation, base, base-compat, code-page, deepseq, directory , filepath, ghc, ghc-paths, hspec, HUnit, mockery, process @@ -71294,6 +71935,26 @@ self: { broken = true; }) {}; + "doldol" = callPackage + ({ mkDerivation, base, HUnit, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2 + , test-framework-th + }: + mkDerivation { + pname = "doldol"; + version = "0.4.1.2"; + sha256 = "0r9ylifyyv2mg4b94ikv8q56j0z5f6qa8r2jcpqg0xzdznwxqlv5"; + revision = "1"; + editedCabalFile = "0xwbdrfzd6z3nwkgnav2drisw2sn464ggkz8fid58cym9hbfpl47"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base HUnit QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 test-framework-th + ]; + description = "Flag packer & handler for flaggable data"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "dollaridoos" = callPackage ({ mkDerivation, base, profunctors, semigroups }: mkDerivation { @@ -71500,15 +72161,15 @@ self: { broken = true; }) {}; - "dotenv_0_8_0_1" = callPackage + "dotenv_0_8_0_2" = callPackage ({ mkDerivation, base, base-compat, containers, directory , exceptions, hspec, hspec-megaparsec, megaparsec , optparse-applicative, process, text, transformers, yaml }: mkDerivation { pname = "dotenv"; - version = "0.8.0.1"; - sha256 = "1mp6j3wcxiz75yjf9bnb4kc5gw09v0ax1fz0hhh9i2glxi53m27l"; + version = "0.8.0.2"; + sha256 = "0an7spi0cgvzr64nyy7p8pdslyf0jlh9l2ww52jbh1habsxjn6fp"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -72624,6 +73285,8 @@ self: { pname = "dumb-cas"; version = "0.2.0.0"; sha256 = "1zcq9r2p5gjpfivprjp9hspqpayrj9in2jck5vf5ibxpc671isb4"; + revision = "1"; + editedCabalFile = "1269wjyywvi86gmpqdpq2niv5ifns0bqr1i5229w69jdlzrc6dqg"; libraryHaskellDepends = [ base containers decimal-literals hashable template-haskell unordered-containers @@ -73045,8 +73708,8 @@ self: { }: mkDerivation { pname = "dynamic-graph"; - version = "0.1.0.12"; - sha256 = "1jygkj2jryjxlkyf0104abhkhjmfdvjaaa4zcyz7kgpny342fhiy"; + version = "0.1.0.13"; + sha256 = "1gx3hqbps8mvhxm03j5wri7v4qy3z42kcy8rhhcxq7dd0mryd4rz"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base cairo colour GLFW-b GLUtil OpenGL pango pipes transformers @@ -73154,6 +73817,8 @@ self: { pname = "dynamic-plot"; version = "0.4.0.0"; sha256 = "1klq7lwvfwwp6z842g50a2xx6cqihp8a6551f935nr2sx9hwdr94"; + revision = "1"; + editedCabalFile = "0x5jxjvwfkax6lxwk28hd2p903q6zmr1nxhyahrwcnqgh6ygywiw"; libraryHaskellDepends = [ base colour colour-space constrained-categories containers data-default deepseq diagrams-cairo diagrams-core diagrams-gtk @@ -74093,8 +74758,8 @@ self: { ({ mkDerivation, base, constraints, mtl, transformers }: mkDerivation { pname = "effect-stack"; - version = "0.2.1"; - sha256 = "0sram572nbzpgwb3vi5fmg2f4ynsh693q05w0n5yjj8zl4a7p4ds"; + version = "0.3"; + sha256 = "08zalj8svp78ykqbf5nhd6khgygz8dplcvjd19w3hvgm08y4kxqi"; libraryHaskellDepends = [ base constraints mtl transformers ]; description = "Reducing the pain of transformer stacks with duplicated effects"; license = stdenv.lib.licenses.bsd3; @@ -74180,28 +74845,30 @@ self: { }) {}; "egison" = callPackage - ({ mkDerivation, array, base, containers, criterion, deepseq - , directory, filepath, ghc, ghc-paths, Glob, hashable, haskeline - , HUnit, lens, mtl, parallel, parsec, process, random, regex-tdfa - , split, test-framework, test-framework-hunit, text, transformers - , unordered-containers, vector + ({ mkDerivation, alex, array, base, containers, criterion, deepseq + , directory, filepath, ghc, ghc-paths, Glob, happy, hashable + , haskeline, HUnit, mtl, optparse-applicative, parallel, parsec + , process, random, regex-tdfa, split, test-framework + , test-framework-hunit, text, transformers, unordered-containers + , vector }: mkDerivation { pname = "egison"; - version = "3.8.2"; - sha256 = "090zhf89faakidbf8kkbsa8ck0rl7fqbpg3fwymjqlafgnfx1jc2"; + version = "3.9.0"; + sha256 = "1law6pwgqvp6nniwwbbsdm6fjq2fp30ywjfla2qqgwdabcqbd2vq"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base containers directory ghc ghc-paths hashable haskeline - lens mtl parallel parsec process random regex-tdfa split text + mtl parallel parsec process random regex-tdfa split text transformers unordered-containers vector ]; + libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ array base containers directory filepath ghc ghc-paths haskeline - mtl parsec process regex-tdfa text transformers - unordered-containers vector + mtl optparse-applicative parsec process regex-tdfa text + transformers unordered-containers vector ]; testHaskellDepends = [ base filepath Glob HUnit mtl test-framework test-framework-hunit @@ -74212,6 +74879,8 @@ self: { ]; description = "Programming language with non-linear pattern-matching against non-free data"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "egison-quote" = callPackage @@ -75805,8 +76474,8 @@ self: { }: mkDerivation { pname = "engine-io-wai"; - version = "1.0.9"; - sha256 = "1zdin34gfi2059n1wjfxs4i2kfc0r53f3wpwhjd0fbp0as56h94s"; + version = "1.0.10"; + sha256 = "07vjjb7d5ndv8cailnrv5qif0d3kmi09bq1s38hwjyp5ml8dlfis"; libraryHaskellDepends = [ attoparsec base bytestring either engine-io http-types mtl text transformers transformers-compat unordered-containers wai @@ -75944,6 +76613,41 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "enum-text_0_5_1_0" = callPackage + ({ mkDerivation, array, base, bytestring, fmt, hashable, possibly + , text, time, unordered-containers + }: + mkDerivation { + pname = "enum-text"; + version = "0.5.1.0"; + sha256 = "0v48hmxbpzjpclg1q0avrc1dp4giglbxy2rkqnbj4f0sprp03kff"; + libraryHaskellDepends = [ + array base bytestring fmt hashable possibly text time + unordered-containers + ]; + description = "A text rendering and parsing toolkit for enumerated types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "enum-text-rio" = callPackage + ({ mkDerivation, base, bytestring, enum-text, fmt, rio, text }: + mkDerivation { + pname = "enum-text-rio"; + version = "1.2.0.0"; + sha256 = "0cz91i1m9ibphlm153i23i03nhx41bca398hkfzf9hq904ziarna"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring enum-text fmt rio text ]; + executableHaskellDepends = [ + base bytestring enum-text fmt rio text + ]; + description = "Making fmt available with rio"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "enum-types" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -76148,6 +76852,26 @@ self: { broken = true; }) {}; + "enummapset_0_6_0_2" = callPackage + ({ mkDerivation, array, base, containers, deepseq, ghc-prim, HUnit + , QuickCheck, semigroups, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "enummapset"; + version = "0.6.0.2"; + sha256 = "0476rzarcfpp4qm4qsz6wdnhr11nlfhqgrnbni591kbmngqlld1v"; + libraryHaskellDepends = [ base containers deepseq semigroups ]; + testHaskellDepends = [ + array base containers deepseq ghc-prim HUnit QuickCheck semigroups + test-framework test-framework-hunit test-framework-quickcheck2 + ]; + description = "IntMap and IntSet with Enum keys/elements"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "enummapset-th" = callPackage ({ mkDerivation, base, containers, deepseq, template-haskell }: mkDerivation { @@ -78949,6 +79673,8 @@ self: { pname = "explicit-constraint-lens"; version = "0.1.0.0"; sha256 = "181frvmgv65rcjpiya4gswvpq9ahz97c8lalhgmwknx9jx5nqd98"; + revision = "1"; + editedCabalFile = "06mj6zxj1l439g6l5ibrxbsr6ff2c199i3dlf0k1yxjck1dfblv4"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit ]; description = "Fully-flexible polymorphic lenses, without any bizarre profunctors"; @@ -79240,7 +79966,7 @@ self: { }) {}; "extensible" = callPackage - ({ mkDerivation, aeson, base, bytestring, cassava, comonad + ({ mkDerivation, aeson, barbies, base, bytestring, cassava, comonad , constraints, deepseq, exceptions, ghc-prim, hashable, lens , membership, monad-skeleton, mtl, prettyprinter, primitive , profunctors, QuickCheck, resourcet, StateVar, tagged @@ -79249,10 +79975,10 @@ self: { }: mkDerivation { pname = "extensible"; - version = "0.5.1"; - sha256 = "0rqq2pwp5zzpl9xzjmk0m8a54mbs10d7dywswfd84wqrngknkp10"; + version = "0.6"; + sha256 = "14cqsg4lamnhbdccdc0wfwzjzkpj93g92s93wmpg4214ykvr2gvf"; libraryHaskellDepends = [ - aeson base bytestring cassava comonad constraints deepseq + aeson barbies base bytestring cassava comonad constraints deepseq exceptions ghc-prim hashable membership monad-skeleton mtl prettyprinter primitive profunctors QuickCheck resourcet StateVar tagged template-haskell text th-lift transformers @@ -79306,32 +80032,31 @@ self: { }) {}; "extensible-effects-concurrent" = callPackage - ({ mkDerivation, async, base, bytestring, containers, data-default - , deepseq, directory, exceptions, extensible-effects, filepath - , hostname, HUnit, lens, monad-control, mtl, network, parallel - , pretty-types, process, QuickCheck, safe-exceptions, stm, tagged - , tasty, tasty-discover, tasty-hunit, text, time, transformers-base + ({ mkDerivation, async, base, containers, data-default, deepseq + , directory, exceptions, extensible-effects, filepath, hashable + , hostname, HUnit, lens, monad-control, mtl, network, pretty-types + , QuickCheck, safe-exceptions, stm, tasty, tasty-discover + , tasty-hunit, text, time, transformers-base }: mkDerivation { pname = "extensible-effects-concurrent"; - version = "0.29.2"; - sha256 = "0a2nbnr8giil05jy5nr7d3gy3cgvq9058dzqb49as65n232n1iv1"; + version = "0.32.0"; + sha256 = "1zipam9jac1bj4fkzihgh0hasiwgpycidhvxb0b2b0q7ic18487a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - async base bytestring containers data-default deepseq directory - exceptions extensible-effects filepath hostname lens monad-control - mtl network parallel pretty-types process QuickCheck - safe-exceptions stm tagged text time transformers-base + async base containers data-default deepseq directory exceptions + extensible-effects filepath hashable hostname lens monad-control + mtl network pretty-types safe-exceptions stm text time + transformers-base ]; executableHaskellDepends = [ - base data-default deepseq directory extensible-effects filepath - lens pretty-types text + base data-default deepseq extensible-effects lens pretty-types text ]; testHaskellDepends = [ async base containers data-default deepseq extensible-effects - filepath hostname HUnit lens pretty-types QuickCheck stm tasty - tasty-discover tasty-hunit text time + filepath hostname HUnit lens monad-control pretty-types QuickCheck + stm tasty tasty-discover tasty-hunit text time ]; testToolDepends = [ tasty-discover ]; description = "Message passing concurrency as extensible-effect"; @@ -79511,6 +80236,17 @@ self: { broken = true; }) {}; + "f-algebra-gen" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "f-algebra-gen"; + version = "0.1.0.2"; + sha256 = "1vxhfr4wqm2bclnq15lp4q496w3916ll9chj6mcqbn0r64bmmkn8"; + libraryHaskellDepends = [ base template-haskell ]; + description = "Generate a special f-algebra combinator from any data type"; + license = stdenv.lib.licenses.mit; + }) {}; + "f-ree-hack-cheats-free-v-bucks-generator" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -79819,8 +80555,8 @@ self: { ({ mkDerivation, base, containers, hspec, mtl, QuickCheck }: mkDerivation { pname = "fakefs"; - version = "0.2.0.0"; - sha256 = "0r20w8grmcfr5vwh8j2kfg9lm9pkcq9cvgnrw1sj2vi38s96icwx"; + version = "0.2.0.1"; + sha256 = "0szdjrc4m87h9dsb7qg5rpp5avnyzv47mymyihgvmxc22wiyf1c1"; libraryHaskellDepends = [ base containers mtl ]; testHaskellDepends = [ base containers hspec QuickCheck ]; description = "Extensible fake file system for testing"; @@ -80906,6 +81642,8 @@ self: { pname = "fedora-haskell-tools"; version = "0.8"; sha256 = "03wk335dpkbcdgxqsjiavnqc43jkw8gh7y41dyfwivwd9mr32y2w"; + revision = "1"; + editedCabalFile = "06xak96g91krd45kvz1nscnfn4rw9gdj5xxwn8simb2vmqiy6f94"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -81004,7 +81742,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "feed_1_1_0_0" = callPackage + "feed_1_2_0_0" = callPackage ({ mkDerivation, base, base-compat, bytestring, HUnit , markdown-unlit, old-locale, old-time, safe, test-framework , test-framework-hunit, text, time, time-locale-compat, utf8-string @@ -81012,10 +81750,8 @@ self: { }: mkDerivation { pname = "feed"; - version = "1.1.0.0"; - sha256 = "05hiasa6k13v1pzp9cs991zh04njda0ax9868rc7k906b19qqkjg"; - revision = "1"; - editedCabalFile = "0bn0vnn6v373ycrbxwqzp1ncmq649h13f2na8q8yf0i68mxampks"; + version = "1.2.0.0"; + sha256 = "0cakrlq1ra2gwyqmdhss4clkj0xxrwy3pc4xjzgqz4w3yd1czjg7"; enableSeparateDataOutput = true; libraryHaskellDepends = [ base base-compat bytestring old-locale old-time safe text time @@ -83206,13 +83942,17 @@ self: { }) {}; "flags-applicative" = callPackage - ({ mkDerivation, base, containers, hspec, mtl, network, text }: + ({ mkDerivation, base, casing, containers, hspec, mtl, network + , text + }: mkDerivation { pname = "flags-applicative"; - version = "0.0.5.2"; - sha256 = "1yjwnh6mqq3ypc3rs7a13j998zizfn6fn35d2wijdkm4ahyjpjhv"; - libraryHaskellDepends = [ base containers mtl network text ]; - testHaskellDepends = [ base hspec text ]; + version = "0.1.0.1"; + sha256 = "1pamcfv5g6d42ksq10af0l2a6k8y997zx3y4pvf5gcy5hlxr2gwv"; + libraryHaskellDepends = [ + base casing containers mtl network text + ]; + testHaskellDepends = [ base containers hspec text ]; description = "Applicative flag parsing"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -84161,6 +84901,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fmt-for-rio" = callPackage + ({ mkDerivation, base, enum-text-rio }: + mkDerivation { + pname = "fmt-for-rio"; + version = "1.0.0.0"; + sha256 = "0hxf1cgch4l5vwnsg4449ing3qi40kpfcwjg4l807sw0b18ccwar"; + libraryHaskellDepends = [ base enum-text-rio ]; + description = "Adaptor for getting fmt to work with rio"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "fmt-terminal-colors" = callPackage ({ mkDerivation, ansi-terminal, base, fmt }: mkDerivation { @@ -85233,6 +85986,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "foundation_0_0_24" = callPackage + ({ mkDerivation, base, basement, gauge, ghc-prim }: + mkDerivation { + pname = "foundation"; + version = "0.0.24"; + sha256 = "1yygliyg5dh06n7iyyrvy4iz2328hgb5igjp832wxrfa529pwqdk"; + libraryHaskellDepends = [ base basement ghc-prim ]; + testHaskellDepends = [ base basement ]; + benchmarkHaskellDepends = [ base basement gauge ]; + description = "Alternative prelude with batteries and no dependencies"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "foundation-edge" = callPackage ({ mkDerivation, bytestring, foundation, text }: mkDerivation { @@ -85836,8 +86603,8 @@ self: { pname = "free-vector-spaces"; version = "0.1.5.0"; sha256 = "0rf6yhjcd2x4yj2jvyl6yc8x55a2hqhj5mxzg4f24734agh720z1"; - revision = "1"; - editedCabalFile = "0b95827ppw0nvhaxg9axkngsij2sj8d6s06amz2vi79jgs7vbfr6"; + revision = "3"; + editedCabalFile = "09jy8kj31p6b4pmzry6glq7climw6pmpph23byhijs82a7yl609w"; libraryHaskellDepends = [ base lens linear MemoTrie pragmatic-show vector vector-space ]; @@ -87187,24 +87954,22 @@ self: { ({ mkDerivation, base, bifunctors, comonad, constraints, containers , dependent-sum, deriving-compat, free, hedgehog, kan-extensions , mmorph, mtl, natural-transformation, nonempty-containers, pointed - , profunctors, recursion-schemes, semigroupoids, tagged, tasty - , tasty-hedgehog, these, transformers, trivial-constraint, vinyl + , profunctors, semigroupoids, tagged, tasty, tasty-hedgehog, these + , transformers, trivial-constraint, vinyl }: mkDerivation { pname = "functor-combinators"; - version = "0.1.1.0"; - sha256 = "1x3a2rwqhvcyr298adfc9qband5s5qwh8wfd67cgrq5qx2z4j8xf"; - revision = "2"; - editedCabalFile = "09r6bgjlcsjjbwqhfxqbw5dk5sj9lsbfwwsjpdzmi8z8dywgyn2z"; + version = "0.1.1.1"; + sha256 = "1bs1xqlndbzi91z9048clmgmgkjyyrkgcmz6s864villy0s9h90c"; libraryHaskellDepends = [ base bifunctors comonad constraints containers deriving-compat free kan-extensions mmorph mtl natural-transformation - nonempty-containers pointed profunctors recursion-schemes - semigroupoids tagged these transformers trivial-constraint vinyl + nonempty-containers pointed profunctors semigroupoids tagged these + transformers trivial-constraint vinyl ]; testHaskellDepends = [ base bifunctors dependent-sum free hedgehog nonempty-containers - semigroupoids tagged tasty tasty-hedgehog transformers + semigroupoids tasty tasty-hedgehog transformers ]; description = "Tools for functor combinator-based program design"; license = stdenv.lib.licenses.bsd3; @@ -87451,8 +88216,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "funspection"; - version = "0.1.0.0"; - sha256 = "1bq7gj8kcgz8ccy6skkqbrfkxavkg3s511shm8fd9s8syqwdglr8"; + version = "1.0.0.0"; + sha256 = "0jbzvn06d5kfyiav3fjd6k8sk8dy00pwk2g711nrbmlrljbw7f39"; libraryHaskellDepends = [ base ]; description = "Type-level function utilities"; license = stdenv.lib.licenses.bsd3; @@ -87472,15 +88237,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "fused-effects_0_4_0_0" = callPackage + "fused-effects_0_5_0_0" = callPackage ({ mkDerivation, base, criterion, deepseq, doctest, hspec , inspection-testing, MonadRandom, QuickCheck, random, transformers , unliftio-core }: mkDerivation { pname = "fused-effects"; - version = "0.4.0.0"; - sha256 = "1r6yzw0212p5wn9rad2r7pjijnw6jajhypirm4j8h1gz1a393ds8"; + version = "0.5.0.0"; + sha256 = "1s1jvxdmwnjyxcx7zhspv1qkfy1dvcj0c92az2njqjibldbvqsa4"; libraryHaskellDepends = [ base deepseq MonadRandom random transformers unliftio-core ]; @@ -87499,10 +88264,8 @@ self: { }: mkDerivation { pname = "fused-effects-exceptions"; - version = "0.1.1.0"; - sha256 = "0b9rj752ry72n6ln4fj9n6m2d1qfdxp229hzkgxznag0rr3bm5rd"; - revision = "1"; - editedCabalFile = "1sg9gvv5lf4z7h70szjcqilhxxjmkiyriz95qyvahplln9p6281l"; + version = "0.2.0.0"; + sha256 = "1hgvl48vdrgcb45izmwad40x5jgxiaf3rdhhm5x0gjd9848drmbb"; libraryHaskellDepends = [ base fused-effects safe-exceptions unliftio-core ]; @@ -87713,6 +88476,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fuzzyset_0_1_1" = callPackage + ({ mkDerivation, base, base-unicode-symbols, data-default, hspec + , ieee754, lens, text, text-metrics, unordered-containers, vector + }: + mkDerivation { + pname = "fuzzyset"; + version = "0.1.1"; + sha256 = "1r23xp3c4f1y0kx0kcg4z83rfxl6swciysb3cy7z6yv35fs8bs4q"; + libraryHaskellDepends = [ + base base-unicode-symbols data-default lens text text-metrics + unordered-containers vector + ]; + testHaskellDepends = [ + base base-unicode-symbols hspec ieee754 lens text + unordered-containers + ]; + description = "Fuzzy set for approximate string matching"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "fuzzytime" = callPackage ({ mkDerivation, base, cmdargs, directory, old-time, process }: mkDerivation { @@ -87906,22 +88690,20 @@ self: { "galois-field" = callPackage ({ mkDerivation, base, criterion, integer-gmp, MonadRandom - , protolude, tasty, tasty-discover, tasty-quickcheck - , wl-pprint-text + , protolude, tasty, tasty-quickcheck, wl-pprint-text }: mkDerivation { pname = "galois-field"; - version = "0.2.0"; - sha256 = "19q08k5aqnp1vcvlnlw6h4qmlh80dj1rglzckzf7ak78ifcwm1m8"; + version = "0.3.0"; + sha256 = "0c4n37rf6kfpyxdmqk4hdgmjc8fvxwynq0izgrhrqinv4z4l97v7"; libraryHaskellDepends = [ base integer-gmp MonadRandom protolude tasty-quickcheck wl-pprint-text ]; testHaskellDepends = [ - base integer-gmp MonadRandom protolude tasty tasty-discover - tasty-quickcheck wl-pprint-text + base integer-gmp MonadRandom protolude tasty tasty-quickcheck + wl-pprint-text ]; - testToolDepends = [ tasty-discover ]; benchmarkHaskellDepends = [ base criterion integer-gmp MonadRandom protolude tasty-quickcheck wl-pprint-text @@ -87983,6 +88765,40 @@ self: { broken = true; }) {}; + "gamgee" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , cryptonite, directory, filepath, Hclip, memory + , optparse-applicative, polysemy, QuickCheck, quickcheck-instances + , relude, safe-exceptions, tasty, tasty-golden, tasty-quickcheck + , text, time, unix + }: + mkDerivation { + pname = "gamgee"; + version = "1.1.0"; + sha256 = "0ip6y8l2dmw15494d77s771aqmn7awrqnlmbcc7dd2lqwq5s5wgr"; + revision = "1"; + editedCabalFile = "1lg04ps7m85x4py844vcc53a3r6ijaqzjrggrwp53iv2ga1m88sr"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring cryptonite memory polysemy + relude safe-exceptions text time + ]; + executableHaskellDepends = [ + aeson base directory filepath Hclip optparse-applicative polysemy + relude safe-exceptions text time unix + ]; + testHaskellDepends = [ + aeson base bytestring cryptonite filepath memory polysemy + QuickCheck quickcheck-instances relude tasty tasty-golden + tasty-quickcheck text time + ]; + description = "Tool for generating TOTP MFA tokens"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "gamma" = callPackage ({ mkDerivation, base, continued-fractions, converge, erf, numbers , QuickCheck, template-haskell, test-framework @@ -89220,12 +90036,12 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "generics-mrsop_2_0_0" = callPackage + "generics-mrsop_2_1_0" = callPackage ({ mkDerivation, base, containers, mtl, template-haskell }: mkDerivation { pname = "generics-mrsop"; - version = "2.0.0"; - sha256 = "1cdjh5bjvx8xfglwnm48lfybdz4n8v7v8va2c3zyihzqbxh6akml"; + version = "2.1.0"; + sha256 = "1ynzwpwry6fqzjmz3n0iwdp5ra3c402jg1g8sdf7vbpaw9ilyrng"; libraryHaskellDepends = [ base containers mtl template-haskell ]; description = "Generic Programming with Mutually Recursive Sums of Products"; license = stdenv.lib.licenses.mit; @@ -90856,16 +91672,17 @@ self: { "ghc-heap-view" = callPackage ({ mkDerivation, base, binary, bytestring, Cabal, containers - , deepseq, filepath, ghc, template-haskell, transformers + , deepseq, filepath, ghc-heap, template-haskell, transformers }: mkDerivation { pname = "ghc-heap-view"; - version = "0.5.10"; - sha256 = "0wb4311k8pyvgmhlxsdr8ss497nlgr8hawkm0fi930s3y4xxak1f"; + version = "0.6.0"; + sha256 = "1j2ygig1m7xq1y5gsaaxbgywv382yzlp1nbf3cp98yias0s61vcr"; enableSeparateDataOutput = true; setupHaskellDepends = [ base Cabal filepath ]; libraryHaskellDepends = [ - base binary bytestring containers ghc template-haskell transformers + base binary bytestring containers ghc-heap template-haskell + transformers ]; testHaskellDepends = [ base deepseq ]; description = "Extract the heap representation of Haskell values and thunks"; @@ -90966,8 +91783,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "8.8.0.20190424"; - sha256 = "03f1racabmixc4jk3mn6k6cnhapaplswa8fbb9yajrzj56ag16wm"; + version = "8.8.0.20190723"; + sha256 = "161qmm41vayks22vxbji436by1rfbx0x5m2zm4cc11pjcjrd4p63"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -90991,8 +91808,8 @@ self: { }: mkDerivation { pname = "ghc-lib-parser"; - version = "8.8.0.20190424"; - sha256 = "12gsh994pr13bsybwlravmi21la66dyw74pk74yfw2pnz682wv10"; + version = "8.8.0.20190723"; + sha256 = "0szrv98h2c1db3400cbb7vbhqnwagqncgpllzd9jiw74rq6y8mjq"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array base binary bytestring containers deepseq directory filepath @@ -91347,6 +92164,18 @@ self: { broken = true; }) {}; + "ghc-source-gen" = callPackage + ({ mkDerivation, base, ghc, ghc-paths, tasty, tasty-hunit }: + mkDerivation { + pname = "ghc-source-gen"; + version = "0.1.0.0"; + sha256 = "0sw62jjbd7h9i96hn0srl9m8p0qip6hnm1am6if7snqdm5b4ki3k"; + libraryHaskellDepends = [ base ghc ]; + testHaskellDepends = [ base ghc ghc-paths tasty tasty-hunit ]; + description = "Constructs Haskell syntax trees for the GHC API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ghc-srcspan-plugin" = callPackage ({ mkDerivation, array, base, containers, ghc, hpc }: mkDerivation { @@ -91656,6 +92485,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ghci-hexcalc_0_1_1_0" = callPackage + ({ mkDerivation, base, binary, doctest, QuickCheck }: + mkDerivation { + pname = "ghci-hexcalc"; + version = "0.1.1.0"; + sha256 = "1kjkx8w1rq1fkzl0ffvp71xjb2q5pmlgnm19g0avim7isrjy87kh"; + libraryHaskellDepends = [ base binary ]; + testHaskellDepends = [ base binary doctest QuickCheck ]; + description = "GHCi as a Hex Calculator interactive"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ghci-history-parser" = callPackage ({ mkDerivation, base, doctest, hspec, parsec }: mkDerivation { @@ -91717,6 +92559,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ghci-websockets" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, foreign-store + , text, wai, wai-app-static, warp, websockets + }: + mkDerivation { + pname = "ghci-websockets"; + version = "0.0.2"; + sha256 = "0x3hwgsihsr780hxsmjbxhxlw98rv1aws30myh117l7gjmj5lvzg"; + libraryHaskellDepends = [ + aeson base bytestring containers foreign-store text wai + wai-app-static warp websockets + ]; + description = "A websocket server that survives GHCi reloads"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ghcid" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit @@ -92057,6 +92915,26 @@ self: { broken = true; }) {}; + "ghcprofview" = callPackage + ({ mkDerivation, aeson, base, containers, ghc-prof, gi-gtk + , haskell-gi-base, regex-tdfa, regex-tdfa-text, scientific, text + }: + mkDerivation { + pname = "ghcprofview"; + version = "0.1.0.0"; + sha256 = "103186dik439sdzz1w6dr98s1sfghjxdkp51mh18wrcwdbdb9r3a"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base containers ghc-prof gi-gtk haskell-gi-base regex-tdfa + regex-tdfa-text scientific text + ]; + description = "GHC .prof files viewer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "ghczdecode" = callPackage ({ mkDerivation, base, zenc }: mkDerivation { @@ -92339,7 +93217,7 @@ self: { }) {inherit (pkgs) gtk3;}; "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -92352,13 +93230,13 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk-pixbuf ]; + libraryPkgconfigDepends = [ gdk_pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk-pixbuf;}; + }) {inherit (pkgs) gdk_pixbuf;}; "gi-gdkpixbuf_2_0_22" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -92373,11 +93251,11 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk-pixbuf ]; + libraryPkgconfigDepends = [ gdk_pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) gdk-pixbuf;}; + }) {inherit (pkgs) gdk_pixbuf;}; "gi-gdkx11" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo @@ -92722,6 +93600,8 @@ self: { libraryPkgconfigDepends = [ gtk3 ]; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk3;}; "gi-gtk_3_0_31" = callPackage @@ -92747,26 +93627,32 @@ self: { description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk3;}; "gi-gtk-declarative" = callPackage - ({ mkDerivation, base, criterion, gi-gdk, gi-glib, gi-gobject - , gi-gtk, haskell-gi, haskell-gi-base, haskell-gi-overloading, mtl - , random, text, unordered-containers, vector + ({ mkDerivation, async, base, data-default-class, gi-gdk, gi-glib + , gi-gobject, gi-gtk, haskell-gi, haskell-gi-base + , haskell-gi-overloading, hedgehog, mtl, safe-exceptions, stm, text + , unordered-containers, vector }: mkDerivation { pname = "gi-gtk-declarative"; - version = "0.4.3"; - sha256 = "148daz8a6nj6djvsfiy5yk7lfyxhdjl5l34a7d6nn66mikc8538b"; + version = "0.5.0"; + sha256 = "0nhacfja1wrz0sa5pbz069sbpyzp8jnlrp078gg9gydwhlmh2k2h"; libraryHaskellDepends = [ - base gi-glib gi-gobject gi-gtk haskell-gi haskell-gi-base - haskell-gi-overloading mtl text unordered-containers vector + base data-default-class gi-glib gi-gobject gi-gtk haskell-gi + haskell-gi-base haskell-gi-overloading mtl text + unordered-containers vector ]; - benchmarkHaskellDepends = [ - base criterion gi-gdk gi-glib gi-gtk random text vector + testHaskellDepends = [ + async base gi-gdk gi-glib gi-gobject gi-gtk hedgehog + safe-exceptions stm text unordered-containers vector ]; description = "Declarative GTK+ programming in Haskell"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "gi-gtk-declarative-app-simple" = callPackage @@ -92776,8 +93662,8 @@ self: { }: mkDerivation { pname = "gi-gtk-declarative-app-simple"; - version = "0.4.2"; - sha256 = "1ydaxs2isqpy8ld8nlg4plr7ry5xni3g93m9kxdm2klz8xzs3js7"; + version = "0.5.0"; + sha256 = "0vl9gqgdbqr4hipr7ka01hyvyz9n8by0ry890w4n2c5w9rghgvva"; libraryHaskellDepends = [ async base gi-gdk gi-glib gi-gobject gi-gtk gi-gtk-declarative haskell-gi haskell-gi-base haskell-gi-overloading pipes @@ -92785,6 +93671,8 @@ self: { ]; description = "Declarative GTK+ programming in Haskell in the style of Pux"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "gi-gtk-hs" = callPackage @@ -92802,6 +93690,8 @@ self: { ]; description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "gi-gtk-hs_0_3_7_0" = callPackage @@ -92820,6 +93710,7 @@ self: { description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "gi-gtkosxapplication" = callPackage @@ -92831,6 +93722,8 @@ self: { pname = "gi-gtkosxapplication"; version = "2.0.16"; sha256 = "11wfmvjgl6lmmdanz5jmmvf4289c9jiylxfn006shc4pby7ay6i8"; + revision = "1"; + editedCabalFile = "1fixrfjmqqrik38fl90h4f3lh34g6zilscibq9r9x1j8d33qmin4"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-gdkpixbuf gi-gobject gi-gtk @@ -92864,6 +93757,8 @@ self: { doHaddock = false; description = "GtkSource bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gtksourceview3;}; "gi-gtksource_3_0_21" = callPackage @@ -92889,6 +93784,7 @@ self: { description = "GtkSource bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gtksourceview3;}; "gi-handy" = callPackage @@ -93168,6 +94064,8 @@ self: { libraryPkgconfigDepends = [ vte_291 ]; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {vte_291 = pkgs.vte;}; "gi-vte_2_91_24" = callPackage @@ -93193,6 +94091,7 @@ self: { description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {vte_291 = pkgs.vte;}; "gi-webkit" = callPackage @@ -93576,8 +94475,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "7.20190708"; - sha256 = "18s563swrp8mx479995pdhhmn40y3xwlbm1z3w63qsnjqmj7zlij"; + version = "7.20190730"; + sha256 = "16mya2dm7q9ggdmwyszri85qnnxf0l71xnn8khnxl5fqrh2zvsjg"; configureFlags = [ "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime" "-f-networkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser" @@ -94373,8 +95272,8 @@ self: { }: mkDerivation { pname = "gitlab-haskell"; - version = "0.1.0.1"; - sha256 = "1gvhfdlh6x500qms0kfqsyf0c934rm0xw1z1gv8zzb7nssndiann"; + version = "0.1.0.2"; + sha256 = "16dj3m038fgxf8w69g8qldnsk2xrk83lkkgdapwv7qz9c9jd0nh1"; libraryHaskellDepends = [ aeson base bytestring connection http-conduit http-types text transformers unliftio unliftio-core @@ -99542,14 +100441,21 @@ self: { }) {}; "graphql" = callPackage - ({ mkDerivation, attoparsec, base, tasty, tasty-hunit, text }: + ({ mkDerivation, aeson, base, hspec, hspec-expectations, megaparsec + , raw-strings-qq, text, transformers, unordered-containers + }: mkDerivation { pname = "graphql"; - version = "0.3"; - sha256 = "18hb8bwcwx98vrr9nzr8965i4c1y6dh10ilijksbldf10yaiq53z"; + version = "0.4.0.0"; + sha256 = "03y8wn0a1zbrsl3i5g5zy5awmlgsncnksskd4gcx8wzfl14120g0"; enableSeparateDataOutput = true; - libraryHaskellDepends = [ attoparsec base text ]; - testHaskellDepends = [ attoparsec base tasty tasty-hunit text ]; + libraryHaskellDepends = [ + aeson base megaparsec text transformers unordered-containers + ]; + testHaskellDepends = [ + aeson base hspec hspec-expectations megaparsec raw-strings-qq text + transformers + ]; description = "Haskell GraphQL implementation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -100918,6 +101824,8 @@ self: { libraryHaskellDepends = [ base gi-gdk gi-gtk text transformers ]; description = "Libary for creating strut windows with gi-gtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "gtk-toggle-button-list" = callPackage @@ -104802,6 +105710,37 @@ self: { broken = true; }) {}; + "hapistrano_0_3_9_3" = callPackage + ({ mkDerivation, aeson, async, base, directory, filepath + , formatting, gitrev, hspec, mtl, optparse-applicative, path + , path-io, process, QuickCheck, silently, stm, temporary, time + , transformers, typed-process, yaml + }: + mkDerivation { + pname = "hapistrano"; + version = "0.3.9.3"; + sha256 = "1kp2gdr0xjzr0qi584lqiqh7hjk8vymz04af2zcgdhbw68brj2cx"; + isLibrary = true; + isExecutable = true; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + aeson base filepath formatting gitrev mtl path process stm time + transformers typed-process + ]; + executableHaskellDepends = [ + aeson async base formatting gitrev optparse-applicative path + path-io stm yaml + ]; + testHaskellDepends = [ + base directory filepath hspec mtl path path-io process QuickCheck + silently temporary + ]; + description = "A deployment library for Haskell applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "happindicator" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib, gtk , gtk2hs-buildtools, libappindicator-gtk2, mtl @@ -105763,6 +106702,28 @@ self: { broken = true; }) {}; + "harg" = callPackage + ({ mkDerivation, aeson, barbies, base, bytestring, directory + , higgledy, markdown-unlit, optparse-applicative, text, yaml + }: + mkDerivation { + pname = "harg"; + version = "0.1.0.1"; + sha256 = "11qkyx9axd8vybkb1kq7vs5v5xf594wgkbpbfpvj0hah7iw9wb95"; + libraryHaskellDepends = [ + aeson barbies base bytestring directory higgledy + optparse-applicative text yaml + ]; + testHaskellDepends = [ + aeson barbies base higgledy optparse-applicative + ]; + testToolDepends = [ markdown-unlit ]; + description = "Haskell program configuration from multiple sources"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "hark" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, haskell98 , mtl, old-locale, old-time, regex-pcre @@ -105934,6 +106895,8 @@ self: { pname = "hasbolt"; version = "0.1.3.3"; sha256 = "1l1p9iz9k8i1car5cd6cfd2bpidkrfbr2354hxvg8gpnw1i5jsbb"; + revision = "1"; + editedCabalFile = "0v4ksld4qs1ll5a5c6x5kvrcb584yskhbda7zv9r9lrqvcsjwg5i"; libraryHaskellDepends = [ base binary bytestring connection containers data-binary-ieee754 data-default network text transformers @@ -105953,8 +106916,8 @@ self: { }: mkDerivation { pname = "hasbolt-extras"; - version = "0.0.0.18"; - sha256 = "11ij6xrxf28sv8b464dqax9834k0r6q99hdyfsg030aw2i1rqygy"; + version = "0.0.0.19"; + sha256 = "11g6rlgyxi57bvmr862ly7yfwiiph1kckr056b5khz8v8k6fhhpv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -106947,6 +107910,7 @@ self: { doHaddock = false; description = "Cabal package script generator for Travis-CI"; license = stdenv.lib.licenses.bsd3; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "haskell-cnc" = callPackage @@ -107011,13 +107975,13 @@ self: { }: mkDerivation { pname = "haskell-conll"; - version = "0.1.0.1"; - sha256 = "09lgj70lk2xh75rq4gdmfacmb465r0xn03v8cnk82bx52c7jwiga"; + version = "0.1.0.2"; + sha256 = "05w90jlidxr55r5j1hihfhdcwjkzw85xipwxdd3i6kmskin2pv1v"; libraryHaskellDepends = [ base containers lens pretty-show protolude split text ]; description = "Core Types for NLP"; - license = stdenv.lib.licenses.bsd3; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -109311,8 +110275,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "haskeme"; - version = "0.1.0.3"; - sha256 = "14hrimm52v5hlgkdkqwijxrfnzj8x46bg3kh9nw1vlflf97053wf"; + version = "0.1.0.4"; + sha256 = "0lis0ni0l52x691adm2da7mzjam4g414gc0d0i9f6i050ra02g3j"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -109690,12 +110654,12 @@ self: { , haskoin-node, hspec, hspec-discover, http-types, monad-logger , mtl, network, nqe, optparse-applicative, random, resourcet , rocksdb-haskell, rocksdb-query, scotty, string-conversions, text - , time, transformers, unliftio, unordered-containers, uuid + , time, transformers, unliftio, unordered-containers, wai }: mkDerivation { pname = "haskoin-store"; - version = "0.16.5"; - sha256 = "111gip8l2c9m85viaz02rlxhdb6svwx0jyhrkzcqjgz4j3y0n4lj"; + version = "0.16.6"; + sha256 = "03214p8xqf062grgpkbfchrm4awm0zrq41j77z8s31iin9d0qzp9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -109703,21 +110667,21 @@ self: { hashable haskoin-core haskoin-node http-types monad-logger mtl network nqe random resourcet rocksdb-haskell rocksdb-query scotty string-conversions text time transformers unliftio - unordered-containers uuid + unordered-containers wai ]; executableHaskellDepends = [ aeson base bytestring cereal conduit containers data-default filepath hashable haskoin-core haskoin-node http-types monad-logger mtl network nqe optparse-applicative random resourcet rocksdb-haskell rocksdb-query scotty string-conversions text time - transformers unliftio unordered-containers uuid + transformers unliftio unordered-containers wai ]; testHaskellDepends = [ aeson base bytestring cereal conduit containers data-default hashable haskoin-core haskoin-node hspec http-types monad-logger mtl network nqe random resourcet rocksdb-haskell rocksdb-query scotty string-conversions text time transformers unliftio - unordered-containers uuid + unordered-containers wai ]; testToolDepends = [ hspec-discover ]; description = "Storage and index for Bitcoin and Bitcoin Cash"; @@ -111294,8 +112258,8 @@ self: { }: mkDerivation { pname = "haven"; - version = "0.2.0.1"; - sha256 = "15q9cgfifz87ns730agv2vzc8rp5lqggiclc91khpckm2qppk6yd"; + version = "0.2.0.2"; + sha256 = "0n92h5gjy6ax0c5f2k80j21ymf741vzhsm1kdav86hphhxdlw8ng"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -112954,8 +113918,8 @@ self: { }: mkDerivation { pname = "hedgehog-classes"; - version = "0.2.1"; - sha256 = "1hkkbmsn397a73aqaasi2c076nx9g8s8vsdp6wdqq33a96q1b0mq"; + version = "0.2.2"; + sha256 = "072w697nc7dv9yi700g5ap4h49ichpw1srzkq07sz637022l19wl"; libraryHaskellDepends = [ aeson base binary containers hedgehog pretty-show semirings silently transformers wl-pprint-annotated @@ -113071,7 +114035,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_12_5" = callPackage + "hedis_0_12_6" = callPackage ({ mkDerivation, async, base, bytestring, bytestring-lexing , deepseq, doctest, errors, HTTP, HUnit, mtl, network, network-uri , resource-pool, scanner, stm, test-framework, test-framework-hunit @@ -113079,8 +114043,8 @@ self: { }: mkDerivation { pname = "hedis"; - version = "0.12.5"; - sha256 = "1alabz8j9lmd2ydm34hndqcyvihnfyvl7cgda6ycsch5sbffmjlp"; + version = "0.12.6"; + sha256 = "1lx7lwh282ijp63yfy6ybb6zc5zil09abnrsbm052ghdlnz3sfk1"; libraryHaskellDepends = [ async base bytestring bytestring-lexing deepseq errors HTTP mtl network network-uri resource-pool scanner stm text time tls @@ -115250,8 +116214,8 @@ self: { pname = "hi-file-parser"; version = "0.1.0.0"; sha256 = "09gs26z0jvkkhb1r43gj27pq0k5fc4i6fpr59g397vz4sm86gb2l"; - revision = "1"; - editedCabalFile = "1hylfzkd42mqap2ydh4wq96vwbblyp26zb8wwyn63yl72swbww23"; + revision = "2"; + editedCabalFile = "1bm98h0v4wf9vmdng15c2r48yz06118jxlprsnk0z3jw0d95ij9z"; libraryHaskellDepends = [ base binary bytestring rio vector ]; testHaskellDepends = [ base binary bytestring hspec rio vector ]; description = "Parser for GHC's hi files"; @@ -115469,8 +116433,8 @@ self: { }: mkDerivation { pname = "hierarchical-spectral-clustering"; - version = "0.4.0.0"; - sha256 = "1mw546dvyzrhcw7a61zb0anfgxk3s5r3bjrj7iry36shh1ancs1s"; + version = "0.4.1.1"; + sha256 = "0wi1yw0mhszalixay7sd1n7i8xjmb3m6v7h3kn09ih5vn3bxj26f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -115794,8 +116758,8 @@ self: { pname = "hills"; version = "0.1.2.6"; sha256 = "0ggdppg7mbq3ljrb4hvracdv81m9jqnsrl6iqy56sba118k7m0jh"; - revision = "2"; - editedCabalFile = "11f4mmhxivxkdcn4wdcz1hszfyi3hdggls22x2q0m3jxq3lw0izg"; + revision = "3"; + editedCabalFile = "10l4hx0j8il66h3m9flhwsqm9v52qmpj4cyjih4c6cnng6vjsfnj"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -116605,22 +117569,22 @@ self: { }) {}; "hit-on" = callPackage - ({ mkDerivation, ansi-terminal, base, base-noprelude, github - , gitrev, optparse-applicative, relude, shellmet, text, vector + ({ mkDerivation, ansi-terminal, base, base-noprelude, directory + , github, gitrev, hspec, optparse-applicative, process, relude + , shellmet, text, vector }: mkDerivation { pname = "hit-on"; - version = "0.0.0"; - sha256 = "14npvwxh33cn8z2klp7liij41r9pyr00rs4g28yva2zry75bf98r"; - revision = "1"; - editedCabalFile = "1fwvm0fz2agqziaspxlxxmdv44xrv65pf601i0938wkx4452v8fz"; + version = "0.1.0.0"; + sha256 = "13pxn9xqyfd5n53bl57bk0wc8qlnl5dsh1xq5y49arsnk2g86ir5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ansi-terminal base-noprelude github gitrev optparse-applicative - relude shellmet text vector + ansi-terminal base-noprelude directory github gitrev + optparse-applicative process relude shellmet text vector ]; executableHaskellDepends = [ base ]; + testHaskellDepends = [ base github hspec text ]; description = "Haskell Git Helper Tool"; license = stdenv.lib.licenses.mpl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -116755,8 +117719,8 @@ self: { pname = "hjsonschema"; version = "1.9.0"; sha256 = "051i5y557g82hd5zcn63f65jyxk07d9wnvfmwdps391zxza8ifki"; - revision = "1"; - editedCabalFile = "1kxn0smmcmzysvi1bw9v0j6j68fk4s36nqyqmvbkl61pgm6bs803"; + revision = "2"; + editedCabalFile = "0110dyc8lbd8x0cbmxgwwbvzckxkfj84krd5p51p0jaixvrrl53r"; libraryHaskellDepends = [ aeson base bytestring containers file-embed filepath hashable hjsonpointer http-client http-client-tls http-types pcre-heavy @@ -116794,6 +117758,35 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "hjugement-cli" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring + , containers, cryptonite, deepseq, directory, filepath, ghc-prim + , hjugement, hjugement-protocol, lens-family-core, memory, pipes + , pipes-aeson, pipes-bytestring, pipes-group, pipes-parse + , pipes-safe, pipes-text, random, reflection, symantic-cli + , symantic-document, terminal-size, text, time, transformers, unix + , unordered-containers + }: + mkDerivation { + pname = "hjugement-cli"; + version = "0.0.0.20190721"; + sha256 = "1fgl9yjjmwd8y2hcmva0fh3d6qwvj8papdm0v50s85b9s8cwn6ll"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + cryptonite deepseq directory filepath ghc-prim hjugement + hjugement-protocol lens-family-core memory pipes pipes-aeson + pipes-bytestring pipes-group pipes-parse pipes-safe pipes-text + random reflection symantic-cli symantic-document terminal-size text + time transformers unix unordered-containers + ]; + description = "Majority Judgment and Helios-C command line tool"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "hjugement-protocol" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring , containers, criterion, cryptonite, deepseq, memory, QuickCheck @@ -116802,8 +117795,8 @@ self: { }: mkDerivation { pname = "hjugement-protocol"; - version = "0.0.1.20190623"; - sha256 = "0rqsggij0vx9hh7wl8nzmycb55ilcm0j6dp33x94jycpyvqnc4ym"; + version = "0.0.4.20190711"; + sha256 = "0r4g8n1a8c0azdk307mq1q2dv1h4xf251fjrmldcws7b0vrla5ri"; libraryHaskellDepends = [ aeson base base64-bytestring binary bytestring containers cryptonite deepseq memory random reflection text transformers @@ -117120,6 +118113,8 @@ self: { pname = "hledger-iadd"; version = "1.3.9"; sha256 = "07g48w4099m4vm7z5hrg9zzd2v2yhy7kcv40902njz6v8cklgdgq"; + revision = "1"; + editedCabalFile = "18qjkl79gwmdgk6vl8cg3m94wm0qw30kxn4lvlnj9n6gnv2p0b3k"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -117391,8 +118386,8 @@ self: { }: mkDerivation { pname = "hlint"; - version = "2.2"; - sha256 = "0921s4cnpjnxmsp8x5dhjs8qiv6mlw98nngwsq6ad5qrj1wn72lx"; + version = "2.2.2"; + sha256 = "1v10xcz4vdzk1a3gjlvqbdckldax2643sg7s3xkm3dnlj5hg05yp"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -119362,8 +120357,8 @@ self: { }: mkDerivation { pname = "hoogle"; - version = "5.0.17.9"; - sha256 = "0s4p82issy3jlc0yz153r7i38ny1ygchf294hgms6jr1q467w86z"; + version = "5.0.17.10"; + sha256 = "12s3n3l6lf2vwmh4jbxnra694fpnzjgd8c236pnan0jdcb6x82vl"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -119791,10 +120786,8 @@ self: { }: mkDerivation { pname = "horname"; - version = "0.1.3.0"; - sha256 = "067jnyqk4lwrr23hvc30rqjmd400n9vd8wvj9bq67w47paqcz9p9"; - revision = "1"; - editedCabalFile = "10cgcxvpl0s4hs2r5g34kcdiy676azz751j3w5703m54mpz9irwl"; + version = "0.2.0.0"; + sha256 = "1qcvgjwasrgi760sv5rxl5klincgw34xczd3mqz32id183s57164"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -121615,6 +122608,22 @@ self: { broken = true; }) {}; + "hs-rqlite" = callPackage + ({ mkDerivation, aeson, base, bifunctors, bytestring, containers + , HTTP, scientific, text, unordered-containers + }: + mkDerivation { + pname = "hs-rqlite"; + version = "0.1.0.0"; + sha256 = "04q9vnwil3f30972pljs613wq1kb71w61jivdyxxy9i14grfcxsq"; + libraryHaskellDepends = [ + aeson base bifunctors bytestring containers HTTP scientific text + unordered-containers + ]; + description = "A Haskell client for RQlite"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hs-rs-notify" = callPackage ({ mkDerivation, base, filepath, notifier, process, protolude, text , unix @@ -122873,7 +123882,7 @@ self: { broken = true; }) {}; - "hsdev_0_3_3_1" = callPackage + "hsdev_0_3_3_2" = callPackage ({ mkDerivation, aeson, aeson-pretty, array, async, attoparsec , base, bytestring, Cabal, containers, cpphs, data-default, deepseq , direct-sqlite, directory, exceptions, filepath, fsnotify, ghc @@ -122887,8 +123896,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.3.3.1"; - sha256 = "09i1m3xkvjzq69mpzf73g3jxf3g5md8lfrxjwza6ns8ii9m4xcqh"; + version = "0.3.3.2"; + sha256 = "1qx5ppj1l871pm9qhqwd4297p3cp0v0fv64fkw4cdbpjza798x1i"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -124383,6 +125392,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hspec-megaparsec_2_0_1" = callPackage + ({ mkDerivation, base, containers, hspec, hspec-expectations + , megaparsec + }: + mkDerivation { + pname = "hspec-megaparsec"; + version = "2.0.1"; + sha256 = "0w8nn2rh01lkiwsiyqh3gviklhfmy0245rakj94dmliyljw8skfg"; + libraryHaskellDepends = [ + base containers hspec-expectations megaparsec + ]; + testHaskellDepends = [ base hspec hspec-expectations megaparsec ]; + description = "Utility functions for testing Megaparsec parsers with Hspec"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hspec-meta" = callPackage ({ mkDerivation, ansi-terminal, array, base, call-stack, clock , deepseq, directory, filepath, hspec-expectations, HUnit @@ -125693,6 +126719,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "htdp-image" = callPackage + ({ mkDerivation, AC-Angle, base, gloss, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "htdp-image"; + version = "1.1.0.0"; + sha256 = "17123nqkg8yk0pssmshdza0ipc42rx818q9gidig1d1camiyrfl4"; + libraryHaskellDepends = [ AC-Angle base gloss ]; + testHaskellDepends = [ + base gloss HUnit test-framework test-framework-hunit + ]; + description = "Beginner friendly graphics library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "htestu" = callPackage ({ mkDerivation, base, gcc, random }: mkDerivation { @@ -126775,8 +127817,8 @@ self: { pname = "http-download"; version = "0.1.0.0"; sha256 = "0wip7l6cls734ag306s5l0683qqh273b3lk5ibig66racmysjqyb"; - revision = "3"; - editedCabalFile = "147fjxz1y3rqwnrhvrhgg2d93fl6pbwkhc2fbzriwn7kyan8z06l"; + revision = "4"; + editedCabalFile = "1s20zjh52whs6hfhr90zyyy7g78zv1pw9hry1nwlzdv4hg97cbdh"; libraryHaskellDepends = [ base base64-bytestring bytestring conduit conduit-extra cryptonite cryptonite-conduit directory exceptions filepath http-client @@ -128936,8 +129978,8 @@ self: { }: mkDerivation { pname = "hw-kafka-avro"; - version = "4.0.0"; - sha256 = "0khqvd1l44bx4mnrv7hbvr0qbak6n17l4qqk3lwga21qnchnlgak"; + version = "4.0.1"; + sha256 = "1x0mq3sn05iwrn444kzyl66056xm8203hq0ajx9f8r85faq3v1ir"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -129148,17 +130190,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hw-prim_0_6_2_29" = callPackage + "hw-prim_0_6_2_31" = callPackage ({ mkDerivation, base, bytestring, criterion, directory, exceptions , ghc-prim, hedgehog, hspec, hspec-discover, hw-hspec-hedgehog - , mmap, QuickCheck, semigroups, transformers, vector + , mmap, QuickCheck, semigroups, transformers, unliftio-core, vector }: mkDerivation { pname = "hw-prim"; - version = "0.6.2.29"; - sha256 = "1pbcmi3ysaidhb5jlllmdwdkh7gbky234qxf5j2r5lk3n0n6zzp1"; + version = "0.6.2.31"; + sha256 = "00xfakvwnj3zys2ilpc9w9z5qzw1ng3cc65jfa1860z6yr7xdp59"; libraryHaskellDepends = [ - base bytestring ghc-prim mmap semigroups transformers vector + base bytestring ghc-prim mmap semigroups transformers unliftio-core + vector ]; testHaskellDepends = [ base bytestring directory exceptions hedgehog hspec @@ -129398,8 +130441,8 @@ self: { }: mkDerivation { pname = "hw-uri"; - version = "0.0.2.0"; - sha256 = "0z2y9ykg6q3p7qgm7s66sg5cw3pf2cbjlqk8xf6l7qgpa7br1z2b"; + version = "0.1.1.0"; + sha256 = "1f96632k6pcaxhy2nrm13s9kdb0dz3vsav6hzf94wlv7zdlncn8x"; libraryHaskellDepends = [ aeson amazonka amazonka-core amazonka-s3 antiope-core antiope-s3 base bytestring directory exceptions filepath http-client @@ -131332,15 +132375,16 @@ self: { , blaze-html, blaze-markup, bytestring, Cabal, cheapskate , code-page, containers, deepseq, directory, filepath, fingertree , fsnotify, gmp, haskeline, ieee754, libffi, megaparsec, mtl - , network, optparse-applicative, pretty, process, regex-tdfa, safe - , split, tagged, tasty, tasty-golden, tasty-rerun, terminal-size - , text, time, transformers, uniplate, unix, unordered-containers - , utf8-string, vector, vector-binary-instances, zip-archive + , network, optparse-applicative, parser-combinators, pretty + , process, regex-tdfa, safe, split, tagged, tasty, tasty-golden + , tasty-rerun, terminal-size, text, time, transformers, uniplate + , unix, unordered-containers, utf8-string, vector + , vector-binary-instances, zip-archive }: mkDerivation { pname = "idris"; - version = "1.3.1"; - sha256 = "0fn9h58l592j72njwma1ia48h8h87wi2rjqfxs7j2lfmvgfv18fi"; + version = "1.3.2"; + sha256 = "0wychzkg0yghd2pp8fqz78vp1ayzks191knfpl7mhh8igsmb6bc7"; configureFlags = [ "-fcurses" "-fexeconly" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -131351,8 +132395,8 @@ self: { base base64-bytestring binary blaze-html blaze-markup bytestring cheapskate code-page containers deepseq directory filepath fingertree fsnotify haskeline ieee754 libffi megaparsec mtl network - optparse-applicative pretty process regex-tdfa safe split - terminal-size text time transformers uniplate unix + optparse-applicative parser-combinators pretty process regex-tdfa + safe split terminal-size text time transformers uniplate unix unordered-containers utf8-string vector vector-binary-instances zip-archive ]; @@ -131367,6 +132411,8 @@ self: { ]; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -131425,6 +132471,25 @@ self: { license = "GPL"; }) {}; + "iexcloud" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, http-conduit + , HUnit, semigroups, stocks, unordered-containers + }: + mkDerivation { + pname = "iexcloud"; + version = "0.0.0.1"; + sha256 = "15qn3h1bz75bykcnyra6gg4d33gmr6ywc485hk2gmi4k6hbl6amf"; + libraryHaskellDepends = [ + aeson base bytestring containers http-conduit semigroups + unordered-containers + ]; + testHaskellDepends = [ base bytestring HUnit stocks ]; + description = "Library for the IEX Trading API"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "if" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -133229,16 +134294,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "influxdb_1_7_0" = callPackage + "influxdb_1_7_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal , cabal-doctest, clock, containers, doctest, foldl, http-client - , http-types, lens, network, optional-args, scientific, tagged - , template-haskell, text, time, unordered-containers, vector + , http-types, lens, network, optional-args, raw-strings-qq + , scientific, tagged, tasty, tasty-hunit, template-haskell, text + , time, unordered-containers, vector }: mkDerivation { pname = "influxdb"; - version = "1.7.0"; - sha256 = "1a9la9gm5brsh9rs9ai1a50kcdk75kw8jmrh1rd6xs4xiwdca819"; + version = "1.7.1"; + sha256 = "1nny63rd9bw7ijg9l09cd467whfaa1n3ph8dqdy7bp6kcbvdwnzn"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -133247,7 +134313,10 @@ self: { http-types lens network optional-args scientific tagged text time unordered-containers vector ]; - testHaskellDepends = [ base doctest template-haskell ]; + testHaskellDepends = [ + base containers doctest raw-strings-qq tasty tasty-hunit + template-haskell time + ]; description = "Haskell client library for InfluxDB"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133983,6 +135052,8 @@ self: { pname = "integer-logarithms"; version = "1.0.3"; sha256 = "05pc5hws66csvcvfswlwcr2fplwn1lbssvwifjxkbbwqhq0n5qjs"; + revision = "1"; + editedCabalFile = "1z6z63jr42jn073fd9ns7jcrw7n5lwx076q4b5rgzak7q1ixw2i8"; libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; testHaskellDepends = [ base QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck @@ -134720,8 +135791,8 @@ self: { pname = "invertible-grammar"; version = "0.1.2"; sha256 = "1nf7dchcxs8wwd2hgfpf04qd63ws22pafjwb5911lq7da8k1y57j"; - revision = "1"; - editedCabalFile = "1qk0pi8n45mbzwr6i6sly59b74njk0akzm6k0vnr262lqahy0hdl"; + revision = "2"; + editedCabalFile = "0j6zmj0dlhiq4qjrbjbvdsmky1l4z1qwqikixk1b9dpa05n01ykf"; libraryHaskellDepends = [ base bifunctors containers mtl prettyprinter profunctors semigroups tagged template-haskell text transformers @@ -135080,7 +136151,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ip_1_5_0" = callPackage + "ip_1_5_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, doctest, hashable, hspec, hspec-discover, HUnit , primitive, QuickCheck, quickcheck-classes, test-framework @@ -135089,10 +136160,8 @@ self: { }: mkDerivation { pname = "ip"; - version = "1.5.0"; - sha256 = "128kqqjbn020lpmga17dp34v91jbnnn8q2b1gy9rw21wvy507f5j"; - revision = "1"; - editedCabalFile = "09r4flbanb4zq3ixx57zd47gjvl6ghyrv62k11smbxzs6wy3szr4"; + version = "1.5.1"; + sha256 = "1crnn76vxhqq13556nc0537bh8xi5jzklyp24dqqfamxmfbwkzll"; libraryHaskellDepends = [ aeson attoparsec base bytestring deepseq hashable primitive text vector wide-word @@ -135129,11 +136198,11 @@ self: { ({ mkDerivation, base, binary, bytestring, iproute }: mkDerivation { pname = "ip2location"; - version = "8.0.4"; - sha256 = "0fry56zk9nbpqp58qvm1xxbq53pjiahkb58gh2h8dax80q3iczh4"; + version = "8.1.0"; + sha256 = "07n5xnspl318hrmff4gr274zpgszgviilwhjd7vdrhm1sq9sdir8"; libraryHaskellDepends = [ base binary bytestring iproute ]; description = "IP2Location Haskell package for IP geolocation"; - license = stdenv.lib.licenses.lgpl3; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -135142,8 +136211,8 @@ self: { ({ mkDerivation, base, binary, bytestring, iproute }: mkDerivation { pname = "ip2proxy"; - version = "2.0.0"; - sha256 = "0lhc0ni65wj32j97yw9iy2lawnl4bc7ml6lsjk12wks4mcy01nrv"; + version = "2.1.0"; + sha256 = "0qcmqy8p13hg9aih8m9w7qpbr6zcbvgc9y6bzh2cqm2sbx7ksvqm"; libraryHaskellDepends = [ base binary bytestring iproute ]; description = "IP2Proxy Haskell package for proxy detection"; license = stdenv.lib.licenses.mit; @@ -135469,6 +136538,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "irc-client_1_1_1_0" = callPackage + ({ mkDerivation, base, bytestring, conduit, connection, containers + , contravariant, exceptions, irc-conduit, irc-ctcp, mtl + , network-conduit-tls, old-locale, profunctors, stm, stm-chans + , text, time, tls, transformers, x509, x509-store, x509-validation + }: + mkDerivation { + pname = "irc-client"; + version = "1.1.1.0"; + sha256 = "1f2lqg37ig3f23066c4179vcym6p3ylmxsywqhmb0n078kix6kfb"; + libraryHaskellDepends = [ + base bytestring conduit connection containers contravariant + exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale + profunctors stm stm-chans text time tls transformers x509 + x509-store x509-validation + ]; + description = "An IRC client library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "irc-colors" = callPackage ({ mkDerivation, base, text }: mkDerivation { @@ -136815,10 +137905,10 @@ self: { }: mkDerivation { pname = "jaeger-flamegraph"; - version = "1.3.0"; - sha256 = "03j5hjrhyhmc6qjp7v4j0mr2y0fpk0zds6v55as24par508w72ka"; - revision = "2"; - editedCabalFile = "0p2pcfyrcbqh0rnmhhp5hbwixvlml62iz0d48z7dd6cwfdzlkfrr"; + version = "1.3.2"; + sha256 = "1m7vs4zi1cm5xj3wn8zr44rdx1l99ra59xwr64y9bdrs1raga7k3"; + revision = "1"; + editedCabalFile = "003h3aqdkpvpqqyv7ypv3shvfiqcwq7cfihqv38bp2iq5vin938q"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base containers QuickCheck text ]; @@ -137646,6 +138736,37 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "jose_0_8_1_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.8.1.0"; + sha256 = "02xg8axy6whbkn0mzg1gjy6b1mhxlmsh1x7vjk1fiawvg9nwzrkl"; + 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 + ]; + 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 + ]; + 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 @@ -137802,13 +138923,14 @@ self: { }) {}; "jsaddle-dom" = callPackage - ({ mkDerivation, base, base-compat, exceptions, jsaddle, lens, text - , transformers + ({ mkDerivation, base, base-compat, Cabal, exceptions, jsaddle + , lens, text, transformers }: mkDerivation { pname = "jsaddle-dom"; - version = "0.9.3.1"; - sha256 = "0ifbddp4vjpbl89bwczfp7ivnhfayg8317l8qk6h84p9vd1km44z"; + version = "0.9.3.2"; + sha256 = "1qc135w1y4f2mbky36dmb0ggcbwkv1vnmszw5lkhkxhkcag2sf07"; + setupHaskellDepends = [ base Cabal ]; libraryHaskellDepends = [ base base-compat exceptions jsaddle lens text transformers ]; @@ -137979,8 +139101,8 @@ self: { }: mkDerivation { pname = "json-api"; - version = "0.1.1.2"; - sha256 = "092x0zldcz6dsvvsxs2zr4cp4mbwjsrdpcassrl5i715x9rb5fmm"; + version = "0.1.4.0"; + sha256 = "1xswmpkwr1f49kf4hmp9014lwv4lcnyjj161ylfh5ihjfr30w0yb"; libraryHaskellDepends = [ aeson base containers data-default lens lens-aeson text unordered-containers url @@ -138712,6 +139834,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "json5hs" = callPackage + ({ mkDerivation, array, base, bytestring, containers, mtl, pretty + , syb, text + }: + mkDerivation { + pname = "json5hs"; + version = "0.1.2.2"; + sha256 = "19r1ripvalrhvlqdk0pvm18b4a8sibdwlc60i2yj7da10rdx5cv1"; + libraryHaskellDepends = [ + array base bytestring containers mtl pretty syb text + ]; + description = "Serialising to and from JSON5"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "jsonextfilter" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , monads-tf, optparse-applicative, process, scientific, string-qq @@ -138736,13 +139873,15 @@ self: { "jsonpath" = callPackage ({ mkDerivation, aeson, aeson-casing, attoparsec, base, bytestring - , file-embed, hspec, hspec-attoparsec, text, unordered-containers - , vector + , file-embed, hspec, hspec-attoparsec, hspec-discover, text + , unordered-containers, vector }: mkDerivation { pname = "jsonpath"; - version = "0.1.0.0"; - sha256 = "0lr0sw30siaycw92b1xbnlrjn1pb7y8l9dflrjzr5d9k43lnrz42"; + version = "0.1.0.1"; + sha256 = "0wp5516g33spb9ilphjkzamr88xl64fb6y9zjfci1kac5vkl4qqk"; + revision = "2"; + editedCabalFile = "04jw3ayvcabsfcqazksnn0rg0i1326d0gjdx1zl8rk955g2qlwam"; libraryHaskellDepends = [ aeson attoparsec base text unordered-containers vector ]; @@ -138750,6 +139889,7 @@ self: { aeson aeson-casing attoparsec base bytestring file-embed hspec hspec-attoparsec text unordered-containers vector ]; + testToolDepends = [ hspec-discover ]; description = "Library to parse and execute JSONPath"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -139747,7 +140887,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "katip_0_8_2_0" = callPackage + "katip_0_8_3_0" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , bytestring, containers, criterion, deepseq, directory, either , filepath, hostname, microlens, microlens-th, monad-control, mtl @@ -139759,8 +140899,8 @@ self: { }: mkDerivation { pname = "katip"; - version = "0.8.2.0"; - sha256 = "064i2dbl52i2z7lyvk01ayvf6dzzn20bac3fwh0dlvr5bn49wran"; + version = "0.8.3.0"; + sha256 = "0wpqchpgrp7awrf7hirg0768g8nnqrydnwcw8xgxw6w47zcb71d0"; libraryHaskellDepends = [ aeson async auto-update base bytestring containers either hostname microlens microlens-th monad-control mtl old-locale resourcet @@ -140402,8 +141542,8 @@ self: { }: mkDerivation { pname = "keera-hails-reactive-gtk"; - version = "0.3"; - sha256 = "0b3j9h0d4sw1hhgihnlqpiyc9bwfk5qd6jl64jij3q3rjy97wr3v"; + version = "0.5"; + sha256 = "014d9hr2321gs6ska8ykrgh59k92c6kxf0a3gqvrfj3rck28izb9"; libraryHaskellDepends = [ base bytestring cairo glib gtk gtk-helpers keera-hails-reactivevalues mtl transformers @@ -140415,13 +141555,15 @@ self: { }) {}; "keera-hails-reactive-network" = callPackage - ({ mkDerivation, base, keera-hails-reactivevalues, network }: + ({ mkDerivation, base, bytestring, keera-hails-reactivevalues + , network, network-bsd + }: mkDerivation { pname = "keera-hails-reactive-network"; - version = "0.0.3.3"; - sha256 = "1379djvy5nn6k67ds7mk9jjh03zd6sj0v8sf5agmk3pf5cyp0xa3"; + version = "0.1"; + sha256 = "1d1r9p5ray60yfrxs89byc7rmdsm340k2b8klv25k0wh2fvrx2yw"; libraryHaskellDepends = [ - base keera-hails-reactivevalues network + base bytestring keera-hails-reactivevalues network network-bsd ]; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; @@ -141325,18 +142467,18 @@ self: { "korea-holidays" = callPackage ({ mkDerivation, aeson, base, hspec, monad-extras, split - , template-haskell, yaml + , template-haskell, time, yaml }: mkDerivation { pname = "korea-holidays"; - version = "0.1.0.3"; - sha256 = "0v240dkvqy1jhkq1mzhyaiyg62m8lbbm79bc2g31jy9b7r1h93i2"; + version = "0.1.0.4"; + sha256 = "11yiip6nv84k8q4n37w9kn1w57vizlcggszh0pnrkkx36xwwk9ll"; enableSeparateDataOutput = true; libraryHaskellDepends = [ - aeson base monad-extras split template-haskell yaml + aeson base monad-extras split template-haskell time yaml ]; testHaskellDepends = [ - aeson base hspec monad-extras split template-haskell yaml + aeson base hspec monad-extras split template-haskell time yaml ]; description = "Korea Holidays"; license = stdenv.lib.licenses.mit; @@ -141485,6 +142627,66 @@ self: { broken = true; }) {egl = null; inherit (pkgs) glew;}; + "kubernetes-client" = callPackage + ({ mkDerivation, aeson, base, bytestring, connection, containers + , data-default-class, hspec, http-client, http-client-tls + , kubernetes-client-core, microlens, mtl, pem, safe-exceptions + , streaming-bytestring, text, tls, x509, x509-store, x509-system + , x509-validation, yaml + }: + mkDerivation { + pname = "kubernetes-client"; + version = "0.1.0.1"; + sha256 = "0fzilm4k7cq3k6vlx01c5gzg4lnrgpfdldbiml4rbiv42f13pr7j"; + libraryHaskellDepends = [ + aeson base bytestring connection containers data-default-class + http-client http-client-tls kubernetes-client-core microlens mtl + pem safe-exceptions streaming-bytestring text tls x509 x509-store + x509-system x509-validation + ]; + testHaskellDepends = [ + aeson base bytestring connection containers data-default-class + hspec http-client http-client-tls kubernetes-client-core microlens + mtl pem safe-exceptions streaming-bytestring text tls x509 + x509-store x509-system x509-validation yaml + ]; + description = "Client library for Kubernetes"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + + "kubernetes-client-core" = callPackage + ({ mkDerivation, aeson, base, base64-bytestring, bytestring + , case-insensitive, containers, deepseq, exceptions, hspec + , http-api-data, http-client, http-client-tls, http-media + , http-types, iso8601-time, katip, microlens, mtl, network + , QuickCheck, random, safe-exceptions, semigroups, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "kubernetes-client-core"; + version = "0.1.0.1"; + sha256 = "08sxsc9a9vdsqp71zxnc309cng75k3c57mcmmryhpwwyscvgfnsk"; + revision = "1"; + editedCabalFile = "0qzh7zq36q57yfccna1izi1gz9fpki9ngnl8dgf3m6halrxwqlc7"; + libraryHaskellDepends = [ + aeson base base64-bytestring bytestring case-insensitive containers + deepseq exceptions http-api-data http-client http-client-tls + http-media http-types iso8601-time katip microlens mtl network + random safe-exceptions text time transformers unordered-containers + vector + ]; + testHaskellDepends = [ + aeson base bytestring containers hspec iso8601-time mtl QuickCheck + semigroups text time transformers unordered-containers vector + ]; + description = "Auto-generated kubernetes-client-core API Client"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "kure" = callPackage ({ mkDerivation, base, dlist, transformers }: mkDerivation { @@ -141907,6 +143109,8 @@ self: { ]; description = "Declarative command-line parser using type-driven pattern matching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "lambda-placeholders" = callPackage @@ -144238,7 +145442,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "lattices_2" = callPackage + "lattices_2_0_1" = callPackage ({ mkDerivation, base, base-compat, containers, deepseq, hashable , integer-logarithms, QuickCheck, quickcheck-instances , semigroupoids, tagged, tasty, tasty-quickcheck, transformers @@ -144246,10 +145450,8 @@ self: { }: mkDerivation { pname = "lattices"; - version = "2"; - sha256 = "050c66rrzh5p204jyqmysyhm419f8pasi0mlbwv3n167y0fnr8xq"; - revision = "1"; - editedCabalFile = "08m46liplbh1xxnpsq0wnjabmyj625vbnnsyypd52jlhzclfhqz1"; + version = "2.0.1"; + sha256 = "0c7n7fh89llg8ijylwc14ikqrg077vcqcgph5h9nar6i5dyaprfy"; libraryHaskellDepends = [ base base-compat containers deepseq hashable integer-logarithms QuickCheck semigroupoids tagged transformers universe-base @@ -144476,8 +145678,8 @@ self: { pname = "lazy-hash"; version = "0.1.0.0"; sha256 = "1xa2c8gxk5l4njbs58zpq2ybdvjd4y214p71nfmfrzw0arwz49pa"; - revision = "1"; - editedCabalFile = "07sn3q7q29zkxpillprx2d05pybjpvpglz8s7jq07akdhwmwx9mk"; + revision = "2"; + editedCabalFile = "0j46blbddl9y4chccyns7cixbxb0a4pkmdkbd5z09510ddz3jqm3"; libraryHaskellDepends = [ base constrained-categories hashable haskell-src-meta tagged template-haskell vector-space @@ -144497,6 +145699,8 @@ self: { pname = "lazy-hash-cache"; version = "0.1.0.0"; sha256 = "1bdq2fbxpmlva1qbxbiznnjmz7yv7qzcr8wdgds0rdzwhjn97mp4"; + revision = "1"; + editedCabalFile = "1m42wsj93vpb6v1dcj2lc5z04qc2np8i7n3w82jwwk4wbgl5q35j"; libraryHaskellDepends = [ base base16-bytestring binary bytestring data-default-class directory filepath hashable lazy-hash microlens microlens-th @@ -144698,16 +145902,16 @@ self: { "ldap-client" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , connection, containers, hspec, network, process, semigroups, stm - , text + , connection, containers, fail, hspec, network, process, semigroups + , stm, text }: mkDerivation { pname = "ldap-client"; - version = "0.2.0"; - sha256 = "0vs6n3q9svwhcp6853ipxmw1anmy8qfy3xajjsf7h4pjnqzy7g88"; + version = "0.3.0"; + sha256 = "0fii1yi3mn1dqvzbsx63fqrb53v81a7d2gqn3xma8v9vsp9nxv7v"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring connection - containers network semigroups stm text + containers fail network semigroups stm text ]; testHaskellDepends = [ base bytestring hspec process semigroups ]; description = "Pure Haskell LDAP Client Library"; @@ -145361,6 +146565,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lens-family_2_0_0" = callPackage + ({ mkDerivation, base, containers, lens-family-core, mtl + , transformers + }: + mkDerivation { + pname = "lens-family"; + version = "2.0.0"; + sha256 = "1nq3dwkrjyqafbv4gvwwgz6ih8y4x9bks11jhljh43q3qnjz54v7"; + libraryHaskellDepends = [ + base containers lens-family-core mtl transformers + ]; + description = "Lens Families"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lens-family-core" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -145372,6 +146592,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "lens-family-core_2_0_0" = callPackage + ({ mkDerivation, base, containers, transformers }: + mkDerivation { + pname = "lens-family-core"; + version = "2.0.0"; + sha256 = "0ni6s873hy2h3b316835ssmlyr05yinb3a8jq5b01p9ppp9zrd0r"; + libraryHaskellDepends = [ base containers transformers ]; + description = "Haskell 2022 Lens Families"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lens-family-th" = callPackage ({ mkDerivation, base, hspec, template-haskell, transformers }: mkDerivation { @@ -145520,19 +146752,20 @@ self: { }) {}; "lens-regex-pcre" = callPackage - ({ mkDerivation, base, hspec, lens, pcre-heavy, pcre-light - , template-haskell, text + ({ mkDerivation, base, bytestring, hspec, lens, pcre-heavy + , pcre-light, template-haskell, text }: mkDerivation { pname = "lens-regex-pcre"; - version = "0.3.0.0"; - sha256 = "1010nhik7vfk6gll9h8cwnq7mx3v4gnl3nlyn7ma5y93ghq0ckvs"; + version = "0.3.1.0"; + sha256 = "1fbhwzs7mwz9c0l3p34zcgfvqxwxlhr3abz9gawlraiiypmz0iby"; libraryHaskellDepends = [ - base lens pcre-heavy pcre-light template-haskell text + base bytestring lens pcre-heavy pcre-light template-haskell text ]; testHaskellDepends = [ base hspec lens pcre-heavy pcre-light template-haskell text ]; + description = "A lensy interface to regular expressions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -146053,6 +147286,8 @@ self: { pname = "libarchive"; version = "1.0.5.1"; sha256 = "1fchnvs03hg513v7a45a3qbfr3kbh3nmqjqljzr2y1mg2ghkr7cz"; + revision = "4"; + editedCabalFile = "0wzw962gl9lm5faaa86z4q7s9cbzqn346cmlbhr518dbnw7nv31d"; libraryHaskellDepends = [ base bytestring composition-prelude dlist filepath ]; @@ -147756,8 +148991,8 @@ self: { pname = "linearmap-category"; version = "0.3.5.0"; sha256 = "0qmd0nz343j3j3kprbhwfkglcswfcawfy0y6g4ai6nzdga42nfrf"; - revision = "2"; - editedCabalFile = "129fgr6m9691cd3nzy1magiwd7f9x2jip96pqj10d0lgb931frzg"; + revision = "3"; + editedCabalFile = "0b4m77csdsi5wgvbclza2arps5s0xgg0iibiy8kwax55ml04kkvp"; libraryHaskellDepends = [ base call-stack constrained-categories containers free-vector-spaces ieee754 lens linear manifolds-core semigroups @@ -150017,6 +151252,28 @@ self: { broken = true; }) {}; + "log4hs" = callPackage + ({ mkDerivation, aeson, base, containers, data-default, directory + , filepath, hspec, hspec-core, process, QuickCheck + , template-haskell, text, time, unordered-containers + }: + mkDerivation { + pname = "log4hs"; + version = "0.0.2.0"; + sha256 = "08z8lyh0q4wpxvvzbf1w0bxvbm90ic4wzxyac2b0ddm4zn8zdn9s"; + libraryHaskellDepends = [ + aeson base containers data-default directory filepath + template-haskell text time unordered-containers + ]; + testHaskellDepends = [ + aeson base containers data-default directory filepath hspec + hspec-core process QuickCheck template-haskell text time + unordered-containers + ]; + description = "A python logging style log library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "logentries" = callPackage ({ mkDerivation, base, bytestring, data-default, fast-logger, hspec , network, stm, uuid-types, wai, wai-extra @@ -150296,12 +151553,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "logict_0_7_0_1" = callPackage + "logict_0_7_0_2" = callPackage ({ mkDerivation, base, mtl, tasty, tasty-hunit }: mkDerivation { pname = "logict"; - version = "0.7.0.1"; - sha256 = "1zzcfxdl156rrr120vjcn2wawa2qdrninm6d4mxj215ig1a3aak5"; + version = "0.7.0.2"; + sha256 = "1xfgdsxg0lp8m0a2cb83rcxrnnc37asfikay2kydi933anh9ihfc"; libraryHaskellDepends = [ base mtl ]; testHaskellDepends = [ base mtl tasty tasty-hunit ]; description = "A backtracking logic-programming monad"; @@ -153174,8 +154431,8 @@ self: { }: mkDerivation { pname = "mandrill"; - version = "0.5.3.5"; - sha256 = "0yh7r3wrzpzm3iv0zvs6nzf36hwv0y7xlsz6cy3dlnyrr5jbsb1i"; + version = "0.5.3.6"; + sha256 = "1jvgxhc3x7867cryvsbpj7hks9syhpqbwyh4y0v6b0yp0xil8qrl"; libraryHaskellDepends = [ aeson base base64-bytestring blaze-html bytestring containers email-validate http-client http-client-tls http-types microlens-th @@ -153931,26 +155188,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "massiv_0_3_6_0" = callPackage - ({ mkDerivation, async, base, bytestring, Cabal, cabal-doctest - , containers, data-default, data-default-class, deepseq, doctest - , exceptions, hspec, mersenne-random-pure64, primitive, QuickCheck - , random, scheduler, splitmix, template-haskell, unliftio - , unliftio-core, vector + "massiv_0_4_0_0" = callPackage + ({ mkDerivation, base, bytestring, Cabal, cabal-doctest + , data-default-class, deepseq, doctest, exceptions + , mersenne-random-pure64, primitive, QuickCheck, random, scheduler + , splitmix, template-haskell, unliftio-core, vector }: mkDerivation { pname = "massiv"; - version = "0.3.6.0"; - sha256 = "00bjgrb7pa59i8wmbjgscq0jw4x3r1gjvpns7sd58ffa8zfd6sgc"; + version = "0.4.0.0"; + sha256 = "077w18fxgq50h1ylbalf6lbam2rcqp4a3b6qr21ac63514dyvyfz"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base bytestring data-default-class deepseq exceptions primitive scheduler unliftio-core vector ]; testHaskellDepends = [ - async base bytestring containers data-default deepseq doctest hspec - mersenne-random-pure64 QuickCheck random scheduler splitmix - template-haskell unliftio vector + base doctest mersenne-random-pure64 QuickCheck random splitmix + template-haskell ]; description = "Massiv (Массив) is an Array Library"; license = stdenv.lib.licenses.bsd3; @@ -153993,6 +155248,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "massiv-test" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default + , data-default-class, deepseq, exceptions, genvalidity-hspec, hspec + , massiv, primitive, QuickCheck, scheduler, unliftio, vector + }: + mkDerivation { + pname = "massiv-test"; + version = "0.1.0"; + sha256 = "08rs0j773c3jxnj6akh8gaywfz2g10w1ddmcqpkci5bqqjmqqf85"; + libraryHaskellDepends = [ + base bytestring data-default-class deepseq exceptions hspec massiv + primitive QuickCheck scheduler unliftio vector + ]; + testHaskellDepends = [ + base bytestring containers data-default deepseq genvalidity-hspec + hspec massiv QuickCheck scheduler vector + ]; + description = "Library that contains generators, properties and tests for Massiv Array Library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "master-plan" = callPackage ({ mkDerivation, base, diagrams, diagrams-lib, diagrams-rasterific , hspec, megaparsec, mtl, optparse-applicative, QuickCheck @@ -155337,19 +156615,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "mega-sdist_0_4_0_0" = callPackage - ({ mkDerivation, base, bytestring, optparse-simple, pantry-tmp - , path, path-io, rio, rio-orphans, yaml + "mega-sdist_0_4_0_1" = callPackage + ({ mkDerivation, base, bytestring, optparse-simple, pantry, path + , path-io, rio, rio-orphans, yaml }: mkDerivation { pname = "mega-sdist"; - version = "0.4.0.0"; - sha256 = "0d8z0jj4xm091zdlydkp5fgs22xrjrsydfm9czfr79pmcx83bdi4"; + version = "0.4.0.1"; + sha256 = "191saxmdh3705rhci7lz7qzcdzv2zvw9bwa7f5d62500azi13j8v"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base bytestring optparse-simple pantry-tmp path path-io rio - rio-orphans yaml + base bytestring optparse-simple pantry path path-io rio rio-orphans + yaml ]; description = "Handles uploading to Hackage from mega repos"; license = stdenv.lib.licenses.mit; @@ -155559,6 +156837,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "membrain" = callPackage + ({ mkDerivation, base, doctest, Glob, hedgehog, hspec, type-spec }: + mkDerivation { + pname = "membrain"; + version = "0.0.0.0"; + sha256 = "01wv5i3kgbpmwjnjk5xgkpm3j5wazlz1f05kmm523wf34xivp498"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base doctest Glob hedgehog hspec type-spec + ]; + description = "Type-safe memory units"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "memcache" = callPackage ({ mkDerivation, base, binary, blaze-builder, bytestring, criterion , data-default-class, hashable, network, resource-pool, time @@ -155667,8 +156961,8 @@ self: { }: mkDerivation { pname = "memdb"; - version = "1.0.0.0"; - sha256 = "1rm1ijhhiyznbqidcpa1796lzj35dhi4jb0a2qbrvgim329ymsr2"; + version = "1.0.0.3"; + sha256 = "082i381qyba51zkv4fqkn3mdhmya39pz8pw69m02c3hnp5vr4n4c"; libraryHaskellDepends = [ base bytestring cereal vector ]; testHaskellDepends = [ base bytestring cereal hspec QuickCheck vector @@ -156734,8 +158028,8 @@ self: { pname = "microlens-process"; version = "0.2.0.0"; sha256 = "05bkm3nhiv2mprds9xlmmnzll91hn76navb9h9kc9nl5rnq4nwrn"; - revision = "2"; - editedCabalFile = "02h97gnxwsn20npxsc0mjhyv5s8fj41xkm18xwvcqcq7a4cj8jnw"; + revision = "4"; + editedCabalFile = "00dhcr2czcx986a4lijmlbrxk2wm059mmbh63qs48wb6z4rrsg7y"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ base filepath microlens process ]; testHaskellDepends = [ base doctest microlens process ]; @@ -157341,6 +158635,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "minecraft" = callPackage + ({ mkDerivation }: + mkDerivation { + pname = "minecraft"; + version = "0.0.0.0"; + sha256 = "07h6hgq4k1wm4ldwb29fgmmbl9ygrlbq3qv3ymfvc25l5rvgss4h"; + doHaddock = false; + description = "TBA"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "minecraft-data" = callPackage ({ mkDerivation, array, base, bytestring, cereal, containers, lens , mtl, nbt, pipes, pipes-bytestring, pipes-cereal, pipes-parse @@ -157348,8 +158653,8 @@ self: { }: mkDerivation { pname = "minecraft-data"; - version = "0.1.0.0"; - sha256 = "1p0lci3b3lwcd6j13bvsscz7ar5vskvhkpj8gy4fp8d1pak2adwr"; + version = "0.1.0.1"; + sha256 = "02ispnzvxjazjy76bqpils6jmy37l4v61l1wcklvvsvkb72yc39n"; libraryHaskellDepends = [ array base bytestring cereal containers lens mtl nbt pipes pipes-bytestring pipes-cereal pipes-parse pipes-zlib text text-show @@ -157559,36 +158864,36 @@ self: { broken = true; }) {}; - "minio-hs_1_3_1" = callPackage + "minio-hs_1_5_0" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring - , case-insensitive, conduit, conduit-extra, connection, containers - , cryptonite, cryptonite-conduit, digest, directory, exceptions - , filepath, http-client, http-client-tls, http-conduit, http-types - , ini, memory, protolude, QuickCheck, raw-strings-qq, resourcet - , retry, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck - , temporary, text, time, transformers, unliftio, unliftio-core + , case-insensitive, conduit, conduit-extra, connection, cryptonite + , cryptonite-conduit, digest, directory, exceptions, filepath + , http-client, http-client-tls, http-conduit, http-types, ini + , memory, protolude, QuickCheck, raw-strings-qq, resourcet, retry + , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, temporary + , text, time, transformers, unliftio, unliftio-core , unordered-containers, xml-conduit }: mkDerivation { pname = "minio-hs"; - version = "1.3.1"; - sha256 = "1z553cpflxmr5hy723bgmwyq061fpivi1jw0vq64x1i0bz0q1llp"; + version = "1.5.0"; + sha256 = "0qp8zl7f055lpchg8abcc27jq4s0nn14qp474qrj4wdmynfi8bc8"; libraryHaskellDepends = [ aeson base base64-bytestring binary bytestring case-insensitive - conduit conduit-extra connection containers cryptonite - cryptonite-conduit digest directory exceptions filepath http-client - http-client-tls http-conduit http-types ini memory protolude - raw-strings-qq resourcet retry text time transformers unliftio - unliftio-core unordered-containers xml-conduit + conduit conduit-extra connection cryptonite cryptonite-conduit + digest directory exceptions filepath http-client http-client-tls + http-conduit http-types ini memory protolude raw-strings-qq + resourcet retry text time transformers unliftio unliftio-core + unordered-containers xml-conduit ]; testHaskellDepends = [ aeson base base64-bytestring binary bytestring case-insensitive - conduit conduit-extra connection containers cryptonite - cryptonite-conduit digest directory exceptions filepath http-client - http-client-tls http-conduit http-types ini memory protolude - QuickCheck raw-strings-qq resourcet retry tasty tasty-hunit - tasty-quickcheck tasty-smallcheck temporary text time transformers - unliftio unliftio-core unordered-containers xml-conduit + conduit conduit-extra connection cryptonite cryptonite-conduit + digest directory exceptions filepath http-client http-client-tls + http-conduit http-types ini memory protolude QuickCheck + raw-strings-qq resourcet retry tasty tasty-hunit tasty-quickcheck + tasty-smallcheck temporary text time transformers unliftio + unliftio-core unordered-containers xml-conduit ]; description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage"; license = stdenv.lib.licenses.asl20; @@ -157974,6 +159279,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "miso_1_2_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 = "1.2.0.0"; + sha256 = "08yhr5hxrvgqdc32yz2j3mix7s8q5bzycld3kd4rfcy2h4h72962"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers http-api-data http-types lucid + network-uri servant servant-lucid text transformers vector + ]; + description = "A tasty Haskell front-end framework"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "miso-action-logger" = callPackage ({ mkDerivation, aeson, base, ghcjs-base, miso }: mkDerivation { @@ -159547,6 +160872,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "monad-metrics-extensible" = callPackage + ({ mkDerivation, base, dependent-map, dependent-sum, ekg, ekg-core + , exceptions, hspec, mtl, stm, text + }: + mkDerivation { + pname = "monad-metrics-extensible"; + version = "0.1.0.1"; + sha256 = "044hvhnf7wsgd18cac2j3bfw2vbxfnra736l6qndfx07mkv1nz5n"; + libraryHaskellDepends = [ + base dependent-map dependent-sum ekg ekg-core exceptions mtl stm + text + ]; + testHaskellDepends = [ + base dependent-map dependent-sum ekg ekg-core exceptions hspec mtl + stm text + ]; + description = "An extensible and type-safe wrapper around EKG metrics"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "monad-mock" = callPackage ({ mkDerivation, base, constraints, exceptions, haskell-src-exts , haskell-src-meta, hspec, monad-control, mtl, template-haskell @@ -160734,6 +162079,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monoidal-containers_0_5_0_0" = callPackage + ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens + , newtype, semigroups, these, unordered-containers + }: + mkDerivation { + pname = "monoidal-containers"; + version = "0.5.0.0"; + sha256 = "0dayylvsn6mcgyis04nl4384sg8vr4mrnvf1wvfhb5pip3v7hl7a"; + libraryHaskellDepends = [ + aeson base containers deepseq hashable lens newtype semigroups + these unordered-containers + ]; + description = "Containers with monoidal accumulation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "monoidplus" = callPackage ({ mkDerivation, base, contravariant, semigroups, transformers }: mkDerivation { @@ -161747,8 +163109,8 @@ self: { }: mkDerivation { pname = "ms-tds"; - version = "0.2.0.0"; - sha256 = "0675h4w8nayvh2gm644anz8sqk37b1n5ia4w5fgyaf9y6drafyda"; + version = "0.3.0.0"; + sha256 = "0pdv9x6743qaqk6fcm02hfrr09ckwbd9fpgzgmgmgnqhqxm0y9y6"; libraryHaskellDepends = [ array base binary bytestring crypto-random data-default-class mtl network template-haskell text time tls uuid-types x509-store @@ -161885,8 +163247,8 @@ self: { }: mkDerivation { pname = "mssql-simple"; - version = "0.2.0.0"; - sha256 = "1pqw2kr8fyy62kmamvm600zsqri9d2201kixvr6gdy6z0ivyl0sz"; + version = "0.3.0.0"; + sha256 = "0wssw1d3ki95b83ww6brx8apk7s86vnzgwlh91xvfdp8hkqygx1q"; libraryHaskellDepends = [ base binary bytestring hostname ms-tds network text time tls ]; @@ -163586,6 +164948,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "mwc-probability_2_1_0" = callPackage + ({ mkDerivation, base, mwc-random, primitive, transformers }: + mkDerivation { + pname = "mwc-probability"; + version = "2.1.0"; + sha256 = "0ac4pr2l0p48a0n6jym445c8h7n2nf1pqkhrz6cd1rjbmrk5mbm3"; + libraryHaskellDepends = [ base mwc-random primitive transformers ]; + description = "Sampling function-based probability distributions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "mwc-probability-transition" = callPackage ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect , mtl, mwc-probability, primitive, QuickCheck, transformers @@ -164419,6 +165793,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "named-sop" = callPackage + ({ mkDerivation, base, singletons, tasty, tasty-hunit, text }: + mkDerivation { + pname = "named-sop"; + version = "0.2.0.0"; + sha256 = "1yz4cp19nf44cscfzhwsw7xigq07sxbvzfw5v5l3jgsjxi5xw9ad"; + libraryHaskellDepends = [ base singletons text ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + description = "Dependently-typed sums and products, tagged by field name"; + license = stdenv.lib.licenses.mit; + }) {}; + "namelist" = callPackage ({ mkDerivation, base, case-insensitive, data-default-class, parsec , QuickCheck, tasty, tasty-hunit, tasty-quickcheck @@ -164715,10 +166101,8 @@ self: { }: mkDerivation { pname = "naqsha"; - version = "0.3.0.0"; - sha256 = "1564aff7ynqilqa9aiv1ih3dl9rimvvzyzqczx1bb94iznrfzghi"; - isLibrary = false; - isExecutable = false; + version = "0.3.0.1"; + sha256 = "0wg2vvik0yhaqyla64m3mcrv0fkrs92dgkrq5pzq78xjycnm7q1r"; libraryHaskellDepends = [ base bytestring groups vector ]; testHaskellDepends = [ base bytestring groups hspec hspec-discover HUnit QuickCheck vector @@ -165477,20 +166861,20 @@ self: { "net-spider" = callPackage ({ mkDerivation, aeson, base, containers, data-interval, doctest , doctest-discover, extended-reals, greskell, greskell-websocket - , hashable, hspec, monad-logger, safe-exceptions, text, time - , unordered-containers, vector + , hashable, hspec, monad-logger, safe-exceptions, scientific, text + , time, unordered-containers, vector }: mkDerivation { pname = "net-spider"; - version = "0.3.0.0"; - sha256 = "1wz37rrjpk4v8h1mh6pbld84f9kp5h3qcjxxh6fgbkij5l4g7m77"; + version = "0.3.1.1"; + sha256 = "0p0vwj438mbiwjgn7sqf3cb4bl48ygwi8n61wap9a9nc6fwrjmi8"; libraryHaskellDepends = [ aeson base containers data-interval extended-reals greskell - greskell-websocket hashable monad-logger safe-exceptions text time - unordered-containers vector + greskell-websocket hashable monad-logger safe-exceptions scientific + text time unordered-containers vector ]; testHaskellDepends = [ - base doctest doctest-discover hspec vector + aeson base doctest doctest-discover hspec text vector ]; description = "A graph database middleware to maintain a time-varying graph"; license = stdenv.lib.licenses.bsd3; @@ -165502,8 +166886,8 @@ self: { }: mkDerivation { pname = "net-spider-pangraph"; - version = "0.1.0.0"; - sha256 = "1aiacaccml8477vmcnv9mqcrn87nyx7pbgwp7rppz7h5w0dsj8lx"; + version = "0.1.1.0"; + sha256 = "1j3s379ri05jg3bzhiz6d8fjvxlkz00l7mrphqmr46j4y8d9vrkv"; libraryHaskellDepends = [ base bytestring greskell net-spider pangraph text time ]; @@ -165518,15 +166902,14 @@ self: { "net-spider-rpl" = callPackage ({ mkDerivation, aeson, base, greskell, hashable, hspec, ip - , net-spider, net-spider-pangraph, text, time + , net-spider, text, time }: mkDerivation { pname = "net-spider-rpl"; - version = "0.1.0.0"; - sha256 = "0basbgcdkjksg9p2s5s0whnbas3w3wnrkkdsr907m8gppkdk6i69"; + version = "0.2.1.0"; + sha256 = "07f51ym5v1mpa1v6249sgkxqd8y52fdgs8l2r59mxil1ph6al7x1"; libraryHaskellDepends = [ - aeson base greskell hashable ip net-spider net-spider-pangraph text - time + aeson base greskell hashable ip net-spider text time ]; testHaskellDepends = [ base hspec net-spider text ]; description = "NetSpider data model and utility for RPL networks"; @@ -166701,6 +168084,19 @@ self: { broken = true; }) {}; + "network-run" = callPackage + ({ mkDerivation, base, network }: + mkDerivation { + pname = "network-run"; + version = "0.0.1"; + sha256 = "1yc5hpcadab1dzvi9wz6v25v7wp5j07a36wdabrxi1pwy4gania5"; + libraryHaskellDepends = [ base network ]; + description = "Simple network runner library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "network-server" = callPackage ({ mkDerivation, base, network, unix }: mkDerivation { @@ -167568,8 +168964,8 @@ self: { }: mkDerivation { pname = "ngx-export-tools"; - version = "0.4.5.0"; - sha256 = "1775syhp5pgm6sdn3x8y3zqzvqrwypl07xm6rkv34sbw5x84mmmv"; + version = "0.4.6.0"; + sha256 = "0bvyh1b8q2mh2labaykc7lndr2rfhzmkw8c7b56pxsa2fypfl232"; libraryHaskellDepends = [ aeson base binary bytestring ngx-export safe template-haskell ]; @@ -168169,6 +169565,17 @@ self: { broken = true; }) {}; + "no-value" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "no-value"; + version = "1.0.0.0"; + sha256 = "1jczx8d4ah74wiishdcv335hlr0330wwq0vfb5rv4gmrvbpkgllf"; + libraryHaskellDepends = [ base ]; + description = "A type class for choosing sentinel-like values"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "noether" = callPackage ({ mkDerivation, array, async, base, bytestring, containers , criterion, deepseq, ghc-prim, hashable, hedgehog, mtl, mtl-compat @@ -169171,8 +170578,8 @@ self: { pname = "number-show"; version = "0.1.0.0"; sha256 = "01lywbcqg46wrd3qy0jikkh1p45yflypf1vcmrw75qpwji2afjry"; - revision = "1"; - editedCabalFile = "0wzim9xpm78rd71jcgfrz427rjvyvrb7qilkcvw78si7mj9wsxcc"; + revision = "2"; + editedCabalFile = "1lsxi6704g6svw0834haggp6j97kb6r51583lr2a3kn1ni2zh60c"; libraryHaskellDepends = [ base microlens microlens-th ]; description = "Flexible and accurate (for a given precision) numerical->string conversion"; license = stdenv.lib.licenses.gpl3; @@ -172316,6 +173723,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "optparse-enum" = callPackage + ({ mkDerivation, base, enum-text, fmt, optparse-applicative, text + }: + mkDerivation { + pname = "optparse-enum"; + version = "1.0.0.0"; + sha256 = "0d3wpfss1nm42hjn8l7x34ksa7yx5ccc4iglbfvln0rkbqdsjh13"; + libraryHaskellDepends = [ + base enum-text fmt optparse-applicative text + ]; + description = "An enum-text based toolkit for optparse-applicative"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "optparse-generic" = callPackage ({ mkDerivation, base, bytestring, Only, optparse-applicative , semigroups, system-filepath, text, time, transformers, void @@ -172984,6 +174407,30 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "outsort" = callPackage + ({ mkDerivation, async, base, bytestring, conduit + , conduit-algorithms, conduit-combinators, conduit-extra + , containers, deepseq, directory, exceptions, filemanip, filepath + , MissingH, primitive, resourcet, safe, safeio, temporary, text + , transformers, transformers-base, vector, vector-algorithms + }: + mkDerivation { + pname = "outsort"; + version = "0.1.0"; + sha256 = "13iw9hgsmz1j4lm4ahpi9kjgf3pcayll9fpi3fga48474hpz7gff"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async base bytestring conduit conduit-algorithms + conduit-combinators conduit-extra containers deepseq directory + exceptions filemanip filepath MissingH primitive resourcet safe + safeio temporary text transformers transformers-base vector + vector-algorithms + ]; + description = "External sorting package based on Conduit"; + license = stdenv.lib.licenses.mit; + }) {}; + "overhang" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -173208,6 +174655,8 @@ self: { pname = "packed-multikey-map"; version = "0.1.0.0"; sha256 = "19bh697xazsi22krwjgy83hv1pscnaqx544d5pk0q71wnync5m89"; + revision = "1"; + editedCabalFile = "1z6bx1qga02f33l194k2m45gs9cddq9q7q52b2vhv408n09jixrn"; libraryHaskellDepends = [ base constraints containers QuickCheck transformers vector ]; @@ -174197,8 +175646,8 @@ self: { ({ mkDerivation }: mkDerivation { pname = "pandora"; - version = "0.1.7"; - sha256 = "1wmp5c7b9scdrhrh50cpjfpcw1riw4kxs1vy935mzwja1y4zalsj"; + version = "0.2.0"; + sha256 = "0p46z3imh618v7i2734b5nlg9nx3hw4imjchqsx2l7nvkrpkgn64"; description = "A box of patterns and paradigms"; license = stdenv.lib.licenses.mit; }) {}; @@ -174347,6 +175796,60 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "pantry" = callPackage + ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans + , base64-bytestring, bytestring, Cabal, conduit, conduit-extra + , containers, contravariant, cryptonite, cryptonite-conduit + , deepseq, digest, directory, exceptions, filelock, filepath + , generic-deriving, ghc-prim, hackage-security, hashable, hedgehog + , hpack, hspec, http-client, http-client-tls, http-conduit + , http-download, http-types, integer-gmp, memory, mono-traversable + , mtl, network, network-uri, path, path-io, persistent + , persistent-sqlite, persistent-template, primitive, QuickCheck + , raw-strings-qq, resourcet, rio, rio-orphans, rio-prettyprint + , safe, syb, tar-conduit, template-haskell, text, text-metrics + , th-lift, th-lift-instances, th-orphans, th-reify-many + , th-utilities, time, transformers, unix-compat, unliftio + , unordered-containers, vector, yaml, zip-archive + }: + mkDerivation { + pname = "pantry"; + version = "0.1.1.1"; + sha256 = "082p2shapgnv10qjm77bpn0y6p6582n38xcgirh2l8mhs1yqflyg"; + libraryHaskellDepends = [ + aeson ansi-terminal array base base-orphans base64-bytestring + bytestring Cabal conduit conduit-extra containers contravariant + cryptonite cryptonite-conduit deepseq digest directory filelock + filepath generic-deriving ghc-prim hackage-security hashable hpack + http-client http-client-tls http-conduit http-download http-types + integer-gmp memory mono-traversable mtl network network-uri path + path-io persistent persistent-sqlite persistent-template primitive + resourcet rio rio-orphans rio-prettyprint safe syb tar-conduit + template-haskell text text-metrics th-lift th-lift-instances + th-orphans th-reify-many th-utilities time transformers unix-compat + unliftio unordered-containers vector yaml zip-archive + ]; + testHaskellDepends = [ + aeson ansi-terminal array base base-orphans base64-bytestring + bytestring Cabal conduit conduit-extra containers contravariant + cryptonite cryptonite-conduit deepseq digest directory exceptions + filelock filepath generic-deriving ghc-prim hackage-security + hashable hedgehog hpack hspec http-client http-client-tls + http-conduit http-download http-types integer-gmp memory + mono-traversable mtl network network-uri path path-io persistent + persistent-sqlite persistent-template primitive QuickCheck + raw-strings-qq resourcet rio rio-orphans rio-prettyprint safe syb + tar-conduit template-haskell text text-metrics th-lift + th-lift-instances th-orphans th-reify-many th-utilities time + transformers unix-compat unliftio unordered-containers vector yaml + zip-archive + ]; + description = "Content addressable Haskell package management"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "pantry-tmp" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base, base-orphans , base64-bytestring, bytestring, Cabal, conduit, conduit-extra @@ -174367,8 +175870,8 @@ self: { pname = "pantry-tmp"; version = "0.1.0.0"; sha256 = "18b2ac5kb6xzkxa2c5hhl6n37npxcxzxghi0p5wnv5rps3ahsmnn"; - revision = "3"; - editedCabalFile = "12k0lqpc530ai9gb1ldx7l62qi86z4qc2s1bzif8fwaflk4c7ax6"; + revision = "4"; + editedCabalFile = "0hiashi78cak635jk74bk6m1dwdgyp8m0j5bzg18i776mb1zn09y"; libraryHaskellDepends = [ aeson ansi-terminal array base base-orphans base64-bytestring bytestring Cabal conduit conduit-extra containers contravariant @@ -174834,6 +176337,17 @@ self: { broken = true; }) {}; + "par-traverse" = callPackage + ({ mkDerivation, base, directory, filepath, parallel-io }: + mkDerivation { + pname = "par-traverse"; + version = "0.2.0.0"; + sha256 = "1cbanrhaad3fq2kkpdkb3rh7c8qrc1v7by8v6mg4lrgghdx3msk8"; + libraryHaskellDepends = [ base directory filepath parallel-io ]; + description = "Traverse a directory in parallel"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "para" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -175481,12 +176995,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "parser-combinators_1_1_0" = callPackage + "parser-combinators_1_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "parser-combinators"; - version = "1.1.0"; - sha256 = "149yhbnrrl108h1jinrsxni3rwrldhphpk9bbmbpr90q5fbl4xmc"; + version = "1.2.0"; + sha256 = "18kfg4sxighqzd64ad98xhc62sh7pd63pv7xhcj601pw922iappa"; libraryHaskellDepends = [ base ]; description = "Lightweight package providing commonly useful parser combinators"; license = stdenv.lib.licenses.bsd3; @@ -175500,10 +177014,8 @@ self: { }: mkDerivation { pname = "parser-combinators-tests"; - version = "1.1.0"; - sha256 = "0m3xgdi1q3q638zfvgpdqyrhfq9abqwjripvbdx5z9rai4whzqmz"; - revision = "1"; - editedCabalFile = "0adgbzpylvk9p7ylxynsdrmqhhbh5pm8ww1s3nz3czl79y8lhh47"; + version = "1.2.0"; + sha256 = "0ainpyrxm03brn6z27jkqp65rc1z3lza00k6mg10506qk83fa52l"; isLibrary = false; isExecutable = false; testHaskellDepends = [ @@ -176031,6 +177543,8 @@ self: { ]; description = "Terminal-based presentations using Pandoc"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "patch-combinators" = callPackage @@ -176279,8 +177793,8 @@ self: { ({ mkDerivation, base, containers }: mkDerivation { pname = "patience"; - version = "0.2.1.1"; - sha256 = "14d6hkrkbanlv09z7dbg8q7hk5ax5mfpgzr0knmcviq02kmzbs0s"; + version = "0.3"; + sha256 = "1i1b37lgi31c17yrjyf8pdm4nf5lq8vw90z3rri78hf0k66d0p3i"; libraryHaskellDepends = [ base containers ]; description = "Patience diff and longest increasing subsequence"; license = stdenv.lib.licenses.bsd3; @@ -177342,6 +178856,32 @@ self: { broken = true; }) {}; + "perceptual-hash" = callPackage + ({ mkDerivation, base, containers, cpphs, criterion, filepath, hip + , optparse-applicative, par-traverse, pHash, primitive, repa, stm + , vector, vector-algorithms + }: + mkDerivation { + pname = "perceptual-hash"; + version = "0.1.1.0"; + sha256 = "107f5xb4wg4zmwqldw8a04byazqyzd0vkn6zl5iv4f5ii2sdb5yh"; + revision = "1"; + editedCabalFile = "001nr9brgk05bbhz9lw8viqrc6rgfy0rjp08fcdhn302j55j33i3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base hip primitive repa vector vector-algorithms + ]; + executableHaskellDepends = [ + base containers filepath optparse-applicative par-traverse stm + ]; + benchmarkHaskellDepends = [ base criterion ]; + benchmarkPkgconfigDepends = [ pHash ]; + benchmarkToolDepends = [ cpphs ]; + description = "Find duplicate images"; + license = stdenv.lib.licenses.bsd3; + }) {pHash = null;}; + "perdure" = callPackage ({ mkDerivation, array, base, binary, bytestring, cognimeta-utils , collections-api, comonad-transformers, containers, cryptohash @@ -177468,8 +179008,8 @@ self: { }: mkDerivation { pname = "perfect-vector-shuffle"; - version = "0.1.0"; - sha256 = "1nvwbmfqv9bq6423hxafjrvza6ynj3pry4m5ms1g2yf5vsx47w38"; + version = "0.1.1"; + sha256 = "1r9w8792r25fgyf7q7jdpnw4rmdvrjfg7g4dn2dk1d3gy4lbabig"; libraryHaskellDepends = [ base MonadRandom primitive random vector ]; @@ -177998,6 +179538,8 @@ self: { pname = "persistent-mongoDB"; version = "2.8.0"; sha256 = "12hp7cqdz672r5rhad6xvjpxhrs8v1swiz0d9n7xbn41g11a247l"; + revision = "1"; + editedCabalFile = "06iqf7frc5h7qvxhnxi2zirgspsmafp2ls0jw3ppzb01q0y6mgi4"; libraryHaskellDepends = [ aeson attoparsec base bson bytestring cereal conduit containers http-api-data mongoDB network path-pieces persistent resource-pool @@ -178103,6 +179645,27 @@ self: { broken = true; }) {}; + "persistent-pagination" = callPackage + ({ mkDerivation, base, conduit, containers, esqueleto, foldl, hspec + , hspec-discover, microlens, mtl, persistent, persistent-sqlite + , persistent-template, QuickCheck, time + }: + mkDerivation { + pname = "persistent-pagination"; + version = "0.1.1.0"; + sha256 = "1g2mn2gv9dygx4rrpxi81421dyyy9pdnzrdpqcb5sygcjsqi17ha"; + libraryHaskellDepends = [ + base conduit esqueleto foldl microlens mtl persistent + ]; + testHaskellDepends = [ + base conduit containers esqueleto hspec hspec-discover mtl + persistent persistent-sqlite persistent-template QuickCheck time + ]; + testToolDepends = [ hspec-discover ]; + description = "Efficient and correct pagination for persistent or esqueleto queries"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "persistent-parser" = callPackage ({ mkDerivation, attoparsec, base, hspec, text }: mkDerivation { @@ -178356,7 +179919,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {inherit (pkgs) sqlite;}; - "persistent-sqlite_2_10_1" = callPackage + "persistent-sqlite_2_10_4" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , exceptions, fast-logger, hspec, HUnit, microlens-th, monad-logger , persistent, persistent-template, persistent-test, QuickCheck @@ -178366,8 +179929,8 @@ self: { }: mkDerivation { pname = "persistent-sqlite"; - version = "2.10.1"; - sha256 = "1yan8ciljv2kkcxlc9yj97gvlgkzf1ha6369dqnr7fgk1xhr74nz"; + version = "2.10.4"; + sha256 = "0x4b327h2gqhccy7yw5sa8mn8xfc4zb5kqwx98nr9yk7f1s0fr79"; configureFlags = [ "-fsystemlib" ]; isLibrary = true; isExecutable = true; @@ -178414,7 +179977,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template_2_7_1" = callPackage + "persistent-template_2_7_2" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, criterion , deepseq, deepseq-generics, file-embed, hspec, http-api-data , monad-control, monad-logger, path-pieces, persistent, QuickCheck @@ -178422,8 +179985,8 @@ self: { }: mkDerivation { pname = "persistent-template"; - version = "2.7.1"; - sha256 = "1yki4dvfk2p5cs2gfdnplsfyb1cxakhrdfjxgdgbnc0xxicbzx42"; + version = "2.7.2"; + sha256 = "04fpxsbj78gy51bl3jcfg70aaha92v0r48bjwq4pg7ln3cic95i8"; libraryHaskellDepends = [ aeson base bytestring containers http-api-data monad-control monad-logger path-pieces persistent template-haskell text @@ -179591,8 +181154,8 @@ self: { }: mkDerivation { pname = "pinboard-notes-backup"; - version = "1.0.4"; - sha256 = "0frlxz9mqd0dypi3f6w926sngwp4jhrz47zr35zdxwrvv64z29g7"; + version = "1.0.4.1"; + sha256 = "1a0lw43pjfz18aplm2frljwaww37pm2ashxi59j6l5n32lg5573j"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -179649,15 +181212,17 @@ self: { "ping" = callPackage ({ mkDerivation, base, cpu, ip, posix-api, primitive - , primitive-containers, stm, transformers + , primitive-addr, primitive-containers, stm, transformers }: mkDerivation { pname = "ping"; - version = "0.1.0.2"; - sha256 = "1cjgs571q5p5r5j94w8cax20r951v08x3cq5a2wd5r852bbgg9ww"; + version = "0.1.0.3"; + sha256 = "1h57p53vakjxm3g6inp9wvj5pp71qb0mpcrxbaa707w8v9lyvwwi"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base cpu ip posix-api primitive primitive-containers stm - transformers + base cpu ip posix-api primitive primitive-addr primitive-containers + stm transformers ]; description = "icmp echo requests"; license = stdenv.lib.licenses.bsd3; @@ -179774,6 +181339,27 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "piped" = callPackage + ({ mkDerivation, base, conduit, gauge, microlens-platform, mtl + , quickcheck-instances, tasty, tasty-discover, tasty-golden + , tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "piped"; + version = "0.1.0.0"; + sha256 = "0f7j4mzdcmw7lnmq73hr6wfi64jjg350bmf0w1pf1rgma2wb9cl0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base mtl ]; + testHaskellDepends = [ + base conduit gauge microlens-platform mtl quickcheck-instances + tasty tasty-discover tasty-golden tasty-hunit tasty-quickcheck + ]; + testToolDepends = [ tasty-discover ]; + description = "Conduit with a smaller core"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipeline" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -180344,6 +181930,8 @@ self: { pname = "pipes-group"; version = "1.0.12"; sha256 = "1issfj3syi6lfbcdn3bhlbnlh86s92ldsb04c4ac69xipsgyhwqk"; + revision = "1"; + editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; libraryHaskellDepends = [ base free pipes pipes-parse transformers ]; @@ -182299,8 +183887,8 @@ self: { }: mkDerivation { pname = "poly"; - version = "0.3.0.0"; - sha256 = "0kwh1n9b6zh21kg2036v02jpr9xvvay6x72b044j4la65pal5h8i"; + version = "0.3.1.0"; + sha256 = "1c8xnkqxwzbpx01clz9spz9zwa18qhsbvscrc381r0f46cjax2ph"; libraryHaskellDepends = [ base primitive semirings vector vector-algorithms ]; @@ -182477,26 +184065,27 @@ self: { ({ mkDerivation, async, base, containers, criterion, doctest , first-class-families, free, freer-simple, hspec, hspec-discover , inspection-testing, mtl, syb, template-haskell, th-abstraction - , transformers, type-errors, unagi-chan + , transformers, type-errors, type-errors-pretty, unagi-chan }: mkDerivation { pname = "polysemy"; - version = "0.7.0.0"; - sha256 = "0p9f5m2invppncmd1d9sim1kvnzcgramnq3y1vr0bisg02y0c8dc"; + version = "1.0.0.0"; + sha256 = "1y63vwrmmany62ci2sdd8kfmkrigk0vds2kjpxmyh9nsvw5fv576"; libraryHaskellDepends = [ async base containers first-class-families mtl syb template-haskell - th-abstraction transformers type-errors unagi-chan + th-abstraction transformers type-errors type-errors-pretty + unagi-chan ]; testHaskellDepends = [ async base containers doctest first-class-families hspec inspection-testing mtl syb template-haskell th-abstraction - transformers type-errors unagi-chan + transformers type-errors type-errors-pretty unagi-chan ]; testToolDepends = [ hspec-discover ]; benchmarkHaskellDepends = [ async base containers criterion first-class-families free freer-simple mtl syb template-haskell th-abstraction transformers - type-errors unagi-chan + type-errors type-errors-pretty unagi-chan ]; description = "Higher-order, low-boilerplate, zero-cost free monads"; license = stdenv.lib.licenses.bsd3; @@ -182551,21 +184140,21 @@ self: { }) {}; "polysemy-zoo" = callPackage - ({ mkDerivation, base, constraints, containers, hspec - , hspec-discover, mtl, polysemy, polysemy-plugin, random - , reflection, text + ({ mkDerivation, async, base, binary, bytestring, constraints + , containers, ghc-prim, hedis, hspec, hspec-discover, mtl, polysemy + , polysemy-plugin, random, reflection }: mkDerivation { pname = "polysemy-zoo"; - version = "0.3.0.0"; - sha256 = "1ww5qsxpz1h5jb1444fm2hnzkikcpnpf7gw4v1vkn8bh6cnmpxfy"; + version = "0.5.0.1"; + sha256 = "06ggm3qinabwp5bha858anwdvw726wzl738wpgf1kd9mgivbv53w"; libraryHaskellDepends = [ - base constraints containers mtl polysemy polysemy-plugin random - reflection + async base binary bytestring constraints containers ghc-prim hedis + mtl polysemy polysemy-plugin random reflection ]; testHaskellDepends = [ - base constraints containers hspec mtl polysemy polysemy-plugin - random reflection text + async base binary bytestring constraints containers ghc-prim hedis + hspec mtl polysemy polysemy-plugin random reflection ]; testToolDepends = [ hspec-discover ]; description = "Experimental, user-contributed effects and interpreters for polysemy"; @@ -182921,7 +184510,7 @@ self: { "poppler" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gdk-pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango + , gdk_pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango , poppler }: mkDerivation { @@ -182933,13 +184522,13 @@ self: { libraryHaskellDepends = [ array base bytestring cairo containers glib gtk mtl ]; - libraryPkgconfigDepends = [ gdk-pixbuf gtk2 pango poppler ]; + libraryPkgconfigDepends = [ gdk_pixbuf gtk2 pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) gdk-pixbuf; inherit (pkgs) gtk2; + }) {inherit (pkgs) gdk_pixbuf; inherit (pkgs) gtk2; inherit (pkgs) pango; inherit (pkgs) poppler;}; "populate-setup-exe-cache" = callPackage @@ -183129,12 +184718,14 @@ self: { }: mkDerivation { pname = "posix-api"; - version = "0.3.0.0"; - sha256 = "172271qakd2w8hg68m57p8avwwb2cm8hds0qzq53559p2n1z69xq"; + version = "0.3.2.0"; + sha256 = "1ki45p31cc1zplzsi9kln85rm556rwk5yvwgsb75bcgqwg6xpcl8"; libraryHaskellDepends = [ base primitive primitive-addr primitive-offset primitive-unlifted ]; - testHaskellDepends = [ base primitive tasty tasty-hunit ]; + testHaskellDepends = [ + base primitive primitive-unlifted tasty tasty-hunit + ]; description = "posix bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -183530,8 +185121,8 @@ self: { }: mkDerivation { pname = "postgresql-lo-stream"; - version = "0.1.1.0"; - sha256 = "196f6lz8i8y0cfnd4lqjky69wpi0mc2jfs7jz5v0j3r15jbs5212"; + version = "0.1.1.1"; + sha256 = "0m2s717qb42ywiqvdi18nybjadkivygfi2pbflip5rvphqfc8k8x"; libraryHaskellDepends = [ base bytestring io-streams lifted-base monad-loops mtl postgresql-simple @@ -183717,6 +185308,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "postgresql-simple-named" = callPackage + ({ mkDerivation, base, bytestring, doctest, Glob, hspec, mtl + , postgresql-simple, resource-pool, text, transformers + }: + mkDerivation { + pname = "postgresql-simple-named"; + version = "0.0.1.0"; + sha256 = "1lp7bq7w3l127cb4js3gmmp8c9nvxabs64c200c73lqg5mw9fkfp"; + libraryHaskellDepends = [ + base bytestring mtl postgresql-simple text + ]; + testHaskellDepends = [ + base bytestring doctest Glob hspec postgresql-simple resource-pool + transformers + ]; + description = "Implementation of named parameters for `postgresql-simple` library"; + license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "postgresql-simple-opts" = callPackage ({ mkDerivation, base, bytestring, data-default, either , generic-deriving, hspec, optparse-applicative, optparse-generic @@ -184457,6 +186069,8 @@ self: { pname = "pragmatic-show"; version = "0.1.2.0"; sha256 = "1nkwimmnk10p0pnv2hr3mxgfs1r2rjfhiaccmhd68a6279whp6p7"; + revision = "1"; + editedCabalFile = "17rs7ms62aisnk5wsdp67v3cgv5ph734iswv7137ibv339dlkl82"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck vector-space @@ -185590,8 +187204,8 @@ self: { ({ mkDerivation, base, primitive }: mkDerivation { pname = "primitive-addr"; - version = "0.1.0.1"; - sha256 = "01gr75k2j60dgs711w1s9r201ndapqlwapznrvd3cm6r4rm3i54i"; + version = "0.1.0.2"; + sha256 = "06r1p56wm8rbjxnlaqbmc3rbsj1rsv5scwnh80lsn0xw56jc70a2"; libraryHaskellDepends = [ base primitive ]; description = "Addresses to unmanaged memory"; license = stdenv.lib.licenses.bsd3; @@ -186441,8 +188055,8 @@ self: { pname = "product-profunctors"; version = "0.10.0.0"; sha256 = "0s0ssl2900r16992mgl0idkryg3l7psp8nljyg9brr7fqa3pd3dd"; - revision = "1"; - editedCabalFile = "17zi38fzg7yf9i5da2hlch6jw2qhmjcvs9wwkhyvra520605mlya"; + revision = "2"; + editedCabalFile = "0sarkc9sch60f5j1xjy30yrgycvmp5bqx1iynmlsfzdx7rvk5s29"; libraryHaskellDepends = [ base bifunctors contravariant profunctors tagged template-haskell ]; @@ -187120,8 +188734,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "5.9.0"; - sha256 = "1hgqq782qyqdnr86cx7xc063ksqyq37pwf58jz2g0rn3sk8qmv1i"; + version = "5.9.1"; + sha256 = "1v4cpj4kbmhl4xkxm7gxm2z9pqf6zmr4psawaxixvsav6xpxgphr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188670,8 +190284,8 @@ self: { }: mkDerivation { pname = "purebred-email"; - version = "0.1.0.1"; - sha256 = "0igjid6rfg13bhgkm51np0ml2sfnkg5a6z3231mmiynkdja7l5zl"; + version = "0.2.0.0"; + sha256 = "1jjdia8qlwdibmfrqasyvm6qq01pxc9r66qmbyjmhz9bhdkqdd61"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -191835,10 +193449,8 @@ self: { ({ mkDerivation, base, hmatrix, mtl, random-fu }: mkDerivation { pname = "random-fu-multivariate"; - version = "0.1.2.0"; - sha256 = "11hss3d1aa917g7w7k76zcakk82ras3046vb768yh5kayrb6a347"; - revision = "2"; - editedCabalFile = "13frafm1fdlgir64qsqy97158mv5chx98y23pdzdqiannf10w4by"; + version = "0.1.2.1"; + sha256 = "01r3jgjmhcj7wrc9ighwm0sbndsrz92l20gxh9p4rm2l90n0vxqc"; libraryHaskellDepends = [ base hmatrix mtl random-fu ]; testHaskellDepends = [ base ]; description = "Multivariate distributions for random-fu"; @@ -192064,6 +193676,24 @@ self: { broken = true; }) {}; + "range-set-list_0_1_3_1" = callPackage + ({ mkDerivation, base, containers, deepseq, hashable, tasty + , tasty-quickcheck + }: + mkDerivation { + pname = "range-set-list"; + version = "0.1.3.1"; + sha256 = "0m8c8qhpk9vaykqfy6gsv1csmvdclm27zv9l56ipv152k75xks0j"; + libraryHaskellDepends = [ base containers deepseq hashable ]; + testHaskellDepends = [ + base containers deepseq hashable tasty tasty-quickcheck + ]; + description = "Memory efficient sets with ranges of elements"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "range-space" = callPackage ({ mkDerivation, base, QuickCheck, semigroups, test-framework , test-framework-quickcheck2, time, vector-space @@ -192535,6 +194165,22 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ratel-wai_1_1_0" = callPackage + ({ mkDerivation, base, bytestring, case-insensitive, containers + , http-client, ratel, wai + }: + mkDerivation { + pname = "ratel-wai"; + version = "1.1.0"; + sha256 = "1wgmlcazfbz4y4q9k6367i76l8cal1qgqhqbh2p69ca365w9pf56"; + libraryHaskellDepends = [ + base bytestring case-insensitive containers http-client ratel wai + ]; + description = "Notify Honeybadger about exceptions via a WAI middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "rating-chgk-info" = callPackage ({ mkDerivation, aeson, base-noprelude, bytestring, cassava , containers, directory, gauge, http-client, http-client-tls, iconv @@ -193571,23 +195217,23 @@ self: { }) {}; "readme-lhs" = callPackage - ({ mkDerivation, attoparsec, base, containers, filepath, foldl - , HUnit, optparse-applicative, protolude, tasty, tasty-hunit, text + ({ mkDerivation, base, containers, doctest, optparse-generic + , pandoc, pandoc-types, protolude, tasty, text }: mkDerivation { pname = "readme-lhs"; - version = "0.1.0.0"; - sha256 = "1pn0an37w4kgcn93a6qm0jxqsj882mhjwrnvl7hc5vp1960nqs6j"; + version = "0.2.0"; + sha256 = "0xwc2gqf23g87mi16miyi0nxy4wh33rki324biv3wh7xbpj03kpx"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ attoparsec base foldl protolude text ]; + libraryHaskellDepends = [ + base containers pandoc pandoc-types protolude text + ]; executableHaskellDepends = [ - base containers filepath foldl optparse-applicative protolude text + base optparse-generic pandoc protolude ]; - testHaskellDepends = [ - base HUnit protolude tasty tasty-hunit text - ]; - description = "See readme.lhs"; + testHaskellDepends = [ base doctest protolude tasty ]; + description = "See readme.md"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -194108,8 +195754,8 @@ self: { }: mkDerivation { pname = "red-black-record"; - version = "2.0.2.2"; - sha256 = "1afmqdgd0xhawjckjz318561zsr478a7jkpr20l7alic6zxnl4z9"; + version = "2.0.4.0"; + sha256 = "1wcg8a3aql1jmnfl7q5gzjgxl4z6780zgp8w10v3g52ilcdq4myn"; libraryHaskellDepends = [ base sop-core ]; testHaskellDepends = [ aeson base bytestring doctest profunctors sop-core tasty @@ -194548,8 +196194,8 @@ self: { }: mkDerivation { pname = "refined"; - version = "0.4.2.1"; - sha256 = "0p74hqmlx0ns8zjn689ngfjn4y5rvap5fza0p9mpx7107bskdf9d"; + version = "0.4.2.2"; + sha256 = "1gdfhmj8f1abxflxmqyfibz0hdaayr932f04vchygdvdb812av60"; libraryHaskellDepends = [ aeson base deepseq exceptions mtl prettyprinter QuickCheck template-haskell transformers @@ -194601,26 +196247,27 @@ self: { }) {}; "reflex" = callPackage - ({ mkDerivation, base, bifunctors, comonad, containers, criterion - , data-default, deepseq, dependent-map, dependent-sum, directory - , exception-transformers, filemanip, filepath, haskell-src-exts - , haskell-src-meta, hlint, lens, loch-th, MemoTrie, monad-control - , monoidal-containers, mtl, prim-uniq, primitive, process, random - , ref-tf, reflection, semigroupoids, semigroups, split, stm, syb + ({ mkDerivation, base, bifunctors, comonad, constraints-extras + , containers, criterion, data-default, deepseq, dependent-map + , dependent-sum, directory, exception-transformers, filemanip + , filepath, haskell-src-exts, haskell-src-meta, hlint, lens + , loch-th, MemoTrie, monad-control, monoidal-containers, mtl + , prim-uniq, primitive, process, profunctors, random, ref-tf + , reflection, semigroupoids, semigroups, split, stm, syb , template-haskell, these, time, transformers, transformers-compat , unbounded-delays, witherable }: mkDerivation { pname = "reflex"; - version = "0.6.1"; - sha256 = "1ggp2bpil2ig6rs45fn754kpqnp45lp069nc6ib4isj0dgzb9gpn"; + version = "0.6.2.1"; + sha256 = "0s8saim58bqqhg1nbrrdw2blnph7jrhqw97wxf73g4r1d8jacg3z"; libraryHaskellDepends = [ - base bifunctors comonad containers data-default dependent-map - dependent-sum exception-transformers haskell-src-exts + base bifunctors comonad constraints-extras containers data-default + dependent-map dependent-sum exception-transformers haskell-src-exts haskell-src-meta lens MemoTrie monad-control monoidal-containers - mtl prim-uniq primitive random ref-tf reflection semigroupoids - semigroups stm syb template-haskell these time transformers - transformers-compat unbounded-delays witherable + mtl prim-uniq primitive profunctors random ref-tf reflection + semigroupoids semigroups stm syb template-haskell these time + transformers transformers-compat unbounded-delays witherable ]; testHaskellDepends = [ base bifunctors containers deepseq dependent-map dependent-sum @@ -194633,6 +196280,8 @@ self: { ]; description = "Higher-order Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "reflex-animation" = callPackage @@ -194693,6 +196342,8 @@ self: { executableHaskellDepends = [ base mtl reflex ]; description = "A basic `reflex` host for backend work"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "reflex-dom" = callPackage @@ -195021,6 +196672,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reform-lucid" = callPackage + ({ mkDerivation, base, lucid, path-pieces, reform, text }: + mkDerivation { + pname = "reform-lucid"; + version = "0.1.0.0"; + sha256 = "1a3jfk0i87vqwxxlspzy44lf2i3bxxxy20pnbysczzf8i113y9zi"; + libraryHaskellDepends = [ base lucid path-pieces reform text ]; + description = "Add support for using lucid with Reform"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reformat" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -195820,8 +197482,8 @@ self: { }: mkDerivation { pname = "registry-hedgehog"; - version = "0.2.0.3"; - sha256 = "138x33b9sficpy20dvcayf9isilv9crng2d46m2gh7ckidw94ghp"; + version = "0.2.1.0"; + sha256 = "1gx7grxy7p08bbvmxrhr3ciw9jg7isz3xsa2ha3s3pg4ifas4g59"; libraryHaskellDepends = [ base containers hedgehog mmorph multimap protolude registry tasty tasty-discover tasty-hedgehog tasty-th template-haskell text @@ -196096,6 +197758,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "relational-query_0_12_2_2" = callPackage + ({ mkDerivation, array, base, bytestring, containers, dlist + , names-th, persistable-record, product-isomorphic + , quickcheck-simple, sql-words, template-haskell, text + , th-reify-compat, time, time-locale-compat, transformers + }: + mkDerivation { + pname = "relational-query"; + version = "0.12.2.2"; + sha256 = "0768cw6c5chzdcwshjjniysik5d1yj7zvhwncqnn0wgy4gp6kzjv"; + libraryHaskellDepends = [ + array base bytestring containers dlist names-th persistable-record + product-isomorphic sql-words template-haskell text th-reify-compat + time time-locale-compat transformers + ]; + testHaskellDepends = [ + base containers product-isomorphic quickcheck-simple transformers + ]; + description = "Typeful, Modular, Relational, algebraic query engine"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "relational-query-HDBC" = callPackage ({ mkDerivation, base, containers, convertible, dlist, HDBC , HDBC-session, names-th, persistable-record, product-isomorphic @@ -198764,6 +200449,8 @@ self: { ]; description = "Quick metrics to grow your app strong"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "ridley-extras" = callPackage @@ -198781,6 +200468,8 @@ self: { testHaskellDepends = [ base ]; description = "Handy metrics that don't belong to ridley"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "riemann" = callPackage @@ -198903,7 +200592,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "rio_0_1_10_0" = callPackage + "rio_0_1_11_0" = callPackage ({ mkDerivation, base, bytestring, containers, deepseq, directory , exceptions, filepath, hashable, hspec, microlens, mtl, primitive , process, QuickCheck, text, time, typed-process, unix, unliftio @@ -198911,8 +200600,8 @@ self: { }: mkDerivation { pname = "rio"; - version = "0.1.10.0"; - sha256 = "1jhiy139jl8rc8j4fwl76k1w8mrmmjszhsja7xcs8n2nxr13cb2g"; + version = "0.1.11.0"; + sha256 = "17p3zr1fncwqc1rz181mfbxi9dlyd2cd8xcxhnxm3fgnq6i9cj4l"; libraryHaskellDepends = [ base bytestring containers deepseq directory exceptions filepath hashable microlens mtl primitive process text time typed-process @@ -198957,8 +200646,8 @@ self: { pname = "rio-prettyprint"; version = "0.1.0.0"; sha256 = "0n8ldc73i0954c6s8jh0hibxrisp84yh5pcxv3x3q0wg4v2xvr0m"; - revision = "1"; - editedCabalFile = "0ya7i766srm62p19idm7lwwfk01b81f8795q7jqqwl7rwk5rcdag"; + revision = "2"; + editedCabalFile = "1hvhjqy7kfk7fglx1rw8axscy0dfzqwd1564awnwdhvmf8silkkn"; libraryHaskellDepends = [ aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl path rio text @@ -199736,15 +201425,16 @@ self: { "ron" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, bytestring , containers, criterion, deepseq, hashable, integer-gmp, mtl - , template-haskell, text, time, unordered-containers + , scientific, template-haskell, text, time, unordered-containers }: mkDerivation { pname = "ron"; - version = "0.6"; - sha256 = "022ilxpk9axw41d1cmlgdsgc3c7ss6a0j6a1w10l81g56xlpi67z"; + version = "0.7"; + sha256 = "1bh4vdq9nwi5kwfa2qly1n0jfnphy17b8svd1k3jdzjfclwrjpgj"; libraryHaskellDepends = [ aeson attoparsec base binary bytestring containers hashable - integer-gmp mtl template-haskell text time unordered-containers + integer-gmp mtl scientific template-haskell text time + unordered-containers ]; benchmarkHaskellDepends = [ base criterion deepseq integer-gmp ]; description = "RON"; @@ -199757,8 +201447,8 @@ self: { }: mkDerivation { pname = "ron-rdt"; - version = "0.6"; - sha256 = "0npd4fh3flywfrpnwfsfpss4zbzd9jj9xsbpxlcc4hhjh45x1b6b"; + version = "0.7"; + sha256 = "1fcvsirzhwmkzcsdr0bhipqq7k7wsg1cjb6z3q4sjihcq9qp22gq"; libraryHaskellDepends = [ base containers Diff hashable integer-gmp mtl ron text time transformers unordered-containers @@ -199774,8 +201464,8 @@ self: { }: mkDerivation { pname = "ron-schema"; - version = "0.6"; - sha256 = "07nn74vwx26flam7klwfvj4yz5mqh8d5flf5ps7wxxfn70z3g4yg"; + version = "0.7"; + sha256 = "12vnzmsj6vxvr26x7a9vvp025dxn9jlyi40hgpydpyg9dmjbs246"; libraryHaskellDepends = [ base bytestring containers hedn integer-gmp megaparsec mtl ron ron-rdt template-haskell text transformers @@ -199791,8 +201481,8 @@ self: { }: mkDerivation { pname = "ron-storage"; - version = "0.7"; - sha256 = "0wqvbnylz2wx85c7qfqzima3axif6r65vc0iwl8lrmxpif2zs41c"; + version = "0.8"; + sha256 = "1326r8x3m4x1ylf32x66h9s6y7z4hwrwah33kkshj656f3f4bnds"; libraryHaskellDepends = [ base bytestring containers directory filepath integer-gmp mtl network-info ron ron-rdt stm text transformers @@ -200700,8 +202390,8 @@ self: { }: mkDerivation { pname = "ruby-marshal"; - version = "0.1.2"; - sha256 = "13s017sqim92yz9r3x8zc4by1hksncikavsn12kf42vv58k95g1p"; + version = "0.1.3"; + sha256 = "0syjd9fmp55cfkq1kb78pvx0vg9dk43s5w4q2a8ndd1fkg194jwx"; libraryHaskellDepends = [ base bytestring cereal containers mtl string-conv vector ]; @@ -201663,64 +203353,66 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "salak_0_2_9_3" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default, directory, filepath, hspec, menshen, mtl, pqueue - , QuickCheck, scientific, text, time, unliftio-core + "salak_0_3_3" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, data-default + , directory, exceptions, filepath, hashable, heaps, hspec, menshen + , mtl, QuickCheck, random, scientific, text, time, unliftio-core + , unordered-containers }: mkDerivation { pname = "salak"; - version = "0.2.9.3"; - sha256 = "0y1p2cf8bpglqf20a16d2h5xfknzz6wcdgwv6mamh24mdqv0c3rn"; + version = "0.3.3"; + sha256 = "1jq9vngi03wqcvfb1r9ndg4w1vipgbhbzdyybkpj4hmc074l1079"; libraryHaskellDepends = [ - attoparsec base bytestring containers data-default directory - filepath menshen mtl pqueue scientific text time unliftio-core + attoparsec base bytestring data-default directory exceptions + filepath hashable heaps menshen mtl scientific text time + unliftio-core unordered-containers ]; testHaskellDepends = [ - attoparsec base bytestring containers data-default directory - filepath hspec menshen mtl pqueue QuickCheck scientific text time - unliftio-core + attoparsec base bytestring data-default directory exceptions + filepath hashable heaps hspec menshen mtl QuickCheck random + scientific text time unliftio-core unordered-containers ]; - description = "Configuration Loader"; - license = stdenv.lib.licenses.bsd3; + description = "Configuration (re)Loader and Parser"; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salak-toml" = callPackage - ({ mkDerivation, base, hspec, mtl, QuickCheck, salak, text, time - , tomland, unordered-containers + ({ mkDerivation, base, exceptions, hspec, mtl, QuickCheck, salak + , text, time, tomland, unordered-containers }: mkDerivation { pname = "salak-toml"; - version = "0.2.9.3"; - sha256 = "1hb5ddm7a9acwri730w50p14vyk6z8q1wnx2b87386d80am5mbpy"; + version = "0.3.3"; + sha256 = "0961xwj928map27az5qlp86wxg5jj6kq9cxqhbmcyl7m1cic91dy"; libraryHaskellDepends = [ - base mtl salak text time tomland unordered-containers + base salak text time tomland unordered-containers ]; testHaskellDepends = [ - base hspec mtl QuickCheck salak text time tomland + base exceptions hspec mtl QuickCheck salak text time tomland unordered-containers ]; description = "Configuration Loader for toml"; - license = stdenv.lib.licenses.bsd3; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; "salak-yaml" = callPackage - ({ mkDerivation, base, conduit, hspec, libyaml, mtl, QuickCheck - , salak, text + ({ mkDerivation, base, conduit, exceptions, hspec, libyaml, mtl + , QuickCheck, salak, text }: mkDerivation { pname = "salak-yaml"; - version = "0.2.9.3"; - sha256 = "0jjmw923zvm349q318iw7y5lfqhbr85xgp6ai3xx5w5d4mcb2f32"; + version = "0.3.3"; + sha256 = "038pfna1jijw6vf8b89ql4f4987s60lpj90nlny66wxkj4b2nbrq"; libraryHaskellDepends = [ base conduit libyaml salak text ]; testHaskellDepends = [ - base conduit hspec libyaml mtl QuickCheck salak text + base conduit exceptions hspec libyaml mtl QuickCheck salak text ]; description = "Configuration Loader for yaml"; - license = stdenv.lib.licenses.bsd3; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; @@ -203176,8 +204868,8 @@ self: { }: mkDerivation { pname = "scidb-hquery"; - version = "2.8.0.432"; - sha256 = "0swjsgf84kwkzv7nwrnrzlpxbhdvi3i5pnnjrlgql9x4c30bqw6i"; + version = "2.8.0.434"; + sha256 = "0q994ac1krcw312nklxxjr9d4r231s50lb2crbpph1swv6h8jwrq"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal filepath ]; @@ -203498,6 +205190,21 @@ self: { broken = true; }) {}; + "scotty-form" = callPackage + ({ mkDerivation, base, ditto, ditto-lucid, lucid, scotty, text }: + mkDerivation { + pname = "scotty-form"; + version = "0.1.0.0"; + sha256 = "0ks11rav9x52lq27mr12qlygg6yl9wl87fqa28jbz084fwn97w44"; + libraryHaskellDepends = [ + base ditto ditto-lucid lucid scotty text + ]; + description = "Html form validation using `ditto`"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "scotty-format" = callPackage ({ mkDerivation, aeson, base, http-media, http-types, scotty, text }: @@ -204205,8 +205912,8 @@ self: { }: mkDerivation { pname = "sdr"; - version = "0.1.0.11"; - sha256 = "0gkf7ql1a40vpb4qaivcyygvlykp4whljmhp2jy37bk56zr45yvv"; + version = "0.1.0.12"; + sha256 = "0nikrpcyb5mihc70cfvxy24bl80jjnabc8dc8y056yx54759jkk8"; libraryHaskellDepends = [ array base bytestring cairo cereal Chart Chart-cairo colour containers Decimal dynamic-graph fftwRaw GLFW-b mwc-random OpenGL @@ -205680,6 +207387,8 @@ self: { pname = "serialise"; version = "0.2.1.0"; sha256 = "19ary6ivzk8z7wcxhm860qmh7pwqj0qjqzav1h42y85l608zqgh4"; + revision = "1"; + editedCabalFile = "1rknhad1i8bpknsnphmcmb6dnb48c2p2c13ia2qqch3hkhsvfpr6"; libraryHaskellDepends = [ array base bytestring cborg containers ghc-prim half hashable primitive text time unordered-containers vector @@ -205850,7 +207559,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant_0_16_1" = callPackage + "servant_0_16_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors , bytestring, Cabal, cabal-doctest, case-insensitive, deepseq , doctest, hspec, hspec-discover, http-api-data, http-media @@ -205860,8 +207569,8 @@ self: { }: mkDerivation { pname = "servant"; - version = "0.16.1"; - sha256 = "1v63b3ng1zck4jw79ijjv4vvsm8w1c8vz4c0dd8sklpkcrfbpxam"; + version = "0.16.2"; + sha256 = "0yzl1yklbbymlh8jdc4ncrdxkalx2z349v4msbd6wxxrxfkxbz6n"; setupHaskellDepends = [ base Cabal cabal-doctest ]; libraryHaskellDepends = [ aeson attoparsec base base-compat bifunctors bytestring @@ -207862,7 +209571,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-server_0_16_1" = callPackage + "servant-server_0_16_2" = callPackage ({ mkDerivation, aeson, base, base-compat, base64-bytestring , bytestring, Cabal, cabal-doctest, containers, directory, doctest , exceptions, filepath, hspec, hspec-discover, hspec-wai @@ -207874,8 +209583,8 @@ self: { }: mkDerivation { pname = "servant-server"; - version = "0.16.1"; - sha256 = "1zkx6ipz4ay64jdvqxhhrq2sfxj6d6ma8z4cxwpascnawhjqjpq7"; + version = "0.16.2"; + sha256 = "1l4kgjg5z775bi76hy7cb70qwvmkai4rxqkgp0ildsjgsvf8qb80"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ base Cabal cabal-doctest ]; @@ -211023,6 +212732,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "silently_1_2_5_1" = callPackage + ({ mkDerivation, base, deepseq, directory, nanospec, temporary }: + mkDerivation { + pname = "silently"; + version = "1.2.5.1"; + sha256 = "1lgs1gsr5dp0x21diqn4l03fxgai2kgdmj85gqp0iz3zykvbmjbz"; + libraryHaskellDepends = [ base deepseq directory ]; + testHaskellDepends = [ base deepseq directory nanospec temporary ]; + description = "Prevent or capture writing to stdout and other handles"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "silvi" = callPackage ({ mkDerivation, attoparsec, base, bytestring, chronos, http-types , ip, quantification, savage, text @@ -211083,8 +212805,8 @@ self: { }: mkDerivation { pname = "simple"; - version = "0.11.2"; - sha256 = "05069qjgzm4j22p0q6i75qpsvzpw52b7bh2x2b6jcxnlvqp6flzg"; + version = "0.11.3"; + sha256 = "0qifp6wacsmykb09ddx03yv4pbk7c1rhs16jjlfafm2wc2025rac"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -211206,6 +212928,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "simple-cabal_0_0_0_1" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath }: + mkDerivation { + pname = "simple-cabal"; + version = "0.0.0.1"; + sha256 = "17v22v9sb8z2jbr76vv577hxcvypfkpmji2k8yzwd2kxjssxpjrn"; + libraryHaskellDepends = [ base Cabal directory filepath ]; + description = "Cabal file wrapper library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "simple-cmd" = callPackage ({ mkDerivation, base, directory, filepath, process, unix }: mkDerivation { @@ -211860,8 +213594,8 @@ self: { }: mkDerivation { pname = "simple-templates"; - version = "0.8.0.1"; - sha256 = "13na1f29fvc0j452kh0a3fjig3fq4qbklcpdv6bm1fr0cf8hzq98"; + version = "0.9.0.0"; + sha256 = "09s81syr45dvrqski4gz96ynmv8gb3zwyy4n6a7frv49z843phda"; libraryHaskellDepends = [ aeson attoparsec base scientific text unordered-containers vector ]; @@ -212862,7 +214596,7 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; - "skylighting_0_8_1_1" = callPackage + "skylighting_0_8_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , base64-bytestring, binary, blaze-html, bytestring , case-insensitive, colour, containers, directory, filepath, hxt @@ -212871,8 +214605,8 @@ self: { }: mkDerivation { pname = "skylighting"; - version = "0.8.1.1"; - sha256 = "0q1zkb053szbgx3lqpmllxas0krb9m425qi0aplffhdqwmd05w8w"; + version = "0.8.2"; + sha256 = "0a81hd4f0xlc8as5lh454gkbyxndaxyj7lblkfk92j173nyx69cz"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -212918,7 +214652,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "skylighting-core_0_8_1_1" = callPackage + "skylighting-core_0_8_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, attoparsec, base , base64-bytestring, binary, blaze-html, bytestring , case-insensitive, colour, containers, criterion, Diff, directory @@ -212928,8 +214662,8 @@ self: { }: mkDerivation { pname = "skylighting-core"; - version = "0.8.1.1"; - sha256 = "1klk9jlnyz5ciz2gm1dx5mh85nkvz6y1xsflvyf45c2gw9grc2km"; + version = "0.8.2"; + sha256 = "1nd11170r7xwv0hy21bx9nz7173ijbqkh7r8504ixjkwckgr2zs0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -213375,19 +215109,22 @@ self: { }) {}; "small-bytearray-builder" = callPackage - ({ mkDerivation, base, byteslice, primitive, primitive-offset - , QuickCheck, run-st, tasty, tasty-quickcheck, vector + ({ mkDerivation, base, byteslice, bytestring, gauge, primitive + , primitive-offset, QuickCheck, run-st, tasty, tasty-quickcheck + , vector }: mkDerivation { pname = "small-bytearray-builder"; - version = "0.1.0.0"; - sha256 = "1dsjvgl15wbja1fzm1sawqavvijkmaqidfaqk9qgp42kifhh0hzh"; + version = "0.1.1.0"; + sha256 = "1i3b77mczfy9f0gp5ckqln1vdhnqflz8lajfiygx5spxf9kraf9d"; libraryHaskellDepends = [ base byteslice primitive primitive-offset run-st vector ]; testHaskellDepends = [ - base byteslice primitive QuickCheck tasty tasty-quickcheck vector + base byteslice bytestring primitive QuickCheck tasty + tasty-quickcheck vector ]; + benchmarkHaskellDepends = [ base gauge primitive ]; description = "Serialize to a small byte arrays"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -214686,6 +216423,8 @@ self: { pname = "snaplet-customauth"; version = "0.1.2"; sha256 = "0y1a8c9j1q1pzby5v4ajnafm6dr9fvxvvkiynvscyjsf73gp2myb"; + revision = "1"; + editedCabalFile = "1dh8vmrnndg06l5yr3fbmxlzf164nvcy923mafc624bxcr6iip9f"; libraryHaskellDepends = [ aeson base base64-bytestring binary binary-orphans bytestring configurator containers errors heist hoauth2 http-client @@ -215946,8 +217685,10 @@ self: { }: mkDerivation { pname = "sockets"; - version = "0.4.0.0"; - sha256 = "0xv8341kvy6br88lj4g17hqci9sn8qbm063iv69gmfbyp5x7fs9d"; + version = "0.5.0.0"; + sha256 = "0pxrdxmiqyp5xs24sp22b4rldhzm1rahkdq5lc24m30g4p609xa3"; + revision = "1"; + editedCabalFile = "1ji60m0wj3jwdfwdjaxzic41rwdnq72m9xspn64f66c872lx137d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -215956,7 +217697,7 @@ self: { ]; testHaskellDepends = [ async base byteslice bytestring ip primitive primitive-addr - primitive-unlifted tasty tasty-hunit + primitive-unlifted stm tasty tasty-hunit ]; benchmarkHaskellDepends = [ base byteslice bytestring entropy ip primitive @@ -216277,6 +218018,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "sortee" = callPackage + ({ mkDerivation, base, hspec, HUnit, QuickCheck }: + mkDerivation { + pname = "sortee"; + version = "0.1.0.1"; + sha256 = "0lnjxryiqnkmsdqjam37ld1xqk50l3qh6lmmpsw5fnw48c8hlyzs"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec HUnit QuickCheck ]; + description = "Generate string for sort key"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "sorting" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -216845,8 +218598,8 @@ self: { pname = "spatial-rotations"; version = "0.1.0.1"; sha256 = "02nysw4dbg5l37j83kdybxkrdzgjxn20h3lknnphwz0hr0n489ii"; - revision = "2"; - editedCabalFile = "174y0jgf9bxqsc895f984q0gwn981sxdxmnwd3c25jp03iidc6c4"; + revision = "3"; + editedCabalFile = "03kjhr51w600cnm1jgdc9nbm9ay66fxq93z7r6xgph1a4dmcjvg4"; libraryHaskellDepends = [ base linear manifolds-core vector-space ]; @@ -216998,8 +218751,8 @@ self: { }: mkDerivation { pname = "spectral-clustering"; - version = "0.3.0.2"; - sha256 = "1jxjqdyjj8ajv7qb3qldaqh2mr00fg51yp4fiqi5d3bd4b4isga8"; + version = "0.3.1.0"; + sha256 = "140njrq73nalkm7dp9vyk3hz027jj0ppgjqdr3qcz93a9lkzdsyh"; libraryHaskellDepends = [ base clustering containers eigen hmatrix hmatrix-svdlibc mwc-random safe sparse-linear-algebra statistics vector @@ -217482,6 +219235,28 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "splitmix_0_0_3" = callPackage + ({ mkDerivation, async, base, base-compat-batteries, bytestring + , clock, containers, criterion, deepseq, HUnit, process, random + , tf-random, time, vector + }: + mkDerivation { + pname = "splitmix"; + version = "0.0.3"; + sha256 = "1k0amgkz7rvyz3lnw7m786ilnr1cibwhx9sc4qynq329gxan5r7w"; + libraryHaskellDepends = [ base deepseq random time ]; + testHaskellDepends = [ + async base base-compat-batteries bytestring deepseq HUnit process + random tf-random vector + ]; + benchmarkHaskellDepends = [ + base clock containers criterion random tf-random + ]; + description = "Fast Splittable PRNG"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "splitter" = callPackage ({ mkDerivation, base, directory, filepath, parsec, range }: mkDerivation { @@ -218499,7 +220274,7 @@ self: { , http-client, http-client-tls, http-conduit, http-download , http-types, memory, microlens, mintty, mono-traversable, mtl , mustache, neat-interpolation, network-uri, open-browser - , optparse-applicative, pantry-tmp, path, path-io, persistent + , optparse-applicative, pantry, path, path-io, persistent , persistent-sqlite, persistent-template, pretty, primitive , process, project-template, QuickCheck, raw-strings-qq , regex-applicative-text, resource-pool, resourcet, retry, rio @@ -218512,10 +220287,8 @@ self: { }: mkDerivation { pname = "stack"; - version = "2.1.1.1"; - sha256 = "1qqy0hkcvr4nblpknwljc71hck8ccpdiqxbxhj5mjwp9ybvag1j2"; - revision = "2"; - editedCabalFile = "0c2vqmw6rvq4jspmc1h1d33bdzmm63svrax1q5r9g70lvjfi7ax8"; + version = "2.1.3.1"; + sha256 = "1q2nagnc24fvyj3hwnpgyp3rqhxswhscyw4pw2dazqx34ad3d0zr"; configureFlags = [ "-fdisable-git-info" "-fhide-dependency-versions" "-fsupported-build" @@ -218532,7 +220305,7 @@ self: { http-client http-client-tls http-conduit http-download http-types memory microlens mintty mono-traversable mtl mustache neat-interpolation network-uri open-browser optparse-applicative - pantry-tmp path path-io persistent persistent-sqlite + pantry path path-io persistent persistent-sqlite persistent-template pretty primitive process project-template regex-applicative-text resource-pool resourcet retry rio rio-prettyprint semigroups split stm streaming-commons tar @@ -218550,7 +220323,7 @@ self: { http-client http-client-tls http-conduit http-download http-types memory microlens mintty mono-traversable mtl mustache neat-interpolation network-uri open-browser optparse-applicative - pantry-tmp path path-io persistent persistent-sqlite + pantry path path-io persistent persistent-sqlite persistent-template pretty primitive process project-template regex-applicative-text resource-pool resourcet retry rio rio-prettyprint semigroups split stm streaming-commons tar @@ -218568,7 +220341,7 @@ self: { hspec http-client http-client-tls http-conduit http-download http-types memory microlens mintty mono-traversable mtl mustache neat-interpolation network-uri open-browser optparse-applicative - pantry-tmp path path-io persistent persistent-sqlite + pantry path path-io persistent persistent-sqlite persistent-template pretty primitive process project-template QuickCheck raw-strings-qq regex-applicative-text resource-pool resourcet retry rio rio-prettyprint semigroups smallcheck split stm @@ -218828,8 +220601,8 @@ self: { }: mkDerivation { pname = "stack2cabal"; - version = "1.0.2"; - sha256 = "0zdyjf55zda465ai6bjp13a4f4khgz59smmaa2nlbbrjknlb1kbl"; + version = "1.0.3"; + sha256 = "1bmghzb866p3225ai3w4xxy3s2qic3vr4srcx7xb113qjvmadran"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -219136,8 +220909,8 @@ self: { }: mkDerivation { pname = "stackage-to-hackage"; - version = "1.1.0"; - sha256 = "165g5vyxck8hh2523v4h0cwjl3yvp4wwzlsdrs9wvg9ca3ij0v85"; + version = "1.1.1"; + sha256 = "10zd3wqla54mfnwv65gklvmglhcpzhanqfka0l0ilnbkqlgx4acm"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -220004,6 +221777,41 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "stc-lang" = callPackage + ({ mkDerivation, abstract-par, aeson, base, BoundedChan, bytestring + , clock, deepseq, ghc-prim, hashable, hashtables, hedis, HUnit + , hw-kafka-client, microlens, microlens-aeson, monad-par + , monad-par-extras, mtl, random, test-framework + , test-framework-hunit, text, time, transformers, uuid-types + , vector, yaml + }: + mkDerivation { + pname = "stc-lang"; + version = "1.0.0"; + sha256 = "1x11q696f3598g3ph3shiia0xwxqjaydp27inmfqz01p891xhj5w"; + revision = "1"; + editedCabalFile = "1fjkr2k0j2463vifmaqm6d8pk3r66wrmf74g8lypgf9p4vbsv53m"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + abstract-par base BoundedChan bytestring deepseq microlens + monad-par monad-par-extras mtl transformers + ]; + executableHaskellDepends = [ + aeson base BoundedChan bytestring clock deepseq hashable hashtables + hedis hw-kafka-client microlens microlens-aeson mtl random text + transformers uuid-types vector yaml + ]; + testHaskellDepends = [ + base deepseq ghc-prim HUnit microlens mtl test-framework + test-framework-hunit time transformers + ]; + description = "A library for implicit, monadic dataflow parallelism"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "std" = callPackage ({ mkDerivation }: mkDerivation { @@ -221075,41 +222883,56 @@ self: { }) {}; "stratux" = callPackage - ({ mkDerivation, base, directory, doctest, filepath, QuickCheck - , stratux-http, stratux-types, stratux-websockets, template-haskell + ({ mkDerivation, base, stratux-http, stratux-types + , stratux-websockets }: mkDerivation { pname = "stratux"; - version = "0.0.9"; - sha256 = "17jy7svf74k3r87p8xlp0hi9z95f5npmnn28jlwx4rb68dn63aly"; + version = "0.0.10"; + sha256 = "0km05c7i6yxlxy4fa39rrll1xmf5yzb6vk1b8s8rmh19520dzb07"; libraryHaskellDepends = [ base stratux-http stratux-types stratux-websockets ]; - testHaskellDepends = [ - base directory doctest filepath QuickCheck template-haskell - ]; description = "A library for stratux"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; }) {}; + "stratux-demo" = callPackage + ({ mkDerivation, base, lens, network-uri, optparse-applicative + , stratux, text, time, transformers + }: + mkDerivation { + pname = "stratux-demo"; + version = "0.0.12"; + sha256 = "0rarr1z6rk6idjyxzb0053p90rpixqwc767bslcm6dvj9rxbgsvp"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base lens network-uri optparse-applicative stratux text time + transformers + ]; + executableHaskellDepends = [ + base lens network-uri optparse-applicative stratux text time + transformers + ]; + description = "A demonstration of the stratux library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "stratux-http" = callPackage - ({ mkDerivation, aeson, base, directory, doctest, either, filepath - , HTTP, network-uri, QuickCheck, stratux-types, template-haskell - , utf8-string + ({ mkDerivation, aeson, base, HTTP, network-uri, stratux-types + , transformers, utf8-string }: mkDerivation { pname = "stratux-http"; - version = "0.0.9"; - sha256 = "121pansnd8pdhv9ki2qdav93cwldmnxnykjldhbkb2bkyr0skdyb"; - revision = "1"; - editedCabalFile = "0paq3zs9c39dcjxxyz975q4nccmgdxxay839wa60gka75hix34gs"; + version = "0.0.11"; + sha256 = "056fz3fs1giwlh9yfj462p0bg98gzikbqvkkwcyrmyqpxjsala15"; libraryHaskellDepends = [ - aeson base either HTTP network-uri stratux-types utf8-string - ]; - testHaskellDepends = [ - base directory doctest filepath QuickCheck template-haskell + aeson base HTTP network-uri stratux-types transformers utf8-string ]; description = "A library for using HTTP with stratux"; license = stdenv.lib.licenses.bsd3; @@ -221118,20 +222941,16 @@ self: { }) {}; "stratux-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, lens, QuickCheck, scientific, template-haskell, text + ({ mkDerivation, aeson, base, bytestring, lens, scientific, text , time }: mkDerivation { pname = "stratux-types"; - version = "0.0.9"; - sha256 = "06d4qagcmzch25zkxpnvw04h5aav5wbdrfyi6xvzvndj12hvayza"; + version = "0.0.11"; + sha256 = "0ps9y9rfjk5xzikkl4rsv203rfqc1yqa8alp5hx37lqgcnymw4hy"; libraryHaskellDepends = [ aeson base bytestring lens scientific text time ]; - testHaskellDepends = [ - base directory doctest filepath QuickCheck template-haskell - ]; description = "A library for reading JSON output from stratux"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -221139,23 +222958,17 @@ self: { }) {}; "stratux-websockets" = callPackage - ({ mkDerivation, aeson, base, directory, doctest, either, filepath - , network, QuickCheck, stratux-types, template-haskell, text + ({ mkDerivation, aeson, base, either, network, stratux-types, text , transformers, websockets }: mkDerivation { pname = "stratux-websockets"; - version = "0.0.9"; - sha256 = "0076n4i250frv71w9sysw935g5aq0py8shwaqrhjrv4jp6mb2k3q"; - revision = "1"; - editedCabalFile = "0863p5spgs68q6ddp3v9azm7x01wky1480yp3rrjxpkgay1ha4db"; + version = "0.0.11"; + sha256 = "0602y8h37zplp1g0fmdim1f8pmdz713jydc4qsh6ii3x58i8klj5"; libraryHaskellDepends = [ aeson base either network stratux-types text transformers websockets ]; - testHaskellDepends = [ - base directory doctest filepath QuickCheck template-haskell - ]; description = "A library for using websockets with stratux"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -223375,8 +225188,8 @@ self: { pname = "summoner"; version = "1.3.0.1"; sha256 = "1m08n2ip9rjx06mcwcv636ncicmpxcmhx82i3p4yc5vylibxr57s"; - revision = "3"; - editedCabalFile = "0galzkk5y41akmy12vfk8zh5pm9pyv4a5034qpfcxm7ix0s2ivms"; + revision = "4"; + editedCabalFile = "1vjk95n2wqybigy8p55gs7qkiv5v1lwf8qmri1f9bk29599sh74k"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -224553,8 +226366,8 @@ self: { }: mkDerivation { pname = "symantic"; - version = "6.3.3.20190614"; - sha256 = "1l0a82r1fx6ai5csjaqiha8gngb1pay1cmj947619xy36iwng3pc"; + version = "6.3.4.20190712"; + sha256 = "0khx7ddr9cdwyqz22xai8vmjn37c3w9gf4mlzil8lqvdf2cwk6wk"; libraryHaskellDepends = [ base containers mono-traversable symantic-document symantic-grammar text transformers @@ -224566,15 +226379,16 @@ self: { }) {}; "symantic-cli" = callPackage - ({ mkDerivation, base, containers, megaparsec, symantic-document - , text, transformers + ({ mkDerivation, base, bytestring, containers, megaparsec + , symantic-document, text, transformers }: mkDerivation { pname = "symantic-cli"; - version = "2.2.4.20190701"; - sha256 = "0qkfjhva0mrmirc4md82r5f738i6af4whlyqnxmksqz0jwa9r5nv"; + version = "2.4.0.20190719"; + sha256 = "0ca3c309wxby99sy3xa96i04q2r7wxcgk4amy8z86xaz1r78a60d"; libraryHaskellDepends = [ - base containers megaparsec symantic-document text transformers + base bytestring containers megaparsec symantic-document text + transformers ]; description = "Symantics for parsing and documenting a CLI"; license = stdenv.lib.licenses.gpl3; @@ -224588,8 +226402,8 @@ self: { }: mkDerivation { pname = "symantic-document"; - version = "1.2.3.20190628"; - sha256 = "0ahbhksiyinfsbgb2xhikckly8m5g2lfads5cjk7mbi27zn9y2v8"; + version = "1.5.0.20190711"; + sha256 = "01vza9k4ic6xwgj4jqihcfm5a5q8n6svi1988v851pi40dg8m03s"; libraryHaskellDepends = [ ansi-terminal base text transformers ]; testHaskellDepends = [ base containers tasty tasty-hunit text transformers @@ -224766,6 +226580,31 @@ self: { broken = true; }) {}; + "symantic-xml" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default-class + , deepseq, filepath, hashable, hxt-charproperties, megaparsec, safe + , tasty, tasty-golden, text, transformers, treeseq + , unordered-containers + }: + mkDerivation { + pname = "symantic-xml"; + version = "1.0.0.20190223"; + sha256 = "0mqx0ysp9c4zzljjgl0w68k5r8qgv2h35cfq0mqvijcjq5dgiflp"; + libraryHaskellDepends = [ + base bytestring containers data-default-class filepath hashable + hxt-charproperties megaparsec safe text transformers treeseq + unordered-containers + ]; + testHaskellDepends = [ + base bytestring containers data-default-class deepseq filepath + hashable megaparsec tasty tasty-golden text transformers treeseq + ]; + description = "Library for reading, validating and writing a subset of the XML format"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + "symbol" = callPackage ({ mkDerivation, base, containers, deepseq }: mkDerivation { @@ -224779,6 +226618,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "symbolic-link" = callPackage + ({ mkDerivation, base, directory, unix, yaml }: + mkDerivation { + pname = "symbolic-link"; + version = "0.1.0.2"; + sha256 = "02v0ry474xkpacbav6s3781xiczkhbx5rzks9ad5pj2y16z59pr7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base directory unix ]; + executableHaskellDepends = [ base directory unix yaml ]; + description = "Symlink tools"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "symbols" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -226516,6 +228369,8 @@ self: { pname = "tai"; version = "0"; sha256 = "1kp7m9mhawi2fbdsir4kg9z6hbmlw4kmp3kjvlk4qkhvckgl3pxw"; + revision = "1"; + editedCabalFile = "0m95bx120pjigxncbdb28y3cv4d6x05vgpjgny86vk0lkslk130y"; libraryHaskellDepends = [ base clock lens mtl parsers time trifecta wreq ]; @@ -226926,6 +228781,8 @@ self: { pname = "tart"; version = "0.1.2"; sha256 = "1ik86xbai9513gr9k60m55xf5pj5bdw3wbjc0gd260j9k9j4p73k"; + revision = "1"; + editedCabalFile = "04xkrc0xfbx2kk6f8b41zf611s4k848ahczbbs85pd9lqqpkbhzj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -227575,6 +229432,30 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "tasty-silver_3_1_13" = callPackage + ({ mkDerivation, ansi-terminal, async, base, bytestring, containers + , deepseq, directory, filepath, mtl, optparse-applicative, process + , process-extras, regex-tdfa, semigroups, stm, tagged, tasty + , tasty-hunit, temporary, text, transformers + }: + mkDerivation { + pname = "tasty-silver"; + version = "3.1.13"; + sha256 = "1sd9xgjcvlnw338dn5rcy5la7gw15yvg4xl85ym7aav5fr97apfs"; + libraryHaskellDepends = [ + ansi-terminal async base bytestring containers deepseq directory + filepath mtl optparse-applicative process process-extras regex-tdfa + semigroups stm tagged tasty temporary text + ]; + testHaskellDepends = [ + base directory filepath process tasty tasty-hunit temporary + transformers + ]; + description = "A fancy test runner, including support for golden tests"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tasty-smallcheck" = callPackage ({ mkDerivation, async, base, smallcheck, tagged, tasty }: mkDerivation { @@ -227648,6 +229529,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tasty-tmux" = callPackage + ({ mkDerivation, base, bytestring, mtl, regex-posix, tasty + , tasty-hunit, text, typed-process + }: + mkDerivation { + pname = "tasty-tmux"; + version = "0.1.0.0"; + sha256 = "1k7xc2fvfjrv48hml1jlhjrdrnb9sjaar7xrbwbj1275s09b51h8"; + libraryHaskellDepends = [ + base bytestring mtl regex-posix tasty tasty-hunit text + typed-process + ]; + description = "Terminal user acceptance testing (UAT) via tmux"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "tasty-travis" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { @@ -229128,6 +231025,8 @@ self: { ]; description = "Terminal emulator configurable in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {inherit (pkgs) gtk3; vte_291 = pkgs.vte;}; "termplot" = callPackage @@ -230055,8 +231954,8 @@ self: { }: mkDerivation { pname = "text-cp437"; - version = "0.2.1"; - sha256 = "1fzsb341yr1jiv9wflr35ra1z1cd41wmyp0y5dv2p0fq10kxcfgs"; + version = "0.2.2"; + sha256 = "1lv1nhkrwdrs3ji7x2qv1r33dipgchr1fl2znmmkhxksbhlwi0x9"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base bytestring QuickCheck quickcheck-text text @@ -230558,6 +232457,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text-short_0_1_3" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim + , hashable, quickcheck-instances, tasty, tasty-hunit + , tasty-quickcheck, text + }: + mkDerivation { + pname = "text-short"; + version = "0.1.3"; + sha256 = "0xyrxlb602z8bc9sr2y1fag0x56a20yj5qrkvy7iwc6hnznrynxz"; + libraryHaskellDepends = [ + base binary bytestring deepseq ghc-prim hashable text + ]; + testHaskellDepends = [ + base binary quickcheck-instances tasty tasty-hunit tasty-quickcheck + text + ]; + description = "Memory-efficient representation of Unicode text strings"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "text-show" = callPackage ({ mkDerivation, array, base, base-compat-batteries, base-orphans , bifunctors, bytestring, bytestring-builder, containers @@ -231514,6 +233434,22 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "th-test-utils" = callPackage + ({ mkDerivation, base, tasty, tasty-hunit, template-haskell + , transformers + }: + mkDerivation { + pname = "th-test-utils"; + version = "1.0.0"; + sha256 = "1kpkf6h0vr06z7iphkcjva9x28mfjg967hrih4im527g9vw5mdq6"; + libraryHaskellDepends = [ base template-haskell transformers ]; + testHaskellDepends = [ + base tasty tasty-hunit template-haskell transformers + ]; + description = "Utility functions for testing Template Haskell code"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "th-to-exp" = callPackage ({ mkDerivation, base, hspec, template-haskell }: mkDerivation { @@ -231758,14 +233694,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "these_1" = callPackage + "these_1_0_1" = callPackage ({ mkDerivation, aeson, assoc, base, base-compat, binary, deepseq , hashable, QuickCheck, semigroupoids, unordered-containers }: mkDerivation { pname = "these"; - version = "1"; - sha256 = "01pnibkkzbsdiry4w018img92ja2sqwjigpw53q12mfnabvsgvxn"; + version = "1.0.1"; + sha256 = "1k0pi65g7cm9hzdw6my6bzz2zvddkmj1qs45ymqmi316bpiixk3r"; libraryHaskellDepends = [ aeson assoc base base-compat binary deepseq hashable QuickCheck semigroupoids unordered-containers @@ -232437,6 +234373,27 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "tidal_1_3_0" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, clock, colour + , containers, criterion, deepseq, hosc, microspec, mwc-random + , network, parsec, text, transformers, vector, weigh + }: + mkDerivation { + pname = "tidal"; + version = "1.3.0"; + sha256 = "0zd9z0nc600b1zw0c1bpl5b3ik1dcspv5kd72p3if70g81x56d8l"; + enableSeparateDataOutput = true; + libraryHaskellDepends = [ + base bifunctors bytestring clock colour containers deepseq hosc + mwc-random network parsec text transformers vector + ]; + testHaskellDepends = [ base containers microspec parsec ]; + benchmarkHaskellDepends = [ base criterion weigh ]; + description = "Pattern language for improvised music"; + license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tidal-midi" = callPackage ({ mkDerivation, base, containers, PortMidi, tidal, time , transformers @@ -232472,13 +234429,22 @@ self: { }) {}; "tidal-vis" = callPackage - ({ mkDerivation, base, cairo, colour, tidal }: + ({ mkDerivation, async, base, cairo, colour, containers, gloss + , hashable, hosc, mtl, network, SDL, SDL-gfx, SDL-image, SDL-ttf + , tidal, time, unagi-chan + }: mkDerivation { pname = "tidal-vis"; - version = "0.9.3"; - sha256 = "1sj17czyzpfrq0a8kalr170dw1zcphix0dnhdf6ggryskb1wswdp"; - libraryHaskellDepends = [ base cairo colour tidal ]; - description = "Visual rendering for Tidal patterns"; + version = "1.0.14"; + sha256 = "1l924nqv8ljd9ljpy05r18j0rc5if3k5lvpifv2g8fn967gi0nfs"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base cairo colour containers gloss hashable hosc mtl network + SDL SDL-gfx SDL-image SDL-ttf tidal time unagi-chan + ]; + executableHaskellDepends = [ base ]; + description = "Visual rendering for Tidal patterns and osc messages"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; broken = true; @@ -233852,7 +235818,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tls_1_5_0" = callPackage + "tls_1_5_1" = callPackage ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring , cereal, cryptonite, data-default-class, gauge, hourglass, memory , mtl, network, QuickCheck, tasty, tasty-quickcheck, transformers @@ -233860,8 +235826,8 @@ self: { }: mkDerivation { pname = "tls"; - version = "1.5.0"; - sha256 = "04hdk8mdn8l928prj1h37xkn4ny44bnkrbbknxyqjba51y5y30bc"; + version = "1.5.1"; + sha256 = "1fs5q494ip8hi2jdp34wy93hmdd42lwkh1hi0jg3ngdnilpg33yi"; libraryHaskellDepends = [ asn1-encoding asn1-types async base bytestring cereal cryptonite data-default-class hourglass memory mtl network transformers x509 @@ -233899,15 +235865,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "tls-debug_0_4_6" = callPackage + "tls-debug_0_4_7" = callPackage ({ mkDerivation, base, bytestring, cryptonite, data-default-class , network, pem, tls, tls-session-manager, x509, x509-store , x509-system, x509-validation }: mkDerivation { pname = "tls-debug"; - version = "0.4.6"; - sha256 = "0xfjwyiazjdyba6x9bps93ibah9p22ww24wlmr6iksfsdhs79l7n"; + version = "0.4.7"; + sha256 = "1p3ihky5vznjv66f1mbpj33ahkg8g0xgfknldzmgllwsmh533dji"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -233955,6 +235921,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "tls-session-manager_0_0_3" = callPackage + ({ mkDerivation, auto-update, base, basement, bytestring, clock + , memory, psqueues, tls + }: + mkDerivation { + pname = "tls-session-manager"; + version = "0.0.3"; + sha256 = "0k57flqp2b4bipafiyfipnqmdqv04ky39yr4s4s9sx577zz2j2yi"; + libraryHaskellDepends = [ + auto-update base basement bytestring clock memory psqueues tls + ]; + description = "In-memory TLS session manager"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "tmapchan" = callPackage ({ mkDerivation, base, containers, hashable, stm , unordered-containers @@ -234455,9 +236437,9 @@ self: { broken = true; }) {}; - "tomland_1_1_0_0" = callPackage + "tomland_1_1_0_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , gauge, hashable, hedgehog, hspec-megaparsec, htoml + , directory, gauge, hashable, hedgehog, hspec-megaparsec, htoml , htoml-megaparsec, markdown-unlit, megaparsec, mtl, parsec , parser-combinators, tasty, tasty-discover, tasty-hedgehog , tasty-hspec, tasty-silver, text, time, toml-parser, transformers @@ -234465,8 +236447,10 @@ self: { }: mkDerivation { pname = "tomland"; - version = "1.1.0.0"; - sha256 = "0ip3pp76jf6di18r10ksxw35a2594k7h1iygm0b4k77m4fx4bqzn"; + version = "1.1.0.1"; + sha256 = "0ihz8pvcnr33mydz4n7gsayikh50pn1bg3km2h3nlv054lff7kai"; + revision = "1"; + editedCabalFile = "16382q0q77bv9zlahmgbmc90hvl1b23g9fxk4dl2f1lhlfqjkxnw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -234476,9 +236460,9 @@ self: { executableHaskellDepends = [ base text time unordered-containers ]; executableToolDepends = [ markdown-unlit ]; testHaskellDepends = [ - base bytestring containers hashable hedgehog hspec-megaparsec - megaparsec tasty tasty-hedgehog tasty-hspec tasty-silver text time - unordered-containers + base bytestring containers directory hashable hedgehog + hspec-megaparsec megaparsec tasty tasty-hedgehog tasty-hspec + tasty-silver text time unordered-containers ]; testToolDepends = [ tasty-discover ]; benchmarkHaskellDepends = [ @@ -234649,17 +236633,17 @@ self: { , diversity, fgl, filepath, find-clumpiness, foldl, graphviz , hierarchical-clustering, hierarchical-spectral-clustering , hmatrix, inline-r, lens, managed, matrix-market-attoparsec - , mltool, modularity, mtl, optparse-generic, palette, parallel - , plots, safe, scientific, sparse-linear-algebra - , spectral-clustering, split, statistics, streaming - , streaming-bytestring, streaming-cassava, streaming-utils - , streaming-with, SVGFonts, temporary, terminal-progress-bar, text - , text-show, transformers, vector, vector-algorithms, zlib + , modularity, mtl, optparse-generic, palette, parallel, plots, safe + , scientific, sparse-linear-algebra, spectral-clustering, split + , statistics, streaming, streaming-bytestring, streaming-cassava + , streaming-utils, streaming-with, SVGFonts, temporary + , terminal-progress-bar, text, text-show, transformers, vector + , vector-algorithms, zlib }: mkDerivation { pname = "too-many-cells"; - version = "0.1.8.0"; - sha256 = "0xf9q5x4ch4v1yr41fs155rvymdhslphj6d4dsjhf12ahq8rs5rl"; + version = "0.1.12.2"; + sha256 = "01jbz5a51myy4293637c9v2ac87cp60l4rax2gkdiqw8vj8231j4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -234667,9 +236651,9 @@ self: { diagrams diagrams-cairo diagrams-graphviz diagrams-lib differential directory diversity fgl filepath find-clumpiness foldl graphviz hierarchical-clustering hierarchical-spectral-clustering hmatrix - inline-r lens managed matrix-market-attoparsec mltool modularity - mtl palette parallel plots safe scientific sparse-linear-algebra - split statistics streaming streaming-bytestring streaming-cassava + inline-r lens managed matrix-market-attoparsec modularity mtl + palette parallel plots safe scientific sparse-linear-algebra split + statistics streaming streaming-bytestring streaming-cassava streaming-with SVGFonts temporary text text-show vector vector-algorithms zlib ]; @@ -234677,9 +236661,10 @@ self: { aeson base birch-beer bytestring cassava colour containers diagrams-cairo diagrams-lib directory fgl filepath find-clumpiness graphviz hierarchical-spectral-clustering inline-r lens - matrix-market-attoparsec mtl optparse-generic palette plots - spectral-clustering streaming streaming-bytestring streaming-utils - terminal-progress-bar text text-show transformers vector + matrix-market-attoparsec modularity mtl optparse-generic palette + plots spectral-clustering streaming streaming-bytestring + streaming-utils terminal-progress-bar text text-show transformers + vector ]; description = "Cluster single cells and analyze cell clade relationships"; license = stdenv.lib.licenses.gpl3; @@ -234689,15 +236674,15 @@ self: { "toodles" = callPackage ({ mkDerivation, aeson, base, base64-bytestring, blaze-html - , bytestring, cmdargs, directory, extra, hspec, hspec-expectations - , megaparsec, MissingH, process, regex-posix, RSA, servant - , servant-blaze, servant-server, strict, text, time, wai, warp - , yaml + , bytestring, cmdargs, directory, extra, filepath, hspec + , hspec-expectations, megaparsec, MissingH, process, regex-posix + , RSA, servant, servant-blaze, servant-server, strict, text, time + , wai, warp, yaml }: mkDerivation { pname = "toodles"; - version = "1.2.1"; - sha256 = "19z8xx8pw66m9q9xq0qldpzhmjwfsln4hn8smmz2pjk2x713883c"; + version = "1.2.3"; + sha256 = "0b6sznzkcjhs5fw920ivmvh6n6walamy16602bxid7sjrlgdjzcf"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -234708,8 +236693,9 @@ self: { ]; executableHaskellDepends = [ aeson base base64-bytestring blaze-html bytestring cmdargs - directory extra megaparsec MissingH process regex-posix RSA servant - servant-blaze servant-server strict text time wai warp yaml + directory extra filepath megaparsec MissingH process regex-posix + RSA servant servant-blaze servant-server strict text time wai warp + yaml ]; testHaskellDepends = [ aeson base base64-bytestring blaze-html bytestring cmdargs @@ -235110,8 +237096,8 @@ self: { }: mkDerivation { pname = "tpdb"; - version = "2.1.1"; - sha256 = "0hk592dki8hp15a84pnqnjdwql2zczfask71gxf833i0vrph38yb"; + version = "2.2.0"; + sha256 = "1hrnfvp49rny9rznnhlhvgw4ffmn9nbbdiknsbwxgjfh1ixir1vf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -235252,6 +237238,8 @@ self: { ]; description = "Distributed tracing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "tracker" = callPackage @@ -235292,8 +237280,8 @@ self: { }: mkDerivation { pname = "traction"; - version = "0.1.0"; - sha256 = "1vf6hrzxr28yp6rijdxcq83c60hzkyvjkc2caiifmfi5ay2hzlzq"; + version = "0.2.0"; + sha256 = "1rbbp2sw5i1x499bhi1d0f37m34rf6j9p2ndlqsijallmdiawcgq"; libraryHaskellDepends = [ base bytestring containers exceptions mmorph postgresql-simple resource-pool syb template-haskell text time transformers @@ -235663,6 +237651,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "transformers-except" = callPackage + ({ mkDerivation, base, exceptions, text, transformers }: + mkDerivation { + pname = "transformers-except"; + version = "0.1.1"; + sha256 = "1i89k4bml223f7m3pin73vrz51xb2j7q7rr39x9v587hmm40mvkm"; + libraryHaskellDepends = [ base exceptions text transformers ]; + description = "An Except monad transformer with"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "transformers-fix" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -235857,8 +237856,8 @@ self: { }: mkDerivation { pname = "trasa"; - version = "0.4"; - sha256 = "059zbm4bfzcv0qlvr55l49xs5izycb2hdjbyqvri5f3vrnwnic1q"; + version = "0.4.1"; + sha256 = "0nnr72h6ylx52ni6l7r0nnv02d540agzfhyjfjrxywbx7xz70q5c"; libraryHaskellDepends = [ base binary bytestring hashable http-media http-types quantification text unordered-containers @@ -235884,6 +237883,43 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "trasa-extra" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, cookie, http-types, mtl, path-pieces, quantification + , text, trasa, trasa-server + }: + mkDerivation { + pname = "trasa-extra"; + version = "0.1.0.0"; + sha256 = "0ka5w55zzx7cy17pwdwcjf20yl0lmpg6bqv874k0ia7hihl6sx6c"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers cookie http-types + mtl path-pieces quantification text trasa trasa-server + ]; + description = "Extra functions for trasa"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; + }) {}; + + "trasa-form" = callPackage + ({ mkDerivation, base, bytestring, cookie, ditto, ditto-lucid + , http-api-data, http-types, lucid, mtl, quantification, text + , trasa, trasa-server, unordered-containers + }: + mkDerivation { + pname = "trasa-form"; + version = "0.3.2.0"; + sha256 = "0q59wkg7k66iq8n6b73226z23sgy8pfvylac9qvlaiib6dllq1g8"; + libraryHaskellDepends = [ + base bytestring cookie ditto ditto-lucid http-api-data http-types + lucid mtl quantification text trasa trasa-server + unordered-containers + ]; + description = "generate forms using lucid, ditto and trasa"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "trasa-reflex" = callPackage ({ mkDerivation, base, bytestring, containers, ghcjs-dom , http-media, http-types, jsaddle, reflex, reflex-dom, text, trasa @@ -235907,8 +237943,8 @@ self: { }: mkDerivation { pname = "trasa-server"; - version = "0.4"; - sha256 = "1xh85kh9ilsq8zy19if4s93zmjqxbpgqpvhkh9jpk8klia7zc0pv"; + version = "0.5.4"; + sha256 = "1z3cq2zfygxf1v7ifga23mf7zn750925cvghmb3i54a9r0wafmb2"; libraryHaskellDepends = [ base bytestring case-insensitive containers http-media http-types mtl text trasa wai @@ -235931,6 +237967,8 @@ self: { testHaskellDepends = [ base trasa ]; description = "Template Haskell to generate trasa routes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "traverse-with-class" = callPackage @@ -236651,8 +238689,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "trivial-constraint"; - version = "0.5.1.0"; - sha256 = "0wk925w1qswr5ma6427p0p1gl96hr1pfdqkn08r3ccpbibz6q1sy"; + version = "0.6.0.0"; + sha256 = "0y0iyll7ml5qz271cqa0dc3w2j3w1d8jjaxwaf2flcidigws69z5"; libraryHaskellDepends = [ base ]; description = "Constraints that any type, resp. no type fulfills"; license = stdenv.lib.licenses.gpl3; @@ -238340,6 +240378,18 @@ self: { broken = true; }) {}; + "type-errors-pretty" = callPackage + ({ mkDerivation, base, doctest, Glob }: + mkDerivation { + pname = "type-errors-pretty"; + version = "0.0.0.0"; + sha256 = "0yj8c91maanihyl9506ihpxv3zyfvprr359dvd2b9ym3py50kncs"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest Glob ]; + description = "Combinators for writing pretty type errors easily"; + license = stdenv.lib.licenses.mpl20; + }) {}; + "type-fun" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -239281,8 +241331,8 @@ self: { }: mkDerivation { pname = "typesafe-precure"; - version = "0.7.4.1"; - sha256 = "1nm74fj819kws9rrksk80gyrl3m5dxsm17bm2a18mp8dca76iix2"; + version = "0.7.5.1"; + sha256 = "0n2cnd15gwixk17jqcz4hxishikscwbcn2gnrkcz3a295ng68ins"; libraryHaskellDepends = [ aeson aeson-pretty autoexporter base bytestring dlist monad-skeleton template-haskell text th-data-compat @@ -239563,8 +241613,8 @@ self: { pname = "ucam-webauth"; version = "0.1.0.0"; sha256 = "14l989aasyqdw1x7aq9ikhcq9p3s1ax4qk53rd5s53wdgbc20n9k"; - revision = "5"; - editedCabalFile = "1hii6sjyc3dps800ffwkjq6fq82idlpkdv68k1y9ivv477plw24a"; + revision = "6"; + editedCabalFile = "1dammzdhin226byx8p287kdnn9pc7s49hfxcdmflly6hsy1psnvy"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers cryptonite errors http-api-data http-types microlens microlens-mtl mtl @@ -239960,40 +242010,23 @@ self: { }) {}; "unbeliever" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, chronologique - , containers, deepseq, directory, exceptions, fingertree, gauge - , hashable, hourglass, hspec, mtl, prettyprinter - , prettyprinter-ansi-terminal, safe-exceptions, scientific, stm - , template-haskell, terminal-size, text, text-short, transformers - , unix, unordered-containers, vector + ({ mkDerivation, base, bytestring, core-data, core-program + , core-text, fingertree, gauge, hspec, safe-exceptions, text + , text-short }: mkDerivation { pname = "unbeliever"; - version = "0.9.3.2"; - sha256 = "1gsjmr9h7w08576smi978k5djhvjk4ry0ljgr6zxx7nj7cy1m84b"; - revision = "1"; - editedCabalFile = "0mlbjb79ylk2jb7mp6da1xfl2r28zfijwv5dd2l73l9mgi5h0s72"; - libraryHaskellDepends = [ - aeson async base bytestring chronologique containers deepseq - directory exceptions fingertree hashable hourglass mtl - prettyprinter prettyprinter-ansi-terminal safe-exceptions - scientific stm template-haskell terminal-size text text-short - transformers unix unordered-containers vector - ]; + version = "0.10.0.1"; + sha256 = "0fmv76xmi4ansrksa07vidqvxiqgdmvvampkqngi1ma7g3k2n29x"; + libraryHaskellDepends = [ base core-data core-program core-text ]; testHaskellDepends = [ - aeson async base bytestring chronologique containers deepseq - directory exceptions fingertree hashable hourglass hspec mtl - prettyprinter prettyprinter-ansi-terminal safe-exceptions - scientific stm template-haskell terminal-size text text-short - transformers unix unordered-containers vector + base bytestring core-data core-program core-text fingertree hspec + safe-exceptions text text-short ]; benchmarkHaskellDepends = [ - aeson async base bytestring chronologique containers deepseq - directory exceptions fingertree gauge hashable hourglass mtl - prettyprinter prettyprinter-ansi-terminal safe-exceptions - scientific stm template-haskell terminal-size text text-short - transformers unix unordered-containers vector + base bytestring core-data core-program core-text gauge text ]; + doHaddock = false; description = "Opinionated Haskell Interoperability"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -240579,8 +242612,8 @@ self: { pname = "union"; version = "0.1.2"; sha256 = "1i4fvlwkw1wx64a6l8342aqfqsdq7fqa4p24g3i5gn5704lxrsb3"; - revision = "2"; - editedCabalFile = "170dhg4z4jzi50nh4xx75r9k8zz5br7j2iqjjw2r1dx29ajqbcw9"; + revision = "3"; + editedCabalFile = "160jc4ykqvkzw79sb9j95mw7hsnknpfhkbbd75xmkpx08vnv4d76"; libraryHaskellDepends = [ base deepseq hashable profunctors tagged vinyl ]; @@ -241389,6 +243422,32 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "unliftio_0_2_12" = callPackage + ({ mkDerivation, async, base, bytestring, containers, deepseq + , directory, filepath, gauge, hspec, process, QuickCheck, stm, time + , transformers, unix, unliftio-core + }: + mkDerivation { + pname = "unliftio"; + version = "0.2.12"; + sha256 = "02gy1zrxgzg4xmzm8lafsf1nyr3as1q20r8ld73xg3q7rkag9acg"; + libraryHaskellDepends = [ + async base bytestring deepseq directory filepath process stm time + transformers unix unliftio-core + ]; + testHaskellDepends = [ + async base bytestring containers deepseq directory filepath hspec + process QuickCheck stm time transformers unix unliftio-core + ]; + benchmarkHaskellDepends = [ + async base bytestring deepseq directory filepath gauge process stm + time transformers unix unliftio-core + ]; + description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unliftio-core" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { @@ -241879,6 +243938,8 @@ self: { ]; description = "Command-line tool to generate paths for moving upward in a file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "up-grade" = callPackage @@ -242352,6 +244413,8 @@ self: { ]; description = "Painfully simple URL deployment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "urn" = callPackage @@ -242405,6 +244468,17 @@ self: { broken = true; }) {}; + "usa-holidays" = callPackage + ({ mkDerivation, base, doctest, doctest-discover, hspec, time }: + mkDerivation { + pname = "usa-holidays"; + version = "0.1.0.1"; + sha256 = "04biw4l5rpfcflrmcn45hlirq26bpzs27745jhyr32gl6mpnqb12"; + libraryHaskellDepends = [ base time ]; + testHaskellDepends = [ base doctest doctest-discover hspec time ]; + license = stdenv.lib.licenses.bsd3; + }) {}; + "usb" = callPackage ({ mkDerivation, base, bindings-libusb, bytestring, containers , ghc-prim, text, vector @@ -243855,6 +245929,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "vault_0_3_1_3" = callPackage + ({ mkDerivation, base, containers, hashable, semigroups + , unordered-containers + }: + mkDerivation { + pname = "vault"; + version = "0.3.1.3"; + sha256 = "0vdm472vn734xa27jjm2mjacl37mxiqaaahvm4hzqjgyh4cqq377"; + libraryHaskellDepends = [ + base containers hashable semigroups unordered-containers + ]; + description = "a persistent store for values of arbitrary types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "vault-tool" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, http-types, text, unordered-containers @@ -244925,6 +247015,8 @@ self: { ]; description = "types for ingesting vflow data with aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "vfr-waypoints" = callPackage @@ -246313,6 +248405,36 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "wai-extra_3_0_27" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring + , bytestring, case-insensitive, containers, cookie + , data-default-class, deepseq, directory, fast-logger, hspec + , http-types, http2, HUnit, iproute, network, old-locale, resourcet + , streaming-commons, text, time, transformers, unix, unix-compat + , vault, void, wai, wai-logger, word8, zlib + }: + mkDerivation { + pname = "wai-extra"; + version = "3.0.27"; + sha256 = "1p8x61xjbwjif10iibc3b2gxh3dd3rymrfvinrdn0h9wn7qsyh2x"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson ansi-terminal base base64-bytestring bytestring + case-insensitive containers cookie data-default-class deepseq + directory fast-logger http-types http2 iproute network old-locale + resourcet streaming-commons text time transformers unix unix-compat + vault void wai wai-logger word8 zlib + ]; + testHaskellDepends = [ + base bytestring case-insensitive cookie fast-logger hspec + http-types http2 HUnit resourcet text time transformers wai zlib + ]; + description = "Provides some basic WAI handlers and middleware"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-frontend-monadcgi" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, cgi , containers, http-types, transformers, wai @@ -246510,8 +248632,8 @@ self: { }: mkDerivation { pname = "wai-http2-extra"; - version = "0.1.1"; - sha256 = "00fr1rg92vfkn6cb7cgdwmj7lavmyj8m9y0xxj05ws4b93r5f2z5"; + version = "0.1.2"; + sha256 = "1f4ddgrprdnbpdbb6jj8n2ib206dlj5mgf8ar6r1ls2p90vpn6yr"; libraryHaskellDepends = [ auto-update base bytestring containers http-types wai warp word8 ]; @@ -247865,8 +249987,8 @@ self: { pname = "warc"; version = "1.0.4"; sha256 = "1mxfm8kdvm0l1lnzma4n9mriz94ypckxqcz1f34fa3n1j3ckc45b"; - revision = "1"; - editedCabalFile = "1mdd3r1lg92rchy1zv4jwvrsn6x3wnplhbnwavpx0nivf3xp7m8q"; + revision = "2"; + editedCabalFile = "0vlh1wivzs2ikmp3jbx4m0zxyvkjy1rn6xhbgaz1n5vi37hid74n"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -248538,6 +250660,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "web-routes-generics" = callPackage + ({ mkDerivation, base, parsec, text, web-routes }: + mkDerivation { + pname = "web-routes-generics"; + version = "0.1.0.1"; + sha256 = "16nykkzjznl9zq2qgn87lpqxkz8yx83s7949lv4vzapp4hjv04yy"; + libraryHaskellDepends = [ base parsec text web-routes ]; + description = "portable, type-safe URL routing"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "web-routes-happstack" = callPackage ({ mkDerivation, base, bytestring, happstack-server, text , web-routes @@ -250064,18 +252197,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "winery_1_1_1" = callPackage + "winery_1_1_2" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, cereal , containers, cpu, deepseq, directory, fast-builder, gauge , hashable, HUnit, megaparsec, mtl, prettyprinter , prettyprinter-ansi-terminal, QuickCheck, quickcheck-instances - , scientific, semigroups, serialise, text, time, transformers - , unordered-containers, vector + , scientific, semigroups, serialise, store, text, time + , transformers, unordered-containers, vector }: mkDerivation { pname = "winery"; - version = "1.1.1"; - sha256 = "0jyr5vwz55rjwqvvh2ys3aq426i6jhfrykz0mx4kidr9l9yd0yls"; + version = "1.1.2"; + sha256 = "1hxs3pyv0icqmnmnjadr86d55jdi689hgcjgx3lq7skxs3hp0qf1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -250095,7 +252228,7 @@ self: { ]; benchmarkHaskellDepends = [ aeson base binary bytestring cereal deepseq directory gauge - serialise text + serialise store text ]; description = "A compact, well-typed seralisation format for Haskell values"; license = stdenv.lib.licenses.bsd3; @@ -250475,7 +252608,7 @@ self: { license = stdenv.lib.licenses.isc; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) wlc;}; + }) {wlc = null;}; "wobsurv" = callPackage ({ mkDerivation, aeson, attoparsec, base-prelude, bytestring @@ -251031,14 +253164,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "world-peace_1_0_0_0" = callPackage + "world-peace_1_0_1_0" = callPackage ({ mkDerivation, aeson, base, deepseq, doctest, Glob, profunctors , should-not-typecheck, tagged, tasty, tasty-hunit, text }: mkDerivation { pname = "world-peace"; - version = "1.0.0.0"; - sha256 = "1fx8f7dfrslqwmkbcyff5q7iafa5znc73f77il7y87hz23q9yzmx"; + version = "1.0.1.0"; + sha256 = "1fx7y9h1yyjc5xn1mpbkwas6p6h06rivzndb545z1qnnp583vzwp"; libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; testHaskellDepends = [ base doctest Glob should-not-typecheck tasty tasty-hunit text @@ -251507,6 +253640,8 @@ self: { ]; description = "A simple CLI utility for interacting with a websocket"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "ws-chans" = callPackage @@ -254461,7 +256596,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "yam_0_6_3" = callPackage + "yam_0_7" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring , data-default, exceptions, fast-logger, hspec, http-client , http-types, lens, menshen, monad-logger, mtl, mwc-random @@ -254472,8 +256607,8 @@ self: { }: mkDerivation { pname = "yam"; - version = "0.6.3"; - sha256 = "1mw4yylh8cmrm22cqpdkd64idklkwig8c4rbvrmpw5j5s0hdmdly"; + version = "0.7"; + sha256 = "1b1igh82zhdbql4kfjxxh1rg1776x2yv2755hnvps5p06c2wap7z"; libraryHaskellDepends = [ aeson base base16-bytestring binary bytestring data-default exceptions fast-logger http-client http-types lens menshen @@ -254549,15 +256684,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "yam-datasource_0_6_3" = callPackage + "yam-datasource_0_7" = callPackage ({ mkDerivation, base, conduit, data-default, monad-logger , persistent, resource-pool, resourcet, salak, servant-server, text , unliftio-core, yam }: mkDerivation { pname = "yam-datasource"; - version = "0.6.3"; - sha256 = "0zcwd32iz01b3m3xg1n3axvrljbkcld196pblc7cn0kb2n0w6ilp"; + version = "0.7"; + sha256 = "0dkricvyypyggbmqp3mqryz7sw1z1z92ixnvz48lc8xqahvj0fsv"; libraryHaskellDepends = [ base conduit data-default monad-logger persistent resource-pool resourcet salak servant-server text unliftio-core yam @@ -254600,8 +256735,8 @@ self: { }: mkDerivation { pname = "yam-redis"; - version = "0.6.3"; - sha256 = "0xvv9azq8ihyxgz11089xkvxmisp6ajggldayj8bdg045m74lv9r"; + version = "0.7"; + sha256 = "0cw4prkmi2csmi1kw3k0lvvzhnl71f4fplsv3f2jxgcgviim89pw"; libraryHaskellDepends = [ base bytestring data-default hedis menshen monad-logger mtl salak servant-server text yam @@ -255288,6 +257423,8 @@ self: { libraryHaskellDepends = [ base deriving-compat hedgehog yaya ]; description = "Hedgehog testing support for the Yaya recursion scheme library"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "yaya-unsafe" = callPackage @@ -256488,6 +258625,29 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "yesod-form_1_6_6" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, data-default + , email-validate, hspec, network-uri, persistent, resourcet + , semigroups, shakespeare, text, time, transformers, wai + , xss-sanitize, yesod-core, yesod-persistent + }: + mkDerivation { + pname = "yesod-form"; + version = "1.6.6"; + sha256 = "16m7m7yixsnka926znjy0xn0kp30mbvjq2f46rh987kdr28dks9p"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html blaze-markup + byteable bytestring containers data-default email-validate + network-uri persistent resourcet semigroups shakespeare text time + transformers wai xss-sanitize yesod-core yesod-persistent + ]; + testHaskellDepends = [ base hspec text time ]; + description = "Form handling support for Yesod Web Framework"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "yesod-form-bootstrap4" = callPackage ({ mkDerivation, base, blaze-html, blaze-markup, shakespeare, text , yesod-core, yesod-form From 844d26ddbd74bf3532e3f3824bc18581d4415ffe Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 15 Jul 2019 08:35:42 +0200 Subject: [PATCH 1513/1611] haskell-skylighting: fix overrides for the new version --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5cddf2f3672..226306b8355 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1253,8 +1253,8 @@ self: super: { cmark-gfm = self.cmark-gfm_0_2_0; pandoc = dontCheck (doDistribute super.pandoc_2_7_3); # test suite failure: https://github.com/jgm/pandoc/issues/5582 pandoc-citeproc = doDistribute super.pandoc-citeproc_0_16_2; - skylighting = self.skylighting_0_8_1_1; - skylighting-core = self.skylighting-core_0_8_1_1; + skylighting = self.skylighting_0_8_2; + skylighting-core = self.skylighting-core_0_8_2; # Current versions of tasty-hedgehog need hedgehog 1.x, which # we don't have in LTS-13.x. From bde87d5cbeacf0faa386cdfc91ddeb4b0365f5ac Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 24 Jul 2019 13:30:53 +0200 Subject: [PATCH 1514/1611] stack: update rio override to the latest version --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 226306b8355..9b7e99cf212 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1130,7 +1130,7 @@ self: super: { hi-file-parser = dontCheck (unmarkBroken super.hi-file-parser); # Avoid depending on newer hspec versions. http-download = dontCheck (unmarkBroken super.http-download); pantry-tmp = dontCheck (unmarkBroken super.pantry-tmp); - rio = self.rio_0_1_10_0; + rio = self.rio_0_1_11_0; rio-prettyprint = unmarkBroken super.rio-prettyprint; })); From d9efb3584283d099c9f9b24314ebcb60742fd8be Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 12:59:08 +0200 Subject: [PATCH 1515/1611] haskell-ip: update override for the latest version --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9b7e99cf212..559ca9dec70 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1313,7 +1313,7 @@ self: super: { constraints-deriving = dontCheck super.constraints-deriving; # The old LTS-13.x version does not compile. - ip = self.ip_1_5_0; + ip = self.ip_1_5_1; # Needs deque >= 0.3, but latest version on stackage is 2.7 butcher = super.butcher.override { deque = self.deque_0_4_2_3; }; From 04abf153ef02c6535779e0e333f731393627dce7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 13:00:22 +0200 Subject: [PATCH 1516/1611] haskell-hsdev: update override for the latest version --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 559ca9dec70..5cd0ad2cd7b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1111,7 +1111,7 @@ self: super: { ''; }); - hsdev_0_3_3_1 = super.hsdev_0_3_3_1.overrideScope (self: super: { + hsdev_0_3_3_2 = super.hsdev_0_3_3_2.overrideScope (self: super: { haskell-names = self.haskell-names_0_9_6; network = self.network_3_0_1_1; }); From 41ff1335e9e867596b21447af947d18c49442e00 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 13:01:38 +0200 Subject: [PATCH 1517/1611] haskell-dhall-to-cabal: update override for the latest version --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++-- pkgs/development/haskell-modules/configuration-nix.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5cd0ad2cd7b..752d7ccc3d3 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1299,8 +1299,8 @@ self: super: { temporary-resourcet = doJailbreak super.temporary-resourcet; # Requires dhall >= 1.23.0 - ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_24_0; }; - dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_24_0; }; + ats-pkg = super.ats-pkg.override { dhall = self.dhall_1_25_0; }; + dhall-to-cabal = super.dhall-to-cabal.override { dhall = self.dhall_1_25_0; }; # Test suite doesn't work with current QuickCheck # https://github.com/pruvisto/heap/issues/11 diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 9d40b8d98a2..23cbf15e51b 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -584,6 +584,6 @@ self: super: builtins.intersectAttrs super { snap-server = dontCheck super.snap-server; # Tests require internet - dhall_1_24_0 = dontCheck super.dhall_1_24_0; + dhall_1_25_0 = dontCheck super.dhall_1_25_0; } From 92ad54a274bef91396778da142329bf713699364 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 11:46:53 +0000 Subject: [PATCH 1518/1611] haskell-stack: fix build by updating unliftio, which rio requires --- pkgs/development/haskell-modules/configuration-common.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 752d7ccc3d3..6d447af96dc 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1132,6 +1132,7 @@ self: super: { pantry-tmp = dontCheck (unmarkBroken super.pantry-tmp); rio = self.rio_0_1_11_0; rio-prettyprint = unmarkBroken super.rio-prettyprint; + unliftio = self.unliftio_0_2_12; })); # musl fixes From 5c89397875f98cb8c669286ad6a8034badfc1e11 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 11:56:39 +0000 Subject: [PATCH 1519/1611] stack: update overrides to use pantry rather than pantry-tmp --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6d447af96dc..122cfb313bf 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1129,7 +1129,7 @@ self: super: { concurrent-output = self.concurrent-output_1_10_10; # needed for new ansi-terminal version hi-file-parser = dontCheck (unmarkBroken super.hi-file-parser); # Avoid depending on newer hspec versions. http-download = dontCheck (unmarkBroken super.http-download); - pantry-tmp = dontCheck (unmarkBroken super.pantry-tmp); + pantry = dontCheck (unmarkBroken super.pantry); rio = self.rio_0_1_11_0; rio-prettyprint = unmarkBroken super.rio-prettyprint; unliftio = self.unliftio_0_2_12; From 9a40de7cc5d48526bb24b208ef07d7347625d51f Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 15:00:09 +0000 Subject: [PATCH 1520/1611] git-annex: update sha256 hash for version 7.20190730 --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 122cfb313bf..524dba0e4c4 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -72,7 +72,7 @@ self: super: { name = "git-annex-${super.git-annex.version}-src"; url = "git://git-annex.branchable.com/"; rev = "refs/tags/" + super.git-annex.version; - sha256 = "11d4qyhmc774h2xyrpyn9rxx99x3vjs0fcxsg49gj5ayzmykafap"; + sha256 = "1pz12l0awshdq5xyac5awjd902sy9l65z6ihya4pzapik4gqfdcd"; }; }).override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; From e78d952b5b6441d69d6aeeab279cb8a6a72aa20c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 3 Aug 2019 17:37:33 +0200 Subject: [PATCH 1521/1611] hackage-packages.nix: automatic Haskell package set update This update was generated by hackage2nix v2.14.4-2-ge532a45 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/bd2ec34f885123ac8346bc650365565bc197ca05. --- .../haskell-modules/hackage-packages.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 84a35340d60..04209b9e16f 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -93217,7 +93217,7 @@ self: { }) {inherit (pkgs) gtk3;}; "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -93230,13 +93230,13 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; + libraryPkgconfigDepends = [ gdk-pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; + }) {inherit (pkgs) gdk-pixbuf;}; "gi-gdkpixbuf_2_0_22" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf + ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: @@ -93251,11 +93251,11 @@ self: { base bytestring containers gi-gio gi-glib gi-gobject haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; + libraryPkgconfigDepends = [ gdk-pixbuf ]; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) gdk_pixbuf;}; + }) {inherit (pkgs) gdk-pixbuf;}; "gi-gdkx11" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo @@ -184510,7 +184510,7 @@ self: { "poppler" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gdk_pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango + , gdk-pixbuf, glib, gtk, gtk2, gtk2hs-buildtools, mtl, pango , poppler }: mkDerivation { @@ -184522,13 +184522,13 @@ self: { libraryHaskellDepends = [ array base bytestring cairo containers glib gtk mtl ]; - libraryPkgconfigDepends = [ gdk_pixbuf gtk2 pango poppler ]; + libraryPkgconfigDepends = [ gdk-pixbuf gtk2 pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) gdk_pixbuf; inherit (pkgs) gtk2; + }) {inherit (pkgs) gdk-pixbuf; inherit (pkgs) gtk2; inherit (pkgs) pango; inherit (pkgs) poppler;}; "populate-setup-exe-cache" = callPackage From 0fd978baf77e15c4eb9ba7a54111c340b0730b8f Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Mon, 10 Jun 2019 08:43:49 -0700 Subject: [PATCH 1522/1611] vulkan-validation-layers: 1.1.101.0 -> 1.1.106.0 --- .../tools/vulkan-validation-layers/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 12 ++++++------ 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/vulkan-validation-layers/default.nix b/pkgs/development/tools/vulkan-validation-layers/default.nix index 5acf5ed0d23..3c189d09f1c 100644 --- a/pkgs/development/tools/vulkan-validation-layers/default.nix +++ b/pkgs/development/tools/vulkan-validation-layers/default.nix @@ -3,17 +3,17 @@ , pkgconfig, xlibsWrapper, libxcb, libXrandr, wayland }: stdenv.mkDerivation rec { name = "vulkan-validation-layers-${version}"; - version = "1.1.101.0"; # WARNING: glslang overrides in all-packages.nix must be updated to match known-good.json! + version = "1.1.106.0"; # WARNING: glslang overrides in all-packages.nix must be updated to match known-good.json! src = fetchFromGitHub { owner = "KhronosGroup"; repo = "Vulkan-ValidationLayers"; rev = "sdk-${version}"; - sha256 = "00gz72m393i3m3rh5hv9d0znzlz39cpw35ifchzb4cr11bi4mzyz"; + sha256 = "1sq42j8ikll2dyi9ygaz80lx89mvq9d21pkaf49gzhg4xjcd97dp"; }; - nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ cmake python3 vulkan-headers vulkan-loader xlibsWrapper libxcb libXrandr wayland ]; + nativeBuildInputs = [ pkgconfig cmake python3 ]; + buildInputs = [ vulkan-headers vulkan-loader libxcb libXrandr wayland ]; enableParallelBuilding = true; cmakeFlags = [ "-DGLSLANG_INSTALL_DIR=${glslang}" ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05f7dba952b..98004a6ce8c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13768,24 +13768,24 @@ in src = fetchFromGitHub { owner = "KhronosGroup"; repo = "SPIRV-Tools"; - rev = "5994ae2a045015004cce24802dc47c33736486ea"; - sha256 = "1w1zkql03aggma31nz4xb1b5waxxf2jcg99slzvmihg9ngmmlbm6"; + rev = "26c1b8878315a7a5c188df45e0bc236bb222b698"; + sha256 = "1q76vaqwxf4q2l4rd7j2p2jqgcqpys0m235drzx0drkn2qd50n1b"; }; }); spirv-headers = spirv-tools.overrideAttrs (_: { src = fetchFromGitHub { owner = "KhronosGroup"; repo = "SPIRV-Headers"; - rev = "79b6681aadcb53c27d1052e5f8a0e82a981dbf2f"; - sha256 = "0flng2rdmc4ndq3j71h6wk1ibcjvhjrg2rzd6rv445vcsf0jh2pj"; + rev = "2434b89345a50c018c84f42a310b0fad4f3fd94f"; + sha256 = "1m902q1alm0rbh69zlskkx4n453xijijp9mf3wzwphi2j36gygwm"; }; }); }).overrideAttrs (_: { src = fetchFromGitHub { owner = "KhronosGroup"; repo = "glslang"; - rev = "5432f0dd8f331f15182681664d7486681e8514e6"; - sha256 = "0spdm93qkx83z8bks61am2g3ary7fkibvhqq706nj4z9wx4k0cbm"; + rev = "e06c7e9a515b716c731bda13f507546f107775d1"; + sha256 = "04y4dd1cqdkd4qffmhgmg3agf9j07ii2w38vpp4jw53ir818bqdq"; }; }); }; From 0423b5d7620912f8ea4fa91b10ca202a73c0a3fb Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Aug 2019 11:25:22 -0500 Subject: [PATCH 1523/1611] tflint: 0.9.2 -> 0.9.3 (#65848) --- pkgs/development/tools/analysis/tflint/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/analysis/tflint/default.nix b/pkgs/development/tools/analysis/tflint/default.nix index b372481cec7..caa4d718f89 100644 --- a/pkgs/development/tools/analysis/tflint/default.nix +++ b/pkgs/development/tools/analysis/tflint/default.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "tflint"; - version = "0.9.2"; + version = "0.9.3"; src = fetchFromGitHub { owner = "wata727"; repo = pname; rev = "v${version}"; - sha256 = "0yk5hygrjkbq5ry2kark3hd59hwjxpgryz0ychr8mhzvlr97aj1k"; + sha256 = "10saljrman41pjmjhbzan8jw8jbz069yhcf6vvzxmw763x5s3n85"; }; - modSha256 = "096hq0xc3cq45r13pm0s0q9rxd4z0ia6x0wy4xmwgzfb97jvn20p"; + modSha256 = "0zfgyv1m7iay3brkqmh35gw1giyr3i3ja56dh4kgm6ai4z1jmvgc"; subPackages = [ "." ]; From c089c155df985dfe3212cb1665d092fdeb7c9dc9 Mon Sep 17 00:00:00 2001 From: Meghea Iulian Date: Sat, 27 Jul 2019 18:04:23 +0300 Subject: [PATCH 1524/1611] smartgithg: 18.2.4 -> 18.2.9 Refactored packages: * adds makeDesktopItem and remove install_freedesktop_items * replaced buildCommand with preFixup & installPhase * replaces makeWrapper with wrapGAppsHook --- .../version-management/smartgithg/default.nix | 114 +++++++++++------- .../smartgithg/install_freedesktop_items.sh | 11 -- 2 files changed, 70 insertions(+), 55 deletions(-) delete mode 100755 pkgs/applications/version-management/smartgithg/install_freedesktop_items.sh diff --git a/pkgs/applications/version-management/smartgithg/default.nix b/pkgs/applications/version-management/smartgithg/default.nix index 38c3da220c9..5c9b5a83c18 100644 --- a/pkgs/applications/version-management/smartgithg/default.nix +++ b/pkgs/applications/version-management/smartgithg/default.nix @@ -1,64 +1,90 @@ -{ stdenv, fetchurl, lib, makeWrapper -, substituteAll +{ stdenv +, fetchurl +, makeDesktopItem , jre -, gtk2, glib +, gtk3 +, glib +, gnome3 +, wrapGAppsHook +, hicolor-icon-theme , libXtst , which }: stdenv.mkDerivation rec { - name = "smartgithg-${version}"; - version = "18.2.4"; + pname = "smartgithg"; + version = "18.2.9"; src = fetchurl { url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${builtins.replaceStrings [ "." ] [ "_" ] version}.tar.gz"; - sha256 = "0ch6vcvndn1fpx05ym9yp2ssfw2af6ac0pw8ssvjkc676zc0jr73"; + sha256 = "0d08awb2s3w1w8n8048abw2x4wnqhfx96sls9kdsnxj0xrszgz67"; }; - nativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ wrapGAppsHook ]; - buildInputs = [ jre ]; + buildInputs = [ jre gnome3.adwaita-icon-theme hicolor-icon-theme gtk3 ]; - buildCommand = let - pkg_path = "$out/${name}"; - bin_path = "$out/bin"; - install_freedesktop_items = substituteAll { - inherit (stdenv) shell; - isExecutable = true; - src = ./install_freedesktop_items.sh; - }; - runtime_paths = lib.makeBinPath [ - jre - #git mercurial subversion # the paths are requested in configuration - which - ]; - runtime_lib_paths = lib.makeLibraryPath [ - gtk2 glib - libXtst - ]; - in '' - tar xvzf $src - mkdir -pv $out - mkdir -pv ${pkg_path} - # unpacking should have produced a dir named 'smartgit' - cp -a smartgit/* ${pkg_path} - # prevent using packaged jre - rm -r ${pkg_path}/jre - mkdir -pv ${bin_path} - jre=${jre.home} - makeWrapper ${pkg_path}/bin/smartgit.sh ${bin_path}/smartgit \ - --prefix PATH : ${runtime_paths} \ - --prefix LD_LIBRARY_PATH : ${runtime_lib_paths} \ + preFixup = with stdenv.lib; '' + gappsWrapperArgs+=( \ + --prefix PATH : ${makeBinPath [ jre which ]} \ + --prefix LD_LIBRARY_PATH : ${makeLibraryPath [ + gtk3 + glib + libXtst + ]} \ --prefix JRE_HOME : ${jre} \ --prefix JAVA_HOME : ${jre} \ - --prefix SMARTGITHG_JAVA_HOME : ${jre} - sed -i '/ --login/d' ${pkg_path}/bin/smartgit.sh - patchShebangs $out - cp ${bin_path}/smartgit ${bin_path}/smartgithg - - ${install_freedesktop_items} "${pkg_path}/bin" "$out" + --prefix SMARTGITHG_JAVA_HOME : ${jre} \ + ) \ ''; + installPhase = '' + runHook preInstall + + sed -i '/ --login/d' bin/smartgit.sh + mkdir -pv $out/{bin,share/applications,share/icons/hicolor/scalable/apps/} + cp -av ./{dictionaries,lib} $out/ + cp -av bin/smartgit.sh $out/bin/smartgit + ln -sfv $out/bin/smartgit $out/bin/smartgithg + + cp -av $desktopItem/share/applications/* $out/share/applications/ + for icon_size in 32 48 64 128 256; do + path=$icon_size'x'$icon_size + icon=bin/smartgit-$icon_size.png + mkdir -p $out/share/icons/hicolor/$path/apps + cp $icon $out/share/icons/hicolor/$path/apps/smartgit.png + done + + cp -av bin/smartgit.svg $out/share/icons/hicolor/scalable/apps/ + + runHook postInstall + ''; + + desktopItem = with stdenv.lib; makeDesktopItem rec { + name = "smartgit"; + exec = "smartgit"; + comment = meta.description; + icon = "smartgit"; + desktopName = "SmartGit"; + categories = concatStringsSep ";" [ + "Application" + "Development" + "RevisionControl" + ]; + mimeType = concatStringsSep ";" [ + "x-scheme-handler/git" + "x-scheme-handler/smartgit" + "x-scheme-handler/sourcetree" + ]; + startupNotify = "true"; + extraEntries = '' + Keywords=git + StartupWMClass=${name} + Version=1.0 + Encoding=UTF-8 + ''; + }; + meta = with stdenv.lib; { description = "GUI for Git, Mercurial, Subversion"; homepage = http://www.syntevo.com/smartgit/; diff --git a/pkgs/applications/version-management/smartgithg/install_freedesktop_items.sh b/pkgs/applications/version-management/smartgithg/install_freedesktop_items.sh deleted file mode 100755 index 2ff14dcf099..00000000000 --- a/pkgs/applications/version-management/smartgithg/install_freedesktop_items.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!@shell@ - -inBinDir=$1 -out=$2 - -cat $inBinDir/add-menuitem.sh | \ -sed -re 's#xdg-icon-resource[ ]+install[ ]+--size[ ]+([0-9]+)[ ]+("[^"]+")[ ]+([$0-9a-zA-Z_]+)#mkdir -p '${out}'/share/icons/hicolor/\1x\1/apps \&\& cp \2 '${out}'/share/icons/hicolor/\1x\1/apps/\3\.png #' | \ -sed -re 's#xdg-desktop-menu[ ]+install[ ]+([$0-9a-zA-Z_]+)#mkdir -p '${out}'/share/applications \&\& cp \1 '${out}'/share/applications/#' | \ -sed -re 's#Exec="[^"]+"#Exec=smartgit#' | -sed -re 's#SMARTGIT_BIN=.*#'SMARTGIT_BIN=${inBinDir}'#' \ -| bash From 3eda38b87ff74f218605511d0d7a7bcbe49e60de Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 3 Aug 2019 11:06:34 -0700 Subject: [PATCH 1525/1611] libgpiod: unstable-2018-10-07 -> 1.4 --- pkgs/development/libraries/libgpiod/default.nix | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/libgpiod/default.nix b/pkgs/development/libraries/libgpiod/default.nix index c498ef3460a..5eac024f831 100644 --- a/pkgs/development/libraries/libgpiod/default.nix +++ b/pkgs/development/libraries/libgpiod/default.nix @@ -1,13 +1,12 @@ -{ stdenv, fetchgit, autoreconfHook, autoconf-archive, pkgconfig, kmod, enable-tools ? true }: +{ stdenv, fetchurl, autoreconfHook, autoconf-archive, pkgconfig, kmod, enable-tools ? true }: stdenv.mkDerivation rec { - name = "libgpiod-unstable-${version}"; - version = "2018-10-07"; + pname = "libgpiod"; + version = "1.4"; - src = fetchgit { - url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git"; - rev = "4bf402d3a49336eacd33654441d575bd267780b8"; - sha256 = "01f3jzb133z189sxdiz9qiy65p0bjqhynfllidbpxdr0cxkyyc1d"; + src = fetchurl { + url = "https://git.kernel.org/pub/scm/libs/libgpiod/libgpiod.git/snapshot/libgpiod-${version}.tar.gz"; + sha256 = "17qc2qbrnmaimxx9i3l30831hy890hp9s5a48iapni1dlr1z27p2"; }; buildInputs = [ kmod ]; @@ -20,7 +19,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--enable-tools=${if enable-tools then "yes" else "no"}" "--enable-bindings-cxx" - "--prefix=$(out)" + "--prefix=${placeholder ''out''}" ]; meta = with stdenv.lib; { From 133411863e7e2b3d5db45c3697c85e98164d817f Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 3 Aug 2019 12:13:26 -0700 Subject: [PATCH 1526/1611] pythonPackages.boltons: 2019-01-07 -> 19.1.0 --- pkgs/development/python-modules/boltons/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/boltons/default.nix b/pkgs/development/python-modules/boltons/default.nix index 655af7c66f2..b5aa9e6cf03 100644 --- a/pkgs/development/python-modules/boltons/default.nix +++ b/pkgs/development/python-modules/boltons/default.nix @@ -2,14 +2,14 @@ buildPythonPackage rec { pname = "boltons"; - version = "2019-01-07"; + version = "19.1.0"; # No tests in PyPi Tarball src = fetchFromGitHub { owner = "mahmoud"; repo = "boltons"; - rev = "3584ac9399f227a2a11b74153140ee171fd49783"; - sha256 = "13xngjw249sk4vmr5kqqnia0npw0kpa0gm020a4dqid0cjyvj0rv"; + rev = version; + sha256 = "0b55wly0ksviyl3a4dmih9vzd7bj3p10gr6la4722cs9cx4128q5"; }; checkInputs = [ pytest ]; From b7ecab3d179f53fe80da2af20d7ec6bf032a59a8 Mon Sep 17 00:00:00 2001 From: Edmund Wu Date: Sat, 3 Aug 2019 15:57:40 -0400 Subject: [PATCH 1527/1611] python3Packages.cairocffi: correct gdk-pixbuf substitution --- .../development/python-modules/cairocffi/dlopen-paths-0.9.patch | 2 +- pkgs/development/python-modules/cairocffi/dlopen-paths.patch | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch b/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch index a1018e6eb33..307cb428c07 100644 --- a/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch +++ b/pkgs/development/python-modules/cairocffi/dlopen-paths-0.9.patch @@ -19,7 +19,7 @@ index 718aa7f..1a1dcff 100644 + 'cairo': '@cairo@/lib/libcairo@ext@', + 'glib-2.0': '@glib@/lib/libglib-2.0@ext@', + 'gobject-2.0': '@glib@/lib/libgobject-2.0@ext@', -+ 'gdk-pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', ++ 'gdk_pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', +} -def dlopen(ffi, *names): diff --git a/pkgs/development/python-modules/cairocffi/dlopen-paths.patch b/pkgs/development/python-modules/cairocffi/dlopen-paths.patch index 9fd2832b323..10e2294981d 100644 --- a/pkgs/development/python-modules/cairocffi/dlopen-paths.patch +++ b/pkgs/development/python-modules/cairocffi/dlopen-paths.patch @@ -19,7 +19,7 @@ index 6061973..3538a58 100644 + 'cairo': '@cairo@/lib/libcairo@ext@', + 'glib-2.0': '@glib@/lib/libglib-2.0@ext@', + 'gobject-2.0': '@glib@/lib/libgobject-2.0@ext@', -+ 'gdk-pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', ++ 'gdk_pixbuf-2.0': '@gdk_pixbuf@/lib/libgdk_pixbuf-2.0@ext@', +} -def dlopen(ffi, *names): From 375d7ad859e20ad23833bd7969ff4fb105892c6a Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sat, 3 Aug 2019 16:49:16 -0400 Subject: [PATCH 1528/1611] typora: 0.9.72 -> 0.9.73 --- pkgs/applications/editors/typora/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/typora/default.nix b/pkgs/applications/editors/typora/default.nix index 157204ce1ca..7273b7252ca 100644 --- a/pkgs/applications/editors/typora/default.nix +++ b/pkgs/applications/editors/typora/default.nix @@ -1,12 +1,12 @@ -{ stdenv, fetchurl, makeWrapper, electron_3, dpkg, gtk3, glib, gsettings-desktop-schemas, wrapGAppsHook }: +{ stdenv, fetchurl, makeWrapper, electron_5, dpkg, gtk3, glib, gsettings-desktop-schemas, wrapGAppsHook }: stdenv.mkDerivation rec { pname = "typora"; - version = "0.9.72"; + version = "0.9.73"; src = fetchurl { url = "https://www.typora.io/linux/typora_${version}_amd64.deb"; - sha256 = "0q7fj77pr3ykpwgip87h12qxvpvlzs15mi9w3phqm3p9mmm9rlrs"; + sha256 = "1fgcb4bx5pw8ah5j30d38gw7qi1cmqarfhvgdns9f2n0d57bvvw3"; }; nativeBuildInputs = [ @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { ''; postFixup = '' - makeWrapper ${electron_3}/bin/electron $out/bin/typora \ + makeWrapper ${electron_5}/bin/electron $out/bin/typora \ --add-flags $out/share/typora \ "''${gappsWrapperArgs[@]}" \ --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}" @@ -50,6 +50,6 @@ stdenv.mkDerivation rec { homepage = https://typora.io; license = licenses.unfree; maintainers = with maintainers; [ jensbin worldofpeace ]; - inherit (electron_3.meta) platforms; + platforms = [ "x86_64-linux"]; }; } From 1f0253997cd54b2a399584878204316c87e211ea Mon Sep 17 00:00:00 2001 From: Thibaut Marty Date: Thu, 1 Aug 2019 18:56:06 +0200 Subject: [PATCH 1529/1611] urh: add support for Pluto, soundcards, and optionally USRP --- pkgs/applications/radio/urh/default.nix | 13 ++++++++----- pkgs/development/libraries/libiio/default.nix | 13 ++++++++++++- 2 files changed, 20 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/radio/urh/default.nix b/pkgs/applications/radio/urh/default.nix index 48c20ecca47..a1b92e7e4e1 100644 --- a/pkgs/applications/radio/urh/default.nix +++ b/pkgs/applications/radio/urh/default.nix @@ -1,5 +1,6 @@ -{ stdenv, fetchFromGitHub, python3Packages -, hackrf, rtl-sdr, airspy, limesuite }: +{ stdenv, lib, fetchFromGitHub, python3Packages +, hackrf, rtl-sdr, airspy, limesuite, libiio +, USRPSupport ? false, uhd }: python3Packages.buildPythonApplication rec { pname = "urh"; @@ -12,14 +13,16 @@ python3Packages.buildPythonApplication rec { sha256 = "1jrrj9c4ddm37m8j0g693xjimpnlvx7lan5kxish5p14xpwdak35"; }; - buildInputs = [ hackrf rtl-sdr airspy limesuite ]; + buildInputs = [ hackrf rtl-sdr airspy limesuite libiio ] + ++ lib.optional USRPSupport uhd; + propagatedBuildInputs = with python3Packages; [ - pyqt5 numpy psutil cython pyzmq + pyqt5 numpy psutil cython pyzmq pyaudio ]; doCheck = false; - meta = with stdenv.lib; { + meta = with lib; { homepage = "https://github.com/jopohl/urh"; description = "Universal Radio Hacker: investigate wireless protocols like a boss"; license = licenses.gpl3; diff --git a/pkgs/development/libraries/libiio/default.nix b/pkgs/development/libraries/libiio/default.nix index ee8029966dc..df5035461af 100644 --- a/pkgs/development/libraries/libiio/default.nix +++ b/pkgs/development/libraries/libiio/default.nix @@ -1,6 +1,7 @@ { stdenv, fetchFromGitHub , cmake, flex, bison , libxml2, python +, libusb1, runtimeShell }: stdenv.mkDerivation rec { @@ -17,7 +18,17 @@ stdenv.mkDerivation rec { outputs = [ "out" "lib" "dev" "python" ]; nativeBuildInputs = [ cmake flex bison ]; - buildInputs = [ libxml2 ]; + buildInputs = [ libxml2 libusb1 ]; + + postPatch = '' + substituteInPlace libiio.rules.cmakein \ + --replace /bin/sh ${runtimeShell} + ''; + + # since we can't expand $out in cmakeFlags + preConfigure = '' + cmakeFlags="$cmakeFlags -DUDEV_RULES_INSTALL_DIR=$out/etc/udev/rules.d" + ''; postInstall = '' mkdir -p $python/lib/${python.libPrefix}/site-packages/ From dc55912d73076bfb2a287ca90919f2d7d903597f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 14:35:28 -0700 Subject: [PATCH 1530/1611] bind: 9.14.3 -> 9.14.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bind/versions --- pkgs/servers/dns/bind/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/dns/bind/default.nix b/pkgs/servers/dns/bind/default.nix index 4c4a45cca79..74d0d1341d6 100644 --- a/pkgs/servers/dns/bind/default.nix +++ b/pkgs/servers/dns/bind/default.nix @@ -8,14 +8,14 @@ assert enableSeccomp -> libseccomp != null; assert enablePython -> python3 != null; -let version = "9.14.3"; in +let version = "9.14.4"; in stdenv.mkDerivation rec { name = "bind-${version}"; src = fetchurl { url = "https://ftp.isc.org/isc/bind9/${version}/${name}.tar.gz"; - sha256 = "1ymxr38c62w6961j8g2vllnv0s72z7zk4b2j2k8ixdh1rymqm1yf"; + sha256 = "0gxqws7ml15lwkjw9mdcd759gv5kk3s9m17j3vrp9448ls1gnbii"; }; outputs = [ "out" "lib" "dev" "man" "dnsutils" "host" ]; From c1e4dd89153b40d94b8782ab57536c4614e059c9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 14:46:30 -0700 Subject: [PATCH 1531/1611] birdfont: 2.26.0 -> 2.27.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/birdfont/versions --- pkgs/tools/misc/birdfont/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/birdfont/default.nix b/pkgs/tools/misc/birdfont/default.nix index 56e7650673e..092c83114e7 100644 --- a/pkgs/tools/misc/birdfont/default.nix +++ b/pkgs/tools/misc/birdfont/default.nix @@ -4,11 +4,11 @@ gobject-introspection, gsettings-desktop-schemas, wrapGAppsHook }: stdenv.mkDerivation rec { pname = "birdfont"; - version = "2.26.0"; + version = "2.27.0"; src = fetchurl { url = "https://birdfont.org/releases/${pname}-${version}.tar.xz"; - sha256 = "0lcbwmwfb18dpr5kpnrl2zx59jhvj7k7vzjld51zv0zhcvl9fg3j"; + sha256 = "0dr2cnvq30wak0j2k8089is7fvhw0ppwkfrrw1m649s2b95wav3q"; }; nativeBuildInputs = [ python3 pkgconfig vala gobject-introspection wrapGAppsHook ]; From 5cae05ecf8ca4979b299e41a11195e9d4df5748f Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Aug 2019 16:20:00 -0500 Subject: [PATCH 1532/1611] pythonPackages.grpcio: 1.18.0 -> 1.22.0 --- .../python-modules/grpcio/default.nix | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/pkgs/development/python-modules/grpcio/default.nix b/pkgs/development/python-modules/grpcio/default.nix index 9d8814e6531..5c85dd34357 100644 --- a/pkgs/development/python-modules/grpcio/default.nix +++ b/pkgs/development/python-modules/grpcio/default.nix @@ -1,32 +1,30 @@ -{ stdenv, buildPythonPackage, fetchFromGitHub, lib, darwin -, six, protobuf, enum34, futures, isPy27, isPy34, pkgconfig +{ stdenv, buildPythonPackage, fetchFromGitHub, darwin +, six, protobuf, enum34, futures, isPy27, pkgconfig , cython}: -with stdenv.lib; buildPythonPackage rec { pname = "grpcio"; - version = "1.18.0"; + version = "1.22.0"; src = fetchFromGitHub { owner = "grpc"; repo = "grpc"; rev = "v${version}"; fetchSubmodules = true; - sha256 = "0cilbhk35gv46mk40jl5f3iqa94x14qyxbavpfq0kh0rld82nx4m"; + sha256 = "093w8mgvl8ylqlqnfz06ijkmlnkxcjszf9zg6k5ybjw7dwal0jhz"; }; nativeBuildInputs = [ cython pkgconfig ] - ++ optional stdenv.isDarwin darwin.cctools; + ++ stdenv.lib.optional stdenv.isDarwin darwin.cctools; propagatedBuildInputs = [ six protobuf ] - ++ lib.optionals (isPy27 || isPy34) [ enum34 ] - ++ lib.optionals (isPy27) [ futures ]; + ++ stdenv.lib.optionals (isPy27) [ enum34 futures ]; - preBuild = optionalString stdenv.isDarwin "unset AR"; + preBuild = stdenv.lib.optionalString stdenv.isDarwin "unset AR"; meta = with stdenv.lib; { description = "HTTP/2-based RPC framework"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://grpc.io/grpc/python/"; maintainers = with maintainers; [ vanschelven ]; }; From 368d8bb02e953cc6845a50c71ee6ce4c9432b840 Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Sat, 3 Aug 2019 16:21:00 -0500 Subject: [PATCH 1533/1611] pythonPackages.grpcio-tools: 1.18.0 -> 1.22.0 --- .../python-modules/grpcio-tools/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/grpcio-tools/default.nix b/pkgs/development/python-modules/grpcio-tools/default.nix index f16a5800bb4..9355db763dc 100644 --- a/pkgs/development/python-modules/grpcio-tools/default.nix +++ b/pkgs/development/python-modules/grpcio-tools/default.nix @@ -1,24 +1,24 @@ -{ stdenv, buildPythonPackage, fetchPypi, lib, grpcio}: +{ stdenv, buildPythonPackage, fetchPypi, protobuf, grpcio }: buildPythonPackage rec { pname = "grpcio-tools"; - version = "1.18.0"; + version = "1.22.0"; src = fetchPypi { inherit pname version; - sha256 = "77ec4d3c92ccbbe3de37c457e3c72962e519c36cafb96abe5842bced8eb926fa"; + sha256 = "b5c0fe51a155625c9d1132ab8deb56b3015e111a6961e48aeb9dd89bd7c670ab"; }; enableParallelBuilding = true; - propagatedBuildInputs = [ grpcio ]; + propagatedBuildInputs = [ protobuf grpcio ]; # no tests in the package doCheck = false; meta = with stdenv.lib; { description = "Protobuf code generator for gRPC"; - license = lib.licenses.asl20; + license = licenses.asl20; homepage = "https://grpc.io/grpc/python/"; maintainers = with maintainers; [ vanschelven ]; }; From 2982050af19e99cb4ce574399b0a193bb86cbfcc Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 15:29:04 -0700 Subject: [PATCH 1534/1611] armadillo: 9.600.4 -> 9.600.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/armadillo/versions --- pkgs/development/libraries/armadillo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/armadillo/default.nix b/pkgs/development/libraries/armadillo/default.nix index 6619235ab82..f2b038aa379 100644 --- a/pkgs/development/libraries/armadillo/default.nix +++ b/pkgs/development/libraries/armadillo/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, cmake, openblasCompat, superlu, hdf5 }: stdenv.mkDerivation rec { - version = "9.600.4"; + version = "9.600.5"; name = "armadillo-${version}"; src = fetchurl { url = "mirror://sourceforge/arma/armadillo-${version}.tar.xz"; - sha256 = "1gph9acmk8wqs6n00csvbs94rh153y7ml0w2zlbk9ia8xbgbdbbx"; + sha256 = "1gy2rb3klvzx833851qgsbh5k1ds5zffwk0rmy1k8b1g51jdd76x"; }; nativeBuildInputs = [ cmake ]; From 6e993e3fbc2d3a51cb1658de588d02d3c8c70a4e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 15:42:09 -0700 Subject: [PATCH 1535/1611] babeld: 1.8.4 -> 1.8.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/babeld/versions --- pkgs/tools/networking/babeld/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/babeld/default.nix b/pkgs/tools/networking/babeld/default.nix index 7dfc8e9d7ad..ce372f6b752 100644 --- a/pkgs/tools/networking/babeld/default.nix +++ b/pkgs/tools/networking/babeld/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "babeld-1.8.4"; + name = "babeld-1.8.5"; src = fetchurl { url = "http://www.pps.univ-paris-diderot.fr/~jch/software/files/${name}.tar.gz"; - sha256 = "11wbs1x17lr7jk2578zwy3cdwc6zhxwv97nnp13z14613320s1wq"; + sha256 = "1i2v7npl9aykq8d6zhkinqnbdpqx5x910dqkrv30fib0fp19jb90"; }; preBuild = '' From 1f2189861c9f766a69c3ae8206d060d1468854b3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 15:51:13 -0700 Subject: [PATCH 1536/1611] batctl: 2019.2 -> 2019.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/batctl/versions --- pkgs/os-specific/linux/batman-adv/batctl.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/batman-adv/batctl.nix b/pkgs/os-specific/linux/batman-adv/batctl.nix index 58c6a7167e3..537010dea53 100644 --- a/pkgs/os-specific/linux/batman-adv/batctl.nix +++ b/pkgs/os-specific/linux/batman-adv/batctl.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, pkgconfig, libnl }: let - ver = "2019.2"; + ver = "2019.3"; in stdenv.mkDerivation rec { name = "batctl-${ver}"; src = fetchurl { url = "https://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz"; - sha256 = "18qfz209pyksklcnrgvw6hm30iw7dng0rxi2njqxhk3xzw464rgv"; + sha256 = "0307a01n72kg7vcm60mi8jna6bydiin2cr3ylrixra1596hkzn9b"; }; nativeBuildInputs = [ pkgconfig ]; From d8c7ac87140f7045aead3f871c0f30b1f273cc5c Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 15:53:50 -0700 Subject: [PATCH 1537/1611] bear: 2.4.0 -> 2.4.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/bear/versions --- pkgs/development/tools/build-managers/bear/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/build-managers/bear/default.nix b/pkgs/development/tools/build-managers/bear/default.nix index 5999525def0..ea8ee1f8496 100644 --- a/pkgs/development/tools/build-managers/bear/default.nix +++ b/pkgs/development/tools/build-managers/bear/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "bear-${version}"; - version = "2.4.0"; + version = "2.4.1"; src = fetchFromGitHub { owner = "rizsotto"; repo = "Bear"; rev = version; - sha256 = "0r5mhacn8v4b2kjni91nxh3b6g86cbkrnlk4f6sj4mdrvx25dp39"; + sha256 = "0fqhhavyz9ddjc3wgb2ng47bfgk1q4w5bwah74nsa02k8r22pbch"; }; nativeBuildInputs = [ cmake ]; From d10e05108bfbde35b9e0217a8d43b05e106468fe Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 16:00:22 -0700 Subject: [PATCH 1538/1611] checkstyle: 8.22 -> 8.23 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/checkstyle/versions --- pkgs/development/tools/analysis/checkstyle/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/analysis/checkstyle/default.nix b/pkgs/development/tools/analysis/checkstyle/default.nix index a1dfd91c29f..95f5a418a61 100644 --- a/pkgs/development/tools/analysis/checkstyle/default.nix +++ b/pkgs/development/tools/analysis/checkstyle/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre }: stdenv.mkDerivation rec { - version = "8.22"; + version = "8.23"; name = "checkstyle-${version}"; src = fetchurl { url = "https://github.com/checkstyle/checkstyle/releases/download/checkstyle-${version}/checkstyle-${version}-all.jar"; - sha256 = "0lnpzh4c5m8xkdx8dxywp33i3zrnwj1nhgpqnqgx31aw3x0drw40"; + sha256 = "0k161c687q33rlm4r8h3f0ks5p2w8pj6kh258zdzk8kjfigfxkmx"; }; nativeBuildInputs = [ makeWrapper ]; From bd9c8e48be85f63aff2c35c94794f3b55e5bbb21 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 16:21:43 -0700 Subject: [PATCH 1539/1611] claws-mail: 3.17.3 -> 3.17.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/claws-mail/versions --- .../networking/mailreaders/claws-mail/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/claws-mail/default.nix b/pkgs/applications/networking/mailreaders/claws-mail/default.nix index 42f29574eef..bb4c6c54f16 100644 --- a/pkgs/applications/networking/mailreaders/claws-mail/default.nix +++ b/pkgs/applications/networking/mailreaders/claws-mail/default.nix @@ -31,11 +31,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "claws-mail-${version}"; - version = "3.17.3"; + version = "3.17.4"; src = fetchurl { url = "http://www.claws-mail.org/download.php?file=releases/claws-mail-${version}.tar.xz"; - sha256 = "1wnj6c9cbmhphs2l6wfvndkk2g08rmxw0sl2c8k1k008dxd1ykjh"; + sha256 = "00mfhaac16sv67rwiq98hr4nl5zmd1h2afswwwksdcsi3q9x23jr"; }; outputs = [ "out" "dev" ]; From 7ac8906e82a2ef6da5ed7d6895aae39460ed755f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 16:49:22 -0700 Subject: [PATCH 1540/1611] confluent-platform: 5.2.1 -> 5.3.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/confluent-platform/versions --- pkgs/servers/confluent-platform/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/confluent-platform/default.nix b/pkgs/servers/confluent-platform/default.nix index 34950228920..b29f6eba12e 100644 --- a/pkgs/servers/confluent-platform/default.nix +++ b/pkgs/servers/confluent-platform/default.nix @@ -5,11 +5,11 @@ let in stdenv.mkDerivation rec { name = "confluent-platform-${version}"; - version = "5.2.1"; + version = "5.3.0"; src = fetchurl { url = "http://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}-${scalaVersion}.tar.gz"; - sha256 = "11fdcc557aca782e87352ed6e655c37c71fb7b3a003796ee956970b01dedbbb1"; + sha256 = "14cilq63fib5yvj40504aj6wssi7xw4f7c2jadlzdmdxzh4ixqmp"; }; buildInputs = [ jre makeWrapper bash ]; From 5fe6fe90787fba696ba4fbe874e56f989b77b9d1 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 20:45:40 -0700 Subject: [PATCH 1541/1611] cimg: 2.6.6 -> 2.6.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cimg/versions --- pkgs/development/libraries/cimg/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/cimg/default.nix b/pkgs/development/libraries/cimg/default.nix index 89dd2b44338..bab0a84ca79 100644 --- a/pkgs/development/libraries/cimg/default.nix +++ b/pkgs/development/libraries/cimg/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "cimg-${version}"; - version = "2.6.6"; + version = "2.6.7"; src = fetchurl { url = "http://cimg.eu/files/CImg_${version}.zip"; - sha256 = "06a6qgs7q79asfbfp615h5iin23y7g8y1achnmsp3rpkikssskzv"; + sha256 = "1jjsyq6ljpprak8l76aym1p28j9y7djxl73pdh1kpkw85ac23h6m"; }; nativeBuildInputs = [ unzip ]; From e955860a080fcbfc6038cd1c890add3dc0038689 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 21:26:49 -0700 Subject: [PATCH 1542/1611] cfr: 0.145 -> 0.146 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/cfr/versions --- pkgs/development/tools/java/cfr/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/java/cfr/default.nix b/pkgs/development/tools/java/cfr/default.nix index aa47ed1186c..1f0d8f28609 100644 --- a/pkgs/development/tools/java/cfr/default.nix +++ b/pkgs/development/tools/java/cfr/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "cfr-${version}"; - version = "0.145"; + version = "0.146"; src = fetchurl { url = "http://www.benf.org/other/cfr/cfr_${version}.jar"; - sha256 = "0xv2v9z9xwym5m7h6bkvcmdgsa9lmkvsl77vk3aykgbzxywh7xqv"; + sha256 = "16pmn3shhb00x3ba2zazbkprwvc34a6dds8ghc53winbf371xi3c"; }; nativeBuildInputs = [ makeWrapper ]; From c5ec1b12af27647f2d6adc6f311eb6e81e02f092 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 22:26:24 -0700 Subject: [PATCH 1543/1611] epiphany: 3.32.3 -> 3.32.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/epiphany/versions --- pkgs/desktops/gnome-3/core/epiphany/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/core/epiphany/default.nix b/pkgs/desktops/gnome-3/core/epiphany/default.nix index 776da94242f..7b7b7f64aa4 100644 --- a/pkgs/desktops/gnome-3/core/epiphany/default.nix +++ b/pkgs/desktops/gnome-3/core/epiphany/default.nix @@ -6,11 +6,11 @@ stdenv.mkDerivation rec { name = "epiphany-${version}"; - version = "3.32.3"; + version = "3.32.4"; src = fetchurl { url = "mirror://gnome/sources/epiphany/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; - sha256 = "0gx386k1p78ppjhvdanv99hfiwana0ccn9d499qrp0rvlicnijrw"; + sha256 = "15d9s295yr6m9pbwh344c4akm7rgn19y4g1xkyn7gbq1hdbjia69"; }; # Tests need an X display From ea9bff4c0c82a61374fdc3aca81e00b8456b7398 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 22:38:20 -0700 Subject: [PATCH 1544/1611] eagle: 9.4.1 -> 9.4.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/eagle/versions --- pkgs/applications/science/electronics/eagle/eagle.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/electronics/eagle/eagle.nix b/pkgs/applications/science/electronics/eagle/eagle.nix index 90b7db4b545..ba1b9e174be 100644 --- a/pkgs/applications/science/electronics/eagle/eagle.nix +++ b/pkgs/applications/science/electronics/eagle/eagle.nix @@ -13,11 +13,11 @@ let in stdenv.mkDerivation rec { name = "eagle-${version}"; - version = "9.4.1"; + version = "9.4.2"; src = fetchurl { url = "https://eagle-updates.circuits.io/downloads/${builtins.replaceStrings ["."] ["_"] version}/Autodesk_EAGLE_${version}_English_Linux_64bit.tar.gz"; - sha256 = "0p3kxryvk853rx24phcadvmqn6f37rnnql8sf6cqn9cqhrrkbvlq"; + sha256 = "0lrwrvqcb91mcggmicvwjrngccsdy0f06l7a8nfgp9ckn4d9vmg2"; }; desktopItem = makeDesktopItem { From f11e4fd747f553b2ac24666a178fb0fbe490dbad Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 21:49:11 -0700 Subject: [PATCH 1545/1611] flexget: 2.21.8 -> 2.21.15 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/flexget/versions --- pkgs/applications/networking/flexget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/flexget/default.nix b/pkgs/applications/networking/flexget/default.nix index 1833e641a07..f990f8de529 100644 --- a/pkgs/applications/networking/flexget/default.nix +++ b/pkgs/applications/networking/flexget/default.nix @@ -24,11 +24,11 @@ with python'.pkgs; buildPythonApplication rec { pname = "FlexGet"; - version = "2.21.8"; + version = "2.21.15"; src = fetchPypi { inherit pname version; - sha256 = "0a3dz013xxlwxz94i243bahw15k5y45mgk0z1zgkp1xrbiwglwvc"; + sha256 = "0p1pa5l9apd40mdlgzp9vfpd8x9laqiah2i8l3q9m6nnibk1ipx8"; }; postPatch = '' From 6ff56d7f01ef7fc25039d2a9ee0b011772d4143e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 01:00:30 -0700 Subject: [PATCH 1546/1611] pantheon.elementary-files: 4.1.8 -> 4.1.9 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/elementary-files/versions --- pkgs/desktops/pantheon/apps/elementary-files/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/apps/elementary-files/default.nix b/pkgs/desktops/pantheon/apps/elementary-files/default.nix index 99c7afffe7a..ad4cfa86c27 100644 --- a/pkgs/desktops/pantheon/apps/elementary-files/default.nix +++ b/pkgs/desktops/pantheon/apps/elementary-files/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { pname = "files"; - version = "4.1.8"; + version = "4.1.9"; name = "elementary-${pname}-${version}"; @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { owner = "elementary"; repo = pname; rev = version; - sha256 = "1frslwbqnv3mwv5dpb1sbhxnwl87cps2ambkkhnn9wwckjpm7p8f"; + sha256 = "12p1li9a7kqdlgkq20svaly5kr661ww93qngaiic6zv1bdw2bpmv"; }; passthru = { From ebf4126d8b137dd6ea08813bb61ee71ac4d79ba1 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 4 Aug 2019 04:04:49 -0400 Subject: [PATCH 1547/1611] pantheon.elementary-gtk-theme: 5.2.4 -> 5.2.5 https://github.com/elementary/stylesheet/releases/tag/5.2.5 --- .../pantheon/artwork/elementary-gtk-theme/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix b/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix index 1ce18a1ec40..e30252bb71c 100644 --- a/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix +++ b/pkgs/desktops/pantheon/artwork/elementary-gtk-theme/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { pname = "stylesheet"; - version = "5.2.4"; + version = "5.2.5"; name = "elementary-gtk-theme-${version}"; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { owner = "elementary"; repo = pname; rev = version; - sha256 = "1zhh9s4bmmk69k6j0klvfjmyv32wnwf0g575brm6gswn47nr2fni"; + sha256 = "0934rfdwkn4315mhayzba8a3b6i1xczp66gl6n45hh5c81gb2p65"; }; passthru = { From d03c72cf43aaff2ff4fb1ab222906b0e9d935def Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 4 Aug 2019 05:08:33 -0400 Subject: [PATCH 1548/1611] wire-desktop: add a proper throw --- .../networking/instant-messengers/wire-desktop/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix index 69b8ae9ee0c..10b7eb7d439 100644 --- a/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/wire-desktop/default.nix @@ -13,17 +13,19 @@ let inherit (stdenv.hostPlatform) system; + throwSystem = throw "Unsupported system: ${system}"; + pname = "wire-desktop"; version = { "x86_64-linux" = "3.9.2895"; "x86_64-darwin" = "3.9.2943"; - }.${system} or ""; + }.${system} or throwSystem; sha256 = { "x86_64-linux" = "0wrn95m64j4b7ym44h9zawq13kg4m12aixlyyzp56bfyczmjq4a5"; "x86_64-darwin" = "1y1bzsjmjrj518q29xfx6gg1nhdbaz7y5hzaqrp241az6plp090k"; - }.${system}; + }.${system} or throwSystem; meta = with stdenv.lib; { description = "A modern, secure messenger for everyone"; From a9d9fea4b7b76c469daa41628434b4773e2f34ab Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 02:14:01 -0700 Subject: [PATCH 1549/1611] digikam: 6.1.0 -> 6.2.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/digikam/versions --- pkgs/applications/graphics/digikam/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index cf2376b3733..f0f90a71cd5 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -52,13 +52,13 @@ mkDerivation rec { pname = "digikam"; - version = "6.1.0"; + version = "6.2.0"; src = fetchFromGitHub { owner = "KDE"; repo = "digikam"; rev = "v${version}"; - sha256 = "0h0jqfgpanhxfi3r7cgip58ppypqx79z6c5jj7i7f19hp2zziip8"; + sha256 = "1l1nb1nwicmip2jxhn5gzr7h60igvns0zs3kzp36r6qf4wvg3v2z"; }; nativeBuildInputs = [ cmake doxygen extra-cmake-modules kdoctools wrapGAppsHook ]; From cfe25d8a6464093780048ca3d7796d6b5cd3d61a Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 02:22:28 -0700 Subject: [PATCH 1550/1611] gkrellm: 2.3.10 -> 2.3.11 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gkrellm/versions --- pkgs/applications/misc/gkrellm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/gkrellm/default.nix b/pkgs/applications/misc/gkrellm/default.nix index b4fac899f66..f44cdd0bad7 100644 --- a/pkgs/applications/misc/gkrellm/default.nix +++ b/pkgs/applications/misc/gkrellm/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "gkrellm-2.3.10"; + name = "gkrellm-2.3.11"; src = fetchurl { url = "http://gkrellm.srcbox.net/releases/${name}.tar.bz2"; - sha256 = "0rnpzjr0ys0ypm078y63q4aplcgdr5nshjzhmz330n6dmnxci7lb"; + sha256 = "01lccz4fga40isv09j8rjgr0qy10rff9vj042n6gi6gdv4z69q0y"; }; nativeBuildInputs = [ pkgconfig which ]; From bdb37efc6f7679bf24d24b10504b6eb2d4981ae3 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 02:34:15 -0700 Subject: [PATCH 1551/1611] freeswitch: 1.8.5 -> 1.8.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/freeswitch/versions --- pkgs/servers/sip/freeswitch/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/sip/freeswitch/default.nix b/pkgs/servers/sip/freeswitch/default.nix index c37eaad2f7f..a55d1cf14cd 100644 --- a/pkgs/servers/sip/freeswitch/default.nix +++ b/pkgs/servers/sip/freeswitch/default.nix @@ -1,6 +1,6 @@ let -# the default list from v1.8.5, except with applications/mod_signalwire also disabled +# the default list from v1.8.7, except with applications/mod_signalwire also disabled defaultModules = mods: with mods; [ applications.commands applications.conference @@ -86,11 +86,11 @@ modulesConf = let in stdenv.mkDerivation rec { - name = "freeswitch-1.8.5"; + name = "freeswitch-1.8.7"; src = fetchurl { url = "https://files.freeswitch.org/freeswitch-releases/${name}.tar.bz2"; - sha256 = "00xdrx84pw2v5pw1r5gfbb77nmvlfj275pmd48yfrc9g8c91j1sr"; + sha256 = "0k52mxdfc5w9fdnz8kvfjiwnnjjhnpkirnyrfkhq7bad84m731z4"; }; postPatch = '' patchShebangs libs/libvpx/build/make/rtcd.pl From 60358cdd9e83d49d4f9f34b2e239bfcaa3d5297b Mon Sep 17 00:00:00 2001 From: David Meister Date: Sun, 4 Aug 2019 19:37:12 +1000 Subject: [PATCH 1552/1611] ledger-live-desktop: init at 1.12.0 (#62753) --- .../altcoins/ledger-live-desktop/default.nix | 50 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 52 insertions(+) create mode 100644 pkgs/applications/altcoins/ledger-live-desktop/default.nix diff --git a/pkgs/applications/altcoins/ledger-live-desktop/default.nix b/pkgs/applications/altcoins/ledger-live-desktop/default.nix new file mode 100644 index 00000000000..0417d2913de --- /dev/null +++ b/pkgs/applications/altcoins/ledger-live-desktop/default.nix @@ -0,0 +1,50 @@ +{ stdenv, fetchurl, makeDesktopItem, makeWrapper, appimage-run }: + +stdenv.mkDerivation rec { + pname = "ledger-live-desktop"; + version = "1.12.0"; + + src = fetchurl { + url = "https://github.com/LedgerHQ/${pname}/releases/download/v${version}/${pname}-${version}-linux-x86_64.AppImage"; + sha256 = "0sn0ri8kqvy36d6vjwsb0mh54nwic58416m6q5drl1schsn6wyvj"; + }; + + nativeBuildInputs = [ makeWrapper ]; + buildInputs = [ appimage-run ]; + + desktopIcon = fetchurl { + url = "https://raw.githubusercontent.com/LedgerHQ/${pname}/v${version}/build/icon.png"; + sha256 = "1mmfaf0yk7xf1kgbs3ka8wsbz1qgh60xj6z91ica1i7lw2qbdd5h"; + }; + + desktopItem = makeDesktopItem { + name = pname; + exec = "${placeholder "out"}/bin/${pname}"; + icon = pname; + desktopName = "Ledger Live"; + categories = "Utility;"; + }; + + unpackPhase = ":"; + + installPhase = '' + runHook preInstall + + ${desktopItem.buildCommand} + install -D $src $out/share/${src.name} + install -Dm -x ${desktopIcon} \ + $out/share/icons/hicolor/1024x1024/apps/${pname}.png + makeWrapper ${appimage-run}/bin/appimage-run $out/bin/${pname} \ + --add-flags $out/share/${src.name} + + runHook postInstall + ''; + + meta = with stdenv.lib; { + description = "Wallet app for Ledger Nano S and Ledger Blue"; + homepage = "https://www.ledger.com/live"; + license = licenses.mit; + maintainers = with maintainers; [ thedavidmeister ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 98004a6ce8c..09d7c8f91de 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4387,6 +4387,8 @@ in leatherman = callPackage ../development/libraries/leatherman { }; + ledger-live-desktop = callPackage ../applications/altcoins/ledger-live-desktop { }; + ledmon = callPackage ../tools/system/ledmon { }; leela = callPackage ../tools/graphics/leela { }; From 9e2a710117d4ed705e05243dd740586e558d1899 Mon Sep 17 00:00:00 2001 From: bake Date: Sat, 22 Jun 2019 19:18:51 +0200 Subject: [PATCH 1553/1611] nixos/gitolite: dataDir group-readable --- nixos/modules/services/misc/gitolite.nix | 29 ++++++++++++++++-------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/nixos/modules/services/misc/gitolite.nix b/nixos/modules/services/misc/gitolite.nix index c7f2a168f8a..cbe2c06ab65 100644 --- a/nixos/modules/services/misc/gitolite.nix +++ b/nixos/modules/services/misc/gitolite.nix @@ -143,21 +143,37 @@ in users.users.${cfg.user} = { description = "Gitolite user"; home = cfg.dataDir; - createHome = true; uid = config.ids.uids.gitolite; group = cfg.group; useDefaultShell = true; }; users.groups."${cfg.group}".gid = config.ids.gids.gitolite; + systemd.tmpfiles.rules = [ + "d '${cfg.dataDir}' 0750 ${cfg.user} ${cfg.group} - -" + "d '${cfg.dataDir}'/.gitolite - ${cfg.user} ${cfg.group} - -" + "d '${cfg.dataDir}'/.gitolite/logs - ${cfg.user} ${cfg.group} - -" + + "Z ${cfg.dataDir} 0750 ${cfg.user} ${cfg.group} - -" + ]; + systemd.services."gitolite-init" = { description = "Gitolite initialization"; wantedBy = [ "multi-user.target" ]; unitConfig.RequiresMountsFor = cfg.dataDir; - serviceConfig.User = "${cfg.user}"; - serviceConfig.Type = "oneshot"; - serviceConfig.RemainAfterExit = true; + environment = { + GITOLITE_RC = ".gitolite.rc"; + GITOLITE_RC_DEFAULT = "${rcDir}/gitolite.rc.default"; + }; + + serviceConfig = { + Type = "oneshot"; + User = cfg.user; + Group = cfg.group; + WorkingDirectory = "~"; + RemainAfterExit = true; + }; path = [ pkgs.gitolite pkgs.git pkgs.perl pkgs.bash pkgs.diffutils config.programs.ssh.package ]; script = @@ -187,11 +203,6 @@ in ''; in '' - cd ${cfg.dataDir} - mkdir -p .gitolite/logs - - GITOLITE_RC=.gitolite.rc - GITOLITE_RC_DEFAULT=${rcDir}/gitolite.rc.default if ( [[ ! -e "$GITOLITE_RC" ]] && [[ ! -L "$GITOLITE_RC" ]] ) || ( [[ -f "$GITOLITE_RC" ]] && diff -q "$GITOLITE_RC" "$GITOLITE_RC_DEFAULT" >/dev/null ) || ( [[ -L "$GITOLITE_RC" ]] && [[ "$(readlink "$GITOLITE_RC")" =~ ^/nix/store/ ]] ) From e2007a9e3bfb587cabaeed29f6634f5274706e50 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 03:00:33 -0700 Subject: [PATCH 1554/1611] gallery-dl: 1.8.6 -> 1.10.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gallery_dl/versions --- pkgs/applications/misc/gallery-dl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/gallery-dl/default.nix b/pkgs/applications/misc/gallery-dl/default.nix index cb04be4b6ea..1ce9bfb1f67 100644 --- a/pkgs/applications/misc/gallery-dl/default.nix +++ b/pkgs/applications/misc/gallery-dl/default.nix @@ -2,11 +2,11 @@ python3Packages.buildPythonApplication rec { pname = "gallery_dl"; - version = "1.8.6"; + version = "1.10.1"; src = python3Packages.fetchPypi { inherit pname version; - sha256 = "0in47v6c82a6mqg4wzxrji7wd8a9qh5386rsr77s3a8613am1n2x"; + sha256 = "174d2q7w0kwa6xx9k3bl5gdwmk0gklvch963g7vl979wqsf7nskw"; }; doCheck = false; From 0680b8f1a75b2a6605f987527f756c2e79ac0489 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 03:06:01 -0700 Subject: [PATCH 1555/1611] go-protobuf: 1.3.1 -> 1.3.2 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/go-protobuf/versions --- pkgs/development/tools/go-protobuf/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/go-protobuf/default.nix b/pkgs/development/tools/go-protobuf/default.nix index e64d61478e6..f818569dd00 100644 --- a/pkgs/development/tools/go-protobuf/default.nix +++ b/pkgs/development/tools/go-protobuf/default.nix @@ -2,13 +2,13 @@ buildGoModule rec { name = "go-protobuf-${version}"; - version = "1.3.1"; + version = "1.3.2"; src = fetchFromGitHub { owner = "golang"; repo = "protobuf"; rev = "v${version}"; - sha256 = "15am4s4646qy6iv0g3kkqq52rzykqjhm4bf08dk0fy2r58knpsyl"; + sha256 = "1k1wb4zr0qbwgpvz9q5ws9zhlal8hq7dmq62pwxxriksayl6hzym"; }; modSha256 = "0sjjj9z1dhilhpc8pq4154czrb79z9cm044jvn75kxcjv6v5l2m5"; From 06c777026cd80595976851460bc28b38fac82e3f Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Sun, 4 Aug 2019 06:18:09 -0400 Subject: [PATCH 1556/1611] openjpeg: disable tests for aarch64 linux Fails on hydra https://hydra.nixos.org/build/98332124 --- pkgs/development/libraries/openjpeg/generic.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/openjpeg/generic.nix b/pkgs/development/libraries/openjpeg/generic.nix index 9cd645ed1d4..e26f4160921 100644 --- a/pkgs/development/libraries/openjpeg/generic.nix +++ b/pkgs/development/libraries/openjpeg/generic.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libpng libtiff lcms2 ]; - doCheck = testsSupport; + doCheck = (testsSupport && !stdenv.isAarch64); # tests fail on aarch64-linux checkPhase = '' substituteInPlace ../tools/ctest_scripts/travis-ci.cmake \ --replace "JPYLYZER_EXECUTABLE=" "JPYLYZER_EXECUTABLE=\"${jpylyzer}/bin/jpylyzer\" # " From 558cdf0e11247f69585234e057deb22166e63793 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sun, 4 Aug 2019 12:20:16 +0200 Subject: [PATCH 1557/1611] vault-bin: use sourceRoot instead of custom unpackPhase --- pkgs/tools/security/vault/vault-bin.nix | 42 +++++++++++-------------- 1 file changed, 19 insertions(+), 23 deletions(-) diff --git a/pkgs/tools/security/vault/vault-bin.nix b/pkgs/tools/security/vault/vault-bin.nix index 7befface3b5..b58e41d850d 100644 --- a/pkgs/tools/security/vault/vault-bin.nix +++ b/pkgs/tools/security/vault/vault-bin.nix @@ -1,12 +1,10 @@ { stdenv, fetchurl, unzip }: let - version = "1.1.3"; + sources = let - base = "https://releases.hashicorp.com/vault/${version}"; - in { "x86_64-linux" = fetchurl { url = "${base}/vault_${version}_linux_amd64.zip"; @@ -30,28 +28,26 @@ let }; }; -in - stdenv.mkDerivation { +in stdenv.mkDerivation { + name = "vault-bin-${version}"; - src = sources."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}"); + src = sources."${stdenv.hostPlatform.system}" or (throw "unsupported system: ${stdenv.hostPlatform.system}"); - name = "vault-bin-${version}"; + nativeBuildInputs = [ unzip ]; - nativeBuildInputs = [ unzip ]; + sourceRoot = "."; - unpackPhase = "unzip $src -d vault"; + installPhase = '' + mkdir -p $out/bin $out/share/bash-completion/completions + mv vault $out/bin + echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault + ''; - installPhase = '' - mkdir -p $out/bin $out/share/bash-completion/completions - mv vault/vault $out/bin - echo "complete -C $out/bin/vault vault" > $out/share/bash-completion/completions/vault - ''; - - meta = with stdenv.lib; { - homepage = https://www.vaultproject.io; - description = "A tool for managing secrets, this binary includes the UI"; - platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "i686-darwin" ]; - license = licenses.mpl20; - maintainers = with maintainers; [ offline psyanticy ]; - }; - } \ No newline at end of file + meta = with stdenv.lib; { + homepage = https://www.vaultproject.io; + description = "A tool for managing secrets, this binary includes the UI"; + platforms = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" "i686-darwin" ]; + license = licenses.mpl20; + maintainers = with maintainers; [ offline psyanticy ]; + }; +} From f9ed3a6754fb54d7238a95da48eeb6d409f331e8 Mon Sep 17 00:00:00 2001 From: Emmanuel Rosa Date: Wed, 17 Jul 2019 16:20:06 +0700 Subject: [PATCH 1558/1611] qutebrowser: add wrapQtAppsHook This commit fixes the error: Could not find the Qt platform plugin "xcb" in "" Closes #65895 --- .../networking/browsers/qutebrowser/default.nix | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 5283d2e3c5d..e247fd4a45c 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, fetchurl, fetchzip, python3Packages -, makeWrapper, wrapGAppsHook, qtbase, glib-networking +, mkDerivationWith, wrapQtAppsHook, wrapGAppsHook, qtbase, glib-networking , asciidoc, docbook_xml_dtd_45, docbook_xsl, libxml2 , libxslt, gst_all_1 ? null , withPdfReader ? true @@ -19,7 +19,7 @@ let stripRoot = false; }; -in python3Packages.buildPythonApplication rec { +in mkDerivationWith python3Packages.buildPythonApplication rec { pname = "qutebrowser"; version = "1.6.3"; @@ -41,7 +41,7 @@ in python3Packages.buildPythonApplication rec { ]); nativeBuildInputs = [ - makeWrapper wrapGAppsHook asciidoc + wrapQtAppsHook wrapGAppsHook asciidoc docbook_xml_dtd_45 docbook_xsl libxml2 libxslt ]; @@ -57,6 +57,9 @@ in python3Packages.buildPythonApplication rec { ./fix-restart.patch ]; + dontWrapGApps = true; + dontWrapQtApps = true; + postPatch = '' substituteInPlace qutebrowser/app.py --subst-var-by qutebrowser "$out/bin/qutebrowser" @@ -95,6 +98,12 @@ in python3Packages.buildPythonApplication rec { done ''; + postFixup = '' + wrapProgram $out/bin/qutebrowser \ + "''${gappsWrapperArgs[@]}" \ + "''${qtWrapperArgs[@]}" + ''; + meta = with stdenv.lib; { homepage = https://github.com/The-Compiler/qutebrowser; description = "Keyboard-focused browser with a minimal GUI"; From fa7716c6b527e6cbb636ca678fb1a470f0ae21e7 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Fri, 19 Jul 2019 17:54:11 +0200 Subject: [PATCH 1559/1611] qutebrowser: 1.6.3 -> 1.7.0 pdfjs: 1.10.100 -> 2.1.266 --- .../networking/browsers/qutebrowser/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index e247fd4a45c..05eafb48e72 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -10,23 +10,23 @@ assert withMediaPlayback -> gst_all_1 != null; let pdfjs = let - version = "1.10.100"; + version = "2.1.266"; in fetchzip rec { name = "pdfjs-${version}"; url = "https://github.com/mozilla/pdf.js/releases/download/v${version}/${name}-dist.zip"; - sha256 = "04df4cf6i6chnggfjn6m1z9vb89f01a0l9fj5rk21yr9iirq9rkq"; + sha256 = "1ybbnpz2jcdikzwr7r13lq528vxj3bpms1fqmg3n1zgs30cqpkby"; stripRoot = false; }; in mkDerivationWith python3Packages.buildPythonApplication rec { pname = "qutebrowser"; - version = "1.6.3"; + version = "1.7.0"; # the release tarballs are different from the git checkout! src = fetchurl { url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz"; - sha256 = "0z9an14vlv0r48x7fk0mk7465gnhh19dx1w63lyhsgnfqy5pzlhy"; + sha256 = "0wyjmb2qvnw3gn0ypgckwblmn7kasi12dfwp343hi6wscqripw7i"; }; # Needs tox @@ -74,8 +74,8 @@ in mkDerivationWith python3Packages.buildPythonApplication rec { postInstall = '' install -Dm644 doc/qutebrowser.1 "$out/share/man/man1/qutebrowser.1" - install -Dm644 misc/qutebrowser.desktop \ - "$out/share/applications/qutebrowser.desktop" + install -Dm644 misc/org.qutebrowser.qutebrowser.desktop \ + "$out/share/applications/org.qutebrowser.qutebrowser.desktop" # Install icons for i in 16 24 32 48 64 128 256 512; do From 1ac4c0f2463a856cb95a5ad66d54ff91168b4d9e Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sun, 4 Aug 2019 13:05:30 +0200 Subject: [PATCH 1560/1611] confluent-platform: add jre to PATH --- pkgs/servers/confluent-platform/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/confluent-platform/default.nix b/pkgs/servers/confluent-platform/default.nix index b29f6eba12e..4d2b9a0b1fb 100644 --- a/pkgs/servers/confluent-platform/default.nix +++ b/pkgs/servers/confluent-platform/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { wrapProgram $p \ --set JAVA_HOME "${jre}" \ --set KAFKA_LOG_DIR "/tmp/apache-kafka-logs" \ - --prefix PATH : "${bash}/bin:${gnused}/bin" + --prefix PATH : "${jre}/bin:${bash}/bin:${gnused}/bin" done ''; From 5f3787932f6b2dc85af8eee6c4c4b4d701298066 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 04:16:21 -0700 Subject: [PATCH 1561/1611] gmsh: 4.4.0 -> 4.4.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gmsh/versions --- pkgs/applications/science/math/gmsh/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/math/gmsh/default.nix b/pkgs/applications/science/math/gmsh/default.nix index 1a3ba8096e2..fbdbac003dc 100644 --- a/pkgs/applications/science/math/gmsh/default.nix +++ b/pkgs/applications/science/math/gmsh/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, cmake, openblasCompat, gfortran, gmm, fltk, libjpeg , zlib, libGLU_combined, libGLU, xorg }: -let version = "4.4.0"; in +let version = "4.4.1"; in stdenv.mkDerivation { name = "gmsh-${version}"; src = fetchurl { url = "http://gmsh.info/src/gmsh-${version}-source.tgz"; - sha256 = "0b0h15cmi6zy31cii7r9jmfm9xksljff255dn6l9frhdjymkmx7l"; + sha256 = "1p7hibmsgv961lfkzdxlgcvmcb0q155m2sp60r97cjsfzhw68g45"; }; buildInputs = [ openblasCompat gmm fltk libjpeg zlib libGLU_combined From b8d3548a560790163ffa735aa621b814edc710b3 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sun, 4 Aug 2019 13:05:59 +0200 Subject: [PATCH 1562/1611] confluent-platform: add confluent-cli tool --- pkgs/servers/confluent-platform/default.nix | 23 +++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/confluent-platform/default.nix b/pkgs/servers/confluent-platform/default.nix index 4d2b9a0b1fb..84985b8f0eb 100644 --- a/pkgs/servers/confluent-platform/default.nix +++ b/pkgs/servers/confluent-platform/default.nix @@ -1,20 +1,35 @@ -{ stdenv, lib, fetchurl, jre, makeWrapper, bash, gnused }: +{ stdenv, lib, fetchurl, fetchFromGitHub +, jre, makeWrapper, bash, gnused }: -let - scalaVersion = "2.12"; -in stdenv.mkDerivation rec { name = "confluent-platform-${version}"; version = "5.3.0"; + scalaVersion = "2.12"; src = fetchurl { url = "http://packages.confluent.io/archive/${lib.versions.majorMinor version}/confluent-${version}-${scalaVersion}.tar.gz"; sha256 = "14cilq63fib5yvj40504aj6wssi7xw4f7c2jadlzdmdxzh4ixqmp"; }; + confluentCli = fetchFromGitHub { + owner = "confluentinc"; + repo = "confluent-cli"; + rev = "v${version}"; + sha256 = "18yvp56b8l074qfkgr4afirgd43g8b023n9ija6dnk6p6dib1f4j"; + }; + buildInputs = [ jre makeWrapper bash ]; installPhase = '' + cp -R $confluentCli confluent-cli + chmod -R +w confluent-cli + + ( + export CONFLUENT_HOME=$PWD + cd confluent-cli + make install + ) + mkdir -p $out cp -R bin etc share src $out rm -rf $out/bin/windows From d798b5ee92061198bb163d6dc0609cc29428de11 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 05:07:35 -0700 Subject: [PATCH 1563/1611] groonga: 9.0.4 -> 9.0.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/groonga/versions --- pkgs/servers/search/groonga/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/search/groonga/default.nix b/pkgs/servers/search/groonga/default.nix index 2d9f6b11b27..f86596150ea 100644 --- a/pkgs/servers/search/groonga/default.nix +++ b/pkgs/servers/search/groonga/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "groonga-${version}"; - version = "9.0.4"; + version = "9.0.5"; src = fetchurl { url = "https://packages.groonga.org/source/groonga/${name}.tar.gz"; - sha256 = "00cyzvk8303y0xcmb0hiy45wj2j6baqqzrfda9f6fv3zlfna1n2g"; + sha256 = "15y5dddvziw9lbl24z4j5yf1ibv79bn052lmx08rbxh78777csw3"; }; buildInputs = with stdenv.lib; From 3683719957b58c72a805e90d71264c801120ee05 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 05:18:53 -0700 Subject: [PATCH 1564/1611] gImageReader: 3.3.0 -> 3.3.1 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gimagereader/versions --- pkgs/applications/misc/gImageReader/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/gImageReader/default.nix b/pkgs/applications/misc/gImageReader/default.nix index 062bca5b215..9a34694e2f2 100644 --- a/pkgs/applications/misc/gImageReader/default.nix +++ b/pkgs/applications/misc/gImageReader/default.nix @@ -16,13 +16,13 @@ let in stdenv.mkDerivation rec { name = "gImageReader-${version}"; - version = "3.3.0"; + version = "3.3.1"; src = fetchFromGitHub { owner= "manisandro"; repo = "gImageReader"; rev = "v${version}"; - sha256 = "0pjk4kr7bc5q4hi1xf7na2zln9fyqdazgzq62r3bg41nzy7fakcz"; + sha256 = "17hz2dgxx2j7hsk0lx3riidqvlsg0ylnicjd2gphsi3yp7w20zdj"; }; nativeBuildInputs = [ From bfdca24dd3824bff88eab48c33395baaa1a5879e Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 05:23:28 -0700 Subject: [PATCH 1565/1611] terminus_font: 4.47 -> 4.48 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/terminus-font/versions --- pkgs/data/fonts/terminus-font/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/terminus-font/default.nix b/pkgs/data/fonts/terminus-font/default.nix index 4198fe2cbe6..57356398004 100644 --- a/pkgs/data/fonts/terminus-font/default.nix +++ b/pkgs/data/fonts/terminus-font/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { pname = "terminus-font"; - version = "4.47"; + version = "4.48"; name = "${pname}-${version}"; # set here for use in URL below src = fetchurl { url = "mirror://sourceforge/project/${pname}/${name}/${name}.tar.gz"; - sha256 = "15qjcpalcxjiwsjgjg5k88vkwp56cs2nnx4ghya6mqp4i1c206qg"; + sha256 = "1bwlkj39rqbyq57v5yssayav6hzv1n11b9ml2s0dpiyfsn6rqy9l"; }; nativeBuildInputs = [ python3 bdftopcf mkfontdir mkfontscale ]; From f3d53023d831a68bf07366c9ec4d724067167d5f Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 4 Aug 2019 14:35:41 +0200 Subject: [PATCH 1566/1611] highlight: 3.52 -> 3.53 --- pkgs/tools/text/highlight/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/highlight/default.nix b/pkgs/tools/text/highlight/default.nix index 34dacc80d92..46fe9ab1cd7 100644 --- a/pkgs/tools/text/highlight/default.nix +++ b/pkgs/tools/text/highlight/default.nix @@ -4,13 +4,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "highlight-${version}"; - version = "3.52"; + version = "3.53"; src = fetchFromGitLab { owner = "saalen"; repo = "highlight"; rev = "v${version}"; - sha256 = "0zhn1k70ck82ks7ckzsy1yiz686ym2ps7c28wjmkgxfpyjanilrq"; + sha256 = "11szws4q6qyffq2fsvh1vksh1d0kcwg6smyyba9yr61hzx6zmzgr"; }; enableParallelBuilding = true; @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Source code highlighting tool"; - homepage = http://www.andre-simon.de/doku/highlight/en/highlight.php; + homepage = "http://www.andre-simon.de/doku/highlight/en/highlight.php"; platforms = platforms.unix; maintainers = with maintainers; [ ndowens willibutz ]; }; From b4628764a8bb991e8a0c856bd2436f2830e94214 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 05:59:51 -0700 Subject: [PATCH 1567/1611] icingaweb2: 2.6.3 -> 2.7.0 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/icingaweb2/versions --- pkgs/servers/icingaweb2/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/icingaweb2/default.nix b/pkgs/servers/icingaweb2/default.nix index 11bfb99782d..9216464f1e4 100644 --- a/pkgs/servers/icingaweb2/default.nix +++ b/pkgs/servers/icingaweb2/default.nix @@ -1,12 +1,12 @@ { stdenv, lib, fetchFromGitHub, makeWrapper, php }: with lib; stdenv.mkDerivation rec { name = "icingaweb2-${version}"; - version = "2.6.3"; + version = "2.7.0"; src = fetchFromGitHub { owner = "Icinga"; repo = "icingaweb2"; rev = "v${version}"; - sha256 = "0xcsf45m85d4ww5y2d5i73rjbp3hmc8lljc67lz9fl6f90y9gb22"; + sha256 = "0akz2v9zfdchagnzdqcvzrxyw9bkmg8pp23wwdpwdrw67z2931zj"; }; nativeBuildInputs = [ makeWrapper ]; From 8cc4edde3e2da04fce687911ac2d206792016b7f Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sat, 3 Aug 2019 17:14:03 -0700 Subject: [PATCH 1568/1611] debianutils: 4.8.6.2 -> 4.8.6.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/debianutils/versions --- pkgs/tools/misc/debianutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/debianutils/default.nix b/pkgs/tools/misc/debianutils/default.nix index 3613905db48..b42c302a38f 100644 --- a/pkgs/tools/misc/debianutils/default.nix +++ b/pkgs/tools/misc/debianutils/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "debianutils"; - version = "4.8.6.2"; + version = "4.8.6.3"; src = fetchurl { url = "mirror://debian/pool/main/d/${pname}/${pname}_${version}.tar.xz"; - sha256 = "1fhbn62v85ydcap4pjx6jb37bly42lf3l64ig4ppr7yiaax8i8xc"; + sha256 = "08g2gdm6n66w5m8qwm4f48wzgs3ymkpki6dg01nwzwbdzhxdxirc"; }; meta = with stdenv.lib; { From 55565b0f6930ad9a7538e98b997d0347e99af043 Mon Sep 17 00:00:00 2001 From: Terje Larsen Date: Sat, 3 Aug 2019 12:56:26 +0200 Subject: [PATCH 1569/1611] yubioath-desktop: use qt wrapped mkDerivation --- pkgs/applications/misc/yubioath-desktop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/yubioath-desktop/default.nix b/pkgs/applications/misc/yubioath-desktop/default.nix index 3d4718990cb..843bc0c1c23 100644 --- a/pkgs/applications/misc/yubioath-desktop/default.nix +++ b/pkgs/applications/misc/yubioath-desktop/default.nix @@ -1,10 +1,10 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, mkDerivation , qmake, qtbase, qtquickcontrols , python3, pyotherside , pcsclite, yubikey-personalization , yubikey-manager, makeWrapper }: -stdenv.mkDerivation rec { +mkDerivation rec { pname = "yubioath-desktop"; version = "4.3.6"; From be21b66ffcace1d8d74e1c8db3c35229bbd332a9 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 06:07:15 -0700 Subject: [PATCH 1570/1611] hwinfo: 21.66 -> 21.67 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/hwinfo/versions --- pkgs/tools/system/hwinfo/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/system/hwinfo/default.nix b/pkgs/tools/system/hwinfo/default.nix index ff937638056..eba8c8f41b4 100644 --- a/pkgs/tools/system/hwinfo/default.nix +++ b/pkgs/tools/system/hwinfo/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "hwinfo-${version}"; - version = "21.66"; + version = "21.67"; src = fetchFromGitHub { owner = "opensuse"; repo = "hwinfo"; rev = "${version}"; - sha256 = "1f841hzh9ik02690h9b1k3ysqv91avsb0zir2ykqz8qj39c5qsxz"; + sha256 = "1fvlrqx1wgl79a9j3xhhhdihj4lkpbrchfsc27il0p52fynn4dji"; }; patchPhase = '' From 64c3c32da327999361a711f0acceda35b2eaf04d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 06:14:01 -0700 Subject: [PATCH 1571/1611] jgmenu: 3.1 -> 3.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jgmenu/versions --- pkgs/applications/misc/jgmenu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/jgmenu/default.nix b/pkgs/applications/misc/jgmenu/default.nix index 64c693092b0..879f344a5af 100644 --- a/pkgs/applications/misc/jgmenu/default.nix +++ b/pkgs/applications/misc/jgmenu/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { pname = "jgmenu"; - version = "3.1"; + version = "3.3"; src = fetchFromGitHub { owner = "johanmalm"; repo = pname; rev = "v${version}"; - sha256 = "03lk89d6wvqv234qciksd4zm0z4lkvrxfh6r9ff0d8yzg67m7rd0"; + sha256 = "02qpvlmcis7217hkqilhszza4g1smb4byx4gihgp5207aj8qhz0l"; }; nativeBuildInputs = [ From 5d76be906dd097a4604cf0bc050a145e14b92353 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 06:18:22 -0700 Subject: [PATCH 1572/1611] jackett: 0.11.457 -> 0.11.559 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jackett/versions --- pkgs/servers/jackett/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/jackett/default.nix b/pkgs/servers/jackett/default.nix index 1091e31cf9f..d2ead585e7d 100644 --- a/pkgs/servers/jackett/default.nix +++ b/pkgs/servers/jackett/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "jackett-${version}"; - version = "0.11.457"; + version = "0.11.559"; src = fetchurl { url = "https://github.com/Jackett/Jackett/releases/download/v${version}/Jackett.Binaries.Mono.tar.gz"; - sha256 = "139ga5qra6jrn3mkp08a5p495alxq78a8imfj4k8ywv1s05kw7dw"; + sha256 = "1ds263q92igvgn0dirl506cmrzy374msaxl1x13gax0i0ggf09mq"; }; buildInputs = [ makeWrapper ]; From c2e8451a97d442db7a541108c40a8fac909f12f6 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 4 Aug 2019 15:06:29 +0200 Subject: [PATCH 1573/1611] wt3: 3.3.11 -> 3.4.0 --- pkgs/development/libraries/wt/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix index e1c339d1e0f..74117b3a298 100644 --- a/pkgs/development/libraries/wt/default.nix +++ b/pkgs/development/libraries/wt/default.nix @@ -34,7 +34,7 @@ let ]; meta = with stdenv.lib; { - homepage = https://www.webtoolkit.eu/wt; + homepage = "https://www.webtoolkit.eu/wt"; description = "C++ library for developing web applications"; platforms = platforms.linux; license = licenses.gpl2; @@ -43,8 +43,8 @@ let }; in { wt3 = generic { - version = "3.3.11"; - sha256 = "1s1bwg3s7brnspr9ya1vg5mr29dbvhf05s606fiv409b7ladqvxq"; + version = "3.4.0"; + sha256 = "0y0b2h9jf5cg1gdh48dj32pj5nsvipab1cgygncxf98c46ikhysg"; }; wt4 = generic { From 16d75edc90d4be710cf57fe0e02564cbe96e01c9 Mon Sep 17 00:00:00 2001 From: WilliButz Date: Sun, 4 Aug 2019 15:06:58 +0200 Subject: [PATCH 1574/1611] wt4: 4.0.5 -> 4.1.0 --- pkgs/development/libraries/wt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wt/default.nix b/pkgs/development/libraries/wt/default.nix index 74117b3a298..ba77189b2a5 100644 --- a/pkgs/development/libraries/wt/default.nix +++ b/pkgs/development/libraries/wt/default.nix @@ -48,7 +48,7 @@ in { }; wt4 = generic { - version = "4.0.5"; - sha256 = "1gn8f30mjmn9aaxdazk49wijz37nglfww15ydrjiyhl6v5xhsjdv"; + version = "4.1.0"; + sha256 = "1a9nl5gs8m8pssf2l3z6kbl2rc9fw5ad7lfslw5yr3gzi0zqn05x"; }; } From 33a58b36e259fd627e5a94b4cb171cb01ad95763 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 3 Aug 2019 10:17:01 -0700 Subject: [PATCH 1575/1611] cpp-netlib: 0.12.0 -> 0.13.0-final --- pkgs/development/libraries/cpp-netlib/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/libraries/cpp-netlib/default.nix b/pkgs/development/libraries/cpp-netlib/default.nix index badfc630a47..a4729cdeaed 100644 --- a/pkgs/development/libraries/cpp-netlib/default.nix +++ b/pkgs/development/libraries/cpp-netlib/default.nix @@ -1,12 +1,15 @@ -{ stdenv, fetchurl, cmake, boost, openssl, asio }: +{ stdenv, fetchFromGitHub, cmake, boost, openssl, asio }: stdenv.mkDerivation rec { - name = "cpp-netlib-${version}"; - version = "0.12.0"; + pname = "cpp-netlib"; + version = "0.13.0-final"; - src = fetchurl { - url = "http://downloads.cpp-netlib.org/${version}/${name}-final.tar.bz2"; - sha256 = "0h7gyrbr3madycnj8rl8k1jzk2hd8np2k5ad9mijlh0fizzzk3h8"; + src = fetchFromGitHub { + owner = pname; + repo = pname; + rev = "${pname}-${version}"; + sha256 = "18782sz7aggsl66b4mmi1i0ijwa76iww337fi9sygnplz2hs03a3"; + fetchSubmodules = true; }; buildInputs = [ cmake boost openssl ]; From 08aa9c9aa466d7a4458025cb758c3f544d139657 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 07:27:55 -0700 Subject: [PATCH 1576/1611] homebank: 5.2.6 -> 5.2.7 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/homebank/versions --- pkgs/applications/office/homebank/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/homebank/default.nix b/pkgs/applications/office/homebank/default.nix index 9f45a70e8b8..727a68c440a 100644 --- a/pkgs/applications/office/homebank/default.nix +++ b/pkgs/applications/office/homebank/default.nix @@ -2,10 +2,10 @@ , hicolor-icon-theme, libsoup, gnome3 }: stdenv.mkDerivation rec { - name = "homebank-5.2.6"; + name = "homebank-5.2.7"; src = fetchurl { url = "http://homebank.free.fr/public/${name}.tar.gz"; - sha256 = "10cqii1bsc7dmg8nzj6xhmk44r390vca49vbsw4g504h0bvwn54s"; + sha256 = "0pzbn0wlppwbap19isbv8vv3cq7xswladhc272ykaya78r1bxvcf"; }; nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; From a489bcbbe1d762da6e465927df7abf1317e493b3 Mon Sep 17 00:00:00 2001 From: Vaibhav Sagar Date: Tue, 19 Mar 2019 16:32:01 -0400 Subject: [PATCH 1577/1611] smlnjBootstrap: 110.84 -> 110.91 --- pkgs/development/compilers/smlnj/bootstrap.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/compilers/smlnj/bootstrap.nix b/pkgs/development/compilers/smlnj/bootstrap.nix index 2fe1f1f3f5a..21cfd408298 100644 --- a/pkgs/development/compilers/smlnj/bootstrap.nix +++ b/pkgs/development/compilers/smlnj/bootstrap.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, cpio, rsync, makeWrapper }: +{ stdenv, fetchurl, cpio, rsync, xar, makeWrapper }: stdenv.mkDerivation rec { name = "smlnj-bootstrap-${version}"; - version = "110.84"; + version = "110.91"; src = fetchurl { url = "http://smlnj.cs.uchicago.edu/dist/working/${version}/smlnj-x86-${version}.pkg"; - sha256 = "17fpnlxcfwx2ysg6y9c5wwx6s3jca981nb0pawfcg6xg9wcapyfz"; + sha256 = "12jn50h5jz0ac1vzld2mb94p1dyc8h0mk0hip2wj5xqk1dbzwxl4"; }; buildInputs = [ cpio rsync makeWrapper ]; unpackPhase = '' - /usr/bin/xar -xf $src + ${xar}/bin/xar -xf $src cd smlnj.pkg ''; From 7fd109e23f893f49291066bf296760dbb2e972b7 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 06:26:56 -0700 Subject: [PATCH 1578/1611] ipset: 7.2 -> 7.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/ipset/versions --- pkgs/os-specific/linux/ipset/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/ipset/default.nix b/pkgs/os-specific/linux/ipset/default.nix index c831c14031a..57255b4a382 100644 --- a/pkgs/os-specific/linux/ipset/default.nix +++ b/pkgs/os-specific/linux/ipset/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, libmnl }: stdenv.mkDerivation rec { - name = "ipset-7.2"; + name = "ipset-7.3"; src = fetchurl { url = "http://ipset.netfilter.org/${name}.tar.bz2"; - sha256 = "06268dchlk4x8x27rhn569hjkm99jk2iid3ara2xr7k66i2kh4rf"; + sha256 = "0nm3vagr1pb5hr1028qrwx6v6s8bxf1m4qjx72vak42y032wfi26"; }; nativeBuildInputs = [ pkgconfig ]; From 997ed4eca242f0eabebe03fdacfbc81b80002a9f Mon Sep 17 00:00:00 2001 From: Maximilian Bosch Date: Sun, 4 Aug 2019 17:58:29 +0200 Subject: [PATCH 1579/1611] digikam: enable parallel build --- pkgs/applications/graphics/digikam/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index f0f90a71cd5..1fc15af7244 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -105,6 +105,8 @@ mkDerivation rec { threadweaver ]; + enableParallelBuilding = true; + cmakeFlags = [ "-DENABLE_MYSQLSUPPORT=1" "-DENABLE_INTERNALMYSQL=1" From 8aa218bf8299f4147771b4abdbba2c04116e2aae Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 10:10:53 -0700 Subject: [PATCH 1580/1611] krita: 4.2.2 -> 4.2.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/krita/versions --- pkgs/applications/graphics/krita/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/krita/default.nix b/pkgs/applications/graphics/krita/default.nix index cc46ac2d3bb..83489e1a24c 100644 --- a/pkgs/applications/graphics/krita/default.nix +++ b/pkgs/applications/graphics/krita/default.nix @@ -10,11 +10,11 @@ mkDerivation rec { pname = "krita"; - version = "4.2.2"; + version = "4.2.5"; src = fetchurl { url = "https://download.kde.org/stable/${pname}/${version}/${pname}-${version}.tar.gz"; - sha256 = "1pzk5bqp3kh22djhvsvmsc7ybirs4hsnkpg1y9677m2gxwbqnnps"; + sha256 = "1f14r2mrqasl6nr3sss0xy2h8xlxd5wdcjcd64m9nz2gwlm39r7w"; }; nativeBuildInputs = [ cmake extra-cmake-modules python3Packages.sip makeWrapper ]; From fc0138f980b6822c40daa3d9cedb052bb826e5fc Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 10:36:55 -0700 Subject: [PATCH 1581/1611] kronometer: 2.2.2 -> 2.2.3 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kronometer/versions --- pkgs/tools/misc/kronometer/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/kronometer/default.nix b/pkgs/tools/misc/kronometer/default.nix index 0307cd86df8..4e83c2479f1 100644 --- a/pkgs/tools/misc/kronometer/default.nix +++ b/pkgs/tools/misc/kronometer/default.nix @@ -6,14 +6,14 @@ let pname = "kronometer"; - version = "2.2.2"; + version = "2.2.3"; in mkDerivation rec { name = "${pname}-${version}"; src = fetchurl { url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz"; - sha256 = "142f1kqygil6d4pvh6pallin355h2rq5s1hs6gd11plcin6rkg2j"; + sha256 = "05hs8729a3aqjpwmn2xdf2sriacrll4sj4ax3lm4s1ravj09n9bm"; }; meta = with lib; { From a7b7c8c78688674851cdc152ab5fa5da68bdb6e6 Mon Sep 17 00:00:00 2001 From: Terje Larsen Date: Sun, 4 Aug 2019 19:39:08 +0200 Subject: [PATCH 1582/1611] fstl: use qt's mkDerivation --- pkgs/applications/graphics/fstl/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/graphics/fstl/default.nix b/pkgs/applications/graphics/fstl/default.nix index b1437508a50..bdb1e87d70e 100644 --- a/pkgs/applications/graphics/fstl/default.nix +++ b/pkgs/applications/graphics/fstl/default.nix @@ -1,5 +1,6 @@ -{stdenv, fetchFromGitHub, qtbase, mesa_glu}: -stdenv.mkDerivation rec { +{ stdenv, fetchFromGitHub, mkDerivation, qtbase, mesa_glu }: + +mkDerivation rec { name = "fstl-${version}"; version = "0.9.3"; From 0a02aed96c05fdfd84909117e8e1c8c17d567f35 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 11:01:28 -0700 Subject: [PATCH 1583/1611] lesspipe: 1.83 -> 1.84 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lesspipe/versions --- pkgs/tools/misc/lesspipe/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/lesspipe/default.nix b/pkgs/tools/misc/lesspipe/default.nix index 9bb46f113fd..bb99521cc27 100644 --- a/pkgs/tools/misc/lesspipe/default.nix +++ b/pkgs/tools/misc/lesspipe/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { pname = "lesspipe"; - version = "1.83"; + version = "1.84"; buildInputs = [ perl ]; preConfigure = "patchShebangs ."; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { owner = "wofr06"; repo = "lesspipe"; rev = version; - sha256 = "1vqch6k4fz5pyf8szlnqm3qhlvgs9l4njd13yczjh4kpaxpn0rxb"; + sha256 = "124ffhzrikr88ab14rk6753n8adxijpmg7q3zx7nmqc52wpkfd8q"; }; patches = [ From 730741f3c138c128089a023b149c4d93bbe9dd34 Mon Sep 17 00:00:00 2001 From: Jonas Nick Date: Sun, 4 Aug 2019 19:54:44 +0000 Subject: [PATCH 1584/1611] lnd: 0.7.0-beta -> 0.7.1-beta (#65865) --- pkgs/applications/altcoins/lnd.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/altcoins/lnd.nix b/pkgs/applications/altcoins/lnd.nix index 7fcaca487b1..27f10c963c0 100644 --- a/pkgs/applications/altcoins/lnd.nix +++ b/pkgs/applications/altcoins/lnd.nix @@ -2,16 +2,16 @@ buildGoModule rec { pname = "lnd"; - version = "0.7.0-beta"; + version = "0.7.1-beta"; src = fetchFromGitHub { owner = "lightningnetwork"; repo = "lnd"; rev = "v${version}"; - sha256 = "0d6m1vfy33rg6d7qmkpydiypav1girxsnxan9njyjz0vhinmq0sx"; + sha256 = "1c0sm0lavdai4w6d283q54knggw9d42vvqmglnv2h9swbw1l23ry"; }; - modSha256 = "0akxi7xhyz7xx0vc003abidva02sp940cc2gfjg4fmzkc95cajc9"; + modSha256 = "13hjaf4bswk8g57lyxzdlqqp4a6ddl3qm6n4jja4b1h58mlbil73"; meta = with lib; { description = "Lightning Network Daemon"; From 5bb58479d7f51615d76739b717ad8dfc85c987f8 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 13:09:13 -0700 Subject: [PATCH 1585/1611] jmol: 14.29.46 -> 14.29.49 (#65951) Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/jmol/versions --- pkgs/applications/science/chemistry/jmol/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/science/chemistry/jmol/default.nix b/pkgs/applications/science/chemistry/jmol/default.nix index 84c01cbfd67..00231113d2c 100644 --- a/pkgs/applications/science/chemistry/jmol/default.nix +++ b/pkgs/applications/science/chemistry/jmol/default.nix @@ -17,14 +17,14 @@ let }; in stdenv.mkDerivation rec { - version = "14.29.46"; + version = "14.29.49"; pname = "jmol"; src = let baseVersion = "${lib.versions.major version}.${lib.versions.minor version}"; in fetchurl { url = "mirror://sourceforge/jmol/Jmol/Version%20${baseVersion}/Jmol%20${version}/Jmol-${version}-binary.tar.gz"; - sha256 = "00ig1f1fz5qbkam0h06vs1gsb95hdqa0iyhsp4qbyjjfxir7m59l"; + sha256 = "19fyr4ldvbd5rbw19hslg9fpwc42wxmyx7r3z78k6dw653vb1ml5"; }; patchPhase = '' From f6ebeb801da4984c886f3377b2e542d4bbe98664 Mon Sep 17 00:00:00 2001 From: Dave Nicponski Date: Sun, 28 Jul 2019 03:31:00 -0400 Subject: [PATCH 1586/1611] crawl: use static config for data files. This allows the game to be executed from anywhere, not just the install directory in the nix store. --- pkgs/games/crawl/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/games/crawl/default.nix b/pkgs/games/crawl/default.nix index 203afa93b45..2179c2bff76 100644 --- a/pkgs/games/crawl/default.nix +++ b/pkgs/games/crawl/default.nix @@ -49,8 +49,9 @@ stdenv.mkDerivation rec { fontsPath = lib.optionalString tileMode dejavu_fonts; - makeFlags = [ "prefix=$(out)" "FORCE_CC=cc" "FORCE_CXX=c++" "HOSTCXX=c++" + makeFlags = [ "prefix=${placeholder "out"}" "FORCE_CC=cc" "FORCE_CXX=c++" "HOSTCXX=c++" "SAVEDIR=~/.crawl" "sqlite=${sqlite.dev}" + "DATADIR=${placeholder "out"}" ] ++ lib.optional tileMode "TILES=y" ++ lib.optional enableSound "SOUND=y"; From eb1ada708cf2b9a79e1d4dae84846c74d95b3d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B0=D1=80=D0=B8=D0=BA?= Date: Mon, 5 Aug 2019 00:11:09 +0300 Subject: [PATCH 1587/1611] mixxx: use qt5.mkDerivation --- pkgs/applications/audio/mixxx/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/mixxx/default.nix b/pkgs/applications/audio/mixxx/default.nix index 9fbcf8b7ac2..d0c8f4d9ebe 100644 --- a/pkgs/applications/audio/mixxx/default.nix +++ b/pkgs/applications/audio/mixxx/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchFromGitHub, makeWrapper, chromaprint +{ stdenv, mkDerivation, fetchFromGitHub, makeWrapper, chromaprint , fftw, flac, faad2, glibcLocales, mp4v2 , libid3tag, libmad, libopus, libshout, libsndfile, libusb1, libvorbis , libGLU, libxcb, lilv, lv2, opusfile @@ -6,7 +6,7 @@ , qtx11extras, rubberband, scons, sqlite, taglib, upower, vampSDK }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "mixxx-${version}"; version = "2.2.1"; From 58f7d41483f6c21bbf0b0e425c8509cf9fdc58ba Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 14:25:09 -0700 Subject: [PATCH 1588/1611] man-pages: 5.01 -> 5.02 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/man-pages/versions --- pkgs/data/documentation/man-pages/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 04130f25f30..c4ce2750172 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "man-pages-${version}"; - version = "5.01"; + version = "5.02"; src = fetchurl { url = "mirror://kernel/linux/docs/man-pages/${name}.tar.xz"; - sha256 = "09xn8d8xxwgms6h1bvjlgn3mxz51vxf3ra0ry9f5dqi29qry3z3x"; + sha256 = "1s4pdz2pwf0kvhdwx2s6lqn3xxzi38yz5jfyq5ymdmswc9gaiyn2"; }; makeFlags = [ "MANDIR=$(out)/share/man" ]; From 558fe63cb2719ec61b44ba62aec424c16f88cb34 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 17:15:27 -0700 Subject: [PATCH 1589/1611] mediainfo-gui: 19.04 -> 19.07 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mediainfo-gui/versions --- pkgs/applications/misc/mediainfo-gui/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index 0d9fffd1bb7..8e6965bfc4f 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -2,11 +2,11 @@ , desktop-file-utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "19.04"; + version = "19.07"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "https://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "11wag23gx7nprrm1qlgvbc83rs9zxdsshqrp98zwia80xh8c9bk5"; + sha256 = "0b2ypdlpj5v64ggqk628mgqraba27z725sa0zf0fa4agxhf9ka44"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; From f2068d3aa43ed490ad05d480fa19ca8add66b5d2 Mon Sep 17 00:00:00 2001 From: marius851000 Date: Sat, 3 Aug 2019 20:50:55 +0200 Subject: [PATCH 1590/1611] dolphinEmuMaster: update to the latest upstream version --- pkgs/misc/emulators/dolphin-emu/master.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/misc/emulators/dolphin-emu/master.nix b/pkgs/misc/emulators/dolphin-emu/master.nix index 6f32e91044c..4f48f1248f4 100644 --- a/pkgs/misc/emulators/dolphin-emu/master.nix +++ b/pkgs/misc/emulators/dolphin-emu/master.nix @@ -20,13 +20,13 @@ let }; in stdenv.mkDerivation rec { name = "dolphin-emu-${version}"; - version = "5.0-9976"; + version = "5.0-10751"; src = fetchFromGitHub { owner = "dolphin-emu"; repo = "dolphin"; - rev = "63f30cc44da248b0226e1c8724b3e53ecf4c768f"; - sha256 = "0lkf571kzmw26fybl1lqpvhc81jkbh4hcvi3766bb7mvvzapkybd"; + rev = "64c0ff576c6d3ea2ee35e6b6d7ea8c814442d53f"; + sha256 = "19351j3gys9kgxpdjv1dckaiv74dylcdh1kx0z9qz8llv9s1r0s3"; }; enableParallelBuilding = true; From 8dcfc107d3bcd75a45c798d342f667aade5b0366 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 10:50:58 -0700 Subject: [PATCH 1591/1611] kotlin: 1.3.40 -> 1.3.41 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/kotlin/versions --- pkgs/development/compilers/kotlin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/kotlin/default.nix b/pkgs/development/compilers/kotlin/default.nix index f49d63168d4..32659d5be56 100644 --- a/pkgs/development/compilers/kotlin/default.nix +++ b/pkgs/development/compilers/kotlin/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, makeWrapper, jre, unzip }: let - version = "1.3.40"; + version = "1.3.41"; in stdenv.mkDerivation rec { inherit version; name = "kotlin-${version}"; src = fetchurl { url = "https://github.com/JetBrains/kotlin/releases/download/v${version}/kotlin-compiler-${version}.zip"; - sha256 = "14n3x0771d0a1yqncig97lk4bigkx2nvx20khpcnvf873c2b3h28"; + sha256 = "0ch1fynqjfsb7jklw3pa6fygrgnl8nz4x4v0id06wq4md23bcjn4"; }; propagatedBuildInputs = [ jre ] ; From 2669e51dcc32e072a529f1538a737c946e5c66fc Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 4 Aug 2019 21:58:15 -0400 Subject: [PATCH 1592/1611] linux: 4.14.135 -> 4.14.136 --- pkgs/os-specific/linux/kernel/linux-4.14.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.14.nix b/pkgs/os-specific/linux/kernel/linux-4.14.nix index 57d9ad8fc16..57b0585ea4e 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.14.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.14.135"; + version = "4.14.136"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0x2v0pj4hjb71qkxbqn4ymg6zmyabp91kylyzd270nbig7i234a2"; + sha256 = "0w6z5fhwqgpqnz2js8vj9j5dl6isx8n7rnzrm0vr9r8njaazz396"; }; } // (args.argsOverride or {})) From 08f910a5eab847ad082ffdc0f77e74aed69e84f2 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 4 Aug 2019 21:59:07 -0400 Subject: [PATCH 1593/1611] linux: 4.19.63 -> 4.19.64 --- pkgs/os-specific/linux/kernel/linux-4.19.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.19.nix b/pkgs/os-specific/linux/kernel/linux-4.19.nix index a1192b68b3f..dc404f0ef6a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.19.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.19.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "4.19.63"; + version = "4.19.64"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0pfjwpa6szvdr941y13806hlsgsbslfsvkrd5534p1iip5h8g63m"; + sha256 = "1gasmcdsrsk81dscslmrsxqsvkfp5xxdx3ay95izggpk7piqnvvs"; }; } // (args.argsOverride or {})) From aa2522f586981ef4b8030f9bd974989c2b114ebe Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 4 Aug 2019 21:59:46 -0400 Subject: [PATCH 1594/1611] linux: 4.4.186 -> 4.4.187 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index 366bf1ad265..000ba6073a3 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, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.4.186"; + version = "4.4.187"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "113rjf8842glzi23y1g1yrwncihv2saah6wz0r726r06bk9p64hb"; + sha256 = "1dlzb5yzcsicd41myj3q4dq2ql8xcc49brs5f7xjmc5ynvvjjgnc"; }; } // (args.argsOverride or {})) From b99e9484830d3bb9b3e013a1f2c4582ce8a42a2c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 4 Aug 2019 22:00:34 -0400 Subject: [PATCH 1595/1611] linux: 4.9.186 -> 4.9.187 --- pkgs/os-specific/linux/kernel/linux-4.9.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.9.nix b/pkgs/os-specific/linux/kernel/linux-4.9.nix index 8fe5d3dfcb2..de15a2700a9 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, fetchurl, perl, buildLinux, ... } @ args: buildLinux (args // rec { - version = "4.9.186"; + version = "4.9.187"; extraMeta.branch = "4.9"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0sjbp7m6d625rw06wv34a0805d1lgldii4pxiqfpja871m1q8914"; + sha256 = "1iyimwl4ysnk6m66m73sg0cnp4vac56d6yy174shfpnj5h2csjq1"; }; } // (args.argsOverride or {})) From d95b1185541afdbefde5ea1997e5b6b77a22dc6f Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Sun, 4 Aug 2019 22:01:06 -0400 Subject: [PATCH 1596/1611] linux: 5.2.5 -> 5.2.6 --- pkgs/os-specific/linux/kernel/linux-5.2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-5.2.nix b/pkgs/os-specific/linux/kernel/linux-5.2.nix index 9a0551c4d06..d74f8548b3b 100644 --- a/pkgs/os-specific/linux/kernel/linux-5.2.nix +++ b/pkgs/os-specific/linux/kernel/linux-5.2.nix @@ -3,7 +3,7 @@ with stdenv.lib; buildLinux (args // rec { - version = "5.2.5"; + version = "5.2.6"; # modDirVersion needs to be x.y.z, will automatically add .0 if needed modDirVersion = if (modDirVersionArg == null) then concatStrings (intersperse "." (take 3 (splitString "." "${version}.0"))) else modDirVersionArg; @@ -13,6 +13,6 @@ buildLinux (args // rec { src = fetchurl { url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz"; - sha256 = "15ndscsp3yqgas901g6inpmyvinz4cwr5y3md516j2pr8cl40if6"; + sha256 = "1whzgdz1wnjzkb78yqz4xs3mad02rv17ksmwaf4ykp4lfgxml45y"; }; } // (args.argsOverride or {})) From ab9294b6ed6d4c346a0664e4a2d6ba804f3ec051 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Sat, 3 Aug 2019 09:30:03 -0700 Subject: [PATCH 1597/1611] disper: 0.3.1 -> 0.3.1.1 --- pkgs/tools/misc/disper/default.nix | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/misc/disper/default.nix b/pkgs/tools/misc/disper/default.nix index 22951eecf53..167b4a547f8 100644 --- a/pkgs/tools/misc/disper/default.nix +++ b/pkgs/tools/misc/disper/default.nix @@ -1,9 +1,19 @@ -{stdenv, fetchurl, python, xorg, makeWrapper}: +{ stdenv, fetchFromGitHub, python, xorg, makeWrapper }: stdenv.mkDerivation rec { - name = "disper-0.3.1"; + pname = "disper"; + version = "0.3.1.1"; - buildInputs = [python makeWrapper]; + src = fetchFromGitHub { + owner = "apeyser"; + repo = pname; + rev = "${pname}-${version}"; + sha256 = "1kl4py26n95q0690npy5mc95cv1cyfvh6kxn8rvk62gb8scwg9zn"; + }; + + nativeBuildInputs = [ makeWrapper ]; + + buildInputs = [ python ]; preConfigure = '' export makeFlags="PREFIX=$out" @@ -14,11 +24,6 @@ stdenv.mkDerivation rec { --prefix "LD_LIBRARY_PATH" : "${stdenv.lib.makeLibraryPath [ xorg.libXrandr xorg.libX11 ]}" ''; - src = fetchurl { - url = http://ppa.launchpad.net/disper-dev/ppa/ubuntu/pool/main/d/disper/disper_0.3.1.tar.gz; - sha256 = "1l8brcpfn4iascb454ym0wrv5kqyz4f0h8k6db54nc3zhfwy7vvw"; - }; - meta = { description = "On-the-fly display switch utility"; homepage = http://willem.engen.nl/projects/disper/; From 32526e65bd94535194dd74a912dbdb71e3992712 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Mon, 5 Aug 2019 11:46:24 +0800 Subject: [PATCH 1598/1611] mtr: 0.92 -> 0.93 --- pkgs/tools/networking/mtr/default.nix | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/networking/mtr/default.nix b/pkgs/tools/networking/mtr/default.nix index 3c2ced1712f..59242551f92 100644 --- a/pkgs/tools/networking/mtr/default.nix +++ b/pkgs/tools/networking/mtr/default.nix @@ -1,38 +1,42 @@ -{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig +, libcap, ncurses , withGtk ? false, gtk2 ? null }: assert withGtk -> gtk2 != null; stdenv.mkDerivation rec { - name="mtr-${version}"; - version="0.92"; + pname = "mtr"; + version = "0.93"; src = fetchFromGitHub { owner = "traviscross"; repo = "mtr"; rev = "v${version}"; - sha256 = "0ca2ml846cv0zzkpd8y7ah6i9b3czrr8wlxja3cray94ybwb294d"; + sha256 = "0n0zr9k61w7a9psnzgp7xnc7ll1ic2xzcvqsbbbyndg3v9rff6bw"; }; - preConfigure = '' + # we need this before autoreconfHook does its thing + postPatch = '' echo ${version} > .tarball-version + ''; - ./bootstrap.sh - - substituteInPlace Makefile.in --replace ' install-exec-hook' "" + # and this after autoreconfHook has generated Makefile.in + preConfigure = '' + substituteInPlace Makefile.in \ + --replace ' install-exec-hook' "" ''; configureFlags = stdenv.lib.optional (!withGtk) "--without-gtk"; nativeBuildInputs = [ autoreconfHook pkgconfig ]; - buildInputs = [ ncurses ] ++ stdenv.lib.optional withGtk gtk2; + buildInputs = [ libcap ncurses ] ++ stdenv.lib.optional withGtk gtk2; enableParallelBuilding = true; meta = with stdenv.lib; { description = "A network diagnostics tool"; - homepage = http://www.bitwizard.nl/mtr/; + homepage = "https://www.bitwizard.nl/mtr/"; license = licenses.gpl2; maintainers = with maintainers; [ koral orivej raskin ]; platforms = platforms.unix; From 0b9b95d5b195b6f061ff763aa58a963cfb41d08b Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Fri, 2 Aug 2019 10:57:16 +0800 Subject: [PATCH 1599/1611] neovim-qt: 0.2.11 -> 0.2.12 --- pkgs/applications/editors/neovim/qt.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/editors/neovim/qt.nix b/pkgs/applications/editors/neovim/qt.nix index 3004bf544c4..83b14b4ea37 100644 --- a/pkgs/applications/editors/neovim/qt.nix +++ b/pkgs/applications/editors/neovim/qt.nix @@ -1,16 +1,16 @@ -{ stdenv, fetchFromGitHub, cmake, doxygen, makeWrapper +{ stdenv, mkDerivation, fetchFromGitHub, cmake, doxygen, makeWrapper , msgpack, neovim, pythonPackages, qtbase }: let - unwrapped = stdenv.mkDerivation rec { + unwrapped = mkDerivation rec { pname = "neovim-qt-unwrapped"; - version = "0.2.11"; + version = "0.2.12"; src = fetchFromGitHub { owner = "equalsraf"; repo = "neovim-qt"; rev = "v${version}"; - sha256 = "0pc1adxc89p2rdvb6nxyqr9sjzqz9zw2dg7a4ardxsl3a8jga1wh"; + sha256 = "09s3044j0y8nmyi8ykslfii6fx7k9mckmdvb0jn2xmdabpb60i20"; }; cmakeFlags = [ @@ -24,7 +24,7 @@ let jinja2 python msgpack ]); - nativeBuildInputs = [ cmake doxygen makeWrapper ]; + nativeBuildInputs = [ cmake doxygen ]; enableParallelBuilding = true; From 29f2f04ded458e298e70884c2fd10e05e336f598 Mon Sep 17 00:00:00 2001 From: Alp Mestanogullari Date: Sat, 13 Jul 2019 00:42:02 +0200 Subject: [PATCH 1600/1611] ghc: always use ld.gold gold is known to speed up GHC builds considerably, saving up to many seconds when linking large Haskell applications, so this patch configures all non-binary GHC derivations to use gold. --- pkgs/development/compilers/ghc/8.2.2.nix | 2 +- pkgs/development/compilers/ghc/8.4.4.nix | 2 +- pkgs/development/compilers/ghc/8.6.4.nix | 2 +- pkgs/development/compilers/ghc/8.6.5.nix | 2 +- pkgs/development/compilers/ghc/8.8.1.nix | 2 +- pkgs/development/compilers/ghc/head.nix | 3 ++- 6 files changed, 7 insertions(+), 6 deletions(-) diff --git a/pkgs/development/compilers/ghc/8.2.2.nix b/pkgs/development/compilers/ghc/8.2.2.nix index 9b942da25a6..ba4933363c1 100644 --- a/pkgs/development/compilers/ghc/8.2.2.nix +++ b/pkgs/development/compilers/ghc/8.2.2.nix @@ -166,7 +166,7 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" diff --git a/pkgs/development/compilers/ghc/8.4.4.nix b/pkgs/development/compilers/ghc/8.4.4.nix index a355f57a5c7..a90af60de43 100644 --- a/pkgs/development/compilers/ghc/8.4.4.nix +++ b/pkgs/development/compilers/ghc/8.4.4.nix @@ -126,7 +126,7 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" diff --git a/pkgs/development/compilers/ghc/8.6.4.nix b/pkgs/development/compilers/ghc/8.6.4.nix index ff9ef0a5c38..97ca95812d6 100644 --- a/pkgs/development/compilers/ghc/8.6.4.nix +++ b/pkgs/development/compilers/ghc/8.6.4.nix @@ -125,7 +125,7 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" diff --git a/pkgs/development/compilers/ghc/8.6.5.nix b/pkgs/development/compilers/ghc/8.6.5.nix index 44ad6da2ff5..d264cfda2a3 100644 --- a/pkgs/development/compilers/ghc/8.6.5.nix +++ b/pkgs/development/compilers/ghc/8.6.5.nix @@ -125,7 +125,7 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" diff --git a/pkgs/development/compilers/ghc/8.8.1.nix b/pkgs/development/compilers/ghc/8.8.1.nix index 07b9cd1e1aa..6899ad4fd48 100644 --- a/pkgs/development/compilers/ghc/8.8.1.nix +++ b/pkgs/development/compilers/ghc/8.8.1.nix @@ -110,7 +110,7 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 2edb49bd463..539d0408681 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -119,7 +119,8 @@ stdenv.mkDerivation (rec { 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.isAarch32 ".gold"}" + # and more generally have a faster linker. + export LD="${targetCC.bintools}/bin/${targetCC.bintools.targetPrefix}ld.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" From 011c29f60cd7b2efb60b49b42c68d89aad0e57a7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 4 Aug 2019 02:30:38 +0200 Subject: [PATCH 1601/1611] hackage-packages.nix: automatic Haskell package set update This update was generated by hackage2nix v2.14.4-2-ge532a45 from Hackage revision https://github.com/commercialhaskell/all-cabal-hashes/commit/ef90590dd2717f8a4a02038557645334a4f4bb55. --- .../haskell-modules/hackage-packages.nix | 577 +++++++++++++----- 1 file changed, 427 insertions(+), 150 deletions(-) diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 04209b9e16f..d5e5aa7ef56 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -30928,8 +30928,8 @@ self: { }: mkDerivation { pname = "arithmetic"; - version = "1.3"; - sha256 = "09zfwp38ydg7gzivym6k4aid93jm78g1dad04zd0g6zsqb8gpcvb"; + version = "1.4"; + sha256 = "1qydk2sxrm0xfv23b354lfilyl2cnc0gc0842rz3672j3xwzrrfa"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -37571,6 +37571,8 @@ self: { pname = "bimap"; version = "0.4.0"; sha256 = "1794iykd7rhj29y0w4vyjyn6wnw28hi8sxzvm1j5ivdzmf39d8yi"; + revision = "1"; + editedCabalFile = "111wyqh17a6pkjhyaz8n1891m69hwr2gybqcpacw4xdmarxmi7f5"; libraryHaskellDepends = [ base containers deepseq exceptions ]; testHaskellDepends = [ base containers deepseq exceptions QuickCheck template-haskell @@ -43511,6 +43513,24 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "bulmex" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, jsaddle + , jsaddle-dom, lens, network-uri, reflex, reflex-dom-core + , reflex-dom-helpers, text, time, witherable + }: + mkDerivation { + pname = "bulmex"; + version = "2.0.0"; + sha256 = "0nzgzg17av87i1777rjakiyamcgkszfcw3ch150536vkp1jaqlm5"; + libraryHaskellDepends = [ + aeson base bytestring containers jsaddle jsaddle-dom lens + network-uri reflex reflex-dom-core reflex-dom-helpers text time + witherable + ]; + description = "Reflex infused with bulma (css)"; + license = stdenv.lib.licenses.mit; + }) {}; + "bumper" = callPackage ({ mkDerivation, base, Cabal, containers, fclabels, process , regex-compat, split, strict @@ -46585,6 +46605,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "call-stack_0_2_0" = callPackage + ({ mkDerivation, base, nanospec }: + mkDerivation { + pname = "call-stack"; + version = "0.2.0"; + sha256 = "1iz0wkbcqchyji72c4j4zb72vfsfdp2ys8pf9mqqsxaq774r7ilm"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base nanospec ]; + description = "Use GHC call-stacks in a backward compatible way"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "camfort" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, fgl, filepath, flint, fortran-src, GenericPretty @@ -46664,8 +46697,8 @@ self: { ({ mkDerivation, base, deepseq, hspec, should-not-typecheck }: mkDerivation { pname = "can-i-haz"; - version = "0.1.0.0"; - sha256 = "1nsbw6k550n5vc2d17463sjci8a8k2f09519gp8hmdj19a9dlnc7"; + version = "0.1.0.1"; + sha256 = "1nay2hrvf8cxazsy5ha3affwxayirznjf0zlir0n7vbyl5w92im0"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base deepseq hspec should-not-typecheck ]; description = "Generic implementation of the Has pattern"; @@ -52487,6 +52520,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "cmake-syntax" = callPackage + ({ mkDerivation, base, bytestring, hspec, raw-strings-qq, trifecta + }: + mkDerivation { + pname = "cmake-syntax"; + version = "0.1.0.0"; + sha256 = "1d4pdnf4yb630iiw2iviidhzddfx15z2w6gamf92bdl17886i4jr"; + libraryHaskellDepends = [ + base bytestring raw-strings-qq trifecta + ]; + testHaskellDepends = [ + base bytestring hspec raw-strings-qq trifecta + ]; + description = "Parser for the CMake syntax (CMakeLists.txt and .cmake files)"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cmark" = callPackage ({ mkDerivation, base, blaze-html, bytestring, cheapskate , criterion, discount, HUnit, markdown, sundown, text @@ -59008,6 +59058,8 @@ self: { pname = "cpkg"; version = "0.2.3.1"; sha256 = "0nw1h6zgx3dizx92nwzdf9ny8bzyfa2n28lpv34xvw38fz9yq16w"; + revision = "2"; + editedCabalFile = "15bn9c0zvr8xdhq4hgnq3hhqwvv8pc5a7bdvw58psn7dwhcac6nh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -66767,6 +66819,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "dependent-map_0_3" = callPackage + ({ mkDerivation, base, constraints-extras, containers + , dependent-sum + }: + mkDerivation { + pname = "dependent-map"; + version = "0.3"; + sha256 = "1azy6yrnd0adga4z2mlp9knbp55xhlj4v9c3rb2lr1sd2l8cgf80"; + libraryHaskellDepends = [ + base constraints-extras containers dependent-sum + ]; + description = "Dependent finite maps (partial dependent products)"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "dependent-monoidal-map" = callPackage ({ mkDerivation, aeson, base, constraints, constraints-extras , dependent-map, dependent-sum, dependent-sum-aeson-orphans @@ -66809,15 +66877,13 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; - "dependent-sum_0_5" = callPackage - ({ mkDerivation, base }: + "dependent-sum_0_6_1" = callPackage + ({ mkDerivation, base, constraints-extras }: mkDerivation { pname = "dependent-sum"; - version = "0.5"; - sha256 = "1n5ln2fain1x9zkrzy1sknwm528lrdsnsg52z1d0hfpy5sngndsr"; - revision = "2"; - editedCabalFile = "1vxg9v2b5479qm7q9qzjyh9rmcdpr634s3kpjx0skqq0r68bc36s"; - libraryHaskellDepends = [ base ]; + version = "0.6.1"; + sha256 = "077pq10kldxk47zlrz022a1m7a5qpr2xa2wapa01xa2hrlgv5xh4"; + libraryHaskellDepends = [ base constraints-extras ]; description = "Dependent sum type"; license = stdenv.lib.licenses.publicDomain; hydraPlatforms = stdenv.lib.platforms.none; @@ -66855,6 +66921,23 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "dependent-sum-template_0_1_0_0" = callPackage + ({ mkDerivation, base, constraints-extras, dependent-sum + , template-haskell, th-extras + }: + mkDerivation { + pname = "dependent-sum-template"; + version = "0.1.0.0"; + sha256 = "07z95f27jpdb8y01f904z0fi6kjllsbcm2zg0k1v9y8c6rwavw0f"; + libraryHaskellDepends = [ + base dependent-sum template-haskell th-extras + ]; + testHaskellDepends = [ base constraints-extras dependent-sum ]; + description = "Template Haskell code to generate instances of classes in dependent-sum package"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "depends" = callPackage ({ mkDerivation, base, containers, directory, filepath, hspec , process, QuickCheck, transformers, yaml-config @@ -75492,8 +75575,8 @@ self: { }: mkDerivation { pname = "elm-bridge"; - version = "0.5.1"; - sha256 = "0d9544s892rhy0dkhzz6w3nryhbl26yahs4k1nkpgdqsxsnv4rvn"; + version = "0.5.2"; + sha256 = "1ls4c4lrjbmms1kcaz88nnxn3ih3wbx51adjggbvyvfj52bc5cvp"; libraryHaskellDepends = [ aeson base template-haskell ]; testHaskellDepends = [ aeson base containers hspec QuickCheck text @@ -77002,6 +77085,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "envy_2_0_0_0" = callPackage + ({ mkDerivation, base, bytestring, containers, hspec, mtl + , QuickCheck, quickcheck-instances, text, time, transformers + }: + mkDerivation { + pname = "envy"; + version = "2.0.0.0"; + sha256 = "0l3rg9kvx5pp8ly1wl86g0nfp4161vdbf1cavpm2s84hahq9wg0z"; + libraryHaskellDepends = [ + base bytestring containers mtl text time transformers + ]; + testHaskellDepends = [ + base bytestring hspec mtl QuickCheck quickcheck-instances text time + transformers + ]; + description = "An environmentally friendly way to deal with environment variables"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "epanet-haskell" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -79800,6 +79903,19 @@ self: { broken = true; }) {}; + "express" = callPackage + ({ mkDerivation, base, leancheck, template-haskell }: + mkDerivation { + pname = "express"; + version = "0.1.0"; + sha256 = "1bm2bzkkjnwrzf67g7291pw7cvlxg86mz69fnlrigmlxcx3kxbn4"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base leancheck ]; + benchmarkHaskellDepends = [ base leancheck ]; + description = "Express"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "expression-parser" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -79975,8 +80091,8 @@ self: { }: mkDerivation { pname = "extensible"; - version = "0.6"; - sha256 = "14cqsg4lamnhbdccdc0wfwzjzkpj93g92s93wmpg4214ykvr2gvf"; + version = "0.6.1"; + sha256 = "1h96kn622qyx27xap79ywq4kx4q82x4b3kxviakhqwxlvf2sklg2"; libraryHaskellDepends = [ aeson barbies base bytestring cassava comonad constraints deepseq exceptions ghc-prim hashable membership monad-skeleton mtl @@ -80196,6 +80312,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "extrapolate_0_4_0" = callPackage + ({ mkDerivation, base, express, leancheck, speculate + , template-haskell + }: + mkDerivation { + pname = "extrapolate"; + version = "0.4.0"; + sha256 = "0qlpgpwzdvc2my332krjs8pqwzrhpkw9l3irfx6gx8fpmgasfd8n"; + libraryHaskellDepends = [ + base express leancheck speculate template-haskell + ]; + testHaskellDepends = [ base express leancheck speculate ]; + description = "generalize counter-examples of test properties"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ez-couch" = callPackage ({ mkDerivation, aeson, attoparsec, attoparsec-conduit, base , blaze-builder, bytestring, classy-prelude, classy-prelude-conduit @@ -87472,6 +87605,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ft-generator" = callPackage + ({ mkDerivation, base, mtl, parsec }: + mkDerivation { + pname = "ft-generator"; + version = "1.0"; + sha256 = "1kgh8w1ny0zsrbf53vqabkap6zp6fmq2hx35nxw2hcfw7b0pvavk"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base mtl parsec ]; + description = "implementation accompanying a WFLP'19 submission"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "ftdi" = callPackage ({ mkDerivation, base, base-unicode-symbols, bytestring, safe , transformers, usb @@ -93004,15 +93150,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) atk;}; - "gi-atk_2_0_20" = callPackage + "gi-atk_2_0_21" = callPackage ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading , text, transformers }: mkDerivation { pname = "gi-atk"; - version = "2.0.20"; - sha256 = "0pgmsd486l7ym8yi8png1zw90zk505jbdxj6jmh2hn096dl9wdrw"; + version = "2.0.21"; + sha256 = "0npcz82l5ssbrgzr99a94nlirmfdy9z5p2k0nrk7357bawpiv7sk"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93048,15 +93194,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) cairo;}; - "gi-cairo_1_0_22" = callPackage + "gi-cairo_1_0_23" = callPackage ({ mkDerivation, base, bytestring, Cabal, cairo, containers , haskell-gi, haskell-gi-base, haskell-gi-overloading, text , transformers }: mkDerivation { pname = "gi-cairo"; - version = "1.0.22"; - sha256 = "1kk91v31pw14jdk8q2jkhiknw7qx4pll2cljxs8ahraclinakj1r"; + version = "1.0.23"; + sha256 = "1y479ll6pzf5qjf18ziqgvfi6zq4jyajkq9zlggmh9pjhxpwj8nh"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -93130,8 +93276,8 @@ self: { }: mkDerivation { pname = "gi-dbusmenu"; - version = "0.4.6"; - sha256 = "0yyd6hyfzkpq2qn1bsj2gqgxk35z8ggi6rs8nnz908fcr0k1zr2m"; + version = "0.4.7"; + sha256 = "0av2628vylmkk566f2zbzbwygni4rawrk14yamc6m9s9rsw2scf9"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93152,8 +93298,8 @@ self: { }: mkDerivation { pname = "gi-dbusmenugtk3"; - version = "0.4.7"; - sha256 = "143xhf8d968bj5w443211vfl0vs27ygj65cdzdsidfz3vh56ms9r"; + version = "0.4.8"; + sha256 = "0ncn2i0bvsqsi785bjhdxr77hyxsp2dm26ihn7nxbvdkvn0mafhz"; setupHaskellDepends = [ base Cabal gi-atk gi-dbusmenu gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-gtk haskell-gi @@ -93191,16 +93337,16 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) gtk3;}; - "gi-gdk_3_0_21" = callPackage + "gi-gdk_4_0_1" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 + , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk4 , haskell-gi, haskell-gi-base, haskell-gi-overloading, text , transformers }: mkDerivation { pname = "gi-gdk"; - version = "3.0.21"; - sha256 = "0lfsmq3kfcz7g16zhvz84x0vqc59ifagcbkm1vv2g0lk10j7zg5x"; + version = "4.0.1"; + sha256 = "1b2azv7c3c9ni9f258ag2cxy97sh8ax78v0hym0gpvrky741vqwq"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi @@ -93210,11 +93356,11 @@ self: { gi-gobject gi-pango haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gtk3 ]; + libraryPkgconfigDepends = [ gtk4 ]; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) gtk3;}; + }) {gtk4 = null;}; "gi-gdkpixbuf" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf @@ -93235,15 +93381,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) gdk-pixbuf;}; - "gi-gdkpixbuf_2_0_22" = callPackage + "gi-gdkpixbuf_2_0_23" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gdk-pixbuf , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: mkDerivation { pname = "gi-gdkpixbuf"; - version = "2.0.22"; - sha256 = "1mj7h1053ib8bzgka4zfn7mxyd1m05az7l0dijw531v32378s5kq"; + version = "2.0.23"; + sha256 = "0jphrxqdbls3l73is1k93fizghbxgkf14q57l4w3m559vgk34anp"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -93264,8 +93410,8 @@ self: { }: mkDerivation { pname = "gi-gdkx11"; - version = "3.0.8"; - sha256 = "0vz26ls00m16a4mfbiw4vwmnr3plyds4wr914q5jx9xrhr3mp202"; + version = "3.0.9"; + sha256 = "0z3vwwpv8a85nvg2bc4cdaa8w4jmdl5mm5bxfpwmssyxcnm1xdnc"; setupHaskellDepends = [ base Cabal gi-cairo gi-gdk gi-gio gi-gobject gi-xlib haskell-gi ]; @@ -93288,8 +93434,8 @@ self: { }: mkDerivation { pname = "gi-ggit"; - version = "1.0.7"; - sha256 = "1x84yi4c97jg6f4spp3s1bxcm5ny310yyji5s9izkd3dzagb2kxf"; + version = "1.0.8"; + sha256 = "151qgcwp2spa957nr3jdb9ac35f1r1gyi2d5vzgxy8xzc3993wmq"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -93323,15 +93469,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; - "gi-gio_2_0_24" = callPackage + "gi-gio_2_0_25" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib , gi-gobject, glib, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: mkDerivation { pname = "gi-gio"; - version = "2.0.24"; - sha256 = "0f49a3bqv0izwz9pbc9yxb5ysg8hwjmw85qjyfzsqndanmjsrlrz"; + version = "2.0.25"; + sha256 = "0w42ls035a69c2wyf050zvqxwyql3ln3ifwn9k4m187icj345qnz"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93350,8 +93496,8 @@ self: { }: mkDerivation { pname = "gi-girepository"; - version = "1.0.21"; - sha256 = "15i5p1s8qj5f2m6kf69xzjndisgbi5184vya88py1b12284klvrv"; + version = "1.0.22"; + sha256 = "1m7gnam8a46zbbnxgcszv1wn8zgzdrpki6k3fgy5xjnb4gp5pvpj"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93383,15 +93529,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; - "gi-glib_2_0_22" = callPackage + "gi-glib_2_0_23" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, glib , haskell-gi, haskell-gi-base, haskell-gi-overloading, text , transformers }: mkDerivation { pname = "gi-glib"; - version = "2.0.22"; - sha256 = "0wb494n9zci7kchw3043108rmdymycj0rkv83gib7l01gilpgjjl"; + version = "2.0.23"; + sha256 = "1wsix558lj58i8mdwikb2q78941dxl3pchhd75xkk5hq8rknp37x"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -93422,15 +93568,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; - "gi-gobject_2_0_21" = callPackage + "gi-gobject_2_0_22" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib , haskell-gi, haskell-gi-base, haskell-gi-overloading, text , transformers }: mkDerivation { pname = "gi-gobject"; - version = "2.0.21"; - sha256 = "0il4z77wm6njilqx2jjjkldlgp0fk9m5lwwhfnalqasb7h2i90mn"; + version = "2.0.22"; + sha256 = "0c1ia60793dly5y5xd2s1qs5a37f0r3jypzc21r0yswgqdlsi7g6"; setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib haskell-gi haskell-gi-base @@ -93442,6 +93588,49 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; + "gi-graphene" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib + , gi-gobject, graphene-gobject, haskell-gi, haskell-gi-base + , haskell-gi-overloading, text, transformers + }: + mkDerivation { + pname = "gi-graphene"; + version = "1.0.1"; + sha256 = "04aiq9zqjxaky48j57nakx0alhc9j1g6ydki7fww7r4jajmf6pjv"; + setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject haskell-gi + haskell-gi-base haskell-gi-overloading text transformers + ]; + libraryPkgconfigDepends = [ graphene-gobject ]; + description = "Graphene bindings"; + license = stdenv.lib.licenses.lgpl21; + }) {graphene-gobject = null;}; + + "gi-gsk" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo + , gi-gdk, gi-glib, gi-gobject, gi-graphene, gi-pango, gtk4 + , haskell-gi, haskell-gi-base, haskell-gi-overloading, text + , transformers + }: + mkDerivation { + pname = "gi-gsk"; + version = "4.0.1"; + sha256 = "0645dyifg6d3x03zrzf2andfah32s878rcyqzw891prn2dvga3nx"; + setupHaskellDepends = [ + base Cabal gi-cairo gi-gdk gi-glib gi-gobject gi-graphene gi-pango + haskell-gi + ]; + libraryHaskellDepends = [ + base bytestring containers gi-cairo gi-gdk gi-glib gi-gobject + gi-graphene gi-pango haskell-gi haskell-gi-base + haskell-gi-overloading text transformers + ]; + libraryPkgconfigDepends = [ gtk4 ]; + description = "Gsk bindings"; + license = stdenv.lib.licenses.lgpl21; + }) {gtk4 = null;}; + "gi-gst" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib , gi-gobject, gstreamer, haskell-gi, haskell-gi-base @@ -93449,8 +93638,8 @@ self: { }: mkDerivation { pname = "gi-gst"; - version = "1.0.21"; - sha256 = "1nj1iyhfvi3a5mwkr4x0gn26bykdjdam3gwsl1hkbg21zvjkd087"; + version = "1.0.22"; + sha256 = "0qicgvy9wm1xs5y6fda8sxdilwfg2y6albdqy3jg2n5qn7c9p0f6"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93470,8 +93659,8 @@ self: { }: mkDerivation { pname = "gi-gstaudio"; - version = "1.0.20"; - sha256 = "09v36n019ka4nj65x082gkg2j4r3q0ibvrcq5p6ka7kq8rhfxhx0"; + version = "1.0.21"; + sha256 = "0zrcplkd0hfdfvwq7gbg8wyvsk2an8k5yj342adq1ar0zgfh064n"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -93493,8 +93682,8 @@ self: { }: mkDerivation { pname = "gi-gstbase"; - version = "1.0.21"; - sha256 = "03awzmc62hw1nmw0b3xczmxmk5drrlhq0clh7lhxlj1r1nzq2ack"; + version = "1.0.22"; + sha256 = "1y7hf5kcm4kj185glb298zr6x39m61hvqrdwskk9043nrd8ifcxx"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst haskell-gi ]; @@ -93517,8 +93706,8 @@ self: { }: mkDerivation { pname = "gi-gstpbutils"; - version = "1.0.20"; - sha256 = "10kbk7mk829xc0rkzzhpz53v39xfl5f6my1smjdqdwdnxxgcsl5w"; + version = "1.0.21"; + sha256 = "15kg01g8cgaw98khf6nrr9sjbfss3a3d43g9zgbbv5h5qnzvjazb"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstaudio gi-gsttag gi-gstvideo haskell-gi @@ -93542,8 +93731,8 @@ self: { }: mkDerivation { pname = "gi-gsttag"; - version = "1.0.20"; - sha256 = "1jhly2jhfy2a79maj4x2p7idqr1f82znizfimkyvdnf8rbrr1h3h"; + version = "1.0.21"; + sha256 = "061xy3vx41pgyyg6mcbc7saj50n5zwfc72l8dw54kgv09vykp7ji"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -93565,8 +93754,8 @@ self: { }: mkDerivation { pname = "gi-gstvideo"; - version = "1.0.21"; - sha256 = "05sv1an6za2ywxh6dzy4d79g1dm0jyypqkhz40g0pk5kxvgi4gkm"; + version = "1.0.22"; + sha256 = "0fr9pfcfsjajl5cd6p05a4kp83acmllzzdm0kc2nxnr0kmjifi5v"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject gi-gst gi-gstbase haskell-gi ]; @@ -93604,31 +93793,31 @@ self: { broken = true; }) {inherit (pkgs) gtk3;}; - "gi-gtk_3_0_31" = callPackage + "gi-gtk_4_0_1" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base + , gi-graphene, gi-gsk, gi-pango, gtk4, haskell-gi, haskell-gi-base , haskell-gi-overloading, text, transformers }: mkDerivation { pname = "gi-gtk"; - version = "3.0.31"; - sha256 = "00bfy8hn56cm5zm005vdnwwzsw5bzangipxv47n01jp4ksn3wdpx"; + version = "4.0.1"; + sha256 = "1brn4pyjvnc00bwqwf3d77dhbiknak5yjqs9xyk9mknw2pb98ppv"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi + gi-gobject gi-graphene gi-gsk gi-pango haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers + gi-gio gi-glib gi-gobject gi-graphene gi-gsk gi-pango haskell-gi + haskell-gi-base haskell-gi-overloading text transformers ]; - libraryPkgconfigDepends = [ gtk3 ]; + libraryPkgconfigDepends = [ gtk4 ]; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; broken = true; - }) {inherit (pkgs) gtk3;}; + }) {gtk4 = null;}; "gi-gtk-declarative" = callPackage ({ mkDerivation, async, base, data-default-class, gi-gdk, gi-glib @@ -93694,15 +93883,15 @@ self: { broken = true; }) {}; - "gi-gtk-hs_0_3_7_0" = callPackage + "gi-gtk-hs_0_3_8_0" = callPackage ({ mkDerivation, base, base-compat, containers, gi-gdk , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl , text, transformers }: mkDerivation { pname = "gi-gtk-hs"; - version = "0.3.7.0"; - sha256 = "0z64avmb13k7cvps51xj6j3jrxsdnqnpkh9038lm68vkkadv2dag"; + version = "0.3.8.0"; + sha256 = "0cpykq24fjpidxb1hh6qi74xv5lh6nrz8q1l4iqy8jx26qlzri5l"; libraryHaskellDepends = [ base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject gi-gtk haskell-gi-base mtl text transformers @@ -93720,17 +93909,16 @@ self: { }: mkDerivation { pname = "gi-gtkosxapplication"; - version = "2.0.16"; - sha256 = "11wfmvjgl6lmmdanz5jmmvf4289c9jiylxfn006shc4pby7ay6i8"; - revision = "1"; - editedCabalFile = "1fixrfjmqqrik38fl90h4f3lh34g6zilscibq9r9x1j8d33qmin4"; - setupHaskellDepends = [ base Cabal haskell-gi ]; + version = "2.0.17"; + sha256 = "1h6j61wg9krvd3kqbkafd90vk534hhz9mrlvj2h182f5kp5rybl8"; + setupHaskellDepends = [ + base Cabal gi-gdkpixbuf gi-gobject gi-gtk haskell-gi + ]; libraryHaskellDepends = [ base bytestring containers gi-gdkpixbuf gi-gobject gi-gtk haskell-gi haskell-gi-base haskell-gi-overloading text transformers ]; libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; - doHaddock = false; description = "GtkosxApplication bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; @@ -93761,7 +93949,7 @@ self: { broken = true; }) {inherit (pkgs) gtksourceview3;}; - "gi-gtksource_3_0_21" = callPackage + "gi-gtksource_3_0_22" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base @@ -93769,8 +93957,8 @@ self: { }: mkDerivation { pname = "gi-gtksource"; - version = "3.0.21"; - sha256 = "1y64hlcpy536x053p7xkhm6jgb7ahhj0zkgzgf962d8mqadaqzr0"; + version = "3.0.22"; + sha256 = "08b3ffjdgyr5xapx37kkwx3z8fsd42ydvdwk3nvh2ysfq9q86cjh"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi @@ -93795,8 +93983,8 @@ self: { }: mkDerivation { pname = "gi-handy"; - version = "0.0.5"; - sha256 = "1a4ihmmqx82gmyn0lhwqcpijswciqjxq7dl17vbgycpvzabhpvyl"; + version = "0.0.6"; + sha256 = "134dspf2vhwl76g25mjjj3gmdis748qg3rschmypd9w4zr2l651w"; setupHaskellDepends = [ base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk haskell-gi @@ -93834,15 +94022,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkitgtk;}; - "gi-javascriptcore_4_0_20" = callPackage + "gi-javascriptcore_4_0_21" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading , text, transformers, webkitgtk }: mkDerivation { pname = "gi-javascriptcore"; - version = "4.0.20"; - sha256 = "0n8aiazjsh74f8k2nbjia619401pwackdxmnb2chzpsqad9kqxrh"; + version = "4.0.21"; + sha256 = "0zl2lanysqir9qhndai7v4yp6sq671115mi5k9q58rwkmvkm6w04"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93861,8 +94049,8 @@ self: { }: mkDerivation { pname = "gi-notify"; - version = "0.7.20"; - sha256 = "0dr9zs6j3cbdxfd6ja2d5ch87scrqlnzp4xlj1dx6inwnhl150yq"; + version = "0.7.21"; + sha256 = "13ifi60jlfm9jypf6gam224s5rgq2kd1cj98wfl1dg9crahghbls"; setupHaskellDepends = [ base Cabal gi-gdkpixbuf gi-glib gi-gobject haskell-gi ]; @@ -93884,8 +94072,8 @@ self: { }: mkDerivation { pname = "gi-ostree"; - version = "1.0.11"; - sha256 = "0gwxdc4rddndvnw1izwapvi926dl6v0ljpp5504k67a8kszaycx0"; + version = "1.0.12"; + sha256 = "0j7nd4ylz4whnsdfbn6ra7kvvnx6l6bqv2y57rgk1nnac3cc6201"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -93924,15 +94112,15 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "gi-pango_1_0_21" = callPackage + "gi-pango_1_0_22" = callPackage ({ mkDerivation, base, bytestring, Cabal, cairo, containers , gi-glib, gi-gobject, haskell-gi, haskell-gi-base , haskell-gi-overloading, pango, text, transformers }: mkDerivation { pname = "gi-pango"; - version = "1.0.21"; - sha256 = "1adlwkwqlqnck3fq601my22iqh9lbvjy4vvy5zbmcs942j3lj691"; + version = "1.0.22"; + sha256 = "09dz13wai7cyp24vhc6wxyyg2g89dsqq40r80j56xgpyvfki8yf2"; setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi @@ -93956,8 +94144,8 @@ self: { }: mkDerivation { pname = "gi-pangocairo"; - version = "1.0.22"; - sha256 = "09axv2wn686xwsdmrh2v71j8p0qkchvws30aamkzcdclbfwxa3aw"; + version = "1.0.23"; + sha256 = "0la2ga1hprwm4fnia48y0q1cg8il0aq42nwvaj5gndx6id42a1i6"; setupHaskellDepends = [ base Cabal gi-cairo gi-glib gi-gobject gi-pango haskell-gi ]; @@ -93983,8 +94171,8 @@ self: { }: mkDerivation { pname = "gi-poppler"; - version = "0.18.20"; - sha256 = "1jkzrrzdkn60akiijyzbq5sf0digawrzxm556dirxcjksh829zby"; + version = "0.18.21"; + sha256 = "1mfi3yn7yrwg2cdpqp0av4cabmmqpmm2hywsrm5d78cxix4z1s7f"; setupHaskellDepends = [ base Cabal gi-cairo gi-gio gi-glib gi-gobject haskell-gi ]; @@ -94006,8 +94194,8 @@ self: { }: mkDerivation { pname = "gi-secret"; - version = "0.0.10"; - sha256 = "1ylgn8yvrksf8swk1gw6n8kw0dqvr92l9fj4jzxzpskfrmgk82ln"; + version = "0.0.11"; + sha256 = "1s3vwy0aff4m1rvkbcvfa4zwbbalaiz46ij3ymmsx319v2mwwiib"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -94029,8 +94217,8 @@ self: { }: mkDerivation { pname = "gi-soup"; - version = "2.4.21"; - sha256 = "01zqzp4mpwkg3cfgx91harjds3bbxs0giqr4lly9z37ksbr2siv0"; + version = "2.4.22"; + sha256 = "0vgvcq9nysw9xfyjddi1qzngw7pfrfx4g1f3zngf56jcvxf8q6rw"; setupHaskellDepends = [ base Cabal gi-gio gi-glib gi-gobject haskell-gi ]; @@ -94068,7 +94256,7 @@ self: { broken = true; }) {vte_291 = pkgs.vte;}; - "gi-vte_2_91_24" = callPackage + "gi-vte_2_91_25" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi , haskell-gi-base, haskell-gi-overloading, text, transformers @@ -94076,8 +94264,8 @@ self: { }: mkDerivation { pname = "gi-vte"; - version = "2.91.24"; - sha256 = "1grqallhd1sklcmfhrrmjisj5yp9znx1yqzdn3v5awldjcj54025"; + version = "2.91.25"; + sha256 = "0h6kqbbdr7zgpq6sfqs2pfx99c7wj1aabpzna9fryn6zhaha8j3c"; setupHaskellDepends = [ base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi @@ -94125,8 +94313,8 @@ self: { }: mkDerivation { pname = "gi-webkit2"; - version = "4.0.24"; - sha256 = "1sxn9v361bp0arl3mq3dg9k1igaf9gcwxx0p7xlwqvqabgs4nr2q"; + version = "4.0.25"; + sha256 = "1xg4xy24nnz0ngv46m58jkmaka72nv4954g03f6ixpvwappim0vm"; setupHaskellDepends = [ base Cabal gi-atk gi-cairo gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi @@ -94150,8 +94338,8 @@ self: { }: mkDerivation { pname = "gi-webkit2webextension"; - version = "4.0.23"; - sha256 = "073rkgfp120ccabxk7nh72p3h7qs7b9qaqr3d1wlcb18grhnvyl4"; + version = "4.0.24"; + sha256 = "0lnf173c6myrswk0kdnwkhs925imvcpyvpmy50krqljnv6f2ksxn"; setupHaskellDepends = [ base Cabal gi-gio gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi @@ -94175,8 +94363,8 @@ self: { }: mkDerivation { pname = "gi-wnck"; - version = "3.0.6"; - sha256 = "10x5ijcbxvgbrzi4l7mjx336q83kz1kmayan7kpa46zimvj8vn6g"; + version = "3.0.7"; + sha256 = "02kgbp3h5ny7y0qmddsfng0a1gqpdmadl6yy45hmk98ws02rk9bx"; setupHaskellDepends = [ base Cabal gi-atk gi-gdk gi-gdkpixbuf gi-gobject gi-gtk haskell-gi ]; @@ -94199,8 +94387,8 @@ self: { }: mkDerivation { pname = "gi-xlib"; - version = "2.0.7"; - sha256 = "0rcl4wxnghlbyc2ddf131pm7wkj2psjzbqfhgv92av3kvz9y513z"; + version = "2.0.8"; + sha256 = "0gixgql24zx04sph7kn4n5gmgmz5xbw2f15mqfw0i5igad2pvsj3"; setupHaskellDepends = [ base Cabal haskell-gi ]; libraryHaskellDepends = [ base bytestring containers haskell-gi haskell-gi-base @@ -95173,19 +95361,24 @@ self: { }) {}; "githud" = callPackage - ({ mkDerivation, base, mtl, parsec, process, tasty, tasty-hunit - , tasty-quickcheck, tasty-smallcheck, text, unix + ({ mkDerivation, base, bytestring, daemons, data-default, directory + , mtl, network, parsec, process, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text, unix, utf8-string }: mkDerivation { pname = "githud"; - version = "2.1.0"; - sha256 = "19j0vy427n3rzi1nfmh7kjn8jj1ji3xrbrs957hyns9sy4wwrfly"; + version = "3.0.0"; + sha256 = "1zr7d5h0x1fsnwb2pg9vn34ir0m144h1vnlh0avickazz2ljx2xr"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ base mtl parsec process text unix ]; + libraryHaskellDepends = [ + base bytestring daemons data-default directory mtl network parsec + process text unix utf8-string + ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ - base mtl parsec tasty tasty-hunit tasty-quickcheck tasty-smallcheck + base daemons mtl parsec tasty tasty-hunit tasty-quickcheck + tasty-smallcheck ]; description = "More efficient replacement to the great git-radar"; license = stdenv.lib.licenses.bsd3; @@ -108253,7 +108446,7 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi_0_22_6" = callPackage + "haskell-gi_0_23_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers , directory, doctest, filepath, glib, gobject-introspection , haskell-gi-base, mtl, pretty-show, process, regex-tdfa, safe @@ -108261,8 +108454,8 @@ self: { }: mkDerivation { pname = "haskell-gi"; - version = "0.22.6"; - sha256 = "0m1ixnxv1vq2ywnvf9fihipn81ka1ixbgga4fsmgmk9hl1ai48mm"; + version = "0.23.0"; + sha256 = "04d2lxmbbq7g0yrc5rz9n7zscza9g63vvbz0qv3427y7hbq1xn4a"; libraryHaskellDepends = [ attoparsec base bytestring Cabal containers directory filepath haskell-gi-base mtl pretty-show process regex-tdfa safe text @@ -108287,12 +108480,12 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {inherit (pkgs) glib;}; - "haskell-gi-base_0_22_2" = callPackage + "haskell-gi-base_0_23_0" = callPackage ({ mkDerivation, base, bytestring, containers, glib, text }: mkDerivation { pname = "haskell-gi-base"; - version = "0.22.2"; - sha256 = "0rv46x4xgsdk25s1vd3zm95cjgc5vy4rwsbaxk1hyc5ga5qjyzx0"; + version = "0.23.0"; + sha256 = "1f22d4pvmyy52w9hqa36b6psw34j562rayqgk052ng1ax9yvwzn0"; libraryHaskellDepends = [ base bytestring containers text ]; libraryPkgconfigDepends = [ glib ]; description = "Foundation for libraries generated by haskell-gi"; @@ -146446,8 +146639,8 @@ self: { pname = "lens"; version = "4.17.1"; sha256 = "1gpkc53l2cggnfrgg5k4ih82rycjbdvpj9pnbi5cq8ms0dbvs4a7"; - revision = "1"; - editedCabalFile = "1zknh9h72qzszwrz9h25c5ssdr2pv5z67w6kv526sk1y8rnrbxk1"; + revision = "2"; + editedCabalFile = "1bh868l69nisdhw8qw5y51nj2w0pbbq7mxqiwf42iq0vcb6h0ybv"; setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; libraryHaskellDepends = [ array base base-orphans bifunctors bytestring call-stack comonad @@ -149888,13 +150081,15 @@ self: { }) {}; "list-witnesses" = callPackage - ({ mkDerivation, base, decidable, profunctors, singletons, vinyl }: + ({ mkDerivation, base, decidable, microlens, profunctors + , singletons, vinyl + }: mkDerivation { pname = "list-witnesses"; - version = "0.1.1.0"; - sha256 = "16dlyk9hxz5fbsj726w1sgindryhyhsgvhs37zqygwmfzvqdbasd"; + version = "0.1.1.1"; + sha256 = "13h5gckpysf4p5wjfnq7l5v66rmxi3i9cmykf18ld3hnilgd7wa7"; libraryHaskellDepends = [ - base decidable profunctors singletons vinyl + base decidable microlens profunctors singletons vinyl ]; description = "Witnesses for working with type-level lists"; license = stdenv.lib.licenses.bsd3; @@ -151255,20 +151450,19 @@ self: { "log4hs" = callPackage ({ mkDerivation, aeson, base, containers, data-default, directory , filepath, hspec, hspec-core, process, QuickCheck - , template-haskell, text, time, unordered-containers + , template-haskell, text, time }: mkDerivation { pname = "log4hs"; - version = "0.0.2.0"; - sha256 = "08z8lyh0q4wpxvvzbf1w0bxvbm90ic4wzxyac2b0ddm4zn8zdn9s"; + version = "0.0.3.0"; + sha256 = "0bbl1cfa85dr1kxiikykh32x0141bkgfabvkjp37m52sv3vs9mvi"; libraryHaskellDepends = [ aeson base containers data-default directory filepath - template-haskell text time unordered-containers + template-haskell text time ]; testHaskellDepends = [ aeson base containers data-default directory filepath hspec hspec-core process QuickCheck template-haskell text time - unordered-containers ]; description = "A python logging style log library"; license = stdenv.lib.licenses.bsd3; @@ -156037,14 +156231,14 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "mbox-utility_0_0_3" = callPackage + "mbox-utility_0_0_3_1" = callPackage ({ mkDerivation, base, bytestring, hsemail, non-empty, parsec , spreadsheet, time, utility-ht }: mkDerivation { pname = "mbox-utility"; - version = "0.0.3"; - sha256 = "1y24y0n81f0v9c9829y4va22h42n0wmjndaj1d15n07xvhn4xdps"; + version = "0.0.3.1"; + sha256 = "0vh9ibh4g3fssq9jfzrmaa56sk4k35r27lmz2xq4fhc62fmkia92"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -161349,6 +161543,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "monad-validate" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, exceptions, hspec + , monad-control, mtl, scientific, text, transformers + , transformers-base, unordered-containers, vector + }: + mkDerivation { + pname = "monad-validate"; + version = "1.0.0.0"; + sha256 = "0d2r54jhy5zkjph57f85syw6g0fmvj3csas8ki2hg7lfiqj6yq4q"; + revision = "1"; + editedCabalFile = "0zdxr266655w77zgzfqiw2aij64rhlys310c38myq1g6vgcxlbc2"; + libraryHaskellDepends = [ + base exceptions monad-control mtl transformers transformers-base + ]; + testHaskellDepends = [ + aeson aeson-qq base exceptions hspec monad-control mtl scientific + text transformers transformers-base unordered-containers vector + ]; + description = "A monad transformer for data validation"; + license = stdenv.lib.licenses.isc; + }) {}; + "monad-var" = callPackage ({ mkDerivation, base, base-compat, stm }: mkDerivation { @@ -166866,8 +167082,8 @@ self: { }: mkDerivation { pname = "net-spider"; - version = "0.3.1.1"; - sha256 = "0p0vwj438mbiwjgn7sqf3cb4bl48ygwi8n61wap9a9nc6fwrjmi8"; + version = "0.3.2.0"; + sha256 = "0b9k2gxb9nmjd59pcz7x8jrk2vycf8jk448ifpfc9spk6ylkh4gh"; libraryHaskellDepends = [ aeson base containers data-interval extended-reals greskell greskell-websocket hashable monad-logger safe-exceptions scientific @@ -166880,6 +167096,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "net-spider-cli" = callPackage + ({ mkDerivation, aeson, base, doctest, doctest-discover + , greskell-core, hashable, hspec, net-spider, optparse-applicative + , text + }: + mkDerivation { + pname = "net-spider-cli"; + version = "0.1.0.1"; + sha256 = "1qfzdfkiri3v344mk5zkc8mhxig3xmplcbw8382hkhsdmy4ny4ga"; + libraryHaskellDepends = [ + aeson base greskell-core hashable net-spider optparse-applicative + text + ]; + testHaskellDepends = [ + base doctest doctest-discover hspec net-spider optparse-applicative + ]; + description = "CLI option parsers for NetSpider objects"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "net-spider-pangraph" = callPackage ({ mkDerivation, base, bytestring, doctest, doctest-discover , greskell, hspec, net-spider, pangraph, text, time @@ -191862,8 +192098,8 @@ self: { }: mkDerivation { pname = "quickcheck-arbitrary-template"; - version = "0.2.0.0"; - sha256 = "1bn0g3gg7cpjwap1vgvahw91yjn0v8sy1hiy60w54gdg5rrll5j9"; + version = "0.2.1.0"; + sha256 = "1g9b39bhjcx44l8mwj5hwbjkd575prd46v16jz895q4f3ibqnfvp"; libraryHaskellDepends = [ base QuickCheck safe template-haskell ]; testHaskellDepends = [ base QuickCheck safe tasty tasty-golden tasty-hunit @@ -196459,16 +196695,18 @@ self: { }) {}; "reflex-dom-helpers" = callPackage - ({ mkDerivation, base, reflex, reflex-dom, template-haskell }: + ({ mkDerivation, base, reflex, reflex-dom-core, template-haskell + , text + }: mkDerivation { pname = "reflex-dom-helpers"; - version = "0.1.0.0"; - sha256 = "0fzvw9wd8465a0i0qnvnqngfs2fql13skxsrr9m1qivr3n3h7jhi"; + version = "0.2.0.1"; + sha256 = "1c0sa8i4rln7whmivmwlmivrj8zc45v25zsi1qwqx5d00mjbmkyk"; libraryHaskellDepends = [ - base reflex reflex-dom template-haskell + base reflex reflex-dom-core template-haskell text ]; testHaskellDepends = [ base ]; - description = "Element tag helpers for working with reflex-dom"; + description = "Html tag helpers for reflex-dom"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -196609,6 +196847,29 @@ self: { broken = true; }) {}; + "reflex-vty" = callPackage + ({ mkDerivation, base, bimap, containers, data-default + , dependent-map, dependent-sum, exception-transformers, mtl + , primitive, ref-tf, reflex, stm, text, time, transformers, vty + }: + mkDerivation { + pname = "reflex-vty"; + version = "0.1.1.0"; + sha256 = "1nhi33d0yqx2pjccrcbsgwp2l56sdmqpl11vpvkvx4wkxckyz2qf"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bimap containers data-default dependent-map dependent-sum + exception-transformers mtl primitive ref-tf reflex stm text time + transformers vty + ]; + executableHaskellDepends = [ + base containers reflex text time transformers vty + ]; + description = "Reflex FRP host and widgets for vty applications"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reform" = callPackage ({ mkDerivation, base, containers, mtl, semigroups, text }: mkDerivation { @@ -210787,8 +211048,8 @@ self: { }: mkDerivation { pname = "sexp-grammar"; - version = "2.0.2"; - sha256 = "1cmn5y72wp9dlzqzrv4rmfb1zm3zw517la0kf0vgyv3nhsn58397"; + version = "2.1.0"; + sha256 = "139sqr50bba74h2r6gdivzsgkqjwq1gcah54zw2jkwzhlfk03fm1"; libraryHaskellDepends = [ array base bytestring containers deepseq invertible-grammar prettyprinter recursion-schemes scientific semigroups text @@ -218776,6 +219037,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "speculate_0_4_0" = callPackage + ({ mkDerivation, base, cmdargs, containers, express, leancheck }: + mkDerivation { + pname = "speculate"; + version = "0.4.0"; + sha256 = "12h4lci5547fb1g21xh3fbq1d7fmn3w54ppqdnh8h35aa0jqw9hl"; + libraryHaskellDepends = [ + base cmdargs containers express leancheck + ]; + testHaskellDepends = [ base express leancheck ]; + benchmarkHaskellDepends = [ base express leancheck ]; + description = "discovery of properties about Haskell functions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "speculation" = callPackage ({ mkDerivation, base, ghc-prim, stm, transformers }: mkDerivation { From 4201da90e891242b98189669d193b69da33cd0a9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 5 Aug 2019 07:54:18 +0200 Subject: [PATCH 1602/1611] all-cabal-hashes: update to Hackage at 2019-07-07T09:46:56Z --- pkgs/data/misc/hackage/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/hackage/default.nix b/pkgs/data/misc/hackage/default.nix index 0eb3dbefe41..eeee8d56664 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/bee48f46f4c9e9c1195bf81efb61fa5fb0aec0dc.tar.gz"; - sha256 = "0wxj0iakqy1cyncga8s1qlb8c06vj3ilh5z8lpann7xr8yh6sm4b"; + url = "https://github.com/commercialhaskell/all-cabal-hashes/archive/4db96602103463d72e59ce214d0da8af35405f07.tar.gz"; + sha256 = "14r7m3555ngfafk2wgdj4lnv7zzajcc4j4fiws4k3kr3xwbrwrxr"; } From b3a44e1214397b5524672b626f9c74711e16e981 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 19:19:25 -0700 Subject: [PATCH 1603/1611] osinfo-db: 20190611 -> 20190726 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/osinfo-db/versions --- pkgs/data/misc/osinfo-db/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/misc/osinfo-db/default.nix b/pkgs/data/misc/osinfo-db/default.nix index 19872bef7fe..39cdd29c94b 100644 --- a/pkgs/data/misc/osinfo-db/default.nix +++ b/pkgs/data/misc/osinfo-db/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { pname = "osinfo-db"; - version = "20190611"; + version = "20190726"; src = fetchurl { url = "https://releases.pagure.org/libosinfo/${pname}-${version}.tar.xz"; - sha256 = "00gkdkycicl4rlr8by61sfsgpjsiswr8b148fl2arinr4vz3n46h"; + sha256 = "0kcdq8g324a368bqvki718ms5kdcc3dzfmpgzyxwl0mkxbmhmirr"; }; nativeBuildInputs = [ osinfo-db-tools intltool libxml2 ]; From 2b07800798654b0a0a0dabd160d5ebb934e93799 Mon Sep 17 00:00:00 2001 From: edef Date: Mon, 5 Aug 2019 08:32:21 +0000 Subject: [PATCH 1604/1611] pgcli: 2.0.2 -> 2.1.1 --- pkgs/development/tools/database/pgcli/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/database/pgcli/default.nix b/pkgs/development/tools/database/pgcli/default.nix index 31ffff3804f..632e4e80bf0 100644 --- a/pkgs/development/tools/database/pgcli/default.nix +++ b/pkgs/development/tools/database/pgcli/default.nix @@ -2,7 +2,7 @@ python3Packages.buildPythonApplication rec { pname = "pgcli"; - version = "2.0.2"; + version = "2.1.1"; # Python 2 won't have prompt_toolkit 2.x.x # See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408 From c72fff2e030d843cd6d50a34ced4ec3c85d2cef3 Mon Sep 17 00:00:00 2001 From: edef Date: Mon, 5 Aug 2019 08:33:42 +0000 Subject: [PATCH 1605/1611] Revert "pgcli: 2.0.2 -> 2.1.1" This reverts commit 2b07800798654b0a0a0dabd160d5ebb934e93799. --- pkgs/development/tools/database/pgcli/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/database/pgcli/default.nix b/pkgs/development/tools/database/pgcli/default.nix index 632e4e80bf0..31ffff3804f 100644 --- a/pkgs/development/tools/database/pgcli/default.nix +++ b/pkgs/development/tools/database/pgcli/default.nix @@ -2,7 +2,7 @@ python3Packages.buildPythonApplication rec { pname = "pgcli"; - version = "2.1.1"; + version = "2.0.2"; # Python 2 won't have prompt_toolkit 2.x.x # See: https://github.com/NixOS/nixpkgs/blob/f49e2ad3657dede09dc998a4a98fd5033fb52243/pkgs/top-level/python-packages.nix#L3408 From bc1417c5578002a8349f04329a9510f643b24500 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 29 Jul 2019 06:40:34 +0000 Subject: [PATCH 1606/1611] coqPackages.flocq: 3.1.0 -> 3.2.0 Ensures compatibility with Coq 8.10 --- pkgs/development/coq-modules/flocq/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index 09fbd580845..6e2ec3626fb 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -2,9 +2,9 @@ let params = if stdenv.lib.versionAtLeast coq.coq-version "8.7" then { - version = "3.1.0"; - uid = "37901"; - sha256 = "02szrgz9m0ac51la1lqpiv6i2g0zbgx9gz5rp0q1g00ajldyna5c"; + version = "3.2.0"; + uid = "38103"; + sha256 = "1snvzyyj6l1fv7nb70x5w8rjnhk483g9x8gszl9ls8qn2gd35fs0"; } else { version = "2.6.1"; uid = "37454"; @@ -46,6 +46,6 @@ stdenv.mkDerivation rec { }; passthru = { - compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" ]; + compatibleCoqVersions = v: builtins.elem v [ "8.5" "8.6" "8.7" "8.8" "8.9" "8.10" ]; }; } From 5b0fdad5dfa736dfe06932fe537d188d4b29a505 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Wed, 31 Jul 2019 09:40:10 +0000 Subject: [PATCH 1607/1611] coqPackages.flocq: fetch sources from gitlab --- pkgs/development/coq-modules/flocq/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/pkgs/development/coq-modules/flocq/default.nix b/pkgs/development/coq-modules/flocq/default.nix index 6e2ec3626fb..d9ad7d6e3be 100644 --- a/pkgs/development/coq-modules/flocq/default.nix +++ b/pkgs/development/coq-modules/flocq/default.nix @@ -1,14 +1,12 @@ -{ stdenv, bash, which, autoconf, automake, fetchurl, coq }: +{ stdenv, bash, which, autoconf, automake, fetchzip, coq }: let params = if stdenv.lib.versionAtLeast coq.coq-version "8.7" then { version = "3.2.0"; - uid = "38103"; - sha256 = "1snvzyyj6l1fv7nb70x5w8rjnhk483g9x8gszl9ls8qn2gd35fs0"; + sha256 = "15bi36x7zj0glsb3s2gwqd4wswhfzh36rbp7imbyff53a7nna95l"; } else { version = "2.6.1"; - uid = "37454"; - sha256 = "06msp1fwpqv6p98a3i1nnkj7ch9rcq3rm916yxq8dxf51lkghrin"; + sha256 = "1y4czkfrd8p37vwv198nns4hz1brfv71na17pxsidwpxy7qnyfw1"; } ; in @@ -17,8 +15,8 @@ stdenv.mkDerivation rec { name = "coq${coq.coq-version}-flocq-${version}"; inherit (params) version; - src = fetchurl { - url = "https://gforge.inria.fr/frs/download.php/file/${params.uid}/flocq-${version}.tar.gz"; + src = fetchzip { + url = "https://gitlab.inria.fr/flocq/flocq/-/archive/flocq-${version}.tar.gz"; inherit (params) sha256; }; From 7385e92641d98a185b32a4e8f9a18e8c9774c142 Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Sun, 4 Aug 2019 23:07:18 -0700 Subject: [PATCH 1608/1611] plantuml: 1.2019.7 -> 1.2019.8 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/plantuml/versions --- pkgs/tools/misc/plantuml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/plantuml/default.nix b/pkgs/tools/misc/plantuml/default.nix index 42d03c06b87..1cf64362e6d 100644 --- a/pkgs/tools/misc/plantuml/default.nix +++ b/pkgs/tools/misc/plantuml/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, makeWrapper, jre, graphviz }: stdenv.mkDerivation rec { - version = "1.2019.7"; + version = "1.2019.8"; name = "plantuml-${version}"; src = fetchurl { url = "mirror://sourceforge/project/plantuml/${version}/plantuml.${version}.jar"; - sha256 = "1md8dyjlvwfg4hbvigcvzipj1gf8hb39rqqh825aa2swchs8nvhm"; + sha256 = "0kbyjsy8zp3325syg9g91rfgy2dzkffdj2ji82b5h9zy3rkrz08p"; }; nativeBuildInputs = [ makeWrapper ]; From c76f10fd0140fe63ef7ed0225b0f7022fe4bed1d Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Mon, 5 Aug 2019 02:45:34 -0700 Subject: [PATCH 1609/1611] python37Packages.django_2_2: 2.2.3 -> 2.2.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-django/versions --- pkgs/development/python-modules/django/2_2.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/django/2_2.nix b/pkgs/development/python-modules/django/2_2.nix index 34b31bb35ab..efc13e455e5 100644 --- a/pkgs/development/python-modules/django/2_2.nix +++ b/pkgs/development/python-modules/django/2_2.nix @@ -6,13 +6,13 @@ buildPythonPackage rec { pname = "Django"; - version = "2.2.3"; + version = "2.2.4"; disabled = !isPy3k; src = fetchPypi { inherit pname version; - sha256 = "1sn0a7yjipwxrplh1x4kr77a93xzik1inh07bxwaqaw94qdzc8sd"; + sha256 = "1s5ad5zlmwdn4h5lwn4s4m8mqy0gz4w9nfzyknn815sr252db98n"; }; patches = stdenv.lib.optional withGdal From d21d6544c3640a90cf145e3c3300d383774091bf Mon Sep 17 00:00:00 2001 From: Artem Vorotnikov Date: Mon, 5 Aug 2019 12:28:25 +0300 Subject: [PATCH 1610/1611] zeal: use qt5's mkDerivation ref #65399 --- pkgs/data/documentation/zeal/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/data/documentation/zeal/default.nix b/pkgs/data/documentation/zeal/default.nix index 63fe26f069c..9bca390f96e 100644 --- a/pkgs/data/documentation/zeal/default.nix +++ b/pkgs/data/documentation/zeal/default.nix @@ -1,8 +1,8 @@ { stdenv, fetchFromGitHub, cmake, extra-cmake-modules, pkgconfig -, qtbase, qtimageformats, qtwebkit, qtx11extras +, qtbase, qtimageformats, qtwebkit, qtx11extras, mkDerivation , libarchive, libXdmcp, libpthreadstubs, xcbutilkeysyms }: -stdenv.mkDerivation rec { +mkDerivation rec { name = "zeal-${version}"; version = "0.6.1"; From dc95dd445e9a1bb73b086f69cea7b2451feb9f4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=B0=D1=80=D0=B8=D0=BA?= Date: Sun, 4 Aug 2019 23:51:44 +0300 Subject: [PATCH 1611/1611] qjackctl: use qt5's mkDerivation See #65399 --- pkgs/applications/audio/qjackctl/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/audio/qjackctl/default.nix b/pkgs/applications/audio/qjackctl/default.nix index 15901915201..9b8c8035239 100644 --- a/pkgs/applications/audio/qjackctl/default.nix +++ b/pkgs/applications/audio/qjackctl/default.nix @@ -1,6 +1,6 @@ -{ stdenv, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }: +{ stdenv, mkDerivation, fetchurl, pkgconfig, alsaLib, libjack2, dbus, qtbase, qttools, qtx11extras }: -stdenv.mkDerivation rec { +mkDerivation rec { version = "0.5.9"; name = "qjackctl-${version}";